From d51fdb74b34a7f3c8349b6926695b8e2f8807d11 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Tue, 26 Sep 2023 22:42:48 +0300 Subject: [PATCH 001/146] Add alias to Azure AD cmdlets --- src/Commands/Apps/AddAzureADServicePrincipalAppRole.cs | 1 + src/Commands/Apps/GetAzureADAppSitePermission.cs | 1 + src/Commands/Apps/GetAzureADServicePrincipal.cs | 1 + src/Commands/Apps/GetAzureADServicePrincipalAssignedAppRole.cs | 1 + src/Commands/Apps/GetAzureADServicePrincipalAvailableAppRole.cs | 1 + src/Commands/Apps/GrantAzureADAppSitePermission.cs | 1 + .../Apps/RemoveAzureADServicePrincipalAssignedAppRole.cs | 1 + src/Commands/Apps/RevokeAzureADAppSitePermission.cs | 1 + src/Commands/Apps/SetAzureADAppSitePermission.cs | 1 + src/Commands/AzureAD/AddAzureADGroupMember.cs | 1 + src/Commands/AzureAD/AddAzureADGroupOwner.cs | 1 + src/Commands/AzureAD/ClearAzureADGroupMember.cs | 1 + src/Commands/AzureAD/ClearAzureADGroupOwner.cs | 1 + src/Commands/AzureAD/GetAzureADActivityReportDirectoryAudit.cs | 1 + src/Commands/AzureAD/GetAzureADActivityReportSignIn.cs | 1 + src/Commands/AzureAD/GetAzureADApp.cs | 1 + src/Commands/AzureAD/GetAzureADAppPermission.cs | 1 + src/Commands/AzureAD/GetAzureADGroup.cs | 1 + src/Commands/AzureAD/GetAzureADGroupMember.cs | 1 + src/Commands/AzureAD/GetAzureADGroupOwner.cs | 1 + src/Commands/AzureAD/GetAzureADUser.cs | 1 + src/Commands/AzureAD/NewAzureADGroup.cs | 1 + src/Commands/AzureAD/NewAzureADUserTemporaryAccessPass.cs | 1 + src/Commands/AzureAD/RegisterAzureADApp.cs | 1 + src/Commands/AzureAD/RemoveAzureADApp.cs | 1 + src/Commands/AzureAD/RemoveAzureADGroup.cs | 1 + src/Commands/AzureAD/RemoveAzureADGroupMember.cs | 1 + src/Commands/AzureAD/RemoveAzureADGroupOwner.cs | 1 + src/Commands/AzureAD/SetAzureADGroup.cs | 1 + 29 files changed, 29 insertions(+) diff --git a/src/Commands/Apps/AddAzureADServicePrincipalAppRole.cs b/src/Commands/Apps/AddAzureADServicePrincipalAppRole.cs index d8e88f087..d0b7223c0 100644 --- a/src/Commands/Apps/AddAzureADServicePrincipalAppRole.cs +++ b/src/Commands/Apps/AddAzureADServicePrincipalAppRole.cs @@ -10,6 +10,7 @@ namespace PnP.PowerShell.Commands.Apps { [Cmdlet(VerbsCommon.Add, "PnPAzureADServicePrincipalAppRole")] [RequiredMinimalApiPermissions("AppRoleAssignment.ReadWrite.All", "Application.Read.All")] + [Alias("Add-PnPEntraIDServicePrincipalAppRole")] public class AddAzureADServicePrincipalAppRole : PnPGraphCmdlet { private const string ParameterSet_BYRESOURCE = "By resource"; diff --git a/src/Commands/Apps/GetAzureADAppSitePermission.cs b/src/Commands/Apps/GetAzureADAppSitePermission.cs index f131fd839..1d8fa3e9e 100644 --- a/src/Commands/Apps/GetAzureADAppSitePermission.cs +++ b/src/Commands/Apps/GetAzureADAppSitePermission.cs @@ -12,6 +12,7 @@ namespace PnP.PowerShell.Commands.Apps { [Cmdlet(VerbsCommon.Get, "PnPAzureADAppSitePermission", DefaultParameterSetName = ParameterSet_ALL)] [RequiredMinimalApiPermissions("Sites.FullControl.All")] + [Alias("Get-PnPEntraIDAppSitePermission")] public class GetPnPAzureADAppSitePermission : PnPGraphCmdlet { private const string ParameterSet_ALL = "All Permissions"; diff --git a/src/Commands/Apps/GetAzureADServicePrincipal.cs b/src/Commands/Apps/GetAzureADServicePrincipal.cs index 5b0653644..def1f5e0c 100644 --- a/src/Commands/Apps/GetAzureADServicePrincipal.cs +++ b/src/Commands/Apps/GetAzureADServicePrincipal.cs @@ -12,6 +12,7 @@ namespace PnP.PowerShell.Commands.Apps [Cmdlet(VerbsCommon.Get, "PnPAzureADServicePrincipal", DefaultParameterSetName = ParameterSet_ALL)] [RequiredMinimalApiPermissions("Application.Read.All")] [OutputType(typeof(List))] + [Alias("Get-PnPEntraIDServicePrincipal")] public class GetAzureADServicePrincipal : PnPGraphCmdlet { private const string ParameterSet_ALL = "All"; diff --git a/src/Commands/Apps/GetAzureADServicePrincipalAssignedAppRole.cs b/src/Commands/Apps/GetAzureADServicePrincipalAssignedAppRole.cs index d5dc818f9..28507ba75 100644 --- a/src/Commands/Apps/GetAzureADServicePrincipalAssignedAppRole.cs +++ b/src/Commands/Apps/GetAzureADServicePrincipalAssignedAppRole.cs @@ -11,6 +11,7 @@ namespace PnP.PowerShell.Commands.Apps [Cmdlet(VerbsCommon.Get, "PnPAzureADServicePrincipalAssignedAppRole")] [RequiredMinimalApiPermissions("Application.Read.All")] [OutputType(typeof(List))] + [Alias("Get-PnPEntraIDServicePrincipalAssignedAppRole")] public class GetAzureADServicePrincipalAssignedAppRole : PnPGraphCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true)] diff --git a/src/Commands/Apps/GetAzureADServicePrincipalAvailableAppRole.cs b/src/Commands/Apps/GetAzureADServicePrincipalAvailableAppRole.cs index 4f6027722..238de01bb 100644 --- a/src/Commands/Apps/GetAzureADServicePrincipalAvailableAppRole.cs +++ b/src/Commands/Apps/GetAzureADServicePrincipalAvailableAppRole.cs @@ -10,6 +10,7 @@ namespace PnP.PowerShell.Commands.Apps [Cmdlet(VerbsCommon.Get, "PnPAzureADServicePrincipalAvailableAppRole")] [RequiredMinimalApiPermissions("Application.Read.All")] [OutputType(typeof(List))] + [Alias("Get-PnPEntraIDServicePrincipalAvailableAppRole")] public class GetAzureADServicePrincipalAvailableAppRole : PnPGraphCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true)] diff --git a/src/Commands/Apps/GrantAzureADAppSitePermission.cs b/src/Commands/Apps/GrantAzureADAppSitePermission.cs index bfc6ad4c9..d1914b9be 100644 --- a/src/Commands/Apps/GrantAzureADAppSitePermission.cs +++ b/src/Commands/Apps/GrantAzureADAppSitePermission.cs @@ -13,6 +13,7 @@ namespace PnP.PowerShell.Commands.Apps { [Cmdlet(VerbsSecurity.Grant, "PnPAzureADAppSitePermission")] [RequiredMinimalApiPermissions("Sites.FullControl.All")] + [Alias("Grant-PnPEntraIDAppSitePermission")] public class GrantPnPAzureADAppSitePermission : PnPGraphCmdlet { [Parameter(Mandatory = true)] diff --git a/src/Commands/Apps/RemoveAzureADServicePrincipalAssignedAppRole.cs b/src/Commands/Apps/RemoveAzureADServicePrincipalAssignedAppRole.cs index 8d5baa3ca..19ec31141 100644 --- a/src/Commands/Apps/RemoveAzureADServicePrincipalAssignedAppRole.cs +++ b/src/Commands/Apps/RemoveAzureADServicePrincipalAssignedAppRole.cs @@ -11,6 +11,7 @@ namespace PnP.PowerShell.Commands.Apps [Cmdlet(VerbsCommon.Remove, "PnPAzureADServicePrincipalAssignedAppRole")] [RequiredMinimalApiPermissions("AppRoleAssignment.ReadWrite.All")] [OutputType(typeof(List))] + [Alias("Remove-PnPEntraIDServicePrincipalAssignedAppRole")] public class RemoveAzureADServicePrincipalAssignedAppRole : PnPGraphCmdlet { private const string ParameterSet_BYINSTANCE = "By instance"; diff --git a/src/Commands/Apps/RevokeAzureADAppSitePermission.cs b/src/Commands/Apps/RevokeAzureADAppSitePermission.cs index 45a4c7241..f1a1f3c0c 100644 --- a/src/Commands/Apps/RevokeAzureADAppSitePermission.cs +++ b/src/Commands/Apps/RevokeAzureADAppSitePermission.cs @@ -8,6 +8,7 @@ namespace PnP.PowerShell.Commands.Apps { [Cmdlet(VerbsSecurity.Revoke, "PnPAzureADAppSitePermission")] [RequiredMinimalApiPermissions("Sites.FullControl.All")] + [Alias("Revoke-PnPEntraIDAppSitePermission")] public class RevokePnPAzureADAppSitePermission : PnPGraphCmdlet { diff --git a/src/Commands/Apps/SetAzureADAppSitePermission.cs b/src/Commands/Apps/SetAzureADAppSitePermission.cs index 5bb60b7a0..4d8f055e4 100644 --- a/src/Commands/Apps/SetAzureADAppSitePermission.cs +++ b/src/Commands/Apps/SetAzureADAppSitePermission.cs @@ -13,6 +13,7 @@ namespace PnP.PowerShell.Commands.Apps { [Cmdlet(VerbsCommon.Set, "PnPAzureADAppSitePermission")] [RequiredMinimalApiPermissions("Sites.FullControl.All")] + [Alias("Set-PnPEntraIDAppSitePermission")] public class SetPnPAzureADAppSitePermission : PnPGraphCmdlet { diff --git a/src/Commands/AzureAD/AddAzureADGroupMember.cs b/src/Commands/AzureAD/AddAzureADGroupMember.cs index 42a79d262..5c7c33f20 100644 --- a/src/Commands/AzureAD/AddAzureADGroupMember.cs +++ b/src/Commands/AzureAD/AddAzureADGroupMember.cs @@ -11,6 +11,7 @@ namespace PnP.PowerShell.Commands.AzureAD { [Cmdlet(VerbsCommon.Add, "PnPAzureADGroupMember")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] + [Alias("Add-PnPEntraIDGroupMember")] public class AddAzureADGroupMember : PnPGraphCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true)] diff --git a/src/Commands/AzureAD/AddAzureADGroupOwner.cs b/src/Commands/AzureAD/AddAzureADGroupOwner.cs index 1be4d0d03..85c7d76d7 100644 --- a/src/Commands/AzureAD/AddAzureADGroupOwner.cs +++ b/src/Commands/AzureAD/AddAzureADGroupOwner.cs @@ -11,6 +11,7 @@ namespace PnP.PowerShell.Commands.Graph { [Cmdlet(VerbsCommon.Add, "PnPAzureADGroupOwner")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] + [Alias("Add-PnPEntraIDGroupOwner")] public class AddAzureAdGroupOwner : PnPGraphCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true)] diff --git a/src/Commands/AzureAD/ClearAzureADGroupMember.cs b/src/Commands/AzureAD/ClearAzureADGroupMember.cs index 0bda3f4b3..5fe5b3ff7 100644 --- a/src/Commands/AzureAD/ClearAzureADGroupMember.cs +++ b/src/Commands/AzureAD/ClearAzureADGroupMember.cs @@ -10,6 +10,7 @@ namespace PnP.PowerShell.Commands.Graph { [Cmdlet(VerbsCommon.Clear, "PnPAzureADGroupMember")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] + [Alias("Clear-PnPEntraIDGroupMember")] public class ClearAzureADGroupMember : PnPGraphCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true)] diff --git a/src/Commands/AzureAD/ClearAzureADGroupOwner.cs b/src/Commands/AzureAD/ClearAzureADGroupOwner.cs index 66012aac9..cb218e7d8 100644 --- a/src/Commands/AzureAD/ClearAzureADGroupOwner.cs +++ b/src/Commands/AzureAD/ClearAzureADGroupOwner.cs @@ -10,6 +10,7 @@ namespace PnP.PowerShell.Commands.Graph { [Cmdlet(VerbsCommon.Clear, "PnPAzureADGroupOwner")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] + [Alias("Clear-PnPEntraIDGroupOwner")] public class ClearAzureADGroupOwner : PnPGraphCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true)] diff --git a/src/Commands/AzureAD/GetAzureADActivityReportDirectoryAudit.cs b/src/Commands/AzureAD/GetAzureADActivityReportDirectoryAudit.cs index 66fb144b4..d51fc781c 100644 --- a/src/Commands/AzureAD/GetAzureADActivityReportDirectoryAudit.cs +++ b/src/Commands/AzureAD/GetAzureADActivityReportDirectoryAudit.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands.AzureAD { [Cmdlet(VerbsCommon.Get, "PnPAzureADActivityReportDirectoryAudit")] [RequiredMinimalApiPermissions("AuditLog.Read.All")] + [Alias("Get-PnPEntraIDActivityReportDirectoryAudit")] public class GetAzureADActivityReportDirectoryAudit : PnPGraphCmdlet { [Parameter(Mandatory = false)] diff --git a/src/Commands/AzureAD/GetAzureADActivityReportSignIn.cs b/src/Commands/AzureAD/GetAzureADActivityReportSignIn.cs index a7b352824..ff12d4e0b 100644 --- a/src/Commands/AzureAD/GetAzureADActivityReportSignIn.cs +++ b/src/Commands/AzureAD/GetAzureADActivityReportSignIn.cs @@ -10,6 +10,7 @@ namespace PnP.PowerShell.Commands.AzureAD { [Cmdlet(VerbsCommon.Get, "PnPAzureADActivityReportSignIn")] [RequiredMinimalApiPermissions("AuditLog.Read.All")] + [Alias("Get-PnPEntraIDActivityReportSignIn")] public class GetAzureADActivityReportSignIn : PnPGraphCmdlet { [Parameter(Mandatory = false)] diff --git a/src/Commands/AzureAD/GetAzureADApp.cs b/src/Commands/AzureAD/GetAzureADApp.cs index 26c86f2b1..83d2bb701 100644 --- a/src/Commands/AzureAD/GetAzureADApp.cs +++ b/src/Commands/AzureAD/GetAzureADApp.cs @@ -10,6 +10,7 @@ namespace PnP.PowerShell.Commands.AzureAD { [Cmdlet(VerbsCommon.Get, "PnPAzureADApp", DefaultParameterSetName = ParameterSet_Identity)] [RequiredMinimalApiPermissions("Application.Read.All")] + [Alias("Get-PnPEntraIDApp")] public class GetAzureADApp : PnPGraphCmdlet { private const string ParameterSet_Identity = "Identity"; diff --git a/src/Commands/AzureAD/GetAzureADAppPermission.cs b/src/Commands/AzureAD/GetAzureADAppPermission.cs index 1ac493082..7335a966e 100644 --- a/src/Commands/AzureAD/GetAzureADAppPermission.cs +++ b/src/Commands/AzureAD/GetAzureADAppPermission.cs @@ -11,6 +11,7 @@ namespace PnP.PowerShell.Commands.AzureAD { [Cmdlet(VerbsCommon.Get, "PnPAzureADAppPermission")] [RequiredMinimalApiPermissions("Application.Read.All")] + [Alias("Get-PnPEntraIDAppPermission")] public class GetAzureADAppPermission : PnPGraphCmdlet { [Parameter(Mandatory = false)] diff --git a/src/Commands/AzureAD/GetAzureADGroup.cs b/src/Commands/AzureAD/GetAzureADGroup.cs index 66d5a87d7..bd754ffc4 100644 --- a/src/Commands/AzureAD/GetAzureADGroup.cs +++ b/src/Commands/AzureAD/GetAzureADGroup.cs @@ -9,6 +9,7 @@ namespace PnP.PowerShell.Commands.Graph { [Cmdlet(VerbsCommon.Get, "PnPAzureADGroup")] [RequiredMinimalApiPermissions("Group.Read.All")] + [Alias("Get-PnPEntraIDGroup")] public class GetAzureADGroup : PnPGraphCmdlet { [Parameter(Mandatory = false)] diff --git a/src/Commands/AzureAD/GetAzureADGroupMember.cs b/src/Commands/AzureAD/GetAzureADGroupMember.cs index 59c805150..fcd6251a6 100644 --- a/src/Commands/AzureAD/GetAzureADGroupMember.cs +++ b/src/Commands/AzureAD/GetAzureADGroupMember.cs @@ -11,6 +11,7 @@ namespace PnP.PowerShell.Commands.Graph { [Cmdlet(VerbsCommon.Get, "PnPAzureADGroupMember")] [RequiredMinimalApiPermissions("Group.Read.All")] + [Alias("Get-PnPEntraIDGroupMember")] public class GetAzureADGroupMember : PnPGraphCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true)] diff --git a/src/Commands/AzureAD/GetAzureADGroupOwner.cs b/src/Commands/AzureAD/GetAzureADGroupOwner.cs index 541171e11..2a29ce65e 100644 --- a/src/Commands/AzureAD/GetAzureADGroupOwner.cs +++ b/src/Commands/AzureAD/GetAzureADGroupOwner.cs @@ -11,6 +11,7 @@ namespace PnP.PowerShell.Commands.Graph { [Cmdlet(VerbsCommon.Get, "PnPAzureADGroupOwner")] [RequiredMinimalApiPermissions("Group.Read.All")] + [Alias("Get-PnPEntraIDGroupOwner")] public class GetAzureADGroupOwner : PnPGraphCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true)] diff --git a/src/Commands/AzureAD/GetAzureADUser.cs b/src/Commands/AzureAD/GetAzureADUser.cs index 651b71c25..709a9c485 100644 --- a/src/Commands/AzureAD/GetAzureADUser.cs +++ b/src/Commands/AzureAD/GetAzureADUser.cs @@ -9,6 +9,7 @@ namespace PnP.PowerShell.Commands.Principals { [Cmdlet(VerbsCommon.Get, "PnPAzureADUser", DefaultParameterSetName = ParameterSet_LIST)] [RequiredMinimalApiPermissions("User.Read.All")] + [Alias("Get-PnPEntraIDUser")] public class GetAzureADUser : PnPGraphCmdlet { const string ParameterSet_BYID = "Return by specific ID"; diff --git a/src/Commands/AzureAD/NewAzureADGroup.cs b/src/Commands/AzureAD/NewAzureADGroup.cs index 8fb4bb5b7..659bd65da 100644 --- a/src/Commands/AzureAD/NewAzureADGroup.cs +++ b/src/Commands/AzureAD/NewAzureADGroup.cs @@ -15,6 +15,7 @@ namespace PnP.PowerShell.Commands.Graph { [Cmdlet(VerbsCommon.New, "PnPAzureADGroup")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] + [Alias("New-PnPEntraIDGroup")] public class NewAzureADGroup : PnPGraphCmdlet { [Parameter(Mandatory = true)] diff --git a/src/Commands/AzureAD/NewAzureADUserTemporaryAccessPass.cs b/src/Commands/AzureAD/NewAzureADUserTemporaryAccessPass.cs index 7138d5a8d..a985d5303 100644 --- a/src/Commands/AzureAD/NewAzureADUserTemporaryAccessPass.cs +++ b/src/Commands/AzureAD/NewAzureADUserTemporaryAccessPass.cs @@ -9,6 +9,7 @@ namespace PnP.PowerShell.Commands.Graph { [Cmdlet(VerbsCommon.New, "PnPAzureADUserTemporaryAccessPass")] [RequiredMinimalApiPermissions("UserAuthenticationMethod.ReadWrite.All")] + [Alias("New-PnPEntraIDUserTemporaryAccessPass")] public class NewAzureADUserTemporaryAccessPass : PnPGraphCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true)] diff --git a/src/Commands/AzureAD/RegisterAzureADApp.cs b/src/Commands/AzureAD/RegisterAzureADApp.cs index 9577f4970..9f1a5ddaf 100644 --- a/src/Commands/AzureAD/RegisterAzureADApp.cs +++ b/src/Commands/AzureAD/RegisterAzureADApp.cs @@ -21,6 +21,7 @@ namespace PnP.PowerShell.Commands.AzureAD { [Cmdlet(VerbsLifecycle.Register, "PnPAzureADApp")] + [Alias("Register-PnPEntraIDApp")] public class RegisterAzureADApp : BasePSCmdlet, IDynamicParameters { private const string ParameterSet_EXISTINGCERT = "Existing Certificate"; diff --git a/src/Commands/AzureAD/RemoveAzureADApp.cs b/src/Commands/AzureAD/RemoveAzureADApp.cs index 89740a5f4..fb72e00ee 100644 --- a/src/Commands/AzureAD/RemoveAzureADApp.cs +++ b/src/Commands/AzureAD/RemoveAzureADApp.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands.AzureAD { [Cmdlet(VerbsCommon.Remove, "PnPAzureADApp")] [RequiredMinimalApiPermissions("Application.ReadWrite.All")] + [Alias("Remove-PnPEntraIDApp")] public class RemoveAzureADApp : PnPGraphCmdlet { [Parameter(Mandatory = true, Position = 0)] diff --git a/src/Commands/AzureAD/RemoveAzureADGroup.cs b/src/Commands/AzureAD/RemoveAzureADGroup.cs index 7e9f29329..ef4702e46 100644 --- a/src/Commands/AzureAD/RemoveAzureADGroup.cs +++ b/src/Commands/AzureAD/RemoveAzureADGroup.cs @@ -9,6 +9,7 @@ namespace PnP.PowerShell.Commands.Graph { [Cmdlet(VerbsCommon.Remove, "PnPAzureADGroup")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] + [Alias("Remove-PnPEntraIDGroup")] public class RemoveAzureADGroup : PnPGraphCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true)] diff --git a/src/Commands/AzureAD/RemoveAzureADGroupMember.cs b/src/Commands/AzureAD/RemoveAzureADGroupMember.cs index f70e78e2d..aeadf8f32 100644 --- a/src/Commands/AzureAD/RemoveAzureADGroupMember.cs +++ b/src/Commands/AzureAD/RemoveAzureADGroupMember.cs @@ -9,6 +9,7 @@ namespace PnP.PowerShell.Commands.Graph { [Cmdlet(VerbsCommon.Remove, "PnPAzureADGroupMember")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] + [Alias("Remove-PnPEntraIDGroupMember")] public class RemoveAzureADGroupMember : PnPGraphCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true)] diff --git a/src/Commands/AzureAD/RemoveAzureADGroupOwner.cs b/src/Commands/AzureAD/RemoveAzureADGroupOwner.cs index a6a2af5c5..552405356 100644 --- a/src/Commands/AzureAD/RemoveAzureADGroupOwner.cs +++ b/src/Commands/AzureAD/RemoveAzureADGroupOwner.cs @@ -9,6 +9,7 @@ namespace PnP.PowerShell.Commands.Graph { [Cmdlet(VerbsCommon.Remove, "PnPAzureADGroupOwner")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] + [Alias("Remove-PnPEntraIDGroupOwner")] public class RemoveAzureADGroupOwner : PnPGraphCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true)] diff --git a/src/Commands/AzureAD/SetAzureADGroup.cs b/src/Commands/AzureAD/SetAzureADGroup.cs index 7d8290142..d7411d400 100644 --- a/src/Commands/AzureAD/SetAzureADGroup.cs +++ b/src/Commands/AzureAD/SetAzureADGroup.cs @@ -10,6 +10,7 @@ namespace PnP.PowerShell.Commands.Graph { [Cmdlet(VerbsCommon.Set, "PnPAzureADGroup")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] + [Alias("Set-PnPEntraIDGroup")] public class SetAzureADGroup : PnPGraphCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true)] From b419e21196b331592df84c1627d38558a0372637 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Thu, 28 Sep 2023 02:37:53 +0000 Subject: [PATCH 002/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6344 ++++++++--------- version.txt | 2 +- 3 files changed, 3174 insertions(+), 3174 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index b554c62cf..94ef1fe9a 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -d04d720bee8dfa56773cd802e5a26bf6a375d331 \ No newline at end of file +26b493b0d1876be9b2266f819b307892822c185b \ 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 11245f4e4..d7d1a2486 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9518 +1,9518 @@ [ { - "Id": 1, "Rank": 1, + "Command": "Add-PnPAlert -List \"Demo List\"", "CommandName": "Add-PnPAlert", - "Command": "Add-PnPAlert -List \"Demo List\"" + "Id": 1 }, { - "Id": 2, "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", - "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)" + "Id": 2 }, { - "Id": 3, "Rank": 3, + "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAlert", - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Id": 3 }, { - "Id": 4, "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", - "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 }, { - "Id": 5, "Rank": 1, + "Command": "Add-PnPApp -Path ./myapp.sppkg", "CommandName": "Add-PnPApp", - "Command": "Add-PnPApp -Path ./myapp.sppkg" + "Id": 5 }, { - "Id": 6, "Rank": 2, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "CommandName": "Add-PnPApp", - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" + "Id": 6 }, { - "Id": 7, "Rank": 3, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "CommandName": "Add-PnPApp", - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" + "Id": 7 }, { - "Id": 8, "Rank": 4, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "CommandName": "Add-PnPApp", - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" + "Id": 8 }, { - "Id": 9, "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", - "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}" + "Id": 9 }, { - "Id": 10, "Rank": 1, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "CommandName": "Add-PnPAvailableSiteClassification", - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" + "Id": 10 }, { - "Id": 11, "Rank": 2, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "CommandName": "Add-PnPAvailableSiteClassification", - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" + "Id": 11 }, { - "Id": 12, "Rank": 1, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAzureADGroupMember", - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Id": 12 }, { - "Id": 13, "Rank": 2, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPAzureADGroupMember", - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Id": 13 }, { - "Id": 14, "Rank": 3, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "CommandName": "Add-PnPAzureADGroupMember", - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" + "Id": 14 }, { - "Id": 15, "Rank": 1, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAzureADGroupOwner", - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Id": 15 }, { - "Id": 16, "Rank": 2, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPAzureADGroupOwner", - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Id": 16 }, { - "Id": 17, "Rank": 3, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "CommandName": "Add-PnPAzureADGroupOwner", - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" + "Id": 17 }, { - "Id": 18, "Rank": 1, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph" + "Id": 18 }, { - "Id": 19, "Rank": 2, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"" + "Id": 19 }, { - "Id": 20, "Rank": 1, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "CommandName": "Add-PnPContentType", - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct" + "Id": 20 }, { - "Id": 21, "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", - "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 }, { - "Id": 22, "Rank": 3, + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "CommandName": "Add-PnPContentType", - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" + "Id": 22 }, { - "Id": 23, "Rank": 4, + "Command": "Add-PnPContentType -Name \"Project Item\"", "CommandName": "Add-PnPContentType", - "Command": "Add-PnPContentType -Name \"Project Item\"" + "Id": 23 }, { - "Id": 24, "Rank": 5, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "CommandName": "Add-PnPContentType", - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" + "Id": 24 }, { - "Id": 25, "Rank": 1, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" + "Id": 25 }, { - "Id": 26, "Rank": 2, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" + "Id": 26 }, { - "Id": 27, "Rank": 1, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "CommandName": "Add-PnPContentTypeToDocumentSet", - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Id": 27 }, { - "Id": 28, "Rank": 2, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "CommandName": "Add-PnPContentTypeToDocumentSet", - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Id": 28 }, { - "Id": 29, "Rank": 1, + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "CommandName": "Add-PnPContentTypeToList", - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" + "Id": 29 }, { - "Id": 30, "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", - "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 }, { - "Id": 31, "Rank": 1, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" + "Id": 31 }, { - "Id": 32, "Rank": 2, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" + "Id": 32 }, { - "Id": 33, "Rank": 1, + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "CommandName": "Add-PnPDocumentSet", - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" + "Id": 33 }, { - "Id": 34, "Rank": 1, + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "CommandName": "Add-PnPEventReceiver", - "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous" + "Id": 34 }, { - "Id": 35, "Rank": 2, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "CommandName": "Add-PnPEventReceiver", - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous" + "Id": 35 }, { - "Id": 36, "Rank": 3, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", "CommandName": "Add-PnPEventReceiver", - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site" + "Id": 36 }, { - "Id": 37, "Rank": 4, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "CommandName": "Add-PnPEventReceiver", - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web" + "Id": 37 }, { - "Id": 38, "Rank": 1, + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "CommandName": "Add-PnPField", - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" + "Id": 38 }, { - "Id": 39, "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", - "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"" + "Id": 39 }, { - "Id": 40, "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", - "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 }, { - "Id": 41, "Rank": 4, + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "CommandName": "Add-PnPField", - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" + "Id": 41 }, { - "Id": 42, "Rank": 5, + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "CommandName": "Add-PnPField", - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" + "Id": 42 }, { - "Id": 43, "Rank": 6, + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "CommandName": "Add-PnPField", - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" + "Id": 43 }, { - "Id": 44, "Rank": 1, + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "CommandName": "Add-PnPFieldToContentType", - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Id": 44 }, { - "Id": 45, "Rank": 1, + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" + "Id": 45 }, { - "Id": 46, "Rank": 2, + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" + "Id": 46 }, { - "Id": 47, "Rank": 3, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" + "Id": 47 }, { - "Id": 48, "Rank": 4, + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" + "Id": 48 }, { - "Id": 49, "Rank": 5, + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" + "Id": 49 }, { - "Id": 50, "Rank": 6, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" + "Id": 50 }, { - "Id": 51, "Rank": 7, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" + "Id": 51 }, { - "Id": 52, "Rank": 8, + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" + "Id": 52 }, { - "Id": 53, "Rank": 1, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Id": 53 }, { - "Id": 54, "Rank": 2, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" + "Id": 54 }, { - "Id": 55, "Rank": 3, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" + "Id": 55 }, { - "Id": 56, "Rank": 1, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Id": 56 }, { - "Id": 57, "Rank": 2, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" + "Id": 57 }, { - "Id": 58, "Rank": 1, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "CommandName": "Add-PnPFileSharingInvite", - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" + "Id": 58 }, { - "Id": 59, "Rank": 2, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "CommandName": "Add-PnPFileSharingInvite", - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" + "Id": 59 }, { - "Id": 60, "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", - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" + "Id": 60 }, { - "Id": 61, "Rank": 1, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" + "Id": 61 }, { - "Id": 62, "Rank": 2, + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" + "Id": 62 }, { - "Id": 63, "Rank": 3, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "CommandName": "Add-PnPFileToSiteTemplate", - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" + "Id": 63 }, { - "Id": 64, "Rank": 4, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "CommandName": "Add-PnPFileToSiteTemplate", - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" + "Id": 64 }, { - "Id": 65, "Rank": 5, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" + "Id": 65 }, { - "Id": 66, "Rank": 1, + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPFileUserSharingLink", - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Id": 66 }, { - "Id": 67, "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", - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Id": 67 }, { - "Id": 68, "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", - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit" + "Id": 68 }, { - "Id": 69, "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", - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView" + "Id": 69 }, { - "Id": 70, "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", - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare" + "Id": 70 }, { - "Id": 71, "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", - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit" + "Id": 71 }, { - "Id": 72, "Rank": 1, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "CommandName": "Add-PnPFolder", - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Id": 72 }, { - "Id": 73, "Rank": 2, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "CommandName": "Add-PnPFolder", - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" + "Id": 73 }, { - "Id": 74, "Rank": 3, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "CommandName": "Add-PnPFolder", - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" + "Id": 74 }, { - "Id": 75, "Rank": 1, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Id": 75 }, { - "Id": 76, "Rank": 2, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" + "Id": 76 }, { - "Id": 77, "Rank": 3, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)" + "Id": 77 }, { - "Id": 78, "Rank": 1, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Id": 78 }, { - "Id": 79, "Rank": 2, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" + "Id": 79 }, { - "Id": 80, "Rank": 1, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "CommandName": "Add-PnPFolderSharingInvite", - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" + "Id": 80 }, { - "Id": 81, "Rank": 2, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "CommandName": "Add-PnPFolderSharingInvite", - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" + "Id": 81 }, { - "Id": 82, "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", - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" + "Id": 82 }, { - "Id": 83, "Rank": 1, + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPFolderUserSharingLink", - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Id": 83 }, { - "Id": 84, "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", - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Id": 84 }, { - "Id": 85, "Rank": 1, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "CommandName": "Add-PnPGroupMember", - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Id": 85 }, { - "Id": 86, "Rank": 2, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "CommandName": "Add-PnPGroupMember", - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" + "Id": 86 }, { - "Id": 87, "Rank": 1, + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "CommandName": "Add-PnPHtmlPublishingPageLayout", - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" + "Id": 87 }, { - "Id": 88, "Rank": 1, + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "CommandName": "Add-PnPHubSiteAssociation", - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" + "Id": 88 }, { - "Id": 89, "Rank": 1, + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "CommandName": "Add-PnPHubToHubAssociation", - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" + "Id": 89 }, { - "Id": 90, "Rank": 2, + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "CommandName": "Add-PnPHubToHubAssociation", - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"" + "Id": 90 }, { - "Id": 91, "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", - "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 }, { - "Id": 92, "Rank": 1, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "CommandName": "Add-PnPJavaScriptBlock", - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" + "Id": 92 }, { - "Id": 93, "Rank": 2, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "CommandName": "Add-PnPJavaScriptBlock", - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" + "Id": 93 }, { - "Id": 94, "Rank": 1, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "CommandName": "Add-PnPJavaScriptLink", - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site" + "Id": 94 }, { - "Id": 95, "Rank": 2, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "CommandName": "Add-PnPJavaScriptLink", - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" + "Id": 95 }, { - "Id": 96, "Rank": 1, + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "CommandName": "Add-PnPListDesign", - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" + "Id": 96 }, { - "Id": 97, "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", - "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 }, { - "Id": 98, "Rank": 1, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" + "Id": 98 }, { - "Id": 99, "Rank": 2, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" + "Id": 99 }, { - "Id": 100, "Rank": 3, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" + "Id": 100 }, { - "Id": 101, "Rank": 1, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Add-PnPListItem", - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Id": 101 }, { - "Id": 102, "Rank": 2, + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Add-PnPListItem", - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Id": 102 }, { - "Id": 103, "Rank": 3, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "CommandName": "Add-PnPListItem", - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" + "Id": 103 }, { - "Id": 104, "Rank": 4, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "CommandName": "Add-PnPListItem", - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" + "Id": 104 }, { - "Id": 105, "Rank": 5, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "CommandName": "Add-PnPListItem", - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" + "Id": 105 }, { - "Id": 106, "Rank": 1, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "CommandName": "Add-PnPListItemAttachment", - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" + "Id": 106 }, { - "Id": 107, "Rank": 2, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "CommandName": "Add-PnPListItemAttachment", - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" + "Id": 107 }, { - "Id": 108, "Rank": 3, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "CommandName": "Add-PnPListItemAttachment", - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" + "Id": 108 }, { - "Id": 109, "Rank": 1, + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "CommandName": "Add-PnPListItemComment", - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" + "Id": 109 }, { - "Id": 110, "Rank": 1, + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "CommandName": "Add-PnPMasterPage", - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" + "Id": 110 }, { - "Id": 111, "Rank": 1, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPMicrosoft365GroupMember", - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Id": 111 }, { - "Id": 112, "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPMicrosoft365GroupMember", - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Id": 112 }, { - "Id": 113, "Rank": 1, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Id": 113 }, { - "Id": 114, "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Id": 114 }, { - "Id": 115, "Rank": 1, + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"" + "Id": 115 }, { - "Id": 116, "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" + "Id": 116 }, { - "Id": 117, "Rank": 3, + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" + "Id": 117 }, { - "Id": 118, "Rank": 1, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" + "Id": 118 }, { - "Id": 119, "Rank": 2, + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012" + "Id": 119 }, { - "Id": 120, "Rank": 3, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" + "Id": 120 }, { - "Id": 121, "Rank": 4, + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" + "Id": 121 }, { - "Id": 122, "Rank": 5, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" + "Id": 122 }, { - "Id": 123, "Rank": 6, + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" + "Id": 123 }, { - "Id": 124, "Rank": 7, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" + "Id": 124 }, { - "Id": 125, "Rank": 8, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" + "Id": 125 }, { - "Id": 126, "Rank": 1, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "CommandName": "Add-PnPOrgAssetsLibrary", - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" + "Id": 126 }, { - "Id": 127, "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", - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"" + "Id": 127 }, { - "Id": 128, "Rank": 3, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "CommandName": "Add-PnPOrgAssetsLibrary", - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" + "Id": 128 }, { - "Id": 129, "Rank": 1, + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "CommandName": "Add-PnPOrgNewsSite", - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" + "Id": 129 }, { - "Id": 130, "Rank": 1, + "Command": "Add-PnPPage -Name \"NewPage\"", "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\"" + "Id": 130 }, { - "Id": 131, "Rank": 2, + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" + "Id": 131 }, { - "Id": 132, "Rank": 3, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" + "Id": 132 }, { - "Id": 133, "Rank": 4, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" + "Id": 133 }, { - "Id": 134, "Rank": 5, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"Folder/NewPage\"" + "Id": 134 }, { - "Id": 135, "Rank": 6, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" + "Id": 135 }, { - "Id": 136, "Rank": 7, + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" + "Id": 136 }, { - "Id": 137, "Rank": 8, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -Translate" + "Id": 137 }, { - "Id": 138, "Rank": 9, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" + "Id": 138 }, { - "Id": 139, "Rank": 10, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" + "Id": 139 }, { - "Id": 140, "Rank": 1, + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "CommandName": "Add-PnPPageImageWebPart", - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" + "Id": 140 }, { - "Id": 141, "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", - "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 }, { - "Id": 142, "Rank": 1, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "CommandName": "Add-PnPPageSection", - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" + "Id": 142 }, { - "Id": 143, "Rank": 2, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "CommandName": "Add-PnPPageSection", - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" + "Id": 143 }, { - "Id": 144, "Rank": 1, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "CommandName": "Add-PnPPageTextPart", - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" + "Id": 144 }, { - "Id": 145, "Rank": 2, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "CommandName": "Add-PnPPageTextPart", - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" + "Id": 145 }, { - "Id": 146, "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", - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"" + "Id": 146 }, { - "Id": 147, "Rank": 1, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "CommandName": "Add-PnPPageWebPart", - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" + "Id": 147 }, { - "Id": 148, "Rank": 2, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "CommandName": "Add-PnPPageWebPart", - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" + "Id": 148 }, { - "Id": 149, "Rank": 3, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "CommandName": "Add-PnPPageWebPart", - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" + "Id": 149 }, { - "Id": 150, "Rank": 1, + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "CommandName": "Add-PnPPlannerBucket", - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" + "Id": 150 }, { - "Id": 151, "Rank": 2, + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "CommandName": "Add-PnPPlannerBucket", - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" + "Id": 151 }, { - "Id": 152, "Rank": 1, + "Command": "Add-PnPPlannerRoster", "CommandName": "Add-PnPPlannerRoster", - "Command": "Add-PnPPlannerRoster" + "Id": 152 }, { - "Id": 153, "Rank": 1, + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPPlannerRosterMember", - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "Id": 153 }, { - "Id": 154, "Rank": 1, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "CommandName": "Add-PnPPlannerTask", - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" + "Id": 154 }, { - "Id": 155, "Rank": 2, + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "CommandName": "Add-PnPPlannerTask", - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" + "Id": 155 }, { - "Id": 156, "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", - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" + "Id": 156 }, { - "Id": 157, "Rank": 1, + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "CommandName": "Add-PnPPublishingImageRendition", - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Id": 157 }, { - "Id": 158, "Rank": 1, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "CommandName": "Add-PnPPublishingPage", - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" + "Id": 158 }, { - "Id": 159, "Rank": 2, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "CommandName": "Add-PnPPublishingPage", - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" + "Id": 159 }, { - "Id": 160, "Rank": 1, + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "CommandName": "Add-PnPPublishingPageLayout", - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" + "Id": 160 }, { - "Id": 161, "Rank": 1, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "CommandName": "Add-PnPRoleDefinition", - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" + "Id": 161 }, { - "Id": 162, "Rank": 2, + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "CommandName": "Add-PnPRoleDefinition", - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" + "Id": 162 }, { - "Id": 163, "Rank": 3, + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "CommandName": "Add-PnPRoleDefinition", - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" + "Id": 163 }, { - "Id": 164, "Rank": 1, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPSiteCollectionAdmin", - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Id": 164 }, { - "Id": 165, "Rank": 2, + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Add-PnPSiteCollectionAdmin", - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Id": 165 }, { - "Id": 166, "Rank": 3, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPSiteCollectionAdmin", - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" + "Id": 166 }, { - "Id": 167, "Rank": 1, + "Command": "Add-PnPSiteCollectionAppCatalog", "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Command": "Add-PnPSiteCollectionAppCatalog" + "Id": 167 }, { - "Id": 168, "Rank": 2, + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Id": 168 }, { - "Id": 169, "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", - "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 }, { - "Id": 170, "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", - "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 }, { - "Id": 171, "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", - "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 }, { - "Id": 172, "Rank": 1, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "CommandName": "Add-PnPSiteDesignFromWeb", - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" + "Id": 172 }, { - "Id": 173, "Rank": 2, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "CommandName": "Add-PnPSiteDesignFromWeb", - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" + "Id": 173 }, { - "Id": 174, "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", - "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 }, { - "Id": 175, "Rank": 1, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "CommandName": "Add-PnPSiteDesignTask", - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" + "Id": 175 }, { - "Id": 176, "Rank": 2, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "CommandName": "Add-PnPSiteDesignTask", - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "Id": 176 }, { - "Id": 177, "Rank": 1, + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "CommandName": "Add-PnPSiteScript", - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" + "Id": 177 }, { - "Id": 178, "Rank": 1, + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "CommandName": "Add-PnPSiteScriptPackage", - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" + "Id": 178 }, { - "Id": 179, "Rank": 1, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "CommandName": "Add-PnPSiteTemplate", - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" + "Id": 179 }, { - "Id": 180, "Rank": 1, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "CommandName": "Add-PnPStoredCredential", - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" + "Id": 180 }, { - "Id": 181, "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", - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" + "Id": 181 }, { - "Id": 182, "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", - "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 }, { - "Id": 183, "Rank": 1, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "CommandName": "Add-PnPTaxonomyField", - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" + "Id": 183 }, { - "Id": 184, "Rank": 2, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "CommandName": "Add-PnPTaxonomyField", - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" + "Id": 184 }, { - "Id": 185, "Rank": 1, + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "CommandName": "Add-PnPTeamsChannel", - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" + "Id": 185 }, { - "Id": 186, "Rank": 2, + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "CommandName": "Add-PnPTeamsChannel", - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" + "Id": 186 }, { - "Id": 187, "Rank": 3, + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "CommandName": "Add-PnPTeamsChannel", - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" + "Id": 187 }, { - "Id": 188, "Rank": 4, + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "CommandName": "Add-PnPTeamsChannel", - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" + "Id": 188 }, { - "Id": 189, "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", - "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner" + "Id": 189 }, { - "Id": 190, "Rank": 2, + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "CommandName": "Add-PnpTeamsChannelUser", - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" + "Id": 190 }, { - "Id": 191, "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", - "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"" + "Id": 191 }, { - "Id": 192, "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", - "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 }, { - "Id": 193, "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", - "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 }, { - "Id": 194, "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", - "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 }, { - "Id": 195, "Rank": 1, + "Command": "Add-PnPTeamsTeam", "CommandName": "Add-PnPTeamsTeam", - "Command": "Add-PnPTeamsTeam" + "Id": 195 }, { - "Id": 196, "Rank": 1, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Add-PnPTeamsUser", - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Id": 196 }, { - "Id": 197, "Rank": 2, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "CommandName": "Add-PnPTeamsUser", - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "Id": 197 }, { - "Id": 198, "Rank": 3, + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "CommandName": "Add-PnPTeamsUser", - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" + "Id": 198 }, { - "Id": 199, "Rank": 4, + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "CommandName": "Add-PnPTeamsUser", - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" + "Id": 199 }, { - "Id": 200, "Rank": 1, + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "CommandName": "Add-PnPTenantCdnOrigin", - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Id": 200 }, { - "Id": 201, "Rank": 1, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "CommandName": "Add-PnPTenantSequence", - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" + "Id": 201 }, { - "Id": 202, "Rank": 1, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "CommandName": "Add-PnPTenantSequenceSite", - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" + "Id": 202 }, { - "Id": 203, "Rank": 1, + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "CommandName": "Add-PnPTenantSequenceSubSite", - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" + "Id": 203 }, { - "Id": 204, "Rank": 1, + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "CommandName": "Add-PnPTermToTerm", - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" + "Id": 204 }, { - "Id": 205, "Rank": 1, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "CommandName": "Add-PnPView", - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" + "Id": 205 }, { - "Id": 206, "Rank": 2, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "CommandName": "Add-PnPView", - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" + "Id": 206 }, { - "Id": 207, "Rank": 3, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "CommandName": "Add-PnPView", - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" + "Id": 207 }, { - "Id": 208, "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", - "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 }, { - "Id": 209, "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", - "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 }, { - "Id": 210, "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", - "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 }, { - "Id": 211, "Rank": 1, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "CommandName": "Add-PnPWebhookSubscription", - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" + "Id": 211 }, { - "Id": 212, "Rank": 2, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "CommandName": "Add-PnPWebhookSubscription", - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" + "Id": 212 }, { - "Id": 213, "Rank": 3, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "CommandName": "Add-PnPWebhookSubscription", - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"" + "Id": 213 }, { - "Id": 214, "Rank": 1, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "CommandName": "Add-PnPWebPartToWebPartPage", - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1" + "Id": 214 }, { - "Id": 215, "Rank": 2, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "CommandName": "Add-PnPWebPartToWebPartPage", - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" + "Id": 215 }, { - "Id": 216, "Rank": 1, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "CommandName": "Add-PnPWebPartToWikiPage", - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1" + "Id": 216 }, { - "Id": 217, "Rank": 2, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "CommandName": "Add-PnPWebPartToWikiPage", - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" + "Id": 217 }, { - "Id": 218, "Rank": 1, + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "CommandName": "Add-PnPWikiPage", - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" + "Id": 218 }, { - "Id": 219, "Rank": 1, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "CommandName": "Clear-PnPAzureADGroupMember", - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" + "Id": 219 }, { - "Id": 220, "Rank": 1, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "CommandName": "Clear-PnPAzureADGroupOwner", - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" + "Id": 220 }, { - "Id": 221, "Rank": 1, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "CommandName": "Clear-PnPDefaultColumnValues", - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" + "Id": 221 }, { - "Id": 222, "Rank": 2, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "CommandName": "Clear-PnPDefaultColumnValues", - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" + "Id": 222 }, { - "Id": 223, "Rank": 1, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "CommandName": "Clear-PnPListItemAsRecord", - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Id": 223 }, { - "Id": 224, "Rank": 1, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" + "Id": 224 }, { - "Id": 225, "Rank": 1, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" + "Id": 225 }, { - "Id": 226, "Rank": 1, + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "CommandName": "Clear-PnpRecycleBinItem", - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Id": 226 }, { - "Id": 227, "Rank": 2, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "CommandName": "Clear-PnpRecycleBinItem", - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" + "Id": 227 }, { - "Id": 228, "Rank": 3, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "CommandName": "Clear-PnpRecycleBinItem", - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" + "Id": 228 }, { - "Id": 229, "Rank": 1, + "Command": "Clear-PnPTenantAppCatalogUrl", "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Command": "Clear-PnPTenantAppCatalogUrl" + "Id": 229 }, { - "Id": 230, "Rank": 1, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Clear-PnPTenantRecycleBinItem", - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Id": 230 }, { - "Id": 231, "Rank": 2, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "CommandName": "Clear-PnPTenantRecycleBinItem", - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Id": 231 }, { - "Id": 232, "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", - "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"" + "Id": 232 }, { - "Id": 233, "Rank": 1, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "CommandName": "Convert-PnPFolderToSiteTemplate", - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" + "Id": 233 }, { - "Id": 234, "Rank": 2, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "CommandName": "Convert-PnPFolderToSiteTemplate", - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" + "Id": 234 }, { - "Id": 235, "Rank": 1, + "Command": "Convert-PnPSiteTemplate -Path template.xml", "CommandName": "Convert-PnPSiteTemplate", - "Command": "Convert-PnPSiteTemplate -Path template.xml" + "Id": 235 }, { - "Id": 236, "Rank": 2, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "CommandName": "Convert-PnPSiteTemplate", - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" + "Id": 236 }, { - "Id": 237, "Rank": 3, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "CommandName": "Convert-PnPSiteTemplate", - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" + "Id": 237 }, { - "Id": 238, "Rank": 1, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" + "Id": 238 }, { - "Id": 239, "Rank": 2, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" + "Id": 239 }, { - "Id": 240, "Rank": 1, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" + "Id": 240 }, { - "Id": 241, "Rank": 2, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" + "Id": 241 }, { - "Id": 242, "Rank": 3, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" + "Id": 242 }, { - "Id": 243, "Rank": 4, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" + "Id": 243 }, { - "Id": 244, "Rank": 5, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Id": 244 }, { - "Id": 245, "Rank": 6, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" + "Id": 245 }, { - "Id": 246, "Rank": 7, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" + "Id": 246 }, { - "Id": 247, "Rank": 8, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" + "Id": 247 }, { - "Id": 248, "Rank": 9, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Id": 248 }, { - "Id": 249, "Rank": 10, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" + "Id": 249 }, { - "Id": 250, "Rank": 11, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" + "Id": 250 }, { - "Id": 251, "Rank": 12, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Id": 251 }, { - "Id": 252, "Rank": 13, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Id": 252 }, { - "Id": 253, "Rank": 14, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" + "Id": 253 }, { - "Id": 254, "Rank": 1, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Id": 254 }, { - "Id": 255, "Rank": 2, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Id": 255 }, { - "Id": 256, "Rank": 3, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "Id": 256 }, { - "Id": 257, "Rank": 4, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Id": 257 }, { - "Id": 258, "Rank": 5, + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Id": 258 }, { - "Id": 259, "Rank": 6, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "Id": 259 }, { - "Id": 260, "Rank": 7, + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Id": 260 }, { - "Id": 261, "Rank": 8, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Id": 261 }, { - "Id": 262, "Rank": 9, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Id": 262 }, { - "Id": 263, "Rank": 10, + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Id": 263 }, { - "Id": 264, "Rank": 1, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Id": 264 }, { - "Id": 265, "Rank": 2, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Id": 265 }, { - "Id": 266, "Rank": 3, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "Id": 266 }, { - "Id": 267, "Rank": 4, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Id": 267 }, { - "Id": 268, "Rank": 5, + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Id": 268 }, { - "Id": 269, "Rank": 6, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "Id": 269 }, { - "Id": 270, "Rank": 7, + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Id": 270 }, { - "Id": 271, "Rank": 8, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Id": 271 }, { - "Id": 272, "Rank": 9, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Id": 272 }, { - "Id": 273, "Rank": 10, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Id": 273 }, { - "Id": 274, "Rank": 1, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "CommandName": "Copy-PnPItemProxy", - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" + "Id": 274 }, { - "Id": 275, "Rank": 1, + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "CommandName": "Copy-PnPList", - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" + "Id": 275 }, { - "Id": 276, "Rank": 2, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "CommandName": "Copy-PnPList", - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" + "Id": 276 }, { - "Id": 277, "Rank": 3, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "CommandName": "Copy-PnPList", - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" + "Id": 277 }, { - "Id": 278, "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", - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" + "Id": 278 }, { - "Id": 279, "Rank": 1, + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "CommandName": "Copy-PnPTeamsTeam", - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" + "Id": 279 }, { - "Id": 280, "Rank": 2, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "CommandName": "Copy-PnPTeamsTeam", - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" + "Id": 280 }, { - "Id": 281, "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", - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" + "Id": 281 }, { - "Id": 282, "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", - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" + "Id": 282 }, { - "Id": 283, "Rank": 1, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Disable-PnPFeature", - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Id": 283 }, { - "Id": 284, "Rank": 2, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "CommandName": "Disable-PnPFeature", - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Id": 284 }, { - "Id": 285, "Rank": 3, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "CommandName": "Disable-PnPFeature", - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Id": 285 }, { - "Id": 286, "Rank": 1, + "Command": "Disable-PnPPageScheduling", "CommandName": "Disable-PnPPageScheduling", - "Command": "Disable-PnPPageScheduling" + "Id": 286 }, { - "Id": 287, "Rank": 1, + "Command": "Disable-PnPPowerShellTelemetry", "CommandName": "Disable-PnPPowerShellTelemetry", - "Command": "Disable-PnPPowerShellTelemetry" + "Id": 287 }, { - "Id": 288, "Rank": 2, + "Command": "Disable-PnPPowerShellTelemetry -Force", "CommandName": "Disable-PnPPowerShellTelemetry", - "Command": "Disable-PnPPowerShellTelemetry -Force" + "Id": 288 }, { - "Id": 289, "Rank": 1, + "Command": "Disable-PnPSharingForNonOwnersOfSite", "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Command": "Disable-PnPSharingForNonOwnersOfSite" + "Id": 289 }, { - "Id": 290, "Rank": 1, + "Command": "Disable-PnPSiteClassification", "CommandName": "Disable-PnPSiteClassification", - "Command": "Disable-PnPSiteClassification" + "Id": 290 }, { - "Id": 291, "Rank": 1, + "Command": "Disconnect-PnPOnline", "CommandName": "Disconnect-PnPOnline", - "Command": "Disconnect-PnPOnline" + "Id": 291 }, { - "Id": 292, "Rank": 1, + "Command": "Enable-PnPCommSite", "CommandName": "Enable-PnPCommSite", - "Command": "Enable-PnPCommSite" + "Id": 292 }, { - "Id": 293, "Rank": 2, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "CommandName": "Enable-PnPCommSite", - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" + "Id": 293 }, { - "Id": 294, "Rank": 1, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Enable-PnPFeature", - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Id": 294 }, { - "Id": 295, "Rank": 2, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "CommandName": "Enable-PnPFeature", - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Id": 295 }, { - "Id": 296, "Rank": 3, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "CommandName": "Enable-PnPFeature", - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Id": 296 }, { - "Id": 297, "Rank": 1, + "Command": "Enable-PnPPageScheduling", "CommandName": "Enable-PnPPageScheduling", - "Command": "Enable-PnPPageScheduling" + "Id": 297 }, { - "Id": 298, "Rank": 1, + "Command": "Enable-PnPPowerShellTelemetry", "CommandName": "Enable-PnPPowerShellTelemetry", - "Command": "Enable-PnPPowerShellTelemetry" + "Id": 298 }, { - "Id": 299, "Rank": 2, + "Command": "Enable-PnPPowerShellTelemetry -Force", "CommandName": "Enable-PnPPowerShellTelemetry", - "Command": "Enable-PnPPowerShellTelemetry -Force" + "Id": 299 }, { - "Id": 300, "Rank": 1, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "CommandName": "Enable-PnPSiteClassification", - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" + "Id": 300 }, { - "Id": 301, "Rank": 2, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "CommandName": "Enable-PnPSiteClassification", - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" + "Id": 301 }, { - "Id": 302, "Rank": 1, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "CommandName": "Export-PnPListToSiteTemplate", - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" + "Id": 302 }, { - "Id": 303, "Rank": 2, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "CommandName": "Export-PnPListToSiteTemplate", - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" + "Id": 303 }, { - "Id": 304, "Rank": 1, + "Command": "Export-PnPPage -Identity Home.aspx", "CommandName": "Export-PnPPage", - "Command": "Export-PnPPage -Identity Home.aspx" + "Id": 304 }, { - "Id": 305, "Rank": 1, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" + "Id": 305 }, { - "Id": 306, "Rank": 2, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" + "Id": 306 }, { - "Id": 307, "Rank": 3, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" + "Id": 307 }, { - "Id": 308, "Rank": 1, + "Command": "Export-PnPTaxonomy", "CommandName": "Export-PnPTaxonomy", - "Command": "Export-PnPTaxonomy" + "Id": 308 }, { - "Id": 309, "Rank": 2, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "CommandName": "Export-PnPTaxonomy", - "Command": "Export-PnPTaxonomy -Path c:\\output.txt" + "Id": 309 }, { - "Id": 310, "Rank": 3, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "CommandName": "Export-PnPTaxonomy", - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" + "Id": 310 }, { - "Id": 311, "Rank": 4, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "CommandName": "Export-PnPTaxonomy", - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" + "Id": 311 }, { - "Id": 312, "Rank": 1, + "Command": "Export-PnPTermGroupToXml", "CommandName": "Export-PnPTermGroupToXml", - "Command": "Export-PnPTermGroupToXml" + "Id": 312 }, { - "Id": 313, "Rank": 2, + "Command": "Export-PnPTermGroupToXml -Out output.xml", "CommandName": "Export-PnPTermGroupToXml", - "Command": "Export-PnPTermGroupToXml -Out output.xml" + "Id": 313 }, { - "Id": 314, "Rank": 3, + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "CommandName": "Export-PnPTermGroupToXml", - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" + "Id": 314 }, { - "Id": 315, "Rank": 1, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "CommandName": "Export-PnPUserInfo", - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" + "Id": 315 }, { - "Id": 316, "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", - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" + "Id": 316 }, { - "Id": 317, "Rank": 1, + "Command": "Export-PnPUserProfile -LoginName user@domain.com", "CommandName": "Export-PnPUserProfile", - "Command": "Export-PnPUserProfile -LoginName user@domain.com" + "Id": 317 }, { - "Id": 318, "Rank": 2, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "CommandName": "Export-PnPUserProfile", - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" + "Id": 318 }, { - "Id": 319, "Rank": 1, + "Command": "Find-PnPFile -Match *.master", "CommandName": "Find-PnPFile", - "Command": "Find-PnPFile -Match *.master" + "Id": 319 }, { - "Id": 320, "Rank": 2, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "CommandName": "Find-PnPFile", - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" + "Id": 320 }, { - "Id": 321, "Rank": 3, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "CommandName": "Find-PnPFile", - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" + "Id": 321 }, { - "Id": 322, "Rank": 1, + "Command": "Get-PnPAccessToken", "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken" + "Id": 322 }, { - "Id": 323, "Rank": 2, + "Command": "Get-PnPAccessToken -Decoded", "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken -Decoded" + "Id": 323 }, { - "Id": 324, "Rank": 3, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" + "Id": 324 }, { - "Id": 325, "Rank": 4, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken -ResourceTypeName ARM" + "Id": 325 }, { - "Id": 326, "Rank": 5, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" + "Id": 326 }, { - "Id": 327, "Rank": 1, + "Command": "Get-PnPAlert", "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert" + "Id": 327 }, { - "Id": 328, "Rank": 2, + "Command": "Get-PnPAlert -List \"Demo List\"", "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -List \"Demo List\"" + "Id": 328 }, { - "Id": 329, "Rank": 3, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Id": 329 }, { - "Id": 330, "Rank": 4, + "Command": "Get-PnPAlert -Title \"Demo Alert\"", "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -Title \"Demo Alert\"" + "Id": 330 }, { - "Id": 331, "Rank": 5, + "Command": "Get-PnPAlert -AllUsers", "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -AllUsers" + "Id": 331 }, { - "Id": 332, "Rank": 6, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" + "Id": 332 }, { - "Id": 333, "Rank": 1, + "Command": "Get-PnPApp", "CommandName": "Get-PnPApp", - "Command": "Get-PnPApp" + "Id": 333 }, { - "Id": 334, "Rank": 2, + "Command": "Get-PnPApp -Scope Site", "CommandName": "Get-PnPApp", - "Command": "Get-PnPApp -Scope Site" + "Id": 334 }, { - "Id": 335, "Rank": 3, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Get-PnPApp", - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Id": 335 }, { - "Id": 336, "Rank": 1, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "CommandName": "Get-PnPAppErrors", - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" + "Id": 336 }, { - "Id": 337, "Rank": 2, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "CommandName": "Get-PnPAppErrors", - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" + "Id": 337 }, { - "Id": 338, "Rank": 1, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "CommandName": "Get-PnPAppInfo", - "Command": "Get-PnPAppInfo -Name \"Excel Service\"" + "Id": 338 }, { - "Id": 339, "Rank": 2, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Get-PnPAppInfo", - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Id": 339 }, { - "Id": 340, "Rank": 3, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "CommandName": "Get-PnPAppInfo", - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" + "Id": 340 }, { - "Id": 341, "Rank": 1, + "Command": "Get-PnPApplicationCustomizer", "CommandName": "Get-PnPApplicationCustomizer", - "Command": "Get-PnPApplicationCustomizer" + "Id": 341 }, { - "Id": 342, "Rank": 2, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Get-PnPApplicationCustomizer", - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Id": 342 }, { - "Id": 343, "Rank": 3, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "CommandName": "Get-PnPApplicationCustomizer", - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" + "Id": 343 }, { - "Id": 344, "Rank": 1, + "Command": "Get-PnPAuditing", "CommandName": "Get-PnPAuditing", - "Command": "Get-PnPAuditing" + "Id": 344 }, { - "Id": 345, "Rank": 1, + "Command": "Get-PnPAuthenticationRealm", "CommandName": "Get-PnPAuthenticationRealm", - "Command": "Get-PnPAuthenticationRealm" + "Id": 345 }, { - "Id": 346, "Rank": 2, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "CommandName": "Get-PnPAuthenticationRealm", - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" + "Id": 346 }, { - "Id": 347, "Rank": 1, + "Command": "Get-PnPAvailableLanguage", "CommandName": "Get-PnPAvailableLanguage", - "Command": "Get-PnPAvailableLanguage" + "Id": 347 }, { - "Id": 348, "Rank": 1, + "Command": "Get-PnPAvailableSensitivityLabel", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Command": "Get-PnPAvailableSensitivityLabel" + "Id": 348 }, { - "Id": 349, "Rank": 2, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" + "Id": 349 }, { - "Id": 350, "Rank": 3, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" + "Id": 350 }, { - "Id": 351, "Rank": 1, + "Command": "Get-PnPAvailableSiteClassification", "CommandName": "Get-PnPAvailableSiteClassification", - "Command": "Get-PnPAvailableSiteClassification" + "Id": 351 }, { - "Id": 352, "Rank": 1, + "Command": "Get-PnPAzureACSPrincipal", "CommandName": "Get-PnPAzureACSPrincipal", - "Command": "Get-PnPAzureACSPrincipal" + "Id": 352 }, { - "Id": 353, "Rank": 2, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "CommandName": "Get-PnPAzureACSPrincipal", - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" + "Id": 353 }, { - "Id": 354, "Rank": 3, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "CommandName": "Get-PnPAzureACSPrincipal", - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" + "Id": 354 }, { - "Id": 355, "Rank": 4, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "CommandName": "Get-PnPAzureACSPrincipal", - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" + "Id": 355 }, { - "Id": 356, "Rank": 1, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Command": "Get-PnPAzureADActivityReportDirectoryAudit" + "Id": 356 }, { - "Id": 357, "Rank": 2, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" + "Id": 357 }, { - "Id": 358, "Rank": 3, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" + "Id": 358 }, { - "Id": 359, "Rank": 1, + "Command": "Get-PnPAzureADActivityReportSignIn", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Command": "Get-PnPAzureADActivityReportSignIn" + "Id": 359 }, { - "Id": 360, "Rank": 2, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" + "Id": 360 }, { - "Id": 361, "Rank": 3, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" + "Id": 361 }, { - "Id": 362, "Rank": 1, + "Command": "Get-PnPAzureADApp", "CommandName": "Get-PnPAzureADApp", - "Command": "Get-PnPAzureADApp" + "Id": 362 }, { - "Id": 363, "Rank": 2, + "Command": "Get-PnPAzureADApp -Identity MyApp", "CommandName": "Get-PnPAzureADApp", - "Command": "Get-PnPAzureADApp -Identity MyApp" + "Id": 363 }, { - "Id": 364, "Rank": 3, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Get-PnPAzureADApp", - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Id": 364 }, { - "Id": 365, "Rank": 4, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPAzureADApp", - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" + "Id": 365 }, { - "Id": 366, "Rank": 1, + "Command": "Get-PnPAzureADAppPermission", "CommandName": "Get-PnPAzureADAppPermission", - "Command": "Get-PnPAzureADAppPermission" + "Id": 366 }, { - "Id": 367, "Rank": 2, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "CommandName": "Get-PnPAzureADAppPermission", - "Command": "Get-PnPAzureADAppPermission -Identity MyApp" + "Id": 367 }, { - "Id": 368, "Rank": 3, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Get-PnPAzureADAppPermission", - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Id": 368 }, { - "Id": 369, "Rank": 1, + "Command": "Get-PnPAzureADAppSitePermission", "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission" + "Id": 369 }, { - "Id": 370, "Rank": 2, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" + "Id": 370 }, { - "Id": 371, "Rank": 3, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" + "Id": 371 }, { - "Id": 372, "Rank": 4, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" + "Id": 372 }, { - "Id": 373, "Rank": 5, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" + "Id": 373 }, { - "Id": 374, "Rank": 1, + "Command": "Get-PnPAzureADGroup", "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup" + "Id": 374 }, { - "Id": 375, "Rank": 2, + "Command": "Get-PnPAzureADGroup -Identity $groupId", "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup -Identity $groupId" + "Id": 375 }, { - "Id": 376, "Rank": 3, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" + "Id": 376 }, { - "Id": 377, "Rank": 4, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" + "Id": 377 }, { - "Id": 378, "Rank": 5, + "Command": "Get-PnPAzureADGroup -Identity $group", "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup -Identity $group" + "Id": 378 }, { - "Id": 379, "Rank": 1, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "CommandName": "Get-PnPAzureADGroupMember", - "Command": "Get-PnPAzureADGroupMember -Identity $groupId" + "Id": 379 }, { - "Id": 380, "Rank": 2, + "Command": "Get-PnPAzureADGroupMember -Identity $group", "CommandName": "Get-PnPAzureADGroupMember", - "Command": "Get-PnPAzureADGroupMember -Identity $group" + "Id": 380 }, { - "Id": 381, "Rank": 1, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "CommandName": "Get-PnPAzureADGroupOwner", - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" + "Id": 381 }, { - "Id": 382, "Rank": 2, + "Command": "Get-PnPAzureADGroupOwner -Identity $group", "CommandName": "Get-PnPAzureADGroupOwner", - "Command": "Get-PnPAzureADGroupOwner -Identity $group" + "Id": 382 }, { - "Id": 383, "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipal", "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal" + "Id": 383 }, { - "Id": 384, "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" + "Id": 384 }, { - "Id": 385, "Rank": 3, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" + "Id": 385 }, { - "Id": 386, "Rank": 4, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" + "Id": 386 }, { - "Id": 387, "Rank": 5, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" + "Id": 387 }, { - "Id": 388, "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Id": 388 }, { - "Id": 389, "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Id": 389 }, { - "Id": 390, "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Id": 390 }, { - "Id": 391, "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" + "Id": 391 }, { - "Id": 392, "Rank": 1, + "Command": "Get-PnPAzureADUser", "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser" + "Id": 392 }, { - "Id": 393, "Rank": 2, + "Command": "Get-PnPAzureADUser -EndIndex 50", "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -EndIndex 50" + "Id": 393 }, { - "Id": 394, "Rank": 3, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Id": 394 }, { - "Id": 395, "Rank": 4, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Identity john@contoso.com" + "Id": 395 }, { - "Id": 396, "Rank": 5, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" + "Id": 396 }, { - "Id": 397, "Rank": 6, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" + "Id": 397 }, { - "Id": 398, "Rank": 7, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" + "Id": 398 }, { - "Id": 399, "Rank": 8, + "Command": "Get-PnPAzureADUser -Delta", "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Delta" + "Id": 399 }, { - "Id": 400, "Rank": 9, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" + "Id": 400 }, { - "Id": 401, "Rank": 10, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" + "Id": 401 }, { - "Id": 402, "Rank": 1, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "CommandName": "Get-PnPAzureCertificate", - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" + "Id": 402 }, { - "Id": 403, "Rank": 2, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "CommandName": "Get-PnPAzureCertificate", - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" + "Id": 403 }, { - "Id": 404, "Rank": 3, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "CommandName": "Get-PnPAzureCertificate", - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" + "Id": 404 }, { - "Id": 405, "Rank": 1, + "Command": "Get-PnPBrowserIdleSignout", "CommandName": "Get-PnPBrowserIdleSignout", - "Command": "Get-PnPBrowserIdleSignout" + "Id": 405 }, { - "Id": 406, "Rank": 1, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" + "Id": 406 }, { - "Id": 407, "Rank": 2, + "Command": "Get-PnPBuiltInDesignPackageVisibility", "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Command": "Get-PnPBuiltInDesignPackageVisibility" + "Id": 407 }, { - "Id": 408, "Rank": 1, + "Command": "Get-PnPBuiltInSiteTemplateSettings", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings" + "Id": 408 }, { - "Id": 409, "Rank": 2, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" + "Id": 409 }, { - "Id": 410, "Rank": 3, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" + "Id": 410 }, { - "Id": 411, "Rank": 4, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" + "Id": 411 }, { - "Id": 412, "Rank": 5, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" + "Id": 412 }, { - "Id": 413, "Rank": 1, + "Command": "Get-PnPChangeLog", "CommandName": "Get-PnPChangeLog", - "Command": "Get-PnPChangeLog" + "Id": 413 }, { - "Id": 414, "Rank": 2, + "Command": "Get-PnPChangeLog -Nightly", "CommandName": "Get-PnPChangeLog", - "Command": "Get-PnPChangeLog -Nightly" + "Id": 414 }, { - "Id": 415, "Rank": 1, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "CommandName": "Get-PnPCompatibleHubContentTypes", - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" + "Id": 415 }, { - "Id": 416, "Rank": 2, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "CommandName": "Get-PnPCompatibleHubContentTypes", - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" + "Id": 416 }, { - "Id": 417, "Rank": 1, + "Command": "Get-PnPContentType", "CommandName": "Get-PnPContentType", - "Command": "Get-PnPContentType" + "Id": 417 }, { - "Id": 418, "Rank": 2, + "Command": "Get-PnPContentType -InSiteHierarchy", "CommandName": "Get-PnPContentType", - "Command": "Get-PnPContentType -InSiteHierarchy" + "Id": 418 }, { - "Id": 419, "Rank": 3, + "Command": "Get-PnPContentType -Identity \"Project Document\"", "CommandName": "Get-PnPContentType", - "Command": "Get-PnPContentType -Identity \"Project Document\"" + "Id": 419 }, { - "Id": 420, "Rank": 4, + "Command": "Get-PnPContentType -List \"Documents\"", "CommandName": "Get-PnPContentType", - "Command": "Get-PnPContentType -List \"Documents\"" + "Id": 420 }, { - "Id": 421, "Rank": 1, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "CommandName": "Get-PnPContentTypePublishingStatus", - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" + "Id": 421 }, { - "Id": 422, "Rank": 1, + "Command": "Get-PnPCustomAction", "CommandName": "Get-PnPCustomAction", - "Command": "Get-PnPCustomAction" + "Id": 422 }, { - "Id": 423, "Rank": 2, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Get-PnPCustomAction", - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Id": 423 }, { - "Id": 424, "Rank": 3, + "Command": "Get-PnPCustomAction -Scope web", "CommandName": "Get-PnPCustomAction", - "Command": "Get-PnPCustomAction -Scope web" + "Id": 424 }, { - "Id": 425, "Rank": 1, + "Command": "Get-PnPDeletedMicrosoft365Group", "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Command": "Get-PnPDeletedMicrosoft365Group" + "Id": 425 }, { - "Id": 426, "Rank": 2, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Id": 426 }, { - "Id": 427, "Rank": 1, + "Command": "Get-PnPDeletedTeam", "CommandName": "Get-PnPDeletedTeam", - "Command": "Get-PnPDeletedTeam" + "Id": 427 }, { - "Id": 428, "Rank": 1, + "Command": "Get-PnPDiagnostics", "CommandName": "Get-PnPDiagnostics", - "Command": "Get-PnPDiagnostics" + "Id": 428 }, { - "Id": 429, "Rank": 1, + "Command": "Get-PnPDisableSpacesActivation", "CommandName": "Get-PnPDisableSpacesActivation", - "Command": "Get-PnPDisableSpacesActivation" + "Id": 429 }, { - "Id": 430, "Rank": 1, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "CommandName": "Get-PnPDocumentSetTemplate", - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" + "Id": 430 }, { - "Id": 431, "Rank": 2, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "CommandName": "Get-PnPDocumentSetTemplate", - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" + "Id": 431 }, { - "Id": 432, "Rank": 1, + "Command": "Get-PnPEventReceiver", "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver" + "Id": 432 }, { - "Id": 433, "Rank": 2, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Id": 433 }, { - "Id": 434, "Rank": 3, + "Command": "Get-PnPEventReceiver -Identity MyReceiver", "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Identity MyReceiver" + "Id": 434 }, { - "Id": 435, "Rank": 4, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -List \"ProjectList\"" + "Id": 435 }, { - "Id": 436, "Rank": 5, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Id": 436 }, { - "Id": 437, "Rank": 6, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" + "Id": 437 }, { - "Id": 438, "Rank": 7, + "Command": "Get-PnPEventReceiver -Scope Site", "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Scope Site" + "Id": 438 }, { - "Id": 439, "Rank": 8, + "Command": "Get-PnPEventReceiver -Scope Web", "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Scope Web" + "Id": 439 }, { - "Id": 440, "Rank": 9, + "Command": "Get-PnPEventReceiver -Scope All", "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Scope All" + "Id": 440 }, { - "Id": 441, "Rank": 1, + "Command": "Get-PnPException", "CommandName": "Get-PnPException", - "Command": "Get-PnPException" + "Id": 441 }, { - "Id": 442, "Rank": 2, + "Command": "Get-PnPException -All", "CommandName": "Get-PnPException", - "Command": "Get-PnPException -All" + "Id": 442 }, { - "Id": 443, "Rank": 1, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "CommandName": "Get-PnPExternalUser", - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" + "Id": 443 }, { - "Id": 444, "Rank": 2, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "CommandName": "Get-PnPExternalUser", - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" + "Id": 444 }, { - "Id": 445, "Rank": 1, + "Command": "Get-PnPFeature", "CommandName": "Get-PnPFeature", - "Command": "Get-PnPFeature" + "Id": 445 }, { - "Id": 446, "Rank": 2, + "Command": "Get-PnPFeature -Scope Site", "CommandName": "Get-PnPFeature", - "Command": "Get-PnPFeature -Scope Site" + "Id": 446 }, { - "Id": 447, "Rank": 3, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPFeature", - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Id": 447 }, { - "Id": 448, "Rank": 4, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "CommandName": "Get-PnPFeature", - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" + "Id": 448 }, { - "Id": 449, "Rank": 1, + "Command": "Get-PnPField", "CommandName": "Get-PnPField", - "Command": "Get-PnPField" + "Id": 449 }, { - "Id": 450, "Rank": 2, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "CommandName": "Get-PnPField", - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Id": 450 }, { - "Id": 451, "Rank": 3, + "Command": "Get-PnPField -Group \"Custom Columns\"", "CommandName": "Get-PnPField", - "Command": "Get-PnPField -Group \"Custom Columns\"" + "Id": 451 }, { - "Id": 452, "Rank": 1, + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" + "Id": 452 }, { - "Id": 453, "Rank": 2, + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" + "Id": 453 }, { - "Id": 454, "Rank": 3, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" + "Id": 454 }, { - "Id": 455, "Rank": 4, + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" + "Id": 455 }, { - "Id": 456, "Rank": 5, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" + "Id": 456 }, { - "Id": 457, "Rank": 6, + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" + "Id": 457 }, { - "Id": 458, "Rank": 7, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" + "Id": 458 }, { - "Id": 459, "Rank": 1, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Get-PnPFileSharingLink", - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Id": 459 }, { - "Id": 460, "Rank": 1, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "CommandName": "Get-PnPFileVersion", - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" + "Id": 460 }, { - "Id": 461, "Rank": 2, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "CommandName": "Get-PnPFileVersion", - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" + "Id": 461 }, { - "Id": 462, "Rank": 1, + "Command": "Get-PnPFlow -AsAdmin", "CommandName": "Get-PnPFlow", - "Command": "Get-PnPFlow -AsAdmin" + "Id": 462 }, { - "Id": 463, "Rank": 2, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "CommandName": "Get-PnPFlow", - "Command": "Get-PnPFlow -SharingStatus SharedWithMe" + "Id": 463 }, { - "Id": 464, "Rank": 3, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "CommandName": "Get-PnPFlow", - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" + "Id": 464 }, { - "Id": 465, "Rank": 1, + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "CommandName": "Get-PnPFlowOwner", - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" + "Id": 465 }, { - "Id": 466, "Rank": 1, + "Command": "Get-PnPFolder", "CommandName": "Get-PnPFolder", - "Command": "Get-PnPFolder" + "Id": 466 }, { - "Id": 467, "Rank": 2, + "Command": "Get-PnPFolder -Url \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Command": "Get-PnPFolder -Url \"Shared Documents\"" + "Id": 467 }, { - "Id": 468, "Rank": 3, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "CommandName": "Get-PnPFolder", - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" + "Id": 468 }, { - "Id": 469, "Rank": 4, + "Command": "Get-PnPFolder -List \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Command": "Get-PnPFolder -List \"Shared Documents\"" + "Id": 469 }, { - "Id": 470, "Rank": 1, + "Command": "Get-PnPFolderFile", "CommandName": "Get-PnPFolderFile", - "Command": "Get-PnPFolderFile" + "Id": 470 }, { - "Id": 471, "Rank": 2, + "Command": "Get-PnPFolderFile -Recurse", "CommandName": "Get-PnPFolderFile", - "Command": "Get-PnPFolderFile -Recurse" + "Id": 471 }, { - "Id": 472, "Rank": 3, + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderFile", - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"" + "Id": 472 }, { - "Id": 473, "Rank": 4, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "CommandName": "Get-PnPFolderFile", - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Id": 473 }, { - "Id": 474, "Rank": 5, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderFile", - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Id": 474 }, { - "Id": 475, "Rank": 1, + "Command": "Get-PnPFolderFolder", "CommandName": "Get-PnPFolderFolder", - "Command": "Get-PnPFolderFolder" + "Id": 475 }, { - "Id": 476, "Rank": 2, + "Command": "Get-PnPFolderFolder -Recurse", "CommandName": "Get-PnPFolderFolder", - "Command": "Get-PnPFolderFolder -Recurse" + "Id": 476 }, { - "Id": 477, "Rank": 3, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderFolder", - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"" + "Id": 477 }, { - "Id": 478, "Rank": 4, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "CommandName": "Get-PnPFolderFolder", - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" + "Id": 478 }, { - "Id": 479, "Rank": 5, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "CommandName": "Get-PnPFolderFolder", - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" + "Id": 479 }, { - "Id": 480, "Rank": 6, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderFolder", - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Id": 480 }, { - "Id": 481, "Rank": 1, + "Command": "Get-PnPFolderItem", "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem" + "Id": 481 }, { - "Id": 482, "Rank": 2, + "Command": "Get-PnPFolderItem -Recurse", "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -Recurse" + "Id": 482 }, { - "Id": 483, "Rank": 3, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" + "Id": 483 }, { - "Id": 484, "Rank": 4, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Id": 484 }, { - "Id": 485, "Rank": 5, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" + "Id": 485 }, { - "Id": 486, "Rank": 6, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Id": 486 }, { - "Id": 487, "Rank": 1, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Get-PnPFolderSharingLink", - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Id": 487 }, { - "Id": 488, "Rank": 1, + "Command": "Get-PnPFolderStorageMetric", "CommandName": "Get-PnPFolderStorageMetric", - "Command": "Get-PnPFolderStorageMetric" + "Id": 488 }, { - "Id": 489, "Rank": 2, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "CommandName": "Get-PnPFolderStorageMetric", - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" + "Id": 489 }, { - "Id": 490, "Rank": 3, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "CommandName": "Get-PnPFolderStorageMetric", - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" + "Id": 490 }, { - "Id": 491, "Rank": 1, + "Command": "Get-PnPFooter", "CommandName": "Get-PnPFooter", - "Command": "Get-PnPFooter" + "Id": 491 }, { - "Id": 492, "Rank": 1, + "Command": "Get-PnPGraphAccessToken", "CommandName": "Get-PnPGraphAccessToken", - "Command": "Get-PnPGraphAccessToken" + "Id": 492 }, { - "Id": 493, "Rank": 2, + "Command": "Get-PnPGraphAccessToken -Decoded", "CommandName": "Get-PnPGraphAccessToken", - "Command": "Get-PnPGraphAccessToken -Decoded" + "Id": 493 }, { - "Id": 494, "Rank": 1, + "Command": "Get-PnPGraphSubscription", "CommandName": "Get-PnPGraphSubscription", - "Command": "Get-PnPGraphSubscription" + "Id": 494 }, { - "Id": 495, "Rank": 2, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "CommandName": "Get-PnPGraphSubscription", - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Id": 495 }, { - "Id": 496, "Rank": 1, + "Command": "Get-PnPGroup", "CommandName": "Get-PnPGroup", - "Command": "Get-PnPGroup" + "Id": 496 }, { - "Id": 497, "Rank": 2, + "Command": "Get-PnPGroup -Identity 'My Site Users'", "CommandName": "Get-PnPGroup", - "Command": "Get-PnPGroup -Identity 'My Site Users'" + "Id": 497 }, { - "Id": 498, "Rank": 3, + "Command": "Get-PnPGroup -AssociatedMemberGroup", "CommandName": "Get-PnPGroup", - "Command": "Get-PnPGroup -AssociatedMemberGroup" + "Id": 498 }, { - "Id": 499, "Rank": 1, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "CommandName": "Get-PnPGroupMember", - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" + "Id": 499 }, { - "Id": 500, "Rank": 2, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "CommandName": "Get-PnPGroupMember", - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" + "Id": 500 }, { - "Id": 501, "Rank": 1, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "CommandName": "Get-PnPGroupPermissions", - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" + "Id": 501 }, { - "Id": 502, "Rank": 1, + "Command": "Get-PnPHideDefaultThemes", "CommandName": "Get-PnPHideDefaultThemes", - "Command": "Get-PnPHideDefaultThemes" + "Id": 502 }, { - "Id": 503, "Rank": 1, + "Command": "Get-PnPHomePage", "CommandName": "Get-PnPHomePage", - "Command": "Get-PnPHomePage" + "Id": 503 }, { - "Id": 504, "Rank": 1, + "Command": "Get-PnPHomeSite", "CommandName": "Get-PnPHomeSite", - "Command": "Get-PnPHomeSite" + "Id": 504 }, { - "Id": 505, "Rank": 2, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "CommandName": "Get-PnPHomeSite", - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" + "Id": 505 }, { - "Id": 506, "Rank": 3, + "Command": "Get-PnPHomeSite -Detailed", "CommandName": "Get-PnPHomeSite", - "Command": "Get-PnPHomeSite -Detailed" + "Id": 506 }, { - "Id": 507, "Rank": 1, + "Command": "Get-PnPHubSite", "CommandName": "Get-PnPHubSite", - "Command": "Get-PnPHubSite" + "Id": 507 }, { - "Id": 508, "Rank": 2, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "CommandName": "Get-PnPHubSite", - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Id": 508 }, { - "Id": 509, "Rank": 3, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "CommandName": "Get-PnPHubSite", - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" + "Id": 509 }, { - "Id": 510, "Rank": 1, + "Command": "Get-PnPHubSiteChild", "CommandName": "Get-PnPHubSiteChild", - "Command": "Get-PnPHubSiteChild" + "Id": 510 }, { - "Id": 511, "Rank": 2, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "CommandName": "Get-PnPHubSiteChild", - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Id": 511 }, { - "Id": 512, "Rank": 1, + "Command": "Get-PnPInPlaceRecordsManagement", "CommandName": "Get-PnPInPlaceRecordsManagement", - "Command": "Get-PnPInPlaceRecordsManagement" + "Id": 512 }, { - "Id": 513, "Rank": 1, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "CommandName": "Get-PnPIsSiteAliasAvailable", - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" + "Id": 513 }, { - "Id": 514, "Rank": 1, + "Command": "Get-PnPJavaScriptLink", "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink" + "Id": 514 }, { - "Id": 515, "Rank": 2, + "Command": "Get-PnPJavaScriptLink -Scope All", "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink -Scope All" + "Id": 515 }, { - "Id": 516, "Rank": 3, + "Command": "Get-PnPJavaScriptLink -Scope Web", "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink -Scope Web" + "Id": 516 }, { - "Id": 517, "Rank": 4, + "Command": "Get-PnPJavaScriptLink -Scope Site", "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink -Scope Site" + "Id": 517 }, { - "Id": 518, "Rank": 5, + "Command": "Get-PnPJavaScriptLink -Name Test", "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink -Name Test" + "Id": 518 }, { - "Id": 519, "Rank": 1, + "Command": "Get-PnPKnowledgeHubSite", "CommandName": "Get-PnPKnowledgeHubSite", - "Command": "Get-PnPKnowledgeHubSite" + "Id": 519 }, { - "Id": 520, "Rank": 1, + "Command": "Get-PnPLabel", "CommandName": "Get-PnPLabel", - "Command": "Get-PnPLabel" + "Id": 520 }, { - "Id": 521, "Rank": 2, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "CommandName": "Get-PnPLabel", - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" + "Id": 521 }, { - "Id": 522, "Rank": 1, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "CommandName": "Get-PnPLargeListOperationStatus", - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" + "Id": 522 }, { - "Id": 523, "Rank": 1, + "Command": "Get-PnPList", "CommandName": "Get-PnPList", - "Command": "Get-PnPList" + "Id": 523 }, { - "Id": 524, "Rank": 2, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Get-PnPList", - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Id": 524 }, { - "Id": 525, "Rank": 3, + "Command": "Get-PnPList -Identity Lists/Announcements", "CommandName": "Get-PnPList", - "Command": "Get-PnPList -Identity Lists/Announcements" + "Id": 525 }, { - "Id": 526, "Rank": 4, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "CommandName": "Get-PnPList", - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" + "Id": 526 }, { - "Id": 527, "Rank": 5, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "CommandName": "Get-PnPList", - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" + "Id": 527 }, { - "Id": 528, "Rank": 1, + "Command": "Get-PnPListDesign", "CommandName": "Get-PnPListDesign", - "Command": "Get-PnPListDesign" + "Id": 528 }, { - "Id": 529, "Rank": 2, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPListDesign", - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Id": 529 }, { - "Id": 530, "Rank": 3, + "Command": "Get-PnPListDesign -Identity ListEvent", "CommandName": "Get-PnPListDesign", - "Command": "Get-PnPListDesign -Identity ListEvent" + "Id": 530 }, { - "Id": 531, "Rank": 1, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "CommandName": "Get-PnPListInformationRightsManagement", - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" + "Id": 531 }, { - "Id": 532, "Rank": 1, + "Command": "Get-PnPListItem -List Tasks", "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks" + "Id": 532 }, { - "Id": 533, "Rank": 2, + "Command": "Get-PnPListItem -List Tasks -Id 1", "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -Id 1" + "Id": 533 }, { - "Id": 534, "Rank": 3, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" + "Id": 534 }, { - "Id": 535, "Rank": 4, + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" + "Id": 535 }, { - "Id": 536, "Rank": 5, + "Command": "Get-PnPListItem -List Tasks -Query \"\"", "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -Query \"\"" + "Id": 536 }, { - "Id": 537, "Rank": 6, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -PageSize 1000" + "Id": 537 }, { - "Id": 538, "Rank": 7, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" + "Id": 538 }, { - "Id": 539, "Rank": 8, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" + "Id": 539 }, { - "Id": 540, "Rank": 9, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" + "Id": 540 }, { - "Id": 541, "Rank": 1, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "CommandName": "Get-PnPListItemAttachment", - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" + "Id": 541 }, { - "Id": 542, "Rank": 2, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "CommandName": "Get-PnPListItemAttachment", - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" + "Id": 542 }, { - "Id": 543, "Rank": 1, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "CommandName": "Get-PnPListItemComment", - "Command": "Get-PnPListItemComment -List Tasks -Identity 1" + "Id": 543 }, { - "Id": 544, "Rank": 1, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "CommandName": "Get-PnPListItemPermission", - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" + "Id": 544 }, { - "Id": 545, "Rank": 1, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "CommandName": "Get-PnPListItemVersion", - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" + "Id": 545 }, { - "Id": 546, "Rank": 1, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "CommandName": "Get-PnPListPermissions", - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" + "Id": 546 }, { - "Id": 547, "Rank": 2, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "CommandName": "Get-PnPListPermissions", - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" + "Id": 547 }, { - "Id": 548, "Rank": 1, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "CommandName": "Get-PnPListRecordDeclaration", - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" + "Id": 548 }, { - "Id": 549, "Rank": 1, + "Command": "Get-PnPMasterPage", "CommandName": "Get-PnPMasterPage", - "Command": "Get-PnPMasterPage" + "Id": 549 }, { - "Id": 550, "Rank": 1, + "Command": "Get-PnPMessageCenterAnnouncement", "CommandName": "Get-PnPMessageCenterAnnouncement", - "Command": "Get-PnPMessageCenterAnnouncement" + "Id": 550 }, { - "Id": 551, "Rank": 2, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "CommandName": "Get-PnPMessageCenterAnnouncement", - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" + "Id": 551 }, { - "Id": 552, "Rank": 1, + "Command": "Get-PnPMicrosoft365ExpiringGroup", "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Command": "Get-PnPMicrosoft365ExpiringGroup" + "Id": 552 }, { - "Id": 553, "Rank": 2, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" + "Id": 553 }, { - "Id": 554, "Rank": 1, + "Command": "Get-PnPMicrosoft365Group", "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group" + "Id": 554 }, { - "Id": 555, "Rank": 2, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -Identity $groupId" + "Id": 555 }, { - "Id": 556, "Rank": 3, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" + "Id": 556 }, { - "Id": 557, "Rank": 4, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" + "Id": 557 }, { - "Id": 558, "Rank": 5, + "Command": "Get-PnPMicrosoft365Group -Identity $group", "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -Identity $group" + "Id": 558 }, { - "Id": 559, "Rank": 6, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" + "Id": 559 }, { - "Id": 560, "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupEndpoint", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Command": "Get-PnPMicrosoft365GroupEndpoint" + "Id": 560 }, { - "Id": 561, "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" + "Id": 561 }, { - "Id": 562, "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Id": 562 }, { - "Id": 563, "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" + "Id": 563 }, { - "Id": 564, "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" + "Id": 564 }, { - "Id": 565, "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" + "Id": 565 }, { - "Id": 566, "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" + "Id": 566 }, { - "Id": 567, "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" + "Id": 567 }, { - "Id": 568, "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupSettings", "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Command": "Get-PnPMicrosoft365GroupSettings" + "Id": 568 }, { - "Id": 569, "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" + "Id": 569 }, { - "Id": 570, "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Command": "Get-PnPMicrosoft365GroupSettingTemplates" + "Id": 570 }, { - "Id": 571, "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" + "Id": 571 }, { - "Id": 572, "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupTeam", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Command": "Get-PnPMicrosoft365GroupTeam" + "Id": 572 }, { - "Id": 573, "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" + "Id": 573 }, { - "Id": 574, "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Id": 574 }, { - "Id": 575, "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Command": "Get-PnPMicrosoft365GroupYammerCommunity" + "Id": 575 }, { - "Id": 576, "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" + "Id": 576 }, { - "Id": 577, "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Id": 577 }, { - "Id": 578, "Rank": 1, + "Command": "Get-PnPNavigationNode", "CommandName": "Get-PnPNavigationNode", - "Command": "Get-PnPNavigationNode" + "Id": 578 }, { - "Id": 579, "Rank": 2, + "Command": "Get-PnPNavigationNode -Location QuickLaunch", "CommandName": "Get-PnPNavigationNode", - "Command": "Get-PnPNavigationNode -Location QuickLaunch" + "Id": 579 }, { - "Id": 580, "Rank": 3, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "CommandName": "Get-PnPNavigationNode", - "Command": "Get-PnPNavigationNode -Location TopNavigationBar" + "Id": 580 }, { - "Id": 581, "Rank": 1, + "Command": "Get-PnPOrgAssetsLibrary", "CommandName": "Get-PnPOrgAssetsLibrary", - "Command": "Get-PnPOrgAssetsLibrary" + "Id": 581 }, { - "Id": 582, "Rank": 1, + "Command": "Get-PnPOrgNewsSite", "CommandName": "Get-PnPOrgNewsSite", - "Command": "Get-PnPOrgNewsSite" + "Id": 582 }, { - "Id": 583, "Rank": 1, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "CommandName": "Get-PnPPage", - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" + "Id": 583 }, { - "Id": 584, "Rank": 2, + "Command": "Get-PnPPage \"MyPage\"", "CommandName": "Get-PnPPage", - "Command": "Get-PnPPage \"MyPage\"" + "Id": 584 }, { - "Id": 585, "Rank": 3, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "CommandName": "Get-PnPPage", - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" + "Id": 585 }, { - "Id": 586, "Rank": 4, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "CommandName": "Get-PnPPage", - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" + "Id": 586 }, { - "Id": 587, "Rank": 1, + "Command": "Get-PnPPageComponent -Page Home", "CommandName": "Get-PnPPageComponent", - "Command": "Get-PnPPageComponent -Page Home" + "Id": 587 }, { - "Id": 588, "Rank": 2, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPPageComponent", - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Id": 588 }, { - "Id": 589, "Rank": 3, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "CommandName": "Get-PnPPageComponent", - "Command": "Get-PnPPageComponent -Page Home -ListAvailable" + "Id": 589 }, { - "Id": 590, "Rank": 1, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "CommandName": "Get-PnPPlannerBucket", - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" + "Id": 590 }, { - "Id": 591, "Rank": 1, + "Command": "Get-PnPPlannerConfiguration", "CommandName": "Get-PnPPlannerConfiguration", - "Command": "Get-PnPPlannerConfiguration" + "Id": 591 }, { - "Id": 592, "Rank": 1, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "CommandName": "Get-PnPPlannerPlan", - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" + "Id": 592 }, { - "Id": 593, "Rank": 2, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "CommandName": "Get-PnPPlannerPlan", - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" + "Id": 593 }, { - "Id": 594, "Rank": 3, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "CommandName": "Get-PnPPlannerPlan", - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" + "Id": 594 }, { - "Id": 595, "Rank": 1, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "CommandName": "Get-PnPPlannerRosterMember", - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Id": 595 }, { - "Id": 596, "Rank": 1, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "CommandName": "Get-PnPPlannerRosterPlan", - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" + "Id": 596 }, { - "Id": 597, "Rank": 2, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPPlannerRosterPlan", - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" + "Id": 597 }, { - "Id": 598, "Rank": 1, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "CommandName": "Get-PnPPlannerTask", - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" + "Id": 598 }, { - "Id": 599, "Rank": 2, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "CommandName": "Get-PnPPlannerTask", - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Id": 599 }, { - "Id": 600, "Rank": 3, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "CommandName": "Get-PnPPlannerTask", - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Id": 600 }, { - "Id": 601, "Rank": 1, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPPlannerUserPolicy", - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Id": 601 }, { - "Id": 602, "Rank": 1, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "CommandName": "Get-PnPPowerPlatformConnector", - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" + "Id": 602 }, { - "Id": 603, "Rank": 1, + "Command": "Get-PnPPowerPlatformEnvironment", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Command": "Get-PnPPowerPlatformEnvironment" + "Id": 603 }, { - "Id": 604, "Rank": 2, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" + "Id": 604 }, { - "Id": 605, "Rank": 3, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" + "Id": 605 }, { - "Id": 606, "Rank": 1, + "Command": "Get-PnPPowerShellTelemetryEnabled", "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Command": "Get-PnPPowerShellTelemetryEnabled" + "Id": 606 }, { - "Id": 607, "Rank": 1, + "Command": "Get-PnPPropertyBag", "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag" + "Id": 607 }, { - "Id": 608, "Rank": 2, + "Command": "Get-PnPPropertyBag -Key MyKey", "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag -Key MyKey" + "Id": 608 }, { - "Id": 609, "Rank": 3, + "Command": "Get-PnPPropertyBag -Folder /MyFolder", "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag -Folder /MyFolder" + "Id": 609 }, { - "Id": 610, "Rank": 4, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" + "Id": 610 }, { - "Id": 611, "Rank": 5, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" + "Id": 611 }, { - "Id": 612, "Rank": 1, + "Command": "Get-PnPPublishingImageRendition", "CommandName": "Get-PnPPublishingImageRendition", - "Command": "Get-PnPPublishingImageRendition" + "Id": 612 }, { - "Id": 613, "Rank": 2, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "CommandName": "Get-PnPPublishingImageRendition", - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" + "Id": 613 }, { - "Id": 614, "Rank": 3, + "Command": "Get-PnPPublishingImageRendition -Identity 2", "CommandName": "Get-PnPPublishingImageRendition", - "Command": "Get-PnPPublishingImageRendition -Identity 2" + "Id": 614 }, { - "Id": 615, "Rank": 1, + "Command": "Get-PnPRecycleBinItem", "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem" + "Id": 615 }, { - "Id": 616, "Rank": 2, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" + "Id": 616 }, { - "Id": 617, "Rank": 3, + "Command": "Get-PnPRecycleBinItem -FirstStage", "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem -FirstStage" + "Id": 617 }, { - "Id": 618, "Rank": 4, + "Command": "Get-PnPRecycleBinItem -SecondStage", "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem -SecondStage" + "Id": 618 }, { - "Id": 619, "Rank": 5, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem -RowLimit 10000" + "Id": 619 }, { - "Id": 620, "Rank": 1, + "Command": "Get-PnPRequestAccessEmails", "CommandName": "Get-PnPRequestAccessEmails", - "Command": "Get-PnPRequestAccessEmails" + "Id": 620 }, { - "Id": 621, "Rank": 1, + "Command": "Get-PnPRoleDefinition", "CommandName": "Get-PnPRoleDefinition", - "Command": "Get-PnPRoleDefinition" + "Id": 621 }, { - "Id": 622, "Rank": 2, + "Command": "Get-PnPRoleDefinition -Identity Read", "CommandName": "Get-PnPRoleDefinition", - "Command": "Get-PnPRoleDefinition -Identity Read" + "Id": 622 }, { - "Id": 623, "Rank": 3, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "CommandName": "Get-PnPRoleDefinition", - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" + "Id": 623 }, { - "Id": 624, "Rank": 1, + "Command": "Get-PnPSearchConfiguration", "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration" + "Id": 624 }, { - "Id": 625, "Rank": 2, + "Command": "Get-PnPSearchConfiguration -Scope Site", "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Site" + "Id": 625 }, { - "Id": 626, "Rank": 3, + "Command": "Get-PnPSearchConfiguration -Scope Subscription", "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Subscription" + "Id": 626 }, { - "Id": 627, "Rank": 4, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Id": 627 }, { - "Id": 628, "Rank": 5, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" + "Id": 628 }, { - "Id": 629, "Rank": 6, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" + "Id": 629 }, { - "Id": 630, "Rank": 7, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" + "Id": 630 }, { - "Id": 631, "Rank": 8, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" + "Id": 631 }, { - "Id": 632, "Rank": 1, + "Command": "Get-PnPSearchCrawlLog", "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog" + "Id": 632 }, { - "Id": 633, "Rank": 2, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" + "Id": 633 }, { - "Id": 634, "Rank": 3, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" + "Id": 634 }, { - "Id": 635, "Rank": 4, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" + "Id": 635 }, { - "Id": 636, "Rank": 5, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" + "Id": 636 }, { - "Id": 637, "Rank": 6, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" + "Id": 637 }, { - "Id": 638, "Rank": 7, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" + "Id": 638 }, { - "Id": 639, "Rank": 1, + "Command": "Get-PnPSearchSettings", "CommandName": "Get-PnPSearchSettings", - "Command": "Get-PnPSearchSettings" + "Id": 639 }, { - "Id": 640, "Rank": 1, + "Command": "Get-PnPServiceCurrentHealth", "CommandName": "Get-PnPServiceCurrentHealth", - "Command": "Get-PnPServiceCurrentHealth" + "Id": 640 }, { - "Id": 641, "Rank": 2, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "CommandName": "Get-PnPServiceCurrentHealth", - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" + "Id": 641 }, { - "Id": 642, "Rank": 1, + "Command": "Get-PnPServiceHealthIssue", "CommandName": "Get-PnPServiceHealthIssue", - "Command": "Get-PnPServiceHealthIssue" + "Id": 642 }, { - "Id": 643, "Rank": 2, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "CommandName": "Get-PnPServiceHealthIssue", - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" + "Id": 643 }, { - "Id": 644, "Rank": 1, + "Command": "Get-PnPSharePointAddIn", "CommandName": "Get-PnPSharePointAddIn", - "Command": "Get-PnPSharePointAddIn" + "Id": 644 }, { - "Id": 645, "Rank": 2, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "CommandName": "Get-PnPSharePointAddIn", - "Command": "Get-PnPSharePointAddIn -IncludeSubsites" + "Id": 645 }, { - "Id": 646, "Rank": 1, + "Command": "Get-PnPSharingForNonOwnersOfSite", "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Command": "Get-PnPSharingForNonOwnersOfSite" + "Id": 646 }, { - "Id": 647, "Rank": 1, + "Command": "Get-PnPSite", "CommandName": "Get-PnPSite", - "Command": "Get-PnPSite" + "Id": 647 }, { - "Id": 648, "Rank": 2, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "CommandName": "Get-PnPSite", - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" + "Id": 648 }, { - "Id": 649, "Rank": 1, + "Command": "Get-PnPSiteClosure", "CommandName": "Get-PnPSiteClosure", - "Command": "Get-PnPSiteClosure" + "Id": 649 }, { - "Id": 650, "Rank": 1, + "Command": "Get-PnPSiteCollectionAdmin", "CommandName": "Get-PnPSiteCollectionAdmin", - "Command": "Get-PnPSiteCollectionAdmin" + "Id": 650 }, { - "Id": 651, "Rank": 1, + "Command": "Get-PnPSiteCollectionAppCatalog", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Command": "Get-PnPSiteCollectionAppCatalog" + "Id": 651 }, { - "Id": 652, "Rank": 2, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" + "Id": 652 }, { - "Id": 653, "Rank": 3, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" + "Id": 653 }, { - "Id": 654, "Rank": 1, + "Command": "Get-PnPSiteCollectionTermStore", "CommandName": "Get-PnPSiteCollectionTermStore", - "Command": "Get-PnPSiteCollectionTermStore" + "Id": 654 }, { - "Id": 655, "Rank": 1, + "Command": "Get-PnPSiteDesign", "CommandName": "Get-PnPSiteDesign", - "Command": "Get-PnPSiteDesign" + "Id": 655 }, { - "Id": 656, "Rank": 2, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteDesign", - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Id": 656 }, { - "Id": 657, "Rank": 1, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteDesignRights", - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Id": 657 }, { - "Id": 658, "Rank": 1, + "Command": "Get-PnPSiteDesignRun", "CommandName": "Get-PnPSiteDesignRun", - "Command": "Get-PnPSiteDesignRun" + "Id": 658 }, { - "Id": 659, "Rank": 2, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "CommandName": "Get-PnPSiteDesignRun", - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" + "Id": 659 }, { - "Id": 660, "Rank": 1, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "CommandName": "Get-PnPSiteDesignTask", - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" + "Id": 660 }, { - "Id": 661, "Rank": 2, + "Command": "Get-PnPSiteDesignTask", "CommandName": "Get-PnPSiteDesignTask", - "Command": "Get-PnPSiteDesignTask" + "Id": 661 }, { - "Id": 662, "Rank": 3, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "CommandName": "Get-PnPSiteDesignTask", - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "Id": 662 }, { - "Id": 663, "Rank": 1, + "Command": "Get-PnPSiteGroup", "CommandName": "Get-PnPSiteGroup", - "Command": "Get-PnPSiteGroup" + "Id": 663 }, { - "Id": 664, "Rank": 2, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "CommandName": "Get-PnPSiteGroup", - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Id": 664 }, { - "Id": 665, "Rank": 3, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "CommandName": "Get-PnPSiteGroup", - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" + "Id": 665 }, { - "Id": 666, "Rank": 4, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "CommandName": "Get-PnPSiteGroup", - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Id": 666 }, { - "Id": 667, "Rank": 1, + "Command": "Get-PnPSitePolicy", "CommandName": "Get-PnPSitePolicy", - "Command": "Get-PnPSitePolicy" + "Id": 667 }, { - "Id": 668, "Rank": 2, + "Command": "Get-PnPSitePolicy -AllAvailable", "CommandName": "Get-PnPSitePolicy", - "Command": "Get-PnPSitePolicy -AllAvailable" + "Id": 668 }, { - "Id": 669, "Rank": 3, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "CommandName": "Get-PnPSitePolicy", - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" + "Id": 669 }, { - "Id": 670, "Rank": 1, + "Command": "Get-PnPSiteScript", "CommandName": "Get-PnPSiteScript", - "Command": "Get-PnPSiteScript" + "Id": 670 }, { - "Id": 671, "Rank": 2, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteScript", - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Id": 671 }, { - "Id": 672, "Rank": 1, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "CommandName": "Get-PnPSiteScriptFromList", - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" + "Id": 672 }, { - "Id": 673, "Rank": 2, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "CommandName": "Get-PnPSiteScriptFromList", - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" + "Id": 673 }, { - "Id": 674, "Rank": 3, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "CommandName": "Get-PnPSiteScriptFromList", - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" + "Id": 674 }, { - "Id": 675, "Rank": 1, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" + "Id": 675 }, { - "Id": 676, "Rank": 2, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" + "Id": 676 }, { - "Id": 677, "Rank": 3, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" + "Id": 677 }, { - "Id": 678, "Rank": 4, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" + "Id": 678 }, { - "Id": 679, "Rank": 5, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" + "Id": 679 }, { - "Id": 680, "Rank": 6, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" + "Id": 680 }, { - "Id": 681, "Rank": 1, + "Command": "Get-PnPSiteSearchQueryResults", "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults" + "Id": 681 }, { - "Id": 682, "Rank": 2, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" + "Id": 682 }, { - "Id": 683, "Rank": 3, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" + "Id": 683 }, { - "Id": 684, "Rank": 4, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" + "Id": 684 }, { - "Id": 685, "Rank": 5, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" + "Id": 685 }, { - "Id": 686, "Rank": 6, + "Command": "Get-PnPSiteSearchQueryResults -All", "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -All" + "Id": 686 }, { - "Id": 687, "Rank": 1, + "Command": "Get-PnPSiteSensitivityLabel", "CommandName": "Get-PnPSiteSensitivityLabel", - "Command": "Get-PnPSiteSensitivityLabel" + "Id": 687 }, { - "Id": 688, "Rank": 1, + "Command": "Get-PnPSiteTemplate -Out template.pnp", "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp" + "Id": 688 }, { - "Id": 689, "Rank": 2, + "Command": "Get-PnPSiteTemplate -Out template.xml", "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.xml" + "Id": 689 }, { - "Id": 690, "Rank": 3, + "Command": "Get-PnPSiteTemplate -Out template.md", "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.md" + "Id": 690 }, { - "Id": 691, "Rank": 4, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" + "Id": 691 }, { - "Id": 692, "Rank": 5, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" + "Id": 692 }, { - "Id": 693, "Rank": 6, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" + "Id": 693 }, { - "Id": 694, "Rank": 7, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" + "Id": 694 }, { - "Id": 695, "Rank": 8, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" + "Id": 695 }, { - "Id": 696, "Rank": 9, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" + "Id": 696 }, { - "Id": 697, "Rank": 10, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" + "Id": 697 }, { - "Id": 698, "Rank": 11, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" + "Id": 698 }, { - "Id": 699, "Rank": 12, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" + "Id": 699 }, { - "Id": 700, "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", - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" + "Id": 700 }, { - "Id": 701, "Rank": 14, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" + "Id": 701 }, { - "Id": 702, "Rank": 1, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "CommandName": "Get-PnPSiteUserInvitations", - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "Id": 702 }, { - "Id": 703, "Rank": 1, + "Command": "Get-PnPStorageEntity", "CommandName": "Get-PnPStorageEntity", - "Command": "Get-PnPStorageEntity" + "Id": 703 }, { - "Id": 704, "Rank": 2, + "Command": "Get-PnPStorageEntity -Key MyKey", "CommandName": "Get-PnPStorageEntity", - "Command": "Get-PnPStorageEntity -Key MyKey" + "Id": 704 }, { - "Id": 705, "Rank": 3, + "Command": "Get-PnPStorageEntity -Scope Site", "CommandName": "Get-PnPStorageEntity", - "Command": "Get-PnPStorageEntity -Scope Site" + "Id": 705 }, { - "Id": 706, "Rank": 4, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "CommandName": "Get-PnPStorageEntity", - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" + "Id": 706 }, { - "Id": 707, "Rank": 1, + "Command": "Get-PnPStoredCredential -Name O365", "CommandName": "Get-PnPStoredCredential", - "Command": "Get-PnPStoredCredential -Name O365" + "Id": 707 }, { - "Id": 708, "Rank": 1, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Id": 708 }, { - "Id": 709, "Rank": 1, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Id": 709 }, { - "Id": 710, "Rank": 1, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" + "Id": 710 }, { - "Id": 711, "Rank": 1, + "Command": "Get-PnPSubWeb", "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb" + "Id": 711 }, { - "Id": 712, "Rank": 2, + "Command": "Get-PnPSubWeb -Recurse", "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb -Recurse" + "Id": 712 }, { - "Id": 713, "Rank": 3, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" + "Id": 713 }, { - "Id": 714, "Rank": 4, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" + "Id": 714 }, { - "Id": 715, "Rank": 5, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" + "Id": 715 }, { - "Id": 716, "Rank": 1, + "Command": "Get-PnPSyntexModel", "CommandName": "Get-PnPSyntexModel", - "Command": "Get-PnPSyntexModel" + "Id": 716 }, { - "Id": 717, "Rank": 2, + "Command": "Get-PnPSyntexModel -Identity 1", "CommandName": "Get-PnPSyntexModel", - "Command": "Get-PnPSyntexModel -Identity 1" + "Id": 717 }, { - "Id": 718, "Rank": 3, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "CommandName": "Get-PnPSyntexModel", - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" + "Id": 718 }, { - "Id": 719, "Rank": 1, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "CommandName": "Get-PnPSyntexModelPublication", - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" + "Id": 719 }, { - "Id": 720, "Rank": 1, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "CommandName": "Get-PnPTaxonomyItem", - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" + "Id": 720 }, { - "Id": 721, "Rank": 1, + "Command": "Get-PnPTeamsApp", "CommandName": "Get-PnPTeamsApp", - "Command": "Get-PnPTeamsApp" + "Id": 721 }, { - "Id": 722, "Rank": 2, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "CommandName": "Get-PnPTeamsApp", - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" + "Id": 722 }, { - "Id": 723, "Rank": 3, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "CommandName": "Get-PnPTeamsApp", - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" + "Id": 723 }, { - "Id": 724, "Rank": 1, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "CommandName": "Get-PnPTeamsChannel", - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" + "Id": 724 }, { - "Id": 725, "Rank": 2, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "CommandName": "Get-PnPTeamsChannel", - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" + "Id": 725 }, { - "Id": 726, "Rank": 3, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "CommandName": "Get-PnPTeamsChannel", - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "Id": 726 }, { - "Id": 727, "Rank": 1, + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" + "Id": 727 }, { - "Id": 728, "Rank": 2, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "Id": 728 }, { - "Id": 729, "Rank": 1, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsChannelMessage", - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" + "Id": 729 }, { - "Id": 730, "Rank": 2, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "CommandName": "Get-PnPTeamsChannelMessage", - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" + "Id": 730 }, { - "Id": 731, "Rank": 1, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "CommandName": "Get-PnPTeamsChannelMessageReply", - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" + "Id": 731 }, { - "Id": 732, "Rank": 2, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "CommandName": "Get-PnPTeamsChannelMessageReply", - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" + "Id": 732 }, { - "Id": 733, "Rank": 1, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsChannelUser", - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" + "Id": 733 }, { - "Id": 734, "Rank": 2, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "CommandName": "Get-PnPTeamsChannelUser", - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" + "Id": 734 }, { - "Id": 735, "Rank": 3, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "CommandName": "Get-PnPTeamsChannelUser", - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" + "Id": 735 }, { - "Id": 736, "Rank": 4, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Get-PnPTeamsChannelUser", - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "Id": 736 }, { - "Id": 737, "Rank": 1, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "CommandName": "Get-PnPTeamsPrimaryChannel", - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" + "Id": 737 }, { - "Id": 738, "Rank": 2, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "CommandName": "Get-PnPTeamsPrimaryChannel", - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" + "Id": 738 }, { - "Id": 739, "Rank": 1, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "CommandName": "Get-PnPTeamsTab", - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" + "Id": 739 }, { - "Id": 740, "Rank": 2, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "CommandName": "Get-PnPTeamsTab", - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" + "Id": 740 }, { - "Id": 741, "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", - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" + "Id": 741 }, { - "Id": 742, "Rank": 4, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsTab", - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" + "Id": 742 }, { - "Id": 743, "Rank": 5, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "CommandName": "Get-PnPTeamsTab", - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" + "Id": 743 }, { - "Id": 744, "Rank": 1, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "CommandName": "Get-PnPTeamsTag", - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Id": 744 }, { - "Id": 745, "Rank": 2, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "CommandName": "Get-PnPTeamsTag", - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Id": 745 }, { - "Id": 746, "Rank": 1, + "Command": "Get-PnPTeamsTeam", "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam" + "Id": 746 }, { - "Id": 747, "Rank": 2, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" + "Id": 747 }, { - "Id": 748, "Rank": 3, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" + "Id": 748 }, { - "Id": 749, "Rank": 4, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" + "Id": 749 }, { - "Id": 750, "Rank": 5, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" + "Id": 750 }, { - "Id": 751, "Rank": 1, + "Command": "Get-PnPTeamsUser -Team MyTeam", "CommandName": "Get-PnPTeamsUser", - "Command": "Get-PnPTeamsUser -Team MyTeam" + "Id": 751 }, { - "Id": 752, "Rank": 2, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "CommandName": "Get-PnPTeamsUser", - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" + "Id": 752 }, { - "Id": 753, "Rank": 3, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "CommandName": "Get-PnPTeamsUser", - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" + "Id": 753 }, { - "Id": 754, "Rank": 4, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "CommandName": "Get-PnPTeamsUser", - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" + "Id": 754 }, { - "Id": 755, "Rank": 1, + "Command": "Get-PnPTemporarilyDisableAppBar", "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Command": "Get-PnPTemporarilyDisableAppBar" + "Id": 755 }, { - "Id": 756, "Rank": 1, + "Command": "Get-PnPTenant", "CommandName": "Get-PnPTenant", - "Command": "Get-PnPTenant" + "Id": 756 }, { - "Id": 757, "Rank": 1, + "Command": "Get-PnPTenantAppCatalogUrl", "CommandName": "Get-PnPTenantAppCatalogUrl", - "Command": "Get-PnPTenantAppCatalogUrl" + "Id": 757 }, { - "Id": 758, "Rank": 1, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "CommandName": "Get-PnPTenantCdnEnabled", - "Command": "Get-PnPTenantCdnEnabled -CdnType Public" + "Id": 758 }, { - "Id": 759, "Rank": 1, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "CommandName": "Get-PnPTenantCdnOrigin", - "Command": "Get-PnPTenantCdnOrigin -CdnType Public" + "Id": 759 }, { - "Id": 760, "Rank": 1, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "CommandName": "Get-PnPTenantCdnPolicies", - "Command": "Get-PnPTenantCdnPolicies -CdnType Public" + "Id": 760 }, { - "Id": 761, "Rank": 1, + "Command": "Get-PnPTenantDeletedSite", "CommandName": "Get-PnPTenantDeletedSite", - "Command": "Get-PnPTenantDeletedSite" + "Id": 761 }, { - "Id": 762, "Rank": 2, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Get-PnPTenantDeletedSite", - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Id": 762 }, { - "Id": 763, "Rank": 3, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "CommandName": "Get-PnPTenantDeletedSite", - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" + "Id": 763 }, { - "Id": 764, "Rank": 4, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "CommandName": "Get-PnPTenantDeletedSite", - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" + "Id": 764 }, { - "Id": 765, "Rank": 1, + "Command": "Get-PnPTenantId", "CommandName": "Get-PnPTenantId", - "Command": "Get-PnPTenantId" + "Id": 765 }, { - "Id": 766, "Rank": 2, + "Command": "Get-PnPTenantId contoso", "CommandName": "Get-PnPTenantId", - "Command": "Get-PnPTenantId contoso" + "Id": 766 }, { - "Id": 767, "Rank": 3, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "CommandName": "Get-PnPTenantId", - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" + "Id": 767 }, { - "Id": 768, "Rank": 4, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "CommandName": "Get-PnPTenantId", - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" + "Id": 768 }, { - "Id": 769, "Rank": 1, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "CommandName": "Get-PnPTenantInfo", - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" + "Id": 769 }, { - "Id": 770, "Rank": 2, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "CommandName": "Get-PnPTenantInfo", - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" + "Id": 770 }, { - "Id": 771, "Rank": 3, + "Command": "Get-PnPTenantInfo", "CommandName": "Get-PnPTenantInfo", - "Command": "Get-PnPTenantInfo" + "Id": 771 }, { - "Id": 772, "Rank": 4, + "Command": "Get-PnPTenantInfo -CurrentTenant", "CommandName": "Get-PnPTenantInfo", - "Command": "Get-PnPTenantInfo -CurrentTenant" + "Id": 772 }, { - "Id": 773, "Rank": 1, + "Command": "Get-PnPTenantInstance", "CommandName": "Get-PnPTenantInstance", - "Command": "Get-PnPTenantInstance" + "Id": 773 }, { - "Id": 774, "Rank": 1, + "Command": "Get-PnPTenantRecycleBinItem", "CommandName": "Get-PnPTenantRecycleBinItem", - "Command": "Get-PnPTenantRecycleBinItem" + "Id": 774 }, { - "Id": 775, "Rank": 1, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "CommandName": "Get-PnPTenantSequence", - "Command": "Get-PnPTenantSequence -Template $myTemplateObject" + "Id": 775 }, { - "Id": 776, "Rank": 2, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "CommandName": "Get-PnPTenantSequence", - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" + "Id": 776 }, { - "Id": 777, "Rank": 1, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "CommandName": "Get-PnPTenantSequenceSite", - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" + "Id": 777 }, { - "Id": 778, "Rank": 2, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "CommandName": "Get-PnPTenantSequenceSite", - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" + "Id": 778 }, { - "Id": 779, "Rank": 1, + "Command": "Get-PnPTenantSite", "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite" + "Id": 779 }, { - "Id": 780, "Rank": 2, + "Command": "Get-PnPTenantSite -Detailed", "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Detailed" + "Id": 780 }, { - "Id": 781, "Rank": 3, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -IncludeOneDriveSites" + "Id": 781 }, { - "Id": 782, "Rank": 4, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" + "Id": 782 }, { - "Id": 783, "Rank": 5, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" + "Id": 783 }, { - "Id": 784, "Rank": 6, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" + "Id": 784 }, { - "Id": 785, "Rank": 7, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" + "Id": 785 }, { - "Id": 786, "Rank": 8, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" + "Id": 786 }, { - "Id": 787, "Rank": 9, + "Command": "Get-PnPTenantSite -GroupIdDefined $true", "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -GroupIdDefined $true" + "Id": 787 }, { - "Id": 788, "Rank": 1, + "Command": "Get-PnPTenantSyncClientRestriction", "CommandName": "Get-PnPTenantSyncClientRestriction", - "Command": "Get-PnPTenantSyncClientRestriction" + "Id": 788 }, { - "Id": 789, "Rank": 1, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "CommandName": "Get-PnPTenantTemplate", - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" + "Id": 789 }, { - "Id": 790, "Rank": 2, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "CommandName": "Get-PnPTenantTemplate", - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" + "Id": 790 }, { - "Id": 791, "Rank": 3, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "CommandName": "Get-PnPTenantTemplate", - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" + "Id": 791 }, { - "Id": 792, "Rank": 1, + "Command": "Get-PnPTenantTheme", "CommandName": "Get-PnPTenantTheme", - "Command": "Get-PnPTenantTheme" + "Id": 792 }, { - "Id": 793, "Rank": 2, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "CommandName": "Get-PnPTenantTheme", - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Id": 793 }, { - "Id": 794, "Rank": 3, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "CommandName": "Get-PnPTenantTheme", - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" + "Id": 794 }, { - "Id": 795, "Rank": 1, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Id": 795 }, { - "Id": 796, "Rank": 2, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Id": 796 }, { - "Id": 797, "Rank": 3, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Id": 797 }, { - "Id": 798, "Rank": 4, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" + "Id": 798 }, { - "Id": 799, "Rank": 5, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" + "Id": 799 }, { - "Id": 800, "Rank": 1, + "Command": "Get-PnPTermGroup", "CommandName": "Get-PnPTermGroup", - "Command": "Get-PnPTermGroup" + "Id": 800 }, { - "Id": 801, "Rank": 2, + "Command": "Get-PnPTermGroup -Identity \"Departments\"", "CommandName": "Get-PnPTermGroup", - "Command": "Get-PnPTermGroup -Identity \"Departments\"" + "Id": 801 }, { - "Id": 802, "Rank": 3, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "CommandName": "Get-PnPTermGroup", - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" + "Id": 802 }, { - "Id": 803, "Rank": 1, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "CommandName": "Get-PnPTermLabel", - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" + "Id": 803 }, { - "Id": 804, "Rank": 2, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "CommandName": "Get-PnPTermLabel", - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" + "Id": 804 }, { - "Id": 805, "Rank": 3, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermLabel", - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Id": 805 }, { - "Id": 806, "Rank": 1, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermSet", - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" + "Id": 806 }, { - "Id": 807, "Rank": 2, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermSet", - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" + "Id": 807 }, { - "Id": 808, "Rank": 3, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "CommandName": "Get-PnPTermSet", - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" + "Id": 808 }, { - "Id": 809, "Rank": 1, + "Command": "Get-PnPTheme", "CommandName": "Get-PnPTheme", - "Command": "Get-PnPTheme" + "Id": 809 }, { - "Id": 810, "Rank": 2, + "Command": "Get-PnPTheme -DetectCurrentComposedLook", "CommandName": "Get-PnPTheme", - "Command": "Get-PnPTheme -DetectCurrentComposedLook" + "Id": 810 }, { - "Id": 811, "Rank": 1, + "Command": "Get-PnPTimeZoneId", "CommandName": "Get-PnPTimeZoneId", - "Command": "Get-PnPTimeZoneId" + "Id": 811 }, { - "Id": 812, "Rank": 2, + "Command": "Get-PnPTimeZoneId -Match Stockholm", "CommandName": "Get-PnPTimeZoneId", - "Command": "Get-PnPTimeZoneId -Match Stockholm" + "Id": 812 }, { - "Id": 813, "Rank": 1, + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "CommandName": "Get-PnPUnfurlLink", - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" + "Id": 813 }, { - "Id": 814, "Rank": 1, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "CommandName": "Get-PnPUnifiedAuditLog", - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" + "Id": 814 }, { - "Id": 815, "Rank": 1, + "Command": "Get-PnPUPABulkImportStatus", "CommandName": "Get-PnPUPABulkImportStatus", - "Command": "Get-PnPUPABulkImportStatus" + "Id": 815 }, { - "Id": 816, "Rank": 2, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "CommandName": "Get-PnPUPABulkImportStatus", - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" + "Id": 816 }, { - "Id": 817, "Rank": 3, + "Command": "Get-PnPUPABulkImportStatus -JobId ", "CommandName": "Get-PnPUPABulkImportStatus", - "Command": "Get-PnPUPABulkImportStatus -JobId " + "Id": 817 }, { - "Id": 818, "Rank": 4, + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "CommandName": "Get-PnPUPABulkImportStatus", - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" + "Id": 818 }, { - "Id": 819, "Rank": 1, + "Command": "Get-PnPUser", "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser" + "Id": 819 }, { - "Id": 820, "Rank": 2, + "Command": "Get-PnPUser -Identity 23", "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -Identity 23" + "Id": 820 }, { - "Id": 821, "Rank": 3, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" + "Id": 821 }, { - "Id": 822, "Rank": 4, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" + "Id": 822 }, { - "Id": 823, "Rank": 5, + "Command": "Get-PnPUser -WithRightsAssigned", "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -WithRightsAssigned" + "Id": 823 }, { - "Id": 824, "Rank": 6, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" + "Id": 824 }, { - "Id": 825, "Rank": 7, + "Command": "Get-PnPUser -WithRightsAssignedDetailed", "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -WithRightsAssignedDetailed" + "Id": 825 }, { - "Id": 826, "Rank": 1, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "CommandName": "Get-PnPUserOneDriveQuota", - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" + "Id": 826 }, { - "Id": 827, "Rank": 1, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "CommandName": "Get-PnPUserProfileProperty", - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" + "Id": 827 }, { - "Id": 828, "Rank": 2, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "CommandName": "Get-PnPUserProfileProperty", - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" + "Id": 828 }, { - "Id": 829, "Rank": 3, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "CommandName": "Get-PnPUserProfileProperty", - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" + "Id": 829 }, { - "Id": 830, "Rank": 1, + "Command": "Get-PnPView -List \"Demo List\"", "CommandName": "Get-PnPView", - "Command": "Get-PnPView -List \"Demo List\"" + "Id": 830 }, { - "Id": 831, "Rank": 2, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "CommandName": "Get-PnPView", - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" + "Id": 831 }, { - "Id": 832, "Rank": 3, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "CommandName": "Get-PnPView", - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" + "Id": 832 }, { - "Id": 833, "Rank": 1, + "Command": "Get-PnPVivaConnectionsDashboardACE", "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Command": "Get-PnPVivaConnectionsDashboardACE" + "Id": 833 }, { - "Id": 834, "Rank": 2, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Id": 834 }, { - "Id": 835, "Rank": 1, + "Command": "Get-PnPWeb", "CommandName": "Get-PnPWeb", - "Command": "Get-PnPWeb" + "Id": 835 }, { - "Id": 836, "Rank": 1, + "Command": "Get-PnPWebHeader", "CommandName": "Get-PnPWebHeader", - "Command": "Get-PnPWebHeader" + "Id": 836 }, { - "Id": 837, "Rank": 1, + "Command": "Get-PnPWebhookSubscriptions -List MyList", "CommandName": "Get-PnPWebhookSubscriptions", - "Command": "Get-PnPWebhookSubscriptions -List MyList" + "Id": 837 }, { - "Id": 838, "Rank": 1, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "CommandName": "Get-PnPWebPart", - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" + "Id": 838 }, { - "Id": 839, "Rank": 2, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPWebPart", - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Id": 839 }, { - "Id": 840, "Rank": 1, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "CommandName": "Get-PnPWebPartProperty", - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" + "Id": 840 }, { - "Id": 841, "Rank": 2, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "CommandName": "Get-PnPWebPartProperty", - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" + "Id": 841 }, { - "Id": 842, "Rank": 1, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPWebPartXml", - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Id": 842 }, { - "Id": 843, "Rank": 1, + "Command": "Get-PnPWebTemplates", "CommandName": "Get-PnPWebTemplates", - "Command": "Get-PnPWebTemplates" + "Id": 843 }, { - "Id": 844, "Rank": 2, + "Command": "Get-PnPWebTemplates -LCID 1033", "CommandName": "Get-PnPWebTemplates", - "Command": "Get-PnPWebTemplates -LCID 1033" + "Id": 844 }, { - "Id": 845, "Rank": 3, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "CommandName": "Get-PnPWebTemplates", - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" + "Id": 845 }, { - "Id": 846, "Rank": 1, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "CommandName": "Get-PnPWikiPageContent", - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" + "Id": 846 }, { - "Id": 847, "Rank": 1, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "CommandName": "Grant-PnPAzureADAppSitePermission", - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" + "Id": 847 }, { - "Id": 848, "Rank": 2, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "CommandName": "Grant-PnPAzureADAppSitePermission", - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" + "Id": 848 }, { - "Id": 849, "Rank": 1, + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Grant-PnPHubSiteRights", - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Id": 849 }, { - "Id": 850, "Rank": 1, + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Grant-PnPSiteDesignRights", - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Id": 850 }, { - "Id": 851, "Rank": 1, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Id": 851 }, { - "Id": 852, "Rank": 1, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "CommandName": "Import-PnPTaxonomy", - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" + "Id": 852 }, { - "Id": 853, "Rank": 2, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "CommandName": "Import-PnPTaxonomy", - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" + "Id": 853 }, { - "Id": 854, "Rank": 3, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "CommandName": "Import-PnPTaxonomy", - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" + "Id": 854 }, { - "Id": 855, "Rank": 1, + "Command": "Import-PnPTermGroupFromXml -Xml $xml", "CommandName": "Import-PnPTermGroupFromXml", - "Command": "Import-PnPTermGroupFromXml -Xml $xml" + "Id": 855 }, { - "Id": 856, "Rank": 2, + "Command": "Import-PnPTermGroupFromXml -Path input.xml", "CommandName": "Import-PnPTermGroupFromXml", - "Command": "Import-PnPTermGroupFromXml -Path input.xml" + "Id": 856 }, { - "Id": 857, "Rank": 1, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "CommandName": "Import-PnPTermSet", - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" + "Id": 857 }, { - "Id": 858, "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", - "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" + "Id": 858 }, { - "Id": 859, "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", - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" + "Id": 859 }, { - "Id": 860, "Rank": 1, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Install-PnPApp", - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Id": 860 }, { - "Id": 861, "Rank": 2, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Install-PnPApp", - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Id": 861 }, { - "Id": 862, "Rank": 1, + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" + "Id": 862 }, { - "Id": 863, "Rank": 2, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" + "Id": 863 }, { - "Id": 864, "Rank": 3, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" + "Id": 864 }, { - "Id": 865, "Rank": 4, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" + "Id": 865 }, { - "Id": 866, "Rank": 5, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" + "Id": 866 }, { - "Id": 867, "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", - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" + "Id": 867 }, { - "Id": 868, "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", - "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": 868 }, { - "Id": 869, "Rank": 1, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Invoke-PnPListDesign", - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Id": 869 }, { - "Id": 870, "Rank": 2, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "CommandName": "Invoke-PnPListDesign", - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "Id": 870 }, { - "Id": 871, "Rank": 1, + "Command": "Invoke-PnPQuery -RetryCount 5", "CommandName": "Invoke-PnPQuery", - "Command": "Invoke-PnPQuery -RetryCount 5" + "Id": 871 }, { - "Id": 872, "Rank": 1, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Invoke-PnPSiteDesign", - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Id": 872 }, { - "Id": 873, "Rank": 2, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "CommandName": "Invoke-PnPSiteDesign", - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "Id": 873 }, { - "Id": 874, "Rank": 1, + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "CommandName": "Invoke-PnPSiteScript", - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" + "Id": 874 }, { - "Id": 875, "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", - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" + "Id": 875 }, { - "Id": 876, "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", - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" + "Id": 876 }, { - "Id": 877, "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", - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection" + "Id": 877 }, { - "Id": 878, "Rank": 1, + "Command": "Invoke-PnPSiteTemplate -Path template.xml", "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.xml" + "Id": 878 }, { - "Id": 879, "Rank": 2, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" + "Id": 879 }, { - "Id": 880, "Rank": 3, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "Id": 880 }, { - "Id": 881, "Rank": 4, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" + "Id": 881 }, { - "Id": 882, "Rank": 5, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.pnp" + "Id": 882 }, { - "Id": 883, "Rank": 6, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" + "Id": 883 }, { - "Id": 884, "Rank": 7, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" + "Id": 884 }, { - "Id": 885, "Rank": 8, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" + "Id": 885 }, { - "Id": 886, "Rank": 1, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "CommandName": "Invoke-PnPSPRestMethod", - "Command": "Invoke-PnPSPRestMethod -Url /_api/web" + "Id": 886 }, { - "Id": 887, "Rank": 1, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "CommandName": "Invoke-PnPTenantTemplate", - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" + "Id": 887 }, { - "Id": 888, "Rank": 2, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "CommandName": "Invoke-PnPTenantTemplate", - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" + "Id": 888 }, { - "Id": 889, "Rank": 3, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "CommandName": "Invoke-PnPTenantTemplate", - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "Id": 889 }, { - "Id": 890, "Rank": 1, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "CommandName": "Invoke-PnPWebAction", - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" + "Id": 890 }, { - "Id": 891, "Rank": 2, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "CommandName": "Invoke-PnPWebAction", - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" + "Id": 891 }, { - "Id": 892, "Rank": 1, + "Command": "Measure-PnPList \"Documents\"", "CommandName": "Measure-PnPList", - "Command": "Measure-PnPList \"Documents\"" + "Id": 892 }, { - "Id": 893, "Rank": 2, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "CommandName": "Measure-PnPList", - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" + "Id": 893 }, { - "Id": 894, "Rank": 1, + "Command": "Measure-PnPWeb", "CommandName": "Measure-PnPWeb", - "Command": "Measure-PnPWeb" + "Id": 894 }, { - "Id": 895, "Rank": 2, + "Command": "Measure-PnPWeb $web -Recursive", "CommandName": "Measure-PnPWeb", - "Command": "Measure-PnPWeb $web -Recursive" + "Id": 895 }, { - "Id": 896, "Rank": 1, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "CommandName": "Move-PnPFile", - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" + "Id": 896 }, { - "Id": 897, "Rank": 2, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "CommandName": "Move-PnPFile", - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" + "Id": 897 }, { - "Id": 898, "Rank": 3, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "CommandName": "Move-PnPFile", - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "Id": 898 }, { - "Id": 899, "Rank": 4, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "CommandName": "Move-PnPFile", - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "Id": 899 }, { - "Id": 900, "Rank": 1, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "CommandName": "Move-PnPFolder", - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" + "Id": 900 }, { - "Id": 901, "Rank": 2, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "CommandName": "Move-PnPFolder", - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" + "Id": 901 }, { - "Id": 902, "Rank": 1, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "CommandName": "Move-PnPListItemToRecycleBin", - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" + "Id": 902 }, { - "Id": 903, "Rank": 1, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "CommandName": "Move-PnPPageComponent", - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" + "Id": 903 }, { - "Id": 904, "Rank": 2, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "CommandName": "Move-PnPPageComponent", - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" + "Id": 904 }, { - "Id": 905, "Rank": 3, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "CommandName": "Move-PnPPageComponent", - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" + "Id": 905 }, { - "Id": 906, "Rank": 4, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "CommandName": "Move-PnPPageComponent", - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" + "Id": 906 }, { - "Id": 907, "Rank": 1, + "Command": "Move-PnPRecycleBinItem", "CommandName": "Move-PnpRecycleBinItem", - "Command": "Move-PnPRecycleBinItem" + "Id": 907 }, { - "Id": 908, "Rank": 2, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "CommandName": "Move-PnpRecycleBinItem", - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" + "Id": 908 }, { - "Id": 909, "Rank": 3, + "Command": "Move-PnPRecycleBinItem -Force", "CommandName": "Move-PnpRecycleBinItem", - "Command": "Move-PnPRecycleBinItem -Force" + "Id": 909 }, { - "Id": 910, "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", - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" + "Id": 910 }, { - "Id": 911, "Rank": 2, + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "CommandName": "Move-PnPTerm", - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" + "Id": 911 }, { - "Id": 912, "Rank": 3, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "CommandName": "Move-PnPTerm", - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" + "Id": 912 }, { - "Id": 913, "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", - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" + "Id": 913 }, { - "Id": 914, "Rank": 2, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "CommandName": "Move-PnPTermSet", - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" + "Id": 914 }, { - "Id": 915, "Rank": 1, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "CommandName": "New-PnPAzureADGroup", - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" + "Id": 915 }, { - "Id": 916, "Rank": 2, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "CommandName": "New-PnPAzureADGroup", - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" + "Id": 916 }, { - "Id": 917, "Rank": 3, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "CommandName": "New-PnPAzureADGroup", - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" + "Id": 917 }, { - "Id": 918, "Rank": 1, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" + "Id": 918 }, { - "Id": 919, "Rank": 2, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" + "Id": 919 }, { - "Id": 920, "Rank": 3, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" + "Id": 920 }, { - "Id": 921, "Rank": 1, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "CommandName": "New-PnPAzureCertificate", - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" + "Id": 921 }, { - "Id": 922, "Rank": 2, + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "CommandName": "New-PnPAzureCertificate", - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" + "Id": 922 }, { - "Id": 923, "Rank": 3, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "CommandName": "New-PnPAzureCertificate", - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" + "Id": 923 }, { - "Id": 924, "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", - "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()" + "Id": 924 }, { - "Id": 925, "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", - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" + "Id": 925 }, { - "Id": 926, "Rank": 1, + "Command": "New-PnPGroup -Title \"My Site Users\"", "CommandName": "New-PnPGroup", - "Command": "New-PnPGroup -Title \"My Site Users\"" + "Id": 926 }, { - "Id": 927, "Rank": 1, + "Command": "New-PnPList -Title Announcements -Template Announcements", "CommandName": "New-PnPList", - "Command": "New-PnPList -Title Announcements -Template Announcements" + "Id": 927 }, { - "Id": 928, "Rank": 2, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "CommandName": "New-PnPList", - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" + "Id": 928 }, { - "Id": 929, "Rank": 3, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "CommandName": "New-PnPList", - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" + "Id": 929 }, { - "Id": 930, "Rank": 1, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" + "Id": 930 }, { - "Id": 931, "Rank": 2, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" + "Id": 931 }, { - "Id": 932, "Rank": 3, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" + "Id": 932 }, { - "Id": 933, "Rank": 4, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" + "Id": 933 }, { - "Id": 934, "Rank": 5, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "Id": 934 }, { - "Id": 935, "Rank": 6, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "Id": 935 }, { - "Id": 936, "Rank": 7, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" + "Id": 936 }, { - "Id": 937, "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", - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" + "Id": 937 }, { - "Id": 938, "Rank": 2, + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "CommandName": "New-PnPMicrosoft365GroupSettings", - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" + "Id": 938 }, { - "Id": 939, "Rank": 1, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "CommandName": "New-PnPPersonalSite", - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" + "Id": 939 }, { - "Id": 940, "Rank": 1, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "CommandName": "New-PnPPlannerPlan", - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" + "Id": 940 }, { - "Id": 941, "Rank": 1, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "CommandName": "New-PnPSdnProvider", - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" + "Id": 941 }, { - "Id": 942, "Rank": 1, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" + "Id": 942 }, { - "Id": 943, "Rank": 2, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" + "Id": 943 }, { - "Id": 944, "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", - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" + "Id": 944 }, { - "Id": 945, "Rank": 4, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" + "Id": 945 }, { - "Id": 946, "Rank": 5, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" + "Id": 946 }, { - "Id": 947, "Rank": 6, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" + "Id": 947 }, { - "Id": 948, "Rank": 7, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" + "Id": 948 }, { - "Id": 949, "Rank": 8, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" + "Id": 949 }, { - "Id": 950, "Rank": 9, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" + "Id": 950 }, { - "Id": 951, "Rank": 10, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" + "Id": 951 }, { - "Id": 952, "Rank": 11, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" + "Id": 952 }, { - "Id": 953, "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", - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" + "Id": 953 }, { - "Id": 954, "Rank": 13, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" + "Id": 954 }, { - "Id": 955, "Rank": 14, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" + "Id": 955 }, { - "Id": 956, "Rank": 15, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" + "Id": 956 }, { - "Id": 957, "Rank": 16, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" + "Id": 957 }, { - "Id": 958, "Rank": 1, + "Command": "New-PnPSiteCollectionTermStore", "CommandName": "New-PnPSiteCollectionTermStore", - "Command": "New-PnPSiteCollectionTermStore" + "Id": 958 }, { - "Id": 959, "Rank": 1, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "CommandName": "New-PnPSiteGroup", - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" + "Id": 959 }, { - "Id": 960, "Rank": 2, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "CommandName": "New-PnPSiteGroup", - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" + "Id": 960 }, { - "Id": 961, "Rank": 1, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" + "Id": 961 }, { - "Id": 962, "Rank": 2, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" + "Id": 962 }, { - "Id": 963, "Rank": 3, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" + "Id": 963 }, { - "Id": 964, "Rank": 4, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" + "Id": 964 }, { - "Id": 965, "Rank": 5, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" + "Id": 965 }, { - "Id": 966, "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", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Id": 966 }, { - "Id": 967, "Rank": 7, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" + "Id": 967 }, { - "Id": 968, "Rank": 8, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" + "Id": 968 }, { - "Id": 969, "Rank": 1, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "CommandName": "New-PnPTeamsApp", - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" + "Id": 969 }, { - "Id": 970, "Rank": 1, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "CommandName": "New-PnPTeamsTeam", - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" + "Id": 970 }, { - "Id": 971, "Rank": 2, + "Command": "New-PnPTeamsTeam -GroupId $groupId", "CommandName": "New-PnPTeamsTeam", - "Command": "New-PnPTeamsTeam -GroupId $groupId" + "Id": 971 }, { - "Id": 972, "Rank": 3, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "CommandName": "New-PnPTeamsTeam", - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" + "Id": 972 }, { - "Id": 973, "Rank": 4, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "CommandName": "New-PnPTeamsTeam", - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "Id": 973 }, { - "Id": 974, "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", - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" + "Id": 974 }, { - "Id": 975, "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", - "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": 975 }, { - "Id": 976, "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", - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" + "Id": 976 }, { - "Id": 977, "Rank": 2, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "CommandName": "New-PnPTenantSite", - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" + "Id": 977 }, { - "Id": 978, "Rank": 1, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "CommandName": "New-PnPTerm", - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" + "Id": 978 }, { - "Id": 979, "Rank": 2, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "New-PnPTerm", - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Id": 979 }, { - "Id": 980, "Rank": 1, + "Command": "New-PnPTermGroup -GroupName \"Countries\"", "CommandName": "New-PnPTermGroup", - "Command": "New-PnPTermGroup -GroupName \"Countries\"" + "Id": 980 }, { - "Id": 981, "Rank": 1, + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "CommandName": "New-PnPTermLabel", - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" + "Id": 981 }, { - "Id": 982, "Rank": 1, + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "CommandName": "New-PnPTermSet", - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" + "Id": 982 }, { - "Id": 983, "Rank": 1, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "CommandName": "New-PnPUPABulkImportJob", - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" + "Id": 983 }, { - "Id": 984, "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", - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" + "Id": 984 }, { - "Id": 985, "Rank": 1, + "Command": "New-PnPUser -LoginName user@company.com", "CommandName": "New-PnPUser", - "Command": "New-PnPUser -LoginName user@company.com" + "Id": 985 }, { - "Id": 986, "Rank": 1, + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "CommandName": "New-PnPWeb", - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" + "Id": 986 }, { - "Id": 987, "Rank": 1, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Publish-PnPApp", - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Id": 987 }, { - "Id": 988, "Rank": 2, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "CommandName": "Publish-PnPApp", - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" + "Id": 988 }, { - "Id": 989, "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", - "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": 989 }, { - "Id": 990, "Rank": 1, + "Command": "Publish-PnPContentType -ContentType 0x0101", "CommandName": "Publish-PnPContentType", - "Command": "Publish-PnPContentType -ContentType 0x0101" + "Id": 990 }, { - "Id": 991, "Rank": 1, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "CommandName": "Publish-PnPSyntexModel", - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "Id": 991 }, { - "Id": 992, "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", - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" + "Id": 992 }, { - "Id": 993, "Rank": 1, + "Command": "Read-PnPSiteTemplate -Path template.pnp", "CommandName": "Read-PnPSiteTemplate", - "Command": "Read-PnPSiteTemplate -Path template.pnp" + "Id": 993 }, { - "Id": 994, "Rank": 2, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "CommandName": "Read-PnPSiteTemplate", - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" + "Id": 994 }, { - "Id": 995, "Rank": 3, + "Command": "Read-PnPSiteTemplate -Xml $xml", "CommandName": "Read-PnPSiteTemplate", - "Command": "Read-PnPSiteTemplate -Xml $xml" + "Id": 995 }, { - "Id": 996, "Rank": 1, + "Command": "Read-PnPTenantTemplate -Path template.pnp", "CommandName": "Read-PnPTenantTemplate", - "Command": "Read-PnPTenantTemplate -Path template.pnp" + "Id": 996 }, { - "Id": 997, "Rank": 1, + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "CommandName": "Register-PnPAppCatalogSite", - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" + "Id": 997 }, { - "Id": 998, "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", - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" + "Id": 998 }, { - "Id": 999, "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", - "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": 999 }, { - "Id": 1000, "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", - "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": 1000 }, { - "Id": 1001, "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", - "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": 1001 }, { - "Id": 1002, "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", - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" + "Id": 1002 }, { - "Id": 1003, "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", - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" + "Id": 1003 }, { - "Id": 1004, "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", - "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": 1004 }, { - "Id": 1005, "Rank": 1, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "CommandName": "Register-PnPHubSite", - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Id": 1005 }, { - "Id": 1006, "Rank": 2, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "CommandName": "Register-PnPHubSite", - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" + "Id": 1006 }, { - "Id": 1007, "Rank": 1, + "Command": "Register-PnPManagementShellAccess", "CommandName": "Register-PnPManagementShellAccess", - "Command": "Register-PnPManagementShellAccess" + "Id": 1007 }, { - "Id": 1008, "Rank": 2, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "CommandName": "Register-PnPManagementShellAccess", - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" + "Id": 1008 }, { - "Id": 1009, "Rank": 3, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "CommandName": "Register-PnPManagementShellAccess", - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" + "Id": 1009 }, { - "Id": 1010, "Rank": 1, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" + "Id": 1010 }, { - "Id": 1011, "Rank": 2, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" + "Id": 1011 }, { - "Id": 1012, "Rank": 1, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "CommandName": "Remove-PnPAlert", - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" + "Id": 1012 }, { - "Id": 1013, "Rank": 2, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAlert", - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Id": 1013 }, { - "Id": 1014, "Rank": 1, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Remove-PnPApp", - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Id": 1014 }, { - "Id": 1015, "Rank": 2, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Remove-PnPApp", - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Id": 1015 }, { - "Id": 1016, "Rank": 1, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Remove-PnPApplicationCustomizer", - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Id": 1016 }, { - "Id": 1017, "Rank": 2, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "CommandName": "Remove-PnPApplicationCustomizer", - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Id": 1017 }, { - "Id": 1018, "Rank": 1, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "CommandName": "Remove-PnPAvailableSiteClassification", - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" + "Id": 1018 }, { - "Id": 1019, "Rank": 2, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "CommandName": "Remove-PnPAvailableSiteClassification", - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Id": 1019 }, { - "Id": 1020, "Rank": 1, + "Command": "Remove-PnPAzureADApp -Identity MyApp", "CommandName": "Remove-PnPAzureADApp", - "Command": "Remove-PnPAzureADApp -Identity MyApp" + "Id": 1020 }, { - "Id": 1021, "Rank": 2, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Remove-PnPAzureADApp", - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Id": 1021 }, { - "Id": 1022, "Rank": 1, + "Command": "Remove-PnPAzureADGroup -Identity $groupId", "CommandName": "Remove-PnPAzureADGroup", - "Command": "Remove-PnPAzureADGroup -Identity $groupId" + "Id": 1022 }, { - "Id": 1023, "Rank": 2, + "Command": "Remove-PnPAzureADGroup -Identity $group", "CommandName": "Remove-PnPAzureADGroup", - "Command": "Remove-PnPAzureADGroup -Identity $group" + "Id": 1023 }, { - "Id": 1024, "Rank": 1, + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAzureADGroupMember", - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Id": 1024 }, { - "Id": 1025, "Rank": 1, + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAzureADGroupOwner", - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Id": 1025 }, { - "Id": 1026, "Rank": 1, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" + "Id": 1026 }, { - "Id": 1027, "Rank": 2, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" + "Id": 1027 }, { - "Id": 1028, "Rank": 3, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Id": 1028 }, { - "Id": 1029, "Rank": 4, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Id": 1029 }, { - "Id": 1030, "Rank": 1, + "Command": "Remove-PnPContentType -Identity \"Project Document\"", "CommandName": "Remove-PnPContentType", - "Command": "Remove-PnPContentType -Identity \"Project Document\"" + "Id": 1030 }, { - "Id": 1031, "Rank": 2, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "CommandName": "Remove-PnPContentType", - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" + "Id": 1031 }, { - "Id": 1032, "Rank": 1, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Id": 1032 }, { - "Id": 1033, "Rank": 2, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Id": 1033 }, { - "Id": 1034, "Rank": 1, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "CommandName": "Remove-PnPContentTypeFromList", - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" + "Id": 1034 }, { - "Id": 1035, "Rank": 1, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Remove-PnPCustomAction", - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Id": 1035 }, { - "Id": 1036, "Rank": 2, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "CommandName": "Remove-PnPCustomAction", - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Id": 1036 }, { - "Id": 1037, "Rank": 3, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "CommandName": "Remove-PnPCustomAction", - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" + "Id": 1037 }, { - "Id": 1038, "Rank": 1, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Id": 1038 }, { - "Id": 1039, "Rank": 1, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Id": 1039 }, { - "Id": 1040, "Rank": 2, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Id": 1040 }, { - "Id": 1041, "Rank": 3, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" + "Id": 1041 }, { - "Id": 1042, "Rank": 4, + "Command": "Remove-PnPEventReceiver -List ProjectList", "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -List ProjectList" + "Id": 1042 }, { - "Id": 1043, "Rank": 5, + "Command": "Remove-PnPEventReceiver", "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver" + "Id": 1043 }, { - "Id": 1044, "Rank": 6, + "Command": "Remove-PnPEventReceiver -Scope Site", "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -Scope Site" + "Id": 1044 }, { - "Id": 1045, "Rank": 7, + "Command": "Remove-PnPEventReceiver -Scope Web", "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -Scope Web" + "Id": 1045 }, { - "Id": 1046, "Rank": 8, + "Command": "Remove-PnPEventReceiver -Scope All", "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -Scope All" + "Id": 1046 }, { - "Id": 1047, "Rank": 1, + "Command": "Remove-PnPField -Identity \"Speakers\"", "CommandName": "Remove-PnPField", - "Command": "Remove-PnPField -Identity \"Speakers\"" + "Id": 1047 }, { - "Id": 1048, "Rank": 2, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "CommandName": "Remove-PnPField", - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Id": 1048 }, { - "Id": 1049, "Rank": 1, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "CommandName": "Remove-PnPFieldFromContentType", - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Id": 1049 }, { - "Id": 1050, "Rank": 2, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "CommandName": "Remove-PnPFieldFromContentType", - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" + "Id": 1050 }, { - "Id": 1051, "Rank": 1, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "CommandName": "Remove-PnPFile", - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" + "Id": 1051 }, { - "Id": 1052, "Rank": 2, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "CommandName": "Remove-PnPFile", - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" + "Id": 1052 }, { - "Id": 1053, "Rank": 3, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "CommandName": "Remove-PnPFile", - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" + "Id": 1053 }, { - "Id": 1054, "Rank": 1, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "CommandName": "Remove-PnPFileFromSiteTemplate", - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" + "Id": 1054 }, { - "Id": 1055, "Rank": 1, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Remove-PnPFileSharingLink", - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Id": 1055 }, { - "Id": 1056, "Rank": 2, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "CommandName": "Remove-PnPFileSharingLink", - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" + "Id": 1056 }, { - "Id": 1057, "Rank": 1, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "CommandName": "Remove-PnPFileVersion", - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Id": 1057 }, { - "Id": 1058, "Rank": 2, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "CommandName": "Remove-PnPFileVersion", - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Id": 1058 }, { - "Id": 1059, "Rank": 3, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "CommandName": "Remove-PnPFileVersion", - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" + "Id": 1059 }, { - "Id": 1060, "Rank": 1, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "CommandName": "Remove-PnPFlowOwner", - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" + "Id": 1060 }, { - "Id": 1061, "Rank": 2, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "CommandName": "Remove-PnPFlowOwner", - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" + "Id": 1061 }, { - "Id": 1062, "Rank": 3, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "CommandName": "Remove-PnPFlowOwner", - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" + "Id": 1062 }, { - "Id": 1063, "Rank": 4, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "CommandName": "Remove-PnPFlowOwner", - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" + "Id": 1063 }, { - "Id": 1064, "Rank": 1, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "CommandName": "Remove-PnPFolder", - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Id": 1064 }, { - "Id": 1065, "Rank": 2, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "CommandName": "Remove-PnPFolder", - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" + "Id": 1065 }, { - "Id": 1066, "Rank": 1, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Remove-PnPFolderSharingLink", - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Id": 1066 }, { - "Id": 1067, "Rank": 2, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "CommandName": "Remove-PnPFolderSharingLink", - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" + "Id": 1067 }, { - "Id": 1068, "Rank": 1, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "CommandName": "Remove-PnPGraphSubscription", - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" + "Id": 1068 }, { - "Id": 1069, "Rank": 1, + "Command": "Remove-PnPGroup -Identity \"My Users\"", "CommandName": "Remove-PnPGroup", - "Command": "Remove-PnPGroup -Identity \"My Users\"" + "Id": 1069 }, { - "Id": 1070, "Rank": 1, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "CommandName": "Remove-PnPGroupMember", - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Id": 1070 }, { - "Id": 1071, "Rank": 1, + "Command": "Remove-PnPHomeSite", "CommandName": "Remove-PnPHomeSite", - "Command": "Remove-PnPHomeSite" + "Id": 1071 }, { - "Id": 1072, "Rank": 1, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "CommandName": "Remove-PnPHubSiteAssociation", - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" + "Id": 1072 }, { - "Id": 1073, "Rank": 1, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "CommandName": "Remove-PnPHubToHubAssociation", - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" + "Id": 1073 }, { - "Id": 1074, "Rank": 2, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "CommandName": "Remove-PnPHubToHubAssociation", - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" + "Id": 1074 }, { - "Id": 1075, "Rank": 1, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "CommandName": "Remove-PnPIndexedProperty", - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" + "Id": 1075 }, { - "Id": 1076, "Rank": 1, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Identity jQuery" + "Id": 1076 }, { - "Id": 1077, "Rank": 2, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" + "Id": 1077 }, { - "Id": 1078, "Rank": 3, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" + "Id": 1078 }, { - "Id": 1079, "Rank": 4, + "Command": "Remove-PnPJavaScriptLink -Scope Site", "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Scope Site" + "Id": 1079 }, { - "Id": 1080, "Rank": 5, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" + "Id": 1080 }, { - "Id": 1081, "Rank": 1, + "Command": "Remove-PnPKnowledgeHubSite", "CommandName": "Remove-PnPKnowledgeHubSite", - "Command": "Remove-PnPKnowledgeHubSite" + "Id": 1081 }, { - "Id": 1082, "Rank": 1, + "Command": "Remove-PnPList -Identity Announcements", "CommandName": "Remove-PnPList", - "Command": "Remove-PnPList -Identity Announcements" + "Id": 1082 }, { - "Id": 1083, "Rank": 2, + "Command": "Remove-PnPList -Identity Announcements -Force", "CommandName": "Remove-PnPList", - "Command": "Remove-PnPList -Identity Announcements -Force" + "Id": 1083 }, { - "Id": 1084, "Rank": 3, + "Command": "Remove-PnPList -Identity Announcements -Recycle", "CommandName": "Remove-PnPList", - "Command": "Remove-PnPList -Identity Announcements -Recycle" + "Id": 1084 }, { - "Id": 1085, "Rank": 4, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "CommandName": "Remove-PnPList", - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" + "Id": 1085 }, { - "Id": 1086, "Rank": 1, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPListDesign", - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Id": 1086 }, { - "Id": 1087, "Rank": 1, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "CommandName": "Remove-PnPListItem", - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" + "Id": 1087 }, { - "Id": 1088, "Rank": 2, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "CommandName": "Remove-PnPListItem", - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" + "Id": 1088 }, { - "Id": 1089, "Rank": 3, + "Command": "Remove-PnPListItem -List \"Demo List\"", "CommandName": "Remove-PnPListItem", - "Command": "Remove-PnPListItem -List \"Demo List\"" + "Id": 1089 }, { - "Id": 1090, "Rank": 1, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "CommandName": "Remove-PnPListItemAttachment", - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" + "Id": 1090 }, { - "Id": 1091, "Rank": 2, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "CommandName": "Remove-PnPListItemAttachment", - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" + "Id": 1091 }, { - "Id": 1092, "Rank": 3, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "CommandName": "Remove-PnPListItemAttachment", - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" + "Id": 1092 }, { - "Id": 1093, "Rank": 4, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "CommandName": "Remove-PnPListItemAttachment", - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" + "Id": 1093 }, { - "Id": 1094, "Rank": 5, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "CommandName": "Remove-PnPListItemAttachment", - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" + "Id": 1094 }, { - "Id": 1095, "Rank": 1, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "CommandName": "Remove-PnPListItemVersion", - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Id": 1095 }, { - "Id": 1096, "Rank": 2, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "CommandName": "Remove-PnPListItemVersion", - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Id": 1096 }, { - "Id": 1097, "Rank": 1, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "CommandName": "Remove-PnPMicrosoft365Group", - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" + "Id": 1097 }, { - "Id": 1098, "Rank": 2, + "Command": "Remove-PnPMicrosoft365Group -Identity $group", "CommandName": "Remove-PnPMicrosoft365Group", - "Command": "Remove-PnPMicrosoft365Group -Identity $group" + "Id": 1098 }, { - "Id": 1099, "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Id": 1099 }, { - "Id": 1100, "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Id": 1100 }, { - "Id": 1101, "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" + "Id": 1101 }, { - "Id": 1102, "Rank": 2, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" + "Id": 1102 }, { - "Id": 1103, "Rank": 1, + "Command": "Remove-PnPNavigationNode -Identity 1032", "CommandName": "Remove-PnPNavigationNode", - "Command": "Remove-PnPNavigationNode -Identity 1032" + "Id": 1103 }, { - "Id": 1104, "Rank": 2, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "CommandName": "Remove-PnPNavigationNode", - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" + "Id": 1104 }, { - "Id": 1105, "Rank": 3, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "CommandName": "Remove-PnPNavigationNode", - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" + "Id": 1105 }, { - "Id": 1106, "Rank": 1, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" + "Id": 1106 }, { - "Id": 1107, "Rank": 2, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" + "Id": 1107 }, { - "Id": 1108, "Rank": 3, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" + "Id": 1108 }, { - "Id": 1109, "Rank": 1, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "CommandName": "Remove-PnPOrgNewsSite", - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" + "Id": 1109 }, { - "Id": 1110, "Rank": 1, + "Command": "Remove-PnPPage -Identity \"MyPage\"", "CommandName": "Remove-PnPPage", - "Command": "Remove-PnPPage -Identity \"MyPage\"" + "Id": 1110 }, { - "Id": 1111, "Rank": 2, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "CommandName": "Remove-PnPPage", - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" + "Id": 1111 }, { - "Id": 1112, "Rank": 3, + "Command": "Remove-PnPPage $page", "CommandName": "Remove-PnPPage", - "Command": "Remove-PnPPage $page" + "Id": 1112 }, { - "Id": 1113, "Rank": 4, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "CommandName": "Remove-PnPPage", - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" + "Id": 1113 }, { - "Id": 1114, "Rank": 1, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Remove-PnPPageComponent", - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Id": 1114 }, { - "Id": 1115, "Rank": 1, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "CommandName": "Remove-PnPPlannerBucket", - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" + "Id": 1115 }, { - "Id": 1116, "Rank": 1, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "CommandName": "Remove-PnPPlannerPlan", - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" + "Id": 1116 }, { - "Id": 1117, "Rank": 1, + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "CommandName": "Remove-PnPPlannerRoster", - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Id": 1117 }, { - "Id": 1118, "Rank": 1, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPPlannerRosterMember", - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "Id": 1118 }, { - "Id": 1119, "Rank": 1, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "CommandName": "Remove-PnPPlannerTask", - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" + "Id": 1119 }, { - "Id": 1120, "Rank": 1, + "Command": "Remove-PnPPropertyBagValue -Key MyKey", "CommandName": "Remove-PnPPropertyBagValue", - "Command": "Remove-PnPPropertyBagValue -Key MyKey" + "Id": 1120 }, { - "Id": 1121, "Rank": 2, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "CommandName": "Remove-PnPPropertyBagValue", - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" + "Id": 1121 }, { - "Id": 1122, "Rank": 3, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "CommandName": "Remove-PnPPropertyBagValue", - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" + "Id": 1122 }, { - "Id": 1123, "Rank": 1, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "CommandName": "Remove-PnPPublishingImageRendition", - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Id": 1123 }, { - "Id": 1124, "Rank": 1, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "CommandName": "Remove-PnPRoleDefinition", - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" + "Id": 1124 }, { - "Id": 1125, "Rank": 1, + "Command": "Remove-PnPSdnProvider -Confirm:false", "CommandName": "Remove-PnPSdnProvider", - "Command": "Remove-PnPSdnProvider -Confirm:false" + "Id": 1125 }, { - "Id": 1126, "Rank": 1, + "Command": "Remove-PnPSearchConfiguration -Configuration $config", "CommandName": "Remove-PnPSearchConfiguration", - "Command": "Remove-PnPSearchConfiguration -Configuration $config" + "Id": 1126 }, { - "Id": 1127, "Rank": 2, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "CommandName": "Remove-PnPSearchConfiguration", - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" + "Id": 1127 }, { - "Id": 1128, "Rank": 3, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "CommandName": "Remove-PnPSearchConfiguration", - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Id": 1128 }, { - "Id": 1129, "Rank": 4, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Remove-PnPSearchConfiguration", - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Id": 1129 }, { - "Id": 1130, "Rank": 1, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPSiteCollectionAdmin", - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Id": 1130 }, { - "Id": 1131, "Rank": 2, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Remove-PnPSiteCollectionAdmin", - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Id": 1131 }, { - "Id": 1132, "Rank": 1, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Id": 1132 }, { - "Id": 1133, "Rank": 1, + "Command": "Remove-PnPSiteCollectionTermStore", "CommandName": "Remove-PnPSiteCollectionTermStore", - "Command": "Remove-PnPSiteCollectionTermStore" + "Id": 1133 }, { - "Id": 1134, "Rank": 1, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteDesign", - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Id": 1134 }, { - "Id": 1135, "Rank": 1, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteDesignTask", - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Id": 1135 }, { - "Id": 1136, "Rank": 1, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Remove-PnPSiteGroup", - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" + "Id": 1136 }, { - "Id": 1137, "Rank": 2, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "CommandName": "Remove-PnPSiteGroup", - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" + "Id": 1137 }, { - "Id": 1138, "Rank": 1, + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteScript", - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Id": 1138 }, { - "Id": 1139, "Rank": 1, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "CommandName": "Remove-PnPSiteUserInvitations", - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "Id": 1139 }, { - "Id": 1140, "Rank": 1, + "Command": "Remove-PnPStorageEntity -Key MyKey", "CommandName": "Remove-PnPStorageEntity", - "Command": "Remove-PnPStorageEntity -Key MyKey" + "Id": 1140 }, { - "Id": 1141, "Rank": 2, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "CommandName": "Remove-PnPStorageEntity", - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" + "Id": 1141 }, { - "Id": 1142, "Rank": 1, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "CommandName": "Remove-PnPStoredCredential", - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" + "Id": 1142 }, { - "Id": 1143, "Rank": 1, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "CommandName": "Remove-PnPTaxonomyItem", - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" + "Id": 1143 }, { - "Id": 1144, "Rank": 2, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "CommandName": "Remove-PnPTaxonomyItem", - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" + "Id": 1144 }, { - "Id": 1145, "Rank": 1, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "CommandName": "Remove-PnPTeamsApp", - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" + "Id": 1145 }, { - "Id": 1146, "Rank": 2, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "CommandName": "Remove-PnPTeamsApp", - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" + "Id": 1146 }, { - "Id": 1147, "Rank": 1, + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "CommandName": "Remove-PnPTeamsChannel", - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" + "Id": 1147 }, { - "Id": 1148, "Rank": 1, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "CommandName": "Remove-PnPTeamsChannelUser", - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" + "Id": 1148 }, { - "Id": 1149, "Rank": 2, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Remove-PnPTeamsChannelUser", - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "Id": 1149 }, { - "Id": 1150, "Rank": 3, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "CommandName": "Remove-PnPTeamsChannelUser", - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" + "Id": 1150 }, { - "Id": 1151, "Rank": 1, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "CommandName": "Remove-PnPTeamsTab", - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" + "Id": 1151 }, { - "Id": 1152, "Rank": 2, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "CommandName": "Remove-PnPTeamsTab", - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" + "Id": 1152 }, { - "Id": 1153, "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", - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" + "Id": 1153 }, { - "Id": 1154, "Rank": 1, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "CommandName": "Remove-PnPTeamsTag", - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Id": 1154 }, { - "Id": 1155, "Rank": 1, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "CommandName": "Remove-PnPTeamsTeam", - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Id": 1155 }, { - "Id": 1156, "Rank": 2, + "Command": "Remove-PnPTeamsTeam -Identity testteam", "CommandName": "Remove-PnPTeamsTeam", - "Command": "Remove-PnPTeamsTeam -Identity testteam" + "Id": 1156 }, { - "Id": 1157, "Rank": 1, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "CommandName": "Remove-PnPTeamsUser", - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" + "Id": 1157 }, { - "Id": 1158, "Rank": 2, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Remove-PnPTeamsUser", - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Id": 1158 }, { - "Id": 1159, "Rank": 1, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "CommandName": "Remove-PnPTenantCdnOrigin", - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Id": 1159 }, { - "Id": 1160, "Rank": 1, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Remove-PnPTenantDeletedSite", - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Id": 1160 }, { - "Id": 1161, "Rank": 2, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "CommandName": "Remove-PnPTenantDeletedSite", - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Id": 1161 }, { - "Id": 1162, "Rank": 1, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Remove-PnPTenantSite", - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Id": 1162 }, { - "Id": 1163, "Rank": 2, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "CommandName": "Remove-PnPTenantSite", - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" + "Id": 1163 }, { - "Id": 1164, "Rank": 3, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "CommandName": "Remove-PnPTenantSite", - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" + "Id": 1164 }, { - "Id": 1165, "Rank": 1, + "Command": "Remove-PnPTenantSyncClientRestriction", "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Command": "Remove-PnPTenantSyncClientRestriction" + "Id": 1165 }, { - "Id": 1166, "Rank": 1, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "CommandName": "Remove-PnPTenantTheme", - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Id": 1166 }, { - "Id": 1167, "Rank": 1, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "CommandName": "Remove-PnPTerm", - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Id": 1167 }, { - "Id": 1168, "Rank": 2, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Remove-PnPTerm", - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Id": 1168 }, { - "Id": 1169, "Rank": 1, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "CommandName": "Remove-PnPTermGroup", - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Id": 1169 }, { - "Id": 1170, "Rank": 2, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "CommandName": "Remove-PnPTermGroup", - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" + "Id": 1170 }, { - "Id": 1171, "Rank": 3, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "CommandName": "Remove-PnPTermGroup", - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" + "Id": 1171 }, { - "Id": 1172, "Rank": 1, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "CommandName": "Remove-PnPTermLabel", - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" + "Id": 1172 }, { - "Id": 1173, "Rank": 2, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Remove-PnPTermLabel", - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Id": 1173 }, { - "Id": 1174, "Rank": 1, + "Command": "Remove-PnPUser -Identity 23", "CommandName": "Remove-PnPUser", - "Command": "Remove-PnPUser -Identity 23" + "Id": 1174 }, { - "Id": 1175, "Rank": 2, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "CommandName": "Remove-PnPUser", - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" + "Id": 1175 }, { - "Id": 1176, "Rank": 3, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "CommandName": "Remove-PnPUser", - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" + "Id": 1176 }, { - "Id": 1177, "Rank": 1, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "CommandName": "Remove-PnPUserInfo", - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" + "Id": 1177 }, { - "Id": 1178, "Rank": 1, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "CommandName": "Remove-PnPUserProfile", - "Command": "Remove-PnPUserProfile -LoginName user@domain.com" + "Id": 1178 }, { - "Id": 1179, "Rank": 1, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "CommandName": "Remove-PnPView", - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" + "Id": 1179 }, { - "Id": 1180, "Rank": 1, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Id": 1180 }, { - "Id": 1181, "Rank": 1, + "Command": "Remove-PnPWeb -Identity projectA", "CommandName": "Remove-PnPWeb", - "Command": "Remove-PnPWeb -Identity projectA" + "Id": 1181 }, { - "Id": 1182, "Rank": 2, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "CommandName": "Remove-PnPWeb", - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" + "Id": 1182 }, { - "Id": 1183, "Rank": 1, + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "CommandName": "Remove-PnPWebhookSubscription", - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" + "Id": 1183 }, { - "Id": 1184, "Rank": 1, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Remove-PnPWebPart", - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Id": 1184 }, { - "Id": 1185, "Rank": 2, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "CommandName": "Remove-PnPWebPart", - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" + "Id": 1185 }, { - "Id": 1186, "Rank": 1, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "CommandName": "Remove-PnPWikiPage", - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" + "Id": 1186 }, { - "Id": 1187, "Rank": 1, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "CommandName": "Rename-PnPFile", - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" + "Id": 1187 }, { - "Id": 1188, "Rank": 2, + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "CommandName": "Rename-PnPFile", - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" + "Id": 1188 }, { - "Id": 1189, "Rank": 3, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "CommandName": "Rename-PnPFile", - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" + "Id": 1189 }, { - "Id": 1190, "Rank": 1, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "CommandName": "Rename-PnPFolder", - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" + "Id": 1190 }, { - "Id": 1191, "Rank": 1, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Repair-PnPSite", - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Id": 1191 }, { - "Id": 1192, "Rank": 2, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "CommandName": "Repair-PnPSite", - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "Id": 1192 }, { - "Id": 1193, "Rank": 1, + "Command": "Request-PnPAccessToken", "CommandName": "Request-PnPAccessToken", - "Command": "Request-PnPAccessToken" + "Id": 1193 }, { - "Id": 1194, "Rank": 2, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "CommandName": "Request-PnPAccessToken", - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" + "Id": 1194 }, { - "Id": 1195, "Rank": 3, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "CommandName": "Request-PnPAccessToken", - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" + "Id": 1195 }, { - "Id": 1196, "Rank": 4, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "CommandName": "Request-PnPAccessToken", - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" + "Id": 1196 }, { - "Id": 1197, "Rank": 1, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "CommandName": "Request-PnPPersonalSite", - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" + "Id": 1197 }, { - "Id": 1198, "Rank": 2, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "CommandName": "Request-PnPPersonalSite", - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" + "Id": 1198 }, { - "Id": 1199, "Rank": 1, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "CommandName": "Request-PnPReIndexList", - "Command": "Request-PnPReIndexList -Identity \"Demo List\"" + "Id": 1199 }, { - "Id": 1200, "Rank": 1, + "Command": "Request-PnPReIndexWeb", "CommandName": "Request-PnPReIndexWeb", - "Command": "Request-PnPReIndexWeb" + "Id": 1200 }, { - "Id": 1201, "Rank": 1, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" + "Id": 1201 }, { - "Id": 1202, "Rank": 2, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" + "Id": 1202 }, { - "Id": 1203, "Rank": 3, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" + "Id": 1203 }, { - "Id": 1204, "Rank": 1, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "CommandName": "Reset-PnPFileVersion", - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" + "Id": 1204 }, { - "Id": 1205, "Rank": 2, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "CommandName": "Reset-PnPFileVersion", - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" + "Id": 1205 }, { - "Id": 1206, "Rank": 1, + "Command": "Reset-PnPLabel -List \"Demo List\"", "CommandName": "Reset-PnPLabel", - "Command": "Reset-PnPLabel -List \"Demo List\"" + "Id": 1206 }, { - "Id": 1207, "Rank": 2, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "CommandName": "Reset-PnPLabel", - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" + "Id": 1207 }, { - "Id": 1208, "Rank": 1, + "Command": "Reset-PnPMicrosoft365GroupExpiration", "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Command": "Reset-PnPMicrosoft365GroupExpiration" + "Id": 1208 }, { - "Id": 1209, "Rank": 1, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" + "Id": 1209 }, { - "Id": 1210, "Rank": 1, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "CommandName": "Resolve-PnPFolder", - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" + "Id": 1210 }, { - "Id": 1211, "Rank": 1, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Id": 1211 }, { - "Id": 1212, "Rank": 1, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "CommandName": "Restore-PnPFileVersion", - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Id": 1212 }, { - "Id": 1213, "Rank": 2, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "CommandName": "Restore-PnPFileVersion", - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" + "Id": 1213 }, { - "Id": 1214, "Rank": 3, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "CommandName": "Restore-PnPFileVersion", - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Id": 1214 }, { - "Id": 1215, "Rank": 1, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "CommandName": "Restore-PnPListItemVersion", - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Id": 1215 }, { - "Id": 1216, "Rank": 2, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "CommandName": "Restore-PnPListItemVersion", - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Id": 1216 }, { - "Id": 1217, "Rank": 1, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "CommandName": "Restore-PnPRecycleBinItem", - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Id": 1217 }, { - "Id": 1218, "Rank": 1, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Restore-PnPTenantRecycleBinItem", - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Id": 1218 }, { - "Id": 1219, "Rank": 2, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "CommandName": "Restore-PnPTenantRecycleBinItem", - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Id": 1219 }, { - "Id": 1220, "Rank": 1, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Restore-PnPTenantSite", - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Id": 1220 }, { - "Id": 1221, "Rank": 2, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "CommandName": "Restore-PnPTenantSite", - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Id": 1221 }, { - "Id": 1222, "Rank": 3, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "CommandName": "Restore-PnPTenantSite", - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" + "Id": 1222 }, { - "Id": 1223, "Rank": 1, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" + "Id": 1223 }, { - "Id": 1224, "Rank": 1, + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Revoke-PnPHubSiteRights", - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Id": 1224 }, { - "Id": 1225, "Rank": 1, + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Revoke-PnPSiteDesignRights", - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Id": 1225 }, { - "Id": 1226, "Rank": 1, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Id": 1226 }, { - "Id": 1227, "Rank": 1, + "Command": "Revoke-PnPUserSession -User user1@contoso.com", "CommandName": "Revoke-PnPUserSession", - "Command": "Revoke-PnPUserSession -User user1@contoso.com" + "Id": 1227 }, { - "Id": 1228, "Rank": 1, + "Command": "Save-PnPPageConversionLog", "CommandName": "Save-PnPPageConversionLog", - "Command": "Save-PnPPageConversionLog" + "Id": 1228 }, { - "Id": 1229, "Rank": 1, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "CommandName": "Save-PnPSiteTemplate", - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" + "Id": 1229 }, { - "Id": 1230, "Rank": 1, + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "CommandName": "Save-PnPTenantTemplate", - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" + "Id": 1230 }, { - "Id": 1231, "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", - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" + "Id": 1231 }, { - "Id": 1232, "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", - "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": 1232 }, { - "Id": 1233, "Rank": 3, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "CommandName": "Send-PnPMail", - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" + "Id": 1233 }, { - "Id": 1234, "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", - "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": 1234 }, { - "Id": 1235, "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", - "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": 1235 }, { - "Id": 1236, "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", - "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": 1236 }, { - "Id": 1237, "Rank": 1, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "CommandName": "Set-PnPAdaptiveScopeProperty", - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" + "Id": 1237 }, { - "Id": 1238, "Rank": 1, + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Set-PnPApplicationCustomizer", - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Id": 1238 }, { - "Id": 1239, "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", - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" + "Id": 1239 }, { - "Id": 1240, "Rank": 1, + "Command": "Set-PnPAppSideLoading -On", "CommandName": "Set-PnPAppSideLoading", - "Command": "Set-PnPAppSideLoading -On" + "Id": 1240 }, { - "Id": 1241, "Rank": 2, + "Command": "Set-PnPAppSideLoading -Off", "CommandName": "Set-PnPAppSideLoading", - "Command": "Set-PnPAppSideLoading -Off" + "Id": 1241 }, { - "Id": 1242, "Rank": 1, + "Command": "Set-PnPAuditing -EnableAll", "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -EnableAll" + "Id": 1242 }, { - "Id": 1243, "Rank": 2, + "Command": "Set-PnPAuditing -DisableAll", "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -DisableAll" + "Id": 1243 }, { - "Id": 1244, "Rank": 3, + "Command": "Set-PnPAuditing -RetentionTime 7", "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -RetentionTime 7" + "Id": 1244 }, { - "Id": 1245, "Rank": 4, + "Command": "Set-PnPAuditing -TrimAuditLog", "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -TrimAuditLog" + "Id": 1245 }, { - "Id": 1246, "Rank": 5, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" + "Id": 1246 }, { - "Id": 1247, "Rank": 1, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "CommandName": "Set-PnPAvailablePageLayouts", - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" + "Id": 1247 }, { - "Id": 1248, "Rank": 1, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "CommandName": "Set-PnPAzureADAppSitePermission", - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" + "Id": 1248 }, { - "Id": 1249, "Rank": 2, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "CommandName": "Set-PnPAzureADAppSitePermission", - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" + "Id": 1249 }, { - "Id": 1250, "Rank": 1, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPAzureADGroup", - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" + "Id": 1250 }, { - "Id": 1251, "Rank": 2, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPAzureADGroup", - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Id": 1251 }, { - "Id": 1252, "Rank": 3, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "CommandName": "Set-PnPAzureADGroup", - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" + "Id": 1252 }, { - "Id": 1253, "Rank": 1, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "CommandName": "Set-PnPBrowserIdleSignout", - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" + "Id": 1253 }, { - "Id": 1254, "Rank": 2, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "CommandName": "Set-PnPBrowserIdleSignout", - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" + "Id": 1254 }, { - "Id": 1255, "Rank": 3, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "CommandName": "Set-PnPBrowserIdleSignout", - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" + "Id": 1255 }, { - "Id": 1256, "Rank": 1, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" + "Id": 1256 }, { - "Id": 1257, "Rank": 2, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" + "Id": 1257 }, { - "Id": 1258, "Rank": 1, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" + "Id": 1258 }, { - "Id": 1259, "Rank": 2, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" + "Id": 1259 }, { - "Id": 1260, "Rank": 3, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" + "Id": 1260 }, { - "Id": 1261, "Rank": 4, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" + "Id": 1261 }, { - "Id": 1262, "Rank": 1, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "CommandName": "Set-PnPContentType", - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "Id": 1262 }, { - "Id": 1263, "Rank": 2, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "CommandName": "Set-PnPContentType", - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" + "Id": 1263 }, { - "Id": 1264, "Rank": 3, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "CommandName": "Set-PnPContentType", - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "Id": 1264 }, { - "Id": 1265, "Rank": 4, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "CommandName": "Set-PnPContentType", - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "Id": 1265 }, { - "Id": 1266, "Rank": 5, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "CommandName": "Set-PnPContentType", - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "Id": 1266 }, { - "Id": 1267, "Rank": 1, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "CommandName": "Set-PnPDefaultColumnValues", - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" + "Id": 1267 }, { - "Id": 1268, "Rank": 2, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "CommandName": "Set-PnPDefaultColumnValues", - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" + "Id": 1268 }, { - "Id": 1269, "Rank": 3, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "CommandName": "Set-PnPDefaultColumnValues", - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" + "Id": 1269 }, { - "Id": 1270, "Rank": 4, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "CommandName": "Set-PnPDefaultColumnValues", - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" + "Id": 1270 }, { - "Id": 1271, "Rank": 1, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "CommandName": "Set-PnPDefaultContentTypeToList", - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" + "Id": 1271 }, { - "Id": 1272, "Rank": 1, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "CommandName": "Set-PnPDefaultPageLayout", - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" + "Id": 1272 }, { - "Id": 1273, "Rank": 2, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "CommandName": "Set-PnPDefaultPageLayout", - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" + "Id": 1273 }, { - "Id": 1274, "Rank": 3, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "CommandName": "Set-PnPDefaultPageLayout", - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" + "Id": 1274 }, { - "Id": 1275, "Rank": 1, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "CommandName": "Set-PnPDisableSpacesActivation", - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" + "Id": 1275 }, { - "Id": 1276, "Rank": 2, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "CommandName": "Set-PnPDisableSpacesActivation", - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Id": 1276 }, { - "Id": 1277, "Rank": 3, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "CommandName": "Set-PnPDisableSpacesActivation", - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Id": 1277 }, { - "Id": 1278, "Rank": 1, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "CommandName": "Set-PnPDocumentSetField", - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" + "Id": 1278 }, { - "Id": 1279, "Rank": 2, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "CommandName": "Set-PnPDocumentSetField", - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" + "Id": 1279 }, { - "Id": 1280, "Rank": 1, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "CommandName": "Set-PnPField", - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" + "Id": 1280 }, { - "Id": 1281, "Rank": 2, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "CommandName": "Set-PnPField", - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" + "Id": 1281 }, { - "Id": 1282, "Rank": 3, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "CommandName": "Set-PnPField", - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" + "Id": 1282 }, { - "Id": 1283, "Rank": 1, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "CommandName": "Set-PnPFileCheckedIn", - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" + "Id": 1283 }, { - "Id": 1284, "Rank": 2, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "CommandName": "Set-PnPFileCheckedIn", - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" + "Id": 1284 }, { - "Id": 1285, "Rank": 1, + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "CommandName": "Set-PnPFileCheckedOut", - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" + "Id": 1285 }, { - "Id": 1286, "Rank": 1, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPFolderPermission", - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" + "Id": 1286 }, { - "Id": 1287, "Rank": 2, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPFolderPermission", - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Id": 1287 }, { - "Id": 1288, "Rank": 3, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "CommandName": "Set-PnPFolderPermission", - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "Id": 1288 }, { - "Id": 1289, "Rank": 1, + "Command": "Set-PnPFooter -Enabled:$true", "CommandName": "Set-PnPFooter", - "Command": "Set-PnPFooter -Enabled:$true" + "Id": 1289 }, { - "Id": 1290, "Rank": 2, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "CommandName": "Set-PnPFooter", - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" + "Id": 1290 }, { - "Id": 1291, "Rank": 3, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "CommandName": "Set-PnPFooter", - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" + "Id": 1291 }, { - "Id": 1292, "Rank": 4, + "Command": "Set-PnPFooter -LogoUrl \"\"", "CommandName": "Set-PnPFooter", - "Command": "Set-PnPFooter -LogoUrl \"\"" + "Id": 1292 }, { - "Id": 1293, "Rank": 1, + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "CommandName": "Set-PnPGraphSubscription", - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" + "Id": 1293 }, { - "Id": 1294, "Rank": 1, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "CommandName": "Set-PnPGroup", - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" + "Id": 1294 }, { - "Id": 1295, "Rank": 2, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "CommandName": "Set-PnPGroup", - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" + "Id": 1295 }, { - "Id": 1296, "Rank": 1, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" + "Id": 1296 }, { - "Id": 1297, "Rank": 2, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" + "Id": 1297 }, { - "Id": 1298, "Rank": 3, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" + "Id": 1298 }, { - "Id": 1299, "Rank": 4, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" + "Id": 1299 }, { - "Id": 1300, "Rank": 5, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" + "Id": 1300 }, { - "Id": 1301, "Rank": 1, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "CommandName": "Set-PnPHideDefaultThemes", - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" + "Id": 1301 }, { - "Id": 1302, "Rank": 2, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "CommandName": "Set-PnPHideDefaultThemes", - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" + "Id": 1302 }, { - "Id": 1303, "Rank": 1, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "CommandName": "Set-PnPHomePage", - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" + "Id": 1303 }, { - "Id": 1304, "Rank": 2, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "CommandName": "Set-PnPHomePage", - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" + "Id": 1304 }, { - "Id": 1305, "Rank": 1, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "CommandName": "Set-PnPHomeSite", - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" + "Id": 1305 }, { - "Id": 1306, "Rank": 2, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "CommandName": "Set-PnPHomeSite", - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" + "Id": 1306 }, { - "Id": 1307, "Rank": 1, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "CommandName": "Set-PnPHubSite", - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" + "Id": 1307 }, { - "Id": 1308, "Rank": 2, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "CommandName": "Set-PnPHubSite", - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" + "Id": 1308 }, { - "Id": 1309, "Rank": 3, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "CommandName": "Set-PnPHubSite", - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" + "Id": 1309 }, { - "Id": 1310, "Rank": 4, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "CommandName": "Set-PnPHubSite", - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" + "Id": 1310 }, { - "Id": 1311, "Rank": 5, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "CommandName": "Set-PnPHubSite", - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" + "Id": 1311 }, { - "Id": 1312, "Rank": 6, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "CommandName": "Set-PnPHubSite", - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" + "Id": 1312 }, { - "Id": 1313, "Rank": 1, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "CommandName": "Set-PnPImageListItemColumn", - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" + "Id": 1313 }, { - "Id": 1314, "Rank": 2, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "CommandName": "Set-PnPImageListItemColumn", - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" + "Id": 1314 }, { - "Id": 1315, "Rank": 1, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "CommandName": "Set-PnPIndexedProperties", - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" + "Id": 1315 }, { - "Id": 1316, "Rank": 1, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "CommandName": "Set-PnPInPlaceRecordsManagement", - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" + "Id": 1316 }, { - "Id": 1317, "Rank": 2, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "CommandName": "Set-PnPInPlaceRecordsManagement", - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" + "Id": 1317 }, { - "Id": 1318, "Rank": 1, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "CommandName": "Set-PnPKnowledgeHubSite", - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" + "Id": 1318 }, { - "Id": 1319, "Rank": 1, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "CommandName": "Set-PnPLabel", - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" + "Id": 1319 }, { - "Id": 1320, "Rank": 2, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "CommandName": "Set-PnPLabel", - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" + "Id": 1320 }, { - "Id": 1321, "Rank": 1, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" + "Id": 1321 }, { - "Id": 1322, "Rank": 2, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" + "Id": 1322 }, { - "Id": 1323, "Rank": 3, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" + "Id": 1323 }, { - "Id": 1324, "Rank": 4, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" + "Id": 1324 }, { - "Id": 1325, "Rank": 5, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" + "Id": 1325 }, { - "Id": 1326, "Rank": 6, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" + "Id": 1326 }, { - "Id": 1327, "Rank": 7, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" + "Id": 1327 }, { - "Id": 1328, "Rank": 8, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" + "Id": 1328 }, { - "Id": 1329, "Rank": 9, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" + "Id": 1329 }, { - "Id": 1330, "Rank": 10, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" + "Id": 1330 }, { - "Id": 1331, "Rank": 11, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" + "Id": 1331 }, { - "Id": 1332, "Rank": 1, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "CommandName": "Set-PnPListInformationRightsManagement", - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" + "Id": 1332 }, { - "Id": 1333, "Rank": 2, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "CommandName": "Set-PnPListInformationRightsManagement", - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" + "Id": 1333 }, { - "Id": 1334, "Rank": 1, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Id": 1334 }, { - "Id": 1335, "Rank": 2, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Id": 1335 }, { - "Id": 1336, "Rank": 3, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Id": 1336 }, { - "Id": 1337, "Rank": 4, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "CommandName": "Set-PnPListItem", - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" + "Id": 1337 }, { - "Id": 1338, "Rank": 5, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "CommandName": "Set-PnPListItem", - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" + "Id": 1338 }, { - "Id": 1339, "Rank": 1, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "CommandName": "Set-PnPListItemAsRecord", - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Id": 1339 }, { - "Id": 1340, "Rank": 2, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "CommandName": "Set-PnPListItemAsRecord", - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" + "Id": 1340 }, { - "Id": 1341, "Rank": 1, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPListItemPermission", - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" + "Id": 1341 }, { - "Id": 1342, "Rank": 2, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPListItemPermission", - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Id": 1342 }, { - "Id": 1343, "Rank": 3, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "CommandName": "Set-PnPListItemPermission", - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "Id": 1343 }, { - "Id": 1344, "Rank": 4, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "CommandName": "Set-PnPListItemPermission", - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" + "Id": 1344 }, { - "Id": 1345, "Rank": 5, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "CommandName": "Set-PnPListItemPermission", - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" + "Id": 1345 }, { - "Id": 1346, "Rank": 1, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPListPermission", - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" + "Id": 1346 }, { - "Id": 1347, "Rank": 2, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPListPermission", - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Id": 1347 }, { - "Id": 1348, "Rank": 1, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "CommandName": "Set-PnPListRecordDeclaration", - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" + "Id": 1348 }, { - "Id": 1349, "Rank": 2, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "CommandName": "Set-PnPListRecordDeclaration", - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" + "Id": 1349 }, { - "Id": 1350, "Rank": 1, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "Id": 1350 }, { - "Id": 1351, "Rank": 2, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "Id": 1351 }, { - "Id": 1352, "Rank": 3, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "Id": 1352 }, { - "Id": 1353, "Rank": 4, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "Id": 1353 }, { - "Id": 1354, "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" + "Id": 1354 }, { - "Id": 1355, "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" + "Id": 1355 }, { - "Id": 1356, "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsArchived" + "Id": 1356 }, { - "Id": 1357, "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" + "Id": 1357 }, { - "Id": 1358, "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" + "Id": 1358 }, { - "Id": 1359, "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Id": 1359 }, { - "Id": 1360, "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" + "Id": 1360 }, { - "Id": 1361, "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" + "Id": 1361 }, { - "Id": 1362, "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Id": 1362 }, { - "Id": 1363, "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" + "Id": 1363 }, { - "Id": 1364, "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" + "Id": 1364 }, { - "Id": 1365, "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Id": 1365 }, { - "Id": 1366, "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" + "Id": 1366 }, { - "Id": 1367, "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" + "Id": 1367 }, { - "Id": 1368, "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsRead", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Command": "Set-PnPMessageCenterAnnouncementAsRead" + "Id": 1368 }, { - "Id": 1369, "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" + "Id": 1369 }, { - "Id": 1370, "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" + "Id": 1370 }, { - "Id": 1371, "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Command": "Set-PnPMessageCenterAnnouncementAsUnread" + "Id": 1371 }, { - "Id": 1372, "Rank": 1, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" + "Id": 1372 }, { - "Id": 1373, "Rank": 2, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Id": 1373 }, { - "Id": 1374, "Rank": 3, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" + "Id": 1374 }, { - "Id": 1375, "Rank": 4, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" + "Id": 1375 }, { - "Id": 1376, "Rank": 5, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" + "Id": 1376 }, { - "Id": 1377, "Rank": 6, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "Id": 1377 }, { - "Id": 1378, "Rank": 1, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" + "Id": 1378 }, { - "Id": 1379, "Rank": 2, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" + "Id": 1379 }, { - "Id": 1380, "Rank": 1, + "Command": "Set-PnPMinimalDownloadStrategy -Off", "CommandName": "Set-PnPMinimalDownloadStrategy", - "Command": "Set-PnPMinimalDownloadStrategy -Off" + "Id": 1380 }, { - "Id": 1381, "Rank": 2, + "Command": "Set-PnPMinimalDownloadStrategy -On", "CommandName": "Set-PnPMinimalDownloadStrategy", - "Command": "Set-PnPMinimalDownloadStrategy -On" + "Id": 1381 }, { - "Id": 1382, "Rank": 1, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" + "Id": 1382 }, { - "Id": 1383, "Rank": 2, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" + "Id": 1383 }, { - "Id": 1384, "Rank": 3, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" + "Id": 1384 }, { - "Id": 1385, "Rank": 4, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" + "Id": 1385 }, { - "Id": 1386, "Rank": 5, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" + "Id": 1386 }, { - "Id": 1387, "Rank": 6, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" + "Id": 1387 }, { - "Id": 1388, "Rank": 7, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" + "Id": 1388 }, { - "Id": 1389, "Rank": 8, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" + "Id": 1389 }, { - "Id": 1390, "Rank": 9, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" + "Id": 1390 }, { - "Id": 1391, "Rank": 10, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" + "Id": 1391 }, { - "Id": 1392, "Rank": 11, + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" + "Id": 1392 }, { - "Id": 1393, "Rank": 1, + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "CommandName": "Set-PnPPageTextPart", - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" + "Id": 1393 }, { - "Id": 1394, "Rank": 1, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "CommandName": "Set-PnPPageWebPart", - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" + "Id": 1394 }, { - "Id": 1395, "Rank": 2, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "CommandName": "Set-PnPPageWebPart", - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" + "Id": 1395 }, { - "Id": 1396, "Rank": 1, + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "CommandName": "Set-PnPPlannerBucket", - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" + "Id": 1396 }, { - "Id": 1397, "Rank": 1, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "CommandName": "Set-PnPPlannerConfiguration", - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" + "Id": 1397 }, { - "Id": 1398, "Rank": 2, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "CommandName": "Set-PnPPlannerConfiguration", - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" + "Id": 1398 }, { - "Id": 1399, "Rank": 1, + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "CommandName": "Set-PnPPlannerPlan", - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" + "Id": 1399 }, { - "Id": 1400, "Rank": 1, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "CommandName": "Set-PnPPlannerTask", - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" + "Id": 1400 }, { - "Id": 1401, "Rank": 2, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "CommandName": "Set-PnPPlannerTask", - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" + "Id": 1401 }, { - "Id": 1402, "Rank": 3, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "CommandName": "Set-PnPPlannerTask", - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" + "Id": 1402 }, { - "Id": 1403, "Rank": 1, + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPPlannerUserPolicy", - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Id": 1403 }, { - "Id": 1404, "Rank": 1, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "CommandName": "Set-PnPPropertyBagValue", - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" + "Id": 1404 }, { - "Id": 1405, "Rank": 2, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "CommandName": "Set-PnPPropertyBagValue", - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" + "Id": 1405 }, { - "Id": 1406, "Rank": 3, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "CommandName": "Set-PnPPropertyBagValue", - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" + "Id": 1406 }, { - "Id": 1407, "Rank": 1, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "CommandName": "Set-PnPRequestAccessEmails", - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" + "Id": 1407 }, { - "Id": 1408, "Rank": 2, + "Command": "Set-PnPRequestAccessEmails -Disabled", "CommandName": "Set-PnPRequestAccessEmails", - "Command": "Set-PnPRequestAccessEmails -Disabled" + "Id": 1408 }, { - "Id": 1409, "Rank": 3, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "CommandName": "Set-PnPRequestAccessEmails", - "Command": "Set-PnPRequestAccessEmails -Disabled:$false" + "Id": 1409 }, { - "Id": 1410, "Rank": 1, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "CommandName": "Set-PnPRoleDefinition", - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" + "Id": 1410 }, { - "Id": 1411, "Rank": 2, + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "CommandName": "Set-PnPRoleDefinition", - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" + "Id": 1411 }, { - "Id": 1412, "Rank": 3, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "CommandName": "Set-PnPRoleDefinition", - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" + "Id": 1412 }, { - "Id": 1413, "Rank": 4, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "CommandName": "Set-PnPRoleDefinition", - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" + "Id": 1413 }, { - "Id": 1414, "Rank": 1, + "Command": "Set-PnPSearchConfiguration -Configuration $config", "CommandName": "Set-PnPSearchConfiguration", - "Command": "Set-PnPSearchConfiguration -Configuration $config" + "Id": 1414 }, { - "Id": 1415, "Rank": 2, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "CommandName": "Set-PnPSearchConfiguration", - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" + "Id": 1415 }, { - "Id": 1416, "Rank": 3, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "CommandName": "Set-PnPSearchConfiguration", - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Id": 1416 }, { - "Id": 1417, "Rank": 4, + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Set-PnPSearchConfiguration", - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Id": 1417 }, { - "Id": 1418, "Rank": 1, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" + "Id": 1418 }, { - "Id": 1419, "Rank": 2, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" + "Id": 1419 }, { - "Id": 1420, "Rank": 3, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" + "Id": 1420 }, { - "Id": 1421, "Rank": 4, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" + "Id": 1421 }, { - "Id": 1422, "Rank": 5, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" + "Id": 1422 }, { - "Id": 1423, "Rank": 6, + "Command": "Set-PnPSearchSettings -SearchScope Tenant", "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchScope Tenant" + "Id": 1423 }, { - "Id": 1424, "Rank": 7, + "Command": "Set-PnPSearchSettings -SearchScope Hub", "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchScope Hub" + "Id": 1424 }, { - "Id": 1425, "Rank": 1, + "Command": "Set-PnPSite -Classification \"HBI\"", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -Classification \"HBI\"" + "Id": 1425 }, { - "Id": 1426, "Rank": 2, + "Command": "Set-PnPSite -Classification $null", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -Classification $null" + "Id": 1426 }, { - "Id": 1427, "Rank": 3, + "Command": "Set-PnPSite -DisableFlows", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -DisableFlows" + "Id": 1427 }, { - "Id": 1428, "Rank": 4, + "Command": "Set-PnPSite -DisableFlows:$false", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -DisableFlows:$false" + "Id": 1428 }, { - "Id": 1429, "Rank": 5, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" + "Id": 1429 }, { - "Id": 1430, "Rank": 6, + "Command": "Set-PnPSite -NoScriptSite $false", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -NoScriptSite $false" + "Id": 1430 }, { - "Id": 1431, "Rank": 7, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" + "Id": 1431 }, { - "Id": 1432, "Rank": 8, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" + "Id": 1432 }, { - "Id": 1433, "Rank": 9, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" + "Id": 1433 }, { - "Id": 1434, "Rank": 10, + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" + "Id": 1434 }, { - "Id": 1435, "Rank": 11, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" + "Id": 1435 }, { - "Id": 1436, "Rank": 12, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" + "Id": 1436 }, { - "Id": 1437, "Rank": 13, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" + "Id": 1437 }, { - "Id": 1438, "Rank": 14, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" + "Id": 1438 }, { - "Id": 1439, "Rank": 15, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" + "Id": 1439 }, { - "Id": 1440, "Rank": 16, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" + "Id": 1440 }, { - "Id": 1441, "Rank": 17, + "Command": "Set-PnPSite -CancelVPForExistingLibs", "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -CancelVPForExistingLibs" + "Id": 1441 }, { - "Id": 1442, "Rank": 1, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "CommandName": "Set-PnPSiteClassification", - "Command": "Set-PnPSiteClassification -Identity \"LBI\"" + "Id": 1442 }, { - "Id": 1443, "Rank": 1, + "Command": "Set-PnPSiteClosure -State Open", "CommandName": "Set-PnPSiteClosure", - "Command": "Set-PnPSiteClosure -State Open" + "Id": 1443 }, { - "Id": 1444, "Rank": 2, + "Command": "Set-PnPSiteClosure -State Closed", "CommandName": "Set-PnPSiteClosure", - "Command": "Set-PnPSiteClosure -State Closed" + "Id": 1444 }, { - "Id": 1445, "Rank": 1, + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "CommandName": "Set-PnPSiteDesign", - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" + "Id": 1445 }, { - "Id": 1446, "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", - "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": 1446 }, { - "Id": 1447, "Rank": 1, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "CommandName": "Set-PnPSiteGroup", - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" + "Id": 1447 }, { - "Id": 1448, "Rank": 2, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "CommandName": "Set-PnPSiteGroup", - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" + "Id": 1448 }, { - "Id": 1449, "Rank": 1, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "CommandName": "Set-PnPSitePolicy", - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" + "Id": 1449 }, { - "Id": 1450, "Rank": 1, + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "CommandName": "Set-PnPSiteScript", - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "Id": 1450 }, { - "Id": 1451, "Rank": 1, + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "CommandName": "Set-PnPSiteScriptPackage", - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "Id": 1451 }, { - "Id": 1452, "Rank": 1, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "CommandName": "Set-PnPSiteSensitivityLabel", - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" + "Id": 1452 }, { - "Id": 1453, "Rank": 2, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "CommandName": "Set-PnPSiteSensitivityLabel", - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" + "Id": 1453 }, { - "Id": 1454, "Rank": 1, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" + "Id": 1454 }, { - "Id": 1455, "Rank": 2, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" + "Id": 1455 }, { - "Id": 1456, "Rank": 3, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "Id": 1456 }, { - "Id": 1457, "Rank": 4, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "Id": 1457 }, { - "Id": 1458, "Rank": 5, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "Id": 1458 }, { - "Id": 1459, "Rank": 6, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "Id": 1459 }, { - "Id": 1460, "Rank": 1, + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "CommandName": "Set-PnPStorageEntity", - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "Id": 1460 }, { - "Id": 1461, "Rank": 2, + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "CommandName": "Set-PnPStorageEntity", - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "Id": 1461 }, { - "Id": 1462, "Rank": 1, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Id": 1462 }, { - "Id": 1463, "Rank": 2, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Id": 1463 }, { - "Id": 1464, "Rank": 1, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Id": 1464 }, { - "Id": 1465, "Rank": 2, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Id": 1465 }, { - "Id": 1466, "Rank": 1, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" + "Id": 1466 }, { - "Id": 1467, "Rank": 2, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" + "Id": 1467 }, { - "Id": 1468, "Rank": 1, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "CommandName": "Set-PnPTaxonomyFieldValue", - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" + "Id": 1468 }, { - "Id": 1469, "Rank": 2, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "CommandName": "Set-PnPTaxonomyFieldValue", - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" + "Id": 1469 }, { - "Id": 1470, "Rank": 3, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "CommandName": "Set-PnPTaxonomyFieldValue", - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" + "Id": 1470 }, { - "Id": 1471, "Rank": 1, + "Command": "Set-PnPTeamifyPromptHidden", "CommandName": "Set-PnPTeamifyPromptHidden", - "Command": "Set-PnPTeamifyPromptHidden" + "Id": 1471 }, { - "Id": 1472, "Rank": 1, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "CommandName": "Set-PnPTeamsChannel", - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" + "Id": 1472 }, { - "Id": 1473, "Rank": 2, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "CommandName": "Set-PnPTeamsChannel", - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" + "Id": 1473 }, { - "Id": 1474, "Rank": 1, + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "CommandName": "Set-PnpTeamsChannelUser", - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" + "Id": 1474 }, { - "Id": 1475, "Rank": 2, + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "CommandName": "Set-PnpTeamsChannelUser", - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" + "Id": 1475 }, { - "Id": 1476, "Rank": 1, + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "CommandName": "Set-PnPTeamsTab", - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" + "Id": 1476 }, { - "Id": 1477, "Rank": 1, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "CommandName": "Set-PnPTeamsTag", - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" + "Id": 1477 }, { - "Id": 1478, "Rank": 1, + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "CommandName": "Set-PnPTeamsTeam", - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" + "Id": 1478 }, { - "Id": 1479, "Rank": 2, + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "CommandName": "Set-PnPTeamsTeam", - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" + "Id": 1479 }, { - "Id": 1480, "Rank": 3, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "CommandName": "Set-PnPTeamsTeam", - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" + "Id": 1480 }, { - "Id": 1481, "Rank": 4, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "CommandName": "Set-PnPTeamsTeam", - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" + "Id": 1481 }, { - "Id": 1482, "Rank": 1, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" + "Id": 1482 }, { - "Id": 1483, "Rank": 2, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" + "Id": 1483 }, { - "Id": 1484, "Rank": 3, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" + "Id": 1484 }, { - "Id": 1485, "Rank": 1, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "CommandName": "Set-PnPTeamsTeamPicture", - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" + "Id": 1485 }, { - "Id": 1486, "Rank": 1, + "Command": "Set-PnPTemporarilyDisableAppBar $true", "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Command": "Set-PnPTemporarilyDisableAppBar $true" + "Id": 1486 }, { - "Id": 1487, "Rank": 2, + "Command": "Set-PnPTemporarilyDisableAppBar $false", "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Command": "Set-PnPTemporarilyDisableAppBar $false" + "Id": 1487 }, { - "Id": 1488, "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", - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" + "Id": 1488 }, { - "Id": 1489, "Rank": 2, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "CommandName": "Set-PnPTenant", - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" + "Id": 1489 }, { - "Id": 1490, "Rank": 3, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "CommandName": "Set-PnPTenant", - "Command": "Set-PnPTenant -ShowAllUsersClaim $false" + "Id": 1490 }, { - "Id": 1491, "Rank": 4, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "CommandName": "Set-PnPTenant", - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" + "Id": 1491 }, { - "Id": 1492, "Rank": 1, + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "CommandName": "Set-PnPTenantAppCatalogUrl", - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" + "Id": 1492 }, { - "Id": 1493, "Rank": 1, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "CommandName": "Set-PnPTenantCdnEnabled", - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" + "Id": 1493 }, { - "Id": 1494, "Rank": 2, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "CommandName": "Set-PnPTenantCdnEnabled", - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" + "Id": 1494 }, { - "Id": 1495, "Rank": 3, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "CommandName": "Set-PnPTenantCdnEnabled", - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" + "Id": 1495 }, { - "Id": 1496, "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", - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" + "Id": 1496 }, { - "Id": 1497, "Rank": 2, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "CommandName": "Set-PnPTenantCdnPolicy", - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" + "Id": 1497 }, { - "Id": 1498, "Rank": 1, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "CommandName": "Set-PnPTenantSite", - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" + "Id": 1498 }, { - "Id": 1499, "Rank": 2, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "CommandName": "Set-PnPTenantSite", - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" + "Id": 1499 }, { - "Id": 1500, "Rank": 3, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPTenantSite", - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" + "Id": 1500 }, { - "Id": 1501, "Rank": 4, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Set-PnPTenantSite", - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Id": 1501 }, { - "Id": 1502, "Rank": 5, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "CommandName": "Set-PnPTenantSite", - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" + "Id": 1502 }, { - "Id": 1503, "Rank": 1, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "CommandName": "Set-PnPTenantSyncClientRestriction", - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" + "Id": 1503 }, { - "Id": 1504, "Rank": 2, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "CommandName": "Set-PnPTenantSyncClientRestriction", - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" + "Id": 1504 }, { - "Id": 1505, "Rank": 1, + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "CommandName": "Set-PnPTerm", - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" + "Id": 1505 }, { - "Id": 1506, "Rank": 2, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "Set-PnPTerm", - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Id": 1506 }, { - "Id": 1507, "Rank": 3, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "Set-PnPTerm", - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Id": 1507 }, { - "Id": 1508, "Rank": 4, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "CommandName": "Set-PnPTerm", - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" + "Id": 1508 }, { - "Id": 1509, "Rank": 1, + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "CommandName": "Set-PnPTermGroup", - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" + "Id": 1509 }, { - "Id": 1510, "Rank": 1, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "CommandName": "Set-PnPTermSet", - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" + "Id": 1510 }, { - "Id": 1511, "Rank": 2, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "CommandName": "Set-PnPTermSet", - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" + "Id": 1511 }, { - "Id": 1512, "Rank": 3, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "CommandName": "Set-PnPTermSet", - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" + "Id": 1512 }, { - "Id": 1513, "Rank": 1, + "Command": "Set-PnPTheme", "CommandName": "Set-PnPTheme", - "Command": "Set-PnPTheme" + "Id": 1513 }, { - "Id": 1514, "Rank": 2, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "CommandName": "Set-PnPTheme", - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" + "Id": 1514 }, { - "Id": 1515, "Rank": 3, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "CommandName": "Set-PnPTheme", - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" + "Id": 1515 }, { - "Id": 1516, "Rank": 4, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "CommandName": "Set-PnPTheme", - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" + "Id": 1516 }, { - "Id": 1517, "Rank": 1, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "CommandName": "Set-PnPTraceLog", - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" + "Id": 1517 }, { - "Id": 1518, "Rank": 2, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "CommandName": "Set-PnPTraceLog", - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" + "Id": 1518 }, { - "Id": 1519, "Rank": 3, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "CommandName": "Set-PnPTraceLog", - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" + "Id": 1519 }, { - "Id": 1520, "Rank": 4, + "Command": "Set-PnPTraceLog -Off", "CommandName": "Set-PnPTraceLog", - "Command": "Set-PnPTraceLog -Off" + "Id": 1520 }, { - "Id": 1521, "Rank": 1, + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "CommandName": "Set-PnPUserOneDriveQuota", - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" + "Id": 1521 }, { - "Id": 1522, "Rank": 1, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "CommandName": "Set-PnPUserProfileProperty", - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" + "Id": 1522 }, { - "Id": 1523, "Rank": 2, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "CommandName": "Set-PnPUserProfileProperty", - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" + "Id": 1523 }, { - "Id": 1524, "Rank": 1, + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "CommandName": "Set-PnPView", - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" + "Id": 1524 }, { - "Id": 1525, "Rank": 2, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "CommandName": "Set-PnPView", - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" + "Id": 1525 }, { - "Id": 1526, "Rank": 3, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "CommandName": "Set-PnPView", - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" + "Id": 1526 }, { - "Id": 1527, "Rank": 4, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "CommandName": "Set-PnPView", - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" + "Id": 1527 }, { - "Id": 1528, "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", - "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": 1528 }, { - "Id": 1529, "Rank": 2, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" + "Id": 1529 }, { - "Id": 1530, "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", - "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": 1530 }, { - "Id": 1531, "Rank": 4, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" + "Id": 1531 }, { - "Id": 1532, "Rank": 1, + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "CommandName": "Set-PnPWeb", - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" + "Id": 1532 }, { - "Id": 1533, "Rank": 2, + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "CommandName": "Set-PnPWeb", - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" + "Id": 1533 }, { - "Id": 1534, "Rank": 3, + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "CommandName": "Set-PnPWeb", - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" + "Id": 1534 }, { - "Id": 1535, "Rank": 4, + "Command": "Set-PnPWeb -NoCrawl:$true", "CommandName": "Set-PnPWeb", - "Command": "Set-PnPWeb -NoCrawl:$true" + "Id": 1535 }, { - "Id": 1536, "Rank": 1, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "CommandName": "Set-PnPWebHeader", - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" + "Id": 1536 }, { - "Id": 1537, "Rank": 2, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "CommandName": "Set-PnPWebHeader", - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" + "Id": 1537 }, { - "Id": 1538, "Rank": 3, + "Command": "Set-PnPWebHeader -LogoAlignment Middle", "CommandName": "Set-PnPWebHeader", - "Command": "Set-PnPWebHeader -LogoAlignment Middle" + "Id": 1538 }, { - "Id": 1539, "Rank": 1, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "CommandName": "Set-PnPWebhookSubscription", - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" + "Id": 1539 }, { - "Id": 1540, "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", - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" + "Id": 1540 }, { - "Id": 1541, "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", - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" + "Id": 1541 }, { - "Id": 1542, "Rank": 1, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" + "Id": 1542 }, { - "Id": 1543, "Rank": 2, + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" + "Id": 1543 }, { - "Id": 1544, "Rank": 3, + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" + "Id": 1544 }, { - "Id": 1545, "Rank": 4, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "CommandName": "Set-PnPWebPermission", - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" + "Id": 1545 }, { - "Id": 1546, "Rank": 1, + "Command": "Set-PnPWebTheme -Theme MyTheme", "CommandName": "Set-PnPWebTheme", - "Command": "Set-PnPWebTheme -Theme MyTheme" + "Id": 1546 }, { - "Id": 1547, "Rank": 2, + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "CommandName": "Set-PnPWebTheme", - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" + "Id": 1547 }, { - "Id": 1548, "Rank": 1, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "CommandName": "Set-PnPWikiPageContent", - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" + "Id": 1548 }, { - "Id": 1549, "Rank": 1, + "Command": "Submit-PnPSearchQuery -Query \"finance\"", "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"finance\"" + "Id": 1549 }, { - "Id": 1550, "Rank": 2, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" + "Id": 1550 }, { - "Id": 1551, "Rank": 3, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" + "Id": 1551 }, { - "Id": 1552, "Rank": 4, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" + "Id": 1552 }, { - "Id": 1553, "Rank": 5, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" + "Id": 1553 }, { - "Id": 1554, "Rank": 1, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "CommandName": "Submit-PnPTeamsChannelMessage", - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" + "Id": 1554 }, { - "Id": 1555, "Rank": 2, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "CommandName": "Submit-PnPTeamsChannelMessage", - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" + "Id": 1555 }, { - "Id": 1556, "Rank": 1, + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Sync-PnPAppToTeams", - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Id": 1556 }, { - "Id": 1557, "Rank": 1, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" + "Id": 1557 }, { - "Id": 1558, "Rank": 2, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" + "Id": 1558 }, { - "Id": 1559, "Rank": 3, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" + "Id": 1559 }, { - "Id": 1560, "Rank": 1, + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "CommandName": "Test-PnPListItemIsRecord", - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" + "Id": 1560 }, { - "Id": 1561, "Rank": 1, + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" + "Id": 1561 }, { - "Id": 1562, "Rank": 1, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Test-PnPSite", - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Id": 1562 }, { - "Id": 1563, "Rank": 2, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "CommandName": "Test-PnPSite", - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "Id": 1563 }, { - "Id": 1564, "Rank": 1, + "Command": "Test-PnPTenantTemplate -Template $myTemplate", "CommandName": "Test-PnPTenantTemplate", - "Command": "Test-PnPTenantTemplate -Template $myTemplate" + "Id": 1564 }, { - "Id": 1565, "Rank": 1, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "CommandName": "Undo-PnPFileCheckedOut", - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" + "Id": 1565 }, { - "Id": 1566, "Rank": 1, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Uninstall-PnPApp", - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Id": 1566 }, { - "Id": 1567, "Rank": 2, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Uninstall-PnPApp", - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Id": 1567 }, { - "Id": 1568, "Rank": 1, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Unpublish-PnPApp", - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Id": 1568 }, { - "Id": 1569, "Rank": 2, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Unpublish-PnPApp", - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Id": 1569 }, { - "Id": 1570, "Rank": 1, + "Command": "Unpublish-PnPContentType -ContentType 0x0101", "CommandName": "Unpublish-PnPContentType", - "Command": "Unpublish-PnPContentType -ContentType 0x0101" + "Id": 1570 }, { - "Id": 1571, "Rank": 1, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "CommandName": "Unpublish-PnPSyntexModel", - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "Id": 1571 }, { - "Id": 1572, "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", - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" + "Id": 1572 }, { - "Id": 1573, "Rank": 1, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "CommandName": "Unregister-PnPHubSite", - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Id": 1573 }, { - "Id": 1574, "Rank": 1, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Update-PnPApp", - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Id": 1574 }, { - "Id": 1575, "Rank": 2, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Update-PnPApp", - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Id": 1575 }, { - "Id": 1576, "Rank": 1, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "CommandName": "Update-PnPAvailableSiteClassification", - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Id": 1576 }, { - "Id": 1577, "Rank": 2, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "CommandName": "Update-PnPAvailableSiteClassification", - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" + "Id": 1577 }, { - "Id": 1578, "Rank": 3, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "CommandName": "Update-PnPAvailableSiteClassification", - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" + "Id": 1578 }, { - "Id": 1579, "Rank": 1, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "CommandName": "Update-PnPSiteDesignFromWeb", - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" + "Id": 1579 }, { - "Id": 1580, "Rank": 2, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "CommandName": "Update-PnPSiteDesignFromWeb", - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" + "Id": 1580 }, { - "Id": 1581, "Rank": 3, + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "CommandName": "Update-PnPSiteDesignFromWeb", - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" + "Id": 1581 }, { - "Id": 1582, "Rank": 1, + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "CommandName": "Update-PnPTeamsApp", - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" + "Id": 1582 }, { - "Id": 1583, "Rank": 1, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Update-PnPTeamsUser", - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Id": 1583 }, { - "Id": 1584, "Rank": 2, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "CommandName": "Update-PnPTeamsUser", - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "Id": 1584 }, { - "Id": 1585, "Rank": 3, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "CommandName": "Update-PnPTeamsUser", - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" + "Id": 1585 }, { - "Id": 1586, "Rank": 1, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "CommandName": "Update-PnPUserType", - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" + "Id": 1586 } ] diff --git a/version.txt b/version.txt index e37944be7..9949e84d8 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.81 \ No newline at end of file +2.2.82 \ No newline at end of file From 664c38310d4637cda13930e8bffaa2681d381456 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Thu, 28 Sep 2023 10:03:39 +0200 Subject: [PATCH 003/146] Adding `Set-PnPSearchExternalItem` to allow for indexing custom content into Microsoft Search (#3420) * Added functionality * Adding PR reference * Changed parameter name from Id to ItemId to clarify its the Id of the external item, added constraint of maximum 128 characters for the itemid * Fixing build error --------- Co-authored-by: Gautam Sheth --- CHANGELOG.md | 3 + documentation/Set-PnPSearchExternalItem.md | 228 ++++++++++++++++++ .../Enums/SearchExternalItemAclAccessType.cs | 19 ++ .../Enums/SearchExternalItemAclType.cs | 34 +++ .../Enums/SearchExternalItemContentType.cs | 19 ++ ...softSearchExternalItemPropertyConverter.cs | 65 +++++ .../Graph/MicrosoftSearch/ExternalItem.cs | 36 +++ .../Graph/MicrosoftSearch/ExternalItemAcl.cs | 30 +++ .../MicrosoftSearch/ExternalItemContent.cs | 23 ++ .../MicrosoftSearch/ExternalItemProperty.cs | 10 + src/Commands/Search/SetSearchExternalItem.cs | 174 +++++++++++++ src/Commands/Utilities/REST/GraphHelper.cs | 2 +- 12 files changed, 642 insertions(+), 1 deletion(-) create mode 100644 documentation/Set-PnPSearchExternalItem.md create mode 100644 src/Commands/Enums/SearchExternalItemAclAccessType.cs create mode 100644 src/Commands/Enums/SearchExternalItemAclType.cs create mode 100644 src/Commands/Enums/SearchExternalItemContentType.cs create mode 100644 src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs create mode 100644 src/Commands/Model/Graph/MicrosoftSearch/ExternalItem.cs create mode 100644 src/Commands/Model/Graph/MicrosoftSearch/ExternalItemAcl.cs create mode 100644 src/Commands/Model/Graph/MicrosoftSearch/ExternalItemContent.cs create mode 100644 src/Commands/Model/Graph/MicrosoftSearch/ExternalItemProperty.cs create mode 100644 src/Commands/Search/SetSearchExternalItem.cs diff --git a/CHANGELOG.md b/CHANGELOG.md index 49874de40..69b76c46c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `Get-PnPFlowOwner` cmdlet which allows retrieving the owners of a Power Automate flow [#3314](https://github.com/pnp/powershell/pull/3314) - Added `-AvailableForTagging` to `Set-PnPTerm` which allows the available for tagging property on a Term to be set [#3321](https://github.com/pnp/powershell/pull/3321) - Added `Get-PnPPowerPlatformConnector` cmdlet which allows for all custom connectors to be retrieved [#3309](https://github.com/pnp/powershell/pull/3309) +- Added `Set-PnPSearchExternalItem` cmdlet which allows ingesting external items into the Microsoft Search index for custom connectors. [#3420](https://github.com/pnp/powershell/pull/3420) +- Added `Get-PnPTenantInfo` which allows retrieving tenant information by its Id or domain name [#3414](https://github.com/pnp/powershell/pull/3414) +- Added option to create a Microsft 365 Group with dynamic membership by passing in `-DynamicMembershipRule` [#3426](https://github.com/pnp/powershell/pull/3426) - Added option to pass in a Stream or XML string to `Read-PnPTenantTemplate` allowing the tenant template to be modified before being applied. [#3431](https://github.com/pnp/powershell/pull/3431) - Added `Get-PnPTenantInfo` which allows retrieving tenant information by its Id or domain name. [#3414](https://github.com/pnp/powershell/pull/3414) - Added option to create a Microsoft 365 Group with dynamic membership by passing in `-DynamicMembershipRule` [#3426](https://github.com/pnp/powershell/pull/3426) diff --git a/documentation/Set-PnPSearchExternalItem.md b/documentation/Set-PnPSearchExternalItem.md new file mode 100644 index 000000000..925664d56 --- /dev/null +++ b/documentation/Set-PnPSearchExternalItem.md @@ -0,0 +1,228 @@ +--- +Module Name: PnP.PowerShell +schema: 2.0.0 +applicable: SharePoint Online +online version: https://pnp.github.io/powershell/cmdlets/Set-PnPSearchExternalItem.html +external help file: PnP.PowerShell.dll-Help.xml +title: Set-PnPSearchExternalItem +--- + +# Set-PnPSearchExternalItem + +## SYNOPSIS +Adds or updates an external item in Microsoft Search + +## SYNTAX + +```powershell +Set-PnPSearchExternalItem -ItemId -ConnectionId -Properties [-ContentValue ] [-ContentType ] [-GrantUsers ] [-GrantGroups ] [-DenyUsers ] [-DenyGroups ] [-GrantExternalGroups ] [-DenyExternalGroups ] [-GrantEveryone ] [-Verbose] [-Connection ] +``` + +## DESCRIPTION + +This cmdlet can be used to add or update an external item in Microsoft Search on custom connectors. The cmdlet will create a new external item if the item does not exist yet. If the item already exists, it will be updated. + +## EXAMPLES + +### EXAMPLE 1 +```powershell +Set-PnPSearchExternalItem -ConnectionId "pnppowershell" -ItemId "12345" -Properties @{ "Test1"= "Test van deze PnP PowerShell Connector"; "Test2" = "Red","Blue"; "Test3" = ([System.DateTime]::Now)} -ContentValue "Sample value" -ContentType Text -GrantEveryone +``` + +This will add an item in the external Microsoft Search index with the properties as provided and grants everyone access to find the item back through Microsoft Search. + +### EXAMPLE 2 +```powershell +Set-PnPSearchExternalItem -ConnectionId "pnppowershell" -ItemId "12345" -Properties @{ "Test1"= "Test van deze PnP PowerShell Connector"; "Test2" = "Red","Blue"; "Test3" = ([System.DateTime]::Now)} -ContentValue "Sample value" -ContentType Text -GrantUsers "user@contoso.onmicrosoft.com" +``` + +This will add an item in the external Microsoft Search index with the properties as provided and grants only the user with the specified UPN access to find the item back through Microsoft Search. + +## 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 +``` + +### -ItemId +Unique identifier of the external item in Microsoft Search. You can provide any identifier you want to identity this item. This identifier will be used to update the item if it already exists. + +```yaml +Type: String +Parameter Sets: (All) +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ConnectionId +The Connection ID of the custom connector to use. This is the ID that was entered when registering the custom connector and will indicate for which custom connector this external item is being added to the Microsoft Search index. + +```yaml +Type: String +Parameter Sets: (All) +Required: True +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Properties +A hashtable with all the managed properties you want to provide for this external item. The key of the hashtable is the name of the managed property, the value is the value you want to provide for this managed property. The value can be a string, a string array or a DateTime object. + +```yaml +Type: Hashtable +Parameter Sets: (All) +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ContentValue +A summary of the content that is being indexed. Can be used to display in the search result. + +```yaml +Type: String +Parameter Sets: (All) +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ContentType +Defines the type of content used in the ContentValue attribue. Defaults to Text. + +```yaml +Type: SearchExternalItemContentType +Parameter Sets: (All) +Accepted values: Text, Html +Required: False +Position: Named +Default value: Text +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GrantUsers +When provided, the external item will only be shown to the users provided through this parameter. It can contain one or multiple users by providing AzureADUser objects, user principal names or Entra user IDs. + +```yaml +Type: AzureADUserPipeBind[] +Parameter Sets: (All) +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GrantGroups +When provided, the external item will only be shown to the users which are members of the groups provided through this parameter. It can contain one or multiple groups by providing AzureADGroup objects, group names or Entra group IDs. + +```yaml +Type: AzureADGroupPipeBind[] +Parameter Sets: (All) +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DenyUsers +When provided, the external item not be shown to the users provided through this parameter. It can contain one or multiple users by providing AzureADUser objects, user principal names or Entra user IDs. + +```yaml +Type: AzureADUserPipeBind[] +Parameter Sets: (All) +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DenyGroups +When provided, the external item will not be shown to the users which are members of the groups provided through this parameter. It can contain one or multiple groups by providing AzureADGroup objects, group names or Entra group IDs. + +```yaml +Type: AzureADGroupPipeBind[] +Parameter Sets: (All) +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GrantExternalGroups +When provided, the external item will be shown to the groups provided through this parameter. It can contain one or multiple users by providing the external group identifiers. + +```yaml +Type: String[] +Parameter Sets: (All) +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DenyExternalGroups +When provided, the external item will not be shown to the groups provided through this parameter. It can contain one or multiple users by providing the external group identifiers. + +```yaml +Type: String[] +Parameter Sets: (All) +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GrantEveryone +When provided, the external item will be shown to everyone. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +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/Enums/SearchExternalItemAclAccessType.cs b/src/Commands/Enums/SearchExternalItemAclAccessType.cs new file mode 100644 index 000000000..b5d0b15eb --- /dev/null +++ b/src/Commands/Enums/SearchExternalItemAclAccessType.cs @@ -0,0 +1,19 @@ +namespace PnP.PowerShell.Commands.Enums +{ + /// + /// Contains the possible ACL access types for external items to define if the ACL instructs a grant or deny + /// + /// + public enum SearchExternalItemAclAccessType : short + { + /// + /// Grants access + /// + Grant = 0, + + /// + /// Denies access + /// + Deny = 1 + } +} diff --git a/src/Commands/Enums/SearchExternalItemAclType.cs b/src/Commands/Enums/SearchExternalItemAclType.cs new file mode 100644 index 000000000..f7ffbc54a --- /dev/null +++ b/src/Commands/Enums/SearchExternalItemAclType.cs @@ -0,0 +1,34 @@ +namespace PnP.PowerShell.Commands.Enums +{ + /// + /// Contains the possible types of ACLs that can be set on external items to define to what type of object the access will be provided + /// + /// + public enum SearchExternalItemAclType : short + { + /// + /// Access will be provided to a user + /// + User = 0, + + /// + /// Access will be provided to a group + /// + Group = 1, + + /// + /// Access will be provided to everyone + /// + Everyone = 2, + + /// + /// Access will be provided to everyone except external users + /// + EveryoneExceptExternalUsers = 3, + + /// + /// Access will be provided to an external group + /// + ExternalGroup = 4 + } +} diff --git a/src/Commands/Enums/SearchExternalItemContentType.cs b/src/Commands/Enums/SearchExternalItemContentType.cs new file mode 100644 index 000000000..0ada930d3 --- /dev/null +++ b/src/Commands/Enums/SearchExternalItemContentType.cs @@ -0,0 +1,19 @@ +namespace PnP.PowerShell.Commands.Enums +{ + /// + /// Contains the possible content types for the search external item to define the type of content it contains + /// + /// + public enum SearchExternalItemContentType : short + { + /// + /// The content is HTML + /// + Html = 0, + + /// + /// The content is plain text + /// + Text = 1 + } +} diff --git a/src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs b/src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs new file mode 100644 index 000000000..32bbdb91e --- /dev/null +++ b/src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs @@ -0,0 +1,65 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace PnP.PowerShell.Commands.JsonConverters; + +/// +/// Custom JSON converter to convert a Hashtable to the format expected by the Microsoft Search API +/// +/// +internal sealed class MicrosoftSearchExternalItemPropertyConverter : JsonConverter +{ + public override Hashtable Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + var converter = (JsonConverter)options.GetConverter(typeof(Hashtable)); + return converter.Read(ref reader, typeToConvert, options); + } + + public override void Write(Utf8JsonWriter writer, Hashtable hashtable, JsonSerializerOptions options) + { + writer.WriteStartObject(); + foreach(DictionaryEntry value in hashtable) + { + switch(value.Value) + { + case string: + writer.WritePropertyName($"{value.Key}@odata.type"); + writer.WriteStringValue("String"); + + writer.WritePropertyName(value.Key.ToString()); + writer.WriteStringValue(value.Value.ToString()); + break; + + case DateTime dateTime: + writer.WritePropertyName($"{value.Key}@odata.type"); + writer.WriteStringValue("DateTimeOffset"); + + writer.WritePropertyName(value.Key.ToString()); + writer.WriteRawValue($"\"{dateTime:o}\""); + break; + + case IEnumerable ieNumerable: + writer.WritePropertyName($"{value.Key}@odata.type"); + writer.WriteStringValue("Collection(String)"); + + writer.WritePropertyName(value.Key.ToString()); + writer.WriteStartArray(); + foreach(object item in ieNumerable) + { + writer.WriteStringValue(item.ToString()); + } + writer.WriteEndArray(); + break; + + default: + writer.WritePropertyName(value.Key.ToString()); + writer.WriteStringValue(value.Value.ToString()); + break; + } + } + writer.WriteEndObject(); + } +} \ No newline at end of file diff --git a/src/Commands/Model/Graph/MicrosoftSearch/ExternalItem.cs b/src/Commands/Model/Graph/MicrosoftSearch/ExternalItem.cs new file mode 100644 index 000000000..8366643fc --- /dev/null +++ b/src/Commands/Model/Graph/MicrosoftSearch/ExternalItem.cs @@ -0,0 +1,36 @@ +using System.Collections; +using System.Collections.Generic; +using System.Text.Json.Serialization; + +namespace PnP.PowerShell.Commands.Model.Graph.MicrosoftSearch; + +/// +/// Defines an external item used by Microsoft Search +/// +/// + /// The managed properties to provide to Microsoft Search about this external item + /// + [JsonConverter(typeof(JsonConverters.MicrosoftSearchExternalItemPropertyConverter))] + public Hashtable Properties { get; set; } + + /// + /// The ACLs to assign to set permissions on this external item + /// + [JsonPropertyName("acl")] + public List Acls { get; set; } + + /// + /// The content of the external item + /// + [JsonPropertyName("content")] + public ExternalItemContent Content { get; set; } +} \ No newline at end of file diff --git a/src/Commands/Model/Graph/MicrosoftSearch/ExternalItemAcl.cs b/src/Commands/Model/Graph/MicrosoftSearch/ExternalItemAcl.cs new file mode 100644 index 000000000..d9ff927fd --- /dev/null +++ b/src/Commands/Model/Graph/MicrosoftSearch/ExternalItemAcl.cs @@ -0,0 +1,30 @@ +using System.Text.Json.Serialization; + +namespace PnP.PowerShell.Commands.Model.Graph.MicrosoftSearch; + +/// +/// Defines an ACL for an external item used by Microsoft Search +/// +/// +public class ExternalItemAcl +{ + /// + /// The type of the ACL, i.e. User, Group, Everyone, etc. + /// + [JsonConverter(typeof(JsonStringEnumConverter))] + [JsonPropertyName("type")] + public Enums.SearchExternalItemAclType Type { get; set; } + + /// + /// The value of the ACL, i.e. the user or group id + /// + [JsonPropertyName("value")] + public string Value { get; set; } + + /// + /// The access type of the ACL, i.e. Grant or Deny + /// + [JsonConverter(typeof(JsonStringEnumConverter))] + [JsonPropertyName("accessType")] + public Enums.SearchExternalItemAclAccessType AccessType { get; set; } +} \ No newline at end of file diff --git a/src/Commands/Model/Graph/MicrosoftSearch/ExternalItemContent.cs b/src/Commands/Model/Graph/MicrosoftSearch/ExternalItemContent.cs new file mode 100644 index 000000000..2a68d6534 --- /dev/null +++ b/src/Commands/Model/Graph/MicrosoftSearch/ExternalItemContent.cs @@ -0,0 +1,23 @@ +using System.Text.Json.Serialization; + +namespace PnP.PowerShell.Commands.Model.Graph.MicrosoftSearch; + +/// +/// Defines the content of an external item to add to Microsoft Search +/// +/// +public class ExternalItemContent +{ + /// + /// The type of content, Text or Html + /// + [JsonConverter(typeof(JsonStringEnumConverter))] + [JsonPropertyName("type")] + public Enums.SearchExternalItemContentType Type { get; set; } + + /// + /// The content to add to the Microsoft Search index + /// + [JsonPropertyName("value")] + public string Value { get; set; } +} \ No newline at end of file diff --git a/src/Commands/Model/Graph/MicrosoftSearch/ExternalItemProperty.cs b/src/Commands/Model/Graph/MicrosoftSearch/ExternalItemProperty.cs new file mode 100644 index 000000000..bb5fe7380 --- /dev/null +++ b/src/Commands/Model/Graph/MicrosoftSearch/ExternalItemProperty.cs @@ -0,0 +1,10 @@ +namespace PnP.PowerShell.Commands.Model.Graph.MicrosoftSearch; + +/// +/// Defines managed metadata properties to use on the external item which will be in the Microsoft Search index +/// +/// +public class ExternalItemProperty +{ + +} \ No newline at end of file diff --git a/src/Commands/Search/SetSearchExternalItem.cs b/src/Commands/Search/SetSearchExternalItem.cs new file mode 100644 index 000000000..a44e4b004 --- /dev/null +++ b/src/Commands/Search/SetSearchExternalItem.cs @@ -0,0 +1,174 @@ +using System.Collections; +using System.Management.Automation; +using PnP.PowerShell.Commands.Base; +using PnP.PowerShell.Commands.Base.PipeBinds; +using PnP.PowerShell.Commands.Attributes; +using System.Net.Http.Json; +using System.Linq; +using System.Collections.Generic; + +namespace PnP.PowerShell.Commands.Search +{ + [Cmdlet(VerbsCommon.Set, "PnPSearchExternalItem")] + [RequiredMinimalApiPermissions("ExternalItem.ReadWrite.All")] + [OutputType(typeof(Model.Graph.MicrosoftSearch.ExternalItem))] + public class AddSearchExternalItem : PnPGraphCmdlet + { + [Parameter(Mandatory = true)] + public string ConnectionId; + + [Parameter(Mandatory = true)] + [ValidateLength(1,128)] + public string ItemId; + + [Parameter(Mandatory = true)] + public Hashtable Properties; + + #region Content + + [Parameter(Mandatory = false)] + public string ContentValue; + + [Parameter(Mandatory = false)] + public Enums.SearchExternalItemContentType ContentType; + + #endregion + + #region ACL + + [Parameter(Mandatory = false)] + public AzureADUserPipeBind[] GrantUsers; + + [Parameter(Mandatory = false)] + public AzureADGroupPipeBind[] GrantGroups; + + [Parameter(Mandatory = false)] + public AzureADUserPipeBind[] DenyUsers; + + [Parameter(Mandatory = false)] + public AzureADGroupPipeBind[] DenyGroups; + + [Parameter(Mandatory = false)] + public string[] GrantExternalGroups; + + [Parameter(Mandatory = false)] + public string[] DenyExternalGroups; + + [Parameter(Mandatory = false)] + public SwitchParameter GrantEveryone; + + #endregion + + protected override void ExecuteCmdlet() + { + var bodyContent = new Model.Graph.MicrosoftSearch.ExternalItem + { + Id = ItemId, + Acls = new(), + Properties = Properties, + Content = new() { + Type = ContentType, + Value = ContentValue + } + }; + + WriteVerbose($"Adding {(ParameterSpecified(nameof(GrantUsers)) ? GrantUsers.Length : 0)} Grant User ACLs"); + bodyContent.Acls.AddRange(GetUserAcls(GrantUsers, Enums.SearchExternalItemAclAccessType.Grant)); + + WriteVerbose($"Adding {(ParameterSpecified(nameof(DenyUsers)) ? DenyUsers.Length : 0)} Deny User ACLs"); + bodyContent.Acls.AddRange(GetUserAcls(DenyUsers, Enums.SearchExternalItemAclAccessType.Deny)); + + WriteVerbose($"Adding {(ParameterSpecified(nameof(GrantGroups)) ? GrantGroups.Length : 0)} Grant Group ACLs"); + bodyContent.Acls.AddRange(GetGroupAcls(GrantGroups, Enums.SearchExternalItemAclAccessType.Grant)); + + WriteVerbose($"Adding {(ParameterSpecified(nameof(DenyGroups)) ? DenyGroups.Length : 0)} Deny Group ACLs"); + bodyContent.Acls.AddRange(GetGroupAcls(DenyGroups, Enums.SearchExternalItemAclAccessType.Deny)); + + WriteVerbose($"Adding {(ParameterSpecified(nameof(GrantExternalGroups)) ? GrantExternalGroups.Length : 0)} Grant External Group ACLs"); + bodyContent.Acls.AddRange(GetExternalGroupAcls(GrantExternalGroups, Enums.SearchExternalItemAclAccessType.Grant)); + + WriteVerbose($"Adding {(ParameterSpecified(nameof(DenyExternalGroups)) ? DenyExternalGroups.Length : 0)} Deny External Group ACLs"); + bodyContent.Acls.AddRange(GetExternalGroupAcls(DenyExternalGroups, Enums.SearchExternalItemAclAccessType.Deny)); + + if(GrantEveryone.ToBool()) + { + WriteVerbose($"Adding Grant Everyone ACL"); + bodyContent.Acls.Add(new Model.Graph.MicrosoftSearch.ExternalItemAcl + { + Type = Enums.SearchExternalItemAclType.Everyone, + AccessType = Enums.SearchExternalItemAclAccessType.Grant + }); + } + + var jsonContent = JsonContent.Create(bodyContent); + WriteVerbose($"Constructed payload: {jsonContent.ReadAsStringAsync().GetAwaiter().GetResult()}"); + + var graphApiUrl = $"v1.0/external/connections/{ConnectionId}/items/{ItemId}"; + WriteVerbose($"Calling Graph API at {graphApiUrl}"); + + var results = Utilities.REST.GraphHelper.PutAsync(Connection, graphApiUrl, AccessToken, jsonContent).GetAwaiter().GetResult(); + + WriteVerbose($"Graph API responded with HTTP {results.StatusCode} {results.ReasonPhrase}"); + + var resultsContent = results.Content.ReadAsStringAsync().GetAwaiter().GetResult(); + + WriteVerbose($"Graph API responded with payload: {resultsContent}"); + + var externalItemResult = System.Text.Json.JsonSerializer.Deserialize(resultsContent); + + WriteObject(externalItemResult, false); + } + + private List GetUserAcls(AzureADUserPipeBind[] users, Enums.SearchExternalItemAclAccessType accessType) + { + var acls = new List(); + if(users == null) return acls; + + foreach (var user in users) + { + var userAclId = user.UserId ?? user.GetUser(AccessToken)?.Id.Value.ToString(); + + acls.Add(new Model.Graph.MicrosoftSearch.ExternalItemAcl + { + Type = Enums.SearchExternalItemAclType.User, + Value = userAclId, + AccessType = accessType + }); + } + + return acls; + } + + private IEnumerable GetGroupAcls(AzureADGroupPipeBind[] groups, Enums.SearchExternalItemAclAccessType accessType) + { + var acls = new List(); + if(groups == null) return acls; + + foreach (var group in groups) + { + var userAclId = group.GroupId ?? group.GetGroup(Connection, AccessToken)?.Id; + + acls.Add(new Model.Graph.MicrosoftSearch.ExternalItemAcl + { + Type = Enums.SearchExternalItemAclType.Group, + Value = userAclId, + AccessType = accessType + }); + } + + return acls; + } + + private IEnumerable GetExternalGroupAcls(string[] groups, Enums.SearchExternalItemAclAccessType accessType) + { + if (groups == null) return new List(); + + return groups.Select(group => new Model.Graph.MicrosoftSearch.ExternalItemAcl + { + Type = Enums.SearchExternalItemAclType.ExternalGroup, + Value = group, + AccessType = accessType + }).ToArray(); + } + } +} \ No newline at end of file diff --git a/src/Commands/Utilities/REST/GraphHelper.cs b/src/Commands/Utilities/REST/GraphHelper.cs index c001c2ec2..e222bab5b 100644 --- a/src/Commands/Utilities/REST/GraphHelper.cs +++ b/src/Commands/Utilities/REST/GraphHelper.cs @@ -363,7 +363,7 @@ public static async Task GetResponseMessageAsync(PnPConnect { if (ex.Error != null) { - throw new PSInvalidOperationException(ex.Error.Message); + throw new PSInvalidOperationException($"Call to Microsoft Graph URL {message.RequestUri} failed with status code {response.StatusCode}{(!string.IsNullOrEmpty(ex.Error.Message) ? $": {ex.Error.Message}" : "")}"); } } else From 6edd8dc9ca23e3f745db21d86629183dccd422f4 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Thu, 28 Sep 2023 13:37:32 +0200 Subject: [PATCH 004/146] Bugfix for using the -GrantEveryone option --- ...icrosoftSearchExternalItemPropertyConverter.cs | 15 ++++++++++----- src/Commands/Search/SetSearchExternalItem.cs | 4 +++- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs b/src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs index 32bbdb91e..79f8b2376 100644 --- a/src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs +++ b/src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs @@ -12,11 +12,16 @@ namespace PnP.PowerShell.Commands.JsonConverters; /// internal sealed class MicrosoftSearchExternalItemPropertyConverter : JsonConverter { - public override Hashtable Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) - { - var converter = (JsonConverter)options.GetConverter(typeof(Hashtable)); - return converter.Read(ref reader, typeToConvert, options); - } + // public override Hashtable Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + // { + // var converter = (JsonConverter)options.GetConverter(typeof(Hashtable)); + // return converter.Read(ref reader, typeToConvert, options); + // } + + private readonly JsonConverter _fallbackConverter = (JsonConverter)System.Text.Json.JsonSerializerOptions.Default.GetConverter(typeof(Hashtable)); + + public sealed override Hashtable? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + => _fallbackConverter.Read(ref reader, typeToConvert, options); public override void Write(Utf8JsonWriter writer, Hashtable hashtable, JsonSerializerOptions options) { diff --git a/src/Commands/Search/SetSearchExternalItem.cs b/src/Commands/Search/SetSearchExternalItem.cs index a44e4b004..7a1a8f734 100644 --- a/src/Commands/Search/SetSearchExternalItem.cs +++ b/src/Commands/Search/SetSearchExternalItem.cs @@ -6,6 +6,7 @@ using System.Net.Http.Json; using System.Linq; using System.Collections.Generic; +using Microsoft.SharePoint.Client; namespace PnP.PowerShell.Commands.Search { @@ -96,7 +97,8 @@ protected override void ExecuteCmdlet() bodyContent.Acls.Add(new Model.Graph.MicrosoftSearch.ExternalItemAcl { Type = Enums.SearchExternalItemAclType.Everyone, - AccessType = Enums.SearchExternalItemAclAccessType.Grant + AccessType = Enums.SearchExternalItemAclAccessType.Grant, + Value = TenantExtensions.GetTenantIdByUrl(Connection.Url, Connection.AzureEnvironment) }); } From 68ce12c8cbccf9e0c3208bc4a7e7b2274810881a Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Thu, 28 Sep 2023 13:56:01 +0200 Subject: [PATCH 005/146] Bugfix for properties not being returned in return value --- ...icrosoftSearchExternalItemPropertyConverter.cs | 15 +++++---------- .../Model/Graph/MicrosoftSearch/ExternalItem.cs | 1 + 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs b/src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs index 79f8b2376..32bbdb91e 100644 --- a/src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs +++ b/src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs @@ -12,16 +12,11 @@ namespace PnP.PowerShell.Commands.JsonConverters; /// internal sealed class MicrosoftSearchExternalItemPropertyConverter : JsonConverter { - // public override Hashtable Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) - // { - // var converter = (JsonConverter)options.GetConverter(typeof(Hashtable)); - // return converter.Read(ref reader, typeToConvert, options); - // } - - private readonly JsonConverter _fallbackConverter = (JsonConverter)System.Text.Json.JsonSerializerOptions.Default.GetConverter(typeof(Hashtable)); - - public sealed override Hashtable? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) - => _fallbackConverter.Read(ref reader, typeToConvert, options); + public override Hashtable Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + var converter = (JsonConverter)options.GetConverter(typeof(Hashtable)); + return converter.Read(ref reader, typeToConvert, options); + } public override void Write(Utf8JsonWriter writer, Hashtable hashtable, JsonSerializerOptions options) { diff --git a/src/Commands/Model/Graph/MicrosoftSearch/ExternalItem.cs b/src/Commands/Model/Graph/MicrosoftSearch/ExternalItem.cs index 8366643fc..8db193483 100644 --- a/src/Commands/Model/Graph/MicrosoftSearch/ExternalItem.cs +++ b/src/Commands/Model/Graph/MicrosoftSearch/ExternalItem.cs @@ -20,6 +20,7 @@ public class ExternalItem /// The managed properties to provide to Microsoft Search about this external item /// [JsonConverter(typeof(JsonConverters.MicrosoftSearchExternalItemPropertyConverter))] + [JsonPropertyName("properties")] public Hashtable Properties { get; set; } /// From b2373e3f21097a6a87c59783a8ce9bfb392ea972 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Fri, 29 Sep 2023 02:39:09 +0000 Subject: [PATCH 006/146] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9526 +++++++++-------- version.txt | 2 +- 3 files changed, 4771 insertions(+), 4759 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index e32c3ae94..7dc1db21b 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -30bdfe308f275bdb229b28d07dea5479b809a33f \ No newline at end of file +e0d2f0aab75de6ea7d92a55829df9cda5bb97ead \ 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 d7d1a2486..5337fa1d5 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9518 +1,9530 @@ [ { - "Rank": 1, + "Id": 1, "Command": "Add-PnPAlert -List \"Demo List\"", - "CommandName": "Add-PnPAlert", - "Id": 1 + "Rank": 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)", - "CommandName": "Add-PnPAlert", - "Id": 2 + "Rank": 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\"", - "CommandName": "Add-PnPAlert", - "Id": 3 + "Rank": 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))", - "CommandName": "Add-PnPAlert", - "Id": 4 + "Rank": 4, + "CommandName": "Add-PnPAlert" }, { - "Rank": 1, + "Id": 5, "Command": "Add-PnPApp -Path ./myapp.sppkg", - "CommandName": "Add-PnPApp", - "Id": 5 + "Rank": 1, + "CommandName": "Add-PnPApp" }, { - "Rank": 2, + "Id": 6, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "CommandName": "Add-PnPApp", - "Id": 6 + "Rank": 2, + "CommandName": "Add-PnPApp" }, { - "Rank": 3, + "Id": 7, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "CommandName": "Add-PnPApp", - "Id": 7 + "Rank": 3, + "CommandName": "Add-PnPApp" }, { - "Rank": 4, + "Id": 8, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "CommandName": "Add-PnPApp", - "Id": 8 + "Rank": 4, + "CommandName": "Add-PnPApp" }, { - "Rank": 1, + "Id": 9, "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 + "Rank": 1, + "CommandName": "Add-PnPApplicationCustomizer" }, { - "Rank": 1, + "Id": 10, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 10 + "Rank": 1, + "CommandName": "Add-PnPAvailableSiteClassification" }, { - "Rank": 2, + "Id": 11, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 11 + "Rank": 2, + "CommandName": "Add-PnPAvailableSiteClassification" }, { - "Rank": 1, + "Id": 12, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 12 + "Rank": 1, + "CommandName": "Add-PnPAzureADGroupMember" }, { - "Rank": 2, + "Id": 13, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 13 + "Rank": 2, + "CommandName": "Add-PnPAzureADGroupMember" }, { - "Rank": 3, + "Id": 14, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 14 + "Rank": 3, + "CommandName": "Add-PnPAzureADGroupMember" }, { - "Rank": 1, + "Id": 15, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 15 + "Rank": 1, + "CommandName": "Add-PnPAzureADGroupOwner" }, { - "Rank": 2, + "Id": 16, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 16 + "Rank": 2, + "CommandName": "Add-PnPAzureADGroupOwner" }, { - "Rank": 3, + "Id": 17, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 17 + "Rank": 3, + "CommandName": "Add-PnPAzureADGroupOwner" }, { - "Rank": 1, + "Id": 18, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 18 + "Rank": 1, + "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\"", - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 19 + "Rank": 2, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { - "Rank": 1, + "Id": 20, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "CommandName": "Add-PnPContentType", - "Id": 20 + "Rank": 1, + "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\"", - "CommandName": "Add-PnPContentType", - "Id": 21 + "Rank": 2, + "CommandName": "Add-PnPContentType" }, { - "Rank": 3, + "Id": 22, "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "CommandName": "Add-PnPContentType", - "Id": 22 + "Rank": 3, + "CommandName": "Add-PnPContentType" }, { - "Rank": 4, + "Id": 23, "Command": "Add-PnPContentType -Name \"Project Item\"", - "CommandName": "Add-PnPContentType", - "Id": 23 + "Rank": 4, + "CommandName": "Add-PnPContentType" }, { - "Rank": 5, + "Id": 24, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "CommandName": "Add-PnPContentType", - "Id": 24 + "Rank": 5, + "CommandName": "Add-PnPContentType" }, { - "Rank": 1, + "Id": 25, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 25 + "Rank": 1, + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { - "Rank": 2, + "Id": 26, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 26 + "Rank": 2, + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { - "Rank": 1, + "Id": 27, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 27 + "Rank": 1, + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { - "Rank": 2, + "Id": 28, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 28 + "Rank": 2, + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { - "Rank": 1, + "Id": 29, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "CommandName": "Add-PnPContentTypeToList", - "Id": 29 + "Rank": 1, + "CommandName": "Add-PnPContentTypeToList" }, { - "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`\"}\"", - "CommandName": "Add-PnPCustomAction", - "Id": 30 + "Rank": 1, + "CommandName": "Add-PnPCustomAction" }, { - "Rank": 1, + "Id": 31, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 31 + "Rank": 1, + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { - "Rank": 2, + "Id": 32, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 32 + "Rank": 2, + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { - "Rank": 1, + "Id": 33, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "CommandName": "Add-PnPDocumentSet", - "Id": 33 + "Rank": 1, + "CommandName": "Add-PnPDocumentSet" }, { - "Rank": 1, + "Id": 34, "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", - "CommandName": "Add-PnPEventReceiver", - "Id": 34 + "Rank": 1, + "CommandName": "Add-PnPEventReceiver" }, { - "Rank": 2, + "Id": 35, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "CommandName": "Add-PnPEventReceiver", - "Id": 35 + "Rank": 2, + "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", - "CommandName": "Add-PnPEventReceiver", - "Id": 36 + "Rank": 3, + "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", - "CommandName": "Add-PnPEventReceiver", - "Id": 37 + "Rank": 4, + "CommandName": "Add-PnPEventReceiver" }, { - "Rank": 1, + "Id": 38, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "CommandName": "Add-PnPField", - "Id": 38 + "Rank": 1, + "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\"", - "CommandName": "Add-PnPField", - "Id": 39 + "Rank": 2, + "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\"", - "CommandName": "Add-PnPField", - "Id": 40 + "Rank": 3, + "CommandName": "Add-PnPField" }, { - "Rank": 4, + "Id": 41, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "CommandName": "Add-PnPField", - "Id": 41 + "Rank": 4, + "CommandName": "Add-PnPField" }, { - "Rank": 5, + "Id": 42, "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "CommandName": "Add-PnPField", - "Id": 42 + "Rank": 5, + "CommandName": "Add-PnPField" }, { - "Rank": 6, + "Id": 43, "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "CommandName": "Add-PnPField", - "Id": 43 + "Rank": 6, + "CommandName": "Add-PnPField" }, { - "Rank": 1, + "Id": 44, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Add-PnPFieldToContentType", - "Id": 44 + "Rank": 1, + "CommandName": "Add-PnPFieldToContentType" }, { - "Rank": 1, + "Id": 45, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "CommandName": "Add-PnPFile", - "Id": 45 + "Rank": 1, + "CommandName": "Add-PnPFile" }, { - "Rank": 2, + "Id": 46, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "CommandName": "Add-PnPFile", - "Id": 46 + "Rank": 2, + "CommandName": "Add-PnPFile" }, { - "Rank": 3, + "Id": 47, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", - "Id": 47 + "Rank": 3, + "CommandName": "Add-PnPFile" }, { - "Rank": 4, + "Id": 48, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", - "Id": 48 + "Rank": 4, + "CommandName": "Add-PnPFile" }, { - "Rank": 5, + "Id": 49, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", - "Id": 49 + "Rank": 5, + "CommandName": "Add-PnPFile" }, { - "Rank": 6, + "Id": 50, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "CommandName": "Add-PnPFile", - "Id": 50 + "Rank": 6, + "CommandName": "Add-PnPFile" }, { - "Rank": 7, + "Id": 51, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "CommandName": "Add-PnPFile", - "Id": 51 + "Rank": 7, + "CommandName": "Add-PnPFile" }, { - "Rank": 8, + "Id": 52, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "CommandName": "Add-PnPFile", - "Id": 52 + "Rank": 8, + "CommandName": "Add-PnPFile" }, { - "Rank": 1, + "Id": 53, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 53 + "Rank": 1, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "Rank": 2, + "Id": 54, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 54 + "Rank": 2, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "Rank": 3, + "Id": 55, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 55 + "Rank": 3, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "Rank": 1, + "Id": 56, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 56 + "Rank": 1, + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { - "Rank": 2, + "Id": 57, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 57 + "Rank": 2, + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { - "Rank": 1, + "Id": 58, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "CommandName": "Add-PnPFileSharingInvite", - "Id": 58 + "Rank": 1, + "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", - "CommandName": "Add-PnPFileSharingInvite", - "Id": 59 + "Rank": 2, + "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)", - "CommandName": "Add-PnPFileSharingInvite", - "Id": 60 + "Rank": 3, + "CommandName": "Add-PnPFileSharingInvite" }, { - "Rank": 1, + "Id": 61, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 61 + "Rank": 1, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Rank": 2, + "Id": 62, "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 62 + "Rank": 2, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Rank": 3, + "Id": 63, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 63 + "Rank": 3, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Rank": 4, + "Id": 64, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 64 + "Rank": 4, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Rank": 5, + "Id": 65, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 65 + "Rank": 5, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Rank": 1, + "Id": 66, "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFileUserSharingLink", - "Id": 66 + "Rank": 1, + "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\"", - "CommandName": "Add-PnPFileUserSharingLink", - "Id": 67 + "Rank": 2, + "CommandName": "Add-PnPFileUserSharingLink" }, { - "Rank": 1, + "Id": 68, "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 + "Rank": 1, + "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", - "CommandName": "Add-PnPFlowOwner", - "Id": 69 + "Rank": 2, + "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", - "CommandName": "Add-PnPFlowOwner", - "Id": 70 + "Rank": 3, + "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", - "CommandName": "Add-PnPFlowOwner", - "Id": 71 + "Rank": 4, + "CommandName": "Add-PnPFlowOwner" }, { - "Rank": 1, + "Id": 72, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Add-PnPFolder", - "Id": 72 + "Rank": 1, + "CommandName": "Add-PnPFolder" }, { - "Rank": 2, + "Id": 73, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFolder", - "Id": 73 + "Rank": 2, + "CommandName": "Add-PnPFolder" }, { - "Rank": 3, + "Id": 74, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "CommandName": "Add-PnPFolder", - "Id": 74 + "Rank": 3, + "CommandName": "Add-PnPFolder" }, { - "Rank": 1, + "Id": 75, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 75 + "Rank": 1, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "Rank": 2, + "Id": 76, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 76 + "Rank": 2, + "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)", - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 77 + "Rank": 3, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "Rank": 1, + "Id": 78, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 78 + "Rank": 1, + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { - "Rank": 2, + "Id": 79, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 79 + "Rank": 2, + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { - "Rank": 1, + "Id": 80, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "CommandName": "Add-PnPFolderSharingInvite", - "Id": 80 + "Rank": 1, + "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", - "CommandName": "Add-PnPFolderSharingInvite", - "Id": 81 + "Rank": 2, + "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)", - "CommandName": "Add-PnPFolderSharingInvite", - "Id": 82 + "Rank": 3, + "CommandName": "Add-PnPFolderSharingInvite" }, { - "Rank": 1, + "Id": 83, "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFolderUserSharingLink", - "Id": 83 + "Rank": 1, + "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\"", - "CommandName": "Add-PnPFolderUserSharingLink", - "Id": 84 + "Rank": 2, + "CommandName": "Add-PnPFolderUserSharingLink" }, { - "Rank": 1, + "Id": 85, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Add-PnPGroupMember", - "Id": 85 + "Rank": 1, + "CommandName": "Add-PnPGroupMember" }, { - "Rank": 2, + "Id": 86, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "CommandName": "Add-PnPGroupMember", - "Id": 86 + "Rank": 2, + "CommandName": "Add-PnPGroupMember" }, { - "Rank": 1, + "Id": 87, "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "CommandName": "Add-PnPHtmlPublishingPageLayout", - "Id": 87 + "Rank": 1, + "CommandName": "Add-PnPHtmlPublishingPageLayout" }, { - "Rank": 1, + "Id": 88, "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "CommandName": "Add-PnPHubSiteAssociation", - "Id": 88 + "Rank": 1, + "CommandName": "Add-PnPHubSiteAssociation" }, { - "Rank": 1, + "Id": 89, "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "CommandName": "Add-PnPHubToHubAssociation", - "Id": 89 + "Rank": 1, + "CommandName": "Add-PnPHubToHubAssociation" }, { - "Rank": 2, + "Id": 90, "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "CommandName": "Add-PnPHubToHubAssociation", - "Id": 90 + "Rank": 2, + "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\"", - "CommandName": "Add-PnPHubToHubAssociation", - "Id": 91 + "Rank": 3, + "CommandName": "Add-PnPHubToHubAssociation" }, { - "Rank": 1, + "Id": 92, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptBlock", - "Id": 92 + "Rank": 1, + "CommandName": "Add-PnPJavaScriptBlock" }, { - "Rank": 2, + "Id": 93, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "CommandName": "Add-PnPJavaScriptBlock", - "Id": 93 + "Rank": 2, + "CommandName": "Add-PnPJavaScriptBlock" }, { - "Rank": 1, + "Id": 94, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptLink", - "Id": 94 + "Rank": 1, + "CommandName": "Add-PnPJavaScriptLink" }, { - "Rank": 2, + "Id": 95, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "CommandName": "Add-PnPJavaScriptLink", - "Id": 95 + "Rank": 2, + "CommandName": "Add-PnPJavaScriptLink" }, { - "Rank": 1, + "Id": 96, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "CommandName": "Add-PnPListDesign", - "Id": 96 + "Rank": 1, + "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\"", - "CommandName": "Add-PnPListDesign", - "Id": 97 + "Rank": 2, + "CommandName": "Add-PnPListDesign" }, { - "Rank": 1, + "Id": 98, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 98 + "Rank": 1, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Rank": 2, + "Id": 99, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 99 + "Rank": 2, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Rank": 3, + "Id": 100, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 100 + "Rank": 3, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Rank": 1, + "Id": 101, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Add-PnPListItem", - "Id": 101 + "Rank": 1, + "CommandName": "Add-PnPListItem" }, { - "Rank": 2, + "Id": 102, "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Add-PnPListItem", - "Id": 102 + "Rank": 2, + "CommandName": "Add-PnPListItem" }, { - "Rank": 3, + "Id": 103, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "CommandName": "Add-PnPListItem", - "Id": 103 + "Rank": 3, + "CommandName": "Add-PnPListItem" }, { - "Rank": 4, + "Id": 104, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "CommandName": "Add-PnPListItem", - "Id": 104 + "Rank": 4, + "CommandName": "Add-PnPListItem" }, { - "Rank": 5, + "Id": 105, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "CommandName": "Add-PnPListItem", - "Id": 105 + "Rank": 5, + "CommandName": "Add-PnPListItem" }, { - "Rank": 1, + "Id": 106, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "CommandName": "Add-PnPListItemAttachment", - "Id": 106 + "Rank": 1, + "CommandName": "Add-PnPListItemAttachment" }, { - "Rank": 2, + "Id": 107, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "CommandName": "Add-PnPListItemAttachment", - "Id": 107 + "Rank": 2, + "CommandName": "Add-PnPListItemAttachment" }, { - "Rank": 3, + "Id": 108, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "CommandName": "Add-PnPListItemAttachment", - "Id": 108 + "Rank": 3, + "CommandName": "Add-PnPListItemAttachment" }, { - "Rank": 1, + "Id": 109, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "CommandName": "Add-PnPListItemComment", - "Id": 109 + "Rank": 1, + "CommandName": "Add-PnPListItemComment" }, { - "Rank": 1, + "Id": 110, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "CommandName": "Add-PnPMasterPage", - "Id": 110 + "Rank": 1, + "CommandName": "Add-PnPMasterPage" }, { - "Rank": 1, + "Id": 111, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 111 + "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { - "Rank": 2, + "Id": 112, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 112 + "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { - "Rank": 1, + "Id": 113, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 113 + "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { - "Rank": 2, + "Id": 114, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 114 + "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { - "Rank": 1, + "Id": 115, "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 115 + "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "Rank": 2, + "Id": 116, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 116 + "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "Rank": 3, + "Id": 117, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 117 + "Rank": 3, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "Rank": 1, + "Id": 118, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "CommandName": "Add-PnPNavigationNode", - "Id": 118 + "Rank": 1, + "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", - "CommandName": "Add-PnPNavigationNode", - "Id": 119 + "Rank": 2, + "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 3, + "Id": 120, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "CommandName": "Add-PnPNavigationNode", - "Id": 120 + "Rank": 3, + "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 4, + "Id": 121, "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "CommandName": "Add-PnPNavigationNode", - "Id": 121 + "Rank": 4, + "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 5, + "Id": 122, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "CommandName": "Add-PnPNavigationNode", - "Id": 122 + "Rank": 5, + "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 6, + "Id": 123, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "CommandName": "Add-PnPNavigationNode", - "Id": 123 + "Rank": 6, + "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 7, + "Id": 124, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "CommandName": "Add-PnPNavigationNode", - "Id": 124 + "Rank": 7, + "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 8, + "Id": 125, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "CommandName": "Add-PnPNavigationNode", - "Id": 125 + "Rank": 8, + "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 1, + "Id": 126, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 126 + "Rank": 1, + "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\"", - "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 127 + "Rank": 2, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "Rank": 3, + "Id": 128, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 128 + "Rank": 3, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "Rank": 1, + "Id": 129, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "CommandName": "Add-PnPOrgNewsSite", - "Id": 129 + "Rank": 1, + "CommandName": "Add-PnPOrgNewsSite" }, { - "Rank": 1, + "Id": 130, "Command": "Add-PnPPage -Name \"NewPage\"", - "CommandName": "Add-PnPPage", - "Id": 130 + "Rank": 1, + "CommandName": "Add-PnPPage" }, { - "Rank": 2, + "Id": 131, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "CommandName": "Add-PnPPage", - "Id": 131 + "Rank": 2, + "CommandName": "Add-PnPPage" }, { - "Rank": 3, + "Id": 132, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "CommandName": "Add-PnPPage", - "Id": 132 + "Rank": 3, + "CommandName": "Add-PnPPage" }, { - "Rank": 4, + "Id": 133, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "CommandName": "Add-PnPPage", - "Id": 133 + "Rank": 4, + "CommandName": "Add-PnPPage" }, { - "Rank": 5, + "Id": 134, "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "CommandName": "Add-PnPPage", - "Id": 134 + "Rank": 5, + "CommandName": "Add-PnPPage" }, { - "Rank": 6, + "Id": 135, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "CommandName": "Add-PnPPage", - "Id": 135 + "Rank": 6, + "CommandName": "Add-PnPPage" }, { - "Rank": 7, + "Id": 136, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Add-PnPPage", - "Id": 136 + "Rank": 7, + "CommandName": "Add-PnPPage" }, { - "Rank": 8, + "Id": 137, "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "CommandName": "Add-PnPPage", - "Id": 137 + "Rank": 8, + "CommandName": "Add-PnPPage" }, { - "Rank": 9, + "Id": 138, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Add-PnPPage", - "Id": 138 + "Rank": 9, + "CommandName": "Add-PnPPage" }, { - "Rank": 10, + "Id": 139, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Add-PnPPage", - "Id": 139 + "Rank": 10, + "CommandName": "Add-PnPPage" }, { - "Rank": 1, + "Id": 140, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "CommandName": "Add-PnPPageImageWebPart", - "Id": 140 + "Rank": 1, + "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\"", - "CommandName": "Add-PnPPageImageWebPart", - "Id": 141 + "Rank": 2, + "CommandName": "Add-PnPPageImageWebPart" }, { - "Rank": 1, + "Id": 142, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "CommandName": "Add-PnPPageSection", - "Id": 142 + "Rank": 1, + "CommandName": "Add-PnPPageSection" }, { - "Rank": 2, + "Id": 143, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "CommandName": "Add-PnPPageSection", - "Id": 143 + "Rank": 2, + "CommandName": "Add-PnPPageSection" }, { - "Rank": 1, + "Id": 144, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "CommandName": "Add-PnPPageTextPart", - "Id": 144 + "Rank": 1, + "CommandName": "Add-PnPPageTextPart" }, { - "Rank": 2, + "Id": 145, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "CommandName": "Add-PnPPageTextPart", - "Id": 145 + "Rank": 2, + "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\"", - "CommandName": "Add-PnPPageTextPart", - "Id": 146 + "Rank": 3, + "CommandName": "Add-PnPPageTextPart" }, { - "Rank": 1, + "Id": 147, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "CommandName": "Add-PnPPageWebPart", - "Id": 147 + "Rank": 1, + "CommandName": "Add-PnPPageWebPart" }, { - "Rank": 2, + "Id": 148, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "CommandName": "Add-PnPPageWebPart", - "Id": 148 + "Rank": 2, + "CommandName": "Add-PnPPageWebPart" }, { - "Rank": 3, + "Id": 149, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "CommandName": "Add-PnPPageWebPart", - "Id": 149 + "Rank": 3, + "CommandName": "Add-PnPPageWebPart" }, { - "Rank": 1, + "Id": 150, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "CommandName": "Add-PnPPlannerBucket", - "Id": 150 + "Rank": 1, + "CommandName": "Add-PnPPlannerBucket" }, { - "Rank": 2, + "Id": 151, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "CommandName": "Add-PnPPlannerBucket", - "Id": 151 + "Rank": 2, + "CommandName": "Add-PnPPlannerBucket" }, { - "Rank": 1, + "Id": 152, "Command": "Add-PnPPlannerRoster", - "CommandName": "Add-PnPPlannerRoster", - "Id": 152 + "Rank": 1, + "CommandName": "Add-PnPPlannerRoster" }, { - "Rank": 1, + "Id": 153, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPPlannerRosterMember", - "Id": 153 + "Rank": 1, + "CommandName": "Add-PnPPlannerRosterMember" }, { - "Rank": 1, + "Id": 154, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "CommandName": "Add-PnPPlannerTask", - "Id": 154 + "Rank": 1, + "CommandName": "Add-PnPPlannerTask" }, { - "Rank": 2, + "Id": 155, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "CommandName": "Add-PnPPlannerTask", - "Id": 155 + "Rank": 2, + "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\"", - "CommandName": "Add-PnPPlannerTask", - "Id": 156 + "Rank": 3, + "CommandName": "Add-PnPPlannerTask" }, { - "Rank": 1, + "Id": 157, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Add-PnPPublishingImageRendition", - "Id": 157 + "Rank": 1, + "CommandName": "Add-PnPPublishingImageRendition" }, { - "Rank": 1, + "Id": 158, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "CommandName": "Add-PnPPublishingPage", - "Id": 158 + "Rank": 1, + "CommandName": "Add-PnPPublishingPage" }, { - "Rank": 2, + "Id": 159, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "CommandName": "Add-PnPPublishingPage", - "Id": 159 + "Rank": 2, + "CommandName": "Add-PnPPublishingPage" }, { - "Rank": 1, + "Id": 160, "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "CommandName": "Add-PnPPublishingPageLayout", - "Id": 160 + "Rank": 1, + "CommandName": "Add-PnPPublishingPageLayout" }, { - "Rank": 1, + "Id": 161, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "CommandName": "Add-PnPRoleDefinition", - "Id": 161 + "Rank": 1, + "CommandName": "Add-PnPRoleDefinition" }, { - "Rank": 2, + "Id": 162, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "CommandName": "Add-PnPRoleDefinition", - "Id": 162 + "Rank": 2, + "CommandName": "Add-PnPRoleDefinition" }, { - "Rank": 3, + "Id": 163, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "CommandName": "Add-PnPRoleDefinition", - "Id": 163 + "Rank": 3, + "CommandName": "Add-PnPRoleDefinition" }, { - "Rank": 1, + "Id": 164, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 164 + "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Rank": 2, + "Id": 165, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 165 + "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Rank": 3, + "Id": 166, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 166 + "Rank": 3, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Rank": 1, + "Id": 167, "Command": "Add-PnPSiteCollectionAppCatalog", - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 167 + "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { - "Rank": 2, + "Id": 168, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 168 + "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { - "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", - "CommandName": "Add-PnPSiteDesign", - "Id": 169 + "Rank": 1, + "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", - "CommandName": "Add-PnPSiteDesign", - "Id": 170 + "Rank": 2, + "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\"", - "CommandName": "Add-PnPSiteDesign", - "Id": 171 + "Rank": 3, + "CommandName": "Add-PnPSiteDesign" }, { - "Rank": 1, + "Id": 172, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 172 + "Rank": 1, + "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)", - "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 173 + "Rank": 2, + "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", - "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 174 + "Rank": 3, + "CommandName": "Add-PnPSiteDesignFromWeb" }, { - "Rank": 1, + "Id": 175, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Add-PnPSiteDesignTask", - "Id": 175 + "Rank": 1, + "CommandName": "Add-PnPSiteDesignTask" }, { - "Rank": 2, + "Id": 176, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "CommandName": "Add-PnPSiteDesignTask", - "Id": 176 + "Rank": 2, + "CommandName": "Add-PnPSiteDesignTask" }, { - "Rank": 1, + "Id": 177, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "CommandName": "Add-PnPSiteScript", - "Id": 177 + "Rank": 1, + "CommandName": "Add-PnPSiteScript" }, { - "Rank": 1, + "Id": 178, "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "CommandName": "Add-PnPSiteScriptPackage", - "Id": 178 + "Rank": 1, + "CommandName": "Add-PnPSiteScriptPackage" }, { - "Rank": 1, + "Id": 179, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "CommandName": "Add-PnPSiteTemplate", - "Id": 179 + "Rank": 1, + "CommandName": "Add-PnPSiteTemplate" }, { - "Rank": 1, + "Id": 180, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "CommandName": "Add-PnPStoredCredential", - "Id": 180 + "Rank": 1, + "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)", - "CommandName": "Add-PnPStoredCredential", - "Id": 181 + "Rank": 2, + "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\"", - "CommandName": "Add-PnPStoredCredential", - "Id": 182 + "Rank": 3, + "CommandName": "Add-PnPStoredCredential" }, { - "Rank": 1, + "Id": 183, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "CommandName": "Add-PnPTaxonomyField", - "Id": 183 + "Rank": 1, + "CommandName": "Add-PnPTaxonomyField" }, { - "Rank": 2, + "Id": 184, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "CommandName": "Add-PnPTaxonomyField", - "Id": 184 + "Rank": 2, + "CommandName": "Add-PnPTaxonomyField" }, { - "Rank": 1, + "Id": 185, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "CommandName": "Add-PnPTeamsChannel", - "Id": 185 + "Rank": 1, + "CommandName": "Add-PnPTeamsChannel" }, { - "Rank": 2, + "Id": 186, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "CommandName": "Add-PnPTeamsChannel", - "Id": 186 + "Rank": 2, + "CommandName": "Add-PnPTeamsChannel" }, { - "Rank": 3, + "Id": 187, "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "CommandName": "Add-PnPTeamsChannel", - "Id": 187 + "Rank": 3, + "CommandName": "Add-PnPTeamsChannel" }, { - "Rank": 4, + "Id": 188, "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "CommandName": "Add-PnPTeamsChannel", - "Id": 188 + "Rank": 4, + "CommandName": "Add-PnPTeamsChannel" }, { - "Rank": 1, + "Id": 189, "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 + "Rank": 1, + "CommandName": "Add-PnpTeamsChannelUser" }, { - "Rank": 2, + "Id": 190, "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "CommandName": "Add-PnpTeamsChannelUser", - "Id": 190 + "Rank": 2, + "CommandName": "Add-PnpTeamsChannelUser" }, { - "Rank": 1, + "Id": 191, "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 + "Rank": 1, + "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\"", - "CommandName": "Add-PnPTeamsTab", - "Id": 192 + "Rank": 2, + "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\"", - "CommandName": "Add-PnPTeamsTab", - "Id": 193 + "Rank": 3, + "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", - "CommandName": "Add-PnPTeamsTab", - "Id": 194 + "Rank": 4, + "CommandName": "Add-PnPTeamsTab" }, { - "Rank": 1, + "Id": 195, "Command": "Add-PnPTeamsTeam", - "CommandName": "Add-PnPTeamsTeam", - "Id": 195 + "Rank": 1, + "CommandName": "Add-PnPTeamsTeam" }, { - "Rank": 1, + "Id": 196, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Add-PnPTeamsUser", - "Id": 196 + "Rank": 1, + "CommandName": "Add-PnPTeamsUser" }, { - "Rank": 2, + "Id": 197, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Add-PnPTeamsUser", - "Id": 197 + "Rank": 2, + "CommandName": "Add-PnPTeamsUser" }, { - "Rank": 3, + "Id": 198, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "CommandName": "Add-PnPTeamsUser", - "Id": 198 + "Rank": 3, + "CommandName": "Add-PnPTeamsUser" }, { - "Rank": 4, + "Id": 199, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "CommandName": "Add-PnPTeamsUser", - "Id": 199 + "Rank": 4, + "CommandName": "Add-PnPTeamsUser" }, { - "Rank": 1, + "Id": 200, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Add-PnPTenantCdnOrigin", - "Id": 200 + "Rank": 1, + "CommandName": "Add-PnPTenantCdnOrigin" }, { - "Rank": 1, + "Id": 201, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequence", - "Id": 201 + "Rank": 1, + "CommandName": "Add-PnPTenantSequence" }, { - "Rank": 1, + "Id": 202, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequenceSite", - "Id": 202 + "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSite" }, { - "Rank": 1, + "Id": 203, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "CommandName": "Add-PnPTenantSequenceSubSite", - "Id": 203 + "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSubSite" }, { - "Rank": 1, + "Id": 204, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "CommandName": "Add-PnPTermToTerm", - "Id": 204 + "Rank": 1, + "CommandName": "Add-PnPTermToTerm" }, { - "Rank": 1, + "Id": 205, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "CommandName": "Add-PnPView", - "Id": 205 + "Rank": 1, + "CommandName": "Add-PnPView" }, { - "Rank": 2, + "Id": 206, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "CommandName": "Add-PnPView", - "Id": 206 + "Rank": 2, + "CommandName": "Add-PnPView" }, { - "Rank": 3, + "Id": 207, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "CommandName": "Add-PnPView", - "Id": 207 + "Rank": 3, + "CommandName": "Add-PnPView" }, { - "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\"", - "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Id": 208 + "Rank": 1, + "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\"", - "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Id": 209 + "Rank": 2, + "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\"", - "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Id": 210 + "Rank": 3, + "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { - "Rank": 1, + "Id": 211, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "CommandName": "Add-PnPWebhookSubscription", - "Id": 211 + "Rank": 1, + "CommandName": "Add-PnPWebhookSubscription" }, { - "Rank": 2, + "Id": 212, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "CommandName": "Add-PnPWebhookSubscription", - "Id": 212 + "Rank": 2, + "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!\"", - "CommandName": "Add-PnPWebhookSubscription", - "Id": 213 + "Rank": 3, + "CommandName": "Add-PnPWebhookSubscription" }, { - "Rank": 1, + "Id": 214, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "CommandName": "Add-PnPWebPartToWebPartPage", - "Id": 214 + "Rank": 1, + "CommandName": "Add-PnPWebPartToWebPartPage" }, { - "Rank": 2, + "Id": 215, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "CommandName": "Add-PnPWebPartToWebPartPage", - "Id": 215 + "Rank": 2, + "CommandName": "Add-PnPWebPartToWebPartPage" }, { - "Rank": 1, + "Id": 216, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "CommandName": "Add-PnPWebPartToWikiPage", - "Id": 216 + "Rank": 1, + "CommandName": "Add-PnPWebPartToWikiPage" }, { - "Rank": 2, + "Id": 217, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "CommandName": "Add-PnPWebPartToWikiPage", - "Id": 217 + "Rank": 2, + "CommandName": "Add-PnPWebPartToWikiPage" }, { - "Rank": 1, + "Id": 218, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "CommandName": "Add-PnPWikiPage", - "Id": 218 + "Rank": 1, + "CommandName": "Add-PnPWikiPage" }, { - "Rank": 1, + "Id": 219, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupMember", - "Id": 219 + "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupMember" }, { - "Rank": 1, + "Id": 220, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupOwner", - "Id": 220 + "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupOwner" }, { - "Rank": 1, + "Id": 221, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 221 + "Rank": 1, + "CommandName": "Clear-PnPDefaultColumnValues" }, { - "Rank": 2, + "Id": 222, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 222 + "Rank": 2, + "CommandName": "Clear-PnPDefaultColumnValues" }, { - "Rank": 1, + "Id": 223, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Clear-PnPListItemAsRecord", - "Id": 223 + "Rank": 1, + "CommandName": "Clear-PnPListItemAsRecord" }, { - "Rank": 1, + "Id": 224, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Id": 224 + "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { - "Rank": 1, + "Id": 225, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Id": 225 + "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { - "Rank": 1, + "Id": 226, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 226 + "Rank": 1, + "CommandName": "Clear-PnpRecycleBinItem" }, { - "Rank": 2, + "Id": 227, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 227 + "Rank": 2, + "CommandName": "Clear-PnpRecycleBinItem" }, { - "Rank": 3, + "Id": 228, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 228 + "Rank": 3, + "CommandName": "Clear-PnpRecycleBinItem" }, { - "Rank": 1, + "Id": 229, "Command": "Clear-PnPTenantAppCatalogUrl", - "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Id": 229 + "Rank": 1, + "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { - "Rank": 1, + "Id": 230, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 230 + "Rank": 1, + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { - "Rank": 2, + "Id": 231, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 231 + "Rank": 2, + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { - "Rank": 1, + "Id": 232, "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 + "Rank": 1, + "CommandName": "Connect-PnPOnline" }, { - "Rank": 1, + "Id": 233, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 233 + "Rank": 1, + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { - "Rank": 2, + "Id": 234, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 234 + "Rank": 2, + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { - "Rank": 1, + "Id": 235, "Command": "Convert-PnPSiteTemplate -Path template.xml", - "CommandName": "Convert-PnPSiteTemplate", - "Id": 235 + "Rank": 1, + "CommandName": "Convert-PnPSiteTemplate" }, { - "Rank": 2, + "Id": 236, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "CommandName": "Convert-PnPSiteTemplate", - "Id": 236 + "Rank": 2, + "CommandName": "Convert-PnPSiteTemplate" }, { - "Rank": 3, + "Id": 237, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "CommandName": "Convert-PnPSiteTemplate", - "Id": 237 + "Rank": 3, + "CommandName": "Convert-PnPSiteTemplate" }, { - "Rank": 1, + "Id": 238, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 238 + "Rank": 1, + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { - "Rank": 2, + "Id": 239, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 239 + "Rank": 2, + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { - "Rank": 1, + "Id": 240, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", - "Id": 240 + "Rank": 1, + "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 2, + "Id": 241, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "CommandName": "ConvertTo-PnPPage", - "Id": 241 + "Rank": 2, + "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 3, + "Id": 242, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "CommandName": "ConvertTo-PnPPage", - "Id": 242 + "Rank": 3, + "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 4, + "Id": 243, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "CommandName": "ConvertTo-PnPPage", - "Id": 243 + "Rank": 4, + "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 5, + "Id": 244, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", - "Id": 244 + "Rank": 5, + "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 6, + "Id": 245, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "CommandName": "ConvertTo-PnPPage", - "Id": 245 + "Rank": 6, + "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 7, + "Id": 246, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", - "Id": 246 + "Rank": 7, + "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 8, + "Id": 247, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", - "Id": 247 + "Rank": 8, + "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 9, + "Id": 248, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", - "Id": 248 + "Rank": 9, + "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 10, + "Id": 249, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "CommandName": "ConvertTo-PnPPage", - "Id": 249 + "Rank": 10, + "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 11, + "Id": 250, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "CommandName": "ConvertTo-PnPPage", - "Id": 250 + "Rank": 11, + "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 12, + "Id": 251, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", - "Id": 251 + "Rank": 12, + "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 13, + "Id": 252, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", - "Id": 252 + "Rank": 13, + "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 14, + "Id": 253, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "CommandName": "ConvertTo-PnPPage", - "Id": 253 + "Rank": 14, + "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 1, + "Id": 254, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", - "Id": 254 + "Rank": 1, + "CommandName": "Copy-PnPFile" }, { - "Rank": 2, + "Id": 255, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFile", - "Id": 255 + "Rank": 2, + "CommandName": "Copy-PnPFile" }, { - "Rank": 3, + "Id": 256, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFile", - "Id": 256 + "Rank": 3, + "CommandName": "Copy-PnPFile" }, { - "Rank": 4, + "Id": 257, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", - "Id": 257 + "Rank": 4, + "CommandName": "Copy-PnPFile" }, { - "Rank": 5, + "Id": 258, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFile", - "Id": 258 + "Rank": 5, + "CommandName": "Copy-PnPFile" }, { - "Rank": 6, + "Id": 259, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFile", - "Id": 259 + "Rank": 6, + "CommandName": "Copy-PnPFile" }, { - "Rank": 7, + "Id": 260, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFile", - "Id": 260 + "Rank": 7, + "CommandName": "Copy-PnPFile" }, { - "Rank": 8, + "Id": 261, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", - "Id": 261 + "Rank": 8, + "CommandName": "Copy-PnPFile" }, { - "Rank": 9, + "Id": 262, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", - "Id": 262 + "Rank": 9, + "CommandName": "Copy-PnPFile" }, { - "Rank": 10, + "Id": 263, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFile", - "Id": 263 + "Rank": 10, + "CommandName": "Copy-PnPFile" }, { - "Rank": 1, + "Id": 264, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", - "Id": 264 + "Rank": 1, + "CommandName": "Copy-PnPFolder" }, { - "Rank": 2, + "Id": 265, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFolder", - "Id": 265 + "Rank": 2, + "CommandName": "Copy-PnPFolder" }, { - "Rank": 3, + "Id": 266, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFolder", - "Id": 266 + "Rank": 3, + "CommandName": "Copy-PnPFolder" }, { - "Rank": 4, + "Id": 267, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", - "Id": 267 + "Rank": 4, + "CommandName": "Copy-PnPFolder" }, { - "Rank": 5, + "Id": 268, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFolder", - "Id": 268 + "Rank": 5, + "CommandName": "Copy-PnPFolder" }, { - "Rank": 6, + "Id": 269, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFolder", - "Id": 269 + "Rank": 6, + "CommandName": "Copy-PnPFolder" }, { - "Rank": 7, + "Id": 270, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFolder", - "Id": 270 + "Rank": 7, + "CommandName": "Copy-PnPFolder" }, { - "Rank": 8, + "Id": 271, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", - "Id": 271 + "Rank": 8, + "CommandName": "Copy-PnPFolder" }, { - "Rank": 9, + "Id": 272, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", - "Id": 272 + "Rank": 9, + "CommandName": "Copy-PnPFolder" }, { - "Rank": 10, + "Id": 273, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFolder", - "Id": 273 + "Rank": 10, + "CommandName": "Copy-PnPFolder" }, { - "Rank": 1, + "Id": 274, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "CommandName": "Copy-PnPItemProxy", - "Id": 274 + "Rank": 1, + "CommandName": "Copy-PnPItemProxy" }, { - "Rank": 1, + "Id": 275, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "CommandName": "Copy-PnPList", - "Id": 275 + "Rank": 1, + "CommandName": "Copy-PnPList" }, { - "Rank": 2, + "Id": 276, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "CommandName": "Copy-PnPList", - "Id": 276 + "Rank": 2, + "CommandName": "Copy-PnPList" }, { - "Rank": 3, + "Id": 277, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "CommandName": "Copy-PnPList", - "Id": 277 + "Rank": 3, + "CommandName": "Copy-PnPList" }, { - "Rank": 4, + "Id": 278, "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", - "CommandName": "Copy-PnPList", - "Id": 278 + "Rank": 4, + "CommandName": "Copy-PnPList" }, { - "Rank": 1, + "Id": 279, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "CommandName": "Copy-PnPTeamsTeam", - "Id": 279 + "Rank": 1, + "CommandName": "Copy-PnPTeamsTeam" }, { - "Rank": 2, + "Id": 280, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "CommandName": "Copy-PnPTeamsTeam", - "Id": 280 + "Rank": 2, + "CommandName": "Copy-PnPTeamsTeam" }, { - "Rank": 3, + "Id": 281, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", - "CommandName": "Copy-PnPTeamsTeam", - "Id": 281 + "Rank": 3, + "CommandName": "Copy-PnPTeamsTeam" }, { - "Rank": 4, + "Id": 282, "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": 282 + "Rank": 4, + "CommandName": "Copy-PnPTeamsTeam" }, { - "Rank": 1, + "Id": 283, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Disable-PnPFeature", - "Id": 283 + "Rank": 1, + "CommandName": "Disable-PnPFeature" }, { - "Rank": 2, + "Id": 284, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Disable-PnPFeature", - "Id": 284 + "Rank": 2, + "CommandName": "Disable-PnPFeature" }, { - "Rank": 3, + "Id": 285, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Disable-PnPFeature", - "Id": 285 + "Rank": 3, + "CommandName": "Disable-PnPFeature" }, { - "Rank": 1, + "Id": 286, "Command": "Disable-PnPPageScheduling", - "CommandName": "Disable-PnPPageScheduling", - "Id": 286 + "Rank": 1, + "CommandName": "Disable-PnPPageScheduling" }, { - "Rank": 1, + "Id": 287, "Command": "Disable-PnPPowerShellTelemetry", - "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 287 + "Rank": 1, + "CommandName": "Disable-PnPPowerShellTelemetry" }, { - "Rank": 2, + "Id": 288, "Command": "Disable-PnPPowerShellTelemetry -Force", - "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 288 + "Rank": 2, + "CommandName": "Disable-PnPPowerShellTelemetry" }, { - "Rank": 1, + "Id": 289, "Command": "Disable-PnPSharingForNonOwnersOfSite", - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 289 + "Rank": 1, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { - "Rank": 1, + "Id": 290, "Command": "Disable-PnPSiteClassification", - "CommandName": "Disable-PnPSiteClassification", - "Id": 290 + "Rank": 1, + "CommandName": "Disable-PnPSiteClassification" }, { - "Rank": 1, + "Id": 291, "Command": "Disconnect-PnPOnline", - "CommandName": "Disconnect-PnPOnline", - "Id": 291 + "Rank": 1, + "CommandName": "Disconnect-PnPOnline" }, { - "Rank": 1, + "Id": 292, "Command": "Enable-PnPCommSite", - "CommandName": "Enable-PnPCommSite", - "Id": 292 + "Rank": 1, + "CommandName": "Enable-PnPCommSite" }, { - "Rank": 2, + "Id": 293, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "CommandName": "Enable-PnPCommSite", - "Id": 293 + "Rank": 2, + "CommandName": "Enable-PnPCommSite" }, { - "Rank": 1, + "Id": 294, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Enable-PnPFeature", - "Id": 294 + "Rank": 1, + "CommandName": "Enable-PnPFeature" }, { - "Rank": 2, + "Id": 295, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Enable-PnPFeature", - "Id": 295 + "Rank": 2, + "CommandName": "Enable-PnPFeature" }, { - "Rank": 3, + "Id": 296, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Enable-PnPFeature", - "Id": 296 + "Rank": 3, + "CommandName": "Enable-PnPFeature" }, { - "Rank": 1, + "Id": 297, "Command": "Enable-PnPPageScheduling", - "CommandName": "Enable-PnPPageScheduling", - "Id": 297 + "Rank": 1, + "CommandName": "Enable-PnPPageScheduling" }, { - "Rank": 1, + "Id": 298, "Command": "Enable-PnPPowerShellTelemetry", - "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 298 + "Rank": 1, + "CommandName": "Enable-PnPPowerShellTelemetry" }, { - "Rank": 2, + "Id": 299, "Command": "Enable-PnPPowerShellTelemetry -Force", - "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 299 + "Rank": 2, + "CommandName": "Enable-PnPPowerShellTelemetry" }, { - "Rank": 1, + "Id": 300, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "CommandName": "Enable-PnPSiteClassification", - "Id": 300 + "Rank": 1, + "CommandName": "Enable-PnPSiteClassification" }, { - "Rank": 2, + "Id": 301, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Enable-PnPSiteClassification", - "Id": 301 + "Rank": 2, + "CommandName": "Enable-PnPSiteClassification" }, { - "Rank": 1, + "Id": 302, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "CommandName": "Export-PnPListToSiteTemplate", - "Id": 302 + "Rank": 1, + "CommandName": "Export-PnPListToSiteTemplate" }, { - "Rank": 2, + "Id": 303, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "CommandName": "Export-PnPListToSiteTemplate", - "Id": 303 + "Rank": 2, + "CommandName": "Export-PnPListToSiteTemplate" }, { - "Rank": 1, + "Id": 304, "Command": "Export-PnPPage -Identity Home.aspx", - "CommandName": "Export-PnPPage", - "Id": 304 + "Rank": 1, + "CommandName": "Export-PnPPage" }, { - "Rank": 1, + "Id": 305, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", - "Id": 305 + "Rank": 1, + "CommandName": "Export-PnPPageMapping" }, { - "Rank": 2, + "Id": 306, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", - "Id": 306 + "Rank": 2, + "CommandName": "Export-PnPPageMapping" }, { - "Rank": 3, + "Id": 307, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", - "Id": 307 + "Rank": 3, + "CommandName": "Export-PnPPageMapping" }, { - "Rank": 1, + "Id": 308, "Command": "Export-PnPTaxonomy", - "CommandName": "Export-PnPTaxonomy", - "Id": 308 + "Rank": 1, + "CommandName": "Export-PnPTaxonomy" }, { - "Rank": 2, + "Id": 309, "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "CommandName": "Export-PnPTaxonomy", - "Id": 309 + "Rank": 2, + "CommandName": "Export-PnPTaxonomy" }, { - "Rank": 3, + "Id": 310, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "CommandName": "Export-PnPTaxonomy", - "Id": 310 + "Rank": 3, + "CommandName": "Export-PnPTaxonomy" }, { - "Rank": 4, + "Id": 311, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "CommandName": "Export-PnPTaxonomy", - "Id": 311 + "Rank": 4, + "CommandName": "Export-PnPTaxonomy" }, { - "Rank": 1, + "Id": 312, "Command": "Export-PnPTermGroupToXml", - "CommandName": "Export-PnPTermGroupToXml", - "Id": 312 + "Rank": 1, + "CommandName": "Export-PnPTermGroupToXml" }, { - "Rank": 2, + "Id": 313, "Command": "Export-PnPTermGroupToXml -Out output.xml", - "CommandName": "Export-PnPTermGroupToXml", - "Id": 313 + "Rank": 2, + "CommandName": "Export-PnPTermGroupToXml" }, { - "Rank": 3, + "Id": 314, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "CommandName": "Export-PnPTermGroupToXml", - "Id": 314 + "Rank": 3, + "CommandName": "Export-PnPTermGroupToXml" }, { - "Rank": 1, + "Id": 315, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Export-PnPUserInfo", - "Id": 315 + "Rank": 1, + "CommandName": "Export-PnPUserInfo" }, { - "Rank": 2, + "Id": 316, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", - "CommandName": "Export-PnPUserInfo", - "Id": 316 + "Rank": 2, + "CommandName": "Export-PnPUserInfo" }, { - "Rank": 1, + "Id": 317, "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Export-PnPUserProfile", - "Id": 317 + "Rank": 1, + "CommandName": "Export-PnPUserProfile" }, { - "Rank": 2, + "Id": 318, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "CommandName": "Export-PnPUserProfile", - "Id": 318 + "Rank": 2, + "CommandName": "Export-PnPUserProfile" }, { - "Rank": 1, + "Id": 319, "Command": "Find-PnPFile -Match *.master", - "CommandName": "Find-PnPFile", - "Id": 319 + "Rank": 1, + "CommandName": "Find-PnPFile" }, { - "Rank": 2, + "Id": 320, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "CommandName": "Find-PnPFile", - "Id": 320 + "Rank": 2, + "CommandName": "Find-PnPFile" }, { - "Rank": 3, + "Id": 321, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "CommandName": "Find-PnPFile", - "Id": 321 + "Rank": 3, + "CommandName": "Find-PnPFile" }, { - "Rank": 1, + "Id": 322, "Command": "Get-PnPAccessToken", - "CommandName": "Get-PnPAccessToken", - "Id": 322 + "Rank": 1, + "CommandName": "Get-PnPAccessToken" }, { - "Rank": 2, + "Id": 323, "Command": "Get-PnPAccessToken -Decoded", - "CommandName": "Get-PnPAccessToken", - "Id": 323 + "Rank": 2, + "CommandName": "Get-PnPAccessToken" }, { - "Rank": 3, + "Id": 324, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "CommandName": "Get-PnPAccessToken", - "Id": 324 + "Rank": 3, + "CommandName": "Get-PnPAccessToken" }, { - "Rank": 4, + "Id": 325, "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "CommandName": "Get-PnPAccessToken", - "Id": 325 + "Rank": 4, + "CommandName": "Get-PnPAccessToken" }, { - "Rank": 5, + "Id": 326, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "CommandName": "Get-PnPAccessToken", - "Id": 326 + "Rank": 5, + "CommandName": "Get-PnPAccessToken" }, { - "Rank": 1, + "Id": 327, "Command": "Get-PnPAlert", - "CommandName": "Get-PnPAlert", - "Id": 327 + "Rank": 1, + "CommandName": "Get-PnPAlert" }, { - "Rank": 2, + "Id": 328, "Command": "Get-PnPAlert -List \"Demo List\"", - "CommandName": "Get-PnPAlert", - "Id": 328 + "Rank": 2, + "CommandName": "Get-PnPAlert" }, { - "Rank": 3, + "Id": 329, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPAlert", - "Id": 329 + "Rank": 3, + "CommandName": "Get-PnPAlert" }, { - "Rank": 4, + "Id": 330, "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "CommandName": "Get-PnPAlert", - "Id": 330 + "Rank": 4, + "CommandName": "Get-PnPAlert" }, { - "Rank": 5, + "Id": 331, "Command": "Get-PnPAlert -AllUsers", - "CommandName": "Get-PnPAlert", - "Id": 331 + "Rank": 5, + "CommandName": "Get-PnPAlert" }, { - "Rank": 6, + "Id": 332, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "CommandName": "Get-PnPAlert", - "Id": 332 + "Rank": 6, + "CommandName": "Get-PnPAlert" }, { - "Rank": 1, + "Id": 333, "Command": "Get-PnPApp", - "CommandName": "Get-PnPApp", - "Id": 333 + "Rank": 1, + "CommandName": "Get-PnPApp" }, { - "Rank": 2, + "Id": 334, "Command": "Get-PnPApp -Scope Site", - "CommandName": "Get-PnPApp", - "Id": 334 + "Rank": 2, + "CommandName": "Get-PnPApp" }, { - "Rank": 3, + "Id": 335, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPApp", - "Id": 335 + "Rank": 3, + "CommandName": "Get-PnPApp" }, { - "Rank": 1, + "Id": 336, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "CommandName": "Get-PnPAppErrors", - "Id": 336 + "Rank": 1, + "CommandName": "Get-PnPAppErrors" }, { - "Rank": 2, + "Id": 337, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "CommandName": "Get-PnPAppErrors", - "Id": 337 + "Rank": 2, + "CommandName": "Get-PnPAppErrors" }, { - "Rank": 1, + "Id": 338, "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "CommandName": "Get-PnPAppInfo", - "Id": 338 + "Rank": 1, + "CommandName": "Get-PnPAppInfo" }, { - "Rank": 2, + "Id": 339, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPAppInfo", - "Id": 339 + "Rank": 2, + "CommandName": "Get-PnPAppInfo" }, { - "Rank": 3, + "Id": 340, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "CommandName": "Get-PnPAppInfo", - "Id": 340 + "Rank": 3, + "CommandName": "Get-PnPAppInfo" }, { - "Rank": 1, + "Id": 341, "Command": "Get-PnPApplicationCustomizer", - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 341 + "Rank": 1, + "CommandName": "Get-PnPApplicationCustomizer" }, { - "Rank": 2, + "Id": 342, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 342 + "Rank": 2, + "CommandName": "Get-PnPApplicationCustomizer" }, { - "Rank": 3, + "Id": 343, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 343 + "Rank": 3, + "CommandName": "Get-PnPApplicationCustomizer" }, { - "Rank": 1, + "Id": 344, "Command": "Get-PnPAuditing", - "CommandName": "Get-PnPAuditing", - "Id": 344 + "Rank": 1, + "CommandName": "Get-PnPAuditing" }, { - "Rank": 1, + "Id": 345, "Command": "Get-PnPAuthenticationRealm", - "CommandName": "Get-PnPAuthenticationRealm", - "Id": 345 + "Rank": 1, + "CommandName": "Get-PnPAuthenticationRealm" }, { - "Rank": 2, + "Id": 346, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "CommandName": "Get-PnPAuthenticationRealm", - "Id": 346 + "Rank": 2, + "CommandName": "Get-PnPAuthenticationRealm" }, { - "Rank": 1, + "Id": 347, "Command": "Get-PnPAvailableLanguage", - "CommandName": "Get-PnPAvailableLanguage", - "Id": 347 + "Rank": 1, + "CommandName": "Get-PnPAvailableLanguage" }, { - "Rank": 1, + "Id": 348, "Command": "Get-PnPAvailableSensitivityLabel", - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 348 + "Rank": 1, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Rank": 2, + "Id": 349, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 349 + "Rank": 2, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Rank": 3, + "Id": 350, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 350 + "Rank": 3, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Rank": 1, + "Id": 351, "Command": "Get-PnPAvailableSiteClassification", - "CommandName": "Get-PnPAvailableSiteClassification", - "Id": 351 + "Rank": 1, + "CommandName": "Get-PnPAvailableSiteClassification" }, { - "Rank": 1, + "Id": 352, "Command": "Get-PnPAzureACSPrincipal", - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 352 + "Rank": 1, + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Rank": 2, + "Id": 353, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 353 + "Rank": 2, + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Rank": 3, + "Id": 354, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 354 + "Rank": 3, + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Rank": 4, + "Id": 355, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 355 + "Rank": 4, + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Rank": 1, + "Id": 356, "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 356 + "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Rank": 2, + "Id": 357, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 357 + "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Rank": 3, + "Id": 358, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 358 + "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Rank": 1, + "Id": 359, "Command": "Get-PnPAzureADActivityReportSignIn", - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 359 + "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Rank": 2, + "Id": 360, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 360 + "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Rank": 3, + "Id": 361, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 361 + "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Rank": 1, + "Id": 362, "Command": "Get-PnPAzureADApp", - "CommandName": "Get-PnPAzureADApp", - "Id": 362 + "Rank": 1, + "CommandName": "Get-PnPAzureADApp" }, { - "Rank": 2, + "Id": 363, "Command": "Get-PnPAzureADApp -Identity MyApp", - "CommandName": "Get-PnPAzureADApp", - "Id": 363 + "Rank": 2, + "CommandName": "Get-PnPAzureADApp" }, { - "Rank": 3, + "Id": 364, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADApp", - "Id": 364 + "Rank": 3, + "CommandName": "Get-PnPAzureADApp" }, { - "Rank": 4, + "Id": 365, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADApp", - "Id": 365 + "Rank": 4, + "CommandName": "Get-PnPAzureADApp" }, { - "Rank": 1, + "Id": 366, "Command": "Get-PnPAzureADAppPermission", - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 366 + "Rank": 1, + "CommandName": "Get-PnPAzureADAppPermission" }, { - "Rank": 2, + "Id": 367, "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 367 + "Rank": 2, + "CommandName": "Get-PnPAzureADAppPermission" }, { - "Rank": 3, + "Id": 368, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 368 + "Rank": 3, + "CommandName": "Get-PnPAzureADAppPermission" }, { - "Rank": 1, + "Id": 369, "Command": "Get-PnPAzureADAppSitePermission", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 369 + "Rank": 1, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 2, + "Id": 370, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 370 + "Rank": 2, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 3, + "Id": 371, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 371 + "Rank": 3, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 4, + "Id": 372, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 372 + "Rank": 4, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 5, + "Id": 373, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 373 + "Rank": 5, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 1, + "Id": 374, "Command": "Get-PnPAzureADGroup", - "CommandName": "Get-PnPAzureADGroup", - "Id": 374 + "Rank": 1, + "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 2, + "Id": 375, "Command": "Get-PnPAzureADGroup -Identity $groupId", - "CommandName": "Get-PnPAzureADGroup", - "Id": 375 + "Rank": 2, + "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 3, + "Id": 376, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "CommandName": "Get-PnPAzureADGroup", - "Id": 376 + "Rank": 3, + "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 4, + "Id": 377, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPAzureADGroup", - "Id": 377 + "Rank": 4, + "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 5, + "Id": 378, "Command": "Get-PnPAzureADGroup -Identity $group", - "CommandName": "Get-PnPAzureADGroup", - "Id": 378 + "Rank": 5, + "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 1, + "Id": 379, "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupMember", - "Id": 379 + "Rank": 1, + "CommandName": "Get-PnPAzureADGroupMember" }, { - "Rank": 2, + "Id": 380, "Command": "Get-PnPAzureADGroupMember -Identity $group", - "CommandName": "Get-PnPAzureADGroupMember", - "Id": 380 + "Rank": 2, + "CommandName": "Get-PnPAzureADGroupMember" }, { - "Rank": 1, + "Id": 381, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 381 + "Rank": 1, + "CommandName": "Get-PnPAzureADGroupOwner" }, { - "Rank": 2, + "Id": 382, "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 382 + "Rank": 2, + "CommandName": "Get-PnPAzureADGroupOwner" }, { - "Rank": 1, + "Id": 383, "Command": "Get-PnPAzureADServicePrincipal", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 383 + "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 2, + "Id": 384, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 384 + "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 3, + "Id": 385, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 385 + "Rank": 3, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 4, + "Id": 386, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 386 + "Rank": 4, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 5, + "Id": 387, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 387 + "Rank": 5, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 1, + "Id": 388, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 388 + "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 2, + "Id": 389, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 389 + "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 1, + "Id": 390, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 390 + "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { - "Rank": 2, + "Id": 391, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 391 + "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { - "Rank": 1, + "Id": 392, "Command": "Get-PnPAzureADUser", - "CommandName": "Get-PnPAzureADUser", - "Id": 392 + "Rank": 1, + "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 2, + "Id": 393, "Command": "Get-PnPAzureADUser -EndIndex 50", - "CommandName": "Get-PnPAzureADUser", - "Id": 393 + "Rank": 2, + "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 3, + "Id": 394, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPAzureADUser", - "Id": 394 + "Rank": 3, + "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 4, + "Id": 395, "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "CommandName": "Get-PnPAzureADUser", - "Id": 395 + "Rank": 4, + "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 5, + "Id": 396, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "CommandName": "Get-PnPAzureADUser", - "Id": 396 + "Rank": 5, + "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 6, + "Id": 397, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "CommandName": "Get-PnPAzureADUser", - "Id": 397 + "Rank": 6, + "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 7, + "Id": 398, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "CommandName": "Get-PnPAzureADUser", - "Id": 398 + "Rank": 7, + "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 8, + "Id": 399, "Command": "Get-PnPAzureADUser -Delta", - "CommandName": "Get-PnPAzureADUser", - "Id": 399 + "Rank": 8, + "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 9, + "Id": 400, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "CommandName": "Get-PnPAzureADUser", - "Id": 400 + "Rank": 9, + "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 10, + "Id": 401, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "CommandName": "Get-PnPAzureADUser", - "Id": 401 + "Rank": 10, + "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 1, + "Id": 402, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "CommandName": "Get-PnPAzureCertificate", - "Id": 402 + "Rank": 1, + "CommandName": "Get-PnPAzureCertificate" }, { - "Rank": 2, + "Id": 403, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "CommandName": "Get-PnPAzureCertificate", - "Id": 403 + "Rank": 2, + "CommandName": "Get-PnPAzureCertificate" }, { - "Rank": 3, + "Id": 404, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "CommandName": "Get-PnPAzureCertificate", - "Id": 404 + "Rank": 3, + "CommandName": "Get-PnPAzureCertificate" }, { - "Rank": 1, + "Id": 405, "Command": "Get-PnPBrowserIdleSignout", - "CommandName": "Get-PnPBrowserIdleSignout", - "Id": 405 + "Rank": 1, + "CommandName": "Get-PnPBrowserIdleSignout" }, { - "Rank": 1, + "Id": 406, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 406 + "Rank": 1, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Rank": 2, + "Id": 407, "Command": "Get-PnPBuiltInDesignPackageVisibility", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 407 + "Rank": 2, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Rank": 1, + "Id": 408, "Command": "Get-PnPBuiltInSiteTemplateSettings", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 408 + "Rank": 1, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 2, + "Id": 409, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 409 + "Rank": 2, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 3, + "Id": 410, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 410 + "Rank": 3, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 4, + "Id": 411, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 411 + "Rank": 4, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 5, + "Id": 412, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 412 + "Rank": 5, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 1, + "Id": 413, "Command": "Get-PnPChangeLog", - "CommandName": "Get-PnPChangeLog", - "Id": 413 + "Rank": 1, + "CommandName": "Get-PnPChangeLog" }, { - "Rank": 2, + "Id": 414, "Command": "Get-PnPChangeLog -Nightly", - "CommandName": "Get-PnPChangeLog", - "Id": 414 + "Rank": 2, + "CommandName": "Get-PnPChangeLog" }, { - "Rank": 1, + "Id": 415, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 415 + "Rank": 1, + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { - "Rank": 2, + "Id": 416, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 416 + "Rank": 2, + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { - "Rank": 1, + "Id": 417, "Command": "Get-PnPContentType", - "CommandName": "Get-PnPContentType", - "Id": 417 + "Rank": 1, + "CommandName": "Get-PnPContentType" }, { - "Rank": 2, + "Id": 418, "Command": "Get-PnPContentType -InSiteHierarchy", - "CommandName": "Get-PnPContentType", - "Id": 418 + "Rank": 2, + "CommandName": "Get-PnPContentType" }, { - "Rank": 3, + "Id": 419, "Command": "Get-PnPContentType -Identity \"Project Document\"", - "CommandName": "Get-PnPContentType", - "Id": 419 + "Rank": 3, + "CommandName": "Get-PnPContentType" }, { - "Rank": 4, + "Id": 420, "Command": "Get-PnPContentType -List \"Documents\"", - "CommandName": "Get-PnPContentType", - "Id": 420 + "Rank": 4, + "CommandName": "Get-PnPContentType" }, { - "Rank": 1, + "Id": 421, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "CommandName": "Get-PnPContentTypePublishingStatus", - "Id": 421 + "Rank": 1, + "CommandName": "Get-PnPContentTypePublishingStatus" }, { - "Rank": 1, + "Id": 422, "Command": "Get-PnPCustomAction", - "CommandName": "Get-PnPCustomAction", - "Id": 422 + "Rank": 1, + "CommandName": "Get-PnPCustomAction" }, { - "Rank": 2, + "Id": 423, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPCustomAction", - "Id": 423 + "Rank": 2, + "CommandName": "Get-PnPCustomAction" }, { - "Rank": 3, + "Id": 424, "Command": "Get-PnPCustomAction -Scope web", - "CommandName": "Get-PnPCustomAction", - "Id": 424 + "Rank": 3, + "CommandName": "Get-PnPCustomAction" }, { - "Rank": 1, + "Id": 425, "Command": "Get-PnPDeletedMicrosoft365Group", - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 425 + "Rank": 1, + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { - "Rank": 2, + "Id": 426, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 426 + "Rank": 2, + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { - "Rank": 1, + "Id": 427, "Command": "Get-PnPDeletedTeam", - "CommandName": "Get-PnPDeletedTeam", - "Id": 427 + "Rank": 1, + "CommandName": "Get-PnPDeletedTeam" }, { - "Rank": 1, + "Id": 428, "Command": "Get-PnPDiagnostics", - "CommandName": "Get-PnPDiagnostics", - "Id": 428 + "Rank": 1, + "CommandName": "Get-PnPDiagnostics" }, { - "Rank": 1, + "Id": 429, "Command": "Get-PnPDisableSpacesActivation", - "CommandName": "Get-PnPDisableSpacesActivation", - "Id": 429 + "Rank": 1, + "CommandName": "Get-PnPDisableSpacesActivation" }, { - "Rank": 1, + "Id": 430, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 430 + "Rank": 1, + "CommandName": "Get-PnPDocumentSetTemplate" }, { - "Rank": 2, + "Id": 431, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 431 + "Rank": 2, + "CommandName": "Get-PnPDocumentSetTemplate" }, { - "Rank": 1, + "Id": 432, "Command": "Get-PnPEventReceiver", - "CommandName": "Get-PnPEventReceiver", - "Id": 432 + "Rank": 1, + "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 2, + "Id": 433, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver", - "Id": 433 + "Rank": 2, + "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 3, + "Id": 434, "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver", - "Id": 434 + "Rank": 3, + "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 4, + "Id": 435, "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "CommandName": "Get-PnPEventReceiver", - "Id": 435 + "Rank": 4, + "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 5, + "Id": 436, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver", - "Id": 436 + "Rank": 5, + "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 6, + "Id": 437, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver", - "Id": 437 + "Rank": 6, + "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 7, + "Id": 438, "Command": "Get-PnPEventReceiver -Scope Site", - "CommandName": "Get-PnPEventReceiver", - "Id": 438 + "Rank": 7, + "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 8, + "Id": 439, "Command": "Get-PnPEventReceiver -Scope Web", - "CommandName": "Get-PnPEventReceiver", - "Id": 439 + "Rank": 8, + "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 9, + "Id": 440, "Command": "Get-PnPEventReceiver -Scope All", - "CommandName": "Get-PnPEventReceiver", - "Id": 440 + "Rank": 9, + "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 1, + "Id": 441, "Command": "Get-PnPException", - "CommandName": "Get-PnPException", - "Id": 441 + "Rank": 1, + "CommandName": "Get-PnPException" }, { - "Rank": 2, + "Id": 442, "Command": "Get-PnPException -All", - "CommandName": "Get-PnPException", - "Id": 442 + "Rank": 2, + "CommandName": "Get-PnPException" }, { - "Rank": 1, + "Id": 443, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "CommandName": "Get-PnPExternalUser", - "Id": 443 + "Rank": 1, + "CommandName": "Get-PnPExternalUser" }, { - "Rank": 2, + "Id": 444, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "CommandName": "Get-PnPExternalUser", - "Id": 444 + "Rank": 2, + "CommandName": "Get-PnPExternalUser" }, { - "Rank": 1, + "Id": 445, "Command": "Get-PnPFeature", - "CommandName": "Get-PnPFeature", - "Id": 445 + "Rank": 1, + "CommandName": "Get-PnPFeature" }, { - "Rank": 2, + "Id": 446, "Command": "Get-PnPFeature -Scope Site", - "CommandName": "Get-PnPFeature", - "Id": 446 + "Rank": 2, + "CommandName": "Get-PnPFeature" }, { - "Rank": 3, + "Id": 447, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPFeature", - "Id": 447 + "Rank": 3, + "CommandName": "Get-PnPFeature" }, { - "Rank": 4, + "Id": 448, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "CommandName": "Get-PnPFeature", - "Id": 448 + "Rank": 4, + "CommandName": "Get-PnPFeature" }, { - "Rank": 1, + "Id": 449, "Command": "Get-PnPField", - "CommandName": "Get-PnPField", - "Id": 449 + "Rank": 1, + "CommandName": "Get-PnPField" }, { - "Rank": 2, + "Id": 450, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Get-PnPField", - "Id": 450 + "Rank": 2, + "CommandName": "Get-PnPField" }, { - "Rank": 3, + "Id": 451, "Command": "Get-PnPField -Group \"Custom Columns\"", - "CommandName": "Get-PnPField", - "Id": 451 + "Rank": 3, + "CommandName": "Get-PnPField" }, { - "Rank": 1, + "Id": 452, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "CommandName": "Get-PnPFile", - "Id": 452 + "Rank": 1, + "CommandName": "Get-PnPFile" }, { - "Rank": 2, + "Id": 453, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "CommandName": "Get-PnPFile", - "Id": 453 + "Rank": 2, + "CommandName": "Get-PnPFile" }, { - "Rank": 3, + "Id": 454, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "CommandName": "Get-PnPFile", - "Id": 454 + "Rank": 3, + "CommandName": "Get-PnPFile" }, { - "Rank": 4, + "Id": 455, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "CommandName": "Get-PnPFile", - "Id": 455 + "Rank": 4, + "CommandName": "Get-PnPFile" }, { - "Rank": 5, + "Id": 456, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "CommandName": "Get-PnPFile", - "Id": 456 + "Rank": 5, + "CommandName": "Get-PnPFile" }, { - "Rank": 6, + "Id": 457, "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "CommandName": "Get-PnPFile", - "Id": 457 + "Rank": 6, + "CommandName": "Get-PnPFile" }, { - "Rank": 7, + "Id": 458, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "CommandName": "Get-PnPFile", - "Id": 458 + "Rank": 7, + "CommandName": "Get-PnPFile" }, { - "Rank": 1, + "Id": 459, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Get-PnPFileSharingLink", - "Id": 459 + "Rank": 1, + "CommandName": "Get-PnPFileSharingLink" }, { - "Rank": 1, + "Id": 460, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "CommandName": "Get-PnPFileVersion", - "Id": 460 + "Rank": 1, + "CommandName": "Get-PnPFileVersion" }, { - "Rank": 2, + "Id": 461, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "CommandName": "Get-PnPFileVersion", - "Id": 461 + "Rank": 2, + "CommandName": "Get-PnPFileVersion" }, { - "Rank": 1, + "Id": 462, "Command": "Get-PnPFlow -AsAdmin", - "CommandName": "Get-PnPFlow", - "Id": 462 + "Rank": 1, + "CommandName": "Get-PnPFlow" }, { - "Rank": 2, + "Id": 463, "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "CommandName": "Get-PnPFlow", - "Id": 463 + "Rank": 2, + "CommandName": "Get-PnPFlow" }, { - "Rank": 3, + "Id": 464, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "CommandName": "Get-PnPFlow", - "Id": 464 + "Rank": 3, + "CommandName": "Get-PnPFlow" }, { - "Rank": 1, + "Id": 465, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "CommandName": "Get-PnPFlowOwner", - "Id": 465 + "Rank": 1, + "CommandName": "Get-PnPFlowOwner" }, { - "Rank": 1, + "Id": 466, "Command": "Get-PnPFolder", - "CommandName": "Get-PnPFolder", - "Id": 466 + "Rank": 1, + "CommandName": "Get-PnPFolder" }, { - "Rank": 2, + "Id": 467, "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "CommandName": "Get-PnPFolder", - "Id": 467 + "Rank": 2, + "CommandName": "Get-PnPFolder" }, { - "Rank": 3, + "Id": 468, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "CommandName": "Get-PnPFolder", - "Id": 468 + "Rank": 3, + "CommandName": "Get-PnPFolder" }, { - "Rank": 4, + "Id": 469, "Command": "Get-PnPFolder -List \"Shared Documents\"", - "CommandName": "Get-PnPFolder", - "Id": 469 + "Rank": 4, + "CommandName": "Get-PnPFolder" }, { - "Rank": 1, + "Id": 470, "Command": "Get-PnPFolderFile", - "CommandName": "Get-PnPFolderFile", - "Id": 470 + "Rank": 1, + "CommandName": "Get-PnPFolderFile" }, { - "Rank": 2, + "Id": 471, "Command": "Get-PnPFolderFile -Recurse", - "CommandName": "Get-PnPFolderFile", - "Id": 471 + "Rank": 2, + "CommandName": "Get-PnPFolderFile" }, { - "Rank": 3, + "Id": 472, "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderFile", - "Id": 472 + "Rank": 3, + "CommandName": "Get-PnPFolderFile" }, { - "Rank": 4, + "Id": 473, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderFile", - "Id": 473 + "Rank": 4, + "CommandName": "Get-PnPFolderFile" }, { - "Rank": 5, + "Id": 474, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderFile", - "Id": 474 + "Rank": 5, + "CommandName": "Get-PnPFolderFile" }, { - "Rank": 1, + "Id": 475, "Command": "Get-PnPFolderFolder", - "CommandName": "Get-PnPFolderFolder", - "Id": 475 + "Rank": 1, + "CommandName": "Get-PnPFolderFolder" }, { - "Rank": 2, + "Id": 476, "Command": "Get-PnPFolderFolder -Recurse", - "CommandName": "Get-PnPFolderFolder", - "Id": 476 + "Rank": 2, + "CommandName": "Get-PnPFolderFolder" }, { - "Rank": 3, + "Id": 477, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderFolder", - "Id": 477 + "Rank": 3, + "CommandName": "Get-PnPFolderFolder" }, { - "Rank": 4, + "Id": 478, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "CommandName": "Get-PnPFolderFolder", - "Id": 478 + "Rank": 4, + "CommandName": "Get-PnPFolderFolder" }, { - "Rank": 5, + "Id": 479, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "CommandName": "Get-PnPFolderFolder", - "Id": 479 + "Rank": 5, + "CommandName": "Get-PnPFolderFolder" }, { - "Rank": 6, + "Id": 480, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderFolder", - "Id": 480 + "Rank": 6, + "CommandName": "Get-PnPFolderFolder" }, { - "Rank": 1, + "Id": 481, "Command": "Get-PnPFolderItem", - "CommandName": "Get-PnPFolderItem", - "Id": 481 + "Rank": 1, + "CommandName": "Get-PnPFolderItem" }, { - "Rank": 2, + "Id": 482, "Command": "Get-PnPFolderItem -Recurse", - "CommandName": "Get-PnPFolderItem", - "Id": 482 + "Rank": 2, + "CommandName": "Get-PnPFolderItem" }, { - "Rank": 3, + "Id": 483, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderItem", - "Id": 483 + "Rank": 3, + "CommandName": "Get-PnPFolderItem" }, { - "Rank": 4, + "Id": 484, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderItem", - "Id": 484 + "Rank": 4, + "CommandName": "Get-PnPFolderItem" }, { - "Rank": 5, + "Id": 485, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "CommandName": "Get-PnPFolderItem", - "Id": 485 + "Rank": 5, + "CommandName": "Get-PnPFolderItem" }, { - "Rank": 6, + "Id": 486, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderItem", - "Id": 486 + "Rank": 6, + "CommandName": "Get-PnPFolderItem" }, { - "Rank": 1, + "Id": 487, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Get-PnPFolderSharingLink", - "Id": 487 + "Rank": 1, + "CommandName": "Get-PnPFolderSharingLink" }, { - "Rank": 1, + "Id": 488, "Command": "Get-PnPFolderStorageMetric", - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 488 + "Rank": 1, + "CommandName": "Get-PnPFolderStorageMetric" }, { - "Rank": 2, + "Id": 489, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 489 + "Rank": 2, + "CommandName": "Get-PnPFolderStorageMetric" }, { - "Rank": 3, + "Id": 490, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 490 + "Rank": 3, + "CommandName": "Get-PnPFolderStorageMetric" }, { - "Rank": 1, + "Id": 491, "Command": "Get-PnPFooter", - "CommandName": "Get-PnPFooter", - "Id": 491 + "Rank": 1, + "CommandName": "Get-PnPFooter" }, { - "Rank": 1, + "Id": 492, "Command": "Get-PnPGraphAccessToken", - "CommandName": "Get-PnPGraphAccessToken", - "Id": 492 + "Rank": 1, + "CommandName": "Get-PnPGraphAccessToken" }, { - "Rank": 2, + "Id": 493, "Command": "Get-PnPGraphAccessToken -Decoded", - "CommandName": "Get-PnPGraphAccessToken", - "Id": 493 + "Rank": 2, + "CommandName": "Get-PnPGraphAccessToken" }, { - "Rank": 1, + "Id": 494, "Command": "Get-PnPGraphSubscription", - "CommandName": "Get-PnPGraphSubscription", - "Id": 494 + "Rank": 1, + "CommandName": "Get-PnPGraphSubscription" }, { - "Rank": 2, + "Id": 495, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPGraphSubscription", - "Id": 495 + "Rank": 2, + "CommandName": "Get-PnPGraphSubscription" }, { - "Rank": 1, + "Id": 496, "Command": "Get-PnPGroup", - "CommandName": "Get-PnPGroup", - "Id": 496 + "Rank": 1, + "CommandName": "Get-PnPGroup" }, { - "Rank": 2, + "Id": 497, "Command": "Get-PnPGroup -Identity 'My Site Users'", - "CommandName": "Get-PnPGroup", - "Id": 497 + "Rank": 2, + "CommandName": "Get-PnPGroup" }, { - "Rank": 3, + "Id": 498, "Command": "Get-PnPGroup -AssociatedMemberGroup", - "CommandName": "Get-PnPGroup", - "Id": 498 + "Rank": 3, + "CommandName": "Get-PnPGroup" }, { - "Rank": 1, + "Id": 499, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "CommandName": "Get-PnPGroupMember", - "Id": 499 + "Rank": 1, + "CommandName": "Get-PnPGroupMember" }, { - "Rank": 2, + "Id": 500, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "CommandName": "Get-PnPGroupMember", - "Id": 500 + "Rank": 2, + "CommandName": "Get-PnPGroupMember" }, { - "Rank": 1, + "Id": 501, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "CommandName": "Get-PnPGroupPermissions", - "Id": 501 + "Rank": 1, + "CommandName": "Get-PnPGroupPermissions" }, { - "Rank": 1, + "Id": 502, "Command": "Get-PnPHideDefaultThemes", - "CommandName": "Get-PnPHideDefaultThemes", - "Id": 502 + "Rank": 1, + "CommandName": "Get-PnPHideDefaultThemes" }, { - "Rank": 1, + "Id": 503, "Command": "Get-PnPHomePage", - "CommandName": "Get-PnPHomePage", - "Id": 503 + "Rank": 1, + "CommandName": "Get-PnPHomePage" }, { - "Rank": 1, + "Id": 504, "Command": "Get-PnPHomeSite", - "CommandName": "Get-PnPHomeSite", - "Id": 504 + "Rank": 1, + "CommandName": "Get-PnPHomeSite" }, { - "Rank": 2, + "Id": 505, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "CommandName": "Get-PnPHomeSite", - "Id": 505 + "Rank": 2, + "CommandName": "Get-PnPHomeSite" }, { - "Rank": 3, + "Id": 506, "Command": "Get-PnPHomeSite -Detailed", - "CommandName": "Get-PnPHomeSite", - "Id": 506 + "Rank": 3, + "CommandName": "Get-PnPHomeSite" }, { - "Rank": 1, + "Id": 507, "Command": "Get-PnPHubSite", - "CommandName": "Get-PnPHubSite", - "Id": 507 + "Rank": 1, + "CommandName": "Get-PnPHubSite" }, { - "Rank": 2, + "Id": 508, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSite", - "Id": 508 + "Rank": 2, + "CommandName": "Get-PnPHubSite" }, { - "Rank": 3, + "Id": 509, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "CommandName": "Get-PnPHubSite", - "Id": 509 + "Rank": 3, + "CommandName": "Get-PnPHubSite" }, { - "Rank": 1, + "Id": 510, "Command": "Get-PnPHubSiteChild", - "CommandName": "Get-PnPHubSiteChild", - "Id": 510 + "Rank": 1, + "CommandName": "Get-PnPHubSiteChild" }, { - "Rank": 2, + "Id": 511, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSiteChild", - "Id": 511 + "Rank": 2, + "CommandName": "Get-PnPHubSiteChild" }, { - "Rank": 1, + "Id": 512, "Command": "Get-PnPInPlaceRecordsManagement", - "CommandName": "Get-PnPInPlaceRecordsManagement", - "Id": 512 + "Rank": 1, + "CommandName": "Get-PnPInPlaceRecordsManagement" }, { - "Rank": 1, + "Id": 513, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "CommandName": "Get-PnPIsSiteAliasAvailable", - "Id": 513 + "Rank": 1, + "CommandName": "Get-PnPIsSiteAliasAvailable" }, { - "Rank": 1, + "Id": 514, "Command": "Get-PnPJavaScriptLink", - "CommandName": "Get-PnPJavaScriptLink", - "Id": 514 + "Rank": 1, + "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 2, + "Id": 515, "Command": "Get-PnPJavaScriptLink -Scope All", - "CommandName": "Get-PnPJavaScriptLink", - "Id": 515 + "Rank": 2, + "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 3, + "Id": 516, "Command": "Get-PnPJavaScriptLink -Scope Web", - "CommandName": "Get-PnPJavaScriptLink", - "Id": 516 + "Rank": 3, + "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 4, + "Id": 517, "Command": "Get-PnPJavaScriptLink -Scope Site", - "CommandName": "Get-PnPJavaScriptLink", - "Id": 517 + "Rank": 4, + "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 5, + "Id": 518, "Command": "Get-PnPJavaScriptLink -Name Test", - "CommandName": "Get-PnPJavaScriptLink", - "Id": 518 + "Rank": 5, + "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 1, + "Id": 519, "Command": "Get-PnPKnowledgeHubSite", - "CommandName": "Get-PnPKnowledgeHubSite", - "Id": 519 + "Rank": 1, + "CommandName": "Get-PnPKnowledgeHubSite" }, { - "Rank": 1, + "Id": 520, "Command": "Get-PnPLabel", - "CommandName": "Get-PnPLabel", - "Id": 520 + "Rank": 1, + "CommandName": "Get-PnPLabel" }, { - "Rank": 2, + "Id": 521, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "CommandName": "Get-PnPLabel", - "Id": 521 + "Rank": 2, + "CommandName": "Get-PnPLabel" }, { - "Rank": 1, + "Id": 522, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "CommandName": "Get-PnPLargeListOperationStatus", - "Id": 522 + "Rank": 1, + "CommandName": "Get-PnPLargeListOperationStatus" }, { - "Rank": 1, + "Id": 523, "Command": "Get-PnPList", - "CommandName": "Get-PnPList", - "Id": 523 + "Rank": 1, + "CommandName": "Get-PnPList" }, { - "Rank": 2, + "Id": 524, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Get-PnPList", - "Id": 524 + "Rank": 2, + "CommandName": "Get-PnPList" }, { - "Rank": 3, + "Id": 525, "Command": "Get-PnPList -Identity Lists/Announcements", - "CommandName": "Get-PnPList", - "Id": 525 + "Rank": 3, + "CommandName": "Get-PnPList" }, { - "Rank": 4, + "Id": 526, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "CommandName": "Get-PnPList", - "Id": 526 + "Rank": 4, + "CommandName": "Get-PnPList" }, { - "Rank": 5, + "Id": 527, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "CommandName": "Get-PnPList", - "Id": 527 + "Rank": 5, + "CommandName": "Get-PnPList" }, { - "Rank": 1, + "Id": 528, "Command": "Get-PnPListDesign", - "CommandName": "Get-PnPListDesign", - "Id": 528 + "Rank": 1, + "CommandName": "Get-PnPListDesign" }, { - "Rank": 2, + "Id": 529, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPListDesign", - "Id": 529 + "Rank": 2, + "CommandName": "Get-PnPListDesign" }, { - "Rank": 3, + "Id": 530, "Command": "Get-PnPListDesign -Identity ListEvent", - "CommandName": "Get-PnPListDesign", - "Id": 530 + "Rank": 3, + "CommandName": "Get-PnPListDesign" }, { - "Rank": 1, + "Id": 531, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "CommandName": "Get-PnPListInformationRightsManagement", - "Id": 531 + "Rank": 1, + "CommandName": "Get-PnPListInformationRightsManagement" }, { - "Rank": 1, + "Id": 532, "Command": "Get-PnPListItem -List Tasks", - "CommandName": "Get-PnPListItem", - "Id": 532 + "Rank": 1, + "CommandName": "Get-PnPListItem" }, { - "Rank": 2, + "Id": 533, "Command": "Get-PnPListItem -List Tasks -Id 1", - "CommandName": "Get-PnPListItem", - "Id": 533 + "Rank": 2, + "CommandName": "Get-PnPListItem" }, { - "Rank": 3, + "Id": 534, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "CommandName": "Get-PnPListItem", - "Id": 534 + "Rank": 3, + "CommandName": "Get-PnPListItem" }, { - "Rank": 4, + "Id": 535, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "CommandName": "Get-PnPListItem", - "Id": 535 + "Rank": 4, + "CommandName": "Get-PnPListItem" }, { - "Rank": 5, + "Id": 536, "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "CommandName": "Get-PnPListItem", - "Id": 536 + "Rank": 5, + "CommandName": "Get-PnPListItem" }, { - "Rank": 6, + "Id": 537, "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "CommandName": "Get-PnPListItem", - "Id": 537 + "Rank": 6, + "CommandName": "Get-PnPListItem" }, { - "Rank": 7, + "Id": 538, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "CommandName": "Get-PnPListItem", - "Id": 538 + "Rank": 7, + "CommandName": "Get-PnPListItem" }, { - "Rank": 8, + "Id": 539, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "CommandName": "Get-PnPListItem", - "Id": 539 + "Rank": 8, + "CommandName": "Get-PnPListItem" }, { - "Rank": 9, + "Id": 540, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "CommandName": "Get-PnPListItem", - "Id": 540 + "Rank": 9, + "CommandName": "Get-PnPListItem" }, { - "Rank": 1, + "Id": 541, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "CommandName": "Get-PnPListItemAttachment", - "Id": 541 + "Rank": 1, + "CommandName": "Get-PnPListItemAttachment" }, { - "Rank": 2, + "Id": 542, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "CommandName": "Get-PnPListItemAttachment", - "Id": 542 + "Rank": 2, + "CommandName": "Get-PnPListItemAttachment" }, { - "Rank": 1, + "Id": 543, "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "CommandName": "Get-PnPListItemComment", - "Id": 543 + "Rank": 1, + "CommandName": "Get-PnPListItemComment" }, { - "Rank": 1, + "Id": 544, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "CommandName": "Get-PnPListItemPermission", - "Id": 544 + "Rank": 1, + "CommandName": "Get-PnPListItemPermission" }, { - "Rank": 1, + "Id": 545, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "CommandName": "Get-PnPListItemVersion", - "Id": 545 + "Rank": 1, + "CommandName": "Get-PnPListItemVersion" }, { - "Rank": 1, + "Id": 546, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "CommandName": "Get-PnPListPermissions", - "Id": 546 + "Rank": 1, + "CommandName": "Get-PnPListPermissions" }, { - "Rank": 2, + "Id": 547, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "CommandName": "Get-PnPListPermissions", - "Id": 547 + "Rank": 2, + "CommandName": "Get-PnPListPermissions" }, { - "Rank": 1, + "Id": 548, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "CommandName": "Get-PnPListRecordDeclaration", - "Id": 548 + "Rank": 1, + "CommandName": "Get-PnPListRecordDeclaration" }, { - "Rank": 1, + "Id": 549, "Command": "Get-PnPMasterPage", - "CommandName": "Get-PnPMasterPage", - "Id": 549 + "Rank": 1, + "CommandName": "Get-PnPMasterPage" }, { - "Rank": 1, + "Id": 550, "Command": "Get-PnPMessageCenterAnnouncement", - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 550 + "Rank": 1, + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { - "Rank": 2, + "Id": 551, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 551 + "Rank": 2, + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { - "Rank": 1, + "Id": 552, "Command": "Get-PnPMicrosoft365ExpiringGroup", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 552 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Rank": 2, + "Id": 553, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 553 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Rank": 1, + "Id": 554, "Command": "Get-PnPMicrosoft365Group", - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 554 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 2, + "Id": 555, "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 555 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 3, + "Id": 556, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 556 + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 4, + "Id": 557, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 557 + "Rank": 4, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 5, + "Id": 558, "Command": "Get-PnPMicrosoft365Group -Identity $group", - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 558 + "Rank": 5, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 6, + "Id": 559, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 559 + "Rank": 6, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 1, + "Id": 560, "Command": "Get-PnPMicrosoft365GroupEndpoint", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 560 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Rank": 2, + "Id": 561, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 561 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Rank": 3, + "Id": 562, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 562 + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Rank": 1, + "Id": 563, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 563 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Rank": 2, + "Id": 564, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 564 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Rank": 3, + "Id": 565, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 565 + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Rank": 1, + "Id": 566, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 566 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { - "Rank": 2, + "Id": 567, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 567 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { - "Rank": 1, + "Id": 568, "Command": "Get-PnPMicrosoft365GroupSettings", - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 568 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { - "Rank": 2, + "Id": 569, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 569 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { - "Rank": 1, + "Id": 570, "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 570 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Rank": 2, + "Id": 571, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 571 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Rank": 1, + "Id": 572, "Command": "Get-PnPMicrosoft365GroupTeam", - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 572 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Rank": 2, + "Id": 573, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 573 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Rank": 3, + "Id": 574, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 574 + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Rank": 1, + "Id": 575, "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 575 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Rank": 2, + "Id": 576, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 576 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Rank": 3, + "Id": 577, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 577 + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Rank": 1, + "Id": 578, "Command": "Get-PnPNavigationNode", - "CommandName": "Get-PnPNavigationNode", - "Id": 578 + "Rank": 1, + "CommandName": "Get-PnPNavigationNode" }, { - "Rank": 2, + "Id": 579, "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "CommandName": "Get-PnPNavigationNode", - "Id": 579 + "Rank": 2, + "CommandName": "Get-PnPNavigationNode" }, { - "Rank": 3, + "Id": 580, "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "CommandName": "Get-PnPNavigationNode", - "Id": 580 + "Rank": 3, + "CommandName": "Get-PnPNavigationNode" }, { - "Rank": 1, + "Id": 581, "Command": "Get-PnPOrgAssetsLibrary", - "CommandName": "Get-PnPOrgAssetsLibrary", - "Id": 581 + "Rank": 1, + "CommandName": "Get-PnPOrgAssetsLibrary" }, { - "Rank": 1, + "Id": 582, "Command": "Get-PnPOrgNewsSite", - "CommandName": "Get-PnPOrgNewsSite", - "Id": 582 + "Rank": 1, + "CommandName": "Get-PnPOrgNewsSite" }, { - "Rank": 1, + "Id": 583, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "CommandName": "Get-PnPPage", - "Id": 583 + "Rank": 1, + "CommandName": "Get-PnPPage" }, { - "Rank": 2, + "Id": 584, "Command": "Get-PnPPage \"MyPage\"", - "CommandName": "Get-PnPPage", - "Id": 584 + "Rank": 2, + "CommandName": "Get-PnPPage" }, { - "Rank": 3, + "Id": 585, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "CommandName": "Get-PnPPage", - "Id": 585 + "Rank": 3, + "CommandName": "Get-PnPPage" }, { - "Rank": 4, + "Id": 586, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "CommandName": "Get-PnPPage", - "Id": 586 + "Rank": 4, + "CommandName": "Get-PnPPage" }, { - "Rank": 1, + "Id": 587, "Command": "Get-PnPPageComponent -Page Home", - "CommandName": "Get-PnPPageComponent", - "Id": 587 + "Rank": 1, + "CommandName": "Get-PnPPageComponent" }, { - "Rank": 2, + "Id": 588, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPPageComponent", - "Id": 588 + "Rank": 2, + "CommandName": "Get-PnPPageComponent" }, { - "Rank": 3, + "Id": 589, "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "CommandName": "Get-PnPPageComponent", - "Id": 589 + "Rank": 3, + "CommandName": "Get-PnPPageComponent" }, { - "Rank": 1, + "Id": 590, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerBucket", - "Id": 590 + "Rank": 1, + "CommandName": "Get-PnPPlannerBucket" }, { - "Rank": 1, + "Id": 591, "Command": "Get-PnPPlannerConfiguration", - "CommandName": "Get-PnPPlannerConfiguration", - "Id": 591 + "Rank": 1, + "CommandName": "Get-PnPPlannerConfiguration" }, { - "Rank": 1, + "Id": 592, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "CommandName": "Get-PnPPlannerPlan", - "Id": 592 + "Rank": 1, + "CommandName": "Get-PnPPlannerPlan" }, { - "Rank": 2, + "Id": 593, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "CommandName": "Get-PnPPlannerPlan", - "Id": 593 + "Rank": 2, + "CommandName": "Get-PnPPlannerPlan" }, { - "Rank": 3, + "Id": 594, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "CommandName": "Get-PnPPlannerPlan", - "Id": 594 + "Rank": 3, + "CommandName": "Get-PnPPlannerPlan" }, { - "Rank": 1, + "Id": 595, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Get-PnPPlannerRosterMember", - "Id": 595 + "Rank": 1, + "CommandName": "Get-PnPPlannerRosterMember" }, { - "Rank": 1, + "Id": 596, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 596 + "Rank": 1, + "CommandName": "Get-PnPPlannerRosterPlan" }, { - "Rank": 2, + "Id": 597, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 597 + "Rank": 2, + "CommandName": "Get-PnPPlannerRosterPlan" }, { - "Rank": 1, + "Id": 598, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerTask", - "Id": 598 + "Rank": 1, + "CommandName": "Get-PnPPlannerTask" }, { - "Rank": 2, + "Id": 599, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask", - "Id": 599 + "Rank": 2, + "CommandName": "Get-PnPPlannerTask" }, { - "Rank": 3, + "Id": 600, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask", - "Id": 600 + "Rank": 3, + "CommandName": "Get-PnPPlannerTask" }, { - "Rank": 1, + "Id": 601, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerUserPolicy", - "Id": 601 + "Rank": 1, + "CommandName": "Get-PnPPlannerUserPolicy" }, { - "Rank": 1, + "Id": 602, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "CommandName": "Get-PnPPowerPlatformConnector", - "Id": 602 + "Rank": 1, + "CommandName": "Get-PnPPowerPlatformConnector" }, { - "Rank": 1, + "Id": 603, "Command": "Get-PnPPowerPlatformEnvironment", - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 603 + "Rank": 1, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Rank": 2, + "Id": 604, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 604 + "Rank": 2, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Rank": 3, + "Id": 605, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 605 + "Rank": 3, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Rank": 1, + "Id": 606, "Command": "Get-PnPPowerShellTelemetryEnabled", - "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Id": 606 + "Rank": 1, + "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { - "Rank": 1, + "Id": 607, "Command": "Get-PnPPropertyBag", - "CommandName": "Get-PnPPropertyBag", - "Id": 607 + "Rank": 1, + "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 2, + "Id": 608, "Command": "Get-PnPPropertyBag -Key MyKey", - "CommandName": "Get-PnPPropertyBag", - "Id": 608 + "Rank": 2, + "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 3, + "Id": 609, "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "CommandName": "Get-PnPPropertyBag", - "Id": 609 + "Rank": 3, + "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 4, + "Id": 610, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag", - "Id": 610 + "Rank": 4, + "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 5, + "Id": 611, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag", - "Id": 611 + "Rank": 5, + "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 1, + "Id": 612, "Command": "Get-PnPPublishingImageRendition", - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 612 + "Rank": 1, + "CommandName": "Get-PnPPublishingImageRendition" }, { - "Rank": 2, + "Id": 613, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 613 + "Rank": 2, + "CommandName": "Get-PnPPublishingImageRendition" }, { - "Rank": 3, + "Id": 614, "Command": "Get-PnPPublishingImageRendition -Identity 2", - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 614 + "Rank": 3, + "CommandName": "Get-PnPPublishingImageRendition" }, { - "Rank": 1, + "Id": 615, "Command": "Get-PnPRecycleBinItem", - "CommandName": "Get-PnPRecycleBinItem", - "Id": 615 + "Rank": 1, + "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 2, + "Id": 616, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "CommandName": "Get-PnPRecycleBinItem", - "Id": 616 + "Rank": 2, + "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 3, + "Id": 617, "Command": "Get-PnPRecycleBinItem -FirstStage", - "CommandName": "Get-PnPRecycleBinItem", - "Id": 617 + "Rank": 3, + "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 4, + "Id": 618, "Command": "Get-PnPRecycleBinItem -SecondStage", - "CommandName": "Get-PnPRecycleBinItem", - "Id": 618 + "Rank": 4, + "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 5, + "Id": 619, "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "CommandName": "Get-PnPRecycleBinItem", - "Id": 619 + "Rank": 5, + "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 1, + "Id": 620, "Command": "Get-PnPRequestAccessEmails", - "CommandName": "Get-PnPRequestAccessEmails", - "Id": 620 + "Rank": 1, + "CommandName": "Get-PnPRequestAccessEmails" }, { - "Rank": 1, + "Id": 621, "Command": "Get-PnPRoleDefinition", - "CommandName": "Get-PnPRoleDefinition", - "Id": 621 + "Rank": 1, + "CommandName": "Get-PnPRoleDefinition" }, { - "Rank": 2, + "Id": 622, "Command": "Get-PnPRoleDefinition -Identity Read", - "CommandName": "Get-PnPRoleDefinition", - "Id": 622 + "Rank": 2, + "CommandName": "Get-PnPRoleDefinition" }, { - "Rank": 3, + "Id": 623, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "CommandName": "Get-PnPRoleDefinition", - "Id": 623 + "Rank": 3, + "CommandName": "Get-PnPRoleDefinition" }, { - "Rank": 1, + "Id": 624, "Command": "Get-PnPSearchConfiguration", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 624 + "Rank": 1, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 2, + "Id": 625, "Command": "Get-PnPSearchConfiguration -Scope Site", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 625 + "Rank": 2, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 3, + "Id": 626, "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 626 + "Rank": 3, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 4, + "Id": 627, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 627 + "Rank": 4, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 5, + "Id": 628, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 628 + "Rank": 5, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 6, + "Id": 629, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 629 + "Rank": 6, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 7, + "Id": 630, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 630 + "Rank": 7, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 8, + "Id": 631, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 631 + "Rank": 8, + "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 1, + "Id": 632, "Command": "Get-PnPSearchCrawlLog", - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 632 + "Rank": 1, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 2, + "Id": 633, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 633 + "Rank": 2, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 3, + "Id": 634, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 634 + "Rank": 3, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 4, + "Id": 635, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 635 + "Rank": 4, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 5, + "Id": 636, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 636 + "Rank": 5, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 6, + "Id": 637, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 637 + "Rank": 6, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 7, + "Id": 638, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 638 + "Rank": 7, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 1, + "Id": 639, "Command": "Get-PnPSearchSettings", - "CommandName": "Get-PnPSearchSettings", - "Id": 639 + "Rank": 1, + "CommandName": "Get-PnPSearchSettings" }, { - "Rank": 1, + "Id": 640, "Command": "Get-PnPServiceCurrentHealth", - "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 640 + "Rank": 1, + "CommandName": "Get-PnPServiceCurrentHealth" }, { - "Rank": 2, + "Id": 641, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 641 + "Rank": 2, + "CommandName": "Get-PnPServiceCurrentHealth" }, { - "Rank": 1, + "Id": 642, "Command": "Get-PnPServiceHealthIssue", - "CommandName": "Get-PnPServiceHealthIssue", - "Id": 642 + "Rank": 1, + "CommandName": "Get-PnPServiceHealthIssue" }, { - "Rank": 2, + "Id": 643, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "CommandName": "Get-PnPServiceHealthIssue", - "Id": 643 + "Rank": 2, + "CommandName": "Get-PnPServiceHealthIssue" }, { - "Rank": 1, + "Id": 644, "Command": "Get-PnPSharePointAddIn", - "CommandName": "Get-PnPSharePointAddIn", - "Id": 644 + "Rank": 1, + "CommandName": "Get-PnPSharePointAddIn" }, { - "Rank": 2, + "Id": 645, "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "CommandName": "Get-PnPSharePointAddIn", - "Id": 645 + "Rank": 2, + "CommandName": "Get-PnPSharePointAddIn" }, { - "Rank": 1, + "Id": 646, "Command": "Get-PnPSharingForNonOwnersOfSite", - "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Id": 646 + "Rank": 1, + "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { - "Rank": 1, + "Id": 647, "Command": "Get-PnPSite", - "CommandName": "Get-PnPSite", - "Id": 647 + "Rank": 1, + "CommandName": "Get-PnPSite" }, { - "Rank": 2, + "Id": 648, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "CommandName": "Get-PnPSite", - "Id": 648 + "Rank": 2, + "CommandName": "Get-PnPSite" }, { - "Rank": 1, + "Id": 649, "Command": "Get-PnPSiteClosure", - "CommandName": "Get-PnPSiteClosure", - "Id": 649 + "Rank": 1, + "CommandName": "Get-PnPSiteClosure" }, { - "Rank": 1, + "Id": 650, "Command": "Get-PnPSiteCollectionAdmin", - "CommandName": "Get-PnPSiteCollectionAdmin", - "Id": 650 + "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAdmin" }, { - "Rank": 1, + "Id": 651, "Command": "Get-PnPSiteCollectionAppCatalog", - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 651 + "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Rank": 2, + "Id": 652, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 652 + "Rank": 2, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Rank": 3, + "Id": 653, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 653 + "Rank": 3, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Rank": 1, + "Id": 654, "Command": "Get-PnPSiteCollectionTermStore", - "CommandName": "Get-PnPSiteCollectionTermStore", - "Id": 654 + "Rank": 1, + "CommandName": "Get-PnPSiteCollectionTermStore" }, { - "Rank": 1, + "Id": 655, "Command": "Get-PnPSiteDesign", - "CommandName": "Get-PnPSiteDesign", - "Id": 655 + "Rank": 1, + "CommandName": "Get-PnPSiteDesign" }, { - "Rank": 2, + "Id": 656, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesign", - "Id": 656 + "Rank": 2, + "CommandName": "Get-PnPSiteDesign" }, { - "Rank": 1, + "Id": 657, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesignRights", - "Id": 657 + "Rank": 1, + "CommandName": "Get-PnPSiteDesignRights" }, { - "Rank": 1, + "Id": 658, "Command": "Get-PnPSiteDesignRun", - "CommandName": "Get-PnPSiteDesignRun", - "Id": 658 + "Rank": 1, + "CommandName": "Get-PnPSiteDesignRun" }, { - "Rank": 2, + "Id": 659, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignRun", - "Id": 659 + "Rank": 2, + "CommandName": "Get-PnPSiteDesignRun" }, { - "Rank": 1, + "Id": 660, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Get-PnPSiteDesignTask", - "Id": 660 + "Rank": 1, + "CommandName": "Get-PnPSiteDesignTask" }, { - "Rank": 2, + "Id": 661, "Command": "Get-PnPSiteDesignTask", - "CommandName": "Get-PnPSiteDesignTask", - "Id": 661 + "Rank": 2, + "CommandName": "Get-PnPSiteDesignTask" }, { - "Rank": 3, + "Id": 662, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignTask", - "Id": 662 + "Rank": 3, + "CommandName": "Get-PnPSiteDesignTask" }, { - "Rank": 1, + "Id": 663, "Command": "Get-PnPSiteGroup", - "CommandName": "Get-PnPSiteGroup", - "Id": 663 + "Rank": 1, + "CommandName": "Get-PnPSiteGroup" }, { - "Rank": 2, + "Id": 664, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup", - "Id": 664 + "Rank": 2, + "CommandName": "Get-PnPSiteGroup" }, { - "Rank": 3, + "Id": 665, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "CommandName": "Get-PnPSiteGroup", - "Id": 665 + "Rank": 3, + "CommandName": "Get-PnPSiteGroup" }, { - "Rank": 4, + "Id": 666, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup", - "Id": 666 + "Rank": 4, + "CommandName": "Get-PnPSiteGroup" }, { - "Rank": 1, + "Id": 667, "Command": "Get-PnPSitePolicy", - "CommandName": "Get-PnPSitePolicy", - "Id": 667 + "Rank": 1, + "CommandName": "Get-PnPSitePolicy" }, { - "Rank": 2, + "Id": 668, "Command": "Get-PnPSitePolicy -AllAvailable", - "CommandName": "Get-PnPSitePolicy", - "Id": 668 + "Rank": 2, + "CommandName": "Get-PnPSitePolicy" }, { - "Rank": 3, + "Id": 669, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Get-PnPSitePolicy", - "Id": 669 + "Rank": 3, + "CommandName": "Get-PnPSitePolicy" }, { - "Rank": 1, + "Id": 670, "Command": "Get-PnPSiteScript", - "CommandName": "Get-PnPSiteScript", - "Id": 670 + "Rank": 1, + "CommandName": "Get-PnPSiteScript" }, { - "Rank": 2, + "Id": 671, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteScript", - "Id": 671 + "Rank": 2, + "CommandName": "Get-PnPSiteScript" }, { - "Rank": 1, + "Id": 672, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 672 + "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromList" }, { - "Rank": 2, + "Id": 673, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 673 + "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromList" }, { - "Rank": 3, + "Id": 674, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 674 + "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromList" }, { - "Rank": 1, + "Id": 675, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 675 + "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 2, + "Id": 676, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 676 + "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 3, + "Id": 677, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 677 + "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 4, + "Id": 678, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 678 + "Rank": 4, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 5, + "Id": 679, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 679 + "Rank": 5, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 6, + "Id": 680, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 680 + "Rank": 6, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 1, + "Id": 681, "Command": "Get-PnPSiteSearchQueryResults", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 681 + "Rank": 1, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 2, + "Id": 682, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 682 + "Rank": 2, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 3, + "Id": 683, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 683 + "Rank": 3, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 4, + "Id": 684, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 684 + "Rank": 4, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 5, + "Id": 685, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 685 + "Rank": 5, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 6, + "Id": 686, "Command": "Get-PnPSiteSearchQueryResults -All", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 686 + "Rank": 6, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 1, + "Id": 687, "Command": "Get-PnPSiteSensitivityLabel", - "CommandName": "Get-PnPSiteSensitivityLabel", - "Id": 687 + "Rank": 1, + "CommandName": "Get-PnPSiteSensitivityLabel" }, { - "Rank": 1, + "Id": 688, "Command": "Get-PnPSiteTemplate -Out template.pnp", - "CommandName": "Get-PnPSiteTemplate", - "Id": 688 + "Rank": 1, + "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 2, + "Id": 689, "Command": "Get-PnPSiteTemplate -Out template.xml", - "CommandName": "Get-PnPSiteTemplate", - "Id": 689 + "Rank": 2, + "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 3, + "Id": 690, "Command": "Get-PnPSiteTemplate -Out template.md", - "CommandName": "Get-PnPSiteTemplate", - "Id": 690 + "Rank": 3, + "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 4, + "Id": 691, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "CommandName": "Get-PnPSiteTemplate", - "Id": 691 + "Rank": 4, + "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 5, + "Id": 692, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "CommandName": "Get-PnPSiteTemplate", - "Id": 692 + "Rank": 5, + "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 6, + "Id": 693, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "CommandName": "Get-PnPSiteTemplate", - "Id": 693 + "Rank": 6, + "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 7, + "Id": 694, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "CommandName": "Get-PnPSiteTemplate", - "Id": 694 + "Rank": 7, + "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 8, + "Id": 695, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "CommandName": "Get-PnPSiteTemplate", - "Id": 695 + "Rank": 8, + "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 9, + "Id": 696, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate", - "Id": 696 + "Rank": 9, + "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 10, + "Id": 697, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "CommandName": "Get-PnPSiteTemplate", - "Id": 697 + "Rank": 10, + "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 11, + "Id": 698, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "CommandName": "Get-PnPSiteTemplate", - "Id": 698 + "Rank": 11, + "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 12, + "Id": 699, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "CommandName": "Get-PnPSiteTemplate", - "Id": 699 + "Rank": 12, + "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 13, + "Id": 700, "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", - "CommandName": "Get-PnPSiteTemplate", - "Id": 700 + "Rank": 13, + "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 14, + "Id": 701, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate", - "Id": 701 + "Rank": 14, + "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 1, + "Id": 702, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Get-PnPSiteUserInvitations", - "Id": 702 + "Rank": 1, + "CommandName": "Get-PnPSiteUserInvitations" }, { - "Rank": 1, + "Id": 703, "Command": "Get-PnPStorageEntity", - "CommandName": "Get-PnPStorageEntity", - "Id": 703 + "Rank": 1, + "CommandName": "Get-PnPStorageEntity" }, { - "Rank": 2, + "Id": 704, "Command": "Get-PnPStorageEntity -Key MyKey", - "CommandName": "Get-PnPStorageEntity", - "Id": 704 + "Rank": 2, + "CommandName": "Get-PnPStorageEntity" }, { - "Rank": 3, + "Id": 705, "Command": "Get-PnPStorageEntity -Scope Site", - "CommandName": "Get-PnPStorageEntity", - "Id": 705 + "Rank": 3, + "CommandName": "Get-PnPStorageEntity" }, { - "Rank": 4, + "Id": 706, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Get-PnPStorageEntity", - "Id": 706 + "Rank": 4, + "CommandName": "Get-PnPStorageEntity" }, { - "Rank": 1, + "Id": 707, "Command": "Get-PnPStoredCredential -Name O365", - "CommandName": "Get-PnPStoredCredential", - "Id": 707 + "Rank": 1, + "CommandName": "Get-PnPStoredCredential" }, { - "Rank": 1, + "Id": 708, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Id": 708 + "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { - "Rank": 1, + "Id": 709, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Id": 709 + "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { - "Rank": 1, + "Id": 710, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Id": 710 + "Rank": 1, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { - "Rank": 1, + "Id": 711, "Command": "Get-PnPSubWeb", - "CommandName": "Get-PnPSubWeb", - "Id": 711 + "Rank": 1, + "CommandName": "Get-PnPSubWeb" }, { - "Rank": 2, + "Id": 712, "Command": "Get-PnPSubWeb -Recurse", - "CommandName": "Get-PnPSubWeb", - "Id": 712 + "Rank": 2, + "CommandName": "Get-PnPSubWeb" }, { - "Rank": 3, + "Id": 713, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "CommandName": "Get-PnPSubWeb", - "Id": 713 + "Rank": 3, + "CommandName": "Get-PnPSubWeb" }, { - "Rank": 4, + "Id": 714, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "CommandName": "Get-PnPSubWeb", - "Id": 714 + "Rank": 4, + "CommandName": "Get-PnPSubWeb" }, { - "Rank": 5, + "Id": 715, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "CommandName": "Get-PnPSubWeb", - "Id": 715 + "Rank": 5, + "CommandName": "Get-PnPSubWeb" }, { - "Rank": 1, + "Id": 716, "Command": "Get-PnPSyntexModel", - "CommandName": "Get-PnPSyntexModel", - "Id": 716 + "Rank": 1, + "CommandName": "Get-PnPSyntexModel" }, { - "Rank": 2, + "Id": 717, "Command": "Get-PnPSyntexModel -Identity 1", - "CommandName": "Get-PnPSyntexModel", - "Id": 717 + "Rank": 2, + "CommandName": "Get-PnPSyntexModel" }, { - "Rank": 3, + "Id": 718, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModel", - "Id": 718 + "Rank": 3, + "CommandName": "Get-PnPSyntexModel" }, { - "Rank": 1, + "Id": 719, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModelPublication", - "Id": 719 + "Rank": 1, + "CommandName": "Get-PnPSyntexModelPublication" }, { - "Rank": 1, + "Id": 720, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "CommandName": "Get-PnPTaxonomyItem", - "Id": 720 + "Rank": 1, + "CommandName": "Get-PnPTaxonomyItem" }, { - "Rank": 1, + "Id": 721, "Command": "Get-PnPTeamsApp", - "CommandName": "Get-PnPTeamsApp", - "Id": 721 + "Rank": 1, + "CommandName": "Get-PnPTeamsApp" }, { - "Rank": 2, + "Id": 722, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "CommandName": "Get-PnPTeamsApp", - "Id": 722 + "Rank": 2, + "CommandName": "Get-PnPTeamsApp" }, { - "Rank": 3, + "Id": 723, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "CommandName": "Get-PnPTeamsApp", - "Id": 723 + "Rank": 3, + "CommandName": "Get-PnPTeamsApp" }, { - "Rank": 1, + "Id": 724, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "CommandName": "Get-PnPTeamsChannel", - "Id": 724 + "Rank": 1, + "CommandName": "Get-PnPTeamsChannel" }, { - "Rank": 2, + "Id": 725, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannel", - "Id": 725 + "Rank": 2, + "CommandName": "Get-PnPTeamsChannel" }, { - "Rank": 3, + "Id": 726, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannel", - "Id": 726 + "Rank": 3, + "CommandName": "Get-PnPTeamsChannel" }, { - "Rank": 1, + "Id": 727, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 727 + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { - "Rank": 2, + "Id": 728, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 728 + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { - "Rank": 1, + "Id": 729, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 729 + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessage" }, { - "Rank": 2, + "Id": 730, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 730 + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessage" }, { - "Rank": 1, + "Id": 731, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 731 + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { - "Rank": 2, + "Id": 732, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 732 + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { - "Rank": 1, + "Id": 733, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 733 + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelUser" }, { - "Rank": 2, + "Id": 734, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 734 + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelUser" }, { - "Rank": 3, + "Id": 735, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 735 + "Rank": 3, + "CommandName": "Get-PnPTeamsChannelUser" }, { - "Rank": 4, + "Id": 736, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 736 + "Rank": 4, + "CommandName": "Get-PnPTeamsChannelUser" }, { - "Rank": 1, + "Id": 737, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 737 + "Rank": 1, + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { - "Rank": 2, + "Id": 738, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 738 + "Rank": 2, + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { - "Rank": 1, + "Id": 739, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "CommandName": "Get-PnPTeamsTab", - "Id": 739 + "Rank": 1, + "CommandName": "Get-PnPTeamsTab" }, { - "Rank": 2, + "Id": 740, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "CommandName": "Get-PnPTeamsTab", - "Id": 740 + "Rank": 2, + "CommandName": "Get-PnPTeamsTab" }, { - "Rank": 3, + "Id": 741, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", - "CommandName": "Get-PnPTeamsTab", - "Id": 741 + "Rank": 3, + "CommandName": "Get-PnPTeamsTab" }, { - "Rank": 4, + "Id": 742, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsTab", - "Id": 742 + "Rank": 4, + "CommandName": "Get-PnPTeamsTab" }, { - "Rank": 5, + "Id": 743, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "CommandName": "Get-PnPTeamsTab", - "Id": 743 + "Rank": 5, + "CommandName": "Get-PnPTeamsTab" }, { - "Rank": 1, + "Id": 744, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Get-PnPTeamsTag", - "Id": 744 + "Rank": 1, + "CommandName": "Get-PnPTeamsTag" }, { - "Rank": 2, + "Id": 745, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Get-PnPTeamsTag", - "Id": 745 + "Rank": 2, + "CommandName": "Get-PnPTeamsTag" }, { - "Rank": 1, + "Id": 746, "Command": "Get-PnPTeamsTeam", - "CommandName": "Get-PnPTeamsTeam", - "Id": 746 + "Rank": 1, + "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 2, + "Id": 747, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "CommandName": "Get-PnPTeamsTeam", - "Id": 747 + "Rank": 2, + "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 3, + "Id": 748, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "CommandName": "Get-PnPTeamsTeam", - "Id": 748 + "Rank": 3, + "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 4, + "Id": 749, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam", - "Id": 749 + "Rank": 4, + "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 5, + "Id": 750, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam", - "Id": 750 + "Rank": 5, + "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 1, + "Id": 751, "Command": "Get-PnPTeamsUser -Team MyTeam", - "CommandName": "Get-PnPTeamsUser", - "Id": 751 + "Rank": 1, + "CommandName": "Get-PnPTeamsUser" }, { - "Rank": 2, + "Id": 752, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "CommandName": "Get-PnPTeamsUser", - "Id": 752 + "Rank": 2, + "CommandName": "Get-PnPTeamsUser" }, { - "Rank": 3, + "Id": 753, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "CommandName": "Get-PnPTeamsUser", - "Id": 753 + "Rank": 3, + "CommandName": "Get-PnPTeamsUser" }, { - "Rank": 4, + "Id": 754, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "CommandName": "Get-PnPTeamsUser", - "Id": 754 + "Rank": 4, + "CommandName": "Get-PnPTeamsUser" }, { - "Rank": 1, + "Id": 755, "Command": "Get-PnPTemporarilyDisableAppBar", - "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Id": 755 + "Rank": 1, + "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { - "Rank": 1, + "Id": 756, "Command": "Get-PnPTenant", - "CommandName": "Get-PnPTenant", - "Id": 756 + "Rank": 1, + "CommandName": "Get-PnPTenant" }, { - "Rank": 1, + "Id": 757, "Command": "Get-PnPTenantAppCatalogUrl", - "CommandName": "Get-PnPTenantAppCatalogUrl", - "Id": 757 + "Rank": 1, + "CommandName": "Get-PnPTenantAppCatalogUrl" }, { - "Rank": 1, + "Id": 758, "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "CommandName": "Get-PnPTenantCdnEnabled", - "Id": 758 + "Rank": 1, + "CommandName": "Get-PnPTenantCdnEnabled" }, { - "Rank": 1, + "Id": 759, "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "CommandName": "Get-PnPTenantCdnOrigin", - "Id": 759 + "Rank": 1, + "CommandName": "Get-PnPTenantCdnOrigin" }, { - "Rank": 1, + "Id": 760, "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "CommandName": "Get-PnPTenantCdnPolicies", - "Id": 760 + "Rank": 1, + "CommandName": "Get-PnPTenantCdnPolicies" }, { - "Rank": 1, + "Id": 761, "Command": "Get-PnPTenantDeletedSite", - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 761 + "Rank": 1, + "CommandName": "Get-PnPTenantDeletedSite" }, { - "Rank": 2, + "Id": 762, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 762 + "Rank": 2, + "CommandName": "Get-PnPTenantDeletedSite" }, { - "Rank": 3, + "Id": 763, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 763 + "Rank": 3, + "CommandName": "Get-PnPTenantDeletedSite" }, { - "Rank": 4, + "Id": 764, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 764 + "Rank": 4, + "CommandName": "Get-PnPTenantDeletedSite" }, { - "Rank": 1, + "Id": 765, "Command": "Get-PnPTenantId", - "CommandName": "Get-PnPTenantId", - "Id": 765 + "Rank": 1, + "CommandName": "Get-PnPTenantId" }, { - "Rank": 2, + "Id": 766, "Command": "Get-PnPTenantId contoso", - "CommandName": "Get-PnPTenantId", - "Id": 766 + "Rank": 2, + "CommandName": "Get-PnPTenantId" }, { - "Rank": 3, + "Id": 767, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "CommandName": "Get-PnPTenantId", - "Id": 767 + "Rank": 3, + "CommandName": "Get-PnPTenantId" }, { - "Rank": 4, + "Id": 768, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "CommandName": "Get-PnPTenantId", - "Id": 768 + "Rank": 4, + "CommandName": "Get-PnPTenantId" }, { - "Rank": 1, + "Id": 769, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "CommandName": "Get-PnPTenantInfo", - "Id": 769 + "Rank": 1, + "CommandName": "Get-PnPTenantInfo" }, { - "Rank": 2, + "Id": 770, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "CommandName": "Get-PnPTenantInfo", - "Id": 770 + "Rank": 2, + "CommandName": "Get-PnPTenantInfo" }, { - "Rank": 3, + "Id": 771, "Command": "Get-PnPTenantInfo", - "CommandName": "Get-PnPTenantInfo", - "Id": 771 + "Rank": 3, + "CommandName": "Get-PnPTenantInfo" }, { - "Rank": 4, + "Id": 772, "Command": "Get-PnPTenantInfo -CurrentTenant", - "CommandName": "Get-PnPTenantInfo", - "Id": 772 + "Rank": 4, + "CommandName": "Get-PnPTenantInfo" }, { - "Rank": 1, + "Id": 773, "Command": "Get-PnPTenantInstance", - "CommandName": "Get-PnPTenantInstance", - "Id": 773 + "Rank": 1, + "CommandName": "Get-PnPTenantInstance" }, { - "Rank": 1, + "Id": 774, "Command": "Get-PnPTenantRecycleBinItem", - "CommandName": "Get-PnPTenantRecycleBinItem", - "Id": 774 + "Rank": 1, + "CommandName": "Get-PnPTenantRecycleBinItem" }, { - "Rank": 1, + "Id": 775, "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "CommandName": "Get-PnPTenantSequence", - "Id": 775 + "Rank": 1, + "CommandName": "Get-PnPTenantSequence" }, { - "Rank": 2, + "Id": 776, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "CommandName": "Get-PnPTenantSequence", - "Id": 776 + "Rank": 2, + "CommandName": "Get-PnPTenantSequence" }, { - "Rank": 1, + "Id": 777, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "CommandName": "Get-PnPTenantSequenceSite", - "Id": 777 + "Rank": 1, + "CommandName": "Get-PnPTenantSequenceSite" }, { - "Rank": 2, + "Id": 778, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "CommandName": "Get-PnPTenantSequenceSite", - "Id": 778 + "Rank": 2, + "CommandName": "Get-PnPTenantSequenceSite" }, { - "Rank": 1, + "Id": 779, "Command": "Get-PnPTenantSite", - "CommandName": "Get-PnPTenantSite", - "Id": 779 + "Rank": 1, + "CommandName": "Get-PnPTenantSite" }, { - "Rank": 2, + "Id": 780, "Command": "Get-PnPTenantSite -Detailed", - "CommandName": "Get-PnPTenantSite", - "Id": 780 + "Rank": 2, + "CommandName": "Get-PnPTenantSite" }, { - "Rank": 3, + "Id": 781, "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "CommandName": "Get-PnPTenantSite", - "Id": 781 + "Rank": 3, + "CommandName": "Get-PnPTenantSite" }, { - "Rank": 4, + "Id": 782, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "CommandName": "Get-PnPTenantSite", - "Id": 782 + "Rank": 4, + "CommandName": "Get-PnPTenantSite" }, { - "Rank": 5, + "Id": 783, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "CommandName": "Get-PnPTenantSite", - "Id": 783 + "Rank": 5, + "CommandName": "Get-PnPTenantSite" }, { - "Rank": 6, + "Id": 784, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "CommandName": "Get-PnPTenantSite", - "Id": 784 + "Rank": 6, + "CommandName": "Get-PnPTenantSite" }, { - "Rank": 7, + "Id": 785, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "CommandName": "Get-PnPTenantSite", - "Id": 785 + "Rank": 7, + "CommandName": "Get-PnPTenantSite" }, { - "Rank": 8, + "Id": 786, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "CommandName": "Get-PnPTenantSite", - "Id": 786 + "Rank": 8, + "CommandName": "Get-PnPTenantSite" }, { - "Rank": 9, + "Id": 787, "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "CommandName": "Get-PnPTenantSite", - "Id": 787 + "Rank": 9, + "CommandName": "Get-PnPTenantSite" }, { - "Rank": 1, + "Id": 788, "Command": "Get-PnPTenantSyncClientRestriction", - "CommandName": "Get-PnPTenantSyncClientRestriction", - "Id": 788 + "Rank": 1, + "CommandName": "Get-PnPTenantSyncClientRestriction" }, { - "Rank": 1, + "Id": 789, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "CommandName": "Get-PnPTenantTemplate", - "Id": 789 + "Rank": 1, + "CommandName": "Get-PnPTenantTemplate" }, { - "Rank": 2, + "Id": 790, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "CommandName": "Get-PnPTenantTemplate", - "Id": 790 + "Rank": 2, + "CommandName": "Get-PnPTenantTemplate" }, { - "Rank": 3, + "Id": 791, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "CommandName": "Get-PnPTenantTemplate", - "Id": 791 + "Rank": 3, + "CommandName": "Get-PnPTenantTemplate" }, { - "Rank": 1, + "Id": 792, "Command": "Get-PnPTenantTheme", - "CommandName": "Get-PnPTenantTheme", - "Id": 792 + "Rank": 1, + "CommandName": "Get-PnPTenantTheme" }, { - "Rank": 2, + "Id": 793, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Get-PnPTenantTheme", - "Id": 793 + "Rank": 2, + "CommandName": "Get-PnPTenantTheme" }, { - "Rank": 3, + "Id": 794, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "CommandName": "Get-PnPTenantTheme", - "Id": 794 + "Rank": 3, + "CommandName": "Get-PnPTenantTheme" }, { - "Rank": 1, + "Id": 795, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", - "Id": 795 + "Rank": 1, + "CommandName": "Get-PnPTerm" }, { - "Rank": 2, + "Id": 796, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", - "Id": 796 + "Rank": 2, + "CommandName": "Get-PnPTerm" }, { - "Rank": 3, + "Id": 797, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", - "Id": 797 + "Rank": 3, + "CommandName": "Get-PnPTerm" }, { - "Rank": 4, + "Id": 798, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "CommandName": "Get-PnPTerm", - "Id": 798 + "Rank": 4, + "CommandName": "Get-PnPTerm" }, { - "Rank": 5, + "Id": 799, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "CommandName": "Get-PnPTerm", - "Id": 799 + "Rank": 5, + "CommandName": "Get-PnPTerm" }, { - "Rank": 1, + "Id": 800, "Command": "Get-PnPTermGroup", - "CommandName": "Get-PnPTermGroup", - "Id": 800 + "Rank": 1, + "CommandName": "Get-PnPTermGroup" }, { - "Rank": 2, + "Id": 801, "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "CommandName": "Get-PnPTermGroup", - "Id": 801 + "Rank": 2, + "CommandName": "Get-PnPTermGroup" }, { - "Rank": 3, + "Id": 802, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "CommandName": "Get-PnPTermGroup", - "Id": 802 + "Rank": 3, + "CommandName": "Get-PnPTermGroup" }, { - "Rank": 1, + "Id": 803, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "CommandName": "Get-PnPTermLabel", - "Id": 803 + "Rank": 1, + "CommandName": "Get-PnPTermLabel" }, { - "Rank": 2, + "Id": 804, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "CommandName": "Get-PnPTermLabel", - "Id": 804 + "Rank": 2, + "CommandName": "Get-PnPTermLabel" }, { - "Rank": 3, + "Id": 805, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermLabel", - "Id": 805 + "Rank": 3, + "CommandName": "Get-PnPTermLabel" }, { - "Rank": 1, + "Id": 806, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet", - "Id": 806 + "Rank": 1, + "CommandName": "Get-PnPTermSet" }, { - "Rank": 2, + "Id": 807, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet", - "Id": 807 + "Rank": 2, + "CommandName": "Get-PnPTermSet" }, { - "Rank": 3, + "Id": 808, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "CommandName": "Get-PnPTermSet", - "Id": 808 + "Rank": 3, + "CommandName": "Get-PnPTermSet" }, { - "Rank": 1, + "Id": 809, "Command": "Get-PnPTheme", - "CommandName": "Get-PnPTheme", - "Id": 809 + "Rank": 1, + "CommandName": "Get-PnPTheme" }, { - "Rank": 2, + "Id": 810, "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "CommandName": "Get-PnPTheme", - "Id": 810 + "Rank": 2, + "CommandName": "Get-PnPTheme" }, { - "Rank": 1, + "Id": 811, "Command": "Get-PnPTimeZoneId", - "CommandName": "Get-PnPTimeZoneId", - "Id": 811 + "Rank": 1, + "CommandName": "Get-PnPTimeZoneId" }, { - "Rank": 2, + "Id": 812, "Command": "Get-PnPTimeZoneId -Match Stockholm", - "CommandName": "Get-PnPTimeZoneId", - "Id": 812 + "Rank": 2, + "CommandName": "Get-PnPTimeZoneId" }, { - "Rank": 1, + "Id": 813, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "CommandName": "Get-PnPUnfurlLink", - "Id": 813 + "Rank": 1, + "CommandName": "Get-PnPUnfurlLink" }, { - "Rank": 1, + "Id": 814, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "CommandName": "Get-PnPUnifiedAuditLog", - "Id": 814 + "Rank": 1, + "CommandName": "Get-PnPUnifiedAuditLog" }, { - "Rank": 1, + "Id": 815, "Command": "Get-PnPUPABulkImportStatus", - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 815 + "Rank": 1, + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Rank": 2, + "Id": 816, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 816 + "Rank": 2, + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Rank": 3, + "Id": 817, "Command": "Get-PnPUPABulkImportStatus -JobId ", - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 817 + "Rank": 3, + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Rank": 4, + "Id": 818, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 818 + "Rank": 4, + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Rank": 1, + "Id": 819, "Command": "Get-PnPUser", - "CommandName": "Get-PnPUser", - "Id": 819 + "Rank": 1, + "CommandName": "Get-PnPUser" }, { - "Rank": 2, + "Id": 820, "Command": "Get-PnPUser -Identity 23", - "CommandName": "Get-PnPUser", - "Id": 820 + "Rank": 2, + "CommandName": "Get-PnPUser" }, { - "Rank": 3, + "Id": 821, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser", - "Id": 821 + "Rank": 3, + "CommandName": "Get-PnPUser" }, { - "Rank": 4, + "Id": 822, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser", - "Id": 822 + "Rank": 4, + "CommandName": "Get-PnPUser" }, { - "Rank": 5, + "Id": 823, "Command": "Get-PnPUser -WithRightsAssigned", - "CommandName": "Get-PnPUser", - "Id": 823 + "Rank": 5, + "CommandName": "Get-PnPUser" }, { - "Rank": 6, + "Id": 824, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "CommandName": "Get-PnPUser", - "Id": 824 + "Rank": 6, + "CommandName": "Get-PnPUser" }, { - "Rank": 7, + "Id": 825, "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "CommandName": "Get-PnPUser", - "Id": 825 + "Rank": 7, + "CommandName": "Get-PnPUser" }, { - "Rank": 1, + "Id": 826, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "CommandName": "Get-PnPUserOneDriveQuota", - "Id": 826 + "Rank": 1, + "CommandName": "Get-PnPUserOneDriveQuota" }, { - "Rank": 1, + "Id": 827, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "CommandName": "Get-PnPUserProfileProperty", - "Id": 827 + "Rank": 1, + "CommandName": "Get-PnPUserProfileProperty" }, { - "Rank": 2, + "Id": 828, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "CommandName": "Get-PnPUserProfileProperty", - "Id": 828 + "Rank": 2, + "CommandName": "Get-PnPUserProfileProperty" }, { - "Rank": 3, + "Id": 829, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "CommandName": "Get-PnPUserProfileProperty", - "Id": 829 + "Rank": 3, + "CommandName": "Get-PnPUserProfileProperty" }, { - "Rank": 1, + "Id": 830, "Command": "Get-PnPView -List \"Demo List\"", - "CommandName": "Get-PnPView", - "Id": 830 + "Rank": 1, + "CommandName": "Get-PnPView" }, { - "Rank": 2, + "Id": 831, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "CommandName": "Get-PnPView", - "Id": 831 + "Rank": 2, + "CommandName": "Get-PnPView" }, { - "Rank": 3, + "Id": 832, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "CommandName": "Get-PnPView", - "Id": 832 + "Rank": 3, + "CommandName": "Get-PnPView" }, { - "Rank": 1, + "Id": 833, "Command": "Get-PnPVivaConnectionsDashboardACE", - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 833 + "Rank": 1, + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { - "Rank": 2, + "Id": 834, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 834 + "Rank": 2, + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { - "Rank": 1, + "Id": 835, "Command": "Get-PnPWeb", - "CommandName": "Get-PnPWeb", - "Id": 835 + "Rank": 1, + "CommandName": "Get-PnPWeb" }, { - "Rank": 1, + "Id": 836, "Command": "Get-PnPWebHeader", - "CommandName": "Get-PnPWebHeader", - "Id": 836 + "Rank": 1, + "CommandName": "Get-PnPWebHeader" }, { - "Rank": 1, + "Id": 837, "Command": "Get-PnPWebhookSubscriptions -List MyList", - "CommandName": "Get-PnPWebhookSubscriptions", - "Id": 837 + "Rank": 1, + "CommandName": "Get-PnPWebhookSubscriptions" }, { - "Rank": 1, + "Id": 838, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "CommandName": "Get-PnPWebPart", - "Id": 838 + "Rank": 1, + "CommandName": "Get-PnPWebPart" }, { - "Rank": 2, + "Id": 839, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPart", - "Id": 839 + "Rank": 2, + "CommandName": "Get-PnPWebPart" }, { - "Rank": 1, + "Id": 840, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "CommandName": "Get-PnPWebPartProperty", - "Id": 840 + "Rank": 1, + "CommandName": "Get-PnPWebPartProperty" }, { - "Rank": 2, + "Id": 841, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "CommandName": "Get-PnPWebPartProperty", - "Id": 841 + "Rank": 2, + "CommandName": "Get-PnPWebPartProperty" }, { - "Rank": 1, + "Id": 842, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPartXml", - "Id": 842 + "Rank": 1, + "CommandName": "Get-PnPWebPartXml" }, { - "Rank": 1, + "Id": 843, "Command": "Get-PnPWebTemplates", - "CommandName": "Get-PnPWebTemplates", - "Id": 843 + "Rank": 1, + "CommandName": "Get-PnPWebTemplates" }, { - "Rank": 2, + "Id": 844, "Command": "Get-PnPWebTemplates -LCID 1033", - "CommandName": "Get-PnPWebTemplates", - "Id": 844 + "Rank": 2, + "CommandName": "Get-PnPWebTemplates" }, { - "Rank": 3, + "Id": 845, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "CommandName": "Get-PnPWebTemplates", - "Id": 845 + "Rank": 3, + "CommandName": "Get-PnPWebTemplates" }, { - "Rank": 1, + "Id": 846, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "CommandName": "Get-PnPWikiPageContent", - "Id": 846 + "Rank": 1, + "CommandName": "Get-PnPWikiPageContent" }, { - "Rank": 1, + "Id": 847, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 847 + "Rank": 1, + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { - "Rank": 2, + "Id": 848, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 848 + "Rank": 2, + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { - "Rank": 1, + "Id": 849, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Grant-PnPHubSiteRights", - "Id": 849 + "Rank": 1, + "CommandName": "Grant-PnPHubSiteRights" }, { - "Rank": 1, + "Id": 850, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Grant-PnPSiteDesignRights", - "Id": 850 + "Rank": 1, + "CommandName": "Grant-PnPSiteDesignRights" }, { - "Rank": 1, + "Id": 851, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Id": 851 + "Rank": 1, + "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { - "Rank": 1, + "Id": 852, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "CommandName": "Import-PnPTaxonomy", - "Id": 852 + "Rank": 1, + "CommandName": "Import-PnPTaxonomy" }, { - "Rank": 2, + "Id": 853, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "CommandName": "Import-PnPTaxonomy", - "Id": 853 + "Rank": 2, + "CommandName": "Import-PnPTaxonomy" }, { - "Rank": 3, + "Id": 854, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "CommandName": "Import-PnPTaxonomy", - "Id": 854 + "Rank": 3, + "CommandName": "Import-PnPTaxonomy" }, { - "Rank": 1, + "Id": 855, "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "CommandName": "Import-PnPTermGroupFromXml", - "Id": 855 + "Rank": 1, + "CommandName": "Import-PnPTermGroupFromXml" }, { - "Rank": 2, + "Id": 856, "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "CommandName": "Import-PnPTermGroupFromXml", - "Id": 856 + "Rank": 2, + "CommandName": "Import-PnPTermGroupFromXml" }, { - "Rank": 1, + "Id": 857, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "CommandName": "Import-PnPTermSet", - "Id": 857 + "Rank": 1, + "CommandName": "Import-PnPTermSet" }, { - "Rank": 2, + "Id": 858, "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": 858 + "Rank": 2, + "CommandName": "Import-PnPTermSet" }, { - "Rank": 3, + "Id": 859, "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": 859 + "Rank": 3, + "CommandName": "Import-PnPTermSet" }, { - "Rank": 1, + "Id": 860, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Install-PnPApp", - "Id": 860 + "Rank": 1, + "CommandName": "Install-PnPApp" }, { - "Rank": 2, + "Id": 861, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Install-PnPApp", - "Id": 861 + "Rank": 2, + "CommandName": "Install-PnPApp" }, { - "Rank": 1, + "Id": 862, "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "CommandName": "Invoke-PnPGraphMethod", - "Id": 862 + "Rank": 1, + "CommandName": "Invoke-PnPGraphMethod" }, { - "Rank": 2, + "Id": 863, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "CommandName": "Invoke-PnPGraphMethod", - "Id": 863 + "Rank": 2, + "CommandName": "Invoke-PnPGraphMethod" }, { - "Rank": 3, + "Id": 864, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "CommandName": "Invoke-PnPGraphMethod", - "Id": 864 + "Rank": 3, + "CommandName": "Invoke-PnPGraphMethod" }, { - "Rank": 4, + "Id": 865, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "CommandName": "Invoke-PnPGraphMethod", - "Id": 865 + "Rank": 4, + "CommandName": "Invoke-PnPGraphMethod" }, { - "Rank": 5, + "Id": 866, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "CommandName": "Invoke-PnPGraphMethod", - "Id": 866 + "Rank": 5, + "CommandName": "Invoke-PnPGraphMethod" }, { - "Rank": 6, + "Id": 867, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", - "CommandName": "Invoke-PnPGraphMethod", - "Id": 867 + "Rank": 6, + "CommandName": "Invoke-PnPGraphMethod" }, { - "Rank": 7, + "Id": 868, "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": 868 + "Rank": 7, + "CommandName": "Invoke-PnPGraphMethod" }, { - "Rank": 1, + "Id": 869, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPListDesign", - "Id": 869 + "Rank": 1, + "CommandName": "Invoke-PnPListDesign" }, { - "Rank": 2, + "Id": 870, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "CommandName": "Invoke-PnPListDesign", - "Id": 870 + "Rank": 2, + "CommandName": "Invoke-PnPListDesign" }, { - "Rank": 1, + "Id": 871, "Command": "Invoke-PnPQuery -RetryCount 5", - "CommandName": "Invoke-PnPQuery", - "Id": 871 + "Rank": 1, + "CommandName": "Invoke-PnPQuery" }, { - "Rank": 1, + "Id": 872, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPSiteDesign", - "Id": 872 + "Rank": 1, + "CommandName": "Invoke-PnPSiteDesign" }, { - "Rank": 2, + "Id": 873, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "CommandName": "Invoke-PnPSiteDesign", - "Id": 873 + "Rank": 2, + "CommandName": "Invoke-PnPSiteDesign" }, { - "Rank": 1, + "Id": 874, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "CommandName": "Invoke-PnPSiteScript", - "Id": 874 + "Rank": 1, + "CommandName": "Invoke-PnPSiteScript" }, { - "Rank": 1, + "Id": 875, "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": 875 + "Rank": 1, + "CommandName": "Invoke-PnPSiteSwap" }, { - "Rank": 2, + "Id": 876, "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": 876 + "Rank": 2, + "CommandName": "Invoke-PnPSiteSwap" }, { - "Rank": 3, + "Id": 877, "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": 877 + "Rank": 3, + "CommandName": "Invoke-PnPSiteSwap" }, { - "Rank": 1, + "Id": 878, "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 878 + "Rank": 1, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 2, + "Id": 879, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 879 + "Rank": 2, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 3, + "Id": 880, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 880 + "Rank": 3, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 4, + "Id": 881, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 881 + "Rank": 4, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 5, + "Id": 882, "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 882 + "Rank": 5, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 6, + "Id": 883, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 883 + "Rank": 6, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 7, + "Id": 884, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 884 + "Rank": 7, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 8, + "Id": 885, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 885 + "Rank": 8, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 1, + "Id": 886, "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "CommandName": "Invoke-PnPSPRestMethod", - "Id": 886 + "Rank": 1, + "CommandName": "Invoke-PnPSPRestMethod" }, { - "Rank": 1, + "Id": 887, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 887 + "Rank": 1, + "CommandName": "Invoke-PnPTenantTemplate" }, { - "Rank": 2, + "Id": 888, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 888 + "Rank": 2, + "CommandName": "Invoke-PnPTenantTemplate" }, { - "Rank": 3, + "Id": 889, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 889 + "Rank": 3, + "CommandName": "Invoke-PnPTenantTemplate" }, { - "Rank": 1, + "Id": 890, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction", - "Id": 890 + "Rank": 1, + "CommandName": "Invoke-PnPWebAction" }, { - "Rank": 2, + "Id": 891, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction", - "Id": 891 + "Rank": 2, + "CommandName": "Invoke-PnPWebAction" }, { - "Rank": 1, + "Id": 892, "Command": "Measure-PnPList \"Documents\"", - "CommandName": "Measure-PnPList", - "Id": 892 + "Rank": 1, + "CommandName": "Measure-PnPList" }, { - "Rank": 2, + "Id": 893, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "CommandName": "Measure-PnPList", - "Id": 893 + "Rank": 2, + "CommandName": "Measure-PnPList" }, { - "Rank": 1, + "Id": 894, "Command": "Measure-PnPWeb", - "CommandName": "Measure-PnPWeb", - "Id": 894 + "Rank": 1, + "CommandName": "Measure-PnPWeb" }, { - "Rank": 2, + "Id": 895, "Command": "Measure-PnPWeb $web -Recursive", - "CommandName": "Measure-PnPWeb", - "Id": 895 + "Rank": 2, + "CommandName": "Measure-PnPWeb" }, { - "Rank": 1, + "Id": 896, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "CommandName": "Move-PnPFile", - "Id": 896 + "Rank": 1, + "CommandName": "Move-PnPFile" }, { - "Rank": 2, + "Id": 897, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "CommandName": "Move-PnPFile", - "Id": 897 + "Rank": 2, + "CommandName": "Move-PnPFile" }, { - "Rank": 3, + "Id": 898, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "CommandName": "Move-PnPFile", - "Id": 898 + "Rank": 3, + "CommandName": "Move-PnPFile" }, { - "Rank": 4, + "Id": 899, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "CommandName": "Move-PnPFile", - "Id": 899 + "Rank": 4, + "CommandName": "Move-PnPFile" }, { - "Rank": 1, + "Id": 900, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "CommandName": "Move-PnPFolder", - "Id": 900 + "Rank": 1, + "CommandName": "Move-PnPFolder" }, { - "Rank": 2, + "Id": 901, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "CommandName": "Move-PnPFolder", - "Id": 901 + "Rank": 2, + "CommandName": "Move-PnPFolder" }, { - "Rank": 1, + "Id": 902, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Move-PnPListItemToRecycleBin", - "Id": 902 + "Rank": 1, + "CommandName": "Move-PnPListItemToRecycleBin" }, { - "Rank": 1, + "Id": 903, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "CommandName": "Move-PnPPageComponent", - "Id": 903 + "Rank": 1, + "CommandName": "Move-PnPPageComponent" }, { - "Rank": 2, + "Id": 904, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "CommandName": "Move-PnPPageComponent", - "Id": 904 + "Rank": 2, + "CommandName": "Move-PnPPageComponent" }, { - "Rank": 3, + "Id": 905, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "CommandName": "Move-PnPPageComponent", - "Id": 905 + "Rank": 3, + "CommandName": "Move-PnPPageComponent" }, { - "Rank": 4, + "Id": 906, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "CommandName": "Move-PnPPageComponent", - "Id": 906 + "Rank": 4, + "CommandName": "Move-PnPPageComponent" }, { - "Rank": 1, + "Id": 907, "Command": "Move-PnPRecycleBinItem", - "CommandName": "Move-PnpRecycleBinItem", - "Id": 907 + "Rank": 1, + "CommandName": "Move-PnpRecycleBinItem" }, { - "Rank": 2, + "Id": 908, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "CommandName": "Move-PnpRecycleBinItem", - "Id": 908 + "Rank": 2, + "CommandName": "Move-PnpRecycleBinItem" }, { - "Rank": 3, + "Id": 909, "Command": "Move-PnPRecycleBinItem -Force", - "CommandName": "Move-PnpRecycleBinItem", - "Id": 909 + "Rank": 3, + "CommandName": "Move-PnpRecycleBinItem" }, { - "Rank": 1, + "Id": 910, "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": 910 + "Rank": 1, + "CommandName": "Move-PnPTerm" }, { - "Rank": 2, + "Id": 911, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "CommandName": "Move-PnPTerm", - "Id": 911 + "Rank": 2, + "CommandName": "Move-PnPTerm" }, { - "Rank": 3, + "Id": 912, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "CommandName": "Move-PnPTerm", - "Id": 912 + "Rank": 3, + "CommandName": "Move-PnPTerm" }, { - "Rank": 1, + "Id": 913, "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": 913 + "Rank": 1, + "CommandName": "Move-PnPTermSet" }, { - "Rank": 2, + "Id": 914, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "CommandName": "Move-PnPTermSet", - "Id": 914 + "Rank": 2, + "CommandName": "Move-PnPTermSet" }, { - "Rank": 1, + "Id": 915, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPAzureADGroup", - "Id": 915 + "Rank": 1, + "CommandName": "New-PnPAzureADGroup" }, { - "Rank": 2, + "Id": 916, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "CommandName": "New-PnPAzureADGroup", - "Id": 916 + "Rank": 2, + "CommandName": "New-PnPAzureADGroup" }, { - "Rank": 3, + "Id": 917, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "CommandName": "New-PnPAzureADGroup", - "Id": 917 + "Rank": 3, + "CommandName": "New-PnPAzureADGroup" }, { - "Rank": 1, + "Id": 918, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 918 + "Rank": 1, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Rank": 2, + "Id": 919, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 919 + "Rank": 2, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Rank": 3, + "Id": 920, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 920 + "Rank": 3, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Rank": 1, + "Id": 921, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "CommandName": "New-PnPAzureCertificate", - "Id": 921 + "Rank": 1, + "CommandName": "New-PnPAzureCertificate" }, { - "Rank": 2, + "Id": 922, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "CommandName": "New-PnPAzureCertificate", - "Id": 922 + "Rank": 2, + "CommandName": "New-PnPAzureCertificate" }, { - "Rank": 3, + "Id": 923, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "CommandName": "New-PnPAzureCertificate", - "Id": 923 + "Rank": 3, + "CommandName": "New-PnPAzureCertificate" }, { - "Rank": 1, + "Id": 924, "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": 924 + "Rank": 1, + "CommandName": "New-PnPGraphSubscription" }, { - "Rank": 2, + "Id": 925, "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", - "CommandName": "New-PnPGraphSubscription", - "Id": 925 + "Rank": 2, + "CommandName": "New-PnPGraphSubscription" }, { - "Rank": 1, + "Id": 926, "Command": "New-PnPGroup -Title \"My Site Users\"", - "CommandName": "New-PnPGroup", - "Id": 926 + "Rank": 1, + "CommandName": "New-PnPGroup" }, { - "Rank": 1, + "Id": 927, "Command": "New-PnPList -Title Announcements -Template Announcements", - "CommandName": "New-PnPList", - "Id": 927 + "Rank": 1, + "CommandName": "New-PnPList" }, { - "Rank": 2, + "Id": 928, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "CommandName": "New-PnPList", - "Id": 928 + "Rank": 2, + "CommandName": "New-PnPList" }, { - "Rank": 3, + "Id": 929, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "CommandName": "New-PnPList", - "Id": 929 + "Rank": 3, + "CommandName": "New-PnPList" }, { - "Rank": 1, + "Id": 930, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPMicrosoft365Group", - "Id": 930 + "Rank": 1, + "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 2, + "Id": 931, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "CommandName": "New-PnPMicrosoft365Group", - "Id": 931 + "Rank": 2, + "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 3, + "Id": 932, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group", - "Id": 932 + "Rank": 3, + "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 4, + "Id": 933, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group", - "Id": 933 + "Rank": 4, + "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 5, + "Id": 934, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "CommandName": "New-PnPMicrosoft365Group", - "Id": 934 + "Rank": 5, + "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 6, + "Id": 935, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "CommandName": "New-PnPMicrosoft365Group", - "Id": 935 + "Rank": 6, + "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 7, + "Id": 936, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "CommandName": "New-PnPMicrosoft365Group", - "Id": 936 + "Rank": 7, + "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 1, + "Id": 937, "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": 937 + "Rank": 1, + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { - "Rank": 2, + "Id": 938, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 938 + "Rank": 2, + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { - "Rank": 1, + "Id": 939, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "CommandName": "New-PnPPersonalSite", - "Id": 939 + "Rank": 1, + "CommandName": "New-PnPPersonalSite" }, { - "Rank": 1, + "Id": 940, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "CommandName": "New-PnPPlannerPlan", - "Id": 940 + "Rank": 1, + "CommandName": "New-PnPPlannerPlan" }, { - "Rank": 1, + "Id": 941, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "CommandName": "New-PnPSdnProvider", - "Id": 941 + "Rank": 1, + "CommandName": "New-PnPSdnProvider" }, { - "Rank": 1, + "Id": 942, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite", - "Id": 942 + "Rank": 1, + "CommandName": "New-PnPSite" }, { - "Rank": 2, + "Id": 943, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "CommandName": "New-PnPSite", - "Id": 943 + "Rank": 2, + "CommandName": "New-PnPSite" }, { - "Rank": 3, + "Id": 944, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "CommandName": "New-PnPSite", - "Id": 944 + "Rank": 3, + "CommandName": "New-PnPSite" }, { - "Rank": 4, + "Id": 945, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "CommandName": "New-PnPSite", - "Id": 945 + "Rank": 4, + "CommandName": "New-PnPSite" }, { - "Rank": 5, + "Id": 946, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite", - "Id": 946 + "Rank": 5, + "CommandName": "New-PnPSite" }, { - "Rank": 6, + "Id": 947, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "CommandName": "New-PnPSite", - "Id": 947 + "Rank": 6, + "CommandName": "New-PnPSite" }, { - "Rank": 7, + "Id": 948, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "CommandName": "New-PnPSite", - "Id": 948 + "Rank": 7, + "CommandName": "New-PnPSite" }, { - "Rank": 8, + "Id": 949, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "CommandName": "New-PnPSite", - "Id": 949 + "Rank": 8, + "CommandName": "New-PnPSite" }, { - "Rank": 9, + "Id": 950, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "CommandName": "New-PnPSite", - "Id": 950 + "Rank": 9, + "CommandName": "New-PnPSite" }, { - "Rank": 10, + "Id": 951, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "CommandName": "New-PnPSite", - "Id": 951 + "Rank": 10, + "CommandName": "New-PnPSite" }, { - "Rank": 11, + "Id": 952, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite", - "Id": 952 + "Rank": 11, + "CommandName": "New-PnPSite" }, { - "Rank": 12, + "Id": 953, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "CommandName": "New-PnPSite", - "Id": 953 + "Rank": 12, + "CommandName": "New-PnPSite" }, { - "Rank": 13, + "Id": 954, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "CommandName": "New-PnPSite", - "Id": 954 + "Rank": 13, + "CommandName": "New-PnPSite" }, { - "Rank": 14, + "Id": 955, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite", - "Id": 955 + "Rank": 14, + "CommandName": "New-PnPSite" }, { - "Rank": 15, + "Id": 956, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "CommandName": "New-PnPSite", - "Id": 956 + "Rank": 15, + "CommandName": "New-PnPSite" }, { - "Rank": 16, + "Id": 957, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "CommandName": "New-PnPSite", - "Id": 957 + "Rank": 16, + "CommandName": "New-PnPSite" }, { - "Rank": 1, + "Id": 958, "Command": "New-PnPSiteCollectionTermStore", - "CommandName": "New-PnPSiteCollectionTermStore", - "Id": 958 + "Rank": 1, + "CommandName": "New-PnPSiteCollectionTermStore" }, { - "Rank": 1, + "Id": 959, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "CommandName": "New-PnPSiteGroup", - "Id": 959 + "Rank": 1, + "CommandName": "New-PnPSiteGroup" }, { - "Rank": 2, + "Id": 960, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "CommandName": "New-PnPSiteGroup", - "Id": 960 + "Rank": 2, + "CommandName": "New-PnPSiteGroup" }, { - "Rank": 1, + "Id": 961, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 961 + "Rank": 1, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 2, + "Id": 962, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 962 + "Rank": 2, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 3, + "Id": 963, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 963 + "Rank": 3, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 4, + "Id": 964, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 964 + "Rank": 4, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 5, + "Id": 965, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 965 + "Rank": 5, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 6, + "Id": 966, "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": 966 + "Rank": 6, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 7, + "Id": 967, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 967 + "Rank": 7, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 8, + "Id": 968, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 968 + "Rank": 8, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 1, + "Id": 969, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "CommandName": "New-PnPTeamsApp", - "Id": 969 + "Rank": 1, + "CommandName": "New-PnPTeamsApp" }, { - "Rank": 1, + "Id": 970, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "CommandName": "New-PnPTeamsTeam", - "Id": 970 + "Rank": 1, + "CommandName": "New-PnPTeamsTeam" }, { - "Rank": 2, + "Id": 971, "Command": "New-PnPTeamsTeam -GroupId $groupId", - "CommandName": "New-PnPTeamsTeam", - "Id": 971 + "Rank": 2, + "CommandName": "New-PnPTeamsTeam" }, { - "Rank": 3, + "Id": 972, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "CommandName": "New-PnPTeamsTeam", - "Id": 972 + "Rank": 3, + "CommandName": "New-PnPTeamsTeam" }, { - "Rank": 4, + "Id": 973, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "CommandName": "New-PnPTeamsTeam", - "Id": 973 + "Rank": 4, + "CommandName": "New-PnPTeamsTeam" }, { - "Rank": 5, + "Id": 974, "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": 974 + "Rank": 5, + "CommandName": "New-PnPTeamsTeam" }, { - "Rank": 6, + "Id": 975, "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": 975 + "Rank": 6, + "CommandName": "New-PnPTeamsTeam" }, { - "Rank": 1, + "Id": 976, "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": 976 + "Rank": 1, + "CommandName": "New-PnPTenantSite" }, { - "Rank": 2, + "Id": 977, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "CommandName": "New-PnPTenantSite", - "Id": 977 + "Rank": 2, + "CommandName": "New-PnPTenantSite" }, { - "Rank": 1, + "Id": 978, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "CommandName": "New-PnPTerm", - "Id": 978 + "Rank": 1, + "CommandName": "New-PnPTerm" }, { - "Rank": 2, + "Id": 979, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "New-PnPTerm", - "Id": 979 + "Rank": 2, + "CommandName": "New-PnPTerm" }, { - "Rank": 1, + "Id": 980, "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "CommandName": "New-PnPTermGroup", - "Id": 980 + "Rank": 1, + "CommandName": "New-PnPTermGroup" }, { - "Rank": 1, + "Id": 981, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "CommandName": "New-PnPTermLabel", - "Id": 981 + "Rank": 1, + "CommandName": "New-PnPTermLabel" }, { - "Rank": 1, + "Id": 982, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "CommandName": "New-PnPTermSet", - "Id": 982 + "Rank": 1, + "CommandName": "New-PnPTermSet" }, { - "Rank": 1, + "Id": 983, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "CommandName": "New-PnPUPABulkImportJob", - "Id": 983 + "Rank": 1, + "CommandName": "New-PnPUPABulkImportJob" }, { - "Rank": 2, + "Id": 984, "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": 984 + "Rank": 2, + "CommandName": "New-PnPUPABulkImportJob" }, { - "Rank": 1, + "Id": 985, "Command": "New-PnPUser -LoginName user@company.com", - "CommandName": "New-PnPUser", - "Id": 985 + "Rank": 1, + "CommandName": "New-PnPUser" }, { - "Rank": 1, + "Id": 986, "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "CommandName": "New-PnPWeb", - "Id": 986 + "Rank": 1, + "CommandName": "New-PnPWeb" }, { - "Rank": 1, + "Id": 987, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Publish-PnPApp", - "Id": 987 + "Rank": 1, + "CommandName": "Publish-PnPApp" }, { - "Rank": 2, + "Id": 988, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "CommandName": "Publish-PnPApp", - "Id": 988 + "Rank": 2, + "CommandName": "Publish-PnPApp" }, { - "Rank": 1, + "Id": 989, "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": 989 + "Rank": 1, + "CommandName": "Publish-PnPCompanyApp" }, { - "Rank": 1, + "Id": 990, "Command": "Publish-PnPContentType -ContentType 0x0101", - "CommandName": "Publish-PnPContentType", - "Id": 990 + "Rank": 1, + "CommandName": "Publish-PnPContentType" }, { - "Rank": 1, + "Id": 991, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Publish-PnPSyntexModel", - "Id": 991 + "Rank": 1, + "CommandName": "Publish-PnPSyntexModel" }, { - "Rank": 2, + "Id": 992, "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": 992 + "Rank": 2, + "CommandName": "Publish-PnPSyntexModel" }, { - "Rank": 1, + "Id": 993, "Command": "Read-PnPSiteTemplate -Path template.pnp", - "CommandName": "Read-PnPSiteTemplate", - "Id": 993 + "Rank": 1, + "CommandName": "Read-PnPSiteTemplate" }, { - "Rank": 2, + "Id": 994, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "CommandName": "Read-PnPSiteTemplate", - "Id": 994 + "Rank": 2, + "CommandName": "Read-PnPSiteTemplate" }, { - "Rank": 3, + "Id": 995, "Command": "Read-PnPSiteTemplate -Xml $xml", - "CommandName": "Read-PnPSiteTemplate", - "Id": 995 + "Rank": 3, + "CommandName": "Read-PnPSiteTemplate" }, { - "Rank": 1, + "Id": 996, "Command": "Read-PnPTenantTemplate -Path template.pnp", - "CommandName": "Read-PnPTenantTemplate", - "Id": 996 + "Rank": 1, + "CommandName": "Read-PnPTenantTemplate" }, { - "Rank": 1, + "Id": 997, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "CommandName": "Register-PnPAppCatalogSite", - "Id": 997 + "Rank": 1, + "CommandName": "Register-PnPAppCatalogSite" }, { - "Rank": 1, + "Id": 998, "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": 998 + "Rank": 1, + "CommandName": "Register-PnPAzureADApp" }, { - "Rank": 2, + "Id": 999, "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": 999 + "Rank": 2, + "CommandName": "Register-PnPAzureADApp" }, { - "Rank": 3, + "Id": 1000, "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": 1000 + "Rank": 3, + "CommandName": "Register-PnPAzureADApp" }, { - "Rank": 4, + "Id": 1001, "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": 1001 + "Rank": 4, + "CommandName": "Register-PnPAzureADApp" }, { - "Rank": 5, + "Id": 1002, "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": 1002 + "Rank": 5, + "CommandName": "Register-PnPAzureADApp" }, { - "Rank": 6, + "Id": 1003, "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": 1003 + "Rank": 6, + "CommandName": "Register-PnPAzureADApp" }, { - "Rank": 7, + "Id": 1004, "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": 1004 + "Rank": 7, + "CommandName": "Register-PnPAzureADApp" }, { - "Rank": 1, + "Id": 1005, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Register-PnPHubSite", - "Id": 1005 + "Rank": 1, + "CommandName": "Register-PnPHubSite" }, { - "Rank": 2, + "Id": 1006, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "CommandName": "Register-PnPHubSite", - "Id": 1006 + "Rank": 2, + "CommandName": "Register-PnPHubSite" }, { - "Rank": 1, + "Id": 1007, "Command": "Register-PnPManagementShellAccess", - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1007 + "Rank": 1, + "CommandName": "Register-PnPManagementShellAccess" }, { - "Rank": 2, + "Id": 1008, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1008 + "Rank": 2, + "CommandName": "Register-PnPManagementShellAccess" }, { - "Rank": 3, + "Id": 1009, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1009 + "Rank": 3, + "CommandName": "Register-PnPManagementShellAccess" }, { - "Rank": 1, + "Id": 1010, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1010 + "Rank": 1, + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { - "Rank": 2, + "Id": 1011, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1011 + "Rank": 2, + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { - "Rank": 1, + "Id": 1012, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "CommandName": "Remove-PnPAlert", - "Id": 1012 + "Rank": 1, + "CommandName": "Remove-PnPAlert" }, { - "Rank": 2, + "Id": 1013, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAlert", - "Id": 1013 + "Rank": 2, + "CommandName": "Remove-PnPAlert" }, { - "Rank": 1, + "Id": 1014, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Remove-PnPApp", - "Id": 1014 + "Rank": 1, + "CommandName": "Remove-PnPApp" }, { - "Rank": 2, + "Id": 1015, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Remove-PnPApp", - "Id": 1015 + "Rank": 2, + "CommandName": "Remove-PnPApp" }, { - "Rank": 1, + "Id": 1016, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1016 + "Rank": 1, + "CommandName": "Remove-PnPApplicationCustomizer" }, { - "Rank": 2, + "Id": 1017, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1017 + "Rank": 2, + "CommandName": "Remove-PnPApplicationCustomizer" }, { - "Rank": 1, + "Id": 1018, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1018 + "Rank": 1, + "CommandName": "Remove-PnPAvailableSiteClassification" }, { - "Rank": 2, + "Id": 1019, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1019 + "Rank": 2, + "CommandName": "Remove-PnPAvailableSiteClassification" }, { - "Rank": 1, + "Id": 1020, "Command": "Remove-PnPAzureADApp -Identity MyApp", - "CommandName": "Remove-PnPAzureADApp", - "Id": 1020 + "Rank": 1, + "CommandName": "Remove-PnPAzureADApp" }, { - "Rank": 2, + "Id": 1021, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Remove-PnPAzureADApp", - "Id": 1021 + "Rank": 2, + "CommandName": "Remove-PnPAzureADApp" }, { - "Rank": 1, + "Id": 1022, "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "CommandName": "Remove-PnPAzureADGroup", - "Id": 1022 + "Rank": 1, + "CommandName": "Remove-PnPAzureADGroup" }, { - "Rank": 2, + "Id": 1023, "Command": "Remove-PnPAzureADGroup -Identity $group", - "CommandName": "Remove-PnPAzureADGroup", - "Id": 1023 + "Rank": 2, + "CommandName": "Remove-PnPAzureADGroup" }, { - "Rank": 1, + "Id": 1024, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupMember", - "Id": 1024 + "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupMember" }, { - "Rank": 1, + "Id": 1025, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupOwner", - "Id": 1025 + "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupOwner" }, { - "Rank": 1, + "Id": 1026, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1026 + "Rank": 1, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 2, + "Id": 1027, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1027 + "Rank": 2, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 3, + "Id": 1028, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1028 + "Rank": 3, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 4, + "Id": 1029, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1029 + "Rank": 4, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 1, + "Id": 1030, "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "CommandName": "Remove-PnPContentType", - "Id": 1030 + "Rank": 1, + "CommandName": "Remove-PnPContentType" }, { - "Rank": 2, + "Id": 1031, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "CommandName": "Remove-PnPContentType", - "Id": 1031 + "Rank": 2, + "CommandName": "Remove-PnPContentType" }, { - "Rank": 1, + "Id": 1032, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1032 + "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { - "Rank": 2, + "Id": 1033, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1033 + "Rank": 2, + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { - "Rank": 1, + "Id": 1034, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPContentTypeFromList", - "Id": 1034 + "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromList" }, { - "Rank": 1, + "Id": 1035, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPCustomAction", - "Id": 1035 + "Rank": 1, + "CommandName": "Remove-PnPCustomAction" }, { - "Rank": 2, + "Id": 1036, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPCustomAction", - "Id": 1036 + "Rank": 2, + "CommandName": "Remove-PnPCustomAction" }, { - "Rank": 3, + "Id": 1037, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "CommandName": "Remove-PnPCustomAction", - "Id": 1037 + "Rank": 3, + "CommandName": "Remove-PnPCustomAction" }, { - "Rank": 1, + "Id": 1038, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Id": 1038 + "Rank": 1, + "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { - "Rank": 1, + "Id": 1039, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1039 + "Rank": 1, + "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 2, + "Id": 1040, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1040 + "Rank": 2, + "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 3, + "Id": 1041, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1041 + "Rank": 3, + "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 4, + "Id": 1042, "Command": "Remove-PnPEventReceiver -List ProjectList", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1042 + "Rank": 4, + "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 5, + "Id": 1043, "Command": "Remove-PnPEventReceiver", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1043 + "Rank": 5, + "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 6, + "Id": 1044, "Command": "Remove-PnPEventReceiver -Scope Site", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1044 + "Rank": 6, + "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 7, + "Id": 1045, "Command": "Remove-PnPEventReceiver -Scope Web", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1045 + "Rank": 7, + "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 8, + "Id": 1046, "Command": "Remove-PnPEventReceiver -Scope All", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1046 + "Rank": 8, + "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 1, + "Id": 1047, "Command": "Remove-PnPField -Identity \"Speakers\"", - "CommandName": "Remove-PnPField", - "Id": 1047 + "Rank": 1, + "CommandName": "Remove-PnPField" }, { - "Rank": 2, + "Id": 1048, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Remove-PnPField", - "Id": 1048 + "Rank": 2, + "CommandName": "Remove-PnPField" }, { - "Rank": 1, + "Id": 1049, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1049 + "Rank": 1, + "CommandName": "Remove-PnPFieldFromContentType" }, { - "Rank": 2, + "Id": 1050, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1050 + "Rank": 2, + "CommandName": "Remove-PnPFieldFromContentType" }, { - "Rank": 1, + "Id": 1051, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile", - "Id": 1051 + "Rank": 1, + "CommandName": "Remove-PnPFile" }, { - "Rank": 2, + "Id": 1052, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile", - "Id": 1052 + "Rank": 2, + "CommandName": "Remove-PnPFile" }, { - "Rank": 3, + "Id": 1053, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "CommandName": "Remove-PnPFile", - "Id": 1053 + "Rank": 3, + "CommandName": "Remove-PnPFile" }, { - "Rank": 1, + "Id": 1054, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "CommandName": "Remove-PnPFileFromSiteTemplate", - "Id": 1054 + "Rank": 1, + "CommandName": "Remove-PnPFileFromSiteTemplate" }, { - "Rank": 1, + "Id": 1055, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Remove-PnPFileSharingLink", - "Id": 1055 + "Rank": 1, + "CommandName": "Remove-PnPFileSharingLink" }, { - "Rank": 2, + "Id": 1056, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "CommandName": "Remove-PnPFileSharingLink", - "Id": 1056 + "Rank": 2, + "CommandName": "Remove-PnPFileSharingLink" }, { - "Rank": 1, + "Id": 1057, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Remove-PnPFileVersion", - "Id": 1057 + "Rank": 1, + "CommandName": "Remove-PnPFileVersion" }, { - "Rank": 2, + "Id": 1058, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Remove-PnPFileVersion", - "Id": 1058 + "Rank": 2, + "CommandName": "Remove-PnPFileVersion" }, { - "Rank": 3, + "Id": 1059, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "CommandName": "Remove-PnPFileVersion", - "Id": 1059 + "Rank": 3, + "CommandName": "Remove-PnPFileVersion" }, { - "Rank": 1, + "Id": 1060, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "CommandName": "Remove-PnPFlowOwner", - "Id": 1060 + "Rank": 1, + "CommandName": "Remove-PnPFlowOwner" }, { - "Rank": 2, + "Id": 1061, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "CommandName": "Remove-PnPFlowOwner", - "Id": 1061 + "Rank": 2, + "CommandName": "Remove-PnPFlowOwner" }, { - "Rank": 3, + "Id": 1062, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", - "CommandName": "Remove-PnPFlowOwner", - "Id": 1062 + "Rank": 3, + "CommandName": "Remove-PnPFlowOwner" }, { - "Rank": 4, + "Id": 1063, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "CommandName": "Remove-PnPFlowOwner", - "Id": 1063 + "Rank": 4, + "CommandName": "Remove-PnPFlowOwner" }, { - "Rank": 1, + "Id": 1064, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Remove-PnPFolder", - "Id": 1064 + "Rank": 1, + "CommandName": "Remove-PnPFolder" }, { - "Rank": 2, + "Id": 1065, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "CommandName": "Remove-PnPFolder", - "Id": 1065 + "Rank": 2, + "CommandName": "Remove-PnPFolder" }, { - "Rank": 1, + "Id": 1066, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1066 + "Rank": 1, + "CommandName": "Remove-PnPFolderSharingLink" }, { - "Rank": 2, + "Id": 1067, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1067 + "Rank": 2, + "CommandName": "Remove-PnPFolderSharingLink" }, { - "Rank": 1, + "Id": 1068, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "CommandName": "Remove-PnPGraphSubscription", - "Id": 1068 + "Rank": 1, + "CommandName": "Remove-PnPGraphSubscription" }, { - "Rank": 1, + "Id": 1069, "Command": "Remove-PnPGroup -Identity \"My Users\"", - "CommandName": "Remove-PnPGroup", - "Id": 1069 + "Rank": 1, + "CommandName": "Remove-PnPGroup" }, { - "Rank": 1, + "Id": 1070, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Remove-PnPGroupMember", - "Id": 1070 + "Rank": 1, + "CommandName": "Remove-PnPGroupMember" }, { - "Rank": 1, + "Id": 1071, "Command": "Remove-PnPHomeSite", - "CommandName": "Remove-PnPHomeSite", - "Id": 1071 + "Rank": 1, + "CommandName": "Remove-PnPHomeSite" }, { - "Rank": 1, + "Id": 1072, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPHubSiteAssociation", - "Id": 1072 + "Rank": 1, + "CommandName": "Remove-PnPHubSiteAssociation" }, { - "Rank": 1, + "Id": 1073, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1073 + "Rank": 1, + "CommandName": "Remove-PnPHubToHubAssociation" }, { - "Rank": 2, + "Id": 1074, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1074 + "Rank": 2, + "CommandName": "Remove-PnPHubToHubAssociation" }, { - "Rank": 1, + "Id": 1075, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "CommandName": "Remove-PnPIndexedProperty", - "Id": 1075 + "Rank": 1, + "CommandName": "Remove-PnPIndexedProperty" }, { - "Rank": 1, + "Id": 1076, "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1076 + "Rank": 1, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 2, + "Id": 1077, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1077 + "Rank": 2, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 3, + "Id": 1078, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1078 + "Rank": 3, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 4, + "Id": 1079, "Command": "Remove-PnPJavaScriptLink -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1079 + "Rank": 4, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 5, + "Id": 1080, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1080 + "Rank": 5, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 1, + "Id": 1081, "Command": "Remove-PnPKnowledgeHubSite", - "CommandName": "Remove-PnPKnowledgeHubSite", - "Id": 1081 + "Rank": 1, + "CommandName": "Remove-PnPKnowledgeHubSite" }, { - "Rank": 1, + "Id": 1082, "Command": "Remove-PnPList -Identity Announcements", - "CommandName": "Remove-PnPList", - "Id": 1082 + "Rank": 1, + "CommandName": "Remove-PnPList" }, { - "Rank": 2, + "Id": 1083, "Command": "Remove-PnPList -Identity Announcements -Force", - "CommandName": "Remove-PnPList", - "Id": 1083 + "Rank": 2, + "CommandName": "Remove-PnPList" }, { - "Rank": 3, + "Id": 1084, "Command": "Remove-PnPList -Identity Announcements -Recycle", - "CommandName": "Remove-PnPList", - "Id": 1084 + "Rank": 3, + "CommandName": "Remove-PnPList" }, { - "Rank": 4, + "Id": 1085, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "CommandName": "Remove-PnPList", - "Id": 1085 + "Rank": 4, + "CommandName": "Remove-PnPList" }, { - "Rank": 1, + "Id": 1086, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPListDesign", - "Id": 1086 + "Rank": 1, + "CommandName": "Remove-PnPListDesign" }, { - "Rank": 1, + "Id": 1087, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Remove-PnPListItem", - "Id": 1087 + "Rank": 1, + "CommandName": "Remove-PnPListItem" }, { - "Rank": 2, + "Id": 1088, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "CommandName": "Remove-PnPListItem", - "Id": 1088 + "Rank": 2, + "CommandName": "Remove-PnPListItem" }, { - "Rank": 3, + "Id": 1089, "Command": "Remove-PnPListItem -List \"Demo List\"", - "CommandName": "Remove-PnPListItem", - "Id": 1089 + "Rank": 3, + "CommandName": "Remove-PnPListItem" }, { - "Rank": 1, + "Id": 1090, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1090 + "Rank": 1, + "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 2, + "Id": 1091, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1091 + "Rank": 2, + "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 3, + "Id": 1092, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1092 + "Rank": 3, + "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 4, + "Id": 1093, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1093 + "Rank": 4, + "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 5, + "Id": 1094, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1094 + "Rank": 5, + "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 1, + "Id": 1095, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Remove-PnPListItemVersion", - "Id": 1095 + "Rank": 1, + "CommandName": "Remove-PnPListItemVersion" }, { - "Rank": 2, + "Id": 1096, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Remove-PnPListItemVersion", - "Id": 1096 + "Rank": 2, + "CommandName": "Remove-PnPListItemVersion" }, { - "Rank": 1, + "Id": 1097, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1097 + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365Group" }, { - "Rank": 2, + "Id": 1098, "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1098 + "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365Group" }, { - "Rank": 1, + "Id": 1099, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Id": 1099 + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { - "Rank": 1, + "Id": 1100, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Id": 1100 + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { - "Rank": 1, + "Id": 1101, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1101 + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { - "Rank": 2, + "Id": 1102, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1102 + "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { - "Rank": 1, + "Id": 1103, "Command": "Remove-PnPNavigationNode -Identity 1032", - "CommandName": "Remove-PnPNavigationNode", - "Id": 1103 + "Rank": 1, + "CommandName": "Remove-PnPNavigationNode" }, { - "Rank": 2, + "Id": 1104, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "CommandName": "Remove-PnPNavigationNode", - "Id": 1104 + "Rank": 2, + "CommandName": "Remove-PnPNavigationNode" }, { - "Rank": 3, + "Id": 1105, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "CommandName": "Remove-PnPNavigationNode", - "Id": 1105 + "Rank": 3, + "CommandName": "Remove-PnPNavigationNode" }, { - "Rank": 1, + "Id": 1106, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1106 + "Rank": 1, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Rank": 2, + "Id": 1107, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1107 + "Rank": 2, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Rank": 3, + "Id": 1108, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1108 + "Rank": 3, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Rank": 1, + "Id": 1109, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPOrgNewsSite", - "Id": 1109 + "Rank": 1, + "CommandName": "Remove-PnPOrgNewsSite" }, { - "Rank": 1, + "Id": 1110, "Command": "Remove-PnPPage -Identity \"MyPage\"", - "CommandName": "Remove-PnPPage", - "Id": 1110 + "Rank": 1, + "CommandName": "Remove-PnPPage" }, { - "Rank": 2, + "Id": 1111, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "CommandName": "Remove-PnPPage", - "Id": 1111 + "Rank": 2, + "CommandName": "Remove-PnPPage" }, { - "Rank": 3, + "Id": 1112, "Command": "Remove-PnPPage $page", - "CommandName": "Remove-PnPPage", - "Id": 1112 + "Rank": 3, + "CommandName": "Remove-PnPPage" }, { - "Rank": 4, + "Id": 1113, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "CommandName": "Remove-PnPPage", - "Id": 1113 + "Rank": 4, + "CommandName": "Remove-PnPPage" }, { - "Rank": 1, + "Id": 1114, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPPageComponent", - "Id": 1114 + "Rank": 1, + "CommandName": "Remove-PnPPageComponent" }, { - "Rank": 1, + "Id": 1115, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "CommandName": "Remove-PnPPlannerBucket", - "Id": 1115 + "Rank": 1, + "CommandName": "Remove-PnPPlannerBucket" }, { - "Rank": 1, + "Id": 1116, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "CommandName": "Remove-PnPPlannerPlan", - "Id": 1116 + "Rank": 1, + "CommandName": "Remove-PnPPlannerPlan" }, { - "Rank": 1, + "Id": 1117, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Remove-PnPPlannerRoster", - "Id": 1117 + "Rank": 1, + "CommandName": "Remove-PnPPlannerRoster" }, { - "Rank": 1, + "Id": 1118, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPPlannerRosterMember", - "Id": 1118 + "Rank": 1, + "CommandName": "Remove-PnPPlannerRosterMember" }, { - "Rank": 1, + "Id": 1119, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "CommandName": "Remove-PnPPlannerTask", - "Id": 1119 + "Rank": 1, + "CommandName": "Remove-PnPPlannerTask" }, { - "Rank": 1, + "Id": 1120, "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1120 + "Rank": 1, + "CommandName": "Remove-PnPPropertyBagValue" }, { - "Rank": 2, + "Id": 1121, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1121 + "Rank": 2, + "CommandName": "Remove-PnPPropertyBagValue" }, { - "Rank": 3, + "Id": 1122, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1122 + "Rank": 3, + "CommandName": "Remove-PnPPropertyBagValue" }, { - "Rank": 1, + "Id": 1123, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Remove-PnPPublishingImageRendition", - "Id": 1123 + "Rank": 1, + "CommandName": "Remove-PnPPublishingImageRendition" }, { - "Rank": 1, + "Id": 1124, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "CommandName": "Remove-PnPRoleDefinition", - "Id": 1124 + "Rank": 1, + "CommandName": "Remove-PnPRoleDefinition" }, { - "Rank": 1, + "Id": 1125, "Command": "Remove-PnPSdnProvider -Confirm:false", - "CommandName": "Remove-PnPSdnProvider", - "Id": 1125 + "Rank": 1, + "CommandName": "Remove-PnPSdnProvider" }, { - "Rank": 1, + "Id": 1126, "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1126 + "Rank": 1, + "CommandName": "Remove-PnPSearchConfiguration" }, { - "Rank": 2, + "Id": 1127, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1127 + "Rank": 2, + "CommandName": "Remove-PnPSearchConfiguration" }, { - "Rank": 3, + "Id": 1128, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1128 + "Rank": 3, + "CommandName": "Remove-PnPSearchConfiguration" }, { - "Rank": 4, + "Id": 1129, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1129 + "Rank": 4, + "CommandName": "Remove-PnPSearchConfiguration" }, { - "Rank": 1, + "Id": 1130, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1130 + "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { - "Rank": 2, + "Id": 1131, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1131 + "Rank": 2, + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { - "Rank": 1, + "Id": 1132, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Id": 1132 + "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { - "Rank": 1, + "Id": 1133, "Command": "Remove-PnPSiteCollectionTermStore", - "CommandName": "Remove-PnPSiteCollectionTermStore", - "Id": 1133 + "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionTermStore" }, { - "Rank": 1, + "Id": 1134, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesign", - "Id": 1134 + "Rank": 1, + "CommandName": "Remove-PnPSiteDesign" }, { - "Rank": 1, + "Id": 1135, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesignTask", - "Id": 1135 + "Rank": 1, + "CommandName": "Remove-PnPSiteDesignTask" }, { - "Rank": 1, + "Id": 1136, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Remove-PnPSiteGroup", - "Id": 1136 + "Rank": 1, + "CommandName": "Remove-PnPSiteGroup" }, { - "Rank": 2, + "Id": 1137, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "CommandName": "Remove-PnPSiteGroup", - "Id": 1137 + "Rank": 2, + "CommandName": "Remove-PnPSiteGroup" }, { - "Rank": 1, + "Id": 1138, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteScript", - "Id": 1138 + "Rank": 1, + "CommandName": "Remove-PnPSiteScript" }, { - "Rank": 1, + "Id": 1139, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Remove-PnPSiteUserInvitations", - "Id": 1139 + "Rank": 1, + "CommandName": "Remove-PnPSiteUserInvitations" }, { - "Rank": 1, + "Id": 1140, "Command": "Remove-PnPStorageEntity -Key MyKey", - "CommandName": "Remove-PnPStorageEntity", - "Id": 1140 + "Rank": 1, + "CommandName": "Remove-PnPStorageEntity" }, { - "Rank": 2, + "Id": 1141, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Remove-PnPStorageEntity", - "Id": 1141 + "Rank": 2, + "CommandName": "Remove-PnPStorageEntity" }, { - "Rank": 1, + "Id": 1142, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "CommandName": "Remove-PnPStoredCredential", - "Id": 1142 + "Rank": 1, + "CommandName": "Remove-PnPStoredCredential" }, { - "Rank": 1, + "Id": 1143, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1143 + "Rank": 1, + "CommandName": "Remove-PnPTaxonomyItem" }, { - "Rank": 2, + "Id": 1144, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1144 + "Rank": 2, + "CommandName": "Remove-PnPTaxonomyItem" }, { - "Rank": 1, + "Id": 1145, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "CommandName": "Remove-PnPTeamsApp", - "Id": 1145 + "Rank": 1, + "CommandName": "Remove-PnPTeamsApp" }, { - "Rank": 2, + "Id": 1146, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "CommandName": "Remove-PnPTeamsApp", - "Id": 1146 + "Rank": 2, + "CommandName": "Remove-PnPTeamsApp" }, { - "Rank": 1, + "Id": 1147, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "CommandName": "Remove-PnPTeamsChannel", - "Id": 1147 + "Rank": 1, + "CommandName": "Remove-PnPTeamsChannel" }, { - "Rank": 1, + "Id": 1148, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1148 + "Rank": 1, + "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Rank": 2, + "Id": 1149, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1149 + "Rank": 2, + "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Rank": 3, + "Id": 1150, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1150 + "Rank": 3, + "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Rank": 1, + "Id": 1151, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "CommandName": "Remove-PnPTeamsTab", - "Id": 1151 + "Rank": 1, + "CommandName": "Remove-PnPTeamsTab" }, { - "Rank": 2, + "Id": 1152, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "CommandName": "Remove-PnPTeamsTab", - "Id": 1152 + "Rank": 2, + "CommandName": "Remove-PnPTeamsTab" }, { - "Rank": 3, + "Id": 1153, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", - "CommandName": "Remove-PnPTeamsTab", - "Id": 1153 + "Rank": 3, + "CommandName": "Remove-PnPTeamsTab" }, { - "Rank": 1, + "Id": 1154, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Remove-PnPTeamsTag", - "Id": 1154 + "Rank": 1, + "CommandName": "Remove-PnPTeamsTag" }, { - "Rank": 1, + "Id": 1155, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Remove-PnPTeamsTeam", - "Id": 1155 + "Rank": 1, + "CommandName": "Remove-PnPTeamsTeam" }, { - "Rank": 2, + "Id": 1156, "Command": "Remove-PnPTeamsTeam -Identity testteam", - "CommandName": "Remove-PnPTeamsTeam", - "Id": 1156 + "Rank": 2, + "CommandName": "Remove-PnPTeamsTeam" }, { - "Rank": 1, + "Id": 1157, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "CommandName": "Remove-PnPTeamsUser", - "Id": 1157 + "Rank": 1, + "CommandName": "Remove-PnPTeamsUser" }, { - "Rank": 2, + "Id": 1158, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Remove-PnPTeamsUser", - "Id": 1158 + "Rank": 2, + "CommandName": "Remove-PnPTeamsUser" }, { - "Rank": 1, + "Id": 1159, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Remove-PnPTenantCdnOrigin", - "Id": 1159 + "Rank": 1, + "CommandName": "Remove-PnPTenantCdnOrigin" }, { - "Rank": 1, + "Id": 1160, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1160 + "Rank": 1, + "CommandName": "Remove-PnPTenantDeletedSite" }, { - "Rank": 2, + "Id": 1161, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1161 + "Rank": 2, + "CommandName": "Remove-PnPTenantDeletedSite" }, { - "Rank": 1, + "Id": 1162, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantSite", - "Id": 1162 + "Rank": 1, + "CommandName": "Remove-PnPTenantSite" }, { - "Rank": 2, + "Id": 1163, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "CommandName": "Remove-PnPTenantSite", - "Id": 1163 + "Rank": 2, + "CommandName": "Remove-PnPTenantSite" }, { - "Rank": 3, + "Id": 1164, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "CommandName": "Remove-PnPTenantSite", - "Id": 1164 + "Rank": 3, + "CommandName": "Remove-PnPTenantSite" }, { - "Rank": 1, + "Id": 1165, "Command": "Remove-PnPTenantSyncClientRestriction", - "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Id": 1165 + "Rank": 1, + "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { - "Rank": 1, + "Id": 1166, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Remove-PnPTenantTheme", - "Id": 1166 + "Rank": 1, + "CommandName": "Remove-PnPTenantTheme" }, { - "Rank": 1, + "Id": 1167, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTerm", - "Id": 1167 + "Rank": 1, + "CommandName": "Remove-PnPTerm" }, { - "Rank": 2, + "Id": 1168, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTerm", - "Id": 1168 + "Rank": 2, + "CommandName": "Remove-PnPTerm" }, { - "Rank": 1, + "Id": 1169, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTermGroup", - "Id": 1169 + "Rank": 1, + "CommandName": "Remove-PnPTermGroup" }, { - "Rank": 2, + "Id": 1170, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "CommandName": "Remove-PnPTermGroup", - "Id": 1170 + "Rank": 2, + "CommandName": "Remove-PnPTermGroup" }, { - "Rank": 3, + "Id": 1171, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "CommandName": "Remove-PnPTermGroup", - "Id": 1171 + "Rank": 3, + "CommandName": "Remove-PnPTermGroup" }, { - "Rank": 1, + "Id": 1172, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "CommandName": "Remove-PnPTermLabel", - "Id": 1172 + "Rank": 1, + "CommandName": "Remove-PnPTermLabel" }, { - "Rank": 2, + "Id": 1173, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTermLabel", - "Id": 1173 + "Rank": 2, + "CommandName": "Remove-PnPTermLabel" }, { - "Rank": 1, + "Id": 1174, "Command": "Remove-PnPUser -Identity 23", - "CommandName": "Remove-PnPUser", - "Id": 1174 + "Rank": 1, + "CommandName": "Remove-PnPUser" }, { - "Rank": 2, + "Id": 1175, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "CommandName": "Remove-PnPUser", - "Id": 1175 + "Rank": 2, + "CommandName": "Remove-PnPUser" }, { - "Rank": 3, + "Id": 1176, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "CommandName": "Remove-PnPUser", - "Id": 1176 + "Rank": 3, + "CommandName": "Remove-PnPUser" }, { - "Rank": 1, + "Id": 1177, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Remove-PnPUserInfo", - "Id": 1177 + "Rank": 1, + "CommandName": "Remove-PnPUserInfo" }, { - "Rank": 1, + "Id": 1178, "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Remove-PnPUserProfile", - "Id": 1178 + "Rank": 1, + "CommandName": "Remove-PnPUserProfile" }, { - "Rank": 1, + "Id": 1179, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "CommandName": "Remove-PnPView", - "Id": 1179 + "Rank": 1, + "CommandName": "Remove-PnPView" }, { - "Rank": 1, + "Id": 1180, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Id": 1180 + "Rank": 1, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { - "Rank": 1, + "Id": 1181, "Command": "Remove-PnPWeb -Identity projectA", - "CommandName": "Remove-PnPWeb", - "Id": 1181 + "Rank": 1, + "CommandName": "Remove-PnPWeb" }, { - "Rank": 2, + "Id": 1182, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "CommandName": "Remove-PnPWeb", - "Id": 1182 + "Rank": 2, + "CommandName": "Remove-PnPWeb" }, { - "Rank": 1, + "Id": 1183, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "CommandName": "Remove-PnPWebhookSubscription", - "Id": 1183 + "Rank": 1, + "CommandName": "Remove-PnPWebhookSubscription" }, { - "Rank": 1, + "Id": 1184, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPWebPart", - "Id": 1184 + "Rank": 1, + "CommandName": "Remove-PnPWebPart" }, { - "Rank": 2, + "Id": 1185, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "CommandName": "Remove-PnPWebPart", - "Id": 1185 + "Rank": 2, + "CommandName": "Remove-PnPWebPart" }, { - "Rank": 1, + "Id": 1186, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "CommandName": "Remove-PnPWikiPage", - "Id": 1186 + "Rank": 1, + "CommandName": "Remove-PnPWikiPage" }, { - "Rank": 1, + "Id": 1187, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile", - "Id": 1187 + "Rank": 1, + "CommandName": "Rename-PnPFile" }, { - "Rank": 2, + "Id": 1188, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile", - "Id": 1188 + "Rank": 2, + "CommandName": "Rename-PnPFile" }, { - "Rank": 3, + "Id": 1189, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "CommandName": "Rename-PnPFile", - "Id": 1189 + "Rank": 3, + "CommandName": "Rename-PnPFile" }, { - "Rank": 1, + "Id": 1190, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "CommandName": "Rename-PnPFolder", - "Id": 1190 + "Rank": 1, + "CommandName": "Rename-PnPFolder" }, { - "Rank": 1, + "Id": 1191, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Repair-PnPSite", - "Id": 1191 + "Rank": 1, + "CommandName": "Repair-PnPSite" }, { - "Rank": 2, + "Id": 1192, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "CommandName": "Repair-PnPSite", - "Id": 1192 + "Rank": 2, + "CommandName": "Repair-PnPSite" }, { - "Rank": 1, + "Id": 1193, "Command": "Request-PnPAccessToken", - "CommandName": "Request-PnPAccessToken", - "Id": 1193 + "Rank": 1, + "CommandName": "Request-PnPAccessToken" }, { - "Rank": 2, + "Id": 1194, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "CommandName": "Request-PnPAccessToken", - "Id": 1194 + "Rank": 2, + "CommandName": "Request-PnPAccessToken" }, { - "Rank": 3, + "Id": 1195, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "CommandName": "Request-PnPAccessToken", - "Id": 1195 + "Rank": 3, + "CommandName": "Request-PnPAccessToken" }, { - "Rank": 4, + "Id": 1196, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "CommandName": "Request-PnPAccessToken", - "Id": 1196 + "Rank": 4, + "CommandName": "Request-PnPAccessToken" }, { - "Rank": 1, + "Id": 1197, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "CommandName": "Request-PnPPersonalSite", - "Id": 1197 + "Rank": 1, + "CommandName": "Request-PnPPersonalSite" }, { - "Rank": 2, + "Id": 1198, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "CommandName": "Request-PnPPersonalSite", - "Id": 1198 + "Rank": 2, + "CommandName": "Request-PnPPersonalSite" }, { - "Rank": 1, + "Id": 1199, "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "CommandName": "Request-PnPReIndexList", - "Id": 1199 + "Rank": 1, + "CommandName": "Request-PnPReIndexList" }, { - "Rank": 1, + "Id": 1200, "Command": "Request-PnPReIndexWeb", - "CommandName": "Request-PnPReIndexWeb", - "Id": 1200 + "Rank": 1, + "CommandName": "Request-PnPReIndexWeb" }, { - "Rank": 1, + "Id": 1201, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1201 + "Rank": 1, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Rank": 2, + "Id": 1202, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1202 + "Rank": 2, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Rank": 3, + "Id": 1203, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1203 + "Rank": 3, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Rank": 1, + "Id": 1204, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "CommandName": "Reset-PnPFileVersion", - "Id": 1204 + "Rank": 1, + "CommandName": "Reset-PnPFileVersion" }, { - "Rank": 2, + "Id": 1205, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "CommandName": "Reset-PnPFileVersion", - "Id": 1205 + "Rank": 2, + "CommandName": "Reset-PnPFileVersion" }, { - "Rank": 1, + "Id": 1206, "Command": "Reset-PnPLabel -List \"Demo List\"", - "CommandName": "Reset-PnPLabel", - "Id": 1206 + "Rank": 1, + "CommandName": "Reset-PnPLabel" }, { - "Rank": 2, + "Id": 1207, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "CommandName": "Reset-PnPLabel", - "Id": 1207 + "Rank": 2, + "CommandName": "Reset-PnPLabel" }, { - "Rank": 1, + "Id": 1208, "Command": "Reset-PnPMicrosoft365GroupExpiration", - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1208 + "Rank": 1, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Rank": 1, + "Id": 1209, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Id": 1209 + "Rank": 1, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { - "Rank": 1, + "Id": 1210, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "CommandName": "Resolve-PnPFolder", - "Id": 1210 + "Rank": 1, + "CommandName": "Resolve-PnPFolder" }, { - "Rank": 1, + "Id": 1211, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Id": 1211 + "Rank": 1, + "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { - "Rank": 1, + "Id": 1212, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion", - "Id": 1212 + "Rank": 1, + "CommandName": "Restore-PnPFileVersion" }, { - "Rank": 2, + "Id": 1213, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion", - "Id": 1213 + "Rank": 2, + "CommandName": "Restore-PnPFileVersion" }, { - "Rank": 3, + "Id": 1214, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Restore-PnPFileVersion", - "Id": 1214 + "Rank": 3, + "CommandName": "Restore-PnPFileVersion" }, { - "Rank": 1, + "Id": 1215, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Restore-PnPListItemVersion", - "Id": 1215 + "Rank": 1, + "CommandName": "Restore-PnPListItemVersion" }, { - "Rank": 2, + "Id": 1216, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Restore-PnPListItemVersion", - "Id": 1216 + "Rank": 2, + "CommandName": "Restore-PnPListItemVersion" }, { - "Rank": 1, + "Id": 1217, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Restore-PnPRecycleBinItem", - "Id": 1217 + "Rank": 1, + "CommandName": "Restore-PnPRecycleBinItem" }, { - "Rank": 1, + "Id": 1218, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1218 + "Rank": 1, + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { - "Rank": 2, + "Id": 1219, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1219 + "Rank": 2, + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { - "Rank": 1, + "Id": 1220, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantSite", - "Id": 1220 + "Rank": 1, + "CommandName": "Restore-PnPTenantSite" }, { - "Rank": 2, + "Id": 1221, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Restore-PnPTenantSite", - "Id": 1221 + "Rank": 2, + "CommandName": "Restore-PnPTenantSite" }, { - "Rank": 3, + "Id": 1222, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "CommandName": "Restore-PnPTenantSite", - "Id": 1222 + "Rank": 3, + "CommandName": "Restore-PnPTenantSite" }, { - "Rank": 1, + "Id": 1223, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Id": 1223 + "Rank": 1, + "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { - "Rank": 1, + "Id": 1224, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Revoke-PnPHubSiteRights", - "Id": 1224 + "Rank": 1, + "CommandName": "Revoke-PnPHubSiteRights" }, { - "Rank": 1, + "Id": 1225, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Revoke-PnPSiteDesignRights", - "Id": 1225 + "Rank": 1, + "CommandName": "Revoke-PnPSiteDesignRights" }, { - "Rank": 1, + "Id": 1226, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Id": 1226 + "Rank": 1, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { - "Rank": 1, + "Id": 1227, "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "CommandName": "Revoke-PnPUserSession", - "Id": 1227 + "Rank": 1, + "CommandName": "Revoke-PnPUserSession" }, { - "Rank": 1, + "Id": 1228, "Command": "Save-PnPPageConversionLog", - "CommandName": "Save-PnPPageConversionLog", - "Id": 1228 + "Rank": 1, + "CommandName": "Save-PnPPageConversionLog" }, { - "Rank": 1, + "Id": 1229, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "CommandName": "Save-PnPSiteTemplate", - "Id": 1229 + "Rank": 1, + "CommandName": "Save-PnPSiteTemplate" }, { - "Rank": 1, + "Id": 1230, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "CommandName": "Save-PnPTenantTemplate", - "Id": 1230 + "Rank": 1, + "CommandName": "Save-PnPTenantTemplate" }, { - "Rank": 1, + "Id": 1231, "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": 1231 + "Rank": 1, + "CommandName": "Send-PnPMail" }, { - "Rank": 2, + "Id": 1232, "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": 1232 + "Rank": 2, + "CommandName": "Send-PnPMail" }, { - "Rank": 3, + "Id": 1233, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "CommandName": "Send-PnPMail", - "Id": 1233 + "Rank": 3, + "CommandName": "Send-PnPMail" }, { - "Rank": 4, + "Id": 1234, "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": 1234 + "Rank": 4, + "CommandName": "Send-PnPMail" }, { - "Rank": 5, + "Id": 1235, "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": 1235 + "Rank": 5, + "CommandName": "Send-PnPMail" }, { - "Rank": 6, + "Id": 1236, "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": 1236 + "Rank": 6, + "CommandName": "Send-PnPMail" }, { - "Rank": 1, + "Id": 1237, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "CommandName": "Set-PnPAdaptiveScopeProperty", - "Id": 1237 + "Rank": 1, + "CommandName": "Set-PnPAdaptiveScopeProperty" }, { - "Rank": 1, + "Id": 1238, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1238 + "Rank": 1, + "CommandName": "Set-PnPApplicationCustomizer" }, { - "Rank": 2, + "Id": 1239, "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1239 + "Rank": 2, + "CommandName": "Set-PnPApplicationCustomizer" }, { - "Rank": 1, + "Id": 1240, "Command": "Set-PnPAppSideLoading -On", - "CommandName": "Set-PnPAppSideLoading", - "Id": 1240 + "Rank": 1, + "CommandName": "Set-PnPAppSideLoading" }, { - "Rank": 2, + "Id": 1241, "Command": "Set-PnPAppSideLoading -Off", - "CommandName": "Set-PnPAppSideLoading", - "Id": 1241 + "Rank": 2, + "CommandName": "Set-PnPAppSideLoading" }, { - "Rank": 1, + "Id": 1242, "Command": "Set-PnPAuditing -EnableAll", - "CommandName": "Set-PnPAuditing", - "Id": 1242 + "Rank": 1, + "CommandName": "Set-PnPAuditing" }, { - "Rank": 2, + "Id": 1243, "Command": "Set-PnPAuditing -DisableAll", - "CommandName": "Set-PnPAuditing", - "Id": 1243 + "Rank": 2, + "CommandName": "Set-PnPAuditing" }, { - "Rank": 3, + "Id": 1244, "Command": "Set-PnPAuditing -RetentionTime 7", - "CommandName": "Set-PnPAuditing", - "Id": 1244 + "Rank": 3, + "CommandName": "Set-PnPAuditing" }, { - "Rank": 4, + "Id": 1245, "Command": "Set-PnPAuditing -TrimAuditLog", - "CommandName": "Set-PnPAuditing", - "Id": 1245 + "Rank": 4, + "CommandName": "Set-PnPAuditing" }, { - "Rank": 5, + "Id": 1246, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "CommandName": "Set-PnPAuditing", - "Id": 1246 + "Rank": 5, + "CommandName": "Set-PnPAuditing" }, { - "Rank": 1, + "Id": 1247, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "CommandName": "Set-PnPAvailablePageLayouts", - "Id": 1247 + "Rank": 1, + "CommandName": "Set-PnPAvailablePageLayouts" }, { - "Rank": 1, + "Id": 1248, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1248 + "Rank": 1, + "CommandName": "Set-PnPAzureADAppSitePermission" }, { - "Rank": 2, + "Id": 1249, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1249 + "Rank": 2, + "CommandName": "Set-PnPAzureADAppSitePermission" }, { - "Rank": 1, + "Id": 1250, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup", - "Id": 1250 + "Rank": 1, + "CommandName": "Set-PnPAzureADGroup" }, { - "Rank": 2, + "Id": 1251, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup", - "Id": 1251 + "Rank": 2, + "CommandName": "Set-PnPAzureADGroup" }, { - "Rank": 3, + "Id": 1252, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPAzureADGroup", - "Id": 1252 + "Rank": 3, + "CommandName": "Set-PnPAzureADGroup" }, { - "Rank": 1, + "Id": 1253, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1253 + "Rank": 1, + "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Rank": 2, + "Id": 1254, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1254 + "Rank": 2, + "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Rank": 3, + "Id": 1255, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1255 + "Rank": 3, + "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Rank": 1, + "Id": 1256, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1256 + "Rank": 1, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { - "Rank": 2, + "Id": 1257, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1257 + "Rank": 2, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { - "Rank": 1, + "Id": 1258, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1258 + "Rank": 1, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 2, + "Id": 1259, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1259 + "Rank": 2, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 3, + "Id": 1260, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1260 + "Rank": 3, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 4, + "Id": 1261, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1261 + "Rank": 4, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 1, + "Id": 1262, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType", - "Id": 1262 + "Rank": 1, + "CommandName": "Set-PnPContentType" }, { - "Rank": 2, + "Id": 1263, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "CommandName": "Set-PnPContentType", - "Id": 1263 + "Rank": 2, + "CommandName": "Set-PnPContentType" }, { - "Rank": 3, + "Id": 1264, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType", - "Id": 1264 + "Rank": 3, + "CommandName": "Set-PnPContentType" }, { - "Rank": 4, + "Id": 1265, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "CommandName": "Set-PnPContentType", - "Id": 1265 + "Rank": 4, + "CommandName": "Set-PnPContentType" }, { - "Rank": 5, + "Id": 1266, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "CommandName": "Set-PnPContentType", - "Id": 1266 + "Rank": 5, + "CommandName": "Set-PnPContentType" }, { - "Rank": 1, + "Id": 1267, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1267 + "Rank": 1, + "CommandName": "Set-PnPDefaultColumnValues" }, { - "Rank": 2, + "Id": 1268, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1268 + "Rank": 2, + "CommandName": "Set-PnPDefaultColumnValues" }, { - "Rank": 3, + "Id": 1269, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1269 + "Rank": 3, + "CommandName": "Set-PnPDefaultColumnValues" }, { - "Rank": 4, + "Id": 1270, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1270 + "Rank": 4, + "CommandName": "Set-PnPDefaultColumnValues" }, { - "Rank": 1, + "Id": 1271, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "CommandName": "Set-PnPDefaultContentTypeToList", - "Id": 1271 + "Rank": 1, + "CommandName": "Set-PnPDefaultContentTypeToList" }, { - "Rank": 1, + "Id": 1272, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1272 + "Rank": 1, + "CommandName": "Set-PnPDefaultPageLayout" }, { - "Rank": 2, + "Id": 1273, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1273 + "Rank": 2, + "CommandName": "Set-PnPDefaultPageLayout" }, { - "Rank": 3, + "Id": 1274, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1274 + "Rank": 3, + "CommandName": "Set-PnPDefaultPageLayout" }, { - "Rank": 1, + "Id": 1275, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1275 + "Rank": 1, + "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Rank": 2, + "Id": 1276, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1276 + "Rank": 2, + "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Rank": 3, + "Id": 1277, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1277 + "Rank": 3, + "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Rank": 1, + "Id": 1278, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "CommandName": "Set-PnPDocumentSetField", - "Id": 1278 + "Rank": 1, + "CommandName": "Set-PnPDocumentSetField" }, { - "Rank": 2, + "Id": 1279, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "CommandName": "Set-PnPDocumentSetField", - "Id": 1279 + "Rank": 2, + "CommandName": "Set-PnPDocumentSetField" }, { - "Rank": 1, + "Id": 1280, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "CommandName": "Set-PnPField", - "Id": 1280 + "Rank": 1, + "CommandName": "Set-PnPField" }, { - "Rank": 2, + "Id": 1281, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "CommandName": "Set-PnPField", - "Id": 1281 + "Rank": 2, + "CommandName": "Set-PnPField" }, { - "Rank": 3, + "Id": 1282, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "CommandName": "Set-PnPField", - "Id": 1282 + "Rank": 3, + "CommandName": "Set-PnPField" }, { - "Rank": 1, + "Id": 1283, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedIn", - "Id": 1283 + "Rank": 1, + "CommandName": "Set-PnPFileCheckedIn" }, { - "Rank": 2, + "Id": 1284, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "CommandName": "Set-PnPFileCheckedIn", - "Id": 1284 + "Rank": 2, + "CommandName": "Set-PnPFileCheckedIn" }, { - "Rank": 1, + "Id": 1285, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedOut", - "Id": 1285 + "Rank": 1, + "CommandName": "Set-PnPFileCheckedOut" }, { - "Rank": 1, + "Id": 1286, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission", - "Id": 1286 + "Rank": 1, + "CommandName": "Set-PnPFolderPermission" }, { - "Rank": 2, + "Id": 1287, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission", - "Id": 1287 + "Rank": 2, + "CommandName": "Set-PnPFolderPermission" }, { - "Rank": 3, + "Id": 1288, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "CommandName": "Set-PnPFolderPermission", - "Id": 1288 + "Rank": 3, + "CommandName": "Set-PnPFolderPermission" }, { - "Rank": 1, + "Id": 1289, "Command": "Set-PnPFooter -Enabled:$true", - "CommandName": "Set-PnPFooter", - "Id": 1289 + "Rank": 1, + "CommandName": "Set-PnPFooter" }, { - "Rank": 2, + "Id": 1290, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "CommandName": "Set-PnPFooter", - "Id": 1290 + "Rank": 2, + "CommandName": "Set-PnPFooter" }, { - "Rank": 3, + "Id": 1291, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "CommandName": "Set-PnPFooter", - "Id": 1291 + "Rank": 3, + "CommandName": "Set-PnPFooter" }, { - "Rank": 4, + "Id": 1292, "Command": "Set-PnPFooter -LogoUrl \"\"", - "CommandName": "Set-PnPFooter", - "Id": 1292 + "Rank": 4, + "CommandName": "Set-PnPFooter" }, { - "Rank": 1, + "Id": 1293, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "CommandName": "Set-PnPGraphSubscription", - "Id": 1293 + "Rank": 1, + "CommandName": "Set-PnPGraphSubscription" }, { - "Rank": 1, + "Id": 1294, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "CommandName": "Set-PnPGroup", - "Id": 1294 + "Rank": 1, + "CommandName": "Set-PnPGroup" }, { - "Rank": 2, + "Id": 1295, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "CommandName": "Set-PnPGroup", - "Id": 1295 + "Rank": 2, + "CommandName": "Set-PnPGroup" }, { - "Rank": 1, + "Id": 1296, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "CommandName": "Set-PnPGroupPermissions", - "Id": 1296 + "Rank": 1, + "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 2, + "Id": 1297, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "CommandName": "Set-PnPGroupPermissions", - "Id": 1297 + "Rank": 2, + "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 3, + "Id": 1298, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions", - "Id": 1298 + "Rank": 3, + "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 4, + "Id": 1299, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions", - "Id": 1299 + "Rank": 4, + "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 5, + "Id": 1300, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "CommandName": "Set-PnPGroupPermissions", - "Id": 1300 + "Rank": 5, + "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 1, + "Id": 1301, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1301 + "Rank": 1, + "CommandName": "Set-PnPHideDefaultThemes" }, { - "Rank": 2, + "Id": 1302, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1302 + "Rank": 2, + "CommandName": "Set-PnPHideDefaultThemes" }, { - "Rank": 1, + "Id": 1303, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "CommandName": "Set-PnPHomePage", - "Id": 1303 + "Rank": 1, + "CommandName": "Set-PnPHomePage" }, { - "Rank": 2, + "Id": 1304, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "CommandName": "Set-PnPHomePage", - "Id": 1304 + "Rank": 2, + "CommandName": "Set-PnPHomePage" }, { - "Rank": 1, + "Id": 1305, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "CommandName": "Set-PnPHomeSite", - "Id": 1305 + "Rank": 1, + "CommandName": "Set-PnPHomeSite" }, { - "Rank": 2, + "Id": 1306, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "CommandName": "Set-PnPHomeSite", - "Id": 1306 + "Rank": 2, + "CommandName": "Set-PnPHomeSite" }, { - "Rank": 1, + "Id": 1307, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "CommandName": "Set-PnPHubSite", - "Id": 1307 + "Rank": 1, + "CommandName": "Set-PnPHubSite" }, { - "Rank": 2, + "Id": 1308, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "CommandName": "Set-PnPHubSite", - "Id": 1308 + "Rank": 2, + "CommandName": "Set-PnPHubSite" }, { - "Rank": 3, + "Id": 1309, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "CommandName": "Set-PnPHubSite", - "Id": 1309 + "Rank": 3, + "CommandName": "Set-PnPHubSite" }, { - "Rank": 4, + "Id": 1310, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "CommandName": "Set-PnPHubSite", - "Id": 1310 + "Rank": 4, + "CommandName": "Set-PnPHubSite" }, { - "Rank": 5, + "Id": 1311, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "CommandName": "Set-PnPHubSite", - "Id": 1311 + "Rank": 5, + "CommandName": "Set-PnPHubSite" }, { - "Rank": 6, + "Id": 1312, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "CommandName": "Set-PnPHubSite", - "Id": 1312 + "Rank": 6, + "CommandName": "Set-PnPHubSite" }, { - "Rank": 1, + "Id": 1313, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "CommandName": "Set-PnPImageListItemColumn", - "Id": 1313 + "Rank": 1, + "CommandName": "Set-PnPImageListItemColumn" }, { - "Rank": 2, + "Id": 1314, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "CommandName": "Set-PnPImageListItemColumn", - "Id": 1314 + "Rank": 2, + "CommandName": "Set-PnPImageListItemColumn" }, { - "Rank": 1, + "Id": 1315, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "CommandName": "Set-PnPIndexedProperties", - "Id": 1315 + "Rank": 1, + "CommandName": "Set-PnPIndexedProperties" }, { - "Rank": 1, + "Id": 1316, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1316 + "Rank": 1, + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { - "Rank": 2, + "Id": 1317, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1317 + "Rank": 2, + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { - "Rank": 1, + "Id": 1318, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "CommandName": "Set-PnPKnowledgeHubSite", - "Id": 1318 + "Rank": 1, + "CommandName": "Set-PnPKnowledgeHubSite" }, { - "Rank": 1, + "Id": 1319, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "CommandName": "Set-PnPLabel", - "Id": 1319 + "Rank": 1, + "CommandName": "Set-PnPLabel" }, { - "Rank": 2, + "Id": 1320, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "CommandName": "Set-PnPLabel", - "Id": 1320 + "Rank": 2, + "CommandName": "Set-PnPLabel" }, { - "Rank": 1, + "Id": 1321, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "CommandName": "Set-PnPList", - "Id": 1321 + "Rank": 1, + "CommandName": "Set-PnPList" }, { - "Rank": 2, + "Id": 1322, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "CommandName": "Set-PnPList", - "Id": 1322 + "Rank": 2, + "CommandName": "Set-PnPList" }, { - "Rank": 3, + "Id": 1323, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "CommandName": "Set-PnPList", - "Id": 1323 + "Rank": 3, + "CommandName": "Set-PnPList" }, { - "Rank": 4, + "Id": 1324, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "CommandName": "Set-PnPList", - "Id": 1324 + "Rank": 4, + "CommandName": "Set-PnPList" }, { - "Rank": 5, + "Id": 1325, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "CommandName": "Set-PnPList", - "Id": 1325 + "Rank": 5, + "CommandName": "Set-PnPList" }, { - "Rank": 6, + "Id": 1326, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "CommandName": "Set-PnPList", - "Id": 1326 + "Rank": 6, + "CommandName": "Set-PnPList" }, { - "Rank": 7, + "Id": 1327, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "CommandName": "Set-PnPList", - "Id": 1327 + "Rank": 7, + "CommandName": "Set-PnPList" }, { - "Rank": 8, + "Id": 1328, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPList", - "Id": 1328 + "Rank": 8, + "CommandName": "Set-PnPList" }, { - "Rank": 9, + "Id": 1329, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "CommandName": "Set-PnPList", - "Id": 1329 + "Rank": 9, + "CommandName": "Set-PnPList" }, { - "Rank": 10, + "Id": 1330, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "CommandName": "Set-PnPList", - "Id": 1330 + "Rank": 10, + "CommandName": "Set-PnPList" }, { - "Rank": 11, + "Id": 1331, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "CommandName": "Set-PnPList", - "Id": 1331 + "Rank": 11, + "CommandName": "Set-PnPList" }, { - "Rank": 1, + "Id": 1332, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1332 + "Rank": 1, + "CommandName": "Set-PnPListInformationRightsManagement" }, { - "Rank": 2, + "Id": 1333, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1333 + "Rank": 2, + "CommandName": "Set-PnPListInformationRightsManagement" }, { - "Rank": 1, + "Id": 1334, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", - "Id": 1334 + "Rank": 1, + "CommandName": "Set-PnPListItem" }, { - "Rank": 2, + "Id": 1335, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", - "Id": 1335 + "Rank": 2, + "CommandName": "Set-PnPListItem" }, { - "Rank": 3, + "Id": 1336, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", - "Id": 1336 + "Rank": 3, + "CommandName": "Set-PnPListItem" }, { - "Rank": 4, + "Id": 1337, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "CommandName": "Set-PnPListItem", - "Id": 1337 + "Rank": 4, + "CommandName": "Set-PnPListItem" }, { - "Rank": 5, + "Id": 1338, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "CommandName": "Set-PnPListItem", - "Id": 1338 + "Rank": 5, + "CommandName": "Set-PnPListItem" }, { - "Rank": 1, + "Id": 1339, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Set-PnPListItemAsRecord", - "Id": 1339 + "Rank": 1, + "CommandName": "Set-PnPListItemAsRecord" }, { - "Rank": 2, + "Id": 1340, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "CommandName": "Set-PnPListItemAsRecord", - "Id": 1340 + "Rank": 2, + "CommandName": "Set-PnPListItemAsRecord" }, { - "Rank": 1, + "Id": 1341, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission", - "Id": 1341 + "Rank": 1, + "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 2, + "Id": 1342, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission", - "Id": 1342 + "Rank": 2, + "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 3, + "Id": 1343, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "CommandName": "Set-PnPListItemPermission", - "Id": 1343 + "Rank": 3, + "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 4, + "Id": 1344, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "CommandName": "Set-PnPListItemPermission", - "Id": 1344 + "Rank": 4, + "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 5, + "Id": 1345, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "CommandName": "Set-PnPListItemPermission", - "Id": 1345 + "Rank": 5, + "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 1, + "Id": 1346, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListPermission", - "Id": 1346 + "Rank": 1, + "CommandName": "Set-PnPListPermission" }, { - "Rank": 2, + "Id": 1347, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListPermission", - "Id": 1347 + "Rank": 2, + "CommandName": "Set-PnPListPermission" }, { - "Rank": 1, + "Id": 1348, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1348 + "Rank": 1, + "CommandName": "Set-PnPListRecordDeclaration" }, { - "Rank": 2, + "Id": 1349, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1349 + "Rank": 2, + "CommandName": "Set-PnPListRecordDeclaration" }, { - "Rank": 1, + "Id": 1350, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", - "Id": 1350 + "Rank": 1, + "CommandName": "Set-PnPMasterPage" }, { - "Rank": 2, + "Id": 1351, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", - "Id": 1351 + "Rank": 2, + "CommandName": "Set-PnPMasterPage" }, { - "Rank": 3, + "Id": 1352, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", - "Id": 1352 + "Rank": 3, + "CommandName": "Set-PnPMasterPage" }, { - "Rank": 4, + "Id": 1353, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", - "Id": 1353 + "Rank": 4, + "CommandName": "Set-PnPMasterPage" }, { - "Rank": 1, + "Id": 1354, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1354 + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Rank": 2, + "Id": 1355, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1355 + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Rank": 3, + "Id": 1356, "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1356 + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Rank": 1, + "Id": 1357, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1357 + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Rank": 2, + "Id": 1358, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1358 + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Rank": 3, + "Id": 1359, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1359 + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Rank": 1, + "Id": 1360, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1360 + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Rank": 2, + "Id": 1361, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1361 + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Rank": 3, + "Id": 1362, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1362 + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Rank": 1, + "Id": 1363, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1363 + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Rank": 2, + "Id": 1364, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1364 + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Rank": 3, + "Id": 1365, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1365 + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Rank": 1, + "Id": 1366, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1366 + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Rank": 2, + "Id": 1367, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1367 + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Rank": 3, + "Id": 1368, "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1368 + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Rank": 1, + "Id": 1369, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1369 + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Rank": 2, + "Id": 1370, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1370 + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Rank": 3, + "Id": 1371, "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1371 + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Rank": 1, + "Id": 1372, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1372 + "Rank": 1, + "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 2, + "Id": 1373, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1373 + "Rank": 2, + "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 3, + "Id": 1374, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1374 + "Rank": 3, + "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 4, + "Id": 1375, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1375 + "Rank": 4, + "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 5, + "Id": 1376, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1376 + "Rank": 5, + "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 6, + "Id": 1377, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1377 + "Rank": 6, + "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 1, + "Id": 1378, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1378 + "Rank": 1, + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { - "Rank": 2, + "Id": 1379, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1379 + "Rank": 2, + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { - "Rank": 1, + "Id": 1380, "Command": "Set-PnPMinimalDownloadStrategy -Off", - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1380 + "Rank": 1, + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { - "Rank": 2, + "Id": 1381, "Command": "Set-PnPMinimalDownloadStrategy -On", - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1381 + "Rank": 2, + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { - "Rank": 1, + "Id": 1382, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "CommandName": "Set-PnPPage", - "Id": 1382 + "Rank": 1, + "CommandName": "Set-PnPPage" }, { - "Rank": 2, + "Id": 1383, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "CommandName": "Set-PnPPage", - "Id": 1383 + "Rank": 2, + "CommandName": "Set-PnPPage" }, { - "Rank": 3, + "Id": 1384, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "CommandName": "Set-PnPPage", - "Id": 1384 + "Rank": 3, + "CommandName": "Set-PnPPage" }, { - "Rank": 4, + "Id": 1385, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "CommandName": "Set-PnPPage", - "Id": 1385 + "Rank": 4, + "CommandName": "Set-PnPPage" }, { - "Rank": 5, + "Id": 1386, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "CommandName": "Set-PnPPage", - "Id": 1386 + "Rank": 5, + "CommandName": "Set-PnPPage" }, { - "Rank": 6, + "Id": 1387, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "CommandName": "Set-PnPPage", - "Id": 1387 + "Rank": 6, + "CommandName": "Set-PnPPage" }, { - "Rank": 7, + "Id": 1388, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Set-PnPPage", - "Id": 1388 + "Rank": 7, + "CommandName": "Set-PnPPage" }, { - "Rank": 8, + "Id": 1389, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "CommandName": "Set-PnPPage", - "Id": 1389 + "Rank": 8, + "CommandName": "Set-PnPPage" }, { - "Rank": 9, + "Id": 1390, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Set-PnPPage", - "Id": 1390 + "Rank": 9, + "CommandName": "Set-PnPPage" }, { - "Rank": 10, + "Id": 1391, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Set-PnPPage", - "Id": 1391 + "Rank": 10, + "CommandName": "Set-PnPPage" }, { - "Rank": 11, + "Id": 1392, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "CommandName": "Set-PnPPage", - "Id": 1392 + "Rank": 11, + "CommandName": "Set-PnPPage" }, { - "Rank": 1, + "Id": 1393, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "CommandName": "Set-PnPPageTextPart", - "Id": 1393 + "Rank": 1, + "CommandName": "Set-PnPPageTextPart" }, { - "Rank": 1, + "Id": 1394, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "CommandName": "Set-PnPPageWebPart", - "Id": 1394 + "Rank": 1, + "CommandName": "Set-PnPPageWebPart" }, { - "Rank": 2, + "Id": 1395, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "CommandName": "Set-PnPPageWebPart", - "Id": 1395 + "Rank": 2, + "CommandName": "Set-PnPPageWebPart" }, { - "Rank": 1, + "Id": 1396, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "CommandName": "Set-PnPPlannerBucket", - "Id": 1396 + "Rank": 1, + "CommandName": "Set-PnPPlannerBucket" }, { - "Rank": 1, + "Id": 1397, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1397 + "Rank": 1, + "CommandName": "Set-PnPPlannerConfiguration" }, { - "Rank": 2, + "Id": 1398, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1398 + "Rank": 2, + "CommandName": "Set-PnPPlannerConfiguration" }, { - "Rank": 1, + "Id": 1399, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "CommandName": "Set-PnPPlannerPlan", - "Id": 1399 + "Rank": 1, + "CommandName": "Set-PnPPlannerPlan" }, { - "Rank": 1, + "Id": 1400, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "CommandName": "Set-PnPPlannerTask", - "Id": 1400 + "Rank": 1, + "CommandName": "Set-PnPPlannerTask" }, { - "Rank": 2, + "Id": 1401, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "CommandName": "Set-PnPPlannerTask", - "Id": 1401 + "Rank": 2, + "CommandName": "Set-PnPPlannerTask" }, { - "Rank": 3, + "Id": 1402, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "CommandName": "Set-PnPPlannerTask", - "Id": 1402 + "Rank": 3, + "CommandName": "Set-PnPPlannerTask" }, { - "Rank": 1, + "Id": 1403, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPPlannerUserPolicy", - "Id": 1403 + "Rank": 1, + "CommandName": "Set-PnPPlannerUserPolicy" }, { - "Rank": 1, + "Id": 1404, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1404 + "Rank": 1, + "CommandName": "Set-PnPPropertyBagValue" }, { - "Rank": 2, + "Id": 1405, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1405 + "Rank": 2, + "CommandName": "Set-PnPPropertyBagValue" }, { - "Rank": 3, + "Id": 1406, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1406 + "Rank": 3, + "CommandName": "Set-PnPPropertyBagValue" }, { - "Rank": 1, + "Id": 1407, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1407 + "Rank": 1, + "CommandName": "Set-PnPRequestAccessEmails" }, { - "Rank": 2, + "Id": 1408, "Command": "Set-PnPRequestAccessEmails -Disabled", - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1408 + "Rank": 2, + "CommandName": "Set-PnPRequestAccessEmails" }, { - "Rank": 3, + "Id": 1409, "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1409 + "Rank": 3, + "CommandName": "Set-PnPRequestAccessEmails" }, { - "Rank": 1, + "Id": 1410, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "CommandName": "Set-PnPRoleDefinition", - "Id": 1410 + "Rank": 1, + "CommandName": "Set-PnPRoleDefinition" }, { - "Rank": 2, + "Id": 1411, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "CommandName": "Set-PnPRoleDefinition", - "Id": 1411 + "Rank": 2, + "CommandName": "Set-PnPRoleDefinition" }, { - "Rank": 3, + "Id": 1412, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "CommandName": "Set-PnPRoleDefinition", - "Id": 1412 + "Rank": 3, + "CommandName": "Set-PnPRoleDefinition" }, { - "Rank": 4, + "Id": 1413, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "CommandName": "Set-PnPRoleDefinition", - "Id": 1413 + "Rank": 4, + "CommandName": "Set-PnPRoleDefinition" }, { - "Rank": 1, + "Id": 1414, "Command": "Set-PnPSearchConfiguration -Configuration $config", - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1414 + "Rank": 1, + "CommandName": "Set-PnPSearchConfiguration" }, { - "Rank": 2, + "Id": 1415, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1415 + "Rank": 2, + "CommandName": "Set-PnPSearchConfiguration" }, { - "Rank": 3, + "Id": 1416, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1416 + "Rank": 3, + "CommandName": "Set-PnPSearchConfiguration" }, { - "Rank": 4, + "Id": 1417, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1417 + "Rank": 4, + "CommandName": "Set-PnPSearchConfiguration" }, { + "Id": 1418, + "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone", "Rank": 1, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "CommandName": "Set-PnPSearchSettings", - "Id": 1418 + "CommandName": "Set-PnPSearchExternalItem" }, { + "Id": 1419, + "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze 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" + }, + { + "Id": 1420, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Rank": 1, + "CommandName": "Set-PnPSearchSettings" + }, + { + "Id": 1421, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "CommandName": "Set-PnPSearchSettings", - "Id": 1419 + "Rank": 2, + "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 3, + "Id": 1422, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "CommandName": "Set-PnPSearchSettings", - "Id": 1420 + "Rank": 3, + "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 4, + "Id": 1423, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "CommandName": "Set-PnPSearchSettings", - "Id": 1421 + "Rank": 4, + "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 5, + "Id": 1424, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "CommandName": "Set-PnPSearchSettings", - "Id": 1422 + "Rank": 5, + "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 6, + "Id": 1425, "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "CommandName": "Set-PnPSearchSettings", - "Id": 1423 + "Rank": 6, + "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 7, + "Id": 1426, "Command": "Set-PnPSearchSettings -SearchScope Hub", - "CommandName": "Set-PnPSearchSettings", - "Id": 1424 + "Rank": 7, + "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 1, + "Id": 1427, "Command": "Set-PnPSite -Classification \"HBI\"", - "CommandName": "Set-PnPSite", - "Id": 1425 + "Rank": 1, + "CommandName": "Set-PnPSite" }, { - "Rank": 2, + "Id": 1428, "Command": "Set-PnPSite -Classification $null", - "CommandName": "Set-PnPSite", - "Id": 1426 + "Rank": 2, + "CommandName": "Set-PnPSite" }, { - "Rank": 3, + "Id": 1429, "Command": "Set-PnPSite -DisableFlows", - "CommandName": "Set-PnPSite", - "Id": 1427 + "Rank": 3, + "CommandName": "Set-PnPSite" }, { - "Rank": 4, + "Id": 1430, "Command": "Set-PnPSite -DisableFlows:$false", - "CommandName": "Set-PnPSite", - "Id": 1428 + "Rank": 4, + "CommandName": "Set-PnPSite" }, { - "Rank": 5, + "Id": 1431, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "CommandName": "Set-PnPSite", - "Id": 1429 + "Rank": 5, + "CommandName": "Set-PnPSite" }, { - "Rank": 6, + "Id": 1432, "Command": "Set-PnPSite -NoScriptSite $false", - "CommandName": "Set-PnPSite", - "Id": 1430 + "Rank": 6, + "CommandName": "Set-PnPSite" }, { - "Rank": 7, + "Id": 1433, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPSite", - "Id": 1431 + "Rank": 7, + "CommandName": "Set-PnPSite" }, { - "Rank": 8, + "Id": 1434, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "CommandName": "Set-PnPSite", - "Id": 1432 + "Rank": 8, + "CommandName": "Set-PnPSite" }, { - "Rank": 9, + "Id": 1435, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "CommandName": "Set-PnPSite", - "Id": 1433 + "Rank": 9, + "CommandName": "Set-PnPSite" }, { - "Rank": 10, + "Id": 1436, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "CommandName": "Set-PnPSite", - "Id": 1434 + "Rank": 10, + "CommandName": "Set-PnPSite" }, { - "Rank": 11, + "Id": 1437, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "CommandName": "Set-PnPSite", - "Id": 1435 + "Rank": 11, + "CommandName": "Set-PnPSite" }, { - "Rank": 12, + "Id": 1438, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "CommandName": "Set-PnPSite", - "Id": 1436 + "Rank": 12, + "CommandName": "Set-PnPSite" }, { - "Rank": 13, + "Id": 1439, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "CommandName": "Set-PnPSite", - "Id": 1437 + "Rank": 13, + "CommandName": "Set-PnPSite" }, { - "Rank": 14, + "Id": 1440, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", - "Id": 1438 + "Rank": 14, + "CommandName": "Set-PnPSite" }, { - "Rank": 15, + "Id": 1441, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", - "Id": 1439 + "Rank": 15, + "CommandName": "Set-PnPSite" }, { - "Rank": 16, + "Id": 1442, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", - "Id": 1440 + "Rank": 16, + "CommandName": "Set-PnPSite" }, { - "Rank": 17, + "Id": 1443, "Command": "Set-PnPSite -CancelVPForExistingLibs", - "CommandName": "Set-PnPSite", - "Id": 1441 + "Rank": 17, + "CommandName": "Set-PnPSite" }, { - "Rank": 1, + "Id": 1444, "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "CommandName": "Set-PnPSiteClassification", - "Id": 1442 + "Rank": 1, + "CommandName": "Set-PnPSiteClassification" }, { - "Rank": 1, + "Id": 1445, "Command": "Set-PnPSiteClosure -State Open", - "CommandName": "Set-PnPSiteClosure", - "Id": 1443 + "Rank": 1, + "CommandName": "Set-PnPSiteClosure" }, { - "Rank": 2, + "Id": 1446, "Command": "Set-PnPSiteClosure -State Closed", - "CommandName": "Set-PnPSiteClosure", - "Id": 1444 + "Rank": 2, + "CommandName": "Set-PnPSiteClosure" }, { - "Rank": 1, + "Id": 1447, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "CommandName": "Set-PnPSiteDesign", - "Id": 1445 + "Rank": 1, + "CommandName": "Set-PnPSiteDesign" }, { - "Rank": 2, + "Id": 1448, "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": 1446 + "Rank": 2, + "CommandName": "Set-PnPSiteDesign" }, { - "Rank": 1, + "Id": 1449, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "CommandName": "Set-PnPSiteGroup", - "Id": 1447 + "Rank": 1, + "CommandName": "Set-PnPSiteGroup" }, { - "Rank": 2, + "Id": 1450, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "CommandName": "Set-PnPSiteGroup", - "Id": 1448 + "Rank": 2, + "CommandName": "Set-PnPSiteGroup" }, { - "Rank": 1, + "Id": 1451, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Set-PnPSitePolicy", - "Id": 1449 + "Rank": 1, + "CommandName": "Set-PnPSitePolicy" }, { - "Rank": 1, + "Id": 1452, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScript", - "Id": 1450 + "Rank": 1, + "CommandName": "Set-PnPSiteScript" }, { - "Rank": 1, + "Id": 1453, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScriptPackage", - "Id": 1451 + "Rank": 1, + "CommandName": "Set-PnPSiteScriptPackage" }, { - "Rank": 1, + "Id": 1454, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1452 + "Rank": 1, + "CommandName": "Set-PnPSiteSensitivityLabel" }, { - "Rank": 2, + "Id": 1455, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1453 + "Rank": 2, + "CommandName": "Set-PnPSiteSensitivityLabel" }, { - "Rank": 1, + "Id": 1456, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1454 + "Rank": 1, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 2, + "Id": 1457, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1455 + "Rank": 2, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 3, + "Id": 1458, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1456 + "Rank": 3, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 4, + "Id": 1459, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1457 + "Rank": 4, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 5, + "Id": 1460, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1458 + "Rank": 5, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 6, + "Id": 1461, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1459 + "Rank": 6, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 1, + "Id": 1462, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity", - "Id": 1460 + "Rank": 1, + "CommandName": "Set-PnPStorageEntity" }, { - "Rank": 2, + "Id": 1463, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity", - "Id": 1461 + "Rank": 2, + "CommandName": "Set-PnPStorageEntity" }, { - "Rank": 1, + "Id": 1464, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1462 + "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { - "Rank": 2, + "Id": 1465, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1463 + "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { - "Rank": 1, + "Id": 1466, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1464 + "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { - "Rank": 2, + "Id": 1467, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1465 + "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { - "Rank": 1, + "Id": 1468, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1466 + "Rank": 1, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { - "Rank": 2, + "Id": 1469, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1467 + "Rank": 2, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { - "Rank": 1, + "Id": 1470, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1468 + "Rank": 1, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Rank": 2, + "Id": 1471, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1469 + "Rank": 2, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Rank": 3, + "Id": 1472, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1470 + "Rank": 3, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Rank": 1, + "Id": 1473, "Command": "Set-PnPTeamifyPromptHidden", - "CommandName": "Set-PnPTeamifyPromptHidden", - "Id": 1471 + "Rank": 1, + "CommandName": "Set-PnPTeamifyPromptHidden" }, { - "Rank": 1, + "Id": 1474, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "CommandName": "Set-PnPTeamsChannel", - "Id": 1472 + "Rank": 1, + "CommandName": "Set-PnPTeamsChannel" }, { - "Rank": 2, + "Id": 1475, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "CommandName": "Set-PnPTeamsChannel", - "Id": 1473 + "Rank": 2, + "CommandName": "Set-PnPTeamsChannel" }, { - "Rank": 1, + "Id": 1476, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1474 + "Rank": 1, + "CommandName": "Set-PnpTeamsChannelUser" }, { - "Rank": 2, + "Id": 1477, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1475 + "Rank": 2, + "CommandName": "Set-PnpTeamsChannelUser" }, { - "Rank": 1, + "Id": 1478, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "CommandName": "Set-PnPTeamsTab", - "Id": 1476 + "Rank": 1, + "CommandName": "Set-PnPTeamsTab" }, { - "Rank": 1, + "Id": 1479, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "CommandName": "Set-PnPTeamsTag", - "Id": 1477 + "Rank": 1, + "CommandName": "Set-PnPTeamsTag" }, { - "Rank": 1, + "Id": 1480, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "CommandName": "Set-PnPTeamsTeam", - "Id": 1478 + "Rank": 1, + "CommandName": "Set-PnPTeamsTeam" }, { - "Rank": 2, + "Id": 1481, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "CommandName": "Set-PnPTeamsTeam", - "Id": 1479 + "Rank": 2, + "CommandName": "Set-PnPTeamsTeam" }, { - "Rank": 3, + "Id": 1482, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "CommandName": "Set-PnPTeamsTeam", - "Id": 1480 + "Rank": 3, + "CommandName": "Set-PnPTeamsTeam" }, { - "Rank": 4, + "Id": 1483, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "CommandName": "Set-PnPTeamsTeam", - "Id": 1481 + "Rank": 4, + "CommandName": "Set-PnPTeamsTeam" }, { - "Rank": 1, + "Id": 1484, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1482 + "Rank": 1, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Rank": 2, + "Id": 1485, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1483 + "Rank": 2, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Rank": 3, + "Id": 1486, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1484 + "Rank": 3, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Rank": 1, + "Id": 1487, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "CommandName": "Set-PnPTeamsTeamPicture", - "Id": 1485 + "Rank": 1, + "CommandName": "Set-PnPTeamsTeamPicture" }, { - "Rank": 1, + "Id": 1488, "Command": "Set-PnPTemporarilyDisableAppBar $true", - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1486 + "Rank": 1, + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { - "Rank": 2, + "Id": 1489, "Command": "Set-PnPTemporarilyDisableAppBar $false", - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1487 + "Rank": 2, + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { - "Rank": 1, + "Id": 1490, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", - "CommandName": "Set-PnPTenant", - "Id": 1488 + "Rank": 1, + "CommandName": "Set-PnPTenant" }, { - "Rank": 2, + "Id": 1491, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "CommandName": "Set-PnPTenant", - "Id": 1489 + "Rank": 2, + "CommandName": "Set-PnPTenant" }, { - "Rank": 3, + "Id": 1492, "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "CommandName": "Set-PnPTenant", - "Id": 1490 + "Rank": 3, + "CommandName": "Set-PnPTenant" }, { - "Rank": 4, + "Id": 1493, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "CommandName": "Set-PnPTenant", - "Id": 1491 + "Rank": 4, + "CommandName": "Set-PnPTenant" }, { - "Rank": 1, + "Id": 1494, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "CommandName": "Set-PnPTenantAppCatalogUrl", - "Id": 1492 + "Rank": 1, + "CommandName": "Set-PnPTenantAppCatalogUrl" }, { - "Rank": 1, + "Id": 1495, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1493 + "Rank": 1, + "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Rank": 2, + "Id": 1496, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1494 + "Rank": 2, + "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Rank": 3, + "Id": 1497, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1495 + "Rank": 3, + "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Rank": 1, + "Id": 1498, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", - "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1496 + "Rank": 1, + "CommandName": "Set-PnPTenantCdnPolicy" }, { - "Rank": 2, + "Id": 1499, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1497 + "Rank": 2, + "CommandName": "Set-PnPTenantCdnPolicy" }, { - "Rank": 1, + "Id": 1500, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "CommandName": "Set-PnPTenantSite", - "Id": 1498 + "Rank": 1, + "CommandName": "Set-PnPTenantSite" }, { - "Rank": 2, + "Id": 1501, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "CommandName": "Set-PnPTenantSite", - "Id": 1499 + "Rank": 2, + "CommandName": "Set-PnPTenantSite" }, { - "Rank": 3, + "Id": 1502, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPTenantSite", - "Id": 1500 + "Rank": 3, + "CommandName": "Set-PnPTenantSite" }, { - "Rank": 4, + "Id": 1503, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Set-PnPTenantSite", - "Id": 1501 + "Rank": 4, + "CommandName": "Set-PnPTenantSite" }, { - "Rank": 5, + "Id": 1504, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "CommandName": "Set-PnPTenantSite", - "Id": 1502 + "Rank": 5, + "CommandName": "Set-PnPTenantSite" }, { - "Rank": 1, + "Id": 1505, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1503 + "Rank": 1, + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { - "Rank": 2, + "Id": 1506, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1504 + "Rank": 2, + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { - "Rank": 1, + "Id": 1507, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "CommandName": "Set-PnPTerm", - "Id": 1505 + "Rank": 1, + "CommandName": "Set-PnPTerm" }, { - "Rank": 2, + "Id": 1508, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm", - "Id": 1506 + "Rank": 2, + "CommandName": "Set-PnPTerm" }, { - "Rank": 3, + "Id": 1509, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm", - "Id": 1507 + "Rank": 3, + "CommandName": "Set-PnPTerm" }, { - "Rank": 4, + "Id": 1510, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "CommandName": "Set-PnPTerm", - "Id": 1508 + "Rank": 4, + "CommandName": "Set-PnPTerm" }, { - "Rank": 1, + "Id": 1511, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "CommandName": "Set-PnPTermGroup", - "Id": 1509 + "Rank": 1, + "CommandName": "Set-PnPTermGroup" }, { - "Rank": 1, + "Id": 1512, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "CommandName": "Set-PnPTermSet", - "Id": 1510 + "Rank": 1, + "CommandName": "Set-PnPTermSet" }, { - "Rank": 2, + "Id": 1513, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "CommandName": "Set-PnPTermSet", - "Id": 1511 + "Rank": 2, + "CommandName": "Set-PnPTermSet" }, { - "Rank": 3, + "Id": 1514, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "CommandName": "Set-PnPTermSet", - "Id": 1512 + "Rank": 3, + "CommandName": "Set-PnPTermSet" }, { - "Rank": 1, + "Id": 1515, "Command": "Set-PnPTheme", - "CommandName": "Set-PnPTheme", - "Id": 1513 + "Rank": 1, + "CommandName": "Set-PnPTheme" }, { - "Rank": 2, + "Id": 1516, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "CommandName": "Set-PnPTheme", - "Id": 1514 + "Rank": 2, + "CommandName": "Set-PnPTheme" }, { - "Rank": 3, + "Id": 1517, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "CommandName": "Set-PnPTheme", - "Id": 1515 + "Rank": 3, + "CommandName": "Set-PnPTheme" }, { - "Rank": 4, + "Id": 1518, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "CommandName": "Set-PnPTheme", - "Id": 1516 + "Rank": 4, + "CommandName": "Set-PnPTheme" }, { - "Rank": 1, + "Id": 1519, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "CommandName": "Set-PnPTraceLog", - "Id": 1517 + "Rank": 1, + "CommandName": "Set-PnPTraceLog" }, { - "Rank": 2, + "Id": 1520, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "CommandName": "Set-PnPTraceLog", - "Id": 1518 + "Rank": 2, + "CommandName": "Set-PnPTraceLog" }, { - "Rank": 3, + "Id": 1521, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "CommandName": "Set-PnPTraceLog", - "Id": 1519 + "Rank": 3, + "CommandName": "Set-PnPTraceLog" }, { - "Rank": 4, + "Id": 1522, "Command": "Set-PnPTraceLog -Off", - "CommandName": "Set-PnPTraceLog", - "Id": 1520 + "Rank": 4, + "CommandName": "Set-PnPTraceLog" }, { - "Rank": 1, + "Id": 1523, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "CommandName": "Set-PnPUserOneDriveQuota", - "Id": 1521 + "Rank": 1, + "CommandName": "Set-PnPUserOneDriveQuota" }, { - "Rank": 1, + "Id": 1524, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "CommandName": "Set-PnPUserProfileProperty", - "Id": 1522 + "Rank": 1, + "CommandName": "Set-PnPUserProfileProperty" }, { - "Rank": 2, + "Id": 1525, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "CommandName": "Set-PnPUserProfileProperty", - "Id": 1523 + "Rank": 2, + "CommandName": "Set-PnPUserProfileProperty" }, { - "Rank": 1, + "Id": 1526, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "CommandName": "Set-PnPView", - "Id": 1524 + "Rank": 1, + "CommandName": "Set-PnPView" }, { - "Rank": 2, + "Id": 1527, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "CommandName": "Set-PnPView", - "Id": 1525 + "Rank": 2, + "CommandName": "Set-PnPView" }, { - "Rank": 3, + "Id": 1528, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "CommandName": "Set-PnPView", - "Id": 1526 + "Rank": 3, + "CommandName": "Set-PnPView" }, { - "Rank": 4, + "Id": 1529, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "CommandName": "Set-PnPView", - "Id": 1527 + "Rank": 4, + "CommandName": "Set-PnPView" }, { - "Rank": 1, + "Id": 1530, "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": 1528 + "Rank": 1, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Rank": 2, + "Id": 1531, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1529 + "Rank": 2, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Rank": 3, + "Id": 1532, "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": 1530 + "Rank": 3, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Rank": 4, + "Id": 1533, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1531 + "Rank": 4, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Rank": 1, + "Id": 1534, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "CommandName": "Set-PnPWeb", - "Id": 1532 + "Rank": 1, + "CommandName": "Set-PnPWeb" }, { - "Rank": 2, + "Id": 1535, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "CommandName": "Set-PnPWeb", - "Id": 1533 + "Rank": 2, + "CommandName": "Set-PnPWeb" }, { - "Rank": 3, + "Id": 1536, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "CommandName": "Set-PnPWeb", - "Id": 1534 + "Rank": 3, + "CommandName": "Set-PnPWeb" }, { - "Rank": 4, + "Id": 1537, "Command": "Set-PnPWeb -NoCrawl:$true", - "CommandName": "Set-PnPWeb", - "Id": 1535 + "Rank": 4, + "CommandName": "Set-PnPWeb" }, { - "Rank": 1, + "Id": 1538, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "CommandName": "Set-PnPWebHeader", - "Id": 1536 + "Rank": 1, + "CommandName": "Set-PnPWebHeader" }, { - "Rank": 2, + "Id": 1539, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "CommandName": "Set-PnPWebHeader", - "Id": 1537 + "Rank": 2, + "CommandName": "Set-PnPWebHeader" }, { - "Rank": 3, + "Id": 1540, "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "CommandName": "Set-PnPWebHeader", - "Id": 1538 + "Rank": 3, + "CommandName": "Set-PnPWebHeader" }, { - "Rank": 1, + "Id": 1541, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "CommandName": "Set-PnPWebhookSubscription", - "Id": 1539 + "Rank": 1, + "CommandName": "Set-PnPWebhookSubscription" }, { - "Rank": 2, + "Id": 1542, "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": 1540 + "Rank": 2, + "CommandName": "Set-PnPWebhookSubscription" }, { - "Rank": 1, + "Id": 1543, "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", - "CommandName": "Set-PnPWebPartProperty", - "Id": 1541 + "Rank": 1, + "CommandName": "Set-PnPWebPartProperty" }, { - "Rank": 1, + "Id": 1544, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", - "Id": 1542 + "Rank": 1, + "CommandName": "Set-PnPWebPermission" }, { - "Rank": 2, + "Id": 1545, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", - "Id": 1543 + "Rank": 2, + "CommandName": "Set-PnPWebPermission" }, { - "Rank": 3, + "Id": 1546, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", - "Id": 1544 + "Rank": 3, + "CommandName": "Set-PnPWebPermission" }, { - "Rank": 4, + "Id": 1547, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "CommandName": "Set-PnPWebPermission", - "Id": 1545 + "Rank": 4, + "CommandName": "Set-PnPWebPermission" }, { - "Rank": 1, + "Id": 1548, "Command": "Set-PnPWebTheme -Theme MyTheme", - "CommandName": "Set-PnPWebTheme", - "Id": 1546 + "Rank": 1, + "CommandName": "Set-PnPWebTheme" }, { - "Rank": 2, + "Id": 1549, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "CommandName": "Set-PnPWebTheme", - "Id": 1547 + "Rank": 2, + "CommandName": "Set-PnPWebTheme" }, { - "Rank": 1, + "Id": 1550, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "CommandName": "Set-PnPWikiPageContent", - "Id": 1548 + "Rank": 1, + "CommandName": "Set-PnPWikiPageContent" }, { - "Rank": 1, + "Id": 1551, "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "CommandName": "Submit-PnPSearchQuery", - "Id": 1549 + "Rank": 1, + "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 2, + "Id": 1552, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "CommandName": "Submit-PnPSearchQuery", - "Id": 1550 + "Rank": 2, + "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 3, + "Id": 1553, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "CommandName": "Submit-PnPSearchQuery", - "Id": 1551 + "Rank": 3, + "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 4, + "Id": 1554, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "CommandName": "Submit-PnPSearchQuery", - "Id": 1552 + "Rank": 4, + "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 5, + "Id": 1555, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "CommandName": "Submit-PnPSearchQuery", - "Id": 1553 + "Rank": 5, + "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 1, + "Id": 1556, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1554 + "Rank": 1, + "CommandName": "Submit-PnPTeamsChannelMessage" }, { - "Rank": 2, + "Id": 1557, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1555 + "Rank": 2, + "CommandName": "Submit-PnPTeamsChannelMessage" }, { - "Rank": 1, + "Id": 1558, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Sync-PnPAppToTeams", - "Id": 1556 + "Rank": 1, + "CommandName": "Sync-PnPAppToTeams" }, { - "Rank": 1, + "Id": 1559, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1557 + "Rank": 1, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Rank": 2, + "Id": 1560, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1558 + "Rank": 2, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Rank": 3, + "Id": 1561, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1559 + "Rank": 3, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Rank": 1, + "Id": 1562, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "CommandName": "Test-PnPListItemIsRecord", - "Id": 1560 + "Rank": 1, + "CommandName": "Test-PnPListItemIsRecord" }, { - "Rank": 1, + "Id": 1563, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Id": 1561 + "Rank": 1, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { - "Rank": 1, + "Id": 1564, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Test-PnPSite", - "Id": 1562 + "Rank": 1, + "CommandName": "Test-PnPSite" }, { - "Rank": 2, + "Id": 1565, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "CommandName": "Test-PnPSite", - "Id": 1563 + "Rank": 2, + "CommandName": "Test-PnPSite" }, { - "Rank": 1, + "Id": 1566, "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "CommandName": "Test-PnPTenantTemplate", - "Id": 1564 + "Rank": 1, + "CommandName": "Test-PnPTenantTemplate" }, { - "Rank": 1, + "Id": 1567, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "CommandName": "Undo-PnPFileCheckedOut", - "Id": 1565 + "Rank": 1, + "CommandName": "Undo-PnPFileCheckedOut" }, { - "Rank": 1, + "Id": 1568, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Uninstall-PnPApp", - "Id": 1566 + "Rank": 1, + "CommandName": "Uninstall-PnPApp" }, { - "Rank": 2, + "Id": 1569, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Uninstall-PnPApp", - "Id": 1567 + "Rank": 2, + "CommandName": "Uninstall-PnPApp" }, { - "Rank": 1, + "Id": 1570, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Unpublish-PnPApp", - "Id": 1568 + "Rank": 1, + "CommandName": "Unpublish-PnPApp" }, { - "Rank": 2, + "Id": 1571, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Unpublish-PnPApp", - "Id": 1569 + "Rank": 2, + "CommandName": "Unpublish-PnPApp" }, { - "Rank": 1, + "Id": 1572, "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "CommandName": "Unpublish-PnPContentType", - "Id": 1570 + "Rank": 1, + "CommandName": "Unpublish-PnPContentType" }, { - "Rank": 1, + "Id": 1573, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1571 + "Rank": 1, + "CommandName": "Unpublish-PnPSyntexModel" }, { - "Rank": 2, + "Id": 1574, "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": 1572 + "Rank": 2, + "CommandName": "Unpublish-PnPSyntexModel" }, { - "Rank": 1, + "Id": 1575, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Unregister-PnPHubSite", - "Id": 1573 + "Rank": 1, + "CommandName": "Unregister-PnPHubSite" }, { - "Rank": 1, + "Id": 1576, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Update-PnPApp", - "Id": 1574 + "Rank": 1, + "CommandName": "Update-PnPApp" }, { - "Rank": 2, + "Id": 1577, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Update-PnPApp", - "Id": 1575 + "Rank": 2, + "CommandName": "Update-PnPApp" }, { - "Rank": 1, + "Id": 1578, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1576 + "Rank": 1, + "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Rank": 2, + "Id": 1579, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1577 + "Rank": 2, + "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Rank": 3, + "Id": 1580, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1578 + "Rank": 3, + "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Rank": 1, + "Id": 1581, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1579 + "Rank": 1, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Rank": 2, + "Id": 1582, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1580 + "Rank": 2, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Rank": 3, + "Id": 1583, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1581 + "Rank": 3, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Rank": 1, + "Id": 1584, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "CommandName": "Update-PnPTeamsApp", - "Id": 1582 + "Rank": 1, + "CommandName": "Update-PnPTeamsApp" }, { - "Rank": 1, + "Id": 1585, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Update-PnPTeamsUser", - "Id": 1583 + "Rank": 1, + "CommandName": "Update-PnPTeamsUser" }, { - "Rank": 2, + "Id": 1586, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Update-PnPTeamsUser", - "Id": 1584 + "Rank": 2, + "CommandName": "Update-PnPTeamsUser" }, { - "Rank": 3, + "Id": 1587, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "CommandName": "Update-PnPTeamsUser", - "Id": 1585 + "Rank": 3, + "CommandName": "Update-PnPTeamsUser" }, { - "Rank": 1, + "Id": 1588, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "CommandName": "Update-PnPUserType", - "Id": 1586 + "Rank": 1, + "CommandName": "Update-PnPUserType" } ] diff --git a/version.txt b/version.txt index 9949e84d8..fd0c0af2c 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.82 \ No newline at end of file +2.2.83 \ No newline at end of file From 85b444c6fe3432c1100ff49abe7e127d287e0826 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sat, 30 Sep 2023 02:39:14 +0000 Subject: [PATCH 007/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6352 ++++++++--------- version.txt | 2 +- 3 files changed, 3178 insertions(+), 3178 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 94ef1fe9a..5784389f7 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -26b493b0d1876be9b2266f819b307892822c185b \ No newline at end of file +54970e75cc0bc1122cb95a5824d2a55f692e105a \ 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 5337fa1d5..a75442bd3 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -2,9529 +2,9529 @@ { "Id": 1, "Command": "Add-PnPAlert -List \"Demo List\"", - "Rank": 1, - "CommandName": "Add-PnPAlert" + "CommandName": "Add-PnPAlert", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPAlert", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPAlert", + "Rank": 3 }, { "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" + "CommandName": "Add-PnPAlert", + "Rank": 4 }, { "Id": 5, "Command": "Add-PnPApp -Path ./myapp.sppkg", - "Rank": 1, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Rank": 1 }, { "Id": 6, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Rank": 2, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Rank": 2 }, { "Id": 7, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "Rank": 3, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Rank": 3 }, { "Id": 8, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "Rank": 4, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Rank": 4 }, { "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" + "CommandName": "Add-PnPApplicationCustomizer", + "Rank": 1 }, { "Id": 10, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "Rank": 1, - "CommandName": "Add-PnPAvailableSiteClassification" + "CommandName": "Add-PnPAvailableSiteClassification", + "Rank": 1 }, { "Id": 11, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Rank": 2, - "CommandName": "Add-PnPAvailableSiteClassification" + "CommandName": "Add-PnPAvailableSiteClassification", + "Rank": 2 }, { "Id": 12, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 1 }, { "Id": 13, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 2 }, { "Id": 14, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 3 }, { "Id": 15, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 1 }, { "Id": 16, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 2 }, { "Id": 17, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 3 }, { "Id": 18, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "Rank": 1, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole" + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Rank": 2 }, { "Id": 20, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "Rank": 1, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPContentType", + "Rank": 2 }, { "Id": 22, "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "Rank": 3, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Rank": 3 }, { "Id": 23, "Command": "Add-PnPContentType -Name \"Project Item\"", - "Rank": 4, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Rank": 4 }, { "Id": 24, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "Rank": 5, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Rank": 5 }, { "Id": 25, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "Rank": 1, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Rank": 1 }, { "Id": 26, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "Rank": 2, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Rank": 2 }, { "Id": 27, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Rank": 1 }, { "Id": 28, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Rank": 2 }, { "Id": 29, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "Rank": 1, - "CommandName": "Add-PnPContentTypeToList" + "CommandName": "Add-PnPContentTypeToList", + "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`\"}\"", - "Rank": 1, - "CommandName": "Add-PnPCustomAction" + "CommandName": "Add-PnPCustomAction", + "Rank": 1 }, { "Id": 31, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "Rank": 1, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Rank": 1 }, { "Id": 32, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "Rank": 2, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Rank": 2 }, { "Id": 33, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "Rank": 1, - "CommandName": "Add-PnPDocumentSet" + "CommandName": "Add-PnPDocumentSet", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPEventReceiver", + "Rank": 1 }, { "Id": 35, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "Rank": 2, - "CommandName": "Add-PnPEventReceiver" + "CommandName": "Add-PnPEventReceiver", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPEventReceiver", + "Rank": 3 }, { "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" + "CommandName": "Add-PnPEventReceiver", + "Rank": 4 }, { "Id": 38, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "Rank": 1, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPField", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPField", + "Rank": 3 }, { "Id": 41, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "Rank": 4, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Rank": 4 }, { "Id": 42, "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "Rank": 5, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Rank": 5 }, { "Id": 43, "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "Rank": 6, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Rank": 6 }, { "Id": 44, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1, - "CommandName": "Add-PnPFieldToContentType" + "CommandName": "Add-PnPFieldToContentType", + "Rank": 1 }, { "Id": 45, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "Rank": 1, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 1 }, { "Id": 46, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "Rank": 2, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 2 }, { "Id": 47, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 3, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 3 }, { "Id": 48, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "Rank": 4, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 4 }, { "Id": 49, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 5, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 5 }, { "Id": 50, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "Rank": 6, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 6 }, { "Id": 51, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "Rank": 7, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 7 }, { "Id": 52, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 8, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 8 }, { "Id": 53, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 1 }, { "Id": 54, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 2 }, { "Id": 55, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", - "Rank": 3, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 3 }, { "Id": 56, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Rank": 1 }, { "Id": 57, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "Rank": 2, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Rank": 2 }, { "Id": 58, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Rank": 1, - "CommandName": "Add-PnPFileSharingInvite" + "CommandName": "Add-PnPFileSharingInvite", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPFileSharingInvite", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPFileSharingInvite", + "Rank": 3 }, { "Id": 61, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "Rank": 1, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 1 }, { "Id": 62, "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "Rank": 2, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 2 }, { "Id": 63, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "Rank": 3, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 3 }, { "Id": 64, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "Rank": 4, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 4 }, { "Id": 65, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "Rank": 5, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 5 }, { "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" + "CommandName": "Add-PnPFileUserSharingLink", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPFileUserSharingLink", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPFlowOwner", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPFlowOwner", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPFlowOwner", + "Rank": 3 }, { "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" + "CommandName": "Add-PnPFlowOwner", + "Rank": 4 }, { "Id": 72, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Rank": 1 }, { "Id": 73, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Rank": 2, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Rank": 2 }, { "Id": 74, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Rank": 3, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Rank": 3 }, { "Id": 75, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Rank": 1 }, { "Id": 76, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Rank": 3 }, { "Id": 78, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Rank": 1 }, { "Id": 79, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Rank": 2, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Rank": 2 }, { "Id": 80, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Rank": 1, - "CommandName": "Add-PnPFolderSharingInvite" + "CommandName": "Add-PnPFolderSharingInvite", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPFolderSharingInvite", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPFolderSharingInvite", + "Rank": 3 }, { "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" + "CommandName": "Add-PnPFolderUserSharingLink", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPFolderUserSharingLink", + "Rank": 2 }, { "Id": 85, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1, - "CommandName": "Add-PnPGroupMember" + "CommandName": "Add-PnPGroupMember", + "Rank": 1 }, { "Id": 86, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Rank": 2, - "CommandName": "Add-PnPGroupMember" + "CommandName": "Add-PnPGroupMember", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPHtmlPublishingPageLayout", + "Rank": 1 }, { "Id": 88, "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "Rank": 1, - "CommandName": "Add-PnPHubSiteAssociation" + "CommandName": "Add-PnPHubSiteAssociation", + "Rank": 1 }, { "Id": 89, "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "Rank": 1, - "CommandName": "Add-PnPHubToHubAssociation" + "CommandName": "Add-PnPHubToHubAssociation", + "Rank": 1 }, { "Id": 90, "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "Rank": 2, - "CommandName": "Add-PnPHubToHubAssociation" + "CommandName": "Add-PnPHubToHubAssociation", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPHubToHubAssociation", + "Rank": 3 }, { "Id": 92, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "Rank": 1, - "CommandName": "Add-PnPJavaScriptBlock" + "CommandName": "Add-PnPJavaScriptBlock", + "Rank": 1 }, { "Id": 93, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Rank": 2, - "CommandName": "Add-PnPJavaScriptBlock" + "CommandName": "Add-PnPJavaScriptBlock", + "Rank": 2 }, { "Id": 94, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "Rank": 1, - "CommandName": "Add-PnPJavaScriptLink" + "CommandName": "Add-PnPJavaScriptLink", + "Rank": 1 }, { "Id": 95, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "Rank": 2, - "CommandName": "Add-PnPJavaScriptLink" + "CommandName": "Add-PnPJavaScriptLink", + "Rank": 2 }, { "Id": 96, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "Rank": 1, - "CommandName": "Add-PnPListDesign" + "CommandName": "Add-PnPListDesign", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPListDesign", + "Rank": 2 }, { "Id": 98, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Rank": 1, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 1 }, { "Id": 99, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Rank": 2, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 2 }, { "Id": 100, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Rank": 3, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 3 }, { "Id": 101, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Rank": 1 }, { "Id": 102, "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 2, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Rank": 2 }, { "Id": 103, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "Rank": 3, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Rank": 3 }, { "Id": 104, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "Rank": 4, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Rank": 4 }, { "Id": 105, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "Rank": 5, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Rank": 5 }, { "Id": 106, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "Rank": 1, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Rank": 1 }, { "Id": 107, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 2, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Rank": 2 }, { "Id": 108, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "Rank": 3, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Rank": 3 }, { "Id": 109, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "Rank": 1, - "CommandName": "Add-PnPListItemComment" + "CommandName": "Add-PnPListItemComment", + "Rank": 1 }, { "Id": 110, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "Rank": 1, - "CommandName": "Add-PnPMasterPage" + "CommandName": "Add-PnPMasterPage", + "Rank": 1 }, { "Id": 111, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Rank": 1 }, { "Id": 112, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Rank": 2 }, { "Id": 113, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Rank": 1 }, { "Id": 114, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 1 }, { "Id": 116, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 2 }, { "Id": 117, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Rank": 3, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 3 }, { "Id": 118, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "Rank": 1, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPNavigationNode", + "Rank": 2 }, { "Id": 120, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "Rank": 3, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 3 }, { "Id": 121, "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "Rank": 4, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 4 }, { "Id": 122, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "Rank": 5, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 5 }, { "Id": 123, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Rank": 6, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 6 }, { "Id": 124, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Rank": 7, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 7 }, { "Id": 125, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "Rank": 8, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 8 }, { "Id": 126, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "Rank": 1, - "CommandName": "Add-PnPOrgAssetsLibrary" + "CommandName": "Add-PnPOrgAssetsLibrary", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPOrgAssetsLibrary", + "Rank": 2 }, { "Id": 128, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "Rank": 3, - "CommandName": "Add-PnPOrgAssetsLibrary" + "CommandName": "Add-PnPOrgAssetsLibrary", + "Rank": 3 }, { "Id": 129, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "Rank": 1, - "CommandName": "Add-PnPOrgNewsSite" + "CommandName": "Add-PnPOrgNewsSite", + "Rank": 1 }, { "Id": 130, "Command": "Add-PnPPage -Name \"NewPage\"", - "Rank": 1, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 1 }, { "Id": 131, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Rank": 2, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 2 }, { "Id": 132, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Rank": 3, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 3 }, { "Id": 133, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Rank": 4, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 4 }, { "Id": 134, "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Rank": 5, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 5 }, { "Id": 135, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Rank": 6, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 6 }, { "Id": 136, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 7 }, { "Id": 137, "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Rank": 8, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 8 }, { "Id": 138, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 9 }, { "Id": 139, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 10 }, { "Id": 140, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Rank": 1, - "CommandName": "Add-PnPPageImageWebPart" + "CommandName": "Add-PnPPageImageWebPart", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPPageImageWebPart", + "Rank": 2 }, { "Id": 142, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Rank": 1, - "CommandName": "Add-PnPPageSection" + "CommandName": "Add-PnPPageSection", + "Rank": 1 }, { "Id": 143, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Rank": 2, - "CommandName": "Add-PnPPageSection" + "CommandName": "Add-PnPPageSection", + "Rank": 2 }, { "Id": 144, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Rank": 1, - "CommandName": "Add-PnPPageTextPart" + "CommandName": "Add-PnPPageTextPart", + "Rank": 1 }, { "Id": 145, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 2, - "CommandName": "Add-PnPPageTextPart" + "CommandName": "Add-PnPPageTextPart", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPPageTextPart", + "Rank": 3 }, { "Id": 147, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "Rank": 1, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Rank": 1 }, { "Id": 148, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Rank": 2, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Rank": 2 }, { "Id": 149, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Rank": 3, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Rank": 3 }, { "Id": 150, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "Rank": 1, - "CommandName": "Add-PnPPlannerBucket" + "CommandName": "Add-PnPPlannerBucket", + "Rank": 1 }, { "Id": 151, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Rank": 2, - "CommandName": "Add-PnPPlannerBucket" + "CommandName": "Add-PnPPlannerBucket", + "Rank": 2 }, { "Id": 152, "Command": "Add-PnPPlannerRoster", - "Rank": 1, - "CommandName": "Add-PnPPlannerRoster" + "CommandName": "Add-PnPPlannerRoster", + "Rank": 1 }, { "Id": 153, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Add-PnPPlannerRosterMember" + "CommandName": "Add-PnPPlannerRosterMember", + "Rank": 1 }, { "Id": 154, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 1, - "CommandName": "Add-PnPPlannerTask" + "CommandName": "Add-PnPPlannerTask", + "Rank": 1 }, { "Id": 155, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 2, - "CommandName": "Add-PnPPlannerTask" + "CommandName": "Add-PnPPlannerTask", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPPlannerTask", + "Rank": 3 }, { "Id": 157, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1, - "CommandName": "Add-PnPPublishingImageRendition" + "CommandName": "Add-PnPPublishingImageRendition", + "Rank": 1 }, { "Id": 158, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Rank": 1, - "CommandName": "Add-PnPPublishingPage" + "CommandName": "Add-PnPPublishingPage", + "Rank": 1 }, { "Id": 159, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "Rank": 2, - "CommandName": "Add-PnPPublishingPage" + "CommandName": "Add-PnPPublishingPage", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPPublishingPageLayout", + "Rank": 1 }, { "Id": 161, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "Rank": 1, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Rank": 1 }, { "Id": 162, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Rank": 2, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Rank": 2 }, { "Id": 163, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Rank": 3, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Rank": 3 }, { "Id": 164, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 1 }, { "Id": 165, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 2 }, { "Id": 166, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Rank": 3, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 3 }, { "Id": 167, "Command": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Rank": 1 }, { "Id": 168, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPSiteDesign", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPSiteDesign", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPSiteDesign", + "Rank": 3 }, { "Id": 172, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "Rank": 1, - "CommandName": "Add-PnPSiteDesignFromWeb" + "CommandName": "Add-PnPSiteDesignFromWeb", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPSiteDesignFromWeb", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPSiteDesignFromWeb", + "Rank": 3 }, { "Id": 175, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1, - "CommandName": "Add-PnPSiteDesignTask" + "CommandName": "Add-PnPSiteDesignTask", + "Rank": 1 }, { "Id": 176, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 2, - "CommandName": "Add-PnPSiteDesignTask" + "CommandName": "Add-PnPSiteDesignTask", + "Rank": 2 }, { "Id": 177, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "Rank": 1, - "CommandName": "Add-PnPSiteScript" + "CommandName": "Add-PnPSiteScript", + "Rank": 1 }, { "Id": 178, "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "Rank": 1, - "CommandName": "Add-PnPSiteScriptPackage" + "CommandName": "Add-PnPSiteScriptPackage", + "Rank": 1 }, { "Id": 179, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "Rank": 1, - "CommandName": "Add-PnPSiteTemplate" + "CommandName": "Add-PnPSiteTemplate", + "Rank": 1 }, { "Id": 180, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Rank": 1, - "CommandName": "Add-PnPStoredCredential" + "CommandName": "Add-PnPStoredCredential", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPStoredCredential", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPStoredCredential", + "Rank": 3 }, { "Id": 183, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Rank": 1, - "CommandName": "Add-PnPTaxonomyField" + "CommandName": "Add-PnPTaxonomyField", + "Rank": 1 }, { "Id": 184, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "Rank": 2, - "CommandName": "Add-PnPTaxonomyField" + "CommandName": "Add-PnPTaxonomyField", + "Rank": 2 }, { "Id": 185, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "Rank": 1, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Rank": 1 }, { "Id": 186, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "Rank": 2, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Rank": 2 }, { "Id": 187, "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "Rank": 3, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Rank": 3 }, { "Id": 188, "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "Rank": 4, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Rank": 4 }, { "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" + "CommandName": "Add-PnpTeamsChannelUser", + "Rank": 1 }, { "Id": 190, "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "Rank": 2, - "CommandName": "Add-PnpTeamsChannelUser" + "CommandName": "Add-PnpTeamsChannelUser", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPTeamsTab", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPTeamsTab", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPTeamsTab", + "Rank": 3 }, { "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" + "CommandName": "Add-PnPTeamsTab", + "Rank": 4 }, { "Id": 195, "Command": "Add-PnPTeamsTeam", - "Rank": 1, - "CommandName": "Add-PnPTeamsTeam" + "CommandName": "Add-PnPTeamsTeam", + "Rank": 1 }, { "Id": 196, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Rank": 1 }, { "Id": 197, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Rank": 2 }, { "Id": 198, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "Rank": 3, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Rank": 3 }, { "Id": 199, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "Rank": 4, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Rank": 4 }, { "Id": 200, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1, - "CommandName": "Add-PnPTenantCdnOrigin" + "CommandName": "Add-PnPTenantCdnOrigin", + "Rank": 1 }, { "Id": 201, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Rank": 1, - "CommandName": "Add-PnPTenantSequence" + "CommandName": "Add-PnPTenantSequence", + "Rank": 1 }, { "Id": 202, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSite" + "CommandName": "Add-PnPTenantSequenceSite", + "Rank": 1 }, { "Id": 203, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSubSite" + "CommandName": "Add-PnPTenantSequenceSubSite", + "Rank": 1 }, { "Id": 204, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "Rank": 1, - "CommandName": "Add-PnPTermToTerm" + "CommandName": "Add-PnPTermToTerm", + "Rank": 1 }, { "Id": 205, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "Rank": 1, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Rank": 1 }, { "Id": 206, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "Rank": 2, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Rank": 2 }, { "Id": 207, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "Rank": 3, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Rank": 3 }, { "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" + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Rank": 1 }, { "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" + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Rank": 3 }, { "Id": 211, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1, - "CommandName": "Add-PnPWebhookSubscription" + "CommandName": "Add-PnPWebhookSubscription", + "Rank": 1 }, { "Id": 212, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Rank": 2, - "CommandName": "Add-PnPWebhookSubscription" + "CommandName": "Add-PnPWebhookSubscription", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPWebhookSubscription", + "Rank": 3 }, { "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" + "CommandName": "Add-PnPWebPartToWebPartPage", + "Rank": 1 }, { "Id": 215, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "Rank": 2, - "CommandName": "Add-PnPWebPartToWebPartPage" + "CommandName": "Add-PnPWebPartToWebPartPage", + "Rank": 2 }, { "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" + "CommandName": "Add-PnPWebPartToWikiPage", + "Rank": 1 }, { "Id": 217, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "Rank": 2, - "CommandName": "Add-PnPWebPartToWikiPage" + "CommandName": "Add-PnPWebPartToWikiPage", + "Rank": 2 }, { "Id": 218, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "Rank": 1, - "CommandName": "Add-PnPWikiPage" + "CommandName": "Add-PnPWikiPage", + "Rank": 1 }, { "Id": 219, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupMember" + "CommandName": "Clear-PnPAzureADGroupMember", + "Rank": 1 }, { "Id": 220, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupOwner" + "CommandName": "Clear-PnPAzureADGroupOwner", + "Rank": 1 }, { "Id": 221, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Rank": 1, - "CommandName": "Clear-PnPDefaultColumnValues" + "CommandName": "Clear-PnPDefaultColumnValues", + "Rank": 1 }, { "Id": 222, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Rank": 2, - "CommandName": "Clear-PnPDefaultColumnValues" + "CommandName": "Clear-PnPDefaultColumnValues", + "Rank": 2 }, { "Id": 223, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, - "CommandName": "Clear-PnPListItemAsRecord" + "CommandName": "Clear-PnPListItemAsRecord", + "Rank": 1 }, { "Id": 224, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupMember" + "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Rank": 1 }, { "Id": 225, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupOwner" + "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Rank": 1 }, { "Id": 226, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 1 }, { "Id": 227, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Rank": 2, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 2 }, { "Id": 228, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Rank": 3, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 3 }, { "Id": 229, "Command": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1, - "CommandName": "Clear-PnPTenantAppCatalogUrl" + "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Rank": 1 }, { "Id": 230, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Rank": 1 }, { "Id": 231, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Rank": 2 }, { "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" + "CommandName": "Connect-PnPOnline", + "Rank": 1 }, { "Id": 233, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Rank": 1, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Rank": 1 }, { "Id": 234, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Rank": 2, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Rank": 2 }, { "Id": 235, "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Rank": 1, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Rank": 1 }, { "Id": 236, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Rank": 2, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Rank": 2 }, { "Id": 237, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Rank": 3, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Rank": 3 }, { "Id": 238, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Rank": 1, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Rank": 1 }, { "Id": 239, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Rank": 2, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Rank": 2 }, { "Id": 240, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Rank": 1, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 1 }, { "Id": 241, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Rank": 2, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 2 }, { "Id": 242, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Rank": 3, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 3 }, { "Id": 243, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Rank": 4, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 4 }, { "Id": 244, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 5, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 5 }, { "Id": 245, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "Rank": 6, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 6 }, { "Id": 246, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Rank": 7, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 7 }, { "Id": 247, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Rank": 8, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 8 }, { "Id": 248, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 9, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 9 }, { "Id": 249, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "Rank": 10, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 10 }, { "Id": 250, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Rank": 11, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 11 }, { "Id": 251, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 12, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 12 }, { "Id": 252, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 13, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 13 }, { "Id": 253, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "Rank": 14, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 14 }, { "Id": 254, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 1 }, { "Id": 255, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 2 }, { "Id": 256, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 3 }, { "Id": 257, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 4 }, { "Id": 258, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 5 }, { "Id": 259, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 6 }, { "Id": 260, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 7 }, { "Id": 261, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 8 }, { "Id": 262, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 9 }, { "Id": 263, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 10 }, { "Id": 264, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 1 }, { "Id": 265, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 2 }, { "Id": 266, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 3 }, { "Id": 267, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 4 }, { "Id": 268, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 5 }, { "Id": 269, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 6 }, { "Id": 270, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 7 }, { "Id": 271, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 8 }, { "Id": 272, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 9 }, { "Id": 273, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 10 }, { "Id": 274, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Rank": 1, - "CommandName": "Copy-PnPItemProxy" + "CommandName": "Copy-PnPItemProxy", + "Rank": 1 }, { "Id": 275, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Rank": 1, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Rank": 1 }, { "Id": 276, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "Rank": 2, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Rank": 2 }, { "Id": 277, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "Rank": 3, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Rank": 3 }, { "Id": 278, "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" + "CommandName": "Copy-PnPList", + "Rank": 4 }, { "Id": 279, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "Rank": 1, - "CommandName": "Copy-PnPTeamsTeam" + "CommandName": "Copy-PnPTeamsTeam", + "Rank": 1 }, { "Id": 280, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "Rank": 2, - "CommandName": "Copy-PnPTeamsTeam" + "CommandName": "Copy-PnPTeamsTeam", + "Rank": 2 }, { "Id": 281, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", - "Rank": 3, - "CommandName": "Copy-PnPTeamsTeam" + "CommandName": "Copy-PnPTeamsTeam", + "Rank": 3 }, { "Id": 282, "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" + "CommandName": "Copy-PnPTeamsTeam", + "Rank": 4 }, { "Id": 283, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Rank": 1 }, { "Id": 284, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Rank": 2 }, { "Id": 285, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Rank": 3 }, { "Id": 286, "Command": "Disable-PnPPageScheduling", - "Rank": 1, - "CommandName": "Disable-PnPPageScheduling" + "CommandName": "Disable-PnPPageScheduling", + "Rank": 1 }, { "Id": 287, "Command": "Disable-PnPPowerShellTelemetry", - "Rank": 1, - "CommandName": "Disable-PnPPowerShellTelemetry" + "CommandName": "Disable-PnPPowerShellTelemetry", + "Rank": 1 }, { "Id": 288, "Command": "Disable-PnPPowerShellTelemetry -Force", - "Rank": 2, - "CommandName": "Disable-PnPPowerShellTelemetry" + "CommandName": "Disable-PnPPowerShellTelemetry", + "Rank": 2 }, { "Id": 289, "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite" + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Rank": 1 }, { "Id": 290, "Command": "Disable-PnPSiteClassification", - "Rank": 1, - "CommandName": "Disable-PnPSiteClassification" + "CommandName": "Disable-PnPSiteClassification", + "Rank": 1 }, { "Id": 291, "Command": "Disconnect-PnPOnline", - "Rank": 1, - "CommandName": "Disconnect-PnPOnline" + "CommandName": "Disconnect-PnPOnline", + "Rank": 1 }, { "Id": 292, "Command": "Enable-PnPCommSite", - "Rank": 1, - "CommandName": "Enable-PnPCommSite" + "CommandName": "Enable-PnPCommSite", + "Rank": 1 }, { "Id": 293, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Rank": 2, - "CommandName": "Enable-PnPCommSite" + "CommandName": "Enable-PnPCommSite", + "Rank": 2 }, { "Id": 294, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Rank": 1 }, { "Id": 295, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Rank": 2 }, { "Id": 296, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Rank": 3 }, { "Id": 297, "Command": "Enable-PnPPageScheduling", - "Rank": 1, - "CommandName": "Enable-PnPPageScheduling" + "CommandName": "Enable-PnPPageScheduling", + "Rank": 1 }, { "Id": 298, "Command": "Enable-PnPPowerShellTelemetry", - "Rank": 1, - "CommandName": "Enable-PnPPowerShellTelemetry" + "CommandName": "Enable-PnPPowerShellTelemetry", + "Rank": 1 }, { "Id": 299, "Command": "Enable-PnPPowerShellTelemetry -Force", - "Rank": 2, - "CommandName": "Enable-PnPPowerShellTelemetry" + "CommandName": "Enable-PnPPowerShellTelemetry", + "Rank": 2 }, { "Id": 300, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Rank": 1, - "CommandName": "Enable-PnPSiteClassification" + "CommandName": "Enable-PnPSiteClassification", + "Rank": 1 }, { "Id": 301, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 2, - "CommandName": "Enable-PnPSiteClassification" + "CommandName": "Enable-PnPSiteClassification", + "Rank": 2 }, { "Id": 302, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Rank": 1, - "CommandName": "Export-PnPListToSiteTemplate" + "CommandName": "Export-PnPListToSiteTemplate", + "Rank": 1 }, { "Id": 303, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Rank": 2, - "CommandName": "Export-PnPListToSiteTemplate" + "CommandName": "Export-PnPListToSiteTemplate", + "Rank": 2 }, { "Id": 304, "Command": "Export-PnPPage -Identity Home.aspx", - "Rank": 1, - "CommandName": "Export-PnPPage" + "CommandName": "Export-PnPPage", + "Rank": 1 }, { "Id": 305, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Rank": 1, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Rank": 1 }, { "Id": 306, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Rank": 2, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Rank": 2 }, { "Id": 307, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Rank": 3, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Rank": 3 }, { "Id": 308, "Command": "Export-PnPTaxonomy", - "Rank": 1, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Rank": 1 }, { "Id": 309, "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Rank": 2, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Rank": 2 }, { "Id": 310, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Rank": 3, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Rank": 3 }, { "Id": 311, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "Rank": 4, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Rank": 4 }, { "Id": 312, "Command": "Export-PnPTermGroupToXml", - "Rank": 1, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Rank": 1 }, { "Id": 313, "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Rank": 2, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Rank": 2 }, { "Id": 314, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Rank": 3, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Rank": 3 }, { "Id": 315, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1, - "CommandName": "Export-PnPUserInfo" + "CommandName": "Export-PnPUserInfo", + "Rank": 1 }, { "Id": 316, "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" + "CommandName": "Export-PnPUserInfo", + "Rank": 2 }, { "Id": 317, "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Rank": 1, - "CommandName": "Export-PnPUserProfile" + "CommandName": "Export-PnPUserProfile", + "Rank": 1 }, { "Id": 318, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2, - "CommandName": "Export-PnPUserProfile" + "CommandName": "Export-PnPUserProfile", + "Rank": 2 }, { "Id": 319, "Command": "Find-PnPFile -Match *.master", - "Rank": 1, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Rank": 1 }, { "Id": 320, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Rank": 2, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Rank": 2 }, { "Id": 321, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Rank": 3, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Rank": 3 }, { "Id": 322, "Command": "Get-PnPAccessToken", - "Rank": 1, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Rank": 1 }, { "Id": 323, "Command": "Get-PnPAccessToken -Decoded", - "Rank": 2, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Rank": 2 }, { "Id": 324, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Rank": 3, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Rank": 3 }, { "Id": 325, "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Rank": 4, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Rank": 4 }, { "Id": 326, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Rank": 5, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Rank": 5 }, { "Id": 327, "Command": "Get-PnPAlert", - "Rank": 1, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Rank": 1 }, { "Id": 328, "Command": "Get-PnPAlert -List \"Demo List\"", - "Rank": 2, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Rank": 2 }, { "Id": 329, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Rank": 3 }, { "Id": 330, "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Rank": 4, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Rank": 4 }, { "Id": 331, "Command": "Get-PnPAlert -AllUsers", - "Rank": 5, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Rank": 5 }, { "Id": 332, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Rank": 6, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Rank": 6 }, { "Id": 333, "Command": "Get-PnPApp", - "Rank": 1, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Rank": 1 }, { "Id": 334, "Command": "Get-PnPApp -Scope Site", - "Rank": 2, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Rank": 2 }, { "Id": 335, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 3, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Rank": 3 }, { "Id": 336, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Rank": 1, - "CommandName": "Get-PnPAppErrors" + "CommandName": "Get-PnPAppErrors", + "Rank": 1 }, { "Id": 337, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "Rank": 2, - "CommandName": "Get-PnPAppErrors" + "CommandName": "Get-PnPAppErrors", + "Rank": 2 }, { "Id": 338, "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Rank": 1, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Rank": 1 }, { "Id": 339, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 2, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Rank": 2 }, { "Id": 340, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Rank": 3, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Rank": 3 }, { "Id": 341, "Command": "Get-PnPApplicationCustomizer", - "Rank": 1, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 1 }, { "Id": 342, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 2 }, { "Id": 343, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Rank": 3, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 3 }, { "Id": 344, "Command": "Get-PnPAuditing", - "Rank": 1, - "CommandName": "Get-PnPAuditing" + "CommandName": "Get-PnPAuditing", + "Rank": 1 }, { "Id": 345, "Command": "Get-PnPAuthenticationRealm", - "Rank": 1, - "CommandName": "Get-PnPAuthenticationRealm" + "CommandName": "Get-PnPAuthenticationRealm", + "Rank": 1 }, { "Id": 346, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Rank": 2, - "CommandName": "Get-PnPAuthenticationRealm" + "CommandName": "Get-PnPAuthenticationRealm", + "Rank": 2 }, { "Id": 347, "Command": "Get-PnPAvailableLanguage", - "Rank": 1, - "CommandName": "Get-PnPAvailableLanguage" + "CommandName": "Get-PnPAvailableLanguage", + "Rank": 1 }, { "Id": 348, "Command": "Get-PnPAvailableSensitivityLabel", - "Rank": 1, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 1 }, { "Id": 349, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Rank": 2, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 2 }, { "Id": 350, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Rank": 3, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 3 }, { "Id": 351, "Command": "Get-PnPAvailableSiteClassification", - "Rank": 1, - "CommandName": "Get-PnPAvailableSiteClassification" + "CommandName": "Get-PnPAvailableSiteClassification", + "Rank": 1 }, { "Id": 352, "Command": "Get-PnPAzureACSPrincipal", - "Rank": 1, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 1 }, { "Id": 353, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Rank": 2, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 2 }, { "Id": 354, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Rank": 3, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 3 }, { "Id": 355, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Rank": 4, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 4 }, { "Id": 356, "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 1 }, { "Id": 357, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 2 }, { "Id": 358, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 3 }, { "Id": 359, "Command": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 1 }, { "Id": 360, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 2 }, { "Id": 361, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 3 }, { "Id": 362, "Command": "Get-PnPAzureADApp", - "Rank": 1, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Rank": 1 }, { "Id": 363, "Command": "Get-PnPAzureADApp -Identity MyApp", - "Rank": 2, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Rank": 2 }, { "Id": 364, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Rank": 3 }, { "Id": 365, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Rank": 4, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Rank": 4 }, { "Id": 366, "Command": "Get-PnPAzureADAppPermission", - "Rank": 1, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 1 }, { "Id": 367, "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Rank": 2, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 2 }, { "Id": 368, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 3 }, { "Id": 369, "Command": "Get-PnPAzureADAppSitePermission", - "Rank": 1, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 1 }, { "Id": 370, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 2 }, { "Id": 371, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Rank": 3, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 3 }, { "Id": 372, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Rank": 4, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 4 }, { "Id": 373, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Rank": 5, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 5 }, { "Id": 374, "Command": "Get-PnPAzureADGroup", - "Rank": 1, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Rank": 1 }, { "Id": 375, "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Rank": 2, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Rank": 2 }, { "Id": 376, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Rank": 3, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Rank": 3 }, { "Id": 377, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Rank": 4, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Rank": 4 }, { "Id": 378, "Command": "Get-PnPAzureADGroup -Identity $group", - "Rank": 5, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Rank": 5 }, { "Id": 379, "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Rank": 1, - "CommandName": "Get-PnPAzureADGroupMember" + "CommandName": "Get-PnPAzureADGroupMember", + "Rank": 1 }, { "Id": 380, "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Rank": 2, - "CommandName": "Get-PnPAzureADGroupMember" + "CommandName": "Get-PnPAzureADGroupMember", + "Rank": 2 }, { "Id": 381, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Rank": 1, - "CommandName": "Get-PnPAzureADGroupOwner" + "CommandName": "Get-PnPAzureADGroupOwner", + "Rank": 1 }, { "Id": 382, "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Rank": 2, - "CommandName": "Get-PnPAzureADGroupOwner" + "CommandName": "Get-PnPAzureADGroupOwner", + "Rank": 2 }, { "Id": 383, "Command": "Get-PnPAzureADServicePrincipal", - "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 1 }, { "Id": 384, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 2 }, { "Id": 385, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Rank": 3, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 3 }, { "Id": 386, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Rank": 4, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 4 }, { "Id": 387, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 5 }, { "Id": 388, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 1 }, { "Id": 389, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 2 }, { "Id": 390, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Rank": 1 }, { "Id": 391, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Rank": 2 }, { "Id": 392, "Command": "Get-PnPAzureADUser", - "Rank": 1, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 1 }, { "Id": 393, "Command": "Get-PnPAzureADUser -EndIndex 50", - "Rank": 2, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 2 }, { "Id": 394, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 3, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 3 }, { "Id": 395, "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Rank": 4, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 4 }, { "Id": 396, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Rank": 5, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 5 }, { "Id": 397, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Rank": 6, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 6 }, { "Id": 398, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Rank": 7, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 7 }, { "Id": 399, "Command": "Get-PnPAzureADUser -Delta", - "Rank": 8, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 8 }, { "Id": 400, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Rank": 9, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 9 }, { "Id": 401, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Rank": 10, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 10 }, { "Id": 402, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Rank": 1, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Rank": 1 }, { "Id": 403, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Rank": 2, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Rank": 2 }, { "Id": 404, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Rank": 3, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Rank": 3 }, { "Id": 405, "Command": "Get-PnPBrowserIdleSignout", - "Rank": 1, - "CommandName": "Get-PnPBrowserIdleSignout" + "CommandName": "Get-PnPBrowserIdleSignout", + "Rank": 1 }, { "Id": 406, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Rank": 1, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 1 }, { "Id": 407, "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 2 }, { "Id": 408, "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 1 }, { "Id": 409, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Rank": 2, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 2 }, { "Id": 410, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Rank": 3, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 3 }, { "Id": 411, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 4 }, { "Id": 412, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Rank": 5, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 5 }, { "Id": 413, "Command": "Get-PnPChangeLog", - "Rank": 1, - "CommandName": "Get-PnPChangeLog" + "CommandName": "Get-PnPChangeLog", + "Rank": 1 }, { "Id": 414, "Command": "Get-PnPChangeLog -Nightly", - "Rank": 2, - "CommandName": "Get-PnPChangeLog" + "CommandName": "Get-PnPChangeLog", + "Rank": 2 }, { "Id": 415, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Rank": 1, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Rank": 1 }, { "Id": 416, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "Rank": 2, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Rank": 2 }, { "Id": 417, "Command": "Get-PnPContentType", - "Rank": 1, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Rank": 1 }, { "Id": 418, "Command": "Get-PnPContentType -InSiteHierarchy", - "Rank": 2, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Rank": 2 }, { "Id": 419, "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Rank": 3, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Rank": 3 }, { "Id": 420, "Command": "Get-PnPContentType -List \"Documents\"", - "Rank": 4, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Rank": 4 }, { "Id": 421, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Rank": 1, - "CommandName": "Get-PnPContentTypePublishingStatus" + "CommandName": "Get-PnPContentTypePublishingStatus", + "Rank": 1 }, { "Id": 422, "Command": "Get-PnPCustomAction", - "Rank": 1, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Rank": 1 }, { "Id": 423, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Rank": 2 }, { "Id": 424, "Command": "Get-PnPCustomAction -Scope web", - "Rank": 3, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Rank": 3 }, { "Id": 425, "Command": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Rank": 1 }, { "Id": 426, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 2, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Rank": 2 }, { "Id": 427, "Command": "Get-PnPDeletedTeam", - "Rank": 1, - "CommandName": "Get-PnPDeletedTeam" + "CommandName": "Get-PnPDeletedTeam", + "Rank": 1 }, { "Id": 428, "Command": "Get-PnPDiagnostics", - "Rank": 1, - "CommandName": "Get-PnPDiagnostics" + "CommandName": "Get-PnPDiagnostics", + "Rank": 1 }, { "Id": 429, "Command": "Get-PnPDisableSpacesActivation", - "Rank": 1, - "CommandName": "Get-PnPDisableSpacesActivation" + "CommandName": "Get-PnPDisableSpacesActivation", + "Rank": 1 }, { "Id": 430, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Rank": 1, - "CommandName": "Get-PnPDocumentSetTemplate" + "CommandName": "Get-PnPDocumentSetTemplate", + "Rank": 1 }, { "Id": 431, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Rank": 2, - "CommandName": "Get-PnPDocumentSetTemplate" + "CommandName": "Get-PnPDocumentSetTemplate", + "Rank": 2 }, { "Id": 432, "Command": "Get-PnPEventReceiver", - "Rank": 1, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 1 }, { "Id": 433, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 2 }, { "Id": 434, "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Rank": 3, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 3 }, { "Id": 435, "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Rank": 4, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 4 }, { "Id": 436, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 5, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 5 }, { "Id": 437, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Rank": 6, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 6 }, { "Id": 438, "Command": "Get-PnPEventReceiver -Scope Site", - "Rank": 7, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 7 }, { "Id": 439, "Command": "Get-PnPEventReceiver -Scope Web", - "Rank": 8, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 8 }, { "Id": 440, "Command": "Get-PnPEventReceiver -Scope All", - "Rank": 9, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 9 }, { "Id": 441, "Command": "Get-PnPException", - "Rank": 1, - "CommandName": "Get-PnPException" + "CommandName": "Get-PnPException", + "Rank": 1 }, { "Id": 442, "Command": "Get-PnPException -All", - "Rank": 2, - "CommandName": "Get-PnPException" + "CommandName": "Get-PnPException", + "Rank": 2 }, { "Id": 443, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Rank": 1, - "CommandName": "Get-PnPExternalUser" + "CommandName": "Get-PnPExternalUser", + "Rank": 1 }, { "Id": 444, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Rank": 2, - "CommandName": "Get-PnPExternalUser" + "CommandName": "Get-PnPExternalUser", + "Rank": 2 }, { "Id": 445, "Command": "Get-PnPFeature", - "Rank": 1, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Rank": 1 }, { "Id": 446, "Command": "Get-PnPFeature -Scope Site", - "Rank": 2, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Rank": 2 }, { "Id": 447, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 3, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Rank": 3 }, { "Id": 448, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Rank": 4, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Rank": 4 }, { "Id": 449, "Command": "Get-PnPField", - "Rank": 1, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Rank": 1 }, { "Id": 450, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Rank": 2 }, { "Id": 451, "Command": "Get-PnPField -Group \"Custom Columns\"", - "Rank": 3, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Rank": 3 }, { "Id": 452, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Rank": 1, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Rank": 1 }, { "Id": 453, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "Rank": 2, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Rank": 2 }, { "Id": 454, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Rank": 3, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Rank": 3 }, { "Id": 455, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Rank": 4, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Rank": 4 }, { "Id": 456, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Rank": 5, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Rank": 5 }, { "Id": 457, "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "Rank": 6, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Rank": 6 }, { "Id": 458, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Rank": 7, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Rank": 7 }, { "Id": 459, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, - "CommandName": "Get-PnPFileSharingLink" + "CommandName": "Get-PnPFileSharingLink", + "Rank": 1 }, { "Id": 460, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Rank": 1, - "CommandName": "Get-PnPFileVersion" + "CommandName": "Get-PnPFileVersion", + "Rank": 1 }, { "Id": 461, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Rank": 2, - "CommandName": "Get-PnPFileVersion" + "CommandName": "Get-PnPFileVersion", + "Rank": 2 }, { "Id": 462, "Command": "Get-PnPFlow -AsAdmin", - "Rank": 1, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Rank": 1 }, { "Id": 463, "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "Rank": 2, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Rank": 2 }, { "Id": 464, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Rank": 3, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Rank": 3 }, { "Id": 465, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "Rank": 1, - "CommandName": "Get-PnPFlowOwner" + "CommandName": "Get-PnPFlowOwner", + "Rank": 1 }, { "Id": 466, "Command": "Get-PnPFolder", - "Rank": 1, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Rank": 1 }, { "Id": 467, "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Rank": 2, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Rank": 2 }, { "Id": 468, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Rank": 3, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Rank": 3 }, { "Id": 469, "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Rank": 4, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Rank": 4 }, { "Id": 470, "Command": "Get-PnPFolderFile", - "Rank": 1, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Rank": 1 }, { "Id": 471, "Command": "Get-PnPFolderFile -Recurse", - "Rank": 2, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Rank": 2 }, { "Id": 472, "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "Rank": 3, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Rank": 3 }, { "Id": 473, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Rank": 4 }, { "Id": 474, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 5, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Rank": 5 }, { "Id": 475, "Command": "Get-PnPFolderFolder", - "Rank": 1, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Rank": 1 }, { "Id": 476, "Command": "Get-PnPFolderFolder -Recurse", - "Rank": 2, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Rank": 2 }, { "Id": 477, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "Rank": 3, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Rank": 3 }, { "Id": 478, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "Rank": 4, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Rank": 4 }, { "Id": 479, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "Rank": 5, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Rank": 5 }, { "Id": 480, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Rank": 6 }, { "Id": 481, "Command": "Get-PnPFolderItem", - "Rank": 1, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 1 }, { "Id": 482, "Command": "Get-PnPFolderItem -Recurse", - "Rank": 2, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 2 }, { "Id": 483, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "Rank": 3, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 3 }, { "Id": 484, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 4 }, { "Id": 485, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Rank": 5, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 5 }, { "Id": 486, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 6 }, { "Id": 487, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "CommandName": "Get-PnPFolderSharingLink" + "CommandName": "Get-PnPFolderSharingLink", + "Rank": 1 }, { "Id": 488, "Command": "Get-PnPFolderStorageMetric", - "Rank": 1, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 1 }, { "Id": 489, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Rank": 2, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 2 }, { "Id": 490, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Rank": 3, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 3 }, { "Id": 491, "Command": "Get-PnPFooter", - "Rank": 1, - "CommandName": "Get-PnPFooter" + "CommandName": "Get-PnPFooter", + "Rank": 1 }, { "Id": 492, "Command": "Get-PnPGraphAccessToken", - "Rank": 1, - "CommandName": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPGraphAccessToken", + "Rank": 1 }, { "Id": 493, "Command": "Get-PnPGraphAccessToken -Decoded", - "Rank": 2, - "CommandName": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPGraphAccessToken", + "Rank": 2 }, { "Id": 494, "Command": "Get-PnPGraphSubscription", - "Rank": 1, - "CommandName": "Get-PnPGraphSubscription" + "CommandName": "Get-PnPGraphSubscription", + "Rank": 1 }, { "Id": 495, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 2, - "CommandName": "Get-PnPGraphSubscription" + "CommandName": "Get-PnPGraphSubscription", + "Rank": 2 }, { "Id": 496, "Command": "Get-PnPGroup", - "Rank": 1, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Rank": 1 }, { "Id": 497, "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Rank": 2, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Rank": 2 }, { "Id": 498, "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Rank": 3, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Rank": 3 }, { "Id": 499, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Rank": 1, - "CommandName": "Get-PnPGroupMember" + "CommandName": "Get-PnPGroupMember", + "Rank": 1 }, { "Id": 500, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Rank": 2, - "CommandName": "Get-PnPGroupMember" + "CommandName": "Get-PnPGroupMember", + "Rank": 2 }, { "Id": 501, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Rank": 1, - "CommandName": "Get-PnPGroupPermissions" + "CommandName": "Get-PnPGroupPermissions", + "Rank": 1 }, { "Id": 502, "Command": "Get-PnPHideDefaultThemes", - "Rank": 1, - "CommandName": "Get-PnPHideDefaultThemes" + "CommandName": "Get-PnPHideDefaultThemes", + "Rank": 1 }, { "Id": 503, "Command": "Get-PnPHomePage", - "Rank": 1, - "CommandName": "Get-PnPHomePage" + "CommandName": "Get-PnPHomePage", + "Rank": 1 }, { "Id": 504, "Command": "Get-PnPHomeSite", - "Rank": 1, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Rank": 1 }, { "Id": 505, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Rank": 2, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Rank": 2 }, { "Id": 506, "Command": "Get-PnPHomeSite -Detailed", - "Rank": 3, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Rank": 3 }, { "Id": 507, "Command": "Get-PnPHubSite", - "Rank": 1, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Rank": 1 }, { "Id": 508, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Rank": 2 }, { "Id": 509, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Rank": 3, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Rank": 3 }, { "Id": 510, "Command": "Get-PnPHubSiteChild", - "Rank": 1, - "CommandName": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSiteChild", + "Rank": 1 }, { "Id": 511, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, - "CommandName": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSiteChild", + "Rank": 2 }, { "Id": 512, "Command": "Get-PnPInPlaceRecordsManagement", - "Rank": 1, - "CommandName": "Get-PnPInPlaceRecordsManagement" + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Rank": 1 }, { "Id": 513, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Rank": 1, - "CommandName": "Get-PnPIsSiteAliasAvailable" + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Rank": 1 }, { "Id": 514, "Command": "Get-PnPJavaScriptLink", - "Rank": 1, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 1 }, { "Id": 515, "Command": "Get-PnPJavaScriptLink -Scope All", - "Rank": 2, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 2 }, { "Id": 516, "Command": "Get-PnPJavaScriptLink -Scope Web", - "Rank": 3, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 3 }, { "Id": 517, "Command": "Get-PnPJavaScriptLink -Scope Site", - "Rank": 4, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 4 }, { "Id": 518, "Command": "Get-PnPJavaScriptLink -Name Test", - "Rank": 5, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 5 }, { "Id": 519, "Command": "Get-PnPKnowledgeHubSite", - "Rank": 1, - "CommandName": "Get-PnPKnowledgeHubSite" + "CommandName": "Get-PnPKnowledgeHubSite", + "Rank": 1 }, { "Id": 520, "Command": "Get-PnPLabel", - "Rank": 1, - "CommandName": "Get-PnPLabel" + "CommandName": "Get-PnPLabel", + "Rank": 1 }, { "Id": 521, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Rank": 2, - "CommandName": "Get-PnPLabel" + "CommandName": "Get-PnPLabel", + "Rank": 2 }, { "Id": 522, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Rank": 1, - "CommandName": "Get-PnPLargeListOperationStatus" + "CommandName": "Get-PnPLargeListOperationStatus", + "Rank": 1 }, { "Id": 523, "Command": "Get-PnPList", - "Rank": 1, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Rank": 1 }, { "Id": 524, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 2, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Rank": 2 }, { "Id": 525, "Command": "Get-PnPList -Identity Lists/Announcements", - "Rank": 3, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Rank": 3 }, { "Id": 526, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Rank": 4, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Rank": 4 }, { "Id": 527, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Rank": 5, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Rank": 5 }, { "Id": 528, "Command": "Get-PnPListDesign", - "Rank": 1, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Rank": 1 }, { "Id": 529, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Rank": 2 }, { "Id": 530, "Command": "Get-PnPListDesign -Identity ListEvent", - "Rank": 3, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Rank": 3 }, { "Id": 531, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Rank": 1, - "CommandName": "Get-PnPListInformationRightsManagement" + "CommandName": "Get-PnPListInformationRightsManagement", + "Rank": 1 }, { "Id": 532, "Command": "Get-PnPListItem -List Tasks", - "Rank": 1, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 1 }, { "Id": 533, "Command": "Get-PnPListItem -List Tasks -Id 1", - "Rank": 2, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 2 }, { "Id": 534, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Rank": 3, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 3 }, { "Id": 535, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Rank": 4, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 4 }, { "Id": 536, "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Rank": 5, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 5 }, { "Id": 537, "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Rank": 6, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 6 }, { "Id": 538, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "Rank": 7, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 7 }, { "Id": 539, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Rank": 8, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 8 }, { "Id": 540, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Rank": 9, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 9 }, { "Id": 541, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "Rank": 1, - "CommandName": "Get-PnPListItemAttachment" + "CommandName": "Get-PnPListItemAttachment", + "Rank": 1 }, { "Id": 542, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "Rank": 2, - "CommandName": "Get-PnPListItemAttachment" + "CommandName": "Get-PnPListItemAttachment", + "Rank": 2 }, { "Id": 543, "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Rank": 1, - "CommandName": "Get-PnPListItemComment" + "CommandName": "Get-PnPListItemComment", + "Rank": 1 }, { "Id": 544, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Rank": 1, - "CommandName": "Get-PnPListItemPermission" + "CommandName": "Get-PnPListItemPermission", + "Rank": 1 }, { "Id": 545, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Rank": 1, - "CommandName": "Get-PnPListItemVersion" + "CommandName": "Get-PnPListItemVersion", + "Rank": 1 }, { "Id": 546, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Rank": 1, - "CommandName": "Get-PnPListPermissions" + "CommandName": "Get-PnPListPermissions", + "Rank": 1 }, { "Id": 547, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Rank": 2, - "CommandName": "Get-PnPListPermissions" + "CommandName": "Get-PnPListPermissions", + "Rank": 2 }, { "Id": 548, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Rank": 1, - "CommandName": "Get-PnPListRecordDeclaration" + "CommandName": "Get-PnPListRecordDeclaration", + "Rank": 1 }, { "Id": 549, "Command": "Get-PnPMasterPage", - "Rank": 1, - "CommandName": "Get-PnPMasterPage" + "CommandName": "Get-PnPMasterPage", + "Rank": 1 }, { "Id": 550, "Command": "Get-PnPMessageCenterAnnouncement", - "Rank": 1, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Rank": 1 }, { "Id": 551, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Rank": 2, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Rank": 2 }, { "Id": 552, "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 1 }, { "Id": 553, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 2 }, { "Id": 554, "Command": "Get-PnPMicrosoft365Group", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 1 }, { "Id": 555, "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 2 }, { "Id": 556, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 3 }, { "Id": 557, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Rank": 4, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 4 }, { "Id": 558, "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Rank": 5, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 5 }, { "Id": 559, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Rank": 6, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 6 }, { "Id": 560, "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 1 }, { "Id": 561, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 2 }, { "Id": 562, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 3 }, { "Id": 563, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 1 }, { "Id": 564, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 2 }, { "Id": 565, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 3 }, { "Id": 566, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Rank": 1 }, { "Id": 567, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Rank": 2 }, { "Id": 568, "Command": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Rank": 1 }, { "Id": 569, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Rank": 2 }, { "Id": 570, "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 1 }, { "Id": 571, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 2 }, { "Id": 572, "Command": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 1 }, { "Id": 573, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 2 }, { "Id": 574, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 3 }, { "Id": 575, "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 1 }, { "Id": 576, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 2 }, { "Id": 577, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 3 }, { "Id": 578, "Command": "Get-PnPNavigationNode", - "Rank": 1, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Rank": 1 }, { "Id": 579, "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Rank": 2, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Rank": 2 }, { "Id": 580, "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Rank": 3, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Rank": 3 }, { "Id": 581, "Command": "Get-PnPOrgAssetsLibrary", - "Rank": 1, - "CommandName": "Get-PnPOrgAssetsLibrary" + "CommandName": "Get-PnPOrgAssetsLibrary", + "Rank": 1 }, { "Id": 582, "Command": "Get-PnPOrgNewsSite", - "Rank": 1, - "CommandName": "Get-PnPOrgNewsSite" + "CommandName": "Get-PnPOrgNewsSite", + "Rank": 1 }, { "Id": 583, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Rank": 1, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Rank": 1 }, { "Id": 584, "Command": "Get-PnPPage \"MyPage\"", - "Rank": 2, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Rank": 2 }, { "Id": 585, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Rank": 3, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Rank": 3 }, { "Id": 586, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Rank": 4, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Rank": 4 }, { "Id": 587, "Command": "Get-PnPPageComponent -Page Home", - "Rank": 1, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Rank": 1 }, { "Id": 588, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Rank": 2 }, { "Id": 589, "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Rank": 3, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Rank": 3 }, { "Id": 590, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, - "CommandName": "Get-PnPPlannerBucket" + "CommandName": "Get-PnPPlannerBucket", + "Rank": 1 }, { "Id": 591, "Command": "Get-PnPPlannerConfiguration", - "Rank": 1, - "CommandName": "Get-PnPPlannerConfiguration" + "CommandName": "Get-PnPPlannerConfiguration", + "Rank": 1 }, { "Id": 592, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Rank": 1, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Rank": 1 }, { "Id": 593, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Rank": 2, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Rank": 2 }, { "Id": 594, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Rank": 3, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Rank": 3 }, { "Id": 595, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, - "CommandName": "Get-PnPPlannerRosterMember" + "CommandName": "Get-PnPPlannerRosterMember", + "Rank": 1 }, { "Id": 596, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Rank": 1, - "CommandName": "Get-PnPPlannerRosterPlan" + "CommandName": "Get-PnPPlannerRosterPlan", + "Rank": 1 }, { "Id": 597, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 2, - "CommandName": "Get-PnPPlannerRosterPlan" + "CommandName": "Get-PnPPlannerRosterPlan", + "Rank": 2 }, { "Id": 598, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Rank": 1 }, { "Id": 599, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 2, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Rank": 2 }, { "Id": 600, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 3, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Rank": 3 }, { "Id": 601, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Get-PnPPlannerUserPolicy" + "CommandName": "Get-PnPPlannerUserPolicy", + "Rank": 1 }, { "Id": 602, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "Rank": 1, - "CommandName": "Get-PnPPowerPlatformConnector" + "CommandName": "Get-PnPPowerPlatformConnector", + "Rank": 1 }, { "Id": 603, "Command": "Get-PnPPowerPlatformEnvironment", - "Rank": 1, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 1 }, { "Id": 604, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Rank": 2, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 2 }, { "Id": 605, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Rank": 3, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 3 }, { "Id": 606, "Command": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1, - "CommandName": "Get-PnPPowerShellTelemetryEnabled" + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1 }, { "Id": 607, "Command": "Get-PnPPropertyBag", - "Rank": 1, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Rank": 1 }, { "Id": 608, "Command": "Get-PnPPropertyBag -Key MyKey", - "Rank": 2, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Rank": 2 }, { "Id": 609, "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Rank": 3, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Rank": 3 }, { "Id": 610, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Rank": 4, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Rank": 4 }, { "Id": 611, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Rank": 5, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Rank": 5 }, { "Id": 612, "Command": "Get-PnPPublishingImageRendition", - "Rank": 1, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 1 }, { "Id": 613, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Rank": 2, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 2 }, { "Id": 614, "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Rank": 3, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 3 }, { "Id": 615, "Command": "Get-PnPRecycleBinItem", - "Rank": 1, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 1 }, { "Id": 616, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Rank": 2, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 2 }, { "Id": 617, "Command": "Get-PnPRecycleBinItem -FirstStage", - "Rank": 3, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 3 }, { "Id": 618, "Command": "Get-PnPRecycleBinItem -SecondStage", - "Rank": 4, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 4 }, { "Id": 619, "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Rank": 5, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 5 }, { "Id": 620, "Command": "Get-PnPRequestAccessEmails", - "Rank": 1, - "CommandName": "Get-PnPRequestAccessEmails" + "CommandName": "Get-PnPRequestAccessEmails", + "Rank": 1 }, { "Id": 621, "Command": "Get-PnPRoleDefinition", - "Rank": 1, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Rank": 1 }, { "Id": 622, "Command": "Get-PnPRoleDefinition -Identity Read", - "Rank": 2, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Rank": 2 }, { "Id": 623, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Rank": 3, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Rank": 3 }, { "Id": 624, "Command": "Get-PnPSearchConfiguration", - "Rank": 1, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 1 }, { "Id": 625, "Command": "Get-PnPSearchConfiguration -Scope Site", - "Rank": 2, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 2 }, { "Id": 626, "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Rank": 3, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 3 }, { "Id": 627, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 4 }, { "Id": 628, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Rank": 5, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 5 }, { "Id": 629, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Rank": 6, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 6 }, { "Id": 630, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Rank": 7, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 7 }, { "Id": 631, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Rank": 8, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 8 }, { "Id": 632, "Command": "Get-PnPSearchCrawlLog", - "Rank": 1, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 1 }, { "Id": 633, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Rank": 2, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 2 }, { "Id": 634, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Rank": 3, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 3 }, { "Id": 635, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Rank": 4, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 4 }, { "Id": 636, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Rank": 5, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 5 }, { "Id": 637, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Rank": 6, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 6 }, { "Id": 638, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Rank": 7, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 7 }, { "Id": 639, "Command": "Get-PnPSearchSettings", - "Rank": 1, - "CommandName": "Get-PnPSearchSettings" + "CommandName": "Get-PnPSearchSettings", + "Rank": 1 }, { "Id": 640, "Command": "Get-PnPServiceCurrentHealth", - "Rank": 1, - "CommandName": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPServiceCurrentHealth", + "Rank": 1 }, { "Id": 641, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Rank": 2, - "CommandName": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPServiceCurrentHealth", + "Rank": 2 }, { "Id": 642, "Command": "Get-PnPServiceHealthIssue", - "Rank": 1, - "CommandName": "Get-PnPServiceHealthIssue" + "CommandName": "Get-PnPServiceHealthIssue", + "Rank": 1 }, { "Id": 643, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Rank": 2, - "CommandName": "Get-PnPServiceHealthIssue" + "CommandName": "Get-PnPServiceHealthIssue", + "Rank": 2 }, { "Id": 644, "Command": "Get-PnPSharePointAddIn", - "Rank": 1, - "CommandName": "Get-PnPSharePointAddIn" + "CommandName": "Get-PnPSharePointAddIn", + "Rank": 1 }, { "Id": 645, "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Rank": 2, - "CommandName": "Get-PnPSharePointAddIn" + "CommandName": "Get-PnPSharePointAddIn", + "Rank": 2 }, { "Id": 646, "Command": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1, - "CommandName": "Get-PnPSharingForNonOwnersOfSite" + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Rank": 1 }, { "Id": 647, "Command": "Get-PnPSite", - "Rank": 1, - "CommandName": "Get-PnPSite" + "CommandName": "Get-PnPSite", + "Rank": 1 }, { "Id": 648, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Rank": 2, - "CommandName": "Get-PnPSite" + "CommandName": "Get-PnPSite", + "Rank": 2 }, { "Id": 649, "Command": "Get-PnPSiteClosure", - "Rank": 1, - "CommandName": "Get-PnPSiteClosure" + "CommandName": "Get-PnPSiteClosure", + "Rank": 1 }, { "Id": 650, "Command": "Get-PnPSiteCollectionAdmin", - "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAdmin" + "CommandName": "Get-PnPSiteCollectionAdmin", + "Rank": 1 }, { "Id": 651, "Command": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 1 }, { "Id": 652, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Rank": 2, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 2 }, { "Id": 653, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Rank": 3, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 3 }, { "Id": 654, "Command": "Get-PnPSiteCollectionTermStore", - "Rank": 1, - "CommandName": "Get-PnPSiteCollectionTermStore" + "CommandName": "Get-PnPSiteCollectionTermStore", + "Rank": 1 }, { "Id": 655, "Command": "Get-PnPSiteDesign", - "Rank": 1, - "CommandName": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteDesign", + "Rank": 1 }, { "Id": 656, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, - "CommandName": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteDesign", + "Rank": 2 }, { "Id": 657, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "CommandName": "Get-PnPSiteDesignRights" + "CommandName": "Get-PnPSiteDesignRights", + "Rank": 1 }, { "Id": 658, "Command": "Get-PnPSiteDesignRun", - "Rank": 1, - "CommandName": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesignRun", + "Rank": 1 }, { "Id": 659, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Rank": 2, - "CommandName": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesignRun", + "Rank": 2 }, { "Id": 660, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 1 }, { "Id": 661, "Command": "Get-PnPSiteDesignTask", - "Rank": 2, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 2 }, { "Id": 662, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 3, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 3 }, { "Id": 663, "Command": "Get-PnPSiteGroup", - "Rank": 1, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Rank": 1 }, { "Id": 664, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 2, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Rank": 2 }, { "Id": 665, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Rank": 3, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Rank": 3 }, { "Id": 666, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 4, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Rank": 4 }, { "Id": 667, "Command": "Get-PnPSitePolicy", - "Rank": 1, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Rank": 1 }, { "Id": 668, "Command": "Get-PnPSitePolicy -AllAvailable", - "Rank": 2, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Rank": 2 }, { "Id": 669, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 3, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Rank": 3 }, { "Id": 670, "Command": "Get-PnPSiteScript", - "Rank": 1, - "CommandName": "Get-PnPSiteScript" + "CommandName": "Get-PnPSiteScript", + "Rank": 1 }, { "Id": 671, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, - "CommandName": "Get-PnPSiteScript" + "CommandName": "Get-PnPSiteScript", + "Rank": 2 }, { "Id": 672, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 1 }, { "Id": 673, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 2 }, { "Id": 674, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 3 }, { "Id": 675, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 1 }, { "Id": 676, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 2 }, { "Id": 677, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 3 }, { "Id": 678, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Rank": 4, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 4 }, { "Id": 679, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Rank": 5, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 5 }, { "Id": 680, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "Rank": 6, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 6 }, { "Id": 681, "Command": "Get-PnPSiteSearchQueryResults", - "Rank": 1, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 1 }, { "Id": 682, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Rank": 2, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 2 }, { "Id": 683, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Rank": 3, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 3 }, { "Id": 684, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Rank": 4, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 4 }, { "Id": 685, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Rank": 5, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 5 }, { "Id": 686, "Command": "Get-PnPSiteSearchQueryResults -All", - "Rank": 6, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 6 }, { "Id": 687, "Command": "Get-PnPSiteSensitivityLabel", - "Rank": 1, - "CommandName": "Get-PnPSiteSensitivityLabel" + "CommandName": "Get-PnPSiteSensitivityLabel", + "Rank": 1 }, { "Id": 688, "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Rank": 1, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 1 }, { "Id": 689, "Command": "Get-PnPSiteTemplate -Out template.xml", - "Rank": 2, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 2 }, { "Id": 690, "Command": "Get-PnPSiteTemplate -Out template.md", - "Rank": 3, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 3 }, { "Id": 691, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Rank": 4, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 4 }, { "Id": 692, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Rank": 5, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 5 }, { "Id": 693, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Rank": 6, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 6 }, { "Id": 694, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Rank": 7, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 7 }, { "Id": 695, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Rank": 8, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 8 }, { "Id": 696, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Rank": 9, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 9 }, { "Id": 697, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Rank": 10, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 10 }, { "Id": 698, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Rank": 11, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 11 }, { "Id": 699, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Rank": 12, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 12 }, { "Id": 700, "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" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 13 }, { "Id": 701, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Rank": 14, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 14 }, { "Id": 702, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1, - "CommandName": "Get-PnPSiteUserInvitations" + "CommandName": "Get-PnPSiteUserInvitations", + "Rank": 1 }, { "Id": 703, "Command": "Get-PnPStorageEntity", - "Rank": 1, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Rank": 1 }, { "Id": 704, "Command": "Get-PnPStorageEntity -Key MyKey", - "Rank": 2, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Rank": 2 }, { "Id": 705, "Command": "Get-PnPStorageEntity -Scope Site", - "Rank": 3, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Rank": 3 }, { "Id": 706, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 4, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Rank": 4 }, { "Id": 707, "Command": "Get-PnPStoredCredential -Name O365", - "Rank": 1, - "CommandName": "Get-PnPStoredCredential" + "CommandName": "Get-PnPStoredCredential", + "Rank": 1 }, { "Id": 708, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState" + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Rank": 1 }, { "Id": 709, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheWebState" + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Rank": 1 }, { "Id": 710, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Rank": 1, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest" + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Rank": 1 }, { "Id": 711, "Command": "Get-PnPSubWeb", - "Rank": 1, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Rank": 1 }, { "Id": 712, "Command": "Get-PnPSubWeb -Recurse", - "Rank": 2, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Rank": 2 }, { "Id": 713, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Rank": 3, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Rank": 3 }, { "Id": 714, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Rank": 4, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Rank": 4 }, { "Id": 715, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Rank": 5, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Rank": 5 }, { "Id": 716, "Command": "Get-PnPSyntexModel", - "Rank": 1, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Rank": 1 }, { "Id": 717, "Command": "Get-PnPSyntexModel -Identity 1", - "Rank": 2, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Rank": 2 }, { "Id": 718, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Rank": 3, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Rank": 3 }, { "Id": 719, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Rank": 1, - "CommandName": "Get-PnPSyntexModelPublication" + "CommandName": "Get-PnPSyntexModelPublication", + "Rank": 1 }, { "Id": 720, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Rank": 1, - "CommandName": "Get-PnPTaxonomyItem" + "CommandName": "Get-PnPTaxonomyItem", + "Rank": 1 }, { "Id": 721, "Command": "Get-PnPTeamsApp", - "Rank": 1, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Rank": 1 }, { "Id": 722, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Rank": 2, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Rank": 2 }, { "Id": 723, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Rank": 3, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Rank": 3 }, { "Id": 724, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Rank": 1, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Rank": 1 }, { "Id": 725, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Rank": 2, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Rank": 2 }, { "Id": 726, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 3, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Rank": 3 }, { "Id": 727, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Rank": 1, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Rank": 1 }, { "Id": 728, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 2, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Rank": 2 }, { "Id": 729, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessage" + "CommandName": "Get-PnPTeamsChannelMessage", + "Rank": 1 }, { "Id": 730, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessage" + "CommandName": "Get-PnPTeamsChannelMessage", + "Rank": 2 }, { "Id": 731, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Rank": 1 }, { "Id": 732, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Rank": 2 }, { "Id": 733, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 1, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 1 }, { "Id": 734, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Rank": 2, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 2 }, { "Id": 735, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Rank": 3, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 3 }, { "Id": 736, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 4 }, { "Id": 737, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Rank": 1, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Rank": 1 }, { "Id": 738, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Rank": 2, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Rank": 2 }, { "Id": 739, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Rank": 1, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Rank": 1 }, { "Id": 740, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "Rank": 2, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Rank": 2 }, { "Id": 741, "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" + "CommandName": "Get-PnPTeamsTab", + "Rank": 3 }, { "Id": 742, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 4, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Rank": 4 }, { "Id": 743, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Rank": 5, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Rank": 5 }, { "Id": 744, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, - "CommandName": "Get-PnPTeamsTag" + "CommandName": "Get-PnPTeamsTag", + "Rank": 1 }, { "Id": 745, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 2, - "CommandName": "Get-PnPTeamsTag" + "CommandName": "Get-PnPTeamsTag", + "Rank": 2 }, { "Id": 746, "Command": "Get-PnPTeamsTeam", - "Rank": 1, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 1 }, { "Id": 747, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Rank": 2, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 2 }, { "Id": 748, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Rank": 3, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 3 }, { "Id": 749, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Rank": 4, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 4 }, { "Id": 750, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 5 }, { "Id": 751, "Command": "Get-PnPTeamsUser -Team MyTeam", - "Rank": 1, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Rank": 1 }, { "Id": 752, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Rank": 2, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Rank": 2 }, { "Id": 753, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Rank": 3, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Rank": 3 }, { "Id": 754, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Rank": 4, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Rank": 4 }, { "Id": 755, "Command": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1, - "CommandName": "Get-PnPTemporarilyDisableAppBar" + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Rank": 1 }, { "Id": 756, "Command": "Get-PnPTenant", - "Rank": 1, - "CommandName": "Get-PnPTenant" + "CommandName": "Get-PnPTenant", + "Rank": 1 }, { "Id": 757, "Command": "Get-PnPTenantAppCatalogUrl", - "Rank": 1, - "CommandName": "Get-PnPTenantAppCatalogUrl" + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Rank": 1 }, { "Id": 758, "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Rank": 1, - "CommandName": "Get-PnPTenantCdnEnabled" + "CommandName": "Get-PnPTenantCdnEnabled", + "Rank": 1 }, { "Id": 759, "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Rank": 1, - "CommandName": "Get-PnPTenantCdnOrigin" + "CommandName": "Get-PnPTenantCdnOrigin", + "Rank": 1 }, { "Id": 760, "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Rank": 1, - "CommandName": "Get-PnPTenantCdnPolicies" + "CommandName": "Get-PnPTenantCdnPolicies", + "Rank": 1 }, { "Id": 761, "Command": "Get-PnPTenantDeletedSite", - "Rank": 1, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 1 }, { "Id": 762, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 2, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 2 }, { "Id": 763, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Rank": 3, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 3 }, { "Id": 764, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Rank": 4, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 4 }, { "Id": 765, "Command": "Get-PnPTenantId", - "Rank": 1, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Rank": 1 }, { "Id": 766, "Command": "Get-PnPTenantId contoso", - "Rank": 2, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Rank": 2 }, { "Id": 767, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Rank": 3, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Rank": 3 }, { "Id": 768, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Rank": 4, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Rank": 4 }, { "Id": 769, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "Rank": 1, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Rank": 1 }, { "Id": 770, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "Rank": 2, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Rank": 2 }, { "Id": 771, "Command": "Get-PnPTenantInfo", - "Rank": 3, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Rank": 3 }, { "Id": 772, "Command": "Get-PnPTenantInfo -CurrentTenant", - "Rank": 4, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Rank": 4 }, { "Id": 773, "Command": "Get-PnPTenantInstance", - "Rank": 1, - "CommandName": "Get-PnPTenantInstance" + "CommandName": "Get-PnPTenantInstance", + "Rank": 1 }, { "Id": 774, "Command": "Get-PnPTenantRecycleBinItem", - "Rank": 1, - "CommandName": "Get-PnPTenantRecycleBinItem" + "CommandName": "Get-PnPTenantRecycleBinItem", + "Rank": 1 }, { "Id": 775, "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Rank": 1, - "CommandName": "Get-PnPTenantSequence" + "CommandName": "Get-PnPTenantSequence", + "Rank": 1 }, { "Id": 776, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Rank": 2, - "CommandName": "Get-PnPTenantSequence" + "CommandName": "Get-PnPTenantSequence", + "Rank": 2 }, { "Id": 777, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Rank": 1, - "CommandName": "Get-PnPTenantSequenceSite" + "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 1 }, { "Id": 778, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Rank": 2, - "CommandName": "Get-PnPTenantSequenceSite" + "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 2 }, { "Id": 779, "Command": "Get-PnPTenantSite", - "Rank": 1, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 1 }, { "Id": 780, "Command": "Get-PnPTenantSite -Detailed", - "Rank": 2, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 2 }, { "Id": 781, "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Rank": 3, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 3 }, { "Id": 782, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Rank": 4, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 4 }, { "Id": 783, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Rank": 5, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 5 }, { "Id": 784, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Rank": 6, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 6 }, { "Id": 785, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Rank": 7, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 7 }, { "Id": 786, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Rank": 8, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 8 }, { "Id": 787, "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Rank": 9, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 9 }, { "Id": 788, "Command": "Get-PnPTenantSyncClientRestriction", - "Rank": 1, - "CommandName": "Get-PnPTenantSyncClientRestriction" + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Rank": 1 }, { "Id": 789, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Rank": 1, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Rank": 1 }, { "Id": 790, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Rank": 2, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Rank": 2 }, { "Id": 791, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "Rank": 3, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Rank": 3 }, { "Id": 792, "Command": "Get-PnPTenantTheme", - "Rank": 1, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Rank": 1 }, { "Id": 793, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 2, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Rank": 2 }, { "Id": 794, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Rank": 3, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Rank": 3 }, { "Id": 795, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 1, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Rank": 1 }, { "Id": 796, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Rank": 2 }, { "Id": 797, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Rank": 3 }, { "Id": 798, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Rank": 4, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Rank": 4 }, { "Id": 799, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Rank": 5, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Rank": 5 }, { "Id": 800, "Command": "Get-PnPTermGroup", - "Rank": 1, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Rank": 1 }, { "Id": 801, "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Rank": 2, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Rank": 2 }, { "Id": 802, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Rank": 3, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Rank": 3 }, { "Id": 803, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Rank": 1, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Rank": 1 }, { "Id": 804, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Rank": 2, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Rank": 2 }, { "Id": 805, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Rank": 3 }, { "Id": 806, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Rank": 1, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Rank": 1 }, { "Id": 807, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Rank": 2 }, { "Id": 808, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Rank": 3, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Rank": 3 }, { "Id": 809, "Command": "Get-PnPTheme", - "Rank": 1, - "CommandName": "Get-PnPTheme" + "CommandName": "Get-PnPTheme", + "Rank": 1 }, { "Id": 810, "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Rank": 2, - "CommandName": "Get-PnPTheme" + "CommandName": "Get-PnPTheme", + "Rank": 2 }, { "Id": 811, "Command": "Get-PnPTimeZoneId", - "Rank": 1, - "CommandName": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTimeZoneId", + "Rank": 1 }, { "Id": 812, "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Rank": 2, - "CommandName": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTimeZoneId", + "Rank": 2 }, { "Id": 813, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Rank": 1, - "CommandName": "Get-PnPUnfurlLink" + "CommandName": "Get-PnPUnfurlLink", + "Rank": 1 }, { "Id": 814, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Rank": 1, - "CommandName": "Get-PnPUnifiedAuditLog" + "CommandName": "Get-PnPUnifiedAuditLog", + "Rank": 1 }, { "Id": 815, "Command": "Get-PnPUPABulkImportStatus", - "Rank": 1, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 1 }, { "Id": 816, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Rank": 2, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 2 }, { "Id": 817, "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Rank": 3, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 3 }, { "Id": 818, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Rank": 4, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 4 }, { "Id": 819, "Command": "Get-PnPUser", - "Rank": 1, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 1 }, { "Id": 820, "Command": "Get-PnPUser -Identity 23", - "Rank": 2, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 2 }, { "Id": 821, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Rank": 3, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 3 }, { "Id": 822, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Rank": 4, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 4 }, { "Id": 823, "Command": "Get-PnPUser -WithRightsAssigned", - "Rank": 5, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 5 }, { "Id": 824, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Rank": 6, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 6 }, { "Id": 825, "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Rank": 7, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 7 }, { "Id": 826, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Rank": 1, - "CommandName": "Get-PnPUserOneDriveQuota" + "CommandName": "Get-PnPUserOneDriveQuota", + "Rank": 1 }, { "Id": 827, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Rank": 1, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Rank": 1 }, { "Id": 828, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Rank": 2, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Rank": 2 }, { "Id": 829, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Rank": 3, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Rank": 3 }, { "Id": 830, "Command": "Get-PnPView -List \"Demo List\"", - "Rank": 1, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Rank": 1 }, { "Id": 831, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Rank": 2, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Rank": 2 }, { "Id": 832, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Rank": 3, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Rank": 3 }, { "Id": 833, "Command": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 1 }, { "Id": 834, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 2, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 2 }, { "Id": 835, "Command": "Get-PnPWeb", - "Rank": 1, - "CommandName": "Get-PnPWeb" + "CommandName": "Get-PnPWeb", + "Rank": 1 }, { "Id": 836, "Command": "Get-PnPWebHeader", - "Rank": 1, - "CommandName": "Get-PnPWebHeader" + "CommandName": "Get-PnPWebHeader", + "Rank": 1 }, { "Id": 837, "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Rank": 1, - "CommandName": "Get-PnPWebhookSubscriptions" + "CommandName": "Get-PnPWebhookSubscriptions", + "Rank": 1 }, { "Id": 838, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Rank": 1, - "CommandName": "Get-PnPWebPart" + "CommandName": "Get-PnPWebPart", + "Rank": 1 }, { "Id": 839, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2, - "CommandName": "Get-PnPWebPart" + "CommandName": "Get-PnPWebPart", + "Rank": 2 }, { "Id": 840, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Rank": 1, - "CommandName": "Get-PnPWebPartProperty" + "CommandName": "Get-PnPWebPartProperty", + "Rank": 1 }, { "Id": 841, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "Rank": 2, - "CommandName": "Get-PnPWebPartProperty" + "CommandName": "Get-PnPWebPartProperty", + "Rank": 2 }, { "Id": 842, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, - "CommandName": "Get-PnPWebPartXml" + "CommandName": "Get-PnPWebPartXml", + "Rank": 1 }, { "Id": 843, "Command": "Get-PnPWebTemplates", - "Rank": 1, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Rank": 1 }, { "Id": 844, "Command": "Get-PnPWebTemplates -LCID 1033", - "Rank": 2, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Rank": 2 }, { "Id": 845, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Rank": 3, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Rank": 3 }, { "Id": 846, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Rank": 1, - "CommandName": "Get-PnPWikiPageContent" + "CommandName": "Get-PnPWikiPageContent", + "Rank": 1 }, { "Id": 847, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Rank": 1, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Rank": 1 }, { "Id": 848, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Rank": 2 }, { "Id": 849, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, - "CommandName": "Grant-PnPHubSiteRights" + "CommandName": "Grant-PnPHubSiteRights", + "Rank": 1 }, { "Id": 850, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, - "CommandName": "Grant-PnPSiteDesignRights" + "CommandName": "Grant-PnPSiteDesignRights", + "Rank": 1 }, { "Id": 851, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1, - "CommandName": "Grant-PnPTenantServicePrincipalPermission" + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Rank": 1 }, { "Id": 852, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Rank": 1, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Rank": 1 }, { "Id": 853, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Rank": 2, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Rank": 2 }, { "Id": 854, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Rank": 3, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Rank": 3 }, { "Id": 855, "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Rank": 1, - "CommandName": "Import-PnPTermGroupFromXml" + "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 1 }, { "Id": 856, "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Rank": 2, - "CommandName": "Import-PnPTermGroupFromXml" + "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 2 }, { "Id": 857, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Rank": 1, - "CommandName": "Import-PnPTermSet" + "CommandName": "Import-PnPTermSet", + "Rank": 1 }, { "Id": 858, "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" + "CommandName": "Import-PnPTermSet", + "Rank": 2 }, { "Id": 859, "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" + "CommandName": "Import-PnPTermSet", + "Rank": 3 }, { "Id": 860, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Install-PnPApp" + "CommandName": "Install-PnPApp", + "Rank": 1 }, { "Id": 861, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "CommandName": "Install-PnPApp" + "CommandName": "Install-PnPApp", + "Rank": 2 }, { "Id": 862, "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "Rank": 1, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 1 }, { "Id": 863, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Rank": 2, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 2 }, { "Id": 864, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Rank": 3, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 3 }, { "Id": 865, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Rank": 4, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 4 }, { "Id": 866, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Rank": 5, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 5 }, { "Id": 867, "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" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 6 }, { "Id": 868, "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" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 7 }, { "Id": 869, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "CommandName": "Invoke-PnPListDesign" + "CommandName": "Invoke-PnPListDesign", + "Rank": 1 }, { "Id": 870, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2, - "CommandName": "Invoke-PnPListDesign" + "CommandName": "Invoke-PnPListDesign", + "Rank": 2 }, { "Id": 871, "Command": "Invoke-PnPQuery -RetryCount 5", - "Rank": 1, - "CommandName": "Invoke-PnPQuery" + "CommandName": "Invoke-PnPQuery", + "Rank": 1 }, { "Id": 872, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "CommandName": "Invoke-PnPSiteDesign" + "CommandName": "Invoke-PnPSiteDesign", + "Rank": 1 }, { "Id": 873, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2, - "CommandName": "Invoke-PnPSiteDesign" + "CommandName": "Invoke-PnPSiteDesign", + "Rank": 2 }, { "Id": 874, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Rank": 1, - "CommandName": "Invoke-PnPSiteScript" + "CommandName": "Invoke-PnPSiteScript", + "Rank": 1 }, { "Id": 875, "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" + "CommandName": "Invoke-PnPSiteSwap", + "Rank": 1 }, { "Id": 876, "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" + "CommandName": "Invoke-PnPSiteSwap", + "Rank": 2 }, { "Id": 877, "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" + "CommandName": "Invoke-PnPSiteSwap", + "Rank": 3 }, { "Id": 878, "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Rank": 1, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 1 }, { "Id": 879, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Rank": 2, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 2 }, { "Id": 880, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 3 }, { "Id": 881, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Rank": 4, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 4 }, { "Id": 882, "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Rank": 5, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 5 }, { "Id": 883, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Rank": 6, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 6 }, { "Id": 884, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Rank": 7, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 7 }, { "Id": 885, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Rank": 8, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 8 }, { "Id": 886, "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Rank": 1, - "CommandName": "Invoke-PnPSPRestMethod" + "CommandName": "Invoke-PnPSPRestMethod", + "Rank": 1 }, { "Id": 887, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Rank": 1, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 1 }, { "Id": 888, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Rank": 2, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 2 }, { "Id": 889, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 3 }, { "Id": 890, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Rank": 1, - "CommandName": "Invoke-PnPWebAction" + "CommandName": "Invoke-PnPWebAction", + "Rank": 1 }, { "Id": 891, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Rank": 2, - "CommandName": "Invoke-PnPWebAction" + "CommandName": "Invoke-PnPWebAction", + "Rank": 2 }, { "Id": 892, "Command": "Measure-PnPList \"Documents\"", - "Rank": 1, - "CommandName": "Measure-PnPList" + "CommandName": "Measure-PnPList", + "Rank": 1 }, { "Id": 893, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Rank": 2, - "CommandName": "Measure-PnPList" + "CommandName": "Measure-PnPList", + "Rank": 2 }, { "Id": 894, "Command": "Measure-PnPWeb", - "Rank": 1, - "CommandName": "Measure-PnPWeb" + "CommandName": "Measure-PnPWeb", + "Rank": 1 }, { "Id": 895, "Command": "Measure-PnPWeb $web -Recursive", - "Rank": 2, - "CommandName": "Measure-PnPWeb" + "CommandName": "Measure-PnPWeb", + "Rank": 2 }, { "Id": 896, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Rank": 1, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Rank": 1 }, { "Id": 897, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Rank": 2, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Rank": 2 }, { "Id": 898, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 3, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Rank": 3 }, { "Id": 899, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 4, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Rank": 4 }, { "Id": 900, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Rank": 1, - "CommandName": "Move-PnPFolder" + "CommandName": "Move-PnPFolder", + "Rank": 1 }, { "Id": 901, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Rank": 2, - "CommandName": "Move-PnPFolder" + "CommandName": "Move-PnPFolder", + "Rank": 2 }, { "Id": 902, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, - "CommandName": "Move-PnPListItemToRecycleBin" + "CommandName": "Move-PnPListItemToRecycleBin", + "Rank": 1 }, { "Id": 903, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Rank": 1, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Rank": 1 }, { "Id": 904, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Rank": 2, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Rank": 2 }, { "Id": 905, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Rank": 3, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Rank": 3 }, { "Id": 906, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "Rank": 4, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Rank": 4 }, { "Id": 907, "Command": "Move-PnPRecycleBinItem", - "Rank": 1, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 1 }, { "Id": 908, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Rank": 2, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 2 }, { "Id": 909, "Command": "Move-PnPRecycleBinItem -Force", - "Rank": 3, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 3 }, { "Id": 910, "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" + "CommandName": "Move-PnPTerm", + "Rank": 1 }, { "Id": 911, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Rank": 2, - "CommandName": "Move-PnPTerm" + "CommandName": "Move-PnPTerm", + "Rank": 2 }, { "Id": 912, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Rank": 3, - "CommandName": "Move-PnPTerm" + "CommandName": "Move-PnPTerm", + "Rank": 3 }, { "Id": 913, "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" + "CommandName": "Move-PnPTermSet", + "Rank": 1 }, { "Id": 914, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Rank": 2, - "CommandName": "Move-PnPTermSet" + "CommandName": "Move-PnPTermSet", + "Rank": 2 }, { "Id": 915, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Rank": 1 }, { "Id": 916, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Rank": 2, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Rank": 2 }, { "Id": 917, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Rank": 3, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Rank": 3 }, { "Id": 918, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Rank": 1, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 1 }, { "Id": 919, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Rank": 2, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 2 }, { "Id": 920, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "Rank": 3, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 3 }, { "Id": 921, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Rank": 1, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Rank": 1 }, { "Id": 922, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Rank": 2, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Rank": 2 }, { "Id": 923, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "Rank": 3, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Rank": 3 }, { "Id": 924, "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" + "CommandName": "New-PnPGraphSubscription", + "Rank": 1 }, { "Id": 925, "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" + "CommandName": "New-PnPGraphSubscription", + "Rank": 2 }, { "Id": 926, "Command": "New-PnPGroup -Title \"My Site Users\"", - "Rank": 1, - "CommandName": "New-PnPGroup" + "CommandName": "New-PnPGroup", + "Rank": 1 }, { "Id": 927, "Command": "New-PnPList -Title Announcements -Template Announcements", - "Rank": 1, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Rank": 1 }, { "Id": 928, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Rank": 2, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Rank": 2 }, { "Id": 929, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Rank": 3, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Rank": 3 }, { "Id": 930, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 1 }, { "Id": 931, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "Rank": 2, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 2 }, { "Id": 932, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Rank": 3, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 3 }, { "Id": 933, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Rank": 4, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 4 }, { "Id": 934, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Rank": 5, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 5 }, { "Id": 935, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 6 }, { "Id": 936, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "Rank": 7, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 7 }, { "Id": 937, "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" + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Rank": 1 }, { "Id": 938, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "Rank": 2, - "CommandName": "New-PnPMicrosoft365GroupSettings" + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Rank": 2 }, { "Id": 939, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Rank": 1, - "CommandName": "New-PnPPersonalSite" + "CommandName": "New-PnPPersonalSite", + "Rank": 1 }, { "Id": 940, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Rank": 1, - "CommandName": "New-PnPPlannerPlan" + "CommandName": "New-PnPPlannerPlan", + "Rank": 1 }, { "Id": 941, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Rank": 1, - "CommandName": "New-PnPSdnProvider" + "CommandName": "New-PnPSdnProvider", + "Rank": 1 }, { "Id": 942, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 1, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 1 }, { "Id": 943, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Rank": 2, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 2 }, { "Id": 944, "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" + "CommandName": "New-PnPSite", + "Rank": 3 }, { "Id": 945, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 4, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 4 }, { "Id": 946, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 5, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 5 }, { "Id": 947, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 6, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 6 }, { "Id": 948, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Rank": 7, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 7 }, { "Id": 949, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Rank": 8, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 8 }, { "Id": 950, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Rank": 9, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 9 }, { "Id": 951, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Rank": 10, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 10 }, { "Id": 952, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 11, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 11 }, { "Id": 953, "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" + "CommandName": "New-PnPSite", + "Rank": 12 }, { "Id": 954, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 13, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 13 }, { "Id": 955, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 14, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 14 }, { "Id": 956, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 15, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 15 }, { "Id": 957, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "Rank": 16, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 16 }, { "Id": 958, "Command": "New-PnPSiteCollectionTermStore", - "Rank": 1, - "CommandName": "New-PnPSiteCollectionTermStore" + "CommandName": "New-PnPSiteCollectionTermStore", + "Rank": 1 }, { "Id": 959, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Rank": 1, - "CommandName": "New-PnPSiteGroup" + "CommandName": "New-PnPSiteGroup", + "Rank": 1 }, { "Id": 960, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Rank": 2, - "CommandName": "New-PnPSiteGroup" + "CommandName": "New-PnPSiteGroup", + "Rank": 2 }, { "Id": 961, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Rank": 1, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 1 }, { "Id": 962, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Rank": 2, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 2 }, { "Id": 963, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Rank": 3, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 3 }, { "Id": 964, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Rank": 4, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 4 }, { "Id": 965, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "Rank": 5, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 5 }, { "Id": 966, "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" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 6 }, { "Id": 967, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Rank": 7, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 7 }, { "Id": 968, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Rank": 8, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 8 }, { "Id": 969, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Rank": 1, - "CommandName": "New-PnPTeamsApp" + "CommandName": "New-PnPTeamsApp", + "Rank": 1 }, { "Id": 970, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Rank": 1, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Rank": 1 }, { "Id": 971, "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Rank": 2, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Rank": 2 }, { "Id": 972, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Rank": 3, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Rank": 3 }, { "Id": 973, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Rank": 4, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Rank": 4 }, { "Id": 974, "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" + "CommandName": "New-PnPTeamsTeam", + "Rank": 5 }, { "Id": 975, "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" + "CommandName": "New-PnPTeamsTeam", + "Rank": 6 }, { "Id": 976, "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" + "CommandName": "New-PnPTenantSite", + "Rank": 1 }, { "Id": 977, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "Rank": 2, - "CommandName": "New-PnPTenantSite" + "CommandName": "New-PnPTenantSite", + "Rank": 2 }, { "Id": 978, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Rank": 1, - "CommandName": "New-PnPTerm" + "CommandName": "New-PnPTerm", + "Rank": 1 }, { "Id": 979, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2, - "CommandName": "New-PnPTerm" + "CommandName": "New-PnPTerm", + "Rank": 2 }, { "Id": 980, "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Rank": 1, - "CommandName": "New-PnPTermGroup" + "CommandName": "New-PnPTermGroup", + "Rank": 1 }, { "Id": 981, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Rank": 1, - "CommandName": "New-PnPTermLabel" + "CommandName": "New-PnPTermLabel", + "Rank": 1 }, { "Id": 982, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Rank": 1, - "CommandName": "New-PnPTermSet" + "CommandName": "New-PnPTermSet", + "Rank": 1 }, { "Id": 983, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "Rank": 1, - "CommandName": "New-PnPUPABulkImportJob" + "CommandName": "New-PnPUPABulkImportJob", + "Rank": 1 }, { "Id": 984, "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" + "CommandName": "New-PnPUPABulkImportJob", + "Rank": 2 }, { "Id": 985, "Command": "New-PnPUser -LoginName user@company.com", - "Rank": 1, - "CommandName": "New-PnPUser" + "CommandName": "New-PnPUser", + "Rank": 1 }, { "Id": 986, "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "Rank": 1, - "CommandName": "New-PnPWeb" + "CommandName": "New-PnPWeb", + "Rank": 1 }, { "Id": 987, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 1, - "CommandName": "Publish-PnPApp" + "CommandName": "Publish-PnPApp", + "Rank": 1 }, { "Id": 988, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Rank": 2, - "CommandName": "Publish-PnPApp" + "CommandName": "Publish-PnPApp", + "Rank": 2 }, { "Id": 989, "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" + "CommandName": "Publish-PnPCompanyApp", + "Rank": 1 }, { "Id": 990, "Command": "Publish-PnPContentType -ContentType 0x0101", - "Rank": 1, - "CommandName": "Publish-PnPContentType" + "CommandName": "Publish-PnPContentType", + "Rank": 1 }, { "Id": 991, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, - "CommandName": "Publish-PnPSyntexModel" + "CommandName": "Publish-PnPSyntexModel", + "Rank": 1 }, { "Id": 992, "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" + "CommandName": "Publish-PnPSyntexModel", + "Rank": 2 }, { "Id": 993, "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Rank": 1, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Rank": 1 }, { "Id": 994, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Rank": 2, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Rank": 2 }, { "Id": 995, "Command": "Read-PnPSiteTemplate -Xml $xml", - "Rank": 3, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Rank": 3 }, { "Id": 996, "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Rank": 1, - "CommandName": "Read-PnPTenantTemplate" + "CommandName": "Read-PnPTenantTemplate", + "Rank": 1 }, { "Id": 997, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Rank": 1, - "CommandName": "Register-PnPAppCatalogSite" + "CommandName": "Register-PnPAppCatalogSite", + "Rank": 1 }, { "Id": 998, "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" + "CommandName": "Register-PnPAzureADApp", + "Rank": 1 }, { "Id": 999, "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" + "CommandName": "Register-PnPAzureADApp", + "Rank": 2 }, { "Id": 1000, "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" + "CommandName": "Register-PnPAzureADApp", + "Rank": 3 }, { "Id": 1001, "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" + "CommandName": "Register-PnPAzureADApp", + "Rank": 4 }, { "Id": 1002, "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" + "CommandName": "Register-PnPAzureADApp", + "Rank": 5 }, { "Id": 1003, "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" + "CommandName": "Register-PnPAzureADApp", + "Rank": 6 }, { "Id": 1004, "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" + "CommandName": "Register-PnPAzureADApp", + "Rank": 7 }, { "Id": 1005, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1, - "CommandName": "Register-PnPHubSite" + "CommandName": "Register-PnPHubSite", + "Rank": 1 }, { "Id": 1006, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Rank": 2, - "CommandName": "Register-PnPHubSite" + "CommandName": "Register-PnPHubSite", + "Rank": 2 }, { "Id": 1007, "Command": "Register-PnPManagementShellAccess", - "Rank": 1, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 1 }, { "Id": 1008, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Rank": 2, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 2 }, { "Id": 1009, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Rank": 3, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 3 }, { "Id": 1010, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Rank": 1, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Rank": 1 }, { "Id": 1011, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Rank": 2, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Rank": 2 }, { "Id": 1012, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Rank": 1, - "CommandName": "Remove-PnPAlert" + "CommandName": "Remove-PnPAlert", + "Rank": 1 }, { "Id": 1013, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 2, - "CommandName": "Remove-PnPAlert" + "CommandName": "Remove-PnPAlert", + "Rank": 2 }, { "Id": 1014, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Remove-PnPApp" + "CommandName": "Remove-PnPApp", + "Rank": 1 }, { "Id": 1015, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "CommandName": "Remove-PnPApp" + "CommandName": "Remove-PnPApp", + "Rank": 2 }, { "Id": 1016, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, - "CommandName": "Remove-PnPApplicationCustomizer" + "CommandName": "Remove-PnPApplicationCustomizer", + "Rank": 1 }, { "Id": 1017, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, - "CommandName": "Remove-PnPApplicationCustomizer" + "CommandName": "Remove-PnPApplicationCustomizer", + "Rank": 2 }, { "Id": 1018, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Rank": 1, - "CommandName": "Remove-PnPAvailableSiteClassification" + "CommandName": "Remove-PnPAvailableSiteClassification", + "Rank": 1 }, { "Id": 1019, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 2, - "CommandName": "Remove-PnPAvailableSiteClassification" + "CommandName": "Remove-PnPAvailableSiteClassification", + "Rank": 2 }, { "Id": 1020, "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Rank": 1, - "CommandName": "Remove-PnPAzureADApp" + "CommandName": "Remove-PnPAzureADApp", + "Rank": 1 }, { "Id": 1021, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 2, - "CommandName": "Remove-PnPAzureADApp" + "CommandName": "Remove-PnPAzureADApp", + "Rank": 2 }, { "Id": 1022, "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Rank": 1, - "CommandName": "Remove-PnPAzureADGroup" + "CommandName": "Remove-PnPAzureADGroup", + "Rank": 1 }, { "Id": 1023, "Command": "Remove-PnPAzureADGroup -Identity $group", - "Rank": 2, - "CommandName": "Remove-PnPAzureADGroup" + "CommandName": "Remove-PnPAzureADGroup", + "Rank": 2 }, { "Id": 1024, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupMember" + "CommandName": "Remove-PnPAzureADGroupMember", + "Rank": 1 }, { "Id": 1025, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupOwner" + "CommandName": "Remove-PnPAzureADGroupOwner", + "Rank": 1 }, { "Id": 1026, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Rank": 1, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 1 }, { "Id": 1027, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Rank": 2, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 2 }, { "Id": 1028, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 3, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 3 }, { "Id": 1029, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 4, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 4 }, { "Id": 1030, "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Rank": 1, - "CommandName": "Remove-PnPContentType" + "CommandName": "Remove-PnPContentType", + "Rank": 1 }, { "Id": 1031, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Rank": 2, - "CommandName": "Remove-PnPContentType" + "CommandName": "Remove-PnPContentType", + "Rank": 2 }, { "Id": 1032, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 1 }, { "Id": 1033, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 2 }, { "Id": 1034, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromList" + "CommandName": "Remove-PnPContentTypeFromList", + "Rank": 1 }, { "Id": 1035, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Rank": 1 }, { "Id": 1036, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Rank": 2 }, { "Id": 1037, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Rank": 3, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Rank": 3 }, { "Id": 1038, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, - "CommandName": "Remove-PnPDeletedMicrosoft365Group" + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Rank": 1 }, { "Id": 1039, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 1, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 1 }, { "Id": 1040, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 2 }, { "Id": 1041, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Rank": 3, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 3 }, { "Id": 1042, "Command": "Remove-PnPEventReceiver -List ProjectList", - "Rank": 4, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 4 }, { "Id": 1043, "Command": "Remove-PnPEventReceiver", - "Rank": 5, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 5 }, { "Id": 1044, "Command": "Remove-PnPEventReceiver -Scope Site", - "Rank": 6, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 6 }, { "Id": 1045, "Command": "Remove-PnPEventReceiver -Scope Web", - "Rank": 7, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 7 }, { "Id": 1046, "Command": "Remove-PnPEventReceiver -Scope All", - "Rank": 8, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 8 }, { "Id": 1047, "Command": "Remove-PnPField -Identity \"Speakers\"", - "Rank": 1, - "CommandName": "Remove-PnPField" + "CommandName": "Remove-PnPField", + "Rank": 1 }, { "Id": 1048, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, - "CommandName": "Remove-PnPField" + "CommandName": "Remove-PnPField", + "Rank": 2 }, { "Id": 1049, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1, - "CommandName": "Remove-PnPFieldFromContentType" + "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 1 }, { "Id": 1050, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Rank": 2, - "CommandName": "Remove-PnPFieldFromContentType" + "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 2 }, { "Id": 1051, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Rank": 1, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Rank": 1 }, { "Id": 1052, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Rank": 2, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Rank": 2 }, { "Id": 1053, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Rank": 3, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Rank": 3 }, { "Id": 1054, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Rank": 1, - "CommandName": "Remove-PnPFileFromSiteTemplate" + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Rank": 1 }, { "Id": 1055, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, - "CommandName": "Remove-PnPFileSharingLink" + "CommandName": "Remove-PnPFileSharingLink", + "Rank": 1 }, { "Id": 1056, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Rank": 2, - "CommandName": "Remove-PnPFileSharingLink" + "CommandName": "Remove-PnPFileSharingLink", + "Rank": 2 }, { "Id": 1057, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Rank": 1 }, { "Id": 1058, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 2, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Rank": 2 }, { "Id": 1059, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Rank": 3, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Rank": 3 }, { "Id": 1060, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "Rank": 1, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Rank": 1 }, { "Id": 1061, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "Rank": 2, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Rank": 2 }, { "Id": 1062, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", - "Rank": 3, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Rank": 3 }, { "Id": 1063, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "Rank": 4, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Rank": 4 }, { "Id": 1064, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1, - "CommandName": "Remove-PnPFolder" + "CommandName": "Remove-PnPFolder", + "Rank": 1 }, { "Id": 1065, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Rank": 2, - "CommandName": "Remove-PnPFolder" + "CommandName": "Remove-PnPFolder", + "Rank": 2 }, { "Id": 1066, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "CommandName": "Remove-PnPFolderSharingLink" + "CommandName": "Remove-PnPFolderSharingLink", + "Rank": 1 }, { "Id": 1067, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Rank": 2, - "CommandName": "Remove-PnPFolderSharingLink" + "CommandName": "Remove-PnPFolderSharingLink", + "Rank": 2 }, { "Id": 1068, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Rank": 1, - "CommandName": "Remove-PnPGraphSubscription" + "CommandName": "Remove-PnPGraphSubscription", + "Rank": 1 }, { "Id": 1069, "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Rank": 1, - "CommandName": "Remove-PnPGroup" + "CommandName": "Remove-PnPGroup", + "Rank": 1 }, { "Id": 1070, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1, - "CommandName": "Remove-PnPGroupMember" + "CommandName": "Remove-PnPGroupMember", + "Rank": 1 }, { "Id": 1071, "Command": "Remove-PnPHomeSite", - "Rank": 1, - "CommandName": "Remove-PnPHomeSite" + "CommandName": "Remove-PnPHomeSite", + "Rank": 1 }, { "Id": 1072, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, - "CommandName": "Remove-PnPHubSiteAssociation" + "CommandName": "Remove-PnPHubSiteAssociation", + "Rank": 1 }, { "Id": 1073, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Rank": 1, - "CommandName": "Remove-PnPHubToHubAssociation" + "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 1 }, { "Id": 1074, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Rank": 2, - "CommandName": "Remove-PnPHubToHubAssociation" + "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 2 }, { "Id": 1075, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Rank": 1, - "CommandName": "Remove-PnPIndexedProperty" + "CommandName": "Remove-PnPIndexedProperty", + "Rank": 1 }, { "Id": 1076, "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Rank": 1, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 1 }, { "Id": 1077, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Rank": 2, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 2 }, { "Id": 1078, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Rank": 3, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 3 }, { "Id": 1079, "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Rank": 4, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 4 }, { "Id": 1080, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Rank": 5, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 5 }, { "Id": 1081, "Command": "Remove-PnPKnowledgeHubSite", - "Rank": 1, - "CommandName": "Remove-PnPKnowledgeHubSite" + "CommandName": "Remove-PnPKnowledgeHubSite", + "Rank": 1 }, { "Id": 1082, "Command": "Remove-PnPList -Identity Announcements", - "Rank": 1, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Rank": 1 }, { "Id": 1083, "Command": "Remove-PnPList -Identity Announcements -Force", - "Rank": 2, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Rank": 2 }, { "Id": 1084, "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Rank": 3, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Rank": 3 }, { "Id": 1085, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Rank": 4, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Rank": 4 }, { "Id": 1086, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "CommandName": "Remove-PnPListDesign" + "CommandName": "Remove-PnPListDesign", + "Rank": 1 }, { "Id": 1087, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Rank": 1 }, { "Id": 1088, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Rank": 2, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Rank": 2 }, { "Id": 1089, "Command": "Remove-PnPListItem -List \"Demo List\"", - "Rank": 3, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Rank": 3 }, { "Id": 1090, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Rank": 1, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 1 }, { "Id": 1091, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Rank": 2, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 2 }, { "Id": 1092, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Rank": 3, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 3 }, { "Id": 1093, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Rank": 4, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 4 }, { "Id": 1094, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Rank": 5, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 5 }, { "Id": 1095, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, - "CommandName": "Remove-PnPListItemVersion" + "CommandName": "Remove-PnPListItemVersion", + "Rank": 1 }, { "Id": 1096, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, - "CommandName": "Remove-PnPListItemVersion" + "CommandName": "Remove-PnPListItemVersion", + "Rank": 2 }, { "Id": 1097, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365Group" + "CommandName": "Remove-PnPMicrosoft365Group", + "Rank": 1 }, { "Id": 1098, "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365Group" + "CommandName": "Remove-PnPMicrosoft365Group", + "Rank": 2 }, { "Id": 1099, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupMember" + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Rank": 1 }, { "Id": 1100, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupOwner" + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Rank": 1 }, { "Id": 1101, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 1 }, { "Id": 1102, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 2 }, { "Id": 1103, "Command": "Remove-PnPNavigationNode -Identity 1032", - "Rank": 1, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Rank": 1 }, { "Id": 1104, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Rank": 2, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Rank": 2 }, { "Id": 1105, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Rank": 3, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Rank": 3 }, { "Id": 1106, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Rank": 1, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 1 }, { "Id": 1107, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Rank": 2, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 2 }, { "Id": 1108, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Rank": 3, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 3 }, { "Id": 1109, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, - "CommandName": "Remove-PnPOrgNewsSite" + "CommandName": "Remove-PnPOrgNewsSite", + "Rank": 1 }, { "Id": 1110, "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Rank": 1, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Rank": 1 }, { "Id": 1111, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Rank": 2, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Rank": 2 }, { "Id": 1112, "Command": "Remove-PnPPage $page", - "Rank": 3, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Rank": 3 }, { "Id": 1113, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Rank": 4, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Rank": 4 }, { "Id": 1114, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, - "CommandName": "Remove-PnPPageComponent" + "CommandName": "Remove-PnPPageComponent", + "Rank": 1 }, { "Id": 1115, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Rank": 1, - "CommandName": "Remove-PnPPlannerBucket" + "CommandName": "Remove-PnPPlannerBucket", + "Rank": 1 }, { "Id": 1116, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Rank": 1, - "CommandName": "Remove-PnPPlannerPlan" + "CommandName": "Remove-PnPPlannerPlan", + "Rank": 1 }, { "Id": 1117, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, - "CommandName": "Remove-PnPPlannerRoster" + "CommandName": "Remove-PnPPlannerRoster", + "Rank": 1 }, { "Id": 1118, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Remove-PnPPlannerRosterMember" + "CommandName": "Remove-PnPPlannerRosterMember", + "Rank": 1 }, { "Id": 1119, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Rank": 1, - "CommandName": "Remove-PnPPlannerTask" + "CommandName": "Remove-PnPPlannerTask", + "Rank": 1 }, { "Id": 1120, "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Rank": 1, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 1 }, { "Id": 1121, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Rank": 2, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 2 }, { "Id": 1122, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Rank": 3, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 3 }, { "Id": 1123, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1, - "CommandName": "Remove-PnPPublishingImageRendition" + "CommandName": "Remove-PnPPublishingImageRendition", + "Rank": 1 }, { "Id": 1124, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Rank": 1, - "CommandName": "Remove-PnPRoleDefinition" + "CommandName": "Remove-PnPRoleDefinition", + "Rank": 1 }, { "Id": 1125, "Command": "Remove-PnPSdnProvider -Confirm:false", - "Rank": 1, - "CommandName": "Remove-PnPSdnProvider" + "CommandName": "Remove-PnPSdnProvider", + "Rank": 1 }, { "Id": 1126, "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Rank": 1, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 1 }, { "Id": 1127, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 2 }, { "Id": 1128, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 3 }, { "Id": 1129, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 4 }, { "Id": 1130, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Rank": 1 }, { "Id": 1131, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Rank": 2 }, { "Id": 1132, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAppCatalog" + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Rank": 1 }, { "Id": 1133, "Command": "Remove-PnPSiteCollectionTermStore", - "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionTermStore" + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Rank": 1 }, { "Id": 1134, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "CommandName": "Remove-PnPSiteDesign" + "CommandName": "Remove-PnPSiteDesign", + "Rank": 1 }, { "Id": 1135, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "CommandName": "Remove-PnPSiteDesignTask" + "CommandName": "Remove-PnPSiteDesignTask", + "Rank": 1 }, { "Id": 1136, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, - "CommandName": "Remove-PnPSiteGroup" + "CommandName": "Remove-PnPSiteGroup", + "Rank": 1 }, { "Id": 1137, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Rank": 2, - "CommandName": "Remove-PnPSiteGroup" + "CommandName": "Remove-PnPSiteGroup", + "Rank": 2 }, { "Id": 1138, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "CommandName": "Remove-PnPSiteScript" + "CommandName": "Remove-PnPSiteScript", + "Rank": 1 }, { "Id": 1139, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1, - "CommandName": "Remove-PnPSiteUserInvitations" + "CommandName": "Remove-PnPSiteUserInvitations", + "Rank": 1 }, { "Id": 1140, "Command": "Remove-PnPStorageEntity -Key MyKey", - "Rank": 1, - "CommandName": "Remove-PnPStorageEntity" + "CommandName": "Remove-PnPStorageEntity", + "Rank": 1 }, { "Id": 1141, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 2, - "CommandName": "Remove-PnPStorageEntity" + "CommandName": "Remove-PnPStorageEntity", + "Rank": 2 }, { "Id": 1142, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Rank": 1, - "CommandName": "Remove-PnPStoredCredential" + "CommandName": "Remove-PnPStoredCredential", + "Rank": 1 }, { "Id": 1143, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Rank": 1, - "CommandName": "Remove-PnPTaxonomyItem" + "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 1 }, { "Id": 1144, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Rank": 2, - "CommandName": "Remove-PnPTaxonomyItem" + "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 2 }, { "Id": 1145, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Rank": 1, - "CommandName": "Remove-PnPTeamsApp" + "CommandName": "Remove-PnPTeamsApp", + "Rank": 1 }, { "Id": 1146, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Rank": 2, - "CommandName": "Remove-PnPTeamsApp" + "CommandName": "Remove-PnPTeamsApp", + "Rank": 2 }, { "Id": 1147, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Rank": 1, - "CommandName": "Remove-PnPTeamsChannel" + "CommandName": "Remove-PnPTeamsChannel", + "Rank": 1 }, { "Id": 1148, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Rank": 1, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 1 }, { "Id": 1149, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 2, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 2 }, { "Id": 1150, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Rank": 3, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 3 }, { "Id": 1151, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Rank": 1, - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsTab", + "Rank": 1 }, { "Id": 1152, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Rank": 2, - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsTab", + "Rank": 2 }, { "Id": 1153, "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" + "CommandName": "Remove-PnPTeamsTab", + "Rank": 3 }, { "Id": 1154, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 1, - "CommandName": "Remove-PnPTeamsTag" + "CommandName": "Remove-PnPTeamsTag", + "Rank": 1 }, { "Id": 1155, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, - "CommandName": "Remove-PnPTeamsTeam" + "CommandName": "Remove-PnPTeamsTeam", + "Rank": 1 }, { "Id": 1156, "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Rank": 2, - "CommandName": "Remove-PnPTeamsTeam" + "CommandName": "Remove-PnPTeamsTeam", + "Rank": 2 }, { "Id": 1157, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Rank": 1, - "CommandName": "Remove-PnPTeamsUser" + "CommandName": "Remove-PnPTeamsUser", + "Rank": 1 }, { "Id": 1158, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 2, - "CommandName": "Remove-PnPTeamsUser" + "CommandName": "Remove-PnPTeamsUser", + "Rank": 2 }, { "Id": 1159, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1, - "CommandName": "Remove-PnPTenantCdnOrigin" + "CommandName": "Remove-PnPTenantCdnOrigin", + "Rank": 1 }, { "Id": 1160, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "CommandName": "Remove-PnPTenantDeletedSite" + "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 1 }, { "Id": 1161, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, - "CommandName": "Remove-PnPTenantDeletedSite" + "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 2 }, { "Id": 1162, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Rank": 1 }, { "Id": 1163, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Rank": 2, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Rank": 2 }, { "Id": 1164, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Rank": 3, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Rank": 3 }, { "Id": 1165, "Command": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1, - "CommandName": "Remove-PnPTenantSyncClientRestriction" + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Rank": 1 }, { "Id": 1166, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 1, - "CommandName": "Remove-PnPTenantTheme" + "CommandName": "Remove-PnPTenantTheme", + "Rank": 1 }, { "Id": 1167, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, - "CommandName": "Remove-PnPTerm" + "CommandName": "Remove-PnPTerm", + "Rank": 1 }, { "Id": 1168, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "CommandName": "Remove-PnPTerm" + "CommandName": "Remove-PnPTerm", + "Rank": 2 }, { "Id": 1169, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Rank": 1 }, { "Id": 1170, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Rank": 2, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Rank": 2 }, { "Id": 1171, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Rank": 3, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Rank": 3 }, { "Id": 1172, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Rank": 1, - "CommandName": "Remove-PnPTermLabel" + "CommandName": "Remove-PnPTermLabel", + "Rank": 1 }, { "Id": 1173, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "CommandName": "Remove-PnPTermLabel" + "CommandName": "Remove-PnPTermLabel", + "Rank": 2 }, { "Id": 1174, "Command": "Remove-PnPUser -Identity 23", - "Rank": 1, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Rank": 1 }, { "Id": 1175, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Rank": 2, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Rank": 2 }, { "Id": 1176, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Rank": 3, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Rank": 3 }, { "Id": 1177, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1, - "CommandName": "Remove-PnPUserInfo" + "CommandName": "Remove-PnPUserInfo", + "Rank": 1 }, { "Id": 1178, "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Rank": 1, - "CommandName": "Remove-PnPUserProfile" + "CommandName": "Remove-PnPUserProfile", + "Rank": 1 }, { "Id": 1179, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Rank": 1, - "CommandName": "Remove-PnPView" + "CommandName": "Remove-PnPView", + "Rank": 1 }, { "Id": 1180, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 1, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE" + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Rank": 1 }, { "Id": 1181, "Command": "Remove-PnPWeb -Identity projectA", - "Rank": 1, - "CommandName": "Remove-PnPWeb" + "CommandName": "Remove-PnPWeb", + "Rank": 1 }, { "Id": 1182, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Rank": 2, - "CommandName": "Remove-PnPWeb" + "CommandName": "Remove-PnPWeb", + "Rank": 2 }, { "Id": 1183, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Rank": 1, - "CommandName": "Remove-PnPWebhookSubscription" + "CommandName": "Remove-PnPWebhookSubscription", + "Rank": 1 }, { "Id": 1184, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, - "CommandName": "Remove-PnPWebPart" + "CommandName": "Remove-PnPWebPart", + "Rank": 1 }, { "Id": 1185, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Rank": 2, - "CommandName": "Remove-PnPWebPart" + "CommandName": "Remove-PnPWebPart", + "Rank": 2 }, { "Id": 1186, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Rank": 1, - "CommandName": "Remove-PnPWikiPage" + "CommandName": "Remove-PnPWikiPage", + "Rank": 1 }, { "Id": 1187, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Rank": 1, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Rank": 1 }, { "Id": 1188, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Rank": 2, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Rank": 2 }, { "Id": 1189, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Rank": 3, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Rank": 3 }, { "Id": 1190, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Rank": 1, - "CommandName": "Rename-PnPFolder" + "CommandName": "Rename-PnPFolder", + "Rank": 1 }, { "Id": 1191, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, - "CommandName": "Repair-PnPSite" + "CommandName": "Repair-PnPSite", + "Rank": 1 }, { "Id": 1192, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2, - "CommandName": "Repair-PnPSite" + "CommandName": "Repair-PnPSite", + "Rank": 2 }, { "Id": 1193, "Command": "Request-PnPAccessToken", - "Rank": 1, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Rank": 1 }, { "Id": 1194, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Rank": 2, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Rank": 2 }, { "Id": 1195, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Rank": 3, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Rank": 3 }, { "Id": 1196, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Rank": 4, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Rank": 4 }, { "Id": 1197, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Rank": 1, - "CommandName": "Request-PnPPersonalSite" + "CommandName": "Request-PnPPersonalSite", + "Rank": 1 }, { "Id": 1198, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Rank": 2, - "CommandName": "Request-PnPPersonalSite" + "CommandName": "Request-PnPPersonalSite", + "Rank": 2 }, { "Id": 1199, "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Rank": 1, - "CommandName": "Request-PnPReIndexList" + "CommandName": "Request-PnPReIndexList", + "Rank": 1 }, { "Id": 1200, "Command": "Request-PnPReIndexWeb", - "Rank": 1, - "CommandName": "Request-PnPReIndexWeb" + "CommandName": "Request-PnPReIndexWeb", + "Rank": 1 }, { "Id": 1201, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Rank": 1, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 1 }, { "Id": 1202, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Rank": 2, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 2 }, { "Id": 1203, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Rank": 3, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 3 }, { "Id": 1204, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Rank": 1, - "CommandName": "Reset-PnPFileVersion" + "CommandName": "Reset-PnPFileVersion", + "Rank": 1 }, { "Id": 1205, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Rank": 2, - "CommandName": "Reset-PnPFileVersion" + "CommandName": "Reset-PnPFileVersion", + "Rank": 2 }, { "Id": 1206, "Command": "Reset-PnPLabel -List \"Demo List\"", - "Rank": 1, - "CommandName": "Reset-PnPLabel" + "CommandName": "Reset-PnPLabel", + "Rank": 1 }, { "Id": 1207, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Rank": 2, - "CommandName": "Reset-PnPLabel" + "CommandName": "Reset-PnPLabel", + "Rank": 2 }, { "Id": 1208, "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration" + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Rank": 1 }, { "Id": 1209, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Rank": 1, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Rank": 1 }, { "Id": 1210, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Rank": 1, - "CommandName": "Resolve-PnPFolder" + "CommandName": "Resolve-PnPFolder", + "Rank": 1 }, { "Id": 1211, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, - "CommandName": "Restore-PnPDeletedMicrosoft365Group" + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Rank": 1 }, { "Id": 1212, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Rank": 1 }, { "Id": 1213, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Rank": 2, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Rank": 2 }, { "Id": 1214, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 3, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Rank": 3 }, { "Id": 1215, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, - "CommandName": "Restore-PnPListItemVersion" + "CommandName": "Restore-PnPListItemVersion", + "Rank": 1 }, { "Id": 1216, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, - "CommandName": "Restore-PnPListItemVersion" + "CommandName": "Restore-PnPListItemVersion", + "Rank": 2 }, { "Id": 1217, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, - "CommandName": "Restore-PnPRecycleBinItem" + "CommandName": "Restore-PnPRecycleBinItem", + "Rank": 1 }, { "Id": 1218, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 1 }, { "Id": 1219, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 2 }, { "Id": 1220, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Rank": 1 }, { "Id": 1221, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Rank": 2 }, { "Id": 1222, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Rank": 3, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Rank": 3 }, { "Id": 1223, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Rank": 1, - "CommandName": "Revoke-PnPAzureADAppSitePermission" + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Rank": 1 }, { "Id": 1224, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, - "CommandName": "Revoke-PnPHubSiteRights" + "CommandName": "Revoke-PnPHubSiteRights", + "Rank": 1 }, { "Id": 1225, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, - "CommandName": "Revoke-PnPSiteDesignRights" + "CommandName": "Revoke-PnPSiteDesignRights", + "Rank": 1 }, { "Id": 1226, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission" + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Rank": 1 }, { "Id": 1227, "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Rank": 1, - "CommandName": "Revoke-PnPUserSession" + "CommandName": "Revoke-PnPUserSession", + "Rank": 1 }, { "Id": 1228, "Command": "Save-PnPPageConversionLog", - "Rank": 1, - "CommandName": "Save-PnPPageConversionLog" + "CommandName": "Save-PnPPageConversionLog", + "Rank": 1 }, { "Id": 1229, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Rank": 1, - "CommandName": "Save-PnPSiteTemplate" + "CommandName": "Save-PnPSiteTemplate", + "Rank": 1 }, { "Id": 1230, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Rank": 1, - "CommandName": "Save-PnPTenantTemplate" + "CommandName": "Save-PnPTenantTemplate", + "Rank": 1 }, { "Id": 1231, "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" + "CommandName": "Send-PnPMail", + "Rank": 1 }, { "Id": 1232, "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" + "CommandName": "Send-PnPMail", + "Rank": 2 }, { "Id": 1233, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Rank": 3, - "CommandName": "Send-PnPMail" + "CommandName": "Send-PnPMail", + "Rank": 3 }, { "Id": 1234, "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" + "CommandName": "Send-PnPMail", + "Rank": 4 }, { "Id": 1235, "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" + "CommandName": "Send-PnPMail", + "Rank": 5 }, { "Id": 1236, "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" + "CommandName": "Send-PnPMail", + "Rank": 6 }, { "Id": 1237, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Rank": 1, - "CommandName": "Set-PnPAdaptiveScopeProperty" + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Rank": 1 }, { "Id": 1238, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, - "CommandName": "Set-PnPApplicationCustomizer" + "CommandName": "Set-PnPApplicationCustomizer", + "Rank": 1 }, { "Id": 1239, "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" + "CommandName": "Set-PnPApplicationCustomizer", + "Rank": 2 }, { "Id": 1240, "Command": "Set-PnPAppSideLoading -On", - "Rank": 1, - "CommandName": "Set-PnPAppSideLoading" + "CommandName": "Set-PnPAppSideLoading", + "Rank": 1 }, { "Id": 1241, "Command": "Set-PnPAppSideLoading -Off", - "Rank": 2, - "CommandName": "Set-PnPAppSideLoading" + "CommandName": "Set-PnPAppSideLoading", + "Rank": 2 }, { "Id": 1242, "Command": "Set-PnPAuditing -EnableAll", - "Rank": 1, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Rank": 1 }, { "Id": 1243, "Command": "Set-PnPAuditing -DisableAll", - "Rank": 2, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Rank": 2 }, { "Id": 1244, "Command": "Set-PnPAuditing -RetentionTime 7", - "Rank": 3, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Rank": 3 }, { "Id": 1245, "Command": "Set-PnPAuditing -TrimAuditLog", - "Rank": 4, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Rank": 4 }, { "Id": 1246, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Rank": 5, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Rank": 5 }, { "Id": 1247, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Rank": 1, - "CommandName": "Set-PnPAvailablePageLayouts" + "CommandName": "Set-PnPAvailablePageLayouts", + "Rank": 1 }, { "Id": 1248, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Rank": 1, - "CommandName": "Set-PnPAzureADAppSitePermission" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Rank": 1 }, { "Id": 1249, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Rank": 2, - "CommandName": "Set-PnPAzureADAppSitePermission" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Rank": 2 }, { "Id": 1250, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Rank": 1 }, { "Id": 1251, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Rank": 2 }, { "Id": 1252, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Rank": 3, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Rank": 3 }, { "Id": 1253, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Rank": 1, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 1 }, { "Id": 1254, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Rank": 2, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 2 }, { "Id": 1255, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Rank": 3, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 3 }, { "Id": 1256, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Rank": 1, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 1 }, { "Id": 1257, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Rank": 2, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 2 }, { "Id": 1258, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Rank": 1, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 1 }, { "Id": 1259, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Rank": 2, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 2 }, { "Id": 1260, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Rank": 3, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 3 }, { "Id": 1261, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Rank": 4, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 4 }, { "Id": 1262, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 1, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Rank": 1 }, { "Id": 1263, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Rank": 2, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Rank": 2 }, { "Id": 1264, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 3, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Rank": 3 }, { "Id": 1265, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Rank": 4, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Rank": 4 }, { "Id": 1266, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Rank": 5, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Rank": 5 }, { "Id": 1267, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Rank": 1, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 1 }, { "Id": 1268, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Rank": 2, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 2 }, { "Id": 1269, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Rank": 3, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 3 }, { "Id": 1270, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Rank": 4, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 4 }, { "Id": 1271, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Rank": 1, - "CommandName": "Set-PnPDefaultContentTypeToList" + "CommandName": "Set-PnPDefaultContentTypeToList", + "Rank": 1 }, { "Id": 1272, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Rank": 1, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 1 }, { "Id": 1273, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Rank": 2, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 2 }, { "Id": 1274, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Rank": 3, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 3 }, { "Id": 1275, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Rank": 1, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 1 }, { "Id": 1276, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 2, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 2 }, { "Id": 1277, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 3, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 3 }, { "Id": 1278, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Rank": 1, - "CommandName": "Set-PnPDocumentSetField" + "CommandName": "Set-PnPDocumentSetField", + "Rank": 1 }, { "Id": 1279, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Rank": 2, - "CommandName": "Set-PnPDocumentSetField" + "CommandName": "Set-PnPDocumentSetField", + "Rank": 2 }, { "Id": 1280, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Rank": 1, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Rank": 1 }, { "Id": 1281, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Rank": 2, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Rank": 2 }, { "Id": 1282, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Rank": 3, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Rank": 3 }, { "Id": 1283, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Rank": 1, - "CommandName": "Set-PnPFileCheckedIn" + "CommandName": "Set-PnPFileCheckedIn", + "Rank": 1 }, { "Id": 1284, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Rank": 2, - "CommandName": "Set-PnPFileCheckedIn" + "CommandName": "Set-PnPFileCheckedIn", + "Rank": 2 }, { "Id": 1285, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Rank": 1, - "CommandName": "Set-PnPFileCheckedOut" + "CommandName": "Set-PnPFileCheckedOut", + "Rank": 1 }, { "Id": 1286, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Rank": 1 }, { "Id": 1287, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Rank": 2 }, { "Id": 1288, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Rank": 3 }, { "Id": 1289, "Command": "Set-PnPFooter -Enabled:$true", - "Rank": 1, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Rank": 1 }, { "Id": 1290, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Rank": 2, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Rank": 2 }, { "Id": 1291, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Rank": 3, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Rank": 3 }, { "Id": 1292, "Command": "Set-PnPFooter -LogoUrl \"\"", - "Rank": 4, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Rank": 4 }, { "Id": 1293, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Rank": 1, - "CommandName": "Set-PnPGraphSubscription" + "CommandName": "Set-PnPGraphSubscription", + "Rank": 1 }, { "Id": 1294, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Rank": 1, - "CommandName": "Set-PnPGroup" + "CommandName": "Set-PnPGroup", + "Rank": 1 }, { "Id": 1295, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Rank": 2, - "CommandName": "Set-PnPGroup" + "CommandName": "Set-PnPGroup", + "Rank": 2 }, { "Id": 1296, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Rank": 1, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 1 }, { "Id": 1297, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Rank": 2, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 2 }, { "Id": 1298, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Rank": 3, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 3 }, { "Id": 1299, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Rank": 4, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 4 }, { "Id": 1300, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Rank": 5, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 5 }, { "Id": 1301, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Rank": 1, - "CommandName": "Set-PnPHideDefaultThemes" + "CommandName": "Set-PnPHideDefaultThemes", + "Rank": 1 }, { "Id": 1302, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Rank": 2, - "CommandName": "Set-PnPHideDefaultThemes" + "CommandName": "Set-PnPHideDefaultThemes", + "Rank": 2 }, { "Id": 1303, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Rank": 1, - "CommandName": "Set-PnPHomePage" + "CommandName": "Set-PnPHomePage", + "Rank": 1 }, { "Id": 1304, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Rank": 2, - "CommandName": "Set-PnPHomePage" + "CommandName": "Set-PnPHomePage", + "Rank": 2 }, { "Id": 1305, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Rank": 1, - "CommandName": "Set-PnPHomeSite" + "CommandName": "Set-PnPHomeSite", + "Rank": 1 }, { "Id": 1306, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Rank": 2, - "CommandName": "Set-PnPHomeSite" + "CommandName": "Set-PnPHomeSite", + "Rank": 2 }, { "Id": 1307, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Rank": 1, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Rank": 1 }, { "Id": 1308, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Rank": 2, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Rank": 2 }, { "Id": 1309, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Rank": 3, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Rank": 3 }, { "Id": 1310, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "Rank": 4, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Rank": 4 }, { "Id": 1311, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Rank": 5, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Rank": 5 }, { "Id": 1312, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Rank": 6, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Rank": 6 }, { "Id": 1313, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 1, - "CommandName": "Set-PnPImageListItemColumn" + "CommandName": "Set-PnPImageListItemColumn", + "Rank": 1 }, { "Id": 1314, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Rank": 2, - "CommandName": "Set-PnPImageListItemColumn" + "CommandName": "Set-PnPImageListItemColumn", + "Rank": 2 }, { "Id": 1315, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Rank": 1, - "CommandName": "Set-PnPIndexedProperties" + "CommandName": "Set-PnPIndexedProperties", + "Rank": 1 }, { "Id": 1316, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Rank": 1, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 1 }, { "Id": 1317, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Rank": 2, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 2 }, { "Id": 1318, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Rank": 1, - "CommandName": "Set-PnPKnowledgeHubSite" + "CommandName": "Set-PnPKnowledgeHubSite", + "Rank": 1 }, { "Id": 1319, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Rank": 1, - "CommandName": "Set-PnPLabel" + "CommandName": "Set-PnPLabel", + "Rank": 1 }, { "Id": 1320, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Rank": 2, - "CommandName": "Set-PnPLabel" + "CommandName": "Set-PnPLabel", + "Rank": 2 }, { "Id": 1321, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Rank": 1, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 1 }, { "Id": 1322, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Rank": 2, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 2 }, { "Id": 1323, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Rank": 3, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 3 }, { "Id": 1324, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Rank": 4, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 4 }, { "Id": 1325, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Rank": 5, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 5 }, { "Id": 1326, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Rank": 6, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 6 }, { "Id": 1327, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Rank": 7, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 7 }, { "Id": 1328, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Rank": 8, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 8 }, { "Id": 1329, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Rank": 9, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 9 }, { "Id": 1330, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Rank": 10, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 10 }, { "Id": 1331, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Rank": 11, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 11 }, { "Id": 1332, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Rank": 1, - "CommandName": "Set-PnPListInformationRightsManagement" + "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 1 }, { "Id": 1333, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Rank": 2, - "CommandName": "Set-PnPListInformationRightsManagement" + "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 2 }, { "Id": 1334, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Rank": 1 }, { "Id": 1335, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 2, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Rank": 2 }, { "Id": 1336, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 3, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Rank": 3 }, { "Id": 1337, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Rank": 4, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Rank": 4 }, { "Id": 1338, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Rank": 5, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Rank": 5 }, { "Id": 1339, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, - "CommandName": "Set-PnPListItemAsRecord" + "CommandName": "Set-PnPListItemAsRecord", + "Rank": 1 }, { "Id": 1340, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Rank": 2, - "CommandName": "Set-PnPListItemAsRecord" + "CommandName": "Set-PnPListItemAsRecord", + "Rank": 2 }, { "Id": 1341, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Rank": 1 }, { "Id": 1342, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Rank": 2 }, { "Id": 1343, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Rank": 3 }, { "Id": 1344, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Rank": 4, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Rank": 4 }, { "Id": 1345, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Rank": 5, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Rank": 5 }, { "Id": 1346, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, - "CommandName": "Set-PnPListPermission" + "CommandName": "Set-PnPListPermission", + "Rank": 1 }, { "Id": 1347, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, - "CommandName": "Set-PnPListPermission" + "CommandName": "Set-PnPListPermission", + "Rank": 2 }, { "Id": 1348, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Rank": 1, - "CommandName": "Set-PnPListRecordDeclaration" + "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 1 }, { "Id": 1349, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Rank": 2, - "CommandName": "Set-PnPListRecordDeclaration" + "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 2 }, { "Id": 1350, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 1, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Rank": 1 }, { "Id": 1351, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 2, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Rank": 2 }, { "Id": 1352, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 3, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Rank": 3 }, { "Id": 1353, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 4, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Rank": 4 }, { "Id": 1354, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 1 }, { "Id": 1355, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 2 }, { "Id": 1356, "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3 }, { "Id": 1357, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 1 }, { "Id": 1358, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 2 }, { "Id": 1359, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3 }, { "Id": 1360, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 1 }, { "Id": 1361, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 2 }, { "Id": 1362, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3 }, { "Id": 1363, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 1 }, { "Id": 1364, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 2 }, { "Id": 1365, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3 }, { "Id": 1366, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 1 }, { "Id": 1367, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 2 }, { "Id": 1368, "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3 }, { "Id": 1369, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 1 }, { "Id": 1370, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 2 }, { "Id": 1371, "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3 }, { "Id": 1372, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 1 }, { "Id": 1373, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 2 }, { "Id": 1374, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Rank": 3, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 3 }, { "Id": 1375, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Rank": 4, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 4 }, { "Id": 1376, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Rank": 5, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 5 }, { "Id": 1377, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 6 }, { "Id": 1378, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Rank": 1, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Rank": 1 }, { "Id": 1379, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Rank": 2, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Rank": 2 }, { "Id": 1380, "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Rank": 1, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 1 }, { "Id": 1381, "Command": "Set-PnPMinimalDownloadStrategy -On", - "Rank": 2, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 2 }, { "Id": 1382, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Rank": 1, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 1 }, { "Id": 1383, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Rank": 2, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 2 }, { "Id": 1384, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Rank": 3, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 3 }, { "Id": 1385, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Rank": 4, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 4 }, { "Id": 1386, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Rank": 5, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 5 }, { "Id": 1387, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "Rank": 6, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 6 }, { "Id": 1388, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 7 }, { "Id": 1389, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "Rank": 8, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 8 }, { "Id": 1390, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 9 }, { "Id": 1391, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 10 }, { "Id": 1392, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "Rank": 11, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 11 }, { "Id": 1393, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Rank": 1, - "CommandName": "Set-PnPPageTextPart" + "CommandName": "Set-PnPPageTextPart", + "Rank": 1 }, { "Id": 1394, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Rank": 1, - "CommandName": "Set-PnPPageWebPart" + "CommandName": "Set-PnPPageWebPart", + "Rank": 1 }, { "Id": 1395, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Rank": 2, - "CommandName": "Set-PnPPageWebPart" + "CommandName": "Set-PnPPageWebPart", + "Rank": 2 }, { "Id": 1396, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Rank": 1, - "CommandName": "Set-PnPPlannerBucket" + "CommandName": "Set-PnPPlannerBucket", + "Rank": 1 }, { "Id": 1397, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Rank": 1, - "CommandName": "Set-PnPPlannerConfiguration" + "CommandName": "Set-PnPPlannerConfiguration", + "Rank": 1 }, { "Id": 1398, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Rank": 2, - "CommandName": "Set-PnPPlannerConfiguration" + "CommandName": "Set-PnPPlannerConfiguration", + "Rank": 2 }, { "Id": 1399, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Rank": 1, - "CommandName": "Set-PnPPlannerPlan" + "CommandName": "Set-PnPPlannerPlan", + "Rank": 1 }, { "Id": 1400, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Rank": 1, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Rank": 1 }, { "Id": 1401, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Rank": 2, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Rank": 2 }, { "Id": 1402, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Rank": 3, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Rank": 3 }, { "Id": 1403, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Set-PnPPlannerUserPolicy" + "CommandName": "Set-PnPPlannerUserPolicy", + "Rank": 1 }, { "Id": 1404, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Rank": 1, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 1 }, { "Id": 1405, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Rank": 2, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 2 }, { "Id": 1406, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Rank": 3, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 3 }, { "Id": 1407, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Rank": 1, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 1 }, { "Id": 1408, "Command": "Set-PnPRequestAccessEmails -Disabled", - "Rank": 2, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 2 }, { "Id": 1409, "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Rank": 3, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 3 }, { "Id": 1410, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Rank": 1, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Rank": 1 }, { "Id": 1411, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Rank": 2, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Rank": 2 }, { "Id": 1412, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Rank": 3, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Rank": 3 }, { "Id": 1413, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Rank": 4, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Rank": 4 }, { "Id": 1414, "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Rank": 1, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 1 }, { "Id": 1415, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 2 }, { "Id": 1416, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 3 }, { "Id": 1417, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 4 }, { "Id": 1418, "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone", - "Rank": 1, - "CommandName": "Set-PnPSearchExternalItem" + "CommandName": "Set-PnPSearchExternalItem", + "Rank": 1 }, { "Id": 1419, "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze 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" + "CommandName": "Set-PnPSearchExternalItem", + "Rank": 2 }, { "Id": 1420, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Rank": 1, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 1 }, { "Id": 1421, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Rank": 2, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 2 }, { "Id": 1422, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Rank": 3, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 3 }, { "Id": 1423, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Rank": 4, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 4 }, { "Id": 1424, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Rank": 5, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 5 }, { "Id": 1425, "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Rank": 6, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 6 }, { "Id": 1426, "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Rank": 7, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 7 }, { "Id": 1427, "Command": "Set-PnPSite -Classification \"HBI\"", - "Rank": 1, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 1 }, { "Id": 1428, "Command": "Set-PnPSite -Classification $null", - "Rank": 2, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 2 }, { "Id": 1429, "Command": "Set-PnPSite -DisableFlows", - "Rank": 3, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 3 }, { "Id": 1430, "Command": "Set-PnPSite -DisableFlows:$false", - "Rank": 4, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 4 }, { "Id": 1431, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Rank": 5, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 5 }, { "Id": 1432, "Command": "Set-PnPSite -NoScriptSite $false", - "Rank": 6, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 6 }, { "Id": 1433, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "Rank": 7, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 7 }, { "Id": 1434, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "Rank": 8, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 8 }, { "Id": 1435, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "Rank": 9, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 9 }, { "Id": 1436, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "Rank": 10, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 10 }, { "Id": 1437, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "Rank": 11, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 11 }, { "Id": 1438, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "Rank": 12, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 12 }, { "Id": 1439, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "Rank": 13, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 13 }, { "Id": 1440, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "Rank": 14, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 14 }, { "Id": 1441, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "Rank": 15, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 15 }, { "Id": 1442, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "Rank": 16, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 16 }, { "Id": 1443, "Command": "Set-PnPSite -CancelVPForExistingLibs", - "Rank": 17, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 17 }, { "Id": 1444, "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Rank": 1, - "CommandName": "Set-PnPSiteClassification" + "CommandName": "Set-PnPSiteClassification", + "Rank": 1 }, { "Id": 1445, "Command": "Set-PnPSiteClosure -State Open", - "Rank": 1, - "CommandName": "Set-PnPSiteClosure" + "CommandName": "Set-PnPSiteClosure", + "Rank": 1 }, { "Id": 1446, "Command": "Set-PnPSiteClosure -State Closed", - "Rank": 2, - "CommandName": "Set-PnPSiteClosure" + "CommandName": "Set-PnPSiteClosure", + "Rank": 2 }, { "Id": 1447, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Rank": 1, - "CommandName": "Set-PnPSiteDesign" + "CommandName": "Set-PnPSiteDesign", + "Rank": 1 }, { "Id": 1448, "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" + "CommandName": "Set-PnPSiteDesign", + "Rank": 2 }, { "Id": 1449, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "Rank": 1, - "CommandName": "Set-PnPSiteGroup" + "CommandName": "Set-PnPSiteGroup", + "Rank": 1 }, { "Id": 1450, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Rank": 2, - "CommandName": "Set-PnPSiteGroup" + "CommandName": "Set-PnPSiteGroup", + "Rank": 2 }, { "Id": 1451, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 1, - "CommandName": "Set-PnPSitePolicy" + "CommandName": "Set-PnPSitePolicy", + "Rank": 1 }, { "Id": 1452, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1, - "CommandName": "Set-PnPSiteScript" + "CommandName": "Set-PnPSiteScript", + "Rank": 1 }, { "Id": 1453, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1, - "CommandName": "Set-PnPSiteScriptPackage" + "CommandName": "Set-PnPSiteScriptPackage", + "Rank": 1 }, { "Id": 1454, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Rank": 1, - "CommandName": "Set-PnPSiteSensitivityLabel" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Rank": 1 }, { "Id": 1455, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Rank": 2, - "CommandName": "Set-PnPSiteSensitivityLabel" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Rank": 2 }, { "Id": 1456, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 1, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 1 }, { "Id": 1457, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 2, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 2 }, { "Id": 1458, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 3, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 3 }, { "Id": 1459, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 4, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 4 }, { "Id": 1460, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 5, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 5 }, { "Id": 1461, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 6, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 6 }, { "Id": 1462, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 1, - "CommandName": "Set-PnPStorageEntity" + "CommandName": "Set-PnPStorageEntity", + "Rank": 1 }, { "Id": 1463, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 2, - "CommandName": "Set-PnPStorageEntity" + "CommandName": "Set-PnPStorageEntity", + "Rank": 2 }, { "Id": 1464, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Rank": 1 }, { "Id": 1465, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Rank": 2 }, { "Id": 1466, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Rank": 1 }, { "Id": 1467, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Rank": 2 }, { "Id": 1468, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Rank": 1, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 1 }, { "Id": 1469, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Rank": 2, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 2 }, { "Id": 1470, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Rank": 1, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 1 }, { "Id": 1471, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Rank": 2, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 2 }, { "Id": 1472, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Rank": 3, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 3 }, { "Id": 1473, "Command": "Set-PnPTeamifyPromptHidden", - "Rank": 1, - "CommandName": "Set-PnPTeamifyPromptHidden" + "CommandName": "Set-PnPTeamifyPromptHidden", + "Rank": 1 }, { "Id": 1474, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Rank": 1, - "CommandName": "Set-PnPTeamsChannel" + "CommandName": "Set-PnPTeamsChannel", + "Rank": 1 }, { "Id": 1475, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Rank": 2, - "CommandName": "Set-PnPTeamsChannel" + "CommandName": "Set-PnPTeamsChannel", + "Rank": 2 }, { "Id": 1476, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "Rank": 1, - "CommandName": "Set-PnpTeamsChannelUser" + "CommandName": "Set-PnpTeamsChannelUser", + "Rank": 1 }, { "Id": 1477, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Rank": 2, - "CommandName": "Set-PnpTeamsChannelUser" + "CommandName": "Set-PnpTeamsChannelUser", + "Rank": 2 }, { "Id": 1478, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Rank": 1, - "CommandName": "Set-PnPTeamsTab" + "CommandName": "Set-PnPTeamsTab", + "Rank": 1 }, { "Id": 1479, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Rank": 1, - "CommandName": "Set-PnPTeamsTag" + "CommandName": "Set-PnPTeamsTag", + "Rank": 1 }, { "Id": 1480, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Rank": 1, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Rank": 1 }, { "Id": 1481, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Rank": 2, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Rank": 2 }, { "Id": 1482, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Rank": 3, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Rank": 3 }, { "Id": 1483, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Rank": 4, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Rank": 4 }, { "Id": 1484, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Rank": 1, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 1 }, { "Id": 1485, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Rank": 2, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 2 }, { "Id": 1486, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Rank": 3, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 3 }, { "Id": 1487, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Rank": 1, - "CommandName": "Set-PnPTeamsTeamPicture" + "CommandName": "Set-PnPTeamsTeamPicture", + "Rank": 1 }, { "Id": 1488, "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Rank": 1, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Rank": 1 }, { "Id": 1489, "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Rank": 2, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Rank": 2 }, { "Id": 1490, "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" + "CommandName": "Set-PnPTenant", + "Rank": 1 }, { "Id": 1491, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Rank": 2, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Rank": 2 }, { "Id": 1492, "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Rank": 3, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Rank": 3 }, { "Id": 1493, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Rank": 4, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Rank": 4 }, { "Id": 1494, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Rank": 1, - "CommandName": "Set-PnPTenantAppCatalogUrl" + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Rank": 1 }, { "Id": 1495, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Rank": 1, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 1 }, { "Id": 1496, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Rank": 2, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 2 }, { "Id": 1497, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Rank": 3, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 3 }, { "Id": 1498, "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" + "CommandName": "Set-PnPTenantCdnPolicy", + "Rank": 1 }, { "Id": 1499, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Rank": 2, - "CommandName": "Set-PnPTenantCdnPolicy" + "CommandName": "Set-PnPTenantCdnPolicy", + "Rank": 2 }, { "Id": 1500, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Rank": 1, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Rank": 1 }, { "Id": 1501, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Rank": 2, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Rank": 2 }, { "Id": 1502, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 3, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Rank": 3 }, { "Id": 1503, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 4, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Rank": 4 }, { "Id": 1504, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Rank": 5, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Rank": 5 }, { "Id": 1505, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Rank": 1, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Rank": 1 }, { "Id": 1506, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Rank": 2, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Rank": 2 }, { "Id": 1507, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Rank": 1, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Rank": 1 }, { "Id": 1508, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Rank": 2 }, { "Id": 1509, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 3, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Rank": 3 }, { "Id": 1510, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "Rank": 4, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Rank": 4 }, { "Id": 1511, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Rank": 1, - "CommandName": "Set-PnPTermGroup" + "CommandName": "Set-PnPTermGroup", + "Rank": 1 }, { "Id": 1512, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Rank": 1, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Rank": 1 }, { "Id": 1513, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Rank": 2, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Rank": 2 }, { "Id": 1514, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Rank": 3, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Rank": 3 }, { "Id": 1515, "Command": "Set-PnPTheme", - "Rank": 1, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Rank": 1 }, { "Id": 1516, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Rank": 2, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Rank": 2 }, { "Id": 1517, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Rank": 3, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Rank": 3 }, { "Id": 1518, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Rank": 4, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Rank": 4 }, { "Id": 1519, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Rank": 1, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Rank": 1 }, { "Id": 1520, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Rank": 2, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Rank": 2 }, { "Id": 1521, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Rank": 3, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Rank": 3 }, { "Id": 1522, "Command": "Set-PnPTraceLog -Off", - "Rank": 4, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Rank": 4 }, { "Id": 1523, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Rank": 1, - "CommandName": "Set-PnPUserOneDriveQuota" + "CommandName": "Set-PnPUserOneDriveQuota", + "Rank": 1 }, { "Id": 1524, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Rank": 1, - "CommandName": "Set-PnPUserProfileProperty" + "CommandName": "Set-PnPUserProfileProperty", + "Rank": 1 }, { "Id": 1525, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Rank": 2, - "CommandName": "Set-PnPUserProfileProperty" + "CommandName": "Set-PnPUserProfileProperty", + "Rank": 2 }, { "Id": 1526, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "Rank": 1, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Rank": 1 }, { "Id": 1527, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Rank": 2, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Rank": 2 }, { "Id": 1528, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "Rank": 3, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Rank": 3 }, { "Id": 1529, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Rank": 4, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Rank": 4 }, { "Id": 1530, "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" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 1 }, { "Id": 1531, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Rank": 2, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 2 }, { "Id": 1532, "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" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 3 }, { "Id": 1533, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Rank": 4, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 4 }, { "Id": 1534, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Rank": 1, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Rank": 1 }, { "Id": 1535, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Rank": 2, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Rank": 2 }, { "Id": 1536, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Rank": 3, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Rank": 3 }, { "Id": 1537, "Command": "Set-PnPWeb -NoCrawl:$true", - "Rank": 4, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Rank": 4 }, { "Id": 1538, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Rank": 1, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Rank": 1 }, { "Id": 1539, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Rank": 2, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Rank": 2 }, { "Id": 1540, "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Rank": 3, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Rank": 3 }, { "Id": 1541, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1, - "CommandName": "Set-PnPWebhookSubscription" + "CommandName": "Set-PnPWebhookSubscription", + "Rank": 1 }, { "Id": 1542, "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" + "CommandName": "Set-PnPWebhookSubscription", + "Rank": 2 }, { "Id": 1543, "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" + "CommandName": "Set-PnPWebPartProperty", + "Rank": 1 }, { "Id": 1544, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 1, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Rank": 1 }, { "Id": 1545, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Rank": 2, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Rank": 2 }, { "Id": 1546, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 3, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Rank": 3 }, { "Id": 1547, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Rank": 4, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Rank": 4 }, { "Id": 1548, "Command": "Set-PnPWebTheme -Theme MyTheme", - "Rank": 1, - "CommandName": "Set-PnPWebTheme" + "CommandName": "Set-PnPWebTheme", + "Rank": 1 }, { "Id": 1549, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Rank": 2, - "CommandName": "Set-PnPWebTheme" + "CommandName": "Set-PnPWebTheme", + "Rank": 2 }, { "Id": 1550, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Rank": 1, - "CommandName": "Set-PnPWikiPageContent" + "CommandName": "Set-PnPWikiPageContent", + "Rank": 1 }, { "Id": 1551, "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Rank": 1, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 1 }, { "Id": 1552, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Rank": 2, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 2 }, { "Id": 1553, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Rank": 3, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 3 }, { "Id": 1554, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Rank": 4, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 4 }, { "Id": 1555, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Rank": 5, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 5 }, { "Id": 1556, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Rank": 1, - "CommandName": "Submit-PnPTeamsChannelMessage" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 1 }, { "Id": 1557, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Rank": 2, - "CommandName": "Submit-PnPTeamsChannelMessage" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 2 }, { "Id": 1558, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Sync-PnPAppToTeams" + "CommandName": "Sync-PnPAppToTeams", + "Rank": 1 }, { "Id": 1559, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Rank": 1, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 1 }, { "Id": 1560, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Rank": 2, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 2 }, { "Id": 1561, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Rank": 3, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 3 }, { "Id": 1562, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Rank": 1, - "CommandName": "Test-PnPListItemIsRecord" + "CommandName": "Test-PnPListItemIsRecord", + "Rank": 1 }, { "Id": 1563, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Rank": 1, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Rank": 1 }, { "Id": 1564, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, - "CommandName": "Test-PnPSite" + "CommandName": "Test-PnPSite", + "Rank": 1 }, { "Id": 1565, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2, - "CommandName": "Test-PnPSite" + "CommandName": "Test-PnPSite", + "Rank": 2 }, { "Id": 1566, "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Rank": 1, - "CommandName": "Test-PnPTenantTemplate" + "CommandName": "Test-PnPTenantTemplate", + "Rank": 1 }, { "Id": 1567, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Rank": 1, - "CommandName": "Undo-PnPFileCheckedOut" + "CommandName": "Undo-PnPFileCheckedOut", + "Rank": 1 }, { "Id": 1568, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Uninstall-PnPApp" + "CommandName": "Uninstall-PnPApp", + "Rank": 1 }, { "Id": 1569, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "CommandName": "Uninstall-PnPApp" + "CommandName": "Uninstall-PnPApp", + "Rank": 2 }, { "Id": 1570, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Unpublish-PnPApp" + "CommandName": "Unpublish-PnPApp", + "Rank": 1 }, { "Id": 1571, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "CommandName": "Unpublish-PnPApp" + "CommandName": "Unpublish-PnPApp", + "Rank": 2 }, { "Id": 1572, "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Rank": 1, - "CommandName": "Unpublish-PnPContentType" + "CommandName": "Unpublish-PnPContentType", + "Rank": 1 }, { "Id": 1573, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, - "CommandName": "Unpublish-PnPSyntexModel" + "CommandName": "Unpublish-PnPSyntexModel", + "Rank": 1 }, { "Id": 1574, "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" + "CommandName": "Unpublish-PnPSyntexModel", + "Rank": 2 }, { "Id": 1575, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1, - "CommandName": "Unregister-PnPHubSite" + "CommandName": "Unregister-PnPHubSite", + "Rank": 1 }, { "Id": 1576, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Update-PnPApp" + "CommandName": "Update-PnPApp", + "Rank": 1 }, { "Id": 1577, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "CommandName": "Update-PnPApp" + "CommandName": "Update-PnPApp", + "Rank": 2 }, { "Id": 1578, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 1, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 1 }, { "Id": 1579, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Rank": 2, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 2 }, { "Id": 1580, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 3, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 3 }, { "Id": 1581, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Rank": 1, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 1 }, { "Id": 1582, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 2 }, { "Id": 1583, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "Rank": 3, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 3 }, { "Id": 1584, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Rank": 1, - "CommandName": "Update-PnPTeamsApp" + "CommandName": "Update-PnPTeamsApp", + "Rank": 1 }, { "Id": 1585, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Rank": 1 }, { "Id": 1586, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Rank": 2 }, { "Id": 1587, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Rank": 3, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Rank": 3 }, { "Id": 1588, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Rank": 1, - "CommandName": "Update-PnPUserType" + "CommandName": "Update-PnPUserType", + "Rank": 1 } ] diff --git a/version.txt b/version.txt index fd0c0af2c..bf50a037e 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.83 \ No newline at end of file +2.2.84 \ No newline at end of file From 249ced4473944eb2c4f36c9062dfcd44d750ed8e Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sun, 1 Oct 2023 02:42:04 +0000 Subject: [PATCH 008/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6352 ++++++++--------- version.txt | 2 +- 3 files changed, 3178 insertions(+), 3178 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 5784389f7..8620ab7ba 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -54970e75cc0bc1122cb95a5824d2a55f692e105a \ No newline at end of file +82c3077b7206ed62fe1c6df5353ee4d09c3bac34 \ 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 a75442bd3..34cc27b73 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9530 +1,9530 @@ [ { "Id": 1, + "Rank": 1, "Command": "Add-PnPAlert -List \"Demo List\"", - "CommandName": "Add-PnPAlert", - "Rank": 1 + "CommandName": "Add-PnPAlert" }, { "Id": 2, + "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", - "Rank": 2 + "CommandName": "Add-PnPAlert" }, { "Id": 3, + "Rank": 3, "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAlert", - "Rank": 3 + "CommandName": "Add-PnPAlert" }, { "Id": 4, + "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", - "Rank": 4 + "CommandName": "Add-PnPAlert" }, { "Id": 5, + "Rank": 1, "Command": "Add-PnPApp -Path ./myapp.sppkg", - "CommandName": "Add-PnPApp", - "Rank": 1 + "CommandName": "Add-PnPApp" }, { "Id": 6, + "Rank": 2, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "CommandName": "Add-PnPApp", - "Rank": 2 + "CommandName": "Add-PnPApp" }, { "Id": 7, + "Rank": 3, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "CommandName": "Add-PnPApp", - "Rank": 3 + "CommandName": "Add-PnPApp" }, { "Id": 8, + "Rank": 4, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "CommandName": "Add-PnPApp", - "Rank": 4 + "CommandName": "Add-PnPApp" }, { "Id": 9, + "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", - "Rank": 1 + "CommandName": "Add-PnPApplicationCustomizer" }, { "Id": 10, + "Rank": 1, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "CommandName": "Add-PnPAvailableSiteClassification", - "Rank": 1 + "CommandName": "Add-PnPAvailableSiteClassification" }, { "Id": 11, + "Rank": 2, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "CommandName": "Add-PnPAvailableSiteClassification", - "Rank": 2 + "CommandName": "Add-PnPAvailableSiteClassification" }, { "Id": 12, + "Rank": 1, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 1 + "CommandName": "Add-PnPAzureADGroupMember" }, { "Id": 13, + "Rank": 2, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 2 + "CommandName": "Add-PnPAzureADGroupMember" }, { "Id": 14, + "Rank": 3, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 3 + "CommandName": "Add-PnPAzureADGroupMember" }, { "Id": 15, + "Rank": 1, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 1 + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Id": 16, + "Rank": 2, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 2 + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Id": 17, + "Rank": 3, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 3 + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Id": 18, + "Rank": 1, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Rank": 1 + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { "Id": 19, + "Rank": 2, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Rank": 2 + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { "Id": 20, + "Rank": 1, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "CommandName": "Add-PnPContentType", - "Rank": 1 + "CommandName": "Add-PnPContentType" }, { "Id": 21, + "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", - "Rank": 2 + "CommandName": "Add-PnPContentType" }, { "Id": 22, + "Rank": 3, "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "CommandName": "Add-PnPContentType", - "Rank": 3 + "CommandName": "Add-PnPContentType" }, { "Id": 23, + "Rank": 4, "Command": "Add-PnPContentType -Name \"Project Item\"", - "CommandName": "Add-PnPContentType", - "Rank": 4 + "CommandName": "Add-PnPContentType" }, { "Id": 24, + "Rank": 5, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "CommandName": "Add-PnPContentType", - "Rank": 5 + "CommandName": "Add-PnPContentType" }, { "Id": 25, + "Rank": 1, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Rank": 1 + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { "Id": 26, + "Rank": 2, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Rank": 2 + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { "Id": 27, + "Rank": 1, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Rank": 1 + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { "Id": 28, + "Rank": 2, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Rank": 2 + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { "Id": 29, + "Rank": 1, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "CommandName": "Add-PnPContentTypeToList", - "Rank": 1 + "CommandName": "Add-PnPContentTypeToList" }, { "Id": 30, + "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", - "Rank": 1 + "CommandName": "Add-PnPCustomAction" }, { "Id": 31, + "Rank": 1, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Rank": 1 + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { "Id": 32, + "Rank": 2, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Rank": 2 + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { "Id": 33, + "Rank": 1, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "CommandName": "Add-PnPDocumentSet", - "Rank": 1 + "CommandName": "Add-PnPDocumentSet" }, { "Id": 34, + "Rank": 1, "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", - "CommandName": "Add-PnPEventReceiver", - "Rank": 1 + "CommandName": "Add-PnPEventReceiver" }, { "Id": 35, + "Rank": 2, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "CommandName": "Add-PnPEventReceiver", - "Rank": 2 + "CommandName": "Add-PnPEventReceiver" }, { "Id": 36, + "Rank": 3, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", - "CommandName": "Add-PnPEventReceiver", - "Rank": 3 + "CommandName": "Add-PnPEventReceiver" }, { "Id": 37, + "Rank": 4, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", - "CommandName": "Add-PnPEventReceiver", - "Rank": 4 + "CommandName": "Add-PnPEventReceiver" }, { "Id": 38, + "Rank": 1, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "CommandName": "Add-PnPField", - "Rank": 1 + "CommandName": "Add-PnPField" }, { "Id": 39, + "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", - "Rank": 2 + "CommandName": "Add-PnPField" }, { "Id": 40, + "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", - "Rank": 3 + "CommandName": "Add-PnPField" }, { "Id": 41, + "Rank": 4, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "CommandName": "Add-PnPField", - "Rank": 4 + "CommandName": "Add-PnPField" }, { "Id": 42, + "Rank": 5, "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "CommandName": "Add-PnPField", - "Rank": 5 + "CommandName": "Add-PnPField" }, { "Id": 43, + "Rank": 6, "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "CommandName": "Add-PnPField", - "Rank": 6 + "CommandName": "Add-PnPField" }, { "Id": 44, + "Rank": 1, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Add-PnPFieldToContentType", - "Rank": 1 + "CommandName": "Add-PnPFieldToContentType" }, { "Id": 45, + "Rank": 1, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "CommandName": "Add-PnPFile", - "Rank": 1 + "CommandName": "Add-PnPFile" }, { "Id": 46, + "Rank": 2, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "CommandName": "Add-PnPFile", - "Rank": 2 + "CommandName": "Add-PnPFile" }, { "Id": 47, + "Rank": 3, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", - "Rank": 3 + "CommandName": "Add-PnPFile" }, { "Id": 48, + "Rank": 4, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", - "Rank": 4 + "CommandName": "Add-PnPFile" }, { "Id": 49, + "Rank": 5, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", - "Rank": 5 + "CommandName": "Add-PnPFile" }, { "Id": 50, + "Rank": 6, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "CommandName": "Add-PnPFile", - "Rank": 6 + "CommandName": "Add-PnPFile" }, { "Id": 51, + "Rank": 7, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "CommandName": "Add-PnPFile", - "Rank": 7 + "CommandName": "Add-PnPFile" }, { "Id": 52, + "Rank": 8, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "CommandName": "Add-PnPFile", - "Rank": 8 + "CommandName": "Add-PnPFile" }, { "Id": 53, + "Rank": 1, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 1 + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Id": 54, + "Rank": 2, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 2 + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Id": 55, + "Rank": 3, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 3 + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Id": 56, + "Rank": 1, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Rank": 1 + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { "Id": 57, + "Rank": 2, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Rank": 2 + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { "Id": 58, + "Rank": 1, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "CommandName": "Add-PnPFileSharingInvite", - "Rank": 1 + "CommandName": "Add-PnPFileSharingInvite" }, { "Id": 59, + "Rank": 2, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "CommandName": "Add-PnPFileSharingInvite", - "Rank": 2 + "CommandName": "Add-PnPFileSharingInvite" }, { "Id": 60, + "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", - "Rank": 3 + "CommandName": "Add-PnPFileSharingInvite" }, { "Id": 61, + "Rank": 1, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 1 + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Id": 62, + "Rank": 2, "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 2 + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Id": 63, + "Rank": 3, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 3 + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Id": 64, + "Rank": 4, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 4 + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Id": 65, + "Rank": 5, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 5 + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Id": 66, + "Rank": 1, "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFileUserSharingLink", - "Rank": 1 + "CommandName": "Add-PnPFileUserSharingLink" }, { "Id": 67, + "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", - "Rank": 2 + "CommandName": "Add-PnPFileUserSharingLink" }, { "Id": 68, + "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", - "Rank": 1 + "CommandName": "Add-PnPFlowOwner" }, { "Id": 69, + "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", - "Rank": 2 + "CommandName": "Add-PnPFlowOwner" }, { "Id": 70, + "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", - "Rank": 3 + "CommandName": "Add-PnPFlowOwner" }, { "Id": 71, + "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", - "Rank": 4 + "CommandName": "Add-PnPFlowOwner" }, { "Id": 72, + "Rank": 1, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Add-PnPFolder", - "Rank": 1 + "CommandName": "Add-PnPFolder" }, { "Id": 73, + "Rank": 2, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFolder", - "Rank": 2 + "CommandName": "Add-PnPFolder" }, { "Id": 74, + "Rank": 3, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "CommandName": "Add-PnPFolder", - "Rank": 3 + "CommandName": "Add-PnPFolder" }, { "Id": 75, + "Rank": 1, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 1 + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Id": 76, + "Rank": 2, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 2 + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Id": 77, + "Rank": 3, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 3 + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Id": 78, + "Rank": 1, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Rank": 1 + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { "Id": 79, + "Rank": 2, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Rank": 2 + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { "Id": 80, + "Rank": 1, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "CommandName": "Add-PnPFolderSharingInvite", - "Rank": 1 + "CommandName": "Add-PnPFolderSharingInvite" }, { "Id": 81, + "Rank": 2, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "CommandName": "Add-PnPFolderSharingInvite", - "Rank": 2 + "CommandName": "Add-PnPFolderSharingInvite" }, { "Id": 82, + "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", - "Rank": 3 + "CommandName": "Add-PnPFolderSharingInvite" }, { "Id": 83, + "Rank": 1, "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFolderUserSharingLink", - "Rank": 1 + "CommandName": "Add-PnPFolderUserSharingLink" }, { "Id": 84, + "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", - "Rank": 2 + "CommandName": "Add-PnPFolderUserSharingLink" }, { "Id": 85, + "Rank": 1, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Add-PnPGroupMember", - "Rank": 1 + "CommandName": "Add-PnPGroupMember" }, { "Id": 86, + "Rank": 2, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "CommandName": "Add-PnPGroupMember", - "Rank": 2 + "CommandName": "Add-PnPGroupMember" }, { "Id": 87, + "Rank": 1, "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "CommandName": "Add-PnPHtmlPublishingPageLayout", - "Rank": 1 + "CommandName": "Add-PnPHtmlPublishingPageLayout" }, { "Id": 88, + "Rank": 1, "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "CommandName": "Add-PnPHubSiteAssociation", - "Rank": 1 + "CommandName": "Add-PnPHubSiteAssociation" }, { "Id": 89, + "Rank": 1, "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "CommandName": "Add-PnPHubToHubAssociation", - "Rank": 1 + "CommandName": "Add-PnPHubToHubAssociation" }, { "Id": 90, + "Rank": 2, "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "CommandName": "Add-PnPHubToHubAssociation", - "Rank": 2 + "CommandName": "Add-PnPHubToHubAssociation" }, { "Id": 91, + "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", - "Rank": 3 + "CommandName": "Add-PnPHubToHubAssociation" }, { "Id": 92, + "Rank": 1, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptBlock", - "Rank": 1 + "CommandName": "Add-PnPJavaScriptBlock" }, { "Id": 93, + "Rank": 2, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "CommandName": "Add-PnPJavaScriptBlock", - "Rank": 2 + "CommandName": "Add-PnPJavaScriptBlock" }, { "Id": 94, + "Rank": 1, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptLink", - "Rank": 1 + "CommandName": "Add-PnPJavaScriptLink" }, { "Id": 95, + "Rank": 2, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "CommandName": "Add-PnPJavaScriptLink", - "Rank": 2 + "CommandName": "Add-PnPJavaScriptLink" }, { "Id": 96, + "Rank": 1, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "CommandName": "Add-PnPListDesign", - "Rank": 1 + "CommandName": "Add-PnPListDesign" }, { "Id": 97, + "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", - "Rank": 2 + "CommandName": "Add-PnPListDesign" }, { "Id": 98, + "Rank": 1, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 1 + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Id": 99, + "Rank": 2, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 2 + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Id": 100, + "Rank": 3, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 3 + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Id": 101, + "Rank": 1, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Add-PnPListItem", - "Rank": 1 + "CommandName": "Add-PnPListItem" }, { "Id": 102, + "Rank": 2, "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Add-PnPListItem", - "Rank": 2 + "CommandName": "Add-PnPListItem" }, { "Id": 103, + "Rank": 3, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "CommandName": "Add-PnPListItem", - "Rank": 3 + "CommandName": "Add-PnPListItem" }, { "Id": 104, + "Rank": 4, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "CommandName": "Add-PnPListItem", - "Rank": 4 + "CommandName": "Add-PnPListItem" }, { "Id": 105, + "Rank": 5, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "CommandName": "Add-PnPListItem", - "Rank": 5 + "CommandName": "Add-PnPListItem" }, { "Id": 106, + "Rank": 1, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "CommandName": "Add-PnPListItemAttachment", - "Rank": 1 + "CommandName": "Add-PnPListItemAttachment" }, { "Id": 107, + "Rank": 2, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "CommandName": "Add-PnPListItemAttachment", - "Rank": 2 + "CommandName": "Add-PnPListItemAttachment" }, { "Id": 108, + "Rank": 3, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "CommandName": "Add-PnPListItemAttachment", - "Rank": 3 + "CommandName": "Add-PnPListItemAttachment" }, { "Id": 109, + "Rank": 1, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "CommandName": "Add-PnPListItemComment", - "Rank": 1 + "CommandName": "Add-PnPListItemComment" }, { "Id": 110, + "Rank": 1, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "CommandName": "Add-PnPMasterPage", - "Rank": 1 + "CommandName": "Add-PnPMasterPage" }, { "Id": 111, + "Rank": 1, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Rank": 1 + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { "Id": 112, + "Rank": 2, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Rank": 2 + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { "Id": 113, + "Rank": 1, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Rank": 1 + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { "Id": 114, + "Rank": 2, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Rank": 2 + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { "Id": 115, + "Rank": 1, "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 1 + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Id": 116, + "Rank": 2, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 2 + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Id": 117, + "Rank": 3, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 3 + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Id": 118, + "Rank": 1, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "CommandName": "Add-PnPNavigationNode", - "Rank": 1 + "CommandName": "Add-PnPNavigationNode" }, { "Id": 119, + "Rank": 2, "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", - "CommandName": "Add-PnPNavigationNode", - "Rank": 2 + "CommandName": "Add-PnPNavigationNode" }, { "Id": 120, + "Rank": 3, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "CommandName": "Add-PnPNavigationNode", - "Rank": 3 + "CommandName": "Add-PnPNavigationNode" }, { "Id": 121, + "Rank": 4, "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "CommandName": "Add-PnPNavigationNode", - "Rank": 4 + "CommandName": "Add-PnPNavigationNode" }, { "Id": 122, + "Rank": 5, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "CommandName": "Add-PnPNavigationNode", - "Rank": 5 + "CommandName": "Add-PnPNavigationNode" }, { "Id": 123, + "Rank": 6, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "CommandName": "Add-PnPNavigationNode", - "Rank": 6 + "CommandName": "Add-PnPNavigationNode" }, { "Id": 124, + "Rank": 7, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "CommandName": "Add-PnPNavigationNode", - "Rank": 7 + "CommandName": "Add-PnPNavigationNode" }, { "Id": 125, + "Rank": 8, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "CommandName": "Add-PnPNavigationNode", - "Rank": 8 + "CommandName": "Add-PnPNavigationNode" }, { "Id": 126, + "Rank": 1, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 1 + "CommandName": "Add-PnPOrgAssetsLibrary" }, { "Id": 127, + "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", - "Rank": 2 + "CommandName": "Add-PnPOrgAssetsLibrary" }, { "Id": 128, + "Rank": 3, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 3 + "CommandName": "Add-PnPOrgAssetsLibrary" }, { "Id": 129, + "Rank": 1, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "CommandName": "Add-PnPOrgNewsSite", - "Rank": 1 + "CommandName": "Add-PnPOrgNewsSite" }, { "Id": 130, + "Rank": 1, "Command": "Add-PnPPage -Name \"NewPage\"", - "CommandName": "Add-PnPPage", - "Rank": 1 + "CommandName": "Add-PnPPage" }, { "Id": 131, + "Rank": 2, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "CommandName": "Add-PnPPage", - "Rank": 2 + "CommandName": "Add-PnPPage" }, { "Id": 132, + "Rank": 3, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "CommandName": "Add-PnPPage", - "Rank": 3 + "CommandName": "Add-PnPPage" }, { "Id": 133, + "Rank": 4, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "CommandName": "Add-PnPPage", - "Rank": 4 + "CommandName": "Add-PnPPage" }, { "Id": 134, + "Rank": 5, "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "CommandName": "Add-PnPPage", - "Rank": 5 + "CommandName": "Add-PnPPage" }, { "Id": 135, + "Rank": 6, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "CommandName": "Add-PnPPage", - "Rank": 6 + "CommandName": "Add-PnPPage" }, { "Id": 136, + "Rank": 7, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Add-PnPPage", - "Rank": 7 + "CommandName": "Add-PnPPage" }, { "Id": 137, + "Rank": 8, "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "CommandName": "Add-PnPPage", - "Rank": 8 + "CommandName": "Add-PnPPage" }, { "Id": 138, + "Rank": 9, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Add-PnPPage", - "Rank": 9 + "CommandName": "Add-PnPPage" }, { "Id": 139, + "Rank": 10, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Add-PnPPage", - "Rank": 10 + "CommandName": "Add-PnPPage" }, { "Id": 140, + "Rank": 1, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "CommandName": "Add-PnPPageImageWebPart", - "Rank": 1 + "CommandName": "Add-PnPPageImageWebPart" }, { "Id": 141, + "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", - "Rank": 2 + "CommandName": "Add-PnPPageImageWebPart" }, { "Id": 142, + "Rank": 1, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "CommandName": "Add-PnPPageSection", - "Rank": 1 + "CommandName": "Add-PnPPageSection" }, { "Id": 143, + "Rank": 2, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "CommandName": "Add-PnPPageSection", - "Rank": 2 + "CommandName": "Add-PnPPageSection" }, { "Id": 144, + "Rank": 1, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "CommandName": "Add-PnPPageTextPart", - "Rank": 1 + "CommandName": "Add-PnPPageTextPart" }, { "Id": 145, + "Rank": 2, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "CommandName": "Add-PnPPageTextPart", - "Rank": 2 + "CommandName": "Add-PnPPageTextPart" }, { "Id": 146, + "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", - "Rank": 3 + "CommandName": "Add-PnPPageTextPart" }, { "Id": 147, + "Rank": 1, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "CommandName": "Add-PnPPageWebPart", - "Rank": 1 + "CommandName": "Add-PnPPageWebPart" }, { "Id": 148, + "Rank": 2, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "CommandName": "Add-PnPPageWebPart", - "Rank": 2 + "CommandName": "Add-PnPPageWebPart" }, { "Id": 149, + "Rank": 3, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "CommandName": "Add-PnPPageWebPart", - "Rank": 3 + "CommandName": "Add-PnPPageWebPart" }, { "Id": 150, + "Rank": 1, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "CommandName": "Add-PnPPlannerBucket", - "Rank": 1 + "CommandName": "Add-PnPPlannerBucket" }, { "Id": 151, + "Rank": 2, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "CommandName": "Add-PnPPlannerBucket", - "Rank": 2 + "CommandName": "Add-PnPPlannerBucket" }, { "Id": 152, + "Rank": 1, "Command": "Add-PnPPlannerRoster", - "CommandName": "Add-PnPPlannerRoster", - "Rank": 1 + "CommandName": "Add-PnPPlannerRoster" }, { "Id": 153, + "Rank": 1, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPPlannerRosterMember", - "Rank": 1 + "CommandName": "Add-PnPPlannerRosterMember" }, { "Id": 154, + "Rank": 1, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "CommandName": "Add-PnPPlannerTask", - "Rank": 1 + "CommandName": "Add-PnPPlannerTask" }, { "Id": 155, + "Rank": 2, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "CommandName": "Add-PnPPlannerTask", - "Rank": 2 + "CommandName": "Add-PnPPlannerTask" }, { "Id": 156, + "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", - "Rank": 3 + "CommandName": "Add-PnPPlannerTask" }, { "Id": 157, + "Rank": 1, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Add-PnPPublishingImageRendition", - "Rank": 1 + "CommandName": "Add-PnPPublishingImageRendition" }, { "Id": 158, + "Rank": 1, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "CommandName": "Add-PnPPublishingPage", - "Rank": 1 + "CommandName": "Add-PnPPublishingPage" }, { "Id": 159, + "Rank": 2, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "CommandName": "Add-PnPPublishingPage", - "Rank": 2 + "CommandName": "Add-PnPPublishingPage" }, { "Id": 160, + "Rank": 1, "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "CommandName": "Add-PnPPublishingPageLayout", - "Rank": 1 + "CommandName": "Add-PnPPublishingPageLayout" }, { "Id": 161, + "Rank": 1, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "CommandName": "Add-PnPRoleDefinition", - "Rank": 1 + "CommandName": "Add-PnPRoleDefinition" }, { "Id": 162, + "Rank": 2, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "CommandName": "Add-PnPRoleDefinition", - "Rank": 2 + "CommandName": "Add-PnPRoleDefinition" }, { "Id": 163, + "Rank": 3, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "CommandName": "Add-PnPRoleDefinition", - "Rank": 3 + "CommandName": "Add-PnPRoleDefinition" }, { "Id": 164, + "Rank": 1, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 1 + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Id": 165, + "Rank": 2, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 2 + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Id": 166, + "Rank": 3, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 3 + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Id": 167, + "Rank": 1, "Command": "Add-PnPSiteCollectionAppCatalog", - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1 + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { "Id": 168, + "Rank": 2, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Rank": 2 + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { "Id": 169, + "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", - "Rank": 1 + "CommandName": "Add-PnPSiteDesign" }, { "Id": 170, + "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", - "Rank": 2 + "CommandName": "Add-PnPSiteDesign" }, { "Id": 171, + "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", - "Rank": 3 + "CommandName": "Add-PnPSiteDesign" }, { "Id": 172, + "Rank": 1, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "CommandName": "Add-PnPSiteDesignFromWeb", - "Rank": 1 + "CommandName": "Add-PnPSiteDesignFromWeb" }, { "Id": 173, + "Rank": 2, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "CommandName": "Add-PnPSiteDesignFromWeb", - "Rank": 2 + "CommandName": "Add-PnPSiteDesignFromWeb" }, { "Id": 174, + "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", - "Rank": 3 + "CommandName": "Add-PnPSiteDesignFromWeb" }, { "Id": 175, + "Rank": 1, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Add-PnPSiteDesignTask", - "Rank": 1 + "CommandName": "Add-PnPSiteDesignTask" }, { "Id": 176, + "Rank": 2, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "CommandName": "Add-PnPSiteDesignTask", - "Rank": 2 + "CommandName": "Add-PnPSiteDesignTask" }, { "Id": 177, + "Rank": 1, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "CommandName": "Add-PnPSiteScript", - "Rank": 1 + "CommandName": "Add-PnPSiteScript" }, { "Id": 178, + "Rank": 1, "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "CommandName": "Add-PnPSiteScriptPackage", - "Rank": 1 + "CommandName": "Add-PnPSiteScriptPackage" }, { "Id": 179, + "Rank": 1, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "CommandName": "Add-PnPSiteTemplate", - "Rank": 1 + "CommandName": "Add-PnPSiteTemplate" }, { "Id": 180, + "Rank": 1, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "CommandName": "Add-PnPStoredCredential", - "Rank": 1 + "CommandName": "Add-PnPStoredCredential" }, { "Id": 181, + "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", - "Rank": 2 + "CommandName": "Add-PnPStoredCredential" }, { "Id": 182, + "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", - "Rank": 3 + "CommandName": "Add-PnPStoredCredential" }, { "Id": 183, + "Rank": 1, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "CommandName": "Add-PnPTaxonomyField", - "Rank": 1 + "CommandName": "Add-PnPTaxonomyField" }, { "Id": 184, + "Rank": 2, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "CommandName": "Add-PnPTaxonomyField", - "Rank": 2 + "CommandName": "Add-PnPTaxonomyField" }, { "Id": 185, + "Rank": 1, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "CommandName": "Add-PnPTeamsChannel", - "Rank": 1 + "CommandName": "Add-PnPTeamsChannel" }, { "Id": 186, + "Rank": 2, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "CommandName": "Add-PnPTeamsChannel", - "Rank": 2 + "CommandName": "Add-PnPTeamsChannel" }, { "Id": 187, + "Rank": 3, "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "CommandName": "Add-PnPTeamsChannel", - "Rank": 3 + "CommandName": "Add-PnPTeamsChannel" }, { "Id": 188, + "Rank": 4, "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "CommandName": "Add-PnPTeamsChannel", - "Rank": 4 + "CommandName": "Add-PnPTeamsChannel" }, { "Id": 189, + "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", - "Rank": 1 + "CommandName": "Add-PnpTeamsChannelUser" }, { "Id": 190, + "Rank": 2, "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "CommandName": "Add-PnpTeamsChannelUser", - "Rank": 2 + "CommandName": "Add-PnpTeamsChannelUser" }, { "Id": 191, + "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", - "Rank": 1 + "CommandName": "Add-PnPTeamsTab" }, { "Id": 192, + "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", - "Rank": 2 + "CommandName": "Add-PnPTeamsTab" }, { "Id": 193, + "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", - "Rank": 3 + "CommandName": "Add-PnPTeamsTab" }, { "Id": 194, + "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", - "Rank": 4 + "CommandName": "Add-PnPTeamsTab" }, { "Id": 195, + "Rank": 1, "Command": "Add-PnPTeamsTeam", - "CommandName": "Add-PnPTeamsTeam", - "Rank": 1 + "CommandName": "Add-PnPTeamsTeam" }, { "Id": 196, + "Rank": 1, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Add-PnPTeamsUser", - "Rank": 1 + "CommandName": "Add-PnPTeamsUser" }, { "Id": 197, + "Rank": 2, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Add-PnPTeamsUser", - "Rank": 2 + "CommandName": "Add-PnPTeamsUser" }, { "Id": 198, + "Rank": 3, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "CommandName": "Add-PnPTeamsUser", - "Rank": 3 + "CommandName": "Add-PnPTeamsUser" }, { "Id": 199, + "Rank": 4, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "CommandName": "Add-PnPTeamsUser", - "Rank": 4 + "CommandName": "Add-PnPTeamsUser" }, { "Id": 200, + "Rank": 1, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Add-PnPTenantCdnOrigin", - "Rank": 1 + "CommandName": "Add-PnPTenantCdnOrigin" }, { "Id": 201, + "Rank": 1, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequence", - "Rank": 1 + "CommandName": "Add-PnPTenantSequence" }, { "Id": 202, + "Rank": 1, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequenceSite", - "Rank": 1 + "CommandName": "Add-PnPTenantSequenceSite" }, { "Id": 203, + "Rank": 1, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "CommandName": "Add-PnPTenantSequenceSubSite", - "Rank": 1 + "CommandName": "Add-PnPTenantSequenceSubSite" }, { "Id": 204, + "Rank": 1, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "CommandName": "Add-PnPTermToTerm", - "Rank": 1 + "CommandName": "Add-PnPTermToTerm" }, { "Id": 205, + "Rank": 1, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "CommandName": "Add-PnPView", - "Rank": 1 + "CommandName": "Add-PnPView" }, { "Id": 206, + "Rank": 2, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "CommandName": "Add-PnPView", - "Rank": 2 + "CommandName": "Add-PnPView" }, { "Id": 207, + "Rank": 3, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "CommandName": "Add-PnPView", - "Rank": 3 + "CommandName": "Add-PnPView" }, { "Id": 208, + "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", - "Rank": 1 + "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { "Id": 209, + "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", - "Rank": 2 + "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { "Id": 210, + "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", - "Rank": 3 + "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { "Id": 211, + "Rank": 1, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "CommandName": "Add-PnPWebhookSubscription", - "Rank": 1 + "CommandName": "Add-PnPWebhookSubscription" }, { "Id": 212, + "Rank": 2, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "CommandName": "Add-PnPWebhookSubscription", - "Rank": 2 + "CommandName": "Add-PnPWebhookSubscription" }, { "Id": 213, + "Rank": 3, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", - "CommandName": "Add-PnPWebhookSubscription", - "Rank": 3 + "CommandName": "Add-PnPWebhookSubscription" }, { "Id": 214, + "Rank": 1, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "CommandName": "Add-PnPWebPartToWebPartPage", - "Rank": 1 + "CommandName": "Add-PnPWebPartToWebPartPage" }, { "Id": 215, + "Rank": 2, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "CommandName": "Add-PnPWebPartToWebPartPage", - "Rank": 2 + "CommandName": "Add-PnPWebPartToWebPartPage" }, { "Id": 216, + "Rank": 1, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "CommandName": "Add-PnPWebPartToWikiPage", - "Rank": 1 + "CommandName": "Add-PnPWebPartToWikiPage" }, { "Id": 217, + "Rank": 2, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "CommandName": "Add-PnPWebPartToWikiPage", - "Rank": 2 + "CommandName": "Add-PnPWebPartToWikiPage" }, { "Id": 218, + "Rank": 1, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "CommandName": "Add-PnPWikiPage", - "Rank": 1 + "CommandName": "Add-PnPWikiPage" }, { "Id": 219, + "Rank": 1, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupMember", - "Rank": 1 + "CommandName": "Clear-PnPAzureADGroupMember" }, { "Id": 220, + "Rank": 1, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupOwner", - "Rank": 1 + "CommandName": "Clear-PnPAzureADGroupOwner" }, { "Id": 221, + "Rank": 1, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "CommandName": "Clear-PnPDefaultColumnValues", - "Rank": 1 + "CommandName": "Clear-PnPDefaultColumnValues" }, { "Id": 222, + "Rank": 2, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "CommandName": "Clear-PnPDefaultColumnValues", - "Rank": 2 + "CommandName": "Clear-PnPDefaultColumnValues" }, { "Id": 223, + "Rank": 1, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Clear-PnPListItemAsRecord", - "Rank": 1 + "CommandName": "Clear-PnPListItemAsRecord" }, { "Id": 224, + "Rank": 1, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Rank": 1 + "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { "Id": 225, + "Rank": 1, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Rank": 1 + "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { "Id": 226, + "Rank": 1, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 1 + "CommandName": "Clear-PnpRecycleBinItem" }, { "Id": 227, + "Rank": 2, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 2 + "CommandName": "Clear-PnpRecycleBinItem" }, { "Id": 228, + "Rank": 3, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 3 + "CommandName": "Clear-PnpRecycleBinItem" }, { "Id": 229, + "Rank": 1, "Command": "Clear-PnPTenantAppCatalogUrl", - "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1 + "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { "Id": 230, + "Rank": 1, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Rank": 1 + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { "Id": 231, + "Rank": 2, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Rank": 2 + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { "Id": 232, + "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", - "Rank": 1 + "CommandName": "Connect-PnPOnline" }, { "Id": 233, + "Rank": 1, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Rank": 1 + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { "Id": 234, + "Rank": 2, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Rank": 2 + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { "Id": 235, + "Rank": 1, "Command": "Convert-PnPSiteTemplate -Path template.xml", - "CommandName": "Convert-PnPSiteTemplate", - "Rank": 1 + "CommandName": "Convert-PnPSiteTemplate" }, { "Id": 236, + "Rank": 2, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "CommandName": "Convert-PnPSiteTemplate", - "Rank": 2 + "CommandName": "Convert-PnPSiteTemplate" }, { "Id": 237, + "Rank": 3, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "CommandName": "Convert-PnPSiteTemplate", - "Rank": 3 + "CommandName": "Convert-PnPSiteTemplate" }, { "Id": 238, + "Rank": 1, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Rank": 1 + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { "Id": 239, + "Rank": 2, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Rank": 2 + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { "Id": 240, + "Rank": 1, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", - "Rank": 1 + "CommandName": "ConvertTo-PnPPage" }, { "Id": 241, + "Rank": 2, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "CommandName": "ConvertTo-PnPPage", - "Rank": 2 + "CommandName": "ConvertTo-PnPPage" }, { "Id": 242, + "Rank": 3, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "CommandName": "ConvertTo-PnPPage", - "Rank": 3 + "CommandName": "ConvertTo-PnPPage" }, { "Id": 243, + "Rank": 4, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "CommandName": "ConvertTo-PnPPage", - "Rank": 4 + "CommandName": "ConvertTo-PnPPage" }, { "Id": 244, + "Rank": 5, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", - "Rank": 5 + "CommandName": "ConvertTo-PnPPage" }, { "Id": 245, + "Rank": 6, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "CommandName": "ConvertTo-PnPPage", - "Rank": 6 + "CommandName": "ConvertTo-PnPPage" }, { "Id": 246, + "Rank": 7, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", - "Rank": 7 + "CommandName": "ConvertTo-PnPPage" }, { "Id": 247, + "Rank": 8, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", - "Rank": 8 + "CommandName": "ConvertTo-PnPPage" }, { "Id": 248, + "Rank": 9, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", - "Rank": 9 + "CommandName": "ConvertTo-PnPPage" }, { "Id": 249, + "Rank": 10, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "CommandName": "ConvertTo-PnPPage", - "Rank": 10 + "CommandName": "ConvertTo-PnPPage" }, { "Id": 250, + "Rank": 11, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "CommandName": "ConvertTo-PnPPage", - "Rank": 11 + "CommandName": "ConvertTo-PnPPage" }, { "Id": 251, + "Rank": 12, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", - "Rank": 12 + "CommandName": "ConvertTo-PnPPage" }, { "Id": 252, + "Rank": 13, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", - "Rank": 13 + "CommandName": "ConvertTo-PnPPage" }, { "Id": 253, + "Rank": 14, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "CommandName": "ConvertTo-PnPPage", - "Rank": 14 + "CommandName": "ConvertTo-PnPPage" }, { "Id": 254, + "Rank": 1, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", - "Rank": 1 + "CommandName": "Copy-PnPFile" }, { "Id": 255, + "Rank": 2, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFile", - "Rank": 2 + "CommandName": "Copy-PnPFile" }, { "Id": 256, + "Rank": 3, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFile", - "Rank": 3 + "CommandName": "Copy-PnPFile" }, { "Id": 257, + "Rank": 4, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", - "Rank": 4 + "CommandName": "Copy-PnPFile" }, { "Id": 258, + "Rank": 5, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFile", - "Rank": 5 + "CommandName": "Copy-PnPFile" }, { "Id": 259, + "Rank": 6, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFile", - "Rank": 6 + "CommandName": "Copy-PnPFile" }, { "Id": 260, + "Rank": 7, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFile", - "Rank": 7 + "CommandName": "Copy-PnPFile" }, { "Id": 261, + "Rank": 8, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", - "Rank": 8 + "CommandName": "Copy-PnPFile" }, { "Id": 262, + "Rank": 9, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", - "Rank": 9 + "CommandName": "Copy-PnPFile" }, { "Id": 263, + "Rank": 10, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFile", - "Rank": 10 + "CommandName": "Copy-PnPFile" }, { "Id": 264, + "Rank": 1, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", - "Rank": 1 + "CommandName": "Copy-PnPFolder" }, { "Id": 265, + "Rank": 2, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFolder", - "Rank": 2 + "CommandName": "Copy-PnPFolder" }, { "Id": 266, + "Rank": 3, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFolder", - "Rank": 3 + "CommandName": "Copy-PnPFolder" }, { "Id": 267, + "Rank": 4, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", - "Rank": 4 + "CommandName": "Copy-PnPFolder" }, { "Id": 268, + "Rank": 5, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFolder", - "Rank": 5 + "CommandName": "Copy-PnPFolder" }, { "Id": 269, + "Rank": 6, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFolder", - "Rank": 6 + "CommandName": "Copy-PnPFolder" }, { "Id": 270, + "Rank": 7, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFolder", - "Rank": 7 + "CommandName": "Copy-PnPFolder" }, { "Id": 271, + "Rank": 8, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", - "Rank": 8 + "CommandName": "Copy-PnPFolder" }, { "Id": 272, + "Rank": 9, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", - "Rank": 9 + "CommandName": "Copy-PnPFolder" }, { "Id": 273, + "Rank": 10, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFolder", - "Rank": 10 + "CommandName": "Copy-PnPFolder" }, { "Id": 274, + "Rank": 1, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "CommandName": "Copy-PnPItemProxy", - "Rank": 1 + "CommandName": "Copy-PnPItemProxy" }, { "Id": 275, + "Rank": 1, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "CommandName": "Copy-PnPList", - "Rank": 1 + "CommandName": "Copy-PnPList" }, { "Id": 276, + "Rank": 2, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "CommandName": "Copy-PnPList", - "Rank": 2 + "CommandName": "Copy-PnPList" }, { "Id": 277, + "Rank": 3, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "CommandName": "Copy-PnPList", - "Rank": 3 + "CommandName": "Copy-PnPList" }, { "Id": 278, + "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", - "Rank": 4 + "CommandName": "Copy-PnPList" }, { "Id": 279, + "Rank": 1, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "CommandName": "Copy-PnPTeamsTeam", - "Rank": 1 + "CommandName": "Copy-PnPTeamsTeam" }, { "Id": 280, + "Rank": 2, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "CommandName": "Copy-PnPTeamsTeam", - "Rank": 2 + "CommandName": "Copy-PnPTeamsTeam" }, { "Id": 281, + "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", - "Rank": 3 + "CommandName": "Copy-PnPTeamsTeam" }, { "Id": 282, + "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", - "Rank": 4 + "CommandName": "Copy-PnPTeamsTeam" }, { "Id": 283, + "Rank": 1, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Disable-PnPFeature", - "Rank": 1 + "CommandName": "Disable-PnPFeature" }, { "Id": 284, + "Rank": 2, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Disable-PnPFeature", - "Rank": 2 + "CommandName": "Disable-PnPFeature" }, { "Id": 285, + "Rank": 3, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Disable-PnPFeature", - "Rank": 3 + "CommandName": "Disable-PnPFeature" }, { "Id": 286, + "Rank": 1, "Command": "Disable-PnPPageScheduling", - "CommandName": "Disable-PnPPageScheduling", - "Rank": 1 + "CommandName": "Disable-PnPPageScheduling" }, { "Id": 287, + "Rank": 1, "Command": "Disable-PnPPowerShellTelemetry", - "CommandName": "Disable-PnPPowerShellTelemetry", - "Rank": 1 + "CommandName": "Disable-PnPPowerShellTelemetry" }, { "Id": 288, + "Rank": 2, "Command": "Disable-PnPPowerShellTelemetry -Force", - "CommandName": "Disable-PnPPowerShellTelemetry", - "Rank": 2 + "CommandName": "Disable-PnPPowerShellTelemetry" }, { "Id": 289, + "Rank": 1, "Command": "Disable-PnPSharingForNonOwnersOfSite", - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1 + "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { "Id": 290, + "Rank": 1, "Command": "Disable-PnPSiteClassification", - "CommandName": "Disable-PnPSiteClassification", - "Rank": 1 + "CommandName": "Disable-PnPSiteClassification" }, { "Id": 291, + "Rank": 1, "Command": "Disconnect-PnPOnline", - "CommandName": "Disconnect-PnPOnline", - "Rank": 1 + "CommandName": "Disconnect-PnPOnline" }, { "Id": 292, + "Rank": 1, "Command": "Enable-PnPCommSite", - "CommandName": "Enable-PnPCommSite", - "Rank": 1 + "CommandName": "Enable-PnPCommSite" }, { "Id": 293, + "Rank": 2, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "CommandName": "Enable-PnPCommSite", - "Rank": 2 + "CommandName": "Enable-PnPCommSite" }, { "Id": 294, + "Rank": 1, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Enable-PnPFeature", - "Rank": 1 + "CommandName": "Enable-PnPFeature" }, { "Id": 295, + "Rank": 2, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Enable-PnPFeature", - "Rank": 2 + "CommandName": "Enable-PnPFeature" }, { "Id": 296, + "Rank": 3, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Enable-PnPFeature", - "Rank": 3 + "CommandName": "Enable-PnPFeature" }, { "Id": 297, + "Rank": 1, "Command": "Enable-PnPPageScheduling", - "CommandName": "Enable-PnPPageScheduling", - "Rank": 1 + "CommandName": "Enable-PnPPageScheduling" }, { "Id": 298, + "Rank": 1, "Command": "Enable-PnPPowerShellTelemetry", - "CommandName": "Enable-PnPPowerShellTelemetry", - "Rank": 1 + "CommandName": "Enable-PnPPowerShellTelemetry" }, { "Id": 299, + "Rank": 2, "Command": "Enable-PnPPowerShellTelemetry -Force", - "CommandName": "Enable-PnPPowerShellTelemetry", - "Rank": 2 + "CommandName": "Enable-PnPPowerShellTelemetry" }, { "Id": 300, + "Rank": 1, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "CommandName": "Enable-PnPSiteClassification", - "Rank": 1 + "CommandName": "Enable-PnPSiteClassification" }, { "Id": 301, + "Rank": 2, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Enable-PnPSiteClassification", - "Rank": 2 + "CommandName": "Enable-PnPSiteClassification" }, { "Id": 302, + "Rank": 1, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "CommandName": "Export-PnPListToSiteTemplate", - "Rank": 1 + "CommandName": "Export-PnPListToSiteTemplate" }, { "Id": 303, + "Rank": 2, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "CommandName": "Export-PnPListToSiteTemplate", - "Rank": 2 + "CommandName": "Export-PnPListToSiteTemplate" }, { "Id": 304, + "Rank": 1, "Command": "Export-PnPPage -Identity Home.aspx", - "CommandName": "Export-PnPPage", - "Rank": 1 + "CommandName": "Export-PnPPage" }, { "Id": 305, + "Rank": 1, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", - "Rank": 1 + "CommandName": "Export-PnPPageMapping" }, { "Id": 306, + "Rank": 2, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", - "Rank": 2 + "CommandName": "Export-PnPPageMapping" }, { "Id": 307, + "Rank": 3, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", - "Rank": 3 + "CommandName": "Export-PnPPageMapping" }, { "Id": 308, + "Rank": 1, "Command": "Export-PnPTaxonomy", - "CommandName": "Export-PnPTaxonomy", - "Rank": 1 + "CommandName": "Export-PnPTaxonomy" }, { "Id": 309, + "Rank": 2, "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "CommandName": "Export-PnPTaxonomy", - "Rank": 2 + "CommandName": "Export-PnPTaxonomy" }, { "Id": 310, + "Rank": 3, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "CommandName": "Export-PnPTaxonomy", - "Rank": 3 + "CommandName": "Export-PnPTaxonomy" }, { "Id": 311, + "Rank": 4, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "CommandName": "Export-PnPTaxonomy", - "Rank": 4 + "CommandName": "Export-PnPTaxonomy" }, { "Id": 312, + "Rank": 1, "Command": "Export-PnPTermGroupToXml", - "CommandName": "Export-PnPTermGroupToXml", - "Rank": 1 + "CommandName": "Export-PnPTermGroupToXml" }, { "Id": 313, + "Rank": 2, "Command": "Export-PnPTermGroupToXml -Out output.xml", - "CommandName": "Export-PnPTermGroupToXml", - "Rank": 2 + "CommandName": "Export-PnPTermGroupToXml" }, { "Id": 314, + "Rank": 3, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "CommandName": "Export-PnPTermGroupToXml", - "Rank": 3 + "CommandName": "Export-PnPTermGroupToXml" }, { "Id": 315, + "Rank": 1, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Export-PnPUserInfo", - "Rank": 1 + "CommandName": "Export-PnPUserInfo" }, { "Id": 316, + "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", - "Rank": 2 + "CommandName": "Export-PnPUserInfo" }, { "Id": 317, + "Rank": 1, "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Export-PnPUserProfile", - "Rank": 1 + "CommandName": "Export-PnPUserProfile" }, { "Id": 318, + "Rank": 2, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "CommandName": "Export-PnPUserProfile", - "Rank": 2 + "CommandName": "Export-PnPUserProfile" }, { "Id": 319, + "Rank": 1, "Command": "Find-PnPFile -Match *.master", - "CommandName": "Find-PnPFile", - "Rank": 1 + "CommandName": "Find-PnPFile" }, { "Id": 320, + "Rank": 2, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "CommandName": "Find-PnPFile", - "Rank": 2 + "CommandName": "Find-PnPFile" }, { "Id": 321, + "Rank": 3, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "CommandName": "Find-PnPFile", - "Rank": 3 + "CommandName": "Find-PnPFile" }, { "Id": 322, + "Rank": 1, "Command": "Get-PnPAccessToken", - "CommandName": "Get-PnPAccessToken", - "Rank": 1 + "CommandName": "Get-PnPAccessToken" }, { "Id": 323, + "Rank": 2, "Command": "Get-PnPAccessToken -Decoded", - "CommandName": "Get-PnPAccessToken", - "Rank": 2 + "CommandName": "Get-PnPAccessToken" }, { "Id": 324, + "Rank": 3, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "CommandName": "Get-PnPAccessToken", - "Rank": 3 + "CommandName": "Get-PnPAccessToken" }, { "Id": 325, + "Rank": 4, "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "CommandName": "Get-PnPAccessToken", - "Rank": 4 + "CommandName": "Get-PnPAccessToken" }, { "Id": 326, + "Rank": 5, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "CommandName": "Get-PnPAccessToken", - "Rank": 5 + "CommandName": "Get-PnPAccessToken" }, { "Id": 327, + "Rank": 1, "Command": "Get-PnPAlert", - "CommandName": "Get-PnPAlert", - "Rank": 1 + "CommandName": "Get-PnPAlert" }, { "Id": 328, + "Rank": 2, "Command": "Get-PnPAlert -List \"Demo List\"", - "CommandName": "Get-PnPAlert", - "Rank": 2 + "CommandName": "Get-PnPAlert" }, { "Id": 329, + "Rank": 3, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPAlert", - "Rank": 3 + "CommandName": "Get-PnPAlert" }, { "Id": 330, + "Rank": 4, "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "CommandName": "Get-PnPAlert", - "Rank": 4 + "CommandName": "Get-PnPAlert" }, { "Id": 331, + "Rank": 5, "Command": "Get-PnPAlert -AllUsers", - "CommandName": "Get-PnPAlert", - "Rank": 5 + "CommandName": "Get-PnPAlert" }, { "Id": 332, + "Rank": 6, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "CommandName": "Get-PnPAlert", - "Rank": 6 + "CommandName": "Get-PnPAlert" }, { "Id": 333, + "Rank": 1, "Command": "Get-PnPApp", - "CommandName": "Get-PnPApp", - "Rank": 1 + "CommandName": "Get-PnPApp" }, { "Id": 334, + "Rank": 2, "Command": "Get-PnPApp -Scope Site", - "CommandName": "Get-PnPApp", - "Rank": 2 + "CommandName": "Get-PnPApp" }, { "Id": 335, + "Rank": 3, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPApp", - "Rank": 3 + "CommandName": "Get-PnPApp" }, { "Id": 336, + "Rank": 1, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "CommandName": "Get-PnPAppErrors", - "Rank": 1 + "CommandName": "Get-PnPAppErrors" }, { "Id": 337, + "Rank": 2, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "CommandName": "Get-PnPAppErrors", - "Rank": 2 + "CommandName": "Get-PnPAppErrors" }, { "Id": 338, + "Rank": 1, "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "CommandName": "Get-PnPAppInfo", - "Rank": 1 + "CommandName": "Get-PnPAppInfo" }, { "Id": 339, + "Rank": 2, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPAppInfo", - "Rank": 2 + "CommandName": "Get-PnPAppInfo" }, { "Id": 340, + "Rank": 3, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "CommandName": "Get-PnPAppInfo", - "Rank": 3 + "CommandName": "Get-PnPAppInfo" }, { "Id": 341, + "Rank": 1, "Command": "Get-PnPApplicationCustomizer", - "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 1 + "CommandName": "Get-PnPApplicationCustomizer" }, { "Id": 342, + "Rank": 2, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 2 + "CommandName": "Get-PnPApplicationCustomizer" }, { "Id": 343, + "Rank": 3, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 3 + "CommandName": "Get-PnPApplicationCustomizer" }, { "Id": 344, + "Rank": 1, "Command": "Get-PnPAuditing", - "CommandName": "Get-PnPAuditing", - "Rank": 1 + "CommandName": "Get-PnPAuditing" }, { "Id": 345, + "Rank": 1, "Command": "Get-PnPAuthenticationRealm", - "CommandName": "Get-PnPAuthenticationRealm", - "Rank": 1 + "CommandName": "Get-PnPAuthenticationRealm" }, { "Id": 346, + "Rank": 2, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "CommandName": "Get-PnPAuthenticationRealm", - "Rank": 2 + "CommandName": "Get-PnPAuthenticationRealm" }, { "Id": 347, + "Rank": 1, "Command": "Get-PnPAvailableLanguage", - "CommandName": "Get-PnPAvailableLanguage", - "Rank": 1 + "CommandName": "Get-PnPAvailableLanguage" }, { "Id": 348, + "Rank": 1, "Command": "Get-PnPAvailableSensitivityLabel", - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 1 + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Id": 349, + "Rank": 2, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 2 + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Id": 350, + "Rank": 3, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 3 + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Id": 351, + "Rank": 1, "Command": "Get-PnPAvailableSiteClassification", - "CommandName": "Get-PnPAvailableSiteClassification", - "Rank": 1 + "CommandName": "Get-PnPAvailableSiteClassification" }, { "Id": 352, + "Rank": 1, "Command": "Get-PnPAzureACSPrincipal", - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 1 + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Id": 353, + "Rank": 2, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 2 + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Id": 354, + "Rank": 3, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 3 + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Id": 355, + "Rank": 4, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 4 + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Id": 356, + "Rank": 1, "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1 + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Id": 357, + "Rank": 2, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 2 + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Id": 358, + "Rank": 3, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 3 + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Id": 359, + "Rank": 1, "Command": "Get-PnPAzureADActivityReportSignIn", - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1 + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Id": 360, + "Rank": 2, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 2 + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Id": 361, + "Rank": 3, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 3 + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Id": 362, + "Rank": 1, "Command": "Get-PnPAzureADApp", - "CommandName": "Get-PnPAzureADApp", - "Rank": 1 + "CommandName": "Get-PnPAzureADApp" }, { "Id": 363, + "Rank": 2, "Command": "Get-PnPAzureADApp -Identity MyApp", - "CommandName": "Get-PnPAzureADApp", - "Rank": 2 + "CommandName": "Get-PnPAzureADApp" }, { "Id": 364, + "Rank": 3, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADApp", - "Rank": 3 + "CommandName": "Get-PnPAzureADApp" }, { "Id": 365, + "Rank": 4, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADApp", - "Rank": 4 + "CommandName": "Get-PnPAzureADApp" }, { "Id": 366, + "Rank": 1, "Command": "Get-PnPAzureADAppPermission", - "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 1 + "CommandName": "Get-PnPAzureADAppPermission" }, { "Id": 367, + "Rank": 2, "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 2 + "CommandName": "Get-PnPAzureADAppPermission" }, { "Id": 368, + "Rank": 3, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 3 + "CommandName": "Get-PnPAzureADAppPermission" }, { "Id": 369, + "Rank": 1, "Command": "Get-PnPAzureADAppSitePermission", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 1 + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Id": 370, + "Rank": 2, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 2 + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Id": 371, + "Rank": 3, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 3 + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Id": 372, + "Rank": 4, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 4 + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Id": 373, + "Rank": 5, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 5 + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Id": 374, + "Rank": 1, "Command": "Get-PnPAzureADGroup", - "CommandName": "Get-PnPAzureADGroup", - "Rank": 1 + "CommandName": "Get-PnPAzureADGroup" }, { "Id": 375, + "Rank": 2, "Command": "Get-PnPAzureADGroup -Identity $groupId", - "CommandName": "Get-PnPAzureADGroup", - "Rank": 2 + "CommandName": "Get-PnPAzureADGroup" }, { "Id": 376, + "Rank": 3, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "CommandName": "Get-PnPAzureADGroup", - "Rank": 3 + "CommandName": "Get-PnPAzureADGroup" }, { "Id": 377, + "Rank": 4, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPAzureADGroup", - "Rank": 4 + "CommandName": "Get-PnPAzureADGroup" }, { "Id": 378, + "Rank": 5, "Command": "Get-PnPAzureADGroup -Identity $group", - "CommandName": "Get-PnPAzureADGroup", - "Rank": 5 + "CommandName": "Get-PnPAzureADGroup" }, { "Id": 379, + "Rank": 1, "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupMember", - "Rank": 1 + "CommandName": "Get-PnPAzureADGroupMember" }, { "Id": 380, + "Rank": 2, "Command": "Get-PnPAzureADGroupMember -Identity $group", - "CommandName": "Get-PnPAzureADGroupMember", - "Rank": 2 + "CommandName": "Get-PnPAzureADGroupMember" }, { "Id": 381, + "Rank": 1, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupOwner", - "Rank": 1 + "CommandName": "Get-PnPAzureADGroupOwner" }, { "Id": 382, + "Rank": 2, "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "CommandName": "Get-PnPAzureADGroupOwner", - "Rank": 2 + "CommandName": "Get-PnPAzureADGroupOwner" }, { "Id": 383, + "Rank": 1, "Command": "Get-PnPAzureADServicePrincipal", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 1 + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Id": 384, + "Rank": 2, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 2 + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Id": 385, + "Rank": 3, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 3 + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Id": 386, + "Rank": 4, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 4 + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Id": 387, + "Rank": 5, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 5 + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Id": 388, + "Rank": 1, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 1 + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { "Id": 389, + "Rank": 2, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 2 + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { "Id": 390, + "Rank": 1, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Rank": 1 + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { "Id": 391, + "Rank": 2, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Rank": 2 + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { "Id": 392, + "Rank": 1, "Command": "Get-PnPAzureADUser", - "CommandName": "Get-PnPAzureADUser", - "Rank": 1 + "CommandName": "Get-PnPAzureADUser" }, { "Id": 393, + "Rank": 2, "Command": "Get-PnPAzureADUser -EndIndex 50", - "CommandName": "Get-PnPAzureADUser", - "Rank": 2 + "CommandName": "Get-PnPAzureADUser" }, { "Id": 394, + "Rank": 3, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPAzureADUser", - "Rank": 3 + "CommandName": "Get-PnPAzureADUser" }, { "Id": 395, + "Rank": 4, "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "CommandName": "Get-PnPAzureADUser", - "Rank": 4 + "CommandName": "Get-PnPAzureADUser" }, { "Id": 396, + "Rank": 5, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "CommandName": "Get-PnPAzureADUser", - "Rank": 5 + "CommandName": "Get-PnPAzureADUser" }, { "Id": 397, + "Rank": 6, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "CommandName": "Get-PnPAzureADUser", - "Rank": 6 + "CommandName": "Get-PnPAzureADUser" }, { "Id": 398, + "Rank": 7, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "CommandName": "Get-PnPAzureADUser", - "Rank": 7 + "CommandName": "Get-PnPAzureADUser" }, { "Id": 399, + "Rank": 8, "Command": "Get-PnPAzureADUser -Delta", - "CommandName": "Get-PnPAzureADUser", - "Rank": 8 + "CommandName": "Get-PnPAzureADUser" }, { "Id": 400, + "Rank": 9, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "CommandName": "Get-PnPAzureADUser", - "Rank": 9 + "CommandName": "Get-PnPAzureADUser" }, { "Id": 401, + "Rank": 10, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "CommandName": "Get-PnPAzureADUser", - "Rank": 10 + "CommandName": "Get-PnPAzureADUser" }, { "Id": 402, + "Rank": 1, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "CommandName": "Get-PnPAzureCertificate", - "Rank": 1 + "CommandName": "Get-PnPAzureCertificate" }, { "Id": 403, + "Rank": 2, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "CommandName": "Get-PnPAzureCertificate", - "Rank": 2 + "CommandName": "Get-PnPAzureCertificate" }, { "Id": 404, + "Rank": 3, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "CommandName": "Get-PnPAzureCertificate", - "Rank": 3 + "CommandName": "Get-PnPAzureCertificate" }, { "Id": 405, + "Rank": 1, "Command": "Get-PnPBrowserIdleSignout", - "CommandName": "Get-PnPBrowserIdleSignout", - "Rank": 1 + "CommandName": "Get-PnPBrowserIdleSignout" }, { "Id": 406, + "Rank": 1, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 1 + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { "Id": 407, + "Rank": 2, "Command": "Get-PnPBuiltInDesignPackageVisibility", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2 + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { "Id": 408, + "Rank": 1, "Command": "Get-PnPBuiltInSiteTemplateSettings", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Id": 409, + "Rank": 2, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 2 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Id": 410, + "Rank": 3, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 3 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Id": 411, + "Rank": 4, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 4 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Id": 412, + "Rank": 5, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 5 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Id": 413, + "Rank": 1, "Command": "Get-PnPChangeLog", - "CommandName": "Get-PnPChangeLog", - "Rank": 1 + "CommandName": "Get-PnPChangeLog" }, { "Id": 414, + "Rank": 2, "Command": "Get-PnPChangeLog -Nightly", - "CommandName": "Get-PnPChangeLog", - "Rank": 2 + "CommandName": "Get-PnPChangeLog" }, { "Id": 415, + "Rank": 1, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Rank": 1 + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { "Id": 416, + "Rank": 2, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Rank": 2 + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { "Id": 417, + "Rank": 1, "Command": "Get-PnPContentType", - "CommandName": "Get-PnPContentType", - "Rank": 1 + "CommandName": "Get-PnPContentType" }, { "Id": 418, + "Rank": 2, "Command": "Get-PnPContentType -InSiteHierarchy", - "CommandName": "Get-PnPContentType", - "Rank": 2 + "CommandName": "Get-PnPContentType" }, { "Id": 419, + "Rank": 3, "Command": "Get-PnPContentType -Identity \"Project Document\"", - "CommandName": "Get-PnPContentType", - "Rank": 3 + "CommandName": "Get-PnPContentType" }, { "Id": 420, + "Rank": 4, "Command": "Get-PnPContentType -List \"Documents\"", - "CommandName": "Get-PnPContentType", - "Rank": 4 + "CommandName": "Get-PnPContentType" }, { "Id": 421, + "Rank": 1, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "CommandName": "Get-PnPContentTypePublishingStatus", - "Rank": 1 + "CommandName": "Get-PnPContentTypePublishingStatus" }, { "Id": 422, + "Rank": 1, "Command": "Get-PnPCustomAction", - "CommandName": "Get-PnPCustomAction", - "Rank": 1 + "CommandName": "Get-PnPCustomAction" }, { "Id": 423, + "Rank": 2, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPCustomAction", - "Rank": 2 + "CommandName": "Get-PnPCustomAction" }, { "Id": 424, + "Rank": 3, "Command": "Get-PnPCustomAction -Scope web", - "CommandName": "Get-PnPCustomAction", - "Rank": 3 + "CommandName": "Get-PnPCustomAction" }, { "Id": 425, + "Rank": 1, "Command": "Get-PnPDeletedMicrosoft365Group", - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1 + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { "Id": 426, + "Rank": 2, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Rank": 2 + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { "Id": 427, + "Rank": 1, "Command": "Get-PnPDeletedTeam", - "CommandName": "Get-PnPDeletedTeam", - "Rank": 1 + "CommandName": "Get-PnPDeletedTeam" }, { "Id": 428, + "Rank": 1, "Command": "Get-PnPDiagnostics", - "CommandName": "Get-PnPDiagnostics", - "Rank": 1 + "CommandName": "Get-PnPDiagnostics" }, { "Id": 429, + "Rank": 1, "Command": "Get-PnPDisableSpacesActivation", - "CommandName": "Get-PnPDisableSpacesActivation", - "Rank": 1 + "CommandName": "Get-PnPDisableSpacesActivation" }, { "Id": 430, + "Rank": 1, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "CommandName": "Get-PnPDocumentSetTemplate", - "Rank": 1 + "CommandName": "Get-PnPDocumentSetTemplate" }, { "Id": 431, + "Rank": 2, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "CommandName": "Get-PnPDocumentSetTemplate", - "Rank": 2 + "CommandName": "Get-PnPDocumentSetTemplate" }, { "Id": 432, + "Rank": 1, "Command": "Get-PnPEventReceiver", - "CommandName": "Get-PnPEventReceiver", - "Rank": 1 + "CommandName": "Get-PnPEventReceiver" }, { "Id": 433, + "Rank": 2, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver", - "Rank": 2 + "CommandName": "Get-PnPEventReceiver" }, { "Id": 434, + "Rank": 3, "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver", - "Rank": 3 + "CommandName": "Get-PnPEventReceiver" }, { "Id": 435, + "Rank": 4, "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "CommandName": "Get-PnPEventReceiver", - "Rank": 4 + "CommandName": "Get-PnPEventReceiver" }, { "Id": 436, + "Rank": 5, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver", - "Rank": 5 + "CommandName": "Get-PnPEventReceiver" }, { "Id": 437, + "Rank": 6, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver", - "Rank": 6 + "CommandName": "Get-PnPEventReceiver" }, { "Id": 438, + "Rank": 7, "Command": "Get-PnPEventReceiver -Scope Site", - "CommandName": "Get-PnPEventReceiver", - "Rank": 7 + "CommandName": "Get-PnPEventReceiver" }, { "Id": 439, + "Rank": 8, "Command": "Get-PnPEventReceiver -Scope Web", - "CommandName": "Get-PnPEventReceiver", - "Rank": 8 + "CommandName": "Get-PnPEventReceiver" }, { "Id": 440, + "Rank": 9, "Command": "Get-PnPEventReceiver -Scope All", - "CommandName": "Get-PnPEventReceiver", - "Rank": 9 + "CommandName": "Get-PnPEventReceiver" }, { "Id": 441, + "Rank": 1, "Command": "Get-PnPException", - "CommandName": "Get-PnPException", - "Rank": 1 + "CommandName": "Get-PnPException" }, { "Id": 442, + "Rank": 2, "Command": "Get-PnPException -All", - "CommandName": "Get-PnPException", - "Rank": 2 + "CommandName": "Get-PnPException" }, { "Id": 443, + "Rank": 1, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "CommandName": "Get-PnPExternalUser", - "Rank": 1 + "CommandName": "Get-PnPExternalUser" }, { "Id": 444, + "Rank": 2, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "CommandName": "Get-PnPExternalUser", - "Rank": 2 + "CommandName": "Get-PnPExternalUser" }, { "Id": 445, + "Rank": 1, "Command": "Get-PnPFeature", - "CommandName": "Get-PnPFeature", - "Rank": 1 + "CommandName": "Get-PnPFeature" }, { "Id": 446, + "Rank": 2, "Command": "Get-PnPFeature -Scope Site", - "CommandName": "Get-PnPFeature", - "Rank": 2 + "CommandName": "Get-PnPFeature" }, { "Id": 447, + "Rank": 3, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPFeature", - "Rank": 3 + "CommandName": "Get-PnPFeature" }, { "Id": 448, + "Rank": 4, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "CommandName": "Get-PnPFeature", - "Rank": 4 + "CommandName": "Get-PnPFeature" }, { "Id": 449, + "Rank": 1, "Command": "Get-PnPField", - "CommandName": "Get-PnPField", - "Rank": 1 + "CommandName": "Get-PnPField" }, { "Id": 450, + "Rank": 2, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Get-PnPField", - "Rank": 2 + "CommandName": "Get-PnPField" }, { "Id": 451, + "Rank": 3, "Command": "Get-PnPField -Group \"Custom Columns\"", - "CommandName": "Get-PnPField", - "Rank": 3 + "CommandName": "Get-PnPField" }, { "Id": 452, + "Rank": 1, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "CommandName": "Get-PnPFile", - "Rank": 1 + "CommandName": "Get-PnPFile" }, { "Id": 453, + "Rank": 2, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "CommandName": "Get-PnPFile", - "Rank": 2 + "CommandName": "Get-PnPFile" }, { "Id": 454, + "Rank": 3, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "CommandName": "Get-PnPFile", - "Rank": 3 + "CommandName": "Get-PnPFile" }, { "Id": 455, + "Rank": 4, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "CommandName": "Get-PnPFile", - "Rank": 4 + "CommandName": "Get-PnPFile" }, { "Id": 456, + "Rank": 5, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "CommandName": "Get-PnPFile", - "Rank": 5 + "CommandName": "Get-PnPFile" }, { "Id": 457, + "Rank": 6, "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "CommandName": "Get-PnPFile", - "Rank": 6 + "CommandName": "Get-PnPFile" }, { "Id": 458, + "Rank": 7, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "CommandName": "Get-PnPFile", - "Rank": 7 + "CommandName": "Get-PnPFile" }, { "Id": 459, + "Rank": 1, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Get-PnPFileSharingLink", - "Rank": 1 + "CommandName": "Get-PnPFileSharingLink" }, { "Id": 460, + "Rank": 1, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "CommandName": "Get-PnPFileVersion", - "Rank": 1 + "CommandName": "Get-PnPFileVersion" }, { "Id": 461, + "Rank": 2, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "CommandName": "Get-PnPFileVersion", - "Rank": 2 + "CommandName": "Get-PnPFileVersion" }, { "Id": 462, + "Rank": 1, "Command": "Get-PnPFlow -AsAdmin", - "CommandName": "Get-PnPFlow", - "Rank": 1 + "CommandName": "Get-PnPFlow" }, { "Id": 463, + "Rank": 2, "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "CommandName": "Get-PnPFlow", - "Rank": 2 + "CommandName": "Get-PnPFlow" }, { "Id": 464, + "Rank": 3, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "CommandName": "Get-PnPFlow", - "Rank": 3 + "CommandName": "Get-PnPFlow" }, { "Id": 465, + "Rank": 1, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "CommandName": "Get-PnPFlowOwner", - "Rank": 1 + "CommandName": "Get-PnPFlowOwner" }, { "Id": 466, + "Rank": 1, "Command": "Get-PnPFolder", - "CommandName": "Get-PnPFolder", - "Rank": 1 + "CommandName": "Get-PnPFolder" }, { "Id": 467, + "Rank": 2, "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "CommandName": "Get-PnPFolder", - "Rank": 2 + "CommandName": "Get-PnPFolder" }, { "Id": 468, + "Rank": 3, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "CommandName": "Get-PnPFolder", - "Rank": 3 + "CommandName": "Get-PnPFolder" }, { "Id": 469, + "Rank": 4, "Command": "Get-PnPFolder -List \"Shared Documents\"", - "CommandName": "Get-PnPFolder", - "Rank": 4 + "CommandName": "Get-PnPFolder" }, { "Id": 470, + "Rank": 1, "Command": "Get-PnPFolderFile", - "CommandName": "Get-PnPFolderFile", - "Rank": 1 + "CommandName": "Get-PnPFolderFile" }, { "Id": 471, + "Rank": 2, "Command": "Get-PnPFolderFile -Recurse", - "CommandName": "Get-PnPFolderFile", - "Rank": 2 + "CommandName": "Get-PnPFolderFile" }, { "Id": 472, + "Rank": 3, "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderFile", - "Rank": 3 + "CommandName": "Get-PnPFolderFile" }, { "Id": 473, + "Rank": 4, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderFile", - "Rank": 4 + "CommandName": "Get-PnPFolderFile" }, { "Id": 474, + "Rank": 5, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderFile", - "Rank": 5 + "CommandName": "Get-PnPFolderFile" }, { "Id": 475, + "Rank": 1, "Command": "Get-PnPFolderFolder", - "CommandName": "Get-PnPFolderFolder", - "Rank": 1 + "CommandName": "Get-PnPFolderFolder" }, { "Id": 476, + "Rank": 2, "Command": "Get-PnPFolderFolder -Recurse", - "CommandName": "Get-PnPFolderFolder", - "Rank": 2 + "CommandName": "Get-PnPFolderFolder" }, { "Id": 477, + "Rank": 3, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderFolder", - "Rank": 3 + "CommandName": "Get-PnPFolderFolder" }, { "Id": 478, + "Rank": 4, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "CommandName": "Get-PnPFolderFolder", - "Rank": 4 + "CommandName": "Get-PnPFolderFolder" }, { "Id": 479, + "Rank": 5, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "CommandName": "Get-PnPFolderFolder", - "Rank": 5 + "CommandName": "Get-PnPFolderFolder" }, { "Id": 480, + "Rank": 6, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderFolder", - "Rank": 6 + "CommandName": "Get-PnPFolderFolder" }, { "Id": 481, + "Rank": 1, "Command": "Get-PnPFolderItem", - "CommandName": "Get-PnPFolderItem", - "Rank": 1 + "CommandName": "Get-PnPFolderItem" }, { "Id": 482, + "Rank": 2, "Command": "Get-PnPFolderItem -Recurse", - "CommandName": "Get-PnPFolderItem", - "Rank": 2 + "CommandName": "Get-PnPFolderItem" }, { "Id": 483, + "Rank": 3, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderItem", - "Rank": 3 + "CommandName": "Get-PnPFolderItem" }, { "Id": 484, + "Rank": 4, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderItem", - "Rank": 4 + "CommandName": "Get-PnPFolderItem" }, { "Id": 485, + "Rank": 5, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "CommandName": "Get-PnPFolderItem", - "Rank": 5 + "CommandName": "Get-PnPFolderItem" }, { "Id": 486, + "Rank": 6, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderItem", - "Rank": 6 + "CommandName": "Get-PnPFolderItem" }, { "Id": 487, + "Rank": 1, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Get-PnPFolderSharingLink", - "Rank": 1 + "CommandName": "Get-PnPFolderSharingLink" }, { "Id": 488, + "Rank": 1, "Command": "Get-PnPFolderStorageMetric", - "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 1 + "CommandName": "Get-PnPFolderStorageMetric" }, { "Id": 489, + "Rank": 2, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 2 + "CommandName": "Get-PnPFolderStorageMetric" }, { "Id": 490, + "Rank": 3, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 3 + "CommandName": "Get-PnPFolderStorageMetric" }, { "Id": 491, + "Rank": 1, "Command": "Get-PnPFooter", - "CommandName": "Get-PnPFooter", - "Rank": 1 + "CommandName": "Get-PnPFooter" }, { "Id": 492, + "Rank": 1, "Command": "Get-PnPGraphAccessToken", - "CommandName": "Get-PnPGraphAccessToken", - "Rank": 1 + "CommandName": "Get-PnPGraphAccessToken" }, { "Id": 493, + "Rank": 2, "Command": "Get-PnPGraphAccessToken -Decoded", - "CommandName": "Get-PnPGraphAccessToken", - "Rank": 2 + "CommandName": "Get-PnPGraphAccessToken" }, { "Id": 494, + "Rank": 1, "Command": "Get-PnPGraphSubscription", - "CommandName": "Get-PnPGraphSubscription", - "Rank": 1 + "CommandName": "Get-PnPGraphSubscription" }, { "Id": 495, + "Rank": 2, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPGraphSubscription", - "Rank": 2 + "CommandName": "Get-PnPGraphSubscription" }, { "Id": 496, + "Rank": 1, "Command": "Get-PnPGroup", - "CommandName": "Get-PnPGroup", - "Rank": 1 + "CommandName": "Get-PnPGroup" }, { "Id": 497, + "Rank": 2, "Command": "Get-PnPGroup -Identity 'My Site Users'", - "CommandName": "Get-PnPGroup", - "Rank": 2 + "CommandName": "Get-PnPGroup" }, { "Id": 498, + "Rank": 3, "Command": "Get-PnPGroup -AssociatedMemberGroup", - "CommandName": "Get-PnPGroup", - "Rank": 3 + "CommandName": "Get-PnPGroup" }, { "Id": 499, + "Rank": 1, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "CommandName": "Get-PnPGroupMember", - "Rank": 1 + "CommandName": "Get-PnPGroupMember" }, { "Id": 500, + "Rank": 2, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "CommandName": "Get-PnPGroupMember", - "Rank": 2 + "CommandName": "Get-PnPGroupMember" }, { "Id": 501, + "Rank": 1, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "CommandName": "Get-PnPGroupPermissions", - "Rank": 1 + "CommandName": "Get-PnPGroupPermissions" }, { "Id": 502, + "Rank": 1, "Command": "Get-PnPHideDefaultThemes", - "CommandName": "Get-PnPHideDefaultThemes", - "Rank": 1 + "CommandName": "Get-PnPHideDefaultThemes" }, { "Id": 503, + "Rank": 1, "Command": "Get-PnPHomePage", - "CommandName": "Get-PnPHomePage", - "Rank": 1 + "CommandName": "Get-PnPHomePage" }, { "Id": 504, + "Rank": 1, "Command": "Get-PnPHomeSite", - "CommandName": "Get-PnPHomeSite", - "Rank": 1 + "CommandName": "Get-PnPHomeSite" }, { "Id": 505, + "Rank": 2, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "CommandName": "Get-PnPHomeSite", - "Rank": 2 + "CommandName": "Get-PnPHomeSite" }, { "Id": 506, + "Rank": 3, "Command": "Get-PnPHomeSite -Detailed", - "CommandName": "Get-PnPHomeSite", - "Rank": 3 + "CommandName": "Get-PnPHomeSite" }, { "Id": 507, + "Rank": 1, "Command": "Get-PnPHubSite", - "CommandName": "Get-PnPHubSite", - "Rank": 1 + "CommandName": "Get-PnPHubSite" }, { "Id": 508, + "Rank": 2, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSite", - "Rank": 2 + "CommandName": "Get-PnPHubSite" }, { "Id": 509, + "Rank": 3, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "CommandName": "Get-PnPHubSite", - "Rank": 3 + "CommandName": "Get-PnPHubSite" }, { "Id": 510, + "Rank": 1, "Command": "Get-PnPHubSiteChild", - "CommandName": "Get-PnPHubSiteChild", - "Rank": 1 + "CommandName": "Get-PnPHubSiteChild" }, { "Id": 511, + "Rank": 2, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSiteChild", - "Rank": 2 + "CommandName": "Get-PnPHubSiteChild" }, { "Id": 512, + "Rank": 1, "Command": "Get-PnPInPlaceRecordsManagement", - "CommandName": "Get-PnPInPlaceRecordsManagement", - "Rank": 1 + "CommandName": "Get-PnPInPlaceRecordsManagement" }, { "Id": 513, + "Rank": 1, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "CommandName": "Get-PnPIsSiteAliasAvailable", - "Rank": 1 + "CommandName": "Get-PnPIsSiteAliasAvailable" }, { "Id": 514, + "Rank": 1, "Command": "Get-PnPJavaScriptLink", - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 1 + "CommandName": "Get-PnPJavaScriptLink" }, { "Id": 515, + "Rank": 2, "Command": "Get-PnPJavaScriptLink -Scope All", - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 2 + "CommandName": "Get-PnPJavaScriptLink" }, { "Id": 516, + "Rank": 3, "Command": "Get-PnPJavaScriptLink -Scope Web", - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 3 + "CommandName": "Get-PnPJavaScriptLink" }, { "Id": 517, + "Rank": 4, "Command": "Get-PnPJavaScriptLink -Scope Site", - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 4 + "CommandName": "Get-PnPJavaScriptLink" }, { "Id": 518, + "Rank": 5, "Command": "Get-PnPJavaScriptLink -Name Test", - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 5 + "CommandName": "Get-PnPJavaScriptLink" }, { "Id": 519, + "Rank": 1, "Command": "Get-PnPKnowledgeHubSite", - "CommandName": "Get-PnPKnowledgeHubSite", - "Rank": 1 + "CommandName": "Get-PnPKnowledgeHubSite" }, { "Id": 520, + "Rank": 1, "Command": "Get-PnPLabel", - "CommandName": "Get-PnPLabel", - "Rank": 1 + "CommandName": "Get-PnPLabel" }, { "Id": 521, + "Rank": 2, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "CommandName": "Get-PnPLabel", - "Rank": 2 + "CommandName": "Get-PnPLabel" }, { "Id": 522, + "Rank": 1, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "CommandName": "Get-PnPLargeListOperationStatus", - "Rank": 1 + "CommandName": "Get-PnPLargeListOperationStatus" }, { "Id": 523, + "Rank": 1, "Command": "Get-PnPList", - "CommandName": "Get-PnPList", - "Rank": 1 + "CommandName": "Get-PnPList" }, { "Id": 524, + "Rank": 2, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Get-PnPList", - "Rank": 2 + "CommandName": "Get-PnPList" }, { "Id": 525, + "Rank": 3, "Command": "Get-PnPList -Identity Lists/Announcements", - "CommandName": "Get-PnPList", - "Rank": 3 + "CommandName": "Get-PnPList" }, { "Id": 526, + "Rank": 4, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "CommandName": "Get-PnPList", - "Rank": 4 + "CommandName": "Get-PnPList" }, { "Id": 527, + "Rank": 5, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "CommandName": "Get-PnPList", - "Rank": 5 + "CommandName": "Get-PnPList" }, { "Id": 528, + "Rank": 1, "Command": "Get-PnPListDesign", - "CommandName": "Get-PnPListDesign", - "Rank": 1 + "CommandName": "Get-PnPListDesign" }, { "Id": 529, + "Rank": 2, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPListDesign", - "Rank": 2 + "CommandName": "Get-PnPListDesign" }, { "Id": 530, + "Rank": 3, "Command": "Get-PnPListDesign -Identity ListEvent", - "CommandName": "Get-PnPListDesign", - "Rank": 3 + "CommandName": "Get-PnPListDesign" }, { "Id": 531, + "Rank": 1, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "CommandName": "Get-PnPListInformationRightsManagement", - "Rank": 1 + "CommandName": "Get-PnPListInformationRightsManagement" }, { "Id": 532, + "Rank": 1, "Command": "Get-PnPListItem -List Tasks", - "CommandName": "Get-PnPListItem", - "Rank": 1 + "CommandName": "Get-PnPListItem" }, { "Id": 533, + "Rank": 2, "Command": "Get-PnPListItem -List Tasks -Id 1", - "CommandName": "Get-PnPListItem", - "Rank": 2 + "CommandName": "Get-PnPListItem" }, { "Id": 534, + "Rank": 3, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "CommandName": "Get-PnPListItem", - "Rank": 3 + "CommandName": "Get-PnPListItem" }, { "Id": 535, + "Rank": 4, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "CommandName": "Get-PnPListItem", - "Rank": 4 + "CommandName": "Get-PnPListItem" }, { "Id": 536, + "Rank": 5, "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "CommandName": "Get-PnPListItem", - "Rank": 5 + "CommandName": "Get-PnPListItem" }, { "Id": 537, + "Rank": 6, "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "CommandName": "Get-PnPListItem", - "Rank": 6 + "CommandName": "Get-PnPListItem" }, { "Id": 538, + "Rank": 7, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "CommandName": "Get-PnPListItem", - "Rank": 7 + "CommandName": "Get-PnPListItem" }, { "Id": 539, + "Rank": 8, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "CommandName": "Get-PnPListItem", - "Rank": 8 + "CommandName": "Get-PnPListItem" }, { "Id": 540, + "Rank": 9, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "CommandName": "Get-PnPListItem", - "Rank": 9 + "CommandName": "Get-PnPListItem" }, { "Id": 541, + "Rank": 1, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "CommandName": "Get-PnPListItemAttachment", - "Rank": 1 + "CommandName": "Get-PnPListItemAttachment" }, { "Id": 542, + "Rank": 2, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "CommandName": "Get-PnPListItemAttachment", - "Rank": 2 + "CommandName": "Get-PnPListItemAttachment" }, { "Id": 543, + "Rank": 1, "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "CommandName": "Get-PnPListItemComment", - "Rank": 1 + "CommandName": "Get-PnPListItemComment" }, { "Id": 544, + "Rank": 1, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "CommandName": "Get-PnPListItemPermission", - "Rank": 1 + "CommandName": "Get-PnPListItemPermission" }, { "Id": 545, + "Rank": 1, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "CommandName": "Get-PnPListItemVersion", - "Rank": 1 + "CommandName": "Get-PnPListItemVersion" }, { "Id": 546, + "Rank": 1, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "CommandName": "Get-PnPListPermissions", - "Rank": 1 + "CommandName": "Get-PnPListPermissions" }, { "Id": 547, + "Rank": 2, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "CommandName": "Get-PnPListPermissions", - "Rank": 2 + "CommandName": "Get-PnPListPermissions" }, { "Id": 548, + "Rank": 1, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "CommandName": "Get-PnPListRecordDeclaration", - "Rank": 1 + "CommandName": "Get-PnPListRecordDeclaration" }, { "Id": 549, + "Rank": 1, "Command": "Get-PnPMasterPage", - "CommandName": "Get-PnPMasterPage", - "Rank": 1 + "CommandName": "Get-PnPMasterPage" }, { "Id": 550, + "Rank": 1, "Command": "Get-PnPMessageCenterAnnouncement", - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Rank": 1 + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { "Id": 551, + "Rank": 2, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Rank": 2 + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { "Id": 552, + "Rank": 1, "Command": "Get-PnPMicrosoft365ExpiringGroup", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { "Id": 553, + "Rank": 2, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { "Id": 554, + "Rank": 1, "Command": "Get-PnPMicrosoft365Group", - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365Group" }, { "Id": 555, + "Rank": 2, "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365Group" }, { "Id": 556, + "Rank": 3, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365Group" }, { "Id": 557, + "Rank": 4, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 4 + "CommandName": "Get-PnPMicrosoft365Group" }, { "Id": 558, + "Rank": 5, "Command": "Get-PnPMicrosoft365Group -Identity $group", - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 5 + "CommandName": "Get-PnPMicrosoft365Group" }, { "Id": 559, + "Rank": 6, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 6 + "CommandName": "Get-PnPMicrosoft365Group" }, { "Id": 560, + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupEndpoint", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Id": 561, + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Id": 562, + "Rank": 3, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Id": 563, + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Id": 564, + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Id": 565, + "Rank": 3, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Id": 566, + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { "Id": 567, + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { "Id": 568, + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupSettings", - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { "Id": 569, + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { "Id": 570, + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { "Id": 571, + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { "Id": 572, + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupTeam", - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Id": 573, + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Id": 574, + "Rank": 3, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Id": 575, + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Id": 576, + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Id": 577, + "Rank": 3, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Id": 578, + "Rank": 1, "Command": "Get-PnPNavigationNode", - "CommandName": "Get-PnPNavigationNode", - "Rank": 1 + "CommandName": "Get-PnPNavigationNode" }, { "Id": 579, + "Rank": 2, "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "CommandName": "Get-PnPNavigationNode", - "Rank": 2 + "CommandName": "Get-PnPNavigationNode" }, { "Id": 580, + "Rank": 3, "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "CommandName": "Get-PnPNavigationNode", - "Rank": 3 + "CommandName": "Get-PnPNavigationNode" }, { "Id": 581, + "Rank": 1, "Command": "Get-PnPOrgAssetsLibrary", - "CommandName": "Get-PnPOrgAssetsLibrary", - "Rank": 1 + "CommandName": "Get-PnPOrgAssetsLibrary" }, { "Id": 582, + "Rank": 1, "Command": "Get-PnPOrgNewsSite", - "CommandName": "Get-PnPOrgNewsSite", - "Rank": 1 + "CommandName": "Get-PnPOrgNewsSite" }, { "Id": 583, + "Rank": 1, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "CommandName": "Get-PnPPage", - "Rank": 1 + "CommandName": "Get-PnPPage" }, { "Id": 584, + "Rank": 2, "Command": "Get-PnPPage \"MyPage\"", - "CommandName": "Get-PnPPage", - "Rank": 2 + "CommandName": "Get-PnPPage" }, { "Id": 585, + "Rank": 3, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "CommandName": "Get-PnPPage", - "Rank": 3 + "CommandName": "Get-PnPPage" }, { "Id": 586, + "Rank": 4, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "CommandName": "Get-PnPPage", - "Rank": 4 + "CommandName": "Get-PnPPage" }, { "Id": 587, + "Rank": 1, "Command": "Get-PnPPageComponent -Page Home", - "CommandName": "Get-PnPPageComponent", - "Rank": 1 + "CommandName": "Get-PnPPageComponent" }, { "Id": 588, + "Rank": 2, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPPageComponent", - "Rank": 2 + "CommandName": "Get-PnPPageComponent" }, { "Id": 589, + "Rank": 3, "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "CommandName": "Get-PnPPageComponent", - "Rank": 3 + "CommandName": "Get-PnPPageComponent" }, { "Id": 590, + "Rank": 1, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerBucket", - "Rank": 1 + "CommandName": "Get-PnPPlannerBucket" }, { "Id": 591, + "Rank": 1, "Command": "Get-PnPPlannerConfiguration", - "CommandName": "Get-PnPPlannerConfiguration", - "Rank": 1 + "CommandName": "Get-PnPPlannerConfiguration" }, { "Id": 592, + "Rank": 1, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "CommandName": "Get-PnPPlannerPlan", - "Rank": 1 + "CommandName": "Get-PnPPlannerPlan" }, { "Id": 593, + "Rank": 2, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "CommandName": "Get-PnPPlannerPlan", - "Rank": 2 + "CommandName": "Get-PnPPlannerPlan" }, { "Id": 594, + "Rank": 3, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "CommandName": "Get-PnPPlannerPlan", - "Rank": 3 + "CommandName": "Get-PnPPlannerPlan" }, { "Id": 595, + "Rank": 1, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Get-PnPPlannerRosterMember", - "Rank": 1 + "CommandName": "Get-PnPPlannerRosterMember" }, { "Id": 596, + "Rank": 1, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "CommandName": "Get-PnPPlannerRosterPlan", - "Rank": 1 + "CommandName": "Get-PnPPlannerRosterPlan" }, { "Id": 597, + "Rank": 2, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerRosterPlan", - "Rank": 2 + "CommandName": "Get-PnPPlannerRosterPlan" }, { "Id": 598, + "Rank": 1, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerTask", - "Rank": 1 + "CommandName": "Get-PnPPlannerTask" }, { "Id": 599, + "Rank": 2, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask", - "Rank": 2 + "CommandName": "Get-PnPPlannerTask" }, { "Id": 600, + "Rank": 3, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask", - "Rank": 3 + "CommandName": "Get-PnPPlannerTask" }, { "Id": 601, + "Rank": 1, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerUserPolicy", - "Rank": 1 + "CommandName": "Get-PnPPlannerUserPolicy" }, { "Id": 602, + "Rank": 1, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "CommandName": "Get-PnPPowerPlatformConnector", - "Rank": 1 + "CommandName": "Get-PnPPowerPlatformConnector" }, { "Id": 603, + "Rank": 1, "Command": "Get-PnPPowerPlatformEnvironment", - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 1 + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Id": 604, + "Rank": 2, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 2 + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Id": 605, + "Rank": 3, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 3 + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Id": 606, + "Rank": 1, "Command": "Get-PnPPowerShellTelemetryEnabled", - "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1 + "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { "Id": 607, + "Rank": 1, "Command": "Get-PnPPropertyBag", - "CommandName": "Get-PnPPropertyBag", - "Rank": 1 + "CommandName": "Get-PnPPropertyBag" }, { "Id": 608, + "Rank": 2, "Command": "Get-PnPPropertyBag -Key MyKey", - "CommandName": "Get-PnPPropertyBag", - "Rank": 2 + "CommandName": "Get-PnPPropertyBag" }, { "Id": 609, + "Rank": 3, "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "CommandName": "Get-PnPPropertyBag", - "Rank": 3 + "CommandName": "Get-PnPPropertyBag" }, { "Id": 610, + "Rank": 4, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag", - "Rank": 4 + "CommandName": "Get-PnPPropertyBag" }, { "Id": 611, + "Rank": 5, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag", - "Rank": 5 + "CommandName": "Get-PnPPropertyBag" }, { "Id": 612, + "Rank": 1, "Command": "Get-PnPPublishingImageRendition", - "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 1 + "CommandName": "Get-PnPPublishingImageRendition" }, { "Id": 613, + "Rank": 2, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 2 + "CommandName": "Get-PnPPublishingImageRendition" }, { "Id": 614, + "Rank": 3, "Command": "Get-PnPPublishingImageRendition -Identity 2", - "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 3 + "CommandName": "Get-PnPPublishingImageRendition" }, { "Id": 615, + "Rank": 1, "Command": "Get-PnPRecycleBinItem", - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 1 + "CommandName": "Get-PnPRecycleBinItem" }, { "Id": 616, + "Rank": 2, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 2 + "CommandName": "Get-PnPRecycleBinItem" }, { "Id": 617, + "Rank": 3, "Command": "Get-PnPRecycleBinItem -FirstStage", - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 3 + "CommandName": "Get-PnPRecycleBinItem" }, { "Id": 618, + "Rank": 4, "Command": "Get-PnPRecycleBinItem -SecondStage", - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 4 + "CommandName": "Get-PnPRecycleBinItem" }, { "Id": 619, + "Rank": 5, "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 5 + "CommandName": "Get-PnPRecycleBinItem" }, { "Id": 620, + "Rank": 1, "Command": "Get-PnPRequestAccessEmails", - "CommandName": "Get-PnPRequestAccessEmails", - "Rank": 1 + "CommandName": "Get-PnPRequestAccessEmails" }, { "Id": 621, + "Rank": 1, "Command": "Get-PnPRoleDefinition", - "CommandName": "Get-PnPRoleDefinition", - "Rank": 1 + "CommandName": "Get-PnPRoleDefinition" }, { "Id": 622, + "Rank": 2, "Command": "Get-PnPRoleDefinition -Identity Read", - "CommandName": "Get-PnPRoleDefinition", - "Rank": 2 + "CommandName": "Get-PnPRoleDefinition" }, { "Id": 623, + "Rank": 3, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "CommandName": "Get-PnPRoleDefinition", - "Rank": 3 + "CommandName": "Get-PnPRoleDefinition" }, { "Id": 624, + "Rank": 1, "Command": "Get-PnPSearchConfiguration", - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 1 + "CommandName": "Get-PnPSearchConfiguration" }, { "Id": 625, + "Rank": 2, "Command": "Get-PnPSearchConfiguration -Scope Site", - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 2 + "CommandName": "Get-PnPSearchConfiguration" }, { "Id": 626, + "Rank": 3, "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 3 + "CommandName": "Get-PnPSearchConfiguration" }, { "Id": 627, + "Rank": 4, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 4 + "CommandName": "Get-PnPSearchConfiguration" }, { "Id": 628, + "Rank": 5, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 5 + "CommandName": "Get-PnPSearchConfiguration" }, { "Id": 629, + "Rank": 6, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 6 + "CommandName": "Get-PnPSearchConfiguration" }, { "Id": 630, + "Rank": 7, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 7 + "CommandName": "Get-PnPSearchConfiguration" }, { "Id": 631, + "Rank": 8, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 8 + "CommandName": "Get-PnPSearchConfiguration" }, { "Id": 632, + "Rank": 1, "Command": "Get-PnPSearchCrawlLog", - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 1 + "CommandName": "Get-PnPSearchCrawlLog" }, { "Id": 633, + "Rank": 2, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 2 + "CommandName": "Get-PnPSearchCrawlLog" }, { "Id": 634, + "Rank": 3, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 3 + "CommandName": "Get-PnPSearchCrawlLog" }, { "Id": 635, + "Rank": 4, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 4 + "CommandName": "Get-PnPSearchCrawlLog" }, { "Id": 636, + "Rank": 5, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 5 + "CommandName": "Get-PnPSearchCrawlLog" }, { "Id": 637, + "Rank": 6, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 6 + "CommandName": "Get-PnPSearchCrawlLog" }, { "Id": 638, + "Rank": 7, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 7 + "CommandName": "Get-PnPSearchCrawlLog" }, { "Id": 639, + "Rank": 1, "Command": "Get-PnPSearchSettings", - "CommandName": "Get-PnPSearchSettings", - "Rank": 1 + "CommandName": "Get-PnPSearchSettings" }, { "Id": 640, + "Rank": 1, "Command": "Get-PnPServiceCurrentHealth", - "CommandName": "Get-PnPServiceCurrentHealth", - "Rank": 1 + "CommandName": "Get-PnPServiceCurrentHealth" }, { "Id": 641, + "Rank": 2, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "CommandName": "Get-PnPServiceCurrentHealth", - "Rank": 2 + "CommandName": "Get-PnPServiceCurrentHealth" }, { "Id": 642, + "Rank": 1, "Command": "Get-PnPServiceHealthIssue", - "CommandName": "Get-PnPServiceHealthIssue", - "Rank": 1 + "CommandName": "Get-PnPServiceHealthIssue" }, { "Id": 643, + "Rank": 2, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "CommandName": "Get-PnPServiceHealthIssue", - "Rank": 2 + "CommandName": "Get-PnPServiceHealthIssue" }, { "Id": 644, + "Rank": 1, "Command": "Get-PnPSharePointAddIn", - "CommandName": "Get-PnPSharePointAddIn", - "Rank": 1 + "CommandName": "Get-PnPSharePointAddIn" }, { "Id": 645, + "Rank": 2, "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "CommandName": "Get-PnPSharePointAddIn", - "Rank": 2 + "CommandName": "Get-PnPSharePointAddIn" }, { "Id": 646, + "Rank": 1, "Command": "Get-PnPSharingForNonOwnersOfSite", - "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1 + "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { "Id": 647, + "Rank": 1, "Command": "Get-PnPSite", - "CommandName": "Get-PnPSite", - "Rank": 1 + "CommandName": "Get-PnPSite" }, { "Id": 648, + "Rank": 2, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "CommandName": "Get-PnPSite", - "Rank": 2 + "CommandName": "Get-PnPSite" }, { "Id": 649, + "Rank": 1, "Command": "Get-PnPSiteClosure", - "CommandName": "Get-PnPSiteClosure", - "Rank": 1 + "CommandName": "Get-PnPSiteClosure" }, { "Id": 650, + "Rank": 1, "Command": "Get-PnPSiteCollectionAdmin", - "CommandName": "Get-PnPSiteCollectionAdmin", - "Rank": 1 + "CommandName": "Get-PnPSiteCollectionAdmin" }, { "Id": 651, + "Rank": 1, "Command": "Get-PnPSiteCollectionAppCatalog", - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1 + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Id": 652, + "Rank": 2, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 2 + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Id": 653, + "Rank": 3, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 3 + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Id": 654, + "Rank": 1, "Command": "Get-PnPSiteCollectionTermStore", - "CommandName": "Get-PnPSiteCollectionTermStore", - "Rank": 1 + "CommandName": "Get-PnPSiteCollectionTermStore" }, { "Id": 655, + "Rank": 1, "Command": "Get-PnPSiteDesign", - "CommandName": "Get-PnPSiteDesign", - "Rank": 1 + "CommandName": "Get-PnPSiteDesign" }, { "Id": 656, + "Rank": 2, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesign", - "Rank": 2 + "CommandName": "Get-PnPSiteDesign" }, { "Id": 657, + "Rank": 1, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesignRights", - "Rank": 1 + "CommandName": "Get-PnPSiteDesignRights" }, { "Id": 658, + "Rank": 1, "Command": "Get-PnPSiteDesignRun", - "CommandName": "Get-PnPSiteDesignRun", - "Rank": 1 + "CommandName": "Get-PnPSiteDesignRun" }, { "Id": 659, + "Rank": 2, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignRun", - "Rank": 2 + "CommandName": "Get-PnPSiteDesignRun" }, { "Id": 660, + "Rank": 1, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Get-PnPSiteDesignTask", - "Rank": 1 + "CommandName": "Get-PnPSiteDesignTask" }, { "Id": 661, + "Rank": 2, "Command": "Get-PnPSiteDesignTask", - "CommandName": "Get-PnPSiteDesignTask", - "Rank": 2 + "CommandName": "Get-PnPSiteDesignTask" }, { "Id": 662, + "Rank": 3, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignTask", - "Rank": 3 + "CommandName": "Get-PnPSiteDesignTask" }, { "Id": 663, + "Rank": 1, "Command": "Get-PnPSiteGroup", - "CommandName": "Get-PnPSiteGroup", - "Rank": 1 + "CommandName": "Get-PnPSiteGroup" }, { "Id": 664, + "Rank": 2, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup", - "Rank": 2 + "CommandName": "Get-PnPSiteGroup" }, { "Id": 665, + "Rank": 3, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "CommandName": "Get-PnPSiteGroup", - "Rank": 3 + "CommandName": "Get-PnPSiteGroup" }, { "Id": 666, + "Rank": 4, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup", - "Rank": 4 + "CommandName": "Get-PnPSiteGroup" }, { "Id": 667, + "Rank": 1, "Command": "Get-PnPSitePolicy", - "CommandName": "Get-PnPSitePolicy", - "Rank": 1 + "CommandName": "Get-PnPSitePolicy" }, { "Id": 668, + "Rank": 2, "Command": "Get-PnPSitePolicy -AllAvailable", - "CommandName": "Get-PnPSitePolicy", - "Rank": 2 + "CommandName": "Get-PnPSitePolicy" }, { "Id": 669, + "Rank": 3, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Get-PnPSitePolicy", - "Rank": 3 + "CommandName": "Get-PnPSitePolicy" }, { "Id": 670, + "Rank": 1, "Command": "Get-PnPSiteScript", - "CommandName": "Get-PnPSiteScript", - "Rank": 1 + "CommandName": "Get-PnPSiteScript" }, { "Id": 671, + "Rank": 2, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteScript", - "Rank": 2 + "CommandName": "Get-PnPSiteScript" }, { "Id": 672, + "Rank": 1, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 1 + "CommandName": "Get-PnPSiteScriptFromList" }, { "Id": 673, + "Rank": 2, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 2 + "CommandName": "Get-PnPSiteScriptFromList" }, { "Id": 674, + "Rank": 3, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 3 + "CommandName": "Get-PnPSiteScriptFromList" }, { "Id": 675, + "Rank": 1, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 1 + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Id": 676, + "Rank": 2, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 2 + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Id": 677, + "Rank": 3, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 3 + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Id": 678, + "Rank": 4, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 4 + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Id": 679, + "Rank": 5, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 5 + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Id": 680, + "Rank": 6, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 6 + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Id": 681, + "Rank": 1, "Command": "Get-PnPSiteSearchQueryResults", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 1 + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Id": 682, + "Rank": 2, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 2 + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Id": 683, + "Rank": 3, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 3 + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Id": 684, + "Rank": 4, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 4 + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Id": 685, + "Rank": 5, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 5 + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Id": 686, + "Rank": 6, "Command": "Get-PnPSiteSearchQueryResults -All", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 6 + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Id": 687, + "Rank": 1, "Command": "Get-PnPSiteSensitivityLabel", - "CommandName": "Get-PnPSiteSensitivityLabel", - "Rank": 1 + "CommandName": "Get-PnPSiteSensitivityLabel" }, { "Id": 688, + "Rank": 1, "Command": "Get-PnPSiteTemplate -Out template.pnp", - "CommandName": "Get-PnPSiteTemplate", - "Rank": 1 + "CommandName": "Get-PnPSiteTemplate" }, { "Id": 689, + "Rank": 2, "Command": "Get-PnPSiteTemplate -Out template.xml", - "CommandName": "Get-PnPSiteTemplate", - "Rank": 2 + "CommandName": "Get-PnPSiteTemplate" }, { "Id": 690, + "Rank": 3, "Command": "Get-PnPSiteTemplate -Out template.md", - "CommandName": "Get-PnPSiteTemplate", - "Rank": 3 + "CommandName": "Get-PnPSiteTemplate" }, { "Id": 691, + "Rank": 4, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "CommandName": "Get-PnPSiteTemplate", - "Rank": 4 + "CommandName": "Get-PnPSiteTemplate" }, { "Id": 692, + "Rank": 5, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "CommandName": "Get-PnPSiteTemplate", - "Rank": 5 + "CommandName": "Get-PnPSiteTemplate" }, { "Id": 693, + "Rank": 6, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "CommandName": "Get-PnPSiteTemplate", - "Rank": 6 + "CommandName": "Get-PnPSiteTemplate" }, { "Id": 694, + "Rank": 7, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "CommandName": "Get-PnPSiteTemplate", - "Rank": 7 + "CommandName": "Get-PnPSiteTemplate" }, { "Id": 695, + "Rank": 8, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "CommandName": "Get-PnPSiteTemplate", - "Rank": 8 + "CommandName": "Get-PnPSiteTemplate" }, { "Id": 696, + "Rank": 9, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate", - "Rank": 9 + "CommandName": "Get-PnPSiteTemplate" }, { "Id": 697, + "Rank": 10, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "CommandName": "Get-PnPSiteTemplate", - "Rank": 10 + "CommandName": "Get-PnPSiteTemplate" }, { "Id": 698, + "Rank": 11, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "CommandName": "Get-PnPSiteTemplate", - "Rank": 11 + "CommandName": "Get-PnPSiteTemplate" }, { "Id": 699, + "Rank": 12, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "CommandName": "Get-PnPSiteTemplate", - "Rank": 12 + "CommandName": "Get-PnPSiteTemplate" }, { "Id": 700, + "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": 13 + "CommandName": "Get-PnPSiteTemplate" }, { "Id": 701, + "Rank": 14, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate", - "Rank": 14 + "CommandName": "Get-PnPSiteTemplate" }, { "Id": 702, + "Rank": 1, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Get-PnPSiteUserInvitations", - "Rank": 1 + "CommandName": "Get-PnPSiteUserInvitations" }, { "Id": 703, + "Rank": 1, "Command": "Get-PnPStorageEntity", - "CommandName": "Get-PnPStorageEntity", - "Rank": 1 + "CommandName": "Get-PnPStorageEntity" }, { "Id": 704, + "Rank": 2, "Command": "Get-PnPStorageEntity -Key MyKey", - "CommandName": "Get-PnPStorageEntity", - "Rank": 2 + "CommandName": "Get-PnPStorageEntity" }, { "Id": 705, + "Rank": 3, "Command": "Get-PnPStorageEntity -Scope Site", - "CommandName": "Get-PnPStorageEntity", - "Rank": 3 + "CommandName": "Get-PnPStorageEntity" }, { "Id": 706, + "Rank": 4, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Get-PnPStorageEntity", - "Rank": 4 + "CommandName": "Get-PnPStorageEntity" }, { "Id": 707, + "Rank": 1, "Command": "Get-PnPStoredCredential -Name O365", - "CommandName": "Get-PnPStoredCredential", - "Rank": 1 + "CommandName": "Get-PnPStoredCredential" }, { "Id": 708, + "Rank": 1, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Rank": 1 + "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { "Id": 709, + "Rank": 1, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Rank": 1 + "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { "Id": 710, + "Rank": 1, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Rank": 1 + "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { "Id": 711, + "Rank": 1, "Command": "Get-PnPSubWeb", - "CommandName": "Get-PnPSubWeb", - "Rank": 1 + "CommandName": "Get-PnPSubWeb" }, { "Id": 712, + "Rank": 2, "Command": "Get-PnPSubWeb -Recurse", - "CommandName": "Get-PnPSubWeb", - "Rank": 2 + "CommandName": "Get-PnPSubWeb" }, { "Id": 713, + "Rank": 3, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "CommandName": "Get-PnPSubWeb", - "Rank": 3 + "CommandName": "Get-PnPSubWeb" }, { "Id": 714, + "Rank": 4, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "CommandName": "Get-PnPSubWeb", - "Rank": 4 + "CommandName": "Get-PnPSubWeb" }, { "Id": 715, + "Rank": 5, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "CommandName": "Get-PnPSubWeb", - "Rank": 5 + "CommandName": "Get-PnPSubWeb" }, { "Id": 716, + "Rank": 1, "Command": "Get-PnPSyntexModel", - "CommandName": "Get-PnPSyntexModel", - "Rank": 1 + "CommandName": "Get-PnPSyntexModel" }, { "Id": 717, + "Rank": 2, "Command": "Get-PnPSyntexModel -Identity 1", - "CommandName": "Get-PnPSyntexModel", - "Rank": 2 + "CommandName": "Get-PnPSyntexModel" }, { "Id": 718, + "Rank": 3, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModel", - "Rank": 3 + "CommandName": "Get-PnPSyntexModel" }, { "Id": 719, + "Rank": 1, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModelPublication", - "Rank": 1 + "CommandName": "Get-PnPSyntexModelPublication" }, { "Id": 720, + "Rank": 1, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "CommandName": "Get-PnPTaxonomyItem", - "Rank": 1 + "CommandName": "Get-PnPTaxonomyItem" }, { "Id": 721, + "Rank": 1, "Command": "Get-PnPTeamsApp", - "CommandName": "Get-PnPTeamsApp", - "Rank": 1 + "CommandName": "Get-PnPTeamsApp" }, { "Id": 722, + "Rank": 2, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "CommandName": "Get-PnPTeamsApp", - "Rank": 2 + "CommandName": "Get-PnPTeamsApp" }, { "Id": 723, + "Rank": 3, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "CommandName": "Get-PnPTeamsApp", - "Rank": 3 + "CommandName": "Get-PnPTeamsApp" }, { "Id": 724, + "Rank": 1, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "CommandName": "Get-PnPTeamsChannel", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannel" }, { "Id": 725, + "Rank": 2, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannel", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannel" }, { "Id": 726, + "Rank": 3, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannel", - "Rank": 3 + "CommandName": "Get-PnPTeamsChannel" }, { "Id": 727, + "Rank": 1, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { "Id": 728, + "Rank": 2, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { "Id": 729, + "Rank": 1, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelMessage", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannelMessage" }, { "Id": 730, + "Rank": 2, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "CommandName": "Get-PnPTeamsChannelMessage", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannelMessage" }, { "Id": 731, + "Rank": 1, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { "Id": 732, + "Rank": 2, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { "Id": 733, + "Rank": 1, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannelUser" }, { "Id": 734, + "Rank": 2, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannelUser" }, { "Id": 735, + "Rank": 3, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 3 + "CommandName": "Get-PnPTeamsChannelUser" }, { "Id": 736, + "Rank": 4, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 4 + "CommandName": "Get-PnPTeamsChannelUser" }, { "Id": 737, + "Rank": 1, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Rank": 1 + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { "Id": 738, + "Rank": 2, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Rank": 2 + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { "Id": 739, + "Rank": 1, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "CommandName": "Get-PnPTeamsTab", - "Rank": 1 + "CommandName": "Get-PnPTeamsTab" }, { "Id": 740, + "Rank": 2, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "CommandName": "Get-PnPTeamsTab", - "Rank": 2 + "CommandName": "Get-PnPTeamsTab" }, { "Id": 741, + "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", - "Rank": 3 + "CommandName": "Get-PnPTeamsTab" }, { "Id": 742, + "Rank": 4, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsTab", - "Rank": 4 + "CommandName": "Get-PnPTeamsTab" }, { "Id": 743, + "Rank": 5, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "CommandName": "Get-PnPTeamsTab", - "Rank": 5 + "CommandName": "Get-PnPTeamsTab" }, { "Id": 744, + "Rank": 1, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Get-PnPTeamsTag", - "Rank": 1 + "CommandName": "Get-PnPTeamsTag" }, { "Id": 745, + "Rank": 2, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Get-PnPTeamsTag", - "Rank": 2 + "CommandName": "Get-PnPTeamsTag" }, { "Id": 746, + "Rank": 1, "Command": "Get-PnPTeamsTeam", - "CommandName": "Get-PnPTeamsTeam", - "Rank": 1 + "CommandName": "Get-PnPTeamsTeam" }, { "Id": 747, + "Rank": 2, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "CommandName": "Get-PnPTeamsTeam", - "Rank": 2 + "CommandName": "Get-PnPTeamsTeam" }, { "Id": 748, + "Rank": 3, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "CommandName": "Get-PnPTeamsTeam", - "Rank": 3 + "CommandName": "Get-PnPTeamsTeam" }, { "Id": 749, + "Rank": 4, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam", - "Rank": 4 + "CommandName": "Get-PnPTeamsTeam" }, { "Id": 750, + "Rank": 5, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam", - "Rank": 5 + "CommandName": "Get-PnPTeamsTeam" }, { "Id": 751, + "Rank": 1, "Command": "Get-PnPTeamsUser -Team MyTeam", - "CommandName": "Get-PnPTeamsUser", - "Rank": 1 + "CommandName": "Get-PnPTeamsUser" }, { "Id": 752, + "Rank": 2, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "CommandName": "Get-PnPTeamsUser", - "Rank": 2 + "CommandName": "Get-PnPTeamsUser" }, { "Id": 753, + "Rank": 3, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "CommandName": "Get-PnPTeamsUser", - "Rank": 3 + "CommandName": "Get-PnPTeamsUser" }, { "Id": 754, + "Rank": 4, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "CommandName": "Get-PnPTeamsUser", - "Rank": 4 + "CommandName": "Get-PnPTeamsUser" }, { "Id": 755, + "Rank": 1, "Command": "Get-PnPTemporarilyDisableAppBar", - "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1 + "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { "Id": 756, + "Rank": 1, "Command": "Get-PnPTenant", - "CommandName": "Get-PnPTenant", - "Rank": 1 + "CommandName": "Get-PnPTenant" }, { "Id": 757, + "Rank": 1, "Command": "Get-PnPTenantAppCatalogUrl", - "CommandName": "Get-PnPTenantAppCatalogUrl", - "Rank": 1 + "CommandName": "Get-PnPTenantAppCatalogUrl" }, { "Id": 758, + "Rank": 1, "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "CommandName": "Get-PnPTenantCdnEnabled", - "Rank": 1 + "CommandName": "Get-PnPTenantCdnEnabled" }, { "Id": 759, + "Rank": 1, "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "CommandName": "Get-PnPTenantCdnOrigin", - "Rank": 1 + "CommandName": "Get-PnPTenantCdnOrigin" }, { "Id": 760, + "Rank": 1, "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "CommandName": "Get-PnPTenantCdnPolicies", - "Rank": 1 + "CommandName": "Get-PnPTenantCdnPolicies" }, { "Id": 761, + "Rank": 1, "Command": "Get-PnPTenantDeletedSite", - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 1 + "CommandName": "Get-PnPTenantDeletedSite" }, { "Id": 762, + "Rank": 2, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 2 + "CommandName": "Get-PnPTenantDeletedSite" }, { "Id": 763, + "Rank": 3, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 3 + "CommandName": "Get-PnPTenantDeletedSite" }, { "Id": 764, + "Rank": 4, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 4 + "CommandName": "Get-PnPTenantDeletedSite" }, { "Id": 765, + "Rank": 1, "Command": "Get-PnPTenantId", - "CommandName": "Get-PnPTenantId", - "Rank": 1 + "CommandName": "Get-PnPTenantId" }, { "Id": 766, + "Rank": 2, "Command": "Get-PnPTenantId contoso", - "CommandName": "Get-PnPTenantId", - "Rank": 2 + "CommandName": "Get-PnPTenantId" }, { "Id": 767, + "Rank": 3, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "CommandName": "Get-PnPTenantId", - "Rank": 3 + "CommandName": "Get-PnPTenantId" }, { "Id": 768, + "Rank": 4, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "CommandName": "Get-PnPTenantId", - "Rank": 4 + "CommandName": "Get-PnPTenantId" }, { "Id": 769, + "Rank": 1, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "CommandName": "Get-PnPTenantInfo", - "Rank": 1 + "CommandName": "Get-PnPTenantInfo" }, { "Id": 770, + "Rank": 2, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "CommandName": "Get-PnPTenantInfo", - "Rank": 2 + "CommandName": "Get-PnPTenantInfo" }, { "Id": 771, + "Rank": 3, "Command": "Get-PnPTenantInfo", - "CommandName": "Get-PnPTenantInfo", - "Rank": 3 + "CommandName": "Get-PnPTenantInfo" }, { "Id": 772, + "Rank": 4, "Command": "Get-PnPTenantInfo -CurrentTenant", - "CommandName": "Get-PnPTenantInfo", - "Rank": 4 + "CommandName": "Get-PnPTenantInfo" }, { "Id": 773, + "Rank": 1, "Command": "Get-PnPTenantInstance", - "CommandName": "Get-PnPTenantInstance", - "Rank": 1 + "CommandName": "Get-PnPTenantInstance" }, { "Id": 774, + "Rank": 1, "Command": "Get-PnPTenantRecycleBinItem", - "CommandName": "Get-PnPTenantRecycleBinItem", - "Rank": 1 + "CommandName": "Get-PnPTenantRecycleBinItem" }, { "Id": 775, + "Rank": 1, "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "CommandName": "Get-PnPTenantSequence", - "Rank": 1 + "CommandName": "Get-PnPTenantSequence" }, { "Id": 776, + "Rank": 2, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "CommandName": "Get-PnPTenantSequence", - "Rank": 2 + "CommandName": "Get-PnPTenantSequence" }, { "Id": 777, + "Rank": 1, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "CommandName": "Get-PnPTenantSequenceSite", - "Rank": 1 + "CommandName": "Get-PnPTenantSequenceSite" }, { "Id": 778, + "Rank": 2, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "CommandName": "Get-PnPTenantSequenceSite", - "Rank": 2 + "CommandName": "Get-PnPTenantSequenceSite" }, { "Id": 779, + "Rank": 1, "Command": "Get-PnPTenantSite", - "CommandName": "Get-PnPTenantSite", - "Rank": 1 + "CommandName": "Get-PnPTenantSite" }, { "Id": 780, + "Rank": 2, "Command": "Get-PnPTenantSite -Detailed", - "CommandName": "Get-PnPTenantSite", - "Rank": 2 + "CommandName": "Get-PnPTenantSite" }, { "Id": 781, + "Rank": 3, "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "CommandName": "Get-PnPTenantSite", - "Rank": 3 + "CommandName": "Get-PnPTenantSite" }, { "Id": 782, + "Rank": 4, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "CommandName": "Get-PnPTenantSite", - "Rank": 4 + "CommandName": "Get-PnPTenantSite" }, { "Id": 783, + "Rank": 5, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "CommandName": "Get-PnPTenantSite", - "Rank": 5 + "CommandName": "Get-PnPTenantSite" }, { "Id": 784, + "Rank": 6, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "CommandName": "Get-PnPTenantSite", - "Rank": 6 + "CommandName": "Get-PnPTenantSite" }, { "Id": 785, + "Rank": 7, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "CommandName": "Get-PnPTenantSite", - "Rank": 7 + "CommandName": "Get-PnPTenantSite" }, { "Id": 786, + "Rank": 8, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "CommandName": "Get-PnPTenantSite", - "Rank": 8 + "CommandName": "Get-PnPTenantSite" }, { "Id": 787, + "Rank": 9, "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "CommandName": "Get-PnPTenantSite", - "Rank": 9 + "CommandName": "Get-PnPTenantSite" }, { "Id": 788, + "Rank": 1, "Command": "Get-PnPTenantSyncClientRestriction", - "CommandName": "Get-PnPTenantSyncClientRestriction", - "Rank": 1 + "CommandName": "Get-PnPTenantSyncClientRestriction" }, { "Id": 789, + "Rank": 1, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "CommandName": "Get-PnPTenantTemplate", - "Rank": 1 + "CommandName": "Get-PnPTenantTemplate" }, { "Id": 790, + "Rank": 2, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "CommandName": "Get-PnPTenantTemplate", - "Rank": 2 + "CommandName": "Get-PnPTenantTemplate" }, { "Id": 791, + "Rank": 3, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "CommandName": "Get-PnPTenantTemplate", - "Rank": 3 + "CommandName": "Get-PnPTenantTemplate" }, { "Id": 792, + "Rank": 1, "Command": "Get-PnPTenantTheme", - "CommandName": "Get-PnPTenantTheme", - "Rank": 1 + "CommandName": "Get-PnPTenantTheme" }, { "Id": 793, + "Rank": 2, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Get-PnPTenantTheme", - "Rank": 2 + "CommandName": "Get-PnPTenantTheme" }, { "Id": 794, + "Rank": 3, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "CommandName": "Get-PnPTenantTheme", - "Rank": 3 + "CommandName": "Get-PnPTenantTheme" }, { "Id": 795, + "Rank": 1, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", - "Rank": 1 + "CommandName": "Get-PnPTerm" }, { "Id": 796, + "Rank": 2, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", - "Rank": 2 + "CommandName": "Get-PnPTerm" }, { "Id": 797, + "Rank": 3, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", - "Rank": 3 + "CommandName": "Get-PnPTerm" }, { "Id": 798, + "Rank": 4, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "CommandName": "Get-PnPTerm", - "Rank": 4 + "CommandName": "Get-PnPTerm" }, { "Id": 799, + "Rank": 5, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "CommandName": "Get-PnPTerm", - "Rank": 5 + "CommandName": "Get-PnPTerm" }, { "Id": 800, + "Rank": 1, "Command": "Get-PnPTermGroup", - "CommandName": "Get-PnPTermGroup", - "Rank": 1 + "CommandName": "Get-PnPTermGroup" }, { "Id": 801, + "Rank": 2, "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "CommandName": "Get-PnPTermGroup", - "Rank": 2 + "CommandName": "Get-PnPTermGroup" }, { "Id": 802, + "Rank": 3, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "CommandName": "Get-PnPTermGroup", - "Rank": 3 + "CommandName": "Get-PnPTermGroup" }, { "Id": 803, + "Rank": 1, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "CommandName": "Get-PnPTermLabel", - "Rank": 1 + "CommandName": "Get-PnPTermLabel" }, { "Id": 804, + "Rank": 2, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "CommandName": "Get-PnPTermLabel", - "Rank": 2 + "CommandName": "Get-PnPTermLabel" }, { "Id": 805, + "Rank": 3, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermLabel", - "Rank": 3 + "CommandName": "Get-PnPTermLabel" }, { "Id": 806, + "Rank": 1, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet", - "Rank": 1 + "CommandName": "Get-PnPTermSet" }, { "Id": 807, + "Rank": 2, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet", - "Rank": 2 + "CommandName": "Get-PnPTermSet" }, { "Id": 808, + "Rank": 3, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "CommandName": "Get-PnPTermSet", - "Rank": 3 + "CommandName": "Get-PnPTermSet" }, { "Id": 809, + "Rank": 1, "Command": "Get-PnPTheme", - "CommandName": "Get-PnPTheme", - "Rank": 1 + "CommandName": "Get-PnPTheme" }, { "Id": 810, + "Rank": 2, "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "CommandName": "Get-PnPTheme", - "Rank": 2 + "CommandName": "Get-PnPTheme" }, { "Id": 811, + "Rank": 1, "Command": "Get-PnPTimeZoneId", - "CommandName": "Get-PnPTimeZoneId", - "Rank": 1 + "CommandName": "Get-PnPTimeZoneId" }, { "Id": 812, + "Rank": 2, "Command": "Get-PnPTimeZoneId -Match Stockholm", - "CommandName": "Get-PnPTimeZoneId", - "Rank": 2 + "CommandName": "Get-PnPTimeZoneId" }, { "Id": 813, + "Rank": 1, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "CommandName": "Get-PnPUnfurlLink", - "Rank": 1 + "CommandName": "Get-PnPUnfurlLink" }, { "Id": 814, + "Rank": 1, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "CommandName": "Get-PnPUnifiedAuditLog", - "Rank": 1 + "CommandName": "Get-PnPUnifiedAuditLog" }, { "Id": 815, + "Rank": 1, "Command": "Get-PnPUPABulkImportStatus", - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 1 + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Id": 816, + "Rank": 2, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 2 + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Id": 817, + "Rank": 3, "Command": "Get-PnPUPABulkImportStatus -JobId ", - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 3 + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Id": 818, + "Rank": 4, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 4 + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Id": 819, + "Rank": 1, "Command": "Get-PnPUser", - "CommandName": "Get-PnPUser", - "Rank": 1 + "CommandName": "Get-PnPUser" }, { "Id": 820, + "Rank": 2, "Command": "Get-PnPUser -Identity 23", - "CommandName": "Get-PnPUser", - "Rank": 2 + "CommandName": "Get-PnPUser" }, { "Id": 821, + "Rank": 3, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser", - "Rank": 3 + "CommandName": "Get-PnPUser" }, { "Id": 822, + "Rank": 4, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser", - "Rank": 4 + "CommandName": "Get-PnPUser" }, { "Id": 823, + "Rank": 5, "Command": "Get-PnPUser -WithRightsAssigned", - "CommandName": "Get-PnPUser", - "Rank": 5 + "CommandName": "Get-PnPUser" }, { "Id": 824, + "Rank": 6, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "CommandName": "Get-PnPUser", - "Rank": 6 + "CommandName": "Get-PnPUser" }, { "Id": 825, + "Rank": 7, "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "CommandName": "Get-PnPUser", - "Rank": 7 + "CommandName": "Get-PnPUser" }, { "Id": 826, + "Rank": 1, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "CommandName": "Get-PnPUserOneDriveQuota", - "Rank": 1 + "CommandName": "Get-PnPUserOneDriveQuota" }, { "Id": 827, + "Rank": 1, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "CommandName": "Get-PnPUserProfileProperty", - "Rank": 1 + "CommandName": "Get-PnPUserProfileProperty" }, { "Id": 828, + "Rank": 2, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "CommandName": "Get-PnPUserProfileProperty", - "Rank": 2 + "CommandName": "Get-PnPUserProfileProperty" }, { "Id": 829, + "Rank": 3, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "CommandName": "Get-PnPUserProfileProperty", - "Rank": 3 + "CommandName": "Get-PnPUserProfileProperty" }, { "Id": 830, + "Rank": 1, "Command": "Get-PnPView -List \"Demo List\"", - "CommandName": "Get-PnPView", - "Rank": 1 + "CommandName": "Get-PnPView" }, { "Id": 831, + "Rank": 2, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "CommandName": "Get-PnPView", - "Rank": 2 + "CommandName": "Get-PnPView" }, { "Id": 832, + "Rank": 3, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "CommandName": "Get-PnPView", - "Rank": 3 + "CommandName": "Get-PnPView" }, { "Id": 833, + "Rank": 1, "Command": "Get-PnPVivaConnectionsDashboardACE", - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1 + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { "Id": 834, + "Rank": 2, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 2 + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { "Id": 835, + "Rank": 1, "Command": "Get-PnPWeb", - "CommandName": "Get-PnPWeb", - "Rank": 1 + "CommandName": "Get-PnPWeb" }, { "Id": 836, + "Rank": 1, "Command": "Get-PnPWebHeader", - "CommandName": "Get-PnPWebHeader", - "Rank": 1 + "CommandName": "Get-PnPWebHeader" }, { "Id": 837, + "Rank": 1, "Command": "Get-PnPWebhookSubscriptions -List MyList", - "CommandName": "Get-PnPWebhookSubscriptions", - "Rank": 1 + "CommandName": "Get-PnPWebhookSubscriptions" }, { "Id": 838, + "Rank": 1, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "CommandName": "Get-PnPWebPart", - "Rank": 1 + "CommandName": "Get-PnPWebPart" }, { "Id": 839, + "Rank": 2, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPart", - "Rank": 2 + "CommandName": "Get-PnPWebPart" }, { "Id": 840, + "Rank": 1, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "CommandName": "Get-PnPWebPartProperty", - "Rank": 1 + "CommandName": "Get-PnPWebPartProperty" }, { "Id": 841, + "Rank": 2, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "CommandName": "Get-PnPWebPartProperty", - "Rank": 2 + "CommandName": "Get-PnPWebPartProperty" }, { "Id": 842, + "Rank": 1, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPartXml", - "Rank": 1 + "CommandName": "Get-PnPWebPartXml" }, { "Id": 843, + "Rank": 1, "Command": "Get-PnPWebTemplates", - "CommandName": "Get-PnPWebTemplates", - "Rank": 1 + "CommandName": "Get-PnPWebTemplates" }, { "Id": 844, + "Rank": 2, "Command": "Get-PnPWebTemplates -LCID 1033", - "CommandName": "Get-PnPWebTemplates", - "Rank": 2 + "CommandName": "Get-PnPWebTemplates" }, { "Id": 845, + "Rank": 3, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "CommandName": "Get-PnPWebTemplates", - "Rank": 3 + "CommandName": "Get-PnPWebTemplates" }, { "Id": 846, + "Rank": 1, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "CommandName": "Get-PnPWikiPageContent", - "Rank": 1 + "CommandName": "Get-PnPWikiPageContent" }, { "Id": 847, + "Rank": 1, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Rank": 1 + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { "Id": 848, + "Rank": 2, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Rank": 2 + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { "Id": 849, + "Rank": 1, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Grant-PnPHubSiteRights", - "Rank": 1 + "CommandName": "Grant-PnPHubSiteRights" }, { "Id": 850, + "Rank": 1, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Grant-PnPSiteDesignRights", - "Rank": 1 + "CommandName": "Grant-PnPSiteDesignRights" }, { "Id": 851, + "Rank": 1, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Rank": 1 + "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { "Id": 852, + "Rank": 1, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "CommandName": "Import-PnPTaxonomy", - "Rank": 1 + "CommandName": "Import-PnPTaxonomy" }, { "Id": 853, + "Rank": 2, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "CommandName": "Import-PnPTaxonomy", - "Rank": 2 + "CommandName": "Import-PnPTaxonomy" }, { "Id": 854, + "Rank": 3, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "CommandName": "Import-PnPTaxonomy", - "Rank": 3 + "CommandName": "Import-PnPTaxonomy" }, { "Id": 855, + "Rank": 1, "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "CommandName": "Import-PnPTermGroupFromXml", - "Rank": 1 + "CommandName": "Import-PnPTermGroupFromXml" }, { "Id": 856, + "Rank": 2, "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "CommandName": "Import-PnPTermGroupFromXml", - "Rank": 2 + "CommandName": "Import-PnPTermGroupFromXml" }, { "Id": 857, + "Rank": 1, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "CommandName": "Import-PnPTermSet", - "Rank": 1 + "CommandName": "Import-PnPTermSet" }, { "Id": 858, + "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", - "Rank": 2 + "CommandName": "Import-PnPTermSet" }, { "Id": 859, + "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", - "Rank": 3 + "CommandName": "Import-PnPTermSet" }, { "Id": 860, + "Rank": 1, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Install-PnPApp", - "Rank": 1 + "CommandName": "Install-PnPApp" }, { "Id": 861, + "Rank": 2, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Install-PnPApp", - "Rank": 2 + "CommandName": "Install-PnPApp" }, { "Id": 862, + "Rank": 1, "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 1 + "CommandName": "Invoke-PnPGraphMethod" }, { "Id": 863, + "Rank": 2, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 2 + "CommandName": "Invoke-PnPGraphMethod" }, { "Id": 864, + "Rank": 3, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 3 + "CommandName": "Invoke-PnPGraphMethod" }, { "Id": 865, + "Rank": 4, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 4 + "CommandName": "Invoke-PnPGraphMethod" }, { "Id": 866, + "Rank": 5, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 5 + "CommandName": "Invoke-PnPGraphMethod" }, { "Id": 867, + "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", - "Rank": 6 + "CommandName": "Invoke-PnPGraphMethod" }, { "Id": 868, + "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", - "Rank": 7 + "CommandName": "Invoke-PnPGraphMethod" }, { "Id": 869, + "Rank": 1, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPListDesign", - "Rank": 1 + "CommandName": "Invoke-PnPListDesign" }, { "Id": 870, + "Rank": 2, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "CommandName": "Invoke-PnPListDesign", - "Rank": 2 + "CommandName": "Invoke-PnPListDesign" }, { "Id": 871, + "Rank": 1, "Command": "Invoke-PnPQuery -RetryCount 5", - "CommandName": "Invoke-PnPQuery", - "Rank": 1 + "CommandName": "Invoke-PnPQuery" }, { "Id": 872, + "Rank": 1, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPSiteDesign", - "Rank": 1 + "CommandName": "Invoke-PnPSiteDesign" }, { "Id": 873, + "Rank": 2, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "CommandName": "Invoke-PnPSiteDesign", - "Rank": 2 + "CommandName": "Invoke-PnPSiteDesign" }, { "Id": 874, + "Rank": 1, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "CommandName": "Invoke-PnPSiteScript", - "Rank": 1 + "CommandName": "Invoke-PnPSiteScript" }, { "Id": 875, + "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", - "Rank": 1 + "CommandName": "Invoke-PnPSiteSwap" }, { "Id": 876, + "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", - "Rank": 2 + "CommandName": "Invoke-PnPSiteSwap" }, { "Id": 877, + "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", - "Rank": 3 + "CommandName": "Invoke-PnPSiteSwap" }, { "Id": 878, + "Rank": 1, "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 1 + "CommandName": "Invoke-PnPSiteTemplate" }, { "Id": 879, + "Rank": 2, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 2 + "CommandName": "Invoke-PnPSiteTemplate" }, { "Id": 880, + "Rank": 3, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 3 + "CommandName": "Invoke-PnPSiteTemplate" }, { "Id": 881, + "Rank": 4, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 4 + "CommandName": "Invoke-PnPSiteTemplate" }, { "Id": 882, + "Rank": 5, "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 5 + "CommandName": "Invoke-PnPSiteTemplate" }, { "Id": 883, + "Rank": 6, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 6 + "CommandName": "Invoke-PnPSiteTemplate" }, { "Id": 884, + "Rank": 7, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 7 + "CommandName": "Invoke-PnPSiteTemplate" }, { "Id": 885, + "Rank": 8, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 8 + "CommandName": "Invoke-PnPSiteTemplate" }, { "Id": 886, + "Rank": 1, "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "CommandName": "Invoke-PnPSPRestMethod", - "Rank": 1 + "CommandName": "Invoke-PnPSPRestMethod" }, { "Id": 887, + "Rank": 1, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 1 + "CommandName": "Invoke-PnPTenantTemplate" }, { "Id": 888, + "Rank": 2, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 2 + "CommandName": "Invoke-PnPTenantTemplate" }, { "Id": 889, + "Rank": 3, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 3 + "CommandName": "Invoke-PnPTenantTemplate" }, { "Id": 890, + "Rank": 1, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction", - "Rank": 1 + "CommandName": "Invoke-PnPWebAction" }, { "Id": 891, + "Rank": 2, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction", - "Rank": 2 + "CommandName": "Invoke-PnPWebAction" }, { "Id": 892, + "Rank": 1, "Command": "Measure-PnPList \"Documents\"", - "CommandName": "Measure-PnPList", - "Rank": 1 + "CommandName": "Measure-PnPList" }, { "Id": 893, + "Rank": 2, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "CommandName": "Measure-PnPList", - "Rank": 2 + "CommandName": "Measure-PnPList" }, { "Id": 894, + "Rank": 1, "Command": "Measure-PnPWeb", - "CommandName": "Measure-PnPWeb", - "Rank": 1 + "CommandName": "Measure-PnPWeb" }, { "Id": 895, + "Rank": 2, "Command": "Measure-PnPWeb $web -Recursive", - "CommandName": "Measure-PnPWeb", - "Rank": 2 + "CommandName": "Measure-PnPWeb" }, { "Id": 896, + "Rank": 1, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "CommandName": "Move-PnPFile", - "Rank": 1 + "CommandName": "Move-PnPFile" }, { "Id": 897, + "Rank": 2, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "CommandName": "Move-PnPFile", - "Rank": 2 + "CommandName": "Move-PnPFile" }, { "Id": 898, + "Rank": 3, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "CommandName": "Move-PnPFile", - "Rank": 3 + "CommandName": "Move-PnPFile" }, { "Id": 899, + "Rank": 4, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "CommandName": "Move-PnPFile", - "Rank": 4 + "CommandName": "Move-PnPFile" }, { "Id": 900, + "Rank": 1, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "CommandName": "Move-PnPFolder", - "Rank": 1 + "CommandName": "Move-PnPFolder" }, { "Id": 901, + "Rank": 2, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "CommandName": "Move-PnPFolder", - "Rank": 2 + "CommandName": "Move-PnPFolder" }, { "Id": 902, + "Rank": 1, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Move-PnPListItemToRecycleBin", - "Rank": 1 + "CommandName": "Move-PnPListItemToRecycleBin" }, { "Id": 903, + "Rank": 1, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "CommandName": "Move-PnPPageComponent", - "Rank": 1 + "CommandName": "Move-PnPPageComponent" }, { "Id": 904, + "Rank": 2, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "CommandName": "Move-PnPPageComponent", - "Rank": 2 + "CommandName": "Move-PnPPageComponent" }, { "Id": 905, + "Rank": 3, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "CommandName": "Move-PnPPageComponent", - "Rank": 3 + "CommandName": "Move-PnPPageComponent" }, { "Id": 906, + "Rank": 4, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "CommandName": "Move-PnPPageComponent", - "Rank": 4 + "CommandName": "Move-PnPPageComponent" }, { "Id": 907, + "Rank": 1, "Command": "Move-PnPRecycleBinItem", - "CommandName": "Move-PnpRecycleBinItem", - "Rank": 1 + "CommandName": "Move-PnpRecycleBinItem" }, { "Id": 908, + "Rank": 2, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "CommandName": "Move-PnpRecycleBinItem", - "Rank": 2 + "CommandName": "Move-PnpRecycleBinItem" }, { "Id": 909, + "Rank": 3, "Command": "Move-PnPRecycleBinItem -Force", - "CommandName": "Move-PnpRecycleBinItem", - "Rank": 3 + "CommandName": "Move-PnpRecycleBinItem" }, { "Id": 910, + "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", - "Rank": 1 + "CommandName": "Move-PnPTerm" }, { "Id": 911, + "Rank": 2, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "CommandName": "Move-PnPTerm", - "Rank": 2 + "CommandName": "Move-PnPTerm" }, { "Id": 912, + "Rank": 3, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "CommandName": "Move-PnPTerm", - "Rank": 3 + "CommandName": "Move-PnPTerm" }, { "Id": 913, + "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", - "Rank": 1 + "CommandName": "Move-PnPTermSet" }, { "Id": 914, + "Rank": 2, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "CommandName": "Move-PnPTermSet", - "Rank": 2 + "CommandName": "Move-PnPTermSet" }, { "Id": 915, + "Rank": 1, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPAzureADGroup", - "Rank": 1 + "CommandName": "New-PnPAzureADGroup" }, { "Id": 916, + "Rank": 2, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "CommandName": "New-PnPAzureADGroup", - "Rank": 2 + "CommandName": "New-PnPAzureADGroup" }, { "Id": 917, + "Rank": 3, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "CommandName": "New-PnPAzureADGroup", - "Rank": 3 + "CommandName": "New-PnPAzureADGroup" }, { "Id": 918, + "Rank": 1, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 1 + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Id": 919, + "Rank": 2, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 2 + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Id": 920, + "Rank": 3, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 3 + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Id": 921, + "Rank": 1, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "CommandName": "New-PnPAzureCertificate", - "Rank": 1 + "CommandName": "New-PnPAzureCertificate" }, { "Id": 922, + "Rank": 2, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "CommandName": "New-PnPAzureCertificate", - "Rank": 2 + "CommandName": "New-PnPAzureCertificate" }, { "Id": 923, + "Rank": 3, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "CommandName": "New-PnPAzureCertificate", - "Rank": 3 + "CommandName": "New-PnPAzureCertificate" }, { "Id": 924, + "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", - "Rank": 1 + "CommandName": "New-PnPGraphSubscription" }, { "Id": 925, + "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", - "Rank": 2 + "CommandName": "New-PnPGraphSubscription" }, { "Id": 926, + "Rank": 1, "Command": "New-PnPGroup -Title \"My Site Users\"", - "CommandName": "New-PnPGroup", - "Rank": 1 + "CommandName": "New-PnPGroup" }, { "Id": 927, + "Rank": 1, "Command": "New-PnPList -Title Announcements -Template Announcements", - "CommandName": "New-PnPList", - "Rank": 1 + "CommandName": "New-PnPList" }, { "Id": 928, + "Rank": 2, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "CommandName": "New-PnPList", - "Rank": 2 + "CommandName": "New-PnPList" }, { "Id": 929, + "Rank": 3, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "CommandName": "New-PnPList", - "Rank": 3 + "CommandName": "New-PnPList" }, { "Id": 930, + "Rank": 1, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 1 + "CommandName": "New-PnPMicrosoft365Group" }, { "Id": 931, + "Rank": 2, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 2 + "CommandName": "New-PnPMicrosoft365Group" }, { "Id": 932, + "Rank": 3, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 3 + "CommandName": "New-PnPMicrosoft365Group" }, { "Id": 933, + "Rank": 4, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 4 + "CommandName": "New-PnPMicrosoft365Group" }, { "Id": 934, + "Rank": 5, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 5 + "CommandName": "New-PnPMicrosoft365Group" }, { "Id": 935, + "Rank": 6, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 6 + "CommandName": "New-PnPMicrosoft365Group" }, { "Id": 936, + "Rank": 7, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 7 + "CommandName": "New-PnPMicrosoft365Group" }, { "Id": 937, + "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", - "Rank": 1 + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { "Id": 938, + "Rank": 2, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "CommandName": "New-PnPMicrosoft365GroupSettings", - "Rank": 2 + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { "Id": 939, + "Rank": 1, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "CommandName": "New-PnPPersonalSite", - "Rank": 1 + "CommandName": "New-PnPPersonalSite" }, { "Id": 940, + "Rank": 1, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "CommandName": "New-PnPPlannerPlan", - "Rank": 1 + "CommandName": "New-PnPPlannerPlan" }, { "Id": 941, + "Rank": 1, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "CommandName": "New-PnPSdnProvider", - "Rank": 1 + "CommandName": "New-PnPSdnProvider" }, { "Id": 942, + "Rank": 1, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite", - "Rank": 1 + "CommandName": "New-PnPSite" }, { "Id": 943, + "Rank": 2, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "CommandName": "New-PnPSite", - "Rank": 2 + "CommandName": "New-PnPSite" }, { "Id": 944, + "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", - "Rank": 3 + "CommandName": "New-PnPSite" }, { "Id": 945, + "Rank": 4, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "CommandName": "New-PnPSite", - "Rank": 4 + "CommandName": "New-PnPSite" }, { "Id": 946, + "Rank": 5, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite", - "Rank": 5 + "CommandName": "New-PnPSite" }, { "Id": 947, + "Rank": 6, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "CommandName": "New-PnPSite", - "Rank": 6 + "CommandName": "New-PnPSite" }, { "Id": 948, + "Rank": 7, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "CommandName": "New-PnPSite", - "Rank": 7 + "CommandName": "New-PnPSite" }, { "Id": 949, + "Rank": 8, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "CommandName": "New-PnPSite", - "Rank": 8 + "CommandName": "New-PnPSite" }, { "Id": 950, + "Rank": 9, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "CommandName": "New-PnPSite", - "Rank": 9 + "CommandName": "New-PnPSite" }, { "Id": 951, + "Rank": 10, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "CommandName": "New-PnPSite", - "Rank": 10 + "CommandName": "New-PnPSite" }, { "Id": 952, + "Rank": 11, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite", - "Rank": 11 + "CommandName": "New-PnPSite" }, { "Id": 953, + "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": 12 + "CommandName": "New-PnPSite" }, { "Id": 954, + "Rank": 13, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "CommandName": "New-PnPSite", - "Rank": 13 + "CommandName": "New-PnPSite" }, { "Id": 955, + "Rank": 14, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite", - "Rank": 14 + "CommandName": "New-PnPSite" }, { "Id": 956, + "Rank": 15, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "CommandName": "New-PnPSite", - "Rank": 15 + "CommandName": "New-PnPSite" }, { "Id": 957, + "Rank": 16, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "CommandName": "New-PnPSite", - "Rank": 16 + "CommandName": "New-PnPSite" }, { "Id": 958, + "Rank": 1, "Command": "New-PnPSiteCollectionTermStore", - "CommandName": "New-PnPSiteCollectionTermStore", - "Rank": 1 + "CommandName": "New-PnPSiteCollectionTermStore" }, { "Id": 959, + "Rank": 1, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "CommandName": "New-PnPSiteGroup", - "Rank": 1 + "CommandName": "New-PnPSiteGroup" }, { "Id": 960, + "Rank": 2, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "CommandName": "New-PnPSiteGroup", - "Rank": 2 + "CommandName": "New-PnPSiteGroup" }, { "Id": 961, + "Rank": 1, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 1 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Id": 962, + "Rank": 2, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 2 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Id": 963, + "Rank": 3, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 3 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Id": 964, + "Rank": 4, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 4 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Id": 965, + "Rank": 5, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 5 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Id": 966, + "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", - "Rank": 6 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Id": 967, + "Rank": 7, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 7 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Id": 968, + "Rank": 8, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 8 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Id": 969, + "Rank": 1, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "CommandName": "New-PnPTeamsApp", - "Rank": 1 + "CommandName": "New-PnPTeamsApp" }, { "Id": 970, + "Rank": 1, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "CommandName": "New-PnPTeamsTeam", - "Rank": 1 + "CommandName": "New-PnPTeamsTeam" }, { "Id": 971, + "Rank": 2, "Command": "New-PnPTeamsTeam -GroupId $groupId", - "CommandName": "New-PnPTeamsTeam", - "Rank": 2 + "CommandName": "New-PnPTeamsTeam" }, { "Id": 972, + "Rank": 3, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "CommandName": "New-PnPTeamsTeam", - "Rank": 3 + "CommandName": "New-PnPTeamsTeam" }, { "Id": 973, + "Rank": 4, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "CommandName": "New-PnPTeamsTeam", - "Rank": 4 + "CommandName": "New-PnPTeamsTeam" }, { "Id": 974, + "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", - "Rank": 5 + "CommandName": "New-PnPTeamsTeam" }, { "Id": 975, + "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", - "Rank": 6 + "CommandName": "New-PnPTeamsTeam" }, { "Id": 976, + "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", - "Rank": 1 + "CommandName": "New-PnPTenantSite" }, { "Id": 977, + "Rank": 2, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "CommandName": "New-PnPTenantSite", - "Rank": 2 + "CommandName": "New-PnPTenantSite" }, { "Id": 978, + "Rank": 1, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "CommandName": "New-PnPTerm", - "Rank": 1 + "CommandName": "New-PnPTerm" }, { "Id": 979, + "Rank": 2, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "New-PnPTerm", - "Rank": 2 + "CommandName": "New-PnPTerm" }, { "Id": 980, + "Rank": 1, "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "CommandName": "New-PnPTermGroup", - "Rank": 1 + "CommandName": "New-PnPTermGroup" }, { "Id": 981, + "Rank": 1, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "CommandName": "New-PnPTermLabel", - "Rank": 1 + "CommandName": "New-PnPTermLabel" }, { "Id": 982, + "Rank": 1, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "CommandName": "New-PnPTermSet", - "Rank": 1 + "CommandName": "New-PnPTermSet" }, { "Id": 983, + "Rank": 1, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "CommandName": "New-PnPUPABulkImportJob", - "Rank": 1 + "CommandName": "New-PnPUPABulkImportJob" }, { "Id": 984, + "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", - "Rank": 2 + "CommandName": "New-PnPUPABulkImportJob" }, { "Id": 985, + "Rank": 1, "Command": "New-PnPUser -LoginName user@company.com", - "CommandName": "New-PnPUser", - "Rank": 1 + "CommandName": "New-PnPUser" }, { "Id": 986, + "Rank": 1, "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "CommandName": "New-PnPWeb", - "Rank": 1 + "CommandName": "New-PnPWeb" }, { "Id": 987, + "Rank": 1, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Publish-PnPApp", - "Rank": 1 + "CommandName": "Publish-PnPApp" }, { "Id": 988, + "Rank": 2, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "CommandName": "Publish-PnPApp", - "Rank": 2 + "CommandName": "Publish-PnPApp" }, { "Id": 989, + "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", - "Rank": 1 + "CommandName": "Publish-PnPCompanyApp" }, { "Id": 990, + "Rank": 1, "Command": "Publish-PnPContentType -ContentType 0x0101", - "CommandName": "Publish-PnPContentType", - "Rank": 1 + "CommandName": "Publish-PnPContentType" }, { "Id": 991, + "Rank": 1, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Publish-PnPSyntexModel", - "Rank": 1 + "CommandName": "Publish-PnPSyntexModel" }, { "Id": 992, + "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", - "Rank": 2 + "CommandName": "Publish-PnPSyntexModel" }, { "Id": 993, + "Rank": 1, "Command": "Read-PnPSiteTemplate -Path template.pnp", - "CommandName": "Read-PnPSiteTemplate", - "Rank": 1 + "CommandName": "Read-PnPSiteTemplate" }, { "Id": 994, + "Rank": 2, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "CommandName": "Read-PnPSiteTemplate", - "Rank": 2 + "CommandName": "Read-PnPSiteTemplate" }, { "Id": 995, + "Rank": 3, "Command": "Read-PnPSiteTemplate -Xml $xml", - "CommandName": "Read-PnPSiteTemplate", - "Rank": 3 + "CommandName": "Read-PnPSiteTemplate" }, { "Id": 996, + "Rank": 1, "Command": "Read-PnPTenantTemplate -Path template.pnp", - "CommandName": "Read-PnPTenantTemplate", - "Rank": 1 + "CommandName": "Read-PnPTenantTemplate" }, { "Id": 997, + "Rank": 1, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "CommandName": "Register-PnPAppCatalogSite", - "Rank": 1 + "CommandName": "Register-PnPAppCatalogSite" }, { "Id": 998, + "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", - "Rank": 1 + "CommandName": "Register-PnPAzureADApp" }, { "Id": 999, + "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", - "Rank": 2 + "CommandName": "Register-PnPAzureADApp" }, { "Id": 1000, + "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", - "Rank": 3 + "CommandName": "Register-PnPAzureADApp" }, { "Id": 1001, + "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", - "Rank": 4 + "CommandName": "Register-PnPAzureADApp" }, { "Id": 1002, + "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", - "Rank": 5 + "CommandName": "Register-PnPAzureADApp" }, { "Id": 1003, + "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", - "Rank": 6 + "CommandName": "Register-PnPAzureADApp" }, { "Id": 1004, + "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", - "Rank": 7 + "CommandName": "Register-PnPAzureADApp" }, { "Id": 1005, + "Rank": 1, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Register-PnPHubSite", - "Rank": 1 + "CommandName": "Register-PnPHubSite" }, { "Id": 1006, + "Rank": 2, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "CommandName": "Register-PnPHubSite", - "Rank": 2 + "CommandName": "Register-PnPHubSite" }, { "Id": 1007, + "Rank": 1, "Command": "Register-PnPManagementShellAccess", - "CommandName": "Register-PnPManagementShellAccess", - "Rank": 1 + "CommandName": "Register-PnPManagementShellAccess" }, { "Id": 1008, + "Rank": 2, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "CommandName": "Register-PnPManagementShellAccess", - "Rank": 2 + "CommandName": "Register-PnPManagementShellAccess" }, { "Id": 1009, + "Rank": 3, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "CommandName": "Register-PnPManagementShellAccess", - "Rank": 3 + "CommandName": "Register-PnPManagementShellAccess" }, { "Id": 1010, + "Rank": 1, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Rank": 1 + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { "Id": 1011, + "Rank": 2, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Rank": 2 + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { "Id": 1012, + "Rank": 1, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "CommandName": "Remove-PnPAlert", - "Rank": 1 + "CommandName": "Remove-PnPAlert" }, { "Id": 1013, + "Rank": 2, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAlert", - "Rank": 2 + "CommandName": "Remove-PnPAlert" }, { "Id": 1014, + "Rank": 1, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Remove-PnPApp", - "Rank": 1 + "CommandName": "Remove-PnPApp" }, { "Id": 1015, + "Rank": 2, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Remove-PnPApp", - "Rank": 2 + "CommandName": "Remove-PnPApp" }, { "Id": 1016, + "Rank": 1, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPApplicationCustomizer", - "Rank": 1 + "CommandName": "Remove-PnPApplicationCustomizer" }, { "Id": 1017, + "Rank": 2, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPApplicationCustomizer", - "Rank": 2 + "CommandName": "Remove-PnPApplicationCustomizer" }, { "Id": 1018, + "Rank": 1, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "CommandName": "Remove-PnPAvailableSiteClassification", - "Rank": 1 + "CommandName": "Remove-PnPAvailableSiteClassification" }, { "Id": 1019, + "Rank": 2, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Remove-PnPAvailableSiteClassification", - "Rank": 2 + "CommandName": "Remove-PnPAvailableSiteClassification" }, { "Id": 1020, + "Rank": 1, "Command": "Remove-PnPAzureADApp -Identity MyApp", - "CommandName": "Remove-PnPAzureADApp", - "Rank": 1 + "CommandName": "Remove-PnPAzureADApp" }, { "Id": 1021, + "Rank": 2, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Remove-PnPAzureADApp", - "Rank": 2 + "CommandName": "Remove-PnPAzureADApp" }, { "Id": 1022, + "Rank": 1, "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "CommandName": "Remove-PnPAzureADGroup", - "Rank": 1 + "CommandName": "Remove-PnPAzureADGroup" }, { "Id": 1023, + "Rank": 2, "Command": "Remove-PnPAzureADGroup -Identity $group", - "CommandName": "Remove-PnPAzureADGroup", - "Rank": 2 + "CommandName": "Remove-PnPAzureADGroup" }, { "Id": 1024, + "Rank": 1, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupMember", - "Rank": 1 + "CommandName": "Remove-PnPAzureADGroupMember" }, { "Id": 1025, + "Rank": 1, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupOwner", - "Rank": 1 + "CommandName": "Remove-PnPAzureADGroupOwner" }, { "Id": 1026, + "Rank": 1, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 1 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Id": 1027, + "Rank": 2, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 2 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Id": 1028, + "Rank": 3, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 3 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Id": 1029, + "Rank": 4, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 4 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Id": 1030, + "Rank": 1, "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "CommandName": "Remove-PnPContentType", - "Rank": 1 + "CommandName": "Remove-PnPContentType" }, { "Id": 1031, + "Rank": 2, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "CommandName": "Remove-PnPContentType", - "Rank": 2 + "CommandName": "Remove-PnPContentType" }, { "Id": 1032, + "Rank": 1, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Rank": 1 + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { "Id": 1033, + "Rank": 2, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Rank": 2 + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { "Id": 1034, + "Rank": 1, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPContentTypeFromList", - "Rank": 1 + "CommandName": "Remove-PnPContentTypeFromList" }, { "Id": 1035, + "Rank": 1, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPCustomAction", - "Rank": 1 + "CommandName": "Remove-PnPCustomAction" }, { "Id": 1036, + "Rank": 2, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPCustomAction", - "Rank": 2 + "CommandName": "Remove-PnPCustomAction" }, { "Id": 1037, + "Rank": 3, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "CommandName": "Remove-PnPCustomAction", - "Rank": 3 + "CommandName": "Remove-PnPCustomAction" }, { "Id": 1038, + "Rank": 1, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Rank": 1 + "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { "Id": 1039, + "Rank": 1, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver", - "Rank": 1 + "CommandName": "Remove-PnPEventReceiver" }, { "Id": 1040, + "Rank": 2, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver", - "Rank": 2 + "CommandName": "Remove-PnPEventReceiver" }, { "Id": 1041, + "Rank": 3, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "CommandName": "Remove-PnPEventReceiver", - "Rank": 3 + "CommandName": "Remove-PnPEventReceiver" }, { "Id": 1042, + "Rank": 4, "Command": "Remove-PnPEventReceiver -List ProjectList", - "CommandName": "Remove-PnPEventReceiver", - "Rank": 4 + "CommandName": "Remove-PnPEventReceiver" }, { "Id": 1043, + "Rank": 5, "Command": "Remove-PnPEventReceiver", - "CommandName": "Remove-PnPEventReceiver", - "Rank": 5 + "CommandName": "Remove-PnPEventReceiver" }, { "Id": 1044, + "Rank": 6, "Command": "Remove-PnPEventReceiver -Scope Site", - "CommandName": "Remove-PnPEventReceiver", - "Rank": 6 + "CommandName": "Remove-PnPEventReceiver" }, { "Id": 1045, + "Rank": 7, "Command": "Remove-PnPEventReceiver -Scope Web", - "CommandName": "Remove-PnPEventReceiver", - "Rank": 7 + "CommandName": "Remove-PnPEventReceiver" }, { "Id": 1046, + "Rank": 8, "Command": "Remove-PnPEventReceiver -Scope All", - "CommandName": "Remove-PnPEventReceiver", - "Rank": 8 + "CommandName": "Remove-PnPEventReceiver" }, { "Id": 1047, + "Rank": 1, "Command": "Remove-PnPField -Identity \"Speakers\"", - "CommandName": "Remove-PnPField", - "Rank": 1 + "CommandName": "Remove-PnPField" }, { "Id": 1048, + "Rank": 2, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Remove-PnPField", - "Rank": 2 + "CommandName": "Remove-PnPField" }, { "Id": 1049, + "Rank": 1, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPFieldFromContentType", - "Rank": 1 + "CommandName": "Remove-PnPFieldFromContentType" }, { "Id": 1050, + "Rank": 2, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "CommandName": "Remove-PnPFieldFromContentType", - "Rank": 2 + "CommandName": "Remove-PnPFieldFromContentType" }, { "Id": 1051, + "Rank": 1, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile", - "Rank": 1 + "CommandName": "Remove-PnPFile" }, { "Id": 1052, + "Rank": 2, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile", - "Rank": 2 + "CommandName": "Remove-PnPFile" }, { "Id": 1053, + "Rank": 3, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "CommandName": "Remove-PnPFile", - "Rank": 3 + "CommandName": "Remove-PnPFile" }, { "Id": 1054, + "Rank": 1, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "CommandName": "Remove-PnPFileFromSiteTemplate", - "Rank": 1 + "CommandName": "Remove-PnPFileFromSiteTemplate" }, { "Id": 1055, + "Rank": 1, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Remove-PnPFileSharingLink", - "Rank": 1 + "CommandName": "Remove-PnPFileSharingLink" }, { "Id": 1056, + "Rank": 2, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "CommandName": "Remove-PnPFileSharingLink", - "Rank": 2 + "CommandName": "Remove-PnPFileSharingLink" }, { "Id": 1057, + "Rank": 1, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Remove-PnPFileVersion", - "Rank": 1 + "CommandName": "Remove-PnPFileVersion" }, { "Id": 1058, + "Rank": 2, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Remove-PnPFileVersion", - "Rank": 2 + "CommandName": "Remove-PnPFileVersion" }, { "Id": 1059, + "Rank": 3, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "CommandName": "Remove-PnPFileVersion", - "Rank": 3 + "CommandName": "Remove-PnPFileVersion" }, { "Id": 1060, + "Rank": 1, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "CommandName": "Remove-PnPFlowOwner", - "Rank": 1 + "CommandName": "Remove-PnPFlowOwner" }, { "Id": 1061, + "Rank": 2, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "CommandName": "Remove-PnPFlowOwner", - "Rank": 2 + "CommandName": "Remove-PnPFlowOwner" }, { "Id": 1062, + "Rank": 3, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", - "CommandName": "Remove-PnPFlowOwner", - "Rank": 3 + "CommandName": "Remove-PnPFlowOwner" }, { "Id": 1063, + "Rank": 4, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "CommandName": "Remove-PnPFlowOwner", - "Rank": 4 + "CommandName": "Remove-PnPFlowOwner" }, { "Id": 1064, + "Rank": 1, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Remove-PnPFolder", - "Rank": 1 + "CommandName": "Remove-PnPFolder" }, { "Id": 1065, + "Rank": 2, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "CommandName": "Remove-PnPFolder", - "Rank": 2 + "CommandName": "Remove-PnPFolder" }, { "Id": 1066, + "Rank": 1, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Remove-PnPFolderSharingLink", - "Rank": 1 + "CommandName": "Remove-PnPFolderSharingLink" }, { "Id": 1067, + "Rank": 2, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "CommandName": "Remove-PnPFolderSharingLink", - "Rank": 2 + "CommandName": "Remove-PnPFolderSharingLink" }, { "Id": 1068, + "Rank": 1, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "CommandName": "Remove-PnPGraphSubscription", - "Rank": 1 + "CommandName": "Remove-PnPGraphSubscription" }, { "Id": 1069, + "Rank": 1, "Command": "Remove-PnPGroup -Identity \"My Users\"", - "CommandName": "Remove-PnPGroup", - "Rank": 1 + "CommandName": "Remove-PnPGroup" }, { "Id": 1070, + "Rank": 1, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Remove-PnPGroupMember", - "Rank": 1 + "CommandName": "Remove-PnPGroupMember" }, { "Id": 1071, + "Rank": 1, "Command": "Remove-PnPHomeSite", - "CommandName": "Remove-PnPHomeSite", - "Rank": 1 + "CommandName": "Remove-PnPHomeSite" }, { "Id": 1072, + "Rank": 1, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPHubSiteAssociation", - "Rank": 1 + "CommandName": "Remove-PnPHubSiteAssociation" }, { "Id": 1073, + "Rank": 1, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "CommandName": "Remove-PnPHubToHubAssociation", - "Rank": 1 + "CommandName": "Remove-PnPHubToHubAssociation" }, { "Id": 1074, + "Rank": 2, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "CommandName": "Remove-PnPHubToHubAssociation", - "Rank": 2 + "CommandName": "Remove-PnPHubToHubAssociation" }, { "Id": 1075, + "Rank": 1, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "CommandName": "Remove-PnPIndexedProperty", - "Rank": 1 + "CommandName": "Remove-PnPIndexedProperty" }, { "Id": 1076, + "Rank": 1, "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 1 + "CommandName": "Remove-PnPJavaScriptLink" }, { "Id": 1077, + "Rank": 2, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 2 + "CommandName": "Remove-PnPJavaScriptLink" }, { "Id": 1078, + "Rank": 3, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 3 + "CommandName": "Remove-PnPJavaScriptLink" }, { "Id": 1079, + "Rank": 4, "Command": "Remove-PnPJavaScriptLink -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 4 + "CommandName": "Remove-PnPJavaScriptLink" }, { "Id": 1080, + "Rank": 5, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 5 + "CommandName": "Remove-PnPJavaScriptLink" }, { "Id": 1081, + "Rank": 1, "Command": "Remove-PnPKnowledgeHubSite", - "CommandName": "Remove-PnPKnowledgeHubSite", - "Rank": 1 + "CommandName": "Remove-PnPKnowledgeHubSite" }, { "Id": 1082, + "Rank": 1, "Command": "Remove-PnPList -Identity Announcements", - "CommandName": "Remove-PnPList", - "Rank": 1 + "CommandName": "Remove-PnPList" }, { "Id": 1083, + "Rank": 2, "Command": "Remove-PnPList -Identity Announcements -Force", - "CommandName": "Remove-PnPList", - "Rank": 2 + "CommandName": "Remove-PnPList" }, { "Id": 1084, + "Rank": 3, "Command": "Remove-PnPList -Identity Announcements -Recycle", - "CommandName": "Remove-PnPList", - "Rank": 3 + "CommandName": "Remove-PnPList" }, { "Id": 1085, + "Rank": 4, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "CommandName": "Remove-PnPList", - "Rank": 4 + "CommandName": "Remove-PnPList" }, { "Id": 1086, + "Rank": 1, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPListDesign", - "Rank": 1 + "CommandName": "Remove-PnPListDesign" }, { "Id": 1087, + "Rank": 1, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Remove-PnPListItem", - "Rank": 1 + "CommandName": "Remove-PnPListItem" }, { "Id": 1088, + "Rank": 2, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "CommandName": "Remove-PnPListItem", - "Rank": 2 + "CommandName": "Remove-PnPListItem" }, { "Id": 1089, + "Rank": 3, "Command": "Remove-PnPListItem -List \"Demo List\"", - "CommandName": "Remove-PnPListItem", - "Rank": 3 + "CommandName": "Remove-PnPListItem" }, { "Id": 1090, + "Rank": 1, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 1 + "CommandName": "Remove-PnPListItemAttachment" }, { "Id": 1091, + "Rank": 2, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 2 + "CommandName": "Remove-PnPListItemAttachment" }, { "Id": 1092, + "Rank": 3, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 3 + "CommandName": "Remove-PnPListItemAttachment" }, { "Id": 1093, + "Rank": 4, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 4 + "CommandName": "Remove-PnPListItemAttachment" }, { "Id": 1094, + "Rank": 5, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 5 + "CommandName": "Remove-PnPListItemAttachment" }, { "Id": 1095, + "Rank": 1, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Remove-PnPListItemVersion", - "Rank": 1 + "CommandName": "Remove-PnPListItemVersion" }, { "Id": 1096, + "Rank": 2, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Remove-PnPListItemVersion", - "Rank": 2 + "CommandName": "Remove-PnPListItemVersion" }, { "Id": 1097, + "Rank": 1, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Remove-PnPMicrosoft365Group", - "Rank": 1 + "CommandName": "Remove-PnPMicrosoft365Group" }, { "Id": 1098, + "Rank": 2, "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "CommandName": "Remove-PnPMicrosoft365Group", - "Rank": 2 + "CommandName": "Remove-PnPMicrosoft365Group" }, { "Id": 1099, + "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Rank": 1 + "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { "Id": 1100, + "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Rank": 1 + "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { "Id": 1101, + "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Rank": 1 + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { "Id": 1102, + "Rank": 2, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Rank": 2 + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { "Id": 1103, + "Rank": 1, "Command": "Remove-PnPNavigationNode -Identity 1032", - "CommandName": "Remove-PnPNavigationNode", - "Rank": 1 + "CommandName": "Remove-PnPNavigationNode" }, { "Id": 1104, + "Rank": 2, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "CommandName": "Remove-PnPNavigationNode", - "Rank": 2 + "CommandName": "Remove-PnPNavigationNode" }, { "Id": 1105, + "Rank": 3, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "CommandName": "Remove-PnPNavigationNode", - "Rank": 3 + "CommandName": "Remove-PnPNavigationNode" }, { "Id": 1106, + "Rank": 1, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 1 + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Id": 1107, + "Rank": 2, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 2 + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Id": 1108, + "Rank": 3, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 3 + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Id": 1109, + "Rank": 1, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPOrgNewsSite", - "Rank": 1 + "CommandName": "Remove-PnPOrgNewsSite" }, { "Id": 1110, + "Rank": 1, "Command": "Remove-PnPPage -Identity \"MyPage\"", - "CommandName": "Remove-PnPPage", - "Rank": 1 + "CommandName": "Remove-PnPPage" }, { "Id": 1111, + "Rank": 2, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "CommandName": "Remove-PnPPage", - "Rank": 2 + "CommandName": "Remove-PnPPage" }, { "Id": 1112, + "Rank": 3, "Command": "Remove-PnPPage $page", - "CommandName": "Remove-PnPPage", - "Rank": 3 + "CommandName": "Remove-PnPPage" }, { "Id": 1113, + "Rank": 4, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "CommandName": "Remove-PnPPage", - "Rank": 4 + "CommandName": "Remove-PnPPage" }, { "Id": 1114, + "Rank": 1, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPPageComponent", - "Rank": 1 + "CommandName": "Remove-PnPPageComponent" }, { "Id": 1115, + "Rank": 1, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "CommandName": "Remove-PnPPlannerBucket", - "Rank": 1 + "CommandName": "Remove-PnPPlannerBucket" }, { "Id": 1116, + "Rank": 1, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "CommandName": "Remove-PnPPlannerPlan", - "Rank": 1 + "CommandName": "Remove-PnPPlannerPlan" }, { "Id": 1117, + "Rank": 1, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Remove-PnPPlannerRoster", - "Rank": 1 + "CommandName": "Remove-PnPPlannerRoster" }, { "Id": 1118, + "Rank": 1, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPPlannerRosterMember", - "Rank": 1 + "CommandName": "Remove-PnPPlannerRosterMember" }, { "Id": 1119, + "Rank": 1, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "CommandName": "Remove-PnPPlannerTask", - "Rank": 1 + "CommandName": "Remove-PnPPlannerTask" }, { "Id": 1120, + "Rank": 1, "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 1 + "CommandName": "Remove-PnPPropertyBagValue" }, { "Id": 1121, + "Rank": 2, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 2 + "CommandName": "Remove-PnPPropertyBagValue" }, { "Id": 1122, + "Rank": 3, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 3 + "CommandName": "Remove-PnPPropertyBagValue" }, { "Id": 1123, + "Rank": 1, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Remove-PnPPublishingImageRendition", - "Rank": 1 + "CommandName": "Remove-PnPPublishingImageRendition" }, { "Id": 1124, + "Rank": 1, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "CommandName": "Remove-PnPRoleDefinition", - "Rank": 1 + "CommandName": "Remove-PnPRoleDefinition" }, { "Id": 1125, + "Rank": 1, "Command": "Remove-PnPSdnProvider -Confirm:false", - "CommandName": "Remove-PnPSdnProvider", - "Rank": 1 + "CommandName": "Remove-PnPSdnProvider" }, { "Id": 1126, + "Rank": 1, "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 1 + "CommandName": "Remove-PnPSearchConfiguration" }, { "Id": 1127, + "Rank": 2, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 2 + "CommandName": "Remove-PnPSearchConfiguration" }, { "Id": 1128, + "Rank": 3, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 3 + "CommandName": "Remove-PnPSearchConfiguration" }, { "Id": 1129, + "Rank": 4, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 4 + "CommandName": "Remove-PnPSearchConfiguration" }, { "Id": 1130, + "Rank": 1, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Rank": 1 + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { "Id": 1131, + "Rank": 2, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Rank": 2 + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { "Id": 1132, + "Rank": 1, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Rank": 1 + "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { "Id": 1133, + "Rank": 1, "Command": "Remove-PnPSiteCollectionTermStore", - "CommandName": "Remove-PnPSiteCollectionTermStore", - "Rank": 1 + "CommandName": "Remove-PnPSiteCollectionTermStore" }, { "Id": 1134, + "Rank": 1, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesign", - "Rank": 1 + "CommandName": "Remove-PnPSiteDesign" }, { "Id": 1135, + "Rank": 1, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesignTask", - "Rank": 1 + "CommandName": "Remove-PnPSiteDesignTask" }, { "Id": 1136, + "Rank": 1, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Remove-PnPSiteGroup", - "Rank": 1 + "CommandName": "Remove-PnPSiteGroup" }, { "Id": 1137, + "Rank": 2, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "CommandName": "Remove-PnPSiteGroup", - "Rank": 2 + "CommandName": "Remove-PnPSiteGroup" }, { "Id": 1138, + "Rank": 1, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteScript", - "Rank": 1 + "CommandName": "Remove-PnPSiteScript" }, { "Id": 1139, + "Rank": 1, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Remove-PnPSiteUserInvitations", - "Rank": 1 + "CommandName": "Remove-PnPSiteUserInvitations" }, { "Id": 1140, + "Rank": 1, "Command": "Remove-PnPStorageEntity -Key MyKey", - "CommandName": "Remove-PnPStorageEntity", - "Rank": 1 + "CommandName": "Remove-PnPStorageEntity" }, { "Id": 1141, + "Rank": 2, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Remove-PnPStorageEntity", - "Rank": 2 + "CommandName": "Remove-PnPStorageEntity" }, { "Id": 1142, + "Rank": 1, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "CommandName": "Remove-PnPStoredCredential", - "Rank": 1 + "CommandName": "Remove-PnPStoredCredential" }, { "Id": 1143, + "Rank": 1, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "CommandName": "Remove-PnPTaxonomyItem", - "Rank": 1 + "CommandName": "Remove-PnPTaxonomyItem" }, { "Id": 1144, + "Rank": 2, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "CommandName": "Remove-PnPTaxonomyItem", - "Rank": 2 + "CommandName": "Remove-PnPTaxonomyItem" }, { "Id": 1145, + "Rank": 1, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "CommandName": "Remove-PnPTeamsApp", - "Rank": 1 + "CommandName": "Remove-PnPTeamsApp" }, { "Id": 1146, + "Rank": 2, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "CommandName": "Remove-PnPTeamsApp", - "Rank": 2 + "CommandName": "Remove-PnPTeamsApp" }, { "Id": 1147, + "Rank": 1, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "CommandName": "Remove-PnPTeamsChannel", - "Rank": 1 + "CommandName": "Remove-PnPTeamsChannel" }, { "Id": 1148, + "Rank": 1, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 1 + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Id": 1149, + "Rank": 2, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 2 + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Id": 1150, + "Rank": 3, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 3 + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Id": 1151, + "Rank": 1, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "CommandName": "Remove-PnPTeamsTab", - "Rank": 1 + "CommandName": "Remove-PnPTeamsTab" }, { "Id": 1152, + "Rank": 2, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "CommandName": "Remove-PnPTeamsTab", - "Rank": 2 + "CommandName": "Remove-PnPTeamsTab" }, { "Id": 1153, + "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", - "Rank": 3 + "CommandName": "Remove-PnPTeamsTab" }, { "Id": 1154, + "Rank": 1, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Remove-PnPTeamsTag", - "Rank": 1 + "CommandName": "Remove-PnPTeamsTag" }, { "Id": 1155, + "Rank": 1, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Remove-PnPTeamsTeam", - "Rank": 1 + "CommandName": "Remove-PnPTeamsTeam" }, { "Id": 1156, + "Rank": 2, "Command": "Remove-PnPTeamsTeam -Identity testteam", - "CommandName": "Remove-PnPTeamsTeam", - "Rank": 2 + "CommandName": "Remove-PnPTeamsTeam" }, { "Id": 1157, + "Rank": 1, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "CommandName": "Remove-PnPTeamsUser", - "Rank": 1 + "CommandName": "Remove-PnPTeamsUser" }, { "Id": 1158, + "Rank": 2, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Remove-PnPTeamsUser", - "Rank": 2 + "CommandName": "Remove-PnPTeamsUser" }, { "Id": 1159, + "Rank": 1, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Remove-PnPTenantCdnOrigin", - "Rank": 1 + "CommandName": "Remove-PnPTenantCdnOrigin" }, { "Id": 1160, + "Rank": 1, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantDeletedSite", - "Rank": 1 + "CommandName": "Remove-PnPTenantDeletedSite" }, { "Id": 1161, + "Rank": 2, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Remove-PnPTenantDeletedSite", - "Rank": 2 + "CommandName": "Remove-PnPTenantDeletedSite" }, { "Id": 1162, + "Rank": 1, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantSite", - "Rank": 1 + "CommandName": "Remove-PnPTenantSite" }, { "Id": 1163, + "Rank": 2, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "CommandName": "Remove-PnPTenantSite", - "Rank": 2 + "CommandName": "Remove-PnPTenantSite" }, { "Id": 1164, + "Rank": 3, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "CommandName": "Remove-PnPTenantSite", - "Rank": 3 + "CommandName": "Remove-PnPTenantSite" }, { "Id": 1165, + "Rank": 1, "Command": "Remove-PnPTenantSyncClientRestriction", - "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1 + "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { "Id": 1166, + "Rank": 1, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Remove-PnPTenantTheme", - "Rank": 1 + "CommandName": "Remove-PnPTenantTheme" }, { "Id": 1167, + "Rank": 1, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTerm", - "Rank": 1 + "CommandName": "Remove-PnPTerm" }, { "Id": 1168, + "Rank": 2, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTerm", - "Rank": 2 + "CommandName": "Remove-PnPTerm" }, { "Id": 1169, + "Rank": 1, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTermGroup", - "Rank": 1 + "CommandName": "Remove-PnPTermGroup" }, { "Id": 1170, + "Rank": 2, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "CommandName": "Remove-PnPTermGroup", - "Rank": 2 + "CommandName": "Remove-PnPTermGroup" }, { "Id": 1171, + "Rank": 3, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "CommandName": "Remove-PnPTermGroup", - "Rank": 3 + "CommandName": "Remove-PnPTermGroup" }, { "Id": 1172, + "Rank": 1, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "CommandName": "Remove-PnPTermLabel", - "Rank": 1 + "CommandName": "Remove-PnPTermLabel" }, { "Id": 1173, + "Rank": 2, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTermLabel", - "Rank": 2 + "CommandName": "Remove-PnPTermLabel" }, { "Id": 1174, + "Rank": 1, "Command": "Remove-PnPUser -Identity 23", - "CommandName": "Remove-PnPUser", - "Rank": 1 + "CommandName": "Remove-PnPUser" }, { "Id": 1175, + "Rank": 2, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "CommandName": "Remove-PnPUser", - "Rank": 2 + "CommandName": "Remove-PnPUser" }, { "Id": 1176, + "Rank": 3, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "CommandName": "Remove-PnPUser", - "Rank": 3 + "CommandName": "Remove-PnPUser" }, { "Id": 1177, + "Rank": 1, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Remove-PnPUserInfo", - "Rank": 1 + "CommandName": "Remove-PnPUserInfo" }, { "Id": 1178, + "Rank": 1, "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Remove-PnPUserProfile", - "Rank": 1 + "CommandName": "Remove-PnPUserProfile" }, { "Id": 1179, + "Rank": 1, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "CommandName": "Remove-PnPView", - "Rank": 1 + "CommandName": "Remove-PnPView" }, { "Id": 1180, + "Rank": 1, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Rank": 1 + "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { "Id": 1181, + "Rank": 1, "Command": "Remove-PnPWeb -Identity projectA", - "CommandName": "Remove-PnPWeb", - "Rank": 1 + "CommandName": "Remove-PnPWeb" }, { "Id": 1182, + "Rank": 2, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "CommandName": "Remove-PnPWeb", - "Rank": 2 + "CommandName": "Remove-PnPWeb" }, { "Id": 1183, + "Rank": 1, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "CommandName": "Remove-PnPWebhookSubscription", - "Rank": 1 + "CommandName": "Remove-PnPWebhookSubscription" }, { "Id": 1184, + "Rank": 1, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPWebPart", - "Rank": 1 + "CommandName": "Remove-PnPWebPart" }, { "Id": 1185, + "Rank": 2, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "CommandName": "Remove-PnPWebPart", - "Rank": 2 + "CommandName": "Remove-PnPWebPart" }, { "Id": 1186, + "Rank": 1, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "CommandName": "Remove-PnPWikiPage", - "Rank": 1 + "CommandName": "Remove-PnPWikiPage" }, { "Id": 1187, + "Rank": 1, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile", - "Rank": 1 + "CommandName": "Rename-PnPFile" }, { "Id": 1188, + "Rank": 2, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile", - "Rank": 2 + "CommandName": "Rename-PnPFile" }, { "Id": 1189, + "Rank": 3, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "CommandName": "Rename-PnPFile", - "Rank": 3 + "CommandName": "Rename-PnPFile" }, { "Id": 1190, + "Rank": 1, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "CommandName": "Rename-PnPFolder", - "Rank": 1 + "CommandName": "Rename-PnPFolder" }, { "Id": 1191, + "Rank": 1, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Repair-PnPSite", - "Rank": 1 + "CommandName": "Repair-PnPSite" }, { "Id": 1192, + "Rank": 2, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "CommandName": "Repair-PnPSite", - "Rank": 2 + "CommandName": "Repair-PnPSite" }, { "Id": 1193, + "Rank": 1, "Command": "Request-PnPAccessToken", - "CommandName": "Request-PnPAccessToken", - "Rank": 1 + "CommandName": "Request-PnPAccessToken" }, { "Id": 1194, + "Rank": 2, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "CommandName": "Request-PnPAccessToken", - "Rank": 2 + "CommandName": "Request-PnPAccessToken" }, { "Id": 1195, + "Rank": 3, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "CommandName": "Request-PnPAccessToken", - "Rank": 3 + "CommandName": "Request-PnPAccessToken" }, { "Id": 1196, + "Rank": 4, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "CommandName": "Request-PnPAccessToken", - "Rank": 4 + "CommandName": "Request-PnPAccessToken" }, { "Id": 1197, + "Rank": 1, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "CommandName": "Request-PnPPersonalSite", - "Rank": 1 + "CommandName": "Request-PnPPersonalSite" }, { "Id": 1198, + "Rank": 2, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "CommandName": "Request-PnPPersonalSite", - "Rank": 2 + "CommandName": "Request-PnPPersonalSite" }, { "Id": 1199, + "Rank": 1, "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "CommandName": "Request-PnPReIndexList", - "Rank": 1 + "CommandName": "Request-PnPReIndexList" }, { "Id": 1200, + "Rank": 1, "Command": "Request-PnPReIndexWeb", - "CommandName": "Request-PnPReIndexWeb", - "Rank": 1 + "CommandName": "Request-PnPReIndexWeb" }, { "Id": 1201, + "Rank": 1, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 1 + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Id": 1202, + "Rank": 2, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 2 + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Id": 1203, + "Rank": 3, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 3 + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Id": 1204, + "Rank": 1, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "CommandName": "Reset-PnPFileVersion", - "Rank": 1 + "CommandName": "Reset-PnPFileVersion" }, { "Id": 1205, + "Rank": 2, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "CommandName": "Reset-PnPFileVersion", - "Rank": 2 + "CommandName": "Reset-PnPFileVersion" }, { "Id": 1206, + "Rank": 1, "Command": "Reset-PnPLabel -List \"Demo List\"", - "CommandName": "Reset-PnPLabel", - "Rank": 1 + "CommandName": "Reset-PnPLabel" }, { "Id": 1207, + "Rank": 2, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "CommandName": "Reset-PnPLabel", - "Rank": 2 + "CommandName": "Reset-PnPLabel" }, { "Id": 1208, + "Rank": 1, "Command": "Reset-PnPMicrosoft365GroupExpiration", - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1 + "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { "Id": 1209, + "Rank": 1, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Rank": 1 + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { "Id": 1210, + "Rank": 1, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "CommandName": "Resolve-PnPFolder", - "Rank": 1 + "CommandName": "Resolve-PnPFolder" }, { "Id": 1211, + "Rank": 1, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Rank": 1 + "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { "Id": 1212, + "Rank": 1, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion", - "Rank": 1 + "CommandName": "Restore-PnPFileVersion" }, { "Id": 1213, + "Rank": 2, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion", - "Rank": 2 + "CommandName": "Restore-PnPFileVersion" }, { "Id": 1214, + "Rank": 3, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Restore-PnPFileVersion", - "Rank": 3 + "CommandName": "Restore-PnPFileVersion" }, { "Id": 1215, + "Rank": 1, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Restore-PnPListItemVersion", - "Rank": 1 + "CommandName": "Restore-PnPListItemVersion" }, { "Id": 1216, + "Rank": 2, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Restore-PnPListItemVersion", - "Rank": 2 + "CommandName": "Restore-PnPListItemVersion" }, { "Id": 1217, + "Rank": 1, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Restore-PnPRecycleBinItem", - "Rank": 1 + "CommandName": "Restore-PnPRecycleBinItem" }, { "Id": 1218, + "Rank": 1, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Rank": 1 + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { "Id": 1219, + "Rank": 2, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Rank": 2 + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { "Id": 1220, + "Rank": 1, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantSite", - "Rank": 1 + "CommandName": "Restore-PnPTenantSite" }, { "Id": 1221, + "Rank": 2, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Restore-PnPTenantSite", - "Rank": 2 + "CommandName": "Restore-PnPTenantSite" }, { "Id": 1222, + "Rank": 3, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "CommandName": "Restore-PnPTenantSite", - "Rank": 3 + "CommandName": "Restore-PnPTenantSite" }, { "Id": 1223, + "Rank": 1, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Rank": 1 + "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { "Id": 1224, + "Rank": 1, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Revoke-PnPHubSiteRights", - "Rank": 1 + "CommandName": "Revoke-PnPHubSiteRights" }, { "Id": 1225, + "Rank": 1, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Revoke-PnPSiteDesignRights", - "Rank": 1 + "CommandName": "Revoke-PnPSiteDesignRights" }, { "Id": 1226, + "Rank": 1, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Rank": 1 + "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { "Id": 1227, + "Rank": 1, "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "CommandName": "Revoke-PnPUserSession", - "Rank": 1 + "CommandName": "Revoke-PnPUserSession" }, { "Id": 1228, + "Rank": 1, "Command": "Save-PnPPageConversionLog", - "CommandName": "Save-PnPPageConversionLog", - "Rank": 1 + "CommandName": "Save-PnPPageConversionLog" }, { "Id": 1229, + "Rank": 1, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "CommandName": "Save-PnPSiteTemplate", - "Rank": 1 + "CommandName": "Save-PnPSiteTemplate" }, { "Id": 1230, + "Rank": 1, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "CommandName": "Save-PnPTenantTemplate", - "Rank": 1 + "CommandName": "Save-PnPTenantTemplate" }, { "Id": 1231, + "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", - "Rank": 1 + "CommandName": "Send-PnPMail" }, { "Id": 1232, + "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", - "Rank": 2 + "CommandName": "Send-PnPMail" }, { "Id": 1233, + "Rank": 3, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "CommandName": "Send-PnPMail", - "Rank": 3 + "CommandName": "Send-PnPMail" }, { "Id": 1234, + "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", - "Rank": 4 + "CommandName": "Send-PnPMail" }, { "Id": 1235, + "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", - "Rank": 5 + "CommandName": "Send-PnPMail" }, { "Id": 1236, + "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", - "Rank": 6 + "CommandName": "Send-PnPMail" }, { "Id": 1237, + "Rank": 1, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "CommandName": "Set-PnPAdaptiveScopeProperty", - "Rank": 1 + "CommandName": "Set-PnPAdaptiveScopeProperty" }, { "Id": 1238, + "Rank": 1, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Set-PnPApplicationCustomizer", - "Rank": 1 + "CommandName": "Set-PnPApplicationCustomizer" }, { "Id": 1239, + "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", - "Rank": 2 + "CommandName": "Set-PnPApplicationCustomizer" }, { "Id": 1240, + "Rank": 1, "Command": "Set-PnPAppSideLoading -On", - "CommandName": "Set-PnPAppSideLoading", - "Rank": 1 + "CommandName": "Set-PnPAppSideLoading" }, { "Id": 1241, + "Rank": 2, "Command": "Set-PnPAppSideLoading -Off", - "CommandName": "Set-PnPAppSideLoading", - "Rank": 2 + "CommandName": "Set-PnPAppSideLoading" }, { "Id": 1242, + "Rank": 1, "Command": "Set-PnPAuditing -EnableAll", - "CommandName": "Set-PnPAuditing", - "Rank": 1 + "CommandName": "Set-PnPAuditing" }, { "Id": 1243, + "Rank": 2, "Command": "Set-PnPAuditing -DisableAll", - "CommandName": "Set-PnPAuditing", - "Rank": 2 + "CommandName": "Set-PnPAuditing" }, { "Id": 1244, + "Rank": 3, "Command": "Set-PnPAuditing -RetentionTime 7", - "CommandName": "Set-PnPAuditing", - "Rank": 3 + "CommandName": "Set-PnPAuditing" }, { "Id": 1245, + "Rank": 4, "Command": "Set-PnPAuditing -TrimAuditLog", - "CommandName": "Set-PnPAuditing", - "Rank": 4 + "CommandName": "Set-PnPAuditing" }, { "Id": 1246, + "Rank": 5, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "CommandName": "Set-PnPAuditing", - "Rank": 5 + "CommandName": "Set-PnPAuditing" }, { "Id": 1247, + "Rank": 1, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "CommandName": "Set-PnPAvailablePageLayouts", - "Rank": 1 + "CommandName": "Set-PnPAvailablePageLayouts" }, { "Id": 1248, + "Rank": 1, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "CommandName": "Set-PnPAzureADAppSitePermission", - "Rank": 1 + "CommandName": "Set-PnPAzureADAppSitePermission" }, { "Id": 1249, + "Rank": 2, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "CommandName": "Set-PnPAzureADAppSitePermission", - "Rank": 2 + "CommandName": "Set-PnPAzureADAppSitePermission" }, { "Id": 1250, + "Rank": 1, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup", - "Rank": 1 + "CommandName": "Set-PnPAzureADGroup" }, { "Id": 1251, + "Rank": 2, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup", - "Rank": 2 + "CommandName": "Set-PnPAzureADGroup" }, { "Id": 1252, + "Rank": 3, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPAzureADGroup", - "Rank": 3 + "CommandName": "Set-PnPAzureADGroup" }, { "Id": 1253, + "Rank": 1, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 1 + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Id": 1254, + "Rank": 2, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 2 + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Id": 1255, + "Rank": 3, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 3 + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Id": 1256, + "Rank": 1, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Rank": 1 + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { "Id": 1257, + "Rank": 2, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Rank": 2 + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { "Id": 1258, + "Rank": 1, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 1 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Id": 1259, + "Rank": 2, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 2 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Id": 1260, + "Rank": 3, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 3 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Id": 1261, + "Rank": 4, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 4 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Id": 1262, + "Rank": 1, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType", - "Rank": 1 + "CommandName": "Set-PnPContentType" }, { "Id": 1263, + "Rank": 2, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "CommandName": "Set-PnPContentType", - "Rank": 2 + "CommandName": "Set-PnPContentType" }, { "Id": 1264, + "Rank": 3, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType", - "Rank": 3 + "CommandName": "Set-PnPContentType" }, { "Id": 1265, + "Rank": 4, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "CommandName": "Set-PnPContentType", - "Rank": 4 + "CommandName": "Set-PnPContentType" }, { "Id": 1266, + "Rank": 5, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "CommandName": "Set-PnPContentType", - "Rank": 5 + "CommandName": "Set-PnPContentType" }, { "Id": 1267, + "Rank": 1, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 1 + "CommandName": "Set-PnPDefaultColumnValues" }, { "Id": 1268, + "Rank": 2, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 2 + "CommandName": "Set-PnPDefaultColumnValues" }, { "Id": 1269, + "Rank": 3, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 3 + "CommandName": "Set-PnPDefaultColumnValues" }, { "Id": 1270, + "Rank": 4, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 4 + "CommandName": "Set-PnPDefaultColumnValues" }, { "Id": 1271, + "Rank": 1, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "CommandName": "Set-PnPDefaultContentTypeToList", - "Rank": 1 + "CommandName": "Set-PnPDefaultContentTypeToList" }, { "Id": 1272, + "Rank": 1, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 1 + "CommandName": "Set-PnPDefaultPageLayout" }, { "Id": 1273, + "Rank": 2, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 2 + "CommandName": "Set-PnPDefaultPageLayout" }, { "Id": 1274, + "Rank": 3, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 3 + "CommandName": "Set-PnPDefaultPageLayout" }, { "Id": 1275, + "Rank": 1, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 1 + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Id": 1276, + "Rank": 2, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 2 + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Id": 1277, + "Rank": 3, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 3 + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Id": 1278, + "Rank": 1, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "CommandName": "Set-PnPDocumentSetField", - "Rank": 1 + "CommandName": "Set-PnPDocumentSetField" }, { "Id": 1279, + "Rank": 2, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "CommandName": "Set-PnPDocumentSetField", - "Rank": 2 + "CommandName": "Set-PnPDocumentSetField" }, { "Id": 1280, + "Rank": 1, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "CommandName": "Set-PnPField", - "Rank": 1 + "CommandName": "Set-PnPField" }, { "Id": 1281, + "Rank": 2, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "CommandName": "Set-PnPField", - "Rank": 2 + "CommandName": "Set-PnPField" }, { "Id": 1282, + "Rank": 3, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "CommandName": "Set-PnPField", - "Rank": 3 + "CommandName": "Set-PnPField" }, { "Id": 1283, + "Rank": 1, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedIn", - "Rank": 1 + "CommandName": "Set-PnPFileCheckedIn" }, { "Id": 1284, + "Rank": 2, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "CommandName": "Set-PnPFileCheckedIn", - "Rank": 2 + "CommandName": "Set-PnPFileCheckedIn" }, { "Id": 1285, + "Rank": 1, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedOut", - "Rank": 1 + "CommandName": "Set-PnPFileCheckedOut" }, { "Id": 1286, + "Rank": 1, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission", - "Rank": 1 + "CommandName": "Set-PnPFolderPermission" }, { "Id": 1287, + "Rank": 2, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission", - "Rank": 2 + "CommandName": "Set-PnPFolderPermission" }, { "Id": 1288, + "Rank": 3, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "CommandName": "Set-PnPFolderPermission", - "Rank": 3 + "CommandName": "Set-PnPFolderPermission" }, { "Id": 1289, + "Rank": 1, "Command": "Set-PnPFooter -Enabled:$true", - "CommandName": "Set-PnPFooter", - "Rank": 1 + "CommandName": "Set-PnPFooter" }, { "Id": 1290, + "Rank": 2, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "CommandName": "Set-PnPFooter", - "Rank": 2 + "CommandName": "Set-PnPFooter" }, { "Id": 1291, + "Rank": 3, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "CommandName": "Set-PnPFooter", - "Rank": 3 + "CommandName": "Set-PnPFooter" }, { "Id": 1292, + "Rank": 4, "Command": "Set-PnPFooter -LogoUrl \"\"", - "CommandName": "Set-PnPFooter", - "Rank": 4 + "CommandName": "Set-PnPFooter" }, { "Id": 1293, + "Rank": 1, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "CommandName": "Set-PnPGraphSubscription", - "Rank": 1 + "CommandName": "Set-PnPGraphSubscription" }, { "Id": 1294, + "Rank": 1, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "CommandName": "Set-PnPGroup", - "Rank": 1 + "CommandName": "Set-PnPGroup" }, { "Id": 1295, + "Rank": 2, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "CommandName": "Set-PnPGroup", - "Rank": 2 + "CommandName": "Set-PnPGroup" }, { "Id": 1296, + "Rank": 1, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "CommandName": "Set-PnPGroupPermissions", - "Rank": 1 + "CommandName": "Set-PnPGroupPermissions" }, { "Id": 1297, + "Rank": 2, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "CommandName": "Set-PnPGroupPermissions", - "Rank": 2 + "CommandName": "Set-PnPGroupPermissions" }, { "Id": 1298, + "Rank": 3, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions", - "Rank": 3 + "CommandName": "Set-PnPGroupPermissions" }, { "Id": 1299, + "Rank": 4, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions", - "Rank": 4 + "CommandName": "Set-PnPGroupPermissions" }, { "Id": 1300, + "Rank": 5, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "CommandName": "Set-PnPGroupPermissions", - "Rank": 5 + "CommandName": "Set-PnPGroupPermissions" }, { "Id": 1301, + "Rank": 1, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "CommandName": "Set-PnPHideDefaultThemes", - "Rank": 1 + "CommandName": "Set-PnPHideDefaultThemes" }, { "Id": 1302, + "Rank": 2, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "CommandName": "Set-PnPHideDefaultThemes", - "Rank": 2 + "CommandName": "Set-PnPHideDefaultThemes" }, { "Id": 1303, + "Rank": 1, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "CommandName": "Set-PnPHomePage", - "Rank": 1 + "CommandName": "Set-PnPHomePage" }, { "Id": 1304, + "Rank": 2, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "CommandName": "Set-PnPHomePage", - "Rank": 2 + "CommandName": "Set-PnPHomePage" }, { "Id": 1305, + "Rank": 1, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "CommandName": "Set-PnPHomeSite", - "Rank": 1 + "CommandName": "Set-PnPHomeSite" }, { "Id": 1306, + "Rank": 2, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "CommandName": "Set-PnPHomeSite", - "Rank": 2 + "CommandName": "Set-PnPHomeSite" }, { "Id": 1307, + "Rank": 1, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "CommandName": "Set-PnPHubSite", - "Rank": 1 + "CommandName": "Set-PnPHubSite" }, { "Id": 1308, + "Rank": 2, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "CommandName": "Set-PnPHubSite", - "Rank": 2 + "CommandName": "Set-PnPHubSite" }, { "Id": 1309, + "Rank": 3, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "CommandName": "Set-PnPHubSite", - "Rank": 3 + "CommandName": "Set-PnPHubSite" }, { "Id": 1310, + "Rank": 4, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "CommandName": "Set-PnPHubSite", - "Rank": 4 + "CommandName": "Set-PnPHubSite" }, { "Id": 1311, + "Rank": 5, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "CommandName": "Set-PnPHubSite", - "Rank": 5 + "CommandName": "Set-PnPHubSite" }, { "Id": 1312, + "Rank": 6, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "CommandName": "Set-PnPHubSite", - "Rank": 6 + "CommandName": "Set-PnPHubSite" }, { "Id": 1313, + "Rank": 1, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "CommandName": "Set-PnPImageListItemColumn", - "Rank": 1 + "CommandName": "Set-PnPImageListItemColumn" }, { "Id": 1314, + "Rank": 2, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "CommandName": "Set-PnPImageListItemColumn", - "Rank": 2 + "CommandName": "Set-PnPImageListItemColumn" }, { "Id": 1315, + "Rank": 1, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "CommandName": "Set-PnPIndexedProperties", - "Rank": 1 + "CommandName": "Set-PnPIndexedProperties" }, { "Id": 1316, + "Rank": 1, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Rank": 1 + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { "Id": 1317, + "Rank": 2, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Rank": 2 + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { "Id": 1318, + "Rank": 1, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "CommandName": "Set-PnPKnowledgeHubSite", - "Rank": 1 + "CommandName": "Set-PnPKnowledgeHubSite" }, { "Id": 1319, + "Rank": 1, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "CommandName": "Set-PnPLabel", - "Rank": 1 + "CommandName": "Set-PnPLabel" }, { "Id": 1320, + "Rank": 2, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "CommandName": "Set-PnPLabel", - "Rank": 2 + "CommandName": "Set-PnPLabel" }, { "Id": 1321, + "Rank": 1, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "CommandName": "Set-PnPList", - "Rank": 1 + "CommandName": "Set-PnPList" }, { "Id": 1322, + "Rank": 2, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "CommandName": "Set-PnPList", - "Rank": 2 + "CommandName": "Set-PnPList" }, { "Id": 1323, + "Rank": 3, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "CommandName": "Set-PnPList", - "Rank": 3 + "CommandName": "Set-PnPList" }, { "Id": 1324, + "Rank": 4, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "CommandName": "Set-PnPList", - "Rank": 4 + "CommandName": "Set-PnPList" }, { "Id": 1325, + "Rank": 5, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "CommandName": "Set-PnPList", - "Rank": 5 + "CommandName": "Set-PnPList" }, { "Id": 1326, + "Rank": 6, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "CommandName": "Set-PnPList", - "Rank": 6 + "CommandName": "Set-PnPList" }, { "Id": 1327, + "Rank": 7, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "CommandName": "Set-PnPList", - "Rank": 7 + "CommandName": "Set-PnPList" }, { "Id": 1328, + "Rank": 8, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPList", - "Rank": 8 + "CommandName": "Set-PnPList" }, { "Id": 1329, + "Rank": 9, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "CommandName": "Set-PnPList", - "Rank": 9 + "CommandName": "Set-PnPList" }, { "Id": 1330, + "Rank": 10, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "CommandName": "Set-PnPList", - "Rank": 10 + "CommandName": "Set-PnPList" }, { "Id": 1331, + "Rank": 11, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "CommandName": "Set-PnPList", - "Rank": 11 + "CommandName": "Set-PnPList" }, { "Id": 1332, + "Rank": 1, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "CommandName": "Set-PnPListInformationRightsManagement", - "Rank": 1 + "CommandName": "Set-PnPListInformationRightsManagement" }, { "Id": 1333, + "Rank": 2, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "CommandName": "Set-PnPListInformationRightsManagement", - "Rank": 2 + "CommandName": "Set-PnPListInformationRightsManagement" }, { "Id": 1334, + "Rank": 1, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", - "Rank": 1 + "CommandName": "Set-PnPListItem" }, { "Id": 1335, + "Rank": 2, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", - "Rank": 2 + "CommandName": "Set-PnPListItem" }, { "Id": 1336, + "Rank": 3, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", - "Rank": 3 + "CommandName": "Set-PnPListItem" }, { "Id": 1337, + "Rank": 4, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "CommandName": "Set-PnPListItem", - "Rank": 4 + "CommandName": "Set-PnPListItem" }, { "Id": 1338, + "Rank": 5, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "CommandName": "Set-PnPListItem", - "Rank": 5 + "CommandName": "Set-PnPListItem" }, { "Id": 1339, + "Rank": 1, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Set-PnPListItemAsRecord", - "Rank": 1 + "CommandName": "Set-PnPListItemAsRecord" }, { "Id": 1340, + "Rank": 2, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "CommandName": "Set-PnPListItemAsRecord", - "Rank": 2 + "CommandName": "Set-PnPListItemAsRecord" }, { "Id": 1341, + "Rank": 1, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission", - "Rank": 1 + "CommandName": "Set-PnPListItemPermission" }, { "Id": 1342, + "Rank": 2, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission", - "Rank": 2 + "CommandName": "Set-PnPListItemPermission" }, { "Id": 1343, + "Rank": 3, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "CommandName": "Set-PnPListItemPermission", - "Rank": 3 + "CommandName": "Set-PnPListItemPermission" }, { "Id": 1344, + "Rank": 4, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "CommandName": "Set-PnPListItemPermission", - "Rank": 4 + "CommandName": "Set-PnPListItemPermission" }, { "Id": 1345, + "Rank": 5, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "CommandName": "Set-PnPListItemPermission", - "Rank": 5 + "CommandName": "Set-PnPListItemPermission" }, { "Id": 1346, + "Rank": 1, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListPermission", - "Rank": 1 + "CommandName": "Set-PnPListPermission" }, { "Id": 1347, + "Rank": 2, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListPermission", - "Rank": 2 + "CommandName": "Set-PnPListPermission" }, { "Id": 1348, + "Rank": 1, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "CommandName": "Set-PnPListRecordDeclaration", - "Rank": 1 + "CommandName": "Set-PnPListRecordDeclaration" }, { "Id": 1349, + "Rank": 2, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "CommandName": "Set-PnPListRecordDeclaration", - "Rank": 2 + "CommandName": "Set-PnPListRecordDeclaration" }, { "Id": 1350, + "Rank": 1, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", - "Rank": 1 + "CommandName": "Set-PnPMasterPage" }, { "Id": 1351, + "Rank": 2, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", - "Rank": 2 + "CommandName": "Set-PnPMasterPage" }, { "Id": 1352, + "Rank": 3, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", - "Rank": 3 + "CommandName": "Set-PnPMasterPage" }, { "Id": 1353, + "Rank": 4, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", - "Rank": 4 + "CommandName": "Set-PnPMasterPage" }, { "Id": 1354, + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Id": 1355, + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Id": 1356, + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Id": 1357, + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Id": 1358, + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Id": 1359, + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Id": 1360, + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Id": 1361, + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Id": 1362, + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Id": 1363, + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Id": 1364, + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Id": 1365, + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Id": 1366, + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Id": 1367, + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Id": 1368, + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Id": 1369, + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Id": 1370, + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Id": 1371, + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Id": 1372, + "Rank": 1, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 1 + "CommandName": "Set-PnPMicrosoft365Group" }, { "Id": 1373, + "Rank": 2, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 2 + "CommandName": "Set-PnPMicrosoft365Group" }, { "Id": 1374, + "Rank": 3, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 3 + "CommandName": "Set-PnPMicrosoft365Group" }, { "Id": 1375, + "Rank": 4, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 4 + "CommandName": "Set-PnPMicrosoft365Group" }, { "Id": 1376, + "Rank": 5, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 5 + "CommandName": "Set-PnPMicrosoft365Group" }, { "Id": 1377, + "Rank": 6, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 6 + "CommandName": "Set-PnPMicrosoft365Group" }, { "Id": 1378, + "Rank": 1, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Rank": 1 + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { "Id": 1379, + "Rank": 2, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Rank": 2 + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { "Id": 1380, + "Rank": 1, "Command": "Set-PnPMinimalDownloadStrategy -Off", - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Rank": 1 + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { "Id": 1381, + "Rank": 2, "Command": "Set-PnPMinimalDownloadStrategy -On", - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Rank": 2 + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { "Id": 1382, + "Rank": 1, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "CommandName": "Set-PnPPage", - "Rank": 1 + "CommandName": "Set-PnPPage" }, { "Id": 1383, + "Rank": 2, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "CommandName": "Set-PnPPage", - "Rank": 2 + "CommandName": "Set-PnPPage" }, { "Id": 1384, + "Rank": 3, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "CommandName": "Set-PnPPage", - "Rank": 3 + "CommandName": "Set-PnPPage" }, { "Id": 1385, + "Rank": 4, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "CommandName": "Set-PnPPage", - "Rank": 4 + "CommandName": "Set-PnPPage" }, { "Id": 1386, + "Rank": 5, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "CommandName": "Set-PnPPage", - "Rank": 5 + "CommandName": "Set-PnPPage" }, { "Id": 1387, + "Rank": 6, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "CommandName": "Set-PnPPage", - "Rank": 6 + "CommandName": "Set-PnPPage" }, { "Id": 1388, + "Rank": 7, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Set-PnPPage", - "Rank": 7 + "CommandName": "Set-PnPPage" }, { "Id": 1389, + "Rank": 8, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "CommandName": "Set-PnPPage", - "Rank": 8 + "CommandName": "Set-PnPPage" }, { "Id": 1390, + "Rank": 9, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Set-PnPPage", - "Rank": 9 + "CommandName": "Set-PnPPage" }, { "Id": 1391, + "Rank": 10, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Set-PnPPage", - "Rank": 10 + "CommandName": "Set-PnPPage" }, { "Id": 1392, + "Rank": 11, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "CommandName": "Set-PnPPage", - "Rank": 11 + "CommandName": "Set-PnPPage" }, { "Id": 1393, + "Rank": 1, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "CommandName": "Set-PnPPageTextPart", - "Rank": 1 + "CommandName": "Set-PnPPageTextPart" }, { "Id": 1394, + "Rank": 1, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "CommandName": "Set-PnPPageWebPart", - "Rank": 1 + "CommandName": "Set-PnPPageWebPart" }, { "Id": 1395, + "Rank": 2, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "CommandName": "Set-PnPPageWebPart", - "Rank": 2 + "CommandName": "Set-PnPPageWebPart" }, { "Id": 1396, + "Rank": 1, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "CommandName": "Set-PnPPlannerBucket", - "Rank": 1 + "CommandName": "Set-PnPPlannerBucket" }, { "Id": 1397, + "Rank": 1, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "CommandName": "Set-PnPPlannerConfiguration", - "Rank": 1 + "CommandName": "Set-PnPPlannerConfiguration" }, { "Id": 1398, + "Rank": 2, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "CommandName": "Set-PnPPlannerConfiguration", - "Rank": 2 + "CommandName": "Set-PnPPlannerConfiguration" }, { "Id": 1399, + "Rank": 1, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "CommandName": "Set-PnPPlannerPlan", - "Rank": 1 + "CommandName": "Set-PnPPlannerPlan" }, { "Id": 1400, + "Rank": 1, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "CommandName": "Set-PnPPlannerTask", - "Rank": 1 + "CommandName": "Set-PnPPlannerTask" }, { "Id": 1401, + "Rank": 2, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "CommandName": "Set-PnPPlannerTask", - "Rank": 2 + "CommandName": "Set-PnPPlannerTask" }, { "Id": 1402, + "Rank": 3, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "CommandName": "Set-PnPPlannerTask", - "Rank": 3 + "CommandName": "Set-PnPPlannerTask" }, { "Id": 1403, + "Rank": 1, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPPlannerUserPolicy", - "Rank": 1 + "CommandName": "Set-PnPPlannerUserPolicy" }, { "Id": 1404, + "Rank": 1, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "CommandName": "Set-PnPPropertyBagValue", - "Rank": 1 + "CommandName": "Set-PnPPropertyBagValue" }, { "Id": 1405, + "Rank": 2, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "CommandName": "Set-PnPPropertyBagValue", - "Rank": 2 + "CommandName": "Set-PnPPropertyBagValue" }, { "Id": 1406, + "Rank": 3, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "CommandName": "Set-PnPPropertyBagValue", - "Rank": 3 + "CommandName": "Set-PnPPropertyBagValue" }, { "Id": 1407, + "Rank": 1, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 1 + "CommandName": "Set-PnPRequestAccessEmails" }, { "Id": 1408, + "Rank": 2, "Command": "Set-PnPRequestAccessEmails -Disabled", - "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 2 + "CommandName": "Set-PnPRequestAccessEmails" }, { "Id": 1409, + "Rank": 3, "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 3 + "CommandName": "Set-PnPRequestAccessEmails" }, { "Id": 1410, + "Rank": 1, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "CommandName": "Set-PnPRoleDefinition", - "Rank": 1 + "CommandName": "Set-PnPRoleDefinition" }, { "Id": 1411, + "Rank": 2, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "CommandName": "Set-PnPRoleDefinition", - "Rank": 2 + "CommandName": "Set-PnPRoleDefinition" }, { "Id": 1412, + "Rank": 3, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "CommandName": "Set-PnPRoleDefinition", - "Rank": 3 + "CommandName": "Set-PnPRoleDefinition" }, { "Id": 1413, + "Rank": 4, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "CommandName": "Set-PnPRoleDefinition", - "Rank": 4 + "CommandName": "Set-PnPRoleDefinition" }, { "Id": 1414, + "Rank": 1, "Command": "Set-PnPSearchConfiguration -Configuration $config", - "CommandName": "Set-PnPSearchConfiguration", - "Rank": 1 + "CommandName": "Set-PnPSearchConfiguration" }, { "Id": 1415, + "Rank": 2, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Set-PnPSearchConfiguration", - "Rank": 2 + "CommandName": "Set-PnPSearchConfiguration" }, { "Id": 1416, + "Rank": 3, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration", - "Rank": 3 + "CommandName": "Set-PnPSearchConfiguration" }, { "Id": 1417, + "Rank": 4, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration", - "Rank": 4 + "CommandName": "Set-PnPSearchConfiguration" }, { "Id": 1418, + "Rank": 1, "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone", - "CommandName": "Set-PnPSearchExternalItem", - "Rank": 1 + "CommandName": "Set-PnPSearchExternalItem" }, { "Id": 1419, + "Rank": 2, "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPSearchExternalItem", - "Rank": 2 + "CommandName": "Set-PnPSearchExternalItem" }, { "Id": 1420, + "Rank": 1, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "CommandName": "Set-PnPSearchSettings", - "Rank": 1 + "CommandName": "Set-PnPSearchSettings" }, { "Id": 1421, + "Rank": 2, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "CommandName": "Set-PnPSearchSettings", - "Rank": 2 + "CommandName": "Set-PnPSearchSettings" }, { "Id": 1422, + "Rank": 3, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "CommandName": "Set-PnPSearchSettings", - "Rank": 3 + "CommandName": "Set-PnPSearchSettings" }, { "Id": 1423, + "Rank": 4, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "CommandName": "Set-PnPSearchSettings", - "Rank": 4 + "CommandName": "Set-PnPSearchSettings" }, { "Id": 1424, + "Rank": 5, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "CommandName": "Set-PnPSearchSettings", - "Rank": 5 + "CommandName": "Set-PnPSearchSettings" }, { "Id": 1425, + "Rank": 6, "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "CommandName": "Set-PnPSearchSettings", - "Rank": 6 + "CommandName": "Set-PnPSearchSettings" }, { "Id": 1426, + "Rank": 7, "Command": "Set-PnPSearchSettings -SearchScope Hub", - "CommandName": "Set-PnPSearchSettings", - "Rank": 7 + "CommandName": "Set-PnPSearchSettings" }, { "Id": 1427, + "Rank": 1, "Command": "Set-PnPSite -Classification \"HBI\"", - "CommandName": "Set-PnPSite", - "Rank": 1 + "CommandName": "Set-PnPSite" }, { "Id": 1428, + "Rank": 2, "Command": "Set-PnPSite -Classification $null", - "CommandName": "Set-PnPSite", - "Rank": 2 + "CommandName": "Set-PnPSite" }, { "Id": 1429, + "Rank": 3, "Command": "Set-PnPSite -DisableFlows", - "CommandName": "Set-PnPSite", - "Rank": 3 + "CommandName": "Set-PnPSite" }, { "Id": 1430, + "Rank": 4, "Command": "Set-PnPSite -DisableFlows:$false", - "CommandName": "Set-PnPSite", - "Rank": 4 + "CommandName": "Set-PnPSite" }, { "Id": 1431, + "Rank": 5, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "CommandName": "Set-PnPSite", - "Rank": 5 + "CommandName": "Set-PnPSite" }, { "Id": 1432, + "Rank": 6, "Command": "Set-PnPSite -NoScriptSite $false", - "CommandName": "Set-PnPSite", - "Rank": 6 + "CommandName": "Set-PnPSite" }, { "Id": 1433, + "Rank": 7, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPSite", - "Rank": 7 + "CommandName": "Set-PnPSite" }, { "Id": 1434, + "Rank": 8, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "CommandName": "Set-PnPSite", - "Rank": 8 + "CommandName": "Set-PnPSite" }, { "Id": 1435, + "Rank": 9, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "CommandName": "Set-PnPSite", - "Rank": 9 + "CommandName": "Set-PnPSite" }, { "Id": 1436, + "Rank": 10, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "CommandName": "Set-PnPSite", - "Rank": 10 + "CommandName": "Set-PnPSite" }, { "Id": 1437, + "Rank": 11, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "CommandName": "Set-PnPSite", - "Rank": 11 + "CommandName": "Set-PnPSite" }, { "Id": 1438, + "Rank": 12, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "CommandName": "Set-PnPSite", - "Rank": 12 + "CommandName": "Set-PnPSite" }, { "Id": 1439, + "Rank": 13, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "CommandName": "Set-PnPSite", - "Rank": 13 + "CommandName": "Set-PnPSite" }, { "Id": 1440, + "Rank": 14, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", - "Rank": 14 + "CommandName": "Set-PnPSite" }, { "Id": 1441, + "Rank": 15, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", - "Rank": 15 + "CommandName": "Set-PnPSite" }, { "Id": 1442, + "Rank": 16, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", - "Rank": 16 + "CommandName": "Set-PnPSite" }, { "Id": 1443, + "Rank": 17, "Command": "Set-PnPSite -CancelVPForExistingLibs", - "CommandName": "Set-PnPSite", - "Rank": 17 + "CommandName": "Set-PnPSite" }, { "Id": 1444, + "Rank": 1, "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "CommandName": "Set-PnPSiteClassification", - "Rank": 1 + "CommandName": "Set-PnPSiteClassification" }, { "Id": 1445, + "Rank": 1, "Command": "Set-PnPSiteClosure -State Open", - "CommandName": "Set-PnPSiteClosure", - "Rank": 1 + "CommandName": "Set-PnPSiteClosure" }, { "Id": 1446, + "Rank": 2, "Command": "Set-PnPSiteClosure -State Closed", - "CommandName": "Set-PnPSiteClosure", - "Rank": 2 + "CommandName": "Set-PnPSiteClosure" }, { "Id": 1447, + "Rank": 1, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "CommandName": "Set-PnPSiteDesign", - "Rank": 1 + "CommandName": "Set-PnPSiteDesign" }, { "Id": 1448, + "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", - "Rank": 2 + "CommandName": "Set-PnPSiteDesign" }, { "Id": 1449, + "Rank": 1, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "CommandName": "Set-PnPSiteGroup", - "Rank": 1 + "CommandName": "Set-PnPSiteGroup" }, { "Id": 1450, + "Rank": 2, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "CommandName": "Set-PnPSiteGroup", - "Rank": 2 + "CommandName": "Set-PnPSiteGroup" }, { "Id": 1451, + "Rank": 1, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Set-PnPSitePolicy", - "Rank": 1 + "CommandName": "Set-PnPSitePolicy" }, { "Id": 1452, + "Rank": 1, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScript", - "Rank": 1 + "CommandName": "Set-PnPSiteScript" }, { "Id": 1453, + "Rank": 1, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScriptPackage", - "Rank": 1 + "CommandName": "Set-PnPSiteScriptPackage" }, { "Id": 1454, + "Rank": 1, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "CommandName": "Set-PnPSiteSensitivityLabel", - "Rank": 1 + "CommandName": "Set-PnPSiteSensitivityLabel" }, { "Id": 1455, + "Rank": 2, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "CommandName": "Set-PnPSiteSensitivityLabel", - "Rank": 2 + "CommandName": "Set-PnPSiteSensitivityLabel" }, { "Id": 1456, + "Rank": 1, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 1 + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Id": 1457, + "Rank": 2, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 2 + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Id": 1458, + "Rank": 3, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 3 + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Id": 1459, + "Rank": 4, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 4 + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Id": 1460, + "Rank": 5, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 5 + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Id": 1461, + "Rank": 6, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 6 + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Id": 1462, + "Rank": 1, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity", - "Rank": 1 + "CommandName": "Set-PnPStorageEntity" }, { "Id": 1463, + "Rank": 2, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity", - "Rank": 2 + "CommandName": "Set-PnPStorageEntity" }, { "Id": 1464, + "Rank": 1, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Rank": 1 + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { "Id": 1465, + "Rank": 2, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Rank": 2 + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { "Id": 1466, + "Rank": 1, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Rank": 1 + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { "Id": 1467, + "Rank": 2, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Rank": 2 + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { "Id": 1468, + "Rank": 1, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Rank": 1 + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { "Id": 1469, + "Rank": 2, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Rank": 2 + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { "Id": 1470, + "Rank": 1, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 1 + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Id": 1471, + "Rank": 2, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 2 + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Id": 1472, + "Rank": 3, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 3 + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Id": 1473, + "Rank": 1, "Command": "Set-PnPTeamifyPromptHidden", - "CommandName": "Set-PnPTeamifyPromptHidden", - "Rank": 1 + "CommandName": "Set-PnPTeamifyPromptHidden" }, { "Id": 1474, + "Rank": 1, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "CommandName": "Set-PnPTeamsChannel", - "Rank": 1 + "CommandName": "Set-PnPTeamsChannel" }, { "Id": 1475, + "Rank": 2, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "CommandName": "Set-PnPTeamsChannel", - "Rank": 2 + "CommandName": "Set-PnPTeamsChannel" }, { "Id": 1476, + "Rank": 1, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "CommandName": "Set-PnpTeamsChannelUser", - "Rank": 1 + "CommandName": "Set-PnpTeamsChannelUser" }, { "Id": 1477, + "Rank": 2, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "CommandName": "Set-PnpTeamsChannelUser", - "Rank": 2 + "CommandName": "Set-PnpTeamsChannelUser" }, { "Id": 1478, + "Rank": 1, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "CommandName": "Set-PnPTeamsTab", - "Rank": 1 + "CommandName": "Set-PnPTeamsTab" }, { "Id": 1479, + "Rank": 1, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "CommandName": "Set-PnPTeamsTag", - "Rank": 1 + "CommandName": "Set-PnPTeamsTag" }, { "Id": 1480, + "Rank": 1, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "CommandName": "Set-PnPTeamsTeam", - "Rank": 1 + "CommandName": "Set-PnPTeamsTeam" }, { "Id": 1481, + "Rank": 2, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "CommandName": "Set-PnPTeamsTeam", - "Rank": 2 + "CommandName": "Set-PnPTeamsTeam" }, { "Id": 1482, + "Rank": 3, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "CommandName": "Set-PnPTeamsTeam", - "Rank": 3 + "CommandName": "Set-PnPTeamsTeam" }, { "Id": 1483, + "Rank": 4, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "CommandName": "Set-PnPTeamsTeam", - "Rank": 4 + "CommandName": "Set-PnPTeamsTeam" }, { "Id": 1484, + "Rank": 1, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 1 + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Id": 1485, + "Rank": 2, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 2 + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Id": 1486, + "Rank": 3, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 3 + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Id": 1487, + "Rank": 1, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "CommandName": "Set-PnPTeamsTeamPicture", - "Rank": 1 + "CommandName": "Set-PnPTeamsTeamPicture" }, { "Id": 1488, + "Rank": 1, "Command": "Set-PnPTemporarilyDisableAppBar $true", - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Rank": 1 + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { "Id": 1489, + "Rank": 2, "Command": "Set-PnPTemporarilyDisableAppBar $false", - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Rank": 2 + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { "Id": 1490, + "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", - "Rank": 1 + "CommandName": "Set-PnPTenant" }, { "Id": 1491, + "Rank": 2, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "CommandName": "Set-PnPTenant", - "Rank": 2 + "CommandName": "Set-PnPTenant" }, { "Id": 1492, + "Rank": 3, "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "CommandName": "Set-PnPTenant", - "Rank": 3 + "CommandName": "Set-PnPTenant" }, { "Id": 1493, + "Rank": 4, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "CommandName": "Set-PnPTenant", - "Rank": 4 + "CommandName": "Set-PnPTenant" }, { "Id": 1494, + "Rank": 1, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "CommandName": "Set-PnPTenantAppCatalogUrl", - "Rank": 1 + "CommandName": "Set-PnPTenantAppCatalogUrl" }, { "Id": 1495, + "Rank": 1, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 1 + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Id": 1496, + "Rank": 2, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 2 + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Id": 1497, + "Rank": 3, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 3 + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Id": 1498, + "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", - "Rank": 1 + "CommandName": "Set-PnPTenantCdnPolicy" }, { "Id": 1499, + "Rank": 2, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "CommandName": "Set-PnPTenantCdnPolicy", - "Rank": 2 + "CommandName": "Set-PnPTenantCdnPolicy" }, { "Id": 1500, + "Rank": 1, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "CommandName": "Set-PnPTenantSite", - "Rank": 1 + "CommandName": "Set-PnPTenantSite" }, { "Id": 1501, + "Rank": 2, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "CommandName": "Set-PnPTenantSite", - "Rank": 2 + "CommandName": "Set-PnPTenantSite" }, { "Id": 1502, + "Rank": 3, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPTenantSite", - "Rank": 3 + "CommandName": "Set-PnPTenantSite" }, { "Id": 1503, + "Rank": 4, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Set-PnPTenantSite", - "Rank": 4 + "CommandName": "Set-PnPTenantSite" }, { "Id": 1504, + "Rank": 5, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "CommandName": "Set-PnPTenantSite", - "Rank": 5 + "CommandName": "Set-PnPTenantSite" }, { "Id": 1505, + "Rank": 1, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Rank": 1 + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { "Id": 1506, + "Rank": 2, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Rank": 2 + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { "Id": 1507, + "Rank": 1, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "CommandName": "Set-PnPTerm", - "Rank": 1 + "CommandName": "Set-PnPTerm" }, { "Id": 1508, + "Rank": 2, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm", - "Rank": 2 + "CommandName": "Set-PnPTerm" }, { "Id": 1509, + "Rank": 3, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm", - "Rank": 3 + "CommandName": "Set-PnPTerm" }, { "Id": 1510, + "Rank": 4, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "CommandName": "Set-PnPTerm", - "Rank": 4 + "CommandName": "Set-PnPTerm" }, { "Id": 1511, + "Rank": 1, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "CommandName": "Set-PnPTermGroup", - "Rank": 1 + "CommandName": "Set-PnPTermGroup" }, { "Id": 1512, + "Rank": 1, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "CommandName": "Set-PnPTermSet", - "Rank": 1 + "CommandName": "Set-PnPTermSet" }, { "Id": 1513, + "Rank": 2, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "CommandName": "Set-PnPTermSet", - "Rank": 2 + "CommandName": "Set-PnPTermSet" }, { "Id": 1514, + "Rank": 3, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "CommandName": "Set-PnPTermSet", - "Rank": 3 + "CommandName": "Set-PnPTermSet" }, { "Id": 1515, + "Rank": 1, "Command": "Set-PnPTheme", - "CommandName": "Set-PnPTheme", - "Rank": 1 + "CommandName": "Set-PnPTheme" }, { "Id": 1516, + "Rank": 2, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "CommandName": "Set-PnPTheme", - "Rank": 2 + "CommandName": "Set-PnPTheme" }, { "Id": 1517, + "Rank": 3, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "CommandName": "Set-PnPTheme", - "Rank": 3 + "CommandName": "Set-PnPTheme" }, { "Id": 1518, + "Rank": 4, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "CommandName": "Set-PnPTheme", - "Rank": 4 + "CommandName": "Set-PnPTheme" }, { "Id": 1519, + "Rank": 1, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "CommandName": "Set-PnPTraceLog", - "Rank": 1 + "CommandName": "Set-PnPTraceLog" }, { "Id": 1520, + "Rank": 2, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "CommandName": "Set-PnPTraceLog", - "Rank": 2 + "CommandName": "Set-PnPTraceLog" }, { "Id": 1521, + "Rank": 3, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "CommandName": "Set-PnPTraceLog", - "Rank": 3 + "CommandName": "Set-PnPTraceLog" }, { "Id": 1522, + "Rank": 4, "Command": "Set-PnPTraceLog -Off", - "CommandName": "Set-PnPTraceLog", - "Rank": 4 + "CommandName": "Set-PnPTraceLog" }, { "Id": 1523, + "Rank": 1, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "CommandName": "Set-PnPUserOneDriveQuota", - "Rank": 1 + "CommandName": "Set-PnPUserOneDriveQuota" }, { "Id": 1524, + "Rank": 1, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "CommandName": "Set-PnPUserProfileProperty", - "Rank": 1 + "CommandName": "Set-PnPUserProfileProperty" }, { "Id": 1525, + "Rank": 2, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "CommandName": "Set-PnPUserProfileProperty", - "Rank": 2 + "CommandName": "Set-PnPUserProfileProperty" }, { "Id": 1526, + "Rank": 1, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "CommandName": "Set-PnPView", - "Rank": 1 + "CommandName": "Set-PnPView" }, { "Id": 1527, + "Rank": 2, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "CommandName": "Set-PnPView", - "Rank": 2 + "CommandName": "Set-PnPView" }, { "Id": 1528, + "Rank": 3, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "CommandName": "Set-PnPView", - "Rank": 3 + "CommandName": "Set-PnPView" }, { "Id": 1529, + "Rank": 4, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "CommandName": "Set-PnPView", - "Rank": 4 + "CommandName": "Set-PnPView" }, { "Id": 1530, + "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", - "Rank": 1 + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Id": 1531, + "Rank": 2, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 2 + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Id": 1532, + "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", - "Rank": 3 + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Id": 1533, + "Rank": 4, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 4 + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Id": 1534, + "Rank": 1, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "CommandName": "Set-PnPWeb", - "Rank": 1 + "CommandName": "Set-PnPWeb" }, { "Id": 1535, + "Rank": 2, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "CommandName": "Set-PnPWeb", - "Rank": 2 + "CommandName": "Set-PnPWeb" }, { "Id": 1536, + "Rank": 3, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "CommandName": "Set-PnPWeb", - "Rank": 3 + "CommandName": "Set-PnPWeb" }, { "Id": 1537, + "Rank": 4, "Command": "Set-PnPWeb -NoCrawl:$true", - "CommandName": "Set-PnPWeb", - "Rank": 4 + "CommandName": "Set-PnPWeb" }, { "Id": 1538, + "Rank": 1, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "CommandName": "Set-PnPWebHeader", - "Rank": 1 + "CommandName": "Set-PnPWebHeader" }, { "Id": 1539, + "Rank": 2, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "CommandName": "Set-PnPWebHeader", - "Rank": 2 + "CommandName": "Set-PnPWebHeader" }, { "Id": 1540, + "Rank": 3, "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "CommandName": "Set-PnPWebHeader", - "Rank": 3 + "CommandName": "Set-PnPWebHeader" }, { "Id": 1541, + "Rank": 1, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "CommandName": "Set-PnPWebhookSubscription", - "Rank": 1 + "CommandName": "Set-PnPWebhookSubscription" }, { "Id": 1542, + "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", - "Rank": 2 + "CommandName": "Set-PnPWebhookSubscription" }, { "Id": 1543, + "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", - "Rank": 1 + "CommandName": "Set-PnPWebPartProperty" }, { "Id": 1544, + "Rank": 1, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", - "Rank": 1 + "CommandName": "Set-PnPWebPermission" }, { "Id": 1545, + "Rank": 2, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", - "Rank": 2 + "CommandName": "Set-PnPWebPermission" }, { "Id": 1546, + "Rank": 3, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", - "Rank": 3 + "CommandName": "Set-PnPWebPermission" }, { "Id": 1547, + "Rank": 4, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "CommandName": "Set-PnPWebPermission", - "Rank": 4 + "CommandName": "Set-PnPWebPermission" }, { "Id": 1548, + "Rank": 1, "Command": "Set-PnPWebTheme -Theme MyTheme", - "CommandName": "Set-PnPWebTheme", - "Rank": 1 + "CommandName": "Set-PnPWebTheme" }, { "Id": 1549, + "Rank": 2, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "CommandName": "Set-PnPWebTheme", - "Rank": 2 + "CommandName": "Set-PnPWebTheme" }, { "Id": 1550, + "Rank": 1, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "CommandName": "Set-PnPWikiPageContent", - "Rank": 1 + "CommandName": "Set-PnPWikiPageContent" }, { "Id": 1551, + "Rank": 1, "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "CommandName": "Submit-PnPSearchQuery", - "Rank": 1 + "CommandName": "Submit-PnPSearchQuery" }, { "Id": 1552, + "Rank": 2, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "CommandName": "Submit-PnPSearchQuery", - "Rank": 2 + "CommandName": "Submit-PnPSearchQuery" }, { "Id": 1553, + "Rank": 3, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "CommandName": "Submit-PnPSearchQuery", - "Rank": 3 + "CommandName": "Submit-PnPSearchQuery" }, { "Id": 1554, + "Rank": 4, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "CommandName": "Submit-PnPSearchQuery", - "Rank": 4 + "CommandName": "Submit-PnPSearchQuery" }, { "Id": 1555, + "Rank": 5, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "CommandName": "Submit-PnPSearchQuery", - "Rank": 5 + "CommandName": "Submit-PnPSearchQuery" }, { "Id": 1556, + "Rank": 1, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "CommandName": "Submit-PnPTeamsChannelMessage", - "Rank": 1 + "CommandName": "Submit-PnPTeamsChannelMessage" }, { "Id": 1557, + "Rank": 2, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "CommandName": "Submit-PnPTeamsChannelMessage", - "Rank": 2 + "CommandName": "Submit-PnPTeamsChannelMessage" }, { "Id": 1558, + "Rank": 1, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Sync-PnPAppToTeams", - "Rank": 1 + "CommandName": "Sync-PnPAppToTeams" }, { "Id": 1559, + "Rank": 1, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 1 + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Id": 1560, + "Rank": 2, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 2 + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Id": 1561, + "Rank": 3, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 3 + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Id": 1562, + "Rank": 1, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "CommandName": "Test-PnPListItemIsRecord", - "Rank": 1 + "CommandName": "Test-PnPListItemIsRecord" }, { "Id": 1563, + "Rank": 1, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Rank": 1 + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { "Id": 1564, + "Rank": 1, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Test-PnPSite", - "Rank": 1 + "CommandName": "Test-PnPSite" }, { "Id": 1565, + "Rank": 2, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "CommandName": "Test-PnPSite", - "Rank": 2 + "CommandName": "Test-PnPSite" }, { "Id": 1566, + "Rank": 1, "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "CommandName": "Test-PnPTenantTemplate", - "Rank": 1 + "CommandName": "Test-PnPTenantTemplate" }, { "Id": 1567, + "Rank": 1, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "CommandName": "Undo-PnPFileCheckedOut", - "Rank": 1 + "CommandName": "Undo-PnPFileCheckedOut" }, { "Id": 1568, + "Rank": 1, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Uninstall-PnPApp", - "Rank": 1 + "CommandName": "Uninstall-PnPApp" }, { "Id": 1569, + "Rank": 2, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Uninstall-PnPApp", - "Rank": 2 + "CommandName": "Uninstall-PnPApp" }, { "Id": 1570, + "Rank": 1, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Unpublish-PnPApp", - "Rank": 1 + "CommandName": "Unpublish-PnPApp" }, { "Id": 1571, + "Rank": 2, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Unpublish-PnPApp", - "Rank": 2 + "CommandName": "Unpublish-PnPApp" }, { "Id": 1572, + "Rank": 1, "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "CommandName": "Unpublish-PnPContentType", - "Rank": 1 + "CommandName": "Unpublish-PnPContentType" }, { "Id": 1573, + "Rank": 1, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Unpublish-PnPSyntexModel", - "Rank": 1 + "CommandName": "Unpublish-PnPSyntexModel" }, { "Id": 1574, + "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", - "Rank": 2 + "CommandName": "Unpublish-PnPSyntexModel" }, { "Id": 1575, + "Rank": 1, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Unregister-PnPHubSite", - "Rank": 1 + "CommandName": "Unregister-PnPHubSite" }, { "Id": 1576, + "Rank": 1, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Update-PnPApp", - "Rank": 1 + "CommandName": "Update-PnPApp" }, { "Id": 1577, + "Rank": 2, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Update-PnPApp", - "Rank": 2 + "CommandName": "Update-PnPApp" }, { "Id": 1578, + "Rank": 1, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 1 + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Id": 1579, + "Rank": 2, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 2 + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Id": 1580, + "Rank": 3, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 3 + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Id": 1581, + "Rank": 1, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 1 + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Id": 1582, + "Rank": 2, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 2 + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Id": 1583, + "Rank": 3, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 3 + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Id": 1584, + "Rank": 1, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "CommandName": "Update-PnPTeamsApp", - "Rank": 1 + "CommandName": "Update-PnPTeamsApp" }, { "Id": 1585, + "Rank": 1, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Update-PnPTeamsUser", - "Rank": 1 + "CommandName": "Update-PnPTeamsUser" }, { "Id": 1586, + "Rank": 2, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Update-PnPTeamsUser", - "Rank": 2 + "CommandName": "Update-PnPTeamsUser" }, { "Id": 1587, + "Rank": 3, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "CommandName": "Update-PnPTeamsUser", - "Rank": 3 + "CommandName": "Update-PnPTeamsUser" }, { "Id": 1588, + "Rank": 1, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "CommandName": "Update-PnPUserType", - "Rank": 1 + "CommandName": "Update-PnPUserType" } ] diff --git a/version.txt b/version.txt index bf50a037e..1405ff36f 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.84 \ No newline at end of file +2.2.85 \ No newline at end of file From 9d0afdb10629e2240452646521ad591cab9c1dd8 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 20:24:14 +0200 Subject: [PATCH 009/146] Update Build-HelpFile.ps1 Changed to install latest prerelease module for getting the alias cmdlets --- build/Build-HelpFile.ps1 | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/build/Build-HelpFile.ps1 b/build/Build-HelpFile.ps1 index 135ba9624..6fc295310 100644 --- a/build/Build-HelpFile.ps1 +++ b/build/Build-HelpFile.ps1 @@ -10,18 +10,10 @@ Try { Write-Host "Generating documentation files for alias cmdlets" -ForegroundColor Yellow # Load the Module in a new PowerShell session $scriptBlock = { - $documentsFolder = [environment]::getfolderpath("mydocuments") - if($IsLinux -or $isMacOS) - { - $destinationFolder = "$documentsFolder/.local/share/powershell/Modules/PnP.PowerShell" - } else { - $destinationFolder = "$documentsFolder/PowerShell/Modules/PnP.PowerShell" - } - $pnpDllLocation = "$destinationFolder/Core/PnP.PowerShell.dll" + Write-Host "Installing latest nightly of PnP PowerShell" + Install-Module PnP.PowerShell -AllowPrerelease -Force - Write-Host "Importing PnP PowerShell assembly from $pnpDllLocation" - Import-Module -Name $pnpDllLocation -DisableNameChecking -Force - Write-Host "Import PnP PowerShell successful" + Write-Host "Retrieving PnP PowerShell alias cmdlets" $cmdlets = Get-Command -Module PnP.PowerShell | Where-Object CommandType -eq "Alias" | Select-Object -Property @{N="Alias";E={$_.Name}}, @{N="ReferencedCommand";E={$_.ReferencedCommand.Name}} $cmdlets Write-Host "Retrieved alias cmdlets successfully" From 27e2415c76323d5c04124cdbd1bc72cb575c6d45 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 20:27:07 +0200 Subject: [PATCH 010/146] Update Build-HelpFile.ps1 Trying to fix alias.md could not be found --- build/Build-HelpFile.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Build-HelpFile.ps1 b/build/Build-HelpFile.ps1 index 6fc295310..7e3822b94 100644 --- a/build/Build-HelpFile.ps1 +++ b/build/Build-HelpFile.ps1 @@ -22,7 +22,7 @@ Try { Write-Host " - $($aliasCmdlets.Length) found" -ForegroundColor Yellow - $aliasTemplatePageContent = Get-Content -Path "../pages/cmdlets/alias.md" -Raw + $aliasTemplatePageContent = Get-Content -Path "./pages/cmdlets/alias.md" -Raw ForEach($aliasCmdlet in $aliasCmdlets) { From 577eb6dddfc50d51463c96d60946974d337e4a97 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 20:29:14 +0200 Subject: [PATCH 011/146] Update Build-HelpFile.ps1 Trying to fix --- build/Build-HelpFile.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Build-HelpFile.ps1 b/build/Build-HelpFile.ps1 index 7e3822b94..0d9766ccd 100644 --- a/build/Build-HelpFile.ps1 +++ b/build/Build-HelpFile.ps1 @@ -22,7 +22,7 @@ Try { Write-Host " - $($aliasCmdlets.Length) found" -ForegroundColor Yellow - $aliasTemplatePageContent = Get-Content -Path "./pages/cmdlets/alias.md" -Raw + $aliasTemplatePageContent = Get-Content -Path "./pnppowershell/pages/cmdlets/alias.md" -Raw ForEach($aliasCmdlet in $aliasCmdlets) { From 5cfa89d2745d214dda56b3b1ea51f0f67de6b562 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 20:32:28 +0200 Subject: [PATCH 012/146] Update Build-HelpFile.ps1 --- build/Build-HelpFile.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Build-HelpFile.ps1 b/build/Build-HelpFile.ps1 index 0d9766ccd..b55d5bc6d 100644 --- a/build/Build-HelpFile.ps1 +++ b/build/Build-HelpFile.ps1 @@ -12,7 +12,7 @@ Try { $scriptBlock = { Write-Host "Installing latest nightly of PnP PowerShell" Install-Module PnP.PowerShell -AllowPrerelease -Force - +Get-ChildItem -Recurse Write-Host "Retrieving PnP PowerShell alias cmdlets" $cmdlets = Get-Command -Module PnP.PowerShell | Where-Object CommandType -eq "Alias" | Select-Object -Property @{N="Alias";E={$_.Name}}, @{N="ReferencedCommand";E={$_.ReferencedCommand.Name}} $cmdlets @@ -26,7 +26,7 @@ Try { ForEach($aliasCmdlet in $aliasCmdlets) { - $destinationFileName = "./../documentation/$($aliasCmdlet.Alias).md" + $destinationFileName = "./documentation/$($aliasCmdlet.Alias).md" Write-Host " - Creating page for $($aliasCmdlet.Alias) being an alias for $($aliasCmdlet.ReferencedCommand) as $destinationFileName" -ForegroundColor Yellow $aliasTemplatePageContent.Replace("%%cmdletname%%", $aliasCmdlet.Alias).Replace("%%referencedcmdletname%%", $aliasCmdlet.ReferencedCommand) | Out-File $destinationFileName -Force From 45b52309d7f39f1c9f30c29512972d5104369500 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 20:36:47 +0200 Subject: [PATCH 013/146] Update Build-HelpFile.ps1 --- build/Build-HelpFile.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Build-HelpFile.ps1 b/build/Build-HelpFile.ps1 index b55d5bc6d..e794fb646 100644 --- a/build/Build-HelpFile.ps1 +++ b/build/Build-HelpFile.ps1 @@ -5,14 +5,14 @@ if($IsLinux -or $isMacOS) } else { $destinationFolder = "$documentsFolder/PowerShell/Modules/PnP.PowerShell" } - +Get-ChildItem -Recurse Try { Write-Host "Generating documentation files for alias cmdlets" -ForegroundColor Yellow # Load the Module in a new PowerShell session $scriptBlock = { Write-Host "Installing latest nightly of PnP PowerShell" Install-Module PnP.PowerShell -AllowPrerelease -Force -Get-ChildItem -Recurse + Write-Host "Retrieving PnP PowerShell alias cmdlets" $cmdlets = Get-Command -Module PnP.PowerShell | Where-Object CommandType -eq "Alias" | Select-Object -Property @{N="Alias";E={$_.Name}}, @{N="ReferencedCommand";E={$_.ReferencedCommand.Name}} $cmdlets From 6c45a5ed14b1199f140174db8937c4b8124791f5 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 20:40:28 +0200 Subject: [PATCH 014/146] Update Build-HelpFile.ps1 --- build/Build-HelpFile.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Build-HelpFile.ps1 b/build/Build-HelpFile.ps1 index e794fb646..448ad7932 100644 --- a/build/Build-HelpFile.ps1 +++ b/build/Build-HelpFile.ps1 @@ -22,7 +22,7 @@ Try { Write-Host " - $($aliasCmdlets.Length) found" -ForegroundColor Yellow - $aliasTemplatePageContent = Get-Content -Path "./pnppowershell/pages/cmdlets/alias.md" -Raw + $aliasTemplatePageContent = Get-Content -Path "./pages/cmdlets/alias.md" -Raw ForEach($aliasCmdlet in $aliasCmdlets) { From 647900d2e7cd1ae8ac106a4cda4cfc2621017b47 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 20:43:11 +0200 Subject: [PATCH 015/146] Update Build-HelpFile.ps1 --- build/Build-HelpFile.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Build-HelpFile.ps1 b/build/Build-HelpFile.ps1 index 448ad7932..28fc51ec5 100644 --- a/build/Build-HelpFile.ps1 +++ b/build/Build-HelpFile.ps1 @@ -5,7 +5,7 @@ if($IsLinux -or $isMacOS) } else { $destinationFolder = "$documentsFolder/PowerShell/Modules/PnP.PowerShell" } -Get-ChildItem -Recurse + Try { Write-Host "Generating documentation files for alias cmdlets" -ForegroundColor Yellow # Load the Module in a new PowerShell session From 8f240d9fb02d07024e5f7bfa3e556b87a32c2c5b Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 21:17:16 +0200 Subject: [PATCH 016/146] Update Build-HelpFile.ps1 --- build/Build-HelpFile.ps1 | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/build/Build-HelpFile.ps1 b/build/Build-HelpFile.ps1 index 28fc51ec5..709c7fdc4 100644 --- a/build/Build-HelpFile.ps1 +++ b/build/Build-HelpFile.ps1 @@ -6,37 +6,6 @@ if($IsLinux -or $isMacOS) $destinationFolder = "$documentsFolder/PowerShell/Modules/PnP.PowerShell" } -Try { - Write-Host "Generating documentation files for alias cmdlets" -ForegroundColor Yellow - # Load the Module in a new PowerShell session - $scriptBlock = { - Write-Host "Installing latest nightly of PnP PowerShell" - Install-Module PnP.PowerShell -AllowPrerelease -Force - - Write-Host "Retrieving PnP PowerShell alias cmdlets" - $cmdlets = Get-Command -Module PnP.PowerShell | Where-Object CommandType -eq "Alias" | Select-Object -Property @{N="Alias";E={$_.Name}}, @{N="ReferencedCommand";E={$_.ReferencedCommand.Name}} - $cmdlets - Write-Host "Retrieved alias cmdlets successfully" - } - $aliasCmdlets = Start-ThreadJob -ScriptBlock $scriptBlock | Receive-Job -Wait - - Write-Host " - $($aliasCmdlets.Length) found" -ForegroundColor Yellow - - $aliasTemplatePageContent = Get-Content -Path "./pages/cmdlets/alias.md" -Raw - - ForEach($aliasCmdlet in $aliasCmdlets) - { - $destinationFileName = "./documentation/$($aliasCmdlet.Alias).md" - - Write-Host " - Creating page for $($aliasCmdlet.Alias) being an alias for $($aliasCmdlet.ReferencedCommand) as $destinationFileName" -ForegroundColor Yellow - $aliasTemplatePageContent.Replace("%%cmdletname%%", $aliasCmdlet.Alias).Replace("%%referencedcmdletname%%", $aliasCmdlet.ReferencedCommand) | Out-File $destinationFileName -Force - } -} -Catch { - Write-Host "Error: Cannot generate alias documentation files" - Write-Host $_ -} - $tempFolder = [System.IO.Path]::GetTempPath() $runsInAction = $("$env:RUNSINACTION") From 79aad03c611b6553a9e64fd471cd18160d91639e Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 21:18:26 +0200 Subject: [PATCH 017/146] Update Build-Site.ps1 --- pages/Build-Site.ps1 | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/pages/Build-Site.ps1 b/pages/Build-Site.ps1 index 48523360c..04c6c53f7 100644 --- a/pages/Build-Site.ps1 +++ b/pages/Build-Site.ps1 @@ -63,6 +63,37 @@ class FrontMatters { $fm = New-Object -TypeName FrontMatters +Try { + Write-Host "Generating documentation files for alias cmdlets" -ForegroundColor Yellow + # Load the Module in a new PowerShell session + $scriptBlock = { + Write-Host "Installing latest nightly of PnP PowerShell" + Install-Module PnP.PowerShell -AllowPrerelease -Force + + Write-Host "Retrieving PnP PowerShell alias cmdlets" + $cmdlets = Get-Command -Module PnP.PowerShell | Where-Object CommandType -eq "Alias" | Select-Object -Property @{N="Alias";E={$_.Name}}, @{N="ReferencedCommand";E={$_.ReferencedCommand.Name}} + $cmdlets + Write-Host "Retrieved alias cmdlets successfully" + } + $aliasCmdlets = Start-ThreadJob -ScriptBlock $scriptBlock | Receive-Job -Wait + + Write-Host " - $($aliasCmdlets.Length) found" -ForegroundColor Yellow + + $aliasTemplatePageContent = Get-Content -Path "./dev/pages/cmdlets/alias.md" -Raw + + ForEach($aliasCmdlet in $aliasCmdlets) + { + $destinationFileName = "./dev/documentation/$($aliasCmdlet.Alias).md" + + Write-Host " - Creating page for $($aliasCmdlet.Alias) being an alias for $($aliasCmdlet.ReferencedCommand) as $destinationFileName" -ForegroundColor Yellow + $aliasTemplatePageContent.Replace("%%cmdletname%%", $aliasCmdlet.Alias).Replace("%%referencedcmdletname%%", $aliasCmdlet.ReferencedCommand) | Out-File $destinationFileName -Force + } +} +Catch { + Write-Host "Error: Cannot generate alias documentation files" + Write-Host $_ +} + Copy-Item -Path "./dev/documentation/*.md" -Destination "./dev/pages/cmdlets" -Force foreach ($nightlycmdlet in $nightlycmdlets) { From e2e102178275809d3cdfa9aeea1690b9c6fe77e6 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 21:26:53 +0200 Subject: [PATCH 018/146] Update alias.md --- pages/cmdlets/alias.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/cmdlets/alias.md b/pages/cmdlets/alias.md index 1a0075cb3..82af0bf9b 100644 --- a/pages/cmdlets/alias.md +++ b/pages/cmdlets/alias.md @@ -10,8 +10,8 @@ online version: https://pnp.github.io/powershell/cmdlets/%%cmdletname%%.html # %%cmdletname%% ## SYNOPSIS -This is an alias for [%%referencedcmdletname%%](./%%referencedcmdletname%%.md) +This is an alias for [%%referencedcmdletname%%](./%%referencedcmdletname%%.md). Please update your scripts to use this cmdlet instead as it may be removed in a future update. ## 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) From 71e5f123613ddcc60dcf18e54a81cfbd6ba1089e Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 21:29:57 +0200 Subject: [PATCH 019/146] Update Build-Site.ps1 --- pages/Build-Site.ps1 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pages/Build-Site.ps1 b/pages/Build-Site.ps1 index 04c6c53f7..c8ca637f5 100644 --- a/pages/Build-Site.ps1 +++ b/pages/Build-Site.ps1 @@ -63,6 +63,7 @@ class FrontMatters { $fm = New-Object -TypeName FrontMatters +$aliasCmdLetsCount = 0 Try { Write-Host "Generating documentation files for alias cmdlets" -ForegroundColor Yellow # Load the Module in a new PowerShell session @@ -77,7 +78,9 @@ Try { } $aliasCmdlets = Start-ThreadJob -ScriptBlock $scriptBlock | Receive-Job -Wait - Write-Host " - $($aliasCmdlets.Length) found" -ForegroundColor Yellow + $aliasCmdLetsCount = $aliasCmdlets.Length + + Write-Host " - $aliasCmdLetsCount found" -ForegroundColor Yellow $aliasTemplatePageContent = Get-Content -Path "./dev/pages/cmdlets/alias.md" -Raw @@ -120,7 +123,7 @@ $toc | Out-File "./dev/pages/cmdlets/toc.yml" -Force # Generate cmdlet index page $cmdletIndexPageContent = Get-Content -Path "./dev/pages/cmdlets/index.md" -Raw -$cmdletIndexPageContent = $cmdletIndexPageContent.Replace("%%cmdletcount%%", $cmdletPages.Length) +$cmdletIndexPageContent = $cmdletIndexPageContent.Replace("%%cmdletcount%%", $cmdletPages.Length - $aliasCmdLetsCount) $cmdletIndexPageList = "" $previousCmdletVerb = "" From fe65a68ede3a86769de36bb69d6a8f0a6194712d Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 21:40:04 +0200 Subject: [PATCH 020/146] Update Build-Site.ps1 --- pages/Build-Site.ps1 | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pages/Build-Site.ps1 b/pages/Build-Site.ps1 index c8ca637f5..49d428efc 100644 --- a/pages/Build-Site.ps1 +++ b/pages/Build-Site.ps1 @@ -64,6 +64,7 @@ class FrontMatters { $fm = New-Object -TypeName FrontMatters $aliasCmdLetsCount = 0 +$aliasCmdLets = @() Try { Write-Host "Generating documentation files for alias cmdlets" -ForegroundColor Yellow # Load the Module in a new PowerShell session @@ -78,7 +79,7 @@ Try { } $aliasCmdlets = Start-ThreadJob -ScriptBlock $scriptBlock | Receive-Job -Wait - $aliasCmdLetsCount = $aliasCmdlets.Length + $aliasCmdLetsCount = $aliasCmdlets.Length Write-Host " - $aliasCmdLetsCount found" -ForegroundColor Yellow @@ -154,6 +155,14 @@ foreach ($cmdletPage in $cmdletPages) # Add an asterisk to the cmdlet name if it's only available in the nightly build $cmdletIndexPageList = $cmdletIndexPageList + "*" } + + # Check if the cmdlet is an alias + if ($aliasCmdLets.Alias -contains $cmdletPage.Name) + { + # Add a double asterisk to the cmdlet name if it's an alias + $cmdletIndexPageList = $cmdletIndexPageList + "**" + } + $cmdletIndexPageList = $cmdletIndexPageList + "`n" if($cmdletVerb -ne "") From e301d0bba0ae1919157cbe0342e164bba753fc8c Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 21:41:03 +0200 Subject: [PATCH 021/146] Update index.md --- pages/cmdlets/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/cmdlets/index.md b/pages/cmdlets/index.md index a1520e056..cb3d46551 100644 --- a/pages/cmdlets/index.md +++ b/pages/cmdlets/index.md @@ -1,5 +1,5 @@ # PnP PowerShell cmdlets -PnP PowerShell exists out of %%cmdletcount%% cmdlets which can help you in setting up, configuring, maintaining and using various Microsoft 365 products from one single connection. Each of the cmdlets is documented to aid in learning how to use it. Find the available cmdlets below. Cmdlets marked with asterisk ( * ) are only available in the latest nightly build. All the others can also be used using the latest stable release. +PnP PowerShell exists out of %%cmdletcount%% cmdlets which can help you in setting up, configuring, maintaining and using various Microsoft 365 products from one single connection. Each of the cmdlets is documented to aid in learning how to use it. Find the available cmdlets below. Cmdlets marked with asterisk ( * ) are only available in the latest nightly build. All the others can also be used using the latest stable release. Cmdlets marked with a double asterisk ( ** ) indicate it to be an alias of another cmdlet, used to provide backwards compatibility. %%cmdletlisting%% From 3ff2eecd560217b392e57dbcd16e5a12eccb638c Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 21:45:30 +0200 Subject: [PATCH 022/146] Update index.md --- pages/cmdlets/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pages/cmdlets/index.md b/pages/cmdlets/index.md index cb3d46551..27abf3c40 100644 --- a/pages/cmdlets/index.md +++ b/pages/cmdlets/index.md @@ -1,5 +1,8 @@ # PnP PowerShell cmdlets -PnP PowerShell exists out of %%cmdletcount%% cmdlets which can help you in setting up, configuring, maintaining and using various Microsoft 365 products from one single connection. Each of the cmdlets is documented to aid in learning how to use it. Find the available cmdlets below. Cmdlets marked with asterisk ( * ) are only available in the latest nightly build. All the others can also be used using the latest stable release. Cmdlets marked with a double asterisk ( ** ) indicate it to be an alias of another cmdlet, used to provide backwards compatibility. +PnP PowerShell exists out of %%cmdletcount%% cmdlets which can help you in setting up, configuring, maintaining and using various Microsoft 365 products from one single connection. Each of the cmdlets is documented to aid in learning how to use it. Find the available cmdlets below. + +Cmdlets marked with asterisk ( * ) are only available in the latest nightly build. All the others can also be used using the latest stable release. +Cmdlets marked with a double asterisk ( ** ) indicate it to be an alias of another cmdlet, used to provide backwards compatibility. %%cmdletlisting%% From dd890ebf84e2fe07575035e06d3753ec9757d919 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 21:47:41 +0200 Subject: [PATCH 023/146] Update Build-Site.ps1 --- pages/Build-Site.ps1 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pages/Build-Site.ps1 b/pages/Build-Site.ps1 index 49d428efc..6535a1ef7 100644 --- a/pages/Build-Site.ps1 +++ b/pages/Build-Site.ps1 @@ -63,8 +63,8 @@ class FrontMatters { $fm = New-Object -TypeName FrontMatters -$aliasCmdLetsCount = 0 -$aliasCmdLets = @() +$aliasCmdletsCount = 0 +$aliasCmdlets = @() Try { Write-Host "Generating documentation files for alias cmdlets" -ForegroundColor Yellow # Load the Module in a new PowerShell session @@ -79,9 +79,9 @@ Try { } $aliasCmdlets = Start-ThreadJob -ScriptBlock $scriptBlock | Receive-Job -Wait - $aliasCmdLetsCount = $aliasCmdlets.Length + $aliasCmdletsCount = $aliasCmdlets.Length - Write-Host " - $aliasCmdLetsCount found" -ForegroundColor Yellow + Write-Host " - $aliasCmdletsCount found" -ForegroundColor Yellow $aliasTemplatePageContent = Get-Content -Path "./dev/pages/cmdlets/alias.md" -Raw @@ -124,7 +124,7 @@ $toc | Out-File "./dev/pages/cmdlets/toc.yml" -Force # Generate cmdlet index page $cmdletIndexPageContent = Get-Content -Path "./dev/pages/cmdlets/index.md" -Raw -$cmdletIndexPageContent = $cmdletIndexPageContent.Replace("%%cmdletcount%%", $cmdletPages.Length - $aliasCmdLetsCount) +$cmdletIndexPageContent = $cmdletIndexPageContent.Replace("%%cmdletcount%%", $cmdletPages.Length - $aliasCmdletsCount) $cmdletIndexPageList = "" $previousCmdletVerb = "" @@ -153,14 +153,14 @@ foreach ($cmdletPage in $cmdletPages) if (!$releasedcmdlets.Contains($cmdletPage.Name)) { # Add an asterisk to the cmdlet name if it's only available in the nightly build - $cmdletIndexPageList = $cmdletIndexPageList + "*" + $cmdletIndexPageList = $cmdletIndexPageList + "* " } # Check if the cmdlet is an alias - if ($aliasCmdLets.Alias -contains $cmdletPage.Name) + if ($aliasCmdlets.Alias -contains $cmdletPage.Name) { # Add a double asterisk to the cmdlet name if it's an alias - $cmdletIndexPageList = $cmdletIndexPageList + "**" + $cmdletIndexPageList = $cmdletIndexPageList + "** " } $cmdletIndexPageList = $cmdletIndexPageList + "`n" From 6e93883481e8b6f7db9d729f1fcde80f03e092ad Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 21:53:02 +0200 Subject: [PATCH 024/146] Update Build-Site.ps1 --- pages/Build-Site.ps1 | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pages/Build-Site.ps1 b/pages/Build-Site.ps1 index 6535a1ef7..04c338fd3 100644 --- a/pages/Build-Site.ps1 +++ b/pages/Build-Site.ps1 @@ -113,6 +113,8 @@ foreach ($nightlycmdlet in $nightlycmdlets) { # Generate cmdlet toc +Write-Host "Retrieving all cmdlet pages" + $cmdletPages = Get-ChildItem -Path "./dev/pages/cmdlets/*.md" -Exclude "index.md","alias.md" $toc = "" foreach ($cmdletPage in $cmdletPages) { @@ -123,6 +125,11 @@ $toc | Out-File "./dev/pages/cmdlets/toc.yml" -Force # Generate cmdlet index page +Write-Host "Creating cmdlets index page" + +Write-Host "- Alias cmdlets:" +Write-Host $aliasCmdlets.Alias + $cmdletIndexPageContent = Get-Content -Path "./dev/pages/cmdlets/index.md" -Raw $cmdletIndexPageContent = $cmdletIndexPageContent.Replace("%%cmdletcount%%", $cmdletPages.Length - $aliasCmdletsCount) @@ -130,6 +137,8 @@ $cmdletIndexPageList = "" $previousCmdletVerb = "" foreach ($cmdletPage in $cmdletPages) { + Write-Host "- $($cmdletPage.Name)" + # Define the verb of the cmdlet if($cmdletPage.BaseName.Contains("-")) { From 0db7f9259fb66bc03bbb99e9a32adfbe6113a44d Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 21:55:37 +0200 Subject: [PATCH 025/146] Update Build-Site.ps1 --- pages/Build-Site.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/Build-Site.ps1 b/pages/Build-Site.ps1 index 04c338fd3..afdd1fe41 100644 --- a/pages/Build-Site.ps1 +++ b/pages/Build-Site.ps1 @@ -166,7 +166,7 @@ foreach ($cmdletPage in $cmdletPages) } # Check if the cmdlet is an alias - if ($aliasCmdlets.Alias -contains $cmdletPage.Name) + if ($aliasCmdlets.Alias -contains $cmdletPage.BaseName) { # Add a double asterisk to the cmdlet name if it's an alias $cmdletIndexPageList = $cmdletIndexPageList + "** " From 3aeaba80e40d6b8a67cfa50993fd119f58fe104a Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 21:58:11 +0200 Subject: [PATCH 026/146] Update Build-Site.ps1 --- pages/Build-Site.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pages/Build-Site.ps1 b/pages/Build-Site.ps1 index afdd1fe41..ad96bdcf2 100644 --- a/pages/Build-Site.ps1 +++ b/pages/Build-Site.ps1 @@ -98,6 +98,8 @@ Catch { Write-Host $_ } +Write-Host "Copying documentation files to page cmdlets" + Copy-Item -Path "./dev/documentation/*.md" -Destination "./dev/pages/cmdlets" -Force foreach ($nightlycmdlet in $nightlycmdlets) { @@ -106,7 +108,7 @@ foreach ($nightlycmdlet in $nightlycmdlets) { # update the document to state it's only available in the nightly build $header = $fm.GetHeader("./dev/pages/cmdlets/$nightlycmdlet") $header["tags"] = "Available in the current Nightly Release only." - Write-Host "Writing $nightlycmdlet" + #Write-Host "Writing $nightlycmdlet" $fm.WriteHeader("./dev/pages/cmdlets/$nightlycmdlet",$header) } } From 9c771a315e3b2069bba258368d029b001edcc359 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 21:58:42 +0200 Subject: [PATCH 027/146] Update Build-Site.ps1 --- pages/Build-Site.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/Build-Site.ps1 b/pages/Build-Site.ps1 index ad96bdcf2..ba50b3cae 100644 --- a/pages/Build-Site.ps1 +++ b/pages/Build-Site.ps1 @@ -164,14 +164,14 @@ foreach ($cmdletPage in $cmdletPages) if (!$releasedcmdlets.Contains($cmdletPage.Name)) { # Add an asterisk to the cmdlet name if it's only available in the nightly build - $cmdletIndexPageList = $cmdletIndexPageList + "* " + $cmdletIndexPageList = $cmdletIndexPageList + " *" } # Check if the cmdlet is an alias if ($aliasCmdlets.Alias -contains $cmdletPage.BaseName) { # Add a double asterisk to the cmdlet name if it's an alias - $cmdletIndexPageList = $cmdletIndexPageList + "** " + $cmdletIndexPageList = $cmdletIndexPageList + " **" } $cmdletIndexPageList = $cmdletIndexPageList + "`n" From 966bcd8f6b2739ccfe8df188cbc379d09ea5fd23 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 22:00:25 +0200 Subject: [PATCH 028/146] Update Build-Site.ps1 --- pages/Build-Site.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/Build-Site.ps1 b/pages/Build-Site.ps1 index ba50b3cae..f2ca8a6f5 100644 --- a/pages/Build-Site.ps1 +++ b/pages/Build-Site.ps1 @@ -104,7 +104,7 @@ Copy-Item -Path "./dev/documentation/*.md" -Destination "./dev/pages/cmdlets" -F foreach ($nightlycmdlet in $nightlycmdlets) { if (!$releasedcmdlets.Contains($nightlycmdlet)) { - Copy-Item "./dev/documentation/$nightlycmdlet" -Destination "./dev/pages/cmdlets" -Force + Copy-Item "./dev/documentation/$nightlycmdlet" -Destination "./dev/pages/cmdlets" -Force | Out-Null # update the document to state it's only available in the nightly build $header = $fm.GetHeader("./dev/pages/cmdlets/$nightlycmdlet") $header["tags"] = "Available in the current Nightly Release only." From 0cb0437f6ac280e6665ce4f495032aa872dddb2a Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 22:04:01 +0200 Subject: [PATCH 029/146] Update index.md --- pages/cmdlets/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/cmdlets/index.md b/pages/cmdlets/index.md index 27abf3c40..454055316 100644 --- a/pages/cmdlets/index.md +++ b/pages/cmdlets/index.md @@ -2,7 +2,7 @@ PnP PowerShell exists out of %%cmdletcount%% cmdlets which can help you in setting up, configuring, maintaining and using various Microsoft 365 products from one single connection. Each of the cmdlets is documented to aid in learning how to use it. Find the available cmdlets below. -Cmdlets marked with asterisk ( * ) are only available in the latest nightly build. All the others can also be used using the latest stable release. -Cmdlets marked with a double asterisk ( ** ) indicate it to be an alias of another cmdlet, used to provide backwards compatibility. +^1^: Only available in the latest nightly build. All the others can also be used using the latest stable release. +^2^: Cmdlet is an alias of another cmdlet, used to provide backwards compatibility. %%cmdletlisting%% From 4ec2a37a705ce4cf37531c0e7e2793da31a41056 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 22:06:59 +0200 Subject: [PATCH 030/146] Update Build-Site.ps1 --- pages/Build-Site.ps1 | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/pages/Build-Site.ps1 b/pages/Build-Site.ps1 index f2ca8a6f5..377c3163b 100644 --- a/pages/Build-Site.ps1 +++ b/pages/Build-Site.ps1 @@ -75,21 +75,20 @@ Try { Write-Host "Retrieving PnP PowerShell alias cmdlets" $cmdlets = Get-Command -Module PnP.PowerShell | Where-Object CommandType -eq "Alias" | Select-Object -Property @{N="Alias";E={$_.Name}}, @{N="ReferencedCommand";E={$_.ReferencedCommand.Name}} $cmdlets - Write-Host "Retrieved alias cmdlets successfully" + Write-Host "$($cmdlets.Length) alias cmdlets retrieved" } $aliasCmdlets = Start-ThreadJob -ScriptBlock $scriptBlock | Receive-Job -Wait - $aliasCmdletsCount = $aliasCmdlets.Length - - Write-Host " - $aliasCmdletsCount found" -ForegroundColor Yellow + $aliasCmdletsCount = $aliasCmdlets.Length + Write-Host "- Retrieving alias template page" $aliasTemplatePageContent = Get-Content -Path "./dev/pages/cmdlets/alias.md" -Raw ForEach($aliasCmdlet in $aliasCmdlets) { $destinationFileName = "./dev/documentation/$($aliasCmdlet.Alias).md" - Write-Host " - Creating page for $($aliasCmdlet.Alias) being an alias for $($aliasCmdlet.ReferencedCommand) as $destinationFileName" -ForegroundColor Yellow + Write-Host "- Creating page for $($aliasCmdlet.Alias) being an alias for $($aliasCmdlet.ReferencedCommand) as $destinationFileName" -ForegroundColor Yellow $aliasTemplatePageContent.Replace("%%cmdletname%%", $aliasCmdlet.Alias).Replace("%%referencedcmdletname%%", $aliasCmdlet.ReferencedCommand) | Out-File $destinationFileName -Force } } @@ -114,7 +113,6 @@ foreach ($nightlycmdlet in $nightlycmdlets) { } # Generate cmdlet toc - Write-Host "Retrieving all cmdlet pages" $cmdletPages = Get-ChildItem -Path "./dev/pages/cmdlets/*.md" -Exclude "index.md","alias.md" @@ -129,9 +127,6 @@ $toc | Out-File "./dev/pages/cmdlets/toc.yml" -Force Write-Host "Creating cmdlets index page" -Write-Host "- Alias cmdlets:" -Write-Host $aliasCmdlets.Alias - $cmdletIndexPageContent = Get-Content -Path "./dev/pages/cmdlets/index.md" -Raw $cmdletIndexPageContent = $cmdletIndexPageContent.Replace("%%cmdletcount%%", $cmdletPages.Length - $aliasCmdletsCount) @@ -163,15 +158,15 @@ foreach ($cmdletPage in $cmdletPages) # Check if the cmdlet only exists in the nightly build if (!$releasedcmdlets.Contains($cmdletPage.Name)) { - # Add an asterisk to the cmdlet name if it's only available in the nightly build - $cmdletIndexPageList = $cmdletIndexPageList + " *" + # Add a 1 to the cmdlet name if it's only available in the nightly build + $cmdletIndexPageList = $cmdletIndexPageList + " ^1^" } # Check if the cmdlet is an alias if ($aliasCmdlets.Alias -contains $cmdletPage.BaseName) { - # Add a double asterisk to the cmdlet name if it's an alias - $cmdletIndexPageList = $cmdletIndexPageList + " **" + # Add a 2 to the cmdlet name if it's an alias + $cmdletIndexPageList = $cmdletIndexPageList + " ^2^" } $cmdletIndexPageList = $cmdletIndexPageList + "`n" From cb5e8e1c9099560162e88ac533420ffb1d127908 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 22:10:55 +0200 Subject: [PATCH 031/146] Update Build-Site.ps1 --- pages/Build-Site.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/Build-Site.ps1 b/pages/Build-Site.ps1 index 377c3163b..9264413dd 100644 --- a/pages/Build-Site.ps1 +++ b/pages/Build-Site.ps1 @@ -159,14 +159,14 @@ foreach ($cmdletPage in $cmdletPages) if (!$releasedcmdlets.Contains($cmdletPage.Name)) { # Add a 1 to the cmdlet name if it's only available in the nightly build - $cmdletIndexPageList = $cmdletIndexPageList + " ^1^" + $cmdletIndexPageList = $cmdletIndexPageList + " 1" } # Check if the cmdlet is an alias if ($aliasCmdlets.Alias -contains $cmdletPage.BaseName) { # Add a 2 to the cmdlet name if it's an alias - $cmdletIndexPageList = $cmdletIndexPageList + " ^2^" + $cmdletIndexPageList = $cmdletIndexPageList + " 2" } $cmdletIndexPageList = $cmdletIndexPageList + "`n" From 103096f9b053a8e26c2550343b3b6e944ea80bb9 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 22:11:23 +0200 Subject: [PATCH 032/146] Update index.md --- pages/cmdlets/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/cmdlets/index.md b/pages/cmdlets/index.md index 454055316..8fc8b765d 100644 --- a/pages/cmdlets/index.md +++ b/pages/cmdlets/index.md @@ -2,7 +2,7 @@ PnP PowerShell exists out of %%cmdletcount%% cmdlets which can help you in setting up, configuring, maintaining and using various Microsoft 365 products from one single connection. Each of the cmdlets is documented to aid in learning how to use it. Find the available cmdlets below. -^1^: Only available in the latest nightly build. All the others can also be used using the latest stable release. -^2^: Cmdlet is an alias of another cmdlet, used to provide backwards compatibility. +1: Only available in the latest nightly build. All the others can also be used using the latest stable release. +2: Cmdlet is an alias of another cmdlet, used to provide backwards compatibility. %%cmdletlisting%% From f638a596af125fbd1c91062053b5edee9c3bbf57 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 22:26:14 +0200 Subject: [PATCH 033/146] Fixing documentation build warnings --- documentation/Disconnect-PnPOnline.md | 2 +- pages/articles/azureautomationrunbook.md | 2 -- pages/articles/telemetry.md | 6 +++--- pages/articles/updatenotifications.md | 2 -- powershell | 1 + 5 files changed, 5 insertions(+), 8 deletions(-) create mode 160000 powershell diff --git a/documentation/Disconnect-PnPOnline.md b/documentation/Disconnect-PnPOnline.md index 7c7602bd9..fdc9dd40a 100644 --- a/documentation/Disconnect-PnPOnline.md +++ b/documentation/Disconnect-PnPOnline.md @@ -20,7 +20,7 @@ Disconnect-PnPOnline ## DESCRIPTION -Disconnects the current connection and clears its token cache. It will require you to build up a new connection again using [Connect-PnPOnline](Connect-PnPOnline.html) in order to use any of the PnP PowerShell cmdlets. You will have to reauthenticate. If instead you simply want to connect to another site collection within the same tenant using the same credentials you used previously, do not use this cmdlet but instead use `Connect-PnPOnline -Url https://tenant.sharepoint.com/sites/othersite` instead without disconnecting. It will try to reuse the existing authentication method and cached credentials. +Disconnects the current connection and clears its token cache. It will require you to build up a new connection again using [Connect-PnPOnline](Connect-PnPOnline.md) in order to use any of the PnP PowerShell cmdlets. You will have to reauthenticate. If instead you simply want to connect to another site collection within the same tenant using the same credentials you used previously, do not use this cmdlet but instead use `Connect-PnPOnline -Url https://tenant.sharepoint.com/sites/othersite` instead without disconnecting. It will try to reuse the existing authentication method and cached credentials. Note that this cmdlet does not support passing in a specific connection to disconnect. If you wish to dispose a specific connection you have set up in a variable using `$variable = Connect-PnPOnline -ReturnConnection`, just dispose that variable using `$variable = $null` and it will be cleared from memory. diff --git a/pages/articles/azureautomationrunbook.md b/pages/articles/azureautomationrunbook.md index d8d1322d4..b2270283e 100644 --- a/pages/articles/azureautomationrunbook.md +++ b/pages/articles/azureautomationrunbook.md @@ -90,8 +90,6 @@ To add PnP PowerShell to the Azure Automation Account, follow these steps: Click on **Import** to start the download and importing process. - ![Start importing the PnP PowerShell module](../images/azureautomation/automationaddmodulepnpposhcustombuildimport.png) - It will take up to 10 minutes for the import to complete. You can check the import status by changing the **Module type** filter to **Custom**. ![Check the import status](../images/azureautomation/automationaddmodulepnpposhcustombuildstatus.png) diff --git a/pages/articles/telemetry.md b/pages/articles/telemetry.md index 0fe2f4739..67a5850c0 100644 --- a/pages/articles/telemetry.md +++ b/pages/articles/telemetry.md @@ -2,13 +2,13 @@ By default PnP PowerShell will report its usage anonymously to the PnP team. We collection information about the **version of PnP PowerShell**, the **operation system version** and the **cmdlet** executed. Notice that we will *not* include parameters used and we will *not* include any values of parameters. We will also *not* be able to trace the execution back to the specific tenant it ran on, the organization it was used for or the person it was run by. Having telemtry in place allows us to get insight in the usage of cmdlets and thereby prioritize work towards the most popular cmdlets. -To query if in a connected PnP PowerShell session the telemetry is enabled, use [Get-PnPPowerShellTelemetryEnabled](../cmdlets/Get-PnPPowerShellTelemetryEnabled.html). +To query if in a connected PnP PowerShell session the telemetry is enabled, use [Get-PnPPowerShellTelemetryEnabled](../cmdlets/Get-PnPPowerShellTelemetryEnabled.md). If you wish to control telemetry to be sent, you can use one of the below options. ## By using PnP PowerShell -You can disable telemetry to be sent by using [Disable-PnPPowerShellTelemetry](../cmdlets/Disable-PnPPowerShellTelemetry.html). -You can enable telemetry to be sent by using [Enable-PnPPowerShellTelemetry](../cmdlets/Enable-PnPPowerShellTelemetry.html). +You can disable telemetry to be sent by using [Disable-PnPPowerShellTelemetry](../cmdlets/Disable-PnPPowerShellTelemetry.md). +You can enable telemetry to be sent by using [Enable-PnPPowerShellTelemetry](../cmdlets/Enable-PnPPowerShellTelemetry.md). ## By setting an environment variable To disable telemetry, set the `PNPPOWERSHELL_DISABLETELEMETRY` environment variable to `true`, i.e. by using `$env:PNPPOWERSHELL_DISABLETELEMETRY=$true`. Remove the entry again or set it to `false` to enable telemetry to be sent again. diff --git a/pages/articles/updatenotifications.md b/pages/articles/updatenotifications.md index 075ee2c82..239f1f0b7 100644 --- a/pages/articles/updatenotifications.md +++ b/pages/articles/updatenotifications.md @@ -9,8 +9,6 @@ If you have a script and want to turn off the update check, simply set the follo $env:PNPPOWERSHELL_UPDATECHECK="false" ``` -See [Configure PnP PowerShell](configuration.md) for more information on the environment variables you can set. - ## When do you receive an update notification If the major version of your current version is lower than the currently available major version. diff --git a/powershell b/powershell new file mode 160000 index 000000000..a7a08dd3c --- /dev/null +++ b/powershell @@ -0,0 +1 @@ +Subproject commit a7a08dd3c20b05c473db109251fbc8b5380a164d From 6d6d716dffac39f153b7623c39ae0f2bc2bf8fe0 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 22:34:19 +0200 Subject: [PATCH 034/146] Fixing documentation build warnings --- documentation/Get-PnPAvailableSensitivityLabel.md | 2 +- documentation/Get-PnPAvailableSiteClassification.md | 2 +- .../Get-PnPAzureADServicePrincipalAvailableAppRole.md | 2 +- documentation/Get-PnPFolderItem.md | 2 +- documentation/Grant-PnPAzureADAppSitePermission.md | 4 ++-- documentation/Set-PnPAzureADAppSitePermission.md | 4 ++-- documentation/Set-PnPList.md | 4 ++-- documentation/Set-PnPListPermission.md | 2 +- documentation/Set-PnPSiteClassification.md | 2 +- documentation/Set-PnPSiteSensitivityLabel.md | 4 ++-- pages/cmdlets/alias.md | 2 +- powershell | 1 + 12 files changed, 16 insertions(+), 15 deletions(-) create mode 160000 powershell diff --git a/documentation/Get-PnPAvailableSensitivityLabel.md b/documentation/Get-PnPAvailableSensitivityLabel.md index 370e6788d..7bdf01ee3 100644 --- a/documentation/Get-PnPAvailableSensitivityLabel.md +++ b/documentation/Get-PnPAvailableSensitivityLabel.md @@ -21,7 +21,7 @@ Get-PnPAvailableSensitivityLabel [-Identity ] [-User ## DESCRIPTION This cmdlet allows retrieval of the available Microsoft Purview sensitivity labels in the currently connected tenant. You can retrieve all the labels, a specific label or all the labels available to a specific user. When connected with a delegate token, it will return the Microsoft Purview sensitivity labels for the user you logged on with. When connecting with an application token, it will return all available Microsoft Purview sensitivity labels on the tenant. -For retrieval of the available classic Site Classification, use [Get-PnPAvailableSiteClassification](Get-PnPAvailableSiteClassification.html) instead. +For retrieval of the available classic Site Classification, use [Get-PnPAvailableSiteClassification](Get-PnPAvailableSiteClassification.MD) instead. ## EXAMPLES diff --git a/documentation/Get-PnPAvailableSiteClassification.md b/documentation/Get-PnPAvailableSiteClassification.md index 07db355b5..06d92426a 100644 --- a/documentation/Get-PnPAvailableSiteClassification.md +++ b/documentation/Get-PnPAvailableSiteClassification.md @@ -24,7 +24,7 @@ Get-PnPAvailableSiteClassification [-Connection ] ``` ## DESCRIPTION -This cmdlet allows for retrieving the configuration of the classic site classifications configured within the tenant. For the new Microsoft Purview sensitivity labels, use [Get-PnPAvailableSensitivityLabel](Get-PnPAvailableSensitivityLabel.html) instead. +This cmdlet allows for retrieving the configuration of the classic site classifications configured within the tenant. For the new Microsoft Purview sensitivity labels, use [Get-PnPAvailableSensitivityLabel](Get-PnPAvailableSensitivityLabel.md) instead. ## EXAMPLES diff --git a/documentation/Get-PnPAzureADServicePrincipalAvailableAppRole.md b/documentation/Get-PnPAzureADServicePrincipalAvailableAppRole.md index 4ffa2465a..7e032845e 100644 --- a/documentation/Get-PnPAzureADServicePrincipalAvailableAppRole.md +++ b/documentation/Get-PnPAzureADServicePrincipalAvailableAppRole.md @@ -25,7 +25,7 @@ Get-PnPAzureADServicePrincipalAvailableAppRole -Principal ] [-ItemType ] [-ItemName < This cmdlet allows listing of all the content in a folder. It can be used to list all files and folders in a folder and optionally all its subfolders. -Use [Get-PnPFolderFile](Get-PnPFolderFile.html) to retrieve only files and [Get-PnPFolderFolder](Get-PnPFolderFolder.html) to retrieve only folders allowing additional properties of the returned items to be requested. +Use [Get-PnPFolderFile](Get-PnPFolderFile.md) to retrieve only files and [Get-PnPFolderFolder](Get-PnPFolderFolder.md) to retrieve only folders allowing additional properties of the returned items to be requested. ## EXAMPLES diff --git a/documentation/Grant-PnPAzureADAppSitePermission.md b/documentation/Grant-PnPAzureADAppSitePermission.md index 8ee4d1b11..b12654fc3 100644 --- a/documentation/Grant-PnPAzureADAppSitePermission.md +++ b/documentation/Grant-PnPAzureADAppSitePermission.md @@ -25,7 +25,7 @@ Grant-PnPAzureADAppSitePermission -AppId -DisplayName -Permissio ## DESCRIPTION -This cmdlet adds 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 fewer permissions compared to updating rights through [Set-PnPAzureADAppSitePermission](Set-PnPAzureADAppSitePermission.html). If you wish to i.e. assign FullControl permissions, you need to add read or write permissions through this cmdlet first and then update it to FullControl. +This cmdlet adds 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 fewer permissions compared to updating rights through [Set-PnPAzureADAppSitePermission](Set-PnPAzureADAppSitePermission.md). If you wish to i.e. assign FullControl permissions, you need to add read or write permissions through this cmdlet first and then update it to FullControl. ## EXAMPLES @@ -88,7 +88,7 @@ Accept wildcard characters: False ``` ### -Permissions -Specifies the permissions to set for the Azure Active Directory application registration which can either be Read or Write. Use [Set-PnPAzureADAppSitePermission](Set-PnPAzureADAppSitePermission.html) after initially adding these permissions to update it to Manage or FullControl permissions. +Specifies the permissions to set for the Azure Active Directory application registration which can either be Read or Write. Use [Set-PnPAzureADAppSitePermission](Set-PnPAzureADAppSitePermission.md) after initially adding these permissions to update it to Manage or FullControl permissions. ```yaml Type: String diff --git a/documentation/Set-PnPAzureADAppSitePermission.md b/documentation/Set-PnPAzureADAppSitePermission.md index 69f0d3a56..6370b54c8 100644 --- a/documentation/Set-PnPAzureADAppSitePermission.md +++ b/documentation/Set-PnPAzureADAppSitePermission.md @@ -25,7 +25,7 @@ Set-PnPAzureADAppSitePermission -PermissionId -Permissions -User [-AddRole ``` ## DESCRIPTION -Allows changing permissions on a SharePoint list. In case you would like to break the permission inheritance on a list from its parent, you can use [Set-PnPList -BreakRoleInheritance](Set-PnPList.html#-breakroleinheritance). +Allows changing permissions on a SharePoint list. In case you would like to break the permission inheritance on a list from its parent, you can use [Set-PnPList -BreakRoleInheritance](Set-PnPList.md#-breakroleinheritance). ## EXAMPLES diff --git a/documentation/Set-PnPSiteClassification.md b/documentation/Set-PnPSiteClassification.md index 9cc51ae71..361fd809a 100644 --- a/documentation/Set-PnPSiteClassification.md +++ b/documentation/Set-PnPSiteClassification.md @@ -24,7 +24,7 @@ Set-PnPSiteClassification -Identity [-Connection ] ``` ## DESCRIPTION -This cmdlet allows for setting a classic site classification on the currently connected to site. If the site has a Microsoft 365 Group behind it, the classification will be placed on the Microsoft 365 Group and will require either Directory.Read.All or Directory.ReadWrite.All application permissions on Microsoft Graph. If it does not have a Microsoft 365 Group behind it, it will set the site classification on the SharePoint Online site and will not require Microsoft Graph permissions. Use [Get-PnPAvailableSiteClassification](Get-PnPAvailableSiteClassification.html) to get an overview of the available site classifications on the tenant. For the new Microsoft Purview sensitivity labels, use [Set-PnPSiteSensitivityLabel](Set-PnPSiteSensitivityLabel.html) instead. +This cmdlet allows for setting a classic site classification on the currently connected to site. If the site has a Microsoft 365 Group behind it, the classification will be placed on the Microsoft 365 Group and will require either Directory.Read.All or Directory.ReadWrite.All application permissions on Microsoft Graph. If it does not have a Microsoft 365 Group behind it, it will set the site classification on the SharePoint Online site and will not require Microsoft Graph permissions. Use [Get-PnPAvailableSiteClassification](Get-PnPAvailableSiteClassification.md) to get an overview of the available site classifications on the tenant. For the new Microsoft Purview sensitivity labels, use [Set-PnPSiteSensitivityLabel](Set-PnPSiteSensitivityLabel.md) instead. ## EXAMPLES diff --git a/documentation/Set-PnPSiteSensitivityLabel.md b/documentation/Set-PnPSiteSensitivityLabel.md index 129de1cb0..04caae5bb 100644 --- a/documentation/Set-PnPSiteSensitivityLabel.md +++ b/documentation/Set-PnPSiteSensitivityLabel.md @@ -28,9 +28,9 @@ This cmdlet allows for setting a Microsoft Purview sensitivity label on the curr It may take up to a few minutes for a change to the sensitivity label to become visible in SharePoint Online and Azure Active Directory. -Use [Get-PnPAvailableSensitivityLabel](Get-PnPAvailableSensitivityLabel.html) to get an overview of the available Microsoft Purview sensitivity labels on the tenant. +Use [Get-PnPAvailableSensitivityLabel](Get-PnPAvailableSensitivityLabel.md) to get an overview of the available Microsoft Purview sensitivity labels on the tenant. -For the classic classification labels, use [Set-PnPSiteClassification](Set-PnPSiteClassification.html) instead. +For the classic classification labels, use [Set-PnPSiteClassification](Set-PnPSiteClassification.md) instead. ## EXAMPLES diff --git a/pages/cmdlets/alias.md b/pages/cmdlets/alias.md index 82af0bf9b..75b3389b3 100644 --- a/pages/cmdlets/alias.md +++ b/pages/cmdlets/alias.md @@ -14,4 +14,4 @@ This is an alias for [%%referencedcmdletname%%](./%%referencedcmdletname%%.md). ## RELATED LINKS -[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) +[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) \ No newline at end of file diff --git a/powershell b/powershell new file mode 160000 index 000000000..a7a08dd3c --- /dev/null +++ b/powershell @@ -0,0 +1 @@ +Subproject commit a7a08dd3c20b05c473db109251fbc8b5380a164d From e621c7600ecc147afe17db858ffafec8c018f52e Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 22:35:13 +0200 Subject: [PATCH 035/146] Fixing documentation build warnings --- pages/Build-Site.ps1 | 4 ++-- pages/cmdlets/alias.md | 17 ----------------- 2 files changed, 2 insertions(+), 19 deletions(-) delete mode 100644 pages/cmdlets/alias.md diff --git a/pages/Build-Site.ps1 b/pages/Build-Site.ps1 index 9264413dd..b6eecb21d 100644 --- a/pages/Build-Site.ps1 +++ b/pages/Build-Site.ps1 @@ -82,7 +82,7 @@ Try { $aliasCmdletsCount = $aliasCmdlets.Length Write-Host "- Retrieving alias template page" - $aliasTemplatePageContent = Get-Content -Path "./dev/pages/cmdlets/alias.md" -Raw + $aliasTemplatePageContent = Get-Content -Path "./dev/pages/cmdlets/alias.template" -Raw ForEach($aliasCmdlet in $aliasCmdlets) { @@ -115,7 +115,7 @@ foreach ($nightlycmdlet in $nightlycmdlets) { # Generate cmdlet toc Write-Host "Retrieving all cmdlet pages" -$cmdletPages = Get-ChildItem -Path "./dev/pages/cmdlets/*.md" -Exclude "index.md","alias.md" +$cmdletPages = Get-ChildItem -Path "./dev/pages/cmdlets/*.md" -Exclude "index.md","alias.template" $toc = "" foreach ($cmdletPage in $cmdletPages) { $toc = $toc + "- name: $($cmdletPage.BaseName)`n href: $($cmdletPage.Name)`n" diff --git a/pages/cmdlets/alias.md b/pages/cmdlets/alias.md deleted file mode 100644 index 75b3389b3..000000000 --- a/pages/cmdlets/alias.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -Module Name: PnP.PowerShell -title: %%cmdletname%% -schema: 2.0.0 -applicable: SharePoint Online -external help file: PnP.PowerShell.dll-Help.xml -online version: https://pnp.github.io/powershell/cmdlets/%%cmdletname%%.html ---- - -# %%cmdletname%% - -## SYNOPSIS -This is an alias for [%%referencedcmdletname%%](./%%referencedcmdletname%%.md). Please update your scripts to use this cmdlet instead as it may be removed in a future update. - -## RELATED LINKS - -[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) \ No newline at end of file From 2ab95ae821a121fe4b785d1ab6b1b8f81f35c154 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 22:38:06 +0200 Subject: [PATCH 036/146] Fixing documentation build warning --- documentation/Get-PnPAvailableSensitivityLabel.md | 2 +- powershell | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/Get-PnPAvailableSensitivityLabel.md b/documentation/Get-PnPAvailableSensitivityLabel.md index 7bdf01ee3..6ff355b51 100644 --- a/documentation/Get-PnPAvailableSensitivityLabel.md +++ b/documentation/Get-PnPAvailableSensitivityLabel.md @@ -21,7 +21,7 @@ Get-PnPAvailableSensitivityLabel [-Identity ] [-User ## DESCRIPTION This cmdlet allows retrieval of the available Microsoft Purview sensitivity labels in the currently connected tenant. You can retrieve all the labels, a specific label or all the labels available to a specific user. When connected with a delegate token, it will return the Microsoft Purview sensitivity labels for the user you logged on with. When connecting with an application token, it will return all available Microsoft Purview sensitivity labels on the tenant. -For retrieval of the available classic Site Classification, use [Get-PnPAvailableSiteClassification](Get-PnPAvailableSiteClassification.MD) instead. +For retrieval of the available classic Site Classification, use [Get-PnPAvailableSiteClassification](Get-PnPAvailableSiteClassification.md) instead. ## EXAMPLES diff --git a/powershell b/powershell index a7a08dd3c..f14e380fa 160000 --- a/powershell +++ b/powershell @@ -1 +1 @@ -Subproject commit a7a08dd3c20b05c473db109251fbc8b5380a164d +Subproject commit f14e380faecbacfd128c354a3c84a9f7e3d6746f From 16b2dab4a3a7b08555fff8541f1ccb7425ed663c Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 22:45:45 +0200 Subject: [PATCH 037/146] Added changed entry for PR 3455 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69b76c46c..db6860891 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -63,6 +63,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Verbose output will no longer show the access token [#3352](https://github.com/pnp/powershell/pull/3352) - Improved `Add-PnPFile` cmdlet. It will now automatically checkout the file if `-CheckinType` parameter is specified. [#3403](https://github.com/pnp/powershell/pull/3403) - Improved the error message thrown when using `-ValidateConnection` with `Connect-PnPOnline` and it failing due to i.e. an expired ClientSecret so the reason of the failed connect becomes more clear. [#3440](https://github.com/pnp/powershell/pull/3440) +- If a cmdlet gets renamed and an alias gets added for it for backwards compatibility, a cmdlet page for the alias will automatically be created so it can still be found in the documentation [#3455](https://github.com/pnp/powershell/pull/3455) ### Removed From 0748446fd407b154c9e7c7bb801a5a4bad14c6ea Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 23:04:22 +0200 Subject: [PATCH 038/146] Adding required permissions --- documentation/Set-PnPSearchExternalItem.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/documentation/Set-PnPSearchExternalItem.md b/documentation/Set-PnPSearchExternalItem.md index 925664d56..7862982f9 100644 --- a/documentation/Set-PnPSearchExternalItem.md +++ b/documentation/Set-PnPSearchExternalItem.md @@ -10,6 +10,10 @@ title: Set-PnPSearchExternalItem # Set-PnPSearchExternalItem ## SYNOPSIS + +**Required Permissions** + + * Microsoft Graph API : One of ExternalItem.ReadWrite.OwnedBy, ExternalItem.ReadWrite.All Adds or updates an external item in Microsoft Search ## SYNTAX @@ -225,4 +229,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) From b59bad22c04d636a66713234c8b512225f12c9f8 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 23:04:45 +0200 Subject: [PATCH 039/146] Adding newline --- documentation/Set-PnPSearchExternalItem.md | 1 + 1 file changed, 1 insertion(+) diff --git a/documentation/Set-PnPSearchExternalItem.md b/documentation/Set-PnPSearchExternalItem.md index 7862982f9..a0036df4f 100644 --- a/documentation/Set-PnPSearchExternalItem.md +++ b/documentation/Set-PnPSearchExternalItem.md @@ -14,6 +14,7 @@ title: Set-PnPSearchExternalItem **Required Permissions** * Microsoft Graph API : One of ExternalItem.ReadWrite.OwnedBy, ExternalItem.ReadWrite.All + Adds or updates an external item in Microsoft Search ## SYNTAX From eba7bf46c9d6539a54200b962b50a9614ede528d Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 23:06:52 +0200 Subject: [PATCH 040/146] Adding alias template file --- pages/cmdlets/alias.template | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pages/cmdlets/alias.template diff --git a/pages/cmdlets/alias.template b/pages/cmdlets/alias.template new file mode 100644 index 000000000..b93541b2b --- /dev/null +++ b/pages/cmdlets/alias.template @@ -0,0 +1,17 @@ +--- +Module Name: PnP.PowerShell +title: %%cmdletname%% +schema: 2.0.0 +applicable: SharePoint Online +external help file: PnP.PowerShell.dll-Help.xml +online version: https://pnp.github.io/powershell/cmdlets/%%cmdletname%%.html +--- + +# %%cmdletname%% + +## SYNOPSIS +This is an alias for [%%referencedcmdletname%%](./%%referencedcmdletname%%.md). Please update your scripts to use this cmdlet instead as it may be removed in a future update. + +## RELATED LINKS + +[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) \ No newline at end of file From 52afffaa7f9ced10419976349e8580fcec0570eb Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 1 Oct 2023 23:07:19 +0200 Subject: [PATCH 041/146] Removing deprecation notice --- pages/cmdlets/alias.template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/cmdlets/alias.template b/pages/cmdlets/alias.template index b93541b2b..a3a5e3fd9 100644 --- a/pages/cmdlets/alias.template +++ b/pages/cmdlets/alias.template @@ -10,8 +10,8 @@ online version: https://pnp.github.io/powershell/cmdlets/%%cmdletname%%.html # %%cmdletname%% ## SYNOPSIS -This is an alias for [%%referencedcmdletname%%](./%%referencedcmdletname%%.md). Please update your scripts to use this cmdlet instead as it may be removed in a future update. +This is an alias for [%%referencedcmdletname%%](./%%referencedcmdletname%%.md). ## 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) From 49ff2f09afda3bf1a743954b62fb16caab8731ef Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Mon, 2 Oct 2023 02:38:13 +0000 Subject: [PATCH 042/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9528 ++++++++--------- version.txt | 2 +- 3 files changed, 4766 insertions(+), 4766 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 8620ab7ba..6a58d7cb1 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -82c3077b7206ed62fe1c6df5353ee4d09c3bac34 \ No newline at end of file +e7b020ee29f28f1d130d5e1d6f7c33c07d19c2c2 \ 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 34cc27b73..c5a40255a 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9530 +1,9530 @@ [ { - "Id": 1, + "CommandName": "Add-PnPAlert", "Rank": 1, - "Command": "Add-PnPAlert -List \"Demo List\"", - "CommandName": "Add-PnPAlert" + "Id": 1, + "Command": "Add-PnPAlert -List \"Demo List\"" }, { - "Id": 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": 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, - "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": 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-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, - "Command": "Add-PnPApp -Path ./myapp.sppkg", - "CommandName": "Add-PnPApp" + "Id": 5, + "Command": "Add-PnPApp -Path ./myapp.sppkg" }, { - "Id": 6, + "CommandName": "Add-PnPApp", "Rank": 2, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "CommandName": "Add-PnPApp" + "Id": 6, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" }, { - "Id": 7, + "CommandName": "Add-PnPApp", "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": 8, + "CommandName": "Add-PnPApp", "Rank": 4, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "CommandName": "Add-PnPApp" + "Id": 8, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" }, { - "Id": 9, + "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, + "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, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "CommandName": "Add-PnPAvailableSiteClassification" + "Id": 10, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" }, { - "Id": 11, + "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 2, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "CommandName": "Add-PnPAvailableSiteClassification" + "Id": 11, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" }, { - "Id": 12, + "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, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 13, + "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, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 14, + "CommandName": "Add-PnPAzureADGroupMember", "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": 15, + "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, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 16, + "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, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 17, + "CommandName": "Add-PnPAzureADGroupOwner", "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": 18, + "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, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph" }, { - "Id": 19, + "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, + "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, - "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": 21, + "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, + "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, - "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": 23, + "CommandName": "Add-PnPContentType", "Rank": 4, - "Command": "Add-PnPContentType -Name \"Project Item\"", - "CommandName": "Add-PnPContentType" + "Id": 23, + "Command": "Add-PnPContentType -Name \"Project Item\"" }, { - "Id": 24, + "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, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" }, { - "Id": 25, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 1, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "Id": 25, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" }, { - "Id": 26, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "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": 27, + "CommandName": "Add-PnPContentTypeToDocumentSet", "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": 28, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 2, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Add-PnPContentTypeToDocumentSet" + "Id": 28, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Id": 29, + "CommandName": "Add-PnPContentTypeToList", "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": 30, + "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, + "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, - "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": 32, + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 2, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "Id": 32, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" }, { - "Id": 33, + "CommandName": "Add-PnPDocumentSet", "Rank": 1, - "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": 34, + "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, + "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, - "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": 36, + "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, + "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, - "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": 38, + "CommandName": "Add-PnPField", "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": 39, + "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, + "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, - "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": 41, + "CommandName": "Add-PnPField", "Rank": 4, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "CommandName": "Add-PnPField" + "Id": 41, + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" }, { - "Id": 42, + "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, + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" }, { - "Id": 43, + "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, + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" }, { - "Id": 44, + "CommandName": "Add-PnPFieldToContentType", "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": 45, + "CommandName": "Add-PnPFile", "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": 46, + "CommandName": "Add-PnPFile", "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": 47, + "CommandName": "Add-PnPFile", "Rank": 3, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile" + "Id": 47, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" }, { - "Id": 48, + "CommandName": "Add-PnPFile", "Rank": 4, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile" + "Id": 48, + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" }, { - "Id": 49, + "CommandName": "Add-PnPFile", "Rank": 5, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile" + "Id": 49, + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" }, { - "Id": 50, + "CommandName": "Add-PnPFile", "Rank": 6, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "CommandName": "Add-PnPFile" + "Id": 50, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" }, { - "Id": 51, + "CommandName": "Add-PnPFile", "Rank": 7, - "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": 52, + "CommandName": "Add-PnPFile", "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": 53, + "CommandName": "Add-PnPFileAnonymousSharingLink", "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": 54, + "CommandName": "Add-PnPFileAnonymousSharingLink", "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": 55, + "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, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" }, { - "Id": 56, + "CommandName": "Add-PnPFileOrganizationalSharingLink", "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": 57, + "CommandName": "Add-PnPFileOrganizationalSharingLink", "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": 58, + "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, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "Id": 59, + "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, + "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, - "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": 61, + "CommandName": "Add-PnPFileToSiteTemplate", "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": 62, + "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, + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" }, { - "Id": 63, + "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, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" }, { - "Id": 64, + "CommandName": "Add-PnPFileToSiteTemplate", "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": 65, + "CommandName": "Add-PnPFileToSiteTemplate", "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": 66, + "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, + "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, - "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": 68, + "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, + "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, - "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": 70, + "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, + "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, - "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": 72, + "CommandName": "Add-PnPFolder", "Rank": 1, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Add-PnPFolder" + "Id": 72, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Id": 73, + "CommandName": "Add-PnPFolder", "Rank": 2, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFolder" + "Id": 73, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" }, { - "Id": 74, + "CommandName": "Add-PnPFolder", "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": 75, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "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": 76, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "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": 77, + "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, + "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, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "Id": 78, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 79, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "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": 80, + "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, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "Id": 81, + "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, + "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, - "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": 83, + "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, + "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, - "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": 85, + "CommandName": "Add-PnPGroupMember", "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": 86, + "CommandName": "Add-PnPGroupMember", "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": 87, + "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, + "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, - "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": 89, + "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, + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" }, { - "Id": 90, + "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, + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"" }, { - "Id": 91, + "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, + "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, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptBlock" + "Id": 92, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" }, { - "Id": 93, + "CommandName": "Add-PnPJavaScriptBlock", "Rank": 2, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "CommandName": "Add-PnPJavaScriptBlock" + "Id": 93, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" }, { - "Id": 94, + "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, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site" }, { - "Id": 95, + "CommandName": "Add-PnPJavaScriptLink", "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": 96, + "CommandName": "Add-PnPListDesign", "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": 97, + "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, + "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, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "Id": 98, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" }, { - "Id": 99, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "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": 100, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "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": 101, + "CommandName": "Add-PnPListItem", "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": 102, + "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, + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 103, + "CommandName": "Add-PnPListItem", "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": 104, + "CommandName": "Add-PnPListItem", "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": 105, + "CommandName": "Add-PnPListItem", "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": 106, + "CommandName": "Add-PnPListItemAttachment", "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": 107, + "CommandName": "Add-PnPListItemAttachment", "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": 108, + "CommandName": "Add-PnPListItemAttachment", "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": 109, + "CommandName": "Add-PnPListItemComment", "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": 110, + "CommandName": "Add-PnPMasterPage", "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": 111, + "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, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 112, + "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, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 113, + "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, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 114, + "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, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 115, + "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, + "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, - "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": 117, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "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": 118, + "CommandName": "Add-PnPNavigationNode", "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": 119, + "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, + "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, - "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": 121, + "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, + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" }, { - "Id": 122, + "CommandName": "Add-PnPNavigationNode", "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": 123, + "CommandName": "Add-PnPNavigationNode", "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": 124, + "CommandName": "Add-PnPNavigationNode", "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": 125, + "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, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" }, { - "Id": 126, + "CommandName": "Add-PnPOrgAssetsLibrary", "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": 127, + "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, + "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, - "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": 129, + "CommandName": "Add-PnPOrgNewsSite", "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": 130, + "CommandName": "Add-PnPPage", "Rank": 1, - "Command": "Add-PnPPage -Name \"NewPage\"", - "CommandName": "Add-PnPPage" + "Id": 130, + "Command": "Add-PnPPage -Name \"NewPage\"" }, { - "Id": 131, + "CommandName": "Add-PnPPage", "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": 132, + "CommandName": "Add-PnPPage", "Rank": 3, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "CommandName": "Add-PnPPage" + "Id": 132, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" }, { - "Id": 133, + "CommandName": "Add-PnPPage", "Rank": 4, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "CommandName": "Add-PnPPage" + "Id": 133, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" }, { - "Id": 134, + "CommandName": "Add-PnPPage", "Rank": 5, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "CommandName": "Add-PnPPage" + "Id": 134, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"" }, { - "Id": 135, + "CommandName": "Add-PnPPage", "Rank": 6, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "CommandName": "Add-PnPPage" + "Id": 135, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" }, { - "Id": 136, + "CommandName": "Add-PnPPage", "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": 137, + "CommandName": "Add-PnPPage", "Rank": 8, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "CommandName": "Add-PnPPage" + "Id": 137, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate" }, { - "Id": 138, + "CommandName": "Add-PnPPage", "Rank": 9, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Add-PnPPage" + "Id": 138, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Id": 139, + "CommandName": "Add-PnPPage", "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": 140, + "CommandName": "Add-PnPPageImageWebPart", "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": 141, + "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, + "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, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "CommandName": "Add-PnPPageSection" + "Id": 142, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" }, { - "Id": 143, + "CommandName": "Add-PnPPageSection", "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": 144, + "CommandName": "Add-PnPPageTextPart", "Rank": 1, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "CommandName": "Add-PnPPageTextPart" + "Id": 144, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" }, { - "Id": 145, + "CommandName": "Add-PnPPageTextPart", "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": 146, + "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, + "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, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "CommandName": "Add-PnPPageWebPart" + "Id": 147, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" }, { - "Id": 148, + "CommandName": "Add-PnPPageWebPart", "Rank": 2, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "CommandName": "Add-PnPPageWebPart" + "Id": 148, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" }, { - "Id": 149, + "CommandName": "Add-PnPPageWebPart", "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": 150, + "CommandName": "Add-PnPPlannerBucket", "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": 151, + "CommandName": "Add-PnPPlannerBucket", "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": 152, + "CommandName": "Add-PnPPlannerRoster", "Rank": 1, - "Command": "Add-PnPPlannerRoster", - "CommandName": "Add-PnPPlannerRoster" + "Id": 152, + "Command": "Add-PnPPlannerRoster" }, { - "Id": 153, + "CommandName": "Add-PnPPlannerRosterMember", "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": 154, + "CommandName": "Add-PnPPlannerTask", "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": 155, + "CommandName": "Add-PnPPlannerTask", "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": 156, + "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, + "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, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Add-PnPPublishingImageRendition" + "Id": 157, + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Id": 158, + "CommandName": "Add-PnPPublishingPage", "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": 159, + "CommandName": "Add-PnPPublishingPage", "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": 160, + "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, + "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, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "CommandName": "Add-PnPRoleDefinition" + "Id": 161, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" }, { - "Id": 162, + "CommandName": "Add-PnPRoleDefinition", "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": 163, + "CommandName": "Add-PnPRoleDefinition", "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": 164, + "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 1, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin" + "Id": 164, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Id": 165, + "CommandName": "Add-PnPSiteCollectionAdmin", "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": 166, + "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 3, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin" + "Id": 166, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" }, { - "Id": 167, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, - "Command": "Add-PnPSiteCollectionAppCatalog", - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "Id": 167, + "Command": "Add-PnPSiteCollectionAppCatalog" }, { - "Id": 168, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "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": 169, + "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, + "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, - "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": 171, + "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, + "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, - "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": 173, + "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, + "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, - "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": 175, + "CommandName": "Add-PnPSiteDesignTask", "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": 176, + "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, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Id": 177, + "CommandName": "Add-PnPSiteScript", "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": 178, + "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, + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" }, { - "Id": 179, + "CommandName": "Add-PnPSiteTemplate", "Rank": 1, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "CommandName": "Add-PnPSiteTemplate" + "Id": 179, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" }, { - "Id": 180, + "CommandName": "Add-PnPStoredCredential", "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": 181, + "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, + "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, - "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": 183, + "CommandName": "Add-PnPTaxonomyField", "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": 184, + "CommandName": "Add-PnPTaxonomyField", "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": 185, + "CommandName": "Add-PnPTeamsChannel", "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": 186, + "CommandName": "Add-PnPTeamsChannel", "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": 187, + "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, + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" }, { - "Id": 188, + "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, + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" }, { - "Id": 189, + "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, + "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, - "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": 191, + "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, + "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, - "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": 193, + "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, + "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, - "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": 195, + "CommandName": "Add-PnPTeamsTeam", "Rank": 1, - "Command": "Add-PnPTeamsTeam", - "CommandName": "Add-PnPTeamsTeam" + "Id": 195, + "Command": "Add-PnPTeamsTeam" }, { - "Id": 196, + "CommandName": "Add-PnPTeamsUser", "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": 197, + "CommandName": "Add-PnPTeamsUser", "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": 198, + "CommandName": "Add-PnPTeamsUser", "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": 199, + "CommandName": "Add-PnPTeamsUser", "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": 200, + "CommandName": "Add-PnPTenantCdnOrigin", "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": 201, + "CommandName": "Add-PnPTenantSequence", "Rank": 1, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequence" + "Id": 201, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" }, { - "Id": 202, + "CommandName": "Add-PnPTenantSequenceSite", "Rank": 1, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequenceSite" + "Id": 202, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" }, { - "Id": 203, + "CommandName": "Add-PnPTenantSequenceSubSite", "Rank": 1, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "CommandName": "Add-PnPTenantSequenceSubSite" + "Id": 203, + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" }, { - "Id": 204, + "CommandName": "Add-PnPTermToTerm", "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": 205, + "CommandName": "Add-PnPView", "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": 206, + "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, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" }, { - "Id": 207, + "CommandName": "Add-PnPView", "Rank": 3, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "CommandName": "Add-PnPView" + "Id": 207, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" }, { - "Id": 208, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 1, - "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": 209, + "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, + "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, - "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": 211, + "CommandName": "Add-PnPWebhookSubscription", "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": 212, + "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, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Id": 213, + "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, + "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, - "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": 215, + "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, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" }, { - "Id": 216, + "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, + "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, - "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": 218, + "CommandName": "Add-PnPWikiPage", "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": 219, + "CommandName": "Clear-PnPAzureADGroupMember", "Rank": 1, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupMember" + "Id": 219, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" }, { - "Id": 220, + "CommandName": "Clear-PnPAzureADGroupOwner", "Rank": 1, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupOwner" + "Id": 220, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" }, { - "Id": 221, + "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 1, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "CommandName": "Clear-PnPDefaultColumnValues" + "Id": 221, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" }, { - "Id": 222, + "CommandName": "Clear-PnPDefaultColumnValues", "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": 223, + "CommandName": "Clear-PnPListItemAsRecord", "Rank": 1, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Clear-PnPListItemAsRecord" + "Id": 223, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Id": 224, + "CommandName": "Clear-PnPMicrosoft365GroupMember", "Rank": 1, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupMember" + "Id": 224, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" }, { - "Id": 225, + "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Rank": 1, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupOwner" + "Id": 225, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" }, { - "Id": 226, + "CommandName": "Clear-PnpRecycleBinItem", "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": 227, + "CommandName": "Clear-PnpRecycleBinItem", "Rank": 2, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "CommandName": "Clear-PnpRecycleBinItem" + "Id": 227, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" }, { - "Id": 228, + "CommandName": "Clear-PnpRecycleBinItem", "Rank": 3, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "CommandName": "Clear-PnpRecycleBinItem" + "Id": 228, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" }, { - "Id": 229, + "CommandName": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, - "Command": "Clear-PnPTenantAppCatalogUrl", - "CommandName": "Clear-PnPTenantAppCatalogUrl" + "Id": 229, + "Command": "Clear-PnPTenantAppCatalogUrl" }, { - "Id": 230, + "CommandName": "Clear-PnPTenantRecycleBinItem", "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": 231, + "CommandName": "Clear-PnPTenantRecycleBinItem", "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": 232, + "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, + "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"" }, { - "Id": 233, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 1, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "CommandName": "Convert-PnPFolderToSiteTemplate" + "Id": 233, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" }, { - "Id": 234, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 2, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "CommandName": "Convert-PnPFolderToSiteTemplate" + "Id": 234, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" }, { - "Id": 235, + "CommandName": "Convert-PnPSiteTemplate", "Rank": 1, - "Command": "Convert-PnPSiteTemplate -Path template.xml", - "CommandName": "Convert-PnPSiteTemplate" + "Id": 235, + "Command": "Convert-PnPSiteTemplate -Path template.xml" }, { - "Id": 236, + "CommandName": "Convert-PnPSiteTemplate", "Rank": 2, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "CommandName": "Convert-PnPSiteTemplate" + "Id": 236, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" }, { - "Id": 237, + "CommandName": "Convert-PnPSiteTemplate", "Rank": 3, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "CommandName": "Convert-PnPSiteTemplate" + "Id": 237, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" }, { - "Id": 238, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 1, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "Id": 238, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" }, { - "Id": 239, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 2, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "Id": 239, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" }, { - "Id": 240, + "CommandName": "ConvertTo-PnPPage", "Rank": 1, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "CommandName": "ConvertTo-PnPPage" + "Id": 240, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" }, { - "Id": 241, + "CommandName": "ConvertTo-PnPPage", "Rank": 2, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "CommandName": "ConvertTo-PnPPage" + "Id": 241, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" }, { - "Id": 242, + "CommandName": "ConvertTo-PnPPage", "Rank": 3, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "CommandName": "ConvertTo-PnPPage" + "Id": 242, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" }, { - "Id": 243, + "CommandName": "ConvertTo-PnPPage", "Rank": 4, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "CommandName": "ConvertTo-PnPPage" + "Id": 243, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" }, { - "Id": 244, + "CommandName": "ConvertTo-PnPPage", "Rank": 5, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage" + "Id": 244, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 245, + "CommandName": "ConvertTo-PnPPage", "Rank": 6, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "CommandName": "ConvertTo-PnPPage" + "Id": 245, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" }, { - "Id": 246, + "CommandName": "ConvertTo-PnPPage", "Rank": 7, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "CommandName": "ConvertTo-PnPPage" + "Id": 246, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" }, { - "Id": 247, + "CommandName": "ConvertTo-PnPPage", "Rank": 8, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "CommandName": "ConvertTo-PnPPage" + "Id": 247, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" }, { - "Id": 248, + "CommandName": "ConvertTo-PnPPage", "Rank": 9, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage" + "Id": 248, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 249, + "CommandName": "ConvertTo-PnPPage", "Rank": 10, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "CommandName": "ConvertTo-PnPPage" + "Id": 249, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" }, { - "Id": 250, + "CommandName": "ConvertTo-PnPPage", "Rank": 11, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "CommandName": "ConvertTo-PnPPage" + "Id": 250, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" }, { - "Id": 251, + "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": 251, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 252, + "CommandName": "ConvertTo-PnPPage", "Rank": 13, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage" + "Id": 252, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 253, + "CommandName": "ConvertTo-PnPPage", "Rank": 14, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "CommandName": "ConvertTo-PnPPage" + "Id": 253, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" }, { - "Id": 254, + "CommandName": "Copy-PnPFile", "Rank": 1, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile" + "Id": 254, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 255, + "CommandName": "Copy-PnPFile", "Rank": 2, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFile" + "Id": 255, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Id": 256, + "CommandName": "Copy-PnPFile", "Rank": 3, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFile" + "Id": 256, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Id": 257, + "CommandName": "Copy-PnPFile", "Rank": 4, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile" + "Id": 257, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 258, + "CommandName": "Copy-PnPFile", "Rank": 5, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFile" + "Id": 258, + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Id": 259, + "CommandName": "Copy-PnPFile", "Rank": 6, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFile" + "Id": 259, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Id": 260, + "CommandName": "Copy-PnPFile", "Rank": 7, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFile" + "Id": 260, + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Id": 261, + "CommandName": "Copy-PnPFile", "Rank": 8, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile" + "Id": 261, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 262, + "CommandName": "Copy-PnPFile", "Rank": 9, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFile" + "Id": 262, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Id": 263, + "CommandName": "Copy-PnPFile", "Rank": 10, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFile" + "Id": 263, + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Id": 264, + "CommandName": "Copy-PnPFolder", "Rank": 1, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder" + "Id": 264, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 265, + "CommandName": "Copy-PnPFolder", "Rank": 2, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFolder" + "Id": 265, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Id": 266, + "CommandName": "Copy-PnPFolder", "Rank": 3, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFolder" + "Id": 266, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Id": 267, + "CommandName": "Copy-PnPFolder", "Rank": 4, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder" + "Id": 267, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 268, + "CommandName": "Copy-PnPFolder", "Rank": 5, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFolder" + "Id": 268, + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Id": 269, + "CommandName": "Copy-PnPFolder", "Rank": 6, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFolder" + "Id": 269, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Id": 270, + "CommandName": "Copy-PnPFolder", "Rank": 7, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFolder" + "Id": 270, + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Id": 271, + "CommandName": "Copy-PnPFolder", "Rank": 8, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder" + "Id": 271, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 272, + "CommandName": "Copy-PnPFolder", "Rank": 9, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder" + "Id": 272, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Id": 273, + "CommandName": "Copy-PnPFolder", "Rank": 10, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFolder" + "Id": 273, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Id": 274, + "CommandName": "Copy-PnPItemProxy", "Rank": 1, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "CommandName": "Copy-PnPItemProxy" + "Id": 274, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" }, { - "Id": 275, + "CommandName": "Copy-PnPList", "Rank": 1, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "CommandName": "Copy-PnPList" + "Id": 275, + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" }, { - "Id": 276, + "CommandName": "Copy-PnPList", "Rank": 2, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "CommandName": "Copy-PnPList" + "Id": 276, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" }, { - "Id": 277, + "CommandName": "Copy-PnPList", "Rank": 3, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "CommandName": "Copy-PnPList" + "Id": 277, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" }, { - "Id": 278, + "CommandName": "Copy-PnPList", "Rank": 4, - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", - "CommandName": "Copy-PnPList" + "Id": 278, + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" }, { - "Id": 279, + "CommandName": "Copy-PnPTeamsTeam", "Rank": 1, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "CommandName": "Copy-PnPTeamsTeam" + "Id": 279, + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" }, { - "Id": 280, + "CommandName": "Copy-PnPTeamsTeam", "Rank": 2, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "CommandName": "Copy-PnPTeamsTeam" + "Id": 280, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" }, { - "Id": 281, + "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": 281, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "Id": 282, + "CommandName": "Copy-PnPTeamsTeam", "Rank": 4, - "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": 282, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "Id": 283, + "CommandName": "Disable-PnPFeature", "Rank": 1, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Disable-PnPFeature" + "Id": 283, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 284, + "CommandName": "Disable-PnPFeature", "Rank": 2, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Disable-PnPFeature" + "Id": 284, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Id": 285, + "CommandName": "Disable-PnPFeature", "Rank": 3, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Disable-PnPFeature" + "Id": 285, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Id": 286, + "CommandName": "Disable-PnPPageScheduling", "Rank": 1, - "Command": "Disable-PnPPageScheduling", - "CommandName": "Disable-PnPPageScheduling" + "Id": 286, + "Command": "Disable-PnPPageScheduling" }, { - "Id": 287, + "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 1, - "Command": "Disable-PnPPowerShellTelemetry", - "CommandName": "Disable-PnPPowerShellTelemetry" + "Id": 287, + "Command": "Disable-PnPPowerShellTelemetry" }, { - "Id": 288, + "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 2, - "Command": "Disable-PnPPowerShellTelemetry -Force", - "CommandName": "Disable-PnPPowerShellTelemetry" + "Id": 288, + "Command": "Disable-PnPPowerShellTelemetry -Force" }, { - "Id": 289, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, - "Command": "Disable-PnPSharingForNonOwnersOfSite", - "CommandName": "Disable-PnPSharingForNonOwnersOfSite" + "Id": 289, + "Command": "Disable-PnPSharingForNonOwnersOfSite" }, { - "Id": 290, + "CommandName": "Disable-PnPSiteClassification", "Rank": 1, - "Command": "Disable-PnPSiteClassification", - "CommandName": "Disable-PnPSiteClassification" + "Id": 290, + "Command": "Disable-PnPSiteClassification" }, { - "Id": 291, + "CommandName": "Disconnect-PnPOnline", "Rank": 1, - "Command": "Disconnect-PnPOnline", - "CommandName": "Disconnect-PnPOnline" + "Id": 291, + "Command": "Disconnect-PnPOnline" }, { - "Id": 292, + "CommandName": "Enable-PnPCommSite", "Rank": 1, - "Command": "Enable-PnPCommSite", - "CommandName": "Enable-PnPCommSite" + "Id": 292, + "Command": "Enable-PnPCommSite" }, { - "Id": 293, + "CommandName": "Enable-PnPCommSite", "Rank": 2, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "CommandName": "Enable-PnPCommSite" + "Id": 293, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" }, { - "Id": 294, + "CommandName": "Enable-PnPFeature", "Rank": 1, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Enable-PnPFeature" + "Id": 294, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 295, + "CommandName": "Enable-PnPFeature", "Rank": 2, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Enable-PnPFeature" + "Id": 295, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Id": 296, + "CommandName": "Enable-PnPFeature", "Rank": 3, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Enable-PnPFeature" + "Id": 296, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Id": 297, + "CommandName": "Enable-PnPPageScheduling", "Rank": 1, - "Command": "Enable-PnPPageScheduling", - "CommandName": "Enable-PnPPageScheduling" + "Id": 297, + "Command": "Enable-PnPPageScheduling" }, { - "Id": 298, + "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 1, - "Command": "Enable-PnPPowerShellTelemetry", - "CommandName": "Enable-PnPPowerShellTelemetry" + "Id": 298, + "Command": "Enable-PnPPowerShellTelemetry" }, { - "Id": 299, + "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 2, - "Command": "Enable-PnPPowerShellTelemetry -Force", - "CommandName": "Enable-PnPPowerShellTelemetry" + "Id": 299, + "Command": "Enable-PnPPowerShellTelemetry -Force" }, { - "Id": 300, + "CommandName": "Enable-PnPSiteClassification", "Rank": 1, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "CommandName": "Enable-PnPSiteClassification" + "Id": 300, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" }, { - "Id": 301, + "CommandName": "Enable-PnPSiteClassification", "Rank": 2, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Enable-PnPSiteClassification" + "Id": 301, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Id": 302, + "CommandName": "Export-PnPListToSiteTemplate", "Rank": 1, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "CommandName": "Export-PnPListToSiteTemplate" + "Id": 302, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" }, { - "Id": 303, + "CommandName": "Export-PnPListToSiteTemplate", "Rank": 2, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "CommandName": "Export-PnPListToSiteTemplate" + "Id": 303, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" }, { - "Id": 304, + "CommandName": "Export-PnPPage", "Rank": 1, - "Command": "Export-PnPPage -Identity Home.aspx", - "CommandName": "Export-PnPPage" + "Id": 304, + "Command": "Export-PnPPage -Identity Home.aspx" }, { - "Id": 305, + "CommandName": "Export-PnPPageMapping", "Rank": 1, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping" + "Id": 305, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" }, { - "Id": 306, + "CommandName": "Export-PnPPageMapping", "Rank": 2, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping" + "Id": 306, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" }, { - "Id": 307, + "CommandName": "Export-PnPPageMapping", "Rank": 3, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping" + "Id": 307, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" }, { - "Id": 308, + "CommandName": "Export-PnPTaxonomy", "Rank": 1, - "Command": "Export-PnPTaxonomy", - "CommandName": "Export-PnPTaxonomy" + "Id": 308, + "Command": "Export-PnPTaxonomy" }, { - "Id": 309, + "CommandName": "Export-PnPTaxonomy", "Rank": 2, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "CommandName": "Export-PnPTaxonomy" + "Id": 309, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt" }, { - "Id": 310, + "CommandName": "Export-PnPTaxonomy", "Rank": 3, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "CommandName": "Export-PnPTaxonomy" + "Id": 310, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" }, { - "Id": 311, + "CommandName": "Export-PnPTaxonomy", "Rank": 4, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "CommandName": "Export-PnPTaxonomy" + "Id": 311, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" }, { - "Id": 312, + "CommandName": "Export-PnPTermGroupToXml", "Rank": 1, - "Command": "Export-PnPTermGroupToXml", - "CommandName": "Export-PnPTermGroupToXml" + "Id": 312, + "Command": "Export-PnPTermGroupToXml" }, { - "Id": 313, + "CommandName": "Export-PnPTermGroupToXml", "Rank": 2, - "Command": "Export-PnPTermGroupToXml -Out output.xml", - "CommandName": "Export-PnPTermGroupToXml" + "Id": 313, + "Command": "Export-PnPTermGroupToXml -Out output.xml" }, { - "Id": 314, + "CommandName": "Export-PnPTermGroupToXml", "Rank": 3, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "CommandName": "Export-PnPTermGroupToXml" + "Id": 314, + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" }, { - "Id": 315, + "CommandName": "Export-PnPUserInfo", "Rank": 1, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Export-PnPUserInfo" + "Id": 315, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Id": 316, + "CommandName": "Export-PnPUserInfo", "Rank": 2, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", - "CommandName": "Export-PnPUserInfo" + "Id": 316, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Id": 317, + "CommandName": "Export-PnPUserProfile", "Rank": 1, - "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Export-PnPUserProfile" + "Id": 317, + "Command": "Export-PnPUserProfile -LoginName user@domain.com" }, { - "Id": 318, + "CommandName": "Export-PnPUserProfile", "Rank": 2, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "CommandName": "Export-PnPUserProfile" + "Id": 318, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Id": 319, + "CommandName": "Find-PnPFile", "Rank": 1, - "Command": "Find-PnPFile -Match *.master", - "CommandName": "Find-PnPFile" + "Id": 319, + "Command": "Find-PnPFile -Match *.master" }, { - "Id": 320, + "CommandName": "Find-PnPFile", "Rank": 2, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "CommandName": "Find-PnPFile" + "Id": 320, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" }, { - "Id": 321, + "CommandName": "Find-PnPFile", "Rank": 3, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "CommandName": "Find-PnPFile" + "Id": 321, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" }, { - "Id": 322, + "CommandName": "Get-PnPAccessToken", "Rank": 1, - "Command": "Get-PnPAccessToken", - "CommandName": "Get-PnPAccessToken" + "Id": 322, + "Command": "Get-PnPAccessToken" }, { - "Id": 323, + "CommandName": "Get-PnPAccessToken", "Rank": 2, - "Command": "Get-PnPAccessToken -Decoded", - "CommandName": "Get-PnPAccessToken" + "Id": 323, + "Command": "Get-PnPAccessToken -Decoded" }, { - "Id": 324, + "CommandName": "Get-PnPAccessToken", "Rank": 3, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "CommandName": "Get-PnPAccessToken" + "Id": 324, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" }, { - "Id": 325, + "CommandName": "Get-PnPAccessToken", "Rank": 4, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "CommandName": "Get-PnPAccessToken" + "Id": 325, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM" }, { - "Id": 326, + "CommandName": "Get-PnPAccessToken", "Rank": 5, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "CommandName": "Get-PnPAccessToken" + "Id": 326, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" }, { - "Id": 327, + "CommandName": "Get-PnPAlert", "Rank": 1, - "Command": "Get-PnPAlert", - "CommandName": "Get-PnPAlert" + "Id": 327, + "Command": "Get-PnPAlert" }, { - "Id": 328, + "CommandName": "Get-PnPAlert", "Rank": 2, - "Command": "Get-PnPAlert -List \"Demo List\"", - "CommandName": "Get-PnPAlert" + "Id": 328, + "Command": "Get-PnPAlert -List \"Demo List\"" }, { - "Id": 329, + "CommandName": "Get-PnPAlert", "Rank": 3, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPAlert" + "Id": 329, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Id": 330, + "CommandName": "Get-PnPAlert", "Rank": 4, - "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "CommandName": "Get-PnPAlert" + "Id": 330, + "Command": "Get-PnPAlert -Title \"Demo Alert\"" }, { - "Id": 331, + "CommandName": "Get-PnPAlert", "Rank": 5, - "Command": "Get-PnPAlert -AllUsers", - "CommandName": "Get-PnPAlert" + "Id": 331, + "Command": "Get-PnPAlert -AllUsers" }, { - "Id": 332, + "CommandName": "Get-PnPAlert", "Rank": 6, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "CommandName": "Get-PnPAlert" + "Id": 332, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" }, { - "Id": 333, + "CommandName": "Get-PnPApp", "Rank": 1, - "Command": "Get-PnPApp", - "CommandName": "Get-PnPApp" + "Id": 333, + "Command": "Get-PnPApp" }, { - "Id": 334, + "CommandName": "Get-PnPApp", "Rank": 2, - "Command": "Get-PnPApp -Scope Site", - "CommandName": "Get-PnPApp" + "Id": 334, + "Command": "Get-PnPApp -Scope Site" }, { - "Id": 335, + "CommandName": "Get-PnPApp", "Rank": 3, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPApp" + "Id": 335, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 336, + "CommandName": "Get-PnPAppErrors", "Rank": 1, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "CommandName": "Get-PnPAppErrors" + "Id": 336, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" }, { - "Id": 337, + "CommandName": "Get-PnPAppErrors", "Rank": 2, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "CommandName": "Get-PnPAppErrors" + "Id": 337, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" }, { - "Id": 338, + "CommandName": "Get-PnPAppInfo", "Rank": 1, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "CommandName": "Get-PnPAppInfo" + "Id": 338, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"" }, { - "Id": 339, + "CommandName": "Get-PnPAppInfo", "Rank": 2, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPAppInfo" + "Id": 339, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 340, + "CommandName": "Get-PnPAppInfo", "Rank": 3, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "CommandName": "Get-PnPAppInfo" + "Id": 340, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" }, { - "Id": 341, + "CommandName": "Get-PnPApplicationCustomizer", "Rank": 1, - "Command": "Get-PnPApplicationCustomizer", - "CommandName": "Get-PnPApplicationCustomizer" + "Id": 341, + "Command": "Get-PnPApplicationCustomizer" }, { - "Id": 342, + "CommandName": "Get-PnPApplicationCustomizer", "Rank": 2, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPApplicationCustomizer" + "Id": 342, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 343, + "CommandName": "Get-PnPApplicationCustomizer", "Rank": 3, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "CommandName": "Get-PnPApplicationCustomizer" + "Id": 343, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" }, { - "Id": 344, + "CommandName": "Get-PnPAuditing", "Rank": 1, - "Command": "Get-PnPAuditing", - "CommandName": "Get-PnPAuditing" + "Id": 344, + "Command": "Get-PnPAuditing" }, { - "Id": 345, + "CommandName": "Get-PnPAuthenticationRealm", "Rank": 1, - "Command": "Get-PnPAuthenticationRealm", - "CommandName": "Get-PnPAuthenticationRealm" + "Id": 345, + "Command": "Get-PnPAuthenticationRealm" }, { - "Id": 346, + "CommandName": "Get-PnPAuthenticationRealm", "Rank": 2, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "CommandName": "Get-PnPAuthenticationRealm" + "Id": 346, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" }, { - "Id": 347, + "CommandName": "Get-PnPAvailableLanguage", "Rank": 1, - "Command": "Get-PnPAvailableLanguage", - "CommandName": "Get-PnPAvailableLanguage" + "Id": 347, + "Command": "Get-PnPAvailableLanguage" }, { - "Id": 348, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 1, - "Command": "Get-PnPAvailableSensitivityLabel", - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Id": 348, + "Command": "Get-PnPAvailableSensitivityLabel" }, { - "Id": 349, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 2, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Id": 349, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" }, { - "Id": 350, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 3, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Id": 350, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" }, { - "Id": 351, + "CommandName": "Get-PnPAvailableSiteClassification", "Rank": 1, - "Command": "Get-PnPAvailableSiteClassification", - "CommandName": "Get-PnPAvailableSiteClassification" + "Id": 351, + "Command": "Get-PnPAvailableSiteClassification" }, { - "Id": 352, + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 1, - "Command": "Get-PnPAzureACSPrincipal", - "CommandName": "Get-PnPAzureACSPrincipal" + "Id": 352, + "Command": "Get-PnPAzureACSPrincipal" }, { - "Id": 353, + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 2, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal" + "Id": 353, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" }, { - "Id": 354, + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 3, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "CommandName": "Get-PnPAzureACSPrincipal" + "Id": 354, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" }, { - "Id": 355, + "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 4, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal" + "Id": 355, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" }, { - "Id": 356, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Id": 356, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Id": 357, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 2, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Id": 357, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" }, { - "Id": 358, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 3, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Id": 358, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" }, { - "Id": 359, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, - "Command": "Get-PnPAzureADActivityReportSignIn", - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Id": 359, + "Command": "Get-PnPAzureADActivityReportSignIn" }, { - "Id": 360, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 2, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Id": 360, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" }, { - "Id": 361, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 3, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Id": 361, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" }, { - "Id": 362, + "CommandName": "Get-PnPAzureADApp", "Rank": 1, - "Command": "Get-PnPAzureADApp", - "CommandName": "Get-PnPAzureADApp" + "Id": 362, + "Command": "Get-PnPAzureADApp" }, { - "Id": 363, + "CommandName": "Get-PnPAzureADApp", "Rank": 2, - "Command": "Get-PnPAzureADApp -Identity MyApp", - "CommandName": "Get-PnPAzureADApp" + "Id": 363, + "Command": "Get-PnPAzureADApp -Identity MyApp" }, { - "Id": 364, + "CommandName": "Get-PnPAzureADApp", "Rank": 3, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADApp" + "Id": 364, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 365, + "CommandName": "Get-PnPAzureADApp", "Rank": 4, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADApp" + "Id": 365, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 366, + "CommandName": "Get-PnPAzureADAppPermission", "Rank": 1, - "Command": "Get-PnPAzureADAppPermission", - "CommandName": "Get-PnPAzureADAppPermission" + "Id": 366, + "Command": "Get-PnPAzureADAppPermission" }, { - "Id": 367, + "CommandName": "Get-PnPAzureADAppPermission", "Rank": 2, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "CommandName": "Get-PnPAzureADAppPermission" + "Id": 367, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp" }, { - "Id": 368, + "CommandName": "Get-PnPAzureADAppPermission", "Rank": 3, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADAppPermission" + "Id": 368, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 369, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 1, - "Command": "Get-PnPAzureADAppSitePermission", - "CommandName": "Get-PnPAzureADAppSitePermission" + "Id": 369, + "Command": "Get-PnPAzureADAppSitePermission" }, { - "Id": 370, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 2, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Get-PnPAzureADAppSitePermission" + "Id": 370, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" }, { - "Id": 371, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 3, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "CommandName": "Get-PnPAzureADAppSitePermission" + "Id": 371, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" }, { - "Id": 372, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 4, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "CommandName": "Get-PnPAzureADAppSitePermission" + "Id": 372, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" }, { - "Id": 373, + "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 5, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "CommandName": "Get-PnPAzureADAppSitePermission" + "Id": 373, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" }, { - "Id": 374, + "CommandName": "Get-PnPAzureADGroup", "Rank": 1, - "Command": "Get-PnPAzureADGroup", - "CommandName": "Get-PnPAzureADGroup" + "Id": 374, + "Command": "Get-PnPAzureADGroup" }, { - "Id": 375, + "CommandName": "Get-PnPAzureADGroup", "Rank": 2, - "Command": "Get-PnPAzureADGroup -Identity $groupId", - "CommandName": "Get-PnPAzureADGroup" + "Id": 375, + "Command": "Get-PnPAzureADGroup -Identity $groupId" }, { - "Id": 376, + "CommandName": "Get-PnPAzureADGroup", "Rank": 3, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "CommandName": "Get-PnPAzureADGroup" + "Id": 376, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" }, { - "Id": 377, + "CommandName": "Get-PnPAzureADGroup", "Rank": 4, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPAzureADGroup" + "Id": 377, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" }, { - "Id": 378, + "CommandName": "Get-PnPAzureADGroup", "Rank": 5, - "Command": "Get-PnPAzureADGroup -Identity $group", - "CommandName": "Get-PnPAzureADGroup" + "Id": 378, + "Command": "Get-PnPAzureADGroup -Identity $group" }, { - "Id": 379, + "CommandName": "Get-PnPAzureADGroupMember", "Rank": 1, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupMember" + "Id": 379, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId" }, { - "Id": 380, + "CommandName": "Get-PnPAzureADGroupMember", "Rank": 2, - "Command": "Get-PnPAzureADGroupMember -Identity $group", - "CommandName": "Get-PnPAzureADGroupMember" + "Id": 380, + "Command": "Get-PnPAzureADGroupMember -Identity $group" }, { - "Id": 381, + "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 1, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupOwner" + "Id": 381, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" }, { - "Id": 382, + "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 2, - "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "CommandName": "Get-PnPAzureADGroupOwner" + "Id": 382, + "Command": "Get-PnPAzureADGroupOwner -Identity $group" }, { - "Id": 383, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipal", - "CommandName": "Get-PnPAzureADServicePrincipal" + "Id": 383, + "Command": "Get-PnPAzureADServicePrincipal" }, { - "Id": 384, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "CommandName": "Get-PnPAzureADServicePrincipal" + "Id": 384, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" }, { - "Id": 385, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 3, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "CommandName": "Get-PnPAzureADServicePrincipal" + "Id": 385, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" }, { - "Id": 386, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 4, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipal" + "Id": 386, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" }, { - "Id": 387, + "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 5, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADServicePrincipal" + "Id": 387, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 388, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "Id": 388, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 389, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "Id": 389, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Id": 390, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "Id": 390, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 391, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "Id": 391, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" }, { - "Id": 392, + "CommandName": "Get-PnPAzureADUser", "Rank": 1, - "Command": "Get-PnPAzureADUser", - "CommandName": "Get-PnPAzureADUser" + "Id": 392, + "Command": "Get-PnPAzureADUser" }, { - "Id": 393, + "CommandName": "Get-PnPAzureADUser", "Rank": 2, - "Command": "Get-PnPAzureADUser -EndIndex 50", - "CommandName": "Get-PnPAzureADUser" + "Id": 393, + "Command": "Get-PnPAzureADUser -EndIndex 50" }, { - "Id": 394, + "CommandName": "Get-PnPAzureADUser", "Rank": 3, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPAzureADUser" + "Id": 394, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Id": 395, + "CommandName": "Get-PnPAzureADUser", "Rank": 4, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "CommandName": "Get-PnPAzureADUser" + "Id": 395, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com" }, { - "Id": 396, + "CommandName": "Get-PnPAzureADUser", "Rank": 5, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "CommandName": "Get-PnPAzureADUser" + "Id": 396, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" }, { - "Id": 397, + "CommandName": "Get-PnPAzureADUser", "Rank": 6, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "CommandName": "Get-PnPAzureADUser" + "Id": 397, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" }, { - "Id": 398, + "CommandName": "Get-PnPAzureADUser", "Rank": 7, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "CommandName": "Get-PnPAzureADUser" + "Id": 398, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" }, { - "Id": 399, + "CommandName": "Get-PnPAzureADUser", "Rank": 8, - "Command": "Get-PnPAzureADUser -Delta", - "CommandName": "Get-PnPAzureADUser" + "Id": 399, + "Command": "Get-PnPAzureADUser -Delta" }, { - "Id": 400, + "CommandName": "Get-PnPAzureADUser", "Rank": 9, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "CommandName": "Get-PnPAzureADUser" + "Id": 400, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" }, { - "Id": 401, + "CommandName": "Get-PnPAzureADUser", "Rank": 10, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "CommandName": "Get-PnPAzureADUser" + "Id": 401, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" }, { - "Id": 402, + "CommandName": "Get-PnPAzureCertificate", "Rank": 1, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "CommandName": "Get-PnPAzureCertificate" + "Id": 402, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" }, { - "Id": 403, + "CommandName": "Get-PnPAzureCertificate", "Rank": 2, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "CommandName": "Get-PnPAzureCertificate" + "Id": 403, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "Id": 404, + "CommandName": "Get-PnPAzureCertificate", "Rank": 3, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "CommandName": "Get-PnPAzureCertificate" + "Id": 404, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" }, { - "Id": 405, + "CommandName": "Get-PnPBrowserIdleSignout", "Rank": 1, - "Command": "Get-PnPBrowserIdleSignout", - "CommandName": "Get-PnPBrowserIdleSignout" + "Id": 405, + "Command": "Get-PnPBrowserIdleSignout" }, { - "Id": 406, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 1, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "Id": 406, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" }, { - "Id": 407, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "Command": "Get-PnPBuiltInDesignPackageVisibility", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "Id": 407, + "Command": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Id": 408, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "Command": "Get-PnPBuiltInSiteTemplateSettings", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Id": 408, + "Command": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 409, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 2, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Id": 409, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" }, { - "Id": 410, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 3, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Id": 410, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" }, { - "Id": 411, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 4, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Id": 411, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 412, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 5, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Id": 412, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" }, { - "Id": 413, + "CommandName": "Get-PnPChangeLog", "Rank": 1, - "Command": "Get-PnPChangeLog", - "CommandName": "Get-PnPChangeLog" + "Id": 413, + "Command": "Get-PnPChangeLog" }, { - "Id": 414, + "CommandName": "Get-PnPChangeLog", "Rank": 2, - "Command": "Get-PnPChangeLog -Nightly", - "CommandName": "Get-PnPChangeLog" + "Id": 414, + "Command": "Get-PnPChangeLog -Nightly" }, { - "Id": 415, + "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 1, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "CommandName": "Get-PnPCompatibleHubContentTypes" + "Id": 415, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" }, { - "Id": 416, + "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": 416, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" }, { - "Id": 417, + "CommandName": "Get-PnPContentType", "Rank": 1, - "Command": "Get-PnPContentType", - "CommandName": "Get-PnPContentType" + "Id": 417, + "Command": "Get-PnPContentType" }, { - "Id": 418, + "CommandName": "Get-PnPContentType", "Rank": 2, - "Command": "Get-PnPContentType -InSiteHierarchy", - "CommandName": "Get-PnPContentType" + "Id": 418, + "Command": "Get-PnPContentType -InSiteHierarchy" }, { - "Id": 419, + "CommandName": "Get-PnPContentType", "Rank": 3, - "Command": "Get-PnPContentType -Identity \"Project Document\"", - "CommandName": "Get-PnPContentType" + "Id": 419, + "Command": "Get-PnPContentType -Identity \"Project Document\"" }, { - "Id": 420, + "CommandName": "Get-PnPContentType", "Rank": 4, - "Command": "Get-PnPContentType -List \"Documents\"", - "CommandName": "Get-PnPContentType" + "Id": 420, + "Command": "Get-PnPContentType -List \"Documents\"" }, { - "Id": 421, + "CommandName": "Get-PnPContentTypePublishingStatus", "Rank": 1, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "CommandName": "Get-PnPContentTypePublishingStatus" + "Id": 421, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" }, { - "Id": 422, + "CommandName": "Get-PnPCustomAction", "Rank": 1, - "Command": "Get-PnPCustomAction", - "CommandName": "Get-PnPCustomAction" + "Id": 422, + "Command": "Get-PnPCustomAction" }, { - "Id": 423, + "CommandName": "Get-PnPCustomAction", "Rank": 2, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPCustomAction" + "Id": 423, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 424, + "CommandName": "Get-PnPCustomAction", "Rank": 3, - "Command": "Get-PnPCustomAction -Scope web", - "CommandName": "Get-PnPCustomAction" + "Id": 424, + "Command": "Get-PnPCustomAction -Scope web" }, { - "Id": 425, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, - "Command": "Get-PnPDeletedMicrosoft365Group", - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "Id": 425, + "Command": "Get-PnPDeletedMicrosoft365Group" }, { - "Id": 426, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 2, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "Id": 426, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 427, + "CommandName": "Get-PnPDeletedTeam", "Rank": 1, - "Command": "Get-PnPDeletedTeam", - "CommandName": "Get-PnPDeletedTeam" + "Id": 427, + "Command": "Get-PnPDeletedTeam" }, { - "Id": 428, + "CommandName": "Get-PnPDiagnostics", "Rank": 1, - "Command": "Get-PnPDiagnostics", - "CommandName": "Get-PnPDiagnostics" + "Id": 428, + "Command": "Get-PnPDiagnostics" }, { - "Id": 429, + "CommandName": "Get-PnPDisableSpacesActivation", "Rank": 1, - "Command": "Get-PnPDisableSpacesActivation", - "CommandName": "Get-PnPDisableSpacesActivation" + "Id": 429, + "Command": "Get-PnPDisableSpacesActivation" }, { - "Id": 430, + "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 1, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "CommandName": "Get-PnPDocumentSetTemplate" + "Id": 430, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" }, { - "Id": 431, + "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 2, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "CommandName": "Get-PnPDocumentSetTemplate" + "Id": 431, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" }, { - "Id": 432, + "CommandName": "Get-PnPEventReceiver", "Rank": 1, - "Command": "Get-PnPEventReceiver", - "CommandName": "Get-PnPEventReceiver" + "Id": 432, + "Command": "Get-PnPEventReceiver" }, { - "Id": 433, + "CommandName": "Get-PnPEventReceiver", "Rank": 2, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver" + "Id": 433, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 434, + "CommandName": "Get-PnPEventReceiver", "Rank": 3, - "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver" + "Id": 434, + "Command": "Get-PnPEventReceiver -Identity MyReceiver" }, { - "Id": 435, + "CommandName": "Get-PnPEventReceiver", "Rank": 4, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "CommandName": "Get-PnPEventReceiver" + "Id": 435, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"" }, { - "Id": 436, + "CommandName": "Get-PnPEventReceiver", "Rank": 5, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver" + "Id": 436, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 437, + "CommandName": "Get-PnPEventReceiver", "Rank": 6, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver" + "Id": 437, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" }, { - "Id": 438, + "CommandName": "Get-PnPEventReceiver", "Rank": 7, - "Command": "Get-PnPEventReceiver -Scope Site", - "CommandName": "Get-PnPEventReceiver" + "Id": 438, + "Command": "Get-PnPEventReceiver -Scope Site" }, { - "Id": 439, + "CommandName": "Get-PnPEventReceiver", "Rank": 8, - "Command": "Get-PnPEventReceiver -Scope Web", - "CommandName": "Get-PnPEventReceiver" + "Id": 439, + "Command": "Get-PnPEventReceiver -Scope Web" }, { - "Id": 440, + "CommandName": "Get-PnPEventReceiver", "Rank": 9, - "Command": "Get-PnPEventReceiver -Scope All", - "CommandName": "Get-PnPEventReceiver" + "Id": 440, + "Command": "Get-PnPEventReceiver -Scope All" }, { - "Id": 441, + "CommandName": "Get-PnPException", "Rank": 1, - "Command": "Get-PnPException", - "CommandName": "Get-PnPException" + "Id": 441, + "Command": "Get-PnPException" }, { - "Id": 442, + "CommandName": "Get-PnPException", "Rank": 2, - "Command": "Get-PnPException -All", - "CommandName": "Get-PnPException" + "Id": 442, + "Command": "Get-PnPException -All" }, { - "Id": 443, + "CommandName": "Get-PnPExternalUser", "Rank": 1, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "CommandName": "Get-PnPExternalUser" + "Id": 443, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" }, { - "Id": 444, + "CommandName": "Get-PnPExternalUser", "Rank": 2, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "CommandName": "Get-PnPExternalUser" + "Id": 444, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" }, { - "Id": 445, + "CommandName": "Get-PnPFeature", "Rank": 1, - "Command": "Get-PnPFeature", - "CommandName": "Get-PnPFeature" + "Id": 445, + "Command": "Get-PnPFeature" }, { - "Id": 446, + "CommandName": "Get-PnPFeature", "Rank": 2, - "Command": "Get-PnPFeature -Scope Site", - "CommandName": "Get-PnPFeature" + "Id": 446, + "Command": "Get-PnPFeature -Scope Site" }, { - "Id": 447, + "CommandName": "Get-PnPFeature", "Rank": 3, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPFeature" + "Id": 447, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 448, + "CommandName": "Get-PnPFeature", "Rank": 4, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "CommandName": "Get-PnPFeature" + "Id": 448, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" }, { - "Id": 449, + "CommandName": "Get-PnPField", "Rank": 1, - "Command": "Get-PnPField", - "CommandName": "Get-PnPField" + "Id": 449, + "Command": "Get-PnPField" }, { - "Id": 450, + "CommandName": "Get-PnPField", "Rank": 2, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Get-PnPField" + "Id": 450, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Id": 451, + "CommandName": "Get-PnPField", "Rank": 3, - "Command": "Get-PnPField -Group \"Custom Columns\"", - "CommandName": "Get-PnPField" + "Id": 451, + "Command": "Get-PnPField -Group \"Custom Columns\"" }, { - "Id": 452, + "CommandName": "Get-PnPFile", "Rank": 1, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "CommandName": "Get-PnPFile" + "Id": 452, + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" }, { - "Id": 453, + "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": 453, + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" }, { - "Id": 454, + "CommandName": "Get-PnPFile", "Rank": 3, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "CommandName": "Get-PnPFile" + "Id": 454, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" }, { - "Id": 455, + "CommandName": "Get-PnPFile", "Rank": 4, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "CommandName": "Get-PnPFile" + "Id": 455, + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" }, { - "Id": 456, + "CommandName": "Get-PnPFile", "Rank": 5, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "CommandName": "Get-PnPFile" + "Id": 456, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" }, { - "Id": 457, + "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": 457, + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" }, { - "Id": 458, + "CommandName": "Get-PnPFile", "Rank": 7, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "CommandName": "Get-PnPFile" + "Id": 458, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" }, { - "Id": 459, + "CommandName": "Get-PnPFileSharingLink", "Rank": 1, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Get-PnPFileSharingLink" + "Id": 459, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 460, + "CommandName": "Get-PnPFileVersion", "Rank": 1, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "CommandName": "Get-PnPFileVersion" + "Id": 460, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" }, { - "Id": 461, + "CommandName": "Get-PnPFileVersion", "Rank": 2, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "CommandName": "Get-PnPFileVersion" + "Id": 461, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" }, { - "Id": 462, + "CommandName": "Get-PnPFlow", "Rank": 1, - "Command": "Get-PnPFlow -AsAdmin", - "CommandName": "Get-PnPFlow" + "Id": 462, + "Command": "Get-PnPFlow -AsAdmin" }, { - "Id": 463, + "CommandName": "Get-PnPFlow", "Rank": 2, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "CommandName": "Get-PnPFlow" + "Id": 463, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe" }, { - "Id": 464, + "CommandName": "Get-PnPFlow", "Rank": 3, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "CommandName": "Get-PnPFlow" + "Id": 464, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { - "Id": 465, + "CommandName": "Get-PnPFlowOwner", "Rank": 1, - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "CommandName": "Get-PnPFlowOwner" + "Id": 465, + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" }, { - "Id": 466, + "CommandName": "Get-PnPFolder", "Rank": 1, - "Command": "Get-PnPFolder", - "CommandName": "Get-PnPFolder" + "Id": 466, + "Command": "Get-PnPFolder" }, { - "Id": 467, + "CommandName": "Get-PnPFolder", "Rank": 2, - "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "CommandName": "Get-PnPFolder" + "Id": 467, + "Command": "Get-PnPFolder -Url \"Shared Documents\"" }, { - "Id": 468, + "CommandName": "Get-PnPFolder", "Rank": 3, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "CommandName": "Get-PnPFolder" + "Id": 468, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" }, { - "Id": 469, + "CommandName": "Get-PnPFolder", "Rank": 4, - "Command": "Get-PnPFolder -List \"Shared Documents\"", - "CommandName": "Get-PnPFolder" + "Id": 469, + "Command": "Get-PnPFolder -List \"Shared Documents\"" }, { - "Id": 470, + "CommandName": "Get-PnPFolderFile", "Rank": 1, - "Command": "Get-PnPFolderFile", - "CommandName": "Get-PnPFolderFile" + "Id": 470, + "Command": "Get-PnPFolderFile" }, { - "Id": 471, + "CommandName": "Get-PnPFolderFile", "Rank": 2, - "Command": "Get-PnPFolderFile -Recurse", - "CommandName": "Get-PnPFolderFile" + "Id": 471, + "Command": "Get-PnPFolderFile -Recurse" }, { - "Id": 472, + "CommandName": "Get-PnPFolderFile", "Rank": 3, - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderFile" + "Id": 472, + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"" }, { - "Id": 473, + "CommandName": "Get-PnPFolderFile", "Rank": 4, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderFile" + "Id": 473, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Id": 474, + "CommandName": "Get-PnPFolderFile", "Rank": 5, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderFile" + "Id": 474, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Id": 475, + "CommandName": "Get-PnPFolderFolder", "Rank": 1, - "Command": "Get-PnPFolderFolder", - "CommandName": "Get-PnPFolderFolder" + "Id": 475, + "Command": "Get-PnPFolderFolder" }, { - "Id": 476, + "CommandName": "Get-PnPFolderFolder", "Rank": 2, - "Command": "Get-PnPFolderFolder -Recurse", - "CommandName": "Get-PnPFolderFolder" + "Id": 476, + "Command": "Get-PnPFolderFolder -Recurse" }, { - "Id": 477, + "CommandName": "Get-PnPFolderFolder", "Rank": 3, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderFolder" + "Id": 477, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"" }, { - "Id": 478, + "CommandName": "Get-PnPFolderFolder", "Rank": 4, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "CommandName": "Get-PnPFolderFolder" + "Id": 478, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" }, { - "Id": 479, + "CommandName": "Get-PnPFolderFolder", "Rank": 5, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "CommandName": "Get-PnPFolderFolder" + "Id": 479, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" }, { - "Id": 480, + "CommandName": "Get-PnPFolderFolder", "Rank": 6, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderFolder" + "Id": 480, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Id": 481, + "CommandName": "Get-PnPFolderItem", "Rank": 1, - "Command": "Get-PnPFolderItem", - "CommandName": "Get-PnPFolderItem" + "Id": 481, + "Command": "Get-PnPFolderItem" }, { - "Id": 482, + "CommandName": "Get-PnPFolderItem", "Rank": 2, - "Command": "Get-PnPFolderItem -Recurse", - "CommandName": "Get-PnPFolderItem" + "Id": 482, + "Command": "Get-PnPFolderItem -Recurse" }, { - "Id": 483, + "CommandName": "Get-PnPFolderItem", "Rank": 3, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderItem" + "Id": 483, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" }, { - "Id": 484, + "CommandName": "Get-PnPFolderItem", "Rank": 4, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderItem" + "Id": 484, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Id": 485, + "CommandName": "Get-PnPFolderItem", "Rank": 5, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "CommandName": "Get-PnPFolderItem" + "Id": 485, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" }, { - "Id": 486, + "CommandName": "Get-PnPFolderItem", "Rank": 6, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderItem" + "Id": 486, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Id": 487, + "CommandName": "Get-PnPFolderSharingLink", "Rank": 1, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Get-PnPFolderSharingLink" + "Id": 487, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 488, + "CommandName": "Get-PnPFolderStorageMetric", "Rank": 1, - "Command": "Get-PnPFolderStorageMetric", - "CommandName": "Get-PnPFolderStorageMetric" + "Id": 488, + "Command": "Get-PnPFolderStorageMetric" }, { - "Id": 489, + "CommandName": "Get-PnPFolderStorageMetric", "Rank": 2, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "CommandName": "Get-PnPFolderStorageMetric" + "Id": 489, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" }, { - "Id": 490, + "CommandName": "Get-PnPFolderStorageMetric", "Rank": 3, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "CommandName": "Get-PnPFolderStorageMetric" + "Id": 490, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" }, { - "Id": 491, + "CommandName": "Get-PnPFooter", "Rank": 1, - "Command": "Get-PnPFooter", - "CommandName": "Get-PnPFooter" + "Id": 491, + "Command": "Get-PnPFooter" }, { - "Id": 492, + "CommandName": "Get-PnPGraphAccessToken", "Rank": 1, - "Command": "Get-PnPGraphAccessToken", - "CommandName": "Get-PnPGraphAccessToken" + "Id": 492, + "Command": "Get-PnPGraphAccessToken" }, { - "Id": 493, + "CommandName": "Get-PnPGraphAccessToken", "Rank": 2, - "Command": "Get-PnPGraphAccessToken -Decoded", - "CommandName": "Get-PnPGraphAccessToken" + "Id": 493, + "Command": "Get-PnPGraphAccessToken -Decoded" }, { - "Id": 494, + "CommandName": "Get-PnPGraphSubscription", "Rank": 1, - "Command": "Get-PnPGraphSubscription", - "CommandName": "Get-PnPGraphSubscription" + "Id": 494, + "Command": "Get-PnPGraphSubscription" }, { - "Id": 495, + "CommandName": "Get-PnPGraphSubscription", "Rank": 2, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPGraphSubscription" + "Id": 495, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Id": 496, + "CommandName": "Get-PnPGroup", "Rank": 1, - "Command": "Get-PnPGroup", - "CommandName": "Get-PnPGroup" + "Id": 496, + "Command": "Get-PnPGroup" }, { - "Id": 497, + "CommandName": "Get-PnPGroup", "Rank": 2, - "Command": "Get-PnPGroup -Identity 'My Site Users'", - "CommandName": "Get-PnPGroup" + "Id": 497, + "Command": "Get-PnPGroup -Identity 'My Site Users'" }, { - "Id": 498, + "CommandName": "Get-PnPGroup", "Rank": 3, - "Command": "Get-PnPGroup -AssociatedMemberGroup", - "CommandName": "Get-PnPGroup" + "Id": 498, + "Command": "Get-PnPGroup -AssociatedMemberGroup" }, { - "Id": 499, + "CommandName": "Get-PnPGroupMember", "Rank": 1, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "CommandName": "Get-PnPGroupMember" + "Id": 499, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" }, { - "Id": 500, + "CommandName": "Get-PnPGroupMember", "Rank": 2, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "CommandName": "Get-PnPGroupMember" + "Id": 500, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" }, { - "Id": 501, + "CommandName": "Get-PnPGroupPermissions", "Rank": 1, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "CommandName": "Get-PnPGroupPermissions" + "Id": 501, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" }, { - "Id": 502, + "CommandName": "Get-PnPHideDefaultThemes", "Rank": 1, - "Command": "Get-PnPHideDefaultThemes", - "CommandName": "Get-PnPHideDefaultThemes" + "Id": 502, + "Command": "Get-PnPHideDefaultThemes" }, { - "Id": 503, + "CommandName": "Get-PnPHomePage", "Rank": 1, - "Command": "Get-PnPHomePage", - "CommandName": "Get-PnPHomePage" + "Id": 503, + "Command": "Get-PnPHomePage" }, { - "Id": 504, + "CommandName": "Get-PnPHomeSite", "Rank": 1, - "Command": "Get-PnPHomeSite", - "CommandName": "Get-PnPHomeSite" + "Id": 504, + "Command": "Get-PnPHomeSite" }, { - "Id": 505, + "CommandName": "Get-PnPHomeSite", "Rank": 2, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "CommandName": "Get-PnPHomeSite" + "Id": 505, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" }, { - "Id": 506, + "CommandName": "Get-PnPHomeSite", "Rank": 3, - "Command": "Get-PnPHomeSite -Detailed", - "CommandName": "Get-PnPHomeSite" + "Id": 506, + "Command": "Get-PnPHomeSite -Detailed" }, { - "Id": 507, + "CommandName": "Get-PnPHubSite", "Rank": 1, - "Command": "Get-PnPHubSite", - "CommandName": "Get-PnPHubSite" + "Id": 507, + "Command": "Get-PnPHubSite" }, { - "Id": 508, + "CommandName": "Get-PnPHubSite", "Rank": 2, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSite" + "Id": 508, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Id": 509, + "CommandName": "Get-PnPHubSite", "Rank": 3, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "CommandName": "Get-PnPHubSite" + "Id": 509, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" }, { - "Id": 510, + "CommandName": "Get-PnPHubSiteChild", "Rank": 1, - "Command": "Get-PnPHubSiteChild", - "CommandName": "Get-PnPHubSiteChild" + "Id": 510, + "Command": "Get-PnPHubSiteChild" }, { - "Id": 511, + "CommandName": "Get-PnPHubSiteChild", "Rank": 2, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSiteChild" + "Id": 511, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Id": 512, + "CommandName": "Get-PnPInPlaceRecordsManagement", "Rank": 1, - "Command": "Get-PnPInPlaceRecordsManagement", - "CommandName": "Get-PnPInPlaceRecordsManagement" + "Id": 512, + "Command": "Get-PnPInPlaceRecordsManagement" }, { - "Id": 513, + "CommandName": "Get-PnPIsSiteAliasAvailable", "Rank": 1, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "CommandName": "Get-PnPIsSiteAliasAvailable" + "Id": 513, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" }, { - "Id": 514, + "CommandName": "Get-PnPJavaScriptLink", "Rank": 1, - "Command": "Get-PnPJavaScriptLink", - "CommandName": "Get-PnPJavaScriptLink" + "Id": 514, + "Command": "Get-PnPJavaScriptLink" }, { - "Id": 515, + "CommandName": "Get-PnPJavaScriptLink", "Rank": 2, - "Command": "Get-PnPJavaScriptLink -Scope All", - "CommandName": "Get-PnPJavaScriptLink" + "Id": 515, + "Command": "Get-PnPJavaScriptLink -Scope All" }, { - "Id": 516, + "CommandName": "Get-PnPJavaScriptLink", "Rank": 3, - "Command": "Get-PnPJavaScriptLink -Scope Web", - "CommandName": "Get-PnPJavaScriptLink" + "Id": 516, + "Command": "Get-PnPJavaScriptLink -Scope Web" }, { - "Id": 517, + "CommandName": "Get-PnPJavaScriptLink", "Rank": 4, - "Command": "Get-PnPJavaScriptLink -Scope Site", - "CommandName": "Get-PnPJavaScriptLink" + "Id": 517, + "Command": "Get-PnPJavaScriptLink -Scope Site" }, { - "Id": 518, + "CommandName": "Get-PnPJavaScriptLink", "Rank": 5, - "Command": "Get-PnPJavaScriptLink -Name Test", - "CommandName": "Get-PnPJavaScriptLink" + "Id": 518, + "Command": "Get-PnPJavaScriptLink -Name Test" }, { - "Id": 519, + "CommandName": "Get-PnPKnowledgeHubSite", "Rank": 1, - "Command": "Get-PnPKnowledgeHubSite", - "CommandName": "Get-PnPKnowledgeHubSite" + "Id": 519, + "Command": "Get-PnPKnowledgeHubSite" }, { - "Id": 520, + "CommandName": "Get-PnPLabel", "Rank": 1, - "Command": "Get-PnPLabel", - "CommandName": "Get-PnPLabel" + "Id": 520, + "Command": "Get-PnPLabel" }, { - "Id": 521, + "CommandName": "Get-PnPLabel", "Rank": 2, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "CommandName": "Get-PnPLabel" + "Id": 521, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" }, { - "Id": 522, + "CommandName": "Get-PnPLargeListOperationStatus", "Rank": 1, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "CommandName": "Get-PnPLargeListOperationStatus" + "Id": 522, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" }, { - "Id": 523, + "CommandName": "Get-PnPList", "Rank": 1, - "Command": "Get-PnPList", - "CommandName": "Get-PnPList" + "Id": 523, + "Command": "Get-PnPList" }, { - "Id": 524, + "CommandName": "Get-PnPList", "Rank": 2, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Get-PnPList" + "Id": 524, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 525, + "CommandName": "Get-PnPList", "Rank": 3, - "Command": "Get-PnPList -Identity Lists/Announcements", - "CommandName": "Get-PnPList" + "Id": 525, + "Command": "Get-PnPList -Identity Lists/Announcements" }, { - "Id": 526, + "CommandName": "Get-PnPList", "Rank": 4, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "CommandName": "Get-PnPList" + "Id": 526, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" }, { - "Id": 527, + "CommandName": "Get-PnPList", "Rank": 5, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "CommandName": "Get-PnPList" + "Id": 527, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" }, { - "Id": 528, + "CommandName": "Get-PnPListDesign", "Rank": 1, - "Command": "Get-PnPListDesign", - "CommandName": "Get-PnPListDesign" + "Id": 528, + "Command": "Get-PnPListDesign" }, { - "Id": 529, + "CommandName": "Get-PnPListDesign", "Rank": 2, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPListDesign" + "Id": 529, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 530, + "CommandName": "Get-PnPListDesign", "Rank": 3, - "Command": "Get-PnPListDesign -Identity ListEvent", - "CommandName": "Get-PnPListDesign" + "Id": 530, + "Command": "Get-PnPListDesign -Identity ListEvent" }, { - "Id": 531, + "CommandName": "Get-PnPListInformationRightsManagement", "Rank": 1, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "CommandName": "Get-PnPListInformationRightsManagement" + "Id": 531, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" }, { - "Id": 532, + "CommandName": "Get-PnPListItem", "Rank": 1, - "Command": "Get-PnPListItem -List Tasks", - "CommandName": "Get-PnPListItem" + "Id": 532, + "Command": "Get-PnPListItem -List Tasks" }, { - "Id": 533, + "CommandName": "Get-PnPListItem", "Rank": 2, - "Command": "Get-PnPListItem -List Tasks -Id 1", - "CommandName": "Get-PnPListItem" + "Id": 533, + "Command": "Get-PnPListItem -List Tasks -Id 1" }, { - "Id": 534, + "CommandName": "Get-PnPListItem", "Rank": 3, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "CommandName": "Get-PnPListItem" + "Id": 534, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" }, { - "Id": 535, + "CommandName": "Get-PnPListItem", "Rank": 4, - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "CommandName": "Get-PnPListItem" + "Id": 535, + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" }, { - "Id": 536, + "CommandName": "Get-PnPListItem", "Rank": 5, - "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "CommandName": "Get-PnPListItem" + "Id": 536, + "Command": "Get-PnPListItem -List Tasks -Query \"\"" }, { - "Id": 537, + "CommandName": "Get-PnPListItem", "Rank": 6, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "CommandName": "Get-PnPListItem" + "Id": 537, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000" }, { - "Id": 538, + "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": 538, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" }, { - "Id": 539, + "CommandName": "Get-PnPListItem", "Rank": 8, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "CommandName": "Get-PnPListItem" + "Id": 539, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" }, { - "Id": 540, + "CommandName": "Get-PnPListItem", "Rank": 9, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "CommandName": "Get-PnPListItem" + "Id": 540, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" }, { - "Id": 541, + "CommandName": "Get-PnPListItemAttachment", "Rank": 1, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "CommandName": "Get-PnPListItemAttachment" + "Id": 541, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" }, { - "Id": 542, + "CommandName": "Get-PnPListItemAttachment", "Rank": 2, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "CommandName": "Get-PnPListItemAttachment" + "Id": 542, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" }, { - "Id": 543, + "CommandName": "Get-PnPListItemComment", "Rank": 1, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "CommandName": "Get-PnPListItemComment" + "Id": 543, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1" }, { - "Id": 544, + "CommandName": "Get-PnPListItemPermission", "Rank": 1, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "CommandName": "Get-PnPListItemPermission" + "Id": 544, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" }, { - "Id": 545, + "CommandName": "Get-PnPListItemVersion", "Rank": 1, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "CommandName": "Get-PnPListItemVersion" + "Id": 545, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" }, { - "Id": 546, + "CommandName": "Get-PnPListPermissions", "Rank": 1, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "CommandName": "Get-PnPListPermissions" + "Id": 546, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" }, { - "Id": 547, + "CommandName": "Get-PnPListPermissions", "Rank": 2, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "CommandName": "Get-PnPListPermissions" + "Id": 547, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { - "Id": 548, + "CommandName": "Get-PnPListRecordDeclaration", "Rank": 1, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "CommandName": "Get-PnPListRecordDeclaration" + "Id": 548, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" }, { - "Id": 549, + "CommandName": "Get-PnPMasterPage", "Rank": 1, - "Command": "Get-PnPMasterPage", - "CommandName": "Get-PnPMasterPage" + "Id": 549, + "Command": "Get-PnPMasterPage" }, { - "Id": 550, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 1, - "Command": "Get-PnPMessageCenterAnnouncement", - "CommandName": "Get-PnPMessageCenterAnnouncement" + "Id": 550, + "Command": "Get-PnPMessageCenterAnnouncement" }, { - "Id": 551, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 2, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "CommandName": "Get-PnPMessageCenterAnnouncement" + "Id": 551, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" }, { - "Id": 552, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, - "Command": "Get-PnPMicrosoft365ExpiringGroup", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "Id": 552, + "Command": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Id": 553, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 2, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "Id": 553, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" }, { - "Id": 554, + "CommandName": "Get-PnPMicrosoft365Group", "Rank": 1, - "Command": "Get-PnPMicrosoft365Group", - "CommandName": "Get-PnPMicrosoft365Group" + "Id": 554, + "Command": "Get-PnPMicrosoft365Group" }, { - "Id": 555, + "CommandName": "Get-PnPMicrosoft365Group", "Rank": 2, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365Group" + "Id": 555, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId" }, { - "Id": 556, + "CommandName": "Get-PnPMicrosoft365Group", "Rank": 3, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "CommandName": "Get-PnPMicrosoft365Group" + "Id": 556, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" }, { - "Id": 557, + "CommandName": "Get-PnPMicrosoft365Group", "Rank": 4, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPMicrosoft365Group" + "Id": 557, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" }, { - "Id": 558, + "CommandName": "Get-PnPMicrosoft365Group", "Rank": 5, - "Command": "Get-PnPMicrosoft365Group -Identity $group", - "CommandName": "Get-PnPMicrosoft365Group" + "Id": 558, + "Command": "Get-PnPMicrosoft365Group -Identity $group" }, { - "Id": 559, + "CommandName": "Get-PnPMicrosoft365Group", "Rank": 6, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "CommandName": "Get-PnPMicrosoft365Group" + "Id": 559, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" }, { - "Id": 560, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupEndpoint", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "Id": 560, + "Command": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Id": 561, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "Id": 561, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" }, { - "Id": 562, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "Id": 562, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 563, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupMember" + "Id": 563, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" }, { - "Id": 564, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupMember" + "Id": 564, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" }, { - "Id": 565, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "CommandName": "Get-PnPMicrosoft365GroupMember" + "Id": 565, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" }, { - "Id": 566, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "Id": 566, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" }, { - "Id": 567, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "Id": 567, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" }, { - "Id": 568, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupSettings", - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "Id": 568, + "Command": "Get-PnPMicrosoft365GroupSettings" }, { - "Id": 569, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "Id": 569, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" }, { - "Id": 570, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "Id": 570, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Id": 571, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "Id": 571, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" }, { - "Id": 572, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupTeam", - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "Id": 572, + "Command": "Get-PnPMicrosoft365GroupTeam" }, { - "Id": 573, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "Id": 573, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" }, { - "Id": 574, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "Id": 574, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 575, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "Id": 575, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Id": 576, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "Id": 576, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" }, { - "Id": 577, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "Id": 577, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 578, + "CommandName": "Get-PnPNavigationNode", "Rank": 1, - "Command": "Get-PnPNavigationNode", - "CommandName": "Get-PnPNavigationNode" + "Id": 578, + "Command": "Get-PnPNavigationNode" }, { - "Id": 579, + "CommandName": "Get-PnPNavigationNode", "Rank": 2, - "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "CommandName": "Get-PnPNavigationNode" + "Id": 579, + "Command": "Get-PnPNavigationNode -Location QuickLaunch" }, { - "Id": 580, + "CommandName": "Get-PnPNavigationNode", "Rank": 3, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "CommandName": "Get-PnPNavigationNode" + "Id": 580, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar" }, { - "Id": 581, + "CommandName": "Get-PnPOrgAssetsLibrary", "Rank": 1, - "Command": "Get-PnPOrgAssetsLibrary", - "CommandName": "Get-PnPOrgAssetsLibrary" + "Id": 581, + "Command": "Get-PnPOrgAssetsLibrary" }, { - "Id": 582, + "CommandName": "Get-PnPOrgNewsSite", "Rank": 1, - "Command": "Get-PnPOrgNewsSite", - "CommandName": "Get-PnPOrgNewsSite" + "Id": 582, + "Command": "Get-PnPOrgNewsSite" }, { - "Id": 583, + "CommandName": "Get-PnPPage", "Rank": 1, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "CommandName": "Get-PnPPage" + "Id": 583, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" }, { - "Id": 584, + "CommandName": "Get-PnPPage", "Rank": 2, - "Command": "Get-PnPPage \"MyPage\"", - "CommandName": "Get-PnPPage" + "Id": 584, + "Command": "Get-PnPPage \"MyPage\"" }, { - "Id": 585, + "CommandName": "Get-PnPPage", "Rank": 3, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "CommandName": "Get-PnPPage" + "Id": 585, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" }, { - "Id": 586, + "CommandName": "Get-PnPPage", "Rank": 4, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "CommandName": "Get-PnPPage" + "Id": 586, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" }, { - "Id": 587, + "CommandName": "Get-PnPPageComponent", "Rank": 1, - "Command": "Get-PnPPageComponent -Page Home", - "CommandName": "Get-PnPPageComponent" + "Id": 587, + "Command": "Get-PnPPageComponent -Page Home" }, { - "Id": 588, + "CommandName": "Get-PnPPageComponent", "Rank": 2, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPPageComponent" + "Id": 588, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 589, + "CommandName": "Get-PnPPageComponent", "Rank": 3, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "CommandName": "Get-PnPPageComponent" + "Id": 589, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable" }, { - "Id": 590, + "CommandName": "Get-PnPPlannerBucket", "Rank": 1, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerBucket" + "Id": 590, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Id": 591, + "CommandName": "Get-PnPPlannerConfiguration", "Rank": 1, - "Command": "Get-PnPPlannerConfiguration", - "CommandName": "Get-PnPPlannerConfiguration" + "Id": 591, + "Command": "Get-PnPPlannerConfiguration" }, { - "Id": 592, + "CommandName": "Get-PnPPlannerPlan", "Rank": 1, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "CommandName": "Get-PnPPlannerPlan" + "Id": 592, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" }, { - "Id": 593, + "CommandName": "Get-PnPPlannerPlan", "Rank": 2, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "CommandName": "Get-PnPPlannerPlan" + "Id": 593, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" }, { - "Id": 594, + "CommandName": "Get-PnPPlannerPlan", "Rank": 3, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "CommandName": "Get-PnPPlannerPlan" + "Id": 594, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" }, { - "Id": 595, + "CommandName": "Get-PnPPlannerRosterMember", "Rank": 1, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Get-PnPPlannerRosterMember" + "Id": 595, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Id": 596, + "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 1, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "CommandName": "Get-PnPPlannerRosterPlan" + "Id": 596, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" }, { - "Id": 597, + "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 2, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerRosterPlan" + "Id": 597, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 598, + "CommandName": "Get-PnPPlannerTask", "Rank": 1, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerTask" + "Id": 598, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Id": 599, + "CommandName": "Get-PnPPlannerTask", "Rank": 2, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask" + "Id": 599, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Id": 600, + "CommandName": "Get-PnPPlannerTask", "Rank": 3, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask" + "Id": 600, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Id": 601, + "CommandName": "Get-PnPPlannerUserPolicy", "Rank": 1, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerUserPolicy" + "Id": 601, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 602, + "CommandName": "Get-PnPPowerPlatformConnector", "Rank": 1, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "CommandName": "Get-PnPPowerPlatformConnector" + "Id": 602, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" }, { - "Id": 603, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 1, - "Command": "Get-PnPPowerPlatformEnvironment", - "CommandName": "Get-PnPPowerPlatformEnvironment" + "Id": 603, + "Command": "Get-PnPPowerPlatformEnvironment" }, { - "Id": 604, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 2, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "CommandName": "Get-PnPPowerPlatformEnvironment" + "Id": 604, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" }, { - "Id": 605, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 3, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "CommandName": "Get-PnPPowerPlatformEnvironment" + "Id": 605, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" }, { - "Id": 606, + "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, - "Command": "Get-PnPPowerShellTelemetryEnabled", - "CommandName": "Get-PnPPowerShellTelemetryEnabled" + "Id": 606, + "Command": "Get-PnPPowerShellTelemetryEnabled" }, { - "Id": 607, + "CommandName": "Get-PnPPropertyBag", "Rank": 1, - "Command": "Get-PnPPropertyBag", - "CommandName": "Get-PnPPropertyBag" + "Id": 607, + "Command": "Get-PnPPropertyBag" }, { - "Id": 608, + "CommandName": "Get-PnPPropertyBag", "Rank": 2, - "Command": "Get-PnPPropertyBag -Key MyKey", - "CommandName": "Get-PnPPropertyBag" + "Id": 608, + "Command": "Get-PnPPropertyBag -Key MyKey" }, { - "Id": 609, + "CommandName": "Get-PnPPropertyBag", "Rank": 3, - "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "CommandName": "Get-PnPPropertyBag" + "Id": 609, + "Command": "Get-PnPPropertyBag -Folder /MyFolder" }, { - "Id": 610, + "CommandName": "Get-PnPPropertyBag", "Rank": 4, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag" + "Id": 610, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" }, { - "Id": 611, + "CommandName": "Get-PnPPropertyBag", "Rank": 5, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag" + "Id": 611, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" }, { - "Id": 612, + "CommandName": "Get-PnPPublishingImageRendition", "Rank": 1, - "Command": "Get-PnPPublishingImageRendition", - "CommandName": "Get-PnPPublishingImageRendition" + "Id": 612, + "Command": "Get-PnPPublishingImageRendition" }, { - "Id": 613, + "CommandName": "Get-PnPPublishingImageRendition", "Rank": 2, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "CommandName": "Get-PnPPublishingImageRendition" + "Id": 613, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" }, { - "Id": 614, + "CommandName": "Get-PnPPublishingImageRendition", "Rank": 3, - "Command": "Get-PnPPublishingImageRendition -Identity 2", - "CommandName": "Get-PnPPublishingImageRendition" + "Id": 614, + "Command": "Get-PnPPublishingImageRendition -Identity 2" }, { - "Id": 615, + "CommandName": "Get-PnPRecycleBinItem", "Rank": 1, - "Command": "Get-PnPRecycleBinItem", - "CommandName": "Get-PnPRecycleBinItem" + "Id": 615, + "Command": "Get-PnPRecycleBinItem" }, { - "Id": 616, + "CommandName": "Get-PnPRecycleBinItem", "Rank": 2, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "CommandName": "Get-PnPRecycleBinItem" + "Id": 616, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" }, { - "Id": 617, + "CommandName": "Get-PnPRecycleBinItem", "Rank": 3, - "Command": "Get-PnPRecycleBinItem -FirstStage", - "CommandName": "Get-PnPRecycleBinItem" + "Id": 617, + "Command": "Get-PnPRecycleBinItem -FirstStage" }, { - "Id": 618, + "CommandName": "Get-PnPRecycleBinItem", "Rank": 4, - "Command": "Get-PnPRecycleBinItem -SecondStage", - "CommandName": "Get-PnPRecycleBinItem" + "Id": 618, + "Command": "Get-PnPRecycleBinItem -SecondStage" }, { - "Id": 619, + "CommandName": "Get-PnPRecycleBinItem", "Rank": 5, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "CommandName": "Get-PnPRecycleBinItem" + "Id": 619, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000" }, { - "Id": 620, + "CommandName": "Get-PnPRequestAccessEmails", "Rank": 1, - "Command": "Get-PnPRequestAccessEmails", - "CommandName": "Get-PnPRequestAccessEmails" + "Id": 620, + "Command": "Get-PnPRequestAccessEmails" }, { - "Id": 621, + "CommandName": "Get-PnPRoleDefinition", "Rank": 1, - "Command": "Get-PnPRoleDefinition", - "CommandName": "Get-PnPRoleDefinition" + "Id": 621, + "Command": "Get-PnPRoleDefinition" }, { - "Id": 622, + "CommandName": "Get-PnPRoleDefinition", "Rank": 2, - "Command": "Get-PnPRoleDefinition -Identity Read", - "CommandName": "Get-PnPRoleDefinition" + "Id": 622, + "Command": "Get-PnPRoleDefinition -Identity Read" }, { - "Id": 623, + "CommandName": "Get-PnPRoleDefinition", "Rank": 3, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "CommandName": "Get-PnPRoleDefinition" + "Id": 623, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" }, { - "Id": 624, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 1, - "Command": "Get-PnPSearchConfiguration", - "CommandName": "Get-PnPSearchConfiguration" + "Id": 624, + "Command": "Get-PnPSearchConfiguration" }, { - "Id": 625, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 2, - "Command": "Get-PnPSearchConfiguration -Scope Site", - "CommandName": "Get-PnPSearchConfiguration" + "Id": 625, + "Command": "Get-PnPSearchConfiguration -Scope Site" }, { - "Id": 626, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 3, - "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration" + "Id": 626, + "Command": "Get-PnPSearchConfiguration -Scope Subscription" }, { - "Id": 627, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 4, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration" + "Id": 627, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 628, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 5, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "CommandName": "Get-PnPSearchConfiguration" + "Id": 628, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" }, { - "Id": 629, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 6, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "CommandName": "Get-PnPSearchConfiguration" + "Id": 629, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" }, { - "Id": 630, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 7, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "CommandName": "Get-PnPSearchConfiguration" + "Id": 630, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" }, { - "Id": 631, + "CommandName": "Get-PnPSearchConfiguration", "Rank": 8, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "CommandName": "Get-PnPSearchConfiguration" + "Id": 631, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" }, { - "Id": 632, + "CommandName": "Get-PnPSearchCrawlLog", "Rank": 1, - "Command": "Get-PnPSearchCrawlLog", - "CommandName": "Get-PnPSearchCrawlLog" + "Id": 632, + "Command": "Get-PnPSearchCrawlLog" }, { - "Id": 633, + "CommandName": "Get-PnPSearchCrawlLog", "Rank": 2, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "CommandName": "Get-PnPSearchCrawlLog" + "Id": 633, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" }, { - "Id": 634, + "CommandName": "Get-PnPSearchCrawlLog", "Rank": 3, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "CommandName": "Get-PnPSearchCrawlLog" + "Id": 634, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" }, { - "Id": 635, + "CommandName": "Get-PnPSearchCrawlLog", "Rank": 4, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "CommandName": "Get-PnPSearchCrawlLog" + "Id": 635, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" }, { - "Id": 636, + "CommandName": "Get-PnPSearchCrawlLog", "Rank": 5, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "CommandName": "Get-PnPSearchCrawlLog" + "Id": 636, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" }, { - "Id": 637, + "CommandName": "Get-PnPSearchCrawlLog", "Rank": 6, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "CommandName": "Get-PnPSearchCrawlLog" + "Id": 637, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" }, { - "Id": 638, + "CommandName": "Get-PnPSearchCrawlLog", "Rank": 7, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "CommandName": "Get-PnPSearchCrawlLog" + "Id": 638, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" }, { - "Id": 639, + "CommandName": "Get-PnPSearchSettings", "Rank": 1, - "Command": "Get-PnPSearchSettings", - "CommandName": "Get-PnPSearchSettings" + "Id": 639, + "Command": "Get-PnPSearchSettings" }, { - "Id": 640, + "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 1, - "Command": "Get-PnPServiceCurrentHealth", - "CommandName": "Get-PnPServiceCurrentHealth" + "Id": 640, + "Command": "Get-PnPServiceCurrentHealth" }, { - "Id": 641, + "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 2, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "CommandName": "Get-PnPServiceCurrentHealth" + "Id": 641, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" }, { - "Id": 642, + "CommandName": "Get-PnPServiceHealthIssue", "Rank": 1, - "Command": "Get-PnPServiceHealthIssue", - "CommandName": "Get-PnPServiceHealthIssue" + "Id": 642, + "Command": "Get-PnPServiceHealthIssue" }, { - "Id": 643, + "CommandName": "Get-PnPServiceHealthIssue", "Rank": 2, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "CommandName": "Get-PnPServiceHealthIssue" + "Id": 643, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" }, { - "Id": 644, + "CommandName": "Get-PnPSharePointAddIn", "Rank": 1, - "Command": "Get-PnPSharePointAddIn", - "CommandName": "Get-PnPSharePointAddIn" + "Id": 644, + "Command": "Get-PnPSharePointAddIn" }, { - "Id": 645, + "CommandName": "Get-PnPSharePointAddIn", "Rank": 2, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "CommandName": "Get-PnPSharePointAddIn" + "Id": 645, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites" }, { - "Id": 646, + "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, - "Command": "Get-PnPSharingForNonOwnersOfSite", - "CommandName": "Get-PnPSharingForNonOwnersOfSite" + "Id": 646, + "Command": "Get-PnPSharingForNonOwnersOfSite" }, { - "Id": 647, + "CommandName": "Get-PnPSite", "Rank": 1, - "Command": "Get-PnPSite", - "CommandName": "Get-PnPSite" + "Id": 647, + "Command": "Get-PnPSite" }, { - "Id": 648, + "CommandName": "Get-PnPSite", "Rank": 2, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "CommandName": "Get-PnPSite" + "Id": 648, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" }, { - "Id": 649, + "CommandName": "Get-PnPSiteClosure", "Rank": 1, - "Command": "Get-PnPSiteClosure", - "CommandName": "Get-PnPSiteClosure" + "Id": 649, + "Command": "Get-PnPSiteClosure" }, { - "Id": 650, + "CommandName": "Get-PnPSiteCollectionAdmin", "Rank": 1, - "Command": "Get-PnPSiteCollectionAdmin", - "CommandName": "Get-PnPSiteCollectionAdmin" + "Id": 650, + "Command": "Get-PnPSiteCollectionAdmin" }, { - "Id": 651, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, - "Command": "Get-PnPSiteCollectionAppCatalog", - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "Id": 651, + "Command": "Get-PnPSiteCollectionAppCatalog" }, { - "Id": 652, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 2, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "Id": 652, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" }, { - "Id": 653, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 3, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "Id": 653, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" }, { - "Id": 654, + "CommandName": "Get-PnPSiteCollectionTermStore", "Rank": 1, - "Command": "Get-PnPSiteCollectionTermStore", - "CommandName": "Get-PnPSiteCollectionTermStore" + "Id": 654, + "Command": "Get-PnPSiteCollectionTermStore" }, { - "Id": 655, + "CommandName": "Get-PnPSiteDesign", "Rank": 1, - "Command": "Get-PnPSiteDesign", - "CommandName": "Get-PnPSiteDesign" + "Id": 655, + "Command": "Get-PnPSiteDesign" }, { - "Id": 656, + "CommandName": "Get-PnPSiteDesign", "Rank": 2, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesign" + "Id": 656, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 657, + "CommandName": "Get-PnPSiteDesignRights", "Rank": 1, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesignRights" + "Id": 657, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 658, + "CommandName": "Get-PnPSiteDesignRun", "Rank": 1, - "Command": "Get-PnPSiteDesignRun", - "CommandName": "Get-PnPSiteDesignRun" + "Id": 658, + "Command": "Get-PnPSiteDesignRun" }, { - "Id": 659, + "CommandName": "Get-PnPSiteDesignRun", "Rank": 2, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignRun" + "Id": 659, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" }, { - "Id": 660, + "CommandName": "Get-PnPSiteDesignTask", "Rank": 1, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Get-PnPSiteDesignTask" + "Id": 660, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Id": 661, + "CommandName": "Get-PnPSiteDesignTask", "Rank": 2, - "Command": "Get-PnPSiteDesignTask", - "CommandName": "Get-PnPSiteDesignTask" + "Id": 661, + "Command": "Get-PnPSiteDesignTask" }, { - "Id": 662, + "CommandName": "Get-PnPSiteDesignTask", "Rank": 3, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignTask" + "Id": 662, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Id": 663, + "CommandName": "Get-PnPSiteGroup", "Rank": 1, - "Command": "Get-PnPSiteGroup", - "CommandName": "Get-PnPSiteGroup" + "Id": 663, + "Command": "Get-PnPSiteGroup" }, { - "Id": 664, + "CommandName": "Get-PnPSiteGroup", "Rank": 2, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup" + "Id": 664, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Id": 665, + "CommandName": "Get-PnPSiteGroup", "Rank": 3, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "CommandName": "Get-PnPSiteGroup" + "Id": 665, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" }, { - "Id": 666, + "CommandName": "Get-PnPSiteGroup", "Rank": 4, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup" + "Id": 666, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Id": 667, + "CommandName": "Get-PnPSitePolicy", "Rank": 1, - "Command": "Get-PnPSitePolicy", - "CommandName": "Get-PnPSitePolicy" + "Id": 667, + "Command": "Get-PnPSitePolicy" }, { - "Id": 668, + "CommandName": "Get-PnPSitePolicy", "Rank": 2, - "Command": "Get-PnPSitePolicy -AllAvailable", - "CommandName": "Get-PnPSitePolicy" + "Id": 668, + "Command": "Get-PnPSitePolicy -AllAvailable" }, { - "Id": 669, + "CommandName": "Get-PnPSitePolicy", "Rank": 3, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Get-PnPSitePolicy" + "Id": 669, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Id": 670, + "CommandName": "Get-PnPSiteScript", "Rank": 1, - "Command": "Get-PnPSiteScript", - "CommandName": "Get-PnPSiteScript" + "Id": 670, + "Command": "Get-PnPSiteScript" }, { - "Id": 671, + "CommandName": "Get-PnPSiteScript", "Rank": 2, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteScript" + "Id": 671, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 672, + "CommandName": "Get-PnPSiteScriptFromList", "Rank": 1, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "CommandName": "Get-PnPSiteScriptFromList" + "Id": 672, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" }, { - "Id": 673, + "CommandName": "Get-PnPSiteScriptFromList", "Rank": 2, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "CommandName": "Get-PnPSiteScriptFromList" + "Id": 673, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" }, { - "Id": 674, + "CommandName": "Get-PnPSiteScriptFromList", "Rank": 3, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "CommandName": "Get-PnPSiteScriptFromList" + "Id": 674, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" }, { - "Id": 675, + "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 1, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb" + "Id": 675, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" }, { - "Id": 676, + "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 2, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb" + "Id": 676, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" }, { - "Id": 677, + "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": 677, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" }, { - "Id": 678, + "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 4, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "CommandName": "Get-PnPSiteScriptFromWeb" + "Id": 678, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" }, { - "Id": 679, + "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 5, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "CommandName": "Get-PnPSiteScriptFromWeb" + "Id": 679, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" }, { - "Id": 680, + "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": 680, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" }, { - "Id": 681, + "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 1, - "Command": "Get-PnPSiteSearchQueryResults", - "CommandName": "Get-PnPSiteSearchQueryResults" + "Id": 681, + "Command": "Get-PnPSiteSearchQueryResults" }, { - "Id": 682, + "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 2, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "CommandName": "Get-PnPSiteSearchQueryResults" + "Id": 682, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" }, { - "Id": 683, + "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 3, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "CommandName": "Get-PnPSiteSearchQueryResults" + "Id": 683, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" }, { - "Id": 684, + "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 4, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "CommandName": "Get-PnPSiteSearchQueryResults" + "Id": 684, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" }, { - "Id": 685, + "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 5, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "CommandName": "Get-PnPSiteSearchQueryResults" + "Id": 685, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" }, { - "Id": 686, + "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 6, - "Command": "Get-PnPSiteSearchQueryResults -All", - "CommandName": "Get-PnPSiteSearchQueryResults" + "Id": 686, + "Command": "Get-PnPSiteSearchQueryResults -All" }, { - "Id": 687, + "CommandName": "Get-PnPSiteSensitivityLabel", "Rank": 1, - "Command": "Get-PnPSiteSensitivityLabel", - "CommandName": "Get-PnPSiteSensitivityLabel" + "Id": 687, + "Command": "Get-PnPSiteSensitivityLabel" }, { - "Id": 688, + "CommandName": "Get-PnPSiteTemplate", "Rank": 1, - "Command": "Get-PnPSiteTemplate -Out template.pnp", - "CommandName": "Get-PnPSiteTemplate" + "Id": 688, + "Command": "Get-PnPSiteTemplate -Out template.pnp" }, { - "Id": 689, + "CommandName": "Get-PnPSiteTemplate", "Rank": 2, - "Command": "Get-PnPSiteTemplate -Out template.xml", - "CommandName": "Get-PnPSiteTemplate" + "Id": 689, + "Command": "Get-PnPSiteTemplate -Out template.xml" }, { - "Id": 690, + "CommandName": "Get-PnPSiteTemplate", "Rank": 3, - "Command": "Get-PnPSiteTemplate -Out template.md", - "CommandName": "Get-PnPSiteTemplate" + "Id": 690, + "Command": "Get-PnPSiteTemplate -Out template.md" }, { - "Id": 691, + "CommandName": "Get-PnPSiteTemplate", "Rank": 4, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "CommandName": "Get-PnPSiteTemplate" + "Id": 691, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" }, { - "Id": 692, + "CommandName": "Get-PnPSiteTemplate", "Rank": 5, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "CommandName": "Get-PnPSiteTemplate" + "Id": 692, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" }, { - "Id": 693, + "CommandName": "Get-PnPSiteTemplate", "Rank": 6, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "CommandName": "Get-PnPSiteTemplate" + "Id": 693, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" }, { - "Id": 694, + "CommandName": "Get-PnPSiteTemplate", "Rank": 7, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "CommandName": "Get-PnPSiteTemplate" + "Id": 694, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" }, { - "Id": 695, + "CommandName": "Get-PnPSiteTemplate", "Rank": 8, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "CommandName": "Get-PnPSiteTemplate" + "Id": 695, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" }, { - "Id": 696, + "CommandName": "Get-PnPSiteTemplate", "Rank": 9, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate" + "Id": 696, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" }, { - "Id": 697, + "CommandName": "Get-PnPSiteTemplate", "Rank": 10, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "CommandName": "Get-PnPSiteTemplate" + "Id": 697, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" }, { - "Id": 698, + "CommandName": "Get-PnPSiteTemplate", "Rank": 11, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "CommandName": "Get-PnPSiteTemplate" + "Id": 698, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" }, { - "Id": 699, + "CommandName": "Get-PnPSiteTemplate", "Rank": 12, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "CommandName": "Get-PnPSiteTemplate" + "Id": 699, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" }, { - "Id": 700, + "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": 700, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" }, { - "Id": 701, + "CommandName": "Get-PnPSiteTemplate", "Rank": 14, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate" + "Id": 701, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" }, { - "Id": 702, + "CommandName": "Get-PnPSiteUserInvitations", "Rank": 1, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Get-PnPSiteUserInvitations" + "Id": 702, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Id": 703, + "CommandName": "Get-PnPStorageEntity", "Rank": 1, - "Command": "Get-PnPStorageEntity", - "CommandName": "Get-PnPStorageEntity" + "Id": 703, + "Command": "Get-PnPStorageEntity" }, { - "Id": 704, + "CommandName": "Get-PnPStorageEntity", "Rank": 2, - "Command": "Get-PnPStorageEntity -Key MyKey", - "CommandName": "Get-PnPStorageEntity" + "Id": 704, + "Command": "Get-PnPStorageEntity -Key MyKey" }, { - "Id": 705, + "CommandName": "Get-PnPStorageEntity", "Rank": 3, - "Command": "Get-PnPStorageEntity -Scope Site", - "CommandName": "Get-PnPStorageEntity" + "Id": 705, + "Command": "Get-PnPStorageEntity -Scope Site" }, { - "Id": 706, + "CommandName": "Get-PnPStorageEntity", "Rank": 4, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Get-PnPStorageEntity" + "Id": 706, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Id": 707, + "CommandName": "Get-PnPStoredCredential", "Rank": 1, - "Command": "Get-PnPStoredCredential -Name O365", - "CommandName": "Get-PnPStoredCredential" + "Id": 707, + "Command": "Get-PnPStoredCredential -Name O365" }, { - "Id": 708, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Rank": 1, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Get-PnPStructuralNavigationCacheSiteState" + "Id": 708, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 709, + "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Rank": 1, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Get-PnPStructuralNavigationCacheWebState" + "Id": 709, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 710, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Rank": 1, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "CommandName": "Get-PnPSubscribeSharePointNewsDigest" + "Id": 710, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" }, { - "Id": 711, + "CommandName": "Get-PnPSubWeb", "Rank": 1, - "Command": "Get-PnPSubWeb", - "CommandName": "Get-PnPSubWeb" + "Id": 711, + "Command": "Get-PnPSubWeb" }, { - "Id": 712, + "CommandName": "Get-PnPSubWeb", "Rank": 2, - "Command": "Get-PnPSubWeb -Recurse", - "CommandName": "Get-PnPSubWeb" + "Id": 712, + "Command": "Get-PnPSubWeb -Recurse" }, { - "Id": 713, + "CommandName": "Get-PnPSubWeb", "Rank": 3, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "CommandName": "Get-PnPSubWeb" + "Id": 713, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" }, { - "Id": 714, + "CommandName": "Get-PnPSubWeb", "Rank": 4, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "CommandName": "Get-PnPSubWeb" + "Id": 714, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" }, { - "Id": 715, + "CommandName": "Get-PnPSubWeb", "Rank": 5, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "CommandName": "Get-PnPSubWeb" + "Id": 715, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" }, { - "Id": 716, + "CommandName": "Get-PnPSyntexModel", "Rank": 1, - "Command": "Get-PnPSyntexModel", - "CommandName": "Get-PnPSyntexModel" + "Id": 716, + "Command": "Get-PnPSyntexModel" }, { - "Id": 717, + "CommandName": "Get-PnPSyntexModel", "Rank": 2, - "Command": "Get-PnPSyntexModel -Identity 1", - "CommandName": "Get-PnPSyntexModel" + "Id": 717, + "Command": "Get-PnPSyntexModel -Identity 1" }, { - "Id": 718, + "CommandName": "Get-PnPSyntexModel", "Rank": 3, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModel" + "Id": 718, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" }, { - "Id": 719, + "CommandName": "Get-PnPSyntexModelPublication", "Rank": 1, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModelPublication" + "Id": 719, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" }, { - "Id": 720, + "CommandName": "Get-PnPTaxonomyItem", "Rank": 1, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "CommandName": "Get-PnPTaxonomyItem" + "Id": 720, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" }, { - "Id": 721, + "CommandName": "Get-PnPTeamsApp", "Rank": 1, - "Command": "Get-PnPTeamsApp", - "CommandName": "Get-PnPTeamsApp" + "Id": 721, + "Command": "Get-PnPTeamsApp" }, { - "Id": 722, + "CommandName": "Get-PnPTeamsApp", "Rank": 2, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "CommandName": "Get-PnPTeamsApp" + "Id": 722, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" }, { - "Id": 723, + "CommandName": "Get-PnPTeamsApp", "Rank": 3, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "CommandName": "Get-PnPTeamsApp" + "Id": 723, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" }, { - "Id": 724, + "CommandName": "Get-PnPTeamsChannel", "Rank": 1, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "CommandName": "Get-PnPTeamsChannel" + "Id": 724, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" }, { - "Id": 725, + "CommandName": "Get-PnPTeamsChannel", "Rank": 2, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannel" + "Id": 725, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" }, { - "Id": 726, + "CommandName": "Get-PnPTeamsChannel", "Rank": 3, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannel" + "Id": 726, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Id": 727, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 1, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "Id": 727, + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" }, { - "Id": 728, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 2, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "Id": 728, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Id": 729, + "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 1, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelMessage" + "Id": 729, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" }, { - "Id": 730, + "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 2, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "CommandName": "Get-PnPTeamsChannelMessage" + "Id": 730, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" }, { - "Id": 731, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 1, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "CommandName": "Get-PnPTeamsChannelMessageReply" + "Id": 731, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" }, { - "Id": 732, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 2, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "CommandName": "Get-PnPTeamsChannelMessageReply" + "Id": 732, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" }, { - "Id": 733, + "CommandName": "Get-PnPTeamsChannelUser", "Rank": 1, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelUser" + "Id": 733, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" }, { - "Id": 734, + "CommandName": "Get-PnPTeamsChannelUser", "Rank": 2, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "CommandName": "Get-PnPTeamsChannelUser" + "Id": 734, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" }, { - "Id": 735, + "CommandName": "Get-PnPTeamsChannelUser", "Rank": 3, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "CommandName": "Get-PnPTeamsChannelUser" + "Id": 735, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" }, { - "Id": 736, + "CommandName": "Get-PnPTeamsChannelUser", "Rank": 4, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPTeamsChannelUser" + "Id": 736, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 737, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 1, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "CommandName": "Get-PnPTeamsPrimaryChannel" + "Id": 737, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" }, { - "Id": 738, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 2, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "CommandName": "Get-PnPTeamsPrimaryChannel" + "Id": 738, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" }, { - "Id": 739, + "CommandName": "Get-PnPTeamsTab", "Rank": 1, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "CommandName": "Get-PnPTeamsTab" + "Id": 739, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" }, { - "Id": 740, + "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": 740, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" }, { - "Id": 741, + "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": 741, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" }, { - "Id": 742, + "CommandName": "Get-PnPTeamsTab", "Rank": 4, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsTab" + "Id": 742, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" }, { - "Id": 743, + "CommandName": "Get-PnPTeamsTab", "Rank": 5, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "CommandName": "Get-PnPTeamsTab" + "Id": 743, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" }, { - "Id": 744, + "CommandName": "Get-PnPTeamsTag", "Rank": 1, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Get-PnPTeamsTag" + "Id": 744, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Id": 745, + "CommandName": "Get-PnPTeamsTag", "Rank": 2, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Get-PnPTeamsTag" + "Id": 745, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Id": 746, + "CommandName": "Get-PnPTeamsTeam", "Rank": 1, - "Command": "Get-PnPTeamsTeam", - "CommandName": "Get-PnPTeamsTeam" + "Id": 746, + "Command": "Get-PnPTeamsTeam" }, { - "Id": 747, + "CommandName": "Get-PnPTeamsTeam", "Rank": 2, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "CommandName": "Get-PnPTeamsTeam" + "Id": 747, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" }, { - "Id": 748, + "CommandName": "Get-PnPTeamsTeam", "Rank": 3, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "CommandName": "Get-PnPTeamsTeam" + "Id": 748, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" }, { - "Id": 749, + "CommandName": "Get-PnPTeamsTeam", "Rank": 4, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam" + "Id": 749, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" }, { - "Id": 750, + "CommandName": "Get-PnPTeamsTeam", "Rank": 5, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam" + "Id": 750, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 751, + "CommandName": "Get-PnPTeamsUser", "Rank": 1, - "Command": "Get-PnPTeamsUser -Team MyTeam", - "CommandName": "Get-PnPTeamsUser" + "Id": 751, + "Command": "Get-PnPTeamsUser -Team MyTeam" }, { - "Id": 752, + "CommandName": "Get-PnPTeamsUser", "Rank": 2, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "CommandName": "Get-PnPTeamsUser" + "Id": 752, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" }, { - "Id": 753, + "CommandName": "Get-PnPTeamsUser", "Rank": 3, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "CommandName": "Get-PnPTeamsUser" + "Id": 753, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" }, { - "Id": 754, + "CommandName": "Get-PnPTeamsUser", "Rank": 4, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "CommandName": "Get-PnPTeamsUser" + "Id": 754, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" }, { - "Id": 755, + "CommandName": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, - "Command": "Get-PnPTemporarilyDisableAppBar", - "CommandName": "Get-PnPTemporarilyDisableAppBar" + "Id": 755, + "Command": "Get-PnPTemporarilyDisableAppBar" }, { - "Id": 756, + "CommandName": "Get-PnPTenant", "Rank": 1, - "Command": "Get-PnPTenant", - "CommandName": "Get-PnPTenant" + "Id": 756, + "Command": "Get-PnPTenant" }, { - "Id": 757, + "CommandName": "Get-PnPTenantAppCatalogUrl", "Rank": 1, - "Command": "Get-PnPTenantAppCatalogUrl", - "CommandName": "Get-PnPTenantAppCatalogUrl" + "Id": 757, + "Command": "Get-PnPTenantAppCatalogUrl" }, { - "Id": 758, + "CommandName": "Get-PnPTenantCdnEnabled", "Rank": 1, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "CommandName": "Get-PnPTenantCdnEnabled" + "Id": 758, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public" }, { - "Id": 759, + "CommandName": "Get-PnPTenantCdnOrigin", "Rank": 1, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "CommandName": "Get-PnPTenantCdnOrigin" + "Id": 759, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public" }, { - "Id": 760, + "CommandName": "Get-PnPTenantCdnPolicies", "Rank": 1, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "CommandName": "Get-PnPTenantCdnPolicies" + "Id": 760, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public" }, { - "Id": 761, + "CommandName": "Get-PnPTenantDeletedSite", "Rank": 1, - "Command": "Get-PnPTenantDeletedSite", - "CommandName": "Get-PnPTenantDeletedSite" + "Id": 761, + "Command": "Get-PnPTenantDeletedSite" }, { - "Id": 762, + "CommandName": "Get-PnPTenantDeletedSite", "Rank": 2, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Get-PnPTenantDeletedSite" + "Id": 762, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 763, + "CommandName": "Get-PnPTenantDeletedSite", "Rank": 3, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "CommandName": "Get-PnPTenantDeletedSite" + "Id": 763, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" }, { - "Id": 764, + "CommandName": "Get-PnPTenantDeletedSite", "Rank": 4, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "CommandName": "Get-PnPTenantDeletedSite" + "Id": 764, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" }, { - "Id": 765, + "CommandName": "Get-PnPTenantId", "Rank": 1, - "Command": "Get-PnPTenantId", - "CommandName": "Get-PnPTenantId" + "Id": 765, + "Command": "Get-PnPTenantId" }, { - "Id": 766, + "CommandName": "Get-PnPTenantId", "Rank": 2, - "Command": "Get-PnPTenantId contoso", - "CommandName": "Get-PnPTenantId" + "Id": 766, + "Command": "Get-PnPTenantId contoso" }, { - "Id": 767, + "CommandName": "Get-PnPTenantId", "Rank": 3, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "CommandName": "Get-PnPTenantId" + "Id": 767, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" }, { - "Id": 768, + "CommandName": "Get-PnPTenantId", "Rank": 4, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "CommandName": "Get-PnPTenantId" + "Id": 768, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" }, { - "Id": 769, + "CommandName": "Get-PnPTenantInfo", "Rank": 1, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "CommandName": "Get-PnPTenantInfo" + "Id": 769, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" }, { - "Id": 770, + "CommandName": "Get-PnPTenantInfo", "Rank": 2, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "CommandName": "Get-PnPTenantInfo" + "Id": 770, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" }, { - "Id": 771, + "CommandName": "Get-PnPTenantInfo", "Rank": 3, - "Command": "Get-PnPTenantInfo", - "CommandName": "Get-PnPTenantInfo" + "Id": 771, + "Command": "Get-PnPTenantInfo" }, { - "Id": 772, + "CommandName": "Get-PnPTenantInfo", "Rank": 4, - "Command": "Get-PnPTenantInfo -CurrentTenant", - "CommandName": "Get-PnPTenantInfo" + "Id": 772, + "Command": "Get-PnPTenantInfo -CurrentTenant" }, { - "Id": 773, + "CommandName": "Get-PnPTenantInstance", "Rank": 1, - "Command": "Get-PnPTenantInstance", - "CommandName": "Get-PnPTenantInstance" + "Id": 773, + "Command": "Get-PnPTenantInstance" }, { - "Id": 774, + "CommandName": "Get-PnPTenantRecycleBinItem", "Rank": 1, - "Command": "Get-PnPTenantRecycleBinItem", - "CommandName": "Get-PnPTenantRecycleBinItem" + "Id": 774, + "Command": "Get-PnPTenantRecycleBinItem" }, { - "Id": 775, + "CommandName": "Get-PnPTenantSequence", "Rank": 1, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "CommandName": "Get-PnPTenantSequence" + "Id": 775, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject" }, { - "Id": 776, + "CommandName": "Get-PnPTenantSequence", "Rank": 2, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "CommandName": "Get-PnPTenantSequence" + "Id": 776, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" }, { - "Id": 777, + "CommandName": "Get-PnPTenantSequenceSite", "Rank": 1, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "CommandName": "Get-PnPTenantSequenceSite" + "Id": 777, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" }, { - "Id": 778, + "CommandName": "Get-PnPTenantSequenceSite", "Rank": 2, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "CommandName": "Get-PnPTenantSequenceSite" + "Id": 778, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" }, { - "Id": 779, + "CommandName": "Get-PnPTenantSite", "Rank": 1, - "Command": "Get-PnPTenantSite", - "CommandName": "Get-PnPTenantSite" + "Id": 779, + "Command": "Get-PnPTenantSite" }, { - "Id": 780, + "CommandName": "Get-PnPTenantSite", "Rank": 2, - "Command": "Get-PnPTenantSite -Detailed", - "CommandName": "Get-PnPTenantSite" + "Id": 780, + "Command": "Get-PnPTenantSite -Detailed" }, { - "Id": 781, + "CommandName": "Get-PnPTenantSite", "Rank": 3, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "CommandName": "Get-PnPTenantSite" + "Id": 781, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites" }, { - "Id": 782, + "CommandName": "Get-PnPTenantSite", "Rank": 4, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "CommandName": "Get-PnPTenantSite" + "Id": 782, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" }, { - "Id": 783, + "CommandName": "Get-PnPTenantSite", "Rank": 5, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "CommandName": "Get-PnPTenantSite" + "Id": 783, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" }, { - "Id": 784, + "CommandName": "Get-PnPTenantSite", "Rank": 6, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "CommandName": "Get-PnPTenantSite" + "Id": 784, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" }, { - "Id": 785, + "CommandName": "Get-PnPTenantSite", "Rank": 7, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "CommandName": "Get-PnPTenantSite" + "Id": 785, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" }, { - "Id": 786, + "CommandName": "Get-PnPTenantSite", "Rank": 8, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "CommandName": "Get-PnPTenantSite" + "Id": 786, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" }, { - "Id": 787, + "CommandName": "Get-PnPTenantSite", "Rank": 9, - "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "CommandName": "Get-PnPTenantSite" + "Id": 787, + "Command": "Get-PnPTenantSite -GroupIdDefined $true" }, { - "Id": 788, + "CommandName": "Get-PnPTenantSyncClientRestriction", "Rank": 1, - "Command": "Get-PnPTenantSyncClientRestriction", - "CommandName": "Get-PnPTenantSyncClientRestriction" + "Id": 788, + "Command": "Get-PnPTenantSyncClientRestriction" }, { - "Id": 789, + "CommandName": "Get-PnPTenantTemplate", "Rank": 1, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "CommandName": "Get-PnPTenantTemplate" + "Id": 789, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" }, { - "Id": 790, + "CommandName": "Get-PnPTenantTemplate", "Rank": 2, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "CommandName": "Get-PnPTenantTemplate" + "Id": 790, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" }, { - "Id": 791, + "CommandName": "Get-PnPTenantTemplate", "Rank": 3, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "CommandName": "Get-PnPTenantTemplate" + "Id": 791, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" }, { - "Id": 792, + "CommandName": "Get-PnPTenantTheme", "Rank": 1, - "Command": "Get-PnPTenantTheme", - "CommandName": "Get-PnPTenantTheme" + "Id": 792, + "Command": "Get-PnPTenantTheme" }, { - "Id": 793, + "CommandName": "Get-PnPTenantTheme", "Rank": 2, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Get-PnPTenantTheme" + "Id": 793, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Id": 794, + "CommandName": "Get-PnPTenantTheme", "Rank": 3, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "CommandName": "Get-PnPTenantTheme" + "Id": 794, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" }, { - "Id": 795, + "CommandName": "Get-PnPTerm", "Rank": 1, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm" + "Id": 795, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 796, + "CommandName": "Get-PnPTerm", "Rank": 2, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm" + "Id": 796, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 797, + "CommandName": "Get-PnPTerm", "Rank": 3, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm" + "Id": 797, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 798, + "CommandName": "Get-PnPTerm", "Rank": 4, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "CommandName": "Get-PnPTerm" + "Id": 798, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" }, { - "Id": 799, + "CommandName": "Get-PnPTerm", "Rank": 5, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "CommandName": "Get-PnPTerm" + "Id": 799, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" }, { - "Id": 800, + "CommandName": "Get-PnPTermGroup", "Rank": 1, - "Command": "Get-PnPTermGroup", - "CommandName": "Get-PnPTermGroup" + "Id": 800, + "Command": "Get-PnPTermGroup" }, { - "Id": 801, + "CommandName": "Get-PnPTermGroup", "Rank": 2, - "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "CommandName": "Get-PnPTermGroup" + "Id": 801, + "Command": "Get-PnPTermGroup -Identity \"Departments\"" }, { - "Id": 802, + "CommandName": "Get-PnPTermGroup", "Rank": 3, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "CommandName": "Get-PnPTermGroup" + "Id": 802, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" }, { - "Id": 803, + "CommandName": "Get-PnPTermLabel", "Rank": 1, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "CommandName": "Get-PnPTermLabel" + "Id": 803, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" }, { - "Id": 804, + "CommandName": "Get-PnPTermLabel", "Rank": 2, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "CommandName": "Get-PnPTermLabel" + "Id": 804, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" }, { - "Id": 805, + "CommandName": "Get-PnPTermLabel", "Rank": 3, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermLabel" + "Id": 805, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 806, + "CommandName": "Get-PnPTermSet", "Rank": 1, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet" + "Id": 806, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" }, { - "Id": 807, + "CommandName": "Get-PnPTermSet", "Rank": 2, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet" + "Id": 807, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 808, + "CommandName": "Get-PnPTermSet", "Rank": 3, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "CommandName": "Get-PnPTermSet" + "Id": 808, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" }, { - "Id": 809, + "CommandName": "Get-PnPTheme", "Rank": 1, - "Command": "Get-PnPTheme", - "CommandName": "Get-PnPTheme" + "Id": 809, + "Command": "Get-PnPTheme" }, { - "Id": 810, + "CommandName": "Get-PnPTheme", "Rank": 2, - "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "CommandName": "Get-PnPTheme" + "Id": 810, + "Command": "Get-PnPTheme -DetectCurrentComposedLook" }, { - "Id": 811, + "CommandName": "Get-PnPTimeZoneId", "Rank": 1, - "Command": "Get-PnPTimeZoneId", - "CommandName": "Get-PnPTimeZoneId" + "Id": 811, + "Command": "Get-PnPTimeZoneId" }, { - "Id": 812, + "CommandName": "Get-PnPTimeZoneId", "Rank": 2, - "Command": "Get-PnPTimeZoneId -Match Stockholm", - "CommandName": "Get-PnPTimeZoneId" + "Id": 812, + "Command": "Get-PnPTimeZoneId -Match Stockholm" }, { - "Id": 813, + "CommandName": "Get-PnPUnfurlLink", "Rank": 1, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "CommandName": "Get-PnPUnfurlLink" + "Id": 813, + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" }, { - "Id": 814, + "CommandName": "Get-PnPUnifiedAuditLog", "Rank": 1, - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "CommandName": "Get-PnPUnifiedAuditLog" + "Id": 814, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" }, { - "Id": 815, + "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 1, - "Command": "Get-PnPUPABulkImportStatus", - "CommandName": "Get-PnPUPABulkImportStatus" + "Id": 815, + "Command": "Get-PnPUPABulkImportStatus" }, { - "Id": 816, + "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 2, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus" + "Id": 816, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" }, { - "Id": 817, + "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 3, - "Command": "Get-PnPUPABulkImportStatus -JobId ", - "CommandName": "Get-PnPUPABulkImportStatus" + "Id": 817, + "Command": "Get-PnPUPABulkImportStatus -JobId " }, { - "Id": 818, + "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 4, - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus" + "Id": 818, + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" }, { - "Id": 819, + "CommandName": "Get-PnPUser", "Rank": 1, - "Command": "Get-PnPUser", - "CommandName": "Get-PnPUser" + "Id": 819, + "Command": "Get-PnPUser" }, { - "Id": 820, + "CommandName": "Get-PnPUser", "Rank": 2, - "Command": "Get-PnPUser -Identity 23", - "CommandName": "Get-PnPUser" + "Id": 820, + "Command": "Get-PnPUser -Identity 23" }, { - "Id": 821, + "CommandName": "Get-PnPUser", "Rank": 3, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser" + "Id": 821, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" }, { - "Id": 822, + "CommandName": "Get-PnPUser", "Rank": 4, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser" + "Id": 822, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" }, { - "Id": 823, + "CommandName": "Get-PnPUser", "Rank": 5, - "Command": "Get-PnPUser -WithRightsAssigned", - "CommandName": "Get-PnPUser" + "Id": 823, + "Command": "Get-PnPUser -WithRightsAssigned" }, { - "Id": 824, + "CommandName": "Get-PnPUser", "Rank": 6, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "CommandName": "Get-PnPUser" + "Id": 824, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" }, { - "Id": 825, + "CommandName": "Get-PnPUser", "Rank": 7, - "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "CommandName": "Get-PnPUser" + "Id": 825, + "Command": "Get-PnPUser -WithRightsAssignedDetailed" }, { - "Id": 826, + "CommandName": "Get-PnPUserOneDriveQuota", "Rank": 1, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "CommandName": "Get-PnPUserOneDriveQuota" + "Id": 826, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" }, { - "Id": 827, + "CommandName": "Get-PnPUserProfileProperty", "Rank": 1, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "CommandName": "Get-PnPUserProfileProperty" + "Id": 827, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" }, { - "Id": 828, + "CommandName": "Get-PnPUserProfileProperty", "Rank": 2, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "CommandName": "Get-PnPUserProfileProperty" + "Id": 828, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" }, { - "Id": 829, + "CommandName": "Get-PnPUserProfileProperty", "Rank": 3, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "CommandName": "Get-PnPUserProfileProperty" + "Id": 829, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" }, { - "Id": 830, + "CommandName": "Get-PnPView", "Rank": 1, - "Command": "Get-PnPView -List \"Demo List\"", - "CommandName": "Get-PnPView" + "Id": 830, + "Command": "Get-PnPView -List \"Demo List\"" }, { - "Id": 831, + "CommandName": "Get-PnPView", "Rank": 2, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "CommandName": "Get-PnPView" + "Id": 831, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" }, { - "Id": 832, + "CommandName": "Get-PnPView", "Rank": 3, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "CommandName": "Get-PnPView" + "Id": 832, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" }, { - "Id": 833, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, - "Command": "Get-PnPVivaConnectionsDashboardACE", - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "Id": 833, + "Command": "Get-PnPVivaConnectionsDashboardACE" }, { - "Id": 834, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 2, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "Id": 834, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Id": 835, + "CommandName": "Get-PnPWeb", "Rank": 1, - "Command": "Get-PnPWeb", - "CommandName": "Get-PnPWeb" + "Id": 835, + "Command": "Get-PnPWeb" }, { - "Id": 836, + "CommandName": "Get-PnPWebHeader", "Rank": 1, - "Command": "Get-PnPWebHeader", - "CommandName": "Get-PnPWebHeader" + "Id": 836, + "Command": "Get-PnPWebHeader" }, { - "Id": 837, + "CommandName": "Get-PnPWebhookSubscriptions", "Rank": 1, - "Command": "Get-PnPWebhookSubscriptions -List MyList", - "CommandName": "Get-PnPWebhookSubscriptions" + "Id": 837, + "Command": "Get-PnPWebhookSubscriptions -List MyList" }, { - "Id": 838, + "CommandName": "Get-PnPWebPart", "Rank": 1, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "CommandName": "Get-PnPWebPart" + "Id": 838, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" }, { - "Id": 839, + "CommandName": "Get-PnPWebPart", "Rank": 2, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPart" + "Id": 839, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 840, + "CommandName": "Get-PnPWebPartProperty", "Rank": 1, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "CommandName": "Get-PnPWebPartProperty" + "Id": 840, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" }, { - "Id": 841, + "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": 841, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" }, { - "Id": 842, + "CommandName": "Get-PnPWebPartXml", "Rank": 1, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPartXml" + "Id": 842, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 843, + "CommandName": "Get-PnPWebTemplates", "Rank": 1, - "Command": "Get-PnPWebTemplates", - "CommandName": "Get-PnPWebTemplates" + "Id": 843, + "Command": "Get-PnPWebTemplates" }, { - "Id": 844, + "CommandName": "Get-PnPWebTemplates", "Rank": 2, - "Command": "Get-PnPWebTemplates -LCID 1033", - "CommandName": "Get-PnPWebTemplates" + "Id": 844, + "Command": "Get-PnPWebTemplates -LCID 1033" }, { - "Id": 845, + "CommandName": "Get-PnPWebTemplates", "Rank": 3, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "CommandName": "Get-PnPWebTemplates" + "Id": 845, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" }, { - "Id": 846, + "CommandName": "Get-PnPWikiPageContent", "Rank": 1, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "CommandName": "Get-PnPWikiPageContent" + "Id": 846, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" }, { - "Id": 847, + "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 1, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "CommandName": "Grant-PnPAzureADAppSitePermission" + "Id": 847, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" }, { - "Id": 848, + "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 2, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Grant-PnPAzureADAppSitePermission" + "Id": 848, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" }, { - "Id": 849, + "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": 849, + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 850, + "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": 850, + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 851, + "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Rank": 1, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Grant-PnPTenantServicePrincipalPermission" + "Id": 851, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Id": 852, + "CommandName": "Import-PnPTaxonomy", "Rank": 1, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "CommandName": "Import-PnPTaxonomy" + "Id": 852, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" }, { - "Id": 853, + "CommandName": "Import-PnPTaxonomy", "Rank": 2, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "CommandName": "Import-PnPTaxonomy" + "Id": 853, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" }, { - "Id": 854, + "CommandName": "Import-PnPTaxonomy", "Rank": 3, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "CommandName": "Import-PnPTaxonomy" + "Id": 854, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" }, { - "Id": 855, + "CommandName": "Import-PnPTermGroupFromXml", "Rank": 1, - "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "CommandName": "Import-PnPTermGroupFromXml" + "Id": 855, + "Command": "Import-PnPTermGroupFromXml -Xml $xml" }, { - "Id": 856, + "CommandName": "Import-PnPTermGroupFromXml", "Rank": 2, - "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "CommandName": "Import-PnPTermGroupFromXml" + "Id": 856, + "Command": "Import-PnPTermGroupFromXml -Path input.xml" }, { - "Id": 857, + "CommandName": "Import-PnPTermSet", "Rank": 1, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "CommandName": "Import-PnPTermSet" + "Id": 857, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" }, { - "Id": 858, + "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": 858, + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" }, { - "Id": 859, + "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": 859, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" }, { - "Id": 860, + "CommandName": "Install-PnPApp", "Rank": 1, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Install-PnPApp" + "Id": 860, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 861, + "CommandName": "Install-PnPApp", "Rank": 2, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Install-PnPApp" + "Id": 861, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 862, + "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": 862, + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" }, { - "Id": 863, + "CommandName": "Invoke-PnPGraphMethod", "Rank": 2, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "CommandName": "Invoke-PnPGraphMethod" + "Id": 863, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" }, { - "Id": 864, + "CommandName": "Invoke-PnPGraphMethod", "Rank": 3, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "CommandName": "Invoke-PnPGraphMethod" + "Id": 864, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" }, { - "Id": 865, + "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": 865, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" }, { - "Id": 866, + "CommandName": "Invoke-PnPGraphMethod", "Rank": 5, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "CommandName": "Invoke-PnPGraphMethod" + "Id": 866, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" }, { - "Id": 867, + "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": 867, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" }, { - "Id": 868, + "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": 868, + "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": 869, + "CommandName": "Invoke-PnPListDesign", "Rank": 1, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPListDesign" + "Id": 869, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 870, + "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": 870, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Id": 871, + "CommandName": "Invoke-PnPQuery", "Rank": 1, - "Command": "Invoke-PnPQuery -RetryCount 5", - "CommandName": "Invoke-PnPQuery" + "Id": 871, + "Command": "Invoke-PnPQuery -RetryCount 5" }, { - "Id": 872, + "CommandName": "Invoke-PnPSiteDesign", "Rank": 1, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPSiteDesign" + "Id": 872, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 873, + "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": 873, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Id": 874, + "CommandName": "Invoke-PnPSiteScript", "Rank": 1, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "CommandName": "Invoke-PnPSiteScript" + "Id": 874, + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" }, { - "Id": 875, + "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": 875, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "Id": 876, + "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": 876, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "Id": 877, + "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": 877, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection" }, { - "Id": 878, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 1, - "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 878, + "Command": "Invoke-PnPSiteTemplate -Path template.xml" }, { - "Id": 879, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 2, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 879, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" }, { - "Id": 880, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 3, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 880, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Id": 881, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 4, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 881, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" }, { - "Id": 882, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 5, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 882, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp" }, { - "Id": 883, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 6, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 883, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" }, { - "Id": 884, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 7, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 884, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" }, { - "Id": 885, + "CommandName": "Invoke-PnPSiteTemplate", "Rank": 8, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 885, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" }, { - "Id": 886, + "CommandName": "Invoke-PnPSPRestMethod", "Rank": 1, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "CommandName": "Invoke-PnPSPRestMethod" + "Id": 886, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web" }, { - "Id": 887, + "CommandName": "Invoke-PnPTenantTemplate", "Rank": 1, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "CommandName": "Invoke-PnPTenantTemplate" + "Id": 887, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" }, { - "Id": 888, + "CommandName": "Invoke-PnPTenantTemplate", "Rank": 2, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "CommandName": "Invoke-PnPTenantTemplate" + "Id": 888, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" }, { - "Id": 889, + "CommandName": "Invoke-PnPTenantTemplate", "Rank": 3, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPTenantTemplate" + "Id": 889, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Id": 890, + "CommandName": "Invoke-PnPWebAction", "Rank": 1, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction" + "Id": 890, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" }, { - "Id": 891, + "CommandName": "Invoke-PnPWebAction", "Rank": 2, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction" + "Id": 891, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" }, { - "Id": 892, + "CommandName": "Measure-PnPList", "Rank": 1, - "Command": "Measure-PnPList \"Documents\"", - "CommandName": "Measure-PnPList" + "Id": 892, + "Command": "Measure-PnPList \"Documents\"" }, { - "Id": 893, + "CommandName": "Measure-PnPList", "Rank": 2, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "CommandName": "Measure-PnPList" + "Id": 893, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" }, { - "Id": 894, + "CommandName": "Measure-PnPWeb", "Rank": 1, - "Command": "Measure-PnPWeb", - "CommandName": "Measure-PnPWeb" + "Id": 894, + "Command": "Measure-PnPWeb" }, { - "Id": 895, + "CommandName": "Measure-PnPWeb", "Rank": 2, - "Command": "Measure-PnPWeb $web -Recursive", - "CommandName": "Measure-PnPWeb" + "Id": 895, + "Command": "Measure-PnPWeb $web -Recursive" }, { - "Id": 896, + "CommandName": "Move-PnPFile", "Rank": 1, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "CommandName": "Move-PnPFile" + "Id": 896, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" }, { - "Id": 897, + "CommandName": "Move-PnPFile", "Rank": 2, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "CommandName": "Move-PnPFile" + "Id": 897, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" }, { - "Id": 898, + "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": 898, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Id": 899, + "CommandName": "Move-PnPFile", "Rank": 4, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "CommandName": "Move-PnPFile" + "Id": 899, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Id": 900, + "CommandName": "Move-PnPFolder", "Rank": 1, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "CommandName": "Move-PnPFolder" + "Id": 900, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" }, { - "Id": 901, + "CommandName": "Move-PnPFolder", "Rank": 2, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "CommandName": "Move-PnPFolder" + "Id": 901, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" }, { - "Id": 902, + "CommandName": "Move-PnPListItemToRecycleBin", "Rank": 1, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Move-PnPListItemToRecycleBin" + "Id": 902, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" }, { - "Id": 903, + "CommandName": "Move-PnPPageComponent", "Rank": 1, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "CommandName": "Move-PnPPageComponent" + "Id": 903, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" }, { - "Id": 904, + "CommandName": "Move-PnPPageComponent", "Rank": 2, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "CommandName": "Move-PnPPageComponent" + "Id": 904, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" }, { - "Id": 905, + "CommandName": "Move-PnPPageComponent", "Rank": 3, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "CommandName": "Move-PnPPageComponent" + "Id": 905, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" }, { - "Id": 906, + "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": 906, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" }, { - "Id": 907, + "CommandName": "Move-PnpRecycleBinItem", "Rank": 1, - "Command": "Move-PnPRecycleBinItem", - "CommandName": "Move-PnpRecycleBinItem" + "Id": 907, + "Command": "Move-PnPRecycleBinItem" }, { - "Id": 908, + "CommandName": "Move-PnpRecycleBinItem", "Rank": 2, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "CommandName": "Move-PnpRecycleBinItem" + "Id": 908, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" }, { - "Id": 909, + "CommandName": "Move-PnpRecycleBinItem", "Rank": 3, - "Command": "Move-PnPRecycleBinItem -Force", - "CommandName": "Move-PnpRecycleBinItem" + "Id": 909, + "Command": "Move-PnPRecycleBinItem -Force" }, { - "Id": 910, + "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": 910, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" }, { - "Id": 911, + "CommandName": "Move-PnPTerm", "Rank": 2, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "CommandName": "Move-PnPTerm" + "Id": 911, + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" }, { - "Id": 912, + "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": 912, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" }, { - "Id": 913, + "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": 913, + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" }, { - "Id": 914, + "CommandName": "Move-PnPTermSet", "Rank": 2, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "CommandName": "Move-PnPTermSet" + "Id": 914, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" }, { - "Id": 915, + "CommandName": "New-PnPAzureADGroup", "Rank": 1, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPAzureADGroup" + "Id": 915, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Id": 916, + "CommandName": "New-PnPAzureADGroup", "Rank": 2, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "CommandName": "New-PnPAzureADGroup" + "Id": 916, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" }, { - "Id": 917, + "CommandName": "New-PnPAzureADGroup", "Rank": 3, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "CommandName": "New-PnPAzureADGroup" + "Id": 917, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" }, { - "Id": 918, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 1, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "Id": 918, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" }, { - "Id": 919, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 2, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "Id": 919, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" }, { - "Id": 920, + "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": 920, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" }, { - "Id": 921, + "CommandName": "New-PnPAzureCertificate", "Rank": 1, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "CommandName": "New-PnPAzureCertificate" + "Id": 921, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" }, { - "Id": 922, + "CommandName": "New-PnPAzureCertificate", "Rank": 2, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "CommandName": "New-PnPAzureCertificate" + "Id": 922, + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" }, { - "Id": 923, + "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": 923, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" }, { - "Id": 924, + "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": 924, + "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Id": 925, + "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": 925, + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Id": 926, + "CommandName": "New-PnPGroup", "Rank": 1, - "Command": "New-PnPGroup -Title \"My Site Users\"", - "CommandName": "New-PnPGroup" + "Id": 926, + "Command": "New-PnPGroup -Title \"My Site Users\"" }, { - "Id": 927, + "CommandName": "New-PnPList", "Rank": 1, - "Command": "New-PnPList -Title Announcements -Template Announcements", - "CommandName": "New-PnPList" + "Id": 927, + "Command": "New-PnPList -Title Announcements -Template Announcements" }, { - "Id": 928, + "CommandName": "New-PnPList", "Rank": 2, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "CommandName": "New-PnPList" + "Id": 928, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" }, { - "Id": 929, + "CommandName": "New-PnPList", "Rank": 3, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "CommandName": "New-PnPList" + "Id": 929, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" }, { - "Id": 930, + "CommandName": "New-PnPMicrosoft365Group", "Rank": 1, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPMicrosoft365Group" + "Id": 930, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Id": 931, + "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": 931, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" }, { - "Id": 932, + "CommandName": "New-PnPMicrosoft365Group", "Rank": 3, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group" + "Id": 932, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" }, { - "Id": 933, + "CommandName": "New-PnPMicrosoft365Group", "Rank": 4, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group" + "Id": 933, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" }, { - "Id": 934, + "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": 934, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Id": 935, + "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": 935, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Id": 936, + "CommandName": "New-PnPMicrosoft365Group", "Rank": 7, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "CommandName": "New-PnPMicrosoft365Group" + "Id": 936, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" }, { - "Id": 937, + "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": 937, + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" }, { - "Id": 938, + "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": 938, + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" }, { - "Id": 939, + "CommandName": "New-PnPPersonalSite", "Rank": 1, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "CommandName": "New-PnPPersonalSite" + "Id": 939, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" }, { - "Id": 940, + "CommandName": "New-PnPPlannerPlan", "Rank": 1, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "CommandName": "New-PnPPlannerPlan" + "Id": 940, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" }, { - "Id": 941, + "CommandName": "New-PnPSdnProvider", "Rank": 1, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "CommandName": "New-PnPSdnProvider" + "Id": 941, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" }, { - "Id": 942, + "CommandName": "New-PnPSite", "Rank": 1, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite" + "Id": 942, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Id": 943, + "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": 943, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" }, { - "Id": 944, + "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": 944, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Id": 945, + "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": 945, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Id": 946, + "CommandName": "New-PnPSite", "Rank": 5, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite" + "Id": 946, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Id": 947, + "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": 947, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Id": 948, + "CommandName": "New-PnPSite", "Rank": 7, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "CommandName": "New-PnPSite" + "Id": 948, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" }, { - "Id": 949, + "CommandName": "New-PnPSite", "Rank": 8, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "CommandName": "New-PnPSite" + "Id": 949, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" }, { - "Id": 950, + "CommandName": "New-PnPSite", "Rank": 9, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "CommandName": "New-PnPSite" + "Id": 950, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" }, { - "Id": 951, + "CommandName": "New-PnPSite", "Rank": 10, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "CommandName": "New-PnPSite" + "Id": 951, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" }, { - "Id": 952, + "CommandName": "New-PnPSite", "Rank": 11, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite" + "Id": 952, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Id": 953, + "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": 953, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Id": 954, + "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": 954, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Id": 955, + "CommandName": "New-PnPSite", "Rank": 14, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite" + "Id": 955, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Id": 956, + "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": 956, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Id": 957, + "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": 957, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" }, { - "Id": 958, + "CommandName": "New-PnPSiteCollectionTermStore", "Rank": 1, - "Command": "New-PnPSiteCollectionTermStore", - "CommandName": "New-PnPSiteCollectionTermStore" + "Id": 958, + "Command": "New-PnPSiteCollectionTermStore" }, { - "Id": 959, + "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": 959, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" }, { - "Id": 960, + "CommandName": "New-PnPSiteGroup", "Rank": 2, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "CommandName": "New-PnPSiteGroup" + "Id": 960, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" }, { - "Id": 961, + "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 1, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "CommandName": "New-PnPSiteTemplateFromFolder" + "Id": 961, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" }, { - "Id": 962, + "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 2, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder" + "Id": 962, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" }, { - "Id": 963, + "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 3, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "CommandName": "New-PnPSiteTemplateFromFolder" + "Id": 963, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" }, { - "Id": 964, + "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 4, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "CommandName": "New-PnPSiteTemplateFromFolder" + "Id": 964, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" }, { - "Id": 965, + "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": 965, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" }, { - "Id": 966, + "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": 966, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 967, + "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 7, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "CommandName": "New-PnPSiteTemplateFromFolder" + "Id": 967, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" }, { - "Id": 968, + "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 8, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder" + "Id": 968, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" }, { - "Id": 969, + "CommandName": "New-PnPTeamsApp", "Rank": 1, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "CommandName": "New-PnPTeamsApp" + "Id": 969, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" }, { - "Id": 970, + "CommandName": "New-PnPTeamsTeam", "Rank": 1, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "CommandName": "New-PnPTeamsTeam" + "Id": 970, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" }, { - "Id": 971, + "CommandName": "New-PnPTeamsTeam", "Rank": 2, - "Command": "New-PnPTeamsTeam -GroupId $groupId", - "CommandName": "New-PnPTeamsTeam" + "Id": 971, + "Command": "New-PnPTeamsTeam -GroupId $groupId" }, { - "Id": 972, + "CommandName": "New-PnPTeamsTeam", "Rank": 3, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "CommandName": "New-PnPTeamsTeam" + "Id": 972, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" }, { - "Id": 973, + "CommandName": "New-PnPTeamsTeam", "Rank": 4, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "CommandName": "New-PnPTeamsTeam" + "Id": 973, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Id": 974, + "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": 974, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" }, { - "Id": 975, + "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": 975, + "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": 976, + "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": 976, + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Id": 977, + "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": 977, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Id": 978, + "CommandName": "New-PnPTerm", "Rank": 1, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "CommandName": "New-PnPTerm" + "Id": 978, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" }, { - "Id": 979, + "CommandName": "New-PnPTerm", "Rank": 2, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "New-PnPTerm" + "Id": 979, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 980, + "CommandName": "New-PnPTermGroup", "Rank": 1, - "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "CommandName": "New-PnPTermGroup" + "Id": 980, + "Command": "New-PnPTermGroup -GroupName \"Countries\"" }, { - "Id": 981, + "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": 981, + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" }, { - "Id": 982, + "CommandName": "New-PnPTermSet", "Rank": 1, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "CommandName": "New-PnPTermSet" + "Id": 982, + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" }, { - "Id": 983, + "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": 983, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" }, { - "Id": 984, + "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": 984, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" }, { - "Id": 985, + "CommandName": "New-PnPUser", "Rank": 1, - "Command": "New-PnPUser -LoginName user@company.com", - "CommandName": "New-PnPUser" + "Id": 985, + "Command": "New-PnPUser -LoginName user@company.com" }, { - "Id": 986, + "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": 986, + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" }, { - "Id": 987, + "CommandName": "Publish-PnPApp", "Rank": 1, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Publish-PnPApp" + "Id": 987, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 988, + "CommandName": "Publish-PnPApp", "Rank": 2, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "CommandName": "Publish-PnPApp" + "Id": 988, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" }, { - "Id": 989, + "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": 989, + "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": 990, + "CommandName": "Publish-PnPContentType", "Rank": 1, - "Command": "Publish-PnPContentType -ContentType 0x0101", - "CommandName": "Publish-PnPContentType" + "Id": 990, + "Command": "Publish-PnPContentType -ContentType 0x0101" }, { - "Id": 991, + "CommandName": "Publish-PnPSyntexModel", "Rank": 1, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Publish-PnPSyntexModel" + "Id": 991, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Id": 992, + "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": 992, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Id": 993, + "CommandName": "Read-PnPSiteTemplate", "Rank": 1, - "Command": "Read-PnPSiteTemplate -Path template.pnp", - "CommandName": "Read-PnPSiteTemplate" + "Id": 993, + "Command": "Read-PnPSiteTemplate -Path template.pnp" }, { - "Id": 994, + "CommandName": "Read-PnPSiteTemplate", "Rank": 2, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "CommandName": "Read-PnPSiteTemplate" + "Id": 994, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" }, { - "Id": 995, + "CommandName": "Read-PnPSiteTemplate", "Rank": 3, - "Command": "Read-PnPSiteTemplate -Xml $xml", - "CommandName": "Read-PnPSiteTemplate" + "Id": 995, + "Command": "Read-PnPSiteTemplate -Xml $xml" }, { - "Id": 996, + "CommandName": "Read-PnPTenantTemplate", "Rank": 1, - "Command": "Read-PnPTenantTemplate -Path template.pnp", - "CommandName": "Read-PnPTenantTemplate" + "Id": 996, + "Command": "Read-PnPTenantTemplate -Path template.pnp" }, { - "Id": 997, + "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": 997, + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" }, { - "Id": 998, + "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": 998, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Id": 999, + "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": 999, + "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": 1000, + "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": 1000, + "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": 1001, + "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": 1001, + "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": 1002, + "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": 1002, + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Id": 1003, + "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": 1003, + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Id": 1004, + "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": 1004, + "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": 1005, + "CommandName": "Register-PnPHubSite", "Rank": 1, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Register-PnPHubSite" + "Id": 1005, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Id": 1006, + "CommandName": "Register-PnPHubSite", "Rank": 2, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "CommandName": "Register-PnPHubSite" + "Id": 1006, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" }, { - "Id": 1007, + "CommandName": "Register-PnPManagementShellAccess", "Rank": 1, - "Command": "Register-PnPManagementShellAccess", - "CommandName": "Register-PnPManagementShellAccess" + "Id": 1007, + "Command": "Register-PnPManagementShellAccess" }, { - "Id": 1008, + "CommandName": "Register-PnPManagementShellAccess", "Rank": 2, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "CommandName": "Register-PnPManagementShellAccess" + "Id": 1008, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" }, { - "Id": 1009, + "CommandName": "Register-PnPManagementShellAccess", "Rank": 3, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "CommandName": "Register-PnPManagementShellAccess" + "Id": 1009, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" }, { - "Id": 1010, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 1, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "Id": 1010, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" }, { - "Id": 1011, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 2, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "Id": 1011, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" }, { - "Id": 1012, + "CommandName": "Remove-PnPAlert", "Rank": 1, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "CommandName": "Remove-PnPAlert" + "Id": 1012, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" }, { - "Id": 1013, + "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": 1013, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Id": 1014, + "CommandName": "Remove-PnPApp", "Rank": 1, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Remove-PnPApp" + "Id": 1014, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1015, + "CommandName": "Remove-PnPApp", "Rank": 2, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Remove-PnPApp" + "Id": 1015, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1016, + "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 1, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPApplicationCustomizer" + "Id": 1016, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1017, + "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 2, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPApplicationCustomizer" + "Id": 1017, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Id": 1018, + "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 1, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "CommandName": "Remove-PnPAvailableSiteClassification" + "Id": 1018, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" }, { - "Id": 1019, + "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 2, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Remove-PnPAvailableSiteClassification" + "Id": 1019, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Id": 1020, + "CommandName": "Remove-PnPAzureADApp", "Rank": 1, - "Command": "Remove-PnPAzureADApp -Identity MyApp", - "CommandName": "Remove-PnPAzureADApp" + "Id": 1020, + "Command": "Remove-PnPAzureADApp -Identity MyApp" }, { - "Id": 1021, + "CommandName": "Remove-PnPAzureADApp", "Rank": 2, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Remove-PnPAzureADApp" + "Id": 1021, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 1022, + "CommandName": "Remove-PnPAzureADGroup", "Rank": 1, - "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "CommandName": "Remove-PnPAzureADGroup" + "Id": 1022, + "Command": "Remove-PnPAzureADGroup -Identity $groupId" }, { - "Id": 1023, + "CommandName": "Remove-PnPAzureADGroup", "Rank": 2, - "Command": "Remove-PnPAzureADGroup -Identity $group", - "CommandName": "Remove-PnPAzureADGroup" + "Id": 1023, + "Command": "Remove-PnPAzureADGroup -Identity $group" }, { - "Id": 1024, + "CommandName": "Remove-PnPAzureADGroupMember", "Rank": 1, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupMember" + "Id": 1024, + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1025, + "CommandName": "Remove-PnPAzureADGroupOwner", "Rank": 1, - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupOwner" + "Id": 1025, + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1026, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Id": 1026, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" }, { - "Id": 1027, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Id": 1027, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" }, { - "Id": 1028, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 3, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Id": 1028, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 1029, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 4, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Id": 1029, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Id": 1030, + "CommandName": "Remove-PnPContentType", "Rank": 1, - "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "CommandName": "Remove-PnPContentType" + "Id": 1030, + "Command": "Remove-PnPContentType -Identity \"Project Document\"" }, { - "Id": 1031, + "CommandName": "Remove-PnPContentType", "Rank": 2, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "CommandName": "Remove-PnPContentType" + "Id": 1031, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" }, { - "Id": 1032, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 1, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "Id": 1032, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Id": 1033, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 2, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "Id": 1033, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Id": 1034, + "CommandName": "Remove-PnPContentTypeFromList", "Rank": 1, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPContentTypeFromList" + "Id": 1034, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" }, { - "Id": 1035, + "CommandName": "Remove-PnPCustomAction", "Rank": 1, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPCustomAction" + "Id": 1035, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1036, + "CommandName": "Remove-PnPCustomAction", "Rank": 2, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPCustomAction" + "Id": 1036, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Id": 1037, + "CommandName": "Remove-PnPCustomAction", "Rank": 3, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "CommandName": "Remove-PnPCustomAction" + "Id": 1037, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" }, { - "Id": 1038, + "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Rank": 1, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Remove-PnPDeletedMicrosoft365Group" + "Id": 1038, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 1039, + "CommandName": "Remove-PnPEventReceiver", "Rank": 1, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver" + "Id": 1039, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 1040, + "CommandName": "Remove-PnPEventReceiver", "Rank": 2, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver" + "Id": 1040, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 1041, + "CommandName": "Remove-PnPEventReceiver", "Rank": 3, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "CommandName": "Remove-PnPEventReceiver" + "Id": 1041, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" }, { - "Id": 1042, + "CommandName": "Remove-PnPEventReceiver", "Rank": 4, - "Command": "Remove-PnPEventReceiver -List ProjectList", - "CommandName": "Remove-PnPEventReceiver" + "Id": 1042, + "Command": "Remove-PnPEventReceiver -List ProjectList" }, { - "Id": 1043, + "CommandName": "Remove-PnPEventReceiver", "Rank": 5, - "Command": "Remove-PnPEventReceiver", - "CommandName": "Remove-PnPEventReceiver" + "Id": 1043, + "Command": "Remove-PnPEventReceiver" }, { - "Id": 1044, + "CommandName": "Remove-PnPEventReceiver", "Rank": 6, - "Command": "Remove-PnPEventReceiver -Scope Site", - "CommandName": "Remove-PnPEventReceiver" + "Id": 1044, + "Command": "Remove-PnPEventReceiver -Scope Site" }, { - "Id": 1045, + "CommandName": "Remove-PnPEventReceiver", "Rank": 7, - "Command": "Remove-PnPEventReceiver -Scope Web", - "CommandName": "Remove-PnPEventReceiver" + "Id": 1045, + "Command": "Remove-PnPEventReceiver -Scope Web" }, { - "Id": 1046, + "CommandName": "Remove-PnPEventReceiver", "Rank": 8, - "Command": "Remove-PnPEventReceiver -Scope All", - "CommandName": "Remove-PnPEventReceiver" + "Id": 1046, + "Command": "Remove-PnPEventReceiver -Scope All" }, { - "Id": 1047, + "CommandName": "Remove-PnPField", "Rank": 1, - "Command": "Remove-PnPField -Identity \"Speakers\"", - "CommandName": "Remove-PnPField" + "Id": 1047, + "Command": "Remove-PnPField -Identity \"Speakers\"" }, { - "Id": 1048, + "CommandName": "Remove-PnPField", "Rank": 2, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Remove-PnPField" + "Id": 1048, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Id": 1049, + "CommandName": "Remove-PnPFieldFromContentType", "Rank": 1, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPFieldFromContentType" + "Id": 1049, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Id": 1050, + "CommandName": "Remove-PnPFieldFromContentType", "Rank": 2, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "CommandName": "Remove-PnPFieldFromContentType" + "Id": 1050, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" }, { - "Id": 1051, + "CommandName": "Remove-PnPFile", "Rank": 1, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile" + "Id": 1051, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" }, { - "Id": 1052, + "CommandName": "Remove-PnPFile", "Rank": 2, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile" + "Id": 1052, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" }, { - "Id": 1053, + "CommandName": "Remove-PnPFile", "Rank": 3, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "CommandName": "Remove-PnPFile" + "Id": 1053, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" }, { - "Id": 1054, + "CommandName": "Remove-PnPFileFromSiteTemplate", "Rank": 1, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "CommandName": "Remove-PnPFileFromSiteTemplate" + "Id": 1054, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" }, { - "Id": 1055, + "CommandName": "Remove-PnPFileSharingLink", "Rank": 1, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Remove-PnPFileSharingLink" + "Id": 1055, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 1056, + "CommandName": "Remove-PnPFileSharingLink", "Rank": 2, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "CommandName": "Remove-PnPFileSharingLink" + "Id": 1056, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" }, { - "Id": 1057, + "CommandName": "Remove-PnPFileVersion", "Rank": 1, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Remove-PnPFileVersion" + "Id": 1057, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Id": 1058, + "CommandName": "Remove-PnPFileVersion", "Rank": 2, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Remove-PnPFileVersion" + "Id": 1058, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Id": 1059, + "CommandName": "Remove-PnPFileVersion", "Rank": 3, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "CommandName": "Remove-PnPFileVersion" + "Id": 1059, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" }, { - "Id": 1060, + "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": 1060, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" }, { - "Id": 1061, + "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": 1061, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" }, { - "Id": 1062, + "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": 1062, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" }, { - "Id": 1063, + "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": 1063, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" }, { - "Id": 1064, + "CommandName": "Remove-PnPFolder", "Rank": 1, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Remove-PnPFolder" + "Id": 1064, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Id": 1065, + "CommandName": "Remove-PnPFolder", "Rank": 2, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "CommandName": "Remove-PnPFolder" + "Id": 1065, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" }, { - "Id": 1066, + "CommandName": "Remove-PnPFolderSharingLink", "Rank": 1, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Remove-PnPFolderSharingLink" + "Id": 1066, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 1067, + "CommandName": "Remove-PnPFolderSharingLink", "Rank": 2, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "CommandName": "Remove-PnPFolderSharingLink" + "Id": 1067, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" }, { - "Id": 1068, + "CommandName": "Remove-PnPGraphSubscription", "Rank": 1, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "CommandName": "Remove-PnPGraphSubscription" + "Id": 1068, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" }, { - "Id": 1069, + "CommandName": "Remove-PnPGroup", "Rank": 1, - "Command": "Remove-PnPGroup -Identity \"My Users\"", - "CommandName": "Remove-PnPGroup" + "Id": 1069, + "Command": "Remove-PnPGroup -Identity \"My Users\"" }, { - "Id": 1070, + "CommandName": "Remove-PnPGroupMember", "Rank": 1, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Remove-PnPGroupMember" + "Id": 1070, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Id": 1071, + "CommandName": "Remove-PnPHomeSite", "Rank": 1, - "Command": "Remove-PnPHomeSite", - "CommandName": "Remove-PnPHomeSite" + "Id": 1071, + "Command": "Remove-PnPHomeSite" }, { - "Id": 1072, + "CommandName": "Remove-PnPHubSiteAssociation", "Rank": 1, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPHubSiteAssociation" + "Id": 1072, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Id": 1073, + "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 1, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "CommandName": "Remove-PnPHubToHubAssociation" + "Id": 1073, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" }, { - "Id": 1074, + "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 2, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "CommandName": "Remove-PnPHubToHubAssociation" + "Id": 1074, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" }, { - "Id": 1075, + "CommandName": "Remove-PnPIndexedProperty", "Rank": 1, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "CommandName": "Remove-PnPIndexedProperty" + "Id": 1075, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" }, { - "Id": 1076, + "CommandName": "Remove-PnPJavaScriptLink", "Rank": 1, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "CommandName": "Remove-PnPJavaScriptLink" + "Id": 1076, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery" }, { - "Id": 1077, + "CommandName": "Remove-PnPJavaScriptLink", "Rank": 2, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink" + "Id": 1077, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" }, { - "Id": 1078, + "CommandName": "Remove-PnPJavaScriptLink", "Rank": 3, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "CommandName": "Remove-PnPJavaScriptLink" + "Id": 1078, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" }, { - "Id": 1079, + "CommandName": "Remove-PnPJavaScriptLink", "Rank": 4, - "Command": "Remove-PnPJavaScriptLink -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink" + "Id": 1079, + "Command": "Remove-PnPJavaScriptLink -Scope Site" }, { - "Id": 1080, + "CommandName": "Remove-PnPJavaScriptLink", "Rank": 5, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "CommandName": "Remove-PnPJavaScriptLink" + "Id": 1080, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" }, { - "Id": 1081, + "CommandName": "Remove-PnPKnowledgeHubSite", "Rank": 1, - "Command": "Remove-PnPKnowledgeHubSite", - "CommandName": "Remove-PnPKnowledgeHubSite" + "Id": 1081, + "Command": "Remove-PnPKnowledgeHubSite" }, { - "Id": 1082, + "CommandName": "Remove-PnPList", "Rank": 1, - "Command": "Remove-PnPList -Identity Announcements", - "CommandName": "Remove-PnPList" + "Id": 1082, + "Command": "Remove-PnPList -Identity Announcements" }, { - "Id": 1083, + "CommandName": "Remove-PnPList", "Rank": 2, - "Command": "Remove-PnPList -Identity Announcements -Force", - "CommandName": "Remove-PnPList" + "Id": 1083, + "Command": "Remove-PnPList -Identity Announcements -Force" }, { - "Id": 1084, + "CommandName": "Remove-PnPList", "Rank": 3, - "Command": "Remove-PnPList -Identity Announcements -Recycle", - "CommandName": "Remove-PnPList" + "Id": 1084, + "Command": "Remove-PnPList -Identity Announcements -Recycle" }, { - "Id": 1085, + "CommandName": "Remove-PnPList", "Rank": 4, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "CommandName": "Remove-PnPList" + "Id": 1085, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" }, { - "Id": 1086, + "CommandName": "Remove-PnPListDesign", "Rank": 1, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPListDesign" + "Id": 1086, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1087, + "CommandName": "Remove-PnPListItem", "Rank": 1, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Remove-PnPListItem" + "Id": 1087, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" }, { - "Id": 1088, + "CommandName": "Remove-PnPListItem", "Rank": 2, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "CommandName": "Remove-PnPListItem" + "Id": 1088, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" }, { - "Id": 1089, + "CommandName": "Remove-PnPListItem", "Rank": 3, - "Command": "Remove-PnPListItem -List \"Demo List\"", - "CommandName": "Remove-PnPListItem" + "Id": 1089, + "Command": "Remove-PnPListItem -List \"Demo List\"" }, { - "Id": 1090, + "CommandName": "Remove-PnPListItemAttachment", "Rank": 1, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "CommandName": "Remove-PnPListItemAttachment" + "Id": 1090, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" }, { - "Id": 1091, + "CommandName": "Remove-PnPListItemAttachment", "Rank": 2, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "CommandName": "Remove-PnPListItemAttachment" + "Id": 1091, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" }, { - "Id": 1092, + "CommandName": "Remove-PnPListItemAttachment", "Rank": 3, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment" + "Id": 1092, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" }, { - "Id": 1093, + "CommandName": "Remove-PnPListItemAttachment", "Rank": 4, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment" + "Id": 1093, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" }, { - "Id": 1094, + "CommandName": "Remove-PnPListItemAttachment", "Rank": 5, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "CommandName": "Remove-PnPListItemAttachment" + "Id": 1094, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" }, { - "Id": 1095, + "CommandName": "Remove-PnPListItemVersion", "Rank": 1, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Remove-PnPListItemVersion" + "Id": 1095, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Id": 1096, + "CommandName": "Remove-PnPListItemVersion", "Rank": 2, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Remove-PnPListItemVersion" + "Id": 1096, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Id": 1097, + "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 1, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Remove-PnPMicrosoft365Group" + "Id": 1097, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" }, { - "Id": 1098, + "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 2, - "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "CommandName": "Remove-PnPMicrosoft365Group" + "Id": 1098, + "Command": "Remove-PnPMicrosoft365Group -Identity $group" }, { - "Id": 1099, + "CommandName": "Remove-PnPMicrosoft365GroupMember", "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupMember" + "Id": 1099, + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1100, + "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupOwner" + "Id": 1100, + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1101, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "Id": 1101, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" }, { - "Id": 1102, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 2, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "Id": 1102, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" }, { - "Id": 1103, + "CommandName": "Remove-PnPNavigationNode", "Rank": 1, - "Command": "Remove-PnPNavigationNode -Identity 1032", - "CommandName": "Remove-PnPNavigationNode" + "Id": 1103, + "Command": "Remove-PnPNavigationNode -Identity 1032" }, { - "Id": 1104, + "CommandName": "Remove-PnPNavigationNode", "Rank": 2, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "CommandName": "Remove-PnPNavigationNode" + "Id": 1104, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" }, { - "Id": 1105, + "CommandName": "Remove-PnPNavigationNode", "Rank": 3, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "CommandName": "Remove-PnPNavigationNode" + "Id": 1105, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" }, { - "Id": 1106, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 1, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "CommandName": "Remove-PnPOrgAssetsLibrary" + "Id": 1106, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" }, { - "Id": 1107, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 2, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "CommandName": "Remove-PnPOrgAssetsLibrary" + "Id": 1107, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" }, { - "Id": 1108, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 3, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "CommandName": "Remove-PnPOrgAssetsLibrary" + "Id": 1108, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" }, { - "Id": 1109, + "CommandName": "Remove-PnPOrgNewsSite", "Rank": 1, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPOrgNewsSite" + "Id": 1109, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Id": 1110, + "CommandName": "Remove-PnPPage", "Rank": 1, - "Command": "Remove-PnPPage -Identity \"MyPage\"", - "CommandName": "Remove-PnPPage" + "Id": 1110, + "Command": "Remove-PnPPage -Identity \"MyPage\"" }, { - "Id": 1111, + "CommandName": "Remove-PnPPage", "Rank": 2, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "CommandName": "Remove-PnPPage" + "Id": 1111, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" }, { - "Id": 1112, + "CommandName": "Remove-PnPPage", "Rank": 3, - "Command": "Remove-PnPPage $page", - "CommandName": "Remove-PnPPage" + "Id": 1112, + "Command": "Remove-PnPPage $page" }, { - "Id": 1113, + "CommandName": "Remove-PnPPage", "Rank": 4, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "CommandName": "Remove-PnPPage" + "Id": 1113, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" }, { - "Id": 1114, + "CommandName": "Remove-PnPPageComponent", "Rank": 1, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPPageComponent" + "Id": 1114, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 1115, + "CommandName": "Remove-PnPPlannerBucket", "Rank": 1, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "CommandName": "Remove-PnPPlannerBucket" + "Id": 1115, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" }, { - "Id": 1116, + "CommandName": "Remove-PnPPlannerPlan", "Rank": 1, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "CommandName": "Remove-PnPPlannerPlan" + "Id": 1116, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" }, { - "Id": 1117, + "CommandName": "Remove-PnPPlannerRoster", "Rank": 1, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Remove-PnPPlannerRoster" + "Id": 1117, + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Id": 1118, + "CommandName": "Remove-PnPPlannerRosterMember", "Rank": 1, - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPPlannerRosterMember" + "Id": 1118, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 1119, + "CommandName": "Remove-PnPPlannerTask", "Rank": 1, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "CommandName": "Remove-PnPPlannerTask" + "Id": 1119, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" }, { - "Id": 1120, + "CommandName": "Remove-PnPPropertyBagValue", "Rank": 1, - "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "CommandName": "Remove-PnPPropertyBagValue" + "Id": 1120, + "Command": "Remove-PnPPropertyBagValue -Key MyKey" }, { - "Id": 1121, + "CommandName": "Remove-PnPPropertyBagValue", "Rank": 2, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "CommandName": "Remove-PnPPropertyBagValue" + "Id": 1121, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" }, { - "Id": 1122, + "CommandName": "Remove-PnPPropertyBagValue", "Rank": 3, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "CommandName": "Remove-PnPPropertyBagValue" + "Id": 1122, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" }, { - "Id": 1123, + "CommandName": "Remove-PnPPublishingImageRendition", "Rank": 1, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Remove-PnPPublishingImageRendition" + "Id": 1123, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Id": 1124, + "CommandName": "Remove-PnPRoleDefinition", "Rank": 1, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "CommandName": "Remove-PnPRoleDefinition" + "Id": 1124, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" }, { - "Id": 1125, + "CommandName": "Remove-PnPSdnProvider", "Rank": 1, - "Command": "Remove-PnPSdnProvider -Confirm:false", - "CommandName": "Remove-PnPSdnProvider" + "Id": 1125, + "Command": "Remove-PnPSdnProvider -Confirm:false" }, { - "Id": 1126, + "CommandName": "Remove-PnPSearchConfiguration", "Rank": 1, - "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "CommandName": "Remove-PnPSearchConfiguration" + "Id": 1126, + "Command": "Remove-PnPSearchConfiguration -Configuration $config" }, { - "Id": 1127, + "CommandName": "Remove-PnPSearchConfiguration", "Rank": 2, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Remove-PnPSearchConfiguration" + "Id": 1127, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Id": 1128, + "CommandName": "Remove-PnPSearchConfiguration", "Rank": 3, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration" + "Id": 1128, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Id": 1129, + "CommandName": "Remove-PnPSearchConfiguration", "Rank": 4, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration" + "Id": 1129, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 1130, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 1, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPSiteCollectionAdmin" + "Id": 1130, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Id": 1131, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 2, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Remove-PnPSiteCollectionAdmin" + "Id": 1131, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Id": 1132, + "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Rank": 1, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Remove-PnPSiteCollectionAppCatalog" + "Id": 1132, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "Id": 1133, + "CommandName": "Remove-PnPSiteCollectionTermStore", "Rank": 1, - "Command": "Remove-PnPSiteCollectionTermStore", - "CommandName": "Remove-PnPSiteCollectionTermStore" + "Id": 1133, + "Command": "Remove-PnPSiteCollectionTermStore" }, { - "Id": 1134, + "CommandName": "Remove-PnPSiteDesign", "Rank": 1, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesign" + "Id": 1134, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1135, + "CommandName": "Remove-PnPSiteDesignTask", "Rank": 1, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesignTask" + "Id": 1135, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1136, + "CommandName": "Remove-PnPSiteGroup", "Rank": 1, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Remove-PnPSiteGroup" + "Id": 1136, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1137, + "CommandName": "Remove-PnPSiteGroup", "Rank": 2, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "CommandName": "Remove-PnPSiteGroup" + "Id": 1137, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" }, { - "Id": 1138, + "CommandName": "Remove-PnPSiteScript", "Rank": 1, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteScript" + "Id": 1138, + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1139, + "CommandName": "Remove-PnPSiteUserInvitations", "Rank": 1, - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Remove-PnPSiteUserInvitations" + "Id": 1139, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Id": 1140, + "CommandName": "Remove-PnPStorageEntity", "Rank": 1, - "Command": "Remove-PnPStorageEntity -Key MyKey", - "CommandName": "Remove-PnPStorageEntity" + "Id": 1140, + "Command": "Remove-PnPStorageEntity -Key MyKey" }, { - "Id": 1141, + "CommandName": "Remove-PnPStorageEntity", "Rank": 2, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Remove-PnPStorageEntity" + "Id": 1141, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Id": 1142, + "CommandName": "Remove-PnPStoredCredential", "Rank": 1, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "CommandName": "Remove-PnPStoredCredential" + "Id": 1142, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" }, { - "Id": 1143, + "CommandName": "Remove-PnPTaxonomyItem", "Rank": 1, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "CommandName": "Remove-PnPTaxonomyItem" + "Id": 1143, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" }, { - "Id": 1144, + "CommandName": "Remove-PnPTaxonomyItem", "Rank": 2, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "CommandName": "Remove-PnPTaxonomyItem" + "Id": 1144, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" }, { - "Id": 1145, + "CommandName": "Remove-PnPTeamsApp", "Rank": 1, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "CommandName": "Remove-PnPTeamsApp" + "Id": 1145, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" }, { - "Id": 1146, + "CommandName": "Remove-PnPTeamsApp", "Rank": 2, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "CommandName": "Remove-PnPTeamsApp" + "Id": 1146, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" }, { - "Id": 1147, + "CommandName": "Remove-PnPTeamsChannel", "Rank": 1, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "CommandName": "Remove-PnPTeamsChannel" + "Id": 1147, + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" }, { - "Id": 1148, + "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 1, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "CommandName": "Remove-PnPTeamsChannelUser" + "Id": 1148, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" }, { - "Id": 1149, + "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 2, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Remove-PnPTeamsChannelUser" + "Id": 1149, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 1150, + "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 3, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "CommandName": "Remove-PnPTeamsChannelUser" + "Id": 1150, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" }, { - "Id": 1151, + "CommandName": "Remove-PnPTeamsTab", "Rank": 1, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "CommandName": "Remove-PnPTeamsTab" + "Id": 1151, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" }, { - "Id": 1152, + "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": 1152, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" }, { - "Id": 1153, + "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": 1153, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" }, { - "Id": 1154, + "CommandName": "Remove-PnPTeamsTag", "Rank": 1, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Remove-PnPTeamsTag" + "Id": 1154, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Id": 1155, + "CommandName": "Remove-PnPTeamsTeam", "Rank": 1, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Remove-PnPTeamsTeam" + "Id": 1155, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Id": 1156, + "CommandName": "Remove-PnPTeamsTeam", "Rank": 2, - "Command": "Remove-PnPTeamsTeam -Identity testteam", - "CommandName": "Remove-PnPTeamsTeam" + "Id": 1156, + "Command": "Remove-PnPTeamsTeam -Identity testteam" }, { - "Id": 1157, + "CommandName": "Remove-PnPTeamsUser", "Rank": 1, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "CommandName": "Remove-PnPTeamsUser" + "Id": 1157, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" }, { - "Id": 1158, + "CommandName": "Remove-PnPTeamsUser", "Rank": 2, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Remove-PnPTeamsUser" + "Id": 1158, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Id": 1159, + "CommandName": "Remove-PnPTenantCdnOrigin", "Rank": 1, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Remove-PnPTenantCdnOrigin" + "Id": 1159, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Id": 1160, + "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 1, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantDeletedSite" + "Id": 1160, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1161, + "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 2, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Remove-PnPTenantDeletedSite" + "Id": 1161, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Id": 1162, + "CommandName": "Remove-PnPTenantSite", "Rank": 1, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantSite" + "Id": 1162, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1163, + "CommandName": "Remove-PnPTenantSite", "Rank": 2, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "CommandName": "Remove-PnPTenantSite" + "Id": 1163, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" }, { - "Id": 1164, + "CommandName": "Remove-PnPTenantSite", "Rank": 3, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "CommandName": "Remove-PnPTenantSite" + "Id": 1164, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" }, { - "Id": 1165, + "CommandName": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, - "Command": "Remove-PnPTenantSyncClientRestriction", - "CommandName": "Remove-PnPTenantSyncClientRestriction" + "Id": 1165, + "Command": "Remove-PnPTenantSyncClientRestriction" }, { - "Id": 1166, + "CommandName": "Remove-PnPTenantTheme", "Rank": 1, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Remove-PnPTenantTheme" + "Id": 1166, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Id": 1167, + "CommandName": "Remove-PnPTerm", "Rank": 1, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTerm" + "Id": 1167, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Id": 1168, + "CommandName": "Remove-PnPTerm", "Rank": 2, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTerm" + "Id": 1168, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 1169, + "CommandName": "Remove-PnPTermGroup", "Rank": 1, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTermGroup" + "Id": 1169, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Id": 1170, + "CommandName": "Remove-PnPTermGroup", "Rank": 2, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "CommandName": "Remove-PnPTermGroup" + "Id": 1170, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" }, { - "Id": 1171, + "CommandName": "Remove-PnPTermGroup", "Rank": 3, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "CommandName": "Remove-PnPTermGroup" + "Id": 1171, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" }, { - "Id": 1172, + "CommandName": "Remove-PnPTermLabel", "Rank": 1, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "CommandName": "Remove-PnPTermLabel" + "Id": 1172, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" }, { - "Id": 1173, + "CommandName": "Remove-PnPTermLabel", "Rank": 2, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTermLabel" + "Id": 1173, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 1174, + "CommandName": "Remove-PnPUser", "Rank": 1, - "Command": "Remove-PnPUser -Identity 23", - "CommandName": "Remove-PnPUser" + "Id": 1174, + "Command": "Remove-PnPUser -Identity 23" }, { - "Id": 1175, + "CommandName": "Remove-PnPUser", "Rank": 2, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "CommandName": "Remove-PnPUser" + "Id": 1175, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" }, { - "Id": 1176, + "CommandName": "Remove-PnPUser", "Rank": 3, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "CommandName": "Remove-PnPUser" + "Id": 1176, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" }, { - "Id": 1177, + "CommandName": "Remove-PnPUserInfo", "Rank": 1, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Remove-PnPUserInfo" + "Id": 1177, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Id": 1178, + "CommandName": "Remove-PnPUserProfile", "Rank": 1, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Remove-PnPUserProfile" + "Id": 1178, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com" }, { - "Id": 1179, + "CommandName": "Remove-PnPView", "Rank": 1, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "CommandName": "Remove-PnPView" + "Id": 1179, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" }, { - "Id": 1180, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Rank": 1, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Remove-PnPVivaConnectionsDashboardACE" + "Id": 1180, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Id": 1181, + "CommandName": "Remove-PnPWeb", "Rank": 1, - "Command": "Remove-PnPWeb -Identity projectA", - "CommandName": "Remove-PnPWeb" + "Id": 1181, + "Command": "Remove-PnPWeb -Identity projectA" }, { - "Id": 1182, + "CommandName": "Remove-PnPWeb", "Rank": 2, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "CommandName": "Remove-PnPWeb" + "Id": 1182, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" }, { - "Id": 1183, + "CommandName": "Remove-PnPWebhookSubscription", "Rank": 1, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "CommandName": "Remove-PnPWebhookSubscription" + "Id": 1183, + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" }, { - "Id": 1184, + "CommandName": "Remove-PnPWebPart", "Rank": 1, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPWebPart" + "Id": 1184, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 1185, + "CommandName": "Remove-PnPWebPart", "Rank": 2, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "CommandName": "Remove-PnPWebPart" + "Id": 1185, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" }, { - "Id": 1186, + "CommandName": "Remove-PnPWikiPage", "Rank": 1, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "CommandName": "Remove-PnPWikiPage" + "Id": 1186, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" }, { - "Id": 1187, + "CommandName": "Rename-PnPFile", "Rank": 1, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile" + "Id": 1187, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" }, { - "Id": 1188, + "CommandName": "Rename-PnPFile", "Rank": 2, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile" + "Id": 1188, + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" }, { - "Id": 1189, + "CommandName": "Rename-PnPFile", "Rank": 3, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "CommandName": "Rename-PnPFile" + "Id": 1189, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" }, { - "Id": 1190, + "CommandName": "Rename-PnPFolder", "Rank": 1, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "CommandName": "Rename-PnPFolder" + "Id": 1190, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" }, { - "Id": 1191, + "CommandName": "Repair-PnPSite", "Rank": 1, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Repair-PnPSite" + "Id": 1191, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1192, + "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": 1192, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Id": 1193, + "CommandName": "Request-PnPAccessToken", "Rank": 1, - "Command": "Request-PnPAccessToken", - "CommandName": "Request-PnPAccessToken" + "Id": 1193, + "Command": "Request-PnPAccessToken" }, { - "Id": 1194, + "CommandName": "Request-PnPAccessToken", "Rank": 2, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "CommandName": "Request-PnPAccessToken" + "Id": 1194, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" }, { - "Id": 1195, + "CommandName": "Request-PnPAccessToken", "Rank": 3, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "CommandName": "Request-PnPAccessToken" + "Id": 1195, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" }, { - "Id": 1196, + "CommandName": "Request-PnPAccessToken", "Rank": 4, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "CommandName": "Request-PnPAccessToken" + "Id": 1196, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" }, { - "Id": 1197, + "CommandName": "Request-PnPPersonalSite", "Rank": 1, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "CommandName": "Request-PnPPersonalSite" + "Id": 1197, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" }, { - "Id": 1198, + "CommandName": "Request-PnPPersonalSite", "Rank": 2, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "CommandName": "Request-PnPPersonalSite" + "Id": 1198, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" }, { - "Id": 1199, + "CommandName": "Request-PnPReIndexList", "Rank": 1, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "CommandName": "Request-PnPReIndexList" + "Id": 1199, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"" }, { - "Id": 1200, + "CommandName": "Request-PnPReIndexWeb", "Rank": 1, - "Command": "Request-PnPReIndexWeb", - "CommandName": "Request-PnPReIndexWeb" + "Id": 1200, + "Command": "Request-PnPReIndexWeb" }, { - "Id": 1201, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 1, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "Id": 1201, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" }, { - "Id": 1202, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 2, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "Id": 1202, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" }, { - "Id": 1203, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 3, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "Id": 1203, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" }, { - "Id": 1204, + "CommandName": "Reset-PnPFileVersion", "Rank": 1, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "CommandName": "Reset-PnPFileVersion" + "Id": 1204, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" }, { - "Id": 1205, + "CommandName": "Reset-PnPFileVersion", "Rank": 2, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "CommandName": "Reset-PnPFileVersion" + "Id": 1205, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" }, { - "Id": 1206, + "CommandName": "Reset-PnPLabel", "Rank": 1, - "Command": "Reset-PnPLabel -List \"Demo List\"", - "CommandName": "Reset-PnPLabel" + "Id": 1206, + "Command": "Reset-PnPLabel -List \"Demo List\"" }, { - "Id": 1207, + "CommandName": "Reset-PnPLabel", "Rank": 2, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "CommandName": "Reset-PnPLabel" + "Id": 1207, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" }, { - "Id": 1208, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, - "Command": "Reset-PnPMicrosoft365GroupExpiration", - "CommandName": "Reset-PnPMicrosoft365GroupExpiration" + "Id": 1208, + "Command": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Id": 1209, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Rank": 1, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" + "Id": 1209, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" }, { - "Id": 1210, + "CommandName": "Resolve-PnPFolder", "Rank": 1, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "CommandName": "Resolve-PnPFolder" + "Id": 1210, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" }, { - "Id": 1211, + "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Rank": 1, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Restore-PnPDeletedMicrosoft365Group" + "Id": 1211, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 1212, + "CommandName": "Restore-PnPFileVersion", "Rank": 1, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion" + "Id": 1212, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Id": 1213, + "CommandName": "Restore-PnPFileVersion", "Rank": 2, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion" + "Id": 1213, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" }, { - "Id": 1214, + "CommandName": "Restore-PnPFileVersion", "Rank": 3, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Restore-PnPFileVersion" + "Id": 1214, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Id": 1215, + "CommandName": "Restore-PnPListItemVersion", "Rank": 1, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Restore-PnPListItemVersion" + "Id": 1215, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Id": 1216, + "CommandName": "Restore-PnPListItemVersion", "Rank": 2, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Restore-PnPListItemVersion" + "Id": 1216, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Id": 1217, + "CommandName": "Restore-PnPRecycleBinItem", "Rank": 1, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Restore-PnPRecycleBinItem" + "Id": 1217, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Id": 1218, + "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 1, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantRecycleBinItem" + "Id": 1218, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1219, + "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 2, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Restore-PnPTenantRecycleBinItem" + "Id": 1219, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "Id": 1220, + "CommandName": "Restore-PnPTenantSite", "Rank": 1, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantSite" + "Id": 1220, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1221, + "CommandName": "Restore-PnPTenantSite", "Rank": 2, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Restore-PnPTenantSite" + "Id": 1221, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Id": 1222, + "CommandName": "Restore-PnPTenantSite", "Rank": 3, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "CommandName": "Restore-PnPTenantSite" + "Id": 1222, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" }, { - "Id": 1223, + "CommandName": "Revoke-PnPAzureADAppSitePermission", "Rank": 1, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "CommandName": "Revoke-PnPAzureADAppSitePermission" + "Id": 1223, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" }, { - "Id": 1224, + "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": 1224, + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 1225, + "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": 1225, + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 1226, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Rank": 1, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Revoke-PnPTenantServicePrincipalPermission" + "Id": 1226, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Id": 1227, + "CommandName": "Revoke-PnPUserSession", "Rank": 1, - "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "CommandName": "Revoke-PnPUserSession" + "Id": 1227, + "Command": "Revoke-PnPUserSession -User user1@contoso.com" }, { - "Id": 1228, + "CommandName": "Save-PnPPageConversionLog", "Rank": 1, - "Command": "Save-PnPPageConversionLog", - "CommandName": "Save-PnPPageConversionLog" + "Id": 1228, + "Command": "Save-PnPPageConversionLog" }, { - "Id": 1229, + "CommandName": "Save-PnPSiteTemplate", "Rank": 1, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "CommandName": "Save-PnPSiteTemplate" + "Id": 1229, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" }, { - "Id": 1230, + "CommandName": "Save-PnPTenantTemplate", "Rank": 1, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "CommandName": "Save-PnPTenantTemplate" + "Id": 1230, + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" }, { - "Id": 1231, + "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": 1231, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Id": 1232, + "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": 1232, + "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": 1233, + "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": 1233, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Id": 1234, + "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": 1234, + "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": 1235, + "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": 1235, + "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": 1236, + "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": 1236, + "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": 1237, + "CommandName": "Set-PnPAdaptiveScopeProperty", "Rank": 1, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "CommandName": "Set-PnPAdaptiveScopeProperty" + "Id": 1237, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" }, { - "Id": 1238, + "CommandName": "Set-PnPApplicationCustomizer", "Rank": 1, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Set-PnPApplicationCustomizer" + "Id": 1238, + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1239, + "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": 1239, + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" }, { - "Id": 1240, + "CommandName": "Set-PnPAppSideLoading", "Rank": 1, - "Command": "Set-PnPAppSideLoading -On", - "CommandName": "Set-PnPAppSideLoading" + "Id": 1240, + "Command": "Set-PnPAppSideLoading -On" }, { - "Id": 1241, + "CommandName": "Set-PnPAppSideLoading", "Rank": 2, - "Command": "Set-PnPAppSideLoading -Off", - "CommandName": "Set-PnPAppSideLoading" + "Id": 1241, + "Command": "Set-PnPAppSideLoading -Off" }, { - "Id": 1242, + "CommandName": "Set-PnPAuditing", "Rank": 1, - "Command": "Set-PnPAuditing -EnableAll", - "CommandName": "Set-PnPAuditing" + "Id": 1242, + "Command": "Set-PnPAuditing -EnableAll" }, { - "Id": 1243, + "CommandName": "Set-PnPAuditing", "Rank": 2, - "Command": "Set-PnPAuditing -DisableAll", - "CommandName": "Set-PnPAuditing" + "Id": 1243, + "Command": "Set-PnPAuditing -DisableAll" }, { - "Id": 1244, + "CommandName": "Set-PnPAuditing", "Rank": 3, - "Command": "Set-PnPAuditing -RetentionTime 7", - "CommandName": "Set-PnPAuditing" + "Id": 1244, + "Command": "Set-PnPAuditing -RetentionTime 7" }, { - "Id": 1245, + "CommandName": "Set-PnPAuditing", "Rank": 4, - "Command": "Set-PnPAuditing -TrimAuditLog", - "CommandName": "Set-PnPAuditing" + "Id": 1245, + "Command": "Set-PnPAuditing -TrimAuditLog" }, { - "Id": 1246, + "CommandName": "Set-PnPAuditing", "Rank": 5, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "CommandName": "Set-PnPAuditing" + "Id": 1246, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" }, { - "Id": 1247, + "CommandName": "Set-PnPAvailablePageLayouts", "Rank": 1, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "CommandName": "Set-PnPAvailablePageLayouts" + "Id": 1247, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" }, { - "Id": 1248, + "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 1, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "CommandName": "Set-PnPAzureADAppSitePermission" + "Id": 1248, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" }, { - "Id": 1249, + "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 2, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "CommandName": "Set-PnPAzureADAppSitePermission" + "Id": 1249, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" }, { - "Id": 1250, + "CommandName": "Set-PnPAzureADGroup", "Rank": 1, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup" + "Id": 1250, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" }, { - "Id": 1251, + "CommandName": "Set-PnPAzureADGroup", "Rank": 2, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup" + "Id": 1251, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Id": 1252, + "CommandName": "Set-PnPAzureADGroup", "Rank": 3, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPAzureADGroup" + "Id": 1252, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" }, { - "Id": 1253, + "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 1, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "CommandName": "Set-PnPBrowserIdleSignout" + "Id": 1253, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" }, { - "Id": 1254, + "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 2, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "CommandName": "Set-PnPBrowserIdleSignout" + "Id": 1254, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" }, { - "Id": 1255, + "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 3, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "CommandName": "Set-PnPBrowserIdleSignout" + "Id": 1255, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" }, { - "Id": 1256, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 1, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "Id": 1256, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" }, { - "Id": 1257, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "Id": 1257, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" }, { - "Id": 1258, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Id": 1258, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" }, { - "Id": 1259, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 2, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Id": 1259, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" }, { - "Id": 1260, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 3, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Id": 1260, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" }, { - "Id": 1261, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 4, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Id": 1261, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" }, { - "Id": 1262, + "CommandName": "Set-PnPContentType", "Rank": 1, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType" + "Id": 1262, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Id": 1263, + "CommandName": "Set-PnPContentType", "Rank": 2, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "CommandName": "Set-PnPContentType" + "Id": 1263, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" }, { - "Id": 1264, + "CommandName": "Set-PnPContentType", "Rank": 3, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType" + "Id": 1264, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Id": 1265, + "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": 1265, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Id": 1266, + "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": 1266, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Id": 1267, + "CommandName": "Set-PnPDefaultColumnValues", "Rank": 1, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "CommandName": "Set-PnPDefaultColumnValues" + "Id": 1267, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" }, { - "Id": 1268, + "CommandName": "Set-PnPDefaultColumnValues", "Rank": 2, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "CommandName": "Set-PnPDefaultColumnValues" + "Id": 1268, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" }, { - "Id": 1269, + "CommandName": "Set-PnPDefaultColumnValues", "Rank": 3, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "CommandName": "Set-PnPDefaultColumnValues" + "Id": 1269, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" }, { - "Id": 1270, + "CommandName": "Set-PnPDefaultColumnValues", "Rank": 4, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "CommandName": "Set-PnPDefaultColumnValues" + "Id": 1270, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" }, { - "Id": 1271, + "CommandName": "Set-PnPDefaultContentTypeToList", "Rank": 1, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "CommandName": "Set-PnPDefaultContentTypeToList" + "Id": 1271, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" }, { - "Id": 1272, + "CommandName": "Set-PnPDefaultPageLayout", "Rank": 1, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout" + "Id": 1272, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" }, { - "Id": 1273, + "CommandName": "Set-PnPDefaultPageLayout", "Rank": 2, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout" + "Id": 1273, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" }, { - "Id": 1274, + "CommandName": "Set-PnPDefaultPageLayout", "Rank": 3, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "CommandName": "Set-PnPDefaultPageLayout" + "Id": 1274, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" }, { - "Id": 1275, + "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 1, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "CommandName": "Set-PnPDisableSpacesActivation" + "Id": 1275, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" }, { - "Id": 1276, + "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 2, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation" + "Id": 1276, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Id": 1277, + "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 3, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation" + "Id": 1277, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Id": 1278, + "CommandName": "Set-PnPDocumentSetField", "Rank": 1, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "CommandName": "Set-PnPDocumentSetField" + "Id": 1278, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" }, { - "Id": 1279, + "CommandName": "Set-PnPDocumentSetField", "Rank": 2, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "CommandName": "Set-PnPDocumentSetField" + "Id": 1279, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" }, { - "Id": 1280, + "CommandName": "Set-PnPField", "Rank": 1, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "CommandName": "Set-PnPField" + "Id": 1280, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" }, { - "Id": 1281, + "CommandName": "Set-PnPField", "Rank": 2, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "CommandName": "Set-PnPField" + "Id": 1281, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" }, { - "Id": 1282, + "CommandName": "Set-PnPField", "Rank": 3, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "CommandName": "Set-PnPField" + "Id": 1282, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" }, { - "Id": 1283, + "CommandName": "Set-PnPFileCheckedIn", "Rank": 1, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedIn" + "Id": 1283, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" }, { - "Id": 1284, + "CommandName": "Set-PnPFileCheckedIn", "Rank": 2, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "CommandName": "Set-PnPFileCheckedIn" + "Id": 1284, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" }, { - "Id": 1285, + "CommandName": "Set-PnPFileCheckedOut", "Rank": 1, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedOut" + "Id": 1285, + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" }, { - "Id": 1286, + "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": 1286, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1287, + "CommandName": "Set-PnPFolderPermission", "Rank": 2, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission" + "Id": 1287, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1288, + "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": 1288, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Id": 1289, + "CommandName": "Set-PnPFooter", "Rank": 1, - "Command": "Set-PnPFooter -Enabled:$true", - "CommandName": "Set-PnPFooter" + "Id": 1289, + "Command": "Set-PnPFooter -Enabled:$true" }, { - "Id": 1290, + "CommandName": "Set-PnPFooter", "Rank": 2, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "CommandName": "Set-PnPFooter" + "Id": 1290, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" }, { - "Id": 1291, + "CommandName": "Set-PnPFooter", "Rank": 3, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "CommandName": "Set-PnPFooter" + "Id": 1291, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" }, { - "Id": 1292, + "CommandName": "Set-PnPFooter", "Rank": 4, - "Command": "Set-PnPFooter -LogoUrl \"\"", - "CommandName": "Set-PnPFooter" + "Id": 1292, + "Command": "Set-PnPFooter -LogoUrl \"\"" }, { - "Id": 1293, + "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": 1293, + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" }, { - "Id": 1294, + "CommandName": "Set-PnPGroup", "Rank": 1, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "CommandName": "Set-PnPGroup" + "Id": 1294, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" }, { - "Id": 1295, + "CommandName": "Set-PnPGroup", "Rank": 2, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "CommandName": "Set-PnPGroup" + "Id": 1295, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" }, { - "Id": 1296, + "CommandName": "Set-PnPGroupPermissions", "Rank": 1, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "CommandName": "Set-PnPGroupPermissions" + "Id": 1296, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" }, { - "Id": 1297, + "CommandName": "Set-PnPGroupPermissions", "Rank": 2, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "CommandName": "Set-PnPGroupPermissions" + "Id": 1297, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" }, { - "Id": 1298, + "CommandName": "Set-PnPGroupPermissions", "Rank": 3, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions" + "Id": 1298, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" }, { - "Id": 1299, + "CommandName": "Set-PnPGroupPermissions", "Rank": 4, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions" + "Id": 1299, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" }, { - "Id": 1300, + "CommandName": "Set-PnPGroupPermissions", "Rank": 5, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "CommandName": "Set-PnPGroupPermissions" + "Id": 1300, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" }, { - "Id": 1301, + "CommandName": "Set-PnPHideDefaultThemes", "Rank": 1, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "CommandName": "Set-PnPHideDefaultThemes" + "Id": 1301, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" }, { - "Id": 1302, + "CommandName": "Set-PnPHideDefaultThemes", "Rank": 2, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "CommandName": "Set-PnPHideDefaultThemes" + "Id": 1302, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" }, { - "Id": 1303, + "CommandName": "Set-PnPHomePage", "Rank": 1, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "CommandName": "Set-PnPHomePage" + "Id": 1303, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" }, { - "Id": 1304, + "CommandName": "Set-PnPHomePage", "Rank": 2, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "CommandName": "Set-PnPHomePage" + "Id": 1304, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" }, { - "Id": 1305, + "CommandName": "Set-PnPHomeSite", "Rank": 1, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "CommandName": "Set-PnPHomeSite" + "Id": 1305, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" }, { - "Id": 1306, + "CommandName": "Set-PnPHomeSite", "Rank": 2, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "CommandName": "Set-PnPHomeSite" + "Id": 1306, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" }, { - "Id": 1307, + "CommandName": "Set-PnPHubSite", "Rank": 1, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "CommandName": "Set-PnPHubSite" + "Id": 1307, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" }, { - "Id": 1308, + "CommandName": "Set-PnPHubSite", "Rank": 2, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "CommandName": "Set-PnPHubSite" + "Id": 1308, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" }, { - "Id": 1309, + "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": 1309, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" }, { - "Id": 1310, + "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": 1310, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" }, { - "Id": 1311, + "CommandName": "Set-PnPHubSite", "Rank": 5, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "CommandName": "Set-PnPHubSite" + "Id": 1311, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" }, { - "Id": 1312, + "CommandName": "Set-PnPHubSite", "Rank": 6, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "CommandName": "Set-PnPHubSite" + "Id": 1312, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" }, { - "Id": 1313, + "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": 1313, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" }, { - "Id": 1314, + "CommandName": "Set-PnPImageListItemColumn", "Rank": 2, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "CommandName": "Set-PnPImageListItemColumn" + "Id": 1314, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" }, { - "Id": 1315, + "CommandName": "Set-PnPIndexedProperties", "Rank": 1, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "CommandName": "Set-PnPIndexedProperties" + "Id": 1315, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" }, { - "Id": 1316, + "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 1, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "CommandName": "Set-PnPInPlaceRecordsManagement" + "Id": 1316, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" }, { - "Id": 1317, + "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 2, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "CommandName": "Set-PnPInPlaceRecordsManagement" + "Id": 1317, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" }, { - "Id": 1318, + "CommandName": "Set-PnPKnowledgeHubSite", "Rank": 1, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "CommandName": "Set-PnPKnowledgeHubSite" + "Id": 1318, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" }, { - "Id": 1319, + "CommandName": "Set-PnPLabel", "Rank": 1, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "CommandName": "Set-PnPLabel" + "Id": 1319, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" }, { - "Id": 1320, + "CommandName": "Set-PnPLabel", "Rank": 2, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "CommandName": "Set-PnPLabel" + "Id": 1320, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" }, { - "Id": 1321, + "CommandName": "Set-PnPList", "Rank": 1, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "CommandName": "Set-PnPList" + "Id": 1321, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" }, { - "Id": 1322, + "CommandName": "Set-PnPList", "Rank": 2, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "CommandName": "Set-PnPList" + "Id": 1322, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" }, { - "Id": 1323, + "CommandName": "Set-PnPList", "Rank": 3, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "CommandName": "Set-PnPList" + "Id": 1323, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" }, { - "Id": 1324, + "CommandName": "Set-PnPList", "Rank": 4, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "CommandName": "Set-PnPList" + "Id": 1324, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" }, { - "Id": 1325, + "CommandName": "Set-PnPList", "Rank": 5, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "CommandName": "Set-PnPList" + "Id": 1325, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" }, { - "Id": 1326, + "CommandName": "Set-PnPList", "Rank": 6, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "CommandName": "Set-PnPList" + "Id": 1326, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" }, { - "Id": 1327, + "CommandName": "Set-PnPList", "Rank": 7, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "CommandName": "Set-PnPList" + "Id": 1327, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" }, { - "Id": 1328, + "CommandName": "Set-PnPList", "Rank": 8, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPList" + "Id": 1328, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" }, { - "Id": 1329, + "CommandName": "Set-PnPList", "Rank": 9, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "CommandName": "Set-PnPList" + "Id": 1329, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" }, { - "Id": 1330, + "CommandName": "Set-PnPList", "Rank": 10, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "CommandName": "Set-PnPList" + "Id": 1330, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" }, { - "Id": 1331, + "CommandName": "Set-PnPList", "Rank": 11, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "CommandName": "Set-PnPList" + "Id": 1331, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" }, { - "Id": 1332, + "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 1, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "CommandName": "Set-PnPListInformationRightsManagement" + "Id": 1332, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" }, { - "Id": 1333, + "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 2, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "CommandName": "Set-PnPListInformationRightsManagement" + "Id": 1333, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" }, { - "Id": 1334, + "CommandName": "Set-PnPListItem", "Rank": 1, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem" + "Id": 1334, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1335, + "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": 1335, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1336, + "CommandName": "Set-PnPListItem", "Rank": 3, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem" + "Id": 1336, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1337, + "CommandName": "Set-PnPListItem", "Rank": 4, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "CommandName": "Set-PnPListItem" + "Id": 1337, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" }, { - "Id": 1338, + "CommandName": "Set-PnPListItem", "Rank": 5, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "CommandName": "Set-PnPListItem" + "Id": 1338, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" }, { - "Id": 1339, + "CommandName": "Set-PnPListItemAsRecord", "Rank": 1, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Set-PnPListItemAsRecord" + "Id": 1339, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Id": 1340, + "CommandName": "Set-PnPListItemAsRecord", "Rank": 2, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "CommandName": "Set-PnPListItemAsRecord" + "Id": 1340, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" }, { - "Id": 1341, + "CommandName": "Set-PnPListItemPermission", "Rank": 1, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission" + "Id": 1341, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1342, + "CommandName": "Set-PnPListItemPermission", "Rank": 2, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission" + "Id": 1342, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1343, + "CommandName": "Set-PnPListItemPermission", "Rank": 3, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "CommandName": "Set-PnPListItemPermission" + "Id": 1343, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Id": 1344, + "CommandName": "Set-PnPListItemPermission", "Rank": 4, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "CommandName": "Set-PnPListItemPermission" + "Id": 1344, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" }, { - "Id": 1345, + "CommandName": "Set-PnPListItemPermission", "Rank": 5, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "CommandName": "Set-PnPListItemPermission" + "Id": 1345, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" }, { - "Id": 1346, + "CommandName": "Set-PnPListPermission", "Rank": 1, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListPermission" + "Id": 1346, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1347, + "CommandName": "Set-PnPListPermission", "Rank": 2, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListPermission" + "Id": 1347, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1348, + "CommandName": "Set-PnPListRecordDeclaration", "Rank": 1, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "CommandName": "Set-PnPListRecordDeclaration" + "Id": 1348, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" }, { - "Id": 1349, + "CommandName": "Set-PnPListRecordDeclaration", "Rank": 2, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "CommandName": "Set-PnPListRecordDeclaration" + "Id": 1349, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" }, { - "Id": 1350, + "CommandName": "Set-PnPMasterPage", "Rank": 1, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage" + "Id": 1350, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Id": 1351, + "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": 1351, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Id": 1352, + "CommandName": "Set-PnPMasterPage", "Rank": 3, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage" + "Id": 1352, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Id": 1353, + "CommandName": "Set-PnPMasterPage", "Rank": 4, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage" + "Id": 1353, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Id": 1354, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Id": 1354, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" }, { - "Id": 1355, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Id": 1355, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1356, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Id": 1356, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Id": 1357, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Id": 1357, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" }, { - "Id": 1358, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Id": 1358, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1359, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Id": 1359, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Id": 1360, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Id": 1360, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" }, { - "Id": 1361, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Id": 1361, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1362, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Id": 1362, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Id": 1363, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Id": 1363, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" }, { - "Id": 1364, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Id": 1364, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1365, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Id": 1365, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Id": 1366, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "Id": 1366, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" }, { - "Id": 1367, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "Id": 1367, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1368, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "Id": 1368, + "Command": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Id": 1369, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "Id": 1369, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" }, { - "Id": 1370, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "Id": 1370, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1371, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "Id": 1371, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Id": 1372, + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 1, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group" + "Id": 1372, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" }, { - "Id": 1373, + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 2, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group" + "Id": 1373, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Id": 1374, + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 3, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "CommandName": "Set-PnPMicrosoft365Group" + "Id": 1374, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" }, { - "Id": 1375, + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 4, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "CommandName": "Set-PnPMicrosoft365Group" + "Id": 1375, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" }, { - "Id": 1376, + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 5, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPMicrosoft365Group" + "Id": 1376, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" }, { - "Id": 1377, + "CommandName": "Set-PnPMicrosoft365Group", "Rank": 6, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "CommandName": "Set-PnPMicrosoft365Group" + "Id": 1377, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Id": 1378, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 1, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "Id": 1378, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" }, { - "Id": 1379, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 2, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "Id": 1379, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" }, { - "Id": 1380, + "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 1, - "Command": "Set-PnPMinimalDownloadStrategy -Off", - "CommandName": "Set-PnPMinimalDownloadStrategy" + "Id": 1380, + "Command": "Set-PnPMinimalDownloadStrategy -Off" }, { - "Id": 1381, + "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 2, - "Command": "Set-PnPMinimalDownloadStrategy -On", - "CommandName": "Set-PnPMinimalDownloadStrategy" + "Id": 1381, + "Command": "Set-PnPMinimalDownloadStrategy -On" }, { - "Id": 1382, + "CommandName": "Set-PnPPage", "Rank": 1, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "CommandName": "Set-PnPPage" + "Id": 1382, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" }, { - "Id": 1383, + "CommandName": "Set-PnPPage", "Rank": 2, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "CommandName": "Set-PnPPage" + "Id": 1383, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" }, { - "Id": 1384, + "CommandName": "Set-PnPPage", "Rank": 3, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "CommandName": "Set-PnPPage" + "Id": 1384, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" }, { - "Id": 1385, + "CommandName": "Set-PnPPage", "Rank": 4, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "CommandName": "Set-PnPPage" + "Id": 1385, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" }, { - "Id": 1386, + "CommandName": "Set-PnPPage", "Rank": 5, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "CommandName": "Set-PnPPage" + "Id": 1386, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" }, { - "Id": 1387, + "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": 1387, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" }, { - "Id": 1388, + "CommandName": "Set-PnPPage", "Rank": 7, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Set-PnPPage" + "Id": 1388, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Id": 1389, + "CommandName": "Set-PnPPage", "Rank": 8, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "CommandName": "Set-PnPPage" + "Id": 1389, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" }, { - "Id": 1390, + "CommandName": "Set-PnPPage", "Rank": 9, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Set-PnPPage" + "Id": 1390, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Id": 1391, + "CommandName": "Set-PnPPage", "Rank": 10, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Set-PnPPage" + "Id": 1391, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Id": 1392, + "CommandName": "Set-PnPPage", "Rank": 11, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "CommandName": "Set-PnPPage" + "Id": 1392, + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" }, { - "Id": 1393, + "CommandName": "Set-PnPPageTextPart", "Rank": 1, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "CommandName": "Set-PnPPageTextPart" + "Id": 1393, + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" }, { - "Id": 1394, + "CommandName": "Set-PnPPageWebPart", "Rank": 1, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "CommandName": "Set-PnPPageWebPart" + "Id": 1394, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" }, { - "Id": 1395, + "CommandName": "Set-PnPPageWebPart", "Rank": 2, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "CommandName": "Set-PnPPageWebPart" + "Id": 1395, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" }, { - "Id": 1396, + "CommandName": "Set-PnPPlannerBucket", "Rank": 1, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "CommandName": "Set-PnPPlannerBucket" + "Id": 1396, + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" }, { - "Id": 1397, + "CommandName": "Set-PnPPlannerConfiguration", "Rank": 1, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "CommandName": "Set-PnPPlannerConfiguration" + "Id": 1397, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" }, { - "Id": 1398, + "CommandName": "Set-PnPPlannerConfiguration", "Rank": 2, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "CommandName": "Set-PnPPlannerConfiguration" + "Id": 1398, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" }, { - "Id": 1399, + "CommandName": "Set-PnPPlannerPlan", "Rank": 1, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "CommandName": "Set-PnPPlannerPlan" + "Id": 1399, + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" }, { - "Id": 1400, + "CommandName": "Set-PnPPlannerTask", "Rank": 1, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "CommandName": "Set-PnPPlannerTask" + "Id": 1400, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" }, { - "Id": 1401, + "CommandName": "Set-PnPPlannerTask", "Rank": 2, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "CommandName": "Set-PnPPlannerTask" + "Id": 1401, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" }, { - "Id": 1402, + "CommandName": "Set-PnPPlannerTask", "Rank": 3, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "CommandName": "Set-PnPPlannerTask" + "Id": 1402, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "Id": 1403, + "CommandName": "Set-PnPPlannerUserPolicy", "Rank": 1, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPPlannerUserPolicy" + "Id": 1403, + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 1404, + "CommandName": "Set-PnPPropertyBagValue", "Rank": 1, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "CommandName": "Set-PnPPropertyBagValue" + "Id": 1404, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" }, { - "Id": 1405, + "CommandName": "Set-PnPPropertyBagValue", "Rank": 2, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "CommandName": "Set-PnPPropertyBagValue" + "Id": 1405, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" }, { - "Id": 1406, + "CommandName": "Set-PnPPropertyBagValue", "Rank": 3, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "CommandName": "Set-PnPPropertyBagValue" + "Id": 1406, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" }, { - "Id": 1407, + "CommandName": "Set-PnPRequestAccessEmails", "Rank": 1, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "CommandName": "Set-PnPRequestAccessEmails" + "Id": 1407, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" }, { - "Id": 1408, + "CommandName": "Set-PnPRequestAccessEmails", "Rank": 2, - "Command": "Set-PnPRequestAccessEmails -Disabled", - "CommandName": "Set-PnPRequestAccessEmails" + "Id": 1408, + "Command": "Set-PnPRequestAccessEmails -Disabled" }, { - "Id": 1409, + "CommandName": "Set-PnPRequestAccessEmails", "Rank": 3, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "CommandName": "Set-PnPRequestAccessEmails" + "Id": 1409, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false" }, { - "Id": 1410, + "CommandName": "Set-PnPRoleDefinition", "Rank": 1, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "CommandName": "Set-PnPRoleDefinition" + "Id": 1410, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" }, { - "Id": 1411, + "CommandName": "Set-PnPRoleDefinition", "Rank": 2, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "CommandName": "Set-PnPRoleDefinition" + "Id": 1411, + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" }, { - "Id": 1412, + "CommandName": "Set-PnPRoleDefinition", "Rank": 3, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "CommandName": "Set-PnPRoleDefinition" + "Id": 1412, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" }, { - "Id": 1413, + "CommandName": "Set-PnPRoleDefinition", "Rank": 4, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "CommandName": "Set-PnPRoleDefinition" + "Id": 1413, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" }, { - "Id": 1414, + "CommandName": "Set-PnPSearchConfiguration", "Rank": 1, - "Command": "Set-PnPSearchConfiguration -Configuration $config", - "CommandName": "Set-PnPSearchConfiguration" + "Id": 1414, + "Command": "Set-PnPSearchConfiguration -Configuration $config" }, { - "Id": 1415, + "CommandName": "Set-PnPSearchConfiguration", "Rank": 2, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Set-PnPSearchConfiguration" + "Id": 1415, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Id": 1416, + "CommandName": "Set-PnPSearchConfiguration", "Rank": 3, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration" + "Id": 1416, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Id": 1417, + "CommandName": "Set-PnPSearchConfiguration", "Rank": 4, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration" + "Id": 1417, + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 1418, + "CommandName": "Set-PnPSearchExternalItem", "Rank": 1, - "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone", - "CommandName": "Set-PnPSearchExternalItem" + "Id": 1418, + "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone" }, { - "Id": 1419, + "CommandName": "Set-PnPSearchExternalItem", "Rank": 2, - "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPSearchExternalItem" + "Id": 1419, + "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"" }, { - "Id": 1420, + "CommandName": "Set-PnPSearchSettings", "Rank": 1, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "CommandName": "Set-PnPSearchSettings" + "Id": 1420, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" }, { - "Id": 1421, + "CommandName": "Set-PnPSearchSettings", "Rank": 2, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "CommandName": "Set-PnPSearchSettings" + "Id": 1421, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" }, { - "Id": 1422, + "CommandName": "Set-PnPSearchSettings", "Rank": 3, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "CommandName": "Set-PnPSearchSettings" + "Id": 1422, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" }, { - "Id": 1423, + "CommandName": "Set-PnPSearchSettings", "Rank": 4, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "CommandName": "Set-PnPSearchSettings" + "Id": 1423, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" }, { - "Id": 1424, + "CommandName": "Set-PnPSearchSettings", "Rank": 5, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "CommandName": "Set-PnPSearchSettings" + "Id": 1424, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" }, { - "Id": 1425, + "CommandName": "Set-PnPSearchSettings", "Rank": 6, - "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "CommandName": "Set-PnPSearchSettings" + "Id": 1425, + "Command": "Set-PnPSearchSettings -SearchScope Tenant" }, { - "Id": 1426, + "CommandName": "Set-PnPSearchSettings", "Rank": 7, - "Command": "Set-PnPSearchSettings -SearchScope Hub", - "CommandName": "Set-PnPSearchSettings" + "Id": 1426, + "Command": "Set-PnPSearchSettings -SearchScope Hub" }, { - "Id": 1427, + "CommandName": "Set-PnPSite", "Rank": 1, - "Command": "Set-PnPSite -Classification \"HBI\"", - "CommandName": "Set-PnPSite" + "Id": 1427, + "Command": "Set-PnPSite -Classification \"HBI\"" }, { - "Id": 1428, + "CommandName": "Set-PnPSite", "Rank": 2, - "Command": "Set-PnPSite -Classification $null", - "CommandName": "Set-PnPSite" + "Id": 1428, + "Command": "Set-PnPSite -Classification $null" }, { - "Id": 1429, + "CommandName": "Set-PnPSite", "Rank": 3, - "Command": "Set-PnPSite -DisableFlows", - "CommandName": "Set-PnPSite" + "Id": 1429, + "Command": "Set-PnPSite -DisableFlows" }, { - "Id": 1430, + "CommandName": "Set-PnPSite", "Rank": 4, - "Command": "Set-PnPSite -DisableFlows:$false", - "CommandName": "Set-PnPSite" + "Id": 1430, + "Command": "Set-PnPSite -DisableFlows:$false" }, { - "Id": 1431, + "CommandName": "Set-PnPSite", "Rank": 5, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "CommandName": "Set-PnPSite" + "Id": 1431, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" }, { - "Id": 1432, + "CommandName": "Set-PnPSite", "Rank": 6, - "Command": "Set-PnPSite -NoScriptSite $false", - "CommandName": "Set-PnPSite" + "Id": 1432, + "Command": "Set-PnPSite -NoScriptSite $false" }, { - "Id": 1433, + "CommandName": "Set-PnPSite", "Rank": 7, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPSite" + "Id": 1433, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" }, { - "Id": 1434, + "CommandName": "Set-PnPSite", "Rank": 8, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "CommandName": "Set-PnPSite" + "Id": 1434, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" }, { - "Id": 1435, + "CommandName": "Set-PnPSite", "Rank": 9, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "CommandName": "Set-PnPSite" + "Id": 1435, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" }, { - "Id": 1436, + "CommandName": "Set-PnPSite", "Rank": 10, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "CommandName": "Set-PnPSite" + "Id": 1436, + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" }, { - "Id": 1437, + "CommandName": "Set-PnPSite", "Rank": 11, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "CommandName": "Set-PnPSite" + "Id": 1437, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" }, { - "Id": 1438, + "CommandName": "Set-PnPSite", "Rank": 12, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "CommandName": "Set-PnPSite" + "Id": 1438, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" }, { - "Id": 1439, + "CommandName": "Set-PnPSite", "Rank": 13, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "CommandName": "Set-PnPSite" + "Id": 1439, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" }, { - "Id": 1440, + "CommandName": "Set-PnPSite", "Rank": 14, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "CommandName": "Set-PnPSite" + "Id": 1440, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" }, { - "Id": 1441, + "CommandName": "Set-PnPSite", "Rank": 15, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "CommandName": "Set-PnPSite" + "Id": 1441, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" }, { - "Id": 1442, + "CommandName": "Set-PnPSite", "Rank": 16, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "CommandName": "Set-PnPSite" + "Id": 1442, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" }, { - "Id": 1443, + "CommandName": "Set-PnPSite", "Rank": 17, - "Command": "Set-PnPSite -CancelVPForExistingLibs", - "CommandName": "Set-PnPSite" + "Id": 1443, + "Command": "Set-PnPSite -CancelVPForExistingLibs" }, { - "Id": 1444, + "CommandName": "Set-PnPSiteClassification", "Rank": 1, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "CommandName": "Set-PnPSiteClassification" + "Id": 1444, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"" }, { - "Id": 1445, + "CommandName": "Set-PnPSiteClosure", "Rank": 1, - "Command": "Set-PnPSiteClosure -State Open", - "CommandName": "Set-PnPSiteClosure" + "Id": 1445, + "Command": "Set-PnPSiteClosure -State Open" }, { - "Id": 1446, + "CommandName": "Set-PnPSiteClosure", "Rank": 2, - "Command": "Set-PnPSiteClosure -State Closed", - "CommandName": "Set-PnPSiteClosure" + "Id": 1446, + "Command": "Set-PnPSiteClosure -State Closed" }, { - "Id": 1447, + "CommandName": "Set-PnPSiteDesign", "Rank": 1, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "CommandName": "Set-PnPSiteDesign" + "Id": 1447, + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" }, { - "Id": 1448, + "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": 1448, + "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": 1449, + "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": 1449, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" }, { - "Id": 1450, + "CommandName": "Set-PnPSiteGroup", "Rank": 2, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "CommandName": "Set-PnPSiteGroup" + "Id": 1450, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" }, { - "Id": 1451, + "CommandName": "Set-PnPSitePolicy", "Rank": 1, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Set-PnPSitePolicy" + "Id": 1451, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Id": 1452, + "CommandName": "Set-PnPSiteScript", "Rank": 1, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScript" + "Id": 1452, + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Id": 1453, + "CommandName": "Set-PnPSiteScriptPackage", "Rank": 1, - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScriptPackage" + "Id": 1453, + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Id": 1454, + "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 1, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "CommandName": "Set-PnPSiteSensitivityLabel" + "Id": 1454, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" }, { - "Id": 1455, + "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 2, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "CommandName": "Set-PnPSiteSensitivityLabel" + "Id": 1455, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" }, { - "Id": 1456, + "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 1, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata" + "Id": 1456, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" }, { - "Id": 1457, + "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 2, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata" + "Id": 1457, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" }, { - "Id": 1458, + "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 3, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata" + "Id": 1458, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Id": 1459, + "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 4, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata" + "Id": 1459, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Id": 1460, + "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 5, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata" + "Id": 1460, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Id": 1461, + "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 6, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata" + "Id": 1461, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Id": 1462, + "CommandName": "Set-PnPStorageEntity", "Rank": 1, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity" + "Id": 1462, + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Id": 1463, + "CommandName": "Set-PnPStorageEntity", "Rank": 2, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity" + "Id": 1463, + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Id": 1464, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 1, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "Id": 1464, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 1465, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 2, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "Id": 1465, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 1466, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 1, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "Id": 1466, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 1467, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 2, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "Id": 1467, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 1468, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 1, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "Id": 1468, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" }, { - "Id": 1469, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 2, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "Id": 1469, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" }, { - "Id": 1470, + "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 1, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "CommandName": "Set-PnPTaxonomyFieldValue" + "Id": 1470, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" }, { - "Id": 1471, + "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 2, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "CommandName": "Set-PnPTaxonomyFieldValue" + "Id": 1471, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" }, { - "Id": 1472, + "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 3, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "CommandName": "Set-PnPTaxonomyFieldValue" + "Id": 1472, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" }, { - "Id": 1473, + "CommandName": "Set-PnPTeamifyPromptHidden", "Rank": 1, - "Command": "Set-PnPTeamifyPromptHidden", - "CommandName": "Set-PnPTeamifyPromptHidden" + "Id": 1473, + "Command": "Set-PnPTeamifyPromptHidden" }, { - "Id": 1474, + "CommandName": "Set-PnPTeamsChannel", "Rank": 1, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "CommandName": "Set-PnPTeamsChannel" + "Id": 1474, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" }, { - "Id": 1475, + "CommandName": "Set-PnPTeamsChannel", "Rank": 2, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "CommandName": "Set-PnPTeamsChannel" + "Id": 1475, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" }, { - "Id": 1476, + "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": 1476, + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" }, { - "Id": 1477, + "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": 1477, + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" }, { - "Id": 1478, + "CommandName": "Set-PnPTeamsTab", "Rank": 1, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "CommandName": "Set-PnPTeamsTab" + "Id": 1478, + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" }, { - "Id": 1479, + "CommandName": "Set-PnPTeamsTag", "Rank": 1, - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "CommandName": "Set-PnPTeamsTag" + "Id": 1479, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" }, { - "Id": 1480, + "CommandName": "Set-PnPTeamsTeam", "Rank": 1, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "CommandName": "Set-PnPTeamsTeam" + "Id": 1480, + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" }, { - "Id": 1481, + "CommandName": "Set-PnPTeamsTeam", "Rank": 2, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "CommandName": "Set-PnPTeamsTeam" + "Id": 1481, + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" }, { - "Id": 1482, + "CommandName": "Set-PnPTeamsTeam", "Rank": 3, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "CommandName": "Set-PnPTeamsTeam" + "Id": 1482, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" }, { - "Id": 1483, + "CommandName": "Set-PnPTeamsTeam", "Rank": 4, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "CommandName": "Set-PnPTeamsTeam" + "Id": 1483, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" }, { - "Id": 1484, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 1, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Id": 1484, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" }, { - "Id": 1485, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 2, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Id": 1485, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" }, { - "Id": 1486, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 3, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Id": 1486, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" }, { - "Id": 1487, + "CommandName": "Set-PnPTeamsTeamPicture", "Rank": 1, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "CommandName": "Set-PnPTeamsTeamPicture" + "Id": 1487, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" }, { - "Id": 1488, + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 1, - "Command": "Set-PnPTemporarilyDisableAppBar $true", - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "Id": 1488, + "Command": "Set-PnPTemporarilyDisableAppBar $true" }, { - "Id": 1489, + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 2, - "Command": "Set-PnPTemporarilyDisableAppBar $false", - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "Id": 1489, + "Command": "Set-PnPTemporarilyDisableAppBar $false" }, { - "Id": 1490, + "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": 1490, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" }, { - "Id": 1491, + "CommandName": "Set-PnPTenant", "Rank": 2, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "CommandName": "Set-PnPTenant" + "Id": 1491, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" }, { - "Id": 1492, + "CommandName": "Set-PnPTenant", "Rank": 3, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "CommandName": "Set-PnPTenant" + "Id": 1492, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false" }, { - "Id": 1493, + "CommandName": "Set-PnPTenant", "Rank": 4, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "CommandName": "Set-PnPTenant" + "Id": 1493, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" }, { - "Id": 1494, + "CommandName": "Set-PnPTenantAppCatalogUrl", "Rank": 1, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "CommandName": "Set-PnPTenantAppCatalogUrl" + "Id": 1494, + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" }, { - "Id": 1495, + "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 1, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "CommandName": "Set-PnPTenantCdnEnabled" + "Id": 1495, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" }, { - "Id": 1496, + "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 2, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "CommandName": "Set-PnPTenantCdnEnabled" + "Id": 1496, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" }, { - "Id": 1497, + "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 3, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "CommandName": "Set-PnPTenantCdnEnabled" + "Id": 1497, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" }, { - "Id": 1498, + "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": 1498, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" }, { - "Id": 1499, + "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 2, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "CommandName": "Set-PnPTenantCdnPolicy" + "Id": 1499, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" }, { - "Id": 1500, + "CommandName": "Set-PnPTenantSite", "Rank": 1, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "CommandName": "Set-PnPTenantSite" + "Id": 1500, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" }, { - "Id": 1501, + "CommandName": "Set-PnPTenantSite", "Rank": 2, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "CommandName": "Set-PnPTenantSite" + "Id": 1501, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" }, { - "Id": 1502, + "CommandName": "Set-PnPTenantSite", "Rank": 3, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPTenantSite" + "Id": 1502, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Id": 1503, + "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": 1503, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Id": 1504, + "CommandName": "Set-PnPTenantSite", "Rank": 5, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "CommandName": "Set-PnPTenantSite" + "Id": 1504, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" }, { - "Id": 1505, + "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 1, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "CommandName": "Set-PnPTenantSyncClientRestriction" + "Id": 1505, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" }, { - "Id": 1506, + "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 2, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "CommandName": "Set-PnPTenantSyncClientRestriction" + "Id": 1506, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" }, { - "Id": 1507, + "CommandName": "Set-PnPTerm", "Rank": 1, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "CommandName": "Set-PnPTerm" + "Id": 1507, + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" }, { - "Id": 1508, + "CommandName": "Set-PnPTerm", "Rank": 2, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm" + "Id": 1508, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 1509, + "CommandName": "Set-PnPTerm", "Rank": 3, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm" + "Id": 1509, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 1510, + "CommandName": "Set-PnPTerm", "Rank": 4, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "CommandName": "Set-PnPTerm" + "Id": 1510, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" }, { - "Id": 1511, + "CommandName": "Set-PnPTermGroup", "Rank": 1, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "CommandName": "Set-PnPTermGroup" + "Id": 1511, + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" }, { - "Id": 1512, + "CommandName": "Set-PnPTermSet", "Rank": 1, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "CommandName": "Set-PnPTermSet" + "Id": 1512, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" }, { - "Id": 1513, + "CommandName": "Set-PnPTermSet", "Rank": 2, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "CommandName": "Set-PnPTermSet" + "Id": 1513, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" }, { - "Id": 1514, + "CommandName": "Set-PnPTermSet", "Rank": 3, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "CommandName": "Set-PnPTermSet" + "Id": 1514, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" }, { - "Id": 1515, + "CommandName": "Set-PnPTheme", "Rank": 1, - "Command": "Set-PnPTheme", - "CommandName": "Set-PnPTheme" + "Id": 1515, + "Command": "Set-PnPTheme" }, { - "Id": 1516, + "CommandName": "Set-PnPTheme", "Rank": 2, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "CommandName": "Set-PnPTheme" + "Id": 1516, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" }, { - "Id": 1517, + "CommandName": "Set-PnPTheme", "Rank": 3, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "CommandName": "Set-PnPTheme" + "Id": 1517, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" }, { - "Id": 1518, + "CommandName": "Set-PnPTheme", "Rank": 4, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "CommandName": "Set-PnPTheme" + "Id": 1518, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" }, { - "Id": 1519, + "CommandName": "Set-PnPTraceLog", "Rank": 1, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "CommandName": "Set-PnPTraceLog" + "Id": 1519, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" }, { - "Id": 1520, + "CommandName": "Set-PnPTraceLog", "Rank": 2, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "CommandName": "Set-PnPTraceLog" + "Id": 1520, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" }, { - "Id": 1521, + "CommandName": "Set-PnPTraceLog", "Rank": 3, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "CommandName": "Set-PnPTraceLog" + "Id": 1521, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" }, { - "Id": 1522, + "CommandName": "Set-PnPTraceLog", "Rank": 4, - "Command": "Set-PnPTraceLog -Off", - "CommandName": "Set-PnPTraceLog" + "Id": 1522, + "Command": "Set-PnPTraceLog -Off" }, { - "Id": 1523, + "CommandName": "Set-PnPUserOneDriveQuota", "Rank": 1, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "CommandName": "Set-PnPUserOneDriveQuota" + "Id": 1523, + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" }, { - "Id": 1524, + "CommandName": "Set-PnPUserProfileProperty", "Rank": 1, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "CommandName": "Set-PnPUserProfileProperty" + "Id": 1524, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" }, { - "Id": 1525, + "CommandName": "Set-PnPUserProfileProperty", "Rank": 2, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "CommandName": "Set-PnPUserProfileProperty" + "Id": 1525, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" }, { - "Id": 1526, + "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": 1526, + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" }, { - "Id": 1527, + "CommandName": "Set-PnPView", "Rank": 2, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "CommandName": "Set-PnPView" + "Id": 1527, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" }, { - "Id": 1528, + "CommandName": "Set-PnPView", "Rank": 3, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "CommandName": "Set-PnPView" + "Id": 1528, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" }, { - "Id": 1529, + "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": 1529, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" }, { - "Id": 1530, + "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": 1530, + "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": 1531, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 2, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Id": 1531, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" }, { - "Id": 1532, + "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": 1532, + "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": 1533, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 4, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Id": 1533, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" }, { - "Id": 1534, + "CommandName": "Set-PnPWeb", "Rank": 1, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "CommandName": "Set-PnPWeb" + "Id": 1534, + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" }, { - "Id": 1535, + "CommandName": "Set-PnPWeb", "Rank": 2, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "CommandName": "Set-PnPWeb" + "Id": 1535, + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" }, { - "Id": 1536, + "CommandName": "Set-PnPWeb", "Rank": 3, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "CommandName": "Set-PnPWeb" + "Id": 1536, + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" }, { - "Id": 1537, + "CommandName": "Set-PnPWeb", "Rank": 4, - "Command": "Set-PnPWeb -NoCrawl:$true", - "CommandName": "Set-PnPWeb" + "Id": 1537, + "Command": "Set-PnPWeb -NoCrawl:$true" }, { - "Id": 1538, + "CommandName": "Set-PnPWebHeader", "Rank": 1, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "CommandName": "Set-PnPWebHeader" + "Id": 1538, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" }, { - "Id": 1539, + "CommandName": "Set-PnPWebHeader", "Rank": 2, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "CommandName": "Set-PnPWebHeader" + "Id": 1539, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" }, { - "Id": 1540, + "CommandName": "Set-PnPWebHeader", "Rank": 3, - "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "CommandName": "Set-PnPWebHeader" + "Id": 1540, + "Command": "Set-PnPWebHeader -LogoAlignment Middle" }, { - "Id": 1541, + "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": 1541, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Id": 1542, + "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": 1542, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Id": 1543, + "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": 1543, + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" }, { - "Id": 1544, + "CommandName": "Set-PnPWebPermission", "Rank": 1, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission" + "Id": 1544, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Id": 1545, + "CommandName": "Set-PnPWebPermission", "Rank": 2, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission" + "Id": 1545, + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" }, { - "Id": 1546, + "CommandName": "Set-PnPWebPermission", "Rank": 3, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission" + "Id": 1546, + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Id": 1547, + "CommandName": "Set-PnPWebPermission", "Rank": 4, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "CommandName": "Set-PnPWebPermission" + "Id": 1547, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" }, { - "Id": 1548, + "CommandName": "Set-PnPWebTheme", "Rank": 1, - "Command": "Set-PnPWebTheme -Theme MyTheme", - "CommandName": "Set-PnPWebTheme" + "Id": 1548, + "Command": "Set-PnPWebTheme -Theme MyTheme" }, { - "Id": 1549, + "CommandName": "Set-PnPWebTheme", "Rank": 2, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "CommandName": "Set-PnPWebTheme" + "Id": 1549, + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" }, { - "Id": 1550, + "CommandName": "Set-PnPWikiPageContent", "Rank": 1, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "CommandName": "Set-PnPWikiPageContent" + "Id": 1550, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" }, { - "Id": 1551, + "CommandName": "Submit-PnPSearchQuery", "Rank": 1, - "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "CommandName": "Submit-PnPSearchQuery" + "Id": 1551, + "Command": "Submit-PnPSearchQuery -Query \"finance\"" }, { - "Id": 1552, + "CommandName": "Submit-PnPSearchQuery", "Rank": 2, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "CommandName": "Submit-PnPSearchQuery" + "Id": 1552, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" }, { - "Id": 1553, + "CommandName": "Submit-PnPSearchQuery", "Rank": 3, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "CommandName": "Submit-PnPSearchQuery" + "Id": 1553, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" }, { - "Id": 1554, + "CommandName": "Submit-PnPSearchQuery", "Rank": 4, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "CommandName": "Submit-PnPSearchQuery" + "Id": 1554, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" }, { - "Id": 1555, + "CommandName": "Submit-PnPSearchQuery", "Rank": 5, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "CommandName": "Submit-PnPSearchQuery" + "Id": 1555, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" }, { - "Id": 1556, + "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 1, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "CommandName": "Submit-PnPTeamsChannelMessage" + "Id": 1556, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" }, { - "Id": 1557, + "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 2, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "CommandName": "Submit-PnPTeamsChannelMessage" + "Id": 1557, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" }, { - "Id": 1558, + "CommandName": "Sync-PnPAppToTeams", "Rank": 1, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Sync-PnPAppToTeams" + "Id": 1558, + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1559, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 1, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "Id": 1559, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" }, { - "Id": 1560, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 2, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "Id": 1560, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" }, { - "Id": 1561, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 3, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "Id": 1561, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" }, { - "Id": 1562, + "CommandName": "Test-PnPListItemIsRecord", "Rank": 1, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "CommandName": "Test-PnPListItemIsRecord" + "Id": 1562, + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" }, { - "Id": 1563, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Rank": 1, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" + "Id": 1563, + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" }, { - "Id": 1564, + "CommandName": "Test-PnPSite", "Rank": 1, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Test-PnPSite" + "Id": 1564, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1565, + "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": 1565, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Id": 1566, + "CommandName": "Test-PnPTenantTemplate", "Rank": 1, - "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "CommandName": "Test-PnPTenantTemplate" + "Id": 1566, + "Command": "Test-PnPTenantTemplate -Template $myTemplate" }, { - "Id": 1567, + "CommandName": "Undo-PnPFileCheckedOut", "Rank": 1, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "CommandName": "Undo-PnPFileCheckedOut" + "Id": 1567, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" }, { - "Id": 1568, + "CommandName": "Uninstall-PnPApp", "Rank": 1, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Uninstall-PnPApp" + "Id": 1568, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1569, + "CommandName": "Uninstall-PnPApp", "Rank": 2, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Uninstall-PnPApp" + "Id": 1569, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1570, + "CommandName": "Unpublish-PnPApp", "Rank": 1, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Unpublish-PnPApp" + "Id": 1570, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1571, + "CommandName": "Unpublish-PnPApp", "Rank": 2, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Unpublish-PnPApp" + "Id": 1571, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1572, + "CommandName": "Unpublish-PnPContentType", "Rank": 1, - "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "CommandName": "Unpublish-PnPContentType" + "Id": 1572, + "Command": "Unpublish-PnPContentType -ContentType 0x0101" }, { - "Id": 1573, + "CommandName": "Unpublish-PnPSyntexModel", "Rank": 1, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Unpublish-PnPSyntexModel" + "Id": 1573, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Id": 1574, + "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": 1574, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Id": 1575, + "CommandName": "Unregister-PnPHubSite", "Rank": 1, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Unregister-PnPHubSite" + "Id": 1575, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Id": 1576, + "CommandName": "Update-PnPApp", "Rank": 1, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Update-PnPApp" + "Id": 1576, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1577, + "CommandName": "Update-PnPApp", "Rank": 2, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Update-PnPApp" + "Id": 1577, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1578, + "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 1, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Update-PnPAvailableSiteClassification" + "Id": 1578, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Id": 1579, + "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 2, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "CommandName": "Update-PnPAvailableSiteClassification" + "Id": 1579, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" }, { - "Id": 1580, + "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 3, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Update-PnPAvailableSiteClassification" + "Id": 1580, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Id": 1581, + "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 1, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "CommandName": "Update-PnPSiteDesignFromWeb" + "Id": 1581, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" }, { - "Id": 1582, + "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 2, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "CommandName": "Update-PnPSiteDesignFromWeb" + "Id": 1582, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "Id": 1583, + "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": 1583, + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" }, { - "Id": 1584, + "CommandName": "Update-PnPTeamsApp", "Rank": 1, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "CommandName": "Update-PnPTeamsApp" + "Id": 1584, + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" }, { - "Id": 1585, + "CommandName": "Update-PnPTeamsUser", "Rank": 1, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Update-PnPTeamsUser" + "Id": 1585, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Id": 1586, + "CommandName": "Update-PnPTeamsUser", "Rank": 2, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Update-PnPTeamsUser" + "Id": 1586, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Id": 1587, + "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": 1587, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" }, { - "Id": 1588, + "CommandName": "Update-PnPUserType", "Rank": 1, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "CommandName": "Update-PnPUserType" + "Id": 1588, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" } ] diff --git a/version.txt b/version.txt index 1405ff36f..df8642c59 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.85 \ No newline at end of file +2.2.86 \ No newline at end of file From 4ed19b94987ef6a0e93f119d1e4a5a30178c89ca Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Tue, 3 Oct 2023 02:40:14 +0000 Subject: [PATCH 043/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 3176 ++++++++--------- version.txt | 2 +- 3 files changed, 1590 insertions(+), 1590 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 6a58d7cb1..ea672afa2 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -e7b020ee29f28f1d130d5e1d6f7c33c07d19c2c2 \ No newline at end of file +23290629792b71cca5dcea2159e6cc86102e3330 \ 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 c5a40255a..c96dfc8f2 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9529 +1,9529 @@ [ { - "CommandName": "Add-PnPAlert", "Rank": 1, + "CommandName": "Add-PnPAlert", "Id": 1, "Command": "Add-PnPAlert -List \"Demo List\"" }, { - "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)" }, { - "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\"" }, { - "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))" }, { - "CommandName": "Add-PnPApp", "Rank": 1, + "CommandName": "Add-PnPApp", "Id": 5, "Command": "Add-PnPApp -Path ./myapp.sppkg" }, { - "CommandName": "Add-PnPApp", "Rank": 2, + "CommandName": "Add-PnPApp", "Id": 6, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" }, { - "CommandName": "Add-PnPApp", "Rank": 3, + "CommandName": "Add-PnPApp", "Id": 7, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" }, { - "CommandName": "Add-PnPApp", "Rank": 4, + "CommandName": "Add-PnPApp", "Id": 8, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" }, { - "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`\"}" }, { - "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Add-PnPAvailableSiteClassification", "Id": 10, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" }, { - "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Add-PnPAvailableSiteClassification", "Id": 11, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" }, { - "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\"" }, { - "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" }, { - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 3, + "CommandName": "Add-PnPAzureADGroupMember", "Id": 14, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "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\"" }, { - "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" }, { - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 3, + "CommandName": "Add-PnPAzureADGroupOwner", "Id": 17, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "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" }, { - "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\"" }, { - "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" }, { - "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\"" }, { - "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\"" }, { - "CommandName": "Add-PnPContentType", "Rank": 4, + "CommandName": "Add-PnPContentType", "Id": 23, "Command": "Add-PnPContentType -Name \"Project Item\"" }, { - "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" }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 1, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 25, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 2, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 26, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 1, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 27, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 2, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 28, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "CommandName": "Add-PnPContentTypeToList", "Rank": 1, + "CommandName": "Add-PnPContentTypeToList", "Id": 29, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" }, { - "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`\"}\"" }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 31, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 2, + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 32, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" }, { - "CommandName": "Add-PnPDocumentSet", "Rank": 1, + "CommandName": "Add-PnPDocumentSet", "Id": 33, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" }, { - "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" }, { - "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" }, { - "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" }, { - "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" }, { - "CommandName": "Add-PnPField", "Rank": 1, + "CommandName": "Add-PnPField", "Id": 38, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" }, { - "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\"" }, { - "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\"" }, { - "CommandName": "Add-PnPField", "Rank": 4, + "CommandName": "Add-PnPField", "Id": 41, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" }, { - "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\"" }, { - "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()\"" }, { - "CommandName": "Add-PnPFieldToContentType", "Rank": 1, + "CommandName": "Add-PnPFieldToContentType", "Id": 44, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "CommandName": "Add-PnPFile", "Rank": 1, + "CommandName": "Add-PnPFile", "Id": 45, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" }, { - "CommandName": "Add-PnPFile", "Rank": 2, + "CommandName": "Add-PnPFile", "Id": 46, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" }, { - "CommandName": "Add-PnPFile", "Rank": 3, + "CommandName": "Add-PnPFile", "Id": 47, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" }, { - "CommandName": "Add-PnPFile", "Rank": 4, + "CommandName": "Add-PnPFile", "Id": 48, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" }, { - "CommandName": "Add-PnPFile", "Rank": 5, + "CommandName": "Add-PnPFile", "Id": 49, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" }, { - "CommandName": "Add-PnPFile", "Rank": 6, + "CommandName": "Add-PnPFile", "Id": 50, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" }, { - "CommandName": "Add-PnPFile", "Rank": 7, + "CommandName": "Add-PnPFile", "Id": 51, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" }, { - "CommandName": "Add-PnPFile", "Rank": 8, + "CommandName": "Add-PnPFile", "Id": 52, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 1, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 53, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 2, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 54, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" }, { - "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)" }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 1, + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Id": 56, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 2, + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Id": 57, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" }, { - "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" }, { - "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" }, { - "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)" }, { - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 61, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" }, { - "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\"" }, { - "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" }, { - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 4, + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 64, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" }, { - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 5, + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 65, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" }, { - "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\"" }, { - "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\"" }, { - "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" }, { - "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" }, { - "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" }, { - "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" }, { - "CommandName": "Add-PnPFolder", "Rank": 1, + "CommandName": "Add-PnPFolder", "Id": 72, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "CommandName": "Add-PnPFolder", "Rank": 2, + "CommandName": "Add-PnPFolder", "Id": 73, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" }, { - "CommandName": "Add-PnPFolder", "Rank": 3, + "CommandName": "Add-PnPFolder", "Id": 74, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 1, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 75, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 2, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 76, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" }, { - "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)" }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 1, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 78, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 2, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 79, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" }, { - "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" }, { - "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" }, { - "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)" }, { - "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\"" }, { - "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\"" }, { - "CommandName": "Add-PnPGroupMember", "Rank": 1, + "CommandName": "Add-PnPGroupMember", "Id": 85, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "CommandName": "Add-PnPGroupMember", "Rank": 2, + "CommandName": "Add-PnPGroupMember", "Id": 86, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" }, { - "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" }, { - "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\"" }, { - "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" }, { - "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\"" }, { - "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\"" }, { - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 1, + "CommandName": "Add-PnPJavaScriptBlock", "Id": 92, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" }, { - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 2, + "CommandName": "Add-PnPJavaScriptBlock", "Id": 93, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" }, { - "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" }, { - "CommandName": "Add-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Add-PnPJavaScriptLink", "Id": 95, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" }, { - "CommandName": "Add-PnPListDesign", "Rank": 1, + "CommandName": "Add-PnPListDesign", "Id": 96, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" }, { - "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\"" }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 98, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 2, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 99, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 3, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 100, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" }, { - "CommandName": "Add-PnPListItem", "Rank": 1, + "CommandName": "Add-PnPListItem", "Id": 101, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "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\"}" }, { - "CommandName": "Add-PnPListItem", "Rank": 3, + "CommandName": "Add-PnPListItem", "Id": 103, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" }, { - "CommandName": "Add-PnPListItem", "Rank": 4, + "CommandName": "Add-PnPListItem", "Id": 104, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" }, { - "CommandName": "Add-PnPListItem", "Rank": 5, + "CommandName": "Add-PnPListItem", "Id": 105, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" }, { - "CommandName": "Add-PnPListItemAttachment", "Rank": 1, + "CommandName": "Add-PnPListItemAttachment", "Id": 106, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" }, { - "CommandName": "Add-PnPListItemAttachment", "Rank": 2, + "CommandName": "Add-PnPListItemAttachment", "Id": 107, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" }, { - "CommandName": "Add-PnPListItemAttachment", "Rank": 3, + "CommandName": "Add-PnPListItemAttachment", "Id": 108, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" }, { - "CommandName": "Add-PnPListItemComment", "Rank": 1, + "CommandName": "Add-PnPListItemComment", "Id": 109, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" }, { - "CommandName": "Add-PnPMasterPage", "Rank": 1, + "CommandName": "Add-PnPMasterPage", "Id": 110, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" }, { - "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\"" }, { - "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" }, { - "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\"" }, { - "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" }, { - "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\"" }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 116, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 3, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 117, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" }, { - "CommandName": "Add-PnPNavigationNode", "Rank": 1, + "CommandName": "Add-PnPNavigationNode", "Id": 118, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" }, { - "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" }, { - "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" }, { - "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" }, { - "CommandName": "Add-PnPNavigationNode", "Rank": 5, + "CommandName": "Add-PnPNavigationNode", "Id": 122, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" }, { - "CommandName": "Add-PnPNavigationNode", "Rank": 6, + "CommandName": "Add-PnPNavigationNode", "Id": 123, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" }, { - "CommandName": "Add-PnPNavigationNode", "Rank": 7, + "CommandName": "Add-PnPNavigationNode", "Id": 124, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" }, { - "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" }, { - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 126, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" }, { - "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\"" }, { - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 3, + "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 128, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" }, { - "CommandName": "Add-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Add-PnPOrgNewsSite", "Id": 129, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" }, { - "CommandName": "Add-PnPPage", "Rank": 1, + "CommandName": "Add-PnPPage", "Id": 130, "Command": "Add-PnPPage -Name \"NewPage\"" }, { - "CommandName": "Add-PnPPage", "Rank": 2, + "CommandName": "Add-PnPPage", "Id": 131, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" }, { - "CommandName": "Add-PnPPage", "Rank": 3, + "CommandName": "Add-PnPPage", "Id": 132, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" }, { - "CommandName": "Add-PnPPage", "Rank": 4, + "CommandName": "Add-PnPPage", "Id": 133, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" }, { - "CommandName": "Add-PnPPage", "Rank": 5, + "CommandName": "Add-PnPPage", "Id": 134, "Command": "Add-PnPPage -Name \"Folder/NewPage\"" }, { - "CommandName": "Add-PnPPage", "Rank": 6, + "CommandName": "Add-PnPPage", "Id": 135, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" }, { - "CommandName": "Add-PnPPage", "Rank": 7, + "CommandName": "Add-PnPPage", "Id": 136, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "CommandName": "Add-PnPPage", "Rank": 8, + "CommandName": "Add-PnPPage", "Id": 137, "Command": "Add-PnPPage -Name \"NewPage\" -Translate" }, { - "CommandName": "Add-PnPPage", "Rank": 9, + "CommandName": "Add-PnPPage", "Id": 138, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" }, { - "CommandName": "Add-PnPPage", "Rank": 10, + "CommandName": "Add-PnPPage", "Id": 139, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "CommandName": "Add-PnPPageImageWebPart", "Rank": 1, + "CommandName": "Add-PnPPageImageWebPart", "Id": 140, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" }, { - "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\"" }, { - "CommandName": "Add-PnPPageSection", "Rank": 1, + "CommandName": "Add-PnPPageSection", "Id": 142, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" }, { - "CommandName": "Add-PnPPageSection", "Rank": 2, + "CommandName": "Add-PnPPageSection", "Id": 143, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" }, { - "CommandName": "Add-PnPPageTextPart", "Rank": 1, + "CommandName": "Add-PnPPageTextPart", "Id": 144, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" }, { - "CommandName": "Add-PnPPageTextPart", "Rank": 2, + "CommandName": "Add-PnPPageTextPart", "Id": 145, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" }, { - "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\"" }, { - "CommandName": "Add-PnPPageWebPart", "Rank": 1, + "CommandName": "Add-PnPPageWebPart", "Id": 147, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" }, { - "CommandName": "Add-PnPPageWebPart", "Rank": 2, + "CommandName": "Add-PnPPageWebPart", "Id": 148, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" }, { - "CommandName": "Add-PnPPageWebPart", "Rank": 3, + "CommandName": "Add-PnPPageWebPart", "Id": 149, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" }, { - "CommandName": "Add-PnPPlannerBucket", "Rank": 1, + "CommandName": "Add-PnPPlannerBucket", "Id": 150, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" }, { - "CommandName": "Add-PnPPlannerBucket", "Rank": 2, + "CommandName": "Add-PnPPlannerBucket", "Id": 151, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" }, { - "CommandName": "Add-PnPPlannerRoster", "Rank": 1, + "CommandName": "Add-PnPPlannerRoster", "Id": 152, "Command": "Add-PnPPlannerRoster" }, { - "CommandName": "Add-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Add-PnPPlannerRosterMember", "Id": 153, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "CommandName": "Add-PnPPlannerTask", "Rank": 1, + "CommandName": "Add-PnPPlannerTask", "Id": 154, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "CommandName": "Add-PnPPlannerTask", "Rank": 2, + "CommandName": "Add-PnPPlannerTask", "Id": 155, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "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\"" }, { - "CommandName": "Add-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Add-PnPPublishingImageRendition", "Id": 157, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "CommandName": "Add-PnPPublishingPage", "Rank": 1, + "CommandName": "Add-PnPPublishingPage", "Id": 158, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" }, { - "CommandName": "Add-PnPPublishingPage", "Rank": 2, + "CommandName": "Add-PnPPublishingPage", "Id": 159, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" }, { - "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" }, { - "CommandName": "Add-PnPRoleDefinition", "Rank": 1, + "CommandName": "Add-PnPRoleDefinition", "Id": 161, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" }, { - "CommandName": "Add-PnPRoleDefinition", "Rank": 2, + "CommandName": "Add-PnPRoleDefinition", "Id": 162, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" }, { - "CommandName": "Add-PnPRoleDefinition", "Rank": 3, + "CommandName": "Add-PnPRoleDefinition", "Id": 163, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" }, { - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 164, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 165, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 3, + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 166, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 167, "Command": "Add-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 168, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "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" }, { - "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" }, { - "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\"" }, { - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 1, + "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 172, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" }, { - "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)" }, { - "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" }, { - "CommandName": "Add-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Add-PnPSiteDesignTask", "Id": 175, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "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\"" }, { - "CommandName": "Add-PnPSiteScript", "Rank": 1, + "CommandName": "Add-PnPSiteScript", "Id": 177, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" }, { - "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\"" }, { - "CommandName": "Add-PnPSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPSiteTemplate", "Id": 179, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" }, { - "CommandName": "Add-PnPStoredCredential", "Rank": 1, + "CommandName": "Add-PnPStoredCredential", "Id": 180, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" }, { - "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)" }, { - "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\"" }, { - "CommandName": "Add-PnPTaxonomyField", "Rank": 1, + "CommandName": "Add-PnPTaxonomyField", "Id": 183, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" }, { - "CommandName": "Add-PnPTaxonomyField", "Rank": 2, + "CommandName": "Add-PnPTaxonomyField", "Id": 184, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" }, { - "CommandName": "Add-PnPTeamsChannel", "Rank": 1, + "CommandName": "Add-PnPTeamsChannel", "Id": 185, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" }, { - "CommandName": "Add-PnPTeamsChannel", "Rank": 2, + "CommandName": "Add-PnPTeamsChannel", "Id": 186, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" }, { - "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" }, { - "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" }, { - "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" }, { - "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" }, { - "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\"" }, { - "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\"" }, { - "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\"" }, { - "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" }, { - "CommandName": "Add-PnPTeamsTeam", "Rank": 1, + "CommandName": "Add-PnPTeamsTeam", "Id": 195, "Command": "Add-PnPTeamsTeam" }, { - "CommandName": "Add-PnPTeamsUser", "Rank": 1, + "CommandName": "Add-PnPTeamsUser", "Id": 196, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "CommandName": "Add-PnPTeamsUser", "Rank": 2, + "CommandName": "Add-PnPTeamsUser", "Id": 197, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "CommandName": "Add-PnPTeamsUser", "Rank": 3, + "CommandName": "Add-PnPTeamsUser", "Id": 198, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" }, { - "CommandName": "Add-PnPTeamsUser", "Rank": 4, + "CommandName": "Add-PnPTeamsUser", "Id": 199, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" }, { - "CommandName": "Add-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Add-PnPTenantCdnOrigin", "Id": 200, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "CommandName": "Add-PnPTenantSequence", "Rank": 1, + "CommandName": "Add-PnPTenantSequence", "Id": 201, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" }, { - "CommandName": "Add-PnPTenantSequenceSite", "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSite", "Id": 202, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" }, { - "CommandName": "Add-PnPTenantSequenceSubSite", "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSubSite", "Id": 203, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" }, { - "CommandName": "Add-PnPTermToTerm", "Rank": 1, + "CommandName": "Add-PnPTermToTerm", "Id": 204, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" }, { - "CommandName": "Add-PnPView", "Rank": 1, + "CommandName": "Add-PnPView", "Id": 205, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" }, { - "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" }, { - "CommandName": "Add-PnPView", "Rank": 3, + "CommandName": "Add-PnPView", "Id": 207, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" }, { - "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\"" }, { - "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\"" }, { - "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\"" }, { - "CommandName": "Add-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Add-PnPWebhookSubscription", "Id": 211, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "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\"" }, { - "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!\"" }, { - "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" }, { - "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" }, { - "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" }, { - "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" }, { - "CommandName": "Add-PnPWikiPage", "Rank": 1, + "CommandName": "Add-PnPWikiPage", "Id": 218, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" }, { - "CommandName": "Clear-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupMember", "Id": 219, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" }, { - "CommandName": "Clear-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupOwner", "Id": 220, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" }, { - "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 1, + "CommandName": "Clear-PnPDefaultColumnValues", "Id": 221, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" }, { - "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 2, + "CommandName": "Clear-PnPDefaultColumnValues", "Id": 222, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" }, { - "CommandName": "Clear-PnPListItemAsRecord", "Rank": 1, + "CommandName": "Clear-PnPListItemAsRecord", "Id": 223, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "CommandName": "Clear-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupMember", "Id": 224, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" }, { - "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Id": 225, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" }, { - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 1, + "CommandName": "Clear-PnpRecycleBinItem", "Id": 226, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 2, + "CommandName": "Clear-PnpRecycleBinItem", "Id": 227, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" }, { - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 3, + "CommandName": "Clear-PnpRecycleBinItem", "Id": 228, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" }, { - "CommandName": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Clear-PnPTenantAppCatalogUrl", "Id": 229, "Command": "Clear-PnPTenantAppCatalogUrl" }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 230, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 2, + "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 231, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "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\"" }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 1, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 233, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 2, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 234, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" }, { - "CommandName": "Convert-PnPSiteTemplate", "Rank": 1, + "CommandName": "Convert-PnPSiteTemplate", "Id": 235, "Command": "Convert-PnPSiteTemplate -Path template.xml" }, { - "CommandName": "Convert-PnPSiteTemplate", "Rank": 2, + "CommandName": "Convert-PnPSiteTemplate", "Id": 236, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" }, { - "CommandName": "Convert-PnPSiteTemplate", "Rank": 3, + "CommandName": "Convert-PnPSiteTemplate", "Id": 237, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 1, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 238, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 2, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 239, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 1, + "CommandName": "ConvertTo-PnPPage", "Id": 240, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 2, + "CommandName": "ConvertTo-PnPPage", "Id": 241, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 3, + "CommandName": "ConvertTo-PnPPage", "Id": 242, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 4, + "CommandName": "ConvertTo-PnPPage", "Id": 243, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 5, + "CommandName": "ConvertTo-PnPPage", "Id": 244, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 6, + "CommandName": "ConvertTo-PnPPage", "Id": 245, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 7, + "CommandName": "ConvertTo-PnPPage", "Id": 246, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 8, + "CommandName": "ConvertTo-PnPPage", "Id": 247, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 9, + "CommandName": "ConvertTo-PnPPage", "Id": 248, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 10, + "CommandName": "ConvertTo-PnPPage", "Id": 249, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 11, + "CommandName": "ConvertTo-PnPPage", "Id": 250, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 12, + "CommandName": "ConvertTo-PnPPage", "Id": 251, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 13, + "CommandName": "ConvertTo-PnPPage", "Id": 252, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "CommandName": "ConvertTo-PnPPage", "Rank": 14, + "CommandName": "ConvertTo-PnPPage", "Id": 253, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" }, { - "CommandName": "Copy-PnPFile", "Rank": 1, + "CommandName": "Copy-PnPFile", "Id": 254, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFile", "Rank": 2, + "CommandName": "Copy-PnPFile", "Id": 255, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "CommandName": "Copy-PnPFile", "Rank": 3, + "CommandName": "Copy-PnPFile", "Id": 256, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "CommandName": "Copy-PnPFile", "Rank": 4, + "CommandName": "Copy-PnPFile", "Id": 257, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFile", "Rank": 5, + "CommandName": "Copy-PnPFile", "Id": 258, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "CommandName": "Copy-PnPFile", "Rank": 6, + "CommandName": "Copy-PnPFile", "Id": 259, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "CommandName": "Copy-PnPFile", "Rank": 7, + "CommandName": "Copy-PnPFile", "Id": 260, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "CommandName": "Copy-PnPFile", "Rank": 8, + "CommandName": "Copy-PnPFile", "Id": 261, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFile", "Rank": 9, + "CommandName": "Copy-PnPFile", "Id": 262, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFile", "Rank": 10, + "CommandName": "Copy-PnPFile", "Id": 263, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "CommandName": "Copy-PnPFolder", "Rank": 1, + "CommandName": "Copy-PnPFolder", "Id": 264, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFolder", "Rank": 2, + "CommandName": "Copy-PnPFolder", "Id": 265, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "CommandName": "Copy-PnPFolder", "Rank": 3, + "CommandName": "Copy-PnPFolder", "Id": 266, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "CommandName": "Copy-PnPFolder", "Rank": 4, + "CommandName": "Copy-PnPFolder", "Id": 267, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFolder", "Rank": 5, + "CommandName": "Copy-PnPFolder", "Id": 268, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "CommandName": "Copy-PnPFolder", "Rank": 6, + "CommandName": "Copy-PnPFolder", "Id": 269, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "CommandName": "Copy-PnPFolder", "Rank": 7, + "CommandName": "Copy-PnPFolder", "Id": 270, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "CommandName": "Copy-PnPFolder", "Rank": 8, + "CommandName": "Copy-PnPFolder", "Id": 271, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFolder", "Rank": 9, + "CommandName": "Copy-PnPFolder", "Id": 272, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "CommandName": "Copy-PnPFolder", "Rank": 10, + "CommandName": "Copy-PnPFolder", "Id": 273, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "CommandName": "Copy-PnPItemProxy", "Rank": 1, + "CommandName": "Copy-PnPItemProxy", "Id": 274, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" }, { - "CommandName": "Copy-PnPList", "Rank": 1, + "CommandName": "Copy-PnPList", "Id": 275, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" }, { - "CommandName": "Copy-PnPList", "Rank": 2, + "CommandName": "Copy-PnPList", "Id": 276, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" }, { - "CommandName": "Copy-PnPList", "Rank": 3, + "CommandName": "Copy-PnPList", "Id": 277, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" }, { - "CommandName": "Copy-PnPList", "Rank": 4, + "CommandName": "Copy-PnPList", "Id": 278, "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" }, { - "CommandName": "Copy-PnPTeamsTeam", "Rank": 1, + "CommandName": "Copy-PnPTeamsTeam", "Id": 279, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" }, { - "CommandName": "Copy-PnPTeamsTeam", "Rank": 2, + "CommandName": "Copy-PnPTeamsTeam", "Id": 280, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" }, { - "CommandName": "Copy-PnPTeamsTeam", "Rank": 3, + "CommandName": "Copy-PnPTeamsTeam", "Id": 281, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "CommandName": "Copy-PnPTeamsTeam", "Rank": 4, + "CommandName": "Copy-PnPTeamsTeam", "Id": 282, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "CommandName": "Disable-PnPFeature", "Rank": 1, + "CommandName": "Disable-PnPFeature", "Id": 283, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Disable-PnPFeature", "Rank": 2, + "CommandName": "Disable-PnPFeature", "Id": 284, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "CommandName": "Disable-PnPFeature", "Rank": 3, + "CommandName": "Disable-PnPFeature", "Id": 285, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "CommandName": "Disable-PnPPageScheduling", "Rank": 1, + "CommandName": "Disable-PnPPageScheduling", "Id": 286, "Command": "Disable-PnPPageScheduling" }, { - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 1, + "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 287, "Command": "Disable-PnPPowerShellTelemetry" }, { - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 2, + "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 288, "Command": "Disable-PnPPowerShellTelemetry -Force" }, { - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Id": 289, "Command": "Disable-PnPSharingForNonOwnersOfSite" }, { - "CommandName": "Disable-PnPSiteClassification", "Rank": 1, + "CommandName": "Disable-PnPSiteClassification", "Id": 290, "Command": "Disable-PnPSiteClassification" }, { - "CommandName": "Disconnect-PnPOnline", "Rank": 1, + "CommandName": "Disconnect-PnPOnline", "Id": 291, "Command": "Disconnect-PnPOnline" }, { - "CommandName": "Enable-PnPCommSite", "Rank": 1, + "CommandName": "Enable-PnPCommSite", "Id": 292, "Command": "Enable-PnPCommSite" }, { - "CommandName": "Enable-PnPCommSite", "Rank": 2, + "CommandName": "Enable-PnPCommSite", "Id": 293, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" }, { - "CommandName": "Enable-PnPFeature", "Rank": 1, + "CommandName": "Enable-PnPFeature", "Id": 294, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Enable-PnPFeature", "Rank": 2, + "CommandName": "Enable-PnPFeature", "Id": 295, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "CommandName": "Enable-PnPFeature", "Rank": 3, + "CommandName": "Enable-PnPFeature", "Id": 296, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "CommandName": "Enable-PnPPageScheduling", "Rank": 1, + "CommandName": "Enable-PnPPageScheduling", "Id": 297, "Command": "Enable-PnPPageScheduling" }, { - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 1, + "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 298, "Command": "Enable-PnPPowerShellTelemetry" }, { - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 2, + "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 299, "Command": "Enable-PnPPowerShellTelemetry -Force" }, { - "CommandName": "Enable-PnPSiteClassification", "Rank": 1, + "CommandName": "Enable-PnPSiteClassification", "Id": 300, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" }, { - "CommandName": "Enable-PnPSiteClassification", "Rank": 2, + "CommandName": "Enable-PnPSiteClassification", "Id": 301, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 1, + "CommandName": "Export-PnPListToSiteTemplate", "Id": 302, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" }, { - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 2, + "CommandName": "Export-PnPListToSiteTemplate", "Id": 303, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" }, { - "CommandName": "Export-PnPPage", "Rank": 1, + "CommandName": "Export-PnPPage", "Id": 304, "Command": "Export-PnPPage -Identity Home.aspx" }, { - "CommandName": "Export-PnPPageMapping", "Rank": 1, + "CommandName": "Export-PnPPageMapping", "Id": 305, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" }, { - "CommandName": "Export-PnPPageMapping", "Rank": 2, + "CommandName": "Export-PnPPageMapping", "Id": 306, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" }, { - "CommandName": "Export-PnPPageMapping", "Rank": 3, + "CommandName": "Export-PnPPageMapping", "Id": 307, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" }, { - "CommandName": "Export-PnPTaxonomy", "Rank": 1, + "CommandName": "Export-PnPTaxonomy", "Id": 308, "Command": "Export-PnPTaxonomy" }, { - "CommandName": "Export-PnPTaxonomy", "Rank": 2, + "CommandName": "Export-PnPTaxonomy", "Id": 309, "Command": "Export-PnPTaxonomy -Path c:\\output.txt" }, { - "CommandName": "Export-PnPTaxonomy", "Rank": 3, + "CommandName": "Export-PnPTaxonomy", "Id": 310, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" }, { - "CommandName": "Export-PnPTaxonomy", "Rank": 4, + "CommandName": "Export-PnPTaxonomy", "Id": 311, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" }, { - "CommandName": "Export-PnPTermGroupToXml", "Rank": 1, + "CommandName": "Export-PnPTermGroupToXml", "Id": 312, "Command": "Export-PnPTermGroupToXml" }, { - "CommandName": "Export-PnPTermGroupToXml", "Rank": 2, + "CommandName": "Export-PnPTermGroupToXml", "Id": 313, "Command": "Export-PnPTermGroupToXml -Out output.xml" }, { - "CommandName": "Export-PnPTermGroupToXml", "Rank": 3, + "CommandName": "Export-PnPTermGroupToXml", "Id": 314, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" }, { - "CommandName": "Export-PnPUserInfo", "Rank": 1, + "CommandName": "Export-PnPUserInfo", "Id": 315, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "CommandName": "Export-PnPUserInfo", "Rank": 2, + "CommandName": "Export-PnPUserInfo", "Id": 316, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" }, { - "CommandName": "Export-PnPUserProfile", "Rank": 1, + "CommandName": "Export-PnPUserProfile", "Id": 317, "Command": "Export-PnPUserProfile -LoginName user@domain.com" }, { - "CommandName": "Export-PnPUserProfile", "Rank": 2, + "CommandName": "Export-PnPUserProfile", "Id": 318, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" }, { - "CommandName": "Find-PnPFile", "Rank": 1, + "CommandName": "Find-PnPFile", "Id": 319, "Command": "Find-PnPFile -Match *.master" }, { - "CommandName": "Find-PnPFile", "Rank": 2, + "CommandName": "Find-PnPFile", "Id": 320, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" }, { - "CommandName": "Find-PnPFile", "Rank": 3, + "CommandName": "Find-PnPFile", "Id": 321, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" }, { - "CommandName": "Get-PnPAccessToken", "Rank": 1, + "CommandName": "Get-PnPAccessToken", "Id": 322, "Command": "Get-PnPAccessToken" }, { - "CommandName": "Get-PnPAccessToken", "Rank": 2, + "CommandName": "Get-PnPAccessToken", "Id": 323, "Command": "Get-PnPAccessToken -Decoded" }, { - "CommandName": "Get-PnPAccessToken", "Rank": 3, + "CommandName": "Get-PnPAccessToken", "Id": 324, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" }, { - "CommandName": "Get-PnPAccessToken", "Rank": 4, + "CommandName": "Get-PnPAccessToken", "Id": 325, "Command": "Get-PnPAccessToken -ResourceTypeName ARM" }, { - "CommandName": "Get-PnPAccessToken", "Rank": 5, + "CommandName": "Get-PnPAccessToken", "Id": 326, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" }, { - "CommandName": "Get-PnPAlert", "Rank": 1, + "CommandName": "Get-PnPAlert", "Id": 327, "Command": "Get-PnPAlert" }, { - "CommandName": "Get-PnPAlert", "Rank": 2, + "CommandName": "Get-PnPAlert", "Id": 328, "Command": "Get-PnPAlert -List \"Demo List\"" }, { - "CommandName": "Get-PnPAlert", "Rank": 3, + "CommandName": "Get-PnPAlert", "Id": 329, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "CommandName": "Get-PnPAlert", "Rank": 4, + "CommandName": "Get-PnPAlert", "Id": 330, "Command": "Get-PnPAlert -Title \"Demo Alert\"" }, { - "CommandName": "Get-PnPAlert", "Rank": 5, + "CommandName": "Get-PnPAlert", "Id": 331, "Command": "Get-PnPAlert -AllUsers" }, { - "CommandName": "Get-PnPAlert", "Rank": 6, + "CommandName": "Get-PnPAlert", "Id": 332, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" }, { - "CommandName": "Get-PnPApp", "Rank": 1, + "CommandName": "Get-PnPApp", "Id": 333, "Command": "Get-PnPApp" }, { - "CommandName": "Get-PnPApp", "Rank": 2, + "CommandName": "Get-PnPApp", "Id": 334, "Command": "Get-PnPApp -Scope Site" }, { - "CommandName": "Get-PnPApp", "Rank": 3, + "CommandName": "Get-PnPApp", "Id": 335, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "CommandName": "Get-PnPAppErrors", "Rank": 1, + "CommandName": "Get-PnPAppErrors", "Id": 336, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" }, { - "CommandName": "Get-PnPAppErrors", "Rank": 2, + "CommandName": "Get-PnPAppErrors", "Id": 337, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" }, { - "CommandName": "Get-PnPAppInfo", "Rank": 1, + "CommandName": "Get-PnPAppInfo", "Id": 338, "Command": "Get-PnPAppInfo -Name \"Excel Service\"" }, { - "CommandName": "Get-PnPAppInfo", "Rank": 2, + "CommandName": "Get-PnPAppInfo", "Id": 339, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "CommandName": "Get-PnPAppInfo", "Rank": 3, + "CommandName": "Get-PnPAppInfo", "Id": 340, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" }, { - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Get-PnPApplicationCustomizer", "Id": 341, "Command": "Get-PnPApplicationCustomizer" }, { - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Get-PnPApplicationCustomizer", "Id": 342, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 3, + "CommandName": "Get-PnPApplicationCustomizer", "Id": 343, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" }, { - "CommandName": "Get-PnPAuditing", "Rank": 1, + "CommandName": "Get-PnPAuditing", "Id": 344, "Command": "Get-PnPAuditing" }, { - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 1, + "CommandName": "Get-PnPAuthenticationRealm", "Id": 345, "Command": "Get-PnPAuthenticationRealm" }, { - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 2, + "CommandName": "Get-PnPAuthenticationRealm", "Id": 346, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" }, { - "CommandName": "Get-PnPAvailableLanguage", "Rank": 1, + "CommandName": "Get-PnPAvailableLanguage", "Id": 347, "Command": "Get-PnPAvailableLanguage" }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 1, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 348, "Command": "Get-PnPAvailableSensitivityLabel" }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 2, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 349, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 3, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 350, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" }, { - "CommandName": "Get-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Get-PnPAvailableSiteClassification", "Id": 351, "Command": "Get-PnPAvailableSiteClassification" }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 1, + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 352, "Command": "Get-PnPAzureACSPrincipal" }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 2, + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 353, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 3, + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 354, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" }, { - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 4, + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 355, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 356, "Command": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 357, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 358, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 359, "Command": "Get-PnPAzureADActivityReportSignIn" }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 360, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 361, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" }, { - "CommandName": "Get-PnPAzureADApp", "Rank": 1, + "CommandName": "Get-PnPAzureADApp", "Id": 362, "Command": "Get-PnPAzureADApp" }, { - "CommandName": "Get-PnPAzureADApp", "Rank": 2, + "CommandName": "Get-PnPAzureADApp", "Id": 363, "Command": "Get-PnPAzureADApp -Identity MyApp" }, { - "CommandName": "Get-PnPAzureADApp", "Rank": 3, + "CommandName": "Get-PnPAzureADApp", "Id": 364, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "CommandName": "Get-PnPAzureADApp", "Rank": 4, + "CommandName": "Get-PnPAzureADApp", "Id": 365, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" }, { - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 1, + "CommandName": "Get-PnPAzureADAppPermission", "Id": 366, "Command": "Get-PnPAzureADAppPermission" }, { - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 2, + "CommandName": "Get-PnPAzureADAppPermission", "Id": 367, "Command": "Get-PnPAzureADAppPermission -Identity MyApp" }, { - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 3, + "CommandName": "Get-PnPAzureADAppPermission", "Id": 368, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 369, "Command": "Get-PnPAzureADAppSitePermission" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 370, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 3, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 371, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 4, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 372, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 5, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 373, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" }, { - "CommandName": "Get-PnPAzureADGroup", "Rank": 1, + "CommandName": "Get-PnPAzureADGroup", "Id": 374, "Command": "Get-PnPAzureADGroup" }, { - "CommandName": "Get-PnPAzureADGroup", "Rank": 2, + "CommandName": "Get-PnPAzureADGroup", "Id": 375, "Command": "Get-PnPAzureADGroup -Identity $groupId" }, { - "CommandName": "Get-PnPAzureADGroup", "Rank": 3, + "CommandName": "Get-PnPAzureADGroup", "Id": 376, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" }, { - "CommandName": "Get-PnPAzureADGroup", "Rank": 4, + "CommandName": "Get-PnPAzureADGroup", "Id": 377, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" }, { - "CommandName": "Get-PnPAzureADGroup", "Rank": 5, + "CommandName": "Get-PnPAzureADGroup", "Id": 378, "Command": "Get-PnPAzureADGroup -Identity $group" }, { - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Get-PnPAzureADGroupMember", "Id": 379, "Command": "Get-PnPAzureADGroupMember -Identity $groupId" }, { - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 2, + "CommandName": "Get-PnPAzureADGroupMember", "Id": 380, "Command": "Get-PnPAzureADGroupMember -Identity $group" }, { - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Get-PnPAzureADGroupOwner", "Id": 381, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" }, { - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 2, + "CommandName": "Get-PnPAzureADGroupOwner", "Id": 382, "Command": "Get-PnPAzureADGroupOwner -Identity $group" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 383, "Command": "Get-PnPAzureADServicePrincipal" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 384, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 3, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 385, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 4, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 386, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 5, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 387, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 388, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 389, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 390, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 391, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 1, + "CommandName": "Get-PnPAzureADUser", "Id": 392, "Command": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 2, + "CommandName": "Get-PnPAzureADUser", "Id": 393, "Command": "Get-PnPAzureADUser -EndIndex 50" }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 3, + "CommandName": "Get-PnPAzureADUser", "Id": 394, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 4, + "CommandName": "Get-PnPAzureADUser", "Id": 395, "Command": "Get-PnPAzureADUser -Identity john@contoso.com" }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 5, + "CommandName": "Get-PnPAzureADUser", "Id": 396, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 6, + "CommandName": "Get-PnPAzureADUser", "Id": 397, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 7, + "CommandName": "Get-PnPAzureADUser", "Id": 398, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 8, + "CommandName": "Get-PnPAzureADUser", "Id": 399, "Command": "Get-PnPAzureADUser -Delta" }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 9, + "CommandName": "Get-PnPAzureADUser", "Id": 400, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" }, { - "CommandName": "Get-PnPAzureADUser", "Rank": 10, + "CommandName": "Get-PnPAzureADUser", "Id": 401, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" }, { - "CommandName": "Get-PnPAzureCertificate", "Rank": 1, + "CommandName": "Get-PnPAzureCertificate", "Id": 402, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" }, { - "CommandName": "Get-PnPAzureCertificate", "Rank": 2, + "CommandName": "Get-PnPAzureCertificate", "Id": 403, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "CommandName": "Get-PnPAzureCertificate", "Rank": 3, + "CommandName": "Get-PnPAzureCertificate", "Id": 404, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" }, { - "CommandName": "Get-PnPBrowserIdleSignout", "Rank": 1, + "CommandName": "Get-PnPBrowserIdleSignout", "Id": 405, "Command": "Get-PnPBrowserIdleSignout" }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 1, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 406, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 407, "Command": "Get-PnPBuiltInDesignPackageVisibility" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 408, "Command": "Get-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 2, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 409, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 3, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 410, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 4, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 411, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 5, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 412, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" }, { - "CommandName": "Get-PnPChangeLog", "Rank": 1, + "CommandName": "Get-PnPChangeLog", "Id": 413, "Command": "Get-PnPChangeLog" }, { - "CommandName": "Get-PnPChangeLog", "Rank": 2, + "CommandName": "Get-PnPChangeLog", "Id": 414, "Command": "Get-PnPChangeLog -Nightly" }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 1, + "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 415, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 2, + "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 416, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" }, { - "CommandName": "Get-PnPContentType", "Rank": 1, + "CommandName": "Get-PnPContentType", "Id": 417, "Command": "Get-PnPContentType" }, { - "CommandName": "Get-PnPContentType", "Rank": 2, + "CommandName": "Get-PnPContentType", "Id": 418, "Command": "Get-PnPContentType -InSiteHierarchy" }, { - "CommandName": "Get-PnPContentType", "Rank": 3, + "CommandName": "Get-PnPContentType", "Id": 419, "Command": "Get-PnPContentType -Identity \"Project Document\"" }, { - "CommandName": "Get-PnPContentType", "Rank": 4, + "CommandName": "Get-PnPContentType", "Id": 420, "Command": "Get-PnPContentType -List \"Documents\"" }, { - "CommandName": "Get-PnPContentTypePublishingStatus", "Rank": 1, + "CommandName": "Get-PnPContentTypePublishingStatus", "Id": 421, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" }, { - "CommandName": "Get-PnPCustomAction", "Rank": 1, + "CommandName": "Get-PnPCustomAction", "Id": 422, "Command": "Get-PnPCustomAction" }, { - "CommandName": "Get-PnPCustomAction", "Rank": 2, + "CommandName": "Get-PnPCustomAction", "Id": 423, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "CommandName": "Get-PnPCustomAction", "Rank": 3, + "CommandName": "Get-PnPCustomAction", "Id": 424, "Command": "Get-PnPCustomAction -Scope web" }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 425, "Command": "Get-PnPDeletedMicrosoft365Group" }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 2, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 426, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "CommandName": "Get-PnPDeletedTeam", "Rank": 1, + "CommandName": "Get-PnPDeletedTeam", "Id": 427, "Command": "Get-PnPDeletedTeam" }, { - "CommandName": "Get-PnPDiagnostics", "Rank": 1, + "CommandName": "Get-PnPDiagnostics", "Id": 428, "Command": "Get-PnPDiagnostics" }, { - "CommandName": "Get-PnPDisableSpacesActivation", "Rank": 1, + "CommandName": "Get-PnPDisableSpacesActivation", "Id": 429, "Command": "Get-PnPDisableSpacesActivation" }, { - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 1, + "CommandName": "Get-PnPDocumentSetTemplate", "Id": 430, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" }, { - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 2, + "CommandName": "Get-PnPDocumentSetTemplate", "Id": 431, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 1, + "CommandName": "Get-PnPEventReceiver", "Id": 432, "Command": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 2, + "CommandName": "Get-PnPEventReceiver", "Id": 433, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 3, + "CommandName": "Get-PnPEventReceiver", "Id": 434, "Command": "Get-PnPEventReceiver -Identity MyReceiver" }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 4, + "CommandName": "Get-PnPEventReceiver", "Id": 435, "Command": "Get-PnPEventReceiver -List \"ProjectList\"" }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 5, + "CommandName": "Get-PnPEventReceiver", "Id": 436, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 6, + "CommandName": "Get-PnPEventReceiver", "Id": 437, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 7, + "CommandName": "Get-PnPEventReceiver", "Id": 438, "Command": "Get-PnPEventReceiver -Scope Site" }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 8, + "CommandName": "Get-PnPEventReceiver", "Id": 439, "Command": "Get-PnPEventReceiver -Scope Web" }, { - "CommandName": "Get-PnPEventReceiver", "Rank": 9, + "CommandName": "Get-PnPEventReceiver", "Id": 440, "Command": "Get-PnPEventReceiver -Scope All" }, { - "CommandName": "Get-PnPException", "Rank": 1, + "CommandName": "Get-PnPException", "Id": 441, "Command": "Get-PnPException" }, { - "CommandName": "Get-PnPException", "Rank": 2, + "CommandName": "Get-PnPException", "Id": 442, "Command": "Get-PnPException -All" }, { - "CommandName": "Get-PnPExternalUser", "Rank": 1, + "CommandName": "Get-PnPExternalUser", "Id": 443, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" }, { - "CommandName": "Get-PnPExternalUser", "Rank": 2, + "CommandName": "Get-PnPExternalUser", "Id": 444, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" }, { - "CommandName": "Get-PnPFeature", "Rank": 1, + "CommandName": "Get-PnPFeature", "Id": 445, "Command": "Get-PnPFeature" }, { - "CommandName": "Get-PnPFeature", "Rank": 2, + "CommandName": "Get-PnPFeature", "Id": 446, "Command": "Get-PnPFeature -Scope Site" }, { - "CommandName": "Get-PnPFeature", "Rank": 3, + "CommandName": "Get-PnPFeature", "Id": 447, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "CommandName": "Get-PnPFeature", "Rank": 4, + "CommandName": "Get-PnPFeature", "Id": 448, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" }, { - "CommandName": "Get-PnPField", "Rank": 1, + "CommandName": "Get-PnPField", "Id": 449, "Command": "Get-PnPField" }, { - "CommandName": "Get-PnPField", "Rank": 2, + "CommandName": "Get-PnPField", "Id": 450, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "CommandName": "Get-PnPField", "Rank": 3, + "CommandName": "Get-PnPField", "Id": 451, "Command": "Get-PnPField -Group \"Custom Columns\"" }, { - "CommandName": "Get-PnPFile", "Rank": 1, + "CommandName": "Get-PnPFile", "Id": 452, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" }, { - "CommandName": "Get-PnPFile", "Rank": 2, + "CommandName": "Get-PnPFile", "Id": 453, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" }, { - "CommandName": "Get-PnPFile", "Rank": 3, + "CommandName": "Get-PnPFile", "Id": 454, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" }, { - "CommandName": "Get-PnPFile", "Rank": 4, + "CommandName": "Get-PnPFile", "Id": 455, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" }, { - "CommandName": "Get-PnPFile", "Rank": 5, + "CommandName": "Get-PnPFile", "Id": 456, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" }, { - "CommandName": "Get-PnPFile", "Rank": 6, + "CommandName": "Get-PnPFile", "Id": 457, "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" }, { - "CommandName": "Get-PnPFile", "Rank": 7, + "CommandName": "Get-PnPFile", "Id": 458, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" }, { - "CommandName": "Get-PnPFileSharingLink", "Rank": 1, + "CommandName": "Get-PnPFileSharingLink", "Id": 459, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "CommandName": "Get-PnPFileVersion", "Rank": 1, + "CommandName": "Get-PnPFileVersion", "Id": 460, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" }, { - "CommandName": "Get-PnPFileVersion", "Rank": 2, + "CommandName": "Get-PnPFileVersion", "Id": 461, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" }, { - "CommandName": "Get-PnPFlow", "Rank": 1, + "CommandName": "Get-PnPFlow", "Id": 462, "Command": "Get-PnPFlow -AsAdmin" }, { - "CommandName": "Get-PnPFlow", "Rank": 2, + "CommandName": "Get-PnPFlow", "Id": 463, "Command": "Get-PnPFlow -SharingStatus SharedWithMe" }, { - "CommandName": "Get-PnPFlow", "Rank": 3, + "CommandName": "Get-PnPFlow", "Id": 464, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { - "CommandName": "Get-PnPFlowOwner", "Rank": 1, + "CommandName": "Get-PnPFlowOwner", "Id": 465, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" }, { - "CommandName": "Get-PnPFolder", "Rank": 1, + "CommandName": "Get-PnPFolder", "Id": 466, "Command": "Get-PnPFolder" }, { - "CommandName": "Get-PnPFolder", "Rank": 2, + "CommandName": "Get-PnPFolder", "Id": 467, "Command": "Get-PnPFolder -Url \"Shared Documents\"" }, { - "CommandName": "Get-PnPFolder", "Rank": 3, + "CommandName": "Get-PnPFolder", "Id": 468, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" }, { - "CommandName": "Get-PnPFolder", "Rank": 4, + "CommandName": "Get-PnPFolder", "Id": 469, "Command": "Get-PnPFolder -List \"Shared Documents\"" }, { - "CommandName": "Get-PnPFolderFile", "Rank": 1, + "CommandName": "Get-PnPFolderFile", "Id": 470, "Command": "Get-PnPFolderFile" }, { - "CommandName": "Get-PnPFolderFile", "Rank": 2, + "CommandName": "Get-PnPFolderFile", "Id": 471, "Command": "Get-PnPFolderFile -Recurse" }, { - "CommandName": "Get-PnPFolderFile", "Rank": 3, + "CommandName": "Get-PnPFolderFile", "Id": 472, "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"" }, { - "CommandName": "Get-PnPFolderFile", "Rank": 4, + "CommandName": "Get-PnPFolderFile", "Id": 473, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "CommandName": "Get-PnPFolderFile", "Rank": 5, + "CommandName": "Get-PnPFolderFile", "Id": 474, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "CommandName": "Get-PnPFolderFolder", "Rank": 1, + "CommandName": "Get-PnPFolderFolder", "Id": 475, "Command": "Get-PnPFolderFolder" }, { - "CommandName": "Get-PnPFolderFolder", "Rank": 2, + "CommandName": "Get-PnPFolderFolder", "Id": 476, "Command": "Get-PnPFolderFolder -Recurse" }, { - "CommandName": "Get-PnPFolderFolder", "Rank": 3, + "CommandName": "Get-PnPFolderFolder", "Id": 477, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"" }, { - "CommandName": "Get-PnPFolderFolder", "Rank": 4, + "CommandName": "Get-PnPFolderFolder", "Id": 478, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" }, { - "CommandName": "Get-PnPFolderFolder", "Rank": 5, + "CommandName": "Get-PnPFolderFolder", "Id": 479, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" }, { - "CommandName": "Get-PnPFolderFolder", "Rank": 6, + "CommandName": "Get-PnPFolderFolder", "Id": 480, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "CommandName": "Get-PnPFolderItem", "Rank": 1, + "CommandName": "Get-PnPFolderItem", "Id": 481, "Command": "Get-PnPFolderItem" }, { - "CommandName": "Get-PnPFolderItem", "Rank": 2, + "CommandName": "Get-PnPFolderItem", "Id": 482, "Command": "Get-PnPFolderItem -Recurse" }, { - "CommandName": "Get-PnPFolderItem", "Rank": 3, + "CommandName": "Get-PnPFolderItem", "Id": 483, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" }, { - "CommandName": "Get-PnPFolderItem", "Rank": 4, + "CommandName": "Get-PnPFolderItem", "Id": 484, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "CommandName": "Get-PnPFolderItem", "Rank": 5, + "CommandName": "Get-PnPFolderItem", "Id": 485, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" }, { - "CommandName": "Get-PnPFolderItem", "Rank": 6, + "CommandName": "Get-PnPFolderItem", "Id": 486, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "CommandName": "Get-PnPFolderSharingLink", "Rank": 1, + "CommandName": "Get-PnPFolderSharingLink", "Id": 487, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 1, + "CommandName": "Get-PnPFolderStorageMetric", "Id": 488, "Command": "Get-PnPFolderStorageMetric" }, { - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 2, + "CommandName": "Get-PnPFolderStorageMetric", "Id": 489, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" }, { - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 3, + "CommandName": "Get-PnPFolderStorageMetric", "Id": 490, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" }, { - "CommandName": "Get-PnPFooter", "Rank": 1, + "CommandName": "Get-PnPFooter", "Id": 491, "Command": "Get-PnPFooter" }, { - "CommandName": "Get-PnPGraphAccessToken", "Rank": 1, + "CommandName": "Get-PnPGraphAccessToken", "Id": 492, "Command": "Get-PnPGraphAccessToken" }, { - "CommandName": "Get-PnPGraphAccessToken", "Rank": 2, + "CommandName": "Get-PnPGraphAccessToken", "Id": 493, "Command": "Get-PnPGraphAccessToken -Decoded" }, { - "CommandName": "Get-PnPGraphSubscription", "Rank": 1, + "CommandName": "Get-PnPGraphSubscription", "Id": 494, "Command": "Get-PnPGraphSubscription" }, { - "CommandName": "Get-PnPGraphSubscription", "Rank": 2, + "CommandName": "Get-PnPGraphSubscription", "Id": 495, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "CommandName": "Get-PnPGroup", "Rank": 1, + "CommandName": "Get-PnPGroup", "Id": 496, "Command": "Get-PnPGroup" }, { - "CommandName": "Get-PnPGroup", "Rank": 2, + "CommandName": "Get-PnPGroup", "Id": 497, "Command": "Get-PnPGroup -Identity 'My Site Users'" }, { - "CommandName": "Get-PnPGroup", "Rank": 3, + "CommandName": "Get-PnPGroup", "Id": 498, "Command": "Get-PnPGroup -AssociatedMemberGroup" }, { - "CommandName": "Get-PnPGroupMember", "Rank": 1, + "CommandName": "Get-PnPGroupMember", "Id": 499, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" }, { - "CommandName": "Get-PnPGroupMember", "Rank": 2, + "CommandName": "Get-PnPGroupMember", "Id": 500, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" }, { - "CommandName": "Get-PnPGroupPermissions", "Rank": 1, + "CommandName": "Get-PnPGroupPermissions", "Id": 501, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" }, { - "CommandName": "Get-PnPHideDefaultThemes", "Rank": 1, + "CommandName": "Get-PnPHideDefaultThemes", "Id": 502, "Command": "Get-PnPHideDefaultThemes" }, { - "CommandName": "Get-PnPHomePage", "Rank": 1, + "CommandName": "Get-PnPHomePage", "Id": 503, "Command": "Get-PnPHomePage" }, { - "CommandName": "Get-PnPHomeSite", "Rank": 1, + "CommandName": "Get-PnPHomeSite", "Id": 504, "Command": "Get-PnPHomeSite" }, { - "CommandName": "Get-PnPHomeSite", "Rank": 2, + "CommandName": "Get-PnPHomeSite", "Id": 505, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" }, { - "CommandName": "Get-PnPHomeSite", "Rank": 3, + "CommandName": "Get-PnPHomeSite", "Id": 506, "Command": "Get-PnPHomeSite -Detailed" }, { - "CommandName": "Get-PnPHubSite", "Rank": 1, + "CommandName": "Get-PnPHubSite", "Id": 507, "Command": "Get-PnPHubSite" }, { - "CommandName": "Get-PnPHubSite", "Rank": 2, + "CommandName": "Get-PnPHubSite", "Id": 508, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "CommandName": "Get-PnPHubSite", "Rank": 3, + "CommandName": "Get-PnPHubSite", "Id": 509, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" }, { - "CommandName": "Get-PnPHubSiteChild", "Rank": 1, + "CommandName": "Get-PnPHubSiteChild", "Id": 510, "Command": "Get-PnPHubSiteChild" }, { - "CommandName": "Get-PnPHubSiteChild", "Rank": 2, + "CommandName": "Get-PnPHubSiteChild", "Id": 511, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "CommandName": "Get-PnPInPlaceRecordsManagement", "Rank": 1, + "CommandName": "Get-PnPInPlaceRecordsManagement", "Id": 512, "Command": "Get-PnPInPlaceRecordsManagement" }, { - "CommandName": "Get-PnPIsSiteAliasAvailable", "Rank": 1, + "CommandName": "Get-PnPIsSiteAliasAvailable", "Id": 513, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" }, { - "CommandName": "Get-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Get-PnPJavaScriptLink", "Id": 514, "Command": "Get-PnPJavaScriptLink" }, { - "CommandName": "Get-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Get-PnPJavaScriptLink", "Id": 515, "Command": "Get-PnPJavaScriptLink -Scope All" }, { - "CommandName": "Get-PnPJavaScriptLink", "Rank": 3, + "CommandName": "Get-PnPJavaScriptLink", "Id": 516, "Command": "Get-PnPJavaScriptLink -Scope Web" }, { - "CommandName": "Get-PnPJavaScriptLink", "Rank": 4, + "CommandName": "Get-PnPJavaScriptLink", "Id": 517, "Command": "Get-PnPJavaScriptLink -Scope Site" }, { - "CommandName": "Get-PnPJavaScriptLink", "Rank": 5, + "CommandName": "Get-PnPJavaScriptLink", "Id": 518, "Command": "Get-PnPJavaScriptLink -Name Test" }, { - "CommandName": "Get-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Get-PnPKnowledgeHubSite", "Id": 519, "Command": "Get-PnPKnowledgeHubSite" }, { - "CommandName": "Get-PnPLabel", "Rank": 1, + "CommandName": "Get-PnPLabel", "Id": 520, "Command": "Get-PnPLabel" }, { - "CommandName": "Get-PnPLabel", "Rank": 2, + "CommandName": "Get-PnPLabel", "Id": 521, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" }, { - "CommandName": "Get-PnPLargeListOperationStatus", "Rank": 1, + "CommandName": "Get-PnPLargeListOperationStatus", "Id": 522, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" }, { - "CommandName": "Get-PnPList", "Rank": 1, + "CommandName": "Get-PnPList", "Id": 523, "Command": "Get-PnPList" }, { - "CommandName": "Get-PnPList", "Rank": 2, + "CommandName": "Get-PnPList", "Id": 524, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Get-PnPList", "Rank": 3, + "CommandName": "Get-PnPList", "Id": 525, "Command": "Get-PnPList -Identity Lists/Announcements" }, { - "CommandName": "Get-PnPList", "Rank": 4, + "CommandName": "Get-PnPList", "Id": 526, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" }, { - "CommandName": "Get-PnPList", "Rank": 5, + "CommandName": "Get-PnPList", "Id": 527, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" }, { - "CommandName": "Get-PnPListDesign", "Rank": 1, + "CommandName": "Get-PnPListDesign", "Id": 528, "Command": "Get-PnPListDesign" }, { - "CommandName": "Get-PnPListDesign", "Rank": 2, + "CommandName": "Get-PnPListDesign", "Id": 529, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Get-PnPListDesign", "Rank": 3, + "CommandName": "Get-PnPListDesign", "Id": 530, "Command": "Get-PnPListDesign -Identity ListEvent" }, { - "CommandName": "Get-PnPListInformationRightsManagement", "Rank": 1, + "CommandName": "Get-PnPListInformationRightsManagement", "Id": 531, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" }, { - "CommandName": "Get-PnPListItem", "Rank": 1, + "CommandName": "Get-PnPListItem", "Id": 532, "Command": "Get-PnPListItem -List Tasks" }, { - "CommandName": "Get-PnPListItem", "Rank": 2, + "CommandName": "Get-PnPListItem", "Id": 533, "Command": "Get-PnPListItem -List Tasks -Id 1" }, { - "CommandName": "Get-PnPListItem", "Rank": 3, + "CommandName": "Get-PnPListItem", "Id": 534, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" }, { - "CommandName": "Get-PnPListItem", "Rank": 4, + "CommandName": "Get-PnPListItem", "Id": 535, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" }, { - "CommandName": "Get-PnPListItem", "Rank": 5, + "CommandName": "Get-PnPListItem", "Id": 536, "Command": "Get-PnPListItem -List Tasks -Query \"\"" }, { - "CommandName": "Get-PnPListItem", "Rank": 6, + "CommandName": "Get-PnPListItem", "Id": 537, "Command": "Get-PnPListItem -List Tasks -PageSize 1000" }, { - "CommandName": "Get-PnPListItem", "Rank": 7, + "CommandName": "Get-PnPListItem", "Id": 538, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" }, { - "CommandName": "Get-PnPListItem", "Rank": 8, + "CommandName": "Get-PnPListItem", "Id": 539, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" }, { - "CommandName": "Get-PnPListItem", "Rank": 9, + "CommandName": "Get-PnPListItem", "Id": 540, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" }, { - "CommandName": "Get-PnPListItemAttachment", "Rank": 1, + "CommandName": "Get-PnPListItemAttachment", "Id": 541, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" }, { - "CommandName": "Get-PnPListItemAttachment", "Rank": 2, + "CommandName": "Get-PnPListItemAttachment", "Id": 542, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" }, { - "CommandName": "Get-PnPListItemComment", "Rank": 1, + "CommandName": "Get-PnPListItemComment", "Id": 543, "Command": "Get-PnPListItemComment -List Tasks -Identity 1" }, { - "CommandName": "Get-PnPListItemPermission", "Rank": 1, + "CommandName": "Get-PnPListItemPermission", "Id": 544, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" }, { - "CommandName": "Get-PnPListItemVersion", "Rank": 1, + "CommandName": "Get-PnPListItemVersion", "Id": 545, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" }, { - "CommandName": "Get-PnPListPermissions", "Rank": 1, + "CommandName": "Get-PnPListPermissions", "Id": 546, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" }, { - "CommandName": "Get-PnPListPermissions", "Rank": 2, + "CommandName": "Get-PnPListPermissions", "Id": 547, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { - "CommandName": "Get-PnPListRecordDeclaration", "Rank": 1, + "CommandName": "Get-PnPListRecordDeclaration", "Id": 548, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" }, { - "CommandName": "Get-PnPMasterPage", "Rank": 1, + "CommandName": "Get-PnPMasterPage", "Id": 549, "Command": "Get-PnPMasterPage" }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 1, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 550, "Command": "Get-PnPMessageCenterAnnouncement" }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 2, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 551, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 552, "Command": "Get-PnPMicrosoft365ExpiringGroup" }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 553, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" }, { - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 554, "Command": "Get-PnPMicrosoft365Group" }, { - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 555, "Command": "Get-PnPMicrosoft365Group -Identity $groupId" }, { - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 556, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" }, { - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 557, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" }, { - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 558, "Command": "Get-PnPMicrosoft365Group -Identity $group" }, { - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 559, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 560, "Command": "Get-PnPMicrosoft365GroupEndpoint" }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 561, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 562, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 563, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 564, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 565, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 566, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 567, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 568, "Command": "Get-PnPMicrosoft365GroupSettings" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 569, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 570, "Command": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 571, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 572, "Command": "Get-PnPMicrosoft365GroupTeam" }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 573, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 574, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 575, "Command": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 576, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 577, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "CommandName": "Get-PnPNavigationNode", "Rank": 1, + "CommandName": "Get-PnPNavigationNode", "Id": 578, "Command": "Get-PnPNavigationNode" }, { - "CommandName": "Get-PnPNavigationNode", "Rank": 2, + "CommandName": "Get-PnPNavigationNode", "Id": 579, "Command": "Get-PnPNavigationNode -Location QuickLaunch" }, { - "CommandName": "Get-PnPNavigationNode", "Rank": 3, + "CommandName": "Get-PnPNavigationNode", "Id": 580, "Command": "Get-PnPNavigationNode -Location TopNavigationBar" }, { - "CommandName": "Get-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Get-PnPOrgAssetsLibrary", "Id": 581, "Command": "Get-PnPOrgAssetsLibrary" }, { - "CommandName": "Get-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Get-PnPOrgNewsSite", "Id": 582, "Command": "Get-PnPOrgNewsSite" }, { - "CommandName": "Get-PnPPage", "Rank": 1, + "CommandName": "Get-PnPPage", "Id": 583, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" }, { - "CommandName": "Get-PnPPage", "Rank": 2, + "CommandName": "Get-PnPPage", "Id": 584, "Command": "Get-PnPPage \"MyPage\"" }, { - "CommandName": "Get-PnPPage", "Rank": 3, + "CommandName": "Get-PnPPage", "Id": 585, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" }, { - "CommandName": "Get-PnPPage", "Rank": 4, + "CommandName": "Get-PnPPage", "Id": 586, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" }, { - "CommandName": "Get-PnPPageComponent", "Rank": 1, + "CommandName": "Get-PnPPageComponent", "Id": 587, "Command": "Get-PnPPageComponent -Page Home" }, { - "CommandName": "Get-PnPPageComponent", "Rank": 2, + "CommandName": "Get-PnPPageComponent", "Id": 588, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "CommandName": "Get-PnPPageComponent", "Rank": 3, + "CommandName": "Get-PnPPageComponent", "Id": 589, "Command": "Get-PnPPageComponent -Page Home -ListAvailable" }, { - "CommandName": "Get-PnPPlannerBucket", "Rank": 1, + "CommandName": "Get-PnPPlannerBucket", "Id": 590, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "CommandName": "Get-PnPPlannerConfiguration", "Rank": 1, + "CommandName": "Get-PnPPlannerConfiguration", "Id": 591, "Command": "Get-PnPPlannerConfiguration" }, { - "CommandName": "Get-PnPPlannerPlan", "Rank": 1, + "CommandName": "Get-PnPPlannerPlan", "Id": 592, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" }, { - "CommandName": "Get-PnPPlannerPlan", "Rank": 2, + "CommandName": "Get-PnPPlannerPlan", "Id": 593, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" }, { - "CommandName": "Get-PnPPlannerPlan", "Rank": 3, + "CommandName": "Get-PnPPlannerPlan", "Id": 594, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" }, { - "CommandName": "Get-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Get-PnPPlannerRosterMember", "Id": 595, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 1, + "CommandName": "Get-PnPPlannerRosterPlan", "Id": 596, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" }, { - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 2, + "CommandName": "Get-PnPPlannerRosterPlan", "Id": 597, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "CommandName": "Get-PnPPlannerTask", "Rank": 1, + "CommandName": "Get-PnPPlannerTask", "Id": 598, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "CommandName": "Get-PnPPlannerTask", "Rank": 2, + "CommandName": "Get-PnPPlannerTask", "Id": 599, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "CommandName": "Get-PnPPlannerTask", "Rank": 3, + "CommandName": "Get-PnPPlannerTask", "Id": 600, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "CommandName": "Get-PnPPlannerUserPolicy", "Rank": 1, + "CommandName": "Get-PnPPlannerUserPolicy", "Id": 601, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "CommandName": "Get-PnPPowerPlatformConnector", "Rank": 1, + "CommandName": "Get-PnPPowerPlatformConnector", "Id": 602, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 1, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 603, "Command": "Get-PnPPowerPlatformEnvironment" }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 2, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 604, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 3, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 605, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" }, { - "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, + "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Id": 606, "Command": "Get-PnPPowerShellTelemetryEnabled" }, { - "CommandName": "Get-PnPPropertyBag", "Rank": 1, + "CommandName": "Get-PnPPropertyBag", "Id": 607, "Command": "Get-PnPPropertyBag" }, { - "CommandName": "Get-PnPPropertyBag", "Rank": 2, + "CommandName": "Get-PnPPropertyBag", "Id": 608, "Command": "Get-PnPPropertyBag -Key MyKey" }, { - "CommandName": "Get-PnPPropertyBag", "Rank": 3, + "CommandName": "Get-PnPPropertyBag", "Id": 609, "Command": "Get-PnPPropertyBag -Folder /MyFolder" }, { - "CommandName": "Get-PnPPropertyBag", "Rank": 4, + "CommandName": "Get-PnPPropertyBag", "Id": 610, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" }, { - "CommandName": "Get-PnPPropertyBag", "Rank": 5, + "CommandName": "Get-PnPPropertyBag", "Id": 611, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" }, { - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Get-PnPPublishingImageRendition", "Id": 612, "Command": "Get-PnPPublishingImageRendition" }, { - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 2, + "CommandName": "Get-PnPPublishingImageRendition", "Id": 613, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" }, { - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 3, + "CommandName": "Get-PnPPublishingImageRendition", "Id": 614, "Command": "Get-PnPPublishingImageRendition -Identity 2" }, { - "CommandName": "Get-PnPRecycleBinItem", "Rank": 1, + "CommandName": "Get-PnPRecycleBinItem", "Id": 615, "Command": "Get-PnPRecycleBinItem" }, { - "CommandName": "Get-PnPRecycleBinItem", "Rank": 2, + "CommandName": "Get-PnPRecycleBinItem", "Id": 616, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" }, { - "CommandName": "Get-PnPRecycleBinItem", "Rank": 3, + "CommandName": "Get-PnPRecycleBinItem", "Id": 617, "Command": "Get-PnPRecycleBinItem -FirstStage" }, { - "CommandName": "Get-PnPRecycleBinItem", "Rank": 4, + "CommandName": "Get-PnPRecycleBinItem", "Id": 618, "Command": "Get-PnPRecycleBinItem -SecondStage" }, { - "CommandName": "Get-PnPRecycleBinItem", "Rank": 5, + "CommandName": "Get-PnPRecycleBinItem", "Id": 619, "Command": "Get-PnPRecycleBinItem -RowLimit 10000" }, { - "CommandName": "Get-PnPRequestAccessEmails", "Rank": 1, + "CommandName": "Get-PnPRequestAccessEmails", "Id": 620, "Command": "Get-PnPRequestAccessEmails" }, { - "CommandName": "Get-PnPRoleDefinition", "Rank": 1, + "CommandName": "Get-PnPRoleDefinition", "Id": 621, "Command": "Get-PnPRoleDefinition" }, { - "CommandName": "Get-PnPRoleDefinition", "Rank": 2, + "CommandName": "Get-PnPRoleDefinition", "Id": 622, "Command": "Get-PnPRoleDefinition -Identity Read" }, { - "CommandName": "Get-PnPRoleDefinition", "Rank": 3, + "CommandName": "Get-PnPRoleDefinition", "Id": 623, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Get-PnPSearchConfiguration", "Id": 624, "Command": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Get-PnPSearchConfiguration", "Id": 625, "Command": "Get-PnPSearchConfiguration -Scope Site" }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Get-PnPSearchConfiguration", "Id": 626, "Command": "Get-PnPSearchConfiguration -Scope Subscription" }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Get-PnPSearchConfiguration", "Id": 627, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 5, + "CommandName": "Get-PnPSearchConfiguration", "Id": 628, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 6, + "CommandName": "Get-PnPSearchConfiguration", "Id": 629, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 7, + "CommandName": "Get-PnPSearchConfiguration", "Id": 630, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" }, { - "CommandName": "Get-PnPSearchConfiguration", "Rank": 8, + "CommandName": "Get-PnPSearchConfiguration", "Id": 631, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" }, { - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 1, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 632, "Command": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 2, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 633, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" }, { - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 3, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 634, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" }, { - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 4, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 635, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" }, { - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 5, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 636, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" }, { - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 6, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 637, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" }, { - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 7, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 638, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" }, { - "CommandName": "Get-PnPSearchSettings", "Rank": 1, + "CommandName": "Get-PnPSearchSettings", "Id": 639, "Command": "Get-PnPSearchSettings" }, { - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 1, + "CommandName": "Get-PnPServiceCurrentHealth", "Id": 640, "Command": "Get-PnPServiceCurrentHealth" }, { - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 2, + "CommandName": "Get-PnPServiceCurrentHealth", "Id": 641, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" }, { - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 1, + "CommandName": "Get-PnPServiceHealthIssue", "Id": 642, "Command": "Get-PnPServiceHealthIssue" }, { - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 2, + "CommandName": "Get-PnPServiceHealthIssue", "Id": 643, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" }, { - "CommandName": "Get-PnPSharePointAddIn", "Rank": 1, + "CommandName": "Get-PnPSharePointAddIn", "Id": 644, "Command": "Get-PnPSharePointAddIn" }, { - "CommandName": "Get-PnPSharePointAddIn", "Rank": 2, + "CommandName": "Get-PnPSharePointAddIn", "Id": 645, "Command": "Get-PnPSharePointAddIn -IncludeSubsites" }, { - "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, + "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Id": 646, "Command": "Get-PnPSharingForNonOwnersOfSite" }, { - "CommandName": "Get-PnPSite", "Rank": 1, + "CommandName": "Get-PnPSite", "Id": 647, "Command": "Get-PnPSite" }, { - "CommandName": "Get-PnPSite", "Rank": 2, + "CommandName": "Get-PnPSite", "Id": 648, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" }, { - "CommandName": "Get-PnPSiteClosure", "Rank": 1, + "CommandName": "Get-PnPSiteClosure", "Id": 649, "Command": "Get-PnPSiteClosure" }, { - "CommandName": "Get-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAdmin", "Id": 650, "Command": "Get-PnPSiteCollectionAdmin" }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 651, "Command": "Get-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 2, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 652, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 3, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 653, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" }, { - "CommandName": "Get-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionTermStore", "Id": 654, "Command": "Get-PnPSiteCollectionTermStore" }, { - "CommandName": "Get-PnPSiteDesign", "Rank": 1, + "CommandName": "Get-PnPSiteDesign", "Id": 655, "Command": "Get-PnPSiteDesign" }, { - "CommandName": "Get-PnPSiteDesign", "Rank": 2, + "CommandName": "Get-PnPSiteDesign", "Id": 656, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Get-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Get-PnPSiteDesignRights", "Id": 657, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Get-PnPSiteDesignRun", "Rank": 1, + "CommandName": "Get-PnPSiteDesignRun", "Id": 658, "Command": "Get-PnPSiteDesignRun" }, { - "CommandName": "Get-PnPSiteDesignRun", "Rank": 2, + "CommandName": "Get-PnPSiteDesignRun", "Id": 659, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" }, { - "CommandName": "Get-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Get-PnPSiteDesignTask", "Id": 660, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "CommandName": "Get-PnPSiteDesignTask", "Rank": 2, + "CommandName": "Get-PnPSiteDesignTask", "Id": 661, "Command": "Get-PnPSiteDesignTask" }, { - "CommandName": "Get-PnPSiteDesignTask", "Rank": 3, + "CommandName": "Get-PnPSiteDesignTask", "Id": 662, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "CommandName": "Get-PnPSiteGroup", "Rank": 1, + "CommandName": "Get-PnPSiteGroup", "Id": 663, "Command": "Get-PnPSiteGroup" }, { - "CommandName": "Get-PnPSiteGroup", "Rank": 2, + "CommandName": "Get-PnPSiteGroup", "Id": 664, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "CommandName": "Get-PnPSiteGroup", "Rank": 3, + "CommandName": "Get-PnPSiteGroup", "Id": 665, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" }, { - "CommandName": "Get-PnPSiteGroup", "Rank": 4, + "CommandName": "Get-PnPSiteGroup", "Id": 666, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "CommandName": "Get-PnPSitePolicy", "Rank": 1, + "CommandName": "Get-PnPSitePolicy", "Id": 667, "Command": "Get-PnPSitePolicy" }, { - "CommandName": "Get-PnPSitePolicy", "Rank": 2, + "CommandName": "Get-PnPSitePolicy", "Id": 668, "Command": "Get-PnPSitePolicy -AllAvailable" }, { - "CommandName": "Get-PnPSitePolicy", "Rank": 3, + "CommandName": "Get-PnPSitePolicy", "Id": 669, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "CommandName": "Get-PnPSiteScript", "Rank": 1, + "CommandName": "Get-PnPSiteScript", "Id": 670, "Command": "Get-PnPSiteScript" }, { - "CommandName": "Get-PnPSiteScript", "Rank": 2, + "CommandName": "Get-PnPSiteScript", "Id": 671, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromList", "Id": 672, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" }, { - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromList", "Id": 673, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" }, { - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromList", "Id": 674, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 675, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 676, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 677, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 4, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 678, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 5, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 679, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 6, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 680, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 1, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 681, "Command": "Get-PnPSiteSearchQueryResults" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 2, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 682, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 3, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 683, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 4, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 684, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 5, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 685, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 6, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 686, "Command": "Get-PnPSiteSearchQueryResults -All" }, { - "CommandName": "Get-PnPSiteSensitivityLabel", "Rank": 1, + "CommandName": "Get-PnPSiteSensitivityLabel", "Id": 687, "Command": "Get-PnPSiteSensitivityLabel" }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 1, + "CommandName": "Get-PnPSiteTemplate", "Id": 688, "Command": "Get-PnPSiteTemplate -Out template.pnp" }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 2, + "CommandName": "Get-PnPSiteTemplate", "Id": 689, "Command": "Get-PnPSiteTemplate -Out template.xml" }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 3, + "CommandName": "Get-PnPSiteTemplate", "Id": 690, "Command": "Get-PnPSiteTemplate -Out template.md" }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 4, + "CommandName": "Get-PnPSiteTemplate", "Id": 691, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 5, + "CommandName": "Get-PnPSiteTemplate", "Id": 692, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 6, + "CommandName": "Get-PnPSiteTemplate", "Id": 693, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 7, + "CommandName": "Get-PnPSiteTemplate", "Id": 694, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 8, + "CommandName": "Get-PnPSiteTemplate", "Id": 695, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 9, + "CommandName": "Get-PnPSiteTemplate", "Id": 696, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 10, + "CommandName": "Get-PnPSiteTemplate", "Id": 697, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 11, + "CommandName": "Get-PnPSiteTemplate", "Id": 698, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 12, + "CommandName": "Get-PnPSiteTemplate", "Id": 699, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 13, + "CommandName": "Get-PnPSiteTemplate", "Id": 700, "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" }, { - "CommandName": "Get-PnPSiteTemplate", "Rank": 14, + "CommandName": "Get-PnPSiteTemplate", "Id": 701, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" }, { - "CommandName": "Get-PnPSiteUserInvitations", "Rank": 1, + "CommandName": "Get-PnPSiteUserInvitations", "Id": 702, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "CommandName": "Get-PnPStorageEntity", "Rank": 1, + "CommandName": "Get-PnPStorageEntity", "Id": 703, "Command": "Get-PnPStorageEntity" }, { - "CommandName": "Get-PnPStorageEntity", "Rank": 2, + "CommandName": "Get-PnPStorageEntity", "Id": 704, "Command": "Get-PnPStorageEntity -Key MyKey" }, { - "CommandName": "Get-PnPStorageEntity", "Rank": 3, + "CommandName": "Get-PnPStorageEntity", "Id": 705, "Command": "Get-PnPStorageEntity -Scope Site" }, { - "CommandName": "Get-PnPStorageEntity", "Rank": 4, + "CommandName": "Get-PnPStorageEntity", "Id": 706, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" }, { - "CommandName": "Get-PnPStoredCredential", "Rank": 1, + "CommandName": "Get-PnPStoredCredential", "Id": 707, "Command": "Get-PnPStoredCredential -Name O365" }, { - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Id": 708, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Id": 709, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Rank": 1, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Id": 710, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" }, { - "CommandName": "Get-PnPSubWeb", "Rank": 1, + "CommandName": "Get-PnPSubWeb", "Id": 711, "Command": "Get-PnPSubWeb" }, { - "CommandName": "Get-PnPSubWeb", "Rank": 2, + "CommandName": "Get-PnPSubWeb", "Id": 712, "Command": "Get-PnPSubWeb -Recurse" }, { - "CommandName": "Get-PnPSubWeb", "Rank": 3, + "CommandName": "Get-PnPSubWeb", "Id": 713, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" }, { - "CommandName": "Get-PnPSubWeb", "Rank": 4, + "CommandName": "Get-PnPSubWeb", "Id": 714, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" }, { - "CommandName": "Get-PnPSubWeb", "Rank": 5, + "CommandName": "Get-PnPSubWeb", "Id": 715, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" }, { - "CommandName": "Get-PnPSyntexModel", "Rank": 1, + "CommandName": "Get-PnPSyntexModel", "Id": 716, "Command": "Get-PnPSyntexModel" }, { - "CommandName": "Get-PnPSyntexModel", "Rank": 2, + "CommandName": "Get-PnPSyntexModel", "Id": 717, "Command": "Get-PnPSyntexModel -Identity 1" }, { - "CommandName": "Get-PnPSyntexModel", "Rank": 3, + "CommandName": "Get-PnPSyntexModel", "Id": 718, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" }, { - "CommandName": "Get-PnPSyntexModelPublication", "Rank": 1, + "CommandName": "Get-PnPSyntexModelPublication", "Id": 719, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" }, { - "CommandName": "Get-PnPTaxonomyItem", "Rank": 1, + "CommandName": "Get-PnPTaxonomyItem", "Id": 720, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" }, { - "CommandName": "Get-PnPTeamsApp", "Rank": 1, + "CommandName": "Get-PnPTeamsApp", "Id": 721, "Command": "Get-PnPTeamsApp" }, { - "CommandName": "Get-PnPTeamsApp", "Rank": 2, + "CommandName": "Get-PnPTeamsApp", "Id": 722, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" }, { - "CommandName": "Get-PnPTeamsApp", "Rank": 3, + "CommandName": "Get-PnPTeamsApp", "Id": 723, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" }, { - "CommandName": "Get-PnPTeamsChannel", "Rank": 1, + "CommandName": "Get-PnPTeamsChannel", "Id": 724, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" }, { - "CommandName": "Get-PnPTeamsChannel", "Rank": 2, + "CommandName": "Get-PnPTeamsChannel", "Id": 725, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" }, { - "CommandName": "Get-PnPTeamsChannel", "Rank": 3, + "CommandName": "Get-PnPTeamsChannel", "Id": 726, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 727, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 728, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessage", "Id": 729, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" }, { - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessage", "Id": 730, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 731, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 732, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" }, { - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelUser", "Id": 733, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" }, { - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelUser", "Id": 734, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" }, { - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 3, + "CommandName": "Get-PnPTeamsChannelUser", "Id": 735, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" }, { - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 4, + "CommandName": "Get-PnPTeamsChannelUser", "Id": 736, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 1, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 737, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 2, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 738, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" }, { - "CommandName": "Get-PnPTeamsTab", "Rank": 1, + "CommandName": "Get-PnPTeamsTab", "Id": 739, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" }, { - "CommandName": "Get-PnPTeamsTab", "Rank": 2, + "CommandName": "Get-PnPTeamsTab", "Id": 740, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" }, { - "CommandName": "Get-PnPTeamsTab", "Rank": 3, + "CommandName": "Get-PnPTeamsTab", "Id": 741, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" }, { - "CommandName": "Get-PnPTeamsTab", "Rank": 4, + "CommandName": "Get-PnPTeamsTab", "Id": 742, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" }, { - "CommandName": "Get-PnPTeamsTab", "Rank": 5, + "CommandName": "Get-PnPTeamsTab", "Id": 743, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" }, { - "CommandName": "Get-PnPTeamsTag", "Rank": 1, + "CommandName": "Get-PnPTeamsTag", "Id": 744, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "CommandName": "Get-PnPTeamsTag", "Rank": 2, + "CommandName": "Get-PnPTeamsTag", "Id": 745, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "CommandName": "Get-PnPTeamsTeam", "Rank": 1, + "CommandName": "Get-PnPTeamsTeam", "Id": 746, "Command": "Get-PnPTeamsTeam" }, { - "CommandName": "Get-PnPTeamsTeam", "Rank": 2, + "CommandName": "Get-PnPTeamsTeam", "Id": 747, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" }, { - "CommandName": "Get-PnPTeamsTeam", "Rank": 3, + "CommandName": "Get-PnPTeamsTeam", "Id": 748, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" }, { - "CommandName": "Get-PnPTeamsTeam", "Rank": 4, + "CommandName": "Get-PnPTeamsTeam", "Id": 749, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" }, { - "CommandName": "Get-PnPTeamsTeam", "Rank": 5, + "CommandName": "Get-PnPTeamsTeam", "Id": 750, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" }, { - "CommandName": "Get-PnPTeamsUser", "Rank": 1, + "CommandName": "Get-PnPTeamsUser", "Id": 751, "Command": "Get-PnPTeamsUser -Team MyTeam" }, { - "CommandName": "Get-PnPTeamsUser", "Rank": 2, + "CommandName": "Get-PnPTeamsUser", "Id": 752, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" }, { - "CommandName": "Get-PnPTeamsUser", "Rank": 3, + "CommandName": "Get-PnPTeamsUser", "Id": 753, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" }, { - "CommandName": "Get-PnPTeamsUser", "Rank": 4, + "CommandName": "Get-PnPTeamsUser", "Id": 754, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" }, { - "CommandName": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, + "CommandName": "Get-PnPTemporarilyDisableAppBar", "Id": 755, "Command": "Get-PnPTemporarilyDisableAppBar" }, { - "CommandName": "Get-PnPTenant", "Rank": 1, + "CommandName": "Get-PnPTenant", "Id": 756, "Command": "Get-PnPTenant" }, { - "CommandName": "Get-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Get-PnPTenantAppCatalogUrl", "Id": 757, "Command": "Get-PnPTenantAppCatalogUrl" }, { - "CommandName": "Get-PnPTenantCdnEnabled", "Rank": 1, + "CommandName": "Get-PnPTenantCdnEnabled", "Id": 758, "Command": "Get-PnPTenantCdnEnabled -CdnType Public" }, { - "CommandName": "Get-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Get-PnPTenantCdnOrigin", "Id": 759, "Command": "Get-PnPTenantCdnOrigin -CdnType Public" }, { - "CommandName": "Get-PnPTenantCdnPolicies", "Rank": 1, + "CommandName": "Get-PnPTenantCdnPolicies", "Id": 760, "Command": "Get-PnPTenantCdnPolicies -CdnType Public" }, { - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 1, + "CommandName": "Get-PnPTenantDeletedSite", "Id": 761, "Command": "Get-PnPTenantDeletedSite" }, { - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 2, + "CommandName": "Get-PnPTenantDeletedSite", "Id": 762, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 3, + "CommandName": "Get-PnPTenantDeletedSite", "Id": 763, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" }, { - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 4, + "CommandName": "Get-PnPTenantDeletedSite", "Id": 764, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" }, { - "CommandName": "Get-PnPTenantId", "Rank": 1, + "CommandName": "Get-PnPTenantId", "Id": 765, "Command": "Get-PnPTenantId" }, { - "CommandName": "Get-PnPTenantId", "Rank": 2, + "CommandName": "Get-PnPTenantId", "Id": 766, "Command": "Get-PnPTenantId contoso" }, { - "CommandName": "Get-PnPTenantId", "Rank": 3, + "CommandName": "Get-PnPTenantId", "Id": 767, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" }, { - "CommandName": "Get-PnPTenantId", "Rank": 4, + "CommandName": "Get-PnPTenantId", "Id": 768, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" }, { - "CommandName": "Get-PnPTenantInfo", "Rank": 1, + "CommandName": "Get-PnPTenantInfo", "Id": 769, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" }, { - "CommandName": "Get-PnPTenantInfo", "Rank": 2, + "CommandName": "Get-PnPTenantInfo", "Id": 770, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" }, { - "CommandName": "Get-PnPTenantInfo", "Rank": 3, + "CommandName": "Get-PnPTenantInfo", "Id": 771, "Command": "Get-PnPTenantInfo" }, { - "CommandName": "Get-PnPTenantInfo", "Rank": 4, + "CommandName": "Get-PnPTenantInfo", "Id": 772, "Command": "Get-PnPTenantInfo -CurrentTenant" }, { - "CommandName": "Get-PnPTenantInstance", "Rank": 1, + "CommandName": "Get-PnPTenantInstance", "Id": 773, "Command": "Get-PnPTenantInstance" }, { - "CommandName": "Get-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Get-PnPTenantRecycleBinItem", "Id": 774, "Command": "Get-PnPTenantRecycleBinItem" }, { - "CommandName": "Get-PnPTenantSequence", "Rank": 1, + "CommandName": "Get-PnPTenantSequence", "Id": 775, "Command": "Get-PnPTenantSequence -Template $myTemplateObject" }, { - "CommandName": "Get-PnPTenantSequence", "Rank": 2, + "CommandName": "Get-PnPTenantSequence", "Id": 776, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" }, { - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 1, + "CommandName": "Get-PnPTenantSequenceSite", "Id": 777, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" }, { - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 2, + "CommandName": "Get-PnPTenantSequenceSite", "Id": 778, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" }, { - "CommandName": "Get-PnPTenantSite", "Rank": 1, + "CommandName": "Get-PnPTenantSite", "Id": 779, "Command": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", "Rank": 2, + "CommandName": "Get-PnPTenantSite", "Id": 780, "Command": "Get-PnPTenantSite -Detailed" }, { - "CommandName": "Get-PnPTenantSite", "Rank": 3, + "CommandName": "Get-PnPTenantSite", "Id": 781, "Command": "Get-PnPTenantSite -IncludeOneDriveSites" }, { - "CommandName": "Get-PnPTenantSite", "Rank": 4, + "CommandName": "Get-PnPTenantSite", "Id": 782, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" }, { - "CommandName": "Get-PnPTenantSite", "Rank": 5, + "CommandName": "Get-PnPTenantSite", "Id": 783, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" }, { - "CommandName": "Get-PnPTenantSite", "Rank": 6, + "CommandName": "Get-PnPTenantSite", "Id": 784, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" }, { - "CommandName": "Get-PnPTenantSite", "Rank": 7, + "CommandName": "Get-PnPTenantSite", "Id": 785, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" }, { - "CommandName": "Get-PnPTenantSite", "Rank": 8, + "CommandName": "Get-PnPTenantSite", "Id": 786, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" }, { - "CommandName": "Get-PnPTenantSite", "Rank": 9, + "CommandName": "Get-PnPTenantSite", "Id": 787, "Command": "Get-PnPTenantSite -GroupIdDefined $true" }, { - "CommandName": "Get-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Get-PnPTenantSyncClientRestriction", "Id": 788, "Command": "Get-PnPTenantSyncClientRestriction" }, { - "CommandName": "Get-PnPTenantTemplate", "Rank": 1, + "CommandName": "Get-PnPTenantTemplate", "Id": 789, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" }, { - "CommandName": "Get-PnPTenantTemplate", "Rank": 2, + "CommandName": "Get-PnPTenantTemplate", "Id": 790, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" }, { - "CommandName": "Get-PnPTenantTemplate", "Rank": 3, + "CommandName": "Get-PnPTenantTemplate", "Id": 791, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" }, { - "CommandName": "Get-PnPTenantTheme", "Rank": 1, + "CommandName": "Get-PnPTenantTheme", "Id": 792, "Command": "Get-PnPTenantTheme" }, { - "CommandName": "Get-PnPTenantTheme", "Rank": 2, + "CommandName": "Get-PnPTenantTheme", "Id": 793, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "CommandName": "Get-PnPTenantTheme", "Rank": 3, + "CommandName": "Get-PnPTenantTheme", "Id": 794, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" }, { - "CommandName": "Get-PnPTerm", "Rank": 1, + "CommandName": "Get-PnPTerm", "Id": 795, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "CommandName": "Get-PnPTerm", "Rank": 2, + "CommandName": "Get-PnPTerm", "Id": 796, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "CommandName": "Get-PnPTerm", "Rank": 3, + "CommandName": "Get-PnPTerm", "Id": 797, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "CommandName": "Get-PnPTerm", "Rank": 4, + "CommandName": "Get-PnPTerm", "Id": 798, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" }, { - "CommandName": "Get-PnPTerm", "Rank": 5, + "CommandName": "Get-PnPTerm", "Id": 799, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" }, { - "CommandName": "Get-PnPTermGroup", "Rank": 1, + "CommandName": "Get-PnPTermGroup", "Id": 800, "Command": "Get-PnPTermGroup" }, { - "CommandName": "Get-PnPTermGroup", "Rank": 2, + "CommandName": "Get-PnPTermGroup", "Id": 801, "Command": "Get-PnPTermGroup -Identity \"Departments\"" }, { - "CommandName": "Get-PnPTermGroup", "Rank": 3, + "CommandName": "Get-PnPTermGroup", "Id": 802, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" }, { - "CommandName": "Get-PnPTermLabel", "Rank": 1, + "CommandName": "Get-PnPTermLabel", "Id": 803, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" }, { - "CommandName": "Get-PnPTermLabel", "Rank": 2, + "CommandName": "Get-PnPTermLabel", "Id": 804, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" }, { - "CommandName": "Get-PnPTermLabel", "Rank": 3, + "CommandName": "Get-PnPTermLabel", "Id": 805, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "CommandName": "Get-PnPTermSet", "Rank": 1, + "CommandName": "Get-PnPTermSet", "Id": 806, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" }, { - "CommandName": "Get-PnPTermSet", "Rank": 2, + "CommandName": "Get-PnPTermSet", "Id": 807, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" }, { - "CommandName": "Get-PnPTermSet", "Rank": 3, + "CommandName": "Get-PnPTermSet", "Id": 808, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" }, { - "CommandName": "Get-PnPTheme", "Rank": 1, + "CommandName": "Get-PnPTheme", "Id": 809, "Command": "Get-PnPTheme" }, { - "CommandName": "Get-PnPTheme", "Rank": 2, + "CommandName": "Get-PnPTheme", "Id": 810, "Command": "Get-PnPTheme -DetectCurrentComposedLook" }, { - "CommandName": "Get-PnPTimeZoneId", "Rank": 1, + "CommandName": "Get-PnPTimeZoneId", "Id": 811, "Command": "Get-PnPTimeZoneId" }, { - "CommandName": "Get-PnPTimeZoneId", "Rank": 2, + "CommandName": "Get-PnPTimeZoneId", "Id": 812, "Command": "Get-PnPTimeZoneId -Match Stockholm" }, { - "CommandName": "Get-PnPUnfurlLink", "Rank": 1, + "CommandName": "Get-PnPUnfurlLink", "Id": 813, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" }, { - "CommandName": "Get-PnPUnifiedAuditLog", "Rank": 1, + "CommandName": "Get-PnPUnifiedAuditLog", "Id": 814, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 1, + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 815, "Command": "Get-PnPUPABulkImportStatus" }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 2, + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 816, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 3, + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 817, "Command": "Get-PnPUPABulkImportStatus -JobId " }, { - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 4, + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 818, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" }, { - "CommandName": "Get-PnPUser", "Rank": 1, + "CommandName": "Get-PnPUser", "Id": 819, "Command": "Get-PnPUser" }, { - "CommandName": "Get-PnPUser", "Rank": 2, + "CommandName": "Get-PnPUser", "Id": 820, "Command": "Get-PnPUser -Identity 23" }, { - "CommandName": "Get-PnPUser", "Rank": 3, + "CommandName": "Get-PnPUser", "Id": 821, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" }, { - "CommandName": "Get-PnPUser", "Rank": 4, + "CommandName": "Get-PnPUser", "Id": 822, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" }, { - "CommandName": "Get-PnPUser", "Rank": 5, + "CommandName": "Get-PnPUser", "Id": 823, "Command": "Get-PnPUser -WithRightsAssigned" }, { - "CommandName": "Get-PnPUser", "Rank": 6, + "CommandName": "Get-PnPUser", "Id": 824, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" }, { - "CommandName": "Get-PnPUser", "Rank": 7, + "CommandName": "Get-PnPUser", "Id": 825, "Command": "Get-PnPUser -WithRightsAssignedDetailed" }, { - "CommandName": "Get-PnPUserOneDriveQuota", "Rank": 1, + "CommandName": "Get-PnPUserOneDriveQuota", "Id": 826, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" }, { - "CommandName": "Get-PnPUserProfileProperty", "Rank": 1, + "CommandName": "Get-PnPUserProfileProperty", "Id": 827, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" }, { - "CommandName": "Get-PnPUserProfileProperty", "Rank": 2, + "CommandName": "Get-PnPUserProfileProperty", "Id": 828, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" }, { - "CommandName": "Get-PnPUserProfileProperty", "Rank": 3, + "CommandName": "Get-PnPUserProfileProperty", "Id": 829, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" }, { - "CommandName": "Get-PnPView", "Rank": 1, + "CommandName": "Get-PnPView", "Id": 830, "Command": "Get-PnPView -List \"Demo List\"" }, { - "CommandName": "Get-PnPView", "Rank": 2, + "CommandName": "Get-PnPView", "Id": 831, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" }, { - "CommandName": "Get-PnPView", "Rank": 3, + "CommandName": "Get-PnPView", "Id": 832, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 833, "Command": "Get-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 2, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 834, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "CommandName": "Get-PnPWeb", "Rank": 1, + "CommandName": "Get-PnPWeb", "Id": 835, "Command": "Get-PnPWeb" }, { - "CommandName": "Get-PnPWebHeader", "Rank": 1, + "CommandName": "Get-PnPWebHeader", "Id": 836, "Command": "Get-PnPWebHeader" }, { - "CommandName": "Get-PnPWebhookSubscriptions", "Rank": 1, + "CommandName": "Get-PnPWebhookSubscriptions", "Id": 837, "Command": "Get-PnPWebhookSubscriptions -List MyList" }, { - "CommandName": "Get-PnPWebPart", "Rank": 1, + "CommandName": "Get-PnPWebPart", "Id": 838, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" }, { - "CommandName": "Get-PnPWebPart", "Rank": 2, + "CommandName": "Get-PnPWebPart", "Id": 839, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "CommandName": "Get-PnPWebPartProperty", "Rank": 1, + "CommandName": "Get-PnPWebPartProperty", "Id": 840, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" }, { - "CommandName": "Get-PnPWebPartProperty", "Rank": 2, + "CommandName": "Get-PnPWebPartProperty", "Id": 841, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" }, { - "CommandName": "Get-PnPWebPartXml", "Rank": 1, + "CommandName": "Get-PnPWebPartXml", "Id": 842, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "CommandName": "Get-PnPWebTemplates", "Rank": 1, + "CommandName": "Get-PnPWebTemplates", "Id": 843, "Command": "Get-PnPWebTemplates" }, { - "CommandName": "Get-PnPWebTemplates", "Rank": 2, + "CommandName": "Get-PnPWebTemplates", "Id": 844, "Command": "Get-PnPWebTemplates -LCID 1033" }, { - "CommandName": "Get-PnPWebTemplates", "Rank": 3, + "CommandName": "Get-PnPWebTemplates", "Id": 845, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" }, { - "CommandName": "Get-PnPWikiPageContent", "Rank": 1, + "CommandName": "Get-PnPWikiPageContent", "Id": 846, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 847, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 848, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" }, { - "CommandName": "Grant-PnPHubSiteRights", "Rank": 1, + "CommandName": "Grant-PnPHubSiteRights", "Id": 849, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "CommandName": "Grant-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Grant-PnPSiteDesignRights", "Id": 850, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Rank": 1, + "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Id": 851, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "CommandName": "Import-PnPTaxonomy", "Rank": 1, + "CommandName": "Import-PnPTaxonomy", "Id": 852, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" }, { - "CommandName": "Import-PnPTaxonomy", "Rank": 2, + "CommandName": "Import-PnPTaxonomy", "Id": 853, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" }, { - "CommandName": "Import-PnPTaxonomy", "Rank": 3, + "CommandName": "Import-PnPTaxonomy", "Id": 854, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" }, { - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 1, + "CommandName": "Import-PnPTermGroupFromXml", "Id": 855, "Command": "Import-PnPTermGroupFromXml -Xml $xml" }, { - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 2, + "CommandName": "Import-PnPTermGroupFromXml", "Id": 856, "Command": "Import-PnPTermGroupFromXml -Path input.xml" }, { - "CommandName": "Import-PnPTermSet", "Rank": 1, + "CommandName": "Import-PnPTermSet", "Id": 857, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" }, { - "CommandName": "Import-PnPTermSet", "Rank": 2, + "CommandName": "Import-PnPTermSet", "Id": 858, "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" }, { - "CommandName": "Import-PnPTermSet", "Rank": 3, + "CommandName": "Import-PnPTermSet", "Id": 859, "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, + "CommandName": "Install-PnPApp", "Id": 860, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Install-PnPApp", "Rank": 2, + "CommandName": "Install-PnPApp", "Id": 861, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "CommandName": "Invoke-PnPGraphMethod", "Rank": 1, + "CommandName": "Invoke-PnPGraphMethod", "Id": 862, "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" }, { - "CommandName": "Invoke-PnPGraphMethod", "Rank": 2, + "CommandName": "Invoke-PnPGraphMethod", "Id": 863, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" }, { - "CommandName": "Invoke-PnPGraphMethod", "Rank": 3, + "CommandName": "Invoke-PnPGraphMethod", "Id": 864, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" }, { - "CommandName": "Invoke-PnPGraphMethod", "Rank": 4, + "CommandName": "Invoke-PnPGraphMethod", "Id": 865, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" }, { - "CommandName": "Invoke-PnPGraphMethod", "Rank": 5, + "CommandName": "Invoke-PnPGraphMethod", "Id": 866, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" }, { - "CommandName": "Invoke-PnPGraphMethod", "Rank": 6, + "CommandName": "Invoke-PnPGraphMethod", "Id": 867, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" }, { - "CommandName": "Invoke-PnPGraphMethod", "Rank": 7, + "CommandName": "Invoke-PnPGraphMethod", "Id": 868, "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, + "CommandName": "Invoke-PnPListDesign", "Id": 869, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Invoke-PnPListDesign", "Rank": 2, + "CommandName": "Invoke-PnPListDesign", "Id": 870, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "CommandName": "Invoke-PnPQuery", "Rank": 1, + "CommandName": "Invoke-PnPQuery", "Id": 871, "Command": "Invoke-PnPQuery -RetryCount 5" }, { - "CommandName": "Invoke-PnPSiteDesign", "Rank": 1, + "CommandName": "Invoke-PnPSiteDesign", "Id": 872, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Invoke-PnPSiteDesign", "Rank": 2, + "CommandName": "Invoke-PnPSiteDesign", "Id": 873, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "CommandName": "Invoke-PnPSiteScript", "Rank": 1, + "CommandName": "Invoke-PnPSiteScript", "Id": 874, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" }, { - "CommandName": "Invoke-PnPSiteSwap", "Rank": 1, + "CommandName": "Invoke-PnPSiteSwap", "Id": 875, "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", "Rank": 2, + "CommandName": "Invoke-PnPSiteSwap", "Id": 876, "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", "Rank": 3, + "CommandName": "Invoke-PnPSiteSwap", "Id": 877, "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, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 878, "Command": "Invoke-PnPSiteTemplate -Path template.xml" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 2, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 879, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 3, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 880, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 4, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 881, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 5, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 882, "Command": "Invoke-PnPSiteTemplate -Path template.pnp" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 6, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 883, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 7, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 884, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" }, { - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 8, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 885, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" }, { - "CommandName": "Invoke-PnPSPRestMethod", "Rank": 1, + "CommandName": "Invoke-PnPSPRestMethod", "Id": 886, "Command": "Invoke-PnPSPRestMethod -Url /_api/web" }, { - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 1, + "CommandName": "Invoke-PnPTenantTemplate", "Id": 887, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" }, { - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 2, + "CommandName": "Invoke-PnPTenantTemplate", "Id": 888, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" }, { - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 3, + "CommandName": "Invoke-PnPTenantTemplate", "Id": 889, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "CommandName": "Invoke-PnPWebAction", "Rank": 1, + "CommandName": "Invoke-PnPWebAction", "Id": 890, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" }, { - "CommandName": "Invoke-PnPWebAction", "Rank": 2, + "CommandName": "Invoke-PnPWebAction", "Id": 891, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" }, { - "CommandName": "Measure-PnPList", "Rank": 1, + "CommandName": "Measure-PnPList", "Id": 892, "Command": "Measure-PnPList \"Documents\"" }, { - "CommandName": "Measure-PnPList", "Rank": 2, + "CommandName": "Measure-PnPList", "Id": 893, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" }, { - "CommandName": "Measure-PnPWeb", "Rank": 1, + "CommandName": "Measure-PnPWeb", "Id": 894, "Command": "Measure-PnPWeb" }, { - "CommandName": "Measure-PnPWeb", "Rank": 2, + "CommandName": "Measure-PnPWeb", "Id": 895, "Command": "Measure-PnPWeb $web -Recursive" }, { - "CommandName": "Move-PnPFile", "Rank": 1, + "CommandName": "Move-PnPFile", "Id": 896, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" }, { - "CommandName": "Move-PnPFile", "Rank": 2, + "CommandName": "Move-PnPFile", "Id": 897, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" }, { - "CommandName": "Move-PnPFile", "Rank": 3, + "CommandName": "Move-PnPFile", "Id": 898, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "CommandName": "Move-PnPFile", "Rank": 4, + "CommandName": "Move-PnPFile", "Id": 899, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "CommandName": "Move-PnPFolder", "Rank": 1, + "CommandName": "Move-PnPFolder", "Id": 900, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" }, { - "CommandName": "Move-PnPFolder", "Rank": 2, + "CommandName": "Move-PnPFolder", "Id": 901, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" }, { - "CommandName": "Move-PnPListItemToRecycleBin", "Rank": 1, + "CommandName": "Move-PnPListItemToRecycleBin", "Id": 902, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" }, { - "CommandName": "Move-PnPPageComponent", "Rank": 1, + "CommandName": "Move-PnPPageComponent", "Id": 903, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" }, { - "CommandName": "Move-PnPPageComponent", "Rank": 2, + "CommandName": "Move-PnPPageComponent", "Id": 904, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" }, { - "CommandName": "Move-PnPPageComponent", "Rank": 3, + "CommandName": "Move-PnPPageComponent", "Id": 905, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" }, { - "CommandName": "Move-PnPPageComponent", "Rank": 4, + "CommandName": "Move-PnPPageComponent", "Id": 906, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" }, { - "CommandName": "Move-PnpRecycleBinItem", "Rank": 1, + "CommandName": "Move-PnpRecycleBinItem", "Id": 907, "Command": "Move-PnPRecycleBinItem" }, { - "CommandName": "Move-PnpRecycleBinItem", "Rank": 2, + "CommandName": "Move-PnpRecycleBinItem", "Id": 908, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" }, { - "CommandName": "Move-PnpRecycleBinItem", "Rank": 3, + "CommandName": "Move-PnpRecycleBinItem", "Id": 909, "Command": "Move-PnPRecycleBinItem -Force" }, { - "CommandName": "Move-PnPTerm", "Rank": 1, + "CommandName": "Move-PnPTerm", "Id": 910, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" }, { - "CommandName": "Move-PnPTerm", "Rank": 2, + "CommandName": "Move-PnPTerm", "Id": 911, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" }, { - "CommandName": "Move-PnPTerm", "Rank": 3, + "CommandName": "Move-PnPTerm", "Id": 912, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" }, { - "CommandName": "Move-PnPTermSet", "Rank": 1, + "CommandName": "Move-PnPTermSet", "Id": 913, "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" }, { - "CommandName": "Move-PnPTermSet", "Rank": 2, + "CommandName": "Move-PnPTermSet", "Id": 914, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" }, { - "CommandName": "New-PnPAzureADGroup", "Rank": 1, + "CommandName": "New-PnPAzureADGroup", "Id": 915, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "CommandName": "New-PnPAzureADGroup", "Rank": 2, + "CommandName": "New-PnPAzureADGroup", "Id": 916, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" }, { - "CommandName": "New-PnPAzureADGroup", "Rank": 3, + "CommandName": "New-PnPAzureADGroup", "Id": 917, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 1, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 918, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 2, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 919, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 3, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 920, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" }, { - "CommandName": "New-PnPAzureCertificate", "Rank": 1, + "CommandName": "New-PnPAzureCertificate", "Id": 921, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" }, { - "CommandName": "New-PnPAzureCertificate", "Rank": 2, + "CommandName": "New-PnPAzureCertificate", "Id": 922, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" }, { - "CommandName": "New-PnPAzureCertificate", "Rank": 3, + "CommandName": "New-PnPAzureCertificate", "Id": 923, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" }, { - "CommandName": "New-PnPGraphSubscription", "Rank": 1, + "CommandName": "New-PnPGraphSubscription", "Id": 924, "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", "Rank": 2, + "CommandName": "New-PnPGraphSubscription", "Id": 925, "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "CommandName": "New-PnPGroup", "Rank": 1, + "CommandName": "New-PnPGroup", "Id": 926, "Command": "New-PnPGroup -Title \"My Site Users\"" }, { - "CommandName": "New-PnPList", "Rank": 1, + "CommandName": "New-PnPList", "Id": 927, "Command": "New-PnPList -Title Announcements -Template Announcements" }, { - "CommandName": "New-PnPList", "Rank": 2, + "CommandName": "New-PnPList", "Id": 928, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" }, { - "CommandName": "New-PnPList", "Rank": 3, + "CommandName": "New-PnPList", "Id": 929, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" }, { - "CommandName": "New-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "New-PnPMicrosoft365Group", "Id": 930, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "CommandName": "New-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "New-PnPMicrosoft365Group", "Id": 931, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" }, { - "CommandName": "New-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "New-PnPMicrosoft365Group", "Id": 932, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" }, { - "CommandName": "New-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "New-PnPMicrosoft365Group", "Id": 933, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" }, { - "CommandName": "New-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "New-PnPMicrosoft365Group", "Id": 934, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "CommandName": "New-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "New-PnPMicrosoft365Group", "Id": 935, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "CommandName": "New-PnPMicrosoft365Group", "Rank": 7, + "CommandName": "New-PnPMicrosoft365Group", "Id": 936, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 937, "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 938, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" }, { - "CommandName": "New-PnPPersonalSite", "Rank": 1, + "CommandName": "New-PnPPersonalSite", "Id": 939, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" }, { - "CommandName": "New-PnPPlannerPlan", "Rank": 1, + "CommandName": "New-PnPPlannerPlan", "Id": 940, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" }, { - "CommandName": "New-PnPSdnProvider", "Rank": 1, + "CommandName": "New-PnPSdnProvider", "Id": 941, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" }, { - "CommandName": "New-PnPSite", "Rank": 1, + "CommandName": "New-PnPSite", "Id": 942, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "CommandName": "New-PnPSite", "Rank": 2, + "CommandName": "New-PnPSite", "Id": 943, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" }, { - "CommandName": "New-PnPSite", "Rank": 3, + "CommandName": "New-PnPSite", "Id": 944, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "CommandName": "New-PnPSite", "Rank": 4, + "CommandName": "New-PnPSite", "Id": 945, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "CommandName": "New-PnPSite", "Rank": 5, + "CommandName": "New-PnPSite", "Id": 946, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "CommandName": "New-PnPSite", "Rank": 6, + "CommandName": "New-PnPSite", "Id": 947, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "CommandName": "New-PnPSite", "Rank": 7, + "CommandName": "New-PnPSite", "Id": 948, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" }, { - "CommandName": "New-PnPSite", "Rank": 8, + "CommandName": "New-PnPSite", "Id": 949, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" }, { - "CommandName": "New-PnPSite", "Rank": 9, + "CommandName": "New-PnPSite", "Id": 950, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" }, { - "CommandName": "New-PnPSite", "Rank": 10, + "CommandName": "New-PnPSite", "Id": 951, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" }, { - "CommandName": "New-PnPSite", "Rank": 11, + "CommandName": "New-PnPSite", "Id": 952, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "CommandName": "New-PnPSite", "Rank": 12, + "CommandName": "New-PnPSite", "Id": 953, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "CommandName": "New-PnPSite", "Rank": 13, + "CommandName": "New-PnPSite", "Id": 954, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "CommandName": "New-PnPSite", "Rank": 14, + "CommandName": "New-PnPSite", "Id": 955, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "CommandName": "New-PnPSite", "Rank": 15, + "CommandName": "New-PnPSite", "Id": 956, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "CommandName": "New-PnPSite", "Rank": 16, + "CommandName": "New-PnPSite", "Id": 957, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" }, { - "CommandName": "New-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "New-PnPSiteCollectionTermStore", "Id": 958, "Command": "New-PnPSiteCollectionTermStore" }, { - "CommandName": "New-PnPSiteGroup", "Rank": 1, + "CommandName": "New-PnPSiteGroup", "Id": 959, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" }, { - "CommandName": "New-PnPSiteGroup", "Rank": 2, + "CommandName": "New-PnPSiteGroup", "Id": 960, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 1, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 961, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 2, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 962, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 3, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 963, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 4, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 964, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 5, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 965, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 6, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 966, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 7, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 967, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 8, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 968, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" }, { - "CommandName": "New-PnPTeamsApp", "Rank": 1, + "CommandName": "New-PnPTeamsApp", "Id": 969, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" }, { - "CommandName": "New-PnPTeamsTeam", "Rank": 1, + "CommandName": "New-PnPTeamsTeam", "Id": 970, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" }, { - "CommandName": "New-PnPTeamsTeam", "Rank": 2, + "CommandName": "New-PnPTeamsTeam", "Id": 971, "Command": "New-PnPTeamsTeam -GroupId $groupId" }, { - "CommandName": "New-PnPTeamsTeam", "Rank": 3, + "CommandName": "New-PnPTeamsTeam", "Id": 972, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" }, { - "CommandName": "New-PnPTeamsTeam", "Rank": 4, + "CommandName": "New-PnPTeamsTeam", "Id": 973, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "CommandName": "New-PnPTeamsTeam", "Rank": 5, + "CommandName": "New-PnPTeamsTeam", "Id": 974, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" }, { - "CommandName": "New-PnPTeamsTeam", "Rank": 6, + "CommandName": "New-PnPTeamsTeam", "Id": 975, "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, + "CommandName": "New-PnPTenantSite", "Id": 976, "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "CommandName": "New-PnPTenantSite", "Rank": 2, + "CommandName": "New-PnPTenantSite", "Id": 977, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "CommandName": "New-PnPTerm", "Rank": 1, + "CommandName": "New-PnPTerm", "Id": 978, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" }, { - "CommandName": "New-PnPTerm", "Rank": 2, + "CommandName": "New-PnPTerm", "Id": 979, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "CommandName": "New-PnPTermGroup", "Rank": 1, + "CommandName": "New-PnPTermGroup", "Id": 980, "Command": "New-PnPTermGroup -GroupName \"Countries\"" }, { - "CommandName": "New-PnPTermLabel", "Rank": 1, + "CommandName": "New-PnPTermLabel", "Id": 981, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" }, { - "CommandName": "New-PnPTermSet", "Rank": 1, + "CommandName": "New-PnPTermSet", "Id": 982, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" }, { - "CommandName": "New-PnPUPABulkImportJob", "Rank": 1, + "CommandName": "New-PnPUPABulkImportJob", "Id": 983, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" }, { - "CommandName": "New-PnPUPABulkImportJob", "Rank": 2, + "CommandName": "New-PnPUPABulkImportJob", "Id": 984, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" }, { - "CommandName": "New-PnPUser", "Rank": 1, + "CommandName": "New-PnPUser", "Id": 985, "Command": "New-PnPUser -LoginName user@company.com" }, { - "CommandName": "New-PnPWeb", "Rank": 1, + "CommandName": "New-PnPWeb", "Id": 986, "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" }, { - "CommandName": "Publish-PnPApp", "Rank": 1, + "CommandName": "Publish-PnPApp", "Id": 987, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "CommandName": "Publish-PnPApp", "Rank": 2, + "CommandName": "Publish-PnPApp", "Id": 988, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" }, { - "CommandName": "Publish-PnPCompanyApp", "Rank": 1, + "CommandName": "Publish-PnPCompanyApp", "Id": 989, "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", "Rank": 1, + "CommandName": "Publish-PnPContentType", "Id": 990, "Command": "Publish-PnPContentType -ContentType 0x0101" }, { - "CommandName": "Publish-PnPSyntexModel", "Rank": 1, + "CommandName": "Publish-PnPSyntexModel", "Id": 991, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "CommandName": "Publish-PnPSyntexModel", "Rank": 2, + "CommandName": "Publish-PnPSyntexModel", "Id": 992, "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", "Rank": 1, + "CommandName": "Read-PnPSiteTemplate", "Id": 993, "Command": "Read-PnPSiteTemplate -Path template.pnp" }, { - "CommandName": "Read-PnPSiteTemplate", "Rank": 2, + "CommandName": "Read-PnPSiteTemplate", "Id": 994, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" }, { - "CommandName": "Read-PnPSiteTemplate", "Rank": 3, + "CommandName": "Read-PnPSiteTemplate", "Id": 995, "Command": "Read-PnPSiteTemplate -Xml $xml" }, { - "CommandName": "Read-PnPTenantTemplate", "Rank": 1, + "CommandName": "Read-PnPTenantTemplate", "Id": 996, "Command": "Read-PnPTenantTemplate -Path template.pnp" }, { - "CommandName": "Register-PnPAppCatalogSite", "Rank": 1, + "CommandName": "Register-PnPAppCatalogSite", "Id": 997, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" }, { - "CommandName": "Register-PnPAzureADApp", "Rank": 1, + "CommandName": "Register-PnPAzureADApp", "Id": 998, "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", "Rank": 2, + "CommandName": "Register-PnPAzureADApp", "Id": 999, "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", "Rank": 3, + "CommandName": "Register-PnPAzureADApp", "Id": 1000, "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", "Rank": 4, + "CommandName": "Register-PnPAzureADApp", "Id": 1001, "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", "Rank": 5, + "CommandName": "Register-PnPAzureADApp", "Id": 1002, "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "CommandName": "Register-PnPAzureADApp", "Rank": 6, + "CommandName": "Register-PnPAzureADApp", "Id": 1003, "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "CommandName": "Register-PnPAzureADApp", "Rank": 7, + "CommandName": "Register-PnPAzureADApp", "Id": 1004, "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", "Rank": 1, + "CommandName": "Register-PnPHubSite", "Id": 1005, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "CommandName": "Register-PnPHubSite", "Rank": 2, + "CommandName": "Register-PnPHubSite", "Id": 1006, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" }, { - "CommandName": "Register-PnPManagementShellAccess", "Rank": 1, + "CommandName": "Register-PnPManagementShellAccess", "Id": 1007, "Command": "Register-PnPManagementShellAccess" }, { - "CommandName": "Register-PnPManagementShellAccess", "Rank": 2, + "CommandName": "Register-PnPManagementShellAccess", "Id": 1008, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" }, { - "CommandName": "Register-PnPManagementShellAccess", "Rank": 3, + "CommandName": "Register-PnPManagementShellAccess", "Id": 1009, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 1, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1010, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 2, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1011, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" }, { - "CommandName": "Remove-PnPAlert", "Rank": 1, + "CommandName": "Remove-PnPAlert", "Id": 1012, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" }, { - "CommandName": "Remove-PnPAlert", "Rank": 2, + "CommandName": "Remove-PnPAlert", "Id": 1013, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "CommandName": "Remove-PnPApp", "Rank": 1, + "CommandName": "Remove-PnPApp", "Id": 1014, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Remove-PnPApp", "Rank": 2, + "CommandName": "Remove-PnPApp", "Id": 1015, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1016, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1017, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1018, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" }, { - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1019, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "CommandName": "Remove-PnPAzureADApp", "Rank": 1, + "CommandName": "Remove-PnPAzureADApp", "Id": 1020, "Command": "Remove-PnPAzureADApp -Identity MyApp" }, { - "CommandName": "Remove-PnPAzureADApp", "Rank": 2, + "CommandName": "Remove-PnPAzureADApp", "Id": 1021, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "CommandName": "Remove-PnPAzureADGroup", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroup", "Id": 1022, "Command": "Remove-PnPAzureADGroup -Identity $groupId" }, { - "CommandName": "Remove-PnPAzureADGroup", "Rank": 2, + "CommandName": "Remove-PnPAzureADGroup", "Id": 1023, "Command": "Remove-PnPAzureADGroup -Identity $group" }, { - "CommandName": "Remove-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupMember", "Id": 1024, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "CommandName": "Remove-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupOwner", "Id": 1025, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1026, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1027, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 3, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1028, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 4, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1029, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "CommandName": "Remove-PnPContentType", "Rank": 1, + "CommandName": "Remove-PnPContentType", "Id": 1030, "Command": "Remove-PnPContentType -Identity \"Project Document\"" }, { - "CommandName": "Remove-PnPContentType", "Rank": 2, + "CommandName": "Remove-PnPContentType", "Id": 1031, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1032, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 2, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1033, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "CommandName": "Remove-PnPContentTypeFromList", "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromList", "Id": 1034, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" }, { - "CommandName": "Remove-PnPCustomAction", "Rank": 1, + "CommandName": "Remove-PnPCustomAction", "Id": 1035, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "CommandName": "Remove-PnPCustomAction", "Rank": 2, + "CommandName": "Remove-PnPCustomAction", "Id": 1036, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "CommandName": "Remove-PnPCustomAction", "Rank": 3, + "CommandName": "Remove-PnPCustomAction", "Id": 1037, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" }, { - "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Id": 1038, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 1, + "CommandName": "Remove-PnPEventReceiver", "Id": 1039, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 2, + "CommandName": "Remove-PnPEventReceiver", "Id": 1040, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 3, + "CommandName": "Remove-PnPEventReceiver", "Id": 1041, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 4, + "CommandName": "Remove-PnPEventReceiver", "Id": 1042, "Command": "Remove-PnPEventReceiver -List ProjectList" }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 5, + "CommandName": "Remove-PnPEventReceiver", "Id": 1043, "Command": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 6, + "CommandName": "Remove-PnPEventReceiver", "Id": 1044, "Command": "Remove-PnPEventReceiver -Scope Site" }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 7, + "CommandName": "Remove-PnPEventReceiver", "Id": 1045, "Command": "Remove-PnPEventReceiver -Scope Web" }, { - "CommandName": "Remove-PnPEventReceiver", "Rank": 8, + "CommandName": "Remove-PnPEventReceiver", "Id": 1046, "Command": "Remove-PnPEventReceiver -Scope All" }, { - "CommandName": "Remove-PnPField", "Rank": 1, + "CommandName": "Remove-PnPField", "Id": 1047, "Command": "Remove-PnPField -Identity \"Speakers\"" }, { - "CommandName": "Remove-PnPField", "Rank": 2, + "CommandName": "Remove-PnPField", "Id": 1048, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 1, + "CommandName": "Remove-PnPFieldFromContentType", "Id": 1049, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 2, + "CommandName": "Remove-PnPFieldFromContentType", "Id": 1050, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" }, { - "CommandName": "Remove-PnPFile", "Rank": 1, + "CommandName": "Remove-PnPFile", "Id": 1051, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" }, { - "CommandName": "Remove-PnPFile", "Rank": 2, + "CommandName": "Remove-PnPFile", "Id": 1052, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" }, { - "CommandName": "Remove-PnPFile", "Rank": 3, + "CommandName": "Remove-PnPFile", "Id": 1053, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" }, { - "CommandName": "Remove-PnPFileFromSiteTemplate", "Rank": 1, + "CommandName": "Remove-PnPFileFromSiteTemplate", "Id": 1054, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" }, { - "CommandName": "Remove-PnPFileSharingLink", "Rank": 1, + "CommandName": "Remove-PnPFileSharingLink", "Id": 1055, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "CommandName": "Remove-PnPFileSharingLink", "Rank": 2, + "CommandName": "Remove-PnPFileSharingLink", "Id": 1056, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" }, { - "CommandName": "Remove-PnPFileVersion", "Rank": 1, + "CommandName": "Remove-PnPFileVersion", "Id": 1057, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "CommandName": "Remove-PnPFileVersion", "Rank": 2, + "CommandName": "Remove-PnPFileVersion", "Id": 1058, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "CommandName": "Remove-PnPFileVersion", "Rank": 3, + "CommandName": "Remove-PnPFileVersion", "Id": 1059, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" }, { - "CommandName": "Remove-PnPFlowOwner", "Rank": 1, + "CommandName": "Remove-PnPFlowOwner", "Id": 1060, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" }, { - "CommandName": "Remove-PnPFlowOwner", "Rank": 2, + "CommandName": "Remove-PnPFlowOwner", "Id": 1061, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" }, { - "CommandName": "Remove-PnPFlowOwner", "Rank": 3, + "CommandName": "Remove-PnPFlowOwner", "Id": 1062, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" }, { - "CommandName": "Remove-PnPFlowOwner", "Rank": 4, + "CommandName": "Remove-PnPFlowOwner", "Id": 1063, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" }, { - "CommandName": "Remove-PnPFolder", "Rank": 1, + "CommandName": "Remove-PnPFolder", "Id": 1064, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "CommandName": "Remove-PnPFolder", "Rank": 2, + "CommandName": "Remove-PnPFolder", "Id": 1065, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" }, { - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 1, + "CommandName": "Remove-PnPFolderSharingLink", "Id": 1066, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 2, + "CommandName": "Remove-PnPFolderSharingLink", "Id": 1067, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" }, { - "CommandName": "Remove-PnPGraphSubscription", "Rank": 1, + "CommandName": "Remove-PnPGraphSubscription", "Id": 1068, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" }, { - "CommandName": "Remove-PnPGroup", "Rank": 1, + "CommandName": "Remove-PnPGroup", "Id": 1069, "Command": "Remove-PnPGroup -Identity \"My Users\"" }, { - "CommandName": "Remove-PnPGroupMember", "Rank": 1, + "CommandName": "Remove-PnPGroupMember", "Id": 1070, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "CommandName": "Remove-PnPHomeSite", "Rank": 1, + "CommandName": "Remove-PnPHomeSite", "Id": 1071, "Command": "Remove-PnPHomeSite" }, { - "CommandName": "Remove-PnPHubSiteAssociation", "Rank": 1, + "CommandName": "Remove-PnPHubSiteAssociation", "Id": 1072, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 1, + "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1073, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" }, { - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 2, + "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1074, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" }, { - "CommandName": "Remove-PnPIndexedProperty", "Rank": 1, + "CommandName": "Remove-PnPIndexedProperty", "Id": 1075, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" }, { - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1076, "Command": "Remove-PnPJavaScriptLink -Identity jQuery" }, { - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1077, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" }, { - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 3, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1078, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" }, { - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 4, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1079, "Command": "Remove-PnPJavaScriptLink -Scope Site" }, { - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 5, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1080, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" }, { - "CommandName": "Remove-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Remove-PnPKnowledgeHubSite", "Id": 1081, "Command": "Remove-PnPKnowledgeHubSite" }, { - "CommandName": "Remove-PnPList", "Rank": 1, + "CommandName": "Remove-PnPList", "Id": 1082, "Command": "Remove-PnPList -Identity Announcements" }, { - "CommandName": "Remove-PnPList", "Rank": 2, + "CommandName": "Remove-PnPList", "Id": 1083, "Command": "Remove-PnPList -Identity Announcements -Force" }, { - "CommandName": "Remove-PnPList", "Rank": 3, + "CommandName": "Remove-PnPList", "Id": 1084, "Command": "Remove-PnPList -Identity Announcements -Recycle" }, { - "CommandName": "Remove-PnPList", "Rank": 4, + "CommandName": "Remove-PnPList", "Id": 1085, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" }, { - "CommandName": "Remove-PnPListDesign", "Rank": 1, + "CommandName": "Remove-PnPListDesign", "Id": 1086, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Remove-PnPListItem", "Rank": 1, + "CommandName": "Remove-PnPListItem", "Id": 1087, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" }, { - "CommandName": "Remove-PnPListItem", "Rank": 2, + "CommandName": "Remove-PnPListItem", "Id": 1088, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" }, { - "CommandName": "Remove-PnPListItem", "Rank": 3, + "CommandName": "Remove-PnPListItem", "Id": 1089, "Command": "Remove-PnPListItem -List \"Demo List\"" }, { - "CommandName": "Remove-PnPListItemAttachment", "Rank": 1, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1090, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" }, { - "CommandName": "Remove-PnPListItemAttachment", "Rank": 2, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1091, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" }, { - "CommandName": "Remove-PnPListItemAttachment", "Rank": 3, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1092, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" }, { - "CommandName": "Remove-PnPListItemAttachment", "Rank": 4, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1093, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" }, { - "CommandName": "Remove-PnPListItemAttachment", "Rank": 5, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1094, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" }, { - "CommandName": "Remove-PnPListItemVersion", "Rank": 1, + "CommandName": "Remove-PnPListItemVersion", "Id": 1095, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "CommandName": "Remove-PnPListItemVersion", "Rank": 2, + "CommandName": "Remove-PnPListItemVersion", "Id": 1096, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1097, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" }, { - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1098, "Command": "Remove-PnPMicrosoft365Group -Identity $group" }, { - "CommandName": "Remove-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupMember", "Id": 1099, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Id": 1100, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1101, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1102, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" }, { - "CommandName": "Remove-PnPNavigationNode", "Rank": 1, + "CommandName": "Remove-PnPNavigationNode", "Id": 1103, "Command": "Remove-PnPNavigationNode -Identity 1032" }, { - "CommandName": "Remove-PnPNavigationNode", "Rank": 2, + "CommandName": "Remove-PnPNavigationNode", "Id": 1104, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" }, { - "CommandName": "Remove-PnPNavigationNode", "Rank": 3, + "CommandName": "Remove-PnPNavigationNode", "Id": 1105, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1106, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 2, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1107, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 3, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1108, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" }, { - "CommandName": "Remove-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Remove-PnPOrgNewsSite", "Id": 1109, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "CommandName": "Remove-PnPPage", "Rank": 1, + "CommandName": "Remove-PnPPage", "Id": 1110, "Command": "Remove-PnPPage -Identity \"MyPage\"" }, { - "CommandName": "Remove-PnPPage", "Rank": 2, + "CommandName": "Remove-PnPPage", "Id": 1111, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" }, { - "CommandName": "Remove-PnPPage", "Rank": 3, + "CommandName": "Remove-PnPPage", "Id": 1112, "Command": "Remove-PnPPage $page" }, { - "CommandName": "Remove-PnPPage", "Rank": 4, + "CommandName": "Remove-PnPPage", "Id": 1113, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" }, { - "CommandName": "Remove-PnPPageComponent", "Rank": 1, + "CommandName": "Remove-PnPPageComponent", "Id": 1114, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "CommandName": "Remove-PnPPlannerBucket", "Rank": 1, + "CommandName": "Remove-PnPPlannerBucket", "Id": 1115, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" }, { - "CommandName": "Remove-PnPPlannerPlan", "Rank": 1, + "CommandName": "Remove-PnPPlannerPlan", "Id": 1116, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" }, { - "CommandName": "Remove-PnPPlannerRoster", "Rank": 1, + "CommandName": "Remove-PnPPlannerRoster", "Id": 1117, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "CommandName": "Remove-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Remove-PnPPlannerRosterMember", "Id": 1118, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "CommandName": "Remove-PnPPlannerTask", "Rank": 1, + "CommandName": "Remove-PnPPlannerTask", "Id": 1119, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" }, { - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 1, + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1120, "Command": "Remove-PnPPropertyBagValue -Key MyKey" }, { - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 2, + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1121, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" }, { - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 3, + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1122, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" }, { - "CommandName": "Remove-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Remove-PnPPublishingImageRendition", "Id": 1123, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "CommandName": "Remove-PnPRoleDefinition", "Rank": 1, + "CommandName": "Remove-PnPRoleDefinition", "Id": 1124, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" }, { - "CommandName": "Remove-PnPSdnProvider", "Rank": 1, + "CommandName": "Remove-PnPSdnProvider", "Id": 1125, "Command": "Remove-PnPSdnProvider -Confirm:false" }, { - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1126, "Command": "Remove-PnPSearchConfiguration -Configuration $config" }, { - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1127, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1128, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1129, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1130, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 2, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1131, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Id": 1132, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "CommandName": "Remove-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionTermStore", "Id": 1133, "Command": "Remove-PnPSiteCollectionTermStore" }, { - "CommandName": "Remove-PnPSiteDesign", "Rank": 1, + "CommandName": "Remove-PnPSiteDesign", "Id": 1134, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Remove-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Remove-PnPSiteDesignTask", "Id": 1135, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Remove-PnPSiteGroup", "Rank": 1, + "CommandName": "Remove-PnPSiteGroup", "Id": 1136, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "CommandName": "Remove-PnPSiteGroup", "Rank": 2, + "CommandName": "Remove-PnPSiteGroup", "Id": 1137, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" }, { - "CommandName": "Remove-PnPSiteScript", "Rank": 1, + "CommandName": "Remove-PnPSiteScript", "Id": 1138, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "CommandName": "Remove-PnPSiteUserInvitations", "Rank": 1, + "CommandName": "Remove-PnPSiteUserInvitations", "Id": 1139, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "CommandName": "Remove-PnPStorageEntity", "Rank": 1, + "CommandName": "Remove-PnPStorageEntity", "Id": 1140, "Command": "Remove-PnPStorageEntity -Key MyKey" }, { - "CommandName": "Remove-PnPStorageEntity", "Rank": 2, + "CommandName": "Remove-PnPStorageEntity", "Id": 1141, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" }, { - "CommandName": "Remove-PnPStoredCredential", "Rank": 1, + "CommandName": "Remove-PnPStoredCredential", "Id": 1142, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" }, { - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 1, + "CommandName": "Remove-PnPTaxonomyItem", "Id": 1143, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" }, { - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 2, + "CommandName": "Remove-PnPTaxonomyItem", "Id": 1144, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" }, { - "CommandName": "Remove-PnPTeamsApp", "Rank": 1, + "CommandName": "Remove-PnPTeamsApp", "Id": 1145, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" }, { - "CommandName": "Remove-PnPTeamsApp", "Rank": 2, + "CommandName": "Remove-PnPTeamsApp", "Id": 1146, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" }, { - "CommandName": "Remove-PnPTeamsChannel", "Rank": 1, + "CommandName": "Remove-PnPTeamsChannel", "Id": 1147, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" }, { - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 1, + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1148, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" }, { - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 2, + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1149, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 3, + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1150, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" }, { - "CommandName": "Remove-PnPTeamsTab", "Rank": 1, + "CommandName": "Remove-PnPTeamsTab", "Id": 1151, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" }, { - "CommandName": "Remove-PnPTeamsTab", "Rank": 2, + "CommandName": "Remove-PnPTeamsTab", "Id": 1152, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" }, { - "CommandName": "Remove-PnPTeamsTab", "Rank": 3, + "CommandName": "Remove-PnPTeamsTab", "Id": 1153, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" }, { - "CommandName": "Remove-PnPTeamsTag", "Rank": 1, + "CommandName": "Remove-PnPTeamsTag", "Id": 1154, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "CommandName": "Remove-PnPTeamsTeam", "Rank": 1, + "CommandName": "Remove-PnPTeamsTeam", "Id": 1155, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "CommandName": "Remove-PnPTeamsTeam", "Rank": 2, + "CommandName": "Remove-PnPTeamsTeam", "Id": 1156, "Command": "Remove-PnPTeamsTeam -Identity testteam" }, { - "CommandName": "Remove-PnPTeamsUser", "Rank": 1, + "CommandName": "Remove-PnPTeamsUser", "Id": 1157, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" }, { - "CommandName": "Remove-PnPTeamsUser", "Rank": 2, + "CommandName": "Remove-PnPTeamsUser", "Id": 1158, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "CommandName": "Remove-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Remove-PnPTenantCdnOrigin", "Id": 1159, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 1, + "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1160, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 2, + "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1161, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "CommandName": "Remove-PnPTenantSite", "Rank": 1, + "CommandName": "Remove-PnPTenantSite", "Id": 1162, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "CommandName": "Remove-PnPTenantSite", "Rank": 2, + "CommandName": "Remove-PnPTenantSite", "Id": 1163, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" }, { - "CommandName": "Remove-PnPTenantSite", "Rank": 3, + "CommandName": "Remove-PnPTenantSite", "Id": 1164, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" }, { - "CommandName": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Remove-PnPTenantSyncClientRestriction", "Id": 1165, "Command": "Remove-PnPTenantSyncClientRestriction" }, { - "CommandName": "Remove-PnPTenantTheme", "Rank": 1, + "CommandName": "Remove-PnPTenantTheme", "Id": 1166, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "CommandName": "Remove-PnPTerm", "Rank": 1, + "CommandName": "Remove-PnPTerm", "Id": 1167, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "CommandName": "Remove-PnPTerm", "Rank": 2, + "CommandName": "Remove-PnPTerm", "Id": 1168, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "CommandName": "Remove-PnPTermGroup", "Rank": 1, + "CommandName": "Remove-PnPTermGroup", "Id": 1169, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "CommandName": "Remove-PnPTermGroup", "Rank": 2, + "CommandName": "Remove-PnPTermGroup", "Id": 1170, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" }, { - "CommandName": "Remove-PnPTermGroup", "Rank": 3, + "CommandName": "Remove-PnPTermGroup", "Id": 1171, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" }, { - "CommandName": "Remove-PnPTermLabel", "Rank": 1, + "CommandName": "Remove-PnPTermLabel", "Id": 1172, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" }, { - "CommandName": "Remove-PnPTermLabel", "Rank": 2, + "CommandName": "Remove-PnPTermLabel", "Id": 1173, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "CommandName": "Remove-PnPUser", "Rank": 1, + "CommandName": "Remove-PnPUser", "Id": 1174, "Command": "Remove-PnPUser -Identity 23" }, { - "CommandName": "Remove-PnPUser", "Rank": 2, + "CommandName": "Remove-PnPUser", "Id": 1175, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" }, { - "CommandName": "Remove-PnPUser", "Rank": 3, + "CommandName": "Remove-PnPUser", "Id": 1176, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" }, { - "CommandName": "Remove-PnPUserInfo", "Rank": 1, + "CommandName": "Remove-PnPUserInfo", "Id": 1177, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "CommandName": "Remove-PnPUserProfile", "Rank": 1, + "CommandName": "Remove-PnPUserProfile", "Id": 1178, "Command": "Remove-PnPUserProfile -LoginName user@domain.com" }, { - "CommandName": "Remove-PnPView", "Rank": 1, + "CommandName": "Remove-PnPView", "Id": 1179, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" }, { - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Id": 1180, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "CommandName": "Remove-PnPWeb", "Rank": 1, + "CommandName": "Remove-PnPWeb", "Id": 1181, "Command": "Remove-PnPWeb -Identity projectA" }, { - "CommandName": "Remove-PnPWeb", "Rank": 2, + "CommandName": "Remove-PnPWeb", "Id": 1182, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" }, { - "CommandName": "Remove-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Remove-PnPWebhookSubscription", "Id": 1183, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" }, { - "CommandName": "Remove-PnPWebPart", "Rank": 1, + "CommandName": "Remove-PnPWebPart", "Id": 1184, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "CommandName": "Remove-PnPWebPart", "Rank": 2, + "CommandName": "Remove-PnPWebPart", "Id": 1185, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" }, { - "CommandName": "Remove-PnPWikiPage", "Rank": 1, + "CommandName": "Remove-PnPWikiPage", "Id": 1186, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" }, { - "CommandName": "Rename-PnPFile", "Rank": 1, + "CommandName": "Rename-PnPFile", "Id": 1187, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" }, { - "CommandName": "Rename-PnPFile", "Rank": 2, + "CommandName": "Rename-PnPFile", "Id": 1188, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" }, { - "CommandName": "Rename-PnPFile", "Rank": 3, + "CommandName": "Rename-PnPFile", "Id": 1189, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" }, { - "CommandName": "Rename-PnPFolder", "Rank": 1, + "CommandName": "Rename-PnPFolder", "Id": 1190, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" }, { - "CommandName": "Repair-PnPSite", "Rank": 1, + "CommandName": "Repair-PnPSite", "Id": 1191, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "CommandName": "Repair-PnPSite", "Rank": 2, + "CommandName": "Repair-PnPSite", "Id": 1192, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "CommandName": "Request-PnPAccessToken", "Rank": 1, + "CommandName": "Request-PnPAccessToken", "Id": 1193, "Command": "Request-PnPAccessToken" }, { - "CommandName": "Request-PnPAccessToken", "Rank": 2, + "CommandName": "Request-PnPAccessToken", "Id": 1194, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" }, { - "CommandName": "Request-PnPAccessToken", "Rank": 3, + "CommandName": "Request-PnPAccessToken", "Id": 1195, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" }, { - "CommandName": "Request-PnPAccessToken", "Rank": 4, + "CommandName": "Request-PnPAccessToken", "Id": 1196, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" }, { - "CommandName": "Request-PnPPersonalSite", "Rank": 1, + "CommandName": "Request-PnPPersonalSite", "Id": 1197, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" }, { - "CommandName": "Request-PnPPersonalSite", "Rank": 2, + "CommandName": "Request-PnPPersonalSite", "Id": 1198, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" }, { - "CommandName": "Request-PnPReIndexList", "Rank": 1, + "CommandName": "Request-PnPReIndexList", "Id": 1199, "Command": "Request-PnPReIndexList -Identity \"Demo List\"" }, { - "CommandName": "Request-PnPReIndexWeb", "Rank": 1, + "CommandName": "Request-PnPReIndexWeb", "Id": 1200, "Command": "Request-PnPReIndexWeb" }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 1, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1201, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 2, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1202, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 3, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1203, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" }, { - "CommandName": "Reset-PnPFileVersion", "Rank": 1, + "CommandName": "Reset-PnPFileVersion", "Id": 1204, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" }, { - "CommandName": "Reset-PnPFileVersion", "Rank": 2, + "CommandName": "Reset-PnPFileVersion", "Id": 1205, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" }, { - "CommandName": "Reset-PnPLabel", "Rank": 1, + "CommandName": "Reset-PnPLabel", "Id": 1206, "Command": "Reset-PnPLabel -List \"Demo List\"" }, { - "CommandName": "Reset-PnPLabel", "Rank": 2, + "CommandName": "Reset-PnPLabel", "Id": 1207, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" }, { - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Id": 1208, "Command": "Reset-PnPMicrosoft365GroupExpiration" }, { - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Rank": 1, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Id": 1209, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" }, { - "CommandName": "Resolve-PnPFolder", "Rank": 1, + "CommandName": "Resolve-PnPFolder", "Id": 1210, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" }, { - "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Id": 1211, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "CommandName": "Restore-PnPFileVersion", "Rank": 1, + "CommandName": "Restore-PnPFileVersion", "Id": 1212, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "CommandName": "Restore-PnPFileVersion", "Rank": 2, + "CommandName": "Restore-PnPFileVersion", "Id": 1213, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" }, { - "CommandName": "Restore-PnPFileVersion", "Rank": 3, + "CommandName": "Restore-PnPFileVersion", "Id": 1214, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "CommandName": "Restore-PnPListItemVersion", "Rank": 1, + "CommandName": "Restore-PnPListItemVersion", "Id": 1215, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "CommandName": "Restore-PnPListItemVersion", "Rank": 2, + "CommandName": "Restore-PnPListItemVersion", "Id": 1216, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "CommandName": "Restore-PnPRecycleBinItem", "Rank": 1, + "CommandName": "Restore-PnPRecycleBinItem", "Id": 1217, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1218, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 2, + "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1219, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "CommandName": "Restore-PnPTenantSite", "Rank": 1, + "CommandName": "Restore-PnPTenantSite", "Id": 1220, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "CommandName": "Restore-PnPTenantSite", "Rank": 2, + "CommandName": "Restore-PnPTenantSite", "Id": 1221, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "CommandName": "Restore-PnPTenantSite", "Rank": 3, + "CommandName": "Restore-PnPTenantSite", "Id": 1222, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" }, { - "CommandName": "Revoke-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Revoke-PnPAzureADAppSitePermission", "Id": 1223, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" }, { - "CommandName": "Revoke-PnPHubSiteRights", "Rank": 1, + "CommandName": "Revoke-PnPHubSiteRights", "Id": 1224, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "CommandName": "Revoke-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Revoke-PnPSiteDesignRights", "Id": 1225, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Rank": 1, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Id": 1226, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "CommandName": "Revoke-PnPUserSession", "Rank": 1, + "CommandName": "Revoke-PnPUserSession", "Id": 1227, "Command": "Revoke-PnPUserSession -User user1@contoso.com" }, { - "CommandName": "Save-PnPPageConversionLog", "Rank": 1, + "CommandName": "Save-PnPPageConversionLog", "Id": 1228, "Command": "Save-PnPPageConversionLog" }, { - "CommandName": "Save-PnPSiteTemplate", "Rank": 1, + "CommandName": "Save-PnPSiteTemplate", "Id": 1229, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" }, { - "CommandName": "Save-PnPTenantTemplate", "Rank": 1, + "CommandName": "Save-PnPTenantTemplate", "Id": 1230, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" }, { - "CommandName": "Send-PnPMail", "Rank": 1, + "CommandName": "Send-PnPMail", "Id": 1231, "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "CommandName": "Send-PnPMail", "Rank": 2, + "CommandName": "Send-PnPMail", "Id": 1232, "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", "Rank": 3, + "CommandName": "Send-PnPMail", "Id": 1233, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "CommandName": "Send-PnPMail", "Rank": 4, + "CommandName": "Send-PnPMail", "Id": 1234, "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", "Rank": 5, + "CommandName": "Send-PnPMail", "Id": 1235, "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", "Rank": 6, + "CommandName": "Send-PnPMail", "Id": 1236, "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, + "CommandName": "Set-PnPAdaptiveScopeProperty", "Id": 1237, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" }, { - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Set-PnPApplicationCustomizer", "Id": 1238, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Set-PnPApplicationCustomizer", "Id": 1239, "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, + "CommandName": "Set-PnPAppSideLoading", "Id": 1240, "Command": "Set-PnPAppSideLoading -On" }, { - "CommandName": "Set-PnPAppSideLoading", "Rank": 2, + "CommandName": "Set-PnPAppSideLoading", "Id": 1241, "Command": "Set-PnPAppSideLoading -Off" }, { - "CommandName": "Set-PnPAuditing", "Rank": 1, + "CommandName": "Set-PnPAuditing", "Id": 1242, "Command": "Set-PnPAuditing -EnableAll" }, { - "CommandName": "Set-PnPAuditing", "Rank": 2, + "CommandName": "Set-PnPAuditing", "Id": 1243, "Command": "Set-PnPAuditing -DisableAll" }, { - "CommandName": "Set-PnPAuditing", "Rank": 3, + "CommandName": "Set-PnPAuditing", "Id": 1244, "Command": "Set-PnPAuditing -RetentionTime 7" }, { - "CommandName": "Set-PnPAuditing", "Rank": 4, + "CommandName": "Set-PnPAuditing", "Id": 1245, "Command": "Set-PnPAuditing -TrimAuditLog" }, { - "CommandName": "Set-PnPAuditing", "Rank": 5, + "CommandName": "Set-PnPAuditing", "Id": 1246, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" }, { - "CommandName": "Set-PnPAvailablePageLayouts", "Rank": 1, + "CommandName": "Set-PnPAvailablePageLayouts", "Id": 1247, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" }, { - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1248, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" }, { - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1249, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" }, { - "CommandName": "Set-PnPAzureADGroup", "Rank": 1, + "CommandName": "Set-PnPAzureADGroup", "Id": 1250, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" }, { - "CommandName": "Set-PnPAzureADGroup", "Rank": 2, + "CommandName": "Set-PnPAzureADGroup", "Id": 1251, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "CommandName": "Set-PnPAzureADGroup", "Rank": 3, + "CommandName": "Set-PnPAzureADGroup", "Id": 1252, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" }, { - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 1, + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1253, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" }, { - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 2, + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1254, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" }, { - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 3, + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1255, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 1, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1256, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 2, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1257, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 1, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1258, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 2, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1259, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 3, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1260, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 4, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1261, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" }, { - "CommandName": "Set-PnPContentType", "Rank": 1, + "CommandName": "Set-PnPContentType", "Id": 1262, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "CommandName": "Set-PnPContentType", "Rank": 2, + "CommandName": "Set-PnPContentType", "Id": 1263, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" }, { - "CommandName": "Set-PnPContentType", "Rank": 3, + "CommandName": "Set-PnPContentType", "Id": 1264, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "CommandName": "Set-PnPContentType", "Rank": 4, + "CommandName": "Set-PnPContentType", "Id": 1265, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "CommandName": "Set-PnPContentType", "Rank": 5, + "CommandName": "Set-PnPContentType", "Id": 1266, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 1, + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1267, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" }, { - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 2, + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1268, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" }, { - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 3, + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1269, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" }, { - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 4, + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1270, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" }, { - "CommandName": "Set-PnPDefaultContentTypeToList", "Rank": 1, + "CommandName": "Set-PnPDefaultContentTypeToList", "Id": 1271, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" }, { - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 1, + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1272, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" }, { - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 2, + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1273, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" }, { - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 3, + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1274, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" }, { - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 1, + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1275, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" }, { - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 2, + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1276, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 3, + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1277, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "CommandName": "Set-PnPDocumentSetField", "Rank": 1, + "CommandName": "Set-PnPDocumentSetField", "Id": 1278, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" }, { - "CommandName": "Set-PnPDocumentSetField", "Rank": 2, + "CommandName": "Set-PnPDocumentSetField", "Id": 1279, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" }, { - "CommandName": "Set-PnPField", "Rank": 1, + "CommandName": "Set-PnPField", "Id": 1280, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" }, { - "CommandName": "Set-PnPField", "Rank": 2, + "CommandName": "Set-PnPField", "Id": 1281, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" }, { - "CommandName": "Set-PnPField", "Rank": 3, + "CommandName": "Set-PnPField", "Id": 1282, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" }, { - "CommandName": "Set-PnPFileCheckedIn", "Rank": 1, + "CommandName": "Set-PnPFileCheckedIn", "Id": 1283, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" }, { - "CommandName": "Set-PnPFileCheckedIn", "Rank": 2, + "CommandName": "Set-PnPFileCheckedIn", "Id": 1284, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" }, { - "CommandName": "Set-PnPFileCheckedOut", "Rank": 1, + "CommandName": "Set-PnPFileCheckedOut", "Id": 1285, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" }, { - "CommandName": "Set-PnPFolderPermission", "Rank": 1, + "CommandName": "Set-PnPFolderPermission", "Id": 1286, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "CommandName": "Set-PnPFolderPermission", "Rank": 2, + "CommandName": "Set-PnPFolderPermission", "Id": 1287, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "CommandName": "Set-PnPFolderPermission", "Rank": 3, + "CommandName": "Set-PnPFolderPermission", "Id": 1288, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "CommandName": "Set-PnPFooter", "Rank": 1, + "CommandName": "Set-PnPFooter", "Id": 1289, "Command": "Set-PnPFooter -Enabled:$true" }, { - "CommandName": "Set-PnPFooter", "Rank": 2, + "CommandName": "Set-PnPFooter", "Id": 1290, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" }, { - "CommandName": "Set-PnPFooter", "Rank": 3, + "CommandName": "Set-PnPFooter", "Id": 1291, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" }, { - "CommandName": "Set-PnPFooter", "Rank": 4, + "CommandName": "Set-PnPFooter", "Id": 1292, "Command": "Set-PnPFooter -LogoUrl \"\"" }, { - "CommandName": "Set-PnPGraphSubscription", "Rank": 1, + "CommandName": "Set-PnPGraphSubscription", "Id": 1293, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" }, { - "CommandName": "Set-PnPGroup", "Rank": 1, + "CommandName": "Set-PnPGroup", "Id": 1294, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" }, { - "CommandName": "Set-PnPGroup", "Rank": 2, + "CommandName": "Set-PnPGroup", "Id": 1295, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" }, { - "CommandName": "Set-PnPGroupPermissions", "Rank": 1, + "CommandName": "Set-PnPGroupPermissions", "Id": 1296, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" }, { - "CommandName": "Set-PnPGroupPermissions", "Rank": 2, + "CommandName": "Set-PnPGroupPermissions", "Id": 1297, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" }, { - "CommandName": "Set-PnPGroupPermissions", "Rank": 3, + "CommandName": "Set-PnPGroupPermissions", "Id": 1298, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" }, { - "CommandName": "Set-PnPGroupPermissions", "Rank": 4, + "CommandName": "Set-PnPGroupPermissions", "Id": 1299, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" }, { - "CommandName": "Set-PnPGroupPermissions", "Rank": 5, + "CommandName": "Set-PnPGroupPermissions", "Id": 1300, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" }, { - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 1, + "CommandName": "Set-PnPHideDefaultThemes", "Id": 1301, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" }, { - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 2, + "CommandName": "Set-PnPHideDefaultThemes", "Id": 1302, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" }, { - "CommandName": "Set-PnPHomePage", "Rank": 1, + "CommandName": "Set-PnPHomePage", "Id": 1303, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" }, { - "CommandName": "Set-PnPHomePage", "Rank": 2, + "CommandName": "Set-PnPHomePage", "Id": 1304, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" }, { - "CommandName": "Set-PnPHomeSite", "Rank": 1, + "CommandName": "Set-PnPHomeSite", "Id": 1305, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" }, { - "CommandName": "Set-PnPHomeSite", "Rank": 2, + "CommandName": "Set-PnPHomeSite", "Id": 1306, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" }, { - "CommandName": "Set-PnPHubSite", "Rank": 1, + "CommandName": "Set-PnPHubSite", "Id": 1307, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" }, { - "CommandName": "Set-PnPHubSite", "Rank": 2, + "CommandName": "Set-PnPHubSite", "Id": 1308, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" }, { - "CommandName": "Set-PnPHubSite", "Rank": 3, + "CommandName": "Set-PnPHubSite", "Id": 1309, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" }, { - "CommandName": "Set-PnPHubSite", "Rank": 4, + "CommandName": "Set-PnPHubSite", "Id": 1310, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" }, { - "CommandName": "Set-PnPHubSite", "Rank": 5, + "CommandName": "Set-PnPHubSite", "Id": 1311, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" }, { - "CommandName": "Set-PnPHubSite", "Rank": 6, + "CommandName": "Set-PnPHubSite", "Id": 1312, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" }, { - "CommandName": "Set-PnPImageListItemColumn", "Rank": 1, + "CommandName": "Set-PnPImageListItemColumn", "Id": 1313, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" }, { - "CommandName": "Set-PnPImageListItemColumn", "Rank": 2, + "CommandName": "Set-PnPImageListItemColumn", "Id": 1314, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" }, { - "CommandName": "Set-PnPIndexedProperties", "Rank": 1, + "CommandName": "Set-PnPIndexedProperties", "Id": 1315, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 1, + "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1316, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 2, + "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1317, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" }, { - "CommandName": "Set-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Set-PnPKnowledgeHubSite", "Id": 1318, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" }, { - "CommandName": "Set-PnPLabel", "Rank": 1, + "CommandName": "Set-PnPLabel", "Id": 1319, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" }, { - "CommandName": "Set-PnPLabel", "Rank": 2, + "CommandName": "Set-PnPLabel", "Id": 1320, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" }, { - "CommandName": "Set-PnPList", "Rank": 1, + "CommandName": "Set-PnPList", "Id": 1321, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" }, { - "CommandName": "Set-PnPList", "Rank": 2, + "CommandName": "Set-PnPList", "Id": 1322, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" }, { - "CommandName": "Set-PnPList", "Rank": 3, + "CommandName": "Set-PnPList", "Id": 1323, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" }, { - "CommandName": "Set-PnPList", "Rank": 4, + "CommandName": "Set-PnPList", "Id": 1324, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" }, { - "CommandName": "Set-PnPList", "Rank": 5, + "CommandName": "Set-PnPList", "Id": 1325, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" }, { - "CommandName": "Set-PnPList", "Rank": 6, + "CommandName": "Set-PnPList", "Id": 1326, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" }, { - "CommandName": "Set-PnPList", "Rank": 7, + "CommandName": "Set-PnPList", "Id": 1327, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" }, { - "CommandName": "Set-PnPList", "Rank": 8, + "CommandName": "Set-PnPList", "Id": 1328, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" }, { - "CommandName": "Set-PnPList", "Rank": 9, + "CommandName": "Set-PnPList", "Id": 1329, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" }, { - "CommandName": "Set-PnPList", "Rank": 10, + "CommandName": "Set-PnPList", "Id": 1330, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" }, { - "CommandName": "Set-PnPList", "Rank": 11, + "CommandName": "Set-PnPList", "Id": 1331, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" }, { - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 1, + "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1332, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" }, { - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 2, + "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1333, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" }, { - "CommandName": "Set-PnPListItem", "Rank": 1, + "CommandName": "Set-PnPListItem", "Id": 1334, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "CommandName": "Set-PnPListItem", "Rank": 2, + "CommandName": "Set-PnPListItem", "Id": 1335, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "CommandName": "Set-PnPListItem", "Rank": 3, + "CommandName": "Set-PnPListItem", "Id": 1336, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "CommandName": "Set-PnPListItem", "Rank": 4, + "CommandName": "Set-PnPListItem", "Id": 1337, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" }, { - "CommandName": "Set-PnPListItem", "Rank": 5, + "CommandName": "Set-PnPListItem", "Id": 1338, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" }, { - "CommandName": "Set-PnPListItemAsRecord", "Rank": 1, + "CommandName": "Set-PnPListItemAsRecord", "Id": 1339, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "CommandName": "Set-PnPListItemAsRecord", "Rank": 2, + "CommandName": "Set-PnPListItemAsRecord", "Id": 1340, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" }, { - "CommandName": "Set-PnPListItemPermission", "Rank": 1, + "CommandName": "Set-PnPListItemPermission", "Id": 1341, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "CommandName": "Set-PnPListItemPermission", "Rank": 2, + "CommandName": "Set-PnPListItemPermission", "Id": 1342, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "CommandName": "Set-PnPListItemPermission", "Rank": 3, + "CommandName": "Set-PnPListItemPermission", "Id": 1343, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "CommandName": "Set-PnPListItemPermission", "Rank": 4, + "CommandName": "Set-PnPListItemPermission", "Id": 1344, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" }, { - "CommandName": "Set-PnPListItemPermission", "Rank": 5, + "CommandName": "Set-PnPListItemPermission", "Id": 1345, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" }, { - "CommandName": "Set-PnPListPermission", "Rank": 1, + "CommandName": "Set-PnPListPermission", "Id": 1346, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "CommandName": "Set-PnPListPermission", "Rank": 2, + "CommandName": "Set-PnPListPermission", "Id": 1347, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 1, + "CommandName": "Set-PnPListRecordDeclaration", "Id": 1348, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" }, { - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 2, + "CommandName": "Set-PnPListRecordDeclaration", "Id": 1349, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" }, { - "CommandName": "Set-PnPMasterPage", "Rank": 1, + "CommandName": "Set-PnPMasterPage", "Id": 1350, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "CommandName": "Set-PnPMasterPage", "Rank": 2, + "CommandName": "Set-PnPMasterPage", "Id": 1351, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "CommandName": "Set-PnPMasterPage", "Rank": 3, + "CommandName": "Set-PnPMasterPage", "Id": 1352, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "CommandName": "Set-PnPMasterPage", "Rank": 4, + "CommandName": "Set-PnPMasterPage", "Id": 1353, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1354, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1355, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1356, "Command": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1357, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1358, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1359, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1360, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1361, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1362, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1363, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1364, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1365, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1366, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1367, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1368, "Command": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1369, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1370, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1371, "Command": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1372, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" }, { - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1373, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1374, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" }, { - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1375, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" }, { - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1376, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" }, { - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1377, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1378, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1379, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 1, + "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1380, "Command": "Set-PnPMinimalDownloadStrategy -Off" }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 2, + "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1381, "Command": "Set-PnPMinimalDownloadStrategy -On" }, { - "CommandName": "Set-PnPPage", "Rank": 1, + "CommandName": "Set-PnPPage", "Id": 1382, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" }, { - "CommandName": "Set-PnPPage", "Rank": 2, + "CommandName": "Set-PnPPage", "Id": 1383, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" }, { - "CommandName": "Set-PnPPage", "Rank": 3, + "CommandName": "Set-PnPPage", "Id": 1384, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" }, { - "CommandName": "Set-PnPPage", "Rank": 4, + "CommandName": "Set-PnPPage", "Id": 1385, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" }, { - "CommandName": "Set-PnPPage", "Rank": 5, + "CommandName": "Set-PnPPage", "Id": 1386, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" }, { - "CommandName": "Set-PnPPage", "Rank": 6, + "CommandName": "Set-PnPPage", "Id": 1387, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" }, { - "CommandName": "Set-PnPPage", "Rank": 7, + "CommandName": "Set-PnPPage", "Id": 1388, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "CommandName": "Set-PnPPage", "Rank": 8, + "CommandName": "Set-PnPPage", "Id": 1389, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" }, { - "CommandName": "Set-PnPPage", "Rank": 9, + "CommandName": "Set-PnPPage", "Id": 1390, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" }, { - "CommandName": "Set-PnPPage", "Rank": 10, + "CommandName": "Set-PnPPage", "Id": 1391, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "CommandName": "Set-PnPPage", "Rank": 11, + "CommandName": "Set-PnPPage", "Id": 1392, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" }, { - "CommandName": "Set-PnPPageTextPart", "Rank": 1, + "CommandName": "Set-PnPPageTextPart", "Id": 1393, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" }, { - "CommandName": "Set-PnPPageWebPart", "Rank": 1, + "CommandName": "Set-PnPPageWebPart", "Id": 1394, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" }, { - "CommandName": "Set-PnPPageWebPart", "Rank": 2, + "CommandName": "Set-PnPPageWebPart", "Id": 1395, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" }, { - "CommandName": "Set-PnPPlannerBucket", "Rank": 1, + "CommandName": "Set-PnPPlannerBucket", "Id": 1396, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" }, { - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 1, + "CommandName": "Set-PnPPlannerConfiguration", "Id": 1397, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" }, { - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 2, + "CommandName": "Set-PnPPlannerConfiguration", "Id": 1398, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" }, { - "CommandName": "Set-PnPPlannerPlan", "Rank": 1, + "CommandName": "Set-PnPPlannerPlan", "Id": 1399, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" }, { - "CommandName": "Set-PnPPlannerTask", "Rank": 1, + "CommandName": "Set-PnPPlannerTask", "Id": 1400, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" }, { - "CommandName": "Set-PnPPlannerTask", "Rank": 2, + "CommandName": "Set-PnPPlannerTask", "Id": 1401, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" }, { - "CommandName": "Set-PnPPlannerTask", "Rank": 3, + "CommandName": "Set-PnPPlannerTask", "Id": 1402, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "CommandName": "Set-PnPPlannerUserPolicy", "Rank": 1, + "CommandName": "Set-PnPPlannerUserPolicy", "Id": 1403, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "CommandName": "Set-PnPPropertyBagValue", "Rank": 1, + "CommandName": "Set-PnPPropertyBagValue", "Id": 1404, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" }, { - "CommandName": "Set-PnPPropertyBagValue", "Rank": 2, + "CommandName": "Set-PnPPropertyBagValue", "Id": 1405, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" }, { - "CommandName": "Set-PnPPropertyBagValue", "Rank": 3, + "CommandName": "Set-PnPPropertyBagValue", "Id": 1406, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" }, { - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 1, + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1407, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" }, { - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 2, + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1408, "Command": "Set-PnPRequestAccessEmails -Disabled" }, { - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 3, + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1409, "Command": "Set-PnPRequestAccessEmails -Disabled:$false" }, { - "CommandName": "Set-PnPRoleDefinition", "Rank": 1, + "CommandName": "Set-PnPRoleDefinition", "Id": 1410, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" }, { - "CommandName": "Set-PnPRoleDefinition", "Rank": 2, + "CommandName": "Set-PnPRoleDefinition", "Id": 1411, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" }, { - "CommandName": "Set-PnPRoleDefinition", "Rank": 3, + "CommandName": "Set-PnPRoleDefinition", "Id": 1412, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" }, { - "CommandName": "Set-PnPRoleDefinition", "Rank": 4, + "CommandName": "Set-PnPRoleDefinition", "Id": 1413, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" }, { - "CommandName": "Set-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Set-PnPSearchConfiguration", "Id": 1414, "Command": "Set-PnPSearchConfiguration -Configuration $config" }, { - "CommandName": "Set-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Set-PnPSearchConfiguration", "Id": 1415, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "CommandName": "Set-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Set-PnPSearchConfiguration", "Id": 1416, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "CommandName": "Set-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Set-PnPSearchConfiguration", "Id": 1417, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "CommandName": "Set-PnPSearchExternalItem", "Rank": 1, + "CommandName": "Set-PnPSearchExternalItem", "Id": 1418, "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone" }, { - "CommandName": "Set-PnPSearchExternalItem", "Rank": 2, + "CommandName": "Set-PnPSearchExternalItem", "Id": 1419, "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"" }, { - "CommandName": "Set-PnPSearchSettings", "Rank": 1, + "CommandName": "Set-PnPSearchSettings", "Id": 1420, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" }, { - "CommandName": "Set-PnPSearchSettings", "Rank": 2, + "CommandName": "Set-PnPSearchSettings", "Id": 1421, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" }, { - "CommandName": "Set-PnPSearchSettings", "Rank": 3, + "CommandName": "Set-PnPSearchSettings", "Id": 1422, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" }, { - "CommandName": "Set-PnPSearchSettings", "Rank": 4, + "CommandName": "Set-PnPSearchSettings", "Id": 1423, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" }, { - "CommandName": "Set-PnPSearchSettings", "Rank": 5, + "CommandName": "Set-PnPSearchSettings", "Id": 1424, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" }, { - "CommandName": "Set-PnPSearchSettings", "Rank": 6, + "CommandName": "Set-PnPSearchSettings", "Id": 1425, "Command": "Set-PnPSearchSettings -SearchScope Tenant" }, { - "CommandName": "Set-PnPSearchSettings", "Rank": 7, + "CommandName": "Set-PnPSearchSettings", "Id": 1426, "Command": "Set-PnPSearchSettings -SearchScope Hub" }, { - "CommandName": "Set-PnPSite", "Rank": 1, + "CommandName": "Set-PnPSite", "Id": 1427, "Command": "Set-PnPSite -Classification \"HBI\"" }, { - "CommandName": "Set-PnPSite", "Rank": 2, + "CommandName": "Set-PnPSite", "Id": 1428, "Command": "Set-PnPSite -Classification $null" }, { - "CommandName": "Set-PnPSite", "Rank": 3, + "CommandName": "Set-PnPSite", "Id": 1429, "Command": "Set-PnPSite -DisableFlows" }, { - "CommandName": "Set-PnPSite", "Rank": 4, + "CommandName": "Set-PnPSite", "Id": 1430, "Command": "Set-PnPSite -DisableFlows:$false" }, { - "CommandName": "Set-PnPSite", "Rank": 5, + "CommandName": "Set-PnPSite", "Id": 1431, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" }, { - "CommandName": "Set-PnPSite", "Rank": 6, + "CommandName": "Set-PnPSite", "Id": 1432, "Command": "Set-PnPSite -NoScriptSite $false" }, { - "CommandName": "Set-PnPSite", "Rank": 7, + "CommandName": "Set-PnPSite", "Id": 1433, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" }, { - "CommandName": "Set-PnPSite", "Rank": 8, + "CommandName": "Set-PnPSite", "Id": 1434, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" }, { - "CommandName": "Set-PnPSite", "Rank": 9, + "CommandName": "Set-PnPSite", "Id": 1435, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" }, { - "CommandName": "Set-PnPSite", "Rank": 10, + "CommandName": "Set-PnPSite", "Id": 1436, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" }, { - "CommandName": "Set-PnPSite", "Rank": 11, + "CommandName": "Set-PnPSite", "Id": 1437, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" }, { - "CommandName": "Set-PnPSite", "Rank": 12, + "CommandName": "Set-PnPSite", "Id": 1438, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" }, { - "CommandName": "Set-PnPSite", "Rank": 13, + "CommandName": "Set-PnPSite", "Id": 1439, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" }, { - "CommandName": "Set-PnPSite", "Rank": 14, + "CommandName": "Set-PnPSite", "Id": 1440, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" }, { - "CommandName": "Set-PnPSite", "Rank": 15, + "CommandName": "Set-PnPSite", "Id": 1441, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" }, { - "CommandName": "Set-PnPSite", "Rank": 16, + "CommandName": "Set-PnPSite", "Id": 1442, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" }, { - "CommandName": "Set-PnPSite", "Rank": 17, + "CommandName": "Set-PnPSite", "Id": 1443, "Command": "Set-PnPSite -CancelVPForExistingLibs" }, { - "CommandName": "Set-PnPSiteClassification", "Rank": 1, + "CommandName": "Set-PnPSiteClassification", "Id": 1444, "Command": "Set-PnPSiteClassification -Identity \"LBI\"" }, { - "CommandName": "Set-PnPSiteClosure", "Rank": 1, + "CommandName": "Set-PnPSiteClosure", "Id": 1445, "Command": "Set-PnPSiteClosure -State Open" }, { - "CommandName": "Set-PnPSiteClosure", "Rank": 2, + "CommandName": "Set-PnPSiteClosure", "Id": 1446, "Command": "Set-PnPSiteClosure -State Closed" }, { - "CommandName": "Set-PnPSiteDesign", "Rank": 1, + "CommandName": "Set-PnPSiteDesign", "Id": 1447, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" }, { - "CommandName": "Set-PnPSiteDesign", "Rank": 2, + "CommandName": "Set-PnPSiteDesign", "Id": 1448, "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", "Rank": 1, + "CommandName": "Set-PnPSiteGroup", "Id": 1449, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" }, { - "CommandName": "Set-PnPSiteGroup", "Rank": 2, + "CommandName": "Set-PnPSiteGroup", "Id": 1450, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" }, { - "CommandName": "Set-PnPSitePolicy", "Rank": 1, + "CommandName": "Set-PnPSitePolicy", "Id": 1451, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "CommandName": "Set-PnPSiteScript", "Rank": 1, + "CommandName": "Set-PnPSiteScript", "Id": 1452, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "CommandName": "Set-PnPSiteScriptPackage", "Rank": 1, + "CommandName": "Set-PnPSiteScriptPackage", "Id": 1453, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 1, + "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1454, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" }, { - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 2, + "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1455, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 1, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1456, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 2, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1457, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 3, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1458, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 4, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1459, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 5, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1460, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 6, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1461, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "CommandName": "Set-PnPStorageEntity", "Rank": 1, + "CommandName": "Set-PnPStorageEntity", "Id": 1462, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "CommandName": "Set-PnPStorageEntity", "Rank": 2, + "CommandName": "Set-PnPStorageEntity", "Id": 1463, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1464, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1465, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1466, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1467, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 1, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1468, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 2, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1469, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" }, { - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 1, + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1470, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" }, { - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 2, + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1471, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" }, { - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 3, + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1472, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" }, { - "CommandName": "Set-PnPTeamifyPromptHidden", "Rank": 1, + "CommandName": "Set-PnPTeamifyPromptHidden", "Id": 1473, "Command": "Set-PnPTeamifyPromptHidden" }, { - "CommandName": "Set-PnPTeamsChannel", "Rank": 1, + "CommandName": "Set-PnPTeamsChannel", "Id": 1474, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" }, { - "CommandName": "Set-PnPTeamsChannel", "Rank": 2, + "CommandName": "Set-PnPTeamsChannel", "Id": 1475, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" }, { - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 1, + "CommandName": "Set-PnpTeamsChannelUser", "Id": 1476, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" }, { - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 2, + "CommandName": "Set-PnpTeamsChannelUser", "Id": 1477, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" }, { - "CommandName": "Set-PnPTeamsTab", "Rank": 1, + "CommandName": "Set-PnPTeamsTab", "Id": 1478, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" }, { - "CommandName": "Set-PnPTeamsTag", "Rank": 1, + "CommandName": "Set-PnPTeamsTag", "Id": 1479, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" }, { - "CommandName": "Set-PnPTeamsTeam", "Rank": 1, + "CommandName": "Set-PnPTeamsTeam", "Id": 1480, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" }, { - "CommandName": "Set-PnPTeamsTeam", "Rank": 2, + "CommandName": "Set-PnPTeamsTeam", "Id": 1481, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" }, { - "CommandName": "Set-PnPTeamsTeam", "Rank": 3, + "CommandName": "Set-PnPTeamsTeam", "Id": 1482, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" }, { - "CommandName": "Set-PnPTeamsTeam", "Rank": 4, + "CommandName": "Set-PnPTeamsTeam", "Id": 1483, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 1, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1484, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 2, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1485, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 3, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1486, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" }, { - "CommandName": "Set-PnPTeamsTeamPicture", "Rank": 1, + "CommandName": "Set-PnPTeamsTeamPicture", "Id": 1487, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 1, + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1488, "Command": "Set-PnPTemporarilyDisableAppBar $true" }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 2, + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1489, "Command": "Set-PnPTemporarilyDisableAppBar $false" }, { - "CommandName": "Set-PnPTenant", "Rank": 1, + "CommandName": "Set-PnPTenant", "Id": 1490, "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, + "CommandName": "Set-PnPTenant", "Id": 1491, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" }, { - "CommandName": "Set-PnPTenant", "Rank": 3, + "CommandName": "Set-PnPTenant", "Id": 1492, "Command": "Set-PnPTenant -ShowAllUsersClaim $false" }, { - "CommandName": "Set-PnPTenant", "Rank": 4, + "CommandName": "Set-PnPTenant", "Id": 1493, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" }, { - "CommandName": "Set-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Set-PnPTenantAppCatalogUrl", "Id": 1494, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" }, { - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 1, + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1495, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" }, { - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 2, + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1496, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" }, { - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 3, + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1497, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" }, { - "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 1, + "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1498, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" }, { - "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 2, + "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1499, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" }, { - "CommandName": "Set-PnPTenantSite", "Rank": 1, + "CommandName": "Set-PnPTenantSite", "Id": 1500, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" }, { - "CommandName": "Set-PnPTenantSite", "Rank": 2, + "CommandName": "Set-PnPTenantSite", "Id": 1501, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" }, { - "CommandName": "Set-PnPTenantSite", "Rank": 3, + "CommandName": "Set-PnPTenantSite", "Id": 1502, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" }, { - "CommandName": "Set-PnPTenantSite", "Rank": 4, + "CommandName": "Set-PnPTenantSite", "Id": 1503, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "CommandName": "Set-PnPTenantSite", "Rank": 5, + "CommandName": "Set-PnPTenantSite", "Id": 1504, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1505, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 2, + "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1506, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" }, { - "CommandName": "Set-PnPTerm", "Rank": 1, + "CommandName": "Set-PnPTerm", "Id": 1507, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" }, { - "CommandName": "Set-PnPTerm", "Rank": 2, + "CommandName": "Set-PnPTerm", "Id": 1508, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "CommandName": "Set-PnPTerm", "Rank": 3, + "CommandName": "Set-PnPTerm", "Id": 1509, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "CommandName": "Set-PnPTerm", "Rank": 4, + "CommandName": "Set-PnPTerm", "Id": 1510, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" }, { - "CommandName": "Set-PnPTermGroup", "Rank": 1, + "CommandName": "Set-PnPTermGroup", "Id": 1511, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" }, { - "CommandName": "Set-PnPTermSet", "Rank": 1, + "CommandName": "Set-PnPTermSet", "Id": 1512, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" }, { - "CommandName": "Set-PnPTermSet", "Rank": 2, + "CommandName": "Set-PnPTermSet", "Id": 1513, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" }, { - "CommandName": "Set-PnPTermSet", "Rank": 3, + "CommandName": "Set-PnPTermSet", "Id": 1514, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" }, { - "CommandName": "Set-PnPTheme", "Rank": 1, + "CommandName": "Set-PnPTheme", "Id": 1515, "Command": "Set-PnPTheme" }, { - "CommandName": "Set-PnPTheme", "Rank": 2, + "CommandName": "Set-PnPTheme", "Id": 1516, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" }, { - "CommandName": "Set-PnPTheme", "Rank": 3, + "CommandName": "Set-PnPTheme", "Id": 1517, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" }, { - "CommandName": "Set-PnPTheme", "Rank": 4, + "CommandName": "Set-PnPTheme", "Id": 1518, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" }, { - "CommandName": "Set-PnPTraceLog", "Rank": 1, + "CommandName": "Set-PnPTraceLog", "Id": 1519, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" }, { - "CommandName": "Set-PnPTraceLog", "Rank": 2, + "CommandName": "Set-PnPTraceLog", "Id": 1520, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" }, { - "CommandName": "Set-PnPTraceLog", "Rank": 3, + "CommandName": "Set-PnPTraceLog", "Id": 1521, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" }, { - "CommandName": "Set-PnPTraceLog", "Rank": 4, + "CommandName": "Set-PnPTraceLog", "Id": 1522, "Command": "Set-PnPTraceLog -Off" }, { - "CommandName": "Set-PnPUserOneDriveQuota", "Rank": 1, + "CommandName": "Set-PnPUserOneDriveQuota", "Id": 1523, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" }, { - "CommandName": "Set-PnPUserProfileProperty", "Rank": 1, + "CommandName": "Set-PnPUserProfileProperty", "Id": 1524, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" }, { - "CommandName": "Set-PnPUserProfileProperty", "Rank": 2, + "CommandName": "Set-PnPUserProfileProperty", "Id": 1525, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" }, { - "CommandName": "Set-PnPView", "Rank": 1, + "CommandName": "Set-PnPView", "Id": 1526, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" }, { - "CommandName": "Set-PnPView", "Rank": 2, + "CommandName": "Set-PnPView", "Id": 1527, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" }, { - "CommandName": "Set-PnPView", "Rank": 3, + "CommandName": "Set-PnPView", "Id": 1528, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" }, { - "CommandName": "Set-PnPView", "Rank": 4, + "CommandName": "Set-PnPView", "Id": 1529, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1530, "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", "Rank": 2, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1531, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 3, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1532, "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", "Rank": 4, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1533, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" }, { - "CommandName": "Set-PnPWeb", "Rank": 1, + "CommandName": "Set-PnPWeb", "Id": 1534, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" }, { - "CommandName": "Set-PnPWeb", "Rank": 2, + "CommandName": "Set-PnPWeb", "Id": 1535, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" }, { - "CommandName": "Set-PnPWeb", "Rank": 3, + "CommandName": "Set-PnPWeb", "Id": 1536, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" }, { - "CommandName": "Set-PnPWeb", "Rank": 4, + "CommandName": "Set-PnPWeb", "Id": 1537, "Command": "Set-PnPWeb -NoCrawl:$true" }, { - "CommandName": "Set-PnPWebHeader", "Rank": 1, + "CommandName": "Set-PnPWebHeader", "Id": 1538, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" }, { - "CommandName": "Set-PnPWebHeader", "Rank": 2, + "CommandName": "Set-PnPWebHeader", "Id": 1539, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" }, { - "CommandName": "Set-PnPWebHeader", "Rank": 3, + "CommandName": "Set-PnPWebHeader", "Id": 1540, "Command": "Set-PnPWebHeader -LogoAlignment Middle" }, { - "CommandName": "Set-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Set-PnPWebhookSubscription", "Id": 1541, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "CommandName": "Set-PnPWebhookSubscription", "Rank": 2, + "CommandName": "Set-PnPWebhookSubscription", "Id": 1542, "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", "Rank": 1, + "CommandName": "Set-PnPWebPartProperty", "Id": 1543, "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" }, { - "CommandName": "Set-PnPWebPermission", "Rank": 1, + "CommandName": "Set-PnPWebPermission", "Id": 1544, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "CommandName": "Set-PnPWebPermission", "Rank": 2, + "CommandName": "Set-PnPWebPermission", "Id": 1545, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" }, { - "CommandName": "Set-PnPWebPermission", "Rank": 3, + "CommandName": "Set-PnPWebPermission", "Id": 1546, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "CommandName": "Set-PnPWebPermission", "Rank": 4, + "CommandName": "Set-PnPWebPermission", "Id": 1547, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" }, { - "CommandName": "Set-PnPWebTheme", "Rank": 1, + "CommandName": "Set-PnPWebTheme", "Id": 1548, "Command": "Set-PnPWebTheme -Theme MyTheme" }, { - "CommandName": "Set-PnPWebTheme", "Rank": 2, + "CommandName": "Set-PnPWebTheme", "Id": 1549, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" }, { - "CommandName": "Set-PnPWikiPageContent", "Rank": 1, + "CommandName": "Set-PnPWikiPageContent", "Id": 1550, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" }, { - "CommandName": "Submit-PnPSearchQuery", "Rank": 1, + "CommandName": "Submit-PnPSearchQuery", "Id": 1551, "Command": "Submit-PnPSearchQuery -Query \"finance\"" }, { - "CommandName": "Submit-PnPSearchQuery", "Rank": 2, + "CommandName": "Submit-PnPSearchQuery", "Id": 1552, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" }, { - "CommandName": "Submit-PnPSearchQuery", "Rank": 3, + "CommandName": "Submit-PnPSearchQuery", "Id": 1553, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" }, { - "CommandName": "Submit-PnPSearchQuery", "Rank": 4, + "CommandName": "Submit-PnPSearchQuery", "Id": 1554, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" }, { - "CommandName": "Submit-PnPSearchQuery", "Rank": 5, + "CommandName": "Submit-PnPSearchQuery", "Id": 1555, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" }, { - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 1, + "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1556, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" }, { - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 2, + "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1557, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" }, { - "CommandName": "Sync-PnPAppToTeams", "Rank": 1, + "CommandName": "Sync-PnPAppToTeams", "Id": 1558, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 1, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1559, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 2, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1560, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 3, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1561, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" }, { - "CommandName": "Test-PnPListItemIsRecord", "Rank": 1, + "CommandName": "Test-PnPListItemIsRecord", "Id": 1562, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" }, { - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Rank": 1, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Id": 1563, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" }, { - "CommandName": "Test-PnPSite", "Rank": 1, + "CommandName": "Test-PnPSite", "Id": 1564, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "CommandName": "Test-PnPSite", "Rank": 2, + "CommandName": "Test-PnPSite", "Id": 1565, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "CommandName": "Test-PnPTenantTemplate", "Rank": 1, + "CommandName": "Test-PnPTenantTemplate", "Id": 1566, "Command": "Test-PnPTenantTemplate -Template $myTemplate" }, { - "CommandName": "Undo-PnPFileCheckedOut", "Rank": 1, + "CommandName": "Undo-PnPFileCheckedOut", "Id": 1567, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" }, { - "CommandName": "Uninstall-PnPApp", "Rank": 1, + "CommandName": "Uninstall-PnPApp", "Id": 1568, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Uninstall-PnPApp", "Rank": 2, + "CommandName": "Uninstall-PnPApp", "Id": 1569, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "CommandName": "Unpublish-PnPApp", "Rank": 1, + "CommandName": "Unpublish-PnPApp", "Id": 1570, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Unpublish-PnPApp", "Rank": 2, + "CommandName": "Unpublish-PnPApp", "Id": 1571, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "CommandName": "Unpublish-PnPContentType", "Rank": 1, + "CommandName": "Unpublish-PnPContentType", "Id": 1572, "Command": "Unpublish-PnPContentType -ContentType 0x0101" }, { - "CommandName": "Unpublish-PnPSyntexModel", "Rank": 1, + "CommandName": "Unpublish-PnPSyntexModel", "Id": 1573, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "CommandName": "Unpublish-PnPSyntexModel", "Rank": 2, + "CommandName": "Unpublish-PnPSyntexModel", "Id": 1574, "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, + "CommandName": "Unregister-PnPHubSite", "Id": 1575, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "CommandName": "Update-PnPApp", "Rank": 1, + "CommandName": "Update-PnPApp", "Id": 1576, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "CommandName": "Update-PnPApp", "Rank": 2, + "CommandName": "Update-PnPApp", "Id": 1577, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1578, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1579, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" }, { - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 3, + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1580, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 1, + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1581, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" }, { - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 2, + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1582, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 3, + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1583, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" }, { - "CommandName": "Update-PnPTeamsApp", "Rank": 1, + "CommandName": "Update-PnPTeamsApp", "Id": 1584, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" }, { - "CommandName": "Update-PnPTeamsUser", "Rank": 1, + "CommandName": "Update-PnPTeamsUser", "Id": 1585, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "CommandName": "Update-PnPTeamsUser", "Rank": 2, + "CommandName": "Update-PnPTeamsUser", "Id": 1586, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "CommandName": "Update-PnPTeamsUser", "Rank": 3, + "CommandName": "Update-PnPTeamsUser", "Id": 1587, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" }, { - "CommandName": "Update-PnPUserType", "Rank": 1, + "CommandName": "Update-PnPUserType", "Id": 1588, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" } diff --git a/version.txt b/version.txt index df8642c59..843b1b6e4 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.86 \ No newline at end of file +2.2.87 \ No newline at end of file From e13d39a0cf66d3e11b67f8720fff1a4d909d991f Mon Sep 17 00:00:00 2001 From: Kshitiz Kalra Date: Tue, 3 Oct 2023 18:04:18 +0530 Subject: [PATCH 044/146] Added silent authentication --- pages/articles/authentication.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pages/articles/authentication.md b/pages/articles/authentication.md index 37d5f063f..05de577bb 100644 --- a/pages/articles/authentication.md +++ b/pages/articles/authentication.md @@ -155,3 +155,11 @@ Permission | Permission type | Id | Type Connect-PnPOnline [yourtenant].sharepoint.com -Interactive -ClientId [clientid] -Tenant [yourtenant].onmicrosoft.com -AzureEnvironment [USGovernment|USGovernmentHigh|USGovernmentDoD|Germany|China] ``` The AzureEnvironment parameter only allows one value. Select the correct one that matches your cloud deployment. + +## Silent Authentication with Credentials for running in Pipelines + +For running `Connect-PnPOnline` with user credentials in Azure DevOps pipeline, you need to make sure that authentication in your Azure AD application is configured to allow public client. + +Public client can be configured from the Azure portal from the Authentication Blade in the application or by setting the `allowPublicClient` property in the application's manifest to true. + +`username` and `password` for service account can be stored as secret pipeline variables and can be referenced in the script to achieve complete automation. From a81b6ffa153187dfe9bf68388a40a9fb56ec76c8 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Tue, 3 Oct 2023 16:39:15 +0300 Subject: [PATCH 045/146] Feature: added output types to page cmdlets --- src/Commands/Pages/AddPage.cs | 1 + src/Commands/Pages/AddPageImageWebPart.cs | 1 + src/Commands/Pages/AddPageSection.cs | 1 + src/Commands/Pages/AddPageTextPart.cs | 1 + src/Commands/Pages/AddPageWebPart.cs | 1 + src/Commands/Pages/GetPage.cs | 1 + src/Commands/Pages/MovePageComponent.cs | 1 + src/Commands/Pages/RemovePageComponent.cs | 1 + src/Commands/Pages/SetPage.cs | 1 + src/Commands/Pages/SetPageTextPart.cs | 1 + src/Commands/Pages/SetPageWebPart.cs | 1 + 11 files changed, 11 insertions(+) diff --git a/src/Commands/Pages/AddPage.cs b/src/Commands/Pages/AddPage.cs index d37214461..0c0b50399 100644 --- a/src/Commands/Pages/AddPage.cs +++ b/src/Commands/Pages/AddPage.cs @@ -9,6 +9,7 @@ namespace PnP.PowerShell.Commands.Pages { [Cmdlet(VerbsCommon.Add, "PnPPage")] + [OutputType(typeof(PnP.Core.Model.SharePoint.IPage))] public class AddPage : PnPWebCmdlet { [Parameter(Mandatory = true, Position = 0)] diff --git a/src/Commands/Pages/AddPageImageWebPart.cs b/src/Commands/Pages/AddPageImageWebPart.cs index d5c96bbf4..c2e69dfd4 100644 --- a/src/Commands/Pages/AddPageImageWebPart.cs +++ b/src/Commands/Pages/AddPageImageWebPart.cs @@ -6,6 +6,7 @@ namespace PnP.PowerShell.Commands.Pages { [Cmdlet(VerbsCommon.Add, "PnPPageImageWebPart")] + [OutputType(typeof(PnP.Core.Model.SharePoint.IPageWebPart))] public class AddPageImageWebPart : PnPWebCmdlet { private const string ParameterSet_DEFAULT = "Default"; diff --git a/src/Commands/Pages/AddPageSection.cs b/src/Commands/Pages/AddPageSection.cs index 6a34037ee..128c4ff85 100644 --- a/src/Commands/Pages/AddPageSection.cs +++ b/src/Commands/Pages/AddPageSection.cs @@ -6,6 +6,7 @@ namespace PnP.PowerShell.Commands.Pages { [Cmdlet(VerbsCommon.Add, "PnPPageSection")] + [OutputType(typeof(void))] public class AddPageSection : PnPWebCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0)] diff --git a/src/Commands/Pages/AddPageTextPart.cs b/src/Commands/Pages/AddPageTextPart.cs index b7e418df9..da23b14ab 100644 --- a/src/Commands/Pages/AddPageTextPart.cs +++ b/src/Commands/Pages/AddPageTextPart.cs @@ -6,6 +6,7 @@ namespace PnP.PowerShell.Commands.Pages { [Cmdlet(VerbsCommon.Add, "PnPPageTextPart")] + [OutputType(typeof(PnP.Core.Model.SharePoint.IPageText))] public class AddTextPart : PnPWebCmdlet { private const string ParameterSet_DEFAULT = "Default"; diff --git a/src/Commands/Pages/AddPageWebPart.cs b/src/Commands/Pages/AddPageWebPart.cs index c407b45d9..296cedae8 100644 --- a/src/Commands/Pages/AddPageWebPart.cs +++ b/src/Commands/Pages/AddPageWebPart.cs @@ -6,6 +6,7 @@ namespace PnP.PowerShell.Commands.WebParts { [Cmdlet(VerbsCommon.Add, "PnPPageWebPart")] + [OutputType(typeof(PnP.Core.Model.SharePoint.IPageWebPart))] public class AddWebPart : PnPWebCmdlet { private const string ParameterSet_DEFAULTBUILTIN = "Default with built-in web part"; diff --git a/src/Commands/Pages/GetPage.cs b/src/Commands/Pages/GetPage.cs index 145262ebb..83d3daeb5 100644 --- a/src/Commands/Pages/GetPage.cs +++ b/src/Commands/Pages/GetPage.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands.Pages { [Cmdlet(VerbsCommon.Get, "PnPPage")] [Alias("Get-PnPClientSidePage")] + [OutputType(typeof(PnP.Core.Model.SharePoint.IPage))] public class GetPage : PnPWebCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0)] diff --git a/src/Commands/Pages/MovePageComponent.cs b/src/Commands/Pages/MovePageComponent.cs index 7e39a745b..9db84ceae 100644 --- a/src/Commands/Pages/MovePageComponent.cs +++ b/src/Commands/Pages/MovePageComponent.cs @@ -8,6 +8,7 @@ namespace PnP.PowerShell.Commands.Pages { [Cmdlet(VerbsCommon.Move, "PnPPageComponent")] [Alias("Move-PnPClientSideComponent")] + [OutputType(typeof(void))] public class MovePageComponent : PnPWebCmdlet { const string ParameterSet_SECTION = "Move to other section"; diff --git a/src/Commands/Pages/RemovePageComponent.cs b/src/Commands/Pages/RemovePageComponent.cs index d8d24126c..27da098cf 100644 --- a/src/Commands/Pages/RemovePageComponent.cs +++ b/src/Commands/Pages/RemovePageComponent.cs @@ -8,6 +8,7 @@ namespace PnP.PowerShell.Commands.Pages { [Cmdlet(VerbsCommon.Remove, "PnPPageComponent")] + [OutputType(typeof(void))] public class RemovePageComponent : PnPWebCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0)] diff --git a/src/Commands/Pages/SetPage.cs b/src/Commands/Pages/SetPage.cs index ec4c8227d..7e752f881 100644 --- a/src/Commands/Pages/SetPage.cs +++ b/src/Commands/Pages/SetPage.cs @@ -9,6 +9,7 @@ namespace PnP.PowerShell.Commands.Pages { [Cmdlet(VerbsCommon.Set, "PnPPage")] [Alias("Set-PnPClientSidePage")] + [OutputType(typeof(PnP.Core.Model.SharePoint.IPage))] public class SetPage : PnPWebCmdlet, IDynamicParameters { [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0)] diff --git a/src/Commands/Pages/SetPageTextPart.cs b/src/Commands/Pages/SetPageTextPart.cs index 098d178d0..cc79488b5 100644 --- a/src/Commands/Pages/SetPageTextPart.cs +++ b/src/Commands/Pages/SetPageTextPart.cs @@ -8,6 +8,7 @@ namespace PnP.PowerShell.Commands.Pages { [Cmdlet(VerbsCommon.Set, "PnPPageTextPart")] + [OutputType(typeof(void))] public class SetClientSideText : PnPWebCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0)] diff --git a/src/Commands/Pages/SetPageWebPart.cs b/src/Commands/Pages/SetPageWebPart.cs index c242fd67d..78113c365 100644 --- a/src/Commands/Pages/SetPageWebPart.cs +++ b/src/Commands/Pages/SetPageWebPart.cs @@ -8,6 +8,7 @@ namespace PnP.PowerShell.Commands.Pages { [Cmdlet(VerbsCommon.Set, "PnPPageWebPart")] + [OutputType(typeof(void))] public class SetClientSideWebPart : PnPWebCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0)] From 9915d383729859f8be36fd0e78996dff2cc7772a Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Tue, 3 Oct 2023 16:50:46 +0300 Subject: [PATCH 046/146] Feature: added output types for Principals cmdlets --- src/Commands/Principals/AddGroupMember.cs | 1 + src/Commands/Principals/ExportUserInfo.cs | 1 + src/Commands/Principals/RemoveAlert.cs | 1 + src/Commands/Principals/RemoveGroup.cs | 4 +--- src/Commands/Principals/RemoveGroupMember.cs | 2 +- src/Commands/Principals/RemoveSiteGroup.cs | 1 + src/Commands/Principals/RemoveUser.cs | 1 + src/Commands/Principals/RemoveUserInfo.cs | 1 + src/Commands/Principals/SetGroup.cs | 1 + src/Commands/Principals/SetGroupPermissions.cs | 1 + src/Commands/Principals/UpdateUserType.cs | 1 + 11 files changed, 11 insertions(+), 4 deletions(-) diff --git a/src/Commands/Principals/AddGroupMember.cs b/src/Commands/Principals/AddGroupMember.cs index 4a93b94f1..8cf05ccba 100644 --- a/src/Commands/Principals/AddGroupMember.cs +++ b/src/Commands/Principals/AddGroupMember.cs @@ -5,6 +5,7 @@ namespace PnP.PowerShell.Commands.Principals { [Cmdlet(VerbsCommon.Add, "PnPGroupMember")] + [OutputType(typeof(void))] public class AddGroupMember : PnPWebCmdlet { private const string ParameterSet_INTERNAL = "Internal"; diff --git a/src/Commands/Principals/ExportUserInfo.cs b/src/Commands/Principals/ExportUserInfo.cs index 2eebf12fa..3889d67b0 100644 --- a/src/Commands/Principals/ExportUserInfo.cs +++ b/src/Commands/Principals/ExportUserInfo.cs @@ -8,6 +8,7 @@ namespace PnP.PowerShell.Commands.Principals { [Cmdlet(VerbsData.Export, "PnPUserInfo")] + [OutputType(typeof(PSObject))] public class ExportUserInfo : PnPAdminCmdlet { [Parameter(Mandatory = true)] diff --git a/src/Commands/Principals/RemoveAlert.cs b/src/Commands/Principals/RemoveAlert.cs index 49a55b159..f1a90a399 100644 --- a/src/Commands/Principals/RemoveAlert.cs +++ b/src/Commands/Principals/RemoveAlert.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands.Principals { [Cmdlet(VerbsCommon.Remove, "PnPAlert")] + [OutputType(typeof(void))] public class RemoveAlert : PnPWebCmdlet { [Parameter(Mandatory = false)] diff --git a/src/Commands/Principals/RemoveGroup.cs b/src/Commands/Principals/RemoveGroup.cs index 70063a49e..2a8547743 100644 --- a/src/Commands/Principals/RemoveGroup.cs +++ b/src/Commands/Principals/RemoveGroup.cs @@ -6,6 +6,7 @@ namespace PnP.PowerShell.Commands.Principals { [Cmdlet(VerbsCommon.Remove, "PnPGroup", DefaultParameterSetName = "All")] + [OutputType(typeof(void))] public class RemoveGroup : PnPWebCmdlet { [Parameter(Mandatory = false, Position = 0, ValueFromPipeline = true)] @@ -24,7 +25,4 @@ protected override void ExecuteCmdlet() } } } - - - } diff --git a/src/Commands/Principals/RemoveGroupMember.cs b/src/Commands/Principals/RemoveGroupMember.cs index d767fa377..14c88e21a 100644 --- a/src/Commands/Principals/RemoveGroupMember.cs +++ b/src/Commands/Principals/RemoveGroupMember.cs @@ -8,7 +8,7 @@ namespace PnP.PowerShell.Commands.Principals { [Cmdlet(VerbsCommon.Remove, "PnPGroupMember")] - + [OutputType(typeof(void))] public class RemoveUserFromGroup : PnPWebCmdlet { diff --git a/src/Commands/Principals/RemoveSiteGroup.cs b/src/Commands/Principals/RemoveSiteGroup.cs index d944fd049..65d8767de 100644 --- a/src/Commands/Principals/RemoveSiteGroup.cs +++ b/src/Commands/Principals/RemoveSiteGroup.cs @@ -6,6 +6,7 @@ namespace PnP.PowerShell.Commands.Principals { [Cmdlet(VerbsCommon.Remove, "PnPSiteGroup", SupportsShouldProcess = true)] + [OutputType(typeof(void))] public class RemoveSiteGroup : PnPAdminCmdlet { [Parameter(Mandatory = false)] diff --git a/src/Commands/Principals/RemoveUser.cs b/src/Commands/Principals/RemoveUser.cs index 750269241..30c3bc34e 100644 --- a/src/Commands/Principals/RemoveUser.cs +++ b/src/Commands/Principals/RemoveUser.cs @@ -8,6 +8,7 @@ namespace PnP.PowerShell.Commands.Principals { [Cmdlet(VerbsCommon.Remove, "PnPUser")] + [OutputType(typeof(void))] public class RemoveUser : PnPWebCmdlet { [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0)] diff --git a/src/Commands/Principals/RemoveUserInfo.cs b/src/Commands/Principals/RemoveUserInfo.cs index 0cc48003f..8bfbee16e 100644 --- a/src/Commands/Principals/RemoveUserInfo.cs +++ b/src/Commands/Principals/RemoveUserInfo.cs @@ -8,6 +8,7 @@ namespace PnP.PowerShell.Commands.Principals { [Cmdlet(VerbsCommon.Remove, "PnPUserInfo")] + [OutputType(typeof(PSObject))] public class RemoveUserInfo : PnPAdminCmdlet { [Parameter(Mandatory = true)] diff --git a/src/Commands/Principals/SetGroup.cs b/src/Commands/Principals/SetGroup.cs index 7ebeb559b..70740576b 100644 --- a/src/Commands/Principals/SetGroup.cs +++ b/src/Commands/Principals/SetGroup.cs @@ -8,6 +8,7 @@ namespace PnP.PowerShell.Commands.Principals { [Cmdlet(VerbsCommon.Set, "PnPGroup")] + [OutputType(typeof(void))] public class SetGroup : PnPWebCmdlet { diff --git a/src/Commands/Principals/SetGroupPermissions.cs b/src/Commands/Principals/SetGroupPermissions.cs index 02fdd45e8..5530a593d 100644 --- a/src/Commands/Principals/SetGroupPermissions.cs +++ b/src/Commands/Principals/SetGroupPermissions.cs @@ -6,6 +6,7 @@ namespace PnP.PowerShell.Commands.Principals { [Cmdlet(VerbsCommon.Set, "PnPGroupPermissions")] + [OutputType(typeof(void))] public class SetGroupPermissions : PnPWebCmdlet { [Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true, ParameterSetName = "By Identity")] diff --git a/src/Commands/Principals/UpdateUserType.cs b/src/Commands/Principals/UpdateUserType.cs index cc035f22c..15c2015dc 100644 --- a/src/Commands/Principals/UpdateUserType.cs +++ b/src/Commands/Principals/UpdateUserType.cs @@ -5,6 +5,7 @@ namespace PnP.PowerShell.Commands.Principals { [Cmdlet(VerbsData.Update, "PnPUserType")] + [OutputType(typeof(string))] public class UpdateUserType : PnPAdminCmdlet { [Parameter(Mandatory = true)] From f1686dce3da1f21e12148ddf3f68032955f35aec Mon Sep 17 00:00:00 2001 From: Kshitiz Kalra Date: Tue, 3 Oct 2023 19:41:56 +0530 Subject: [PATCH 047/146] Update authentication.md added documentation for MFA enabled --- pages/articles/authentication.md | 33 ++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/pages/articles/authentication.md b/pages/articles/authentication.md index 05de577bb..16879081f 100644 --- a/pages/articles/authentication.md +++ b/pages/articles/authentication.md @@ -163,3 +163,36 @@ For running `Connect-PnPOnline` with user credentials in Azure DevOps pipeline, Public client can be configured from the Azure portal from the Authentication Blade in the application or by setting the `allowPublicClient` property in the application's manifest to true. `username` and `password` for service account can be stored as secret pipeline variables and can be referenced in the script to achieve complete automation. + +## Silent Authentication with Credentials and MFA for running in Azure DevOps Pipelines with Microsoft Hosted Agents +### Identify the possible IP ranges for Microsoft-hosted agents + +- Identify the [region for your organization](https://docs.microsoft.com/en-us/azure/devops/organizations/accounts/change-organization-location?view=azure-devops) in Organization settings. +- Identify the [Azure Geography](https://azure.microsoft.com/global-infrastructure/geographies/) for your organization's region. +- Map the names of the regions in your geography to the format used in the weekly file, following the format of AzureCloud., such as AzureCloud.westus. You can map the names of the regions from the Azure Geography list to the format used in the weekly file. +- You can find the weekly IP file at the following URL: https://www.microsoft.com/en-us/download/details.aspx?id=56519 + +For example, if your organization is located in the South East Asia region, you would map it to the format AzureCloud.SouthEastAsia. + +### Create a named location in Azure AD conditional access + +- Go to Azure AD conditional access +- Open named location blade, click on `+ IP Ranges Location` +- Enter the IP ranges for Microsoft Hosted Agents, `Mark as trusted location` should be checked. + +### Create a conditional access policy + +- Go to Azure AD conditional access, click on `+New Policy`. +- Give a meaningful name, click on Users and Groups -> Include select users and groups, select the user with which you want to run your pipeline. +- Include all cloud apps. +- Under conditions -> locations include `any locations` and exclude the recently created named location. +- Under grant -> choose `grant access`. Only `require multifactor authentication needs to be checked`. +- Enable the policy and click on Save. +> [!Important] +> You need to make sure that the new policy does not conflicts with any other policy in your tenant, otherwise make the changes accordingly. + +### Powershell script to be run in pipeline +```powershell +$creds = New-Object System.Management.Automation.PSCredential -ArgumentList ($username, $password) +Connect-PnPOnline -Url -Credentials $creds -ClientId +``` From 4b391eaa357326a9f27d38ceb2386cfe108f5b33 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Tue, 3 Oct 2023 20:45:00 +0300 Subject: [PATCH 048/146] Feature: add support for RAC in site cmdlets --- CHANGELOG.md | 1 + documentation/Set-PnPTenantSite.md | 70 +++++++++++++++++++++++++++++ src/Commands/Admin/SetTenantSite.cs | 45 +++++++++++++++++++ 3 files changed, 116 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index db6860891..71a4a92e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added option to pass in a Stream or XML string to `Read-PnPTenantTemplate` allowing the tenant template to be modified before being applied. [#3431](https://github.com/pnp/powershell/pull/3431) - Added `Get-PnPTenantInfo` which allows retrieving tenant information by its Id or domain name. [#3414](https://github.com/pnp/powershell/pull/3414) - Added option to create a Microsoft 365 Group with dynamic membership by passing in `-DynamicMembershipRule` [#3426](https://github.com/pnp/powershell/pull/3426) +- Added `RestrictedAccessControl`, `ClearRestrictedAccessControl`, `RemoveRestrictedAccessControlGroups`, `AddRestrictedAccessControlGroups` and `RestrictedAccessControlGroups` parameters to `Set-PnPTenantSite` cmdlet to handle restricted access control. ### Fixed diff --git a/documentation/Set-PnPTenantSite.md b/documentation/Set-PnPTenantSite.md index 4e568a964..c164e7b66 100644 --- a/documentation/Set-PnPTenantSite.md +++ b/documentation/Set-PnPTenantSite.md @@ -737,6 +737,76 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RestrictedAccessControl +To apply restricted access control to a group-connected or Teams-connected site. + +```yaml +Type: Boolean +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClearRestrictedAccessControl +To reset restricted access control configuration for a site. + +```yaml +Type: Switch Parameter +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RemoveRestrictedAccessControlGroups +You can remove the specified security group from restricted access control configuration. Members of the security group are no longer be able to access site content while the policy is enforced on the site. + +```yaml +Type: GUID [] +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AddRestrictedAccessControlGroups +You can add the specified security groups for restricted access control configuration. + +```yaml +Type: GUID [] +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RestrictedAccessControlGroups +To edit a restricted access control group for a non-group site + +```yaml +Type: GUID [] +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Wait Wait for the operation to complete diff --git a/src/Commands/Admin/SetTenantSite.cs b/src/Commands/Admin/SetTenantSite.cs index 3421bf524..70ed371e7 100644 --- a/src/Commands/Admin/SetTenantSite.cs +++ b/src/Commands/Admin/SetTenantSite.cs @@ -177,6 +177,21 @@ public class SetTenantSite : PnPAdminCmdlet [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] public bool? ListsShowHeaderAndNavigation; + [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] + public bool? RestrictedAccessControl; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] + public SwitchParameter ClearRestrictedAccessControl; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] + public Guid[] RemoveRestrictedAccessControlGroups; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] + public Guid[] AddRestrictedAccessControlGroups; + + [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] + public Guid[] RestrictedAccessControlGroups; + [Parameter(Mandatory = false)] public SwitchParameter Wait; @@ -537,6 +552,36 @@ private void SetSiteProperties(Func timeoutFunctio updateRequired = true; } + if (ParameterSpecified(nameof(RestrictedAccessControl)) && RestrictedAccessControl.HasValue) + { + props.RestrictedAccessControl = RestrictedAccessControl.Value; + updateRequired = true; + } + + if (ParameterSpecified(nameof(ClearRestrictedAccessControl))) + { + props.ClearRestrictedAccessControl = true; + updateRequired = true; + } + + if (ParameterSpecified(nameof(RemoveRestrictedAccessControlGroups)) && RemoveRestrictedAccessControlGroups.Length > 0) + { + props.RestrictedAccessControlGroupsToRemove = RemoveRestrictedAccessControlGroups; + updateRequired = true; + } + + if (ParameterSpecified(nameof(AddRestrictedAccessControlGroups)) && AddRestrictedAccessControlGroups.Length > 0) + { + props.RestrictedAccessControlGroupsToAdd = AddRestrictedAccessControlGroups; + updateRequired = true; + } + + if (ParameterSpecified(nameof(RestrictedAccessControlGroups)) && RestrictedAccessControlGroups.Length > 0) + { + props.RestrictedAccessControlGroups = RestrictedAccessControlGroups; + updateRequired = true; + } + if (updateRequired) { var op = props.Update(); From ae837da293b848197ef1f4a29eb0b708e3ddbccf Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Tue, 3 Oct 2023 21:25:29 +0300 Subject: [PATCH 049/146] Feature: added output types for site scripts and designs --- src/Commands/SiteDesigns/AddSiteDesign.cs | 1 + .../SiteDesigns/AddSiteDesignFromWeb.cs | 1 + src/Commands/SiteDesigns/AddSiteDesignTask.cs | 1 + .../SiteDesigns/AddSiteScriptPackage.cs | 52 ++++++------ .../SiteDesigns/GetSiteDesignRights.cs | 1 + src/Commands/SiteDesigns/GetSiteDesignRun.cs | 1 + .../SiteDesigns/GetSiteDesignRunStatus.cs | 1 + .../SiteDesigns/GetSiteScriptFromWeb.cs | 1 + .../SiteDesigns/GrantSiteDesignRights.cs | 1 + src/Commands/SiteDesigns/InvokeSiteDesign.cs | 1 + src/Commands/SiteDesigns/InvokeSiteScript.cs | 1 + src/Commands/SiteDesigns/RemoveSiteDesign.cs | 1 + .../SiteDesigns/RemoveSiteDesignTask.cs | 1 + src/Commands/SiteDesigns/RemoveSiteScript.cs | 1 + .../SiteDesigns/RevokeSiteDesignRights.cs | 1 + .../SetBuiltInSiteTemplateSettings.cs | 1 + src/Commands/SiteDesigns/SetSiteDesign.cs | 1 + src/Commands/SiteDesigns/SetSiteScript.cs | 1 + .../SiteDesigns/SetSiteScriptPackage.cs | 79 ++++++++++--------- .../SiteDesigns/UpdateSiteDesignFromWeb.cs | 1 + 20 files changed, 86 insertions(+), 63 deletions(-) diff --git a/src/Commands/SiteDesigns/AddSiteDesign.cs b/src/Commands/SiteDesigns/AddSiteDesign.cs index 54e495ad9..a30048ab8 100644 --- a/src/Commands/SiteDesigns/AddSiteDesign.cs +++ b/src/Commands/SiteDesigns/AddSiteDesign.cs @@ -10,6 +10,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsCommon.Add, "PnPSiteDesign", DefaultParameterSetName = ParameterSet_BYSITESCRIPTINSTANCE)] + [OutputType(typeof(TenantSiteDesign))] public class AddSiteDesign : PnPAdminCmdlet { private const string ParameterSet_BYSITESCRIPTIDS = "By SiteScript Ids"; diff --git a/src/Commands/SiteDesigns/AddSiteDesignFromWeb.cs b/src/Commands/SiteDesigns/AddSiteDesignFromWeb.cs index 1e3ce9442..0247a0c31 100644 --- a/src/Commands/SiteDesigns/AddSiteDesignFromWeb.cs +++ b/src/Commands/SiteDesigns/AddSiteDesignFromWeb.cs @@ -9,6 +9,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsCommon.Add, "PnPSiteDesignFromWeb", DefaultParameterSetName = ParameterSet_BASICCOMPONENTS)] + [OutputType(typeof(TenantSiteDesign))] public class AddSiteDesignFromWeb : PnPAdminCmdlet { private const string ParameterSet_BASICCOMPONENTS = "Basic components"; diff --git a/src/Commands/SiteDesigns/AddSiteDesignTask.cs b/src/Commands/SiteDesigns/AddSiteDesignTask.cs index b6b493c24..930f6e1c7 100644 --- a/src/Commands/SiteDesigns/AddSiteDesignTask.cs +++ b/src/Commands/SiteDesigns/AddSiteDesignTask.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands.SiteDesigns { [Cmdlet(VerbsCommon.Add, "PnPSiteDesignTask")] + [OutputType(typeof(TenantSiteDesignTask))] public class AddSiteDesignTask : PnPWebCmdlet { [Parameter(Mandatory = true)] diff --git a/src/Commands/SiteDesigns/AddSiteScriptPackage.cs b/src/Commands/SiteDesigns/AddSiteScriptPackage.cs index 28de3bfc2..051e153e4 100644 --- a/src/Commands/SiteDesigns/AddSiteScriptPackage.cs +++ b/src/Commands/SiteDesigns/AddSiteScriptPackage.cs @@ -4,36 +4,40 @@ using System.IO; using System.Management.Automation; -[Cmdlet(VerbsCommon.Add, "PnPSiteScriptPackage")] -public class AddSiteScriptPackage : PnPAdminCmdlet +namespace PnP.PowerShell.Commands { - [Parameter(Mandatory = true)] - public string Title; + [Cmdlet(VerbsCommon.Add, "PnPSiteScriptPackage")] + [OutputType(typeof(TenantSiteScript))] + public class AddSiteScriptPackage : PnPAdminCmdlet + { + [Parameter(Mandatory = true)] + public string Title; - [Parameter(Mandatory = false)] - public string Description; + [Parameter(Mandatory = false)] + public string Description; - [Parameter(Mandatory = true)] - public string ContentPath; + [Parameter(Mandatory = true)] + public string ContentPath; - protected override void ExecuteCmdlet() - { - if (!Path.IsPathRooted(ContentPath)) + protected override void ExecuteCmdlet() { - ContentPath = Path.Combine(SessionState.Path.CurrentFileSystemLocation.Path, ContentPath); - } - using (var contentStream = System.IO.File.OpenRead(ContentPath)) - { - TenantSiteScriptCreationInfo siteScriptCreationInfo = new TenantSiteScriptCreationInfo + if (!Path.IsPathRooted(ContentPath)) + { + ContentPath = Path.Combine(SessionState.Path.CurrentFileSystemLocation.Path, ContentPath); + } + using (var contentStream = System.IO.File.OpenRead(ContentPath)) { - Title = Title, - Description = Description, - ContentStream = contentStream - }; - var script = Tenant.CreateSiteScript(siteScriptCreationInfo); - AdminContext.Load(script); - AdminContext.ExecuteQueryRetry(); - WriteObject(script); + TenantSiteScriptCreationInfo siteScriptCreationInfo = new TenantSiteScriptCreationInfo + { + Title = Title, + Description = Description, + ContentStream = contentStream + }; + var script = Tenant.CreateSiteScript(siteScriptCreationInfo); + AdminContext.Load(script); + AdminContext.ExecuteQueryRetry(); + WriteObject(script); + } } } } \ No newline at end of file diff --git a/src/Commands/SiteDesigns/GetSiteDesignRights.cs b/src/Commands/SiteDesigns/GetSiteDesignRights.cs index a6c9a87bd..ae0d7fb52 100644 --- a/src/Commands/SiteDesigns/GetSiteDesignRights.cs +++ b/src/Commands/SiteDesigns/GetSiteDesignRights.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsCommon.Get, "PnPSiteDesignRights")] + [OutputType(typeof(ClientObjectList))] public class GetSiteDesignRights : PnPAdminCmdlet { [Parameter(Mandatory = true, Position = 0, ValueFromPipeline =true)] diff --git a/src/Commands/SiteDesigns/GetSiteDesignRun.cs b/src/Commands/SiteDesigns/GetSiteDesignRun.cs index a65471d9c..c667025c2 100644 --- a/src/Commands/SiteDesigns/GetSiteDesignRun.cs +++ b/src/Commands/SiteDesigns/GetSiteDesignRun.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands.SiteDesigns { [Cmdlet(VerbsCommon.Get, "PnPSiteDesignRun")] + [OutputType(typeof(ClientObjectList))] public class GetSiteDesignRun : PnPWebCmdlet { [Parameter(Mandatory = false)] diff --git a/src/Commands/SiteDesigns/GetSiteDesignRunStatus.cs b/src/Commands/SiteDesigns/GetSiteDesignRunStatus.cs index 72884efcc..8772c0778 100644 --- a/src/Commands/SiteDesigns/GetSiteDesignRunStatus.cs +++ b/src/Commands/SiteDesigns/GetSiteDesignRunStatus.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands.SiteDesigns { [Cmdlet(VerbsCommon.Get, "PnPSiteDesignRunStatus")] + [OutputType(typeof(ClientObjectList))] public class GetSiteDesignRunStatus : PnPAdminCmdlet { [Parameter(Mandatory = true)] diff --git a/src/Commands/SiteDesigns/GetSiteScriptFromWeb.cs b/src/Commands/SiteDesigns/GetSiteScriptFromWeb.cs index 7448c7b6f..892d24347 100644 --- a/src/Commands/SiteDesigns/GetSiteScriptFromWeb.cs +++ b/src/Commands/SiteDesigns/GetSiteScriptFromWeb.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsCommon.Get, "PnPSiteScriptFromWeb", DefaultParameterSetName = ParameterSet_BASICCOMPONENTS)] + [OutputType(typeof(string))] public class GetSiteScriptFromWeb : PnPAdminCmdlet { private const string ParameterSet_BASICCOMPONENTS = "Basic components"; diff --git a/src/Commands/SiteDesigns/GrantSiteDesignRights.cs b/src/Commands/SiteDesigns/GrantSiteDesignRights.cs index 9879baa82..4226ce83f 100644 --- a/src/Commands/SiteDesigns/GrantSiteDesignRights.cs +++ b/src/Commands/SiteDesigns/GrantSiteDesignRights.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsSecurity.Grant, "PnPSiteDesignRights")] + [OutputType(typeof(void))] public class GrantSiteDesignRights : PnPAdminCmdlet { [Parameter(Mandatory = true, Position = 0, ValueFromPipeline =true)] diff --git a/src/Commands/SiteDesigns/InvokeSiteDesign.cs b/src/Commands/SiteDesigns/InvokeSiteDesign.cs index 696b961c4..14caa892e 100644 --- a/src/Commands/SiteDesigns/InvokeSiteDesign.cs +++ b/src/Commands/SiteDesigns/InvokeSiteDesign.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsLifecycle.Invoke, "PnPSiteDesign")] + [OutputType(typeof(ClientObjectList))] public class InvokeSiteDesign : PnPWebCmdlet { [Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true)] diff --git a/src/Commands/SiteDesigns/InvokeSiteScript.cs b/src/Commands/SiteDesigns/InvokeSiteScript.cs index b1064183b..35cb0eef1 100644 --- a/src/Commands/SiteDesigns/InvokeSiteScript.cs +++ b/src/Commands/SiteDesigns/InvokeSiteScript.cs @@ -9,6 +9,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsLifecycle.Invoke, "PnPSiteScript", DefaultParameterSetName = ParameterSet_SCRIPTCONTENTS)] + [OutputType(typeof(IEnumerable))] public class InvokeSiteScript : PnPWebCmdlet { private const string ParameterSet_SITESCRIPTREFERENCE = "By Site Script Reference"; diff --git a/src/Commands/SiteDesigns/RemoveSiteDesign.cs b/src/Commands/SiteDesigns/RemoveSiteDesign.cs index 963a41f98..32e4bd921 100644 --- a/src/Commands/SiteDesigns/RemoveSiteDesign.cs +++ b/src/Commands/SiteDesigns/RemoveSiteDesign.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsCommon.Remove, "PnPSiteDesign")] + [OutputType(typeof(void))] public class RemoveSiteDesign : PnPAdminCmdlet { [Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true)] diff --git a/src/Commands/SiteDesigns/RemoveSiteDesignTask.cs b/src/Commands/SiteDesigns/RemoveSiteDesignTask.cs index 1ecfa674b..2449e6eb8 100644 --- a/src/Commands/SiteDesigns/RemoveSiteDesignTask.cs +++ b/src/Commands/SiteDesigns/RemoveSiteDesignTask.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsCommon.Remove, "PnPSiteDesignTask")] + [OutputType(typeof(void))] public class RemoveSiteDesignTask : PnPAdminCmdlet { [Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true)] diff --git a/src/Commands/SiteDesigns/RemoveSiteScript.cs b/src/Commands/SiteDesigns/RemoveSiteScript.cs index cbd670853..d97883f98 100644 --- a/src/Commands/SiteDesigns/RemoveSiteScript.cs +++ b/src/Commands/SiteDesigns/RemoveSiteScript.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsCommon.Remove, "PnPSiteScript")] + [OutputType(typeof(void))] public class RemoveSiteScript : PnPAdminCmdlet { [Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true)] diff --git a/src/Commands/SiteDesigns/RevokeSiteDesignRights.cs b/src/Commands/SiteDesigns/RevokeSiteDesignRights.cs index 460b7d65c..c1c9bbc37 100644 --- a/src/Commands/SiteDesigns/RevokeSiteDesignRights.cs +++ b/src/Commands/SiteDesigns/RevokeSiteDesignRights.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsSecurity.Revoke, "PnPSiteDesignRights")] + [OutputType(typeof(void))] public class RevokeSiteDesignRights : PnPAdminCmdlet { [Parameter(Mandatory = true, Position = 0, ValueFromPipeline =true)] diff --git a/src/Commands/SiteDesigns/SetBuiltInSiteTemplateSettings.cs b/src/Commands/SiteDesigns/SetBuiltInSiteTemplateSettings.cs index b227b874b..c6f49ecad 100644 --- a/src/Commands/SiteDesigns/SetBuiltInSiteTemplateSettings.cs +++ b/src/Commands/SiteDesigns/SetBuiltInSiteTemplateSettings.cs @@ -10,6 +10,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsCommon.Set, "PnPBuiltInSiteTemplateSettings")] + [OutputType(typeof(BuiltInSiteTemplateSettings))] public class SetBuiltInSiteTemplateSettings : PnPAdminCmdlet { private const string ByIdentityParamSet = "ByIdentity"; diff --git a/src/Commands/SiteDesigns/SetSiteDesign.cs b/src/Commands/SiteDesigns/SetSiteDesign.cs index 7ace46f58..d77e8bde8 100644 --- a/src/Commands/SiteDesigns/SetSiteDesign.cs +++ b/src/Commands/SiteDesigns/SetSiteDesign.cs @@ -10,6 +10,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsCommon.Set, "PnPSiteDesign")] + [OutputType(typeof(TenantSiteDesign))] public class SetSiteDesign : PnPAdminCmdlet { [Parameter(Mandatory = true)] diff --git a/src/Commands/SiteDesigns/SetSiteScript.cs b/src/Commands/SiteDesigns/SetSiteScript.cs index 11e2e35b7..2c1436fe8 100644 --- a/src/Commands/SiteDesigns/SetSiteScript.cs +++ b/src/Commands/SiteDesigns/SetSiteScript.cs @@ -7,6 +7,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsCommon.Set, "PnPSiteScript")] + [OutputType(typeof(TenantSiteScript))] public class SetSiteScript : PnPAdminCmdlet { [Parameter(Mandatory = true)] diff --git a/src/Commands/SiteDesigns/SetSiteScriptPackage.cs b/src/Commands/SiteDesigns/SetSiteScriptPackage.cs index 3716505e5..8a3c5b232 100644 --- a/src/Commands/SiteDesigns/SetSiteScriptPackage.cs +++ b/src/Commands/SiteDesigns/SetSiteScriptPackage.cs @@ -5,56 +5,57 @@ using System.IO; using System.Management.Automation; -[Cmdlet(VerbsCommon.Set, "PnPSiteScriptPackage")] -public class SetSiteScriptPackage : PnPAdminCmdlet +namespace PnP.PowerShell.Commands { - [Parameter(Mandatory = true)] - public TenantSiteScriptPipeBind Identity; - - [Parameter(Mandatory = false)] - public string Title; + [Cmdlet(VerbsCommon.Set, "PnPSiteScriptPackage")] + [OutputType(typeof(TenantSiteScript))] + public class SetSiteScriptPackage : PnPAdminCmdlet + { + [Parameter(Mandatory = true)] + public TenantSiteScriptPipeBind Identity; - [Parameter(Mandatory = false)] - public string Description; + [Parameter(Mandatory = false)] + public string Title; - [Parameter(Mandatory = false)] - public string ContentPath; + [Parameter(Mandatory = false)] + public string Description; - [Parameter(Mandatory = false)] - public int Version; + [Parameter(Mandatory = false)] + public string ContentPath; - protected override void ExecuteCmdlet() - { - var siteScript = Tenant.GetSiteScript(AdminContext, Identity.Id); - AdminContext.Load(siteScript); - AdminContext.ExecuteQueryRetry(); + [Parameter(Mandatory = false)] + public int Version; - if (!Path.IsPathRooted(ContentPath)) + protected override void ExecuteCmdlet() { - ContentPath = Path.Combine(SessionState.Path.CurrentFileSystemLocation.Path, ContentPath); - } + var siteScript = Tenant.GetSiteScript(AdminContext, Identity.Id); + AdminContext.Load(siteScript); + AdminContext.ExecuteQueryRetry(); - using (var contentStream = (ContentPath == null) ? null : System.IO.File.OpenRead(ContentPath)) - { - if(ParameterSpecified(nameof(Title))) + if (!Path.IsPathRooted(ContentPath)) { - siteScript.Title = Title; + ContentPath = Path.Combine(SessionState.Path.CurrentFileSystemLocation.Path, ContentPath); } - if(ParameterSpecified(nameof(Description))) - { - siteScript.Description = Description; - } - if(ParameterSpecified(nameof(Version))) + + using (var contentStream = (ContentPath == null) ? null : System.IO.File.OpenRead(ContentPath)) { - siteScript.Version = Version; + if (ParameterSpecified(nameof(Title))) + { + siteScript.Title = Title; + } + if (ParameterSpecified(nameof(Description))) + { + siteScript.Description = Description; + } + if (ParameterSpecified(nameof(Version))) + { + siteScript.Version = Version; + } + var tenantSiteScript = this.Tenant.UpdateSiteScriptPackage(siteScript); + AdminContext.Load(tenantSiteScript); + AdminContext.ExecuteQueryRetry(); + WriteObject(tenantSiteScript); } - var tenantSiteScript = this.Tenant.UpdateSiteScriptPackage(siteScript); - AdminContext.Load(tenantSiteScript); - AdminContext.ExecuteQueryRetry(); - WriteObject(tenantSiteScript); } } -} - - - +} \ No newline at end of file diff --git a/src/Commands/SiteDesigns/UpdateSiteDesignFromWeb.cs b/src/Commands/SiteDesigns/UpdateSiteDesignFromWeb.cs index f1a0c2816..5a0a9c64d 100644 --- a/src/Commands/SiteDesigns/UpdateSiteDesignFromWeb.cs +++ b/src/Commands/SiteDesigns/UpdateSiteDesignFromWeb.cs @@ -8,6 +8,7 @@ namespace PnP.PowerShell.Commands { [Cmdlet(VerbsData.Update, "PnPSiteDesignFromWeb", DefaultParameterSetName = ParameterSet_ALLCOMPONENTS)] + [OutputType(typeof(TenantSiteDesign))] public class UpdateSiteDesignFromWeb : PnPAdminCmdlet { private const string ParameterSet_BASICCOMPONENTS = "Basic components"; From ffe89e16da165ed76cc2dd8fe08e09a2c7da9675 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Wed, 4 Oct 2023 02:38:13 +0000 Subject: [PATCH 050/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9528 ++++++++--------- version.txt | 2 +- 3 files changed, 4766 insertions(+), 4766 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index ea672afa2..ce936846b 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -23290629792b71cca5dcea2159e6cc86102e3330 \ No newline at end of file +f61904701f6c70c6ac3e1caba1a5d8556d785226 \ 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 c96dfc8f2..59d78c5a6 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9530 +1,9530 @@ [ { - "Rank": 1, + "Command": "Add-PnPAlert -List \"Demo List\"", "CommandName": "Add-PnPAlert", - "Id": 1, - "Command": "Add-PnPAlert -List \"Demo List\"" + "Rank": 1, + "Id": 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)" + "Rank": 2, + "Id": 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\"" + "Rank": 3, + "Id": 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))" + "Rank": 4, + "Id": 4 }, { - "Rank": 1, + "Command": "Add-PnPApp -Path ./myapp.sppkg", "CommandName": "Add-PnPApp", - "Id": 5, - "Command": "Add-PnPApp -Path ./myapp.sppkg" + "Rank": 1, + "Id": 5 }, { - "Rank": 2, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "CommandName": "Add-PnPApp", - "Id": 6, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" + "Rank": 2, + "Id": 6 }, { - "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" + "Rank": 3, + "Id": 7 }, { - "Rank": 4, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "CommandName": "Add-PnPApp", - "Id": 8, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" + "Rank": 4, + "Id": 8 }, { - "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`\"}" + "Rank": 1, + "Id": 9 }, { - "Rank": 1, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 10, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" + "Rank": 1, + "Id": 10 }, { - "Rank": 2, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 11, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" + "Rank": 2, + "Id": 11 }, { - "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\"" + "Rank": 1, + "Id": 12 }, { - "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" + "Rank": 2, + "Id": 13 }, { - "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\"" + "Rank": 3, + "Id": 14 }, { - "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\"" + "Rank": 1, + "Id": 15 }, { - "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" + "Rank": 2, + "Id": 16 }, { - "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\"" + "Rank": 3, + "Id": 17 }, { - "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" + "Rank": 1, + "Id": 18 }, { - "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\"" + "Rank": 2, + "Id": 19 }, { - "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" + "Rank": 1, + "Id": 20 }, { - "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\"" + "Rank": 2, + "Id": 21 }, { - "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\"" + "Rank": 3, + "Id": 22 }, { - "Rank": 4, + "Command": "Add-PnPContentType -Name \"Project Item\"", "CommandName": "Add-PnPContentType", - "Id": 23, - "Command": "Add-PnPContentType -Name \"Project Item\"" + "Rank": 4, + "Id": 23 }, { - "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" + "Rank": 5, + "Id": 24 }, { - "Rank": 1, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 25, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" + "Rank": 1, + "Id": 25 }, { - "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" + "Rank": 2, + "Id": 26 }, { - "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\"" + "Rank": 1, + "Id": 27 }, { - "Rank": 2, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 28, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Rank": 2, + "Id": 28 }, { - "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" + "Rank": 1, + "Id": 29 }, { - "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`\"}\"" + "Rank": 1, + "Id": 30 }, { - "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'" + "Rank": 1, + "Id": 31 }, { - "Rank": 2, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 32, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" + "Rank": 2, + "Id": 32 }, { - "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\"" + "Rank": 1, + "Id": 33 }, { - "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" + "Rank": 1, + "Id": 34 }, { - "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" + "Rank": 2, + "Id": 35 }, { - "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" + "Rank": 3, + "Id": 36 }, { - "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" + "Rank": 4, + "Id": 37 }, { - "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]\"" + "Rank": 1, + "Id": 38 }, { - "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\"" + "Rank": 2, + "Id": 39 }, { - "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\"" + "Rank": 3, + "Id": 40 }, { - "Rank": 4, + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "CommandName": "Add-PnPField", - "Id": 41, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" + "Rank": 4, + "Id": 41 }, { - "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\"" + "Rank": 5, + "Id": 42 }, { - "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()\"" + "Rank": 6, + "Id": 43 }, { - "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\"" + "Rank": 1, + "Id": 44 }, { - "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\"" + "Rank": 1, + "Id": 45 }, { - "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\"" + "Rank": 2, + "Id": 46 }, { - "Rank": 3, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Id": 47, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" + "Rank": 3, + "Id": 47 }, { - "Rank": 4, + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Id": 48, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" + "Rank": 4, + "Id": 48 }, { - "Rank": 5, + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Id": 49, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" + "Rank": 5, + "Id": 49 }, { - "Rank": 6, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "CommandName": "Add-PnPFile", - "Id": 50, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" + "Rank": 6, + "Id": 50 }, { - "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\"" + "Rank": 7, + "Id": 51 }, { - "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\" }'" + "Rank": 8, + "Id": 52 }, { - "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\"" + "Rank": 1, + "Id": 53 }, { - "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!\"" + "Rank": 2, + "Id": 54 }, { - "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)" + "Rank": 3, + "Id": 55 }, { - "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\"" + "Rank": 1, + "Id": 56 }, { - "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" + "Rank": 2, + "Id": 57 }, { - "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" + "Rank": 1, + "Id": 58 }, { - "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" + "Rank": 2, + "Id": 59 }, { - "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)" + "Rank": 3, + "Id": 60 }, { - "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\"" + "Rank": 1, + "Id": 61 }, { - "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\"" + "Rank": 2, + "Id": 62 }, { - "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" + "Rank": 3, + "Id": 63 }, { - "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" + "Rank": 4, + "Id": 64 }, { - "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\"" + "Rank": 5, + "Id": 65 }, { - "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\"" + "Rank": 1, + "Id": 66 }, { - "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\"" + "Rank": 2, + "Id": 67 }, { - "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" + "Rank": 1, + "Id": 68 }, { - "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" + "Rank": 2, + "Id": 69 }, { - "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" + "Rank": 3, + "Id": 70 }, { - "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" + "Rank": 4, + "Id": 71 }, { - "Rank": 1, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "CommandName": "Add-PnPFolder", - "Id": 72, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Rank": 1, + "Id": 72 }, { - "Rank": 2, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "CommandName": "Add-PnPFolder", - "Id": 73, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" + "Rank": 2, + "Id": 73 }, { - "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\"" + "Rank": 3, + "Id": 74 }, { - "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\"" + "Rank": 1, + "Id": 75 }, { - "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!\"" + "Rank": 2, + "Id": 76 }, { - "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)" + "Rank": 3, + "Id": 77 }, { - "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\"" + "Rank": 1, + "Id": 78 }, { - "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" + "Rank": 2, + "Id": 79 }, { - "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" + "Rank": 1, + "Id": 80 }, { - "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" + "Rank": 2, + "Id": 81 }, { - "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)" + "Rank": 3, + "Id": 82 }, { - "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\"" + "Rank": 1, + "Id": 83 }, { - "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\"" + "Rank": 2, + "Id": 84 }, { - "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'" + "Rank": 1, + "Id": 85 }, { - "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" + "Rank": 2, + "Id": 86 }, { - "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" + "Rank": 1, + "Id": 87 }, { - "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\"" + "Rank": 1, + "Id": 88 }, { - "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" + "Rank": 1, + "Id": 89 }, { - "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\"" + "Rank": 2, + "Id": 90 }, { - "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\"" + "Rank": 3, + "Id": 91 }, { - "Rank": 1, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "CommandName": "Add-PnPJavaScriptBlock", - "Id": 92, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" + "Rank": 1, + "Id": 92 }, { - "Rank": 2, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "CommandName": "Add-PnPJavaScriptBlock", - "Id": 93, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" + "Rank": 2, + "Id": 93 }, { - "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" + "Rank": 1, + "Id": 94 }, { - "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" + "Rank": 2, + "Id": 95 }, { - "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\"" + "Rank": 1, + "Id": 96 }, { - "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\"" + "Rank": 2, + "Id": 97 }, { - "Rank": 1, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 98, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" + "Rank": 1, + "Id": 98 }, { - "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" + "Rank": 2, + "Id": 99 }, { - "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" + "Rank": 3, + "Id": 100 }, { - "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\"}" + "Rank": 1, + "Id": 101 }, { - "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\"}" + "Rank": 2, + "Id": 102 }, { - "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\"}" + "Rank": 3, + "Id": 103 }, { - "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\"" + "Rank": 4, + "Id": 104 }, { - "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\"" + "Rank": 5, + "Id": 105 }, { - "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" + "Rank": 1, + "Id": 106 }, { - "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\" }'" + "Rank": 2, + "Id": 107 }, { - "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" + "Rank": 3, + "Id": 108 }, { - "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\"" + "Rank": 1, + "Id": 109 }, { - "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\"" + "Rank": 1, + "Id": 110 }, { - "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\"" + "Rank": 1, + "Id": 111 }, { - "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" + "Rank": 2, + "Id": 112 }, { - "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\"" + "Rank": 1, + "Id": 113 }, { - "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" + "Rank": 2, + "Id": 114 }, { - "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\"" + "Rank": 1, + "Id": 115 }, { - "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\"" + "Rank": 2, + "Id": 116 }, { - "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" + "Rank": 3, + "Id": 117 }, { - "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\"" + "Rank": 1, + "Id": 118 }, { - "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" + "Rank": 2, + "Id": 119 }, { - "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" + "Rank": 3, + "Id": 120 }, { - "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" + "Rank": 4, + "Id": 121 }, { - "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/\"" + "Rank": 5, + "Id": 122 }, { - "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/\"" + "Rank": 6, + "Id": 123 }, { - "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" + "Rank": 7, + "Id": 124 }, { - "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" + "Rank": 8, + "Id": 125 }, { - "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\"" + "Rank": 1, + "Id": 126 }, { - "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\"" + "Rank": 2, + "Id": 127 }, { - "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" + "Rank": 3, + "Id": 128 }, { - "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\"" + "Rank": 1, + "Id": 129 }, { - "Rank": 1, + "Command": "Add-PnPPage -Name \"NewPage\"", "CommandName": "Add-PnPPage", - "Id": 130, - "Command": "Add-PnPPage -Name \"NewPage\"" + "Rank": 1, + "Id": 130 }, { - "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\"" + "Rank": 2, + "Id": 131 }, { - "Rank": 3, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "CommandName": "Add-PnPPage", - "Id": 132, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" + "Rank": 3, + "Id": 132 }, { - "Rank": 4, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "CommandName": "Add-PnPPage", - "Id": 133, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" + "Rank": 4, + "Id": 133 }, { - "Rank": 5, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "CommandName": "Add-PnPPage", - "Id": 134, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"" + "Rank": 5, + "Id": 134 }, { - "Rank": 6, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "CommandName": "Add-PnPPage", - "Id": 135, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" + "Rank": 6, + "Id": 135 }, { - "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)" + "Rank": 7, + "Id": 136 }, { - "Rank": 8, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "CommandName": "Add-PnPPage", - "Id": 137, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate" + "Rank": 8, + "Id": 137 }, { - "Rank": 9, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "CommandName": "Add-PnPPage", - "Id": 138, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" + "Rank": 9, + "Id": 138 }, { - "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" + "Rank": 10, + "Id": 139 }, { - "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\"" + "Rank": 1, + "Id": 140 }, { - "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\"" + "Rank": 2, + "Id": 141 }, { - "Rank": 1, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "CommandName": "Add-PnPPageSection", - "Id": 142, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" + "Rank": 1, + "Id": 142 }, { - "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" + "Rank": 2, + "Id": 143 }, { - "Rank": 1, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "CommandName": "Add-PnPPageTextPart", - "Id": 144, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" + "Rank": 1, + "Id": 144 }, { - "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\"" + "Rank": 2, + "Id": 145 }, { - "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\"" + "Rank": 3, + "Id": 146 }, { - "Rank": 1, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "CommandName": "Add-PnPPageWebPart", - "Id": 147, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" + "Rank": 1, + "Id": 147 }, { - "Rank": 2, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "CommandName": "Add-PnPPageWebPart", - "Id": 148, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" + "Rank": 2, + "Id": 148 }, { - "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" + "Rank": 3, + "Id": 149 }, { - "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\"" + "Rank": 1, + "Id": 150 }, { - "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\"" + "Rank": 2, + "Id": 151 }, { - "Rank": 1, + "Command": "Add-PnPPlannerRoster", "CommandName": "Add-PnPPlannerRoster", - "Id": 152, - "Command": "Add-PnPPlannerRoster" + "Rank": 1, + "Id": 152 }, { - "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\"" + "Rank": 1, + "Id": 153 }, { - "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\"" + "Rank": 1, + "Id": 154 }, { - "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\"" + "Rank": 2, + "Id": 155 }, { - "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\"" + "Rank": 3, + "Id": 156 }, { - "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" + "Rank": 1, + "Id": 157 }, { - "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'" + "Rank": 1, + "Id": 158 }, { - "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'" + "Rank": 2, + "Id": 159 }, { - "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" + "Rank": 1, + "Id": 160 }, { - "Rank": 1, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "CommandName": "Add-PnPRoleDefinition", - "Id": 161, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" + "Rank": 1, + "Id": 161 }, { - "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" + "Rank": 2, + "Id": 162 }, { - "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" + "Rank": 3, + "Id": 163 }, { - "Rank": 1, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 164, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Rank": 1, + "Id": 164 }, { - "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\")" + "Rank": 2, + "Id": 165 }, { - "Rank": 3, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 166, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" + "Rank": 3, + "Id": 166 }, { - "Rank": 1, + "Command": "Add-PnPSiteCollectionAppCatalog", "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 167, - "Command": "Add-PnPSiteCollectionAppCatalog" + "Rank": 1, + "Id": 167 }, { - "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\"" + "Rank": 2, + "Id": 168 }, { - "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" + "Rank": 1, + "Id": 169 }, { - "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" + "Rank": 2, + "Id": 170 }, { - "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\"" + "Rank": 3, + "Id": 171 }, { - "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" + "Rank": 1, + "Id": 172 }, { - "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)" + "Rank": 2, + "Id": 173 }, { - "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" + "Rank": 3, + "Id": 174 }, { - "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" + "Rank": 1, + "Id": 175 }, { - "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\"" + "Rank": 2, + "Id": 176 }, { - "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" + "Rank": 1, + "Id": 177 }, { - "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\"" + "Rank": 1, + "Id": 178 }, { - "Rank": 1, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "CommandName": "Add-PnPSiteTemplate", - "Id": 179, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" + "Rank": 1, + "Id": 179 }, { - "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" + "Rank": 1, + "Id": 180 }, { - "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)" + "Rank": 2, + "Id": 181 }, { - "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\"" + "Rank": 3, + "Id": 182 }, { - "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\"" + "Rank": 1, + "Id": 183 }, { - "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\"" + "Rank": 2, + "Id": 184 }, { - "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" + "Rank": 1, + "Id": 185 }, { - "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\"" + "Rank": 2, + "Id": 186 }, { - "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" + "Rank": 3, + "Id": 187 }, { - "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" + "Rank": 4, + "Id": 188 }, { - "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" + "Rank": 1, + "Id": 189 }, { - "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" + "Rank": 2, + "Id": 190 }, { - "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\"" + "Rank": 1, + "Id": 191 }, { - "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\"" + "Rank": 2, + "Id": 192 }, { - "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\"" + "Rank": 3, + "Id": 193 }, { - "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" + "Rank": 4, + "Id": 194 }, { - "Rank": 1, + "Command": "Add-PnPTeamsTeam", "CommandName": "Add-PnPTeamsTeam", - "Id": 195, - "Command": "Add-PnPTeamsTeam" + "Rank": 1, + "Id": 195 }, { - "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" + "Rank": 1, + "Id": 196 }, { - "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" + "Rank": 2, + "Id": 197 }, { - "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" + "Rank": 3, + "Id": 198 }, { - "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" + "Rank": 4, + "Id": 199 }, { - "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" + "Rank": 1, + "Id": 200 }, { - "Rank": 1, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "CommandName": "Add-PnPTenantSequence", - "Id": 201, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" + "Rank": 1, + "Id": 201 }, { - "Rank": 1, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "CommandName": "Add-PnPTenantSequenceSite", - "Id": 202, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" + "Rank": 1, + "Id": 202 }, { - "Rank": 1, + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "CommandName": "Add-PnPTenantSequenceSubSite", - "Id": 203, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" + "Rank": 1, + "Id": 203 }, { - "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\"}" + "Rank": 1, + "Id": 204 }, { - "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\"" + "Rank": 1, + "Id": 205 }, { - "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" + "Rank": 2, + "Id": 206 }, { - "Rank": 3, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "CommandName": "Add-PnPView", - "Id": 207, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" + "Rank": 3, + "Id": 207 }, { - "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\"" + "Rank": 1, + "Id": 208 }, { - "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\"" + "Rank": 2, + "Id": 209 }, { - "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\"" + "Rank": 3, + "Id": 210 }, { - "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" + "Rank": 1, + "Id": 211 }, { - "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\"" + "Rank": 2, + "Id": 212 }, { - "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!\"" + "Rank": 3, + "Id": 213 }, { - "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" + "Rank": 1, + "Id": 214 }, { - "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" + "Rank": 2, + "Id": 215 }, { - "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" + "Rank": 1, + "Id": 216 }, { - "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" + "Rank": 2, + "Id": 217 }, { - "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'" + "Rank": 1, + "Id": 218 }, { - "Rank": 1, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "CommandName": "Clear-PnPAzureADGroupMember", - "Id": 219, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" + "Rank": 1, + "Id": 219 }, { - "Rank": 1, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "CommandName": "Clear-PnPAzureADGroupOwner", - "Id": 220, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" + "Rank": 1, + "Id": 220 }, { - "Rank": 1, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 221, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" + "Rank": 1, + "Id": 221 }, { - "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" + "Rank": 2, + "Id": 222 }, { - "Rank": 1, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "CommandName": "Clear-PnPListItemAsRecord", - "Id": 223, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Rank": 1, + "Id": 223 }, { - "Rank": 1, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Id": 224, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" + "Rank": 1, + "Id": 224 }, { - "Rank": 1, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Id": 225, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" + "Rank": 1, + "Id": 225 }, { - "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" + "Rank": 1, + "Id": 226 }, { - "Rank": 2, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "CommandName": "Clear-PnpRecycleBinItem", - "Id": 227, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" + "Rank": 2, + "Id": 227 }, { - "Rank": 3, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "CommandName": "Clear-PnpRecycleBinItem", - "Id": 228, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" + "Rank": 3, + "Id": 228 }, { - "Rank": 1, + "Command": "Clear-PnPTenantAppCatalogUrl", "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Id": 229, - "Command": "Clear-PnPTenantAppCatalogUrl" + "Rank": 1, + "Id": 229 }, { - "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\"" + "Rank": 1, + "Id": 230 }, { - "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" + "Rank": 2, + "Id": 231 }, { - "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\"" + "Rank": 1, + "Id": 232 }, { - "Rank": 1, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 233, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" + "Rank": 1, + "Id": 233 }, { - "Rank": 2, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 234, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" + "Rank": 2, + "Id": 234 }, { - "Rank": 1, + "Command": "Convert-PnPSiteTemplate -Path template.xml", "CommandName": "Convert-PnPSiteTemplate", - "Id": 235, - "Command": "Convert-PnPSiteTemplate -Path template.xml" + "Rank": 1, + "Id": 235 }, { - "Rank": 2, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "CommandName": "Convert-PnPSiteTemplate", - "Id": 236, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" + "Rank": 2, + "Id": 236 }, { - "Rank": 3, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "CommandName": "Convert-PnPSiteTemplate", - "Id": 237, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" + "Rank": 3, + "Id": 237 }, { - "Rank": 1, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 238, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" + "Rank": 1, + "Id": 238 }, { - "Rank": 2, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 239, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" + "Rank": 2, + "Id": 239 }, { - "Rank": 1, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 240, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" + "Rank": 1, + "Id": 240 }, { - "Rank": 2, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "CommandName": "ConvertTo-PnPPage", - "Id": 241, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" + "Rank": 2, + "Id": 241 }, { - "Rank": 3, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "CommandName": "ConvertTo-PnPPage", - "Id": 242, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" + "Rank": 3, + "Id": 242 }, { - "Rank": 4, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "CommandName": "ConvertTo-PnPPage", - "Id": 243, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" + "Rank": 4, + "Id": 243 }, { - "Rank": 5, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 244, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Rank": 5, + "Id": 244 }, { - "Rank": 6, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "CommandName": "ConvertTo-PnPPage", - "Id": 245, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" + "Rank": 6, + "Id": 245 }, { - "Rank": 7, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 246, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" + "Rank": 7, + "Id": 246 }, { - "Rank": 8, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 247, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" + "Rank": 8, + "Id": 247 }, { - "Rank": 9, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 248, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Rank": 9, + "Id": 248 }, { - "Rank": 10, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 249, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" + "Rank": 10, + "Id": 249 }, { - "Rank": 11, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "CommandName": "ConvertTo-PnPPage", - "Id": 250, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" + "Rank": 11, + "Id": 250 }, { - "Rank": 12, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 251, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Rank": 12, + "Id": 251 }, { - "Rank": 13, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 252, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Rank": 13, + "Id": 252 }, { - "Rank": 14, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "CommandName": "ConvertTo-PnPPage", - "Id": 253, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" + "Rank": 14, + "Id": 253 }, { - "Rank": 1, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 254, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 1, + "Id": 254 }, { - "Rank": 2, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "CommandName": "Copy-PnPFile", - "Id": 255, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Rank": 2, + "Id": 255 }, { - "Rank": 3, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "CommandName": "Copy-PnPFile", - "Id": 256, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "Rank": 3, + "Id": 256 }, { - "Rank": 4, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 257, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 4, + "Id": 257 }, { - "Rank": 5, + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "CommandName": "Copy-PnPFile", - "Id": 258, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Rank": 5, + "Id": 258 }, { - "Rank": 6, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "CommandName": "Copy-PnPFile", - "Id": 259, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "Rank": 6, + "Id": 259 }, { - "Rank": 7, + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "CommandName": "Copy-PnPFile", - "Id": 260, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Rank": 7, + "Id": 260 }, { - "Rank": 8, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 261, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 8, + "Id": 261 }, { - "Rank": 9, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 262, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Rank": 9, + "Id": 262 }, { - "Rank": 10, + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "CommandName": "Copy-PnPFile", - "Id": 263, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Rank": 10, + "Id": 263 }, { - "Rank": 1, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 264, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 1, + "Id": 264 }, { - "Rank": 2, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "CommandName": "Copy-PnPFolder", - "Id": 265, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Rank": 2, + "Id": 265 }, { - "Rank": 3, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "CommandName": "Copy-PnPFolder", - "Id": 266, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "Rank": 3, + "Id": 266 }, { - "Rank": 4, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 267, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 4, + "Id": 267 }, { - "Rank": 5, + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "CommandName": "Copy-PnPFolder", - "Id": 268, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Rank": 5, + "Id": 268 }, { - "Rank": 6, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "CommandName": "Copy-PnPFolder", - "Id": 269, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "Rank": 6, + "Id": 269 }, { - "Rank": 7, + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "CommandName": "Copy-PnPFolder", - "Id": 270, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Rank": 7, + "Id": 270 }, { - "Rank": 8, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 271, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 8, + "Id": 271 }, { - "Rank": 9, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 272, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Rank": 9, + "Id": 272 }, { - "Rank": 10, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "CommandName": "Copy-PnPFolder", - "Id": 273, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Rank": 10, + "Id": 273 }, { - "Rank": 1, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "CommandName": "Copy-PnPItemProxy", - "Id": 274, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" + "Rank": 1, + "Id": 274 }, { - "Rank": 1, + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "CommandName": "Copy-PnPList", - "Id": 275, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" + "Rank": 1, + "Id": 275 }, { - "Rank": 2, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "CommandName": "Copy-PnPList", - "Id": 276, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" + "Rank": 2, + "Id": 276 }, { - "Rank": 3, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "CommandName": "Copy-PnPList", - "Id": 277, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" + "Rank": 3, + "Id": 277 }, { - "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": 278, - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" + "Rank": 4, + "Id": 278 }, { - "Rank": 1, + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "CommandName": "Copy-PnPTeamsTeam", - "Id": 279, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" + "Rank": 1, + "Id": 279 }, { - "Rank": 2, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "CommandName": "Copy-PnPTeamsTeam", - "Id": 280, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" + "Rank": 2, + "Id": 280 }, { - "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": 281, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" + "Rank": 3, + "Id": 281 }, { - "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": 282, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" + "Rank": 4, + "Id": 282 }, { - "Rank": 1, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Disable-PnPFeature", - "Id": 283, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Id": 283 }, { - "Rank": 2, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "CommandName": "Disable-PnPFeature", - "Id": 284, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Rank": 2, + "Id": 284 }, { - "Rank": 3, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "CommandName": "Disable-PnPFeature", - "Id": 285, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Rank": 3, + "Id": 285 }, { - "Rank": 1, + "Command": "Disable-PnPPageScheduling", "CommandName": "Disable-PnPPageScheduling", - "Id": 286, - "Command": "Disable-PnPPageScheduling" + "Rank": 1, + "Id": 286 }, { - "Rank": 1, + "Command": "Disable-PnPPowerShellTelemetry", "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 287, - "Command": "Disable-PnPPowerShellTelemetry" + "Rank": 1, + "Id": 287 }, { - "Rank": 2, + "Command": "Disable-PnPPowerShellTelemetry -Force", "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 288, - "Command": "Disable-PnPPowerShellTelemetry -Force" + "Rank": 2, + "Id": 288 }, { - "Rank": 1, + "Command": "Disable-PnPSharingForNonOwnersOfSite", "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 289, - "Command": "Disable-PnPSharingForNonOwnersOfSite" + "Rank": 1, + "Id": 289 }, { - "Rank": 1, + "Command": "Disable-PnPSiteClassification", "CommandName": "Disable-PnPSiteClassification", - "Id": 290, - "Command": "Disable-PnPSiteClassification" + "Rank": 1, + "Id": 290 }, { - "Rank": 1, + "Command": "Disconnect-PnPOnline", "CommandName": "Disconnect-PnPOnline", - "Id": 291, - "Command": "Disconnect-PnPOnline" + "Rank": 1, + "Id": 291 }, { - "Rank": 1, + "Command": "Enable-PnPCommSite", "CommandName": "Enable-PnPCommSite", - "Id": 292, - "Command": "Enable-PnPCommSite" + "Rank": 1, + "Id": 292 }, { - "Rank": 2, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "CommandName": "Enable-PnPCommSite", - "Id": 293, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" + "Rank": 2, + "Id": 293 }, { - "Rank": 1, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Enable-PnPFeature", - "Id": 294, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Id": 294 }, { - "Rank": 2, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "CommandName": "Enable-PnPFeature", - "Id": 295, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Rank": 2, + "Id": 295 }, { - "Rank": 3, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "CommandName": "Enable-PnPFeature", - "Id": 296, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Rank": 3, + "Id": 296 }, { - "Rank": 1, + "Command": "Enable-PnPPageScheduling", "CommandName": "Enable-PnPPageScheduling", - "Id": 297, - "Command": "Enable-PnPPageScheduling" + "Rank": 1, + "Id": 297 }, { - "Rank": 1, + "Command": "Enable-PnPPowerShellTelemetry", "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 298, - "Command": "Enable-PnPPowerShellTelemetry" + "Rank": 1, + "Id": 298 }, { - "Rank": 2, + "Command": "Enable-PnPPowerShellTelemetry -Force", "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 299, - "Command": "Enable-PnPPowerShellTelemetry -Force" + "Rank": 2, + "Id": 299 }, { - "Rank": 1, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "CommandName": "Enable-PnPSiteClassification", - "Id": 300, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" + "Rank": 1, + "Id": 300 }, { - "Rank": 2, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "CommandName": "Enable-PnPSiteClassification", - "Id": 301, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" + "Rank": 2, + "Id": 301 }, { - "Rank": 1, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "CommandName": "Export-PnPListToSiteTemplate", - "Id": 302, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" + "Rank": 1, + "Id": 302 }, { - "Rank": 2, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "CommandName": "Export-PnPListToSiteTemplate", - "Id": 303, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" + "Rank": 2, + "Id": 303 }, { - "Rank": 1, + "Command": "Export-PnPPage -Identity Home.aspx", "CommandName": "Export-PnPPage", - "Id": 304, - "Command": "Export-PnPPage -Identity Home.aspx" + "Rank": 1, + "Id": 304 }, { - "Rank": 1, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Id": 305, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" + "Rank": 1, + "Id": 305 }, { - "Rank": 2, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Id": 306, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" + "Rank": 2, + "Id": 306 }, { - "Rank": 3, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Id": 307, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" + "Rank": 3, + "Id": 307 }, { - "Rank": 1, + "Command": "Export-PnPTaxonomy", "CommandName": "Export-PnPTaxonomy", - "Id": 308, - "Command": "Export-PnPTaxonomy" + "Rank": 1, + "Id": 308 }, { - "Rank": 2, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "CommandName": "Export-PnPTaxonomy", - "Id": 309, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt" + "Rank": 2, + "Id": 309 }, { - "Rank": 3, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "CommandName": "Export-PnPTaxonomy", - "Id": 310, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" + "Rank": 3, + "Id": 310 }, { - "Rank": 4, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "CommandName": "Export-PnPTaxonomy", - "Id": 311, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" + "Rank": 4, + "Id": 311 }, { - "Rank": 1, + "Command": "Export-PnPTermGroupToXml", "CommandName": "Export-PnPTermGroupToXml", - "Id": 312, - "Command": "Export-PnPTermGroupToXml" + "Rank": 1, + "Id": 312 }, { - "Rank": 2, + "Command": "Export-PnPTermGroupToXml -Out output.xml", "CommandName": "Export-PnPTermGroupToXml", - "Id": 313, - "Command": "Export-PnPTermGroupToXml -Out output.xml" + "Rank": 2, + "Id": 313 }, { - "Rank": 3, + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "CommandName": "Export-PnPTermGroupToXml", - "Id": 314, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" + "Rank": 3, + "Id": 314 }, { - "Rank": 1, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "CommandName": "Export-PnPUserInfo", - "Id": 315, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" + "Rank": 1, + "Id": 315 }, { - "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": 316, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" + "Rank": 2, + "Id": 316 }, { - "Rank": 1, + "Command": "Export-PnPUserProfile -LoginName user@domain.com", "CommandName": "Export-PnPUserProfile", - "Id": 317, - "Command": "Export-PnPUserProfile -LoginName user@domain.com" + "Rank": 1, + "Id": 317 }, { - "Rank": 2, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "CommandName": "Export-PnPUserProfile", - "Id": 318, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" + "Rank": 2, + "Id": 318 }, { - "Rank": 1, + "Command": "Find-PnPFile -Match *.master", "CommandName": "Find-PnPFile", - "Id": 319, - "Command": "Find-PnPFile -Match *.master" + "Rank": 1, + "Id": 319 }, { - "Rank": 2, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "CommandName": "Find-PnPFile", - "Id": 320, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" + "Rank": 2, + "Id": 320 }, { - "Rank": 3, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "CommandName": "Find-PnPFile", - "Id": 321, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" + "Rank": 3, + "Id": 321 }, { - "Rank": 1, + "Command": "Get-PnPAccessToken", "CommandName": "Get-PnPAccessToken", - "Id": 322, - "Command": "Get-PnPAccessToken" + "Rank": 1, + "Id": 322 }, { - "Rank": 2, + "Command": "Get-PnPAccessToken -Decoded", "CommandName": "Get-PnPAccessToken", - "Id": 323, - "Command": "Get-PnPAccessToken -Decoded" + "Rank": 2, + "Id": 323 }, { - "Rank": 3, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "CommandName": "Get-PnPAccessToken", - "Id": 324, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" + "Rank": 3, + "Id": 324 }, { - "Rank": 4, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "CommandName": "Get-PnPAccessToken", - "Id": 325, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM" + "Rank": 4, + "Id": 325 }, { - "Rank": 5, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "CommandName": "Get-PnPAccessToken", - "Id": 326, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" + "Rank": 5, + "Id": 326 }, { - "Rank": 1, + "Command": "Get-PnPAlert", "CommandName": "Get-PnPAlert", - "Id": 327, - "Command": "Get-PnPAlert" + "Rank": 1, + "Id": 327 }, { - "Rank": 2, + "Command": "Get-PnPAlert -List \"Demo List\"", "CommandName": "Get-PnPAlert", - "Id": 328, - "Command": "Get-PnPAlert -List \"Demo List\"" + "Rank": 2, + "Id": 328 }, { - "Rank": 3, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPAlert", - "Id": 329, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Rank": 3, + "Id": 329 }, { - "Rank": 4, + "Command": "Get-PnPAlert -Title \"Demo Alert\"", "CommandName": "Get-PnPAlert", - "Id": 330, - "Command": "Get-PnPAlert -Title \"Demo Alert\"" + "Rank": 4, + "Id": 330 }, { - "Rank": 5, + "Command": "Get-PnPAlert -AllUsers", "CommandName": "Get-PnPAlert", - "Id": 331, - "Command": "Get-PnPAlert -AllUsers" + "Rank": 5, + "Id": 331 }, { - "Rank": 6, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "CommandName": "Get-PnPAlert", - "Id": 332, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" + "Rank": 6, + "Id": 332 }, { - "Rank": 1, + "Command": "Get-PnPApp", "CommandName": "Get-PnPApp", - "Id": 333, - "Command": "Get-PnPApp" + "Rank": 1, + "Id": 333 }, { - "Rank": 2, + "Command": "Get-PnPApp -Scope Site", "CommandName": "Get-PnPApp", - "Id": 334, - "Command": "Get-PnPApp -Scope Site" + "Rank": 2, + "Id": 334 }, { - "Rank": 3, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Get-PnPApp", - "Id": 335, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Rank": 3, + "Id": 335 }, { - "Rank": 1, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "CommandName": "Get-PnPAppErrors", - "Id": 336, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" + "Rank": 1, + "Id": 336 }, { - "Rank": 2, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "CommandName": "Get-PnPAppErrors", - "Id": 337, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" + "Rank": 2, + "Id": 337 }, { - "Rank": 1, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "CommandName": "Get-PnPAppInfo", - "Id": 338, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"" + "Rank": 1, + "Id": 338 }, { - "Rank": 2, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Get-PnPAppInfo", - "Id": 339, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Rank": 2, + "Id": 339 }, { - "Rank": 3, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "CommandName": "Get-PnPAppInfo", - "Id": 340, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" + "Rank": 3, + "Id": 340 }, { - "Rank": 1, + "Command": "Get-PnPApplicationCustomizer", "CommandName": "Get-PnPApplicationCustomizer", - "Id": 341, - "Command": "Get-PnPApplicationCustomizer" + "Rank": 1, + "Id": 341 }, { - "Rank": 2, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Get-PnPApplicationCustomizer", - "Id": 342, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 2, + "Id": 342 }, { - "Rank": 3, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "CommandName": "Get-PnPApplicationCustomizer", - "Id": 343, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" + "Rank": 3, + "Id": 343 }, { - "Rank": 1, + "Command": "Get-PnPAuditing", "CommandName": "Get-PnPAuditing", - "Id": 344, - "Command": "Get-PnPAuditing" + "Rank": 1, + "Id": 344 }, { - "Rank": 1, + "Command": "Get-PnPAuthenticationRealm", "CommandName": "Get-PnPAuthenticationRealm", - "Id": 345, - "Command": "Get-PnPAuthenticationRealm" + "Rank": 1, + "Id": 345 }, { - "Rank": 2, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "CommandName": "Get-PnPAuthenticationRealm", - "Id": 346, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" + "Rank": 2, + "Id": 346 }, { - "Rank": 1, + "Command": "Get-PnPAvailableLanguage", "CommandName": "Get-PnPAvailableLanguage", - "Id": 347, - "Command": "Get-PnPAvailableLanguage" + "Rank": 1, + "Id": 347 }, { - "Rank": 1, + "Command": "Get-PnPAvailableSensitivityLabel", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 348, - "Command": "Get-PnPAvailableSensitivityLabel" + "Rank": 1, + "Id": 348 }, { - "Rank": 2, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 349, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" + "Rank": 2, + "Id": 349 }, { - "Rank": 3, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 350, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" + "Rank": 3, + "Id": 350 }, { - "Rank": 1, + "Command": "Get-PnPAvailableSiteClassification", "CommandName": "Get-PnPAvailableSiteClassification", - "Id": 351, - "Command": "Get-PnPAvailableSiteClassification" + "Rank": 1, + "Id": 351 }, { - "Rank": 1, + "Command": "Get-PnPAzureACSPrincipal", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 352, - "Command": "Get-PnPAzureACSPrincipal" + "Rank": 1, + "Id": 352 }, { - "Rank": 2, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 353, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" + "Rank": 2, + "Id": 353 }, { - "Rank": 3, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 354, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" + "Rank": 3, + "Id": 354 }, { - "Rank": 4, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 355, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" + "Rank": 4, + "Id": 355 }, { - "Rank": 1, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 356, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit" + "Rank": 1, + "Id": 356 }, { - "Rank": 2, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 357, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" + "Rank": 2, + "Id": 357 }, { - "Rank": 3, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 358, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" + "Rank": 3, + "Id": 358 }, { - "Rank": 1, + "Command": "Get-PnPAzureADActivityReportSignIn", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 359, - "Command": "Get-PnPAzureADActivityReportSignIn" + "Rank": 1, + "Id": 359 }, { - "Rank": 2, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 360, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" + "Rank": 2, + "Id": 360 }, { - "Rank": 3, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 361, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" + "Rank": 3, + "Id": 361 }, { - "Rank": 1, + "Command": "Get-PnPAzureADApp", "CommandName": "Get-PnPAzureADApp", - "Id": 362, - "Command": "Get-PnPAzureADApp" + "Rank": 1, + "Id": 362 }, { - "Rank": 2, + "Command": "Get-PnPAzureADApp -Identity MyApp", "CommandName": "Get-PnPAzureADApp", - "Id": 363, - "Command": "Get-PnPAzureADApp -Identity MyApp" + "Rank": 2, + "Id": 363 }, { - "Rank": 3, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Get-PnPAzureADApp", - "Id": 364, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Rank": 3, + "Id": 364 }, { - "Rank": 4, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPAzureADApp", - "Id": 365, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" + "Rank": 4, + "Id": 365 }, { - "Rank": 1, + "Command": "Get-PnPAzureADAppPermission", "CommandName": "Get-PnPAzureADAppPermission", - "Id": 366, - "Command": "Get-PnPAzureADAppPermission" + "Rank": 1, + "Id": 366 }, { - "Rank": 2, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "CommandName": "Get-PnPAzureADAppPermission", - "Id": 367, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp" + "Rank": 2, + "Id": 367 }, { - "Rank": 3, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Get-PnPAzureADAppPermission", - "Id": 368, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Rank": 3, + "Id": 368 }, { - "Rank": 1, + "Command": "Get-PnPAzureADAppSitePermission", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 369, - "Command": "Get-PnPAzureADAppSitePermission" + "Rank": 1, + "Id": 369 }, { - "Rank": 2, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 370, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" + "Rank": 2, + "Id": 370 }, { - "Rank": 3, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 371, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" + "Rank": 3, + "Id": 371 }, { - "Rank": 4, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 372, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" + "Rank": 4, + "Id": 372 }, { - "Rank": 5, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 373, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" + "Rank": 5, + "Id": 373 }, { - "Rank": 1, + "Command": "Get-PnPAzureADGroup", "CommandName": "Get-PnPAzureADGroup", - "Id": 374, - "Command": "Get-PnPAzureADGroup" + "Rank": 1, + "Id": 374 }, { - "Rank": 2, + "Command": "Get-PnPAzureADGroup -Identity $groupId", "CommandName": "Get-PnPAzureADGroup", - "Id": 375, - "Command": "Get-PnPAzureADGroup -Identity $groupId" + "Rank": 2, + "Id": 375 }, { - "Rank": 3, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "CommandName": "Get-PnPAzureADGroup", - "Id": 376, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" + "Rank": 3, + "Id": 376 }, { - "Rank": 4, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "CommandName": "Get-PnPAzureADGroup", - "Id": 377, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" + "Rank": 4, + "Id": 377 }, { - "Rank": 5, + "Command": "Get-PnPAzureADGroup -Identity $group", "CommandName": "Get-PnPAzureADGroup", - "Id": 378, - "Command": "Get-PnPAzureADGroup -Identity $group" + "Rank": 5, + "Id": 378 }, { - "Rank": 1, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "CommandName": "Get-PnPAzureADGroupMember", - "Id": 379, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId" + "Rank": 1, + "Id": 379 }, { - "Rank": 2, + "Command": "Get-PnPAzureADGroupMember -Identity $group", "CommandName": "Get-PnPAzureADGroupMember", - "Id": 380, - "Command": "Get-PnPAzureADGroupMember -Identity $group" + "Rank": 2, + "Id": 380 }, { - "Rank": 1, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 381, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" + "Rank": 1, + "Id": 381 }, { - "Rank": 2, + "Command": "Get-PnPAzureADGroupOwner -Identity $group", "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 382, - "Command": "Get-PnPAzureADGroupOwner -Identity $group" + "Rank": 2, + "Id": 382 }, { - "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipal", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 383, - "Command": "Get-PnPAzureADServicePrincipal" + "Rank": 1, + "Id": 383 }, { - "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 384, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" + "Rank": 2, + "Id": 384 }, { - "Rank": 3, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 385, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" + "Rank": 3, + "Id": 385 }, { - "Rank": 4, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 386, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" + "Rank": 4, + "Id": 386 }, { - "Rank": 5, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 387, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" + "Rank": 5, + "Id": 387 }, { - "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 388, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Rank": 1, + "Id": 388 }, { - "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 389, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Rank": 2, + "Id": 389 }, { - "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 390, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Rank": 1, + "Id": 390 }, { - "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 391, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" + "Rank": 2, + "Id": 391 }, { - "Rank": 1, + "Command": "Get-PnPAzureADUser", "CommandName": "Get-PnPAzureADUser", - "Id": 392, - "Command": "Get-PnPAzureADUser" + "Rank": 1, + "Id": 392 }, { - "Rank": 2, + "Command": "Get-PnPAzureADUser -EndIndex 50", "CommandName": "Get-PnPAzureADUser", - "Id": 393, - "Command": "Get-PnPAzureADUser -EndIndex 50" + "Rank": 2, + "Id": 393 }, { - "Rank": 3, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "CommandName": "Get-PnPAzureADUser", - "Id": 394, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Rank": 3, + "Id": 394 }, { - "Rank": 4, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "CommandName": "Get-PnPAzureADUser", - "Id": 395, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com" + "Rank": 4, + "Id": 395 }, { - "Rank": 5, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "CommandName": "Get-PnPAzureADUser", - "Id": 396, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" + "Rank": 5, + "Id": 396 }, { - "Rank": 6, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "CommandName": "Get-PnPAzureADUser", - "Id": 397, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" + "Rank": 6, + "Id": 397 }, { - "Rank": 7, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "CommandName": "Get-PnPAzureADUser", - "Id": 398, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" + "Rank": 7, + "Id": 398 }, { - "Rank": 8, + "Command": "Get-PnPAzureADUser -Delta", "CommandName": "Get-PnPAzureADUser", - "Id": 399, - "Command": "Get-PnPAzureADUser -Delta" + "Rank": 8, + "Id": 399 }, { - "Rank": 9, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "CommandName": "Get-PnPAzureADUser", - "Id": 400, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" + "Rank": 9, + "Id": 400 }, { - "Rank": 10, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "CommandName": "Get-PnPAzureADUser", - "Id": 401, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" + "Rank": 10, + "Id": 401 }, { - "Rank": 1, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "CommandName": "Get-PnPAzureCertificate", - "Id": 402, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" + "Rank": 1, + "Id": 402 }, { - "Rank": 2, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "CommandName": "Get-PnPAzureCertificate", - "Id": 403, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" + "Rank": 2, + "Id": 403 }, { - "Rank": 3, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "CommandName": "Get-PnPAzureCertificate", - "Id": 404, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" + "Rank": 3, + "Id": 404 }, { - "Rank": 1, + "Command": "Get-PnPBrowserIdleSignout", "CommandName": "Get-PnPBrowserIdleSignout", - "Id": 405, - "Command": "Get-PnPBrowserIdleSignout" + "Rank": 1, + "Id": 405 }, { - "Rank": 1, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 406, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" + "Rank": 1, + "Id": 406 }, { - "Rank": 2, + "Command": "Get-PnPBuiltInDesignPackageVisibility", "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 407, - "Command": "Get-PnPBuiltInDesignPackageVisibility" + "Rank": 2, + "Id": 407 }, { - "Rank": 1, + "Command": "Get-PnPBuiltInSiteTemplateSettings", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 408, - "Command": "Get-PnPBuiltInSiteTemplateSettings" + "Rank": 1, + "Id": 408 }, { - "Rank": 2, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 409, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" + "Rank": 2, + "Id": 409 }, { - "Rank": 3, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 410, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" + "Rank": 3, + "Id": 410 }, { - "Rank": 4, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 411, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" + "Rank": 4, + "Id": 411 }, { - "Rank": 5, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 412, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" + "Rank": 5, + "Id": 412 }, { - "Rank": 1, + "Command": "Get-PnPChangeLog", "CommandName": "Get-PnPChangeLog", - "Id": 413, - "Command": "Get-PnPChangeLog" + "Rank": 1, + "Id": 413 }, { - "Rank": 2, + "Command": "Get-PnPChangeLog -Nightly", "CommandName": "Get-PnPChangeLog", - "Id": 414, - "Command": "Get-PnPChangeLog -Nightly" + "Rank": 2, + "Id": 414 }, { - "Rank": 1, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 415, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" + "Rank": 1, + "Id": 415 }, { - "Rank": 2, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 416, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" + "Rank": 2, + "Id": 416 }, { - "Rank": 1, + "Command": "Get-PnPContentType", "CommandName": "Get-PnPContentType", - "Id": 417, - "Command": "Get-PnPContentType" + "Rank": 1, + "Id": 417 }, { - "Rank": 2, + "Command": "Get-PnPContentType -InSiteHierarchy", "CommandName": "Get-PnPContentType", - "Id": 418, - "Command": "Get-PnPContentType -InSiteHierarchy" + "Rank": 2, + "Id": 418 }, { - "Rank": 3, + "Command": "Get-PnPContentType -Identity \"Project Document\"", "CommandName": "Get-PnPContentType", - "Id": 419, - "Command": "Get-PnPContentType -Identity \"Project Document\"" + "Rank": 3, + "Id": 419 }, { - "Rank": 4, + "Command": "Get-PnPContentType -List \"Documents\"", "CommandName": "Get-PnPContentType", - "Id": 420, - "Command": "Get-PnPContentType -List \"Documents\"" + "Rank": 4, + "Id": 420 }, { - "Rank": 1, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "CommandName": "Get-PnPContentTypePublishingStatus", - "Id": 421, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" + "Rank": 1, + "Id": 421 }, { - "Rank": 1, + "Command": "Get-PnPCustomAction", "CommandName": "Get-PnPCustomAction", - "Id": 422, - "Command": "Get-PnPCustomAction" + "Rank": 1, + "Id": 422 }, { - "Rank": 2, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Get-PnPCustomAction", - "Id": 423, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 2, + "Id": 423 }, { - "Rank": 3, + "Command": "Get-PnPCustomAction -Scope web", "CommandName": "Get-PnPCustomAction", - "Id": 424, - "Command": "Get-PnPCustomAction -Scope web" + "Rank": 3, + "Id": 424 }, { - "Rank": 1, + "Command": "Get-PnPDeletedMicrosoft365Group", "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 425, - "Command": "Get-PnPDeletedMicrosoft365Group" + "Rank": 1, + "Id": 425 }, { - "Rank": 2, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 426, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Rank": 2, + "Id": 426 }, { - "Rank": 1, + "Command": "Get-PnPDeletedTeam", "CommandName": "Get-PnPDeletedTeam", - "Id": 427, - "Command": "Get-PnPDeletedTeam" + "Rank": 1, + "Id": 427 }, { - "Rank": 1, + "Command": "Get-PnPDiagnostics", "CommandName": "Get-PnPDiagnostics", - "Id": 428, - "Command": "Get-PnPDiagnostics" + "Rank": 1, + "Id": 428 }, { - "Rank": 1, + "Command": "Get-PnPDisableSpacesActivation", "CommandName": "Get-PnPDisableSpacesActivation", - "Id": 429, - "Command": "Get-PnPDisableSpacesActivation" + "Rank": 1, + "Id": 429 }, { - "Rank": 1, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 430, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" + "Rank": 1, + "Id": 430 }, { - "Rank": 2, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 431, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" + "Rank": 2, + "Id": 431 }, { - "Rank": 1, + "Command": "Get-PnPEventReceiver", "CommandName": "Get-PnPEventReceiver", - "Id": 432, - "Command": "Get-PnPEventReceiver" + "Rank": 1, + "Id": 432 }, { - "Rank": 2, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPEventReceiver", - "Id": 433, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 2, + "Id": 433 }, { - "Rank": 3, + "Command": "Get-PnPEventReceiver -Identity MyReceiver", "CommandName": "Get-PnPEventReceiver", - "Id": 434, - "Command": "Get-PnPEventReceiver -Identity MyReceiver" + "Rank": 3, + "Id": 434 }, { - "Rank": 4, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "CommandName": "Get-PnPEventReceiver", - "Id": 435, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"" + "Rank": 4, + "Id": 435 }, { - "Rank": 5, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPEventReceiver", - "Id": 436, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 5, + "Id": 436 }, { - "Rank": 6, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "CommandName": "Get-PnPEventReceiver", - "Id": 437, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" + "Rank": 6, + "Id": 437 }, { - "Rank": 7, + "Command": "Get-PnPEventReceiver -Scope Site", "CommandName": "Get-PnPEventReceiver", - "Id": 438, - "Command": "Get-PnPEventReceiver -Scope Site" + "Rank": 7, + "Id": 438 }, { - "Rank": 8, + "Command": "Get-PnPEventReceiver -Scope Web", "CommandName": "Get-PnPEventReceiver", - "Id": 439, - "Command": "Get-PnPEventReceiver -Scope Web" + "Rank": 8, + "Id": 439 }, { - "Rank": 9, + "Command": "Get-PnPEventReceiver -Scope All", "CommandName": "Get-PnPEventReceiver", - "Id": 440, - "Command": "Get-PnPEventReceiver -Scope All" + "Rank": 9, + "Id": 440 }, { - "Rank": 1, + "Command": "Get-PnPException", "CommandName": "Get-PnPException", - "Id": 441, - "Command": "Get-PnPException" + "Rank": 1, + "Id": 441 }, { - "Rank": 2, + "Command": "Get-PnPException -All", "CommandName": "Get-PnPException", - "Id": 442, - "Command": "Get-PnPException -All" + "Rank": 2, + "Id": 442 }, { - "Rank": 1, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "CommandName": "Get-PnPExternalUser", - "Id": 443, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" + "Rank": 1, + "Id": 443 }, { - "Rank": 2, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "CommandName": "Get-PnPExternalUser", - "Id": 444, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" + "Rank": 2, + "Id": 444 }, { - "Rank": 1, + "Command": "Get-PnPFeature", "CommandName": "Get-PnPFeature", - "Id": 445, - "Command": "Get-PnPFeature" + "Rank": 1, + "Id": 445 }, { - "Rank": 2, + "Command": "Get-PnPFeature -Scope Site", "CommandName": "Get-PnPFeature", - "Id": 446, - "Command": "Get-PnPFeature -Scope Site" + "Rank": 2, + "Id": 446 }, { - "Rank": 3, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPFeature", - "Id": 447, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 3, + "Id": 447 }, { - "Rank": 4, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "CommandName": "Get-PnPFeature", - "Id": 448, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" + "Rank": 4, + "Id": 448 }, { - "Rank": 1, + "Command": "Get-PnPField", "CommandName": "Get-PnPField", - "Id": 449, - "Command": "Get-PnPField" + "Rank": 1, + "Id": 449 }, { - "Rank": 2, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "CommandName": "Get-PnPField", - "Id": 450, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Rank": 2, + "Id": 450 }, { - "Rank": 3, + "Command": "Get-PnPField -Group \"Custom Columns\"", "CommandName": "Get-PnPField", - "Id": 451, - "Command": "Get-PnPField -Group \"Custom Columns\"" + "Rank": 3, + "Id": 451 }, { - "Rank": 1, + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "CommandName": "Get-PnPFile", - "Id": 452, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" + "Rank": 1, + "Id": 452 }, { - "Rank": 2, + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "CommandName": "Get-PnPFile", - "Id": 453, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" + "Rank": 2, + "Id": 453 }, { - "Rank": 3, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "CommandName": "Get-PnPFile", - "Id": 454, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" + "Rank": 3, + "Id": 454 }, { - "Rank": 4, + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "CommandName": "Get-PnPFile", - "Id": 455, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" + "Rank": 4, + "Id": 455 }, { - "Rank": 5, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "CommandName": "Get-PnPFile", - "Id": 456, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" + "Rank": 5, + "Id": 456 }, { - "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": 457, - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" + "Rank": 6, + "Id": 457 }, { - "Rank": 7, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "CommandName": "Get-PnPFile", - "Id": 458, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" + "Rank": 7, + "Id": 458 }, { - "Rank": 1, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Get-PnPFileSharingLink", - "Id": 459, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Rank": 1, + "Id": 459 }, { - "Rank": 1, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "CommandName": "Get-PnPFileVersion", - "Id": 460, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" + "Rank": 1, + "Id": 460 }, { - "Rank": 2, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "CommandName": "Get-PnPFileVersion", - "Id": 461, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" + "Rank": 2, + "Id": 461 }, { - "Rank": 1, + "Command": "Get-PnPFlow -AsAdmin", "CommandName": "Get-PnPFlow", - "Id": 462, - "Command": "Get-PnPFlow -AsAdmin" + "Rank": 1, + "Id": 462 }, { - "Rank": 2, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "CommandName": "Get-PnPFlow", - "Id": 463, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe" + "Rank": 2, + "Id": 463 }, { - "Rank": 3, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "CommandName": "Get-PnPFlow", - "Id": 464, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" + "Rank": 3, + "Id": 464 }, { - "Rank": 1, + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "CommandName": "Get-PnPFlowOwner", - "Id": 465, - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" + "Rank": 1, + "Id": 465 }, { - "Rank": 1, + "Command": "Get-PnPFolder", "CommandName": "Get-PnPFolder", - "Id": 466, - "Command": "Get-PnPFolder" + "Rank": 1, + "Id": 466 }, { - "Rank": 2, + "Command": "Get-PnPFolder -Url \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Id": 467, - "Command": "Get-PnPFolder -Url \"Shared Documents\"" + "Rank": 2, + "Id": 467 }, { - "Rank": 3, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "CommandName": "Get-PnPFolder", - "Id": 468, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" + "Rank": 3, + "Id": 468 }, { - "Rank": 4, + "Command": "Get-PnPFolder -List \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Id": 469, - "Command": "Get-PnPFolder -List \"Shared Documents\"" + "Rank": 4, + "Id": 469 }, { - "Rank": 1, + "Command": "Get-PnPFolderFile", "CommandName": "Get-PnPFolderFile", - "Id": 470, - "Command": "Get-PnPFolderFile" + "Rank": 1, + "Id": 470 }, { - "Rank": 2, + "Command": "Get-PnPFolderFile -Recurse", "CommandName": "Get-PnPFolderFile", - "Id": 471, - "Command": "Get-PnPFolderFile -Recurse" + "Rank": 2, + "Id": 471 }, { - "Rank": 3, + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderFile", - "Id": 472, - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"" + "Rank": 3, + "Id": 472 }, { - "Rank": 4, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "CommandName": "Get-PnPFolderFile", - "Id": 473, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Rank": 4, + "Id": 473 }, { - "Rank": 5, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderFile", - "Id": 474, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Rank": 5, + "Id": 474 }, { - "Rank": 1, + "Command": "Get-PnPFolderFolder", "CommandName": "Get-PnPFolderFolder", - "Id": 475, - "Command": "Get-PnPFolderFolder" + "Rank": 1, + "Id": 475 }, { - "Rank": 2, + "Command": "Get-PnPFolderFolder -Recurse", "CommandName": "Get-PnPFolderFolder", - "Id": 476, - "Command": "Get-PnPFolderFolder -Recurse" + "Rank": 2, + "Id": 476 }, { - "Rank": 3, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderFolder", - "Id": 477, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"" + "Rank": 3, + "Id": 477 }, { - "Rank": 4, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "CommandName": "Get-PnPFolderFolder", - "Id": 478, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" + "Rank": 4, + "Id": 478 }, { - "Rank": 5, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "CommandName": "Get-PnPFolderFolder", - "Id": 479, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" + "Rank": 5, + "Id": 479 }, { - "Rank": 6, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderFolder", - "Id": 480, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Rank": 6, + "Id": 480 }, { - "Rank": 1, + "Command": "Get-PnPFolderItem", "CommandName": "Get-PnPFolderItem", - "Id": 481, - "Command": "Get-PnPFolderItem" + "Rank": 1, + "Id": 481 }, { - "Rank": 2, + "Command": "Get-PnPFolderItem -Recurse", "CommandName": "Get-PnPFolderItem", - "Id": 482, - "Command": "Get-PnPFolderItem -Recurse" + "Rank": 2, + "Id": 482 }, { - "Rank": 3, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderItem", - "Id": 483, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" + "Rank": 3, + "Id": 483 }, { - "Rank": 4, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "CommandName": "Get-PnPFolderItem", - "Id": 484, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Rank": 4, + "Id": 484 }, { - "Rank": 5, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "CommandName": "Get-PnPFolderItem", - "Id": 485, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" + "Rank": 5, + "Id": 485 }, { - "Rank": 6, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderItem", - "Id": 486, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Rank": 6, + "Id": 486 }, { - "Rank": 1, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Get-PnPFolderSharingLink", - "Id": 487, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Rank": 1, + "Id": 487 }, { - "Rank": 1, + "Command": "Get-PnPFolderStorageMetric", "CommandName": "Get-PnPFolderStorageMetric", - "Id": 488, - "Command": "Get-PnPFolderStorageMetric" + "Rank": 1, + "Id": 488 }, { - "Rank": 2, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "CommandName": "Get-PnPFolderStorageMetric", - "Id": 489, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" + "Rank": 2, + "Id": 489 }, { - "Rank": 3, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "CommandName": "Get-PnPFolderStorageMetric", - "Id": 490, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" + "Rank": 3, + "Id": 490 }, { - "Rank": 1, + "Command": "Get-PnPFooter", "CommandName": "Get-PnPFooter", - "Id": 491, - "Command": "Get-PnPFooter" + "Rank": 1, + "Id": 491 }, { - "Rank": 1, + "Command": "Get-PnPGraphAccessToken", "CommandName": "Get-PnPGraphAccessToken", - "Id": 492, - "Command": "Get-PnPGraphAccessToken" + "Rank": 1, + "Id": 492 }, { - "Rank": 2, + "Command": "Get-PnPGraphAccessToken -Decoded", "CommandName": "Get-PnPGraphAccessToken", - "Id": 493, - "Command": "Get-PnPGraphAccessToken -Decoded" + "Rank": 2, + "Id": 493 }, { - "Rank": 1, + "Command": "Get-PnPGraphSubscription", "CommandName": "Get-PnPGraphSubscription", - "Id": 494, - "Command": "Get-PnPGraphSubscription" + "Rank": 1, + "Id": 494 }, { - "Rank": 2, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "CommandName": "Get-PnPGraphSubscription", - "Id": 495, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Rank": 2, + "Id": 495 }, { - "Rank": 1, + "Command": "Get-PnPGroup", "CommandName": "Get-PnPGroup", - "Id": 496, - "Command": "Get-PnPGroup" + "Rank": 1, + "Id": 496 }, { - "Rank": 2, + "Command": "Get-PnPGroup -Identity 'My Site Users'", "CommandName": "Get-PnPGroup", - "Id": 497, - "Command": "Get-PnPGroup -Identity 'My Site Users'" + "Rank": 2, + "Id": 497 }, { - "Rank": 3, + "Command": "Get-PnPGroup -AssociatedMemberGroup", "CommandName": "Get-PnPGroup", - "Id": 498, - "Command": "Get-PnPGroup -AssociatedMemberGroup" + "Rank": 3, + "Id": 498 }, { - "Rank": 1, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "CommandName": "Get-PnPGroupMember", - "Id": 499, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" + "Rank": 1, + "Id": 499 }, { - "Rank": 2, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "CommandName": "Get-PnPGroupMember", - "Id": 500, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" + "Rank": 2, + "Id": 500 }, { - "Rank": 1, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "CommandName": "Get-PnPGroupPermissions", - "Id": 501, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" + "Rank": 1, + "Id": 501 }, { - "Rank": 1, + "Command": "Get-PnPHideDefaultThemes", "CommandName": "Get-PnPHideDefaultThemes", - "Id": 502, - "Command": "Get-PnPHideDefaultThemes" + "Rank": 1, + "Id": 502 }, { - "Rank": 1, + "Command": "Get-PnPHomePage", "CommandName": "Get-PnPHomePage", - "Id": 503, - "Command": "Get-PnPHomePage" + "Rank": 1, + "Id": 503 }, { - "Rank": 1, + "Command": "Get-PnPHomeSite", "CommandName": "Get-PnPHomeSite", - "Id": 504, - "Command": "Get-PnPHomeSite" + "Rank": 1, + "Id": 504 }, { - "Rank": 2, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "CommandName": "Get-PnPHomeSite", - "Id": 505, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" + "Rank": 2, + "Id": 505 }, { - "Rank": 3, + "Command": "Get-PnPHomeSite -Detailed", "CommandName": "Get-PnPHomeSite", - "Id": 506, - "Command": "Get-PnPHomeSite -Detailed" + "Rank": 3, + "Id": 506 }, { - "Rank": 1, + "Command": "Get-PnPHubSite", "CommandName": "Get-PnPHubSite", - "Id": 507, - "Command": "Get-PnPHubSite" + "Rank": 1, + "Id": 507 }, { - "Rank": 2, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "CommandName": "Get-PnPHubSite", - "Id": 508, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Rank": 2, + "Id": 508 }, { - "Rank": 3, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "CommandName": "Get-PnPHubSite", - "Id": 509, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" + "Rank": 3, + "Id": 509 }, { - "Rank": 1, + "Command": "Get-PnPHubSiteChild", "CommandName": "Get-PnPHubSiteChild", - "Id": 510, - "Command": "Get-PnPHubSiteChild" + "Rank": 1, + "Id": 510 }, { - "Rank": 2, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "CommandName": "Get-PnPHubSiteChild", - "Id": 511, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Rank": 2, + "Id": 511 }, { - "Rank": 1, + "Command": "Get-PnPInPlaceRecordsManagement", "CommandName": "Get-PnPInPlaceRecordsManagement", - "Id": 512, - "Command": "Get-PnPInPlaceRecordsManagement" + "Rank": 1, + "Id": 512 }, { - "Rank": 1, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "CommandName": "Get-PnPIsSiteAliasAvailable", - "Id": 513, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" + "Rank": 1, + "Id": 513 }, { - "Rank": 1, + "Command": "Get-PnPJavaScriptLink", "CommandName": "Get-PnPJavaScriptLink", - "Id": 514, - "Command": "Get-PnPJavaScriptLink" + "Rank": 1, + "Id": 514 }, { - "Rank": 2, + "Command": "Get-PnPJavaScriptLink -Scope All", "CommandName": "Get-PnPJavaScriptLink", - "Id": 515, - "Command": "Get-PnPJavaScriptLink -Scope All" + "Rank": 2, + "Id": 515 }, { - "Rank": 3, + "Command": "Get-PnPJavaScriptLink -Scope Web", "CommandName": "Get-PnPJavaScriptLink", - "Id": 516, - "Command": "Get-PnPJavaScriptLink -Scope Web" + "Rank": 3, + "Id": 516 }, { - "Rank": 4, + "Command": "Get-PnPJavaScriptLink -Scope Site", "CommandName": "Get-PnPJavaScriptLink", - "Id": 517, - "Command": "Get-PnPJavaScriptLink -Scope Site" + "Rank": 4, + "Id": 517 }, { - "Rank": 5, + "Command": "Get-PnPJavaScriptLink -Name Test", "CommandName": "Get-PnPJavaScriptLink", - "Id": 518, - "Command": "Get-PnPJavaScriptLink -Name Test" + "Rank": 5, + "Id": 518 }, { - "Rank": 1, + "Command": "Get-PnPKnowledgeHubSite", "CommandName": "Get-PnPKnowledgeHubSite", - "Id": 519, - "Command": "Get-PnPKnowledgeHubSite" + "Rank": 1, + "Id": 519 }, { - "Rank": 1, + "Command": "Get-PnPLabel", "CommandName": "Get-PnPLabel", - "Id": 520, - "Command": "Get-PnPLabel" + "Rank": 1, + "Id": 520 }, { - "Rank": 2, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "CommandName": "Get-PnPLabel", - "Id": 521, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" + "Rank": 2, + "Id": 521 }, { - "Rank": 1, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "CommandName": "Get-PnPLargeListOperationStatus", - "Id": 522, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" + "Rank": 1, + "Id": 522 }, { - "Rank": 1, + "Command": "Get-PnPList", "CommandName": "Get-PnPList", - "Id": 523, - "Command": "Get-PnPList" + "Rank": 1, + "Id": 523 }, { - "Rank": 2, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Get-PnPList", - "Id": 524, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 2, + "Id": 524 }, { - "Rank": 3, + "Command": "Get-PnPList -Identity Lists/Announcements", "CommandName": "Get-PnPList", - "Id": 525, - "Command": "Get-PnPList -Identity Lists/Announcements" + "Rank": 3, + "Id": 525 }, { - "Rank": 4, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "CommandName": "Get-PnPList", - "Id": 526, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" + "Rank": 4, + "Id": 526 }, { - "Rank": 5, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "CommandName": "Get-PnPList", - "Id": 527, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" + "Rank": 5, + "Id": 527 }, { - "Rank": 1, + "Command": "Get-PnPListDesign", "CommandName": "Get-PnPListDesign", - "Id": 528, - "Command": "Get-PnPListDesign" + "Rank": 1, + "Id": 528 }, { - "Rank": 2, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPListDesign", - "Id": 529, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2, + "Id": 529 }, { - "Rank": 3, + "Command": "Get-PnPListDesign -Identity ListEvent", "CommandName": "Get-PnPListDesign", - "Id": 530, - "Command": "Get-PnPListDesign -Identity ListEvent" + "Rank": 3, + "Id": 530 }, { - "Rank": 1, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "CommandName": "Get-PnPListInformationRightsManagement", - "Id": 531, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" + "Rank": 1, + "Id": 531 }, { - "Rank": 1, + "Command": "Get-PnPListItem -List Tasks", "CommandName": "Get-PnPListItem", - "Id": 532, - "Command": "Get-PnPListItem -List Tasks" + "Rank": 1, + "Id": 532 }, { - "Rank": 2, + "Command": "Get-PnPListItem -List Tasks -Id 1", "CommandName": "Get-PnPListItem", - "Id": 533, - "Command": "Get-PnPListItem -List Tasks -Id 1" + "Rank": 2, + "Id": 533 }, { - "Rank": 3, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "CommandName": "Get-PnPListItem", - "Id": 534, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" + "Rank": 3, + "Id": 534 }, { - "Rank": 4, + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "CommandName": "Get-PnPListItem", - "Id": 535, - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" + "Rank": 4, + "Id": 535 }, { - "Rank": 5, + "Command": "Get-PnPListItem -List Tasks -Query \"\"", "CommandName": "Get-PnPListItem", - "Id": 536, - "Command": "Get-PnPListItem -List Tasks -Query \"\"" + "Rank": 5, + "Id": 536 }, { - "Rank": 6, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "CommandName": "Get-PnPListItem", - "Id": 537, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000" + "Rank": 6, + "Id": 537 }, { - "Rank": 7, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "CommandName": "Get-PnPListItem", - "Id": 538, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" + "Rank": 7, + "Id": 538 }, { - "Rank": 8, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "CommandName": "Get-PnPListItem", - "Id": 539, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" + "Rank": 8, + "Id": 539 }, { - "Rank": 9, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "CommandName": "Get-PnPListItem", - "Id": 540, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" + "Rank": 9, + "Id": 540 }, { - "Rank": 1, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "CommandName": "Get-PnPListItemAttachment", - "Id": 541, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" + "Rank": 1, + "Id": 541 }, { - "Rank": 2, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "CommandName": "Get-PnPListItemAttachment", - "Id": 542, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" + "Rank": 2, + "Id": 542 }, { - "Rank": 1, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "CommandName": "Get-PnPListItemComment", - "Id": 543, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1" + "Rank": 1, + "Id": 543 }, { - "Rank": 1, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "CommandName": "Get-PnPListItemPermission", - "Id": 544, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" + "Rank": 1, + "Id": 544 }, { - "Rank": 1, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "CommandName": "Get-PnPListItemVersion", - "Id": 545, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" + "Rank": 1, + "Id": 545 }, { - "Rank": 1, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "CommandName": "Get-PnPListPermissions", - "Id": 546, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" + "Rank": 1, + "Id": 546 }, { - "Rank": 2, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "CommandName": "Get-PnPListPermissions", - "Id": 547, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" + "Rank": 2, + "Id": 547 }, { - "Rank": 1, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "CommandName": "Get-PnPListRecordDeclaration", - "Id": 548, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" + "Rank": 1, + "Id": 548 }, { - "Rank": 1, + "Command": "Get-PnPMasterPage", "CommandName": "Get-PnPMasterPage", - "Id": 549, - "Command": "Get-PnPMasterPage" + "Rank": 1, + "Id": 549 }, { - "Rank": 1, + "Command": "Get-PnPMessageCenterAnnouncement", "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 550, - "Command": "Get-PnPMessageCenterAnnouncement" + "Rank": 1, + "Id": 550 }, { - "Rank": 2, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 551, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" + "Rank": 2, + "Id": 551 }, { - "Rank": 1, + "Command": "Get-PnPMicrosoft365ExpiringGroup", "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 552, - "Command": "Get-PnPMicrosoft365ExpiringGroup" + "Rank": 1, + "Id": 552 }, { - "Rank": 2, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 553, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" + "Rank": 2, + "Id": 553 }, { - "Rank": 1, + "Command": "Get-PnPMicrosoft365Group", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 554, - "Command": "Get-PnPMicrosoft365Group" + "Rank": 1, + "Id": 554 }, { - "Rank": 2, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 555, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId" + "Rank": 2, + "Id": 555 }, { - "Rank": 3, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 556, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" + "Rank": 3, + "Id": 556 }, { - "Rank": 4, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 557, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" + "Rank": 4, + "Id": 557 }, { - "Rank": 5, + "Command": "Get-PnPMicrosoft365Group -Identity $group", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 558, - "Command": "Get-PnPMicrosoft365Group -Identity $group" + "Rank": 5, + "Id": 558 }, { - "Rank": 6, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 559, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" + "Rank": 6, + "Id": 559 }, { - "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupEndpoint", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 560, - "Command": "Get-PnPMicrosoft365GroupEndpoint" + "Rank": 1, + "Id": 560 }, { - "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 561, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" + "Rank": 2, + "Id": 561 }, { - "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 562, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Rank": 3, + "Id": 562 }, { - "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 563, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" + "Rank": 1, + "Id": 563 }, { - "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 564, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" + "Rank": 2, + "Id": 564 }, { - "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 565, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" + "Rank": 3, + "Id": 565 }, { - "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 566, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" + "Rank": 1, + "Id": 566 }, { - "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 567, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" + "Rank": 2, + "Id": 567 }, { - "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupSettings", "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 568, - "Command": "Get-PnPMicrosoft365GroupSettings" + "Rank": 1, + "Id": 568 }, { - "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 569, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" + "Rank": 2, + "Id": 569 }, { - "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 570, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates" + "Rank": 1, + "Id": 570 }, { - "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 571, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" + "Rank": 2, + "Id": 571 }, { - "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupTeam", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 572, - "Command": "Get-PnPMicrosoft365GroupTeam" + "Rank": 1, + "Id": 572 }, { - "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 573, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" + "Rank": 2, + "Id": 573 }, { - "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 574, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Rank": 3, + "Id": 574 }, { - "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 575, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity" + "Rank": 1, + "Id": 575 }, { - "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 576, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" + "Rank": 2, + "Id": 576 }, { - "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 577, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Rank": 3, + "Id": 577 }, { - "Rank": 1, + "Command": "Get-PnPNavigationNode", "CommandName": "Get-PnPNavigationNode", - "Id": 578, - "Command": "Get-PnPNavigationNode" + "Rank": 1, + "Id": 578 }, { - "Rank": 2, + "Command": "Get-PnPNavigationNode -Location QuickLaunch", "CommandName": "Get-PnPNavigationNode", - "Id": 579, - "Command": "Get-PnPNavigationNode -Location QuickLaunch" + "Rank": 2, + "Id": 579 }, { - "Rank": 3, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "CommandName": "Get-PnPNavigationNode", - "Id": 580, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar" + "Rank": 3, + "Id": 580 }, { - "Rank": 1, + "Command": "Get-PnPOrgAssetsLibrary", "CommandName": "Get-PnPOrgAssetsLibrary", - "Id": 581, - "Command": "Get-PnPOrgAssetsLibrary" + "Rank": 1, + "Id": 581 }, { - "Rank": 1, + "Command": "Get-PnPOrgNewsSite", "CommandName": "Get-PnPOrgNewsSite", - "Id": 582, - "Command": "Get-PnPOrgNewsSite" + "Rank": 1, + "Id": 582 }, { - "Rank": 1, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "CommandName": "Get-PnPPage", - "Id": 583, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" + "Rank": 1, + "Id": 583 }, { - "Rank": 2, + "Command": "Get-PnPPage \"MyPage\"", "CommandName": "Get-PnPPage", - "Id": 584, - "Command": "Get-PnPPage \"MyPage\"" + "Rank": 2, + "Id": 584 }, { - "Rank": 3, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "CommandName": "Get-PnPPage", - "Id": 585, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" + "Rank": 3, + "Id": 585 }, { - "Rank": 4, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "CommandName": "Get-PnPPage", - "Id": 586, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" + "Rank": 4, + "Id": 586 }, { - "Rank": 1, + "Command": "Get-PnPPageComponent -Page Home", "CommandName": "Get-PnPPageComponent", - "Id": 587, - "Command": "Get-PnPPageComponent -Page Home" + "Rank": 1, + "Id": 587 }, { - "Rank": 2, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPPageComponent", - "Id": 588, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 2, + "Id": 588 }, { - "Rank": 3, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "CommandName": "Get-PnPPageComponent", - "Id": 589, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable" + "Rank": 3, + "Id": 589 }, { - "Rank": 1, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "CommandName": "Get-PnPPlannerBucket", - "Id": 590, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" + "Rank": 1, + "Id": 590 }, { - "Rank": 1, + "Command": "Get-PnPPlannerConfiguration", "CommandName": "Get-PnPPlannerConfiguration", - "Id": 591, - "Command": "Get-PnPPlannerConfiguration" + "Rank": 1, + "Id": 591 }, { - "Rank": 1, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "CommandName": "Get-PnPPlannerPlan", - "Id": 592, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" + "Rank": 1, + "Id": 592 }, { - "Rank": 2, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "CommandName": "Get-PnPPlannerPlan", - "Id": 593, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" + "Rank": 2, + "Id": 593 }, { - "Rank": 3, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "CommandName": "Get-PnPPlannerPlan", - "Id": 594, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" + "Rank": 3, + "Id": 594 }, { - "Rank": 1, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "CommandName": "Get-PnPPlannerRosterMember", - "Id": 595, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Rank": 1, + "Id": 595 }, { - "Rank": 1, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 596, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" + "Rank": 1, + "Id": 596 }, { - "Rank": 2, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 597, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 2, + "Id": 597 }, { - "Rank": 1, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "CommandName": "Get-PnPPlannerTask", - "Id": 598, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" + "Rank": 1, + "Id": 598 }, { - "Rank": 2, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "CommandName": "Get-PnPPlannerTask", - "Id": 599, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Rank": 2, + "Id": 599 }, { - "Rank": 3, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "CommandName": "Get-PnPPlannerTask", - "Id": 600, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Rank": 3, + "Id": 600 }, { - "Rank": 1, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPPlannerUserPolicy", - "Id": 601, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 1, + "Id": 601 }, { - "Rank": 1, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "CommandName": "Get-PnPPowerPlatformConnector", - "Id": 602, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" + "Rank": 1, + "Id": 602 }, { - "Rank": 1, + "Command": "Get-PnPPowerPlatformEnvironment", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 603, - "Command": "Get-PnPPowerPlatformEnvironment" + "Rank": 1, + "Id": 603 }, { - "Rank": 2, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 604, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" + "Rank": 2, + "Id": 604 }, { - "Rank": 3, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 605, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" + "Rank": 3, + "Id": 605 }, { - "Rank": 1, + "Command": "Get-PnPPowerShellTelemetryEnabled", "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Id": 606, - "Command": "Get-PnPPowerShellTelemetryEnabled" + "Rank": 1, + "Id": 606 }, { - "Rank": 1, + "Command": "Get-PnPPropertyBag", "CommandName": "Get-PnPPropertyBag", - "Id": 607, - "Command": "Get-PnPPropertyBag" + "Rank": 1, + "Id": 607 }, { - "Rank": 2, + "Command": "Get-PnPPropertyBag -Key MyKey", "CommandName": "Get-PnPPropertyBag", - "Id": 608, - "Command": "Get-PnPPropertyBag -Key MyKey" + "Rank": 2, + "Id": 608 }, { - "Rank": 3, + "Command": "Get-PnPPropertyBag -Folder /MyFolder", "CommandName": "Get-PnPPropertyBag", - "Id": 609, - "Command": "Get-PnPPropertyBag -Folder /MyFolder" + "Rank": 3, + "Id": 609 }, { - "Rank": 4, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "CommandName": "Get-PnPPropertyBag", - "Id": 610, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" + "Rank": 4, + "Id": 610 }, { - "Rank": 5, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "CommandName": "Get-PnPPropertyBag", - "Id": 611, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" + "Rank": 5, + "Id": 611 }, { - "Rank": 1, + "Command": "Get-PnPPublishingImageRendition", "CommandName": "Get-PnPPublishingImageRendition", - "Id": 612, - "Command": "Get-PnPPublishingImageRendition" + "Rank": 1, + "Id": 612 }, { - "Rank": 2, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "CommandName": "Get-PnPPublishingImageRendition", - "Id": 613, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" + "Rank": 2, + "Id": 613 }, { - "Rank": 3, + "Command": "Get-PnPPublishingImageRendition -Identity 2", "CommandName": "Get-PnPPublishingImageRendition", - "Id": 614, - "Command": "Get-PnPPublishingImageRendition -Identity 2" + "Rank": 3, + "Id": 614 }, { - "Rank": 1, + "Command": "Get-PnPRecycleBinItem", "CommandName": "Get-PnPRecycleBinItem", - "Id": 615, - "Command": "Get-PnPRecycleBinItem" + "Rank": 1, + "Id": 615 }, { - "Rank": 2, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "CommandName": "Get-PnPRecycleBinItem", - "Id": 616, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" + "Rank": 2, + "Id": 616 }, { - "Rank": 3, + "Command": "Get-PnPRecycleBinItem -FirstStage", "CommandName": "Get-PnPRecycleBinItem", - "Id": 617, - "Command": "Get-PnPRecycleBinItem -FirstStage" + "Rank": 3, + "Id": 617 }, { - "Rank": 4, + "Command": "Get-PnPRecycleBinItem -SecondStage", "CommandName": "Get-PnPRecycleBinItem", - "Id": 618, - "Command": "Get-PnPRecycleBinItem -SecondStage" + "Rank": 4, + "Id": 618 }, { - "Rank": 5, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "CommandName": "Get-PnPRecycleBinItem", - "Id": 619, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000" + "Rank": 5, + "Id": 619 }, { - "Rank": 1, + "Command": "Get-PnPRequestAccessEmails", "CommandName": "Get-PnPRequestAccessEmails", - "Id": 620, - "Command": "Get-PnPRequestAccessEmails" + "Rank": 1, + "Id": 620 }, { - "Rank": 1, + "Command": "Get-PnPRoleDefinition", "CommandName": "Get-PnPRoleDefinition", - "Id": 621, - "Command": "Get-PnPRoleDefinition" + "Rank": 1, + "Id": 621 }, { - "Rank": 2, + "Command": "Get-PnPRoleDefinition -Identity Read", "CommandName": "Get-PnPRoleDefinition", - "Id": 622, - "Command": "Get-PnPRoleDefinition -Identity Read" + "Rank": 2, + "Id": 622 }, { - "Rank": 3, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "CommandName": "Get-PnPRoleDefinition", - "Id": 623, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" + "Rank": 3, + "Id": 623 }, { - "Rank": 1, + "Command": "Get-PnPSearchConfiguration", "CommandName": "Get-PnPSearchConfiguration", - "Id": 624, - "Command": "Get-PnPSearchConfiguration" + "Rank": 1, + "Id": 624 }, { - "Rank": 2, + "Command": "Get-PnPSearchConfiguration -Scope Site", "CommandName": "Get-PnPSearchConfiguration", - "Id": 625, - "Command": "Get-PnPSearchConfiguration -Scope Site" + "Rank": 2, + "Id": 625 }, { - "Rank": 3, + "Command": "Get-PnPSearchConfiguration -Scope Subscription", "CommandName": "Get-PnPSearchConfiguration", - "Id": 626, - "Command": "Get-PnPSearchConfiguration -Scope Subscription" + "Rank": 3, + "Id": 626 }, { - "Rank": 4, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Get-PnPSearchConfiguration", - "Id": 627, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Rank": 4, + "Id": 627 }, { - "Rank": 5, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "CommandName": "Get-PnPSearchConfiguration", - "Id": 628, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" + "Rank": 5, + "Id": 628 }, { - "Rank": 6, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "CommandName": "Get-PnPSearchConfiguration", - "Id": 629, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" + "Rank": 6, + "Id": 629 }, { - "Rank": 7, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "CommandName": "Get-PnPSearchConfiguration", - "Id": 630, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" + "Rank": 7, + "Id": 630 }, { - "Rank": 8, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "CommandName": "Get-PnPSearchConfiguration", - "Id": 631, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" + "Rank": 8, + "Id": 631 }, { - "Rank": 1, + "Command": "Get-PnPSearchCrawlLog", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 632, - "Command": "Get-PnPSearchCrawlLog" + "Rank": 1, + "Id": 632 }, { - "Rank": 2, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 633, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" + "Rank": 2, + "Id": 633 }, { - "Rank": 3, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 634, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" + "Rank": 3, + "Id": 634 }, { - "Rank": 4, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 635, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" + "Rank": 4, + "Id": 635 }, { - "Rank": 5, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 636, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" + "Rank": 5, + "Id": 636 }, { - "Rank": 6, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 637, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" + "Rank": 6, + "Id": 637 }, { - "Rank": 7, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 638, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" + "Rank": 7, + "Id": 638 }, { - "Rank": 1, + "Command": "Get-PnPSearchSettings", "CommandName": "Get-PnPSearchSettings", - "Id": 639, - "Command": "Get-PnPSearchSettings" + "Rank": 1, + "Id": 639 }, { - "Rank": 1, + "Command": "Get-PnPServiceCurrentHealth", "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 640, - "Command": "Get-PnPServiceCurrentHealth" + "Rank": 1, + "Id": 640 }, { - "Rank": 2, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 641, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" + "Rank": 2, + "Id": 641 }, { - "Rank": 1, + "Command": "Get-PnPServiceHealthIssue", "CommandName": "Get-PnPServiceHealthIssue", - "Id": 642, - "Command": "Get-PnPServiceHealthIssue" + "Rank": 1, + "Id": 642 }, { - "Rank": 2, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "CommandName": "Get-PnPServiceHealthIssue", - "Id": 643, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" + "Rank": 2, + "Id": 643 }, { - "Rank": 1, + "Command": "Get-PnPSharePointAddIn", "CommandName": "Get-PnPSharePointAddIn", - "Id": 644, - "Command": "Get-PnPSharePointAddIn" + "Rank": 1, + "Id": 644 }, { - "Rank": 2, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "CommandName": "Get-PnPSharePointAddIn", - "Id": 645, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites" + "Rank": 2, + "Id": 645 }, { - "Rank": 1, + "Command": "Get-PnPSharingForNonOwnersOfSite", "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Id": 646, - "Command": "Get-PnPSharingForNonOwnersOfSite" + "Rank": 1, + "Id": 646 }, { - "Rank": 1, + "Command": "Get-PnPSite", "CommandName": "Get-PnPSite", - "Id": 647, - "Command": "Get-PnPSite" + "Rank": 1, + "Id": 647 }, { - "Rank": 2, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "CommandName": "Get-PnPSite", - "Id": 648, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" + "Rank": 2, + "Id": 648 }, { - "Rank": 1, + "Command": "Get-PnPSiteClosure", "CommandName": "Get-PnPSiteClosure", - "Id": 649, - "Command": "Get-PnPSiteClosure" + "Rank": 1, + "Id": 649 }, { - "Rank": 1, + "Command": "Get-PnPSiteCollectionAdmin", "CommandName": "Get-PnPSiteCollectionAdmin", - "Id": 650, - "Command": "Get-PnPSiteCollectionAdmin" + "Rank": 1, + "Id": 650 }, { - "Rank": 1, + "Command": "Get-PnPSiteCollectionAppCatalog", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 651, - "Command": "Get-PnPSiteCollectionAppCatalog" + "Rank": 1, + "Id": 651 }, { - "Rank": 2, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 652, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" + "Rank": 2, + "Id": 652 }, { - "Rank": 3, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 653, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" + "Rank": 3, + "Id": 653 }, { - "Rank": 1, + "Command": "Get-PnPSiteCollectionTermStore", "CommandName": "Get-PnPSiteCollectionTermStore", - "Id": 654, - "Command": "Get-PnPSiteCollectionTermStore" + "Rank": 1, + "Id": 654 }, { - "Rank": 1, + "Command": "Get-PnPSiteDesign", "CommandName": "Get-PnPSiteDesign", - "Id": 655, - "Command": "Get-PnPSiteDesign" + "Rank": 1, + "Id": 655 }, { - "Rank": 2, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteDesign", - "Id": 656, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2, + "Id": 656 }, { - "Rank": 1, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteDesignRights", - "Id": 657, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "Id": 657 }, { - "Rank": 1, + "Command": "Get-PnPSiteDesignRun", "CommandName": "Get-PnPSiteDesignRun", - "Id": 658, - "Command": "Get-PnPSiteDesignRun" + "Rank": 1, + "Id": 658 }, { - "Rank": 2, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "CommandName": "Get-PnPSiteDesignRun", - "Id": 659, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" + "Rank": 2, + "Id": 659 }, { - "Rank": 1, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "CommandName": "Get-PnPSiteDesignTask", - "Id": 660, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" + "Rank": 1, + "Id": 660 }, { - "Rank": 2, + "Command": "Get-PnPSiteDesignTask", "CommandName": "Get-PnPSiteDesignTask", - "Id": 661, - "Command": "Get-PnPSiteDesignTask" + "Rank": 2, + "Id": 661 }, { - "Rank": 3, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "CommandName": "Get-PnPSiteDesignTask", - "Id": 662, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "Rank": 3, + "Id": 662 }, { - "Rank": 1, + "Command": "Get-PnPSiteGroup", "CommandName": "Get-PnPSiteGroup", - "Id": 663, - "Command": "Get-PnPSiteGroup" + "Rank": 1, + "Id": 663 }, { - "Rank": 2, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "CommandName": "Get-PnPSiteGroup", - "Id": 664, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Rank": 2, + "Id": 664 }, { - "Rank": 3, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "CommandName": "Get-PnPSiteGroup", - "Id": 665, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" + "Rank": 3, + "Id": 665 }, { - "Rank": 4, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "CommandName": "Get-PnPSiteGroup", - "Id": 666, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Rank": 4, + "Id": 666 }, { - "Rank": 1, + "Command": "Get-PnPSitePolicy", "CommandName": "Get-PnPSitePolicy", - "Id": 667, - "Command": "Get-PnPSitePolicy" + "Rank": 1, + "Id": 667 }, { - "Rank": 2, + "Command": "Get-PnPSitePolicy -AllAvailable", "CommandName": "Get-PnPSitePolicy", - "Id": 668, - "Command": "Get-PnPSitePolicy -AllAvailable" + "Rank": 2, + "Id": 668 }, { - "Rank": 3, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "CommandName": "Get-PnPSitePolicy", - "Id": 669, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" + "Rank": 3, + "Id": 669 }, { - "Rank": 1, + "Command": "Get-PnPSiteScript", "CommandName": "Get-PnPSiteScript", - "Id": 670, - "Command": "Get-PnPSiteScript" + "Rank": 1, + "Id": 670 }, { - "Rank": 2, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteScript", - "Id": 671, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2, + "Id": 671 }, { - "Rank": 1, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "CommandName": "Get-PnPSiteScriptFromList", - "Id": 672, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" + "Rank": 1, + "Id": 672 }, { - "Rank": 2, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "CommandName": "Get-PnPSiteScriptFromList", - "Id": 673, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" + "Rank": 2, + "Id": 673 }, { - "Rank": 3, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "CommandName": "Get-PnPSiteScriptFromList", - "Id": 674, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" + "Rank": 3, + "Id": 674 }, { - "Rank": 1, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 675, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" + "Rank": 1, + "Id": 675 }, { - "Rank": 2, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 676, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" + "Rank": 2, + "Id": 676 }, { - "Rank": 3, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 677, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" + "Rank": 3, + "Id": 677 }, { - "Rank": 4, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 678, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" + "Rank": 4, + "Id": 678 }, { - "Rank": 5, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 679, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" + "Rank": 5, + "Id": 679 }, { - "Rank": 6, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 680, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" + "Rank": 6, + "Id": 680 }, { - "Rank": 1, + "Command": "Get-PnPSiteSearchQueryResults", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 681, - "Command": "Get-PnPSiteSearchQueryResults" + "Rank": 1, + "Id": 681 }, { - "Rank": 2, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 682, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" + "Rank": 2, + "Id": 682 }, { - "Rank": 3, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 683, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" + "Rank": 3, + "Id": 683 }, { - "Rank": 4, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 684, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" + "Rank": 4, + "Id": 684 }, { - "Rank": 5, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 685, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" + "Rank": 5, + "Id": 685 }, { - "Rank": 6, + "Command": "Get-PnPSiteSearchQueryResults -All", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 686, - "Command": "Get-PnPSiteSearchQueryResults -All" + "Rank": 6, + "Id": 686 }, { - "Rank": 1, + "Command": "Get-PnPSiteSensitivityLabel", "CommandName": "Get-PnPSiteSensitivityLabel", - "Id": 687, - "Command": "Get-PnPSiteSensitivityLabel" + "Rank": 1, + "Id": 687 }, { - "Rank": 1, + "Command": "Get-PnPSiteTemplate -Out template.pnp", "CommandName": "Get-PnPSiteTemplate", - "Id": 688, - "Command": "Get-PnPSiteTemplate -Out template.pnp" + "Rank": 1, + "Id": 688 }, { - "Rank": 2, + "Command": "Get-PnPSiteTemplate -Out template.xml", "CommandName": "Get-PnPSiteTemplate", - "Id": 689, - "Command": "Get-PnPSiteTemplate -Out template.xml" + "Rank": 2, + "Id": 689 }, { - "Rank": 3, + "Command": "Get-PnPSiteTemplate -Out template.md", "CommandName": "Get-PnPSiteTemplate", - "Id": 690, - "Command": "Get-PnPSiteTemplate -Out template.md" + "Rank": 3, + "Id": 690 }, { - "Rank": 4, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "CommandName": "Get-PnPSiteTemplate", - "Id": 691, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" + "Rank": 4, + "Id": 691 }, { - "Rank": 5, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "CommandName": "Get-PnPSiteTemplate", - "Id": 692, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" + "Rank": 5, + "Id": 692 }, { - "Rank": 6, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "CommandName": "Get-PnPSiteTemplate", - "Id": 693, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" + "Rank": 6, + "Id": 693 }, { - "Rank": 7, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "CommandName": "Get-PnPSiteTemplate", - "Id": 694, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" + "Rank": 7, + "Id": 694 }, { - "Rank": 8, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "CommandName": "Get-PnPSiteTemplate", - "Id": 695, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" + "Rank": 8, + "Id": 695 }, { - "Rank": 9, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "CommandName": "Get-PnPSiteTemplate", - "Id": 696, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" + "Rank": 9, + "Id": 696 }, { - "Rank": 10, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "CommandName": "Get-PnPSiteTemplate", - "Id": 697, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" + "Rank": 10, + "Id": 697 }, { - "Rank": 11, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "CommandName": "Get-PnPSiteTemplate", - "Id": 698, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" + "Rank": 11, + "Id": 698 }, { - "Rank": 12, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "CommandName": "Get-PnPSiteTemplate", - "Id": 699, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" + "Rank": 12, + "Id": 699 }, { - "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": 700, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" + "Rank": 13, + "Id": 700 }, { - "Rank": 14, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "CommandName": "Get-PnPSiteTemplate", - "Id": 701, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" + "Rank": 14, + "Id": 701 }, { - "Rank": 1, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "CommandName": "Get-PnPSiteUserInvitations", - "Id": 702, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "Rank": 1, + "Id": 702 }, { - "Rank": 1, + "Command": "Get-PnPStorageEntity", "CommandName": "Get-PnPStorageEntity", - "Id": 703, - "Command": "Get-PnPStorageEntity" + "Rank": 1, + "Id": 703 }, { - "Rank": 2, + "Command": "Get-PnPStorageEntity -Key MyKey", "CommandName": "Get-PnPStorageEntity", - "Id": 704, - "Command": "Get-PnPStorageEntity -Key MyKey" + "Rank": 2, + "Id": 704 }, { - "Rank": 3, + "Command": "Get-PnPStorageEntity -Scope Site", "CommandName": "Get-PnPStorageEntity", - "Id": 705, - "Command": "Get-PnPStorageEntity -Scope Site" + "Rank": 3, + "Id": 705 }, { - "Rank": 4, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "CommandName": "Get-PnPStorageEntity", - "Id": 706, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" + "Rank": 4, + "Id": 706 }, { - "Rank": 1, + "Command": "Get-PnPStoredCredential -Name O365", "CommandName": "Get-PnPStoredCredential", - "Id": 707, - "Command": "Get-PnPStoredCredential -Name O365" + "Rank": 1, + "Id": 707 }, { - "Rank": 1, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Id": 708, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Rank": 1, + "Id": 708 }, { - "Rank": 1, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Id": 709, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Rank": 1, + "Id": 709 }, { - "Rank": 1, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Id": 710, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" + "Rank": 1, + "Id": 710 }, { - "Rank": 1, + "Command": "Get-PnPSubWeb", "CommandName": "Get-PnPSubWeb", - "Id": 711, - "Command": "Get-PnPSubWeb" + "Rank": 1, + "Id": 711 }, { - "Rank": 2, + "Command": "Get-PnPSubWeb -Recurse", "CommandName": "Get-PnPSubWeb", - "Id": 712, - "Command": "Get-PnPSubWeb -Recurse" + "Rank": 2, + "Id": 712 }, { - "Rank": 3, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "CommandName": "Get-PnPSubWeb", - "Id": 713, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" + "Rank": 3, + "Id": 713 }, { - "Rank": 4, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "CommandName": "Get-PnPSubWeb", - "Id": 714, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" + "Rank": 4, + "Id": 714 }, { - "Rank": 5, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "CommandName": "Get-PnPSubWeb", - "Id": 715, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" + "Rank": 5, + "Id": 715 }, { - "Rank": 1, + "Command": "Get-PnPSyntexModel", "CommandName": "Get-PnPSyntexModel", - "Id": 716, - "Command": "Get-PnPSyntexModel" + "Rank": 1, + "Id": 716 }, { - "Rank": 2, + "Command": "Get-PnPSyntexModel -Identity 1", "CommandName": "Get-PnPSyntexModel", - "Id": 717, - "Command": "Get-PnPSyntexModel -Identity 1" + "Rank": 2, + "Id": 717 }, { - "Rank": 3, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "CommandName": "Get-PnPSyntexModel", - "Id": 718, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" + "Rank": 3, + "Id": 718 }, { - "Rank": 1, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "CommandName": "Get-PnPSyntexModelPublication", - "Id": 719, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" + "Rank": 1, + "Id": 719 }, { - "Rank": 1, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "CommandName": "Get-PnPTaxonomyItem", - "Id": 720, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" + "Rank": 1, + "Id": 720 }, { - "Rank": 1, + "Command": "Get-PnPTeamsApp", "CommandName": "Get-PnPTeamsApp", - "Id": 721, - "Command": "Get-PnPTeamsApp" + "Rank": 1, + "Id": 721 }, { - "Rank": 2, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "CommandName": "Get-PnPTeamsApp", - "Id": 722, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" + "Rank": 2, + "Id": 722 }, { - "Rank": 3, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "CommandName": "Get-PnPTeamsApp", - "Id": 723, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" + "Rank": 3, + "Id": 723 }, { - "Rank": 1, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "CommandName": "Get-PnPTeamsChannel", - "Id": 724, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" + "Rank": 1, + "Id": 724 }, { - "Rank": 2, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "CommandName": "Get-PnPTeamsChannel", - "Id": 725, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" + "Rank": 2, + "Id": 725 }, { - "Rank": 3, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "CommandName": "Get-PnPTeamsChannel", - "Id": 726, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "Rank": 3, + "Id": 726 }, { - "Rank": 1, + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 727, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" + "Rank": 1, + "Id": 727 }, { - "Rank": 2, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 728, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "Rank": 2, + "Id": 728 }, { - "Rank": 1, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 729, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" + "Rank": 1, + "Id": 729 }, { - "Rank": 2, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 730, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" + "Rank": 2, + "Id": 730 }, { - "Rank": 1, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 731, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" + "Rank": 1, + "Id": 731 }, { - "Rank": 2, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 732, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" + "Rank": 2, + "Id": 732 }, { - "Rank": 1, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 733, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" + "Rank": 1, + "Id": 733 }, { - "Rank": 2, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 734, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" + "Rank": 2, + "Id": 734 }, { - "Rank": 3, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 735, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" + "Rank": 3, + "Id": 735 }, { - "Rank": 4, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 736, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "Rank": 4, + "Id": 736 }, { - "Rank": 1, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 737, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" + "Rank": 1, + "Id": 737 }, { - "Rank": 2, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 738, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" + "Rank": 2, + "Id": 738 }, { - "Rank": 1, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "CommandName": "Get-PnPTeamsTab", - "Id": 739, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" + "Rank": 1, + "Id": 739 }, { - "Rank": 2, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "CommandName": "Get-PnPTeamsTab", - "Id": 740, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" + "Rank": 2, + "Id": 740 }, { - "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": 741, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" + "Rank": 3, + "Id": 741 }, { - "Rank": 4, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsTab", - "Id": 742, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" + "Rank": 4, + "Id": 742 }, { - "Rank": 5, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "CommandName": "Get-PnPTeamsTab", - "Id": 743, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" + "Rank": 5, + "Id": 743 }, { - "Rank": 1, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "CommandName": "Get-PnPTeamsTag", - "Id": 744, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Rank": 1, + "Id": 744 }, { - "Rank": 2, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "CommandName": "Get-PnPTeamsTag", - "Id": 745, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Rank": 2, + "Id": 745 }, { - "Rank": 1, + "Command": "Get-PnPTeamsTeam", "CommandName": "Get-PnPTeamsTeam", - "Id": 746, - "Command": "Get-PnPTeamsTeam" + "Rank": 1, + "Id": 746 }, { - "Rank": 2, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 747, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" + "Rank": 2, + "Id": 747 }, { - "Rank": 3, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 748, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" + "Rank": 3, + "Id": 748 }, { - "Rank": 4, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 749, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" + "Rank": 4, + "Id": 749 }, { - "Rank": 5, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 750, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" + "Rank": 5, + "Id": 750 }, { - "Rank": 1, + "Command": "Get-PnPTeamsUser -Team MyTeam", "CommandName": "Get-PnPTeamsUser", - "Id": 751, - "Command": "Get-PnPTeamsUser -Team MyTeam" + "Rank": 1, + "Id": 751 }, { - "Rank": 2, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "CommandName": "Get-PnPTeamsUser", - "Id": 752, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" + "Rank": 2, + "Id": 752 }, { - "Rank": 3, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "CommandName": "Get-PnPTeamsUser", - "Id": 753, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" + "Rank": 3, + "Id": 753 }, { - "Rank": 4, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "CommandName": "Get-PnPTeamsUser", - "Id": 754, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" + "Rank": 4, + "Id": 754 }, { - "Rank": 1, + "Command": "Get-PnPTemporarilyDisableAppBar", "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Id": 755, - "Command": "Get-PnPTemporarilyDisableAppBar" + "Rank": 1, + "Id": 755 }, { - "Rank": 1, + "Command": "Get-PnPTenant", "CommandName": "Get-PnPTenant", - "Id": 756, - "Command": "Get-PnPTenant" + "Rank": 1, + "Id": 756 }, { - "Rank": 1, + "Command": "Get-PnPTenantAppCatalogUrl", "CommandName": "Get-PnPTenantAppCatalogUrl", - "Id": 757, - "Command": "Get-PnPTenantAppCatalogUrl" + "Rank": 1, + "Id": 757 }, { - "Rank": 1, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "CommandName": "Get-PnPTenantCdnEnabled", - "Id": 758, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public" + "Rank": 1, + "Id": 758 }, { - "Rank": 1, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "CommandName": "Get-PnPTenantCdnOrigin", - "Id": 759, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public" + "Rank": 1, + "Id": 759 }, { - "Rank": 1, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "CommandName": "Get-PnPTenantCdnPolicies", - "Id": 760, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public" + "Rank": 1, + "Id": 760 }, { - "Rank": 1, + "Command": "Get-PnPTenantDeletedSite", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 761, - "Command": "Get-PnPTenantDeletedSite" + "Rank": 1, + "Id": 761 }, { - "Rank": 2, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 762, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 2, + "Id": 762 }, { - "Rank": 3, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 763, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" + "Rank": 3, + "Id": 763 }, { - "Rank": 4, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 764, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" + "Rank": 4, + "Id": 764 }, { - "Rank": 1, + "Command": "Get-PnPTenantId", "CommandName": "Get-PnPTenantId", - "Id": 765, - "Command": "Get-PnPTenantId" + "Rank": 1, + "Id": 765 }, { - "Rank": 2, + "Command": "Get-PnPTenantId contoso", "CommandName": "Get-PnPTenantId", - "Id": 766, - "Command": "Get-PnPTenantId contoso" + "Rank": 2, + "Id": 766 }, { - "Rank": 3, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "CommandName": "Get-PnPTenantId", - "Id": 767, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" + "Rank": 3, + "Id": 767 }, { - "Rank": 4, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "CommandName": "Get-PnPTenantId", - "Id": 768, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" + "Rank": 4, + "Id": 768 }, { - "Rank": 1, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "CommandName": "Get-PnPTenantInfo", - "Id": 769, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" + "Rank": 1, + "Id": 769 }, { - "Rank": 2, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "CommandName": "Get-PnPTenantInfo", - "Id": 770, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" + "Rank": 2, + "Id": 770 }, { - "Rank": 3, + "Command": "Get-PnPTenantInfo", "CommandName": "Get-PnPTenantInfo", - "Id": 771, - "Command": "Get-PnPTenantInfo" + "Rank": 3, + "Id": 771 }, { - "Rank": 4, + "Command": "Get-PnPTenantInfo -CurrentTenant", "CommandName": "Get-PnPTenantInfo", - "Id": 772, - "Command": "Get-PnPTenantInfo -CurrentTenant" + "Rank": 4, + "Id": 772 }, { - "Rank": 1, + "Command": "Get-PnPTenantInstance", "CommandName": "Get-PnPTenantInstance", - "Id": 773, - "Command": "Get-PnPTenantInstance" + "Rank": 1, + "Id": 773 }, { - "Rank": 1, + "Command": "Get-PnPTenantRecycleBinItem", "CommandName": "Get-PnPTenantRecycleBinItem", - "Id": 774, - "Command": "Get-PnPTenantRecycleBinItem" + "Rank": 1, + "Id": 774 }, { - "Rank": 1, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "CommandName": "Get-PnPTenantSequence", - "Id": 775, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject" + "Rank": 1, + "Id": 775 }, { - "Rank": 2, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "CommandName": "Get-PnPTenantSequence", - "Id": 776, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" + "Rank": 2, + "Id": 776 }, { - "Rank": 1, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "CommandName": "Get-PnPTenantSequenceSite", - "Id": 777, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" + "Rank": 1, + "Id": 777 }, { - "Rank": 2, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "CommandName": "Get-PnPTenantSequenceSite", - "Id": 778, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" + "Rank": 2, + "Id": 778 }, { - "Rank": 1, + "Command": "Get-PnPTenantSite", "CommandName": "Get-PnPTenantSite", - "Id": 779, - "Command": "Get-PnPTenantSite" + "Rank": 1, + "Id": 779 }, { - "Rank": 2, + "Command": "Get-PnPTenantSite -Detailed", "CommandName": "Get-PnPTenantSite", - "Id": 780, - "Command": "Get-PnPTenantSite -Detailed" + "Rank": 2, + "Id": 780 }, { - "Rank": 3, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "CommandName": "Get-PnPTenantSite", - "Id": 781, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites" + "Rank": 3, + "Id": 781 }, { - "Rank": 4, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "CommandName": "Get-PnPTenantSite", - "Id": 782, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" + "Rank": 4, + "Id": 782 }, { - "Rank": 5, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "CommandName": "Get-PnPTenantSite", - "Id": 783, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" + "Rank": 5, + "Id": 783 }, { - "Rank": 6, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "CommandName": "Get-PnPTenantSite", - "Id": 784, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" + "Rank": 6, + "Id": 784 }, { - "Rank": 7, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "CommandName": "Get-PnPTenantSite", - "Id": 785, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" + "Rank": 7, + "Id": 785 }, { - "Rank": 8, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "CommandName": "Get-PnPTenantSite", - "Id": 786, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" + "Rank": 8, + "Id": 786 }, { - "Rank": 9, + "Command": "Get-PnPTenantSite -GroupIdDefined $true", "CommandName": "Get-PnPTenantSite", - "Id": 787, - "Command": "Get-PnPTenantSite -GroupIdDefined $true" + "Rank": 9, + "Id": 787 }, { - "Rank": 1, + "Command": "Get-PnPTenantSyncClientRestriction", "CommandName": "Get-PnPTenantSyncClientRestriction", - "Id": 788, - "Command": "Get-PnPTenantSyncClientRestriction" + "Rank": 1, + "Id": 788 }, { - "Rank": 1, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "CommandName": "Get-PnPTenantTemplate", - "Id": 789, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" + "Rank": 1, + "Id": 789 }, { - "Rank": 2, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "CommandName": "Get-PnPTenantTemplate", - "Id": 790, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" + "Rank": 2, + "Id": 790 }, { - "Rank": 3, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "CommandName": "Get-PnPTenantTemplate", - "Id": 791, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" + "Rank": 3, + "Id": 791 }, { - "Rank": 1, + "Command": "Get-PnPTenantTheme", "CommandName": "Get-PnPTenantTheme", - "Id": 792, - "Command": "Get-PnPTenantTheme" + "Rank": 1, + "Id": 792 }, { - "Rank": 2, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "CommandName": "Get-PnPTenantTheme", - "Id": 793, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Rank": 2, + "Id": 793 }, { - "Rank": 3, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "CommandName": "Get-PnPTenantTheme", - "Id": 794, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" + "Rank": 3, + "Id": 794 }, { - "Rank": 1, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Id": 795, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 1, + "Id": 795 }, { - "Rank": 2, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Id": 796, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2, + "Id": 796 }, { - "Rank": 3, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Id": 797, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 3, + "Id": 797 }, { - "Rank": 4, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "CommandName": "Get-PnPTerm", - "Id": 798, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" + "Rank": 4, + "Id": 798 }, { - "Rank": 5, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "CommandName": "Get-PnPTerm", - "Id": 799, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" + "Rank": 5, + "Id": 799 }, { - "Rank": 1, + "Command": "Get-PnPTermGroup", "CommandName": "Get-PnPTermGroup", - "Id": 800, - "Command": "Get-PnPTermGroup" + "Rank": 1, + "Id": 800 }, { - "Rank": 2, + "Command": "Get-PnPTermGroup -Identity \"Departments\"", "CommandName": "Get-PnPTermGroup", - "Id": 801, - "Command": "Get-PnPTermGroup -Identity \"Departments\"" + "Rank": 2, + "Id": 801 }, { - "Rank": 3, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "CommandName": "Get-PnPTermGroup", - "Id": 802, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" + "Rank": 3, + "Id": 802 }, { - "Rank": 1, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "CommandName": "Get-PnPTermLabel", - "Id": 803, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" + "Rank": 1, + "Id": 803 }, { - "Rank": 2, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "CommandName": "Get-PnPTermLabel", - "Id": 804, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" + "Rank": 2, + "Id": 804 }, { - "Rank": 3, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermLabel", - "Id": 805, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 3, + "Id": 805 }, { - "Rank": 1, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermSet", - "Id": 806, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" + "Rank": 1, + "Id": 806 }, { - "Rank": 2, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermSet", - "Id": 807, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2, + "Id": 807 }, { - "Rank": 3, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "CommandName": "Get-PnPTermSet", - "Id": 808, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" + "Rank": 3, + "Id": 808 }, { - "Rank": 1, + "Command": "Get-PnPTheme", "CommandName": "Get-PnPTheme", - "Id": 809, - "Command": "Get-PnPTheme" + "Rank": 1, + "Id": 809 }, { - "Rank": 2, + "Command": "Get-PnPTheme -DetectCurrentComposedLook", "CommandName": "Get-PnPTheme", - "Id": 810, - "Command": "Get-PnPTheme -DetectCurrentComposedLook" + "Rank": 2, + "Id": 810 }, { - "Rank": 1, + "Command": "Get-PnPTimeZoneId", "CommandName": "Get-PnPTimeZoneId", - "Id": 811, - "Command": "Get-PnPTimeZoneId" + "Rank": 1, + "Id": 811 }, { - "Rank": 2, + "Command": "Get-PnPTimeZoneId -Match Stockholm", "CommandName": "Get-PnPTimeZoneId", - "Id": 812, - "Command": "Get-PnPTimeZoneId -Match Stockholm" + "Rank": 2, + "Id": 812 }, { - "Rank": 1, + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "CommandName": "Get-PnPUnfurlLink", - "Id": 813, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" + "Rank": 1, + "Id": 813 }, { - "Rank": 1, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "CommandName": "Get-PnPUnifiedAuditLog", - "Id": 814, - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" + "Rank": 1, + "Id": 814 }, { - "Rank": 1, + "Command": "Get-PnPUPABulkImportStatus", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 815, - "Command": "Get-PnPUPABulkImportStatus" + "Rank": 1, + "Id": 815 }, { - "Rank": 2, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 816, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" + "Rank": 2, + "Id": 816 }, { - "Rank": 3, + "Command": "Get-PnPUPABulkImportStatus -JobId ", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 817, - "Command": "Get-PnPUPABulkImportStatus -JobId " + "Rank": 3, + "Id": 817 }, { - "Rank": 4, + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 818, - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" + "Rank": 4, + "Id": 818 }, { - "Rank": 1, + "Command": "Get-PnPUser", "CommandName": "Get-PnPUser", - "Id": 819, - "Command": "Get-PnPUser" + "Rank": 1, + "Id": 819 }, { - "Rank": 2, + "Command": "Get-PnPUser -Identity 23", "CommandName": "Get-PnPUser", - "Id": 820, - "Command": "Get-PnPUser -Identity 23" + "Rank": 2, + "Id": 820 }, { - "Rank": 3, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "CommandName": "Get-PnPUser", - "Id": 821, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" + "Rank": 3, + "Id": 821 }, { - "Rank": 4, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "CommandName": "Get-PnPUser", - "Id": 822, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" + "Rank": 4, + "Id": 822 }, { - "Rank": 5, + "Command": "Get-PnPUser -WithRightsAssigned", "CommandName": "Get-PnPUser", - "Id": 823, - "Command": "Get-PnPUser -WithRightsAssigned" + "Rank": 5, + "Id": 823 }, { - "Rank": 6, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "CommandName": "Get-PnPUser", - "Id": 824, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" + "Rank": 6, + "Id": 824 }, { - "Rank": 7, + "Command": "Get-PnPUser -WithRightsAssignedDetailed", "CommandName": "Get-PnPUser", - "Id": 825, - "Command": "Get-PnPUser -WithRightsAssignedDetailed" + "Rank": 7, + "Id": 825 }, { - "Rank": 1, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "CommandName": "Get-PnPUserOneDriveQuota", - "Id": 826, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" + "Rank": 1, + "Id": 826 }, { - "Rank": 1, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "CommandName": "Get-PnPUserProfileProperty", - "Id": 827, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" + "Rank": 1, + "Id": 827 }, { - "Rank": 2, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "CommandName": "Get-PnPUserProfileProperty", - "Id": 828, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" + "Rank": 2, + "Id": 828 }, { - "Rank": 3, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "CommandName": "Get-PnPUserProfileProperty", - "Id": 829, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" + "Rank": 3, + "Id": 829 }, { - "Rank": 1, + "Command": "Get-PnPView -List \"Demo List\"", "CommandName": "Get-PnPView", - "Id": 830, - "Command": "Get-PnPView -List \"Demo List\"" + "Rank": 1, + "Id": 830 }, { - "Rank": 2, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "CommandName": "Get-PnPView", - "Id": 831, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" + "Rank": 2, + "Id": 831 }, { - "Rank": 3, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "CommandName": "Get-PnPView", - "Id": 832, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" + "Rank": 3, + "Id": 832 }, { - "Rank": 1, + "Command": "Get-PnPVivaConnectionsDashboardACE", "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 833, - "Command": "Get-PnPVivaConnectionsDashboardACE" + "Rank": 1, + "Id": 833 }, { - "Rank": 2, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 834, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Rank": 2, + "Id": 834 }, { - "Rank": 1, + "Command": "Get-PnPWeb", "CommandName": "Get-PnPWeb", - "Id": 835, - "Command": "Get-PnPWeb" + "Rank": 1, + "Id": 835 }, { - "Rank": 1, + "Command": "Get-PnPWebHeader", "CommandName": "Get-PnPWebHeader", - "Id": 836, - "Command": "Get-PnPWebHeader" + "Rank": 1, + "Id": 836 }, { - "Rank": 1, + "Command": "Get-PnPWebhookSubscriptions -List MyList", "CommandName": "Get-PnPWebhookSubscriptions", - "Id": 837, - "Command": "Get-PnPWebhookSubscriptions -List MyList" + "Rank": 1, + "Id": 837 }, { - "Rank": 1, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "CommandName": "Get-PnPWebPart", - "Id": 838, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" + "Rank": 1, + "Id": 838 }, { - "Rank": 2, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPWebPart", - "Id": 839, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 2, + "Id": 839 }, { - "Rank": 1, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "CommandName": "Get-PnPWebPartProperty", - "Id": 840, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" + "Rank": 1, + "Id": 840 }, { - "Rank": 2, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "CommandName": "Get-PnPWebPartProperty", - "Id": 841, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" + "Rank": 2, + "Id": 841 }, { - "Rank": 1, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPWebPartXml", - "Id": 842, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 1, + "Id": 842 }, { - "Rank": 1, + "Command": "Get-PnPWebTemplates", "CommandName": "Get-PnPWebTemplates", - "Id": 843, - "Command": "Get-PnPWebTemplates" + "Rank": 1, + "Id": 843 }, { - "Rank": 2, + "Command": "Get-PnPWebTemplates -LCID 1033", "CommandName": "Get-PnPWebTemplates", - "Id": 844, - "Command": "Get-PnPWebTemplates -LCID 1033" + "Rank": 2, + "Id": 844 }, { - "Rank": 3, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "CommandName": "Get-PnPWebTemplates", - "Id": 845, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" + "Rank": 3, + "Id": 845 }, { - "Rank": 1, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "CommandName": "Get-PnPWikiPageContent", - "Id": 846, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" + "Rank": 1, + "Id": 846 }, { - "Rank": 1, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 847, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" + "Rank": 1, + "Id": 847 }, { - "Rank": 2, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 848, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" + "Rank": 2, + "Id": 848 }, { - "Rank": 1, + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Grant-PnPHubSiteRights", - "Id": 849, - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Rank": 1, + "Id": 849 }, { - "Rank": 1, + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Grant-PnPSiteDesignRights", - "Id": 850, - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Rank": 1, + "Id": 850 }, { - "Rank": 1, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Id": 851, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Rank": 1, + "Id": 851 }, { - "Rank": 1, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "CommandName": "Import-PnPTaxonomy", - "Id": 852, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" + "Rank": 1, + "Id": 852 }, { - "Rank": 2, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "CommandName": "Import-PnPTaxonomy", - "Id": 853, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" + "Rank": 2, + "Id": 853 }, { - "Rank": 3, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "CommandName": "Import-PnPTaxonomy", - "Id": 854, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" + "Rank": 3, + "Id": 854 }, { - "Rank": 1, + "Command": "Import-PnPTermGroupFromXml -Xml $xml", "CommandName": "Import-PnPTermGroupFromXml", - "Id": 855, - "Command": "Import-PnPTermGroupFromXml -Xml $xml" + "Rank": 1, + "Id": 855 }, { - "Rank": 2, + "Command": "Import-PnPTermGroupFromXml -Path input.xml", "CommandName": "Import-PnPTermGroupFromXml", - "Id": 856, - "Command": "Import-PnPTermGroupFromXml -Path input.xml" + "Rank": 2, + "Id": 856 }, { - "Rank": 1, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "CommandName": "Import-PnPTermSet", - "Id": 857, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" + "Rank": 1, + "Id": 857 }, { - "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": 858, - "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" + "Rank": 2, + "Id": 858 }, { - "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": 859, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" + "Rank": 3, + "Id": 859 }, { - "Rank": 1, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Install-PnPApp", - "Id": 860, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Id": 860 }, { - "Rank": 2, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Install-PnPApp", - "Id": 861, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2, + "Id": 861 }, { - "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": 862, - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" + "Rank": 1, + "Id": 862 }, { - "Rank": 2, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "CommandName": "Invoke-PnPGraphMethod", - "Id": 863, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" + "Rank": 2, + "Id": 863 }, { - "Rank": 3, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "CommandName": "Invoke-PnPGraphMethod", - "Id": 864, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" + "Rank": 3, + "Id": 864 }, { - "Rank": 4, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "CommandName": "Invoke-PnPGraphMethod", - "Id": 865, - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" + "Rank": 4, + "Id": 865 }, { - "Rank": 5, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "CommandName": "Invoke-PnPGraphMethod", - "Id": 866, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" + "Rank": 5, + "Id": 866 }, { - "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": 867, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" + "Rank": 6, + "Id": 867 }, { - "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": 868, - "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, + "Id": 868 }, { - "Rank": 1, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Invoke-PnPListDesign", - "Id": 869, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "Id": 869 }, { - "Rank": 2, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "CommandName": "Invoke-PnPListDesign", - "Id": 870, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "Rank": 2, + "Id": 870 }, { - "Rank": 1, + "Command": "Invoke-PnPQuery -RetryCount 5", "CommandName": "Invoke-PnPQuery", - "Id": 871, - "Command": "Invoke-PnPQuery -RetryCount 5" + "Rank": 1, + "Id": 871 }, { - "Rank": 1, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Invoke-PnPSiteDesign", - "Id": 872, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "Id": 872 }, { - "Rank": 2, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "CommandName": "Invoke-PnPSiteDesign", - "Id": 873, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "Rank": 2, + "Id": 873 }, { - "Rank": 1, + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "CommandName": "Invoke-PnPSiteScript", - "Id": 874, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" + "Rank": 1, + "Id": 874 }, { - "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": 875, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" + "Rank": 1, + "Id": 875 }, { - "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": 876, - "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, + "Id": 876 }, { - "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": 877, - "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, + "Id": 877 }, { - "Rank": 1, + "Command": "Invoke-PnPSiteTemplate -Path template.xml", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 878, - "Command": "Invoke-PnPSiteTemplate -Path template.xml" + "Rank": 1, + "Id": 878 }, { - "Rank": 2, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 879, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" + "Rank": 2, + "Id": 879 }, { - "Rank": 3, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 880, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "Rank": 3, + "Id": 880 }, { - "Rank": 4, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 881, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" + "Rank": 4, + "Id": 881 }, { - "Rank": 5, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 882, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp" + "Rank": 5, + "Id": 882 }, { - "Rank": 6, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 883, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" + "Rank": 6, + "Id": 883 }, { - "Rank": 7, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 884, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" + "Rank": 7, + "Id": 884 }, { - "Rank": 8, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 885, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" + "Rank": 8, + "Id": 885 }, { - "Rank": 1, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "CommandName": "Invoke-PnPSPRestMethod", - "Id": 886, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web" + "Rank": 1, + "Id": 886 }, { - "Rank": 1, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "CommandName": "Invoke-PnPTenantTemplate", - "Id": 887, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" + "Rank": 1, + "Id": 887 }, { - "Rank": 2, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "CommandName": "Invoke-PnPTenantTemplate", - "Id": 888, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" + "Rank": 2, + "Id": 888 }, { - "Rank": 3, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "CommandName": "Invoke-PnPTenantTemplate", - "Id": 889, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "Rank": 3, + "Id": 889 }, { - "Rank": 1, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "CommandName": "Invoke-PnPWebAction", - "Id": 890, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" + "Rank": 1, + "Id": 890 }, { - "Rank": 2, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "CommandName": "Invoke-PnPWebAction", - "Id": 891, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" + "Rank": 2, + "Id": 891 }, { - "Rank": 1, + "Command": "Measure-PnPList \"Documents\"", "CommandName": "Measure-PnPList", - "Id": 892, - "Command": "Measure-PnPList \"Documents\"" + "Rank": 1, + "Id": 892 }, { - "Rank": 2, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "CommandName": "Measure-PnPList", - "Id": 893, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" + "Rank": 2, + "Id": 893 }, { - "Rank": 1, + "Command": "Measure-PnPWeb", "CommandName": "Measure-PnPWeb", - "Id": 894, - "Command": "Measure-PnPWeb" + "Rank": 1, + "Id": 894 }, { - "Rank": 2, + "Command": "Measure-PnPWeb $web -Recursive", "CommandName": "Measure-PnPWeb", - "Id": 895, - "Command": "Measure-PnPWeb $web -Recursive" + "Rank": 2, + "Id": 895 }, { - "Rank": 1, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "CommandName": "Move-PnPFile", - "Id": 896, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" + "Rank": 1, + "Id": 896 }, { - "Rank": 2, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "CommandName": "Move-PnPFile", - "Id": 897, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" + "Rank": 2, + "Id": 897 }, { - "Rank": 3, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "CommandName": "Move-PnPFile", - "Id": 898, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "Rank": 3, + "Id": 898 }, { - "Rank": 4, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "CommandName": "Move-PnPFile", - "Id": 899, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "Rank": 4, + "Id": 899 }, { - "Rank": 1, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "CommandName": "Move-PnPFolder", - "Id": 900, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" + "Rank": 1, + "Id": 900 }, { - "Rank": 2, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "CommandName": "Move-PnPFolder", - "Id": 901, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" + "Rank": 2, + "Id": 901 }, { - "Rank": 1, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "CommandName": "Move-PnPListItemToRecycleBin", - "Id": 902, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" + "Rank": 1, + "Id": 902 }, { - "Rank": 1, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "CommandName": "Move-PnPPageComponent", - "Id": 903, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" + "Rank": 1, + "Id": 903 }, { - "Rank": 2, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "CommandName": "Move-PnPPageComponent", - "Id": 904, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" + "Rank": 2, + "Id": 904 }, { - "Rank": 3, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "CommandName": "Move-PnPPageComponent", - "Id": 905, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" + "Rank": 3, + "Id": 905 }, { - "Rank": 4, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "CommandName": "Move-PnPPageComponent", - "Id": 906, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" + "Rank": 4, + "Id": 906 }, { - "Rank": 1, + "Command": "Move-PnPRecycleBinItem", "CommandName": "Move-PnpRecycleBinItem", - "Id": 907, - "Command": "Move-PnPRecycleBinItem" + "Rank": 1, + "Id": 907 }, { - "Rank": 2, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "CommandName": "Move-PnpRecycleBinItem", - "Id": 908, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" + "Rank": 2, + "Id": 908 }, { - "Rank": 3, + "Command": "Move-PnPRecycleBinItem -Force", "CommandName": "Move-PnpRecycleBinItem", - "Id": 909, - "Command": "Move-PnPRecycleBinItem -Force" + "Rank": 3, + "Id": 909 }, { - "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": 910, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" + "Rank": 1, + "Id": 910 }, { - "Rank": 2, + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "CommandName": "Move-PnPTerm", - "Id": 911, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" + "Rank": 2, + "Id": 911 }, { - "Rank": 3, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "CommandName": "Move-PnPTerm", - "Id": 912, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" + "Rank": 3, + "Id": 912 }, { - "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": 913, - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" + "Rank": 1, + "Id": 913 }, { - "Rank": 2, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "CommandName": "Move-PnPTermSet", - "Id": 914, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" + "Rank": 2, + "Id": 914 }, { - "Rank": 1, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "CommandName": "New-PnPAzureADGroup", - "Id": 915, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" + "Rank": 1, + "Id": 915 }, { - "Rank": 2, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "CommandName": "New-PnPAzureADGroup", - "Id": 916, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" + "Rank": 2, + "Id": 916 }, { - "Rank": 3, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "CommandName": "New-PnPAzureADGroup", - "Id": 917, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" + "Rank": 3, + "Id": 917 }, { - "Rank": 1, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 918, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" + "Rank": 1, + "Id": 918 }, { - "Rank": 2, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 919, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" + "Rank": 2, + "Id": 919 }, { - "Rank": 3, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 920, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" + "Rank": 3, + "Id": 920 }, { - "Rank": 1, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "CommandName": "New-PnPAzureCertificate", - "Id": 921, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" + "Rank": 1, + "Id": 921 }, { - "Rank": 2, + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "CommandName": "New-PnPAzureCertificate", - "Id": 922, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" + "Rank": 2, + "Id": 922 }, { - "Rank": 3, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "CommandName": "New-PnPAzureCertificate", - "Id": 923, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" + "Rank": 3, + "Id": 923 }, { - "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": 924, - "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, + "Id": 924 }, { - "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": 925, - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" + "Rank": 2, + "Id": 925 }, { - "Rank": 1, + "Command": "New-PnPGroup -Title \"My Site Users\"", "CommandName": "New-PnPGroup", - "Id": 926, - "Command": "New-PnPGroup -Title \"My Site Users\"" + "Rank": 1, + "Id": 926 }, { - "Rank": 1, + "Command": "New-PnPList -Title Announcements -Template Announcements", "CommandName": "New-PnPList", - "Id": 927, - "Command": "New-PnPList -Title Announcements -Template Announcements" + "Rank": 1, + "Id": 927 }, { - "Rank": 2, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "CommandName": "New-PnPList", - "Id": 928, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" + "Rank": 2, + "Id": 928 }, { - "Rank": 3, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "CommandName": "New-PnPList", - "Id": 929, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" + "Rank": 3, + "Id": 929 }, { - "Rank": 1, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "CommandName": "New-PnPMicrosoft365Group", - "Id": 930, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" + "Rank": 1, + "Id": 930 }, { - "Rank": 2, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "CommandName": "New-PnPMicrosoft365Group", - "Id": 931, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" + "Rank": 2, + "Id": 931 }, { - "Rank": 3, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "CommandName": "New-PnPMicrosoft365Group", - "Id": 932, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" + "Rank": 3, + "Id": 932 }, { - "Rank": 4, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "CommandName": "New-PnPMicrosoft365Group", - "Id": 933, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" + "Rank": 4, + "Id": 933 }, { - "Rank": 5, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "CommandName": "New-PnPMicrosoft365Group", - "Id": 934, - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "Rank": 5, + "Id": 934 }, { - "Rank": 6, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "CommandName": "New-PnPMicrosoft365Group", - "Id": 935, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "Rank": 6, + "Id": 935 }, { - "Rank": 7, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "CommandName": "New-PnPMicrosoft365Group", - "Id": 936, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" + "Rank": 7, + "Id": 936 }, { - "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": 937, - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" + "Rank": 1, + "Id": 937 }, { - "Rank": 2, + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 938, - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" + "Rank": 2, + "Id": 938 }, { - "Rank": 1, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "CommandName": "New-PnPPersonalSite", - "Id": 939, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" + "Rank": 1, + "Id": 939 }, { - "Rank": 1, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "CommandName": "New-PnPPlannerPlan", - "Id": 940, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" + "Rank": 1, + "Id": 940 }, { - "Rank": 1, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "CommandName": "New-PnPSdnProvider", - "Id": 941, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" + "Rank": 1, + "Id": 941 }, { - "Rank": 1, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "CommandName": "New-PnPSite", - "Id": 942, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" + "Rank": 1, + "Id": 942 }, { - "Rank": 2, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "CommandName": "New-PnPSite", - "Id": 943, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" + "Rank": 2, + "Id": 943 }, { - "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": 944, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" + "Rank": 3, + "Id": 944 }, { - "Rank": 4, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "CommandName": "New-PnPSite", - "Id": 945, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" + "Rank": 4, + "Id": 945 }, { - "Rank": 5, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "CommandName": "New-PnPSite", - "Id": 946, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" + "Rank": 5, + "Id": 946 }, { - "Rank": 6, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Id": 947, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" + "Rank": 6, + "Id": 947 }, { - "Rank": 7, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "CommandName": "New-PnPSite", - "Id": 948, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" + "Rank": 7, + "Id": 948 }, { - "Rank": 8, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "CommandName": "New-PnPSite", - "Id": 949, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" + "Rank": 8, + "Id": 949 }, { - "Rank": 9, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Id": 950, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" + "Rank": 9, + "Id": 950 }, { - "Rank": 10, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "CommandName": "New-PnPSite", - "Id": 951, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" + "Rank": 10, + "Id": 951 }, { - "Rank": 11, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "CommandName": "New-PnPSite", - "Id": 952, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" + "Rank": 11, + "Id": 952 }, { - "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": 953, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" + "Rank": 12, + "Id": 953 }, { - "Rank": 13, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "CommandName": "New-PnPSite", - "Id": 954, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" + "Rank": 13, + "Id": 954 }, { - "Rank": 14, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "CommandName": "New-PnPSite", - "Id": 955, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" + "Rank": 14, + "Id": 955 }, { - "Rank": 15, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Id": 956, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" + "Rank": 15, + "Id": 956 }, { - "Rank": 16, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "CommandName": "New-PnPSite", - "Id": 957, - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" + "Rank": 16, + "Id": 957 }, { - "Rank": 1, + "Command": "New-PnPSiteCollectionTermStore", "CommandName": "New-PnPSiteCollectionTermStore", - "Id": 958, - "Command": "New-PnPSiteCollectionTermStore" + "Rank": 1, + "Id": 958 }, { - "Rank": 1, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "CommandName": "New-PnPSiteGroup", - "Id": 959, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" + "Rank": 1, + "Id": 959 }, { - "Rank": 2, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "CommandName": "New-PnPSiteGroup", - "Id": 960, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" + "Rank": 2, + "Id": 960 }, { - "Rank": 1, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 961, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" + "Rank": 1, + "Id": 961 }, { - "Rank": 2, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 962, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" + "Rank": 2, + "Id": 962 }, { - "Rank": 3, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 963, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" + "Rank": 3, + "Id": 963 }, { - "Rank": 4, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 964, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" + "Rank": 4, + "Id": 964 }, { - "Rank": 5, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 965, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" + "Rank": 5, + "Id": 965 }, { - "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": 966, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Rank": 6, + "Id": 966 }, { - "Rank": 7, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 967, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" + "Rank": 7, + "Id": 967 }, { - "Rank": 8, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 968, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" + "Rank": 8, + "Id": 968 }, { - "Rank": 1, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "CommandName": "New-PnPTeamsApp", - "Id": 969, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" + "Rank": 1, + "Id": 969 }, { - "Rank": 1, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "CommandName": "New-PnPTeamsTeam", - "Id": 970, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" + "Rank": 1, + "Id": 970 }, { - "Rank": 2, + "Command": "New-PnPTeamsTeam -GroupId $groupId", "CommandName": "New-PnPTeamsTeam", - "Id": 971, - "Command": "New-PnPTeamsTeam -GroupId $groupId" + "Rank": 2, + "Id": 971 }, { - "Rank": 3, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "CommandName": "New-PnPTeamsTeam", - "Id": 972, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" + "Rank": 3, + "Id": 972 }, { - "Rank": 4, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "CommandName": "New-PnPTeamsTeam", - "Id": 973, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "Rank": 4, + "Id": 973 }, { - "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": 974, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" + "Rank": 5, + "Id": 974 }, { - "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": 975, - "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, + "Id": 975 }, { - "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": 976, - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" + "Rank": 1, + "Id": 976 }, { - "Rank": 2, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "CommandName": "New-PnPTenantSite", - "Id": 977, - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" + "Rank": 2, + "Id": 977 }, { - "Rank": 1, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "CommandName": "New-PnPTerm", - "Id": 978, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" + "Rank": 1, + "Id": 978 }, { - "Rank": 2, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "New-PnPTerm", - "Id": 979, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Rank": 2, + "Id": 979 }, { - "Rank": 1, + "Command": "New-PnPTermGroup -GroupName \"Countries\"", "CommandName": "New-PnPTermGroup", - "Id": 980, - "Command": "New-PnPTermGroup -GroupName \"Countries\"" + "Rank": 1, + "Id": 980 }, { - "Rank": 1, + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "CommandName": "New-PnPTermLabel", - "Id": 981, - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" + "Rank": 1, + "Id": 981 }, { - "Rank": 1, + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "CommandName": "New-PnPTermSet", - "Id": 982, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" + "Rank": 1, + "Id": 982 }, { - "Rank": 1, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "CommandName": "New-PnPUPABulkImportJob", - "Id": 983, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" + "Rank": 1, + "Id": 983 }, { - "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": 984, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" + "Rank": 2, + "Id": 984 }, { - "Rank": 1, + "Command": "New-PnPUser -LoginName user@company.com", "CommandName": "New-PnPUser", - "Id": 985, - "Command": "New-PnPUser -LoginName user@company.com" + "Rank": 1, + "Id": 985 }, { - "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": 986, - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" + "Rank": 1, + "Id": 986 }, { - "Rank": 1, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Publish-PnPApp", - "Id": 987, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Rank": 1, + "Id": 987 }, { - "Rank": 2, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "CommandName": "Publish-PnPApp", - "Id": 988, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" + "Rank": 2, + "Id": 988 }, { - "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": 989, - "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, + "Id": 989 }, { - "Rank": 1, + "Command": "Publish-PnPContentType -ContentType 0x0101", "CommandName": "Publish-PnPContentType", - "Id": 990, - "Command": "Publish-PnPContentType -ContentType 0x0101" + "Rank": 1, + "Id": 990 }, { - "Rank": 1, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "CommandName": "Publish-PnPSyntexModel", - "Id": 991, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "Rank": 1, + "Id": 991 }, { - "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": 992, - "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, + "Id": 992 }, { - "Rank": 1, + "Command": "Read-PnPSiteTemplate -Path template.pnp", "CommandName": "Read-PnPSiteTemplate", - "Id": 993, - "Command": "Read-PnPSiteTemplate -Path template.pnp" + "Rank": 1, + "Id": 993 }, { - "Rank": 2, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "CommandName": "Read-PnPSiteTemplate", - "Id": 994, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" + "Rank": 2, + "Id": 994 }, { - "Rank": 3, + "Command": "Read-PnPSiteTemplate -Xml $xml", "CommandName": "Read-PnPSiteTemplate", - "Id": 995, - "Command": "Read-PnPSiteTemplate -Xml $xml" + "Rank": 3, + "Id": 995 }, { - "Rank": 1, + "Command": "Read-PnPTenantTemplate -Path template.pnp", "CommandName": "Read-PnPTenantTemplate", - "Id": 996, - "Command": "Read-PnPTenantTemplate -Path template.pnp" + "Rank": 1, + "Id": 996 }, { - "Rank": 1, + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "CommandName": "Register-PnPAppCatalogSite", - "Id": 997, - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" + "Rank": 1, + "Id": 997 }, { - "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": 998, - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" + "Rank": 1, + "Id": 998 }, { - "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": 999, - "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, + "Id": 999 }, { - "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": 1000, - "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, + "Id": 1000 }, { - "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": 1001, - "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, + "Id": 1001 }, { - "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": 1002, - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" + "Rank": 5, + "Id": 1002 }, { - "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": 1003, - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" + "Rank": 6, + "Id": 1003 }, { - "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": 1004, - "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, + "Id": 1004 }, { - "Rank": 1, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "CommandName": "Register-PnPHubSite", - "Id": 1005, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Rank": 1, + "Id": 1005 }, { - "Rank": 2, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "CommandName": "Register-PnPHubSite", - "Id": 1006, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" + "Rank": 2, + "Id": 1006 }, { - "Rank": 1, + "Command": "Register-PnPManagementShellAccess", "CommandName": "Register-PnPManagementShellAccess", - "Id": 1007, - "Command": "Register-PnPManagementShellAccess" + "Rank": 1, + "Id": 1007 }, { - "Rank": 2, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "CommandName": "Register-PnPManagementShellAccess", - "Id": 1008, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" + "Rank": 2, + "Id": 1008 }, { - "Rank": 3, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "CommandName": "Register-PnPManagementShellAccess", - "Id": 1009, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" + "Rank": 3, + "Id": 1009 }, { - "Rank": 1, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1010, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" + "Rank": 1, + "Id": 1010 }, { - "Rank": 2, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1011, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" + "Rank": 2, + "Id": 1011 }, { - "Rank": 1, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "CommandName": "Remove-PnPAlert", - "Id": 1012, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" + "Rank": 1, + "Id": 1012 }, { - "Rank": 2, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAlert", - "Id": 1013, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Rank": 2, + "Id": 1013 }, { - "Rank": 1, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Remove-PnPApp", - "Id": 1014, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Id": 1014 }, { - "Rank": 2, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Remove-PnPApp", - "Id": 1015, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2, + "Id": 1015 }, { - "Rank": 1, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1016, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 1, + "Id": 1016 }, { - "Rank": 2, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1017, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Rank": 2, + "Id": 1017 }, { - "Rank": 1, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1018, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" + "Rank": 1, + "Id": 1018 }, { - "Rank": 2, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1019, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Rank": 2, + "Id": 1019 }, { - "Rank": 1, + "Command": "Remove-PnPAzureADApp -Identity MyApp", "CommandName": "Remove-PnPAzureADApp", - "Id": 1020, - "Command": "Remove-PnPAzureADApp -Identity MyApp" + "Rank": 1, + "Id": 1020 }, { - "Rank": 2, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Remove-PnPAzureADApp", - "Id": 1021, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Rank": 2, + "Id": 1021 }, { - "Rank": 1, + "Command": "Remove-PnPAzureADGroup -Identity $groupId", "CommandName": "Remove-PnPAzureADGroup", - "Id": 1022, - "Command": "Remove-PnPAzureADGroup -Identity $groupId" + "Rank": 1, + "Id": 1022 }, { - "Rank": 2, + "Command": "Remove-PnPAzureADGroup -Identity $group", "CommandName": "Remove-PnPAzureADGroup", - "Id": 1023, - "Command": "Remove-PnPAzureADGroup -Identity $group" + "Rank": 2, + "Id": 1023 }, { - "Rank": 1, + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAzureADGroupMember", - "Id": 1024, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1, + "Id": 1024 }, { - "Rank": 1, + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAzureADGroupOwner", - "Id": 1025, - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1, + "Id": 1025 }, { - "Rank": 1, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1026, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" + "Rank": 1, + "Id": 1026 }, { - "Rank": 2, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1027, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" + "Rank": 2, + "Id": 1027 }, { - "Rank": 3, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1028, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Rank": 3, + "Id": 1028 }, { - "Rank": 4, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1029, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Rank": 4, + "Id": 1029 }, { - "Rank": 1, + "Command": "Remove-PnPContentType -Identity \"Project Document\"", "CommandName": "Remove-PnPContentType", - "Id": 1030, - "Command": "Remove-PnPContentType -Identity \"Project Document\"" + "Rank": 1, + "Id": 1030 }, { - "Rank": 2, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "CommandName": "Remove-PnPContentType", - "Id": 1031, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" + "Rank": 2, + "Id": 1031 }, { - "Rank": 1, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1032, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Rank": 1, + "Id": 1032 }, { - "Rank": 2, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1033, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Rank": 2, + "Id": 1033 }, { - "Rank": 1, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "CommandName": "Remove-PnPContentTypeFromList", - "Id": 1034, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" + "Rank": 1, + "Id": 1034 }, { - "Rank": 1, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Remove-PnPCustomAction", - "Id": 1035, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 1, + "Id": 1035 }, { - "Rank": 2, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "CommandName": "Remove-PnPCustomAction", - "Id": 1036, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Rank": 2, + "Id": 1036 }, { - "Rank": 3, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "CommandName": "Remove-PnPCustomAction", - "Id": 1037, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" + "Rank": 3, + "Id": 1037 }, { - "Rank": 1, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Id": 1038, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Rank": 1, + "Id": 1038 }, { - "Rank": 1, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Remove-PnPEventReceiver", - "Id": 1039, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 1, + "Id": 1039 }, { - "Rank": 2, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Remove-PnPEventReceiver", - "Id": 1040, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 2, + "Id": 1040 }, { - "Rank": 3, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "CommandName": "Remove-PnPEventReceiver", - "Id": 1041, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" + "Rank": 3, + "Id": 1041 }, { - "Rank": 4, + "Command": "Remove-PnPEventReceiver -List ProjectList", "CommandName": "Remove-PnPEventReceiver", - "Id": 1042, - "Command": "Remove-PnPEventReceiver -List ProjectList" + "Rank": 4, + "Id": 1042 }, { - "Rank": 5, + "Command": "Remove-PnPEventReceiver", "CommandName": "Remove-PnPEventReceiver", - "Id": 1043, - "Command": "Remove-PnPEventReceiver" + "Rank": 5, + "Id": 1043 }, { - "Rank": 6, + "Command": "Remove-PnPEventReceiver -Scope Site", "CommandName": "Remove-PnPEventReceiver", - "Id": 1044, - "Command": "Remove-PnPEventReceiver -Scope Site" + "Rank": 6, + "Id": 1044 }, { - "Rank": 7, + "Command": "Remove-PnPEventReceiver -Scope Web", "CommandName": "Remove-PnPEventReceiver", - "Id": 1045, - "Command": "Remove-PnPEventReceiver -Scope Web" + "Rank": 7, + "Id": 1045 }, { - "Rank": 8, + "Command": "Remove-PnPEventReceiver -Scope All", "CommandName": "Remove-PnPEventReceiver", - "Id": 1046, - "Command": "Remove-PnPEventReceiver -Scope All" + "Rank": 8, + "Id": 1046 }, { - "Rank": 1, + "Command": "Remove-PnPField -Identity \"Speakers\"", "CommandName": "Remove-PnPField", - "Id": 1047, - "Command": "Remove-PnPField -Identity \"Speakers\"" + "Rank": 1, + "Id": 1047 }, { - "Rank": 2, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "CommandName": "Remove-PnPField", - "Id": 1048, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Rank": 2, + "Id": 1048 }, { - "Rank": 1, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1049, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Rank": 1, + "Id": 1049 }, { - "Rank": 2, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1050, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" + "Rank": 2, + "Id": 1050 }, { - "Rank": 1, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "CommandName": "Remove-PnPFile", - "Id": 1051, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" + "Rank": 1, + "Id": 1051 }, { - "Rank": 2, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "CommandName": "Remove-PnPFile", - "Id": 1052, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" + "Rank": 2, + "Id": 1052 }, { - "Rank": 3, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "CommandName": "Remove-PnPFile", - "Id": 1053, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" + "Rank": 3, + "Id": 1053 }, { - "Rank": 1, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "CommandName": "Remove-PnPFileFromSiteTemplate", - "Id": 1054, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" + "Rank": 1, + "Id": 1054 }, { - "Rank": 1, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Remove-PnPFileSharingLink", - "Id": 1055, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Rank": 1, + "Id": 1055 }, { - "Rank": 2, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "CommandName": "Remove-PnPFileSharingLink", - "Id": 1056, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" + "Rank": 2, + "Id": 1056 }, { - "Rank": 1, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "CommandName": "Remove-PnPFileVersion", - "Id": 1057, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Rank": 1, + "Id": 1057 }, { - "Rank": 2, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "CommandName": "Remove-PnPFileVersion", - "Id": 1058, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Rank": 2, + "Id": 1058 }, { - "Rank": 3, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "CommandName": "Remove-PnPFileVersion", - "Id": 1059, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" + "Rank": 3, + "Id": 1059 }, { - "Rank": 1, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "CommandName": "Remove-PnPFlowOwner", - "Id": 1060, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" + "Rank": 1, + "Id": 1060 }, { - "Rank": 2, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "CommandName": "Remove-PnPFlowOwner", - "Id": 1061, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" + "Rank": 2, + "Id": 1061 }, { - "Rank": 3, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "CommandName": "Remove-PnPFlowOwner", - "Id": 1062, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" + "Rank": 3, + "Id": 1062 }, { - "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": 1063, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" + "Rank": 4, + "Id": 1063 }, { - "Rank": 1, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "CommandName": "Remove-PnPFolder", - "Id": 1064, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Rank": 1, + "Id": 1064 }, { - "Rank": 2, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "CommandName": "Remove-PnPFolder", - "Id": 1065, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" + "Rank": 2, + "Id": 1065 }, { - "Rank": 1, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1066, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Rank": 1, + "Id": 1066 }, { - "Rank": 2, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1067, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" + "Rank": 2, + "Id": 1067 }, { - "Rank": 1, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "CommandName": "Remove-PnPGraphSubscription", - "Id": 1068, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" + "Rank": 1, + "Id": 1068 }, { - "Rank": 1, + "Command": "Remove-PnPGroup -Identity \"My Users\"", "CommandName": "Remove-PnPGroup", - "Id": 1069, - "Command": "Remove-PnPGroup -Identity \"My Users\"" + "Rank": 1, + "Id": 1069 }, { - "Rank": 1, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "CommandName": "Remove-PnPGroupMember", - "Id": 1070, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Rank": 1, + "Id": 1070 }, { - "Rank": 1, + "Command": "Remove-PnPHomeSite", "CommandName": "Remove-PnPHomeSite", - "Id": 1071, - "Command": "Remove-PnPHomeSite" + "Rank": 1, + "Id": 1071 }, { - "Rank": 1, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "CommandName": "Remove-PnPHubSiteAssociation", - "Id": 1072, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" + "Rank": 1, + "Id": 1072 }, { - "Rank": 1, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1073, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" + "Rank": 1, + "Id": 1073 }, { - "Rank": 2, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1074, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" + "Rank": 2, + "Id": 1074 }, { - "Rank": 1, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "CommandName": "Remove-PnPIndexedProperty", - "Id": 1075, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" + "Rank": 1, + "Id": 1075 }, { - "Rank": 1, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1076, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery" + "Rank": 1, + "Id": 1076 }, { - "Rank": 2, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1077, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" + "Rank": 2, + "Id": 1077 }, { - "Rank": 3, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1078, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" + "Rank": 3, + "Id": 1078 }, { - "Rank": 4, + "Command": "Remove-PnPJavaScriptLink -Scope Site", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1079, - "Command": "Remove-PnPJavaScriptLink -Scope Site" + "Rank": 4, + "Id": 1079 }, { - "Rank": 5, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1080, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" + "Rank": 5, + "Id": 1080 }, { - "Rank": 1, + "Command": "Remove-PnPKnowledgeHubSite", "CommandName": "Remove-PnPKnowledgeHubSite", - "Id": 1081, - "Command": "Remove-PnPKnowledgeHubSite" + "Rank": 1, + "Id": 1081 }, { - "Rank": 1, + "Command": "Remove-PnPList -Identity Announcements", "CommandName": "Remove-PnPList", - "Id": 1082, - "Command": "Remove-PnPList -Identity Announcements" + "Rank": 1, + "Id": 1082 }, { - "Rank": 2, + "Command": "Remove-PnPList -Identity Announcements -Force", "CommandName": "Remove-PnPList", - "Id": 1083, - "Command": "Remove-PnPList -Identity Announcements -Force" + "Rank": 2, + "Id": 1083 }, { - "Rank": 3, + "Command": "Remove-PnPList -Identity Announcements -Recycle", "CommandName": "Remove-PnPList", - "Id": 1084, - "Command": "Remove-PnPList -Identity Announcements -Recycle" + "Rank": 3, + "Id": 1084 }, { - "Rank": 4, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "CommandName": "Remove-PnPList", - "Id": 1085, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" + "Rank": 4, + "Id": 1085 }, { - "Rank": 1, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPListDesign", - "Id": 1086, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "Id": 1086 }, { - "Rank": 1, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "CommandName": "Remove-PnPListItem", - "Id": 1087, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" + "Rank": 1, + "Id": 1087 }, { - "Rank": 2, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "CommandName": "Remove-PnPListItem", - "Id": 1088, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" + "Rank": 2, + "Id": 1088 }, { - "Rank": 3, + "Command": "Remove-PnPListItem -List \"Demo List\"", "CommandName": "Remove-PnPListItem", - "Id": 1089, - "Command": "Remove-PnPListItem -List \"Demo List\"" + "Rank": 3, + "Id": 1089 }, { - "Rank": 1, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1090, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" + "Rank": 1, + "Id": 1090 }, { - "Rank": 2, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1091, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" + "Rank": 2, + "Id": 1091 }, { - "Rank": 3, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1092, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" + "Rank": 3, + "Id": 1092 }, { - "Rank": 4, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1093, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" + "Rank": 4, + "Id": 1093 }, { - "Rank": 5, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1094, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" + "Rank": 5, + "Id": 1094 }, { - "Rank": 1, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "CommandName": "Remove-PnPListItemVersion", - "Id": 1095, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Rank": 1, + "Id": 1095 }, { - "Rank": 2, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "CommandName": "Remove-PnPListItemVersion", - "Id": 1096, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Rank": 2, + "Id": 1096 }, { - "Rank": 1, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1097, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" + "Rank": 1, + "Id": 1097 }, { - "Rank": 2, + "Command": "Remove-PnPMicrosoft365Group -Identity $group", "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1098, - "Command": "Remove-PnPMicrosoft365Group -Identity $group" + "Rank": 2, + "Id": 1098 }, { - "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Id": 1099, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1, + "Id": 1099 }, { - "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Id": 1100, - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1, + "Id": 1100 }, { - "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1101, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" + "Rank": 1, + "Id": 1101 }, { - "Rank": 2, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1102, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" + "Rank": 2, + "Id": 1102 }, { - "Rank": 1, + "Command": "Remove-PnPNavigationNode -Identity 1032", "CommandName": "Remove-PnPNavigationNode", - "Id": 1103, - "Command": "Remove-PnPNavigationNode -Identity 1032" + "Rank": 1, + "Id": 1103 }, { - "Rank": 2, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "CommandName": "Remove-PnPNavigationNode", - "Id": 1104, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" + "Rank": 2, + "Id": 1104 }, { - "Rank": 3, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "CommandName": "Remove-PnPNavigationNode", - "Id": 1105, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" + "Rank": 3, + "Id": 1105 }, { - "Rank": 1, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1106, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" + "Rank": 1, + "Id": 1106 }, { - "Rank": 2, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1107, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" + "Rank": 2, + "Id": 1107 }, { - "Rank": 3, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1108, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" + "Rank": 3, + "Id": 1108 }, { - "Rank": 1, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "CommandName": "Remove-PnPOrgNewsSite", - "Id": 1109, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" + "Rank": 1, + "Id": 1109 }, { - "Rank": 1, + "Command": "Remove-PnPPage -Identity \"MyPage\"", "CommandName": "Remove-PnPPage", - "Id": 1110, - "Command": "Remove-PnPPage -Identity \"MyPage\"" + "Rank": 1, + "Id": 1110 }, { - "Rank": 2, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "CommandName": "Remove-PnPPage", - "Id": 1111, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" + "Rank": 2, + "Id": 1111 }, { - "Rank": 3, + "Command": "Remove-PnPPage $page", "CommandName": "Remove-PnPPage", - "Id": 1112, - "Command": "Remove-PnPPage $page" + "Rank": 3, + "Id": 1112 }, { - "Rank": 4, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "CommandName": "Remove-PnPPage", - "Id": 1113, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" + "Rank": 4, + "Id": 1113 }, { - "Rank": 1, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Remove-PnPPageComponent", - "Id": 1114, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 1, + "Id": 1114 }, { - "Rank": 1, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "CommandName": "Remove-PnPPlannerBucket", - "Id": 1115, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" + "Rank": 1, + "Id": 1115 }, { - "Rank": 1, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "CommandName": "Remove-PnPPlannerPlan", - "Id": 1116, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" + "Rank": 1, + "Id": 1116 }, { - "Rank": 1, + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "CommandName": "Remove-PnPPlannerRoster", - "Id": 1117, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Rank": 1, + "Id": 1117 }, { - "Rank": 1, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPPlannerRosterMember", - "Id": 1118, - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 1, + "Id": 1118 }, { - "Rank": 1, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "CommandName": "Remove-PnPPlannerTask", - "Id": 1119, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" + "Rank": 1, + "Id": 1119 }, { - "Rank": 1, + "Command": "Remove-PnPPropertyBagValue -Key MyKey", "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1120, - "Command": "Remove-PnPPropertyBagValue -Key MyKey" + "Rank": 1, + "Id": 1120 }, { - "Rank": 2, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1121, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" + "Rank": 2, + "Id": 1121 }, { - "Rank": 3, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1122, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" + "Rank": 3, + "Id": 1122 }, { - "Rank": 1, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "CommandName": "Remove-PnPPublishingImageRendition", - "Id": 1123, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Rank": 1, + "Id": 1123 }, { - "Rank": 1, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "CommandName": "Remove-PnPRoleDefinition", - "Id": 1124, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" + "Rank": 1, + "Id": 1124 }, { - "Rank": 1, + "Command": "Remove-PnPSdnProvider -Confirm:false", "CommandName": "Remove-PnPSdnProvider", - "Id": 1125, - "Command": "Remove-PnPSdnProvider -Confirm:false" + "Rank": 1, + "Id": 1125 }, { - "Rank": 1, + "Command": "Remove-PnPSearchConfiguration -Configuration $config", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1126, - "Command": "Remove-PnPSearchConfiguration -Configuration $config" + "Rank": 1, + "Id": 1126 }, { - "Rank": 2, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1127, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" + "Rank": 2, + "Id": 1127 }, { - "Rank": 3, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1128, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Rank": 3, + "Id": 1128 }, { - "Rank": 4, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1129, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Rank": 4, + "Id": 1129 }, { - "Rank": 1, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1130, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Rank": 1, + "Id": 1130 }, { - "Rank": 2, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1131, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Rank": 2, + "Id": 1131 }, { - "Rank": 1, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Id": 1132, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Rank": 1, + "Id": 1132 }, { - "Rank": 1, + "Command": "Remove-PnPSiteCollectionTermStore", "CommandName": "Remove-PnPSiteCollectionTermStore", - "Id": 1133, - "Command": "Remove-PnPSiteCollectionTermStore" + "Rank": 1, + "Id": 1133 }, { - "Rank": 1, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteDesign", - "Id": 1134, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "Id": 1134 }, { - "Rank": 1, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteDesignTask", - "Id": 1135, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "Id": 1135 }, { - "Rank": 1, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Remove-PnPSiteGroup", - "Id": 1136, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" + "Rank": 1, + "Id": 1136 }, { - "Rank": 2, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "CommandName": "Remove-PnPSiteGroup", - "Id": 1137, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" + "Rank": 2, + "Id": 1137 }, { - "Rank": 1, + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteScript", - "Id": 1138, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "Id": 1138 }, { - "Rank": 1, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "CommandName": "Remove-PnPSiteUserInvitations", - "Id": 1139, - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "Rank": 1, + "Id": 1139 }, { - "Rank": 1, + "Command": "Remove-PnPStorageEntity -Key MyKey", "CommandName": "Remove-PnPStorageEntity", - "Id": 1140, - "Command": "Remove-PnPStorageEntity -Key MyKey" + "Rank": 1, + "Id": 1140 }, { - "Rank": 2, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "CommandName": "Remove-PnPStorageEntity", - "Id": 1141, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" + "Rank": 2, + "Id": 1141 }, { - "Rank": 1, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "CommandName": "Remove-PnPStoredCredential", - "Id": 1142, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" + "Rank": 1, + "Id": 1142 }, { - "Rank": 1, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1143, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" + "Rank": 1, + "Id": 1143 }, { - "Rank": 2, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1144, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" + "Rank": 2, + "Id": 1144 }, { - "Rank": 1, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "CommandName": "Remove-PnPTeamsApp", - "Id": 1145, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" + "Rank": 1, + "Id": 1145 }, { - "Rank": 2, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "CommandName": "Remove-PnPTeamsApp", - "Id": 1146, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" + "Rank": 2, + "Id": 1146 }, { - "Rank": 1, + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "CommandName": "Remove-PnPTeamsChannel", - "Id": 1147, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" + "Rank": 1, + "Id": 1147 }, { - "Rank": 1, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1148, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" + "Rank": 1, + "Id": 1148 }, { - "Rank": 2, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1149, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "Rank": 2, + "Id": 1149 }, { - "Rank": 3, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1150, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" + "Rank": 3, + "Id": 1150 }, { - "Rank": 1, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "CommandName": "Remove-PnPTeamsTab", - "Id": 1151, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" + "Rank": 1, + "Id": 1151 }, { - "Rank": 2, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "CommandName": "Remove-PnPTeamsTab", - "Id": 1152, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" + "Rank": 2, + "Id": 1152 }, { - "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": 1153, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" + "Rank": 3, + "Id": 1153 }, { - "Rank": 1, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "CommandName": "Remove-PnPTeamsTag", - "Id": 1154, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Rank": 1, + "Id": 1154 }, { - "Rank": 1, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "CommandName": "Remove-PnPTeamsTeam", - "Id": 1155, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Rank": 1, + "Id": 1155 }, { - "Rank": 2, + "Command": "Remove-PnPTeamsTeam -Identity testteam", "CommandName": "Remove-PnPTeamsTeam", - "Id": 1156, - "Command": "Remove-PnPTeamsTeam -Identity testteam" + "Rank": 2, + "Id": 1156 }, { - "Rank": 1, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "CommandName": "Remove-PnPTeamsUser", - "Id": 1157, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" + "Rank": 1, + "Id": 1157 }, { - "Rank": 2, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Remove-PnPTeamsUser", - "Id": 1158, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Rank": 2, + "Id": 1158 }, { - "Rank": 1, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "CommandName": "Remove-PnPTenantCdnOrigin", - "Id": 1159, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Rank": 1, + "Id": 1159 }, { - "Rank": 1, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1160, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1, + "Id": 1160 }, { - "Rank": 2, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1161, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Rank": 2, + "Id": 1161 }, { - "Rank": 1, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Remove-PnPTenantSite", - "Id": 1162, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1, + "Id": 1162 }, { - "Rank": 2, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "CommandName": "Remove-PnPTenantSite", - "Id": 1163, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" + "Rank": 2, + "Id": 1163 }, { - "Rank": 3, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "CommandName": "Remove-PnPTenantSite", - "Id": 1164, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" + "Rank": 3, + "Id": 1164 }, { - "Rank": 1, + "Command": "Remove-PnPTenantSyncClientRestriction", "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Id": 1165, - "Command": "Remove-PnPTenantSyncClientRestriction" + "Rank": 1, + "Id": 1165 }, { - "Rank": 1, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "CommandName": "Remove-PnPTenantTheme", - "Id": 1166, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Rank": 1, + "Id": 1166 }, { - "Rank": 1, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "CommandName": "Remove-PnPTerm", - "Id": 1167, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Rank": 1, + "Id": 1167 }, { - "Rank": 2, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Remove-PnPTerm", - "Id": 1168, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2, + "Id": 1168 }, { - "Rank": 1, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "CommandName": "Remove-PnPTermGroup", - "Id": 1169, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Rank": 1, + "Id": 1169 }, { - "Rank": 2, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "CommandName": "Remove-PnPTermGroup", - "Id": 1170, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" + "Rank": 2, + "Id": 1170 }, { - "Rank": 3, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "CommandName": "Remove-PnPTermGroup", - "Id": 1171, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" + "Rank": 3, + "Id": 1171 }, { - "Rank": 1, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "CommandName": "Remove-PnPTermLabel", - "Id": 1172, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" + "Rank": 1, + "Id": 1172 }, { - "Rank": 2, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Remove-PnPTermLabel", - "Id": 1173, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2, + "Id": 1173 }, { - "Rank": 1, + "Command": "Remove-PnPUser -Identity 23", "CommandName": "Remove-PnPUser", - "Id": 1174, - "Command": "Remove-PnPUser -Identity 23" + "Rank": 1, + "Id": 1174 }, { - "Rank": 2, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "CommandName": "Remove-PnPUser", - "Id": 1175, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" + "Rank": 2, + "Id": 1175 }, { - "Rank": 3, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "CommandName": "Remove-PnPUser", - "Id": 1176, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" + "Rank": 3, + "Id": 1176 }, { - "Rank": 1, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "CommandName": "Remove-PnPUserInfo", - "Id": 1177, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" + "Rank": 1, + "Id": 1177 }, { - "Rank": 1, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "CommandName": "Remove-PnPUserProfile", - "Id": 1178, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com" + "Rank": 1, + "Id": 1178 }, { - "Rank": 1, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "CommandName": "Remove-PnPView", - "Id": 1179, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" + "Rank": 1, + "Id": 1179 }, { - "Rank": 1, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Id": 1180, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Rank": 1, + "Id": 1180 }, { - "Rank": 1, + "Command": "Remove-PnPWeb -Identity projectA", "CommandName": "Remove-PnPWeb", - "Id": 1181, - "Command": "Remove-PnPWeb -Identity projectA" + "Rank": 1, + "Id": 1181 }, { - "Rank": 2, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "CommandName": "Remove-PnPWeb", - "Id": 1182, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" + "Rank": 2, + "Id": 1182 }, { - "Rank": 1, + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "CommandName": "Remove-PnPWebhookSubscription", - "Id": 1183, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" + "Rank": 1, + "Id": 1183 }, { - "Rank": 1, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Remove-PnPWebPart", - "Id": 1184, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 1, + "Id": 1184 }, { - "Rank": 2, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "CommandName": "Remove-PnPWebPart", - "Id": 1185, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" + "Rank": 2, + "Id": 1185 }, { - "Rank": 1, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "CommandName": "Remove-PnPWikiPage", - "Id": 1186, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" + "Rank": 1, + "Id": 1186 }, { - "Rank": 1, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "CommandName": "Rename-PnPFile", - "Id": 1187, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" + "Rank": 1, + "Id": 1187 }, { - "Rank": 2, + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "CommandName": "Rename-PnPFile", - "Id": 1188, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" + "Rank": 2, + "Id": 1188 }, { - "Rank": 3, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "CommandName": "Rename-PnPFile", - "Id": 1189, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" + "Rank": 3, + "Id": 1189 }, { - "Rank": 1, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "CommandName": "Rename-PnPFolder", - "Id": 1190, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" + "Rank": 1, + "Id": 1190 }, { - "Rank": 1, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Repair-PnPSite", - "Id": 1191, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Rank": 1, + "Id": 1191 }, { - "Rank": 2, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "CommandName": "Repair-PnPSite", - "Id": 1192, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "Rank": 2, + "Id": 1192 }, { - "Rank": 1, + "Command": "Request-PnPAccessToken", "CommandName": "Request-PnPAccessToken", - "Id": 1193, - "Command": "Request-PnPAccessToken" + "Rank": 1, + "Id": 1193 }, { - "Rank": 2, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "CommandName": "Request-PnPAccessToken", - "Id": 1194, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" + "Rank": 2, + "Id": 1194 }, { - "Rank": 3, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "CommandName": "Request-PnPAccessToken", - "Id": 1195, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" + "Rank": 3, + "Id": 1195 }, { - "Rank": 4, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "CommandName": "Request-PnPAccessToken", - "Id": 1196, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" + "Rank": 4, + "Id": 1196 }, { - "Rank": 1, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "CommandName": "Request-PnPPersonalSite", - "Id": 1197, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" + "Rank": 1, + "Id": 1197 }, { - "Rank": 2, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "CommandName": "Request-PnPPersonalSite", - "Id": 1198, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" + "Rank": 2, + "Id": 1198 }, { - "Rank": 1, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "CommandName": "Request-PnPReIndexList", - "Id": 1199, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"" + "Rank": 1, + "Id": 1199 }, { - "Rank": 1, + "Command": "Request-PnPReIndexWeb", "CommandName": "Request-PnPReIndexWeb", - "Id": 1200, - "Command": "Request-PnPReIndexWeb" + "Rank": 1, + "Id": 1200 }, { - "Rank": 1, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1201, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" + "Rank": 1, + "Id": 1201 }, { - "Rank": 2, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1202, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" + "Rank": 2, + "Id": 1202 }, { - "Rank": 3, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1203, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" + "Rank": 3, + "Id": 1203 }, { - "Rank": 1, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "CommandName": "Reset-PnPFileVersion", - "Id": 1204, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" + "Rank": 1, + "Id": 1204 }, { - "Rank": 2, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "CommandName": "Reset-PnPFileVersion", - "Id": 1205, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" + "Rank": 2, + "Id": 1205 }, { - "Rank": 1, + "Command": "Reset-PnPLabel -List \"Demo List\"", "CommandName": "Reset-PnPLabel", - "Id": 1206, - "Command": "Reset-PnPLabel -List \"Demo List\"" + "Rank": 1, + "Id": 1206 }, { - "Rank": 2, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "CommandName": "Reset-PnPLabel", - "Id": 1207, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" + "Rank": 2, + "Id": 1207 }, { - "Rank": 1, + "Command": "Reset-PnPMicrosoft365GroupExpiration", "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1208, - "Command": "Reset-PnPMicrosoft365GroupExpiration" + "Rank": 1, + "Id": 1208 }, { - "Rank": 1, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Id": 1209, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" + "Rank": 1, + "Id": 1209 }, { - "Rank": 1, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "CommandName": "Resolve-PnPFolder", - "Id": 1210, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" + "Rank": 1, + "Id": 1210 }, { - "Rank": 1, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Id": 1211, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Rank": 1, + "Id": 1211 }, { - "Rank": 1, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "CommandName": "Restore-PnPFileVersion", - "Id": 1212, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Rank": 1, + "Id": 1212 }, { - "Rank": 2, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "CommandName": "Restore-PnPFileVersion", - "Id": 1213, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" + "Rank": 2, + "Id": 1213 }, { - "Rank": 3, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "CommandName": "Restore-PnPFileVersion", - "Id": 1214, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Rank": 3, + "Id": 1214 }, { - "Rank": 1, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "CommandName": "Restore-PnPListItemVersion", - "Id": 1215, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Rank": 1, + "Id": 1215 }, { - "Rank": 2, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "CommandName": "Restore-PnPListItemVersion", - "Id": 1216, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Rank": 2, + "Id": 1216 }, { - "Rank": 1, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "CommandName": "Restore-PnPRecycleBinItem", - "Id": 1217, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Rank": 1, + "Id": 1217 }, { - "Rank": 1, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1218, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1, + "Id": 1218 }, { - "Rank": 2, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1219, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Rank": 2, + "Id": 1219 }, { - "Rank": 1, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Restore-PnPTenantSite", - "Id": 1220, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1, + "Id": 1220 }, { - "Rank": 2, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "CommandName": "Restore-PnPTenantSite", - "Id": 1221, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Rank": 2, + "Id": 1221 }, { - "Rank": 3, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "CommandName": "Restore-PnPTenantSite", - "Id": 1222, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" + "Rank": 3, + "Id": 1222 }, { - "Rank": 1, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Id": 1223, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" + "Rank": 1, + "Id": 1223 }, { - "Rank": 1, + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Revoke-PnPHubSiteRights", - "Id": 1224, - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Rank": 1, + "Id": 1224 }, { - "Rank": 1, + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Revoke-PnPSiteDesignRights", - "Id": 1225, - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Rank": 1, + "Id": 1225 }, { - "Rank": 1, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Id": 1226, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Rank": 1, + "Id": 1226 }, { - "Rank": 1, + "Command": "Revoke-PnPUserSession -User user1@contoso.com", "CommandName": "Revoke-PnPUserSession", - "Id": 1227, - "Command": "Revoke-PnPUserSession -User user1@contoso.com" + "Rank": 1, + "Id": 1227 }, { - "Rank": 1, + "Command": "Save-PnPPageConversionLog", "CommandName": "Save-PnPPageConversionLog", - "Id": 1228, - "Command": "Save-PnPPageConversionLog" + "Rank": 1, + "Id": 1228 }, { - "Rank": 1, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "CommandName": "Save-PnPSiteTemplate", - "Id": 1229, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" + "Rank": 1, + "Id": 1229 }, { - "Rank": 1, + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "CommandName": "Save-PnPTenantTemplate", - "Id": 1230, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" + "Rank": 1, + "Id": 1230 }, { - "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": 1231, - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" + "Rank": 1, + "Id": 1231 }, { - "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": 1232, - "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, + "Id": 1232 }, { - "Rank": 3, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "CommandName": "Send-PnPMail", - "Id": 1233, - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" + "Rank": 3, + "Id": 1233 }, { - "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": 1234, - "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, + "Id": 1234 }, { - "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": 1235, - "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, + "Id": 1235 }, { - "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": 1236, - "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, + "Id": 1236 }, { - "Rank": 1, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "CommandName": "Set-PnPAdaptiveScopeProperty", - "Id": 1237, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" + "Rank": 1, + "Id": 1237 }, { - "Rank": 1, + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1238, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 1, + "Id": 1238 }, { - "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": 1239, - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" + "Rank": 2, + "Id": 1239 }, { - "Rank": 1, + "Command": "Set-PnPAppSideLoading -On", "CommandName": "Set-PnPAppSideLoading", - "Id": 1240, - "Command": "Set-PnPAppSideLoading -On" + "Rank": 1, + "Id": 1240 }, { - "Rank": 2, + "Command": "Set-PnPAppSideLoading -Off", "CommandName": "Set-PnPAppSideLoading", - "Id": 1241, - "Command": "Set-PnPAppSideLoading -Off" + "Rank": 2, + "Id": 1241 }, { - "Rank": 1, + "Command": "Set-PnPAuditing -EnableAll", "CommandName": "Set-PnPAuditing", - "Id": 1242, - "Command": "Set-PnPAuditing -EnableAll" + "Rank": 1, + "Id": 1242 }, { - "Rank": 2, + "Command": "Set-PnPAuditing -DisableAll", "CommandName": "Set-PnPAuditing", - "Id": 1243, - "Command": "Set-PnPAuditing -DisableAll" + "Rank": 2, + "Id": 1243 }, { - "Rank": 3, + "Command": "Set-PnPAuditing -RetentionTime 7", "CommandName": "Set-PnPAuditing", - "Id": 1244, - "Command": "Set-PnPAuditing -RetentionTime 7" + "Rank": 3, + "Id": 1244 }, { - "Rank": 4, + "Command": "Set-PnPAuditing -TrimAuditLog", "CommandName": "Set-PnPAuditing", - "Id": 1245, - "Command": "Set-PnPAuditing -TrimAuditLog" + "Rank": 4, + "Id": 1245 }, { - "Rank": 5, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "CommandName": "Set-PnPAuditing", - "Id": 1246, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" + "Rank": 5, + "Id": 1246 }, { - "Rank": 1, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "CommandName": "Set-PnPAvailablePageLayouts", - "Id": 1247, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" + "Rank": 1, + "Id": 1247 }, { - "Rank": 1, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1248, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" + "Rank": 1, + "Id": 1248 }, { - "Rank": 2, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1249, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" + "Rank": 2, + "Id": 1249 }, { - "Rank": 1, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPAzureADGroup", - "Id": 1250, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" + "Rank": 1, + "Id": 1250 }, { - "Rank": 2, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPAzureADGroup", - "Id": 1251, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Rank": 2, + "Id": 1251 }, { - "Rank": 3, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "CommandName": "Set-PnPAzureADGroup", - "Id": 1252, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" + "Rank": 3, + "Id": 1252 }, { - "Rank": 1, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1253, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" + "Rank": 1, + "Id": 1253 }, { - "Rank": 2, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1254, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" + "Rank": 2, + "Id": 1254 }, { - "Rank": 3, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1255, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" + "Rank": 3, + "Id": 1255 }, { - "Rank": 1, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1256, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" + "Rank": 1, + "Id": 1256 }, { - "Rank": 2, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1257, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" + "Rank": 2, + "Id": 1257 }, { - "Rank": 1, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1258, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" + "Rank": 1, + "Id": 1258 }, { - "Rank": 2, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1259, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" + "Rank": 2, + "Id": 1259 }, { - "Rank": 3, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1260, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" + "Rank": 3, + "Id": 1260 }, { - "Rank": 4, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1261, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" + "Rank": 4, + "Id": 1261 }, { - "Rank": 1, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "CommandName": "Set-PnPContentType", - "Id": 1262, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "Rank": 1, + "Id": 1262 }, { - "Rank": 2, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "CommandName": "Set-PnPContentType", - "Id": 1263, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" + "Rank": 2, + "Id": 1263 }, { - "Rank": 3, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "CommandName": "Set-PnPContentType", - "Id": 1264, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "Rank": 3, + "Id": 1264 }, { - "Rank": 4, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "CommandName": "Set-PnPContentType", - "Id": 1265, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "Rank": 4, + "Id": 1265 }, { - "Rank": 5, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "CommandName": "Set-PnPContentType", - "Id": 1266, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "Rank": 5, + "Id": 1266 }, { - "Rank": 1, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1267, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" + "Rank": 1, + "Id": 1267 }, { - "Rank": 2, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1268, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" + "Rank": 2, + "Id": 1268 }, { - "Rank": 3, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1269, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" + "Rank": 3, + "Id": 1269 }, { - "Rank": 4, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1270, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" + "Rank": 4, + "Id": 1270 }, { - "Rank": 1, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "CommandName": "Set-PnPDefaultContentTypeToList", - "Id": 1271, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" + "Rank": 1, + "Id": 1271 }, { - "Rank": 1, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1272, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" + "Rank": 1, + "Id": 1272 }, { - "Rank": 2, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1273, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" + "Rank": 2, + "Id": 1273 }, { - "Rank": 3, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1274, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" + "Rank": 3, + "Id": 1274 }, { - "Rank": 1, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1275, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" + "Rank": 1, + "Id": 1275 }, { - "Rank": 2, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1276, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Rank": 2, + "Id": 1276 }, { - "Rank": 3, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1277, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Rank": 3, + "Id": 1277 }, { - "Rank": 1, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "CommandName": "Set-PnPDocumentSetField", - "Id": 1278, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" + "Rank": 1, + "Id": 1278 }, { - "Rank": 2, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "CommandName": "Set-PnPDocumentSetField", - "Id": 1279, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" + "Rank": 2, + "Id": 1279 }, { - "Rank": 1, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "CommandName": "Set-PnPField", - "Id": 1280, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" + "Rank": 1, + "Id": 1280 }, { - "Rank": 2, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "CommandName": "Set-PnPField", - "Id": 1281, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" + "Rank": 2, + "Id": 1281 }, { - "Rank": 3, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "CommandName": "Set-PnPField", - "Id": 1282, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" + "Rank": 3, + "Id": 1282 }, { - "Rank": 1, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "CommandName": "Set-PnPFileCheckedIn", - "Id": 1283, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" + "Rank": 1, + "Id": 1283 }, { - "Rank": 2, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "CommandName": "Set-PnPFileCheckedIn", - "Id": 1284, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" + "Rank": 2, + "Id": 1284 }, { - "Rank": 1, + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "CommandName": "Set-PnPFileCheckedOut", - "Id": 1285, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" + "Rank": 1, + "Id": 1285 }, { - "Rank": 1, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPFolderPermission", - "Id": 1286, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" + "Rank": 1, + "Id": 1286 }, { - "Rank": 2, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPFolderPermission", - "Id": 1287, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Rank": 2, + "Id": 1287 }, { - "Rank": 3, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "CommandName": "Set-PnPFolderPermission", - "Id": 1288, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "Rank": 3, + "Id": 1288 }, { - "Rank": 1, + "Command": "Set-PnPFooter -Enabled:$true", "CommandName": "Set-PnPFooter", - "Id": 1289, - "Command": "Set-PnPFooter -Enabled:$true" + "Rank": 1, + "Id": 1289 }, { - "Rank": 2, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "CommandName": "Set-PnPFooter", - "Id": 1290, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" + "Rank": 2, + "Id": 1290 }, { - "Rank": 3, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "CommandName": "Set-PnPFooter", - "Id": 1291, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" + "Rank": 3, + "Id": 1291 }, { - "Rank": 4, + "Command": "Set-PnPFooter -LogoUrl \"\"", "CommandName": "Set-PnPFooter", - "Id": 1292, - "Command": "Set-PnPFooter -LogoUrl \"\"" + "Rank": 4, + "Id": 1292 }, { - "Rank": 1, + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "CommandName": "Set-PnPGraphSubscription", - "Id": 1293, - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" + "Rank": 1, + "Id": 1293 }, { - "Rank": 1, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "CommandName": "Set-PnPGroup", - "Id": 1294, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" + "Rank": 1, + "Id": 1294 }, { - "Rank": 2, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "CommandName": "Set-PnPGroup", - "Id": 1295, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" + "Rank": 2, + "Id": 1295 }, { - "Rank": 1, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "CommandName": "Set-PnPGroupPermissions", - "Id": 1296, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" + "Rank": 1, + "Id": 1296 }, { - "Rank": 2, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "CommandName": "Set-PnPGroupPermissions", - "Id": 1297, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" + "Rank": 2, + "Id": 1297 }, { - "Rank": 3, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "CommandName": "Set-PnPGroupPermissions", - "Id": 1298, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" + "Rank": 3, + "Id": 1298 }, { - "Rank": 4, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "CommandName": "Set-PnPGroupPermissions", - "Id": 1299, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" + "Rank": 4, + "Id": 1299 }, { - "Rank": 5, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "CommandName": "Set-PnPGroupPermissions", - "Id": 1300, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" + "Rank": 5, + "Id": 1300 }, { - "Rank": 1, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1301, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" + "Rank": 1, + "Id": 1301 }, { - "Rank": 2, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1302, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" + "Rank": 2, + "Id": 1302 }, { - "Rank": 1, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "CommandName": "Set-PnPHomePage", - "Id": 1303, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" + "Rank": 1, + "Id": 1303 }, { - "Rank": 2, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "CommandName": "Set-PnPHomePage", - "Id": 1304, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" + "Rank": 2, + "Id": 1304 }, { - "Rank": 1, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "CommandName": "Set-PnPHomeSite", - "Id": 1305, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" + "Rank": 1, + "Id": 1305 }, { - "Rank": 2, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "CommandName": "Set-PnPHomeSite", - "Id": 1306, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" + "Rank": 2, + "Id": 1306 }, { - "Rank": 1, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "CommandName": "Set-PnPHubSite", - "Id": 1307, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" + "Rank": 1, + "Id": 1307 }, { - "Rank": 2, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "CommandName": "Set-PnPHubSite", - "Id": 1308, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" + "Rank": 2, + "Id": 1308 }, { - "Rank": 3, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "CommandName": "Set-PnPHubSite", - "Id": 1309, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" + "Rank": 3, + "Id": 1309 }, { - "Rank": 4, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "CommandName": "Set-PnPHubSite", - "Id": 1310, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" + "Rank": 4, + "Id": 1310 }, { - "Rank": 5, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "CommandName": "Set-PnPHubSite", - "Id": 1311, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" + "Rank": 5, + "Id": 1311 }, { - "Rank": 6, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "CommandName": "Set-PnPHubSite", - "Id": 1312, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" + "Rank": 6, + "Id": 1312 }, { - "Rank": 1, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "CommandName": "Set-PnPImageListItemColumn", - "Id": 1313, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" + "Rank": 1, + "Id": 1313 }, { - "Rank": 2, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "CommandName": "Set-PnPImageListItemColumn", - "Id": 1314, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" + "Rank": 2, + "Id": 1314 }, { - "Rank": 1, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "CommandName": "Set-PnPIndexedProperties", - "Id": 1315, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" + "Rank": 1, + "Id": 1315 }, { - "Rank": 1, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1316, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" + "Rank": 1, + "Id": 1316 }, { - "Rank": 2, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1317, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" + "Rank": 2, + "Id": 1317 }, { - "Rank": 1, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "CommandName": "Set-PnPKnowledgeHubSite", - "Id": 1318, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" + "Rank": 1, + "Id": 1318 }, { - "Rank": 1, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "CommandName": "Set-PnPLabel", - "Id": 1319, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" + "Rank": 1, + "Id": 1319 }, { - "Rank": 2, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "CommandName": "Set-PnPLabel", - "Id": 1320, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" + "Rank": 2, + "Id": 1320 }, { - "Rank": 1, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "CommandName": "Set-PnPList", - "Id": 1321, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" + "Rank": 1, + "Id": 1321 }, { - "Rank": 2, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "CommandName": "Set-PnPList", - "Id": 1322, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" + "Rank": 2, + "Id": 1322 }, { - "Rank": 3, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "CommandName": "Set-PnPList", - "Id": 1323, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" + "Rank": 3, + "Id": 1323 }, { - "Rank": 4, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "CommandName": "Set-PnPList", - "Id": 1324, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" + "Rank": 4, + "Id": 1324 }, { - "Rank": 5, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "CommandName": "Set-PnPList", - "Id": 1325, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" + "Rank": 5, + "Id": 1325 }, { - "Rank": 6, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "CommandName": "Set-PnPList", - "Id": 1326, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" + "Rank": 6, + "Id": 1326 }, { - "Rank": 7, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "CommandName": "Set-PnPList", - "Id": 1327, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" + "Rank": 7, + "Id": 1327 }, { - "Rank": 8, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "CommandName": "Set-PnPList", - "Id": 1328, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" + "Rank": 8, + "Id": 1328 }, { - "Rank": 9, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "CommandName": "Set-PnPList", - "Id": 1329, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" + "Rank": 9, + "Id": 1329 }, { - "Rank": 10, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "CommandName": "Set-PnPList", - "Id": 1330, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" + "Rank": 10, + "Id": 1330 }, { - "Rank": 11, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "CommandName": "Set-PnPList", - "Id": 1331, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" + "Rank": 11, + "Id": 1331 }, { - "Rank": 1, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1332, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" + "Rank": 1, + "Id": 1332 }, { - "Rank": 2, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1333, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" + "Rank": 2, + "Id": 1333 }, { - "Rank": 1, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Id": 1334, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Rank": 1, + "Id": 1334 }, { - "Rank": 2, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Id": 1335, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Rank": 2, + "Id": 1335 }, { - "Rank": 3, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Id": 1336, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Rank": 3, + "Id": 1336 }, { - "Rank": 4, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "CommandName": "Set-PnPListItem", - "Id": 1337, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" + "Rank": 4, + "Id": 1337 }, { - "Rank": 5, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "CommandName": "Set-PnPListItem", - "Id": 1338, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" + "Rank": 5, + "Id": 1338 }, { - "Rank": 1, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "CommandName": "Set-PnPListItemAsRecord", - "Id": 1339, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Rank": 1, + "Id": 1339 }, { - "Rank": 2, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "CommandName": "Set-PnPListItemAsRecord", - "Id": 1340, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" + "Rank": 2, + "Id": 1340 }, { - "Rank": 1, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPListItemPermission", - "Id": 1341, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" + "Rank": 1, + "Id": 1341 }, { - "Rank": 2, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPListItemPermission", - "Id": 1342, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Rank": 2, + "Id": 1342 }, { - "Rank": 3, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "CommandName": "Set-PnPListItemPermission", - "Id": 1343, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "Rank": 3, + "Id": 1343 }, { - "Rank": 4, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "CommandName": "Set-PnPListItemPermission", - "Id": 1344, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" + "Rank": 4, + "Id": 1344 }, { - "Rank": 5, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "CommandName": "Set-PnPListItemPermission", - "Id": 1345, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" + "Rank": 5, + "Id": 1345 }, { - "Rank": 1, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPListPermission", - "Id": 1346, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" + "Rank": 1, + "Id": 1346 }, { - "Rank": 2, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPListPermission", - "Id": 1347, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Rank": 2, + "Id": 1347 }, { - "Rank": 1, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1348, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" + "Rank": 1, + "Id": 1348 }, { - "Rank": 2, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1349, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" + "Rank": 2, + "Id": 1349 }, { - "Rank": 1, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1350, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "Rank": 1, + "Id": 1350 }, { - "Rank": 2, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1351, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "Rank": 2, + "Id": 1351 }, { - "Rank": 3, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1352, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "Rank": 3, + "Id": 1352 }, { - "Rank": 4, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1353, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "Rank": 4, + "Id": 1353 }, { - "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1354, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" + "Rank": 1, + "Id": 1354 }, { - "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1355, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" + "Rank": 2, + "Id": 1355 }, { - "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1356, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived" + "Rank": 3, + "Id": 1356 }, { - "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1357, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" + "Rank": 1, + "Id": 1357 }, { - "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1358, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" + "Rank": 2, + "Id": 1358 }, { - "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1359, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Rank": 3, + "Id": 1359 }, { - "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1360, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" + "Rank": 1, + "Id": 1360 }, { - "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1361, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" + "Rank": 2, + "Id": 1361 }, { - "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1362, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Rank": 3, + "Id": 1362 }, { - "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1363, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" + "Rank": 1, + "Id": 1363 }, { - "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1364, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" + "Rank": 2, + "Id": 1364 }, { - "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1365, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Rank": 3, + "Id": 1365 }, { - "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1366, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" + "Rank": 1, + "Id": 1366 }, { - "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1367, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" + "Rank": 2, + "Id": 1367 }, { - "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsRead", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1368, - "Command": "Set-PnPMessageCenterAnnouncementAsRead" + "Rank": 3, + "Id": 1368 }, { - "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1369, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" + "Rank": 1, + "Id": 1369 }, { - "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1370, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" + "Rank": 2, + "Id": 1370 }, { - "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1371, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread" + "Rank": 3, + "Id": 1371 }, { - "Rank": 1, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1372, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" + "Rank": 1, + "Id": 1372 }, { - "Rank": 2, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1373, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Rank": 2, + "Id": 1373 }, { - "Rank": 3, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1374, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" + "Rank": 3, + "Id": 1374 }, { - "Rank": 4, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1375, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" + "Rank": 4, + "Id": 1375 }, { - "Rank": 5, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1376, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" + "Rank": 5, + "Id": 1376 }, { - "Rank": 6, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1377, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "Rank": 6, + "Id": 1377 }, { - "Rank": 1, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1378, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" + "Rank": 1, + "Id": 1378 }, { - "Rank": 2, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1379, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" + "Rank": 2, + "Id": 1379 }, { - "Rank": 1, + "Command": "Set-PnPMinimalDownloadStrategy -Off", "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1380, - "Command": "Set-PnPMinimalDownloadStrategy -Off" + "Rank": 1, + "Id": 1380 }, { - "Rank": 2, + "Command": "Set-PnPMinimalDownloadStrategy -On", "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1381, - "Command": "Set-PnPMinimalDownloadStrategy -On" + "Rank": 2, + "Id": 1381 }, { - "Rank": 1, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "CommandName": "Set-PnPPage", - "Id": 1382, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" + "Rank": 1, + "Id": 1382 }, { - "Rank": 2, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "CommandName": "Set-PnPPage", - "Id": 1383, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" + "Rank": 2, + "Id": 1383 }, { - "Rank": 3, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "CommandName": "Set-PnPPage", - "Id": 1384, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" + "Rank": 3, + "Id": 1384 }, { - "Rank": 4, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "CommandName": "Set-PnPPage", - "Id": 1385, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" + "Rank": 4, + "Id": 1385 }, { - "Rank": 5, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "CommandName": "Set-PnPPage", - "Id": 1386, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" + "Rank": 5, + "Id": 1386 }, { - "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": 1387, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" + "Rank": 6, + "Id": 1387 }, { - "Rank": 7, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "CommandName": "Set-PnPPage", - "Id": 1388, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" + "Rank": 7, + "Id": 1388 }, { - "Rank": 8, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "CommandName": "Set-PnPPage", - "Id": 1389, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" + "Rank": 8, + "Id": 1389 }, { - "Rank": 9, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "CommandName": "Set-PnPPage", - "Id": 1390, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" + "Rank": 9, + "Id": 1390 }, { - "Rank": 10, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "CommandName": "Set-PnPPage", - "Id": 1391, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" + "Rank": 10, + "Id": 1391 }, { - "Rank": 11, + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "CommandName": "Set-PnPPage", - "Id": 1392, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" + "Rank": 11, + "Id": 1392 }, { - "Rank": 1, + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "CommandName": "Set-PnPPageTextPart", - "Id": 1393, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" + "Rank": 1, + "Id": 1393 }, { - "Rank": 1, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "CommandName": "Set-PnPPageWebPart", - "Id": 1394, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" + "Rank": 1, + "Id": 1394 }, { - "Rank": 2, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "CommandName": "Set-PnPPageWebPart", - "Id": 1395, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" + "Rank": 2, + "Id": 1395 }, { - "Rank": 1, + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "CommandName": "Set-PnPPlannerBucket", - "Id": 1396, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" + "Rank": 1, + "Id": 1396 }, { - "Rank": 1, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1397, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" + "Rank": 1, + "Id": 1397 }, { - "Rank": 2, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1398, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" + "Rank": 2, + "Id": 1398 }, { - "Rank": 1, + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "CommandName": "Set-PnPPlannerPlan", - "Id": 1399, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" + "Rank": 1, + "Id": 1399 }, { - "Rank": 1, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "CommandName": "Set-PnPPlannerTask", - "Id": 1400, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" + "Rank": 1, + "Id": 1400 }, { - "Rank": 2, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "CommandName": "Set-PnPPlannerTask", - "Id": 1401, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" + "Rank": 2, + "Id": 1401 }, { - "Rank": 3, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "CommandName": "Set-PnPPlannerTask", - "Id": 1402, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" + "Rank": 3, + "Id": 1402 }, { - "Rank": 1, + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPPlannerUserPolicy", - "Id": 1403, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 1, + "Id": 1403 }, { - "Rank": 1, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "CommandName": "Set-PnPPropertyBagValue", - "Id": 1404, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" + "Rank": 1, + "Id": 1404 }, { - "Rank": 2, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "CommandName": "Set-PnPPropertyBagValue", - "Id": 1405, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" + "Rank": 2, + "Id": 1405 }, { - "Rank": 3, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "CommandName": "Set-PnPPropertyBagValue", - "Id": 1406, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" + "Rank": 3, + "Id": 1406 }, { - "Rank": 1, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1407, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" + "Rank": 1, + "Id": 1407 }, { - "Rank": 2, + "Command": "Set-PnPRequestAccessEmails -Disabled", "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1408, - "Command": "Set-PnPRequestAccessEmails -Disabled" + "Rank": 2, + "Id": 1408 }, { - "Rank": 3, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1409, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false" + "Rank": 3, + "Id": 1409 }, { - "Rank": 1, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "CommandName": "Set-PnPRoleDefinition", - "Id": 1410, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" + "Rank": 1, + "Id": 1410 }, { - "Rank": 2, + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "CommandName": "Set-PnPRoleDefinition", - "Id": 1411, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" + "Rank": 2, + "Id": 1411 }, { - "Rank": 3, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "CommandName": "Set-PnPRoleDefinition", - "Id": 1412, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" + "Rank": 3, + "Id": 1412 }, { - "Rank": 4, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "CommandName": "Set-PnPRoleDefinition", - "Id": 1413, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" + "Rank": 4, + "Id": 1413 }, { - "Rank": 1, + "Command": "Set-PnPSearchConfiguration -Configuration $config", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1414, - "Command": "Set-PnPSearchConfiguration -Configuration $config" + "Rank": 1, + "Id": 1414 }, { - "Rank": 2, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1415, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" + "Rank": 2, + "Id": 1415 }, { - "Rank": 3, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1416, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Rank": 3, + "Id": 1416 }, { - "Rank": 4, + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1417, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Rank": 4, + "Id": 1417 }, { - "Rank": 1, + "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone", "CommandName": "Set-PnPSearchExternalItem", - "Id": 1418, - "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone" + "Rank": 1, + "Id": 1418 }, { - "Rank": 2, + "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPSearchExternalItem", - "Id": 1419, - "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"" + "Rank": 2, + "Id": 1419 }, { - "Rank": 1, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "CommandName": "Set-PnPSearchSettings", - "Id": 1420, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" + "Rank": 1, + "Id": 1420 }, { - "Rank": 2, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "CommandName": "Set-PnPSearchSettings", - "Id": 1421, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" + "Rank": 2, + "Id": 1421 }, { - "Rank": 3, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "CommandName": "Set-PnPSearchSettings", - "Id": 1422, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" + "Rank": 3, + "Id": 1422 }, { - "Rank": 4, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "CommandName": "Set-PnPSearchSettings", - "Id": 1423, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" + "Rank": 4, + "Id": 1423 }, { - "Rank": 5, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "CommandName": "Set-PnPSearchSettings", - "Id": 1424, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" + "Rank": 5, + "Id": 1424 }, { - "Rank": 6, + "Command": "Set-PnPSearchSettings -SearchScope Tenant", "CommandName": "Set-PnPSearchSettings", - "Id": 1425, - "Command": "Set-PnPSearchSettings -SearchScope Tenant" + "Rank": 6, + "Id": 1425 }, { - "Rank": 7, + "Command": "Set-PnPSearchSettings -SearchScope Hub", "CommandName": "Set-PnPSearchSettings", - "Id": 1426, - "Command": "Set-PnPSearchSettings -SearchScope Hub" + "Rank": 7, + "Id": 1426 }, { - "Rank": 1, + "Command": "Set-PnPSite -Classification \"HBI\"", "CommandName": "Set-PnPSite", - "Id": 1427, - "Command": "Set-PnPSite -Classification \"HBI\"" + "Rank": 1, + "Id": 1427 }, { - "Rank": 2, + "Command": "Set-PnPSite -Classification $null", "CommandName": "Set-PnPSite", - "Id": 1428, - "Command": "Set-PnPSite -Classification $null" + "Rank": 2, + "Id": 1428 }, { - "Rank": 3, + "Command": "Set-PnPSite -DisableFlows", "CommandName": "Set-PnPSite", - "Id": 1429, - "Command": "Set-PnPSite -DisableFlows" + "Rank": 3, + "Id": 1429 }, { - "Rank": 4, + "Command": "Set-PnPSite -DisableFlows:$false", "CommandName": "Set-PnPSite", - "Id": 1430, - "Command": "Set-PnPSite -DisableFlows:$false" + "Rank": 4, + "Id": 1430 }, { - "Rank": 5, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "CommandName": "Set-PnPSite", - "Id": 1431, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" + "Rank": 5, + "Id": 1431 }, { - "Rank": 6, + "Command": "Set-PnPSite -NoScriptSite $false", "CommandName": "Set-PnPSite", - "Id": 1432, - "Command": "Set-PnPSite -NoScriptSite $false" + "Rank": 6, + "Id": 1432 }, { - "Rank": 7, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "CommandName": "Set-PnPSite", - "Id": 1433, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" + "Rank": 7, + "Id": 1433 }, { - "Rank": 8, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "CommandName": "Set-PnPSite", - "Id": 1434, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" + "Rank": 8, + "Id": 1434 }, { - "Rank": 9, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "CommandName": "Set-PnPSite", - "Id": 1435, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" + "Rank": 9, + "Id": 1435 }, { - "Rank": 10, + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "CommandName": "Set-PnPSite", - "Id": 1436, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" + "Rank": 10, + "Id": 1436 }, { - "Rank": 11, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Id": 1437, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" + "Rank": 11, + "Id": 1437 }, { - "Rank": 12, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Id": 1438, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" + "Rank": 12, + "Id": 1438 }, { - "Rank": 13, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Id": 1439, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" + "Rank": 13, + "Id": 1439 }, { - "Rank": 14, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1440, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" + "Rank": 14, + "Id": 1440 }, { - "Rank": 15, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1441, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" + "Rank": 15, + "Id": 1441 }, { - "Rank": 16, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1442, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" + "Rank": 16, + "Id": 1442 }, { - "Rank": 17, + "Command": "Set-PnPSite -CancelVPForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1443, - "Command": "Set-PnPSite -CancelVPForExistingLibs" + "Rank": 17, + "Id": 1443 }, { - "Rank": 1, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "CommandName": "Set-PnPSiteClassification", - "Id": 1444, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"" + "Rank": 1, + "Id": 1444 }, { - "Rank": 1, + "Command": "Set-PnPSiteClosure -State Open", "CommandName": "Set-PnPSiteClosure", - "Id": 1445, - "Command": "Set-PnPSiteClosure -State Open" + "Rank": 1, + "Id": 1445 }, { - "Rank": 2, + "Command": "Set-PnPSiteClosure -State Closed", "CommandName": "Set-PnPSiteClosure", - "Id": 1446, - "Command": "Set-PnPSiteClosure -State Closed" + "Rank": 2, + "Id": 1446 }, { - "Rank": 1, + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "CommandName": "Set-PnPSiteDesign", - "Id": 1447, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" + "Rank": 1, + "Id": 1447 }, { - "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": 1448, - "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, + "Id": 1448 }, { - "Rank": 1, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "CommandName": "Set-PnPSiteGroup", - "Id": 1449, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" + "Rank": 1, + "Id": 1449 }, { - "Rank": 2, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "CommandName": "Set-PnPSiteGroup", - "Id": 1450, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" + "Rank": 2, + "Id": 1450 }, { - "Rank": 1, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "CommandName": "Set-PnPSitePolicy", - "Id": 1451, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" + "Rank": 1, + "Id": 1451 }, { - "Rank": 1, + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "CommandName": "Set-PnPSiteScript", - "Id": 1452, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "Rank": 1, + "Id": 1452 }, { - "Rank": 1, + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "CommandName": "Set-PnPSiteScriptPackage", - "Id": 1453, - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "Rank": 1, + "Id": 1453 }, { - "Rank": 1, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1454, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" + "Rank": 1, + "Id": 1454 }, { - "Rank": 2, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1455, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" + "Rank": 2, + "Id": 1455 }, { - "Rank": 1, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1456, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" + "Rank": 1, + "Id": 1456 }, { - "Rank": 2, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1457, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" + "Rank": 2, + "Id": 1457 }, { - "Rank": 3, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1458, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "Rank": 3, + "Id": 1458 }, { - "Rank": 4, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1459, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "Rank": 4, + "Id": 1459 }, { - "Rank": 5, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1460, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "Rank": 5, + "Id": 1460 }, { - "Rank": 6, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1461, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "Rank": 6, + "Id": 1461 }, { - "Rank": 1, + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "CommandName": "Set-PnPStorageEntity", - "Id": 1462, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "Rank": 1, + "Id": 1462 }, { - "Rank": 2, + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "CommandName": "Set-PnPStorageEntity", - "Id": 1463, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "Rank": 2, + "Id": 1463 }, { - "Rank": 1, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1464, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Rank": 1, + "Id": 1464 }, { - "Rank": 2, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1465, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Rank": 2, + "Id": 1465 }, { - "Rank": 1, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1466, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Rank": 1, + "Id": 1466 }, { - "Rank": 2, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1467, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Rank": 2, + "Id": 1467 }, { - "Rank": 1, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1468, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" + "Rank": 1, + "Id": 1468 }, { - "Rank": 2, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1469, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" + "Rank": 2, + "Id": 1469 }, { - "Rank": 1, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1470, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" + "Rank": 1, + "Id": 1470 }, { - "Rank": 2, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1471, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" + "Rank": 2, + "Id": 1471 }, { - "Rank": 3, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1472, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" + "Rank": 3, + "Id": 1472 }, { - "Rank": 1, + "Command": "Set-PnPTeamifyPromptHidden", "CommandName": "Set-PnPTeamifyPromptHidden", - "Id": 1473, - "Command": "Set-PnPTeamifyPromptHidden" + "Rank": 1, + "Id": 1473 }, { - "Rank": 1, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "CommandName": "Set-PnPTeamsChannel", - "Id": 1474, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" + "Rank": 1, + "Id": 1474 }, { - "Rank": 2, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "CommandName": "Set-PnPTeamsChannel", - "Id": 1475, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" + "Rank": 2, + "Id": 1475 }, { - "Rank": 1, + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1476, - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" + "Rank": 1, + "Id": 1476 }, { - "Rank": 2, + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1477, - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" + "Rank": 2, + "Id": 1477 }, { - "Rank": 1, + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "CommandName": "Set-PnPTeamsTab", - "Id": 1478, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" + "Rank": 1, + "Id": 1478 }, { - "Rank": 1, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "CommandName": "Set-PnPTeamsTag", - "Id": 1479, - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" + "Rank": 1, + "Id": 1479 }, { - "Rank": 1, + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "CommandName": "Set-PnPTeamsTeam", - "Id": 1480, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" + "Rank": 1, + "Id": 1480 }, { - "Rank": 2, + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "CommandName": "Set-PnPTeamsTeam", - "Id": 1481, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" + "Rank": 2, + "Id": 1481 }, { - "Rank": 3, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "CommandName": "Set-PnPTeamsTeam", - "Id": 1482, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" + "Rank": 3, + "Id": 1482 }, { - "Rank": 4, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "CommandName": "Set-PnPTeamsTeam", - "Id": 1483, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" + "Rank": 4, + "Id": 1483 }, { - "Rank": 1, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1484, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" + "Rank": 1, + "Id": 1484 }, { - "Rank": 2, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1485, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" + "Rank": 2, + "Id": 1485 }, { - "Rank": 3, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1486, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" + "Rank": 3, + "Id": 1486 }, { - "Rank": 1, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "CommandName": "Set-PnPTeamsTeamPicture", - "Id": 1487, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" + "Rank": 1, + "Id": 1487 }, { - "Rank": 1, + "Command": "Set-PnPTemporarilyDisableAppBar $true", "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1488, - "Command": "Set-PnPTemporarilyDisableAppBar $true" + "Rank": 1, + "Id": 1488 }, { - "Rank": 2, + "Command": "Set-PnPTemporarilyDisableAppBar $false", "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1489, - "Command": "Set-PnPTemporarilyDisableAppBar $false" + "Rank": 2, + "Id": 1489 }, { - "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": 1490, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" + "Rank": 1, + "Id": 1490 }, { - "Rank": 2, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "CommandName": "Set-PnPTenant", - "Id": 1491, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" + "Rank": 2, + "Id": 1491 }, { - "Rank": 3, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "CommandName": "Set-PnPTenant", - "Id": 1492, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false" + "Rank": 3, + "Id": 1492 }, { - "Rank": 4, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "CommandName": "Set-PnPTenant", - "Id": 1493, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" + "Rank": 4, + "Id": 1493 }, { - "Rank": 1, + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "CommandName": "Set-PnPTenantAppCatalogUrl", - "Id": 1494, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" + "Rank": 1, + "Id": 1494 }, { - "Rank": 1, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1495, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" + "Rank": 1, + "Id": 1495 }, { - "Rank": 2, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1496, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" + "Rank": 2, + "Id": 1496 }, { - "Rank": 3, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1497, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" + "Rank": 3, + "Id": 1497 }, { - "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": 1498, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" + "Rank": 1, + "Id": 1498 }, { - "Rank": 2, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1499, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" + "Rank": 2, + "Id": 1499 }, { - "Rank": 1, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "CommandName": "Set-PnPTenantSite", - "Id": 1500, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" + "Rank": 1, + "Id": 1500 }, { - "Rank": 2, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "CommandName": "Set-PnPTenantSite", - "Id": 1501, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" + "Rank": 2, + "Id": 1501 }, { - "Rank": 3, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPTenantSite", - "Id": 1502, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" + "Rank": 3, + "Id": 1502 }, { - "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": 1503, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Rank": 4, + "Id": 1503 }, { - "Rank": 5, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "CommandName": "Set-PnPTenantSite", - "Id": 1504, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" + "Rank": 5, + "Id": 1504 }, { - "Rank": 1, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1505, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" + "Rank": 1, + "Id": 1505 }, { - "Rank": 2, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1506, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" + "Rank": 2, + "Id": 1506 }, { - "Rank": 1, + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "CommandName": "Set-PnPTerm", - "Id": 1507, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" + "Rank": 1, + "Id": 1507 }, { - "Rank": 2, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "Set-PnPTerm", - "Id": 1508, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Rank": 2, + "Id": 1508 }, { - "Rank": 3, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "Set-PnPTerm", - "Id": 1509, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Rank": 3, + "Id": 1509 }, { - "Rank": 4, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "CommandName": "Set-PnPTerm", - "Id": 1510, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" + "Rank": 4, + "Id": 1510 }, { - "Rank": 1, + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "CommandName": "Set-PnPTermGroup", - "Id": 1511, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" + "Rank": 1, + "Id": 1511 }, { - "Rank": 1, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "CommandName": "Set-PnPTermSet", - "Id": 1512, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" + "Rank": 1, + "Id": 1512 }, { - "Rank": 2, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "CommandName": "Set-PnPTermSet", - "Id": 1513, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" + "Rank": 2, + "Id": 1513 }, { - "Rank": 3, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "CommandName": "Set-PnPTermSet", - "Id": 1514, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" + "Rank": 3, + "Id": 1514 }, { - "Rank": 1, + "Command": "Set-PnPTheme", "CommandName": "Set-PnPTheme", - "Id": 1515, - "Command": "Set-PnPTheme" + "Rank": 1, + "Id": 1515 }, { - "Rank": 2, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "CommandName": "Set-PnPTheme", - "Id": 1516, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" + "Rank": 2, + "Id": 1516 }, { - "Rank": 3, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "CommandName": "Set-PnPTheme", - "Id": 1517, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" + "Rank": 3, + "Id": 1517 }, { - "Rank": 4, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "CommandName": "Set-PnPTheme", - "Id": 1518, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" + "Rank": 4, + "Id": 1518 }, { - "Rank": 1, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "CommandName": "Set-PnPTraceLog", - "Id": 1519, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" + "Rank": 1, + "Id": 1519 }, { - "Rank": 2, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "CommandName": "Set-PnPTraceLog", - "Id": 1520, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" + "Rank": 2, + "Id": 1520 }, { - "Rank": 3, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "CommandName": "Set-PnPTraceLog", - "Id": 1521, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" + "Rank": 3, + "Id": 1521 }, { - "Rank": 4, + "Command": "Set-PnPTraceLog -Off", "CommandName": "Set-PnPTraceLog", - "Id": 1522, - "Command": "Set-PnPTraceLog -Off" + "Rank": 4, + "Id": 1522 }, { - "Rank": 1, + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "CommandName": "Set-PnPUserOneDriveQuota", - "Id": 1523, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" + "Rank": 1, + "Id": 1523 }, { - "Rank": 1, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "CommandName": "Set-PnPUserProfileProperty", - "Id": 1524, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" + "Rank": 1, + "Id": 1524 }, { - "Rank": 2, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "CommandName": "Set-PnPUserProfileProperty", - "Id": 1525, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" + "Rank": 2, + "Id": 1525 }, { - "Rank": 1, + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "CommandName": "Set-PnPView", - "Id": 1526, - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" + "Rank": 1, + "Id": 1526 }, { - "Rank": 2, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "CommandName": "Set-PnPView", - "Id": 1527, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" + "Rank": 2, + "Id": 1527 }, { - "Rank": 3, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "CommandName": "Set-PnPView", - "Id": 1528, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" + "Rank": 3, + "Id": 1528 }, { - "Rank": 4, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "CommandName": "Set-PnPView", - "Id": 1529, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" + "Rank": 4, + "Id": 1529 }, { - "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": 1530, - "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, + "Id": 1530 }, { - "Rank": 2, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1531, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" + "Rank": 2, + "Id": 1531 }, { - "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": 1532, - "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, + "Id": 1532 }, { - "Rank": 4, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1533, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" + "Rank": 4, + "Id": 1533 }, { - "Rank": 1, + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "CommandName": "Set-PnPWeb", - "Id": 1534, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" + "Rank": 1, + "Id": 1534 }, { - "Rank": 2, + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "CommandName": "Set-PnPWeb", - "Id": 1535, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" + "Rank": 2, + "Id": 1535 }, { - "Rank": 3, + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "CommandName": "Set-PnPWeb", - "Id": 1536, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" + "Rank": 3, + "Id": 1536 }, { - "Rank": 4, + "Command": "Set-PnPWeb -NoCrawl:$true", "CommandName": "Set-PnPWeb", - "Id": 1537, - "Command": "Set-PnPWeb -NoCrawl:$true" + "Rank": 4, + "Id": 1537 }, { - "Rank": 1, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "CommandName": "Set-PnPWebHeader", - "Id": 1538, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" + "Rank": 1, + "Id": 1538 }, { - "Rank": 2, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "CommandName": "Set-PnPWebHeader", - "Id": 1539, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" + "Rank": 2, + "Id": 1539 }, { - "Rank": 3, + "Command": "Set-PnPWebHeader -LogoAlignment Middle", "CommandName": "Set-PnPWebHeader", - "Id": 1540, - "Command": "Set-PnPWebHeader -LogoAlignment Middle" + "Rank": 3, + "Id": 1540 }, { - "Rank": 1, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "CommandName": "Set-PnPWebhookSubscription", - "Id": 1541, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" + "Rank": 1, + "Id": 1541 }, { - "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": 1542, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" + "Rank": 2, + "Id": 1542 }, { - "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": 1543, - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" + "Rank": 1, + "Id": 1543 }, { - "Rank": 1, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Id": 1544, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" + "Rank": 1, + "Id": 1544 }, { - "Rank": 2, + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Id": 1545, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" + "Rank": 2, + "Id": 1545 }, { - "Rank": 3, + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Id": 1546, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" + "Rank": 3, + "Id": 1546 }, { - "Rank": 4, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "CommandName": "Set-PnPWebPermission", - "Id": 1547, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" + "Rank": 4, + "Id": 1547 }, { - "Rank": 1, + "Command": "Set-PnPWebTheme -Theme MyTheme", "CommandName": "Set-PnPWebTheme", - "Id": 1548, - "Command": "Set-PnPWebTheme -Theme MyTheme" + "Rank": 1, + "Id": 1548 }, { - "Rank": 2, + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "CommandName": "Set-PnPWebTheme", - "Id": 1549, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" + "Rank": 2, + "Id": 1549 }, { - "Rank": 1, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "CommandName": "Set-PnPWikiPageContent", - "Id": 1550, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" + "Rank": 1, + "Id": 1550 }, { - "Rank": 1, + "Command": "Submit-PnPSearchQuery -Query \"finance\"", "CommandName": "Submit-PnPSearchQuery", - "Id": 1551, - "Command": "Submit-PnPSearchQuery -Query \"finance\"" + "Rank": 1, + "Id": 1551 }, { - "Rank": 2, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "CommandName": "Submit-PnPSearchQuery", - "Id": 1552, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" + "Rank": 2, + "Id": 1552 }, { - "Rank": 3, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "CommandName": "Submit-PnPSearchQuery", - "Id": 1553, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" + "Rank": 3, + "Id": 1553 }, { - "Rank": 4, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "CommandName": "Submit-PnPSearchQuery", - "Id": 1554, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" + "Rank": 4, + "Id": 1554 }, { - "Rank": 5, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "CommandName": "Submit-PnPSearchQuery", - "Id": 1555, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" + "Rank": 5, + "Id": 1555 }, { - "Rank": 1, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1556, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" + "Rank": 1, + "Id": 1556 }, { - "Rank": 2, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1557, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" + "Rank": 2, + "Id": 1557 }, { - "Rank": 1, + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Sync-PnPAppToTeams", - "Id": 1558, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Id": 1558 }, { - "Rank": 1, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1559, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" + "Rank": 1, + "Id": 1559 }, { - "Rank": 2, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1560, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" + "Rank": 2, + "Id": 1560 }, { - "Rank": 3, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1561, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" + "Rank": 3, + "Id": 1561 }, { - "Rank": 1, + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "CommandName": "Test-PnPListItemIsRecord", - "Id": 1562, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" + "Rank": 1, + "Id": 1562 }, { - "Rank": 1, + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Id": 1563, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" + "Rank": 1, + "Id": 1563 }, { - "Rank": 1, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Test-PnPSite", - "Id": 1564, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Rank": 1, + "Id": 1564 }, { - "Rank": 2, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "CommandName": "Test-PnPSite", - "Id": 1565, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "Rank": 2, + "Id": 1565 }, { - "Rank": 1, + "Command": "Test-PnPTenantTemplate -Template $myTemplate", "CommandName": "Test-PnPTenantTemplate", - "Id": 1566, - "Command": "Test-PnPTenantTemplate -Template $myTemplate" + "Rank": 1, + "Id": 1566 }, { - "Rank": 1, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "CommandName": "Undo-PnPFileCheckedOut", - "Id": 1567, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" + "Rank": 1, + "Id": 1567 }, { - "Rank": 1, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Uninstall-PnPApp", - "Id": 1568, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Id": 1568 }, { - "Rank": 2, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Uninstall-PnPApp", - "Id": 1569, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2, + "Id": 1569 }, { - "Rank": 1, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Unpublish-PnPApp", - "Id": 1570, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Id": 1570 }, { - "Rank": 2, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Unpublish-PnPApp", - "Id": 1571, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2, + "Id": 1571 }, { - "Rank": 1, + "Command": "Unpublish-PnPContentType -ContentType 0x0101", "CommandName": "Unpublish-PnPContentType", - "Id": 1572, - "Command": "Unpublish-PnPContentType -ContentType 0x0101" + "Rank": 1, + "Id": 1572 }, { - "Rank": 1, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1573, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "Rank": 1, + "Id": 1573 }, { - "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": 1574, - "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, + "Id": 1574 }, { - "Rank": 1, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "CommandName": "Unregister-PnPHubSite", - "Id": 1575, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Rank": 1, + "Id": 1575 }, { - "Rank": 1, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Update-PnPApp", - "Id": 1576, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Id": 1576 }, { - "Rank": 2, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Update-PnPApp", - "Id": 1577, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2, + "Id": 1577 }, { - "Rank": 1, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1578, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Rank": 1, + "Id": 1578 }, { - "Rank": 2, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1579, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" + "Rank": 2, + "Id": 1579 }, { - "Rank": 3, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1580, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" + "Rank": 3, + "Id": 1580 }, { - "Rank": 1, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1581, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" + "Rank": 1, + "Id": 1581 }, { - "Rank": 2, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1582, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" + "Rank": 2, + "Id": 1582 }, { - "Rank": 3, + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1583, - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" + "Rank": 3, + "Id": 1583 }, { - "Rank": 1, + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "CommandName": "Update-PnPTeamsApp", - "Id": 1584, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" + "Rank": 1, + "Id": 1584 }, { - "Rank": 1, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Update-PnPTeamsUser", - "Id": 1585, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Rank": 1, + "Id": 1585 }, { - "Rank": 2, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "CommandName": "Update-PnPTeamsUser", - "Id": 1586, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "Rank": 2, + "Id": 1586 }, { - "Rank": 3, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "CommandName": "Update-PnPTeamsUser", - "Id": 1587, - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" + "Rank": 3, + "Id": 1587 }, { - "Rank": 1, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "CommandName": "Update-PnPUserType", - "Id": 1588, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" + "Rank": 1, + "Id": 1588 } ] diff --git a/version.txt b/version.txt index 843b1b6e4..5f256f276 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.87 \ No newline at end of file +2.2.88 \ No newline at end of file From 778bf3782d76d8c4268169639813c465ead26623 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Wed, 4 Oct 2023 22:09:41 +0300 Subject: [PATCH 051/146] Fix #3447 : issue with page scheduling feature. Refactor some code --- CHANGELOG.md | 1 + .../Features/DisablePageScheduling.cs | 6 +- src/Commands/Features/EnablePageScheduling.cs | 6 +- ...softSearchExternalItemPropertyConverter.cs | 65 ------------------- .../Graph/MicrosoftSearch/ExternalItem.cs | 2 +- ...softSearchExternalItemPropertyConverter.cs | 61 +++++++++++++++++ src/Commands/Utilities/PagesUtility.cs | 41 ++++++++++++ 7 files changed, 110 insertions(+), 72 deletions(-) delete mode 100644 src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs create mode 100644 src/Commands/Utilities/Json/MicrosoftSearchExternalItemPropertyConverter.cs create mode 100644 src/Commands/Utilities/PagesUtility.cs diff --git a/CHANGELOG.md b/CHANGELOG.md index db6860891..879504421 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,6 +55,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed `New-PnPTeamsTeam` cmdlet not working well with a managed identity [#3351](https://github.com/pnp/powershell/pull/3351) - Fixed `Copy-PnPFile`, `Copy-PnPFolder` and `Move-PnPFile` to better handle copying or moving operations to OneDrive or Multi-geo environments. [#3245](https://github.com/pnp/powershell/pull/3245) - Fixed `Get-PnPTenantTemplate` not doing anything when the `-SiteUrl` parameter had not been specified. It will now use the currently connected site when the parameter is omitted. [#3431](https://github.com/pnp/powershell/pull/3431) +- Fixed `Enable-PnPPageScheduling` and `Disable-PnPPageScheduling` cmdlets not working due to changes in backend code. ### Changed diff --git a/src/Commands/Features/DisablePageScheduling.cs b/src/Commands/Features/DisablePageScheduling.cs index ca280d1fd..d3256cdb4 100644 --- a/src/Commands/Features/DisablePageScheduling.cs +++ b/src/Commands/Features/DisablePageScheduling.cs @@ -1,6 +1,5 @@ using System.Management.Automation; -using System; -using Microsoft.SharePoint.Client; +using PnP.PowerShell.Commands.Utilities; namespace PnP.PowerShell.Commands.Features { @@ -10,7 +9,8 @@ public class DisablePageScheduling : PnPWebCmdlet { protected override void ExecuteCmdlet() { - CurrentWeb.DeactivateFeature(new Guid("E87CA965-5E07-4A23-B007-DDD4B5AFB9C7")); + var pagesList = PagesUtility.GetModernPagesLibrary(PnPContext.Web); + Utilities.REST.RestHelper.PostAsync(Connection.HttpClient, $"{PnPContext.Web.Url}/_api/sitepages/pagesinlib(guid'{pagesList.Id}')/setscheduling(false)", ClientContext, null, "application/json", "application/json;odata=nometadata").GetAwaiter().GetResult(); } } } diff --git a/src/Commands/Features/EnablePageScheduling.cs b/src/Commands/Features/EnablePageScheduling.cs index 0f8108a02..17d14c449 100644 --- a/src/Commands/Features/EnablePageScheduling.cs +++ b/src/Commands/Features/EnablePageScheduling.cs @@ -1,6 +1,5 @@ using System.Management.Automation; -using System; -using Microsoft.SharePoint.Client; +using PnP.PowerShell.Commands.Utilities; namespace PnP.PowerShell.Commands.Features { @@ -10,7 +9,8 @@ public class EnablePageScheduling : PnPWebCmdlet { protected override void ExecuteCmdlet() { - CurrentWeb.ActivateFeature(new Guid("E87CA965-5E07-4A23-B007-DDD4B5AFB9C7")); + var pagesList = PagesUtility.GetModernPagesLibrary(PnPContext.Web); + Utilities.REST.RestHelper.PostAsync(Connection.HttpClient, $"{PnPContext.Web.Url}/_api/sitepages/pagesinlib(guid'{pagesList.Id}')/setscheduling(true)", ClientContext, null, "application/json", "application/json;odata=nometadata").GetAwaiter().GetResult(); } } } diff --git a/src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs b/src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs deleted file mode 100644 index 32bbdb91e..000000000 --- a/src/Commands/JsonConverters/MicrosoftSearchExternalItemPropertyConverter.cs +++ /dev/null @@ -1,65 +0,0 @@ -using System; -using System.Collections; -using System.Collections.Generic; -using System.Text.Json; -using System.Text.Json.Serialization; - -namespace PnP.PowerShell.Commands.JsonConverters; - -/// -/// Custom JSON converter to convert a Hashtable to the format expected by the Microsoft Search API -/// -/// -internal sealed class MicrosoftSearchExternalItemPropertyConverter : JsonConverter -{ - public override Hashtable Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) - { - var converter = (JsonConverter)options.GetConverter(typeof(Hashtable)); - return converter.Read(ref reader, typeToConvert, options); - } - - public override void Write(Utf8JsonWriter writer, Hashtable hashtable, JsonSerializerOptions options) - { - writer.WriteStartObject(); - foreach(DictionaryEntry value in hashtable) - { - switch(value.Value) - { - case string: - writer.WritePropertyName($"{value.Key}@odata.type"); - writer.WriteStringValue("String"); - - writer.WritePropertyName(value.Key.ToString()); - writer.WriteStringValue(value.Value.ToString()); - break; - - case DateTime dateTime: - writer.WritePropertyName($"{value.Key}@odata.type"); - writer.WriteStringValue("DateTimeOffset"); - - writer.WritePropertyName(value.Key.ToString()); - writer.WriteRawValue($"\"{dateTime:o}\""); - break; - - case IEnumerable ieNumerable: - writer.WritePropertyName($"{value.Key}@odata.type"); - writer.WriteStringValue("Collection(String)"); - - writer.WritePropertyName(value.Key.ToString()); - writer.WriteStartArray(); - foreach(object item in ieNumerable) - { - writer.WriteStringValue(item.ToString()); - } - writer.WriteEndArray(); - break; - - default: - writer.WritePropertyName(value.Key.ToString()); - writer.WriteStringValue(value.Value.ToString()); - break; - } - } - writer.WriteEndObject(); - } -} \ No newline at end of file diff --git a/src/Commands/Model/Graph/MicrosoftSearch/ExternalItem.cs b/src/Commands/Model/Graph/MicrosoftSearch/ExternalItem.cs index 8db193483..6aa20e992 100644 --- a/src/Commands/Model/Graph/MicrosoftSearch/ExternalItem.cs +++ b/src/Commands/Model/Graph/MicrosoftSearch/ExternalItem.cs @@ -19,7 +19,7 @@ public class ExternalItem /// /// The managed properties to provide to Microsoft Search about this external item /// - [JsonConverter(typeof(JsonConverters.MicrosoftSearchExternalItemPropertyConverter))] + [JsonConverter(typeof(Utilities.Json.MicrosoftSearchExternalItemPropertyConverter))] [JsonPropertyName("properties")] public Hashtable Properties { get; set; } diff --git a/src/Commands/Utilities/Json/MicrosoftSearchExternalItemPropertyConverter.cs b/src/Commands/Utilities/Json/MicrosoftSearchExternalItemPropertyConverter.cs new file mode 100644 index 000000000..0e3ce4a24 --- /dev/null +++ b/src/Commands/Utilities/Json/MicrosoftSearchExternalItemPropertyConverter.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections; +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace PnP.PowerShell.Commands.Utilities.Json +{ + internal sealed class MicrosoftSearchExternalItemPropertyConverter: JsonConverter + { + public override Hashtable Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + var converter = (JsonConverter)options.GetConverter(typeof(Hashtable)); + return converter.Read(ref reader, typeToConvert, options); + } + + public override void Write(Utf8JsonWriter writer, Hashtable hashtable, JsonSerializerOptions options) + { + writer.WriteStartObject(); + foreach (DictionaryEntry value in hashtable) + { + switch (value.Value) + { + case string: + writer.WritePropertyName($"{value.Key}@odata.type"); + writer.WriteStringValue("String"); + + writer.WritePropertyName(value.Key.ToString()); + writer.WriteStringValue(value.Value.ToString()); + break; + + case DateTime dateTime: + writer.WritePropertyName($"{value.Key}@odata.type"); + writer.WriteStringValue("DateTimeOffset"); + + writer.WritePropertyName(value.Key.ToString()); + writer.WriteRawValue($"\"{dateTime:o}\""); + break; + + case IEnumerable ieNumerable: + writer.WritePropertyName($"{value.Key}@odata.type"); + writer.WriteStringValue("Collection(String)"); + + writer.WritePropertyName(value.Key.ToString()); + writer.WriteStartArray(); + foreach (object item in ieNumerable) + { + writer.WriteStringValue(item.ToString()); + } + writer.WriteEndArray(); + break; + + default: + writer.WritePropertyName(value.Key.ToString()); + writer.WriteStringValue(value.Value.ToString()); + break; + } + } + writer.WriteEndObject(); + } + } +} diff --git a/src/Commands/Utilities/PagesUtility.cs b/src/Commands/Utilities/PagesUtility.cs new file mode 100644 index 000000000..5730abfd0 --- /dev/null +++ b/src/Commands/Utilities/PagesUtility.cs @@ -0,0 +1,41 @@ +using PnP.Core.Model; +using PnP.Core.Model.SharePoint; +using PnP.Core.QueryModel; +using System; +using System.Linq; +using System.Linq.Expressions; + +namespace PnP.PowerShell.Commands.Utilities +{ + internal static class PagesUtility + { + private static readonly Expression>[] getPagesLibraryExpression = new Expression>[] {p => p.Title, p => p.TemplateType, p => p.Id, + p => p.RootFolder.QueryProperties(p => p.Properties, p => p.ServerRelativeUrl), p => p.Fields }; + internal static IList GetModernPagesLibrary(IWeb web) + { + IList pagesLibrary = null; + var libraries = web.Lists.QueryProperties(getPagesLibraryExpression) + .Where(p => p.TemplateType == ListTemplateType.WebPageLibrary) + .ToListAsync() + .GetAwaiter().GetResult(); + + if (libraries.Count == 1) + { + pagesLibrary = libraries[0]; + } + else + { + foreach (var list in libraries) + { + if (list.IsPropertyAvailable(p => p.Fields) && list.Fields.AsRequested().FirstOrDefault(p => p.InternalName == "CanvasContent1") != null) + { + pagesLibrary = list; + break; + } + } + } + + return pagesLibrary; + } + } +} From 3042b9d3bddd6b57380df3d88236143cf973fce6 Mon Sep 17 00:00:00 2001 From: Jenny Wu Date: Wed, 4 Oct 2023 14:57:48 -0700 Subject: [PATCH 052/146] [FileVersion] Get-PnPSite change for VersionPolicy --- documentation/Get-PnPSite.md | 20 +++++++++++++++++ src/Commands/Site/GetSite.cs | 42 +++++++++++++++++++++++++++++++++--- 2 files changed, 59 insertions(+), 3 deletions(-) diff --git a/documentation/Get-PnPSite.md b/documentation/Get-PnPSite.md index 1a6391626..b648909d0 100644 --- a/documentation/Get-PnPSite.md +++ b/documentation/Get-PnPSite.md @@ -38,6 +38,12 @@ Get-PnPSite -Includes RootWeb,ServerRelativeUrl Gets the current site specifying to include RootWeb and ServerRelativeUrl properties. For the full list of properties see https://learn.microsoft.com/previous-versions/office/sharepoint-server/ee538579(v%3doffice.15) +### EXAMPLE 3 +```powershell +Get-PnPSite -GetVersionPolicy +``` +Get site level version policy settings. + ## PARAMETERS ### -Connection @@ -54,6 +60,20 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -GetVersionPolicy +Get site level version policy settings. + +```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) diff --git a/src/Commands/Site/GetSite.cs b/src/Commands/Site/GetSite.cs index fafd6c303..d5a455123 100644 --- a/src/Commands/Site/GetSite.cs +++ b/src/Commands/Site/GetSite.cs @@ -10,13 +10,49 @@ namespace PnP.PowerShell.Commands.Site [OutputType(typeof(Microsoft.SharePoint.Client.Site))] public class GetSite : PnPRetrievalsCmdlet { + [Parameter(Mandatory = false)] + public SwitchParameter GetVersionPolicy; + protected override void ExecuteCmdlet() { DefaultRetrievalExpressions = new Expression>[] { s => s.Url, s => s.CompatibilityLevel }; var site = ClientContext.Site; - ClientContext.Load(site, RetrievalExpressions); - ClientContext.ExecuteQueryRetry(); - WriteObject(site); + + if (ParameterSpecified(nameof(GetVersionPolicy))) + { + site.EnsureProperties(s => s.Url, s => s.VersionPolicyForNewLibrariesTemplate, s => s.VersionPolicyForNewLibrariesTemplate.VersionPolicies); + + var s = new PSObject(); + s.Properties.Add(new PSVariableProperty(new PSVariable("Url", site.Url))); + + if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.ServerObjectIsNull == true) + { + s.Properties.Add(new PSVariableProperty(new PSVariable("VersionPolicy", "No Site Level Policy Set"))); + } + else + { + site.EnsureProperties(s => s.VersionPolicyForNewLibrariesTemplate, s => s.VersionPolicyForNewLibrariesTemplate.MajorVersionLimit, s => s.VersionPolicyForNewLibrariesTemplate.VersionPolicies); + + s.Properties.Add(new PSVariableProperty(new PSVariable("DefaultTrimMode", site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode))); + + if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode != VersionPolicyTrimMode.AutoExpiration) + { + if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode == VersionPolicyTrimMode.ExpireAfter) + { + s.Properties.Add(new PSVariableProperty(new PSVariable("DefaultExpireAfterDays", site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultExpireAfterDays))); + } + s.Properties.Add(new PSVariableProperty(new PSVariable("MajorVersionLimit", site.VersionPolicyForNewLibrariesTemplate.MajorVersionLimit))); + } + } + + WriteObject(s); + } + else + { + ClientContext.Load(site, RetrievalExpressions); + ClientContext.ExecuteQueryRetry(); + WriteObject(site); + } } } } From 8af971fa1eabea865ac8891c80ad1040ac116d13 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Thu, 5 Oct 2023 02:40:35 +0000 Subject: [PATCH 053/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6352 ++++++++--------- version.txt | 2 +- 3 files changed, 3178 insertions(+), 3178 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index ce936846b..1cefb3e39 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -f61904701f6c70c6ac3e1caba1a5d8556d785226 \ No newline at end of file +77ebb07449a7d482d5ee96f6506cfd28f901d2f7 \ 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 59d78c5a6..5c426a932 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9530 +1,9530 @@ [ { "Command": "Add-PnPAlert -List \"Demo List\"", - "CommandName": "Add-PnPAlert", "Rank": 1, - "Id": 1 + "Id": 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)", - "CommandName": "Add-PnPAlert", "Rank": 2, - "Id": 2 + "Id": 2, + "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": 3, - "Id": 3 + "Id": 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))", - "CommandName": "Add-PnPAlert", "Rank": 4, - "Id": 4 + "Id": 4, + "CommandName": "Add-PnPAlert" }, { "Command": "Add-PnPApp -Path ./myapp.sppkg", - "CommandName": "Add-PnPApp", "Rank": 1, - "Id": 5 + "Id": 5, + "CommandName": "Add-PnPApp" }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "CommandName": "Add-PnPApp", "Rank": 2, - "Id": 6 + "Id": 6, + "CommandName": "Add-PnPApp" }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "CommandName": "Add-PnPApp", "Rank": 3, - "Id": 7 + "Id": 7, + "CommandName": "Add-PnPApp" }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "CommandName": "Add-PnPApp", "Rank": 4, - "Id": 8 + "Id": 8, + "CommandName": "Add-PnPApp" }, { "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", - "CommandName": "Add-PnPApplicationCustomizer", "Rank": 1, - "Id": 9 + "Id": 9, + "CommandName": "Add-PnPApplicationCustomizer" }, { "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 1, - "Id": 10 + "Id": 10, + "CommandName": "Add-PnPAvailableSiteClassification" }, { "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 2, - "Id": 11 + "Id": 11, + "CommandName": "Add-PnPAvailableSiteClassification" }, { "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 1, - "Id": 12 + "Id": 12, + "CommandName": "Add-PnPAzureADGroupMember" }, { "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 2, - "Id": 13 + "Id": 13, + "CommandName": "Add-PnPAzureADGroupMember" }, { "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 3, - "Id": 14 + "Id": 14, + "CommandName": "Add-PnPAzureADGroupMember" }, { "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 1, - "Id": 15 + "Id": 15, + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 2, - "Id": 16 + "Id": 16, + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 3, - "Id": 17 + "Id": 17, + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 1, - "Id": 18 + "Id": 18, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 2, - "Id": 19 + "Id": 19, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "CommandName": "Add-PnPContentType", "Rank": 1, - "Id": 20 + "Id": 20, + "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": 2, - "Id": 21 + "Id": 21, + "CommandName": "Add-PnPContentType" }, { "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "CommandName": "Add-PnPContentType", "Rank": 3, - "Id": 22 + "Id": 22, + "CommandName": "Add-PnPContentType" }, { "Command": "Add-PnPContentType -Name \"Project Item\"", - "CommandName": "Add-PnPContentType", "Rank": 4, - "Id": 23 + "Id": 23, + "CommandName": "Add-PnPContentType" }, { "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "CommandName": "Add-PnPContentType", "Rank": 5, - "Id": 24 + "Id": 24, + "CommandName": "Add-PnPContentType" }, { "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 1, - "Id": 25 + "Id": 25, + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 2, - "Id": 26 + "Id": 26, + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 1, - "Id": 27 + "Id": 27, + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 2, - "Id": 28 + "Id": 28, + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "CommandName": "Add-PnPContentTypeToList", "Rank": 1, - "Id": 29 + "Id": 29, + "CommandName": "Add-PnPContentTypeToList" }, { "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", "Rank": 1, - "Id": 30 + "Id": 30, + "CommandName": "Add-PnPCustomAction" }, { "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 1, - "Id": 31 + "Id": 31, + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 2, - "Id": 32 + "Id": 32, + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "CommandName": "Add-PnPDocumentSet", "Rank": 1, - "Id": 33 + "Id": 33, + "CommandName": "Add-PnPDocumentSet" }, { "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", - "CommandName": "Add-PnPEventReceiver", "Rank": 1, - "Id": 34 + "Id": 34, + "CommandName": "Add-PnPEventReceiver" }, { "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "CommandName": "Add-PnPEventReceiver", "Rank": 2, - "Id": 35 + "Id": 35, + "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": 3, - "Id": 36 + "Id": 36, + "CommandName": "Add-PnPEventReceiver" }, { "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", - "CommandName": "Add-PnPEventReceiver", "Rank": 4, - "Id": 37 + "Id": 37, + "CommandName": "Add-PnPEventReceiver" }, { "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "CommandName": "Add-PnPField", "Rank": 1, - "Id": 38 + "Id": 38, + "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": 2, - "Id": 39 + "Id": 39, + "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": 3, - "Id": 40 + "Id": 40, + "CommandName": "Add-PnPField" }, { "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "CommandName": "Add-PnPField", "Rank": 4, - "Id": 41 + "Id": 41, + "CommandName": "Add-PnPField" }, { "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "CommandName": "Add-PnPField", "Rank": 5, - "Id": 42 + "Id": 42, + "CommandName": "Add-PnPField" }, { "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "CommandName": "Add-PnPField", "Rank": 6, - "Id": 43 + "Id": 43, + "CommandName": "Add-PnPField" }, { "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Add-PnPFieldToContentType", "Rank": 1, - "Id": 44 + "Id": 44, + "CommandName": "Add-PnPFieldToContentType" }, { "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "CommandName": "Add-PnPFile", "Rank": 1, - "Id": 45 + "Id": 45, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "CommandName": "Add-PnPFile", "Rank": 2, - "Id": 46 + "Id": 46, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", "Rank": 3, - "Id": 47 + "Id": 47, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", "Rank": 4, - "Id": 48 + "Id": 48, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", "Rank": 5, - "Id": 49 + "Id": 49, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "CommandName": "Add-PnPFile", "Rank": 6, - "Id": 50 + "Id": 50, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "CommandName": "Add-PnPFile", "Rank": 7, - "Id": 51 + "Id": 51, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "CommandName": "Add-PnPFile", "Rank": 8, - "Id": 52 + "Id": 52, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 1, - "Id": 53 + "Id": 53, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 2, - "Id": 54 + "Id": 54, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 3, - "Id": 55 + "Id": 55, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 1, - "Id": 56 + "Id": 56, + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 2, - "Id": 57 + "Id": 57, + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "CommandName": "Add-PnPFileSharingInvite", "Rank": 1, - "Id": 58 + "Id": 58, + "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": 2, - "Id": 59 + "Id": 59, + "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-PnPFileSharingInvite", "Rank": 3, - "Id": 60 + "Id": 60, + "CommandName": "Add-PnPFileSharingInvite" }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 1, - "Id": 61 + "Id": 61, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 2, - "Id": 62 + "Id": 62, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 3, - "Id": 63 + "Id": 63, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 4, - "Id": 64 + "Id": 64, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 5, - "Id": 65 + "Id": 65, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFileUserSharingLink", "Rank": 1, - "Id": 66 + "Id": 66, + "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-PnPFileUserSharingLink", "Rank": 2, - "Id": 67 + "Id": 67, + "CommandName": "Add-PnPFileUserSharingLink" }, { "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit", - "CommandName": "Add-PnPFlowOwner", "Rank": 1, - "Id": 68 + "Id": 68, + "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": 2, - "Id": 69 + "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 CanViewWithShare", - "CommandName": "Add-PnPFlowOwner", "Rank": 3, - "Id": 70 + "Id": 70, + "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-PnPFlowOwner", "Rank": 4, - "Id": 71 + "Id": 71, + "CommandName": "Add-PnPFlowOwner" }, { "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Add-PnPFolder", "Rank": 1, - "Id": 72 + "Id": 72, + "CommandName": "Add-PnPFolder" }, { "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFolder", "Rank": 2, - "Id": 73 + "Id": 73, + "CommandName": "Add-PnPFolder" }, { "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "CommandName": "Add-PnPFolder", "Rank": 3, - "Id": 74 + "Id": 74, + "CommandName": "Add-PnPFolder" }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 1, - "Id": 75 + "Id": 75, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 2, - "Id": 76 + "Id": 76, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 3, - "Id": 77 + "Id": 77, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 1, - "Id": 78 + "Id": 78, + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 2, - "Id": 79 + "Id": 79, + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "CommandName": "Add-PnPFolderSharingInvite", "Rank": 1, - "Id": 80 + "Id": 80, + "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": 2, - "Id": 81 + "Id": 81, + "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-PnPFolderSharingInvite", "Rank": 3, - "Id": 82 + "Id": 82, + "CommandName": "Add-PnPFolderSharingInvite" }, { "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 1, - "Id": 83 + "Id": 83, + "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-PnPFolderUserSharingLink", "Rank": 2, - "Id": 84 + "Id": 84, + "CommandName": "Add-PnPFolderUserSharingLink" }, { "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Add-PnPGroupMember", "Rank": 1, - "Id": 85 + "Id": 85, + "CommandName": "Add-PnPGroupMember" }, { "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "CommandName": "Add-PnPGroupMember", "Rank": 2, - "Id": 86 + "Id": 86, + "CommandName": "Add-PnPGroupMember" }, { "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "CommandName": "Add-PnPHtmlPublishingPageLayout", "Rank": 1, - "Id": 87 + "Id": 87, + "CommandName": "Add-PnPHtmlPublishingPageLayout" }, { "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "CommandName": "Add-PnPHubSiteAssociation", "Rank": 1, - "Id": 88 + "Id": 88, + "CommandName": "Add-PnPHubSiteAssociation" }, { "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 1, - "Id": 89 + "Id": 89, + "CommandName": "Add-PnPHubToHubAssociation" }, { "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 2, - "Id": 90 + "Id": 90, + "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-PnPHubToHubAssociation", "Rank": 3, - "Id": 91 + "Id": 91, + "CommandName": "Add-PnPHubToHubAssociation" }, { "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 1, - "Id": 92 + "Id": 92, + "CommandName": "Add-PnPJavaScriptBlock" }, { "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 2, - "Id": 93 + "Id": 93, + "CommandName": "Add-PnPJavaScriptBlock" }, { "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptLink", "Rank": 1, - "Id": 94 + "Id": 94, + "CommandName": "Add-PnPJavaScriptLink" }, { "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "CommandName": "Add-PnPJavaScriptLink", "Rank": 2, - "Id": 95 + "Id": 95, + "CommandName": "Add-PnPJavaScriptLink" }, { "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "CommandName": "Add-PnPListDesign", "Rank": 1, - "Id": 96 + "Id": 96, + "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-PnPListDesign", "Rank": 2, - "Id": 97 + "Id": 97, + "CommandName": "Add-PnPListDesign" }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 1, - "Id": 98 + "Id": 98, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 2, - "Id": 99 + "Id": 99, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 3, - "Id": 100 + "Id": 100, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Add-PnPListItem", "Rank": 1, - "Id": 101 + "Id": 101, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Add-PnPListItem", "Rank": 2, - "Id": 102 + "Id": 102, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "CommandName": "Add-PnPListItem", "Rank": 3, - "Id": 103 + "Id": 103, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "CommandName": "Add-PnPListItem", "Rank": 4, - "Id": 104 + "Id": 104, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "CommandName": "Add-PnPListItem", "Rank": 5, - "Id": 105 + "Id": 105, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "CommandName": "Add-PnPListItemAttachment", "Rank": 1, - "Id": 106 + "Id": 106, + "CommandName": "Add-PnPListItemAttachment" }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "CommandName": "Add-PnPListItemAttachment", "Rank": 2, - "Id": 107 + "Id": 107, + "CommandName": "Add-PnPListItemAttachment" }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "CommandName": "Add-PnPListItemAttachment", "Rank": 3, - "Id": 108 + "Id": 108, + "CommandName": "Add-PnPListItemAttachment" }, { "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "CommandName": "Add-PnPListItemComment", "Rank": 1, - "Id": 109 + "Id": 109, + "CommandName": "Add-PnPListItemComment" }, { "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "CommandName": "Add-PnPMasterPage", "Rank": 1, - "Id": 110 + "Id": 110, + "CommandName": "Add-PnPMasterPage" }, { "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 1, - "Id": 111 + "Id": 111, + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 2, - "Id": 112 + "Id": 112, + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 1, - "Id": 113 + "Id": 113, + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 2, - "Id": 114 + "Id": 114, + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 1, - "Id": 115 + "Id": 115, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 2, - "Id": 116 + "Id": 116, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 3, - "Id": 117 + "Id": 117, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "CommandName": "Add-PnPNavigationNode", "Rank": 1, - "Id": 118 + "Id": 118, + "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": 2, - "Id": 119 + "Id": 119, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "CommandName": "Add-PnPNavigationNode", "Rank": 3, - "Id": 120 + "Id": 120, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "CommandName": "Add-PnPNavigationNode", "Rank": 4, - "Id": 121 + "Id": 121, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "CommandName": "Add-PnPNavigationNode", "Rank": 5, - "Id": 122 + "Id": 122, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "CommandName": "Add-PnPNavigationNode", "Rank": 6, - "Id": 123 + "Id": 123, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "CommandName": "Add-PnPNavigationNode", "Rank": 7, - "Id": 124 + "Id": 124, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "CommandName": "Add-PnPNavigationNode", "Rank": 8, - "Id": 125 + "Id": 125, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 1, - "Id": 126 + "Id": 126, + "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": 2, - "Id": 127 + "Id": 127, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 3, - "Id": 128 + "Id": 128, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "CommandName": "Add-PnPOrgNewsSite", "Rank": 1, - "Id": 129 + "Id": 129, + "CommandName": "Add-PnPOrgNewsSite" }, { "Command": "Add-PnPPage -Name \"NewPage\"", - "CommandName": "Add-PnPPage", "Rank": 1, - "Id": 130 + "Id": 130, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "CommandName": "Add-PnPPage", "Rank": 2, - "Id": 131 + "Id": 131, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "CommandName": "Add-PnPPage", "Rank": 3, - "Id": 132 + "Id": 132, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "CommandName": "Add-PnPPage", "Rank": 4, - "Id": 133 + "Id": 133, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "CommandName": "Add-PnPPage", "Rank": 5, - "Id": 134 + "Id": 134, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "CommandName": "Add-PnPPage", "Rank": 6, - "Id": 135 + "Id": 135, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Add-PnPPage", "Rank": 7, - "Id": 136 + "Id": 136, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "CommandName": "Add-PnPPage", "Rank": 8, - "Id": 137 + "Id": 137, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Add-PnPPage", "Rank": 9, - "Id": 138 + "Id": 138, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Add-PnPPage", "Rank": 10, - "Id": 139 + "Id": 139, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "CommandName": "Add-PnPPageImageWebPart", "Rank": 1, - "Id": 140 + "Id": 140, + "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-PnPPageImageWebPart", "Rank": 2, - "Id": 141 + "Id": 141, + "CommandName": "Add-PnPPageImageWebPart" }, { "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "CommandName": "Add-PnPPageSection", "Rank": 1, - "Id": 142 + "Id": 142, + "CommandName": "Add-PnPPageSection" }, { "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "CommandName": "Add-PnPPageSection", "Rank": 2, - "Id": 143 + "Id": 143, + "CommandName": "Add-PnPPageSection" }, { "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "CommandName": "Add-PnPPageTextPart", "Rank": 1, - "Id": 144 + "Id": 144, + "CommandName": "Add-PnPPageTextPart" }, { "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "CommandName": "Add-PnPPageTextPart", "Rank": 2, - "Id": 145 + "Id": 145, + "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-PnPPageTextPart", "Rank": 3, - "Id": 146 + "Id": 146, + "CommandName": "Add-PnPPageTextPart" }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "CommandName": "Add-PnPPageWebPart", "Rank": 1, - "Id": 147 + "Id": 147, + "CommandName": "Add-PnPPageWebPart" }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "CommandName": "Add-PnPPageWebPart", "Rank": 2, - "Id": 148 + "Id": 148, + "CommandName": "Add-PnPPageWebPart" }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "CommandName": "Add-PnPPageWebPart", "Rank": 3, - "Id": 149 + "Id": 149, + "CommandName": "Add-PnPPageWebPart" }, { "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "CommandName": "Add-PnPPlannerBucket", "Rank": 1, - "Id": 150 + "Id": 150, + "CommandName": "Add-PnPPlannerBucket" }, { "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "CommandName": "Add-PnPPlannerBucket", "Rank": 2, - "Id": 151 + "Id": 151, + "CommandName": "Add-PnPPlannerBucket" }, { "Command": "Add-PnPPlannerRoster", - "CommandName": "Add-PnPPlannerRoster", "Rank": 1, - "Id": 152 + "Id": 152, + "CommandName": "Add-PnPPlannerRoster" }, { "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPPlannerRosterMember", "Rank": 1, - "Id": 153 + "Id": 153, + "CommandName": "Add-PnPPlannerRosterMember" }, { "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "CommandName": "Add-PnPPlannerTask", "Rank": 1, - "Id": 154 + "Id": 154, + "CommandName": "Add-PnPPlannerTask" }, { "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "CommandName": "Add-PnPPlannerTask", "Rank": 2, - "Id": 155 + "Id": 155, + "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-PnPPlannerTask", "Rank": 3, - "Id": 156 + "Id": 156, + "CommandName": "Add-PnPPlannerTask" }, { "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Add-PnPPublishingImageRendition", "Rank": 1, - "Id": 157 + "Id": 157, + "CommandName": "Add-PnPPublishingImageRendition" }, { "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "CommandName": "Add-PnPPublishingPage", "Rank": 1, - "Id": 158 + "Id": 158, + "CommandName": "Add-PnPPublishingPage" }, { "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "CommandName": "Add-PnPPublishingPage", "Rank": 2, - "Id": 159 + "Id": 159, + "CommandName": "Add-PnPPublishingPage" }, { "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "CommandName": "Add-PnPPublishingPageLayout", "Rank": 1, - "Id": 160 + "Id": 160, + "CommandName": "Add-PnPPublishingPageLayout" }, { "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "CommandName": "Add-PnPRoleDefinition", "Rank": 1, - "Id": 161 + "Id": 161, + "CommandName": "Add-PnPRoleDefinition" }, { "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "CommandName": "Add-PnPRoleDefinition", "Rank": 2, - "Id": 162 + "Id": 162, + "CommandName": "Add-PnPRoleDefinition" }, { "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "CommandName": "Add-PnPRoleDefinition", "Rank": 3, - "Id": 163 + "Id": 163, + "CommandName": "Add-PnPRoleDefinition" }, { "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 1, - "Id": 164 + "Id": 164, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 2, - "Id": 165 + "Id": 165, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 3, - "Id": 166 + "Id": 166, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Command": "Add-PnPSiteCollectionAppCatalog", - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, - "Id": 167 + "Id": 167, + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 2, - "Id": 168 + "Id": 168, + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { "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": 1, - "Id": 169 + "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 -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png", - "CommandName": "Add-PnPSiteDesign", "Rank": 2, - "Id": 170 + "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/my images/logo.png\"", - "CommandName": "Add-PnPSiteDesign", "Rank": 3, - "Id": 171 + "Id": 171, + "CommandName": "Add-PnPSiteDesign" }, { "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 1, - "Id": 172 + "Id": 172, + "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": 2, - "Id": 173 + "Id": 173, + "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-PnPSiteDesignFromWeb", "Rank": 3, - "Id": 174 + "Id": 174, + "CommandName": "Add-PnPSiteDesignFromWeb" }, { "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Add-PnPSiteDesignTask", "Rank": 1, - "Id": 175 + "Id": 175, + "CommandName": "Add-PnPSiteDesignTask" }, { "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "CommandName": "Add-PnPSiteDesignTask", "Rank": 2, - "Id": 176 + "Id": 176, + "CommandName": "Add-PnPSiteDesignTask" }, { "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "CommandName": "Add-PnPSiteScript", "Rank": 1, - "Id": 177 + "Id": 177, + "CommandName": "Add-PnPSiteScript" }, { "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "CommandName": "Add-PnPSiteScriptPackage", "Rank": 1, - "Id": 178 + "Id": 178, + "CommandName": "Add-PnPSiteScriptPackage" }, { "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "CommandName": "Add-PnPSiteTemplate", "Rank": 1, - "Id": 179 + "Id": 179, + "CommandName": "Add-PnPSiteTemplate" }, { "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "CommandName": "Add-PnPStoredCredential", "Rank": 1, - "Id": 180 + "Id": 180, + "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": 2, - "Id": 181 + "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)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"", - "CommandName": "Add-PnPStoredCredential", "Rank": 3, - "Id": 182 + "Id": 182, + "CommandName": "Add-PnPStoredCredential" }, { "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "CommandName": "Add-PnPTaxonomyField", "Rank": 1, - "Id": 183 + "Id": 183, + "CommandName": "Add-PnPTaxonomyField" }, { "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "CommandName": "Add-PnPTaxonomyField", "Rank": 2, - "Id": 184 + "Id": 184, + "CommandName": "Add-PnPTaxonomyField" }, { "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "CommandName": "Add-PnPTeamsChannel", "Rank": 1, - "Id": 185 + "Id": 185, + "CommandName": "Add-PnPTeamsChannel" }, { "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "CommandName": "Add-PnPTeamsChannel", "Rank": 2, - "Id": 186 + "Id": 186, + "CommandName": "Add-PnPTeamsChannel" }, { "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "CommandName": "Add-PnPTeamsChannel", "Rank": 3, - "Id": 187 + "Id": 187, + "CommandName": "Add-PnPTeamsChannel" }, { "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "CommandName": "Add-PnPTeamsChannel", "Rank": 4, - "Id": 188 + "Id": 188, + "CommandName": "Add-PnPTeamsChannel" }, { "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", - "CommandName": "Add-PnpTeamsChannelUser", "Rank": 1, - "Id": 189 + "Id": 189, + "CommandName": "Add-PnpTeamsChannelUser" }, { "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "CommandName": "Add-PnpTeamsChannelUser", "Rank": 2, - "Id": 190 + "Id": 190, + "CommandName": "Add-PnpTeamsChannelUser" }, { "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", - "CommandName": "Add-PnPTeamsTab", "Rank": 1, - "Id": 191 + "Id": 191, + "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": 2, - "Id": 192 + "Id": 192, + "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": 3, - "Id": 193 + "Id": 193, + "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-PnPTeamsTab", "Rank": 4, - "Id": 194 + "Id": 194, + "CommandName": "Add-PnPTeamsTab" }, { "Command": "Add-PnPTeamsTeam", - "CommandName": "Add-PnPTeamsTeam", "Rank": 1, - "Id": 195 + "Id": 195, + "CommandName": "Add-PnPTeamsTeam" }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Add-PnPTeamsUser", "Rank": 1, - "Id": 196 + "Id": 196, + "CommandName": "Add-PnPTeamsUser" }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Add-PnPTeamsUser", "Rank": 2, - "Id": 197 + "Id": 197, + "CommandName": "Add-PnPTeamsUser" }, { "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "CommandName": "Add-PnPTeamsUser", "Rank": 3, - "Id": 198 + "Id": 198, + "CommandName": "Add-PnPTeamsUser" }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "CommandName": "Add-PnPTeamsUser", "Rank": 4, - "Id": 199 + "Id": 199, + "CommandName": "Add-PnPTeamsUser" }, { "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Add-PnPTenantCdnOrigin", "Rank": 1, - "Id": 200 + "Id": 200, + "CommandName": "Add-PnPTenantCdnOrigin" }, { "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequence", "Rank": 1, - "Id": 201 + "Id": 201, + "CommandName": "Add-PnPTenantSequence" }, { "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequenceSite", "Rank": 1, - "Id": 202 + "Id": 202, + "CommandName": "Add-PnPTenantSequenceSite" }, { "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "CommandName": "Add-PnPTenantSequenceSubSite", "Rank": 1, - "Id": 203 + "Id": 203, + "CommandName": "Add-PnPTenantSequenceSubSite" }, { "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "CommandName": "Add-PnPTermToTerm", "Rank": 1, - "Id": 204 + "Id": 204, + "CommandName": "Add-PnPTermToTerm" }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "CommandName": "Add-PnPView", "Rank": 1, - "Id": 205 + "Id": 205, + "CommandName": "Add-PnPView" }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "CommandName": "Add-PnPView", "Rank": 2, - "Id": 206 + "Id": 206, + "CommandName": "Add-PnPView" }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "CommandName": "Add-PnPView", "Rank": 3, - "Id": 207 + "Id": 207, + "CommandName": "Add-PnPView" }, { "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": 1, - "Id": 208 + "Id": 208, + "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": 2, - "Id": 209 + "Id": 209, + "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-PnPVivaConnectionsDashboardACE", "Rank": 3, - "Id": 210 + "Id": 210, + "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "CommandName": "Add-PnPWebhookSubscription", "Rank": 1, - "Id": 211 + "Id": 211, + "CommandName": "Add-PnPWebhookSubscription" }, { "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "CommandName": "Add-PnPWebhookSubscription", "Rank": 2, - "Id": 212 + "Id": 212, + "CommandName": "Add-PnPWebhookSubscription" }, { "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", - "CommandName": "Add-PnPWebhookSubscription", "Rank": 3, - "Id": 213 + "Id": 213, + "CommandName": "Add-PnPWebhookSubscription" }, { "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 1, - "Id": 214 + "Id": 214, + "CommandName": "Add-PnPWebPartToWebPartPage" }, { "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 2, - "Id": 215 + "Id": 215, + "CommandName": "Add-PnPWebPartToWebPartPage" }, { "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 1, - "Id": 216 + "Id": 216, + "CommandName": "Add-PnPWebPartToWikiPage" }, { "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 2, - "Id": 217 + "Id": 217, + "CommandName": "Add-PnPWebPartToWikiPage" }, { "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "CommandName": "Add-PnPWikiPage", "Rank": 1, - "Id": 218 + "Id": 218, + "CommandName": "Add-PnPWikiPage" }, { "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupMember", "Rank": 1, - "Id": 219 + "Id": 219, + "CommandName": "Clear-PnPAzureADGroupMember" }, { "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupOwner", "Rank": 1, - "Id": 220 + "Id": 220, + "CommandName": "Clear-PnPAzureADGroupOwner" }, { "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 1, - "Id": 221 + "Id": 221, + "CommandName": "Clear-PnPDefaultColumnValues" }, { "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 2, - "Id": 222 + "Id": 222, + "CommandName": "Clear-PnPDefaultColumnValues" }, { "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Clear-PnPListItemAsRecord", "Rank": 1, - "Id": 223 + "Id": 223, + "CommandName": "Clear-PnPListItemAsRecord" }, { "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupMember", "Rank": 1, - "Id": 224 + "Id": 224, + "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Rank": 1, - "Id": 225 + "Id": 225, + "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 1, - "Id": 226 + "Id": 226, + "CommandName": "Clear-PnpRecycleBinItem" }, { "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 2, - "Id": 227 + "Id": 227, + "CommandName": "Clear-PnpRecycleBinItem" }, { "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 3, - "Id": 228 + "Id": 228, + "CommandName": "Clear-PnpRecycleBinItem" }, { "Command": "Clear-PnPTenantAppCatalogUrl", - "CommandName": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, - "Id": 229 + "Id": 229, + "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 1, - "Id": 230 + "Id": 230, + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 2, - "Id": 231 + "Id": 231, + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", - "CommandName": "Connect-PnPOnline", "Rank": 1, - "Id": 232 + "Id": 232, + "CommandName": "Connect-PnPOnline" }, { "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 1, - "Id": 233 + "Id": 233, + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 2, - "Id": 234 + "Id": 234, + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { "Command": "Convert-PnPSiteTemplate -Path template.xml", - "CommandName": "Convert-PnPSiteTemplate", "Rank": 1, - "Id": 235 + "Id": 235, + "CommandName": "Convert-PnPSiteTemplate" }, { "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "CommandName": "Convert-PnPSiteTemplate", "Rank": 2, - "Id": 236 + "Id": 236, + "CommandName": "Convert-PnPSiteTemplate" }, { "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "CommandName": "Convert-PnPSiteTemplate", "Rank": 3, - "Id": 237 + "Id": 237, + "CommandName": "Convert-PnPSiteTemplate" }, { "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 1, - "Id": 238 + "Id": 238, + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 2, - "Id": 239 + "Id": 239, + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", "Rank": 1, - "Id": 240 + "Id": 240, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "CommandName": "ConvertTo-PnPPage", "Rank": 2, - "Id": 241 + "Id": 241, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "CommandName": "ConvertTo-PnPPage", "Rank": 3, - "Id": 242 + "Id": 242, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "CommandName": "ConvertTo-PnPPage", "Rank": 4, - "Id": 243 + "Id": 243, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", "Rank": 5, - "Id": 244 + "Id": 244, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "CommandName": "ConvertTo-PnPPage", "Rank": 6, - "Id": 245 + "Id": 245, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", "Rank": 7, - "Id": 246 + "Id": 246, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", "Rank": 8, - "Id": 247 + "Id": 247, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", "Rank": 9, - "Id": 248 + "Id": 248, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "CommandName": "ConvertTo-PnPPage", "Rank": 10, - "Id": 249 + "Id": 249, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "CommandName": "ConvertTo-PnPPage", "Rank": 11, - "Id": 250 + "Id": 250, + "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": 12, - "Id": 251 + "Id": 251, + "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": 13, - "Id": 252 + "Id": 252, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "CommandName": "ConvertTo-PnPPage", "Rank": 14, - "Id": 253 + "Id": 253, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", "Rank": 1, - "Id": 254 + "Id": 254, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFile", "Rank": 2, - "Id": 255 + "Id": 255, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFile", "Rank": 3, - "Id": 256 + "Id": 256, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", "Rank": 4, - "Id": 257 + "Id": 257, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFile", "Rank": 5, - "Id": 258 + "Id": 258, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFile", "Rank": 6, - "Id": 259 + "Id": 259, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFile", "Rank": 7, - "Id": 260 + "Id": 260, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", "Rank": 8, - "Id": 261 + "Id": 261, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", "Rank": 9, - "Id": 262 + "Id": 262, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFile", "Rank": 10, - "Id": 263 + "Id": 263, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", "Rank": 1, - "Id": 264 + "Id": 264, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFolder", "Rank": 2, - "Id": 265 + "Id": 265, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFolder", "Rank": 3, - "Id": 266 + "Id": 266, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", "Rank": 4, - "Id": 267 + "Id": 267, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFolder", "Rank": 5, - "Id": 268 + "Id": 268, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFolder", "Rank": 6, - "Id": 269 + "Id": 269, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFolder", "Rank": 7, - "Id": 270 + "Id": 270, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", "Rank": 8, - "Id": 271 + "Id": 271, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", "Rank": 9, - "Id": 272 + "Id": 272, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFolder", "Rank": 10, - "Id": 273 + "Id": 273, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "CommandName": "Copy-PnPItemProxy", "Rank": 1, - "Id": 274 + "Id": 274, + "CommandName": "Copy-PnPItemProxy" }, { "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "CommandName": "Copy-PnPList", "Rank": 1, - "Id": 275 + "Id": 275, + "CommandName": "Copy-PnPList" }, { "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "CommandName": "Copy-PnPList", "Rank": 2, - "Id": 276 + "Id": 276, + "CommandName": "Copy-PnPList" }, { "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "CommandName": "Copy-PnPList", "Rank": 3, - "Id": 277 + "Id": 277, + "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-PnPList", "Rank": 4, - "Id": 278 + "Id": 278, + "CommandName": "Copy-PnPList" }, { "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "CommandName": "Copy-PnPTeamsTeam", "Rank": 1, - "Id": 279 + "Id": 279, + "CommandName": "Copy-PnPTeamsTeam" }, { "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "CommandName": "Copy-PnPTeamsTeam", "Rank": 2, - "Id": 280 + "Id": 280, + "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": 3, - "Id": 281 + "Id": 281, + "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": "Copy-PnPTeamsTeam", "Rank": 4, - "Id": 282 + "Id": 282, + "CommandName": "Copy-PnPTeamsTeam" }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Disable-PnPFeature", "Rank": 1, - "Id": 283 + "Id": 283, + "CommandName": "Disable-PnPFeature" }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Disable-PnPFeature", "Rank": 2, - "Id": 284 + "Id": 284, + "CommandName": "Disable-PnPFeature" }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Disable-PnPFeature", "Rank": 3, - "Id": 285 + "Id": 285, + "CommandName": "Disable-PnPFeature" }, { "Command": "Disable-PnPPageScheduling", - "CommandName": "Disable-PnPPageScheduling", "Rank": 1, - "Id": 286 + "Id": 286, + "CommandName": "Disable-PnPPageScheduling" }, { "Command": "Disable-PnPPowerShellTelemetry", - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 1, - "Id": 287 + "Id": 287, + "CommandName": "Disable-PnPPowerShellTelemetry" }, { "Command": "Disable-PnPPowerShellTelemetry -Force", - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 2, - "Id": 288 + "Id": 288, + "CommandName": "Disable-PnPPowerShellTelemetry" }, { "Command": "Disable-PnPSharingForNonOwnersOfSite", - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, - "Id": 289 + "Id": 289, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { "Command": "Disable-PnPSiteClassification", - "CommandName": "Disable-PnPSiteClassification", "Rank": 1, - "Id": 290 + "Id": 290, + "CommandName": "Disable-PnPSiteClassification" }, { "Command": "Disconnect-PnPOnline", - "CommandName": "Disconnect-PnPOnline", "Rank": 1, - "Id": 291 + "Id": 291, + "CommandName": "Disconnect-PnPOnline" }, { "Command": "Enable-PnPCommSite", - "CommandName": "Enable-PnPCommSite", "Rank": 1, - "Id": 292 + "Id": 292, + "CommandName": "Enable-PnPCommSite" }, { "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "CommandName": "Enable-PnPCommSite", "Rank": 2, - "Id": 293 + "Id": 293, + "CommandName": "Enable-PnPCommSite" }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Enable-PnPFeature", "Rank": 1, - "Id": 294 + "Id": 294, + "CommandName": "Enable-PnPFeature" }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Enable-PnPFeature", "Rank": 2, - "Id": 295 + "Id": 295, + "CommandName": "Enable-PnPFeature" }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Enable-PnPFeature", "Rank": 3, - "Id": 296 + "Id": 296, + "CommandName": "Enable-PnPFeature" }, { "Command": "Enable-PnPPageScheduling", - "CommandName": "Enable-PnPPageScheduling", "Rank": 1, - "Id": 297 + "Id": 297, + "CommandName": "Enable-PnPPageScheduling" }, { "Command": "Enable-PnPPowerShellTelemetry", - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 1, - "Id": 298 + "Id": 298, + "CommandName": "Enable-PnPPowerShellTelemetry" }, { "Command": "Enable-PnPPowerShellTelemetry -Force", - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 2, - "Id": 299 + "Id": 299, + "CommandName": "Enable-PnPPowerShellTelemetry" }, { "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "CommandName": "Enable-PnPSiteClassification", "Rank": 1, - "Id": 300 + "Id": 300, + "CommandName": "Enable-PnPSiteClassification" }, { "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Enable-PnPSiteClassification", "Rank": 2, - "Id": 301 + "Id": 301, + "CommandName": "Enable-PnPSiteClassification" }, { "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 1, - "Id": 302 + "Id": 302, + "CommandName": "Export-PnPListToSiteTemplate" }, { "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 2, - "Id": 303 + "Id": 303, + "CommandName": "Export-PnPListToSiteTemplate" }, { "Command": "Export-PnPPage -Identity Home.aspx", - "CommandName": "Export-PnPPage", "Rank": 1, - "Id": 304 + "Id": 304, + "CommandName": "Export-PnPPage" }, { "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", "Rank": 1, - "Id": 305 + "Id": 305, + "CommandName": "Export-PnPPageMapping" }, { "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", "Rank": 2, - "Id": 306 + "Id": 306, + "CommandName": "Export-PnPPageMapping" }, { "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", "Rank": 3, - "Id": 307 + "Id": 307, + "CommandName": "Export-PnPPageMapping" }, { "Command": "Export-PnPTaxonomy", - "CommandName": "Export-PnPTaxonomy", "Rank": 1, - "Id": 308 + "Id": 308, + "CommandName": "Export-PnPTaxonomy" }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "CommandName": "Export-PnPTaxonomy", "Rank": 2, - "Id": 309 + "Id": 309, + "CommandName": "Export-PnPTaxonomy" }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "CommandName": "Export-PnPTaxonomy", "Rank": 3, - "Id": 310 + "Id": 310, + "CommandName": "Export-PnPTaxonomy" }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "CommandName": "Export-PnPTaxonomy", "Rank": 4, - "Id": 311 + "Id": 311, + "CommandName": "Export-PnPTaxonomy" }, { "Command": "Export-PnPTermGroupToXml", - "CommandName": "Export-PnPTermGroupToXml", "Rank": 1, - "Id": 312 + "Id": 312, + "CommandName": "Export-PnPTermGroupToXml" }, { "Command": "Export-PnPTermGroupToXml -Out output.xml", - "CommandName": "Export-PnPTermGroupToXml", "Rank": 2, - "Id": 313 + "Id": 313, + "CommandName": "Export-PnPTermGroupToXml" }, { "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "CommandName": "Export-PnPTermGroupToXml", "Rank": 3, - "Id": 314 + "Id": 314, + "CommandName": "Export-PnPTermGroupToXml" }, { "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Export-PnPUserInfo", "Rank": 1, - "Id": 315 + "Id": 315, + "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-PnPUserInfo", "Rank": 2, - "Id": 316 + "Id": 316, + "CommandName": "Export-PnPUserInfo" }, { "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Export-PnPUserProfile", "Rank": 1, - "Id": 317 + "Id": 317, + "CommandName": "Export-PnPUserProfile" }, { "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "CommandName": "Export-PnPUserProfile", "Rank": 2, - "Id": 318 + "Id": 318, + "CommandName": "Export-PnPUserProfile" }, { "Command": "Find-PnPFile -Match *.master", - "CommandName": "Find-PnPFile", "Rank": 1, - "Id": 319 + "Id": 319, + "CommandName": "Find-PnPFile" }, { "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "CommandName": "Find-PnPFile", "Rank": 2, - "Id": 320 + "Id": 320, + "CommandName": "Find-PnPFile" }, { "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "CommandName": "Find-PnPFile", "Rank": 3, - "Id": 321 + "Id": 321, + "CommandName": "Find-PnPFile" }, { "Command": "Get-PnPAccessToken", - "CommandName": "Get-PnPAccessToken", "Rank": 1, - "Id": 322 + "Id": 322, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAccessToken -Decoded", - "CommandName": "Get-PnPAccessToken", "Rank": 2, - "Id": 323 + "Id": 323, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "CommandName": "Get-PnPAccessToken", "Rank": 3, - "Id": 324 + "Id": 324, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "CommandName": "Get-PnPAccessToken", "Rank": 4, - "Id": 325 + "Id": 325, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "CommandName": "Get-PnPAccessToken", "Rank": 5, - "Id": 326 + "Id": 326, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAlert", - "CommandName": "Get-PnPAlert", "Rank": 1, - "Id": 327 + "Id": 327, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -List \"Demo List\"", - "CommandName": "Get-PnPAlert", "Rank": 2, - "Id": 328 + "Id": 328, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPAlert", "Rank": 3, - "Id": 329 + "Id": 329, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "CommandName": "Get-PnPAlert", "Rank": 4, - "Id": 330 + "Id": 330, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -AllUsers", - "CommandName": "Get-PnPAlert", "Rank": 5, - "Id": 331 + "Id": 331, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "CommandName": "Get-PnPAlert", "Rank": 6, - "Id": 332 + "Id": 332, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPApp", - "CommandName": "Get-PnPApp", "Rank": 1, - "Id": 333 + "Id": 333, + "CommandName": "Get-PnPApp" }, { "Command": "Get-PnPApp -Scope Site", - "CommandName": "Get-PnPApp", "Rank": 2, - "Id": 334 + "Id": 334, + "CommandName": "Get-PnPApp" }, { "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPApp", "Rank": 3, - "Id": 335 + "Id": 335, + "CommandName": "Get-PnPApp" }, { "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "CommandName": "Get-PnPAppErrors", "Rank": 1, - "Id": 336 + "Id": 336, + "CommandName": "Get-PnPAppErrors" }, { "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "CommandName": "Get-PnPAppErrors", "Rank": 2, - "Id": 337 + "Id": 337, + "CommandName": "Get-PnPAppErrors" }, { "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "CommandName": "Get-PnPAppInfo", "Rank": 1, - "Id": 338 + "Id": 338, + "CommandName": "Get-PnPAppInfo" }, { "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPAppInfo", "Rank": 2, - "Id": 339 + "Id": 339, + "CommandName": "Get-PnPAppInfo" }, { "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "CommandName": "Get-PnPAppInfo", "Rank": 3, - "Id": 340 + "Id": 340, + "CommandName": "Get-PnPAppInfo" }, { "Command": "Get-PnPApplicationCustomizer", - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 1, - "Id": 341 + "Id": 341, + "CommandName": "Get-PnPApplicationCustomizer" }, { "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 2, - "Id": 342 + "Id": 342, + "CommandName": "Get-PnPApplicationCustomizer" }, { "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 3, - "Id": 343 + "Id": 343, + "CommandName": "Get-PnPApplicationCustomizer" }, { "Command": "Get-PnPAuditing", - "CommandName": "Get-PnPAuditing", "Rank": 1, - "Id": 344 + "Id": 344, + "CommandName": "Get-PnPAuditing" }, { "Command": "Get-PnPAuthenticationRealm", - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 1, - "Id": 345 + "Id": 345, + "CommandName": "Get-PnPAuthenticationRealm" }, { "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 2, - "Id": 346 + "Id": 346, + "CommandName": "Get-PnPAuthenticationRealm" }, { "Command": "Get-PnPAvailableLanguage", - "CommandName": "Get-PnPAvailableLanguage", "Rank": 1, - "Id": 347 + "Id": 347, + "CommandName": "Get-PnPAvailableLanguage" }, { "Command": "Get-PnPAvailableSensitivityLabel", - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 1, - "Id": 348 + "Id": 348, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 2, - "Id": 349 + "Id": 349, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 3, - "Id": 350 + "Id": 350, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Command": "Get-PnPAvailableSiteClassification", - "CommandName": "Get-PnPAvailableSiteClassification", "Rank": 1, - "Id": 351 + "Id": 351, + "CommandName": "Get-PnPAvailableSiteClassification" }, { "Command": "Get-PnPAzureACSPrincipal", - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 1, - "Id": 352 + "Id": 352, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 2, - "Id": 353 + "Id": 353, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 3, - "Id": 354 + "Id": 354, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 4, - "Id": 355 + "Id": 355, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, - "Id": 356 + "Id": 356, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 2, - "Id": 357 + "Id": 357, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 3, - "Id": 358 + "Id": 358, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Command": "Get-PnPAzureADActivityReportSignIn", - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, - "Id": 359 + "Id": 359, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 2, - "Id": 360 + "Id": 360, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 3, - "Id": 361 + "Id": 361, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Command": "Get-PnPAzureADApp", - "CommandName": "Get-PnPAzureADApp", "Rank": 1, - "Id": 362 + "Id": 362, + "CommandName": "Get-PnPAzureADApp" }, { "Command": "Get-PnPAzureADApp -Identity MyApp", - "CommandName": "Get-PnPAzureADApp", "Rank": 2, - "Id": 363 + "Id": 363, + "CommandName": "Get-PnPAzureADApp" }, { "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADApp", "Rank": 3, - "Id": 364 + "Id": 364, + "CommandName": "Get-PnPAzureADApp" }, { "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADApp", "Rank": 4, - "Id": 365 + "Id": 365, + "CommandName": "Get-PnPAzureADApp" }, { "Command": "Get-PnPAzureADAppPermission", - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 1, - "Id": 366 + "Id": 366, + "CommandName": "Get-PnPAzureADAppPermission" }, { "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 2, - "Id": 367 + "Id": 367, + "CommandName": "Get-PnPAzureADAppPermission" }, { "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 3, - "Id": 368 + "Id": 368, + "CommandName": "Get-PnPAzureADAppPermission" }, { "Command": "Get-PnPAzureADAppSitePermission", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 1, - "Id": 369 + "Id": 369, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 2, - "Id": 370 + "Id": 370, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 3, - "Id": 371 + "Id": 371, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 4, - "Id": 372 + "Id": 372, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 5, - "Id": 373 + "Id": 373, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADGroup", - "CommandName": "Get-PnPAzureADGroup", "Rank": 1, - "Id": 374 + "Id": 374, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroup -Identity $groupId", - "CommandName": "Get-PnPAzureADGroup", "Rank": 2, - "Id": 375 + "Id": 375, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "CommandName": "Get-PnPAzureADGroup", "Rank": 3, - "Id": 376 + "Id": 376, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPAzureADGroup", "Rank": 4, - "Id": 377 + "Id": 377, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroup -Identity $group", - "CommandName": "Get-PnPAzureADGroup", "Rank": 5, - "Id": 378 + "Id": 378, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 1, - "Id": 379 + "Id": 379, + "CommandName": "Get-PnPAzureADGroupMember" }, { "Command": "Get-PnPAzureADGroupMember -Identity $group", - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 2, - "Id": 380 + "Id": 380, + "CommandName": "Get-PnPAzureADGroupMember" }, { "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 1, - "Id": 381 + "Id": 381, + "CommandName": "Get-PnPAzureADGroupOwner" }, { "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 2, - "Id": 382 + "Id": 382, + "CommandName": "Get-PnPAzureADGroupOwner" }, { "Command": "Get-PnPAzureADServicePrincipal", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 1, - "Id": 383 + "Id": 383, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 2, - "Id": 384 + "Id": 384, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 3, - "Id": 385 + "Id": 385, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 4, - "Id": 386 + "Id": 386, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 5, - "Id": 387 + "Id": 387, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, - "Id": 388 + "Id": 388, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, - "Id": 389 + "Id": 389, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 1, - "Id": 390 + "Id": 390, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 2, - "Id": 391 + "Id": 391, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { "Command": "Get-PnPAzureADUser", - "CommandName": "Get-PnPAzureADUser", "Rank": 1, - "Id": 392 + "Id": 392, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -EndIndex 50", - "CommandName": "Get-PnPAzureADUser", "Rank": 2, - "Id": 393 + "Id": 393, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPAzureADUser", "Rank": 3, - "Id": 394 + "Id": 394, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "CommandName": "Get-PnPAzureADUser", "Rank": 4, - "Id": 395 + "Id": 395, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "CommandName": "Get-PnPAzureADUser", "Rank": 5, - "Id": 396 + "Id": 396, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "CommandName": "Get-PnPAzureADUser", "Rank": 6, - "Id": 397 + "Id": 397, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "CommandName": "Get-PnPAzureADUser", "Rank": 7, - "Id": 398 + "Id": 398, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Delta", - "CommandName": "Get-PnPAzureADUser", "Rank": 8, - "Id": 399 + "Id": 399, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "CommandName": "Get-PnPAzureADUser", "Rank": 9, - "Id": 400 + "Id": 400, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "CommandName": "Get-PnPAzureADUser", "Rank": 10, - "Id": 401 + "Id": 401, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "CommandName": "Get-PnPAzureCertificate", "Rank": 1, - "Id": 402 + "Id": 402, + "CommandName": "Get-PnPAzureCertificate" }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "CommandName": "Get-PnPAzureCertificate", "Rank": 2, - "Id": 403 + "Id": 403, + "CommandName": "Get-PnPAzureCertificate" }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "CommandName": "Get-PnPAzureCertificate", "Rank": 3, - "Id": 404 + "Id": 404, + "CommandName": "Get-PnPAzureCertificate" }, { "Command": "Get-PnPBrowserIdleSignout", - "CommandName": "Get-PnPBrowserIdleSignout", "Rank": 1, - "Id": 405 + "Id": 405, + "CommandName": "Get-PnPBrowserIdleSignout" }, { "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 1, - "Id": 406 + "Id": 406, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { "Command": "Get-PnPBuiltInDesignPackageVisibility", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "Id": 407 + "Id": 407, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "Id": 408 + "Id": 408, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 2, - "Id": 409 + "Id": 409, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 3, - "Id": 410 + "Id": 410, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 4, - "Id": 411 + "Id": 411, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 5, - "Id": 412 + "Id": 412, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPChangeLog", - "CommandName": "Get-PnPChangeLog", "Rank": 1, - "Id": 413 + "Id": 413, + "CommandName": "Get-PnPChangeLog" }, { "Command": "Get-PnPChangeLog -Nightly", - "CommandName": "Get-PnPChangeLog", "Rank": 2, - "Id": 414 + "Id": 414, + "CommandName": "Get-PnPChangeLog" }, { "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 1, - "Id": 415 + "Id": 415, + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 2, - "Id": 416 + "Id": 416, + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { "Command": "Get-PnPContentType", - "CommandName": "Get-PnPContentType", "Rank": 1, - "Id": 417 + "Id": 417, + "CommandName": "Get-PnPContentType" }, { "Command": "Get-PnPContentType -InSiteHierarchy", - "CommandName": "Get-PnPContentType", "Rank": 2, - "Id": 418 + "Id": 418, + "CommandName": "Get-PnPContentType" }, { "Command": "Get-PnPContentType -Identity \"Project Document\"", - "CommandName": "Get-PnPContentType", "Rank": 3, - "Id": 419 + "Id": 419, + "CommandName": "Get-PnPContentType" }, { "Command": "Get-PnPContentType -List \"Documents\"", - "CommandName": "Get-PnPContentType", "Rank": 4, - "Id": 420 + "Id": 420, + "CommandName": "Get-PnPContentType" }, { "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "CommandName": "Get-PnPContentTypePublishingStatus", "Rank": 1, - "Id": 421 + "Id": 421, + "CommandName": "Get-PnPContentTypePublishingStatus" }, { "Command": "Get-PnPCustomAction", - "CommandName": "Get-PnPCustomAction", "Rank": 1, - "Id": 422 + "Id": 422, + "CommandName": "Get-PnPCustomAction" }, { "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPCustomAction", "Rank": 2, - "Id": 423 + "Id": 423, + "CommandName": "Get-PnPCustomAction" }, { "Command": "Get-PnPCustomAction -Scope web", - "CommandName": "Get-PnPCustomAction", "Rank": 3, - "Id": 424 + "Id": 424, + "CommandName": "Get-PnPCustomAction" }, { "Command": "Get-PnPDeletedMicrosoft365Group", - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, - "Id": 425 + "Id": 425, + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 2, - "Id": 426 + "Id": 426, + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { "Command": "Get-PnPDeletedTeam", - "CommandName": "Get-PnPDeletedTeam", "Rank": 1, - "Id": 427 + "Id": 427, + "CommandName": "Get-PnPDeletedTeam" }, { "Command": "Get-PnPDiagnostics", - "CommandName": "Get-PnPDiagnostics", "Rank": 1, - "Id": 428 + "Id": 428, + "CommandName": "Get-PnPDiagnostics" }, { "Command": "Get-PnPDisableSpacesActivation", - "CommandName": "Get-PnPDisableSpacesActivation", "Rank": 1, - "Id": 429 + "Id": 429, + "CommandName": "Get-PnPDisableSpacesActivation" }, { "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 1, - "Id": 430 + "Id": 430, + "CommandName": "Get-PnPDocumentSetTemplate" }, { "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 2, - "Id": 431 + "Id": 431, + "CommandName": "Get-PnPDocumentSetTemplate" }, { "Command": "Get-PnPEventReceiver", - "CommandName": "Get-PnPEventReceiver", "Rank": 1, - "Id": 432 + "Id": 432, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver", "Rank": 2, - "Id": 433 + "Id": 433, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver", "Rank": 3, - "Id": 434 + "Id": 434, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "CommandName": "Get-PnPEventReceiver", "Rank": 4, - "Id": 435 + "Id": 435, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver", "Rank": 5, - "Id": 436 + "Id": 436, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver", "Rank": 6, - "Id": 437 + "Id": 437, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Scope Site", - "CommandName": "Get-PnPEventReceiver", "Rank": 7, - "Id": 438 + "Id": 438, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Scope Web", - "CommandName": "Get-PnPEventReceiver", "Rank": 8, - "Id": 439 + "Id": 439, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Scope All", - "CommandName": "Get-PnPEventReceiver", "Rank": 9, - "Id": 440 + "Id": 440, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPException", - "CommandName": "Get-PnPException", "Rank": 1, - "Id": 441 + "Id": 441, + "CommandName": "Get-PnPException" }, { "Command": "Get-PnPException -All", - "CommandName": "Get-PnPException", "Rank": 2, - "Id": 442 + "Id": 442, + "CommandName": "Get-PnPException" }, { "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "CommandName": "Get-PnPExternalUser", "Rank": 1, - "Id": 443 + "Id": 443, + "CommandName": "Get-PnPExternalUser" }, { "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "CommandName": "Get-PnPExternalUser", "Rank": 2, - "Id": 444 + "Id": 444, + "CommandName": "Get-PnPExternalUser" }, { "Command": "Get-PnPFeature", - "CommandName": "Get-PnPFeature", "Rank": 1, - "Id": 445 + "Id": 445, + "CommandName": "Get-PnPFeature" }, { "Command": "Get-PnPFeature -Scope Site", - "CommandName": "Get-PnPFeature", "Rank": 2, - "Id": 446 + "Id": 446, + "CommandName": "Get-PnPFeature" }, { "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPFeature", "Rank": 3, - "Id": 447 + "Id": 447, + "CommandName": "Get-PnPFeature" }, { "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "CommandName": "Get-PnPFeature", "Rank": 4, - "Id": 448 + "Id": 448, + "CommandName": "Get-PnPFeature" }, { "Command": "Get-PnPField", - "CommandName": "Get-PnPField", "Rank": 1, - "Id": 449 + "Id": 449, + "CommandName": "Get-PnPField" }, { "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Get-PnPField", "Rank": 2, - "Id": 450 + "Id": 450, + "CommandName": "Get-PnPField" }, { "Command": "Get-PnPField -Group \"Custom Columns\"", - "CommandName": "Get-PnPField", "Rank": 3, - "Id": 451 + "Id": 451, + "CommandName": "Get-PnPField" }, { "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "CommandName": "Get-PnPFile", "Rank": 1, - "Id": 452 + "Id": 452, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "CommandName": "Get-PnPFile", "Rank": 2, - "Id": 453 + "Id": 453, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "CommandName": "Get-PnPFile", "Rank": 3, - "Id": 454 + "Id": 454, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "CommandName": "Get-PnPFile", "Rank": 4, - "Id": 455 + "Id": 455, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "CommandName": "Get-PnPFile", "Rank": 5, - "Id": 456 + "Id": 456, + "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": 6, - "Id": 457 + "Id": 457, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "CommandName": "Get-PnPFile", "Rank": 7, - "Id": 458 + "Id": 458, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Get-PnPFileSharingLink", "Rank": 1, - "Id": 459 + "Id": 459, + "CommandName": "Get-PnPFileSharingLink" }, { "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "CommandName": "Get-PnPFileVersion", "Rank": 1, - "Id": 460 + "Id": 460, + "CommandName": "Get-PnPFileVersion" }, { "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "CommandName": "Get-PnPFileVersion", "Rank": 2, - "Id": 461 + "Id": 461, + "CommandName": "Get-PnPFileVersion" }, { "Command": "Get-PnPFlow -AsAdmin", - "CommandName": "Get-PnPFlow", "Rank": 1, - "Id": 462 + "Id": 462, + "CommandName": "Get-PnPFlow" }, { "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "CommandName": "Get-PnPFlow", "Rank": 2, - "Id": 463 + "Id": 463, + "CommandName": "Get-PnPFlow" }, { "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "CommandName": "Get-PnPFlow", "Rank": 3, - "Id": 464 + "Id": 464, + "CommandName": "Get-PnPFlow" }, { "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "CommandName": "Get-PnPFlowOwner", "Rank": 1, - "Id": 465 + "Id": 465, + "CommandName": "Get-PnPFlowOwner" }, { "Command": "Get-PnPFolder", - "CommandName": "Get-PnPFolder", "Rank": 1, - "Id": 466 + "Id": 466, + "CommandName": "Get-PnPFolder" }, { "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "CommandName": "Get-PnPFolder", "Rank": 2, - "Id": 467 + "Id": 467, + "CommandName": "Get-PnPFolder" }, { "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "CommandName": "Get-PnPFolder", "Rank": 3, - "Id": 468 + "Id": 468, + "CommandName": "Get-PnPFolder" }, { "Command": "Get-PnPFolder -List \"Shared Documents\"", - "CommandName": "Get-PnPFolder", "Rank": 4, - "Id": 469 + "Id": 469, + "CommandName": "Get-PnPFolder" }, { "Command": "Get-PnPFolderFile", - "CommandName": "Get-PnPFolderFile", "Rank": 1, - "Id": 470 + "Id": 470, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFile -Recurse", - "CommandName": "Get-PnPFolderFile", "Rank": 2, - "Id": 471 + "Id": 471, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderFile", "Rank": 3, - "Id": 472 + "Id": 472, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderFile", "Rank": 4, - "Id": 473 + "Id": 473, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderFile", "Rank": 5, - "Id": 474 + "Id": 474, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFolder", - "CommandName": "Get-PnPFolderFolder", "Rank": 1, - "Id": 475 + "Id": 475, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -Recurse", - "CommandName": "Get-PnPFolderFolder", "Rank": 2, - "Id": 476 + "Id": 476, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderFolder", "Rank": 3, - "Id": 477 + "Id": 477, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "CommandName": "Get-PnPFolderFolder", "Rank": 4, - "Id": 478 + "Id": 478, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "CommandName": "Get-PnPFolderFolder", "Rank": 5, - "Id": 479 + "Id": 479, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderFolder", "Rank": 6, - "Id": 480 + "Id": 480, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderItem", - "CommandName": "Get-PnPFolderItem", "Rank": 1, - "Id": 481 + "Id": 481, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -Recurse", - "CommandName": "Get-PnPFolderItem", "Rank": 2, - "Id": 482 + "Id": 482, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderItem", "Rank": 3, - "Id": 483 + "Id": 483, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderItem", "Rank": 4, - "Id": 484 + "Id": 484, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "CommandName": "Get-PnPFolderItem", "Rank": 5, - "Id": 485 + "Id": 485, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderItem", "Rank": 6, - "Id": 486 + "Id": 486, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Get-PnPFolderSharingLink", "Rank": 1, - "Id": 487 + "Id": 487, + "CommandName": "Get-PnPFolderSharingLink" }, { "Command": "Get-PnPFolderStorageMetric", - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 1, - "Id": 488 + "Id": 488, + "CommandName": "Get-PnPFolderStorageMetric" }, { "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 2, - "Id": 489 + "Id": 489, + "CommandName": "Get-PnPFolderStorageMetric" }, { "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 3, - "Id": 490 + "Id": 490, + "CommandName": "Get-PnPFolderStorageMetric" }, { "Command": "Get-PnPFooter", - "CommandName": "Get-PnPFooter", "Rank": 1, - "Id": 491 + "Id": 491, + "CommandName": "Get-PnPFooter" }, { "Command": "Get-PnPGraphAccessToken", - "CommandName": "Get-PnPGraphAccessToken", "Rank": 1, - "Id": 492 + "Id": 492, + "CommandName": "Get-PnPGraphAccessToken" }, { "Command": "Get-PnPGraphAccessToken -Decoded", - "CommandName": "Get-PnPGraphAccessToken", "Rank": 2, - "Id": 493 + "Id": 493, + "CommandName": "Get-PnPGraphAccessToken" }, { "Command": "Get-PnPGraphSubscription", - "CommandName": "Get-PnPGraphSubscription", "Rank": 1, - "Id": 494 + "Id": 494, + "CommandName": "Get-PnPGraphSubscription" }, { "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPGraphSubscription", "Rank": 2, - "Id": 495 + "Id": 495, + "CommandName": "Get-PnPGraphSubscription" }, { "Command": "Get-PnPGroup", - "CommandName": "Get-PnPGroup", "Rank": 1, - "Id": 496 + "Id": 496, + "CommandName": "Get-PnPGroup" }, { "Command": "Get-PnPGroup -Identity 'My Site Users'", - "CommandName": "Get-PnPGroup", "Rank": 2, - "Id": 497 + "Id": 497, + "CommandName": "Get-PnPGroup" }, { "Command": "Get-PnPGroup -AssociatedMemberGroup", - "CommandName": "Get-PnPGroup", "Rank": 3, - "Id": 498 + "Id": 498, + "CommandName": "Get-PnPGroup" }, { "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "CommandName": "Get-PnPGroupMember", "Rank": 1, - "Id": 499 + "Id": 499, + "CommandName": "Get-PnPGroupMember" }, { "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "CommandName": "Get-PnPGroupMember", "Rank": 2, - "Id": 500 + "Id": 500, + "CommandName": "Get-PnPGroupMember" }, { "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "CommandName": "Get-PnPGroupPermissions", "Rank": 1, - "Id": 501 + "Id": 501, + "CommandName": "Get-PnPGroupPermissions" }, { "Command": "Get-PnPHideDefaultThemes", - "CommandName": "Get-PnPHideDefaultThemes", "Rank": 1, - "Id": 502 + "Id": 502, + "CommandName": "Get-PnPHideDefaultThemes" }, { "Command": "Get-PnPHomePage", - "CommandName": "Get-PnPHomePage", "Rank": 1, - "Id": 503 + "Id": 503, + "CommandName": "Get-PnPHomePage" }, { "Command": "Get-PnPHomeSite", - "CommandName": "Get-PnPHomeSite", "Rank": 1, - "Id": 504 + "Id": 504, + "CommandName": "Get-PnPHomeSite" }, { "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "CommandName": "Get-PnPHomeSite", "Rank": 2, - "Id": 505 + "Id": 505, + "CommandName": "Get-PnPHomeSite" }, { "Command": "Get-PnPHomeSite -Detailed", - "CommandName": "Get-PnPHomeSite", "Rank": 3, - "Id": 506 + "Id": 506, + "CommandName": "Get-PnPHomeSite" }, { "Command": "Get-PnPHubSite", - "CommandName": "Get-PnPHubSite", "Rank": 1, - "Id": 507 + "Id": 507, + "CommandName": "Get-PnPHubSite" }, { "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSite", "Rank": 2, - "Id": 508 + "Id": 508, + "CommandName": "Get-PnPHubSite" }, { "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "CommandName": "Get-PnPHubSite", "Rank": 3, - "Id": 509 + "Id": 509, + "CommandName": "Get-PnPHubSite" }, { "Command": "Get-PnPHubSiteChild", - "CommandName": "Get-PnPHubSiteChild", "Rank": 1, - "Id": 510 + "Id": 510, + "CommandName": "Get-PnPHubSiteChild" }, { "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSiteChild", "Rank": 2, - "Id": 511 + "Id": 511, + "CommandName": "Get-PnPHubSiteChild" }, { "Command": "Get-PnPInPlaceRecordsManagement", - "CommandName": "Get-PnPInPlaceRecordsManagement", "Rank": 1, - "Id": 512 + "Id": 512, + "CommandName": "Get-PnPInPlaceRecordsManagement" }, { "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "CommandName": "Get-PnPIsSiteAliasAvailable", "Rank": 1, - "Id": 513 + "Id": 513, + "CommandName": "Get-PnPIsSiteAliasAvailable" }, { "Command": "Get-PnPJavaScriptLink", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 1, - "Id": 514 + "Id": 514, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPJavaScriptLink -Scope All", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 2, - "Id": 515 + "Id": 515, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPJavaScriptLink -Scope Web", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 3, - "Id": 516 + "Id": 516, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPJavaScriptLink -Scope Site", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 4, - "Id": 517 + "Id": 517, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPJavaScriptLink -Name Test", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 5, - "Id": 518 + "Id": 518, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPKnowledgeHubSite", - "CommandName": "Get-PnPKnowledgeHubSite", "Rank": 1, - "Id": 519 + "Id": 519, + "CommandName": "Get-PnPKnowledgeHubSite" }, { "Command": "Get-PnPLabel", - "CommandName": "Get-PnPLabel", "Rank": 1, - "Id": 520 + "Id": 520, + "CommandName": "Get-PnPLabel" }, { "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "CommandName": "Get-PnPLabel", "Rank": 2, - "Id": 521 + "Id": 521, + "CommandName": "Get-PnPLabel" }, { "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "CommandName": "Get-PnPLargeListOperationStatus", "Rank": 1, - "Id": 522 + "Id": 522, + "CommandName": "Get-PnPLargeListOperationStatus" }, { "Command": "Get-PnPList", - "CommandName": "Get-PnPList", "Rank": 1, - "Id": 523 + "Id": 523, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Get-PnPList", "Rank": 2, - "Id": 524 + "Id": 524, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPList -Identity Lists/Announcements", - "CommandName": "Get-PnPList", "Rank": 3, - "Id": 525 + "Id": 525, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "CommandName": "Get-PnPList", "Rank": 4, - "Id": 526 + "Id": 526, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "CommandName": "Get-PnPList", "Rank": 5, - "Id": 527 + "Id": 527, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPListDesign", - "CommandName": "Get-PnPListDesign", "Rank": 1, - "Id": 528 + "Id": 528, + "CommandName": "Get-PnPListDesign" }, { "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPListDesign", "Rank": 2, - "Id": 529 + "Id": 529, + "CommandName": "Get-PnPListDesign" }, { "Command": "Get-PnPListDesign -Identity ListEvent", - "CommandName": "Get-PnPListDesign", "Rank": 3, - "Id": 530 + "Id": 530, + "CommandName": "Get-PnPListDesign" }, { "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "CommandName": "Get-PnPListInformationRightsManagement", "Rank": 1, - "Id": 531 + "Id": 531, + "CommandName": "Get-PnPListInformationRightsManagement" }, { "Command": "Get-PnPListItem -List Tasks", - "CommandName": "Get-PnPListItem", "Rank": 1, - "Id": 532 + "Id": 532, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -Id 1", - "CommandName": "Get-PnPListItem", "Rank": 2, - "Id": 533 + "Id": 533, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "CommandName": "Get-PnPListItem", "Rank": 3, - "Id": 534 + "Id": 534, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "CommandName": "Get-PnPListItem", "Rank": 4, - "Id": 535 + "Id": 535, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "CommandName": "Get-PnPListItem", "Rank": 5, - "Id": 536 + "Id": 536, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "CommandName": "Get-PnPListItem", "Rank": 6, - "Id": 537 + "Id": 537, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "CommandName": "Get-PnPListItem", "Rank": 7, - "Id": 538 + "Id": 538, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "CommandName": "Get-PnPListItem", "Rank": 8, - "Id": 539 + "Id": 539, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "CommandName": "Get-PnPListItem", "Rank": 9, - "Id": 540 + "Id": 540, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "CommandName": "Get-PnPListItemAttachment", "Rank": 1, - "Id": 541 + "Id": 541, + "CommandName": "Get-PnPListItemAttachment" }, { "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "CommandName": "Get-PnPListItemAttachment", "Rank": 2, - "Id": 542 + "Id": 542, + "CommandName": "Get-PnPListItemAttachment" }, { "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "CommandName": "Get-PnPListItemComment", "Rank": 1, - "Id": 543 + "Id": 543, + "CommandName": "Get-PnPListItemComment" }, { "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "CommandName": "Get-PnPListItemPermission", "Rank": 1, - "Id": 544 + "Id": 544, + "CommandName": "Get-PnPListItemPermission" }, { "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "CommandName": "Get-PnPListItemVersion", "Rank": 1, - "Id": 545 + "Id": 545, + "CommandName": "Get-PnPListItemVersion" }, { "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "CommandName": "Get-PnPListPermissions", "Rank": 1, - "Id": 546 + "Id": 546, + "CommandName": "Get-PnPListPermissions" }, { "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "CommandName": "Get-PnPListPermissions", "Rank": 2, - "Id": 547 + "Id": 547, + "CommandName": "Get-PnPListPermissions" }, { "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "CommandName": "Get-PnPListRecordDeclaration", "Rank": 1, - "Id": 548 + "Id": 548, + "CommandName": "Get-PnPListRecordDeclaration" }, { "Command": "Get-PnPMasterPage", - "CommandName": "Get-PnPMasterPage", "Rank": 1, - "Id": 549 + "Id": 549, + "CommandName": "Get-PnPMasterPage" }, { "Command": "Get-PnPMessageCenterAnnouncement", - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 1, - "Id": 550 + "Id": 550, + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 2, - "Id": 551 + "Id": 551, + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { "Command": "Get-PnPMicrosoft365ExpiringGroup", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, - "Id": 552 + "Id": 552, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 2, - "Id": 553 + "Id": 553, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { "Command": "Get-PnPMicrosoft365Group", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 1, - "Id": 554 + "Id": 554, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 2, - "Id": 555 + "Id": 555, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 3, - "Id": 556 + "Id": 556, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 4, - "Id": 557 + "Id": 557, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -Identity $group", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 5, - "Id": 558 + "Id": 558, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 6, - "Id": 559 + "Id": 559, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365GroupEndpoint", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, - "Id": 560 + "Id": 560, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 2, - "Id": 561 + "Id": 561, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 3, - "Id": 562 + "Id": 562, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 1, - "Id": 563 + "Id": 563, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 2, - "Id": 564 + "Id": 564, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 3, - "Id": 565 + "Id": 565, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 1, - "Id": 566 + "Id": 566, + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 2, - "Id": 567 + "Id": 567, + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { "Command": "Get-PnPMicrosoft365GroupSettings", - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, - "Id": 568 + "Id": 568, + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 2, - "Id": 569 + "Id": 569, + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, - "Id": 570 + "Id": 570, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 2, - "Id": 571 + "Id": 571, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { "Command": "Get-PnPMicrosoft365GroupTeam", - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, - "Id": 572 + "Id": 572, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 2, - "Id": 573 + "Id": 573, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 3, - "Id": 574 + "Id": 574, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, - "Id": 575 + "Id": 575, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 2, - "Id": 576 + "Id": 576, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 3, - "Id": 577 + "Id": 577, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Command": "Get-PnPNavigationNode", - "CommandName": "Get-PnPNavigationNode", "Rank": 1, - "Id": 578 + "Id": 578, + "CommandName": "Get-PnPNavigationNode" }, { "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "CommandName": "Get-PnPNavigationNode", "Rank": 2, - "Id": 579 + "Id": 579, + "CommandName": "Get-PnPNavigationNode" }, { "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "CommandName": "Get-PnPNavigationNode", "Rank": 3, - "Id": 580 + "Id": 580, + "CommandName": "Get-PnPNavigationNode" }, { "Command": "Get-PnPOrgAssetsLibrary", - "CommandName": "Get-PnPOrgAssetsLibrary", "Rank": 1, - "Id": 581 + "Id": 581, + "CommandName": "Get-PnPOrgAssetsLibrary" }, { "Command": "Get-PnPOrgNewsSite", - "CommandName": "Get-PnPOrgNewsSite", "Rank": 1, - "Id": 582 + "Id": 582, + "CommandName": "Get-PnPOrgNewsSite" }, { "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "CommandName": "Get-PnPPage", "Rank": 1, - "Id": 583 + "Id": 583, + "CommandName": "Get-PnPPage" }, { "Command": "Get-PnPPage \"MyPage\"", - "CommandName": "Get-PnPPage", "Rank": 2, - "Id": 584 + "Id": 584, + "CommandName": "Get-PnPPage" }, { "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "CommandName": "Get-PnPPage", "Rank": 3, - "Id": 585 + "Id": 585, + "CommandName": "Get-PnPPage" }, { "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "CommandName": "Get-PnPPage", "Rank": 4, - "Id": 586 + "Id": 586, + "CommandName": "Get-PnPPage" }, { "Command": "Get-PnPPageComponent -Page Home", - "CommandName": "Get-PnPPageComponent", "Rank": 1, - "Id": 587 + "Id": 587, + "CommandName": "Get-PnPPageComponent" }, { "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPPageComponent", "Rank": 2, - "Id": 588 + "Id": 588, + "CommandName": "Get-PnPPageComponent" }, { "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "CommandName": "Get-PnPPageComponent", "Rank": 3, - "Id": 589 + "Id": 589, + "CommandName": "Get-PnPPageComponent" }, { "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerBucket", "Rank": 1, - "Id": 590 + "Id": 590, + "CommandName": "Get-PnPPlannerBucket" }, { "Command": "Get-PnPPlannerConfiguration", - "CommandName": "Get-PnPPlannerConfiguration", "Rank": 1, - "Id": 591 + "Id": 591, + "CommandName": "Get-PnPPlannerConfiguration" }, { "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "CommandName": "Get-PnPPlannerPlan", "Rank": 1, - "Id": 592 + "Id": 592, + "CommandName": "Get-PnPPlannerPlan" }, { "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "CommandName": "Get-PnPPlannerPlan", "Rank": 2, - "Id": 593 + "Id": 593, + "CommandName": "Get-PnPPlannerPlan" }, { "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "CommandName": "Get-PnPPlannerPlan", "Rank": 3, - "Id": 594 + "Id": 594, + "CommandName": "Get-PnPPlannerPlan" }, { "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Get-PnPPlannerRosterMember", "Rank": 1, - "Id": 595 + "Id": 595, + "CommandName": "Get-PnPPlannerRosterMember" }, { "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 1, - "Id": 596 + "Id": 596, + "CommandName": "Get-PnPPlannerRosterPlan" }, { "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 2, - "Id": 597 + "Id": 597, + "CommandName": "Get-PnPPlannerRosterPlan" }, { "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerTask", "Rank": 1, - "Id": 598 + "Id": 598, + "CommandName": "Get-PnPPlannerTask" }, { "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask", "Rank": 2, - "Id": 599 + "Id": 599, + "CommandName": "Get-PnPPlannerTask" }, { "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask", "Rank": 3, - "Id": 600 + "Id": 600, + "CommandName": "Get-PnPPlannerTask" }, { "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerUserPolicy", "Rank": 1, - "Id": 601 + "Id": 601, + "CommandName": "Get-PnPPlannerUserPolicy" }, { "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "CommandName": "Get-PnPPowerPlatformConnector", "Rank": 1, - "Id": 602 + "Id": 602, + "CommandName": "Get-PnPPowerPlatformConnector" }, { "Command": "Get-PnPPowerPlatformEnvironment", - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 1, - "Id": 603 + "Id": 603, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 2, - "Id": 604 + "Id": 604, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 3, - "Id": 605 + "Id": 605, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Command": "Get-PnPPowerShellTelemetryEnabled", - "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, - "Id": 606 + "Id": 606, + "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { "Command": "Get-PnPPropertyBag", - "CommandName": "Get-PnPPropertyBag", "Rank": 1, - "Id": 607 + "Id": 607, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPropertyBag -Key MyKey", - "CommandName": "Get-PnPPropertyBag", "Rank": 2, - "Id": 608 + "Id": 608, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "CommandName": "Get-PnPPropertyBag", "Rank": 3, - "Id": 609 + "Id": 609, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag", "Rank": 4, - "Id": 610 + "Id": 610, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag", "Rank": 5, - "Id": 611 + "Id": 611, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPublishingImageRendition", - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 1, - "Id": 612 + "Id": 612, + "CommandName": "Get-PnPPublishingImageRendition" }, { "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 2, - "Id": 613 + "Id": 613, + "CommandName": "Get-PnPPublishingImageRendition" }, { "Command": "Get-PnPPublishingImageRendition -Identity 2", - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 3, - "Id": 614 + "Id": 614, + "CommandName": "Get-PnPPublishingImageRendition" }, { "Command": "Get-PnPRecycleBinItem", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 1, - "Id": 615 + "Id": 615, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 2, - "Id": 616 + "Id": 616, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRecycleBinItem -FirstStage", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 3, - "Id": 617 + "Id": 617, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRecycleBinItem -SecondStage", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 4, - "Id": 618 + "Id": 618, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 5, - "Id": 619 + "Id": 619, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRequestAccessEmails", - "CommandName": "Get-PnPRequestAccessEmails", "Rank": 1, - "Id": 620 + "Id": 620, + "CommandName": "Get-PnPRequestAccessEmails" }, { "Command": "Get-PnPRoleDefinition", - "CommandName": "Get-PnPRoleDefinition", "Rank": 1, - "Id": 621 + "Id": 621, + "CommandName": "Get-PnPRoleDefinition" }, { "Command": "Get-PnPRoleDefinition -Identity Read", - "CommandName": "Get-PnPRoleDefinition", "Rank": 2, - "Id": 622 + "Id": 622, + "CommandName": "Get-PnPRoleDefinition" }, { "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "CommandName": "Get-PnPRoleDefinition", "Rank": 3, - "Id": 623 + "Id": 623, + "CommandName": "Get-PnPRoleDefinition" }, { "Command": "Get-PnPSearchConfiguration", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 1, - "Id": 624 + "Id": 624, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Site", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 2, - "Id": 625 + "Id": 625, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 3, - "Id": 626 + "Id": 626, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 4, - "Id": 627 + "Id": 627, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 5, - "Id": 628 + "Id": 628, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 6, - "Id": 629 + "Id": 629, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 7, - "Id": 630 + "Id": 630, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 8, - "Id": 631 + "Id": 631, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchCrawlLog", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 1, - "Id": 632 + "Id": 632, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 2, - "Id": 633 + "Id": 633, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 3, - "Id": 634 + "Id": 634, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 4, - "Id": 635 + "Id": 635, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 5, - "Id": 636 + "Id": 636, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 6, - "Id": 637 + "Id": 637, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 7, - "Id": 638 + "Id": 638, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchSettings", - "CommandName": "Get-PnPSearchSettings", "Rank": 1, - "Id": 639 + "Id": 639, + "CommandName": "Get-PnPSearchSettings" }, { "Command": "Get-PnPServiceCurrentHealth", - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 1, - "Id": 640 + "Id": 640, + "CommandName": "Get-PnPServiceCurrentHealth" }, { "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 2, - "Id": 641 + "Id": 641, + "CommandName": "Get-PnPServiceCurrentHealth" }, { "Command": "Get-PnPServiceHealthIssue", - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 1, - "Id": 642 + "Id": 642, + "CommandName": "Get-PnPServiceHealthIssue" }, { "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 2, - "Id": 643 + "Id": 643, + "CommandName": "Get-PnPServiceHealthIssue" }, { "Command": "Get-PnPSharePointAddIn", - "CommandName": "Get-PnPSharePointAddIn", "Rank": 1, - "Id": 644 + "Id": 644, + "CommandName": "Get-PnPSharePointAddIn" }, { "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "CommandName": "Get-PnPSharePointAddIn", "Rank": 2, - "Id": 645 + "Id": 645, + "CommandName": "Get-PnPSharePointAddIn" }, { "Command": "Get-PnPSharingForNonOwnersOfSite", - "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, - "Id": 646 + "Id": 646, + "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { "Command": "Get-PnPSite", - "CommandName": "Get-PnPSite", "Rank": 1, - "Id": 647 + "Id": 647, + "CommandName": "Get-PnPSite" }, { "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "CommandName": "Get-PnPSite", "Rank": 2, - "Id": 648 + "Id": 648, + "CommandName": "Get-PnPSite" }, { "Command": "Get-PnPSiteClosure", - "CommandName": "Get-PnPSiteClosure", "Rank": 1, - "Id": 649 + "Id": 649, + "CommandName": "Get-PnPSiteClosure" }, { "Command": "Get-PnPSiteCollectionAdmin", - "CommandName": "Get-PnPSiteCollectionAdmin", "Rank": 1, - "Id": 650 + "Id": 650, + "CommandName": "Get-PnPSiteCollectionAdmin" }, { "Command": "Get-PnPSiteCollectionAppCatalog", - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, - "Id": 651 + "Id": 651, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 2, - "Id": 652 + "Id": 652, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 3, - "Id": 653 + "Id": 653, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Command": "Get-PnPSiteCollectionTermStore", - "CommandName": "Get-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 654 + "Id": 654, + "CommandName": "Get-PnPSiteCollectionTermStore" }, { "Command": "Get-PnPSiteDesign", - "CommandName": "Get-PnPSiteDesign", "Rank": 1, - "Id": 655 + "Id": 655, + "CommandName": "Get-PnPSiteDesign" }, { "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesign", "Rank": 2, - "Id": 656 + "Id": 656, + "CommandName": "Get-PnPSiteDesign" }, { "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesignRights", "Rank": 1, - "Id": 657 + "Id": 657, + "CommandName": "Get-PnPSiteDesignRights" }, { "Command": "Get-PnPSiteDesignRun", - "CommandName": "Get-PnPSiteDesignRun", "Rank": 1, - "Id": 658 + "Id": 658, + "CommandName": "Get-PnPSiteDesignRun" }, { "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignRun", "Rank": 2, - "Id": 659 + "Id": 659, + "CommandName": "Get-PnPSiteDesignRun" }, { "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Get-PnPSiteDesignTask", "Rank": 1, - "Id": 660 + "Id": 660, + "CommandName": "Get-PnPSiteDesignTask" }, { "Command": "Get-PnPSiteDesignTask", - "CommandName": "Get-PnPSiteDesignTask", "Rank": 2, - "Id": 661 + "Id": 661, + "CommandName": "Get-PnPSiteDesignTask" }, { "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignTask", "Rank": 3, - "Id": 662 + "Id": 662, + "CommandName": "Get-PnPSiteDesignTask" }, { "Command": "Get-PnPSiteGroup", - "CommandName": "Get-PnPSiteGroup", "Rank": 1, - "Id": 663 + "Id": 663, + "CommandName": "Get-PnPSiteGroup" }, { "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup", "Rank": 2, - "Id": 664 + "Id": 664, + "CommandName": "Get-PnPSiteGroup" }, { "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "CommandName": "Get-PnPSiteGroup", "Rank": 3, - "Id": 665 + "Id": 665, + "CommandName": "Get-PnPSiteGroup" }, { "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup", "Rank": 4, - "Id": 666 + "Id": 666, + "CommandName": "Get-PnPSiteGroup" }, { "Command": "Get-PnPSitePolicy", - "CommandName": "Get-PnPSitePolicy", "Rank": 1, - "Id": 667 + "Id": 667, + "CommandName": "Get-PnPSitePolicy" }, { "Command": "Get-PnPSitePolicy -AllAvailable", - "CommandName": "Get-PnPSitePolicy", "Rank": 2, - "Id": 668 + "Id": 668, + "CommandName": "Get-PnPSitePolicy" }, { "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Get-PnPSitePolicy", "Rank": 3, - "Id": 669 + "Id": 669, + "CommandName": "Get-PnPSitePolicy" }, { "Command": "Get-PnPSiteScript", - "CommandName": "Get-PnPSiteScript", "Rank": 1, - "Id": 670 + "Id": 670, + "CommandName": "Get-PnPSiteScript" }, { "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteScript", "Rank": 2, - "Id": 671 + "Id": 671, + "CommandName": "Get-PnPSiteScript" }, { "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 1, - "Id": 672 + "Id": 672, + "CommandName": "Get-PnPSiteScriptFromList" }, { "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 2, - "Id": 673 + "Id": 673, + "CommandName": "Get-PnPSiteScriptFromList" }, { "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 3, - "Id": 674 + "Id": 674, + "CommandName": "Get-PnPSiteScriptFromList" }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 1, - "Id": 675 + "Id": 675, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 2, - "Id": 676 + "Id": 676, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 3, - "Id": 677 + "Id": 677, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 4, - "Id": 678 + "Id": 678, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 5, - "Id": 679 + "Id": 679, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 6, - "Id": 680 + "Id": 680, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteSearchQueryResults", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 1, - "Id": 681 + "Id": 681, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 2, - "Id": 682 + "Id": 682, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 3, - "Id": 683 + "Id": 683, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 4, - "Id": 684 + "Id": 684, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 5, - "Id": 685 + "Id": 685, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -All", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 6, - "Id": 686 + "Id": 686, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSensitivityLabel", - "CommandName": "Get-PnPSiteSensitivityLabel", "Rank": 1, - "Id": 687 + "Id": 687, + "CommandName": "Get-PnPSiteSensitivityLabel" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp", - "CommandName": "Get-PnPSiteTemplate", "Rank": 1, - "Id": 688 + "Id": 688, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.xml", - "CommandName": "Get-PnPSiteTemplate", "Rank": 2, - "Id": 689 + "Id": 689, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.md", - "CommandName": "Get-PnPSiteTemplate", "Rank": 3, - "Id": 690 + "Id": 690, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "CommandName": "Get-PnPSiteTemplate", "Rank": 4, - "Id": 691 + "Id": 691, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "CommandName": "Get-PnPSiteTemplate", "Rank": 5, - "Id": 692 + "Id": 692, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "CommandName": "Get-PnPSiteTemplate", "Rank": 6, - "Id": 693 + "Id": 693, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "CommandName": "Get-PnPSiteTemplate", "Rank": 7, - "Id": 694 + "Id": 694, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "CommandName": "Get-PnPSiteTemplate", "Rank": 8, - "Id": 695 + "Id": 695, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate", "Rank": 9, - "Id": 696 + "Id": 696, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "CommandName": "Get-PnPSiteTemplate", "Rank": 10, - "Id": 697 + "Id": 697, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "CommandName": "Get-PnPSiteTemplate", "Rank": 11, - "Id": 698 + "Id": 698, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "CommandName": "Get-PnPSiteTemplate", "Rank": 12, - "Id": 699 + "Id": 699, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", - "CommandName": "Get-PnPSiteTemplate", "Rank": 13, - "Id": 700 + "Id": 700, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate", "Rank": 14, - "Id": 701 + "Id": 701, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Get-PnPSiteUserInvitations", "Rank": 1, - "Id": 702 + "Id": 702, + "CommandName": "Get-PnPSiteUserInvitations" }, { "Command": "Get-PnPStorageEntity", - "CommandName": "Get-PnPStorageEntity", "Rank": 1, - "Id": 703 + "Id": 703, + "CommandName": "Get-PnPStorageEntity" }, { "Command": "Get-PnPStorageEntity -Key MyKey", - "CommandName": "Get-PnPStorageEntity", "Rank": 2, - "Id": 704 + "Id": 704, + "CommandName": "Get-PnPStorageEntity" }, { "Command": "Get-PnPStorageEntity -Scope Site", - "CommandName": "Get-PnPStorageEntity", "Rank": 3, - "Id": 705 + "Id": 705, + "CommandName": "Get-PnPStorageEntity" }, { "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Get-PnPStorageEntity", "Rank": 4, - "Id": 706 + "Id": 706, + "CommandName": "Get-PnPStorageEntity" }, { "Command": "Get-PnPStoredCredential -Name O365", - "CommandName": "Get-PnPStoredCredential", "Rank": 1, - "Id": 707 + "Id": 707, + "CommandName": "Get-PnPStoredCredential" }, { "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Rank": 1, - "Id": 708 + "Id": 708, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Rank": 1, - "Id": 709 + "Id": 709, + "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Rank": 1, - "Id": 710 + "Id": 710, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { "Command": "Get-PnPSubWeb", - "CommandName": "Get-PnPSubWeb", "Rank": 1, - "Id": 711 + "Id": 711, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSubWeb -Recurse", - "CommandName": "Get-PnPSubWeb", "Rank": 2, - "Id": 712 + "Id": 712, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "CommandName": "Get-PnPSubWeb", "Rank": 3, - "Id": 713 + "Id": 713, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "CommandName": "Get-PnPSubWeb", "Rank": 4, - "Id": 714 + "Id": 714, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "CommandName": "Get-PnPSubWeb", "Rank": 5, - "Id": 715 + "Id": 715, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSyntexModel", - "CommandName": "Get-PnPSyntexModel", "Rank": 1, - "Id": 716 + "Id": 716, + "CommandName": "Get-PnPSyntexModel" }, { "Command": "Get-PnPSyntexModel -Identity 1", - "CommandName": "Get-PnPSyntexModel", "Rank": 2, - "Id": 717 + "Id": 717, + "CommandName": "Get-PnPSyntexModel" }, { "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModel", "Rank": 3, - "Id": 718 + "Id": 718, + "CommandName": "Get-PnPSyntexModel" }, { "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModelPublication", "Rank": 1, - "Id": 719 + "Id": 719, + "CommandName": "Get-PnPSyntexModelPublication" }, { "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "CommandName": "Get-PnPTaxonomyItem", "Rank": 1, - "Id": 720 + "Id": 720, + "CommandName": "Get-PnPTaxonomyItem" }, { "Command": "Get-PnPTeamsApp", - "CommandName": "Get-PnPTeamsApp", "Rank": 1, - "Id": 721 + "Id": 721, + "CommandName": "Get-PnPTeamsApp" }, { "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "CommandName": "Get-PnPTeamsApp", "Rank": 2, - "Id": 722 + "Id": 722, + "CommandName": "Get-PnPTeamsApp" }, { "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "CommandName": "Get-PnPTeamsApp", "Rank": 3, - "Id": 723 + "Id": 723, + "CommandName": "Get-PnPTeamsApp" }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "CommandName": "Get-PnPTeamsChannel", "Rank": 1, - "Id": 724 + "Id": 724, + "CommandName": "Get-PnPTeamsChannel" }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannel", "Rank": 2, - "Id": 725 + "Id": 725, + "CommandName": "Get-PnPTeamsChannel" }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannel", "Rank": 3, - "Id": 726 + "Id": 726, + "CommandName": "Get-PnPTeamsChannel" }, { "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 1, - "Id": 727 + "Id": 727, + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 2, - "Id": 728 + "Id": 728, + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 1, - "Id": 729 + "Id": 729, + "CommandName": "Get-PnPTeamsChannelMessage" }, { "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 2, - "Id": 730 + "Id": 730, + "CommandName": "Get-PnPTeamsChannelMessage" }, { "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 1, - "Id": 731 + "Id": 731, + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 2, - "Id": 732 + "Id": 732, + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 1, - "Id": 733 + "Id": 733, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 2, - "Id": 734 + "Id": 734, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 3, - "Id": 735 + "Id": 735, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 4, - "Id": 736 + "Id": 736, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 1, - "Id": 737 + "Id": 737, + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 2, - "Id": 738 + "Id": 738, + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "CommandName": "Get-PnPTeamsTab", "Rank": 1, - "Id": 739 + "Id": 739, + "CommandName": "Get-PnPTeamsTab" }, { "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "CommandName": "Get-PnPTeamsTab", "Rank": 2, - "Id": 740 + "Id": 740, + "CommandName": "Get-PnPTeamsTab" }, { "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", - "CommandName": "Get-PnPTeamsTab", "Rank": 3, - "Id": 741 + "Id": 741, + "CommandName": "Get-PnPTeamsTab" }, { "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsTab", "Rank": 4, - "Id": 742 + "Id": 742, + "CommandName": "Get-PnPTeamsTab" }, { "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "CommandName": "Get-PnPTeamsTab", "Rank": 5, - "Id": 743 + "Id": 743, + "CommandName": "Get-PnPTeamsTab" }, { "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Get-PnPTeamsTag", "Rank": 1, - "Id": 744 + "Id": 744, + "CommandName": "Get-PnPTeamsTag" }, { "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Get-PnPTeamsTag", "Rank": 2, - "Id": 745 + "Id": 745, + "CommandName": "Get-PnPTeamsTag" }, { "Command": "Get-PnPTeamsTeam", - "CommandName": "Get-PnPTeamsTeam", "Rank": 1, - "Id": 746 + "Id": 746, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "CommandName": "Get-PnPTeamsTeam", "Rank": 2, - "Id": 747 + "Id": 747, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "CommandName": "Get-PnPTeamsTeam", "Rank": 3, - "Id": 748 + "Id": 748, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam", "Rank": 4, - "Id": 749 + "Id": 749, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam", "Rank": 5, - "Id": 750 + "Id": 750, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsUser -Team MyTeam", - "CommandName": "Get-PnPTeamsUser", "Rank": 1, - "Id": 751 + "Id": 751, + "CommandName": "Get-PnPTeamsUser" }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "CommandName": "Get-PnPTeamsUser", "Rank": 2, - "Id": 752 + "Id": 752, + "CommandName": "Get-PnPTeamsUser" }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "CommandName": "Get-PnPTeamsUser", "Rank": 3, - "Id": 753 + "Id": 753, + "CommandName": "Get-PnPTeamsUser" }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "CommandName": "Get-PnPTeamsUser", "Rank": 4, - "Id": 754 + "Id": 754, + "CommandName": "Get-PnPTeamsUser" }, { "Command": "Get-PnPTemporarilyDisableAppBar", - "CommandName": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, - "Id": 755 + "Id": 755, + "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { "Command": "Get-PnPTenant", - "CommandName": "Get-PnPTenant", "Rank": 1, - "Id": 756 + "Id": 756, + "CommandName": "Get-PnPTenant" }, { "Command": "Get-PnPTenantAppCatalogUrl", - "CommandName": "Get-PnPTenantAppCatalogUrl", "Rank": 1, - "Id": 757 + "Id": 757, + "CommandName": "Get-PnPTenantAppCatalogUrl" }, { "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "CommandName": "Get-PnPTenantCdnEnabled", "Rank": 1, - "Id": 758 + "Id": 758, + "CommandName": "Get-PnPTenantCdnEnabled" }, { "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "CommandName": "Get-PnPTenantCdnOrigin", "Rank": 1, - "Id": 759 + "Id": 759, + "CommandName": "Get-PnPTenantCdnOrigin" }, { "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "CommandName": "Get-PnPTenantCdnPolicies", "Rank": 1, - "Id": 760 + "Id": 760, + "CommandName": "Get-PnPTenantCdnPolicies" }, { "Command": "Get-PnPTenantDeletedSite", - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 1, - "Id": 761 + "Id": 761, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 2, - "Id": 762 + "Id": 762, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 3, - "Id": 763 + "Id": 763, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 4, - "Id": 764 + "Id": 764, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Command": "Get-PnPTenantId", - "CommandName": "Get-PnPTenantId", "Rank": 1, - "Id": 765 + "Id": 765, + "CommandName": "Get-PnPTenantId" }, { "Command": "Get-PnPTenantId contoso", - "CommandName": "Get-PnPTenantId", "Rank": 2, - "Id": 766 + "Id": 766, + "CommandName": "Get-PnPTenantId" }, { "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "CommandName": "Get-PnPTenantId", "Rank": 3, - "Id": 767 + "Id": 767, + "CommandName": "Get-PnPTenantId" }, { "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "CommandName": "Get-PnPTenantId", "Rank": 4, - "Id": 768 + "Id": 768, + "CommandName": "Get-PnPTenantId" }, { "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "CommandName": "Get-PnPTenantInfo", "Rank": 1, - "Id": 769 + "Id": 769, + "CommandName": "Get-PnPTenantInfo" }, { "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "CommandName": "Get-PnPTenantInfo", "Rank": 2, - "Id": 770 + "Id": 770, + "CommandName": "Get-PnPTenantInfo" }, { "Command": "Get-PnPTenantInfo", - "CommandName": "Get-PnPTenantInfo", "Rank": 3, - "Id": 771 + "Id": 771, + "CommandName": "Get-PnPTenantInfo" }, { "Command": "Get-PnPTenantInfo -CurrentTenant", - "CommandName": "Get-PnPTenantInfo", "Rank": 4, - "Id": 772 + "Id": 772, + "CommandName": "Get-PnPTenantInfo" }, { "Command": "Get-PnPTenantInstance", - "CommandName": "Get-PnPTenantInstance", "Rank": 1, - "Id": 773 + "Id": 773, + "CommandName": "Get-PnPTenantInstance" }, { "Command": "Get-PnPTenantRecycleBinItem", - "CommandName": "Get-PnPTenantRecycleBinItem", "Rank": 1, - "Id": 774 + "Id": 774, + "CommandName": "Get-PnPTenantRecycleBinItem" }, { "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "CommandName": "Get-PnPTenantSequence", "Rank": 1, - "Id": 775 + "Id": 775, + "CommandName": "Get-PnPTenantSequence" }, { "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "CommandName": "Get-PnPTenantSequence", "Rank": 2, - "Id": 776 + "Id": 776, + "CommandName": "Get-PnPTenantSequence" }, { "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 1, - "Id": 777 + "Id": 777, + "CommandName": "Get-PnPTenantSequenceSite" }, { "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 2, - "Id": 778 + "Id": 778, + "CommandName": "Get-PnPTenantSequenceSite" }, { "Command": "Get-PnPTenantSite", - "CommandName": "Get-PnPTenantSite", "Rank": 1, - "Id": 779 + "Id": 779, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Detailed", - "CommandName": "Get-PnPTenantSite", "Rank": 2, - "Id": 780 + "Id": 780, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "CommandName": "Get-PnPTenantSite", "Rank": 3, - "Id": 781 + "Id": 781, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "CommandName": "Get-PnPTenantSite", "Rank": 4, - "Id": 782 + "Id": 782, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "CommandName": "Get-PnPTenantSite", "Rank": 5, - "Id": 783 + "Id": 783, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "CommandName": "Get-PnPTenantSite", "Rank": 6, - "Id": 784 + "Id": 784, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "CommandName": "Get-PnPTenantSite", "Rank": 7, - "Id": 785 + "Id": 785, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "CommandName": "Get-PnPTenantSite", "Rank": 8, - "Id": 786 + "Id": 786, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "CommandName": "Get-PnPTenantSite", "Rank": 9, - "Id": 787 + "Id": 787, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSyncClientRestriction", - "CommandName": "Get-PnPTenantSyncClientRestriction", "Rank": 1, - "Id": 788 + "Id": 788, + "CommandName": "Get-PnPTenantSyncClientRestriction" }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "CommandName": "Get-PnPTenantTemplate", "Rank": 1, - "Id": 789 + "Id": 789, + "CommandName": "Get-PnPTenantTemplate" }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "CommandName": "Get-PnPTenantTemplate", "Rank": 2, - "Id": 790 + "Id": 790, + "CommandName": "Get-PnPTenantTemplate" }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "CommandName": "Get-PnPTenantTemplate", "Rank": 3, - "Id": 791 + "Id": 791, + "CommandName": "Get-PnPTenantTemplate" }, { "Command": "Get-PnPTenantTheme", - "CommandName": "Get-PnPTenantTheme", "Rank": 1, - "Id": 792 + "Id": 792, + "CommandName": "Get-PnPTenantTheme" }, { "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Get-PnPTenantTheme", "Rank": 2, - "Id": 793 + "Id": 793, + "CommandName": "Get-PnPTenantTheme" }, { "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "CommandName": "Get-PnPTenantTheme", "Rank": 3, - "Id": 794 + "Id": 794, + "CommandName": "Get-PnPTenantTheme" }, { "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", "Rank": 1, - "Id": 795 + "Id": 795, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", "Rank": 2, - "Id": 796 + "Id": 796, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", "Rank": 3, - "Id": 797 + "Id": 797, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "CommandName": "Get-PnPTerm", "Rank": 4, - "Id": 798 + "Id": 798, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "CommandName": "Get-PnPTerm", "Rank": 5, - "Id": 799 + "Id": 799, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTermGroup", - "CommandName": "Get-PnPTermGroup", "Rank": 1, - "Id": 800 + "Id": 800, + "CommandName": "Get-PnPTermGroup" }, { "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "CommandName": "Get-PnPTermGroup", "Rank": 2, - "Id": 801 + "Id": 801, + "CommandName": "Get-PnPTermGroup" }, { "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "CommandName": "Get-PnPTermGroup", "Rank": 3, - "Id": 802 + "Id": 802, + "CommandName": "Get-PnPTermGroup" }, { "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "CommandName": "Get-PnPTermLabel", "Rank": 1, - "Id": 803 + "Id": 803, + "CommandName": "Get-PnPTermLabel" }, { "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "CommandName": "Get-PnPTermLabel", "Rank": 2, - "Id": 804 + "Id": 804, + "CommandName": "Get-PnPTermLabel" }, { "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermLabel", "Rank": 3, - "Id": 805 + "Id": 805, + "CommandName": "Get-PnPTermLabel" }, { "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet", "Rank": 1, - "Id": 806 + "Id": 806, + "CommandName": "Get-PnPTermSet" }, { "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet", "Rank": 2, - "Id": 807 + "Id": 807, + "CommandName": "Get-PnPTermSet" }, { "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "CommandName": "Get-PnPTermSet", "Rank": 3, - "Id": 808 + "Id": 808, + "CommandName": "Get-PnPTermSet" }, { "Command": "Get-PnPTheme", - "CommandName": "Get-PnPTheme", "Rank": 1, - "Id": 809 + "Id": 809, + "CommandName": "Get-PnPTheme" }, { "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "CommandName": "Get-PnPTheme", "Rank": 2, - "Id": 810 + "Id": 810, + "CommandName": "Get-PnPTheme" }, { "Command": "Get-PnPTimeZoneId", - "CommandName": "Get-PnPTimeZoneId", "Rank": 1, - "Id": 811 + "Id": 811, + "CommandName": "Get-PnPTimeZoneId" }, { "Command": "Get-PnPTimeZoneId -Match Stockholm", - "CommandName": "Get-PnPTimeZoneId", "Rank": 2, - "Id": 812 + "Id": 812, + "CommandName": "Get-PnPTimeZoneId" }, { "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "CommandName": "Get-PnPUnfurlLink", "Rank": 1, - "Id": 813 + "Id": 813, + "CommandName": "Get-PnPUnfurlLink" }, { "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "CommandName": "Get-PnPUnifiedAuditLog", "Rank": 1, - "Id": 814 + "Id": 814, + "CommandName": "Get-PnPUnifiedAuditLog" }, { "Command": "Get-PnPUPABulkImportStatus", - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 1, - "Id": 815 + "Id": 815, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 2, - "Id": 816 + "Id": 816, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Command": "Get-PnPUPABulkImportStatus -JobId ", - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 3, - "Id": 817 + "Id": 817, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 4, - "Id": 818 + "Id": 818, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Command": "Get-PnPUser", - "CommandName": "Get-PnPUser", "Rank": 1, - "Id": 819 + "Id": 819, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -Identity 23", - "CommandName": "Get-PnPUser", "Rank": 2, - "Id": 820 + "Id": 820, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser", "Rank": 3, - "Id": 821 + "Id": 821, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser", "Rank": 4, - "Id": 822 + "Id": 822, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -WithRightsAssigned", - "CommandName": "Get-PnPUser", "Rank": 5, - "Id": 823 + "Id": 823, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "CommandName": "Get-PnPUser", "Rank": 6, - "Id": 824 + "Id": 824, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "CommandName": "Get-PnPUser", "Rank": 7, - "Id": 825 + "Id": 825, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "CommandName": "Get-PnPUserOneDriveQuota", "Rank": 1, - "Id": 826 + "Id": 826, + "CommandName": "Get-PnPUserOneDriveQuota" }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "CommandName": "Get-PnPUserProfileProperty", "Rank": 1, - "Id": 827 + "Id": 827, + "CommandName": "Get-PnPUserProfileProperty" }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "CommandName": "Get-PnPUserProfileProperty", "Rank": 2, - "Id": 828 + "Id": 828, + "CommandName": "Get-PnPUserProfileProperty" }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "CommandName": "Get-PnPUserProfileProperty", "Rank": 3, - "Id": 829 + "Id": 829, + "CommandName": "Get-PnPUserProfileProperty" }, { "Command": "Get-PnPView -List \"Demo List\"", - "CommandName": "Get-PnPView", "Rank": 1, - "Id": 830 + "Id": 830, + "CommandName": "Get-PnPView" }, { "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "CommandName": "Get-PnPView", "Rank": 2, - "Id": 831 + "Id": 831, + "CommandName": "Get-PnPView" }, { "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "CommandName": "Get-PnPView", "Rank": 3, - "Id": 832 + "Id": 832, + "CommandName": "Get-PnPView" }, { "Command": "Get-PnPVivaConnectionsDashboardACE", - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, - "Id": 833 + "Id": 833, + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 2, - "Id": 834 + "Id": 834, + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { "Command": "Get-PnPWeb", - "CommandName": "Get-PnPWeb", "Rank": 1, - "Id": 835 + "Id": 835, + "CommandName": "Get-PnPWeb" }, { "Command": "Get-PnPWebHeader", - "CommandName": "Get-PnPWebHeader", "Rank": 1, - "Id": 836 + "Id": 836, + "CommandName": "Get-PnPWebHeader" }, { "Command": "Get-PnPWebhookSubscriptions -List MyList", - "CommandName": "Get-PnPWebhookSubscriptions", "Rank": 1, - "Id": 837 + "Id": 837, + "CommandName": "Get-PnPWebhookSubscriptions" }, { "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "CommandName": "Get-PnPWebPart", "Rank": 1, - "Id": 838 + "Id": 838, + "CommandName": "Get-PnPWebPart" }, { "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPart", "Rank": 2, - "Id": 839 + "Id": 839, + "CommandName": "Get-PnPWebPart" }, { "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "CommandName": "Get-PnPWebPartProperty", "Rank": 1, - "Id": 840 + "Id": 840, + "CommandName": "Get-PnPWebPartProperty" }, { "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "CommandName": "Get-PnPWebPartProperty", "Rank": 2, - "Id": 841 + "Id": 841, + "CommandName": "Get-PnPWebPartProperty" }, { "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPartXml", "Rank": 1, - "Id": 842 + "Id": 842, + "CommandName": "Get-PnPWebPartXml" }, { "Command": "Get-PnPWebTemplates", - "CommandName": "Get-PnPWebTemplates", "Rank": 1, - "Id": 843 + "Id": 843, + "CommandName": "Get-PnPWebTemplates" }, { "Command": "Get-PnPWebTemplates -LCID 1033", - "CommandName": "Get-PnPWebTemplates", "Rank": 2, - "Id": 844 + "Id": 844, + "CommandName": "Get-PnPWebTemplates" }, { "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "CommandName": "Get-PnPWebTemplates", "Rank": 3, - "Id": 845 + "Id": 845, + "CommandName": "Get-PnPWebTemplates" }, { "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "CommandName": "Get-PnPWikiPageContent", "Rank": 1, - "Id": 846 + "Id": 846, + "CommandName": "Get-PnPWikiPageContent" }, { "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 1, - "Id": 847 + "Id": 847, + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 2, - "Id": 848 + "Id": 848, + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Grant-PnPHubSiteRights", "Rank": 1, - "Id": 849 + "Id": 849, + "CommandName": "Grant-PnPHubSiteRights" }, { "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Grant-PnPSiteDesignRights", "Rank": 1, - "Id": 850 + "Id": 850, + "CommandName": "Grant-PnPSiteDesignRights" }, { "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Rank": 1, - "Id": 851 + "Id": 851, + "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "CommandName": "Import-PnPTaxonomy", "Rank": 1, - "Id": 852 + "Id": 852, + "CommandName": "Import-PnPTaxonomy" }, { "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "CommandName": "Import-PnPTaxonomy", "Rank": 2, - "Id": 853 + "Id": 853, + "CommandName": "Import-PnPTaxonomy" }, { "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "CommandName": "Import-PnPTaxonomy", "Rank": 3, - "Id": 854 + "Id": 854, + "CommandName": "Import-PnPTaxonomy" }, { "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 1, - "Id": 855 + "Id": 855, + "CommandName": "Import-PnPTermGroupFromXml" }, { "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 2, - "Id": 856 + "Id": 856, + "CommandName": "Import-PnPTermGroupFromXml" }, { "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "CommandName": "Import-PnPTermSet", "Rank": 1, - "Id": 857 + "Id": 857, + "CommandName": "Import-PnPTermSet" }, { "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", - "CommandName": "Import-PnPTermSet", "Rank": 2, - "Id": 858 + "Id": 858, + "CommandName": "Import-PnPTermSet" }, { "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", - "CommandName": "Import-PnPTermSet", "Rank": 3, - "Id": 859 + "Id": 859, + "CommandName": "Import-PnPTermSet" }, { "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Install-PnPApp", "Rank": 1, - "Id": 860 + "Id": 860, + "CommandName": "Install-PnPApp" }, { "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Install-PnPApp", "Rank": 2, - "Id": 861 + "Id": 861, + "CommandName": "Install-PnPApp" }, { "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 1, - "Id": 862 + "Id": 862, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 2, - "Id": 863 + "Id": 863, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 3, - "Id": 864 + "Id": 864, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 4, - "Id": 865 + "Id": 865, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 5, - "Id": 866 + "Id": 866, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 6, - "Id": 867 + "Id": 867, + "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\"", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 7, - "Id": 868 + "Id": 868, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPListDesign", "Rank": 1, - "Id": 869 + "Id": 869, + "CommandName": "Invoke-PnPListDesign" }, { "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "CommandName": "Invoke-PnPListDesign", "Rank": 2, - "Id": 870 + "Id": 870, + "CommandName": "Invoke-PnPListDesign" }, { "Command": "Invoke-PnPQuery -RetryCount 5", - "CommandName": "Invoke-PnPQuery", "Rank": 1, - "Id": 871 + "Id": 871, + "CommandName": "Invoke-PnPQuery" }, { "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPSiteDesign", "Rank": 1, - "Id": 872 + "Id": 872, + "CommandName": "Invoke-PnPSiteDesign" }, { "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "CommandName": "Invoke-PnPSiteDesign", "Rank": 2, - "Id": 873 + "Id": 873, + "CommandName": "Invoke-PnPSiteDesign" }, { "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "CommandName": "Invoke-PnPSiteScript", "Rank": 1, - "Id": 874 + "Id": 874, + "CommandName": "Invoke-PnPSiteScript" }, { "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", "Rank": 1, - "Id": 875 + "Id": 875, + "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", - "CommandName": "Invoke-PnPSiteSwap", "Rank": 2, - "Id": 876 + "Id": 876, + "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", - "CommandName": "Invoke-PnPSiteSwap", "Rank": 3, - "Id": 877 + "Id": 877, + "CommandName": "Invoke-PnPSiteSwap" }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 1, - "Id": 878 + "Id": 878, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 2, - "Id": 879 + "Id": 879, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 3, - "Id": 880 + "Id": 880, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 4, - "Id": 881 + "Id": 881, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 5, - "Id": 882 + "Id": 882, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 6, - "Id": 883 + "Id": 883, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 7, - "Id": 884 + "Id": 884, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 8, - "Id": 885 + "Id": 885, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "CommandName": "Invoke-PnPSPRestMethod", "Rank": 1, - "Id": 886 + "Id": 886, + "CommandName": "Invoke-PnPSPRestMethod" }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 1, - "Id": 887 + "Id": 887, + "CommandName": "Invoke-PnPTenantTemplate" }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 2, - "Id": 888 + "Id": 888, + "CommandName": "Invoke-PnPTenantTemplate" }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 3, - "Id": 889 + "Id": 889, + "CommandName": "Invoke-PnPTenantTemplate" }, { "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction", "Rank": 1, - "Id": 890 + "Id": 890, + "CommandName": "Invoke-PnPWebAction" }, { "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction", "Rank": 2, - "Id": 891 + "Id": 891, + "CommandName": "Invoke-PnPWebAction" }, { "Command": "Measure-PnPList \"Documents\"", - "CommandName": "Measure-PnPList", "Rank": 1, - "Id": 892 + "Id": 892, + "CommandName": "Measure-PnPList" }, { "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "CommandName": "Measure-PnPList", "Rank": 2, - "Id": 893 + "Id": 893, + "CommandName": "Measure-PnPList" }, { "Command": "Measure-PnPWeb", - "CommandName": "Measure-PnPWeb", "Rank": 1, - "Id": 894 + "Id": 894, + "CommandName": "Measure-PnPWeb" }, { "Command": "Measure-PnPWeb $web -Recursive", - "CommandName": "Measure-PnPWeb", "Rank": 2, - "Id": 895 + "Id": 895, + "CommandName": "Measure-PnPWeb" }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "CommandName": "Move-PnPFile", "Rank": 1, - "Id": 896 + "Id": 896, + "CommandName": "Move-PnPFile" }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "CommandName": "Move-PnPFile", "Rank": 2, - "Id": 897 + "Id": 897, + "CommandName": "Move-PnPFile" }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "CommandName": "Move-PnPFile", "Rank": 3, - "Id": 898 + "Id": 898, + "CommandName": "Move-PnPFile" }, { "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "CommandName": "Move-PnPFile", "Rank": 4, - "Id": 899 + "Id": 899, + "CommandName": "Move-PnPFile" }, { "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "CommandName": "Move-PnPFolder", "Rank": 1, - "Id": 900 + "Id": 900, + "CommandName": "Move-PnPFolder" }, { "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "CommandName": "Move-PnPFolder", "Rank": 2, - "Id": 901 + "Id": 901, + "CommandName": "Move-PnPFolder" }, { "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Move-PnPListItemToRecycleBin", "Rank": 1, - "Id": 902 + "Id": 902, + "CommandName": "Move-PnPListItemToRecycleBin" }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "CommandName": "Move-PnPPageComponent", "Rank": 1, - "Id": 903 + "Id": 903, + "CommandName": "Move-PnPPageComponent" }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "CommandName": "Move-PnPPageComponent", "Rank": 2, - "Id": 904 + "Id": 904, + "CommandName": "Move-PnPPageComponent" }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "CommandName": "Move-PnPPageComponent", "Rank": 3, - "Id": 905 + "Id": 905, + "CommandName": "Move-PnPPageComponent" }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "CommandName": "Move-PnPPageComponent", "Rank": 4, - "Id": 906 + "Id": 906, + "CommandName": "Move-PnPPageComponent" }, { "Command": "Move-PnPRecycleBinItem", - "CommandName": "Move-PnpRecycleBinItem", "Rank": 1, - "Id": 907 + "Id": 907, + "CommandName": "Move-PnpRecycleBinItem" }, { "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "CommandName": "Move-PnpRecycleBinItem", "Rank": 2, - "Id": 908 + "Id": 908, + "CommandName": "Move-PnpRecycleBinItem" }, { "Command": "Move-PnPRecycleBinItem -Force", - "CommandName": "Move-PnpRecycleBinItem", "Rank": 3, - "Id": 909 + "Id": 909, + "CommandName": "Move-PnpRecycleBinItem" }, { "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", - "CommandName": "Move-PnPTerm", "Rank": 1, - "Id": 910 + "Id": 910, + "CommandName": "Move-PnPTerm" }, { "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "CommandName": "Move-PnPTerm", "Rank": 2, - "Id": 911 + "Id": 911, + "CommandName": "Move-PnPTerm" }, { "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "CommandName": "Move-PnPTerm", "Rank": 3, - "Id": 912 + "Id": 912, + "CommandName": "Move-PnPTerm" }, { "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", - "CommandName": "Move-PnPTermSet", "Rank": 1, - "Id": 913 + "Id": 913, + "CommandName": "Move-PnPTermSet" }, { "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "CommandName": "Move-PnPTermSet", "Rank": 2, - "Id": 914 + "Id": 914, + "CommandName": "Move-PnPTermSet" }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPAzureADGroup", "Rank": 1, - "Id": 915 + "Id": 915, + "CommandName": "New-PnPAzureADGroup" }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "CommandName": "New-PnPAzureADGroup", "Rank": 2, - "Id": 916 + "Id": 916, + "CommandName": "New-PnPAzureADGroup" }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "CommandName": "New-PnPAzureADGroup", "Rank": 3, - "Id": 917 + "Id": 917, + "CommandName": "New-PnPAzureADGroup" }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 1, - "Id": 918 + "Id": 918, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 2, - "Id": 919 + "Id": 919, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 3, - "Id": 920 + "Id": 920, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "CommandName": "New-PnPAzureCertificate", "Rank": 1, - "Id": 921 + "Id": 921, + "CommandName": "New-PnPAzureCertificate" }, { "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "CommandName": "New-PnPAzureCertificate", "Rank": 2, - "Id": 922 + "Id": 922, + "CommandName": "New-PnPAzureCertificate" }, { "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "CommandName": "New-PnPAzureCertificate", "Rank": 3, - "Id": 923 + "Id": 923, + "CommandName": "New-PnPAzureCertificate" }, { "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", "Rank": 1, - "Id": 924 + "Id": 924, + "CommandName": "New-PnPGraphSubscription" }, { "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", - "CommandName": "New-PnPGraphSubscription", "Rank": 2, - "Id": 925 + "Id": 925, + "CommandName": "New-PnPGraphSubscription" }, { "Command": "New-PnPGroup -Title \"My Site Users\"", - "CommandName": "New-PnPGroup", "Rank": 1, - "Id": 926 + "Id": 926, + "CommandName": "New-PnPGroup" }, { "Command": "New-PnPList -Title Announcements -Template Announcements", - "CommandName": "New-PnPList", "Rank": 1, - "Id": 927 + "Id": 927, + "CommandName": "New-PnPList" }, { "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "CommandName": "New-PnPList", "Rank": 2, - "Id": 928 + "Id": 928, + "CommandName": "New-PnPList" }, { "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "CommandName": "New-PnPList", "Rank": 3, - "Id": 929 + "Id": 929, + "CommandName": "New-PnPList" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 1, - "Id": 930 + "Id": 930, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 2, - "Id": 931 + "Id": 931, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 3, - "Id": 932 + "Id": 932, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 4, - "Id": 933 + "Id": 933, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 5, - "Id": 934 + "Id": 934, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 6, - "Id": 935 + "Id": 935, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 7, - "Id": 936 + "Id": 936, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 1, - "Id": 937 + "Id": 937, + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 2, - "Id": 938 + "Id": 938, + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "CommandName": "New-PnPPersonalSite", "Rank": 1, - "Id": 939 + "Id": 939, + "CommandName": "New-PnPPersonalSite" }, { "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "CommandName": "New-PnPPlannerPlan", "Rank": 1, - "Id": 940 + "Id": 940, + "CommandName": "New-PnPPlannerPlan" }, { "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "CommandName": "New-PnPSdnProvider", "Rank": 1, - "Id": 941 + "Id": 941, + "CommandName": "New-PnPSdnProvider" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite", "Rank": 1, - "Id": 942 + "Id": 942, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "CommandName": "New-PnPSite", "Rank": 2, - "Id": 943 + "Id": 943, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "CommandName": "New-PnPSite", "Rank": 3, - "Id": 944 + "Id": 944, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "CommandName": "New-PnPSite", "Rank": 4, - "Id": 945 + "Id": 945, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite", "Rank": 5, - "Id": 946 + "Id": 946, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "CommandName": "New-PnPSite", "Rank": 6, - "Id": 947 + "Id": 947, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "CommandName": "New-PnPSite", "Rank": 7, - "Id": 948 + "Id": 948, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "CommandName": "New-PnPSite", "Rank": 8, - "Id": 949 + "Id": 949, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "CommandName": "New-PnPSite", "Rank": 9, - "Id": 950 + "Id": 950, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "CommandName": "New-PnPSite", "Rank": 10, - "Id": 951 + "Id": 951, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite", "Rank": 11, - "Id": 952 + "Id": 952, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "CommandName": "New-PnPSite", "Rank": 12, - "Id": 953 + "Id": 953, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "CommandName": "New-PnPSite", "Rank": 13, - "Id": 954 + "Id": 954, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite", "Rank": 14, - "Id": 955 + "Id": 955, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "CommandName": "New-PnPSite", "Rank": 15, - "Id": 956 + "Id": 956, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "CommandName": "New-PnPSite", "Rank": 16, - "Id": 957 + "Id": 957, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSiteCollectionTermStore", - "CommandName": "New-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 958 + "Id": 958, + "CommandName": "New-PnPSiteCollectionTermStore" }, { "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "CommandName": "New-PnPSiteGroup", "Rank": 1, - "Id": 959 + "Id": 959, + "CommandName": "New-PnPSiteGroup" }, { "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "CommandName": "New-PnPSiteGroup", "Rank": 2, - "Id": 960 + "Id": 960, + "CommandName": "New-PnPSiteGroup" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 1, - "Id": 961 + "Id": 961, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 2, - "Id": 962 + "Id": 962, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 3, - "Id": 963 + "Id": 963, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 4, - "Id": 964 + "Id": 964, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 5, - "Id": 965 + "Id": 965, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 6, - "Id": 966 + "Id": 966, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 7, - "Id": 967 + "Id": 967, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 8, - "Id": 968 + "Id": 968, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "CommandName": "New-PnPTeamsApp", "Rank": 1, - "Id": 969 + "Id": 969, + "CommandName": "New-PnPTeamsApp" }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "CommandName": "New-PnPTeamsTeam", "Rank": 1, - "Id": 970 + "Id": 970, + "CommandName": "New-PnPTeamsTeam" }, { "Command": "New-PnPTeamsTeam -GroupId $groupId", - "CommandName": "New-PnPTeamsTeam", "Rank": 2, - "Id": 971 + "Id": 971, + "CommandName": "New-PnPTeamsTeam" }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "CommandName": "New-PnPTeamsTeam", "Rank": 3, - "Id": 972 + "Id": 972, + "CommandName": "New-PnPTeamsTeam" }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "CommandName": "New-PnPTeamsTeam", "Rank": 4, - "Id": 973 + "Id": 973, + "CommandName": "New-PnPTeamsTeam" }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", - "CommandName": "New-PnPTeamsTeam", "Rank": 5, - "Id": 974 + "Id": 974, + "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\"", - "CommandName": "New-PnPTeamsTeam", "Rank": 6, - "Id": 975 + "Id": 975, + "CommandName": "New-PnPTeamsTeam" }, { "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", - "CommandName": "New-PnPTenantSite", "Rank": 1, - "Id": 976 + "Id": 976, + "CommandName": "New-PnPTenantSite" }, { "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "CommandName": "New-PnPTenantSite", "Rank": 2, - "Id": 977 + "Id": 977, + "CommandName": "New-PnPTenantSite" }, { "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "CommandName": "New-PnPTerm", "Rank": 1, - "Id": 978 + "Id": 978, + "CommandName": "New-PnPTerm" }, { "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "New-PnPTerm", "Rank": 2, - "Id": 979 + "Id": 979, + "CommandName": "New-PnPTerm" }, { "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "CommandName": "New-PnPTermGroup", "Rank": 1, - "Id": 980 + "Id": 980, + "CommandName": "New-PnPTermGroup" }, { "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "CommandName": "New-PnPTermLabel", "Rank": 1, - "Id": 981 + "Id": 981, + "CommandName": "New-PnPTermLabel" }, { "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "CommandName": "New-PnPTermSet", "Rank": 1, - "Id": 982 + "Id": 982, + "CommandName": "New-PnPTermSet" }, { "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "CommandName": "New-PnPUPABulkImportJob", "Rank": 1, - "Id": 983 + "Id": 983, + "CommandName": "New-PnPUPABulkImportJob" }, { "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", - "CommandName": "New-PnPUPABulkImportJob", "Rank": 2, - "Id": 984 + "Id": 984, + "CommandName": "New-PnPUPABulkImportJob" }, { "Command": "New-PnPUser -LoginName user@company.com", - "CommandName": "New-PnPUser", "Rank": 1, - "Id": 985 + "Id": 985, + "CommandName": "New-PnPUser" }, { "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "CommandName": "New-PnPWeb", "Rank": 1, - "Id": 986 + "Id": 986, + "CommandName": "New-PnPWeb" }, { "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Publish-PnPApp", "Rank": 1, - "Id": 987 + "Id": 987, + "CommandName": "Publish-PnPApp" }, { "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "CommandName": "Publish-PnPApp", "Rank": 2, - "Id": 988 + "Id": 988, + "CommandName": "Publish-PnPApp" }, { "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", "Rank": 1, - "Id": 989 + "Id": 989, + "CommandName": "Publish-PnPCompanyApp" }, { "Command": "Publish-PnPContentType -ContentType 0x0101", - "CommandName": "Publish-PnPContentType", "Rank": 1, - "Id": 990 + "Id": 990, + "CommandName": "Publish-PnPContentType" }, { "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Publish-PnPSyntexModel", "Rank": 1, - "Id": 991 + "Id": 991, + "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", - "CommandName": "Publish-PnPSyntexModel", "Rank": 2, - "Id": 992 + "Id": 992, + "CommandName": "Publish-PnPSyntexModel" }, { "Command": "Read-PnPSiteTemplate -Path template.pnp", - "CommandName": "Read-PnPSiteTemplate", "Rank": 1, - "Id": 993 + "Id": 993, + "CommandName": "Read-PnPSiteTemplate" }, { "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "CommandName": "Read-PnPSiteTemplate", "Rank": 2, - "Id": 994 + "Id": 994, + "CommandName": "Read-PnPSiteTemplate" }, { "Command": "Read-PnPSiteTemplate -Xml $xml", - "CommandName": "Read-PnPSiteTemplate", "Rank": 3, - "Id": 995 + "Id": 995, + "CommandName": "Read-PnPSiteTemplate" }, { "Command": "Read-PnPTenantTemplate -Path template.pnp", - "CommandName": "Read-PnPTenantTemplate", "Rank": 1, - "Id": 996 + "Id": 996, + "CommandName": "Read-PnPTenantTemplate" }, { "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "CommandName": "Register-PnPAppCatalogSite", "Rank": 1, - "Id": 997 + "Id": 997, + "CommandName": "Register-PnPAppCatalogSite" }, { "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", "Rank": 1, - "Id": 998 + "Id": 998, + "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\")", - "CommandName": "Register-PnPAzureADApp", "Rank": 2, - "Id": 999 + "Id": 999, + "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\")", - "CommandName": "Register-PnPAzureADApp", "Rank": 3, - "Id": 1000 + "Id": 1000, + "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\")", - "CommandName": "Register-PnPAzureADApp", "Rank": 4, - "Id": 1001 + "Id": 1001, + "CommandName": "Register-PnPAzureADApp" }, { "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "CommandName": "Register-PnPAzureADApp", "Rank": 5, - "Id": 1002 + "Id": 1002, + "CommandName": "Register-PnPAzureADApp" }, { "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "CommandName": "Register-PnPAzureADApp", "Rank": 6, - "Id": 1003 + "Id": 1003, + "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", - "CommandName": "Register-PnPAzureADApp", "Rank": 7, - "Id": 1004 + "Id": 1004, + "CommandName": "Register-PnPAzureADApp" }, { "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Register-PnPHubSite", "Rank": 1, - "Id": 1005 + "Id": 1005, + "CommandName": "Register-PnPHubSite" }, { "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "CommandName": "Register-PnPHubSite", "Rank": 2, - "Id": 1006 + "Id": 1006, + "CommandName": "Register-PnPHubSite" }, { "Command": "Register-PnPManagementShellAccess", - "CommandName": "Register-PnPManagementShellAccess", "Rank": 1, - "Id": 1007 + "Id": 1007, + "CommandName": "Register-PnPManagementShellAccess" }, { "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "CommandName": "Register-PnPManagementShellAccess", "Rank": 2, - "Id": 1008 + "Id": 1008, + "CommandName": "Register-PnPManagementShellAccess" }, { "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "CommandName": "Register-PnPManagementShellAccess", "Rank": 3, - "Id": 1009 + "Id": 1009, + "CommandName": "Register-PnPManagementShellAccess" }, { "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 1, - "Id": 1010 + "Id": 1010, + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 2, - "Id": 1011 + "Id": 1011, + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "CommandName": "Remove-PnPAlert", "Rank": 1, - "Id": 1012 + "Id": 1012, + "CommandName": "Remove-PnPAlert" }, { "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAlert", "Rank": 2, - "Id": 1013 + "Id": 1013, + "CommandName": "Remove-PnPAlert" }, { "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Remove-PnPApp", "Rank": 1, - "Id": 1014 + "Id": 1014, + "CommandName": "Remove-PnPApp" }, { "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Remove-PnPApp", "Rank": 2, - "Id": 1015 + "Id": 1015, + "CommandName": "Remove-PnPApp" }, { "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 1, - "Id": 1016 + "Id": 1016, + "CommandName": "Remove-PnPApplicationCustomizer" }, { "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 2, - "Id": 1017 + "Id": 1017, + "CommandName": "Remove-PnPApplicationCustomizer" }, { "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 1, - "Id": 1018 + "Id": 1018, + "CommandName": "Remove-PnPAvailableSiteClassification" }, { "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 2, - "Id": 1019 + "Id": 1019, + "CommandName": "Remove-PnPAvailableSiteClassification" }, { "Command": "Remove-PnPAzureADApp -Identity MyApp", - "CommandName": "Remove-PnPAzureADApp", "Rank": 1, - "Id": 1020 + "Id": 1020, + "CommandName": "Remove-PnPAzureADApp" }, { "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Remove-PnPAzureADApp", "Rank": 2, - "Id": 1021 + "Id": 1021, + "CommandName": "Remove-PnPAzureADApp" }, { "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "CommandName": "Remove-PnPAzureADGroup", "Rank": 1, - "Id": 1022 + "Id": 1022, + "CommandName": "Remove-PnPAzureADGroup" }, { "Command": "Remove-PnPAzureADGroup -Identity $group", - "CommandName": "Remove-PnPAzureADGroup", "Rank": 2, - "Id": 1023 + "Id": 1023, + "CommandName": "Remove-PnPAzureADGroup" }, { "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupMember", "Rank": 1, - "Id": 1024 + "Id": 1024, + "CommandName": "Remove-PnPAzureADGroupMember" }, { "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupOwner", "Rank": 1, - "Id": 1025 + "Id": 1025, + "CommandName": "Remove-PnPAzureADGroupOwner" }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, - "Id": 1026 + "Id": 1026, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, - "Id": 1027 + "Id": 1027, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 3, - "Id": 1028 + "Id": 1028, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 4, - "Id": 1029 + "Id": 1029, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "CommandName": "Remove-PnPContentType", "Rank": 1, - "Id": 1030 + "Id": 1030, + "CommandName": "Remove-PnPContentType" }, { "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "CommandName": "Remove-PnPContentType", "Rank": 2, - "Id": 1031 + "Id": 1031, + "CommandName": "Remove-PnPContentType" }, { "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 1, - "Id": 1032 + "Id": 1032, + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 2, - "Id": 1033 + "Id": 1033, + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPContentTypeFromList", "Rank": 1, - "Id": 1034 + "Id": 1034, + "CommandName": "Remove-PnPContentTypeFromList" }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPCustomAction", "Rank": 1, - "Id": 1035 + "Id": 1035, + "CommandName": "Remove-PnPCustomAction" }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPCustomAction", "Rank": 2, - "Id": 1036 + "Id": 1036, + "CommandName": "Remove-PnPCustomAction" }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "CommandName": "Remove-PnPCustomAction", "Rank": 3, - "Id": 1037 + "Id": 1037, + "CommandName": "Remove-PnPCustomAction" }, { "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Rank": 1, - "Id": 1038 + "Id": 1038, + "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver", "Rank": 1, - "Id": 1039 + "Id": 1039, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver", "Rank": 2, - "Id": 1040 + "Id": 1040, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "CommandName": "Remove-PnPEventReceiver", "Rank": 3, - "Id": 1041 + "Id": 1041, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -List ProjectList", - "CommandName": "Remove-PnPEventReceiver", "Rank": 4, - "Id": 1042 + "Id": 1042, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver", - "CommandName": "Remove-PnPEventReceiver", "Rank": 5, - "Id": 1043 + "Id": 1043, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -Scope Site", - "CommandName": "Remove-PnPEventReceiver", "Rank": 6, - "Id": 1044 + "Id": 1044, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -Scope Web", - "CommandName": "Remove-PnPEventReceiver", "Rank": 7, - "Id": 1045 + "Id": 1045, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -Scope All", - "CommandName": "Remove-PnPEventReceiver", "Rank": 8, - "Id": 1046 + "Id": 1046, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPField -Identity \"Speakers\"", - "CommandName": "Remove-PnPField", "Rank": 1, - "Id": 1047 + "Id": 1047, + "CommandName": "Remove-PnPField" }, { "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Remove-PnPField", "Rank": 2, - "Id": 1048 + "Id": 1048, + "CommandName": "Remove-PnPField" }, { "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 1, - "Id": 1049 + "Id": 1049, + "CommandName": "Remove-PnPFieldFromContentType" }, { "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 2, - "Id": 1050 + "Id": 1050, + "CommandName": "Remove-PnPFieldFromContentType" }, { "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile", "Rank": 1, - "Id": 1051 + "Id": 1051, + "CommandName": "Remove-PnPFile" }, { "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile", "Rank": 2, - "Id": 1052 + "Id": 1052, + "CommandName": "Remove-PnPFile" }, { "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "CommandName": "Remove-PnPFile", "Rank": 3, - "Id": 1053 + "Id": 1053, + "CommandName": "Remove-PnPFile" }, { "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "CommandName": "Remove-PnPFileFromSiteTemplate", "Rank": 1, - "Id": 1054 + "Id": 1054, + "CommandName": "Remove-PnPFileFromSiteTemplate" }, { "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Remove-PnPFileSharingLink", "Rank": 1, - "Id": 1055 + "Id": 1055, + "CommandName": "Remove-PnPFileSharingLink" }, { "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "CommandName": "Remove-PnPFileSharingLink", "Rank": 2, - "Id": 1056 + "Id": 1056, + "CommandName": "Remove-PnPFileSharingLink" }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Remove-PnPFileVersion", "Rank": 1, - "Id": 1057 + "Id": 1057, + "CommandName": "Remove-PnPFileVersion" }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Remove-PnPFileVersion", "Rank": 2, - "Id": 1058 + "Id": 1058, + "CommandName": "Remove-PnPFileVersion" }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "CommandName": "Remove-PnPFileVersion", "Rank": 3, - "Id": 1059 + "Id": 1059, + "CommandName": "Remove-PnPFileVersion" }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "CommandName": "Remove-PnPFlowOwner", "Rank": 1, - "Id": 1060 + "Id": 1060, + "CommandName": "Remove-PnPFlowOwner" }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "CommandName": "Remove-PnPFlowOwner", "Rank": 2, - "Id": 1061 + "Id": 1061, + "CommandName": "Remove-PnPFlowOwner" }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", - "CommandName": "Remove-PnPFlowOwner", "Rank": 3, - "Id": 1062 + "Id": 1062, + "CommandName": "Remove-PnPFlowOwner" }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "CommandName": "Remove-PnPFlowOwner", "Rank": 4, - "Id": 1063 + "Id": 1063, + "CommandName": "Remove-PnPFlowOwner" }, { "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Remove-PnPFolder", "Rank": 1, - "Id": 1064 + "Id": 1064, + "CommandName": "Remove-PnPFolder" }, { "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "CommandName": "Remove-PnPFolder", "Rank": 2, - "Id": 1065 + "Id": 1065, + "CommandName": "Remove-PnPFolder" }, { "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 1, - "Id": 1066 + "Id": 1066, + "CommandName": "Remove-PnPFolderSharingLink" }, { "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 2, - "Id": 1067 + "Id": 1067, + "CommandName": "Remove-PnPFolderSharingLink" }, { "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "CommandName": "Remove-PnPGraphSubscription", "Rank": 1, - "Id": 1068 + "Id": 1068, + "CommandName": "Remove-PnPGraphSubscription" }, { "Command": "Remove-PnPGroup -Identity \"My Users\"", - "CommandName": "Remove-PnPGroup", "Rank": 1, - "Id": 1069 + "Id": 1069, + "CommandName": "Remove-PnPGroup" }, { "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Remove-PnPGroupMember", "Rank": 1, - "Id": 1070 + "Id": 1070, + "CommandName": "Remove-PnPGroupMember" }, { "Command": "Remove-PnPHomeSite", - "CommandName": "Remove-PnPHomeSite", "Rank": 1, - "Id": 1071 + "Id": 1071, + "CommandName": "Remove-PnPHomeSite" }, { "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPHubSiteAssociation", "Rank": 1, - "Id": 1072 + "Id": 1072, + "CommandName": "Remove-PnPHubSiteAssociation" }, { "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 1, - "Id": 1073 + "Id": 1073, + "CommandName": "Remove-PnPHubToHubAssociation" }, { "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 2, - "Id": 1074 + "Id": 1074, + "CommandName": "Remove-PnPHubToHubAssociation" }, { "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "CommandName": "Remove-PnPIndexedProperty", "Rank": 1, - "Id": 1075 + "Id": 1075, + "CommandName": "Remove-PnPIndexedProperty" }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 1, - "Id": 1076 + "Id": 1076, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 2, - "Id": 1077 + "Id": 1077, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 3, - "Id": 1078 + "Id": 1078, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPJavaScriptLink -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 4, - "Id": 1079 + "Id": 1079, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 5, - "Id": 1080 + "Id": 1080, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPKnowledgeHubSite", - "CommandName": "Remove-PnPKnowledgeHubSite", "Rank": 1, - "Id": 1081 + "Id": 1081, + "CommandName": "Remove-PnPKnowledgeHubSite" }, { "Command": "Remove-PnPList -Identity Announcements", - "CommandName": "Remove-PnPList", "Rank": 1, - "Id": 1082 + "Id": 1082, + "CommandName": "Remove-PnPList" }, { "Command": "Remove-PnPList -Identity Announcements -Force", - "CommandName": "Remove-PnPList", "Rank": 2, - "Id": 1083 + "Id": 1083, + "CommandName": "Remove-PnPList" }, { "Command": "Remove-PnPList -Identity Announcements -Recycle", - "CommandName": "Remove-PnPList", "Rank": 3, - "Id": 1084 + "Id": 1084, + "CommandName": "Remove-PnPList" }, { "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "CommandName": "Remove-PnPList", "Rank": 4, - "Id": 1085 + "Id": 1085, + "CommandName": "Remove-PnPList" }, { "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPListDesign", "Rank": 1, - "Id": 1086 + "Id": 1086, + "CommandName": "Remove-PnPListDesign" }, { "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Remove-PnPListItem", "Rank": 1, - "Id": 1087 + "Id": 1087, + "CommandName": "Remove-PnPListItem" }, { "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "CommandName": "Remove-PnPListItem", "Rank": 2, - "Id": 1088 + "Id": 1088, + "CommandName": "Remove-PnPListItem" }, { "Command": "Remove-PnPListItem -List \"Demo List\"", - "CommandName": "Remove-PnPListItem", "Rank": 3, - "Id": 1089 + "Id": 1089, + "CommandName": "Remove-PnPListItem" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 1, - "Id": 1090 + "Id": 1090, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 2, - "Id": 1091 + "Id": 1091, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 3, - "Id": 1092 + "Id": 1092, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 4, - "Id": 1093 + "Id": 1093, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 5, - "Id": 1094 + "Id": 1094, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Remove-PnPListItemVersion", "Rank": 1, - "Id": 1095 + "Id": 1095, + "CommandName": "Remove-PnPListItemVersion" }, { "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Remove-PnPListItemVersion", "Rank": 2, - "Id": 1096 + "Id": 1096, + "CommandName": "Remove-PnPListItemVersion" }, { "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 1, - "Id": 1097 + "Id": 1097, + "CommandName": "Remove-PnPMicrosoft365Group" }, { "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 2, - "Id": 1098 + "Id": 1098, + "CommandName": "Remove-PnPMicrosoft365Group" }, { "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupMember", "Rank": 1, - "Id": 1099 + "Id": 1099, + "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Rank": 1, - "Id": 1100 + "Id": 1100, + "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 1, - "Id": 1101 + "Id": 1101, + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 2, - "Id": 1102 + "Id": 1102, + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { "Command": "Remove-PnPNavigationNode -Identity 1032", - "CommandName": "Remove-PnPNavigationNode", "Rank": 1, - "Id": 1103 + "Id": 1103, + "CommandName": "Remove-PnPNavigationNode" }, { "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "CommandName": "Remove-PnPNavigationNode", "Rank": 2, - "Id": 1104 + "Id": 1104, + "CommandName": "Remove-PnPNavigationNode" }, { "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "CommandName": "Remove-PnPNavigationNode", "Rank": 3, - "Id": 1105 + "Id": 1105, + "CommandName": "Remove-PnPNavigationNode" }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 1, - "Id": 1106 + "Id": 1106, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 2, - "Id": 1107 + "Id": 1107, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 3, - "Id": 1108 + "Id": 1108, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPOrgNewsSite", "Rank": 1, - "Id": 1109 + "Id": 1109, + "CommandName": "Remove-PnPOrgNewsSite" }, { "Command": "Remove-PnPPage -Identity \"MyPage\"", - "CommandName": "Remove-PnPPage", "Rank": 1, - "Id": 1110 + "Id": 1110, + "CommandName": "Remove-PnPPage" }, { "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "CommandName": "Remove-PnPPage", "Rank": 2, - "Id": 1111 + "Id": 1111, + "CommandName": "Remove-PnPPage" }, { "Command": "Remove-PnPPage $page", - "CommandName": "Remove-PnPPage", "Rank": 3, - "Id": 1112 + "Id": 1112, + "CommandName": "Remove-PnPPage" }, { "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "CommandName": "Remove-PnPPage", "Rank": 4, - "Id": 1113 + "Id": 1113, + "CommandName": "Remove-PnPPage" }, { "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPPageComponent", "Rank": 1, - "Id": 1114 + "Id": 1114, + "CommandName": "Remove-PnPPageComponent" }, { "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "CommandName": "Remove-PnPPlannerBucket", "Rank": 1, - "Id": 1115 + "Id": 1115, + "CommandName": "Remove-PnPPlannerBucket" }, { "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "CommandName": "Remove-PnPPlannerPlan", "Rank": 1, - "Id": 1116 + "Id": 1116, + "CommandName": "Remove-PnPPlannerPlan" }, { "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Remove-PnPPlannerRoster", "Rank": 1, - "Id": 1117 + "Id": 1117, + "CommandName": "Remove-PnPPlannerRoster" }, { "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPPlannerRosterMember", "Rank": 1, - "Id": 1118 + "Id": 1118, + "CommandName": "Remove-PnPPlannerRosterMember" }, { "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "CommandName": "Remove-PnPPlannerTask", "Rank": 1, - "Id": 1119 + "Id": 1119, + "CommandName": "Remove-PnPPlannerTask" }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 1, - "Id": 1120 + "Id": 1120, + "CommandName": "Remove-PnPPropertyBagValue" }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 2, - "Id": 1121 + "Id": 1121, + "CommandName": "Remove-PnPPropertyBagValue" }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 3, - "Id": 1122 + "Id": 1122, + "CommandName": "Remove-PnPPropertyBagValue" }, { "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Remove-PnPPublishingImageRendition", "Rank": 1, - "Id": 1123 + "Id": 1123, + "CommandName": "Remove-PnPPublishingImageRendition" }, { "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "CommandName": "Remove-PnPRoleDefinition", "Rank": 1, - "Id": 1124 + "Id": 1124, + "CommandName": "Remove-PnPRoleDefinition" }, { "Command": "Remove-PnPSdnProvider -Confirm:false", - "CommandName": "Remove-PnPSdnProvider", "Rank": 1, - "Id": 1125 + "Id": 1125, + "CommandName": "Remove-PnPSdnProvider" }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 1, - "Id": 1126 + "Id": 1126, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 2, - "Id": 1127 + "Id": 1127, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 3, - "Id": 1128 + "Id": 1128, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 4, - "Id": 1129 + "Id": 1129, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 1, - "Id": 1130 + "Id": 1130, + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 2, - "Id": 1131 + "Id": 1131, + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Rank": 1, - "Id": 1132 + "Id": 1132, + "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { "Command": "Remove-PnPSiteCollectionTermStore", - "CommandName": "Remove-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 1133 + "Id": 1133, + "CommandName": "Remove-PnPSiteCollectionTermStore" }, { "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesign", "Rank": 1, - "Id": 1134 + "Id": 1134, + "CommandName": "Remove-PnPSiteDesign" }, { "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesignTask", "Rank": 1, - "Id": 1135 + "Id": 1135, + "CommandName": "Remove-PnPSiteDesignTask" }, { "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Remove-PnPSiteGroup", "Rank": 1, - "Id": 1136 + "Id": 1136, + "CommandName": "Remove-PnPSiteGroup" }, { "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "CommandName": "Remove-PnPSiteGroup", "Rank": 2, - "Id": 1137 + "Id": 1137, + "CommandName": "Remove-PnPSiteGroup" }, { "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteScript", "Rank": 1, - "Id": 1138 + "Id": 1138, + "CommandName": "Remove-PnPSiteScript" }, { "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Remove-PnPSiteUserInvitations", "Rank": 1, - "Id": 1139 + "Id": 1139, + "CommandName": "Remove-PnPSiteUserInvitations" }, { "Command": "Remove-PnPStorageEntity -Key MyKey", - "CommandName": "Remove-PnPStorageEntity", "Rank": 1, - "Id": 1140 + "Id": 1140, + "CommandName": "Remove-PnPStorageEntity" }, { "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Remove-PnPStorageEntity", "Rank": 2, - "Id": 1141 + "Id": 1141, + "CommandName": "Remove-PnPStorageEntity" }, { "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "CommandName": "Remove-PnPStoredCredential", "Rank": 1, - "Id": 1142 + "Id": 1142, + "CommandName": "Remove-PnPStoredCredential" }, { "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 1, - "Id": 1143 + "Id": 1143, + "CommandName": "Remove-PnPTaxonomyItem" }, { "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 2, - "Id": 1144 + "Id": 1144, + "CommandName": "Remove-PnPTaxonomyItem" }, { "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "CommandName": "Remove-PnPTeamsApp", "Rank": 1, - "Id": 1145 + "Id": 1145, + "CommandName": "Remove-PnPTeamsApp" }, { "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "CommandName": "Remove-PnPTeamsApp", "Rank": 2, - "Id": 1146 + "Id": 1146, + "CommandName": "Remove-PnPTeamsApp" }, { "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "CommandName": "Remove-PnPTeamsChannel", "Rank": 1, - "Id": 1147 + "Id": 1147, + "CommandName": "Remove-PnPTeamsChannel" }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 1, - "Id": 1148 + "Id": 1148, + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 2, - "Id": 1149 + "Id": 1149, + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 3, - "Id": 1150 + "Id": 1150, + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "CommandName": "Remove-PnPTeamsTab", "Rank": 1, - "Id": 1151 + "Id": 1151, + "CommandName": "Remove-PnPTeamsTab" }, { "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "CommandName": "Remove-PnPTeamsTab", "Rank": 2, - "Id": 1152 + "Id": 1152, + "CommandName": "Remove-PnPTeamsTab" }, { "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", - "CommandName": "Remove-PnPTeamsTab", "Rank": 3, - "Id": 1153 + "Id": 1153, + "CommandName": "Remove-PnPTeamsTab" }, { "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Remove-PnPTeamsTag", "Rank": 1, - "Id": 1154 + "Id": 1154, + "CommandName": "Remove-PnPTeamsTag" }, { "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Remove-PnPTeamsTeam", "Rank": 1, - "Id": 1155 + "Id": 1155, + "CommandName": "Remove-PnPTeamsTeam" }, { "Command": "Remove-PnPTeamsTeam -Identity testteam", - "CommandName": "Remove-PnPTeamsTeam", "Rank": 2, - "Id": 1156 + "Id": 1156, + "CommandName": "Remove-PnPTeamsTeam" }, { "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "CommandName": "Remove-PnPTeamsUser", "Rank": 1, - "Id": 1157 + "Id": 1157, + "CommandName": "Remove-PnPTeamsUser" }, { "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Remove-PnPTeamsUser", "Rank": 2, - "Id": 1158 + "Id": 1158, + "CommandName": "Remove-PnPTeamsUser" }, { "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Remove-PnPTenantCdnOrigin", "Rank": 1, - "Id": 1159 + "Id": 1159, + "CommandName": "Remove-PnPTenantCdnOrigin" }, { "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 1, - "Id": 1160 + "Id": 1160, + "CommandName": "Remove-PnPTenantDeletedSite" }, { "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 2, - "Id": 1161 + "Id": 1161, + "CommandName": "Remove-PnPTenantDeletedSite" }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantSite", "Rank": 1, - "Id": 1162 + "Id": 1162, + "CommandName": "Remove-PnPTenantSite" }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "CommandName": "Remove-PnPTenantSite", "Rank": 2, - "Id": 1163 + "Id": 1163, + "CommandName": "Remove-PnPTenantSite" }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "CommandName": "Remove-PnPTenantSite", "Rank": 3, - "Id": 1164 + "Id": 1164, + "CommandName": "Remove-PnPTenantSite" }, { "Command": "Remove-PnPTenantSyncClientRestriction", - "CommandName": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, - "Id": 1165 + "Id": 1165, + "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Remove-PnPTenantTheme", "Rank": 1, - "Id": 1166 + "Id": 1166, + "CommandName": "Remove-PnPTenantTheme" }, { "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTerm", "Rank": 1, - "Id": 1167 + "Id": 1167, + "CommandName": "Remove-PnPTerm" }, { "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTerm", "Rank": 2, - "Id": 1168 + "Id": 1168, + "CommandName": "Remove-PnPTerm" }, { "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTermGroup", "Rank": 1, - "Id": 1169 + "Id": 1169, + "CommandName": "Remove-PnPTermGroup" }, { "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "CommandName": "Remove-PnPTermGroup", "Rank": 2, - "Id": 1170 + "Id": 1170, + "CommandName": "Remove-PnPTermGroup" }, { "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "CommandName": "Remove-PnPTermGroup", "Rank": 3, - "Id": 1171 + "Id": 1171, + "CommandName": "Remove-PnPTermGroup" }, { "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "CommandName": "Remove-PnPTermLabel", "Rank": 1, - "Id": 1172 + "Id": 1172, + "CommandName": "Remove-PnPTermLabel" }, { "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTermLabel", "Rank": 2, - "Id": 1173 + "Id": 1173, + "CommandName": "Remove-PnPTermLabel" }, { "Command": "Remove-PnPUser -Identity 23", - "CommandName": "Remove-PnPUser", "Rank": 1, - "Id": 1174 + "Id": 1174, + "CommandName": "Remove-PnPUser" }, { "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "CommandName": "Remove-PnPUser", "Rank": 2, - "Id": 1175 + "Id": 1175, + "CommandName": "Remove-PnPUser" }, { "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "CommandName": "Remove-PnPUser", "Rank": 3, - "Id": 1176 + "Id": 1176, + "CommandName": "Remove-PnPUser" }, { "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Remove-PnPUserInfo", "Rank": 1, - "Id": 1177 + "Id": 1177, + "CommandName": "Remove-PnPUserInfo" }, { "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Remove-PnPUserProfile", "Rank": 1, - "Id": 1178 + "Id": 1178, + "CommandName": "Remove-PnPUserProfile" }, { "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "CommandName": "Remove-PnPView", "Rank": 1, - "Id": 1179 + "Id": 1179, + "CommandName": "Remove-PnPView" }, { "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Rank": 1, - "Id": 1180 + "Id": 1180, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { "Command": "Remove-PnPWeb -Identity projectA", - "CommandName": "Remove-PnPWeb", "Rank": 1, - "Id": 1181 + "Id": 1181, + "CommandName": "Remove-PnPWeb" }, { "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "CommandName": "Remove-PnPWeb", "Rank": 2, - "Id": 1182 + "Id": 1182, + "CommandName": "Remove-PnPWeb" }, { "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "CommandName": "Remove-PnPWebhookSubscription", "Rank": 1, - "Id": 1183 + "Id": 1183, + "CommandName": "Remove-PnPWebhookSubscription" }, { "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPWebPart", "Rank": 1, - "Id": 1184 + "Id": 1184, + "CommandName": "Remove-PnPWebPart" }, { "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "CommandName": "Remove-PnPWebPart", "Rank": 2, - "Id": 1185 + "Id": 1185, + "CommandName": "Remove-PnPWebPart" }, { "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "CommandName": "Remove-PnPWikiPage", "Rank": 1, - "Id": 1186 + "Id": 1186, + "CommandName": "Remove-PnPWikiPage" }, { "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile", "Rank": 1, - "Id": 1187 + "Id": 1187, + "CommandName": "Rename-PnPFile" }, { "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile", "Rank": 2, - "Id": 1188 + "Id": 1188, + "CommandName": "Rename-PnPFile" }, { "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "CommandName": "Rename-PnPFile", "Rank": 3, - "Id": 1189 + "Id": 1189, + "CommandName": "Rename-PnPFile" }, { "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "CommandName": "Rename-PnPFolder", "Rank": 1, - "Id": 1190 + "Id": 1190, + "CommandName": "Rename-PnPFolder" }, { "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Repair-PnPSite", "Rank": 1, - "Id": 1191 + "Id": 1191, + "CommandName": "Repair-PnPSite" }, { "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "CommandName": "Repair-PnPSite", "Rank": 2, - "Id": 1192 + "Id": 1192, + "CommandName": "Repair-PnPSite" }, { "Command": "Request-PnPAccessToken", - "CommandName": "Request-PnPAccessToken", "Rank": 1, - "Id": 1193 + "Id": 1193, + "CommandName": "Request-PnPAccessToken" }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "CommandName": "Request-PnPAccessToken", "Rank": 2, - "Id": 1194 + "Id": 1194, + "CommandName": "Request-PnPAccessToken" }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "CommandName": "Request-PnPAccessToken", "Rank": 3, - "Id": 1195 + "Id": 1195, + "CommandName": "Request-PnPAccessToken" }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "CommandName": "Request-PnPAccessToken", "Rank": 4, - "Id": 1196 + "Id": 1196, + "CommandName": "Request-PnPAccessToken" }, { "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "CommandName": "Request-PnPPersonalSite", "Rank": 1, - "Id": 1197 + "Id": 1197, + "CommandName": "Request-PnPPersonalSite" }, { "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "CommandName": "Request-PnPPersonalSite", "Rank": 2, - "Id": 1198 + "Id": 1198, + "CommandName": "Request-PnPPersonalSite" }, { "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "CommandName": "Request-PnPReIndexList", "Rank": 1, - "Id": 1199 + "Id": 1199, + "CommandName": "Request-PnPReIndexList" }, { "Command": "Request-PnPReIndexWeb", - "CommandName": "Request-PnPReIndexWeb", "Rank": 1, - "Id": 1200 + "Id": 1200, + "CommandName": "Request-PnPReIndexWeb" }, { "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 1, - "Id": 1201 + "Id": 1201, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 2, - "Id": 1202 + "Id": 1202, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 3, - "Id": 1203 + "Id": 1203, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "CommandName": "Reset-PnPFileVersion", "Rank": 1, - "Id": 1204 + "Id": 1204, + "CommandName": "Reset-PnPFileVersion" }, { "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "CommandName": "Reset-PnPFileVersion", "Rank": 2, - "Id": 1205 + "Id": 1205, + "CommandName": "Reset-PnPFileVersion" }, { "Command": "Reset-PnPLabel -List \"Demo List\"", - "CommandName": "Reset-PnPLabel", "Rank": 1, - "Id": 1206 + "Id": 1206, + "CommandName": "Reset-PnPLabel" }, { "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "CommandName": "Reset-PnPLabel", "Rank": 2, - "Id": 1207 + "Id": 1207, + "CommandName": "Reset-PnPLabel" }, { "Command": "Reset-PnPMicrosoft365GroupExpiration", - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, - "Id": 1208 + "Id": 1208, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Rank": 1, - "Id": 1209 + "Id": 1209, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "CommandName": "Resolve-PnPFolder", "Rank": 1, - "Id": 1210 + "Id": 1210, + "CommandName": "Resolve-PnPFolder" }, { "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Rank": 1, - "Id": 1211 + "Id": 1211, + "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion", "Rank": 1, - "Id": 1212 + "Id": 1212, + "CommandName": "Restore-PnPFileVersion" }, { "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion", "Rank": 2, - "Id": 1213 + "Id": 1213, + "CommandName": "Restore-PnPFileVersion" }, { "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Restore-PnPFileVersion", "Rank": 3, - "Id": 1214 + "Id": 1214, + "CommandName": "Restore-PnPFileVersion" }, { "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Restore-PnPListItemVersion", "Rank": 1, - "Id": 1215 + "Id": 1215, + "CommandName": "Restore-PnPListItemVersion" }, { "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Restore-PnPListItemVersion", "Rank": 2, - "Id": 1216 + "Id": 1216, + "CommandName": "Restore-PnPListItemVersion" }, { "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Restore-PnPRecycleBinItem", "Rank": 1, - "Id": 1217 + "Id": 1217, + "CommandName": "Restore-PnPRecycleBinItem" }, { "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 1, - "Id": 1218 + "Id": 1218, + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 2, - "Id": 1219 + "Id": 1219, + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantSite", "Rank": 1, - "Id": 1220 + "Id": 1220, + "CommandName": "Restore-PnPTenantSite" }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Restore-PnPTenantSite", "Rank": 2, - "Id": 1221 + "Id": 1221, + "CommandName": "Restore-PnPTenantSite" }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "CommandName": "Restore-PnPTenantSite", "Rank": 3, - "Id": 1222 + "Id": 1222, + "CommandName": "Restore-PnPTenantSite" }, { "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "CommandName": "Revoke-PnPAzureADAppSitePermission", "Rank": 1, - "Id": 1223 + "Id": 1223, + "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Revoke-PnPHubSiteRights", "Rank": 1, - "Id": 1224 + "Id": 1224, + "CommandName": "Revoke-PnPHubSiteRights" }, { "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Revoke-PnPSiteDesignRights", "Rank": 1, - "Id": 1225 + "Id": 1225, + "CommandName": "Revoke-PnPSiteDesignRights" }, { "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Rank": 1, - "Id": 1226 + "Id": 1226, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "CommandName": "Revoke-PnPUserSession", "Rank": 1, - "Id": 1227 + "Id": 1227, + "CommandName": "Revoke-PnPUserSession" }, { "Command": "Save-PnPPageConversionLog", - "CommandName": "Save-PnPPageConversionLog", "Rank": 1, - "Id": 1228 + "Id": 1228, + "CommandName": "Save-PnPPageConversionLog" }, { "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "CommandName": "Save-PnPSiteTemplate", "Rank": 1, - "Id": 1229 + "Id": 1229, + "CommandName": "Save-PnPSiteTemplate" }, { "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "CommandName": "Save-PnPTenantTemplate", "Rank": 1, - "Id": 1230 + "Id": 1230, + "CommandName": "Save-PnPTenantTemplate" }, { "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "CommandName": "Send-PnPMail", "Rank": 1, - "Id": 1231 + "Id": 1231, + "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", - "CommandName": "Send-PnPMail", "Rank": 2, - "Id": 1232 + "Id": 1232, + "CommandName": "Send-PnPMail" }, { "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "CommandName": "Send-PnPMail", "Rank": 3, - "Id": 1233 + "Id": 1233, + "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", - "CommandName": "Send-PnPMail", "Rank": 4, - "Id": 1234 + "Id": 1234, + "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", - "CommandName": "Send-PnPMail", "Rank": 5, - "Id": 1235 + "Id": 1235, + "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\"", - "CommandName": "Send-PnPMail", "Rank": 6, - "Id": 1236 + "Id": 1236, + "CommandName": "Send-PnPMail" }, { "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "CommandName": "Set-PnPAdaptiveScopeProperty", "Rank": 1, - "Id": 1237 + "Id": 1237, + "CommandName": "Set-PnPAdaptiveScopeProperty" }, { "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 1, - "Id": 1238 + "Id": 1238, + "CommandName": "Set-PnPApplicationCustomizer" }, { "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 2, - "Id": 1239 + "Id": 1239, + "CommandName": "Set-PnPApplicationCustomizer" }, { "Command": "Set-PnPAppSideLoading -On", - "CommandName": "Set-PnPAppSideLoading", "Rank": 1, - "Id": 1240 + "Id": 1240, + "CommandName": "Set-PnPAppSideLoading" }, { "Command": "Set-PnPAppSideLoading -Off", - "CommandName": "Set-PnPAppSideLoading", "Rank": 2, - "Id": 1241 + "Id": 1241, + "CommandName": "Set-PnPAppSideLoading" }, { "Command": "Set-PnPAuditing -EnableAll", - "CommandName": "Set-PnPAuditing", "Rank": 1, - "Id": 1242 + "Id": 1242, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAuditing -DisableAll", - "CommandName": "Set-PnPAuditing", "Rank": 2, - "Id": 1243 + "Id": 1243, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAuditing -RetentionTime 7", - "CommandName": "Set-PnPAuditing", "Rank": 3, - "Id": 1244 + "Id": 1244, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAuditing -TrimAuditLog", - "CommandName": "Set-PnPAuditing", "Rank": 4, - "Id": 1245 + "Id": 1245, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "CommandName": "Set-PnPAuditing", "Rank": 5, - "Id": 1246 + "Id": 1246, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "CommandName": "Set-PnPAvailablePageLayouts", "Rank": 1, - "Id": 1247 + "Id": 1247, + "CommandName": "Set-PnPAvailablePageLayouts" }, { "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 1, - "Id": 1248 + "Id": 1248, + "CommandName": "Set-PnPAzureADAppSitePermission" }, { "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 2, - "Id": 1249 + "Id": 1249, + "CommandName": "Set-PnPAzureADAppSitePermission" }, { "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup", "Rank": 1, - "Id": 1250 + "Id": 1250, + "CommandName": "Set-PnPAzureADGroup" }, { "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup", "Rank": 2, - "Id": 1251 + "Id": 1251, + "CommandName": "Set-PnPAzureADGroup" }, { "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPAzureADGroup", "Rank": 3, - "Id": 1252 + "Id": 1252, + "CommandName": "Set-PnPAzureADGroup" }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 1, - "Id": 1253 + "Id": 1253, + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 2, - "Id": 1254 + "Id": 1254, + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 3, - "Id": 1255 + "Id": 1255, + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 1, - "Id": 1256 + "Id": 1256, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "Id": 1257 + "Id": 1257, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "Id": 1258 + "Id": 1258, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 2, - "Id": 1259 + "Id": 1259, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 3, - "Id": 1260 + "Id": 1260, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 4, - "Id": 1261 + "Id": 1261, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType", "Rank": 1, - "Id": 1262 + "Id": 1262, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "CommandName": "Set-PnPContentType", "Rank": 2, - "Id": 1263 + "Id": 1263, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType", "Rank": 3, - "Id": 1264 + "Id": 1264, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "CommandName": "Set-PnPContentType", "Rank": 4, - "Id": 1265 + "Id": 1265, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "CommandName": "Set-PnPContentType", "Rank": 5, - "Id": 1266 + "Id": 1266, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 1, - "Id": 1267 + "Id": 1267, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 2, - "Id": 1268 + "Id": 1268, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 3, - "Id": 1269 + "Id": 1269, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 4, - "Id": 1270 + "Id": 1270, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "CommandName": "Set-PnPDefaultContentTypeToList", "Rank": 1, - "Id": 1271 + "Id": 1271, + "CommandName": "Set-PnPDefaultContentTypeToList" }, { "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 1, - "Id": 1272 + "Id": 1272, + "CommandName": "Set-PnPDefaultPageLayout" }, { "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 2, - "Id": 1273 + "Id": 1273, + "CommandName": "Set-PnPDefaultPageLayout" }, { "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 3, - "Id": 1274 + "Id": 1274, + "CommandName": "Set-PnPDefaultPageLayout" }, { "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 1, - "Id": 1275 + "Id": 1275, + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 2, - "Id": 1276 + "Id": 1276, + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 3, - "Id": 1277 + "Id": 1277, + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "CommandName": "Set-PnPDocumentSetField", "Rank": 1, - "Id": 1278 + "Id": 1278, + "CommandName": "Set-PnPDocumentSetField" }, { "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "CommandName": "Set-PnPDocumentSetField", "Rank": 2, - "Id": 1279 + "Id": 1279, + "CommandName": "Set-PnPDocumentSetField" }, { "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "CommandName": "Set-PnPField", "Rank": 1, - "Id": 1280 + "Id": 1280, + "CommandName": "Set-PnPField" }, { "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "CommandName": "Set-PnPField", "Rank": 2, - "Id": 1281 + "Id": 1281, + "CommandName": "Set-PnPField" }, { "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "CommandName": "Set-PnPField", "Rank": 3, - "Id": 1282 + "Id": 1282, + "CommandName": "Set-PnPField" }, { "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedIn", "Rank": 1, - "Id": 1283 + "Id": 1283, + "CommandName": "Set-PnPFileCheckedIn" }, { "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "CommandName": "Set-PnPFileCheckedIn", "Rank": 2, - "Id": 1284 + "Id": 1284, + "CommandName": "Set-PnPFileCheckedIn" }, { "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedOut", "Rank": 1, - "Id": 1285 + "Id": 1285, + "CommandName": "Set-PnPFileCheckedOut" }, { "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission", "Rank": 1, - "Id": 1286 + "Id": 1286, + "CommandName": "Set-PnPFolderPermission" }, { "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission", "Rank": 2, - "Id": 1287 + "Id": 1287, + "CommandName": "Set-PnPFolderPermission" }, { "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "CommandName": "Set-PnPFolderPermission", "Rank": 3, - "Id": 1288 + "Id": 1288, + "CommandName": "Set-PnPFolderPermission" }, { "Command": "Set-PnPFooter -Enabled:$true", - "CommandName": "Set-PnPFooter", "Rank": 1, - "Id": 1289 + "Id": 1289, + "CommandName": "Set-PnPFooter" }, { "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "CommandName": "Set-PnPFooter", "Rank": 2, - "Id": 1290 + "Id": 1290, + "CommandName": "Set-PnPFooter" }, { "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "CommandName": "Set-PnPFooter", "Rank": 3, - "Id": 1291 + "Id": 1291, + "CommandName": "Set-PnPFooter" }, { "Command": "Set-PnPFooter -LogoUrl \"\"", - "CommandName": "Set-PnPFooter", "Rank": 4, - "Id": 1292 + "Id": 1292, + "CommandName": "Set-PnPFooter" }, { "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "CommandName": "Set-PnPGraphSubscription", "Rank": 1, - "Id": 1293 + "Id": 1293, + "CommandName": "Set-PnPGraphSubscription" }, { "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "CommandName": "Set-PnPGroup", "Rank": 1, - "Id": 1294 + "Id": 1294, + "CommandName": "Set-PnPGroup" }, { "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "CommandName": "Set-PnPGroup", "Rank": 2, - "Id": 1295 + "Id": 1295, + "CommandName": "Set-PnPGroup" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "CommandName": "Set-PnPGroupPermissions", "Rank": 1, - "Id": 1296 + "Id": 1296, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "CommandName": "Set-PnPGroupPermissions", "Rank": 2, - "Id": 1297 + "Id": 1297, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions", "Rank": 3, - "Id": 1298 + "Id": 1298, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions", "Rank": 4, - "Id": 1299 + "Id": 1299, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "CommandName": "Set-PnPGroupPermissions", "Rank": 5, - "Id": 1300 + "Id": 1300, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 1, - "Id": 1301 + "Id": 1301, + "CommandName": "Set-PnPHideDefaultThemes" }, { "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 2, - "Id": 1302 + "Id": 1302, + "CommandName": "Set-PnPHideDefaultThemes" }, { "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "CommandName": "Set-PnPHomePage", "Rank": 1, - "Id": 1303 + "Id": 1303, + "CommandName": "Set-PnPHomePage" }, { "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "CommandName": "Set-PnPHomePage", "Rank": 2, - "Id": 1304 + "Id": 1304, + "CommandName": "Set-PnPHomePage" }, { "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "CommandName": "Set-PnPHomeSite", "Rank": 1, - "Id": 1305 + "Id": 1305, + "CommandName": "Set-PnPHomeSite" }, { "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "CommandName": "Set-PnPHomeSite", "Rank": 2, - "Id": 1306 + "Id": 1306, + "CommandName": "Set-PnPHomeSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "CommandName": "Set-PnPHubSite", "Rank": 1, - "Id": 1307 + "Id": 1307, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "CommandName": "Set-PnPHubSite", "Rank": 2, - "Id": 1308 + "Id": 1308, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "CommandName": "Set-PnPHubSite", "Rank": 3, - "Id": 1309 + "Id": 1309, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "CommandName": "Set-PnPHubSite", "Rank": 4, - "Id": 1310 + "Id": 1310, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "CommandName": "Set-PnPHubSite", "Rank": 5, - "Id": 1311 + "Id": 1311, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "CommandName": "Set-PnPHubSite", "Rank": 6, - "Id": 1312 + "Id": 1312, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "CommandName": "Set-PnPImageListItemColumn", "Rank": 1, - "Id": 1313 + "Id": 1313, + "CommandName": "Set-PnPImageListItemColumn" }, { "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "CommandName": "Set-PnPImageListItemColumn", "Rank": 2, - "Id": 1314 + "Id": 1314, + "CommandName": "Set-PnPImageListItemColumn" }, { "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "CommandName": "Set-PnPIndexedProperties", "Rank": 1, - "Id": 1315 + "Id": 1315, + "CommandName": "Set-PnPIndexedProperties" }, { "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 1, - "Id": 1316 + "Id": 1316, + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 2, - "Id": 1317 + "Id": 1317, + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "CommandName": "Set-PnPKnowledgeHubSite", "Rank": 1, - "Id": 1318 + "Id": 1318, + "CommandName": "Set-PnPKnowledgeHubSite" }, { "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "CommandName": "Set-PnPLabel", "Rank": 1, - "Id": 1319 + "Id": 1319, + "CommandName": "Set-PnPLabel" }, { "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "CommandName": "Set-PnPLabel", "Rank": 2, - "Id": 1320 + "Id": 1320, + "CommandName": "Set-PnPLabel" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "CommandName": "Set-PnPList", "Rank": 1, - "Id": 1321 + "Id": 1321, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "CommandName": "Set-PnPList", "Rank": 2, - "Id": 1322 + "Id": 1322, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "CommandName": "Set-PnPList", "Rank": 3, - "Id": 1323 + "Id": 1323, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "CommandName": "Set-PnPList", "Rank": 4, - "Id": 1324 + "Id": 1324, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "CommandName": "Set-PnPList", "Rank": 5, - "Id": 1325 + "Id": 1325, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "CommandName": "Set-PnPList", "Rank": 6, - "Id": 1326 + "Id": 1326, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "CommandName": "Set-PnPList", "Rank": 7, - "Id": 1327 + "Id": 1327, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPList", "Rank": 8, - "Id": 1328 + "Id": 1328, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "CommandName": "Set-PnPList", "Rank": 9, - "Id": 1329 + "Id": 1329, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "CommandName": "Set-PnPList", "Rank": 10, - "Id": 1330 + "Id": 1330, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "CommandName": "Set-PnPList", "Rank": 11, - "Id": 1331 + "Id": 1331, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 1, - "Id": 1332 + "Id": 1332, + "CommandName": "Set-PnPListInformationRightsManagement" }, { "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 2, - "Id": 1333 + "Id": 1333, + "CommandName": "Set-PnPListInformationRightsManagement" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", "Rank": 1, - "Id": 1334 + "Id": 1334, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", "Rank": 2, - "Id": 1335 + "Id": 1335, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", "Rank": 3, - "Id": 1336 + "Id": 1336, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "CommandName": "Set-PnPListItem", "Rank": 4, - "Id": 1337 + "Id": 1337, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "CommandName": "Set-PnPListItem", "Rank": 5, - "Id": 1338 + "Id": 1338, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Set-PnPListItemAsRecord", "Rank": 1, - "Id": 1339 + "Id": 1339, + "CommandName": "Set-PnPListItemAsRecord" }, { "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "CommandName": "Set-PnPListItemAsRecord", "Rank": 2, - "Id": 1340 + "Id": 1340, + "CommandName": "Set-PnPListItemAsRecord" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission", "Rank": 1, - "Id": 1341 + "Id": 1341, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission", "Rank": 2, - "Id": 1342 + "Id": 1342, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "CommandName": "Set-PnPListItemPermission", "Rank": 3, - "Id": 1343 + "Id": 1343, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "CommandName": "Set-PnPListItemPermission", "Rank": 4, - "Id": 1344 + "Id": 1344, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "CommandName": "Set-PnPListItemPermission", "Rank": 5, - "Id": 1345 + "Id": 1345, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListPermission", "Rank": 1, - "Id": 1346 + "Id": 1346, + "CommandName": "Set-PnPListPermission" }, { "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListPermission", "Rank": 2, - "Id": 1347 + "Id": 1347, + "CommandName": "Set-PnPListPermission" }, { "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 1, - "Id": 1348 + "Id": 1348, + "CommandName": "Set-PnPListRecordDeclaration" }, { "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 2, - "Id": 1349 + "Id": 1349, + "CommandName": "Set-PnPListRecordDeclaration" }, { "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", "Rank": 1, - "Id": 1350 + "Id": 1350, + "CommandName": "Set-PnPMasterPage" }, { "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", "Rank": 2, - "Id": 1351 + "Id": 1351, + "CommandName": "Set-PnPMasterPage" }, { "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", "Rank": 3, - "Id": 1352 + "Id": 1352, + "CommandName": "Set-PnPMasterPage" }, { "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", "Rank": 4, - "Id": 1353 + "Id": 1353, + "CommandName": "Set-PnPMasterPage" }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 1, - "Id": 1354 + "Id": 1354, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 2, - "Id": 1355 + "Id": 1355, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, - "Id": 1356 + "Id": 1356, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 1, - "Id": 1357 + "Id": 1357, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 2, - "Id": 1358 + "Id": 1358, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, - "Id": 1359 + "Id": 1359, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 1, - "Id": 1360 + "Id": 1360, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 2, - "Id": 1361 + "Id": 1361, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, - "Id": 1362 + "Id": 1362, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 1, - "Id": 1363 + "Id": 1363, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 2, - "Id": 1364 + "Id": 1364, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, - "Id": 1365 + "Id": 1365, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 1, - "Id": 1366 + "Id": 1366, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 2, - "Id": 1367 + "Id": 1367, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, - "Id": 1368 + "Id": 1368, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 1, - "Id": 1369 + "Id": 1369, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 2, - "Id": 1370 + "Id": 1370, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, - "Id": 1371 + "Id": 1371, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 1, - "Id": 1372 + "Id": 1372, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 2, - "Id": 1373 + "Id": 1373, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 3, - "Id": 1374 + "Id": 1374, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 4, - "Id": 1375 + "Id": 1375, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 5, - "Id": 1376 + "Id": 1376, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 6, - "Id": 1377 + "Id": 1377, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 1, - "Id": 1378 + "Id": 1378, + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 2, - "Id": 1379 + "Id": 1379, + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { "Command": "Set-PnPMinimalDownloadStrategy -Off", - "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 1, - "Id": 1380 + "Id": 1380, + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { "Command": "Set-PnPMinimalDownloadStrategy -On", - "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 2, - "Id": 1381 + "Id": 1381, + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "CommandName": "Set-PnPPage", "Rank": 1, - "Id": 1382 + "Id": 1382, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "CommandName": "Set-PnPPage", "Rank": 2, - "Id": 1383 + "Id": 1383, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "CommandName": "Set-PnPPage", "Rank": 3, - "Id": 1384 + "Id": 1384, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "CommandName": "Set-PnPPage", "Rank": 4, - "Id": 1385 + "Id": 1385, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "CommandName": "Set-PnPPage", "Rank": 5, - "Id": 1386 + "Id": 1386, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "CommandName": "Set-PnPPage", "Rank": 6, - "Id": 1387 + "Id": 1387, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Set-PnPPage", "Rank": 7, - "Id": 1388 + "Id": 1388, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "CommandName": "Set-PnPPage", "Rank": 8, - "Id": 1389 + "Id": 1389, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Set-PnPPage", "Rank": 9, - "Id": 1390 + "Id": 1390, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Set-PnPPage", "Rank": 10, - "Id": 1391 + "Id": 1391, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "CommandName": "Set-PnPPage", "Rank": 11, - "Id": 1392 + "Id": 1392, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "CommandName": "Set-PnPPageTextPart", "Rank": 1, - "Id": 1393 + "Id": 1393, + "CommandName": "Set-PnPPageTextPart" }, { "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "CommandName": "Set-PnPPageWebPart", "Rank": 1, - "Id": 1394 + "Id": 1394, + "CommandName": "Set-PnPPageWebPart" }, { "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "CommandName": "Set-PnPPageWebPart", "Rank": 2, - "Id": 1395 + "Id": 1395, + "CommandName": "Set-PnPPageWebPart" }, { "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "CommandName": "Set-PnPPlannerBucket", "Rank": 1, - "Id": 1396 + "Id": 1396, + "CommandName": "Set-PnPPlannerBucket" }, { "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 1, - "Id": 1397 + "Id": 1397, + "CommandName": "Set-PnPPlannerConfiguration" }, { "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 2, - "Id": 1398 + "Id": 1398, + "CommandName": "Set-PnPPlannerConfiguration" }, { "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "CommandName": "Set-PnPPlannerPlan", "Rank": 1, - "Id": 1399 + "Id": 1399, + "CommandName": "Set-PnPPlannerPlan" }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "CommandName": "Set-PnPPlannerTask", "Rank": 1, - "Id": 1400 + "Id": 1400, + "CommandName": "Set-PnPPlannerTask" }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "CommandName": "Set-PnPPlannerTask", "Rank": 2, - "Id": 1401 + "Id": 1401, + "CommandName": "Set-PnPPlannerTask" }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "CommandName": "Set-PnPPlannerTask", "Rank": 3, - "Id": 1402 + "Id": 1402, + "CommandName": "Set-PnPPlannerTask" }, { "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPPlannerUserPolicy", "Rank": 1, - "Id": 1403 + "Id": 1403, + "CommandName": "Set-PnPPlannerUserPolicy" }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "CommandName": "Set-PnPPropertyBagValue", "Rank": 1, - "Id": 1404 + "Id": 1404, + "CommandName": "Set-PnPPropertyBagValue" }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "CommandName": "Set-PnPPropertyBagValue", "Rank": 2, - "Id": 1405 + "Id": 1405, + "CommandName": "Set-PnPPropertyBagValue" }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "CommandName": "Set-PnPPropertyBagValue", "Rank": 3, - "Id": 1406 + "Id": 1406, + "CommandName": "Set-PnPPropertyBagValue" }, { "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 1, - "Id": 1407 + "Id": 1407, + "CommandName": "Set-PnPRequestAccessEmails" }, { "Command": "Set-PnPRequestAccessEmails -Disabled", - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 2, - "Id": 1408 + "Id": 1408, + "CommandName": "Set-PnPRequestAccessEmails" }, { "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 3, - "Id": 1409 + "Id": 1409, + "CommandName": "Set-PnPRequestAccessEmails" }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "CommandName": "Set-PnPRoleDefinition", "Rank": 1, - "Id": 1410 + "Id": 1410, + "CommandName": "Set-PnPRoleDefinition" }, { "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "CommandName": "Set-PnPRoleDefinition", "Rank": 2, - "Id": 1411 + "Id": 1411, + "CommandName": "Set-PnPRoleDefinition" }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "CommandName": "Set-PnPRoleDefinition", "Rank": 3, - "Id": 1412 + "Id": 1412, + "CommandName": "Set-PnPRoleDefinition" }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "CommandName": "Set-PnPRoleDefinition", "Rank": 4, - "Id": 1413 + "Id": 1413, + "CommandName": "Set-PnPRoleDefinition" }, { "Command": "Set-PnPSearchConfiguration -Configuration $config", - "CommandName": "Set-PnPSearchConfiguration", "Rank": 1, - "Id": 1414 + "Id": 1414, + "CommandName": "Set-PnPSearchConfiguration" }, { "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Set-PnPSearchConfiguration", "Rank": 2, - "Id": 1415 + "Id": 1415, + "CommandName": "Set-PnPSearchConfiguration" }, { "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration", "Rank": 3, - "Id": 1416 + "Id": 1416, + "CommandName": "Set-PnPSearchConfiguration" }, { "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration", "Rank": 4, - "Id": 1417 + "Id": 1417, + "CommandName": "Set-PnPSearchConfiguration" }, { "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone", - "CommandName": "Set-PnPSearchExternalItem", "Rank": 1, - "Id": 1418 + "Id": 1418, + "CommandName": "Set-PnPSearchExternalItem" }, { "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPSearchExternalItem", "Rank": 2, - "Id": 1419 + "Id": 1419, + "CommandName": "Set-PnPSearchExternalItem" }, { "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "CommandName": "Set-PnPSearchSettings", "Rank": 1, - "Id": 1420 + "Id": 1420, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "CommandName": "Set-PnPSearchSettings", "Rank": 2, - "Id": 1421 + "Id": 1421, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "CommandName": "Set-PnPSearchSettings", "Rank": 3, - "Id": 1422 + "Id": 1422, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "CommandName": "Set-PnPSearchSettings", "Rank": 4, - "Id": 1423 + "Id": 1423, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "CommandName": "Set-PnPSearchSettings", "Rank": 5, - "Id": 1424 + "Id": 1424, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "CommandName": "Set-PnPSearchSettings", "Rank": 6, - "Id": 1425 + "Id": 1425, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchScope Hub", - "CommandName": "Set-PnPSearchSettings", "Rank": 7, - "Id": 1426 + "Id": 1426, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSite -Classification \"HBI\"", - "CommandName": "Set-PnPSite", "Rank": 1, - "Id": 1427 + "Id": 1427, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -Classification $null", - "CommandName": "Set-PnPSite", "Rank": 2, - "Id": 1428 + "Id": 1428, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -DisableFlows", - "CommandName": "Set-PnPSite", "Rank": 3, - "Id": 1429 + "Id": 1429, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -DisableFlows:$false", - "CommandName": "Set-PnPSite", "Rank": 4, - "Id": 1430 + "Id": 1430, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "CommandName": "Set-PnPSite", "Rank": 5, - "Id": 1431 + "Id": 1431, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -NoScriptSite $false", - "CommandName": "Set-PnPSite", "Rank": 6, - "Id": 1432 + "Id": 1432, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPSite", "Rank": 7, - "Id": 1433 + "Id": 1433, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "CommandName": "Set-PnPSite", "Rank": 8, - "Id": 1434 + "Id": 1434, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "CommandName": "Set-PnPSite", "Rank": 9, - "Id": 1435 + "Id": 1435, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "CommandName": "Set-PnPSite", "Rank": 10, - "Id": 1436 + "Id": 1436, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "CommandName": "Set-PnPSite", "Rank": 11, - "Id": 1437 + "Id": 1437, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "CommandName": "Set-PnPSite", "Rank": 12, - "Id": 1438 + "Id": 1438, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "CommandName": "Set-PnPSite", "Rank": 13, - "Id": 1439 + "Id": 1439, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", "Rank": 14, - "Id": 1440 + "Id": 1440, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", "Rank": 15, - "Id": 1441 + "Id": 1441, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", "Rank": 16, - "Id": 1442 + "Id": 1442, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -CancelVPForExistingLibs", - "CommandName": "Set-PnPSite", "Rank": 17, - "Id": 1443 + "Id": 1443, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "CommandName": "Set-PnPSiteClassification", "Rank": 1, - "Id": 1444 + "Id": 1444, + "CommandName": "Set-PnPSiteClassification" }, { "Command": "Set-PnPSiteClosure -State Open", - "CommandName": "Set-PnPSiteClosure", "Rank": 1, - "Id": 1445 + "Id": 1445, + "CommandName": "Set-PnPSiteClosure" }, { "Command": "Set-PnPSiteClosure -State Closed", - "CommandName": "Set-PnPSiteClosure", "Rank": 2, - "Id": 1446 + "Id": 1446, + "CommandName": "Set-PnPSiteClosure" }, { "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "CommandName": "Set-PnPSiteDesign", "Rank": 1, - "Id": 1447 + "Id": 1447, + "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\"", - "CommandName": "Set-PnPSiteDesign", "Rank": 2, - "Id": 1448 + "Id": 1448, + "CommandName": "Set-PnPSiteDesign" }, { "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "CommandName": "Set-PnPSiteGroup", "Rank": 1, - "Id": 1449 + "Id": 1449, + "CommandName": "Set-PnPSiteGroup" }, { "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "CommandName": "Set-PnPSiteGroup", "Rank": 2, - "Id": 1450 + "Id": 1450, + "CommandName": "Set-PnPSiteGroup" }, { "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Set-PnPSitePolicy", "Rank": 1, - "Id": 1451 + "Id": 1451, + "CommandName": "Set-PnPSitePolicy" }, { "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScript", "Rank": 1, - "Id": 1452 + "Id": 1452, + "CommandName": "Set-PnPSiteScript" }, { "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScriptPackage", "Rank": 1, - "Id": 1453 + "Id": 1453, + "CommandName": "Set-PnPSiteScriptPackage" }, { "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 1, - "Id": 1454 + "Id": 1454, + "CommandName": "Set-PnPSiteSensitivityLabel" }, { "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 2, - "Id": 1455 + "Id": 1455, + "CommandName": "Set-PnPSiteSensitivityLabel" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 1, - "Id": 1456 + "Id": 1456, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 2, - "Id": 1457 + "Id": 1457, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 3, - "Id": 1458 + "Id": 1458, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 4, - "Id": 1459 + "Id": 1459, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 5, - "Id": 1460 + "Id": 1460, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 6, - "Id": 1461 + "Id": 1461, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity", "Rank": 1, - "Id": 1462 + "Id": 1462, + "CommandName": "Set-PnPStorageEntity" }, { "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity", "Rank": 2, - "Id": 1463 + "Id": 1463, + "CommandName": "Set-PnPStorageEntity" }, { "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 1, - "Id": 1464 + "Id": 1464, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 2, - "Id": 1465 + "Id": 1465, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 1, - "Id": 1466 + "Id": 1466, + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 2, - "Id": 1467 + "Id": 1467, + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 1, - "Id": 1468 + "Id": 1468, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 2, - "Id": 1469 + "Id": 1469, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 1, - "Id": 1470 + "Id": 1470, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 2, - "Id": 1471 + "Id": 1471, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 3, - "Id": 1472 + "Id": 1472, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Command": "Set-PnPTeamifyPromptHidden", - "CommandName": "Set-PnPTeamifyPromptHidden", "Rank": 1, - "Id": 1473 + "Id": 1473, + "CommandName": "Set-PnPTeamifyPromptHidden" }, { "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "CommandName": "Set-PnPTeamsChannel", "Rank": 1, - "Id": 1474 + "Id": 1474, + "CommandName": "Set-PnPTeamsChannel" }, { "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "CommandName": "Set-PnPTeamsChannel", "Rank": 2, - "Id": 1475 + "Id": 1475, + "CommandName": "Set-PnPTeamsChannel" }, { "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 1, - "Id": 1476 + "Id": 1476, + "CommandName": "Set-PnpTeamsChannelUser" }, { "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 2, - "Id": 1477 + "Id": 1477, + "CommandName": "Set-PnpTeamsChannelUser" }, { "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "CommandName": "Set-PnPTeamsTab", "Rank": 1, - "Id": 1478 + "Id": 1478, + "CommandName": "Set-PnPTeamsTab" }, { "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "CommandName": "Set-PnPTeamsTag", "Rank": 1, - "Id": 1479 + "Id": 1479, + "CommandName": "Set-PnPTeamsTag" }, { "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "CommandName": "Set-PnPTeamsTeam", "Rank": 1, - "Id": 1480 + "Id": 1480, + "CommandName": "Set-PnPTeamsTeam" }, { "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "CommandName": "Set-PnPTeamsTeam", "Rank": 2, - "Id": 1481 + "Id": 1481, + "CommandName": "Set-PnPTeamsTeam" }, { "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "CommandName": "Set-PnPTeamsTeam", "Rank": 3, - "Id": 1482 + "Id": 1482, + "CommandName": "Set-PnPTeamsTeam" }, { "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "CommandName": "Set-PnPTeamsTeam", "Rank": 4, - "Id": 1483 + "Id": 1483, + "CommandName": "Set-PnPTeamsTeam" }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 1, - "Id": 1484 + "Id": 1484, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 2, - "Id": 1485 + "Id": 1485, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 3, - "Id": 1486 + "Id": 1486, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "CommandName": "Set-PnPTeamsTeamPicture", "Rank": 1, - "Id": 1487 + "Id": 1487, + "CommandName": "Set-PnPTeamsTeamPicture" }, { "Command": "Set-PnPTemporarilyDisableAppBar $true", - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 1, - "Id": 1488 + "Id": 1488, + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { "Command": "Set-PnPTemporarilyDisableAppBar $false", - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 2, - "Id": 1489 + "Id": 1489, + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", - "CommandName": "Set-PnPTenant", "Rank": 1, - "Id": 1490 + "Id": 1490, + "CommandName": "Set-PnPTenant" }, { "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "CommandName": "Set-PnPTenant", "Rank": 2, - "Id": 1491 + "Id": 1491, + "CommandName": "Set-PnPTenant" }, { "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "CommandName": "Set-PnPTenant", "Rank": 3, - "Id": 1492 + "Id": 1492, + "CommandName": "Set-PnPTenant" }, { "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "CommandName": "Set-PnPTenant", "Rank": 4, - "Id": 1493 + "Id": 1493, + "CommandName": "Set-PnPTenant" }, { "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "CommandName": "Set-PnPTenantAppCatalogUrl", "Rank": 1, - "Id": 1494 + "Id": 1494, + "CommandName": "Set-PnPTenantAppCatalogUrl" }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 1, - "Id": 1495 + "Id": 1495, + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 2, - "Id": 1496 + "Id": 1496, + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 3, - "Id": 1497 + "Id": 1497, + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", - "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 1, - "Id": 1498 + "Id": 1498, + "CommandName": "Set-PnPTenantCdnPolicy" }, { "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 2, - "Id": 1499 + "Id": 1499, + "CommandName": "Set-PnPTenantCdnPolicy" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "CommandName": "Set-PnPTenantSite", "Rank": 1, - "Id": 1500 + "Id": 1500, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "CommandName": "Set-PnPTenantSite", "Rank": 2, - "Id": 1501 + "Id": 1501, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPTenantSite", "Rank": 3, - "Id": 1502 + "Id": 1502, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Set-PnPTenantSite", "Rank": 4, - "Id": 1503 + "Id": 1503, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "CommandName": "Set-PnPTenantSite", "Rank": 5, - "Id": 1504 + "Id": 1504, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 1, - "Id": 1505 + "Id": 1505, + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 2, - "Id": 1506 + "Id": 1506, + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "CommandName": "Set-PnPTerm", "Rank": 1, - "Id": 1507 + "Id": 1507, + "CommandName": "Set-PnPTerm" }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm", "Rank": 2, - "Id": 1508 + "Id": 1508, + "CommandName": "Set-PnPTerm" }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm", "Rank": 3, - "Id": 1509 + "Id": 1509, + "CommandName": "Set-PnPTerm" }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "CommandName": "Set-PnPTerm", "Rank": 4, - "Id": 1510 + "Id": 1510, + "CommandName": "Set-PnPTerm" }, { "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "CommandName": "Set-PnPTermGroup", "Rank": 1, - "Id": 1511 + "Id": 1511, + "CommandName": "Set-PnPTermGroup" }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "CommandName": "Set-PnPTermSet", "Rank": 1, - "Id": 1512 + "Id": 1512, + "CommandName": "Set-PnPTermSet" }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "CommandName": "Set-PnPTermSet", "Rank": 2, - "Id": 1513 + "Id": 1513, + "CommandName": "Set-PnPTermSet" }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "CommandName": "Set-PnPTermSet", "Rank": 3, - "Id": 1514 + "Id": 1514, + "CommandName": "Set-PnPTermSet" }, { "Command": "Set-PnPTheme", - "CommandName": "Set-PnPTheme", "Rank": 1, - "Id": 1515 + "Id": 1515, + "CommandName": "Set-PnPTheme" }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "CommandName": "Set-PnPTheme", "Rank": 2, - "Id": 1516 + "Id": 1516, + "CommandName": "Set-PnPTheme" }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "CommandName": "Set-PnPTheme", "Rank": 3, - "Id": 1517 + "Id": 1517, + "CommandName": "Set-PnPTheme" }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "CommandName": "Set-PnPTheme", "Rank": 4, - "Id": 1518 + "Id": 1518, + "CommandName": "Set-PnPTheme" }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "CommandName": "Set-PnPTraceLog", "Rank": 1, - "Id": 1519 + "Id": 1519, + "CommandName": "Set-PnPTraceLog" }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "CommandName": "Set-PnPTraceLog", "Rank": 2, - "Id": 1520 + "Id": 1520, + "CommandName": "Set-PnPTraceLog" }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "CommandName": "Set-PnPTraceLog", "Rank": 3, - "Id": 1521 + "Id": 1521, + "CommandName": "Set-PnPTraceLog" }, { "Command": "Set-PnPTraceLog -Off", - "CommandName": "Set-PnPTraceLog", "Rank": 4, - "Id": 1522 + "Id": 1522, + "CommandName": "Set-PnPTraceLog" }, { "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "CommandName": "Set-PnPUserOneDriveQuota", "Rank": 1, - "Id": 1523 + "Id": 1523, + "CommandName": "Set-PnPUserOneDriveQuota" }, { "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "CommandName": "Set-PnPUserProfileProperty", "Rank": 1, - "Id": 1524 + "Id": 1524, + "CommandName": "Set-PnPUserProfileProperty" }, { "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "CommandName": "Set-PnPUserProfileProperty", "Rank": 2, - "Id": 1525 + "Id": 1525, + "CommandName": "Set-PnPUserProfileProperty" }, { "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "CommandName": "Set-PnPView", "Rank": 1, - "Id": 1526 + "Id": 1526, + "CommandName": "Set-PnPView" }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "CommandName": "Set-PnPView", "Rank": 2, - "Id": 1527 + "Id": 1527, + "CommandName": "Set-PnPView" }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "CommandName": "Set-PnPView", "Rank": 3, - "Id": 1528 + "Id": 1528, + "CommandName": "Set-PnPView" }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "CommandName": "Set-PnPView", "Rank": 4, - "Id": 1529 + "Id": 1529, + "CommandName": "Set-PnPView" }, { "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", "Rank": 1, - "Id": 1530 + "Id": 1530, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 2, - "Id": 1531 + "Id": 1531, + "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", - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 3, - "Id": 1532 + "Id": 1532, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 4, - "Id": 1533 + "Id": 1533, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "CommandName": "Set-PnPWeb", "Rank": 1, - "Id": 1534 + "Id": 1534, + "CommandName": "Set-PnPWeb" }, { "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "CommandName": "Set-PnPWeb", "Rank": 2, - "Id": 1535 + "Id": 1535, + "CommandName": "Set-PnPWeb" }, { "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "CommandName": "Set-PnPWeb", "Rank": 3, - "Id": 1536 + "Id": 1536, + "CommandName": "Set-PnPWeb" }, { "Command": "Set-PnPWeb -NoCrawl:$true", - "CommandName": "Set-PnPWeb", "Rank": 4, - "Id": 1537 + "Id": 1537, + "CommandName": "Set-PnPWeb" }, { "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "CommandName": "Set-PnPWebHeader", "Rank": 1, - "Id": 1538 + "Id": 1538, + "CommandName": "Set-PnPWebHeader" }, { "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "CommandName": "Set-PnPWebHeader", "Rank": 2, - "Id": 1539 + "Id": 1539, + "CommandName": "Set-PnPWebHeader" }, { "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "CommandName": "Set-PnPWebHeader", "Rank": 3, - "Id": 1540 + "Id": 1540, + "CommandName": "Set-PnPWebHeader" }, { "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "CommandName": "Set-PnPWebhookSubscription", "Rank": 1, - "Id": 1541 + "Id": 1541, + "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\"", - "CommandName": "Set-PnPWebhookSubscription", "Rank": 2, - "Id": 1542 + "Id": 1542, + "CommandName": "Set-PnPWebhookSubscription" }, { "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", - "CommandName": "Set-PnPWebPartProperty", "Rank": 1, - "Id": 1543 + "Id": 1543, + "CommandName": "Set-PnPWebPartProperty" }, { "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", "Rank": 1, - "Id": 1544 + "Id": 1544, + "CommandName": "Set-PnPWebPermission" }, { "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", "Rank": 2, - "Id": 1545 + "Id": 1545, + "CommandName": "Set-PnPWebPermission" }, { "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", "Rank": 3, - "Id": 1546 + "Id": 1546, + "CommandName": "Set-PnPWebPermission" }, { "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "CommandName": "Set-PnPWebPermission", "Rank": 4, - "Id": 1547 + "Id": 1547, + "CommandName": "Set-PnPWebPermission" }, { "Command": "Set-PnPWebTheme -Theme MyTheme", - "CommandName": "Set-PnPWebTheme", "Rank": 1, - "Id": 1548 + "Id": 1548, + "CommandName": "Set-PnPWebTheme" }, { "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "CommandName": "Set-PnPWebTheme", "Rank": 2, - "Id": 1549 + "Id": 1549, + "CommandName": "Set-PnPWebTheme" }, { "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "CommandName": "Set-PnPWikiPageContent", "Rank": 1, - "Id": 1550 + "Id": 1550, + "CommandName": "Set-PnPWikiPageContent" }, { "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "CommandName": "Submit-PnPSearchQuery", "Rank": 1, - "Id": 1551 + "Id": 1551, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "CommandName": "Submit-PnPSearchQuery", "Rank": 2, - "Id": 1552 + "Id": 1552, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "CommandName": "Submit-PnPSearchQuery", "Rank": 3, - "Id": 1553 + "Id": 1553, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "CommandName": "Submit-PnPSearchQuery", "Rank": 4, - "Id": 1554 + "Id": 1554, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "CommandName": "Submit-PnPSearchQuery", "Rank": 5, - "Id": 1555 + "Id": 1555, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 1, - "Id": 1556 + "Id": 1556, + "CommandName": "Submit-PnPTeamsChannelMessage" }, { "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 2, - "Id": 1557 + "Id": 1557, + "CommandName": "Submit-PnPTeamsChannelMessage" }, { "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Sync-PnPAppToTeams", "Rank": 1, - "Id": 1558 + "Id": 1558, + "CommandName": "Sync-PnPAppToTeams" }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 1, - "Id": 1559 + "Id": 1559, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 2, - "Id": 1560 + "Id": 1560, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 3, - "Id": 1561 + "Id": 1561, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "CommandName": "Test-PnPListItemIsRecord", "Rank": 1, - "Id": 1562 + "Id": 1562, + "CommandName": "Test-PnPListItemIsRecord" }, { "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Rank": 1, - "Id": 1563 + "Id": 1563, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Test-PnPSite", "Rank": 1, - "Id": 1564 + "Id": 1564, + "CommandName": "Test-PnPSite" }, { "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "CommandName": "Test-PnPSite", "Rank": 2, - "Id": 1565 + "Id": 1565, + "CommandName": "Test-PnPSite" }, { "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "CommandName": "Test-PnPTenantTemplate", "Rank": 1, - "Id": 1566 + "Id": 1566, + "CommandName": "Test-PnPTenantTemplate" }, { "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "CommandName": "Undo-PnPFileCheckedOut", "Rank": 1, - "Id": 1567 + "Id": 1567, + "CommandName": "Undo-PnPFileCheckedOut" }, { "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Uninstall-PnPApp", "Rank": 1, - "Id": 1568 + "Id": 1568, + "CommandName": "Uninstall-PnPApp" }, { "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Uninstall-PnPApp", "Rank": 2, - "Id": 1569 + "Id": 1569, + "CommandName": "Uninstall-PnPApp" }, { "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Unpublish-PnPApp", "Rank": 1, - "Id": 1570 + "Id": 1570, + "CommandName": "Unpublish-PnPApp" }, { "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Unpublish-PnPApp", "Rank": 2, - "Id": 1571 + "Id": 1571, + "CommandName": "Unpublish-PnPApp" }, { "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "CommandName": "Unpublish-PnPContentType", "Rank": 1, - "Id": 1572 + "Id": 1572, + "CommandName": "Unpublish-PnPContentType" }, { "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Unpublish-PnPSyntexModel", "Rank": 1, - "Id": 1573 + "Id": 1573, + "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", - "CommandName": "Unpublish-PnPSyntexModel", "Rank": 2, - "Id": 1574 + "Id": 1574, + "CommandName": "Unpublish-PnPSyntexModel" }, { "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Unregister-PnPHubSite", "Rank": 1, - "Id": 1575 + "Id": 1575, + "CommandName": "Unregister-PnPHubSite" }, { "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Update-PnPApp", "Rank": 1, - "Id": 1576 + "Id": 1576, + "CommandName": "Update-PnPApp" }, { "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Update-PnPApp", "Rank": 2, - "Id": 1577 + "Id": 1577, + "CommandName": "Update-PnPApp" }, { "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 1, - "Id": 1578 + "Id": 1578, + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 2, - "Id": 1579 + "Id": 1579, + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 3, - "Id": 1580 + "Id": 1580, + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 1, - "Id": 1581 + "Id": 1581, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 2, - "Id": 1582 + "Id": 1582, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 3, - "Id": 1583 + "Id": 1583, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "CommandName": "Update-PnPTeamsApp", "Rank": 1, - "Id": 1584 + "Id": 1584, + "CommandName": "Update-PnPTeamsApp" }, { "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Update-PnPTeamsUser", "Rank": 1, - "Id": 1585 + "Id": 1585, + "CommandName": "Update-PnPTeamsUser" }, { "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Update-PnPTeamsUser", "Rank": 2, - "Id": 1586 + "Id": 1586, + "CommandName": "Update-PnPTeamsUser" }, { "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "CommandName": "Update-PnPTeamsUser", "Rank": 3, - "Id": 1587 + "Id": 1587, + "CommandName": "Update-PnPTeamsUser" }, { "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "CommandName": "Update-PnPUserType", "Rank": 1, - "Id": 1588 + "Id": 1588, + "CommandName": "Update-PnPUserType" } ] diff --git a/version.txt b/version.txt index 5f256f276..433d17623 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.88 \ No newline at end of file +2.2.89 \ No newline at end of file From 83a0d81ab75ec2c9fd19af3a06d41bb01ef7c856 Mon Sep 17 00:00:00 2001 From: Reshmee Auckloo Date: Thu, 5 Oct 2023 11:11:42 +0100 Subject: [PATCH 054/146] Add new command get-pnpretentionlabel (#3459) * Add new command get-pnpretentionlabel * Added the Identity parameter and graph permissions * Added [RequiredMinimalApiPermissions("RecordsManagement.Read.All")] attribute --------- Co-authored-by: Gautam Sheth --- documentation/Get-PnPRetentionLabel.md | 73 +++++++++++ .../Model/Graph/Purview/RetentionDuration.cs | 17 +++ .../Model/Graph/Purview/RetentionLabel.cs | 118 ++++++++++++++++++ src/Commands/Purview/GetRetentionLabel.cs | 38 ++++++ src/Commands/Resources/GraphPermissions.json | 20 +++ 5 files changed, 266 insertions(+) create mode 100644 documentation/Get-PnPRetentionLabel.md create mode 100644 src/Commands/Model/Graph/Purview/RetentionDuration.cs create mode 100644 src/Commands/Model/Graph/Purview/RetentionLabel.cs create mode 100644 src/Commands/Purview/GetRetentionLabel.cs diff --git a/documentation/Get-PnPRetentionLabel.md b/documentation/Get-PnPRetentionLabel.md new file mode 100644 index 000000000..eaff541bc --- /dev/null +++ b/documentation/Get-PnPRetentionLabel.md @@ -0,0 +1,73 @@ +--- +Module Name: PnP.PowerShell +schema: 2.0.0 +applicable: SharePoint Online +online version: https://pnp.github.io/powershell/cmdlets/Get-PnPRetentionLabel.html +external help file: PnP.PowerShell.dll-Help.xml +title: Get-PnPRetentionLabel +--- + +# Get-PnPRetentionLabel + +## SYNOPSIS +Gets the Microsoft Purview retention labels that are within the tenant + +## SYNTAX + +```powershell +Get-PnPRetentionLabel [-Identity ] [-Connection ] +``` + +## DESCRIPTION +This cmdlet allows retrieval of the available Microsoft Purview retention labels in the currently connected tenant. You can retrieve all the labels or a specific label. + +## EXAMPLES + +### EXAMPLE 1 +```powershell +Get-PnPRetentionLabel +``` + +Returns all the Microsoft Purview retention labels that exist on the tenant + +### EXAMPLE 3 +```powershell +Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995 +``` + +Returns a specific Microsoft Purview retention label by its id + +## PARAMETERS + +### -Identity +The Id of the Microsoft Purview retention label to retrieve + +```yaml +Type: Guid +Parameter Sets: (All) + +Required: False +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 Get-PnPConnection. + +```yaml +Type: PnPConnection +Parameter Sets: (All) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +## RELATED LINKS + +[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) +[Microsoft Graph documentation](https://learn.microsoft.com/graph/api/informationprotectionpolicy-list-labels) \ No newline at end of file diff --git a/src/Commands/Model/Graph/Purview/RetentionDuration.cs b/src/Commands/Model/Graph/Purview/RetentionDuration.cs new file mode 100644 index 000000000..e1d0f1d01 --- /dev/null +++ b/src/Commands/Model/Graph/Purview/RetentionDuration.cs @@ -0,0 +1,17 @@ +using System.Text.Json.Serialization; + +namespace PnP.PowerShell.Commands.Model.Graph.Purview +{ + public class RetentionDuration + { + /// + /// The type of the data. + /// + [JsonPropertyName("@odata.type")] + public string ODataType { get; set; } = "#microsoft.graph.security.retentionDurationInDays"; + /// + /// Number of days. + /// + public int Days { get; set; } + } +} diff --git a/src/Commands/Model/Graph/Purview/RetentionLabel.cs b/src/Commands/Model/Graph/Purview/RetentionLabel.cs new file mode 100644 index 000000000..122a66d5e --- /dev/null +++ b/src/Commands/Model/Graph/Purview/RetentionLabel.cs @@ -0,0 +1,118 @@ +using System; +using System.Text.Json.Serialization; +/// +/// Describes the retention label that details how to Represents how customers can manage their data, including whether and for how long to retain or delete it." +/// +/// +namespace PnP.PowerShell.Commands.Model.Graph.Purview +{ + public class RetentionLabel + { + /// + /// The label ID is a globally unique identifier (GUID). + /// + public string Id { get; set; } + + /// + /// The display name of the label. + /// + public string DisplayName { get; set; } + + /// + /// Behavior during the retention period. Specifies how the behavior of a document with this label should be during the retention period. The possible values are: doNotRetain, retain, retainAsRecord, retainAsRegulatoryRecord, unknownFutureValue. + /// + public BehaviorDuringRetentionPeriod? BehaviorDuringRetentionPeriod { get; set; } + + /// + /// Action after the retention period.Specifies the action to take on a document with this label applied during the retention period. The possible values are: none, delete, startDispositionReview, unknownFutureValue. + /// + public ActionAfterRetentionPeriod? ActionAfterRetentionPeriod { get; set; } + + /// + /// Retention trigger information. Specifies whether the retention duration is calculated from the content creation date, labeled date, or last modification date. The possible values are: dateLabeled, dateCreated, dateModified, dateOfEvent, unknownFutureValue. + /// + public RetentionTrigger? RetentionTrigger { get; set; } + + /// + /// Retention duration information. Specifies the number of days to retain the content. + /// + [JsonPropertyName("retentionDuration")] + public RetentionDuration RetentionDuration { get; set; } + + /// + /// Indicates if the label is in use. + /// + public bool? IsInUse { get; set; } + + /// + /// Description for administrators. + /// + public string DescriptionForAdmins { get; set; } + + /// + /// Description for users. + /// + public string DescriptionForUsers { get; set; } + + /// + /// Information about the creator. + /// + [JsonPropertyName("createdBy")] + public IdentitySet CreatedBy { get; set; } + + /// + /// Date and time when the label was created. + /// + public DateTimeOffset CreatedDateTime { get; set; } + + /// + /// Information about the last modifier. + /// + [JsonPropertyName("lastModifiedBy")] + public IdentitySet LastModifiedBy { get; set; } + + /// + /// Date and time when the label was last modified. + /// + public DateTimeOffset LastModifiedDateTime { get; set; } + + /// + /// The label to be applied. Specifies the replacement label to be applied automatically after the retention period of the current label ends. + /// + public string LabelToBeApplied { get; set; } + + /// + /// Default record behavior.Specifies the locked or unlocked state of a record label when it is created.The possible values are: startLocked, startUnlocked, unknownFutureValue. + /// + public DefaultRecordBehavior DefaultRecordBehavior { get; set; } + } + + public enum BehaviorDuringRetentionPeriod + { + DoNotRetain, + Retain, + RetainAsRecord, + RetainAsRegulatoryRecord + } + + public enum ActionAfterRetentionPeriod + { + None, + Delete, + StartDispositionReview + } + + public enum RetentionTrigger + { + DateLabeled, + DateCreated, + DateModified, + DateOfEvent + } + + public enum DefaultRecordBehavior + { + StartLocked, + StartUnlocked + } +} diff --git a/src/Commands/Purview/GetRetentionLabel.cs b/src/Commands/Purview/GetRetentionLabel.cs new file mode 100644 index 000000000..b712d56c9 --- /dev/null +++ b/src/Commands/Purview/GetRetentionLabel.cs @@ -0,0 +1,38 @@ +using PnP.PowerShell.Commands.Attributes; +using PnP.PowerShell.Commands.Base; +using PnP.PowerShell.Commands.Utilities.REST; +using System; +using System.Collections.Generic; +using System.Management.Automation; + +namespace PnP.PowerShell.Commands.Purview +{ + [Cmdlet(VerbsCommon.Get, "PnPRetentionLabel")] + [OutputType(typeof(IEnumerable))] + [OutputType(typeof(Model.Graph.Purview.RetentionLabel))] + [RequiredMinimalApiPermissions("RecordsManagement.Read.All")] + public class GetAvailableRetentionLabel : PnPGraphCmdlet + { + [Parameter(Mandatory = false)] + public Guid Identity; + + protected override void ExecuteCmdlet() + { + string url; + url = "/beta/security/labels/retentionLabels"; + + if (ParameterSpecified(nameof(Identity))) + { + url += $"/{Identity}"; + + var labels = GraphHelper.GetAsync(Connection, url, AccessToken).GetAwaiter().GetResult(); + WriteObject(labels, false); + } + else + { + var labels = GraphHelper.GetResultCollectionAsync(Connection, url, AccessToken).GetAwaiter().GetResult(); + WriteObject(labels, true); + } + } + } +} \ No newline at end of file diff --git a/src/Commands/Resources/GraphPermissions.json b/src/Commands/Resources/GraphPermissions.json index f50ce6fb3..b6d4bc1cf 100644 --- a/src/Commands/Resources/GraphPermissions.json +++ b/src/Commands/Resources/GraphPermissions.json @@ -2740,6 +2740,26 @@ "consentDisplayName": "Read user sensitivity labels and label policies.", "value": "InformationProtectionPolicy.Read" }, + { + "adminConsentDescription": "Allows the application to read any data from Records Management, such as configuration, labels, and policies on behalf of the signed-in user.", + "adminConsentDisplayName": "Read Records Management configuration, labels, and policies.", + "id": "07f995eb-fc67-4522-ad66-2b8ca8ea3efd", + "isEnabled": true, + "isAdmin": false, + "consentDescription": "Allows the application to read any data from Records Management, such as configuration, labels, and policies on behalf of the signed-in user.", + "consentDisplayName": "Read Records Management configuration, labels, and policies.", + "value": "RecordsManagement.Read.All" + }, + { + "adminConsentDescription": "Allows the application to create, update and delete any data from Records Management, such as configuration, labels, and policies on behalf of the signed-in user.", + "adminConsentDisplayName": "Read and write Records Management configuration, labels, and policies", + "id": "f2833d75-a4e6-40ab-86d4-6dfe73c97605", + "isEnabled": true, + "isAdmin": false, + "consentDescription": "Allows the application to create, update and delete any data from Records Management, such as configuration, labels, and policies on behalf of the signed-in user.", + "consentDisplayName": "Read and write Records Management configuration, labels, and policies.", + "value": "RecordsManagement.ReadWrite.All" + }, { "adminConsentDescription": "Allows the app to manage hybrid identity service configuration by creating, viewing, updating and deleting on-premises published resources, on-premises agents and agent groups, on behalf of the signed-in user.", "adminConsentDisplayName": "Manage on-premises published resources", From 5ef5e3d2be2968dc3b5b363a680a7cb167538182 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Thu, 5 Oct 2023 13:13:26 +0300 Subject: [PATCH 055/146] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index db6860891..b25e9e1e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added option to pass in a Stream or XML string to `Read-PnPTenantTemplate` allowing the tenant template to be modified before being applied. [#3431](https://github.com/pnp/powershell/pull/3431) - Added `Get-PnPTenantInfo` which allows retrieving tenant information by its Id or domain name. [#3414](https://github.com/pnp/powershell/pull/3414) - Added option to create a Microsoft 365 Group with dynamic membership by passing in `-DynamicMembershipRule` [#3426](https://github.com/pnp/powershell/pull/3426) +- Added `Get-PnPRetentionLabel` cmdlet to retrieve Purview retention labels. [#3459](https://github.com/pnp/powershell/pull/3459) ### Fixed From e45814a84df978f9cd2139fc7f07c5e129e6defb Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Thu, 5 Oct 2023 13:32:35 +0200 Subject: [PATCH 056/146] Update Set-PnPSearchExternalItem.md Updating sample text from Dutch to English --- documentation/Set-PnPSearchExternalItem.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/documentation/Set-PnPSearchExternalItem.md b/documentation/Set-PnPSearchExternalItem.md index a0036df4f..67cb4f542 100644 --- a/documentation/Set-PnPSearchExternalItem.md +++ b/documentation/Set-PnPSearchExternalItem.md @@ -31,17 +31,17 @@ This cmdlet can be used to add or update an external item in Microsoft Search on ### EXAMPLE 1 ```powershell -Set-PnPSearchExternalItem -ConnectionId "pnppowershell" -ItemId "12345" -Properties @{ "Test1"= "Test van deze PnP PowerShell Connector"; "Test2" = "Red","Blue"; "Test3" = ([System.DateTime]::Now)} -ContentValue "Sample value" -ContentType Text -GrantEveryone +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 ``` -This will add an item in the external Microsoft Search index with the properties as provided and grants everyone access to find the item back through Microsoft Search. +This will add an item in the external Microsoft Search index with the properties as provided and grants everyone access to find the item back through Microsoft Search. It shows three types of properties you can set for an external item in the index, being a simple text, an array and a date/time value. ### EXAMPLE 2 ```powershell -Set-PnPSearchExternalItem -ConnectionId "pnppowershell" -ItemId "12345" -Properties @{ "Test1"= "Test van deze PnP PowerShell Connector"; "Test2" = "Red","Blue"; "Test3" = ([System.DateTime]::Now)} -ContentValue "Sample value" -ContentType Text -GrantUsers "user@contoso.onmicrosoft.com" +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" ``` -This will add an item in the external Microsoft Search index with the properties as provided and grants only the user with the specified UPN access to find the item back through Microsoft Search. +This will add an item in the external Microsoft Search index with the properties as provided and grants only the user with the specified UPN access to find the item back through Microsoft Search. It shows three types of properties you can set for an external item in the index, being a simple text, an array and a date/time value. ## PARAMETERS From da9e119e5c9b6083af7827a3022b31f99b2008f9 Mon Sep 17 00:00:00 2001 From: Jenny Wu Date: Thu, 5 Oct 2023 11:24:12 -0700 Subject: [PATCH 057/146] Resolve comment --- src/Commands/Site/GetSite.cs | 34 ++++++++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/src/Commands/Site/GetSite.cs b/src/Commands/Site/GetSite.cs index d5a455123..d8ef737be 100644 --- a/src/Commands/Site/GetSite.cs +++ b/src/Commands/Site/GetSite.cs @@ -22,30 +22,39 @@ protected override void ExecuteCmdlet() { site.EnsureProperties(s => s.Url, s => s.VersionPolicyForNewLibrariesTemplate, s => s.VersionPolicyForNewLibrariesTemplate.VersionPolicies); - var s = new PSObject(); - s.Properties.Add(new PSVariableProperty(new PSVariable("Url", site.Url))); + var vp = new VersionPolicy(); + vp.Url = site.Url; if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.ServerObjectIsNull == true) { - s.Properties.Add(new PSVariableProperty(new PSVariable("VersionPolicy", "No Site Level Policy Set"))); + vp.Description = "No Site Level Policy Set"; } else { site.EnsureProperties(s => s.VersionPolicyForNewLibrariesTemplate, s => s.VersionPolicyForNewLibrariesTemplate.MajorVersionLimit, s => s.VersionPolicyForNewLibrariesTemplate.VersionPolicies); - s.Properties.Add(new PSVariableProperty(new PSVariable("DefaultTrimMode", site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode))); + vp.DefaultTrimMode = site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode.ToString(); - if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode != VersionPolicyTrimMode.AutoExpiration) + if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode == VersionPolicyTrimMode.AutoExpiration) + { + vp.Description = "Site has Automatic Policy Set"; + } + else { if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode == VersionPolicyTrimMode.ExpireAfter) { - s.Properties.Add(new PSVariableProperty(new PSVariable("DefaultExpireAfterDays", site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultExpireAfterDays))); + vp.DefaultExpireAfterDays = site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultExpireAfterDays.ToString(); + vp.Description = "Site has Manual settings with specific count and time limits"; + } + else if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode == VersionPolicyTrimMode.NoExpiration) + { + vp.Description = "Site has Manual settings with specific version count limit and no time limits"; } - s.Properties.Add(new PSVariableProperty(new PSVariable("MajorVersionLimit", site.VersionPolicyForNewLibrariesTemplate.MajorVersionLimit))); + vp.MajorVersionLimit = site.VersionPolicyForNewLibrariesTemplate.MajorVersionLimit.ToString(); } } - WriteObject(s); + WriteObject(vp); } else { @@ -55,4 +64,13 @@ protected override void ExecuteCmdlet() } } } + + public class VersionPolicy + { + public string Url { get; set; } + public string DefaultTrimMode { get; set; } + public string DefaultExpireAfterDays { get; set; } + public string MajorVersionLimit { get; set; } + public string Description { get; set; } + } } From b5ebcb14cf3e5ed6b9c9255603f6f936c0eb368a Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Fri, 6 Oct 2023 02:38:25 +0000 Subject: [PATCH 058/146] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 3192 +++++++++-------- version.txt | 2 +- 3 files changed, 1604 insertions(+), 1592 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 7dc1db21b..50e3b1628 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -e0d2f0aab75de6ea7d92a55829df9cda5bb97ead \ No newline at end of file +1d4c358056b3c9dc6d3d5358781ea144a325869d \ 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 5c426a932..4eda500df 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9530 +1,9542 @@ [ { + "Id": 1, "Command": "Add-PnPAlert -List \"Demo List\"", "Rank": 1, - "Id": 1, "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, - "Id": 2, "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, - "Id": 3, "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, - "Id": 4, "CommandName": "Add-PnPAlert" }, { + "Id": 5, "Command": "Add-PnPApp -Path ./myapp.sppkg", "Rank": 1, - "Id": 5, "CommandName": "Add-PnPApp" }, { + "Id": 6, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Rank": 2, - "Id": 6, "CommandName": "Add-PnPApp" }, { + "Id": 7, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Rank": 3, - "Id": 7, "CommandName": "Add-PnPApp" }, { + "Id": 8, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Rank": 4, - "Id": 8, "CommandName": "Add-PnPApp" }, { + "Id": 9, "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", "Rank": 1, - "Id": 9, "CommandName": "Add-PnPApplicationCustomizer" }, { + "Id": 10, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Rank": 1, - "Id": 10, "CommandName": "Add-PnPAvailableSiteClassification" }, { + "Id": 11, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Rank": 2, - "Id": 11, "CommandName": "Add-PnPAvailableSiteClassification" }, { + "Id": 12, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 12, "CommandName": "Add-PnPAzureADGroupMember" }, { + "Id": 13, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "Id": 13, "CommandName": "Add-PnPAzureADGroupMember" }, { + "Id": 14, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "Id": 14, "CommandName": "Add-PnPAzureADGroupMember" }, { + "Id": 15, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 15, "CommandName": "Add-PnPAzureADGroupOwner" }, { + "Id": 16, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "Id": 16, "CommandName": "Add-PnPAzureADGroupOwner" }, { + "Id": 17, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "Id": 17, "CommandName": "Add-PnPAzureADGroupOwner" }, { + "Id": 18, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "Rank": 1, - "Id": 18, "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, - "Id": 19, "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { + "Id": 20, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "Rank": 1, - "Id": 20, "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, - "Id": 21, "CommandName": "Add-PnPContentType" }, { + "Id": 22, "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "Rank": 3, - "Id": 22, "CommandName": "Add-PnPContentType" }, { + "Id": 23, "Command": "Add-PnPContentType -Name \"Project Item\"", "Rank": 4, - "Id": 23, "CommandName": "Add-PnPContentType" }, { + "Id": 24, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "Rank": 5, - "Id": 24, "CommandName": "Add-PnPContentType" }, { + "Id": 25, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Rank": 1, - "Id": 25, "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { + "Id": 26, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Rank": 2, - "Id": 26, "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { + "Id": 27, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "Id": 27, "CommandName": "Add-PnPContentTypeToDocumentSet" }, { + "Id": 28, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "Id": 28, "CommandName": "Add-PnPContentTypeToDocumentSet" }, { + "Id": 29, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Rank": 1, - "Id": 29, "CommandName": "Add-PnPContentTypeToList" }, { + "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, - "Id": 30, "CommandName": "Add-PnPCustomAction" }, { + "Id": 31, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "Rank": 1, - "Id": 31, "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { + "Id": 32, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "Rank": 2, - "Id": 32, "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { + "Id": 33, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Rank": 1, - "Id": 33, "CommandName": "Add-PnPDocumentSet" }, { + "Id": 34, "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "Rank": 1, - "Id": 34, "CommandName": "Add-PnPEventReceiver" }, { + "Id": 35, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "Rank": 2, - "Id": 35, "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, - "Id": 36, "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, - "Id": 37, "CommandName": "Add-PnPEventReceiver" }, { + "Id": 38, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Rank": 1, - "Id": 38, "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, - "Id": 39, "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, - "Id": 40, "CommandName": "Add-PnPField" }, { + "Id": 41, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "Rank": 4, - "Id": 41, "CommandName": "Add-PnPField" }, { + "Id": 42, "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "Rank": 5, - "Id": 42, "CommandName": "Add-PnPField" }, { + "Id": 43, "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Rank": 6, - "Id": 43, "CommandName": "Add-PnPField" }, { + "Id": 44, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "Id": 44, "CommandName": "Add-PnPFieldToContentType" }, { + "Id": 45, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Rank": 1, - "Id": 45, "CommandName": "Add-PnPFile" }, { + "Id": 46, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Rank": 2, - "Id": 46, "CommandName": "Add-PnPFile" }, { + "Id": 47, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "Rank": 3, - "Id": 47, "CommandName": "Add-PnPFile" }, { + "Id": 48, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "Rank": 4, - "Id": 48, "CommandName": "Add-PnPFile" }, { + "Id": 49, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "Rank": 5, - "Id": 49, "CommandName": "Add-PnPFile" }, { + "Id": 50, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "Rank": 6, - "Id": 50, "CommandName": "Add-PnPFile" }, { + "Id": 51, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Rank": 7, - "Id": 51, "CommandName": "Add-PnPFile" }, { + "Id": 52, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Rank": 8, - "Id": 52, "CommandName": "Add-PnPFile" }, { + "Id": 53, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "Id": 53, "CommandName": "Add-PnPFileAnonymousSharingLink" }, { + "Id": 54, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "Id": 54, "CommandName": "Add-PnPFileAnonymousSharingLink" }, { + "Id": 55, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3, - "Id": 55, "CommandName": "Add-PnPFileAnonymousSharingLink" }, { + "Id": 56, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "Id": 56, "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { + "Id": 57, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "Rank": 2, - "Id": 57, "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { + "Id": 58, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "Id": 58, "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, - "Id": 59, "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, - "Id": 60, "CommandName": "Add-PnPFileSharingInvite" }, { + "Id": 61, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Rank": 1, - "Id": 61, "CommandName": "Add-PnPFileToSiteTemplate" }, { + "Id": 62, "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "Rank": 2, - "Id": 62, "CommandName": "Add-PnPFileToSiteTemplate" }, { + "Id": 63, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "Rank": 3, - "Id": 63, "CommandName": "Add-PnPFileToSiteTemplate" }, { + "Id": 64, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "Rank": 4, - "Id": 64, "CommandName": "Add-PnPFileToSiteTemplate" }, { + "Id": 65, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Rank": 5, - "Id": 65, "CommandName": "Add-PnPFileToSiteTemplate" }, { + "Id": 66, "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 66, "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, - "Id": 67, "CommandName": "Add-PnPFileUserSharingLink" }, { + "Id": 68, "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit", "Rank": 1, - "Id": 68, "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, - "Id": 69, "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, - "Id": 70, "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, - "Id": 71, "CommandName": "Add-PnPFlowOwner" }, { + "Id": 72, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "Id": 72, "CommandName": "Add-PnPFolder" }, { + "Id": 73, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Rank": 2, - "Id": 73, "CommandName": "Add-PnPFolder" }, { + "Id": 74, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Rank": 3, - "Id": 74, "CommandName": "Add-PnPFolder" }, { + "Id": 75, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "Id": 75, "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { + "Id": 76, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "Id": 76, "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, - "Id": 77, "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { + "Id": 78, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "Id": 78, "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { + "Id": 79, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Rank": 2, - "Id": 79, "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { + "Id": 80, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "Id": 80, "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, - "Id": 81, "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, - "Id": 82, "CommandName": "Add-PnPFolderSharingInvite" }, { + "Id": 83, "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 83, "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, - "Id": 84, "CommandName": "Add-PnPFolderUserSharingLink" }, { + "Id": 85, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "Id": 85, "CommandName": "Add-PnPGroupMember" }, { + "Id": 86, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Rank": 2, - "Id": 86, "CommandName": "Add-PnPGroupMember" }, { + "Id": 87, "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Rank": 1, - "Id": 87, "CommandName": "Add-PnPHtmlPublishingPageLayout" }, { + "Id": 88, "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Rank": 1, - "Id": 88, "CommandName": "Add-PnPHubSiteAssociation" }, { + "Id": 89, "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "Rank": 1, - "Id": 89, "CommandName": "Add-PnPHubToHubAssociation" }, { + "Id": 90, "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "Rank": 2, - "Id": 90, "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, - "Id": 91, "CommandName": "Add-PnPHubToHubAssociation" }, { + "Id": 92, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "Rank": 1, - "Id": 92, "CommandName": "Add-PnPJavaScriptBlock" }, { + "Id": 93, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "Rank": 2, - "Id": 93, "CommandName": "Add-PnPJavaScriptBlock" }, { + "Id": 94, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "Rank": 1, - "Id": 94, "CommandName": "Add-PnPJavaScriptLink" }, { + "Id": 95, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Rank": 2, - "Id": 95, "CommandName": "Add-PnPJavaScriptLink" }, { + "Id": 96, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "Rank": 1, - "Id": 96, "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, - "Id": 97, "CommandName": "Add-PnPListDesign" }, { + "Id": 98, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Rank": 1, - "Id": 98, "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { + "Id": 99, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "Rank": 2, - "Id": 99, "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { + "Id": 100, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Rank": 3, - "Id": 100, "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { + "Id": 101, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "Id": 101, "CommandName": "Add-PnPListItem" }, { + "Id": 102, "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "Id": 102, "CommandName": "Add-PnPListItem" }, { + "Id": 103, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "Rank": 3, - "Id": 103, "CommandName": "Add-PnPListItem" }, { + "Id": 104, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "Rank": 4, - "Id": 104, "CommandName": "Add-PnPListItem" }, { + "Id": 105, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Rank": 5, - "Id": 105, "CommandName": "Add-PnPListItem" }, { + "Id": 106, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "Rank": 1, - "Id": 106, "CommandName": "Add-PnPListItemAttachment" }, { + "Id": 107, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "Rank": 2, - "Id": 107, "CommandName": "Add-PnPListItemAttachment" }, { + "Id": 108, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Rank": 3, - "Id": 108, "CommandName": "Add-PnPListItemAttachment" }, { + "Id": 109, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Rank": 1, - "Id": 109, "CommandName": "Add-PnPListItemComment" }, { + "Id": 110, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Rank": 1, - "Id": 110, "CommandName": "Add-PnPMasterPage" }, { + "Id": 111, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 111, "CommandName": "Add-PnPMicrosoft365GroupMember" }, { + "Id": 112, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "Id": 112, "CommandName": "Add-PnPMicrosoft365GroupMember" }, { + "Id": 113, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 113, "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { + "Id": 114, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "Id": 114, "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { + "Id": 115, "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "Rank": 1, - "Id": 115, "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { + "Id": 116, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Rank": 2, - "Id": 116, "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { + "Id": 117, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Rank": 3, - "Id": 117, "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { + "Id": 118, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "Rank": 1, - "Id": 118, "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, - "Id": 119, "CommandName": "Add-PnPNavigationNode" }, { + "Id": 120, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "Rank": 3, - "Id": 120, "CommandName": "Add-PnPNavigationNode" }, { + "Id": 121, "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "Rank": 4, - "Id": 121, "CommandName": "Add-PnPNavigationNode" }, { + "Id": 122, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Rank": 5, - "Id": 122, "CommandName": "Add-PnPNavigationNode" }, { + "Id": 123, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Rank": 6, - "Id": 123, "CommandName": "Add-PnPNavigationNode" }, { + "Id": 124, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Rank": 7, - "Id": 124, "CommandName": "Add-PnPNavigationNode" }, { + "Id": 125, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Rank": 8, - "Id": 125, "CommandName": "Add-PnPNavigationNode" }, { + "Id": 126, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "Rank": 1, - "Id": 126, "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, - "Id": 127, "CommandName": "Add-PnPOrgAssetsLibrary" }, { + "Id": 128, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Rank": 3, - "Id": 128, "CommandName": "Add-PnPOrgAssetsLibrary" }, { + "Id": 129, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Rank": 1, - "Id": 129, "CommandName": "Add-PnPOrgNewsSite" }, { + "Id": 130, "Command": "Add-PnPPage -Name \"NewPage\"", "Rank": 1, - "Id": 130, "CommandName": "Add-PnPPage" }, { + "Id": 131, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Rank": 2, - "Id": 131, "CommandName": "Add-PnPPage" }, { + "Id": 132, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Rank": 3, - "Id": 132, "CommandName": "Add-PnPPage" }, { + "Id": 133, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Rank": 4, - "Id": 133, "CommandName": "Add-PnPPage" }, { + "Id": 134, "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Rank": 5, - "Id": 134, "CommandName": "Add-PnPPage" }, { + "Id": 135, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Rank": 6, - "Id": 135, "CommandName": "Add-PnPPage" }, { + "Id": 136, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "Id": 136, "CommandName": "Add-PnPPage" }, { + "Id": 137, "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Rank": 8, - "Id": 137, "CommandName": "Add-PnPPage" }, { + "Id": 138, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "Id": 138, "CommandName": "Add-PnPPage" }, { + "Id": 139, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "Id": 139, "CommandName": "Add-PnPPage" }, { + "Id": 140, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "Rank": 1, - "Id": 140, "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, - "Id": 141, "CommandName": "Add-PnPPageImageWebPart" }, { + "Id": 142, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Rank": 1, - "Id": 142, "CommandName": "Add-PnPPageSection" }, { + "Id": 143, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Rank": 2, - "Id": 143, "CommandName": "Add-PnPPageSection" }, { + "Id": 144, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Rank": 1, - "Id": 144, "CommandName": "Add-PnPPageTextPart" }, { + "Id": 145, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "Rank": 2, - "Id": 145, "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, - "Id": 146, "CommandName": "Add-PnPPageTextPart" }, { + "Id": 147, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Rank": 1, - "Id": 147, "CommandName": "Add-PnPPageWebPart" }, { + "Id": 148, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Rank": 2, - "Id": 148, "CommandName": "Add-PnPPageWebPart" }, { + "Id": 149, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Rank": 3, - "Id": 149, "CommandName": "Add-PnPPageWebPart" }, { + "Id": 150, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Rank": 1, - "Id": 150, "CommandName": "Add-PnPPlannerBucket" }, { + "Id": 151, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Rank": 2, - "Id": 151, "CommandName": "Add-PnPPlannerBucket" }, { + "Id": 152, "Command": "Add-PnPPlannerRoster", "Rank": 1, - "Id": 152, "CommandName": "Add-PnPPlannerRoster" }, { + "Id": 153, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 153, "CommandName": "Add-PnPPlannerRosterMember" }, { + "Id": 154, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 1, - "Id": 154, "CommandName": "Add-PnPPlannerTask" }, { + "Id": 155, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 2, - "Id": 155, "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, - "Id": 156, "CommandName": "Add-PnPPlannerTask" }, { + "Id": 157, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "Id": 157, "CommandName": "Add-PnPPublishingImageRendition" }, { + "Id": 158, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "Rank": 1, - "Id": 158, "CommandName": "Add-PnPPublishingPage" }, { + "Id": 159, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Rank": 2, - "Id": 159, "CommandName": "Add-PnPPublishingPage" }, { + "Id": 160, "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Rank": 1, - "Id": 160, "CommandName": "Add-PnPPublishingPageLayout" }, { + "Id": 161, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Rank": 1, - "Id": 161, "CommandName": "Add-PnPRoleDefinition" }, { + "Id": 162, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Rank": 2, - "Id": 162, "CommandName": "Add-PnPRoleDefinition" }, { + "Id": 163, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Rank": 3, - "Id": 163, "CommandName": "Add-PnPRoleDefinition" }, { + "Id": 164, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 164, "CommandName": "Add-PnPSiteCollectionAdmin" }, { + "Id": 165, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "Id": 165, "CommandName": "Add-PnPSiteCollectionAdmin" }, { + "Id": 166, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "Id": 166, "CommandName": "Add-PnPSiteCollectionAdmin" }, { + "Id": 167, "Command": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, - "Id": 167, "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { + "Id": 168, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 2, - "Id": 168, "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { + "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, - "Id": 169, "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, - "Id": 170, "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, - "Id": 171, "CommandName": "Add-PnPSiteDesign" }, { + "Id": 172, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "Rank": 1, - "Id": 172, "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, - "Id": 173, "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, - "Id": 174, "CommandName": "Add-PnPSiteDesignFromWeb" }, { + "Id": 175, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "Id": 175, "CommandName": "Add-PnPSiteDesignTask" }, { + "Id": 176, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 2, - "Id": 176, "CommandName": "Add-PnPSiteDesignTask" }, { + "Id": 177, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Rank": 1, - "Id": 177, "CommandName": "Add-PnPSiteScript" }, { + "Id": 178, "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Rank": 1, - "Id": 178, "CommandName": "Add-PnPSiteScriptPackage" }, { + "Id": 179, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Rank": 1, - "Id": 179, "CommandName": "Add-PnPSiteTemplate" }, { + "Id": 180, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "Rank": 1, - "Id": 180, "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, - "Id": 181, "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, - "Id": 182, "CommandName": "Add-PnPStoredCredential" }, { + "Id": 183, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Rank": 1, - "Id": 183, "CommandName": "Add-PnPTaxonomyField" }, { + "Id": 184, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Rank": 2, - "Id": 184, "CommandName": "Add-PnPTaxonomyField" }, { + "Id": 185, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "Rank": 1, - "Id": 185, "CommandName": "Add-PnPTeamsChannel" }, { + "Id": 186, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Rank": 2, - "Id": 186, "CommandName": "Add-PnPTeamsChannel" }, { + "Id": 187, "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "Rank": 3, - "Id": 187, "CommandName": "Add-PnPTeamsChannel" }, { + "Id": 188, "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Rank": 4, - "Id": 188, "CommandName": "Add-PnPTeamsChannel" }, { + "Id": 189, "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", "Rank": 1, - "Id": 189, "CommandName": "Add-PnpTeamsChannelUser" }, { + "Id": 190, "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Rank": 2, - "Id": 190, "CommandName": "Add-PnpTeamsChannelUser" }, { + "Id": 191, "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", "Rank": 1, - "Id": 191, "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, - "Id": 192, "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, - "Id": 193, "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, - "Id": 194, "CommandName": "Add-PnPTeamsTab" }, { + "Id": 195, "Command": "Add-PnPTeamsTeam", "Rank": 1, - "Id": 195, "CommandName": "Add-PnPTeamsTeam" }, { + "Id": 196, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "Id": 196, "CommandName": "Add-PnPTeamsUser" }, { + "Id": 197, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "Id": 197, "CommandName": "Add-PnPTeamsUser" }, { + "Id": 198, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "Rank": 3, - "Id": 198, "CommandName": "Add-PnPTeamsUser" }, { + "Id": 199, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Rank": 4, - "Id": 199, "CommandName": "Add-PnPTeamsUser" }, { + "Id": 200, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "Id": 200, "CommandName": "Add-PnPTenantCdnOrigin" }, { + "Id": 201, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Rank": 1, - "Id": 201, "CommandName": "Add-PnPTenantSequence" }, { + "Id": 202, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Rank": 1, - "Id": 202, "CommandName": "Add-PnPTenantSequenceSite" }, { + "Id": 203, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Rank": 1, - "Id": 203, "CommandName": "Add-PnPTenantSequenceSubSite" }, { + "Id": 204, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Rank": 1, - "Id": 204, "CommandName": "Add-PnPTermToTerm" }, { + "Id": 205, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "Rank": 1, - "Id": 205, "CommandName": "Add-PnPView" }, { + "Id": 206, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "Rank": 2, - "Id": 206, "CommandName": "Add-PnPView" }, { + "Id": 207, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "Rank": 3, - "Id": 207, "CommandName": "Add-PnPView" }, { + "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, - "Id": 208, "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, - "Id": 209, "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, - "Id": 210, "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { + "Id": 211, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "Id": 211, "CommandName": "Add-PnPWebhookSubscription" }, { + "Id": 212, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Rank": 2, - "Id": 212, "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, - "Id": 213, "CommandName": "Add-PnPWebhookSubscription" }, { + "Id": 214, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "Rank": 1, - "Id": 214, "CommandName": "Add-PnPWebPartToWebPartPage" }, { + "Id": 215, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Rank": 2, - "Id": 215, "CommandName": "Add-PnPWebPartToWebPartPage" }, { + "Id": 216, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "Rank": 1, - "Id": 216, "CommandName": "Add-PnPWebPartToWikiPage" }, { + "Id": 217, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Rank": 2, - "Id": 217, "CommandName": "Add-PnPWebPartToWikiPage" }, { + "Id": 218, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Rank": 1, - "Id": 218, "CommandName": "Add-PnPWikiPage" }, { + "Id": 219, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Rank": 1, - "Id": 219, "CommandName": "Clear-PnPAzureADGroupMember" }, { + "Id": 220, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Rank": 1, - "Id": 220, "CommandName": "Clear-PnPAzureADGroupOwner" }, { + "Id": 221, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Rank": 1, - "Id": 221, "CommandName": "Clear-PnPDefaultColumnValues" }, { + "Id": 222, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Rank": 2, - "Id": 222, "CommandName": "Clear-PnPDefaultColumnValues" }, { + "Id": 223, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "Id": 223, "CommandName": "Clear-PnPListItemAsRecord" }, { + "Id": 224, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Rank": 1, - "Id": 224, "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { + "Id": 225, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Rank": 1, - "Id": 225, "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { + "Id": 226, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "Id": 226, "CommandName": "Clear-PnpRecycleBinItem" }, { + "Id": 227, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Rank": 2, - "Id": 227, "CommandName": "Clear-PnpRecycleBinItem" }, { + "Id": 228, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Rank": 3, - "Id": 228, "CommandName": "Clear-PnpRecycleBinItem" }, { + "Id": 229, "Command": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, - "Id": 229, "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { + "Id": 230, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 230, "CommandName": "Clear-PnPTenantRecycleBinItem" }, { + "Id": 231, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "Id": 231, "CommandName": "Clear-PnPTenantRecycleBinItem" }, { + "Id": 232, "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", "Rank": 1, - "Id": 232, "CommandName": "Connect-PnPOnline" }, { + "Id": 233, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Rank": 1, - "Id": 233, "CommandName": "Convert-PnPFolderToSiteTemplate" }, { + "Id": 234, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Rank": 2, - "Id": 234, "CommandName": "Convert-PnPFolderToSiteTemplate" }, { + "Id": 235, "Command": "Convert-PnPSiteTemplate -Path template.xml", "Rank": 1, - "Id": 235, "CommandName": "Convert-PnPSiteTemplate" }, { + "Id": 236, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Rank": 2, - "Id": 236, "CommandName": "Convert-PnPSiteTemplate" }, { + "Id": 237, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Rank": 3, - "Id": 237, "CommandName": "Convert-PnPSiteTemplate" }, { + "Id": 238, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Rank": 1, - "Id": 238, "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { + "Id": 239, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Rank": 2, - "Id": 239, "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { + "Id": 240, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Rank": 1, - "Id": 240, "CommandName": "ConvertTo-PnPPage" }, { + "Id": 241, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Rank": 2, - "Id": 241, "CommandName": "ConvertTo-PnPPage" }, { + "Id": 242, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Rank": 3, - "Id": 242, "CommandName": "ConvertTo-PnPPage" }, { + "Id": 243, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Rank": 4, - "Id": 243, "CommandName": "ConvertTo-PnPPage" }, { + "Id": 244, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 5, - "Id": 244, "CommandName": "ConvertTo-PnPPage" }, { + "Id": 245, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Rank": 6, - "Id": 245, "CommandName": "ConvertTo-PnPPage" }, { + "Id": 246, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Rank": 7, - "Id": 246, "CommandName": "ConvertTo-PnPPage" }, { + "Id": 247, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "Rank": 8, - "Id": 247, "CommandName": "ConvertTo-PnPPage" }, { + "Id": 248, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 9, - "Id": 248, "CommandName": "ConvertTo-PnPPage" }, { + "Id": 249, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Rank": 10, - "Id": 249, "CommandName": "ConvertTo-PnPPage" }, { + "Id": 250, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Rank": 11, - "Id": 250, "CommandName": "ConvertTo-PnPPage" }, { + "Id": 251, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 12, - "Id": 251, "CommandName": "ConvertTo-PnPPage" }, { + "Id": 252, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 13, - "Id": 252, "CommandName": "ConvertTo-PnPPage" }, { + "Id": 253, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Rank": 14, - "Id": 253, "CommandName": "ConvertTo-PnPPage" }, { + "Id": 254, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "Id": 254, "CommandName": "Copy-PnPFile" }, { + "Id": 255, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "Id": 255, "CommandName": "Copy-PnPFile" }, { + "Id": 256, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "Id": 256, "CommandName": "Copy-PnPFile" }, { + "Id": 257, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "Id": 257, "CommandName": "Copy-PnPFile" }, { + "Id": 258, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "Id": 258, "CommandName": "Copy-PnPFile" }, { + "Id": 259, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "Id": 259, "CommandName": "Copy-PnPFile" }, { + "Id": 260, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "Id": 260, "CommandName": "Copy-PnPFile" }, { + "Id": 261, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "Id": 261, "CommandName": "Copy-PnPFile" }, { + "Id": 262, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "Id": 262, "CommandName": "Copy-PnPFile" }, { + "Id": 263, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "Id": 263, "CommandName": "Copy-PnPFile" }, { + "Id": 264, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "Id": 264, "CommandName": "Copy-PnPFolder" }, { + "Id": 265, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "Id": 265, "CommandName": "Copy-PnPFolder" }, { + "Id": 266, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "Id": 266, "CommandName": "Copy-PnPFolder" }, { + "Id": 267, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "Id": 267, "CommandName": "Copy-PnPFolder" }, { + "Id": 268, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "Id": 268, "CommandName": "Copy-PnPFolder" }, { + "Id": 269, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "Id": 269, "CommandName": "Copy-PnPFolder" }, { + "Id": 270, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "Id": 270, "CommandName": "Copy-PnPFolder" }, { + "Id": 271, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "Id": 271, "CommandName": "Copy-PnPFolder" }, { + "Id": 272, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "Id": 272, "CommandName": "Copy-PnPFolder" }, { + "Id": 273, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "Id": 273, "CommandName": "Copy-PnPFolder" }, { + "Id": 274, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Rank": 1, - "Id": 274, "CommandName": "Copy-PnPItemProxy" }, { + "Id": 275, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Rank": 1, - "Id": 275, "CommandName": "Copy-PnPList" }, { + "Id": 276, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Rank": 2, - "Id": 276, "CommandName": "Copy-PnPList" }, { + "Id": 277, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Rank": 3, - "Id": 277, "CommandName": "Copy-PnPList" }, { + "Id": 278, "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "Rank": 4, - "Id": 278, "CommandName": "Copy-PnPList" }, { + "Id": 279, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Rank": 1, - "Id": 279, "CommandName": "Copy-PnPTeamsTeam" }, { + "Id": 280, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Rank": 2, - "Id": 280, "CommandName": "Copy-PnPTeamsTeam" }, { + "Id": 281, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "Rank": 3, - "Id": 281, "CommandName": "Copy-PnPTeamsTeam" }, { + "Id": 282, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "Rank": 4, - "Id": 282, "CommandName": "Copy-PnPTeamsTeam" }, { + "Id": 283, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 283, "CommandName": "Disable-PnPFeature" }, { + "Id": 284, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "Id": 284, "CommandName": "Disable-PnPFeature" }, { + "Id": 285, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "Id": 285, "CommandName": "Disable-PnPFeature" }, { + "Id": 286, "Command": "Disable-PnPPageScheduling", "Rank": 1, - "Id": 286, "CommandName": "Disable-PnPPageScheduling" }, { + "Id": 287, "Command": "Disable-PnPPowerShellTelemetry", "Rank": 1, - "Id": 287, "CommandName": "Disable-PnPPowerShellTelemetry" }, { + "Id": 288, "Command": "Disable-PnPPowerShellTelemetry -Force", "Rank": 2, - "Id": 288, "CommandName": "Disable-PnPPowerShellTelemetry" }, { + "Id": 289, "Command": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, - "Id": 289, "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { + "Id": 290, "Command": "Disable-PnPSiteClassification", "Rank": 1, - "Id": 290, "CommandName": "Disable-PnPSiteClassification" }, { + "Id": 291, "Command": "Disconnect-PnPOnline", "Rank": 1, - "Id": 291, "CommandName": "Disconnect-PnPOnline" }, { + "Id": 292, "Command": "Enable-PnPCommSite", "Rank": 1, - "Id": 292, "CommandName": "Enable-PnPCommSite" }, { + "Id": 293, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Rank": 2, - "Id": 293, "CommandName": "Enable-PnPCommSite" }, { + "Id": 294, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 294, "CommandName": "Enable-PnPFeature" }, { + "Id": 295, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "Id": 295, "CommandName": "Enable-PnPFeature" }, { + "Id": 296, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "Id": 296, "CommandName": "Enable-PnPFeature" }, { + "Id": 297, "Command": "Enable-PnPPageScheduling", "Rank": 1, - "Id": 297, "CommandName": "Enable-PnPPageScheduling" }, { + "Id": 298, "Command": "Enable-PnPPowerShellTelemetry", "Rank": 1, - "Id": 298, "CommandName": "Enable-PnPPowerShellTelemetry" }, { + "Id": 299, "Command": "Enable-PnPPowerShellTelemetry -Force", "Rank": 2, - "Id": 299, "CommandName": "Enable-PnPPowerShellTelemetry" }, { + "Id": 300, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Rank": 1, - "Id": 300, "CommandName": "Enable-PnPSiteClassification" }, { + "Id": 301, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 2, - "Id": 301, "CommandName": "Enable-PnPSiteClassification" }, { + "Id": 302, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Rank": 1, - "Id": 302, "CommandName": "Export-PnPListToSiteTemplate" }, { + "Id": 303, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Rank": 2, - "Id": 303, "CommandName": "Export-PnPListToSiteTemplate" }, { + "Id": 304, "Command": "Export-PnPPage -Identity Home.aspx", "Rank": 1, - "Id": 304, "CommandName": "Export-PnPPage" }, { + "Id": 305, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Rank": 1, - "Id": 305, "CommandName": "Export-PnPPageMapping" }, { + "Id": 306, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Rank": 2, - "Id": 306, "CommandName": "Export-PnPPageMapping" }, { + "Id": 307, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Rank": 3, - "Id": 307, "CommandName": "Export-PnPPageMapping" }, { + "Id": 308, "Command": "Export-PnPTaxonomy", "Rank": 1, - "Id": 308, "CommandName": "Export-PnPTaxonomy" }, { + "Id": 309, "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Rank": 2, - "Id": 309, "CommandName": "Export-PnPTaxonomy" }, { + "Id": 310, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Rank": 3, - "Id": 310, "CommandName": "Export-PnPTaxonomy" }, { + "Id": 311, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Rank": 4, - "Id": 311, "CommandName": "Export-PnPTaxonomy" }, { + "Id": 312, "Command": "Export-PnPTermGroupToXml", "Rank": 1, - "Id": 312, "CommandName": "Export-PnPTermGroupToXml" }, { + "Id": 313, "Command": "Export-PnPTermGroupToXml -Out output.xml", "Rank": 2, - "Id": 313, "CommandName": "Export-PnPTermGroupToXml" }, { + "Id": 314, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Rank": 3, - "Id": 314, "CommandName": "Export-PnPTermGroupToXml" }, { + "Id": 315, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "Id": 315, "CommandName": "Export-PnPUserInfo" }, { + "Id": 316, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2, - "Id": 316, "CommandName": "Export-PnPUserInfo" }, { + "Id": 317, "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "Id": 317, "CommandName": "Export-PnPUserProfile" }, { + "Id": 318, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2, - "Id": 318, "CommandName": "Export-PnPUserProfile" }, { + "Id": 319, "Command": "Find-PnPFile -Match *.master", "Rank": 1, - "Id": 319, "CommandName": "Find-PnPFile" }, { + "Id": 320, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Rank": 2, - "Id": 320, "CommandName": "Find-PnPFile" }, { + "Id": 321, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Rank": 3, - "Id": 321, "CommandName": "Find-PnPFile" }, { + "Id": 322, "Command": "Get-PnPAccessToken", "Rank": 1, - "Id": 322, "CommandName": "Get-PnPAccessToken" }, { + "Id": 323, "Command": "Get-PnPAccessToken -Decoded", "Rank": 2, - "Id": 323, "CommandName": "Get-PnPAccessToken" }, { + "Id": 324, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Rank": 3, - "Id": 324, "CommandName": "Get-PnPAccessToken" }, { + "Id": 325, "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Rank": 4, - "Id": 325, "CommandName": "Get-PnPAccessToken" }, { + "Id": 326, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Rank": 5, - "Id": 326, "CommandName": "Get-PnPAccessToken" }, { + "Id": 327, "Command": "Get-PnPAlert", "Rank": 1, - "Id": 327, "CommandName": "Get-PnPAlert" }, { + "Id": 328, "Command": "Get-PnPAlert -List \"Demo List\"", "Rank": 2, - "Id": 328, "CommandName": "Get-PnPAlert" }, { + "Id": 329, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 3, - "Id": 329, "CommandName": "Get-PnPAlert" }, { + "Id": 330, "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Rank": 4, - "Id": 330, "CommandName": "Get-PnPAlert" }, { + "Id": 331, "Command": "Get-PnPAlert -AllUsers", "Rank": 5, - "Id": 331, "CommandName": "Get-PnPAlert" }, { + "Id": 332, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Rank": 6, - "Id": 332, "CommandName": "Get-PnPAlert" }, { + "Id": 333, "Command": "Get-PnPApp", "Rank": 1, - "Id": 333, "CommandName": "Get-PnPApp" }, { + "Id": 334, "Command": "Get-PnPApp -Scope Site", "Rank": 2, - "Id": 334, "CommandName": "Get-PnPApp" }, { + "Id": 335, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 3, - "Id": 335, "CommandName": "Get-PnPApp" }, { + "Id": 336, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Rank": 1, - "Id": 336, "CommandName": "Get-PnPAppErrors" }, { + "Id": 337, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Rank": 2, - "Id": 337, "CommandName": "Get-PnPAppErrors" }, { + "Id": 338, "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Rank": 1, - "Id": 338, "CommandName": "Get-PnPAppInfo" }, { + "Id": 339, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 2, - "Id": 339, "CommandName": "Get-PnPAppInfo" }, { + "Id": 340, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Rank": 3, - "Id": 340, "CommandName": "Get-PnPAppInfo" }, { + "Id": 341, "Command": "Get-PnPApplicationCustomizer", "Rank": 1, - "Id": 341, "CommandName": "Get-PnPApplicationCustomizer" }, { + "Id": 342, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "Id": 342, "CommandName": "Get-PnPApplicationCustomizer" }, { + "Id": 343, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Rank": 3, - "Id": 343, "CommandName": "Get-PnPApplicationCustomizer" }, { + "Id": 344, "Command": "Get-PnPAuditing", "Rank": 1, - "Id": 344, "CommandName": "Get-PnPAuditing" }, { + "Id": 345, "Command": "Get-PnPAuthenticationRealm", "Rank": 1, - "Id": 345, "CommandName": "Get-PnPAuthenticationRealm" }, { + "Id": 346, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Rank": 2, - "Id": 346, "CommandName": "Get-PnPAuthenticationRealm" }, { + "Id": 347, "Command": "Get-PnPAvailableLanguage", "Rank": 1, - "Id": 347, "CommandName": "Get-PnPAvailableLanguage" }, { + "Id": 348, "Command": "Get-PnPAvailableSensitivityLabel", "Rank": 1, - "Id": 348, "CommandName": "Get-PnPAvailableSensitivityLabel" }, { + "Id": 349, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Rank": 2, - "Id": 349, "CommandName": "Get-PnPAvailableSensitivityLabel" }, { + "Id": 350, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Rank": 3, - "Id": 350, "CommandName": "Get-PnPAvailableSensitivityLabel" }, { + "Id": 351, "Command": "Get-PnPAvailableSiteClassification", "Rank": 1, - "Id": 351, "CommandName": "Get-PnPAvailableSiteClassification" }, { + "Id": 352, "Command": "Get-PnPAzureACSPrincipal", "Rank": 1, - "Id": 352, "CommandName": "Get-PnPAzureACSPrincipal" }, { + "Id": 353, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Rank": 2, - "Id": 353, "CommandName": "Get-PnPAzureACSPrincipal" }, { + "Id": 354, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Rank": 3, - "Id": 354, "CommandName": "Get-PnPAzureACSPrincipal" }, { + "Id": 355, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Rank": 4, - "Id": 355, "CommandName": "Get-PnPAzureACSPrincipal" }, { + "Id": 356, "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, - "Id": 356, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { + "Id": 357, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Rank": 2, - "Id": 357, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { + "Id": 358, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Rank": 3, - "Id": 358, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { + "Id": 359, "Command": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, - "Id": 359, "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { + "Id": 360, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Rank": 2, - "Id": 360, "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { + "Id": 361, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Rank": 3, - "Id": 361, "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { + "Id": 362, "Command": "Get-PnPAzureADApp", "Rank": 1, - "Id": 362, "CommandName": "Get-PnPAzureADApp" }, { + "Id": 363, "Command": "Get-PnPAzureADApp -Identity MyApp", "Rank": 2, - "Id": 363, "CommandName": "Get-PnPAzureADApp" }, { + "Id": 364, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "Id": 364, "CommandName": "Get-PnPAzureADApp" }, { + "Id": 365, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Rank": 4, - "Id": 365, "CommandName": "Get-PnPAzureADApp" }, { + "Id": 366, "Command": "Get-PnPAzureADAppPermission", "Rank": 1, - "Id": 366, "CommandName": "Get-PnPAzureADAppPermission" }, { + "Id": 367, "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Rank": 2, - "Id": 367, "CommandName": "Get-PnPAzureADAppPermission" }, { + "Id": 368, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "Id": 368, "CommandName": "Get-PnPAzureADAppPermission" }, { + "Id": 369, "Command": "Get-PnPAzureADAppSitePermission", "Rank": 1, - "Id": 369, "CommandName": "Get-PnPAzureADAppSitePermission" }, { + "Id": 370, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "Id": 370, "CommandName": "Get-PnPAzureADAppSitePermission" }, { + "Id": 371, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Rank": 3, - "Id": 371, "CommandName": "Get-PnPAzureADAppSitePermission" }, { + "Id": 372, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Rank": 4, - "Id": 372, "CommandName": "Get-PnPAzureADAppSitePermission" }, { + "Id": 373, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Rank": 5, - "Id": 373, "CommandName": "Get-PnPAzureADAppSitePermission" }, { + "Id": 374, "Command": "Get-PnPAzureADGroup", "Rank": 1, - "Id": 374, "CommandName": "Get-PnPAzureADGroup" }, { + "Id": 375, "Command": "Get-PnPAzureADGroup -Identity $groupId", "Rank": 2, - "Id": 375, "CommandName": "Get-PnPAzureADGroup" }, { + "Id": 376, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Rank": 3, - "Id": 376, "CommandName": "Get-PnPAzureADGroup" }, { + "Id": 377, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Rank": 4, - "Id": 377, "CommandName": "Get-PnPAzureADGroup" }, { + "Id": 378, "Command": "Get-PnPAzureADGroup -Identity $group", "Rank": 5, - "Id": 378, "CommandName": "Get-PnPAzureADGroup" }, { + "Id": 379, "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Rank": 1, - "Id": 379, "CommandName": "Get-PnPAzureADGroupMember" }, { + "Id": 380, "Command": "Get-PnPAzureADGroupMember -Identity $group", "Rank": 2, - "Id": 380, "CommandName": "Get-PnPAzureADGroupMember" }, { + "Id": 381, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Rank": 1, - "Id": 381, "CommandName": "Get-PnPAzureADGroupOwner" }, { + "Id": 382, "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Rank": 2, - "Id": 382, "CommandName": "Get-PnPAzureADGroupOwner" }, { + "Id": 383, "Command": "Get-PnPAzureADServicePrincipal", "Rank": 1, - "Id": 383, "CommandName": "Get-PnPAzureADServicePrincipal" }, { + "Id": 384, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Rank": 2, - "Id": 384, "CommandName": "Get-PnPAzureADServicePrincipal" }, { + "Id": 385, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Rank": 3, - "Id": 385, "CommandName": "Get-PnPAzureADServicePrincipal" }, { + "Id": 386, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Rank": 4, - "Id": 386, "CommandName": "Get-PnPAzureADServicePrincipal" }, { + "Id": 387, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "Id": 387, "CommandName": "Get-PnPAzureADServicePrincipal" }, { + "Id": 388, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "Id": 388, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { + "Id": 389, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 2, - "Id": 389, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { + "Id": 390, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "Id": 390, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { + "Id": 391, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Rank": 2, - "Id": 391, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { + "Id": 392, "Command": "Get-PnPAzureADUser", "Rank": 1, - "Id": 392, "CommandName": "Get-PnPAzureADUser" }, { + "Id": 393, "Command": "Get-PnPAzureADUser -EndIndex 50", "Rank": 2, - "Id": 393, "CommandName": "Get-PnPAzureADUser" }, { + "Id": 394, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 3, - "Id": 394, "CommandName": "Get-PnPAzureADUser" }, { + "Id": 395, "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Rank": 4, - "Id": 395, "CommandName": "Get-PnPAzureADUser" }, { + "Id": 396, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Rank": 5, - "Id": 396, "CommandName": "Get-PnPAzureADUser" }, { + "Id": 397, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Rank": 6, - "Id": 397, "CommandName": "Get-PnPAzureADUser" }, { + "Id": 398, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Rank": 7, - "Id": 398, "CommandName": "Get-PnPAzureADUser" }, { + "Id": 399, "Command": "Get-PnPAzureADUser -Delta", "Rank": 8, - "Id": 399, "CommandName": "Get-PnPAzureADUser" }, { + "Id": 400, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Rank": 9, - "Id": 400, "CommandName": "Get-PnPAzureADUser" }, { + "Id": 401, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Rank": 10, - "Id": 401, "CommandName": "Get-PnPAzureADUser" }, { + "Id": 402, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Rank": 1, - "Id": 402, "CommandName": "Get-PnPAzureCertificate" }, { + "Id": 403, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Rank": 2, - "Id": 403, "CommandName": "Get-PnPAzureCertificate" }, { + "Id": 404, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Rank": 3, - "Id": 404, "CommandName": "Get-PnPAzureCertificate" }, { + "Id": 405, "Command": "Get-PnPBrowserIdleSignout", "Rank": 1, - "Id": 405, "CommandName": "Get-PnPBrowserIdleSignout" }, { + "Id": 406, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Rank": 1, - "Id": 406, "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { + "Id": 407, "Command": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "Id": 407, "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { + "Id": 408, "Command": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "Id": 408, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { + "Id": 409, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Rank": 2, - "Id": 409, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { + "Id": 410, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Rank": 3, - "Id": 410, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { + "Id": 411, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "Id": 411, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { + "Id": 412, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Rank": 5, - "Id": 412, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { + "Id": 413, "Command": "Get-PnPChangeLog", "Rank": 1, - "Id": 413, "CommandName": "Get-PnPChangeLog" }, { + "Id": 414, "Command": "Get-PnPChangeLog -Nightly", "Rank": 2, - "Id": 414, "CommandName": "Get-PnPChangeLog" }, { + "Id": 415, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Rank": 1, - "Id": 415, "CommandName": "Get-PnPCompatibleHubContentTypes" }, { + "Id": 416, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Rank": 2, - "Id": 416, "CommandName": "Get-PnPCompatibleHubContentTypes" }, { + "Id": 417, "Command": "Get-PnPContentType", "Rank": 1, - "Id": 417, "CommandName": "Get-PnPContentType" }, { + "Id": 418, "Command": "Get-PnPContentType -InSiteHierarchy", "Rank": 2, - "Id": 418, "CommandName": "Get-PnPContentType" }, { + "Id": 419, "Command": "Get-PnPContentType -Identity \"Project Document\"", "Rank": 3, - "Id": 419, "CommandName": "Get-PnPContentType" }, { + "Id": 420, "Command": "Get-PnPContentType -List \"Documents\"", "Rank": 4, - "Id": 420, "CommandName": "Get-PnPContentType" }, { + "Id": 421, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Rank": 1, - "Id": 421, "CommandName": "Get-PnPContentTypePublishingStatus" }, { + "Id": 422, "Command": "Get-PnPCustomAction", "Rank": 1, - "Id": 422, "CommandName": "Get-PnPCustomAction" }, { + "Id": 423, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "Id": 423, "CommandName": "Get-PnPCustomAction" }, { + "Id": 424, "Command": "Get-PnPCustomAction -Scope web", "Rank": 3, - "Id": 424, "CommandName": "Get-PnPCustomAction" }, { + "Id": 425, "Command": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, - "Id": 425, "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { + "Id": 426, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 2, - "Id": 426, "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { + "Id": 427, "Command": "Get-PnPDeletedTeam", "Rank": 1, - "Id": 427, "CommandName": "Get-PnPDeletedTeam" }, { + "Id": 428, "Command": "Get-PnPDiagnostics", "Rank": 1, - "Id": 428, "CommandName": "Get-PnPDiagnostics" }, { + "Id": 429, "Command": "Get-PnPDisableSpacesActivation", "Rank": 1, - "Id": 429, "CommandName": "Get-PnPDisableSpacesActivation" }, { + "Id": 430, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Rank": 1, - "Id": 430, "CommandName": "Get-PnPDocumentSetTemplate" }, { + "Id": 431, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Rank": 2, - "Id": 431, "CommandName": "Get-PnPDocumentSetTemplate" }, { + "Id": 432, "Command": "Get-PnPEventReceiver", "Rank": 1, - "Id": 432, "CommandName": "Get-PnPEventReceiver" }, { + "Id": 433, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "Id": 433, "CommandName": "Get-PnPEventReceiver" }, { + "Id": 434, "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Rank": 3, - "Id": 434, "CommandName": "Get-PnPEventReceiver" }, { + "Id": 435, "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Rank": 4, - "Id": 435, "CommandName": "Get-PnPEventReceiver" }, { + "Id": 436, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 5, - "Id": 436, "CommandName": "Get-PnPEventReceiver" }, { + "Id": 437, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Rank": 6, - "Id": 437, "CommandName": "Get-PnPEventReceiver" }, { + "Id": 438, "Command": "Get-PnPEventReceiver -Scope Site", "Rank": 7, - "Id": 438, "CommandName": "Get-PnPEventReceiver" }, { + "Id": 439, "Command": "Get-PnPEventReceiver -Scope Web", "Rank": 8, - "Id": 439, "CommandName": "Get-PnPEventReceiver" }, { + "Id": 440, "Command": "Get-PnPEventReceiver -Scope All", "Rank": 9, - "Id": 440, "CommandName": "Get-PnPEventReceiver" }, { + "Id": 441, "Command": "Get-PnPException", "Rank": 1, - "Id": 441, "CommandName": "Get-PnPException" }, { + "Id": 442, "Command": "Get-PnPException -All", "Rank": 2, - "Id": 442, "CommandName": "Get-PnPException" }, { + "Id": 443, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Rank": 1, - "Id": 443, "CommandName": "Get-PnPExternalUser" }, { + "Id": 444, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Rank": 2, - "Id": 444, "CommandName": "Get-PnPExternalUser" }, { + "Id": 445, "Command": "Get-PnPFeature", "Rank": 1, - "Id": 445, "CommandName": "Get-PnPFeature" }, { + "Id": 446, "Command": "Get-PnPFeature -Scope Site", "Rank": 2, - "Id": 446, "CommandName": "Get-PnPFeature" }, { + "Id": 447, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 3, - "Id": 447, "CommandName": "Get-PnPFeature" }, { + "Id": 448, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Rank": 4, - "Id": 448, "CommandName": "Get-PnPFeature" }, { + "Id": 449, "Command": "Get-PnPField", "Rank": 1, - "Id": 449, "CommandName": "Get-PnPField" }, { + "Id": 450, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "Id": 450, "CommandName": "Get-PnPField" }, { + "Id": 451, "Command": "Get-PnPField -Group \"Custom Columns\"", "Rank": 3, - "Id": 451, "CommandName": "Get-PnPField" }, { + "Id": 452, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Rank": 1, - "Id": 452, "CommandName": "Get-PnPFile" }, { + "Id": 453, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Rank": 2, - "Id": 453, "CommandName": "Get-PnPFile" }, { + "Id": 454, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Rank": 3, - "Id": 454, "CommandName": "Get-PnPFile" }, { + "Id": 455, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Rank": 4, - "Id": 455, "CommandName": "Get-PnPFile" }, { + "Id": 456, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Rank": 5, - "Id": 456, "CommandName": "Get-PnPFile" }, { + "Id": 457, "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Rank": 6, - "Id": 457, "CommandName": "Get-PnPFile" }, { + "Id": 458, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Rank": 7, - "Id": 458, "CommandName": "Get-PnPFile" }, { + "Id": 459, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "Id": 459, "CommandName": "Get-PnPFileSharingLink" }, { + "Id": 460, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Rank": 1, - "Id": 460, "CommandName": "Get-PnPFileVersion" }, { + "Id": 461, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Rank": 2, - "Id": 461, "CommandName": "Get-PnPFileVersion" }, { + "Id": 462, "Command": "Get-PnPFlow -AsAdmin", "Rank": 1, - "Id": 462, "CommandName": "Get-PnPFlow" }, { + "Id": 463, "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "Rank": 2, - "Id": 463, "CommandName": "Get-PnPFlow" }, { + "Id": 464, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Rank": 3, - "Id": 464, "CommandName": "Get-PnPFlow" }, { + "Id": 465, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Rank": 1, - "Id": 465, "CommandName": "Get-PnPFlowOwner" }, { + "Id": 466, "Command": "Get-PnPFolder", "Rank": 1, - "Id": 466, "CommandName": "Get-PnPFolder" }, { + "Id": 467, "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Rank": 2, - "Id": 467, "CommandName": "Get-PnPFolder" }, { + "Id": 468, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Rank": 3, - "Id": 468, "CommandName": "Get-PnPFolder" }, { + "Id": 469, "Command": "Get-PnPFolder -List \"Shared Documents\"", "Rank": 4, - "Id": 469, "CommandName": "Get-PnPFolder" }, { + "Id": 470, "Command": "Get-PnPFolderFile", "Rank": 1, - "Id": 470, "CommandName": "Get-PnPFolderFile" }, { + "Id": 471, "Command": "Get-PnPFolderFile -Recurse", "Rank": 2, - "Id": 471, "CommandName": "Get-PnPFolderFile" }, { + "Id": 472, "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "Rank": 3, - "Id": 472, "CommandName": "Get-PnPFolderFile" }, { + "Id": 473, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, - "Id": 473, "CommandName": "Get-PnPFolderFile" }, { + "Id": 474, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 5, - "Id": 474, "CommandName": "Get-PnPFolderFile" }, { + "Id": 475, "Command": "Get-PnPFolderFolder", "Rank": 1, - "Id": 475, "CommandName": "Get-PnPFolderFolder" }, { + "Id": 476, "Command": "Get-PnPFolderFolder -Recurse", "Rank": 2, - "Id": 476, "CommandName": "Get-PnPFolderFolder" }, { + "Id": 477, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "Rank": 3, - "Id": 477, "CommandName": "Get-PnPFolderFolder" }, { + "Id": 478, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "Rank": 4, - "Id": 478, "CommandName": "Get-PnPFolderFolder" }, { + "Id": 479, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "Rank": 5, - "Id": 479, "CommandName": "Get-PnPFolderFolder" }, { + "Id": 480, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, - "Id": 480, "CommandName": "Get-PnPFolderFolder" }, { + "Id": 481, "Command": "Get-PnPFolderItem", "Rank": 1, - "Id": 481, "CommandName": "Get-PnPFolderItem" }, { + "Id": 482, "Command": "Get-PnPFolderItem -Recurse", "Rank": 2, - "Id": 482, "CommandName": "Get-PnPFolderItem" }, { + "Id": 483, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "Rank": 3, - "Id": 483, "CommandName": "Get-PnPFolderItem" }, { + "Id": 484, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, - "Id": 484, "CommandName": "Get-PnPFolderItem" }, { + "Id": 485, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Rank": 5, - "Id": 485, "CommandName": "Get-PnPFolderItem" }, { + "Id": 486, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, - "Id": 486, "CommandName": "Get-PnPFolderItem" }, { + "Id": 487, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "Id": 487, "CommandName": "Get-PnPFolderSharingLink" }, { + "Id": 488, "Command": "Get-PnPFolderStorageMetric", "Rank": 1, - "Id": 488, "CommandName": "Get-PnPFolderStorageMetric" }, { + "Id": 489, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Rank": 2, - "Id": 489, "CommandName": "Get-PnPFolderStorageMetric" }, { + "Id": 490, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Rank": 3, - "Id": 490, "CommandName": "Get-PnPFolderStorageMetric" }, { + "Id": 491, "Command": "Get-PnPFooter", "Rank": 1, - "Id": 491, "CommandName": "Get-PnPFooter" }, { + "Id": 492, "Command": "Get-PnPGraphAccessToken", "Rank": 1, - "Id": 492, "CommandName": "Get-PnPGraphAccessToken" }, { + "Id": 493, "Command": "Get-PnPGraphAccessToken -Decoded", "Rank": 2, - "Id": 493, "CommandName": "Get-PnPGraphAccessToken" }, { + "Id": 494, "Command": "Get-PnPGraphSubscription", "Rank": 1, - "Id": 494, "CommandName": "Get-PnPGraphSubscription" }, { + "Id": 495, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 2, - "Id": 495, "CommandName": "Get-PnPGraphSubscription" }, { + "Id": 496, "Command": "Get-PnPGroup", "Rank": 1, - "Id": 496, "CommandName": "Get-PnPGroup" }, { + "Id": 497, "Command": "Get-PnPGroup -Identity 'My Site Users'", "Rank": 2, - "Id": 497, "CommandName": "Get-PnPGroup" }, { + "Id": 498, "Command": "Get-PnPGroup -AssociatedMemberGroup", "Rank": 3, - "Id": 498, "CommandName": "Get-PnPGroup" }, { + "Id": 499, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Rank": 1, - "Id": 499, "CommandName": "Get-PnPGroupMember" }, { + "Id": 500, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Rank": 2, - "Id": 500, "CommandName": "Get-PnPGroupMember" }, { + "Id": 501, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Rank": 1, - "Id": 501, "CommandName": "Get-PnPGroupPermissions" }, { + "Id": 502, "Command": "Get-PnPHideDefaultThemes", "Rank": 1, - "Id": 502, "CommandName": "Get-PnPHideDefaultThemes" }, { + "Id": 503, "Command": "Get-PnPHomePage", "Rank": 1, - "Id": 503, "CommandName": "Get-PnPHomePage" }, { + "Id": 504, "Command": "Get-PnPHomeSite", "Rank": 1, - "Id": 504, "CommandName": "Get-PnPHomeSite" }, { + "Id": 505, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Rank": 2, - "Id": 505, "CommandName": "Get-PnPHomeSite" }, { + "Id": 506, "Command": "Get-PnPHomeSite -Detailed", "Rank": 3, - "Id": 506, "CommandName": "Get-PnPHomeSite" }, { + "Id": 507, "Command": "Get-PnPHubSite", "Rank": 1, - "Id": 507, "CommandName": "Get-PnPHubSite" }, { + "Id": 508, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "Id": 508, "CommandName": "Get-PnPHubSite" }, { + "Id": 509, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Rank": 3, - "Id": 509, "CommandName": "Get-PnPHubSite" }, { + "Id": 510, "Command": "Get-PnPHubSiteChild", "Rank": 1, - "Id": 510, "CommandName": "Get-PnPHubSiteChild" }, { + "Id": 511, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "Id": 511, "CommandName": "Get-PnPHubSiteChild" }, { + "Id": 512, "Command": "Get-PnPInPlaceRecordsManagement", "Rank": 1, - "Id": 512, "CommandName": "Get-PnPInPlaceRecordsManagement" }, { + "Id": 513, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Rank": 1, - "Id": 513, "CommandName": "Get-PnPIsSiteAliasAvailable" }, { + "Id": 514, "Command": "Get-PnPJavaScriptLink", "Rank": 1, - "Id": 514, "CommandName": "Get-PnPJavaScriptLink" }, { + "Id": 515, "Command": "Get-PnPJavaScriptLink -Scope All", "Rank": 2, - "Id": 515, "CommandName": "Get-PnPJavaScriptLink" }, { + "Id": 516, "Command": "Get-PnPJavaScriptLink -Scope Web", "Rank": 3, - "Id": 516, "CommandName": "Get-PnPJavaScriptLink" }, { + "Id": 517, "Command": "Get-PnPJavaScriptLink -Scope Site", "Rank": 4, - "Id": 517, "CommandName": "Get-PnPJavaScriptLink" }, { + "Id": 518, "Command": "Get-PnPJavaScriptLink -Name Test", "Rank": 5, - "Id": 518, "CommandName": "Get-PnPJavaScriptLink" }, { + "Id": 519, "Command": "Get-PnPKnowledgeHubSite", "Rank": 1, - "Id": 519, "CommandName": "Get-PnPKnowledgeHubSite" }, { + "Id": 520, "Command": "Get-PnPLabel", "Rank": 1, - "Id": 520, "CommandName": "Get-PnPLabel" }, { + "Id": 521, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Rank": 2, - "Id": 521, "CommandName": "Get-PnPLabel" }, { + "Id": 522, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Rank": 1, - "Id": 522, "CommandName": "Get-PnPLargeListOperationStatus" }, { + "Id": 523, "Command": "Get-PnPList", "Rank": 1, - "Id": 523, "CommandName": "Get-PnPList" }, { + "Id": 524, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 2, - "Id": 524, "CommandName": "Get-PnPList" }, { + "Id": 525, "Command": "Get-PnPList -Identity Lists/Announcements", "Rank": 3, - "Id": 525, "CommandName": "Get-PnPList" }, { + "Id": 526, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Rank": 4, - "Id": 526, "CommandName": "Get-PnPList" }, { + "Id": 527, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Rank": 5, - "Id": 527, "CommandName": "Get-PnPList" }, { + "Id": 528, "Command": "Get-PnPListDesign", "Rank": 1, - "Id": 528, "CommandName": "Get-PnPListDesign" }, { + "Id": 529, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "Id": 529, "CommandName": "Get-PnPListDesign" }, { + "Id": 530, "Command": "Get-PnPListDesign -Identity ListEvent", "Rank": 3, - "Id": 530, "CommandName": "Get-PnPListDesign" }, { + "Id": 531, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Rank": 1, - "Id": 531, "CommandName": "Get-PnPListInformationRightsManagement" }, { + "Id": 532, "Command": "Get-PnPListItem -List Tasks", "Rank": 1, - "Id": 532, "CommandName": "Get-PnPListItem" }, { + "Id": 533, "Command": "Get-PnPListItem -List Tasks -Id 1", "Rank": 2, - "Id": 533, "CommandName": "Get-PnPListItem" }, { + "Id": 534, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Rank": 3, - "Id": 534, "CommandName": "Get-PnPListItem" }, { + "Id": 535, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "Rank": 4, - "Id": 535, "CommandName": "Get-PnPListItem" }, { + "Id": 536, "Command": "Get-PnPListItem -List Tasks -Query \"\"", "Rank": 5, - "Id": 536, "CommandName": "Get-PnPListItem" }, { + "Id": 537, "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Rank": 6, - "Id": 537, "CommandName": "Get-PnPListItem" }, { + "Id": 538, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Rank": 7, - "Id": 538, "CommandName": "Get-PnPListItem" }, { + "Id": 539, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Rank": 8, - "Id": 539, "CommandName": "Get-PnPListItem" }, { + "Id": 540, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Rank": 9, - "Id": 540, "CommandName": "Get-PnPListItem" }, { + "Id": 541, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "Rank": 1, - "Id": 541, "CommandName": "Get-PnPListItemAttachment" }, { + "Id": 542, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "Rank": 2, - "Id": 542, "CommandName": "Get-PnPListItemAttachment" }, { + "Id": 543, "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Rank": 1, - "Id": 543, "CommandName": "Get-PnPListItemComment" }, { + "Id": 544, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Rank": 1, - "Id": 544, "CommandName": "Get-PnPListItemPermission" }, { + "Id": 545, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Rank": 1, - "Id": 545, "CommandName": "Get-PnPListItemVersion" }, { + "Id": 546, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Rank": 1, - "Id": 546, "CommandName": "Get-PnPListPermissions" }, { + "Id": 547, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Rank": 2, - "Id": 547, "CommandName": "Get-PnPListPermissions" }, { + "Id": 548, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Rank": 1, - "Id": 548, "CommandName": "Get-PnPListRecordDeclaration" }, { + "Id": 549, "Command": "Get-PnPMasterPage", "Rank": 1, - "Id": 549, "CommandName": "Get-PnPMasterPage" }, { + "Id": 550, "Command": "Get-PnPMessageCenterAnnouncement", "Rank": 1, - "Id": 550, "CommandName": "Get-PnPMessageCenterAnnouncement" }, { + "Id": 551, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Rank": 2, - "Id": 551, "CommandName": "Get-PnPMessageCenterAnnouncement" }, { + "Id": 552, "Command": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, - "Id": 552, "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { + "Id": 553, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Rank": 2, - "Id": 553, "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { + "Id": 554, "Command": "Get-PnPMicrosoft365Group", "Rank": 1, - "Id": 554, "CommandName": "Get-PnPMicrosoft365Group" }, { + "Id": 555, "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Rank": 2, - "Id": 555, "CommandName": "Get-PnPMicrosoft365Group" }, { + "Id": 556, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Rank": 3, - "Id": 556, "CommandName": "Get-PnPMicrosoft365Group" }, { + "Id": 557, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Rank": 4, - "Id": 557, "CommandName": "Get-PnPMicrosoft365Group" }, { + "Id": 558, "Command": "Get-PnPMicrosoft365Group -Identity $group", "Rank": 5, - "Id": 558, "CommandName": "Get-PnPMicrosoft365Group" }, { + "Id": 559, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Rank": 6, - "Id": 559, "CommandName": "Get-PnPMicrosoft365Group" }, { + "Id": 560, "Command": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, - "Id": 560, "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { + "Id": 561, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Rank": 2, - "Id": 561, "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { + "Id": 562, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "Id": 562, "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { + "Id": 563, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Rank": 1, - "Id": 563, "CommandName": "Get-PnPMicrosoft365GroupMember" }, { + "Id": 564, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Rank": 2, - "Id": 564, "CommandName": "Get-PnPMicrosoft365GroupMember" }, { + "Id": 565, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Rank": 3, - "Id": 565, "CommandName": "Get-PnPMicrosoft365GroupMember" }, { + "Id": 566, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Rank": 1, - "Id": 566, "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { + "Id": 567, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Rank": 2, - "Id": 567, "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { + "Id": 568, "Command": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, - "Id": 568, "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { + "Id": 569, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Rank": 2, - "Id": 569, "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { + "Id": 570, "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, - "Id": 570, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { + "Id": 571, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Rank": 2, - "Id": 571, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { + "Id": 572, "Command": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, - "Id": 572, "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { + "Id": 573, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Rank": 2, - "Id": 573, "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { + "Id": 574, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "Id": 574, "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { + "Id": 575, "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, - "Id": 575, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { + "Id": 576, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Rank": 2, - "Id": 576, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { + "Id": 577, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "Id": 577, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { + "Id": 578, "Command": "Get-PnPNavigationNode", "Rank": 1, - "Id": 578, "CommandName": "Get-PnPNavigationNode" }, { + "Id": 579, "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Rank": 2, - "Id": 579, "CommandName": "Get-PnPNavigationNode" }, { + "Id": 580, "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Rank": 3, - "Id": 580, "CommandName": "Get-PnPNavigationNode" }, { + "Id": 581, "Command": "Get-PnPOrgAssetsLibrary", "Rank": 1, - "Id": 581, "CommandName": "Get-PnPOrgAssetsLibrary" }, { + "Id": 582, "Command": "Get-PnPOrgNewsSite", "Rank": 1, - "Id": 582, "CommandName": "Get-PnPOrgNewsSite" }, { + "Id": 583, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Rank": 1, - "Id": 583, "CommandName": "Get-PnPPage" }, { + "Id": 584, "Command": "Get-PnPPage \"MyPage\"", "Rank": 2, - "Id": 584, "CommandName": "Get-PnPPage" }, { + "Id": 585, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Rank": 3, - "Id": 585, "CommandName": "Get-PnPPage" }, { + "Id": 586, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Rank": 4, - "Id": 586, "CommandName": "Get-PnPPage" }, { + "Id": 587, "Command": "Get-PnPPageComponent -Page Home", "Rank": 1, - "Id": 587, "CommandName": "Get-PnPPageComponent" }, { + "Id": 588, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "Id": 588, "CommandName": "Get-PnPPageComponent" }, { + "Id": 589, "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Rank": 3, - "Id": 589, "CommandName": "Get-PnPPageComponent" }, { + "Id": 590, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "Id": 590, "CommandName": "Get-PnPPlannerBucket" }, { + "Id": 591, "Command": "Get-PnPPlannerConfiguration", "Rank": 1, - "Id": 591, "CommandName": "Get-PnPPlannerConfiguration" }, { + "Id": 592, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Rank": 1, - "Id": 592, "CommandName": "Get-PnPPlannerPlan" }, { + "Id": 593, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Rank": 2, - "Id": 593, "CommandName": "Get-PnPPlannerPlan" }, { + "Id": 594, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Rank": 3, - "Id": 594, "CommandName": "Get-PnPPlannerPlan" }, { + "Id": 595, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "Id": 595, "CommandName": "Get-PnPPlannerRosterMember" }, { + "Id": 596, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Rank": 1, - "Id": 596, "CommandName": "Get-PnPPlannerRosterPlan" }, { + "Id": 597, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 2, - "Id": 597, "CommandName": "Get-PnPPlannerRosterPlan" }, { + "Id": 598, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "Id": 598, "CommandName": "Get-PnPPlannerTask" }, { + "Id": 599, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 2, - "Id": 599, "CommandName": "Get-PnPPlannerTask" }, { + "Id": 600, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 3, - "Id": 600, "CommandName": "Get-PnPPlannerTask" }, { + "Id": 601, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 601, "CommandName": "Get-PnPPlannerUserPolicy" }, { + "Id": 602, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "Rank": 1, - "Id": 602, "CommandName": "Get-PnPPowerPlatformConnector" }, { + "Id": 603, "Command": "Get-PnPPowerPlatformEnvironment", "Rank": 1, - "Id": 603, "CommandName": "Get-PnPPowerPlatformEnvironment" }, { + "Id": 604, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Rank": 2, - "Id": 604, "CommandName": "Get-PnPPowerPlatformEnvironment" }, { + "Id": 605, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Rank": 3, - "Id": 605, "CommandName": "Get-PnPPowerPlatformEnvironment" }, { + "Id": 606, "Command": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, - "Id": 606, "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { + "Id": 607, "Command": "Get-PnPPropertyBag", "Rank": 1, - "Id": 607, "CommandName": "Get-PnPPropertyBag" }, { + "Id": 608, "Command": "Get-PnPPropertyBag -Key MyKey", "Rank": 2, - "Id": 608, "CommandName": "Get-PnPPropertyBag" }, { + "Id": 609, "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Rank": 3, - "Id": 609, "CommandName": "Get-PnPPropertyBag" }, { + "Id": 610, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Rank": 4, - "Id": 610, "CommandName": "Get-PnPPropertyBag" }, { + "Id": 611, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Rank": 5, - "Id": 611, "CommandName": "Get-PnPPropertyBag" }, { + "Id": 612, "Command": "Get-PnPPublishingImageRendition", "Rank": 1, - "Id": 612, "CommandName": "Get-PnPPublishingImageRendition" }, { + "Id": 613, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Rank": 2, - "Id": 613, "CommandName": "Get-PnPPublishingImageRendition" }, { + "Id": 614, "Command": "Get-PnPPublishingImageRendition -Identity 2", "Rank": 3, - "Id": 614, "CommandName": "Get-PnPPublishingImageRendition" }, { + "Id": 615, "Command": "Get-PnPRecycleBinItem", "Rank": 1, - "Id": 615, "CommandName": "Get-PnPRecycleBinItem" }, { + "Id": 616, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Rank": 2, - "Id": 616, "CommandName": "Get-PnPRecycleBinItem" }, { + "Id": 617, "Command": "Get-PnPRecycleBinItem -FirstStage", "Rank": 3, - "Id": 617, "CommandName": "Get-PnPRecycleBinItem" }, { + "Id": 618, "Command": "Get-PnPRecycleBinItem -SecondStage", "Rank": 4, - "Id": 618, "CommandName": "Get-PnPRecycleBinItem" }, { + "Id": 619, "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Rank": 5, - "Id": 619, "CommandName": "Get-PnPRecycleBinItem" }, { + "Id": 620, "Command": "Get-PnPRequestAccessEmails", "Rank": 1, - "Id": 620, "CommandName": "Get-PnPRequestAccessEmails" }, { + "Id": 621, + "Command": "Get-PnPRetentionLabel", + "Rank": 1, + "CommandName": "Get-PnPRetentionLabel" + }, + { + "Id": 622, + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "Rank": 2, + "CommandName": "Get-PnPRetentionLabel" + }, + { + "Id": 623, "Command": "Get-PnPRoleDefinition", "Rank": 1, - "Id": 621, "CommandName": "Get-PnPRoleDefinition" }, { + "Id": 624, "Command": "Get-PnPRoleDefinition -Identity Read", "Rank": 2, - "Id": 622, "CommandName": "Get-PnPRoleDefinition" }, { + "Id": 625, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Rank": 3, - "Id": 623, "CommandName": "Get-PnPRoleDefinition" }, { + "Id": 626, "Command": "Get-PnPSearchConfiguration", "Rank": 1, - "Id": 624, "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 627, "Command": "Get-PnPSearchConfiguration -Scope Site", "Rank": 2, - "Id": 625, "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 628, "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Rank": 3, - "Id": 626, "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 629, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "Id": 627, "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 630, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Rank": 5, - "Id": 628, "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 631, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Rank": 6, - "Id": 629, "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 632, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Rank": 7, - "Id": 630, "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 633, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Rank": 8, - "Id": 631, "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 634, "Command": "Get-PnPSearchCrawlLog", "Rank": 1, - "Id": 632, "CommandName": "Get-PnPSearchCrawlLog" }, { + "Id": 635, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Rank": 2, - "Id": 633, "CommandName": "Get-PnPSearchCrawlLog" }, { + "Id": 636, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Rank": 3, - "Id": 634, "CommandName": "Get-PnPSearchCrawlLog" }, { + "Id": 637, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Rank": 4, - "Id": 635, "CommandName": "Get-PnPSearchCrawlLog" }, { + "Id": 638, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Rank": 5, - "Id": 636, "CommandName": "Get-PnPSearchCrawlLog" }, { + "Id": 639, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Rank": 6, - "Id": 637, "CommandName": "Get-PnPSearchCrawlLog" }, { + "Id": 640, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Rank": 7, - "Id": 638, "CommandName": "Get-PnPSearchCrawlLog" }, { + "Id": 641, "Command": "Get-PnPSearchSettings", "Rank": 1, - "Id": 639, "CommandName": "Get-PnPSearchSettings" }, { + "Id": 642, "Command": "Get-PnPServiceCurrentHealth", "Rank": 1, - "Id": 640, "CommandName": "Get-PnPServiceCurrentHealth" }, { + "Id": 643, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Rank": 2, - "Id": 641, "CommandName": "Get-PnPServiceCurrentHealth" }, { + "Id": 644, "Command": "Get-PnPServiceHealthIssue", "Rank": 1, - "Id": 642, "CommandName": "Get-PnPServiceHealthIssue" }, { + "Id": 645, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Rank": 2, - "Id": 643, "CommandName": "Get-PnPServiceHealthIssue" }, { + "Id": 646, "Command": "Get-PnPSharePointAddIn", "Rank": 1, - "Id": 644, "CommandName": "Get-PnPSharePointAddIn" }, { + "Id": 647, "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Rank": 2, - "Id": 645, "CommandName": "Get-PnPSharePointAddIn" }, { + "Id": 648, "Command": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, - "Id": 646, "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { + "Id": 649, "Command": "Get-PnPSite", "Rank": 1, - "Id": 647, "CommandName": "Get-PnPSite" }, { + "Id": 650, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Rank": 2, - "Id": 648, "CommandName": "Get-PnPSite" }, { + "Id": 651, "Command": "Get-PnPSiteClosure", "Rank": 1, - "Id": 649, "CommandName": "Get-PnPSiteClosure" }, { + "Id": 652, "Command": "Get-PnPSiteCollectionAdmin", "Rank": 1, - "Id": 650, "CommandName": "Get-PnPSiteCollectionAdmin" }, { + "Id": 653, "Command": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, - "Id": 651, "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { + "Id": 654, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Rank": 2, - "Id": 652, "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { + "Id": 655, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Rank": 3, - "Id": 653, "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { + "Id": 656, "Command": "Get-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 654, "CommandName": "Get-PnPSiteCollectionTermStore" }, { + "Id": 657, "Command": "Get-PnPSiteDesign", "Rank": 1, - "Id": 655, "CommandName": "Get-PnPSiteDesign" }, { + "Id": 658, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "Id": 656, "CommandName": "Get-PnPSiteDesign" }, { + "Id": 659, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 657, "CommandName": "Get-PnPSiteDesignRights" }, { + "Id": 660, "Command": "Get-PnPSiteDesignRun", "Rank": 1, - "Id": 658, "CommandName": "Get-PnPSiteDesignRun" }, { + "Id": 661, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Rank": 2, - "Id": 659, "CommandName": "Get-PnPSiteDesignRun" }, { + "Id": 662, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "Id": 660, "CommandName": "Get-PnPSiteDesignTask" }, { + "Id": 663, "Command": "Get-PnPSiteDesignTask", "Rank": 2, - "Id": 661, "CommandName": "Get-PnPSiteDesignTask" }, { + "Id": 664, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 3, - "Id": 662, "CommandName": "Get-PnPSiteDesignTask" }, { + "Id": 665, "Command": "Get-PnPSiteGroup", "Rank": 1, - "Id": 663, "CommandName": "Get-PnPSiteGroup" }, { + "Id": 666, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 2, - "Id": 664, "CommandName": "Get-PnPSiteGroup" }, { + "Id": 667, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Rank": 3, - "Id": 665, "CommandName": "Get-PnPSiteGroup" }, { + "Id": 668, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 4, - "Id": 666, "CommandName": "Get-PnPSiteGroup" }, { + "Id": 669, "Command": "Get-PnPSitePolicy", "Rank": 1, - "Id": 667, "CommandName": "Get-PnPSitePolicy" }, { + "Id": 670, "Command": "Get-PnPSitePolicy -AllAvailable", "Rank": 2, - "Id": 668, "CommandName": "Get-PnPSitePolicy" }, { + "Id": 671, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 3, - "Id": 669, "CommandName": "Get-PnPSitePolicy" }, { + "Id": 672, "Command": "Get-PnPSiteScript", "Rank": 1, - "Id": 670, "CommandName": "Get-PnPSiteScript" }, { + "Id": 673, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "Id": 671, "CommandName": "Get-PnPSiteScript" }, { + "Id": 674, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Rank": 1, - "Id": 672, "CommandName": "Get-PnPSiteScriptFromList" }, { + "Id": 675, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Rank": 2, - "Id": 673, "CommandName": "Get-PnPSiteScriptFromList" }, { + "Id": 676, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Rank": 3, - "Id": 674, "CommandName": "Get-PnPSiteScriptFromList" }, { + "Id": 677, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Rank": 1, - "Id": 675, "CommandName": "Get-PnPSiteScriptFromWeb" }, { + "Id": 678, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Rank": 2, - "Id": 676, "CommandName": "Get-PnPSiteScriptFromWeb" }, { + "Id": 679, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Rank": 3, - "Id": 677, "CommandName": "Get-PnPSiteScriptFromWeb" }, { + "Id": 680, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Rank": 4, - "Id": 678, "CommandName": "Get-PnPSiteScriptFromWeb" }, { + "Id": 681, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Rank": 5, - "Id": 679, "CommandName": "Get-PnPSiteScriptFromWeb" }, { + "Id": 682, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Rank": 6, - "Id": 680, "CommandName": "Get-PnPSiteScriptFromWeb" }, { + "Id": 683, "Command": "Get-PnPSiteSearchQueryResults", "Rank": 1, - "Id": 681, "CommandName": "Get-PnPSiteSearchQueryResults" }, { + "Id": 684, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Rank": 2, - "Id": 682, "CommandName": "Get-PnPSiteSearchQueryResults" }, { + "Id": 685, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Rank": 3, - "Id": 683, "CommandName": "Get-PnPSiteSearchQueryResults" }, { + "Id": 686, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Rank": 4, - "Id": 684, "CommandName": "Get-PnPSiteSearchQueryResults" }, { + "Id": 687, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Rank": 5, - "Id": 685, "CommandName": "Get-PnPSiteSearchQueryResults" }, { + "Id": 688, "Command": "Get-PnPSiteSearchQueryResults -All", "Rank": 6, - "Id": 686, "CommandName": "Get-PnPSiteSearchQueryResults" }, { + "Id": 689, "Command": "Get-PnPSiteSensitivityLabel", "Rank": 1, - "Id": 687, "CommandName": "Get-PnPSiteSensitivityLabel" }, { + "Id": 690, "Command": "Get-PnPSiteTemplate -Out template.pnp", "Rank": 1, - "Id": 688, "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 691, "Command": "Get-PnPSiteTemplate -Out template.xml", "Rank": 2, - "Id": 689, "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 692, "Command": "Get-PnPSiteTemplate -Out template.md", "Rank": 3, - "Id": 690, "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 693, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Rank": 4, - "Id": 691, "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 694, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Rank": 5, - "Id": 692, "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 695, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Rank": 6, - "Id": 693, "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 696, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Rank": 7, - "Id": 694, "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 697, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Rank": 8, - "Id": 695, "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 698, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Rank": 9, - "Id": 696, "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 699, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Rank": 10, - "Id": 697, "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 700, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Rank": 11, - "Id": 698, "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 701, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Rank": 12, - "Id": 699, "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 702, "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", "Rank": 13, - "Id": 700, "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 703, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Rank": 14, - "Id": 701, "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 704, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "Id": 702, "CommandName": "Get-PnPSiteUserInvitations" }, { + "Id": 705, "Command": "Get-PnPStorageEntity", "Rank": 1, - "Id": 703, "CommandName": "Get-PnPStorageEntity" }, { + "Id": 706, "Command": "Get-PnPStorageEntity -Key MyKey", "Rank": 2, - "Id": 704, "CommandName": "Get-PnPStorageEntity" }, { + "Id": 707, "Command": "Get-PnPStorageEntity -Scope Site", "Rank": 3, - "Id": 705, "CommandName": "Get-PnPStorageEntity" }, { + "Id": 708, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 4, - "Id": 706, "CommandName": "Get-PnPStorageEntity" }, { + "Id": 709, "Command": "Get-PnPStoredCredential -Name O365", "Rank": 1, - "Id": 707, "CommandName": "Get-PnPStoredCredential" }, { + "Id": 710, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "Id": 708, "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { + "Id": 711, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "Id": 709, "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { + "Id": 712, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Rank": 1, - "Id": 710, "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { + "Id": 713, "Command": "Get-PnPSubWeb", "Rank": 1, - "Id": 711, "CommandName": "Get-PnPSubWeb" }, { + "Id": 714, "Command": "Get-PnPSubWeb -Recurse", "Rank": 2, - "Id": 712, "CommandName": "Get-PnPSubWeb" }, { + "Id": 715, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Rank": 3, - "Id": 713, "CommandName": "Get-PnPSubWeb" }, { + "Id": 716, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Rank": 4, - "Id": 714, "CommandName": "Get-PnPSubWeb" }, { + "Id": 717, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Rank": 5, - "Id": 715, "CommandName": "Get-PnPSubWeb" }, { + "Id": 718, "Command": "Get-PnPSyntexModel", "Rank": 1, - "Id": 716, "CommandName": "Get-PnPSyntexModel" }, { + "Id": 719, "Command": "Get-PnPSyntexModel -Identity 1", "Rank": 2, - "Id": 717, "CommandName": "Get-PnPSyntexModel" }, { + "Id": 720, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Rank": 3, - "Id": 718, "CommandName": "Get-PnPSyntexModel" }, { + "Id": 721, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Rank": 1, - "Id": 719, "CommandName": "Get-PnPSyntexModelPublication" }, { + "Id": 722, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Rank": 1, - "Id": 720, "CommandName": "Get-PnPTaxonomyItem" }, { + "Id": 723, "Command": "Get-PnPTeamsApp", "Rank": 1, - "Id": 721, "CommandName": "Get-PnPTeamsApp" }, { + "Id": 724, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Rank": 2, - "Id": 722, "CommandName": "Get-PnPTeamsApp" }, { + "Id": 725, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Rank": 3, - "Id": 723, "CommandName": "Get-PnPTeamsApp" }, { + "Id": 726, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Rank": 1, - "Id": 724, "CommandName": "Get-PnPTeamsChannel" }, { + "Id": 727, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Rank": 2, - "Id": 725, "CommandName": "Get-PnPTeamsChannel" }, { + "Id": 728, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 3, - "Id": 726, "CommandName": "Get-PnPTeamsChannel" }, { + "Id": 729, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Rank": 1, - "Id": 727, "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { + "Id": 730, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 2, - "Id": 728, "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { + "Id": 731, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Rank": 1, - "Id": 729, "CommandName": "Get-PnPTeamsChannelMessage" }, { + "Id": 732, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Rank": 2, - "Id": 730, "CommandName": "Get-PnPTeamsChannelMessage" }, { + "Id": 733, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Rank": 1, - "Id": 731, "CommandName": "Get-PnPTeamsChannelMessageReply" }, { + "Id": 734, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Rank": 2, - "Id": 732, "CommandName": "Get-PnPTeamsChannelMessageReply" }, { + "Id": 735, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Rank": 1, - "Id": 733, "CommandName": "Get-PnPTeamsChannelUser" }, { + "Id": 736, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Rank": 2, - "Id": 734, "CommandName": "Get-PnPTeamsChannelUser" }, { + "Id": 737, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Rank": 3, - "Id": 735, "CommandName": "Get-PnPTeamsChannelUser" }, { + "Id": 738, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "Id": 736, "CommandName": "Get-PnPTeamsChannelUser" }, { + "Id": 739, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Rank": 1, - "Id": 737, "CommandName": "Get-PnPTeamsPrimaryChannel" }, { + "Id": 740, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Rank": 2, - "Id": 738, "CommandName": "Get-PnPTeamsPrimaryChannel" }, { + "Id": 741, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "Rank": 1, - "Id": 739, "CommandName": "Get-PnPTeamsTab" }, { + "Id": 742, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "Rank": 2, - "Id": 740, "CommandName": "Get-PnPTeamsTab" }, { + "Id": 743, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", "Rank": 3, - "Id": 741, "CommandName": "Get-PnPTeamsTab" }, { + "Id": 744, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Rank": 4, - "Id": 742, "CommandName": "Get-PnPTeamsTab" }, { + "Id": 745, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Rank": 5, - "Id": 743, "CommandName": "Get-PnPTeamsTab" }, { + "Id": 746, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "Id": 744, "CommandName": "Get-PnPTeamsTag" }, { + "Id": 747, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 2, - "Id": 745, "CommandName": "Get-PnPTeamsTag" }, { + "Id": 748, "Command": "Get-PnPTeamsTeam", "Rank": 1, - "Id": 746, "CommandName": "Get-PnPTeamsTeam" }, { + "Id": 749, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Rank": 2, - "Id": 747, "CommandName": "Get-PnPTeamsTeam" }, { + "Id": 750, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Rank": 3, - "Id": 748, "CommandName": "Get-PnPTeamsTeam" }, { + "Id": 751, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Rank": 4, - "Id": 749, "CommandName": "Get-PnPTeamsTeam" }, { + "Id": 752, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "Id": 750, "CommandName": "Get-PnPTeamsTeam" }, { + "Id": 753, "Command": "Get-PnPTeamsUser -Team MyTeam", "Rank": 1, - "Id": 751, "CommandName": "Get-PnPTeamsUser" }, { + "Id": 754, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Rank": 2, - "Id": 752, "CommandName": "Get-PnPTeamsUser" }, { + "Id": 755, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Rank": 3, - "Id": 753, "CommandName": "Get-PnPTeamsUser" }, { + "Id": 756, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Rank": 4, - "Id": 754, "CommandName": "Get-PnPTeamsUser" }, { + "Id": 757, "Command": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, - "Id": 755, "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { + "Id": 758, "Command": "Get-PnPTenant", "Rank": 1, - "Id": 756, "CommandName": "Get-PnPTenant" }, { + "Id": 759, "Command": "Get-PnPTenantAppCatalogUrl", "Rank": 1, - "Id": 757, "CommandName": "Get-PnPTenantAppCatalogUrl" }, { + "Id": 760, "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Rank": 1, - "Id": 758, "CommandName": "Get-PnPTenantCdnEnabled" }, { + "Id": 761, "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Rank": 1, - "Id": 759, "CommandName": "Get-PnPTenantCdnOrigin" }, { + "Id": 762, "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Rank": 1, - "Id": 760, "CommandName": "Get-PnPTenantCdnPolicies" }, { + "Id": 763, "Command": "Get-PnPTenantDeletedSite", "Rank": 1, - "Id": 761, "CommandName": "Get-PnPTenantDeletedSite" }, { + "Id": 764, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 2, - "Id": 762, "CommandName": "Get-PnPTenantDeletedSite" }, { + "Id": 765, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Rank": 3, - "Id": 763, "CommandName": "Get-PnPTenantDeletedSite" }, { + "Id": 766, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Rank": 4, - "Id": 764, "CommandName": "Get-PnPTenantDeletedSite" }, { + "Id": 767, "Command": "Get-PnPTenantId", "Rank": 1, - "Id": 765, "CommandName": "Get-PnPTenantId" }, { + "Id": 768, "Command": "Get-PnPTenantId contoso", "Rank": 2, - "Id": 766, "CommandName": "Get-PnPTenantId" }, { + "Id": 769, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Rank": 3, - "Id": 767, "CommandName": "Get-PnPTenantId" }, { + "Id": 770, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Rank": 4, - "Id": 768, "CommandName": "Get-PnPTenantId" }, { + "Id": 771, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Rank": 1, - "Id": 769, "CommandName": "Get-PnPTenantInfo" }, { + "Id": 772, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Rank": 2, - "Id": 770, "CommandName": "Get-PnPTenantInfo" }, { + "Id": 773, "Command": "Get-PnPTenantInfo", "Rank": 3, - "Id": 771, "CommandName": "Get-PnPTenantInfo" }, { + "Id": 774, "Command": "Get-PnPTenantInfo -CurrentTenant", "Rank": 4, - "Id": 772, "CommandName": "Get-PnPTenantInfo" }, { + "Id": 775, "Command": "Get-PnPTenantInstance", "Rank": 1, - "Id": 773, "CommandName": "Get-PnPTenantInstance" }, { + "Id": 776, "Command": "Get-PnPTenantRecycleBinItem", "Rank": 1, - "Id": 774, "CommandName": "Get-PnPTenantRecycleBinItem" }, { + "Id": 777, "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Rank": 1, - "Id": 775, "CommandName": "Get-PnPTenantSequence" }, { + "Id": 778, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Rank": 2, - "Id": 776, "CommandName": "Get-PnPTenantSequence" }, { + "Id": 779, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Rank": 1, - "Id": 777, "CommandName": "Get-PnPTenantSequenceSite" }, { + "Id": 780, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Rank": 2, - "Id": 778, "CommandName": "Get-PnPTenantSequenceSite" }, { + "Id": 781, "Command": "Get-PnPTenantSite", "Rank": 1, - "Id": 779, "CommandName": "Get-PnPTenantSite" }, { + "Id": 782, "Command": "Get-PnPTenantSite -Detailed", "Rank": 2, - "Id": 780, "CommandName": "Get-PnPTenantSite" }, { + "Id": 783, "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Rank": 3, - "Id": 781, "CommandName": "Get-PnPTenantSite" }, { + "Id": 784, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Rank": 4, - "Id": 782, "CommandName": "Get-PnPTenantSite" }, { + "Id": 785, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Rank": 5, - "Id": 783, "CommandName": "Get-PnPTenantSite" }, { + "Id": 786, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Rank": 6, - "Id": 784, "CommandName": "Get-PnPTenantSite" }, { + "Id": 787, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Rank": 7, - "Id": 785, "CommandName": "Get-PnPTenantSite" }, { + "Id": 788, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Rank": 8, - "Id": 786, "CommandName": "Get-PnPTenantSite" }, { + "Id": 789, "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Rank": 9, - "Id": 787, "CommandName": "Get-PnPTenantSite" }, { + "Id": 790, "Command": "Get-PnPTenantSyncClientRestriction", "Rank": 1, - "Id": 788, "CommandName": "Get-PnPTenantSyncClientRestriction" }, { + "Id": 791, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Rank": 1, - "Id": 789, "CommandName": "Get-PnPTenantTemplate" }, { + "Id": 792, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "Rank": 2, - "Id": 790, "CommandName": "Get-PnPTenantTemplate" }, { + "Id": 793, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Rank": 3, - "Id": 791, "CommandName": "Get-PnPTenantTemplate" }, { + "Id": 794, "Command": "Get-PnPTenantTheme", "Rank": 1, - "Id": 792, "CommandName": "Get-PnPTenantTheme" }, { + "Id": 795, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 2, - "Id": 793, "CommandName": "Get-PnPTenantTheme" }, { + "Id": 796, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Rank": 3, - "Id": 794, "CommandName": "Get-PnPTenantTheme" }, { + "Id": 797, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 1, - "Id": 795, "CommandName": "Get-PnPTerm" }, { + "Id": 798, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "Id": 796, "CommandName": "Get-PnPTerm" }, { + "Id": 799, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "Id": 797, "CommandName": "Get-PnPTerm" }, { + "Id": 800, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Rank": 4, - "Id": 798, "CommandName": "Get-PnPTerm" }, { + "Id": 801, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Rank": 5, - "Id": 799, "CommandName": "Get-PnPTerm" }, { + "Id": 802, "Command": "Get-PnPTermGroup", "Rank": 1, - "Id": 800, "CommandName": "Get-PnPTermGroup" }, { + "Id": 803, "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Rank": 2, - "Id": 801, "CommandName": "Get-PnPTermGroup" }, { + "Id": 804, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Rank": 3, - "Id": 802, "CommandName": "Get-PnPTermGroup" }, { + "Id": 805, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Rank": 1, - "Id": 803, "CommandName": "Get-PnPTermLabel" }, { + "Id": 806, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Rank": 2, - "Id": 804, "CommandName": "Get-PnPTermLabel" }, { + "Id": 807, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "Id": 805, "CommandName": "Get-PnPTermLabel" }, { + "Id": 808, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Rank": 1, - "Id": 806, "CommandName": "Get-PnPTermSet" }, { + "Id": 809, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "Id": 807, "CommandName": "Get-PnPTermSet" }, { + "Id": 810, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Rank": 3, - "Id": 808, "CommandName": "Get-PnPTermSet" }, { + "Id": 811, "Command": "Get-PnPTheme", "Rank": 1, - "Id": 809, "CommandName": "Get-PnPTheme" }, { + "Id": 812, "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Rank": 2, - "Id": 810, "CommandName": "Get-PnPTheme" }, { + "Id": 813, "Command": "Get-PnPTimeZoneId", "Rank": 1, - "Id": 811, "CommandName": "Get-PnPTimeZoneId" }, { + "Id": 814, "Command": "Get-PnPTimeZoneId -Match Stockholm", "Rank": 2, - "Id": 812, "CommandName": "Get-PnPTimeZoneId" }, { + "Id": 815, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Rank": 1, - "Id": 813, "CommandName": "Get-PnPUnfurlLink" }, { + "Id": 816, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Rank": 1, - "Id": 814, "CommandName": "Get-PnPUnifiedAuditLog" }, { + "Id": 817, "Command": "Get-PnPUPABulkImportStatus", "Rank": 1, - "Id": 815, "CommandName": "Get-PnPUPABulkImportStatus" }, { + "Id": 818, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Rank": 2, - "Id": 816, "CommandName": "Get-PnPUPABulkImportStatus" }, { + "Id": 819, "Command": "Get-PnPUPABulkImportStatus -JobId ", "Rank": 3, - "Id": 817, "CommandName": "Get-PnPUPABulkImportStatus" }, { + "Id": 820, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "Rank": 4, - "Id": 818, "CommandName": "Get-PnPUPABulkImportStatus" }, { + "Id": 821, "Command": "Get-PnPUser", "Rank": 1, - "Id": 819, "CommandName": "Get-PnPUser" }, { + "Id": 822, "Command": "Get-PnPUser -Identity 23", "Rank": 2, - "Id": 820, "CommandName": "Get-PnPUser" }, { + "Id": 823, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Rank": 3, - "Id": 821, "CommandName": "Get-PnPUser" }, { + "Id": 824, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Rank": 4, - "Id": 822, "CommandName": "Get-PnPUser" }, { + "Id": 825, "Command": "Get-PnPUser -WithRightsAssigned", "Rank": 5, - "Id": 823, "CommandName": "Get-PnPUser" }, { + "Id": 826, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Rank": 6, - "Id": 824, "CommandName": "Get-PnPUser" }, { + "Id": 827, "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Rank": 7, - "Id": 825, "CommandName": "Get-PnPUser" }, { + "Id": 828, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Rank": 1, - "Id": 826, "CommandName": "Get-PnPUserOneDriveQuota" }, { + "Id": 829, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Rank": 1, - "Id": 827, "CommandName": "Get-PnPUserProfileProperty" }, { + "Id": 830, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Rank": 2, - "Id": 828, "CommandName": "Get-PnPUserProfileProperty" }, { + "Id": 831, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Rank": 3, - "Id": 829, "CommandName": "Get-PnPUserProfileProperty" }, { + "Id": 832, "Command": "Get-PnPView -List \"Demo List\"", "Rank": 1, - "Id": 830, "CommandName": "Get-PnPView" }, { + "Id": 833, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Rank": 2, - "Id": 831, "CommandName": "Get-PnPView" }, { + "Id": 834, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Rank": 3, - "Id": 832, "CommandName": "Get-PnPView" }, { + "Id": 835, "Command": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, - "Id": 833, "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { + "Id": 836, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 2, - "Id": 834, "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { + "Id": 837, "Command": "Get-PnPWeb", "Rank": 1, - "Id": 835, "CommandName": "Get-PnPWeb" }, { + "Id": 838, "Command": "Get-PnPWebHeader", "Rank": 1, - "Id": 836, "CommandName": "Get-PnPWebHeader" }, { + "Id": 839, "Command": "Get-PnPWebhookSubscriptions -List MyList", "Rank": 1, - "Id": 837, "CommandName": "Get-PnPWebhookSubscriptions" }, { + "Id": 840, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Rank": 1, - "Id": 838, "CommandName": "Get-PnPWebPart" }, { + "Id": 841, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "Id": 839, "CommandName": "Get-PnPWebPart" }, { + "Id": 842, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "Rank": 1, - "Id": 840, "CommandName": "Get-PnPWebPartProperty" }, { + "Id": 843, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Rank": 2, - "Id": 841, "CommandName": "Get-PnPWebPartProperty" }, { + "Id": 844, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "Id": 842, "CommandName": "Get-PnPWebPartXml" }, { + "Id": 845, "Command": "Get-PnPWebTemplates", "Rank": 1, - "Id": 843, "CommandName": "Get-PnPWebTemplates" }, { + "Id": 846, "Command": "Get-PnPWebTemplates -LCID 1033", "Rank": 2, - "Id": 844, "CommandName": "Get-PnPWebTemplates" }, { + "Id": 847, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Rank": 3, - "Id": 845, "CommandName": "Get-PnPWebTemplates" }, { + "Id": 848, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Rank": 1, - "Id": 846, "CommandName": "Get-PnPWikiPageContent" }, { + "Id": 849, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "Rank": 1, - "Id": 847, "CommandName": "Grant-PnPAzureADAppSitePermission" }, { + "Id": 850, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "Id": 848, "CommandName": "Grant-PnPAzureADAppSitePermission" }, { + "Id": 851, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "Id": 849, "CommandName": "Grant-PnPHubSiteRights" }, { + "Id": 852, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "Id": 850, "CommandName": "Grant-PnPSiteDesignRights" }, { + "Id": 853, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "Id": 851, "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { + "Id": 854, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Rank": 1, - "Id": 852, "CommandName": "Import-PnPTaxonomy" }, { + "Id": 855, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Rank": 2, - "Id": 853, "CommandName": "Import-PnPTaxonomy" }, { + "Id": 856, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Rank": 3, - "Id": 854, "CommandName": "Import-PnPTaxonomy" }, { + "Id": 857, "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Rank": 1, - "Id": 855, "CommandName": "Import-PnPTermGroupFromXml" }, { + "Id": 858, "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Rank": 2, - "Id": 856, "CommandName": "Import-PnPTermGroupFromXml" }, { + "Id": 859, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Rank": 1, - "Id": 857, "CommandName": "Import-PnPTermSet" }, { + "Id": 860, "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", "Rank": 2, - "Id": 858, "CommandName": "Import-PnPTermSet" }, { + "Id": 861, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", "Rank": 3, - "Id": 859, "CommandName": "Import-PnPTermSet" }, { + "Id": 862, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 860, "CommandName": "Install-PnPApp" }, { + "Id": 863, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 861, "CommandName": "Install-PnPApp" }, { + "Id": 864, "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "Rank": 1, - "Id": 862, "CommandName": "Invoke-PnPGraphMethod" }, { + "Id": 865, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Rank": 2, - "Id": 863, "CommandName": "Invoke-PnPGraphMethod" }, { + "Id": 866, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Rank": 3, - "Id": 864, "CommandName": "Invoke-PnPGraphMethod" }, { + "Id": 867, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Rank": 4, - "Id": 865, "CommandName": "Invoke-PnPGraphMethod" }, { + "Id": 868, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Rank": 5, - "Id": 866, "CommandName": "Invoke-PnPGraphMethod" }, { + "Id": 869, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", "Rank": 6, - "Id": 867, "CommandName": "Invoke-PnPGraphMethod" }, { + "Id": 870, "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, - "Id": 868, "CommandName": "Invoke-PnPGraphMethod" }, { + "Id": 871, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 869, "CommandName": "Invoke-PnPListDesign" }, { + "Id": 872, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "Id": 870, "CommandName": "Invoke-PnPListDesign" }, { + "Id": 873, "Command": "Invoke-PnPQuery -RetryCount 5", "Rank": 1, - "Id": 871, "CommandName": "Invoke-PnPQuery" }, { + "Id": 874, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 872, "CommandName": "Invoke-PnPSiteDesign" }, { + "Id": 875, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "Id": 873, "CommandName": "Invoke-PnPSiteDesign" }, { + "Id": 876, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Rank": 1, - "Id": 874, "CommandName": "Invoke-PnPSiteScript" }, { + "Id": 877, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", "Rank": 1, - "Id": 875, "CommandName": "Invoke-PnPSiteSwap" }, { + "Id": 878, "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, - "Id": 876, "CommandName": "Invoke-PnPSiteSwap" }, { + "Id": 879, "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, - "Id": 877, "CommandName": "Invoke-PnPSiteSwap" }, { + "Id": 880, "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Rank": 1, - "Id": 878, "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 881, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Rank": 2, - "Id": 879, "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 882, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "Id": 880, "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 883, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Rank": 4, - "Id": 881, "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 884, "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Rank": 5, - "Id": 882, "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 885, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Rank": 6, - "Id": 883, "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 886, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Rank": 7, - "Id": 884, "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 887, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Rank": 8, - "Id": 885, "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 888, "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Rank": 1, - "Id": 886, "CommandName": "Invoke-PnPSPRestMethod" }, { + "Id": 889, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Rank": 1, - "Id": 887, "CommandName": "Invoke-PnPTenantTemplate" }, { + "Id": 890, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Rank": 2, - "Id": 888, "CommandName": "Invoke-PnPTenantTemplate" }, { + "Id": 891, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "Id": 889, "CommandName": "Invoke-PnPTenantTemplate" }, { + "Id": 892, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Rank": 1, - "Id": 890, "CommandName": "Invoke-PnPWebAction" }, { + "Id": 893, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Rank": 2, - "Id": 891, "CommandName": "Invoke-PnPWebAction" }, { + "Id": 894, "Command": "Measure-PnPList \"Documents\"", "Rank": 1, - "Id": 892, "CommandName": "Measure-PnPList" }, { + "Id": 895, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Rank": 2, - "Id": 893, "CommandName": "Measure-PnPList" }, { + "Id": 896, "Command": "Measure-PnPWeb", "Rank": 1, - "Id": 894, "CommandName": "Measure-PnPWeb" }, { + "Id": 897, "Command": "Measure-PnPWeb $web -Recursive", "Rank": 2, - "Id": 895, "CommandName": "Measure-PnPWeb" }, { + "Id": 898, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Rank": 1, - "Id": 896, "CommandName": "Move-PnPFile" }, { + "Id": 899, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Rank": 2, - "Id": 897, "CommandName": "Move-PnPFile" }, { + "Id": 900, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 3, - "Id": 898, "CommandName": "Move-PnPFile" }, { + "Id": 901, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 4, - "Id": 899, "CommandName": "Move-PnPFile" }, { + "Id": 902, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Rank": 1, - "Id": 900, "CommandName": "Move-PnPFolder" }, { + "Id": 903, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Rank": 2, - "Id": 901, "CommandName": "Move-PnPFolder" }, { + "Id": 904, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "Id": 902, "CommandName": "Move-PnPListItemToRecycleBin" }, { + "Id": 905, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "Rank": 1, - "Id": 903, "CommandName": "Move-PnPPageComponent" }, { + "Id": 906, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "Rank": 2, - "Id": 904, "CommandName": "Move-PnPPageComponent" }, { + "Id": 907, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "Rank": 3, - "Id": 905, "CommandName": "Move-PnPPageComponent" }, { + "Id": 908, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Rank": 4, - "Id": 906, "CommandName": "Move-PnPPageComponent" }, { + "Id": 909, "Command": "Move-PnPRecycleBinItem", "Rank": 1, - "Id": 907, "CommandName": "Move-PnpRecycleBinItem" }, { + "Id": 910, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Rank": 2, - "Id": 908, "CommandName": "Move-PnpRecycleBinItem" }, { + "Id": 911, "Command": "Move-PnPRecycleBinItem -Force", "Rank": 3, - "Id": 909, "CommandName": "Move-PnpRecycleBinItem" }, { + "Id": 912, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", "Rank": 1, - "Id": 910, "CommandName": "Move-PnPTerm" }, { + "Id": 913, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Rank": 2, - "Id": 911, "CommandName": "Move-PnPTerm" }, { + "Id": 914, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Rank": 3, - "Id": 912, "CommandName": "Move-PnPTerm" }, { + "Id": 915, "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", "Rank": 1, - "Id": 913, "CommandName": "Move-PnPTermSet" }, { + "Id": 916, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Rank": 2, - "Id": 914, "CommandName": "Move-PnPTermSet" }, { + "Id": 917, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "Id": 915, "CommandName": "New-PnPAzureADGroup" }, { + "Id": 918, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Rank": 2, - "Id": 916, "CommandName": "New-PnPAzureADGroup" }, { + "Id": 919, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Rank": 3, - "Id": 917, "CommandName": "New-PnPAzureADGroup" }, { + "Id": 920, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Rank": 1, - "Id": 918, "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { + "Id": 921, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Rank": 2, - "Id": 919, "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { + "Id": 922, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Rank": 3, - "Id": 920, "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { + "Id": 923, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Rank": 1, - "Id": 921, "CommandName": "New-PnPAzureCertificate" }, { + "Id": 924, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Rank": 2, - "Id": 922, "CommandName": "New-PnPAzureCertificate" }, { + "Id": 925, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "Rank": 3, - "Id": 923, "CommandName": "New-PnPAzureCertificate" }, { + "Id": 926, "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, - "Id": 924, "CommandName": "New-PnPGraphSubscription" }, { + "Id": 927, "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", "Rank": 2, - "Id": 925, "CommandName": "New-PnPGraphSubscription" }, { + "Id": 928, "Command": "New-PnPGroup -Title \"My Site Users\"", "Rank": 1, - "Id": 926, "CommandName": "New-PnPGroup" }, { + "Id": 929, "Command": "New-PnPList -Title Announcements -Template Announcements", "Rank": 1, - "Id": 927, "CommandName": "New-PnPList" }, { + "Id": 930, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Rank": 2, - "Id": 928, "CommandName": "New-PnPList" }, { + "Id": 931, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Rank": 3, - "Id": 929, "CommandName": "New-PnPList" }, { + "Id": 932, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "Id": 930, "CommandName": "New-PnPMicrosoft365Group" }, { + "Id": 933, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "Rank": 2, - "Id": 931, "CommandName": "New-PnPMicrosoft365Group" }, { + "Id": 934, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Rank": 3, - "Id": 932, "CommandName": "New-PnPMicrosoft365Group" }, { + "Id": 935, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Rank": 4, - "Id": 933, "CommandName": "New-PnPMicrosoft365Group" }, { + "Id": 936, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 5, - "Id": 934, "CommandName": "New-PnPMicrosoft365Group" }, { + "Id": 937, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "Id": 935, "CommandName": "New-PnPMicrosoft365Group" }, { + "Id": 938, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "Rank": 7, - "Id": 936, "CommandName": "New-PnPMicrosoft365Group" }, { + "Id": 939, "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", "Rank": 1, - "Id": 937, "CommandName": "New-PnPMicrosoft365GroupSettings" }, { + "Id": 940, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Rank": 2, - "Id": 938, "CommandName": "New-PnPMicrosoft365GroupSettings" }, { + "Id": 941, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Rank": 1, - "Id": 939, "CommandName": "New-PnPPersonalSite" }, { + "Id": 942, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Rank": 1, - "Id": 940, "CommandName": "New-PnPPlannerPlan" }, { + "Id": 943, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Rank": 1, - "Id": 941, "CommandName": "New-PnPSdnProvider" }, { + "Id": 944, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 1, - "Id": 942, "CommandName": "New-PnPSite" }, { + "Id": 945, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "Rank": 2, - "Id": 943, "CommandName": "New-PnPSite" }, { + "Id": 946, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "Rank": 3, - "Id": 944, "CommandName": "New-PnPSite" }, { + "Id": 947, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 4, - "Id": 945, "CommandName": "New-PnPSite" }, { + "Id": 948, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 5, - "Id": 946, "CommandName": "New-PnPSite" }, { + "Id": 949, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 6, - "Id": 947, "CommandName": "New-PnPSite" }, { + "Id": 950, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Rank": 7, - "Id": 948, "CommandName": "New-PnPSite" }, { + "Id": 951, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Rank": 8, - "Id": 949, "CommandName": "New-PnPSite" }, { + "Id": 952, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Rank": 9, - "Id": 950, "CommandName": "New-PnPSite" }, { + "Id": 953, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Rank": 10, - "Id": 951, "CommandName": "New-PnPSite" }, { + "Id": 954, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 11, - "Id": 952, "CommandName": "New-PnPSite" }, { + "Id": 955, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "Rank": 12, - "Id": 953, "CommandName": "New-PnPSite" }, { + "Id": 956, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 13, - "Id": 954, "CommandName": "New-PnPSite" }, { + "Id": 957, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 14, - "Id": 955, "CommandName": "New-PnPSite" }, { + "Id": 958, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 15, - "Id": 956, "CommandName": "New-PnPSite" }, { + "Id": 959, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Rank": 16, - "Id": 957, "CommandName": "New-PnPSite" }, { + "Id": 960, "Command": "New-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 958, "CommandName": "New-PnPSiteCollectionTermStore" }, { + "Id": 961, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "Rank": 1, - "Id": 959, "CommandName": "New-PnPSiteGroup" }, { + "Id": 962, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Rank": 2, - "Id": 960, "CommandName": "New-PnPSiteGroup" }, { + "Id": 963, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Rank": 1, - "Id": 961, "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 964, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Rank": 2, - "Id": 962, "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 965, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Rank": 3, - "Id": 963, "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 966, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "Rank": 4, - "Id": 964, "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 967, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "Rank": 5, - "Id": 965, "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 968, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 6, - "Id": 966, "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 969, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Rank": 7, - "Id": 967, "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 970, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Rank": 8, - "Id": 968, "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 971, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Rank": 1, - "Id": 969, "CommandName": "New-PnPTeamsApp" }, { + "Id": 972, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Rank": 1, - "Id": 970, "CommandName": "New-PnPTeamsTeam" }, { + "Id": 973, "Command": "New-PnPTeamsTeam -GroupId $groupId", "Rank": 2, - "Id": 971, "CommandName": "New-PnPTeamsTeam" }, { + "Id": 974, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "Rank": 3, - "Id": 972, "CommandName": "New-PnPTeamsTeam" }, { + "Id": 975, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 4, - "Id": 973, "CommandName": "New-PnPTeamsTeam" }, { + "Id": 976, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", "Rank": 5, - "Id": 974, "CommandName": "New-PnPTeamsTeam" }, { + "Id": 977, "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, - "Id": 975, "CommandName": "New-PnPTeamsTeam" }, { + "Id": 978, "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", "Rank": 1, - "Id": 976, "CommandName": "New-PnPTenantSite" }, { + "Id": 979, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Rank": 2, - "Id": 977, "CommandName": "New-PnPTenantSite" }, { + "Id": 980, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Rank": 1, - "Id": 978, "CommandName": "New-PnPTerm" }, { + "Id": 981, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "Id": 979, "CommandName": "New-PnPTerm" }, { + "Id": 982, "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Rank": 1, - "Id": 980, "CommandName": "New-PnPTermGroup" }, { + "Id": 983, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Rank": 1, - "Id": 981, "CommandName": "New-PnPTermLabel" }, { + "Id": 984, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Rank": 1, - "Id": 982, "CommandName": "New-PnPTermSet" }, { + "Id": 985, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "Rank": 1, - "Id": 983, "CommandName": "New-PnPUPABulkImportJob" }, { + "Id": 986, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", "Rank": 2, - "Id": 984, "CommandName": "New-PnPUPABulkImportJob" }, { + "Id": 987, "Command": "New-PnPUser -LoginName user@company.com", "Rank": 1, - "Id": 985, "CommandName": "New-PnPUser" }, { + "Id": 988, "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Rank": 1, - "Id": 986, "CommandName": "New-PnPWeb" }, { + "Id": 989, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 1, - "Id": 987, "CommandName": "Publish-PnPApp" }, { + "Id": 990, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Rank": 2, - "Id": 988, "CommandName": "Publish-PnPApp" }, { + "Id": 991, "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, - "Id": 989, "CommandName": "Publish-PnPCompanyApp" }, { + "Id": 992, "Command": "Publish-PnPContentType -ContentType 0x0101", "Rank": 1, - "Id": 990, "CommandName": "Publish-PnPContentType" }, { + "Id": 993, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "Id": 991, "CommandName": "Publish-PnPSyntexModel" }, { + "Id": 994, "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, - "Id": 992, "CommandName": "Publish-PnPSyntexModel" }, { + "Id": 995, "Command": "Read-PnPSiteTemplate -Path template.pnp", "Rank": 1, - "Id": 993, "CommandName": "Read-PnPSiteTemplate" }, { + "Id": 996, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Rank": 2, - "Id": 994, "CommandName": "Read-PnPSiteTemplate" }, { + "Id": 997, "Command": "Read-PnPSiteTemplate -Xml $xml", "Rank": 3, - "Id": 995, "CommandName": "Read-PnPSiteTemplate" }, { + "Id": 998, "Command": "Read-PnPTenantTemplate -Path template.pnp", "Rank": 1, - "Id": 996, "CommandName": "Read-PnPTenantTemplate" }, { + "Id": 999, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Rank": 1, - "Id": 997, "CommandName": "Register-PnPAppCatalogSite" }, { + "Id": 1000, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", "Rank": 1, - "Id": 998, "CommandName": "Register-PnPAzureADApp" }, { + "Id": 1001, "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, - "Id": 999, "CommandName": "Register-PnPAzureADApp" }, { + "Id": 1002, "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, - "Id": 1000, "CommandName": "Register-PnPAzureADApp" }, { + "Id": 1003, "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, - "Id": 1001, "CommandName": "Register-PnPAzureADApp" }, { + "Id": 1004, "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Rank": 5, - "Id": 1002, "CommandName": "Register-PnPAzureADApp" }, { + "Id": 1005, "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Rank": 6, - "Id": 1003, "CommandName": "Register-PnPAzureADApp" }, { + "Id": 1006, "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, - "Id": 1004, "CommandName": "Register-PnPAzureADApp" }, { + "Id": 1007, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "Id": 1005, "CommandName": "Register-PnPHubSite" }, { + "Id": 1008, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Rank": 2, - "Id": 1006, "CommandName": "Register-PnPHubSite" }, { + "Id": 1009, "Command": "Register-PnPManagementShellAccess", "Rank": 1, - "Id": 1007, "CommandName": "Register-PnPManagementShellAccess" }, { + "Id": 1010, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Rank": 2, - "Id": 1008, "CommandName": "Register-PnPManagementShellAccess" }, { + "Id": 1011, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Rank": 3, - "Id": 1009, "CommandName": "Register-PnPManagementShellAccess" }, { + "Id": 1012, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Rank": 1, - "Id": 1010, "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { + "Id": 1013, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Rank": 2, - "Id": 1011, "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { + "Id": 1014, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Rank": 1, - "Id": 1012, "CommandName": "Remove-PnPAlert" }, { + "Id": 1015, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 2, - "Id": 1013, "CommandName": "Remove-PnPAlert" }, { + "Id": 1016, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 1014, "CommandName": "Remove-PnPApp" }, { + "Id": 1017, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 1015, "CommandName": "Remove-PnPApp" }, { + "Id": 1018, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "Id": 1016, "CommandName": "Remove-PnPApplicationCustomizer" }, { + "Id": 1019, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "Id": 1017, "CommandName": "Remove-PnPApplicationCustomizer" }, { + "Id": 1020, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Rank": 1, - "Id": 1018, "CommandName": "Remove-PnPAvailableSiteClassification" }, { + "Id": 1021, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 2, - "Id": 1019, "CommandName": "Remove-PnPAvailableSiteClassification" }, { + "Id": 1022, "Command": "Remove-PnPAzureADApp -Identity MyApp", "Rank": 1, - "Id": 1020, "CommandName": "Remove-PnPAzureADApp" }, { + "Id": 1023, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 2, - "Id": 1021, "CommandName": "Remove-PnPAzureADApp" }, { + "Id": 1024, "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Rank": 1, - "Id": 1022, "CommandName": "Remove-PnPAzureADGroup" }, { + "Id": 1025, "Command": "Remove-PnPAzureADGroup -Identity $group", "Rank": 2, - "Id": 1023, "CommandName": "Remove-PnPAzureADGroup" }, { + "Id": 1026, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1024, "CommandName": "Remove-PnPAzureADGroupMember" }, { + "Id": 1027, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1025, "CommandName": "Remove-PnPAzureADGroupOwner" }, { + "Id": 1028, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Rank": 1, - "Id": 1026, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { + "Id": 1029, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Rank": 2, - "Id": 1027, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { + "Id": 1030, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 3, - "Id": 1028, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { + "Id": 1031, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 4, - "Id": 1029, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { + "Id": 1032, "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Rank": 1, - "Id": 1030, "CommandName": "Remove-PnPContentType" }, { + "Id": 1033, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Rank": 2, - "Id": 1031, "CommandName": "Remove-PnPContentType" }, { + "Id": 1034, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "Id": 1032, "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { + "Id": 1035, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "Id": 1033, "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { + "Id": 1036, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Rank": 1, - "Id": 1034, "CommandName": "Remove-PnPContentTypeFromList" }, { + "Id": 1037, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "Id": 1035, "CommandName": "Remove-PnPCustomAction" }, { + "Id": 1038, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "Id": 1036, "CommandName": "Remove-PnPCustomAction" }, { + "Id": 1039, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Rank": 3, - "Id": 1037, "CommandName": "Remove-PnPCustomAction" }, { + "Id": 1040, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "Id": 1038, "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { + "Id": 1041, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 1, - "Id": 1039, "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1042, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "Id": 1040, "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1043, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Rank": 3, - "Id": 1041, "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1044, "Command": "Remove-PnPEventReceiver -List ProjectList", "Rank": 4, - "Id": 1042, "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1045, "Command": "Remove-PnPEventReceiver", "Rank": 5, - "Id": 1043, "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1046, "Command": "Remove-PnPEventReceiver -Scope Site", "Rank": 6, - "Id": 1044, "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1047, "Command": "Remove-PnPEventReceiver -Scope Web", "Rank": 7, - "Id": 1045, "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1048, "Command": "Remove-PnPEventReceiver -Scope All", "Rank": 8, - "Id": 1046, "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1049, "Command": "Remove-PnPField -Identity \"Speakers\"", "Rank": 1, - "Id": 1047, "CommandName": "Remove-PnPField" }, { + "Id": 1050, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "Id": 1048, "CommandName": "Remove-PnPField" }, { + "Id": 1051, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "Id": 1049, "CommandName": "Remove-PnPFieldFromContentType" }, { + "Id": 1052, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Rank": 2, - "Id": 1050, "CommandName": "Remove-PnPFieldFromContentType" }, { + "Id": 1053, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Rank": 1, - "Id": 1051, "CommandName": "Remove-PnPFile" }, { + "Id": 1054, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Rank": 2, - "Id": 1052, "CommandName": "Remove-PnPFile" }, { + "Id": 1055, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Rank": 3, - "Id": 1053, "CommandName": "Remove-PnPFile" }, { + "Id": 1056, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Rank": 1, - "Id": 1054, "CommandName": "Remove-PnPFileFromSiteTemplate" }, { + "Id": 1057, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "Id": 1055, "CommandName": "Remove-PnPFileSharingLink" }, { + "Id": 1058, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Rank": 2, - "Id": 1056, "CommandName": "Remove-PnPFileSharingLink" }, { + "Id": 1059, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "Id": 1057, "CommandName": "Remove-PnPFileVersion" }, { + "Id": 1060, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 2, - "Id": 1058, "CommandName": "Remove-PnPFileVersion" }, { + "Id": 1061, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Rank": 3, - "Id": 1059, "CommandName": "Remove-PnPFileVersion" }, { + "Id": 1062, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "Rank": 1, - "Id": 1060, "CommandName": "Remove-PnPFlowOwner" }, { + "Id": 1063, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "Rank": 2, - "Id": 1061, "CommandName": "Remove-PnPFlowOwner" }, { + "Id": 1064, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "Rank": 3, - "Id": 1062, "CommandName": "Remove-PnPFlowOwner" }, { + "Id": 1065, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "Rank": 4, - "Id": 1063, "CommandName": "Remove-PnPFlowOwner" }, { + "Id": 1066, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "Id": 1064, "CommandName": "Remove-PnPFolder" }, { + "Id": 1067, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Rank": 2, - "Id": 1065, "CommandName": "Remove-PnPFolder" }, { + "Id": 1068, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "Id": 1066, "CommandName": "Remove-PnPFolderSharingLink" }, { + "Id": 1069, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Rank": 2, - "Id": 1067, "CommandName": "Remove-PnPFolderSharingLink" }, { + "Id": 1070, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Rank": 1, - "Id": 1068, "CommandName": "Remove-PnPGraphSubscription" }, { + "Id": 1071, "Command": "Remove-PnPGroup -Identity \"My Users\"", "Rank": 1, - "Id": 1069, "CommandName": "Remove-PnPGroup" }, { + "Id": 1072, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "Id": 1070, "CommandName": "Remove-PnPGroupMember" }, { + "Id": 1073, "Command": "Remove-PnPHomeSite", "Rank": 1, - "Id": 1071, "CommandName": "Remove-PnPHomeSite" }, { + "Id": 1074, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "Id": 1072, "CommandName": "Remove-PnPHubSiteAssociation" }, { + "Id": 1075, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Rank": 1, - "Id": 1073, "CommandName": "Remove-PnPHubToHubAssociation" }, { + "Id": 1076, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Rank": 2, - "Id": 1074, "CommandName": "Remove-PnPHubToHubAssociation" }, { + "Id": 1077, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Rank": 1, - "Id": 1075, "CommandName": "Remove-PnPIndexedProperty" }, { + "Id": 1078, "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Rank": 1, - "Id": 1076, "CommandName": "Remove-PnPJavaScriptLink" }, { + "Id": 1079, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Rank": 2, - "Id": 1077, "CommandName": "Remove-PnPJavaScriptLink" }, { + "Id": 1080, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Rank": 3, - "Id": 1078, "CommandName": "Remove-PnPJavaScriptLink" }, { + "Id": 1081, "Command": "Remove-PnPJavaScriptLink -Scope Site", "Rank": 4, - "Id": 1079, "CommandName": "Remove-PnPJavaScriptLink" }, { + "Id": 1082, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Rank": 5, - "Id": 1080, "CommandName": "Remove-PnPJavaScriptLink" }, { + "Id": 1083, "Command": "Remove-PnPKnowledgeHubSite", "Rank": 1, - "Id": 1081, "CommandName": "Remove-PnPKnowledgeHubSite" }, { + "Id": 1084, "Command": "Remove-PnPList -Identity Announcements", "Rank": 1, - "Id": 1082, "CommandName": "Remove-PnPList" }, { + "Id": 1085, "Command": "Remove-PnPList -Identity Announcements -Force", "Rank": 2, - "Id": 1083, "CommandName": "Remove-PnPList" }, { + "Id": 1086, "Command": "Remove-PnPList -Identity Announcements -Recycle", "Rank": 3, - "Id": 1084, "CommandName": "Remove-PnPList" }, { + "Id": 1087, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Rank": 4, - "Id": 1085, "CommandName": "Remove-PnPList" }, { + "Id": 1088, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 1086, "CommandName": "Remove-PnPListDesign" }, { + "Id": 1089, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "Id": 1087, "CommandName": "Remove-PnPListItem" }, { + "Id": 1090, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Rank": 2, - "Id": 1088, "CommandName": "Remove-PnPListItem" }, { + "Id": 1091, "Command": "Remove-PnPListItem -List \"Demo List\"", "Rank": 3, - "Id": 1089, "CommandName": "Remove-PnPListItem" }, { + "Id": 1092, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Rank": 1, - "Id": 1090, "CommandName": "Remove-PnPListItemAttachment" }, { + "Id": 1093, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "Rank": 2, - "Id": 1091, "CommandName": "Remove-PnPListItemAttachment" }, { + "Id": 1094, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Rank": 3, - "Id": 1092, "CommandName": "Remove-PnPListItemAttachment" }, { + "Id": 1095, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Rank": 4, - "Id": 1093, "CommandName": "Remove-PnPListItemAttachment" }, { + "Id": 1096, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Rank": 5, - "Id": 1094, "CommandName": "Remove-PnPListItemAttachment" }, { + "Id": 1097, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "Id": 1095, "CommandName": "Remove-PnPListItemVersion" }, { + "Id": 1098, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "Id": 1096, "CommandName": "Remove-PnPListItemVersion" }, { + "Id": 1099, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Rank": 1, - "Id": 1097, "CommandName": "Remove-PnPMicrosoft365Group" }, { + "Id": 1100, "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Rank": 2, - "Id": 1098, "CommandName": "Remove-PnPMicrosoft365Group" }, { + "Id": 1101, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1099, "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { + "Id": 1102, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1100, "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { + "Id": 1103, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Rank": 1, - "Id": 1101, "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { + "Id": 1104, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Rank": 2, - "Id": 1102, "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { + "Id": 1105, "Command": "Remove-PnPNavigationNode -Identity 1032", "Rank": 1, - "Id": 1103, "CommandName": "Remove-PnPNavigationNode" }, { + "Id": 1106, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Rank": 2, - "Id": 1104, "CommandName": "Remove-PnPNavigationNode" }, { + "Id": 1107, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Rank": 3, - "Id": 1105, "CommandName": "Remove-PnPNavigationNode" }, { + "Id": 1108, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Rank": 1, - "Id": 1106, "CommandName": "Remove-PnPOrgAssetsLibrary" }, { + "Id": 1109, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Rank": 2, - "Id": 1107, "CommandName": "Remove-PnPOrgAssetsLibrary" }, { + "Id": 1110, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Rank": 3, - "Id": 1108, "CommandName": "Remove-PnPOrgAssetsLibrary" }, { + "Id": 1111, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "Id": 1109, "CommandName": "Remove-PnPOrgNewsSite" }, { + "Id": 1112, "Command": "Remove-PnPPage -Identity \"MyPage\"", "Rank": 1, - "Id": 1110, "CommandName": "Remove-PnPPage" }, { + "Id": 1113, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Rank": 2, - "Id": 1111, "CommandName": "Remove-PnPPage" }, { + "Id": 1114, "Command": "Remove-PnPPage $page", "Rank": 3, - "Id": 1112, "CommandName": "Remove-PnPPage" }, { + "Id": 1115, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Rank": 4, - "Id": 1113, "CommandName": "Remove-PnPPage" }, { + "Id": 1116, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "Id": 1114, "CommandName": "Remove-PnPPageComponent" }, { + "Id": 1117, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Rank": 1, - "Id": 1115, "CommandName": "Remove-PnPPlannerBucket" }, { + "Id": 1118, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Rank": 1, - "Id": 1116, "CommandName": "Remove-PnPPlannerPlan" }, { + "Id": 1119, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "Id": 1117, "CommandName": "Remove-PnPPlannerRoster" }, { + "Id": 1120, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1118, "CommandName": "Remove-PnPPlannerRosterMember" }, { + "Id": 1121, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Rank": 1, - "Id": 1119, "CommandName": "Remove-PnPPlannerTask" }, { + "Id": 1122, "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Rank": 1, - "Id": 1120, "CommandName": "Remove-PnPPropertyBagValue" }, { + "Id": 1123, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Rank": 2, - "Id": 1121, "CommandName": "Remove-PnPPropertyBagValue" }, { + "Id": 1124, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Rank": 3, - "Id": 1122, "CommandName": "Remove-PnPPropertyBagValue" }, { + "Id": 1125, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "Id": 1123, "CommandName": "Remove-PnPPublishingImageRendition" }, { + "Id": 1126, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Rank": 1, - "Id": 1124, "CommandName": "Remove-PnPRoleDefinition" }, { + "Id": 1127, "Command": "Remove-PnPSdnProvider -Confirm:false", "Rank": 1, - "Id": 1125, "CommandName": "Remove-PnPSdnProvider" }, { + "Id": 1128, "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "Id": 1126, "CommandName": "Remove-PnPSearchConfiguration" }, { + "Id": 1129, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "Id": 1127, "CommandName": "Remove-PnPSearchConfiguration" }, { + "Id": 1130, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "Id": 1128, "CommandName": "Remove-PnPSearchConfiguration" }, { + "Id": 1131, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "Id": 1129, "CommandName": "Remove-PnPSearchConfiguration" }, { + "Id": 1132, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1130, "CommandName": "Remove-PnPSiteCollectionAdmin" }, { + "Id": 1133, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "Id": 1131, "CommandName": "Remove-PnPSiteCollectionAdmin" }, { + "Id": 1134, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 1, - "Id": 1132, "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { + "Id": 1135, "Command": "Remove-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 1133, "CommandName": "Remove-PnPSiteCollectionTermStore" }, { + "Id": 1136, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 1134, "CommandName": "Remove-PnPSiteDesign" }, { + "Id": 1137, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 1135, "CommandName": "Remove-PnPSiteDesignTask" }, { + "Id": 1138, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "Id": 1136, "CommandName": "Remove-PnPSiteGroup" }, { + "Id": 1139, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Rank": 2, - "Id": 1137, "CommandName": "Remove-PnPSiteGroup" }, { + "Id": 1140, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 1138, "CommandName": "Remove-PnPSiteScript" }, { + "Id": 1141, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "Id": 1139, "CommandName": "Remove-PnPSiteUserInvitations" }, { + "Id": 1142, "Command": "Remove-PnPStorageEntity -Key MyKey", "Rank": 1, - "Id": 1140, "CommandName": "Remove-PnPStorageEntity" }, { + "Id": 1143, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 2, - "Id": 1141, "CommandName": "Remove-PnPStorageEntity" }, { + "Id": 1144, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Rank": 1, - "Id": 1142, "CommandName": "Remove-PnPStoredCredential" }, { + "Id": 1145, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Rank": 1, - "Id": 1143, "CommandName": "Remove-PnPTaxonomyItem" }, { + "Id": 1146, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Rank": 2, - "Id": 1144, "CommandName": "Remove-PnPTaxonomyItem" }, { + "Id": 1147, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Rank": 1, - "Id": 1145, "CommandName": "Remove-PnPTeamsApp" }, { + "Id": 1148, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Rank": 2, - "Id": 1146, "CommandName": "Remove-PnPTeamsApp" }, { + "Id": 1149, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Rank": 1, - "Id": 1147, "CommandName": "Remove-PnPTeamsChannel" }, { + "Id": 1150, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Rank": 1, - "Id": 1148, "CommandName": "Remove-PnPTeamsChannelUser" }, { + "Id": 1151, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 2, - "Id": 1149, "CommandName": "Remove-PnPTeamsChannelUser" }, { + "Id": 1152, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Rank": 3, - "Id": 1150, "CommandName": "Remove-PnPTeamsChannelUser" }, { + "Id": 1153, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "Rank": 1, - "Id": 1151, "CommandName": "Remove-PnPTeamsTab" }, { + "Id": 1154, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "Rank": 2, - "Id": 1152, "CommandName": "Remove-PnPTeamsTab" }, { + "Id": 1155, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", "Rank": 3, - "Id": 1153, "CommandName": "Remove-PnPTeamsTab" }, { + "Id": 1156, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 1, - "Id": 1154, "CommandName": "Remove-PnPTeamsTag" }, { + "Id": 1157, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "Id": 1155, "CommandName": "Remove-PnPTeamsTeam" }, { + "Id": 1158, "Command": "Remove-PnPTeamsTeam -Identity testteam", "Rank": 2, - "Id": 1156, "CommandName": "Remove-PnPTeamsTeam" }, { + "Id": 1159, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Rank": 1, - "Id": 1157, "CommandName": "Remove-PnPTeamsUser" }, { + "Id": 1160, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 2, - "Id": 1158, "CommandName": "Remove-PnPTeamsUser" }, { + "Id": 1161, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "Id": 1159, "CommandName": "Remove-PnPTenantCdnOrigin" }, { + "Id": 1162, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 1160, "CommandName": "Remove-PnPTenantDeletedSite" }, { + "Id": 1163, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "Id": 1161, "CommandName": "Remove-PnPTenantDeletedSite" }, { + "Id": 1164, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 1162, "CommandName": "Remove-PnPTenantSite" }, { + "Id": 1165, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Rank": 2, - "Id": 1163, "CommandName": "Remove-PnPTenantSite" }, { + "Id": 1166, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Rank": 3, - "Id": 1164, "CommandName": "Remove-PnPTenantSite" }, { + "Id": 1167, "Command": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, - "Id": 1165, "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { + "Id": 1168, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 1, - "Id": 1166, "CommandName": "Remove-PnPTenantTheme" }, { + "Id": 1169, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "Id": 1167, "CommandName": "Remove-PnPTerm" }, { + "Id": 1170, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "Id": 1168, "CommandName": "Remove-PnPTerm" }, { + "Id": 1171, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "Id": 1169, "CommandName": "Remove-PnPTermGroup" }, { + "Id": 1172, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Rank": 2, - "Id": 1170, "CommandName": "Remove-PnPTermGroup" }, { + "Id": 1173, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Rank": 3, - "Id": 1171, "CommandName": "Remove-PnPTermGroup" }, { + "Id": 1174, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "Rank": 1, - "Id": 1172, "CommandName": "Remove-PnPTermLabel" }, { + "Id": 1175, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "Id": 1173, "CommandName": "Remove-PnPTermLabel" }, { + "Id": 1176, "Command": "Remove-PnPUser -Identity 23", "Rank": 1, - "Id": 1174, "CommandName": "Remove-PnPUser" }, { + "Id": 1177, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "Rank": 2, - "Id": 1175, "CommandName": "Remove-PnPUser" }, { + "Id": 1178, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Rank": 3, - "Id": 1176, "CommandName": "Remove-PnPUser" }, { + "Id": 1179, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "Id": 1177, "CommandName": "Remove-PnPUserInfo" }, { + "Id": 1180, "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "Id": 1178, "CommandName": "Remove-PnPUserProfile" }, { + "Id": 1181, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Rank": 1, - "Id": 1179, "CommandName": "Remove-PnPView" }, { + "Id": 1182, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 1, - "Id": 1180, "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { + "Id": 1183, "Command": "Remove-PnPWeb -Identity projectA", "Rank": 1, - "Id": 1181, "CommandName": "Remove-PnPWeb" }, { + "Id": 1184, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Rank": 2, - "Id": 1182, "CommandName": "Remove-PnPWeb" }, { + "Id": 1185, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Rank": 1, - "Id": 1183, "CommandName": "Remove-PnPWebhookSubscription" }, { + "Id": 1186, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "Id": 1184, "CommandName": "Remove-PnPWebPart" }, { + "Id": 1187, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Rank": 2, - "Id": 1185, "CommandName": "Remove-PnPWebPart" }, { + "Id": 1188, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Rank": 1, - "Id": 1186, "CommandName": "Remove-PnPWikiPage" }, { + "Id": 1189, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Rank": 1, - "Id": 1187, "CommandName": "Rename-PnPFile" }, { + "Id": 1190, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Rank": 2, - "Id": 1188, "CommandName": "Rename-PnPFile" }, { + "Id": 1191, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Rank": 3, - "Id": 1189, "CommandName": "Rename-PnPFile" }, { + "Id": 1192, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Rank": 1, - "Id": 1190, "CommandName": "Rename-PnPFolder" }, { + "Id": 1193, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "Id": 1191, "CommandName": "Repair-PnPSite" }, { + "Id": 1194, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "Id": 1192, "CommandName": "Repair-PnPSite" }, { + "Id": 1195, "Command": "Request-PnPAccessToken", "Rank": 1, - "Id": 1193, "CommandName": "Request-PnPAccessToken" }, { + "Id": 1196, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Rank": 2, - "Id": 1194, "CommandName": "Request-PnPAccessToken" }, { + "Id": 1197, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "Rank": 3, - "Id": 1195, "CommandName": "Request-PnPAccessToken" }, { + "Id": 1198, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Rank": 4, - "Id": 1196, "CommandName": "Request-PnPAccessToken" }, { + "Id": 1199, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Rank": 1, - "Id": 1197, "CommandName": "Request-PnPPersonalSite" }, { + "Id": 1200, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Rank": 2, - "Id": 1198, "CommandName": "Request-PnPPersonalSite" }, { + "Id": 1201, "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Rank": 1, - "Id": 1199, "CommandName": "Request-PnPReIndexList" }, { + "Id": 1202, "Command": "Request-PnPReIndexWeb", "Rank": 1, - "Id": 1200, "CommandName": "Request-PnPReIndexWeb" }, { + "Id": 1203, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Rank": 1, - "Id": 1201, "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { + "Id": 1204, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Rank": 2, - "Id": 1202, "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { + "Id": 1205, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Rank": 3, - "Id": 1203, "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { + "Id": 1206, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Rank": 1, - "Id": 1204, "CommandName": "Reset-PnPFileVersion" }, { + "Id": 1207, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Rank": 2, - "Id": 1205, "CommandName": "Reset-PnPFileVersion" }, { + "Id": 1208, "Command": "Reset-PnPLabel -List \"Demo List\"", "Rank": 1, - "Id": 1206, "CommandName": "Reset-PnPLabel" }, { + "Id": 1209, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Rank": 2, - "Id": 1207, "CommandName": "Reset-PnPLabel" }, { + "Id": 1210, "Command": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, - "Id": 1208, "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { + "Id": 1211, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Rank": 1, - "Id": 1209, "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { + "Id": 1212, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Rank": 1, - "Id": 1210, "CommandName": "Resolve-PnPFolder" }, { + "Id": 1213, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "Id": 1211, "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { + "Id": 1214, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "Id": 1212, "CommandName": "Restore-PnPFileVersion" }, { + "Id": 1215, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Rank": 2, - "Id": 1213, "CommandName": "Restore-PnPFileVersion" }, { + "Id": 1216, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 3, - "Id": 1214, "CommandName": "Restore-PnPFileVersion" }, { + "Id": 1217, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "Id": 1215, "CommandName": "Restore-PnPListItemVersion" }, { + "Id": 1218, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "Id": 1216, "CommandName": "Restore-PnPListItemVersion" }, { + "Id": 1219, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "Id": 1217, "CommandName": "Restore-PnPRecycleBinItem" }, { + "Id": 1220, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 1218, "CommandName": "Restore-PnPTenantRecycleBinItem" }, { + "Id": 1221, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "Id": 1219, "CommandName": "Restore-PnPTenantRecycleBinItem" }, { + "Id": 1222, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 1220, "CommandName": "Restore-PnPTenantSite" }, { + "Id": 1223, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "Id": 1221, "CommandName": "Restore-PnPTenantSite" }, { + "Id": 1224, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Rank": 3, - "Id": 1222, "CommandName": "Restore-PnPTenantSite" }, { + "Id": 1225, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Rank": 1, - "Id": 1223, "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { + "Id": 1226, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "Id": 1224, "CommandName": "Revoke-PnPHubSiteRights" }, { + "Id": 1227, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "Id": 1225, "CommandName": "Revoke-PnPSiteDesignRights" }, { + "Id": 1228, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "Id": 1226, "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { + "Id": 1229, "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Rank": 1, - "Id": 1227, "CommandName": "Revoke-PnPUserSession" }, { + "Id": 1230, "Command": "Save-PnPPageConversionLog", "Rank": 1, - "Id": 1228, "CommandName": "Save-PnPPageConversionLog" }, { + "Id": 1231, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Rank": 1, - "Id": 1229, "CommandName": "Save-PnPSiteTemplate" }, { + "Id": 1232, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Rank": 1, - "Id": 1230, "CommandName": "Save-PnPTenantTemplate" }, { + "Id": 1233, "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Rank": 1, - "Id": 1231, "CommandName": "Send-PnPMail" }, { + "Id": 1234, "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, - "Id": 1232, "CommandName": "Send-PnPMail" }, { + "Id": 1235, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Rank": 3, - "Id": 1233, "CommandName": "Send-PnPMail" }, { + "Id": 1236, "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, - "Id": 1234, "CommandName": "Send-PnPMail" }, { + "Id": 1237, "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, - "Id": 1235, "CommandName": "Send-PnPMail" }, { + "Id": 1238, "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, - "Id": 1236, "CommandName": "Send-PnPMail" }, { + "Id": 1239, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Rank": 1, - "Id": 1237, "CommandName": "Set-PnPAdaptiveScopeProperty" }, { + "Id": 1240, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "Id": 1238, "CommandName": "Set-PnPApplicationCustomizer" }, { + "Id": 1241, "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", "Rank": 2, - "Id": 1239, "CommandName": "Set-PnPApplicationCustomizer" }, { + "Id": 1242, "Command": "Set-PnPAppSideLoading -On", "Rank": 1, - "Id": 1240, "CommandName": "Set-PnPAppSideLoading" }, { + "Id": 1243, "Command": "Set-PnPAppSideLoading -Off", "Rank": 2, - "Id": 1241, "CommandName": "Set-PnPAppSideLoading" }, { + "Id": 1244, "Command": "Set-PnPAuditing -EnableAll", "Rank": 1, - "Id": 1242, "CommandName": "Set-PnPAuditing" }, { + "Id": 1245, "Command": "Set-PnPAuditing -DisableAll", "Rank": 2, - "Id": 1243, "CommandName": "Set-PnPAuditing" }, { + "Id": 1246, "Command": "Set-PnPAuditing -RetentionTime 7", "Rank": 3, - "Id": 1244, "CommandName": "Set-PnPAuditing" }, { + "Id": 1247, "Command": "Set-PnPAuditing -TrimAuditLog", "Rank": 4, - "Id": 1245, "CommandName": "Set-PnPAuditing" }, { + "Id": 1248, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Rank": 5, - "Id": 1246, "CommandName": "Set-PnPAuditing" }, { + "Id": 1249, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Rank": 1, - "Id": 1247, "CommandName": "Set-PnPAvailablePageLayouts" }, { + "Id": 1250, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Rank": 1, - "Id": 1248, "CommandName": "Set-PnPAzureADAppSitePermission" }, { + "Id": 1251, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Rank": 2, - "Id": 1249, "CommandName": "Set-PnPAzureADAppSitePermission" }, { + "Id": 1252, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "Id": 1250, "CommandName": "Set-PnPAzureADGroup" }, { + "Id": 1253, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "Id": 1251, "CommandName": "Set-PnPAzureADGroup" }, { + "Id": 1254, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Rank": 3, - "Id": 1252, "CommandName": "Set-PnPAzureADGroup" }, { + "Id": 1255, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Rank": 1, - "Id": 1253, "CommandName": "Set-PnPBrowserIdleSignout" }, { + "Id": 1256, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Rank": 2, - "Id": 1254, "CommandName": "Set-PnPBrowserIdleSignout" }, { + "Id": 1257, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Rank": 3, - "Id": 1255, "CommandName": "Set-PnPBrowserIdleSignout" }, { + "Id": 1258, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Rank": 1, - "Id": 1256, "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { + "Id": 1259, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Rank": 2, - "Id": 1257, "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { + "Id": 1260, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Rank": 1, - "Id": 1258, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { + "Id": 1261, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Rank": 2, - "Id": 1259, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { + "Id": 1262, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Rank": 3, - "Id": 1260, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { + "Id": 1263, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Rank": 4, - "Id": 1261, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { + "Id": 1264, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 1, - "Id": 1262, "CommandName": "Set-PnPContentType" }, { + "Id": 1265, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Rank": 2, - "Id": 1263, "CommandName": "Set-PnPContentType" }, { + "Id": 1266, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 3, - "Id": 1264, "CommandName": "Set-PnPContentType" }, { + "Id": 1267, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 4, - "Id": 1265, "CommandName": "Set-PnPContentType" }, { + "Id": 1268, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 5, - "Id": 1266, "CommandName": "Set-PnPContentType" }, { + "Id": 1269, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Rank": 1, - "Id": 1267, "CommandName": "Set-PnPDefaultColumnValues" }, { + "Id": 1270, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Rank": 2, - "Id": 1268, "CommandName": "Set-PnPDefaultColumnValues" }, { + "Id": 1271, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Rank": 3, - "Id": 1269, "CommandName": "Set-PnPDefaultColumnValues" }, { + "Id": 1272, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Rank": 4, - "Id": 1270, "CommandName": "Set-PnPDefaultColumnValues" }, { + "Id": 1273, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Rank": 1, - "Id": 1271, "CommandName": "Set-PnPDefaultContentTypeToList" }, { + "Id": 1274, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Rank": 1, - "Id": 1272, "CommandName": "Set-PnPDefaultPageLayout" }, { + "Id": 1275, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Rank": 2, - "Id": 1273, "CommandName": "Set-PnPDefaultPageLayout" }, { + "Id": 1276, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Rank": 3, - "Id": 1274, "CommandName": "Set-PnPDefaultPageLayout" }, { + "Id": 1277, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Rank": 1, - "Id": 1275, "CommandName": "Set-PnPDisableSpacesActivation" }, { + "Id": 1278, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 2, - "Id": 1276, "CommandName": "Set-PnPDisableSpacesActivation" }, { + "Id": 1279, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 3, - "Id": 1277, "CommandName": "Set-PnPDisableSpacesActivation" }, { + "Id": 1280, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Rank": 1, - "Id": 1278, "CommandName": "Set-PnPDocumentSetField" }, { + "Id": 1281, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Rank": 2, - "Id": 1279, "CommandName": "Set-PnPDocumentSetField" }, { + "Id": 1282, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "Rank": 1, - "Id": 1280, "CommandName": "Set-PnPField" }, { + "Id": 1283, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Rank": 2, - "Id": 1281, "CommandName": "Set-PnPField" }, { + "Id": 1284, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Rank": 3, - "Id": 1282, "CommandName": "Set-PnPField" }, { + "Id": 1285, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Rank": 1, - "Id": 1283, "CommandName": "Set-PnPFileCheckedIn" }, { + "Id": 1286, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Rank": 2, - "Id": 1284, "CommandName": "Set-PnPFileCheckedIn" }, { + "Id": 1287, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Rank": 1, - "Id": 1285, "CommandName": "Set-PnPFileCheckedOut" }, { + "Id": 1288, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "Id": 1286, "CommandName": "Set-PnPFolderPermission" }, { + "Id": 1289, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "Id": 1287, "CommandName": "Set-PnPFolderPermission" }, { + "Id": 1290, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "Id": 1288, "CommandName": "Set-PnPFolderPermission" }, { + "Id": 1291, "Command": "Set-PnPFooter -Enabled:$true", "Rank": 1, - "Id": 1289, "CommandName": "Set-PnPFooter" }, { + "Id": 1292, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Rank": 2, - "Id": 1290, "CommandName": "Set-PnPFooter" }, { + "Id": 1293, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Rank": 3, - "Id": 1291, "CommandName": "Set-PnPFooter" }, { + "Id": 1294, "Command": "Set-PnPFooter -LogoUrl \"\"", "Rank": 4, - "Id": 1292, "CommandName": "Set-PnPFooter" }, { + "Id": 1295, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Rank": 1, - "Id": 1293, "CommandName": "Set-PnPGraphSubscription" }, { + "Id": 1296, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Rank": 1, - "Id": 1294, "CommandName": "Set-PnPGroup" }, { + "Id": 1297, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Rank": 2, - "Id": 1295, "CommandName": "Set-PnPGroup" }, { + "Id": 1298, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Rank": 1, - "Id": 1296, "CommandName": "Set-PnPGroupPermissions" }, { + "Id": 1299, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Rank": 2, - "Id": 1297, "CommandName": "Set-PnPGroupPermissions" }, { + "Id": 1300, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Rank": 3, - "Id": 1298, "CommandName": "Set-PnPGroupPermissions" }, { + "Id": 1301, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Rank": 4, - "Id": 1299, "CommandName": "Set-PnPGroupPermissions" }, { + "Id": 1302, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Rank": 5, - "Id": 1300, "CommandName": "Set-PnPGroupPermissions" }, { + "Id": 1303, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Rank": 1, - "Id": 1301, "CommandName": "Set-PnPHideDefaultThemes" }, { + "Id": 1304, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Rank": 2, - "Id": 1302, "CommandName": "Set-PnPHideDefaultThemes" }, { + "Id": 1305, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Rank": 1, - "Id": 1303, "CommandName": "Set-PnPHomePage" }, { + "Id": 1306, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Rank": 2, - "Id": 1304, "CommandName": "Set-PnPHomePage" }, { + "Id": 1307, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Rank": 1, - "Id": 1305, "CommandName": "Set-PnPHomeSite" }, { + "Id": 1308, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Rank": 2, - "Id": 1306, "CommandName": "Set-PnPHomeSite" }, { + "Id": 1309, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "Rank": 1, - "Id": 1307, "CommandName": "Set-PnPHubSite" }, { + "Id": 1310, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "Rank": 2, - "Id": 1308, "CommandName": "Set-PnPHubSite" }, { + "Id": 1311, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "Rank": 3, - "Id": 1309, "CommandName": "Set-PnPHubSite" }, { + "Id": 1312, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "Rank": 4, - "Id": 1310, "CommandName": "Set-PnPHubSite" }, { + "Id": 1313, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Rank": 5, - "Id": 1311, "CommandName": "Set-PnPHubSite" }, { + "Id": 1314, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Rank": 6, - "Id": 1312, "CommandName": "Set-PnPHubSite" }, { + "Id": 1315, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Rank": 1, - "Id": 1313, "CommandName": "Set-PnPImageListItemColumn" }, { + "Id": 1316, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Rank": 2, - "Id": 1314, "CommandName": "Set-PnPImageListItemColumn" }, { + "Id": 1317, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Rank": 1, - "Id": 1315, "CommandName": "Set-PnPIndexedProperties" }, { + "Id": 1318, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Rank": 1, - "Id": 1316, "CommandName": "Set-PnPInPlaceRecordsManagement" }, { + "Id": 1319, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Rank": 2, - "Id": 1317, "CommandName": "Set-PnPInPlaceRecordsManagement" }, { + "Id": 1320, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Rank": 1, - "Id": 1318, "CommandName": "Set-PnPKnowledgeHubSite" }, { + "Id": 1321, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Rank": 1, - "Id": 1319, "CommandName": "Set-PnPLabel" }, { + "Id": 1322, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Rank": 2, - "Id": 1320, "CommandName": "Set-PnPLabel" }, { + "Id": 1323, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Rank": 1, - "Id": 1321, "CommandName": "Set-PnPList" }, { + "Id": 1324, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Rank": 2, - "Id": 1322, "CommandName": "Set-PnPList" }, { + "Id": 1325, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Rank": 3, - "Id": 1323, "CommandName": "Set-PnPList" }, { + "Id": 1326, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Rank": 4, - "Id": 1324, "CommandName": "Set-PnPList" }, { + "Id": 1327, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Rank": 5, - "Id": 1325, "CommandName": "Set-PnPList" }, { + "Id": 1328, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Rank": 6, - "Id": 1326, "CommandName": "Set-PnPList" }, { + "Id": 1329, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Rank": 7, - "Id": 1327, "CommandName": "Set-PnPList" }, { + "Id": 1330, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "Rank": 8, - "Id": 1328, "CommandName": "Set-PnPList" }, { + "Id": 1331, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "Rank": 9, - "Id": 1329, "CommandName": "Set-PnPList" }, { + "Id": 1332, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "Rank": 10, - "Id": 1330, "CommandName": "Set-PnPList" }, { + "Id": 1333, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "Rank": 11, - "Id": 1331, "CommandName": "Set-PnPList" }, { + "Id": 1334, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "Rank": 1, - "Id": 1332, "CommandName": "Set-PnPListInformationRightsManagement" }, { + "Id": 1335, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "Rank": 2, - "Id": 1333, "CommandName": "Set-PnPListInformationRightsManagement" }, { + "Id": 1336, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "Id": 1334, "CommandName": "Set-PnPListItem" }, { + "Id": 1337, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "Id": 1335, "CommandName": "Set-PnPListItem" }, { + "Id": 1338, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 3, - "Id": 1336, "CommandName": "Set-PnPListItem" }, { + "Id": 1339, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "Rank": 4, - "Id": 1337, "CommandName": "Set-PnPListItem" }, { + "Id": 1340, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "Rank": 5, - "Id": 1338, "CommandName": "Set-PnPListItem" }, { + "Id": 1341, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "Id": 1339, "CommandName": "Set-PnPListItemAsRecord" }, { + "Id": 1342, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "Rank": 2, - "Id": 1340, "CommandName": "Set-PnPListItemAsRecord" }, { + "Id": 1343, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "Id": 1341, "CommandName": "Set-PnPListItemPermission" }, { + "Id": 1344, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "Id": 1342, "CommandName": "Set-PnPListItemPermission" }, { + "Id": 1345, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "Id": 1343, "CommandName": "Set-PnPListItemPermission" }, { + "Id": 1346, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "Rank": 4, - "Id": 1344, "CommandName": "Set-PnPListItemPermission" }, { + "Id": 1347, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "Rank": 5, - "Id": 1345, "CommandName": "Set-PnPListItemPermission" }, { + "Id": 1348, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "Id": 1346, "CommandName": "Set-PnPListPermission" }, { + "Id": 1349, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "Id": 1347, "CommandName": "Set-PnPListPermission" }, { + "Id": 1350, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "Rank": 1, - "Id": 1348, "CommandName": "Set-PnPListRecordDeclaration" }, { + "Id": 1351, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "Rank": 2, - "Id": 1349, "CommandName": "Set-PnPListRecordDeclaration" }, { + "Id": 1352, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 1, - "Id": 1350, "CommandName": "Set-PnPMasterPage" }, { + "Id": 1353, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 2, - "Id": 1351, "CommandName": "Set-PnPMasterPage" }, { + "Id": 1354, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 3, - "Id": 1352, "CommandName": "Set-PnPMasterPage" }, { + "Id": 1355, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 4, - "Id": 1353, "CommandName": "Set-PnPMasterPage" }, { + "Id": 1356, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "Rank": 1, - "Id": 1354, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { + "Id": 1357, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1355, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { + "Id": 1358, "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, - "Id": 1356, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { + "Id": 1359, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "Rank": 1, - "Id": 1357, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { + "Id": 1360, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1358, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { + "Id": 1361, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, - "Id": 1359, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { + "Id": 1362, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Rank": 1, - "Id": 1360, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { + "Id": 1363, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1361, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { + "Id": 1364, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, - "Id": 1362, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { + "Id": 1365, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "Rank": 1, - "Id": 1363, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { + "Id": 1366, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1364, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { + "Id": 1367, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, - "Id": 1365, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { + "Id": 1368, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "Rank": 1, - "Id": 1366, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { + "Id": 1369, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1367, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { + "Id": 1370, "Command": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, - "Id": 1368, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { + "Id": 1371, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "Rank": 1, - "Id": 1369, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { + "Id": 1372, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1370, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { + "Id": 1373, "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, - "Id": 1371, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { + "Id": 1374, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "Id": 1372, "CommandName": "Set-PnPMicrosoft365Group" }, { + "Id": 1375, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "Id": 1373, "CommandName": "Set-PnPMicrosoft365Group" }, { + "Id": 1376, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "Rank": 3, - "Id": 1374, "CommandName": "Set-PnPMicrosoft365Group" }, { + "Id": 1377, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "Rank": 4, - "Id": 1375, "CommandName": "Set-PnPMicrosoft365Group" }, { + "Id": 1378, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "Rank": 5, - "Id": 1376, "CommandName": "Set-PnPMicrosoft365Group" }, { + "Id": 1379, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "Id": 1377, "CommandName": "Set-PnPMicrosoft365Group" }, { + "Id": 1380, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "Rank": 1, - "Id": 1378, "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { + "Id": 1381, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "Rank": 2, - "Id": 1379, "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { + "Id": 1382, "Command": "Set-PnPMinimalDownloadStrategy -Off", "Rank": 1, - "Id": 1380, "CommandName": "Set-PnPMinimalDownloadStrategy" }, { + "Id": 1383, "Command": "Set-PnPMinimalDownloadStrategy -On", "Rank": 2, - "Id": 1381, "CommandName": "Set-PnPMinimalDownloadStrategy" }, { + "Id": 1384, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Rank": 1, - "Id": 1382, "CommandName": "Set-PnPPage" }, { + "Id": 1385, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Rank": 2, - "Id": 1383, "CommandName": "Set-PnPPage" }, { + "Id": 1386, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Rank": 3, - "Id": 1384, "CommandName": "Set-PnPPage" }, { + "Id": 1387, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Rank": 4, - "Id": 1385, "CommandName": "Set-PnPPage" }, { + "Id": 1388, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Rank": 5, - "Id": 1386, "CommandName": "Set-PnPPage" }, { + "Id": 1389, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "Rank": 6, - "Id": 1387, "CommandName": "Set-PnPPage" }, { + "Id": 1390, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "Id": 1388, "CommandName": "Set-PnPPage" }, { + "Id": 1391, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "Rank": 8, - "Id": 1389, "CommandName": "Set-PnPPage" }, { + "Id": 1392, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "Id": 1390, "CommandName": "Set-PnPPage" }, { + "Id": 1393, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "Id": 1391, "CommandName": "Set-PnPPage" }, { + "Id": 1394, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "Rank": 11, - "Id": 1392, "CommandName": "Set-PnPPage" }, { + "Id": 1395, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "Rank": 1, - "Id": 1393, "CommandName": "Set-PnPPageTextPart" }, { + "Id": 1396, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "Rank": 1, - "Id": 1394, "CommandName": "Set-PnPPageWebPart" }, { + "Id": 1397, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "Rank": 2, - "Id": 1395, "CommandName": "Set-PnPPageWebPart" }, { + "Id": 1398, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "Rank": 1, - "Id": 1396, "CommandName": "Set-PnPPlannerBucket" }, { + "Id": 1399, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "Rank": 1, - "Id": 1397, "CommandName": "Set-PnPPlannerConfiguration" }, { + "Id": 1400, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "Rank": 2, - "Id": 1398, "CommandName": "Set-PnPPlannerConfiguration" }, { + "Id": 1401, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "Rank": 1, - "Id": 1399, "CommandName": "Set-PnPPlannerPlan" }, { + "Id": 1402, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "Rank": 1, - "Id": 1400, "CommandName": "Set-PnPPlannerTask" }, { + "Id": 1403, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "Rank": 2, - "Id": 1401, "CommandName": "Set-PnPPlannerTask" }, { + "Id": 1404, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Rank": 3, - "Id": 1402, "CommandName": "Set-PnPPlannerTask" }, { + "Id": 1405, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1403, "CommandName": "Set-PnPPlannerUserPolicy" }, { + "Id": 1406, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Rank": 1, - "Id": 1404, "CommandName": "Set-PnPPropertyBagValue" }, { + "Id": 1407, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Rank": 2, - "Id": 1405, "CommandName": "Set-PnPPropertyBagValue" }, { + "Id": 1408, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "Rank": 3, - "Id": 1406, "CommandName": "Set-PnPPropertyBagValue" }, { + "Id": 1409, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Rank": 1, - "Id": 1407, "CommandName": "Set-PnPRequestAccessEmails" }, { + "Id": 1410, "Command": "Set-PnPRequestAccessEmails -Disabled", "Rank": 2, - "Id": 1408, "CommandName": "Set-PnPRequestAccessEmails" }, { + "Id": 1411, "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "Rank": 3, - "Id": 1409, "CommandName": "Set-PnPRequestAccessEmails" }, { + "Id": 1412, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Rank": 1, - "Id": 1410, "CommandName": "Set-PnPRoleDefinition" }, { + "Id": 1413, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Rank": 2, - "Id": 1411, "CommandName": "Set-PnPRoleDefinition" }, { + "Id": 1414, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Rank": 3, - "Id": 1412, "CommandName": "Set-PnPRoleDefinition" }, { + "Id": 1415, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "Rank": 4, - "Id": 1413, "CommandName": "Set-PnPRoleDefinition" }, { + "Id": 1416, "Command": "Set-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "Id": 1414, "CommandName": "Set-PnPSearchConfiguration" }, { + "Id": 1417, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "Id": 1415, "CommandName": "Set-PnPSearchConfiguration" }, { + "Id": 1418, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "Id": 1416, "CommandName": "Set-PnPSearchConfiguration" }, { + "Id": 1419, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "Id": 1417, "CommandName": "Set-PnPSearchConfiguration" }, { - "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone", + "Id": 1420, + "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, - "Id": 1418, "CommandName": "Set-PnPSearchExternalItem" }, { - "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test van deze PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"", + "Id": 1421, + "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, - "Id": 1419, "CommandName": "Set-PnPSearchExternalItem" }, { + "Id": 1422, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Rank": 1, - "Id": 1420, "CommandName": "Set-PnPSearchSettings" }, { + "Id": 1423, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Rank": 2, - "Id": 1421, "CommandName": "Set-PnPSearchSettings" }, { + "Id": 1424, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Rank": 3, - "Id": 1422, "CommandName": "Set-PnPSearchSettings" }, { + "Id": 1425, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Rank": 4, - "Id": 1423, "CommandName": "Set-PnPSearchSettings" }, { + "Id": 1426, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "Rank": 5, - "Id": 1424, "CommandName": "Set-PnPSearchSettings" }, { + "Id": 1427, "Command": "Set-PnPSearchSettings -SearchScope Tenant", "Rank": 6, - "Id": 1425, "CommandName": "Set-PnPSearchSettings" }, { + "Id": 1428, "Command": "Set-PnPSearchSettings -SearchScope Hub", "Rank": 7, - "Id": 1426, "CommandName": "Set-PnPSearchSettings" }, { + "Id": 1429, "Command": "Set-PnPSite -Classification \"HBI\"", "Rank": 1, - "Id": 1427, "CommandName": "Set-PnPSite" }, { + "Id": 1430, "Command": "Set-PnPSite -Classification $null", "Rank": 2, - "Id": 1428, "CommandName": "Set-PnPSite" }, { + "Id": 1431, "Command": "Set-PnPSite -DisableFlows", "Rank": 3, - "Id": 1429, "CommandName": "Set-PnPSite" }, { + "Id": 1432, "Command": "Set-PnPSite -DisableFlows:$false", "Rank": 4, - "Id": 1430, "CommandName": "Set-PnPSite" }, { + "Id": 1433, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "Rank": 5, - "Id": 1431, "CommandName": "Set-PnPSite" }, { + "Id": 1434, "Command": "Set-PnPSite -NoScriptSite $false", "Rank": 6, - "Id": 1432, "CommandName": "Set-PnPSite" }, { + "Id": 1435, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "Rank": 7, - "Id": 1433, "CommandName": "Set-PnPSite" }, { + "Id": 1436, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "Rank": 8, - "Id": 1434, "CommandName": "Set-PnPSite" }, { + "Id": 1437, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "Rank": 9, - "Id": 1435, "CommandName": "Set-PnPSite" }, { + "Id": 1438, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "Rank": 10, - "Id": 1436, "CommandName": "Set-PnPSite" }, { + "Id": 1439, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "Rank": 11, - "Id": 1437, "CommandName": "Set-PnPSite" }, { + "Id": 1440, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "Rank": 12, - "Id": 1438, "CommandName": "Set-PnPSite" }, { + "Id": 1441, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "Rank": 13, - "Id": 1439, "CommandName": "Set-PnPSite" }, { + "Id": 1442, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "Rank": 14, - "Id": 1440, "CommandName": "Set-PnPSite" }, { + "Id": 1443, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "Rank": 15, - "Id": 1441, "CommandName": "Set-PnPSite" }, { + "Id": 1444, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "Rank": 16, - "Id": 1442, "CommandName": "Set-PnPSite" }, { + "Id": 1445, "Command": "Set-PnPSite -CancelVPForExistingLibs", "Rank": 17, - "Id": 1443, "CommandName": "Set-PnPSite" }, { + "Id": 1446, "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "Rank": 1, - "Id": 1444, "CommandName": "Set-PnPSiteClassification" }, { + "Id": 1447, "Command": "Set-PnPSiteClosure -State Open", "Rank": 1, - "Id": 1445, "CommandName": "Set-PnPSiteClosure" }, { + "Id": 1448, "Command": "Set-PnPSiteClosure -State Closed", "Rank": 2, - "Id": 1446, "CommandName": "Set-PnPSiteClosure" }, { + "Id": 1449, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "Rank": 1, - "Id": 1447, "CommandName": "Set-PnPSiteDesign" }, { + "Id": 1450, "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, - "Id": 1448, "CommandName": "Set-PnPSiteDesign" }, { + "Id": 1451, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "Rank": 1, - "Id": 1449, "CommandName": "Set-PnPSiteGroup" }, { + "Id": 1452, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "Rank": 2, - "Id": 1450, "CommandName": "Set-PnPSiteGroup" }, { + "Id": 1453, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 1, - "Id": 1451, "CommandName": "Set-PnPSitePolicy" }, { + "Id": 1454, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "Id": 1452, "CommandName": "Set-PnPSiteScript" }, { + "Id": 1455, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "Id": 1453, "CommandName": "Set-PnPSiteScriptPackage" }, { + "Id": 1456, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Rank": 1, - "Id": 1454, "CommandName": "Set-PnPSiteSensitivityLabel" }, { + "Id": 1457, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "Rank": 2, - "Id": 1455, "CommandName": "Set-PnPSiteSensitivityLabel" }, { + "Id": 1458, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "Rank": 1, - "Id": 1456, "CommandName": "Set-PnPSiteTemplateMetadata" }, { + "Id": 1459, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "Rank": 2, - "Id": 1457, "CommandName": "Set-PnPSiteTemplateMetadata" }, { + "Id": 1460, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 3, - "Id": 1458, "CommandName": "Set-PnPSiteTemplateMetadata" }, { + "Id": 1461, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 4, - "Id": 1459, "CommandName": "Set-PnPSiteTemplateMetadata" }, { + "Id": 1462, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 5, - "Id": 1460, "CommandName": "Set-PnPSiteTemplateMetadata" }, { + "Id": 1463, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 6, - "Id": 1461, "CommandName": "Set-PnPSiteTemplateMetadata" }, { + "Id": 1464, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 1, - "Id": 1462, "CommandName": "Set-PnPStorageEntity" }, { + "Id": 1465, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 2, - "Id": 1463, "CommandName": "Set-PnPStorageEntity" }, { + "Id": 1466, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "Id": 1464, "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { + "Id": 1467, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 2, - "Id": 1465, "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { + "Id": 1468, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "Id": 1466, "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { + "Id": 1469, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 2, - "Id": 1467, "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { + "Id": 1470, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "Rank": 1, - "Id": 1468, "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { + "Id": 1471, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "Rank": 2, - "Id": 1469, "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { + "Id": 1472, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "Rank": 1, - "Id": 1470, "CommandName": "Set-PnPTaxonomyFieldValue" }, { + "Id": 1473, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "Rank": 2, - "Id": 1471, "CommandName": "Set-PnPTaxonomyFieldValue" }, { + "Id": 1474, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "Rank": 3, - "Id": 1472, "CommandName": "Set-PnPTaxonomyFieldValue" }, { + "Id": 1475, "Command": "Set-PnPTeamifyPromptHidden", "Rank": 1, - "Id": 1473, "CommandName": "Set-PnPTeamifyPromptHidden" }, { + "Id": 1476, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Rank": 1, - "Id": 1474, "CommandName": "Set-PnPTeamsChannel" }, { + "Id": 1477, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Rank": 2, - "Id": 1475, "CommandName": "Set-PnPTeamsChannel" }, { + "Id": 1478, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Rank": 1, - "Id": 1476, "CommandName": "Set-PnpTeamsChannelUser" }, { + "Id": 1479, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Rank": 2, - "Id": 1477, "CommandName": "Set-PnpTeamsChannelUser" }, { + "Id": 1480, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Rank": 1, - "Id": 1478, "CommandName": "Set-PnPTeamsTab" }, { + "Id": 1481, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "Rank": 1, - "Id": 1479, "CommandName": "Set-PnPTeamsTag" }, { + "Id": 1482, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Rank": 1, - "Id": 1480, "CommandName": "Set-PnPTeamsTeam" }, { + "Id": 1483, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Rank": 2, - "Id": 1481, "CommandName": "Set-PnPTeamsTeam" }, { + "Id": 1484, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Rank": 3, - "Id": 1482, "CommandName": "Set-PnPTeamsTeam" }, { + "Id": 1485, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "Rank": 4, - "Id": 1483, "CommandName": "Set-PnPTeamsTeam" }, { + "Id": 1486, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Rank": 1, - "Id": 1484, "CommandName": "Set-PnPTeamsTeamArchivedState" }, { + "Id": 1487, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Rank": 2, - "Id": 1485, "CommandName": "Set-PnPTeamsTeamArchivedState" }, { + "Id": 1488, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "Rank": 3, - "Id": 1486, "CommandName": "Set-PnPTeamsTeamArchivedState" }, { + "Id": 1489, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "Rank": 1, - "Id": 1487, "CommandName": "Set-PnPTeamsTeamPicture" }, { + "Id": 1490, "Command": "Set-PnPTemporarilyDisableAppBar $true", "Rank": 1, - "Id": 1488, "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { + "Id": 1491, "Command": "Set-PnPTemporarilyDisableAppBar $false", "Rank": 2, - "Id": 1489, "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { + "Id": 1492, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", "Rank": 1, - "Id": 1490, "CommandName": "Set-PnPTenant" }, { + "Id": 1493, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Rank": 2, - "Id": 1491, "CommandName": "Set-PnPTenant" }, { + "Id": 1494, "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Rank": 3, - "Id": 1492, "CommandName": "Set-PnPTenant" }, { + "Id": 1495, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Rank": 4, - "Id": 1493, "CommandName": "Set-PnPTenant" }, { + "Id": 1496, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Rank": 1, - "Id": 1494, "CommandName": "Set-PnPTenantAppCatalogUrl" }, { + "Id": 1497, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "Rank": 1, - "Id": 1495, "CommandName": "Set-PnPTenantCdnEnabled" }, { + "Id": 1498, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "Rank": 2, - "Id": 1496, "CommandName": "Set-PnPTenantCdnEnabled" }, { + "Id": 1499, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "Rank": 3, - "Id": 1497, "CommandName": "Set-PnPTenantCdnEnabled" }, { + "Id": 1500, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", "Rank": 1, - "Id": 1498, "CommandName": "Set-PnPTenantCdnPolicy" }, { + "Id": 1501, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Rank": 2, - "Id": 1499, "CommandName": "Set-PnPTenantCdnPolicy" }, { + "Id": 1502, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "Rank": 1, - "Id": 1500, "CommandName": "Set-PnPTenantSite" }, { + "Id": 1503, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "Rank": 2, - "Id": 1501, "CommandName": "Set-PnPTenantSite" }, { + "Id": 1504, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "Id": 1502, "CommandName": "Set-PnPTenantSite" }, { + "Id": 1505, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 4, - "Id": 1503, "CommandName": "Set-PnPTenantSite" }, { + "Id": 1506, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "Rank": 5, - "Id": 1504, "CommandName": "Set-PnPTenantSite" }, { + "Id": 1507, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Rank": 1, - "Id": 1505, "CommandName": "Set-PnPTenantSyncClientRestriction" }, { + "Id": 1508, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Rank": 2, - "Id": 1506, "CommandName": "Set-PnPTenantSyncClientRestriction" }, { + "Id": 1509, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "Rank": 1, - "Id": 1507, "CommandName": "Set-PnPTerm" }, { + "Id": 1510, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "Id": 1508, "CommandName": "Set-PnPTerm" }, { + "Id": 1511, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 3, - "Id": 1509, "CommandName": "Set-PnPTerm" }, { + "Id": 1512, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "Rank": 4, - "Id": 1510, "CommandName": "Set-PnPTerm" }, { + "Id": 1513, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "Rank": 1, - "Id": 1511, "CommandName": "Set-PnPTermGroup" }, { + "Id": 1514, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "Rank": 1, - "Id": 1512, "CommandName": "Set-PnPTermSet" }, { + "Id": 1515, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "Rank": 2, - "Id": 1513, "CommandName": "Set-PnPTermSet" }, { + "Id": 1516, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "Rank": 3, - "Id": 1514, "CommandName": "Set-PnPTermSet" }, { + "Id": 1517, "Command": "Set-PnPTheme", "Rank": 1, - "Id": 1515, "CommandName": "Set-PnPTheme" }, { + "Id": 1518, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Rank": 2, - "Id": 1516, "CommandName": "Set-PnPTheme" }, { + "Id": 1519, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "Rank": 3, - "Id": 1517, "CommandName": "Set-PnPTheme" }, { + "Id": 1520, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "Rank": 4, - "Id": 1518, "CommandName": "Set-PnPTheme" }, { + "Id": 1521, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "Rank": 1, - "Id": 1519, "CommandName": "Set-PnPTraceLog" }, { + "Id": 1522, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "Rank": 2, - "Id": 1520, "CommandName": "Set-PnPTraceLog" }, { + "Id": 1523, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "Rank": 3, - "Id": 1521, "CommandName": "Set-PnPTraceLog" }, { + "Id": 1524, "Command": "Set-PnPTraceLog -Off", "Rank": 4, - "Id": 1522, "CommandName": "Set-PnPTraceLog" }, { + "Id": 1525, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "Rank": 1, - "Id": 1523, "CommandName": "Set-PnPUserOneDriveQuota" }, { + "Id": 1526, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "Rank": 1, - "Id": 1524, "CommandName": "Set-PnPUserProfileProperty" }, { + "Id": 1527, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "Rank": 2, - "Id": 1525, "CommandName": "Set-PnPUserProfileProperty" }, { + "Id": 1528, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "Rank": 1, - "Id": 1526, "CommandName": "Set-PnPView" }, { + "Id": 1529, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "Rank": 2, - "Id": 1527, "CommandName": "Set-PnPView" }, { + "Id": 1530, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "Rank": 3, - "Id": 1528, "CommandName": "Set-PnPView" }, { + "Id": 1531, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "Rank": 4, - "Id": 1529, "CommandName": "Set-PnPView" }, { + "Id": 1532, "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, - "Id": 1530, "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { + "Id": 1533, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "Rank": 2, - "Id": 1531, "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { + "Id": 1534, "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, - "Id": 1532, "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { + "Id": 1535, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "Rank": 4, - "Id": 1533, "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { + "Id": 1536, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Rank": 1, - "Id": 1534, "CommandName": "Set-PnPWeb" }, { + "Id": 1537, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Rank": 2, - "Id": 1535, "CommandName": "Set-PnPWeb" }, { + "Id": 1538, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "Rank": 3, - "Id": 1536, "CommandName": "Set-PnPWeb" }, { + "Id": 1539, "Command": "Set-PnPWeb -NoCrawl:$true", "Rank": 4, - "Id": 1537, "CommandName": "Set-PnPWeb" }, { + "Id": 1540, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "Rank": 1, - "Id": 1538, "CommandName": "Set-PnPWebHeader" }, { + "Id": 1541, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "Rank": 2, - "Id": 1539, "CommandName": "Set-PnPWebHeader" }, { + "Id": 1542, "Command": "Set-PnPWebHeader -LogoAlignment Middle", "Rank": 3, - "Id": 1540, "CommandName": "Set-PnPWebHeader" }, { + "Id": 1543, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "Id": 1541, "CommandName": "Set-PnPWebhookSubscription" }, { + "Id": 1544, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Rank": 2, - "Id": 1542, "CommandName": "Set-PnPWebhookSubscription" }, { + "Id": 1545, "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", "Rank": 1, - "Id": 1543, "CommandName": "Set-PnPWebPartProperty" }, { + "Id": 1546, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 1, - "Id": 1544, "CommandName": "Set-PnPWebPermission" }, { + "Id": 1547, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Rank": 2, - "Id": 1545, "CommandName": "Set-PnPWebPermission" }, { + "Id": 1548, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 3, - "Id": 1546, "CommandName": "Set-PnPWebPermission" }, { + "Id": 1549, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Rank": 4, - "Id": 1547, "CommandName": "Set-PnPWebPermission" }, { + "Id": 1550, "Command": "Set-PnPWebTheme -Theme MyTheme", "Rank": 1, - "Id": 1548, "CommandName": "Set-PnPWebTheme" }, { + "Id": 1551, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Rank": 2, - "Id": 1549, "CommandName": "Set-PnPWebTheme" }, { + "Id": 1552, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "Rank": 1, - "Id": 1550, "CommandName": "Set-PnPWikiPageContent" }, { + "Id": 1553, "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Rank": 1, - "Id": 1551, "CommandName": "Submit-PnPSearchQuery" }, { + "Id": 1554, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Rank": 2, - "Id": 1552, "CommandName": "Submit-PnPSearchQuery" }, { + "Id": 1555, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "Rank": 3, - "Id": 1553, "CommandName": "Submit-PnPSearchQuery" }, { + "Id": 1556, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "Rank": 4, - "Id": 1554, "CommandName": "Submit-PnPSearchQuery" }, { + "Id": 1557, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "Rank": 5, - "Id": 1555, "CommandName": "Submit-PnPSearchQuery" }, { + "Id": 1558, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "Rank": 1, - "Id": 1556, "CommandName": "Submit-PnPTeamsChannelMessage" }, { + "Id": 1559, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "Rank": 2, - "Id": 1557, "CommandName": "Submit-PnPTeamsChannelMessage" }, { + "Id": 1560, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 1558, "CommandName": "Sync-PnPAppToTeams" }, { + "Id": 1561, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Rank": 1, - "Id": 1559, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { + "Id": 1562, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "Rank": 2, - "Id": 1560, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { + "Id": 1563, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "Rank": 3, - "Id": 1561, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { + "Id": 1564, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "Id": 1562, "CommandName": "Test-PnPListItemIsRecord" }, { + "Id": 1565, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "Rank": 1, - "Id": 1563, "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { + "Id": 1566, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "Id": 1564, "CommandName": "Test-PnPSite" }, { + "Id": 1567, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "Id": 1565, "CommandName": "Test-PnPSite" }, { + "Id": 1568, "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Rank": 1, - "Id": 1566, "CommandName": "Test-PnPTenantTemplate" }, { + "Id": 1569, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "Rank": 1, - "Id": 1567, "CommandName": "Undo-PnPFileCheckedOut" }, { + "Id": 1570, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 1568, "CommandName": "Uninstall-PnPApp" }, { + "Id": 1571, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 1569, "CommandName": "Uninstall-PnPApp" }, { + "Id": 1572, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 1570, "CommandName": "Unpublish-PnPApp" }, { + "Id": 1573, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 1571, "CommandName": "Unpublish-PnPApp" }, { + "Id": 1574, "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Rank": 1, - "Id": 1572, "CommandName": "Unpublish-PnPContentType" }, { + "Id": 1575, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "Id": 1573, "CommandName": "Unpublish-PnPSyntexModel" }, { + "Id": 1576, "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, - "Id": 1574, "CommandName": "Unpublish-PnPSyntexModel" }, { + "Id": 1577, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "Id": 1575, "CommandName": "Unregister-PnPHubSite" }, { + "Id": 1578, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 1576, "CommandName": "Update-PnPApp" }, { + "Id": 1579, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 1577, "CommandName": "Update-PnPApp" }, { + "Id": 1580, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 1, - "Id": 1578, "CommandName": "Update-PnPAvailableSiteClassification" }, { + "Id": 1581, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Rank": 2, - "Id": 1579, "CommandName": "Update-PnPAvailableSiteClassification" }, { + "Id": 1582, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 3, - "Id": 1580, "CommandName": "Update-PnPAvailableSiteClassification" }, { + "Id": 1583, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "Rank": 1, - "Id": 1581, "CommandName": "Update-PnPSiteDesignFromWeb" }, { + "Id": 1584, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2, - "Id": 1582, "CommandName": "Update-PnPSiteDesignFromWeb" }, { + "Id": 1585, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "Rank": 3, - "Id": 1583, "CommandName": "Update-PnPSiteDesignFromWeb" }, { + "Id": 1586, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "Rank": 1, - "Id": 1584, "CommandName": "Update-PnPTeamsApp" }, { + "Id": 1587, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "Id": 1585, "CommandName": "Update-PnPTeamsUser" }, { + "Id": 1588, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "Id": 1586, "CommandName": "Update-PnPTeamsUser" }, { + "Id": 1589, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "Rank": 3, - "Id": 1587, "CommandName": "Update-PnPTeamsUser" }, { + "Id": 1590, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Rank": 1, - "Id": 1588, "CommandName": "Update-PnPUserType" } ] diff --git a/version.txt b/version.txt index 433d17623..b15ba717d 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.89 \ No newline at end of file +2.2.90 \ No newline at end of file From e05b72ad15de182e252fd935f79ef0da09ead2aa Mon Sep 17 00:00:00 2001 From: Kshitiz Kalra Date: Fri, 6 Oct 2023 17:03:24 +0530 Subject: [PATCH 059/146] Update authentication.md added images as suggested by the reviewer Update authentication.md added images as suggested by the reviewer --- pages/articles/authentication.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pages/articles/authentication.md b/pages/articles/authentication.md index 16879081f..94e271d72 100644 --- a/pages/articles/authentication.md +++ b/pages/articles/authentication.md @@ -161,8 +161,10 @@ The AzureEnvironment parameter only allows one value. Select the correct one tha For running `Connect-PnPOnline` with user credentials in Azure DevOps pipeline, you need to make sure that authentication in your Azure AD application is configured to allow public client. Public client can be configured from the Azure portal from the Authentication Blade in the application or by setting the `allowPublicClient` property in the application's manifest to true. +![image](https://github.com/kzkalra/powershell/assets/38322484/507d3c70-9c74-445b-9f50-1022973de5ba) `username` and `password` for service account can be stored as secret pipeline variables and can be referenced in the script to achieve complete automation. +![image](https://github.com/kzkalra/powershell/assets/38322484/1d5acb94-3b12-4d51-b1b5-61f021789187) ## Silent Authentication with Credentials and MFA for running in Azure DevOps Pipelines with Microsoft Hosted Agents ### Identify the possible IP ranges for Microsoft-hosted agents @@ -179,6 +181,8 @@ For example, if your organization is located in the South East Asia region, you - Go to Azure AD conditional access - Open named location blade, click on `+ IP Ranges Location` - Enter the IP ranges for Microsoft Hosted Agents, `Mark as trusted location` should be checked. + ![image](https://github.com/kzkalra/powershell/assets/38322484/1cab2153-4075-43ef-83fd-b9509252119a) + ### Create a conditional access policy @@ -188,6 +192,8 @@ For example, if your organization is located in the South East Asia region, you - Under conditions -> locations include `any locations` and exclude the recently created named location. - Under grant -> choose `grant access`. Only `require multifactor authentication needs to be checked`. - Enable the policy and click on Save. +![image](https://github.com/kzkalra/powershell/assets/38322484/1635ca9f-b743-4128-92d6-a322462908a2) + > [!Important] > You need to make sure that the new policy does not conflicts with any other policy in your tenant, otherwise make the changes accordingly. From 1344cb959b2ff05b62336f800d61a985fa71bd20 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sat, 7 Oct 2023 02:37:19 +0000 Subject: [PATCH 060/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9540 ++++++++--------- version.txt | 2 +- 3 files changed, 4772 insertions(+), 4772 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 1cefb3e39..e42c84ad0 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -77ebb07449a7d482d5ee96f6506cfd28f901d2f7 \ No newline at end of file +24fa630a32e59aa6d4cd459a541177dc46536bce \ 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 4eda500df..85049e59a 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9542 +1,9542 @@ [ { - "Id": 1, - "Command": "Add-PnPAlert -List \"Demo List\"", "Rank": 1, - "CommandName": "Add-PnPAlert" + "CommandName": "Add-PnPAlert", + "Id": 1, + "Command": "Add-PnPAlert -List \"Demo List\"" }, { - "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" + "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, - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Add-PnPAlert" + "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, - "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" + "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, - "Command": "Add-PnPApp -Path ./myapp.sppkg", "Rank": 1, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Id": 5, + "Command": "Add-PnPApp -Path ./myapp.sppkg" }, { - "Id": 6, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Rank": 2, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Id": 6, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" }, { - "Id": 7, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Rank": 3, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Id": 7, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" }, { - "Id": 8, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Rank": 4, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Id": 8, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" }, { - "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" + "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, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Rank": 1, - "CommandName": "Add-PnPAvailableSiteClassification" + "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 10, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" }, { - "Id": 11, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Rank": 2, - "CommandName": "Add-PnPAvailableSiteClassification" + "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 11, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" }, { - "Id": 12, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 12, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 13, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 13, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 14, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 14, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "Id": 15, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 15, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 16, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 16, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 17, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 17, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "Id": 18, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "Rank": 1, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole" + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Id": 18, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph" }, { - "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" + "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, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "Rank": 1, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Id": 20, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct" }, { - "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" + "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, - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "Rank": 3, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Id": 22, + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" }, { - "Id": 23, - "Command": "Add-PnPContentType -Name \"Project Item\"", "Rank": 4, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Id": 23, + "Command": "Add-PnPContentType -Name \"Project Item\"" }, { - "Id": 24, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "Rank": 5, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Id": 24, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" }, { - "Id": 25, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Rank": 1, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 25, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" }, { - "Id": 26, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Rank": 2, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 26, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" }, { - "Id": 27, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 27, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Id": 28, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 28, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Id": 29, - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Rank": 1, - "CommandName": "Add-PnPContentTypeToList" + "CommandName": "Add-PnPContentTypeToList", + "Id": 29, + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" }, { - "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" + "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, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "Rank": 1, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 31, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" }, { - "Id": 32, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "Rank": 2, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 32, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" }, { - "Id": 33, - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Rank": 1, - "CommandName": "Add-PnPDocumentSet" + "CommandName": "Add-PnPDocumentSet", + "Id": 33, + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" }, { - "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" + "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, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "Rank": 2, - "CommandName": "Add-PnPEventReceiver" + "CommandName": "Add-PnPEventReceiver", + "Id": 35, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous" }, { - "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" + "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, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "Rank": 4, - "CommandName": "Add-PnPEventReceiver" + "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, - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Rank": 1, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Id": 38, + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" }, { - "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" + "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, - "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" + "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, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "Rank": 4, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Id": 41, + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" }, { - "Id": 42, - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "Rank": 5, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Id": 42, + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" }, { - "Id": 43, - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Rank": 6, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Id": 43, + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" }, { - "Id": 44, - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Add-PnPFieldToContentType" + "CommandName": "Add-PnPFieldToContentType", + "Id": 44, + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Id": 45, - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Rank": 1, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 45, + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" }, { - "Id": 46, - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Rank": 2, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 46, + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" }, { - "Id": 47, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "Rank": 3, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 47, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" }, { - "Id": 48, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "Rank": 4, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 48, + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" }, { - "Id": 49, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "Rank": 5, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 49, + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" }, { - "Id": 50, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "Rank": 6, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 50, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" }, { - "Id": 51, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Rank": 7, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 51, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" }, { - "Id": 52, - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Rank": 8, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 52, + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" }, { - "Id": 53, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 53, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 54, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 54, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" }, { - "Id": 55, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 55, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" }, { - "Id": 56, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 56, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 57, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "Rank": 2, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 57, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" }, { - "Id": 58, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "CommandName": "Add-PnPFileSharingInvite" + "CommandName": "Add-PnPFileSharingInvite", + "Id": 58, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "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" + "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, - "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" + "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, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Rank": 1, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 61, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" }, { - "Id": 62, - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "Rank": 2, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 62, + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" }, { - "Id": 63, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "Rank": 3, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 63, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" }, { - "Id": 64, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "Rank": 4, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 64, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" }, { - "Id": 65, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Rank": 5, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 65, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" }, { - "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" + "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, - "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" + "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, - "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" + "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, - "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" + "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, - "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" + "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, - "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" + "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, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Id": 72, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Id": 73, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Rank": 2, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Id": 73, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" }, { - "Id": 74, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Rank": 3, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Id": 74, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" }, { - "Id": 75, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 75, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 76, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 76, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" }, { - "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" + "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, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 78, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 79, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Rank": 2, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 79, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" }, { - "Id": 80, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "CommandName": "Add-PnPFolderSharingInvite" + "CommandName": "Add-PnPFolderSharingInvite", + "Id": 80, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "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" + "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, - "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" + "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, - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPFolderUserSharingLink" + "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, - "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" + "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, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "CommandName": "Add-PnPGroupMember" + "CommandName": "Add-PnPGroupMember", + "Id": 85, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Id": 86, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Rank": 2, - "CommandName": "Add-PnPGroupMember" + "CommandName": "Add-PnPGroupMember", + "Id": 86, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" }, { - "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" + "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, - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Rank": 1, - "CommandName": "Add-PnPHubSiteAssociation" + "CommandName": "Add-PnPHubSiteAssociation", + "Id": 88, + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" }, { - "Id": 89, - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "Rank": 1, - "CommandName": "Add-PnPHubToHubAssociation" + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 89, + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" }, { - "Id": 90, - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "Rank": 2, - "CommandName": "Add-PnPHubToHubAssociation" + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 90, + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"" }, { - "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" + "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, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "Rank": 1, - "CommandName": "Add-PnPJavaScriptBlock" + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 92, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" }, { - "Id": 93, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "Rank": 2, - "CommandName": "Add-PnPJavaScriptBlock" + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 93, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" }, { - "Id": 94, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "Rank": 1, - "CommandName": "Add-PnPJavaScriptLink" + "CommandName": "Add-PnPJavaScriptLink", + "Id": 94, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site" }, { - "Id": 95, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Rank": 2, - "CommandName": "Add-PnPJavaScriptLink" + "CommandName": "Add-PnPJavaScriptLink", + "Id": 95, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" }, { - "Id": 96, - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "Rank": 1, - "CommandName": "Add-PnPListDesign" + "CommandName": "Add-PnPListDesign", + "Id": 96, + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" }, { - "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" + "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, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Rank": 1, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 98, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" }, { - "Id": 99, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "Rank": 2, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 99, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" }, { - "Id": 100, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Rank": 3, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 100, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" }, { - "Id": 101, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Id": 101, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 102, - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Id": 102, + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 103, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "Rank": 3, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Id": 103, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" }, { - "Id": 104, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "Rank": 4, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Id": 104, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" }, { - "Id": 105, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Rank": 5, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Id": 105, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" }, { - "Id": 106, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "Rank": 1, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Id": 106, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" }, { - "Id": 107, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "Rank": 2, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Id": 107, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" }, { - "Id": 108, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Rank": 3, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Id": 108, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" }, { - "Id": 109, - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Rank": 1, - "CommandName": "Add-PnPListItemComment" + "CommandName": "Add-PnPListItemComment", + "Id": 109, + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" }, { - "Id": 110, - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Rank": 1, - "CommandName": "Add-PnPMasterPage" + "CommandName": "Add-PnPMasterPage", + "Id": 110, + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" }, { - "Id": 111, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 111, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 112, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 112, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 113, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 113, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 114, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 114, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "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" + "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, - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 116, + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" }, { - "Id": 117, - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Rank": 3, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 117, + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" }, { - "Id": 118, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "Rank": 1, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Id": 118, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" }, { - "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" + "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, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "Rank": 3, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Id": 120, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" }, { - "Id": 121, - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "Rank": 4, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Id": 121, + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" }, { - "Id": 122, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Rank": 5, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Id": 122, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" }, { - "Id": 123, - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Rank": 6, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Id": 123, + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" }, { - "Id": 124, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Rank": 7, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Id": 124, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" }, { - "Id": 125, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Rank": 8, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Id": 125, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" }, { - "Id": 126, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "Rank": 1, - "CommandName": "Add-PnPOrgAssetsLibrary" + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 126, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" }, { - "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" + "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, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Rank": 3, - "CommandName": "Add-PnPOrgAssetsLibrary" + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 128, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" }, { - "Id": 129, - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Rank": 1, - "CommandName": "Add-PnPOrgNewsSite" + "CommandName": "Add-PnPOrgNewsSite", + "Id": 129, + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" }, { - "Id": 130, - "Command": "Add-PnPPage -Name \"NewPage\"", "Rank": 1, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 130, + "Command": "Add-PnPPage -Name \"NewPage\"" }, { - "Id": 131, - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Rank": 2, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 131, + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" }, { - "Id": 132, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Rank": 3, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 132, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" }, { - "Id": 133, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Rank": 4, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 133, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" }, { - "Id": 134, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Rank": 5, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 134, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"" }, { - "Id": 135, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Rank": 6, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 135, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" }, { - "Id": 136, - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 136, + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Id": 137, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Rank": 8, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 137, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate" }, { - "Id": 138, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 138, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Id": 139, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 139, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Id": 140, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "Rank": 1, - "CommandName": "Add-PnPPageImageWebPart" + "CommandName": "Add-PnPPageImageWebPart", + "Id": 140, + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" }, { - "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" + "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, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Rank": 1, - "CommandName": "Add-PnPPageSection" + "CommandName": "Add-PnPPageSection", + "Id": 142, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" }, { - "Id": 143, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Rank": 2, - "CommandName": "Add-PnPPageSection" + "CommandName": "Add-PnPPageSection", + "Id": 143, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" }, { - "Id": 144, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Rank": 1, - "CommandName": "Add-PnPPageTextPart" + "CommandName": "Add-PnPPageTextPart", + "Id": 144, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" }, { - "Id": 145, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "Rank": 2, - "CommandName": "Add-PnPPageTextPart" + "CommandName": "Add-PnPPageTextPart", + "Id": 145, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" }, { - "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" + "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, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Rank": 1, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Id": 147, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" }, { - "Id": 148, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Rank": 2, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Id": 148, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" }, { - "Id": 149, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Rank": 3, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Id": 149, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" }, { - "Id": 150, - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Rank": 1, - "CommandName": "Add-PnPPlannerBucket" + "CommandName": "Add-PnPPlannerBucket", + "Id": 150, + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" }, { - "Id": 151, - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Rank": 2, - "CommandName": "Add-PnPPlannerBucket" + "CommandName": "Add-PnPPlannerBucket", + "Id": 151, + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" }, { - "Id": 152, - "Command": "Add-PnPPlannerRoster", "Rank": 1, - "CommandName": "Add-PnPPlannerRoster" + "CommandName": "Add-PnPPlannerRoster", + "Id": 152, + "Command": "Add-PnPPlannerRoster" }, { - "Id": 153, - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPPlannerRosterMember" + "CommandName": "Add-PnPPlannerRosterMember", + "Id": 153, + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 154, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 1, - "CommandName": "Add-PnPPlannerTask" + "CommandName": "Add-PnPPlannerTask", + "Id": 154, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "Id": 155, - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 2, - "CommandName": "Add-PnPPlannerTask" + "CommandName": "Add-PnPPlannerTask", + "Id": 155, + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "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" + "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, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "CommandName": "Add-PnPPublishingImageRendition" + "CommandName": "Add-PnPPublishingImageRendition", + "Id": 157, + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Id": 158, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "Rank": 1, - "CommandName": "Add-PnPPublishingPage" + "CommandName": "Add-PnPPublishingPage", + "Id": 158, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" }, { - "Id": 159, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Rank": 2, - "CommandName": "Add-PnPPublishingPage" + "CommandName": "Add-PnPPublishingPage", + "Id": 159, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" }, { - "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" + "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, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Rank": 1, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Id": 161, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" }, { - "Id": 162, - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Rank": 2, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Id": 162, + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" }, { - "Id": 163, - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Rank": 3, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Id": 163, + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" }, { - "Id": 164, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 164, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Id": 165, - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 165, + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Id": 166, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 166, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" }, { - "Id": 167, - "Command": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 167, + "Command": "Add-PnPSiteCollectionAppCatalog" }, { - "Id": 168, - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 168, + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "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" + "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, - "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" + "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, - "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" + "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, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "Rank": 1, - "CommandName": "Add-PnPSiteDesignFromWeb" + "CommandName": "Add-PnPSiteDesignFromWeb", + "Id": 172, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" }, { - "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" + "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, - "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" + "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, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "CommandName": "Add-PnPSiteDesignTask" + "CommandName": "Add-PnPSiteDesignTask", + "Id": 175, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Id": 176, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 2, - "CommandName": "Add-PnPSiteDesignTask" + "CommandName": "Add-PnPSiteDesignTask", + "Id": 176, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Id": 177, - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Rank": 1, - "CommandName": "Add-PnPSiteScript" + "CommandName": "Add-PnPSiteScript", + "Id": 177, + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" }, { - "Id": 178, - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Rank": 1, - "CommandName": "Add-PnPSiteScriptPackage" + "CommandName": "Add-PnPSiteScriptPackage", + "Id": 178, + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" }, { - "Id": 179, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Rank": 1, - "CommandName": "Add-PnPSiteTemplate" + "CommandName": "Add-PnPSiteTemplate", + "Id": 179, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" }, { - "Id": 180, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "Rank": 1, - "CommandName": "Add-PnPStoredCredential" + "CommandName": "Add-PnPStoredCredential", + "Id": 180, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" }, { - "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" + "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, - "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" + "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, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Rank": 1, - "CommandName": "Add-PnPTaxonomyField" + "CommandName": "Add-PnPTaxonomyField", + "Id": 183, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" }, { - "Id": 184, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Rank": 2, - "CommandName": "Add-PnPTaxonomyField" + "CommandName": "Add-PnPTaxonomyField", + "Id": 184, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" }, { - "Id": 185, - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "Rank": 1, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Id": 185, + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" }, { - "Id": 186, - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Rank": 2, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Id": 186, + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" }, { - "Id": 187, - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "Rank": 3, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Id": 187, + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" }, { - "Id": 188, - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Rank": 4, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Id": 188, + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" }, { - "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" + "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, - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Rank": 2, - "CommandName": "Add-PnpTeamsChannelUser" + "CommandName": "Add-PnpTeamsChannelUser", + "Id": 190, + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" }, { - "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" + "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, - "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" + "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, - "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" + "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, - "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" + "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, - "Command": "Add-PnPTeamsTeam", "Rank": 1, - "CommandName": "Add-PnPTeamsTeam" + "CommandName": "Add-PnPTeamsTeam", + "Id": 195, + "Command": "Add-PnPTeamsTeam" }, { - "Id": 196, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Id": 196, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Id": 197, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Id": 197, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Id": 198, - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "Rank": 3, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Id": 198, + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" }, { - "Id": 199, - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Rank": 4, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Id": 199, + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" }, { - "Id": 200, - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "CommandName": "Add-PnPTenantCdnOrigin" + "CommandName": "Add-PnPTenantCdnOrigin", + "Id": 200, + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Id": 201, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Rank": 1, - "CommandName": "Add-PnPTenantSequence" + "CommandName": "Add-PnPTenantSequence", + "Id": 201, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" }, { - "Id": 202, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSite" + "CommandName": "Add-PnPTenantSequenceSite", + "Id": 202, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" }, { - "Id": 203, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSubSite" + "CommandName": "Add-PnPTenantSequenceSubSite", + "Id": 203, + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" }, { - "Id": 204, - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Rank": 1, - "CommandName": "Add-PnPTermToTerm" + "CommandName": "Add-PnPTermToTerm", + "Id": 204, + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" }, { - "Id": 205, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "Rank": 1, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Id": 205, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" }, { - "Id": 206, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "Rank": 2, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Id": 206, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" }, { - "Id": 207, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "Rank": 3, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Id": 207, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" }, { - "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" + "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, - "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" + "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, - "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" + "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, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "CommandName": "Add-PnPWebhookSubscription" + "CommandName": "Add-PnPWebhookSubscription", + "Id": 211, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Id": 212, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Rank": 2, - "CommandName": "Add-PnPWebhookSubscription" + "CommandName": "Add-PnPWebhookSubscription", + "Id": 212, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "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" + "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, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "Rank": 1, - "CommandName": "Add-PnPWebPartToWebPartPage" + "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, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Rank": 2, - "CommandName": "Add-PnPWebPartToWebPartPage" + "CommandName": "Add-PnPWebPartToWebPartPage", + "Id": 215, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" }, { - "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" + "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, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Rank": 2, - "CommandName": "Add-PnPWebPartToWikiPage" + "CommandName": "Add-PnPWebPartToWikiPage", + "Id": 217, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" }, { - "Id": 218, - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Rank": 1, - "CommandName": "Add-PnPWikiPage" + "CommandName": "Add-PnPWikiPage", + "Id": 218, + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" }, { - "Id": 219, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupMember" + "CommandName": "Clear-PnPAzureADGroupMember", + "Id": 219, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" }, { - "Id": 220, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupOwner" + "CommandName": "Clear-PnPAzureADGroupOwner", + "Id": 220, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" }, { - "Id": 221, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Rank": 1, - "CommandName": "Clear-PnPDefaultColumnValues" + "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 221, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" }, { - "Id": 222, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Rank": 2, - "CommandName": "Clear-PnPDefaultColumnValues" + "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 222, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" }, { - "Id": 223, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Clear-PnPListItemAsRecord" + "CommandName": "Clear-PnPListItemAsRecord", + "Id": 223, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Id": 224, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupMember" + "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Id": 224, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" }, { - "Id": 225, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupOwner" + "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Id": 225, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" }, { - "Id": 226, - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 226, + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Id": 227, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Rank": 2, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 227, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" }, { - "Id": 228, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Rank": 3, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 228, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" }, { - "Id": 229, - "Command": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, - "CommandName": "Clear-PnPTenantAppCatalogUrl" + "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Id": 229, + "Command": "Clear-PnPTenantAppCatalogUrl" }, { - "Id": 230, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 230, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 231, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 231, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "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" + "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, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Rank": 1, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 233, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" }, { - "Id": 234, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Rank": 2, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 234, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" }, { - "Id": 235, - "Command": "Convert-PnPSiteTemplate -Path template.xml", "Rank": 1, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Id": 235, + "Command": "Convert-PnPSiteTemplate -Path template.xml" }, { - "Id": 236, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Rank": 2, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Id": 236, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" }, { - "Id": 237, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Rank": 3, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Id": 237, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" }, { - "Id": 238, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Rank": 1, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 238, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" }, { - "Id": 239, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Rank": 2, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 239, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" }, { - "Id": 240, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Rank": 1, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 240, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" }, { - "Id": 241, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Rank": 2, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 241, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" }, { - "Id": 242, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Rank": 3, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 242, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" }, { - "Id": 243, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Rank": 4, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 243, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" }, { - "Id": 244, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 5, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 244, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 245, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Rank": 6, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 245, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" }, { - "Id": 246, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Rank": 7, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 246, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" }, { - "Id": 247, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "Rank": 8, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 247, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" }, { - "Id": 248, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 9, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 248, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 249, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Rank": 10, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 249, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" }, { - "Id": 250, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Rank": 11, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 250, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" }, { - "Id": 251, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 12, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 251, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 252, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 13, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 252, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 253, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Rank": 14, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 253, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" }, { - "Id": 254, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 254, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 255, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 255, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Id": 256, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 256, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Id": 257, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 257, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 258, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 258, + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Id": 259, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 259, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Id": 260, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 260, + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Id": 261, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 261, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 262, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 262, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Id": 263, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 263, + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Id": 264, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 264, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 265, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 265, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Id": 266, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 266, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Id": 267, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 267, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 268, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 268, + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Id": 269, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 269, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Id": 270, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 270, + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Id": 271, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 271, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 272, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 272, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Id": 273, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 273, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Id": 274, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Rank": 1, - "CommandName": "Copy-PnPItemProxy" + "CommandName": "Copy-PnPItemProxy", + "Id": 274, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" }, { - "Id": 275, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Rank": 1, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Id": 275, + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" }, { - "Id": 276, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Rank": 2, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Id": 276, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" }, { - "Id": 277, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Rank": 3, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Id": 277, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" }, { - "Id": 278, - "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" + "CommandName": "Copy-PnPList", + "Id": 278, + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" }, { - "Id": 279, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Rank": 1, - "CommandName": "Copy-PnPTeamsTeam" + "CommandName": "Copy-PnPTeamsTeam", + "Id": 279, + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" }, { - "Id": 280, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Rank": 2, - "CommandName": "Copy-PnPTeamsTeam" + "CommandName": "Copy-PnPTeamsTeam", + "Id": 280, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" }, { - "Id": 281, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "Rank": 3, - "CommandName": "Copy-PnPTeamsTeam" + "CommandName": "Copy-PnPTeamsTeam", + "Id": 281, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "Id": 282, - "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" + "CommandName": "Copy-PnPTeamsTeam", + "Id": 282, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "Id": 283, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Id": 283, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 284, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Id": 284, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Id": 285, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Id": 285, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Id": 286, - "Command": "Disable-PnPPageScheduling", "Rank": 1, - "CommandName": "Disable-PnPPageScheduling" + "CommandName": "Disable-PnPPageScheduling", + "Id": 286, + "Command": "Disable-PnPPageScheduling" }, { - "Id": 287, - "Command": "Disable-PnPPowerShellTelemetry", "Rank": 1, - "CommandName": "Disable-PnPPowerShellTelemetry" + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 287, + "Command": "Disable-PnPPowerShellTelemetry" }, { - "Id": 288, - "Command": "Disable-PnPPowerShellTelemetry -Force", "Rank": 2, - "CommandName": "Disable-PnPPowerShellTelemetry" + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 288, + "Command": "Disable-PnPPowerShellTelemetry -Force" }, { - "Id": 289, - "Command": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite" + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 289, + "Command": "Disable-PnPSharingForNonOwnersOfSite" }, { - "Id": 290, - "Command": "Disable-PnPSiteClassification", "Rank": 1, - "CommandName": "Disable-PnPSiteClassification" + "CommandName": "Disable-PnPSiteClassification", + "Id": 290, + "Command": "Disable-PnPSiteClassification" }, { - "Id": 291, - "Command": "Disconnect-PnPOnline", "Rank": 1, - "CommandName": "Disconnect-PnPOnline" + "CommandName": "Disconnect-PnPOnline", + "Id": 291, + "Command": "Disconnect-PnPOnline" }, { - "Id": 292, - "Command": "Enable-PnPCommSite", "Rank": 1, - "CommandName": "Enable-PnPCommSite" + "CommandName": "Enable-PnPCommSite", + "Id": 292, + "Command": "Enable-PnPCommSite" }, { - "Id": 293, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Rank": 2, - "CommandName": "Enable-PnPCommSite" + "CommandName": "Enable-PnPCommSite", + "Id": 293, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" }, { - "Id": 294, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Id": 294, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 295, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Id": 295, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Id": 296, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Id": 296, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Id": 297, - "Command": "Enable-PnPPageScheduling", "Rank": 1, - "CommandName": "Enable-PnPPageScheduling" + "CommandName": "Enable-PnPPageScheduling", + "Id": 297, + "Command": "Enable-PnPPageScheduling" }, { - "Id": 298, - "Command": "Enable-PnPPowerShellTelemetry", "Rank": 1, - "CommandName": "Enable-PnPPowerShellTelemetry" + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 298, + "Command": "Enable-PnPPowerShellTelemetry" }, { - "Id": 299, - "Command": "Enable-PnPPowerShellTelemetry -Force", "Rank": 2, - "CommandName": "Enable-PnPPowerShellTelemetry" + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 299, + "Command": "Enable-PnPPowerShellTelemetry -Force" }, { - "Id": 300, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Rank": 1, - "CommandName": "Enable-PnPSiteClassification" + "CommandName": "Enable-PnPSiteClassification", + "Id": 300, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" }, { - "Id": 301, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 2, - "CommandName": "Enable-PnPSiteClassification" + "CommandName": "Enable-PnPSiteClassification", + "Id": 301, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Id": 302, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Rank": 1, - "CommandName": "Export-PnPListToSiteTemplate" + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 302, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" }, { - "Id": 303, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Rank": 2, - "CommandName": "Export-PnPListToSiteTemplate" + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 303, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" }, { - "Id": 304, - "Command": "Export-PnPPage -Identity Home.aspx", "Rank": 1, - "CommandName": "Export-PnPPage" + "CommandName": "Export-PnPPage", + "Id": 304, + "Command": "Export-PnPPage -Identity Home.aspx" }, { - "Id": 305, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Rank": 1, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Id": 305, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" }, { - "Id": 306, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Rank": 2, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Id": 306, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" }, { - "Id": 307, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Rank": 3, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Id": 307, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" }, { - "Id": 308, - "Command": "Export-PnPTaxonomy", "Rank": 1, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Id": 308, + "Command": "Export-PnPTaxonomy" }, { - "Id": 309, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Rank": 2, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Id": 309, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt" }, { - "Id": 310, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Rank": 3, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Id": 310, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" }, { - "Id": 311, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Rank": 4, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Id": 311, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" }, { - "Id": 312, - "Command": "Export-PnPTermGroupToXml", "Rank": 1, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Id": 312, + "Command": "Export-PnPTermGroupToXml" }, { - "Id": 313, - "Command": "Export-PnPTermGroupToXml -Out output.xml", "Rank": 2, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Id": 313, + "Command": "Export-PnPTermGroupToXml -Out output.xml" }, { - "Id": 314, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Rank": 3, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Id": 314, + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" }, { - "Id": 315, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "CommandName": "Export-PnPUserInfo" + "CommandName": "Export-PnPUserInfo", + "Id": 315, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Id": 316, - "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" + "CommandName": "Export-PnPUserInfo", + "Id": 316, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Id": 317, - "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "CommandName": "Export-PnPUserProfile" + "CommandName": "Export-PnPUserProfile", + "Id": 317, + "Command": "Export-PnPUserProfile -LoginName user@domain.com" }, { - "Id": 318, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2, - "CommandName": "Export-PnPUserProfile" + "CommandName": "Export-PnPUserProfile", + "Id": 318, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Id": 319, - "Command": "Find-PnPFile -Match *.master", "Rank": 1, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Id": 319, + "Command": "Find-PnPFile -Match *.master" }, { - "Id": 320, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Rank": 2, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Id": 320, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" }, { - "Id": 321, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Rank": 3, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Id": 321, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" }, { - "Id": 322, - "Command": "Get-PnPAccessToken", "Rank": 1, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Id": 322, + "Command": "Get-PnPAccessToken" }, { - "Id": 323, - "Command": "Get-PnPAccessToken -Decoded", "Rank": 2, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Id": 323, + "Command": "Get-PnPAccessToken -Decoded" }, { - "Id": 324, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Rank": 3, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Id": 324, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" }, { - "Id": 325, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Rank": 4, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Id": 325, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM" }, { - "Id": 326, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Rank": 5, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Id": 326, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" }, { - "Id": 327, - "Command": "Get-PnPAlert", "Rank": 1, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Id": 327, + "Command": "Get-PnPAlert" }, { - "Id": 328, - "Command": "Get-PnPAlert -List \"Demo List\"", "Rank": 2, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Id": 328, + "Command": "Get-PnPAlert -List \"Demo List\"" }, { - "Id": 329, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Id": 329, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Id": 330, - "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Rank": 4, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Id": 330, + "Command": "Get-PnPAlert -Title \"Demo Alert\"" }, { - "Id": 331, - "Command": "Get-PnPAlert -AllUsers", "Rank": 5, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Id": 331, + "Command": "Get-PnPAlert -AllUsers" }, { - "Id": 332, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Rank": 6, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Id": 332, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" }, { - "Id": 333, - "Command": "Get-PnPApp", "Rank": 1, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Id": 333, + "Command": "Get-PnPApp" }, { - "Id": 334, - "Command": "Get-PnPApp -Scope Site", "Rank": 2, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Id": 334, + "Command": "Get-PnPApp -Scope Site" }, { - "Id": 335, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 3, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Id": 335, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 336, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Rank": 1, - "CommandName": "Get-PnPAppErrors" + "CommandName": "Get-PnPAppErrors", + "Id": 336, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" }, { - "Id": 337, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Rank": 2, - "CommandName": "Get-PnPAppErrors" + "CommandName": "Get-PnPAppErrors", + "Id": 337, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" }, { - "Id": 338, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Rank": 1, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Id": 338, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"" }, { - "Id": 339, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 2, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Id": 339, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 340, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Rank": 3, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Id": 340, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" }, { - "Id": 341, - "Command": "Get-PnPApplicationCustomizer", "Rank": 1, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 341, + "Command": "Get-PnPApplicationCustomizer" }, { - "Id": 342, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 342, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 343, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Rank": 3, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 343, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" }, { - "Id": 344, - "Command": "Get-PnPAuditing", "Rank": 1, - "CommandName": "Get-PnPAuditing" + "CommandName": "Get-PnPAuditing", + "Id": 344, + "Command": "Get-PnPAuditing" }, { - "Id": 345, - "Command": "Get-PnPAuthenticationRealm", "Rank": 1, - "CommandName": "Get-PnPAuthenticationRealm" + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 345, + "Command": "Get-PnPAuthenticationRealm" }, { - "Id": 346, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Rank": 2, - "CommandName": "Get-PnPAuthenticationRealm" + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 346, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" }, { - "Id": 347, - "Command": "Get-PnPAvailableLanguage", "Rank": 1, - "CommandName": "Get-PnPAvailableLanguage" + "CommandName": "Get-PnPAvailableLanguage", + "Id": 347, + "Command": "Get-PnPAvailableLanguage" }, { - "Id": 348, - "Command": "Get-PnPAvailableSensitivityLabel", "Rank": 1, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 348, + "Command": "Get-PnPAvailableSensitivityLabel" }, { - "Id": 349, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Rank": 2, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 349, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" }, { - "Id": 350, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Rank": 3, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 350, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" }, { - "Id": 351, - "Command": "Get-PnPAvailableSiteClassification", "Rank": 1, - "CommandName": "Get-PnPAvailableSiteClassification" + "CommandName": "Get-PnPAvailableSiteClassification", + "Id": 351, + "Command": "Get-PnPAvailableSiteClassification" }, { - "Id": 352, - "Command": "Get-PnPAzureACSPrincipal", "Rank": 1, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 352, + "Command": "Get-PnPAzureACSPrincipal" }, { - "Id": 353, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Rank": 2, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 353, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" }, { - "Id": 354, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Rank": 3, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 354, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" }, { - "Id": 355, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Rank": 4, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 355, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" }, { - "Id": 356, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 356, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Id": 357, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 357, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" }, { - "Id": 358, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 358, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" }, { - "Id": 359, - "Command": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 359, + "Command": "Get-PnPAzureADActivityReportSignIn" }, { - "Id": 360, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 360, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" }, { - "Id": 361, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 361, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" }, { - "Id": 362, - "Command": "Get-PnPAzureADApp", "Rank": 1, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Id": 362, + "Command": "Get-PnPAzureADApp" }, { - "Id": 363, - "Command": "Get-PnPAzureADApp -Identity MyApp", "Rank": 2, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Id": 363, + "Command": "Get-PnPAzureADApp -Identity MyApp" }, { - "Id": 364, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Id": 364, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 365, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Rank": 4, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Id": 365, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 366, - "Command": "Get-PnPAzureADAppPermission", "Rank": 1, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 366, + "Command": "Get-PnPAzureADAppPermission" }, { - "Id": 367, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Rank": 2, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 367, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp" }, { - "Id": 368, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 368, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 369, - "Command": "Get-PnPAzureADAppSitePermission", "Rank": 1, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 369, + "Command": "Get-PnPAzureADAppSitePermission" }, { - "Id": 370, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 370, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" }, { - "Id": 371, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Rank": 3, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 371, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" }, { - "Id": 372, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Rank": 4, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 372, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" }, { - "Id": 373, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Rank": 5, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 373, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" }, { - "Id": 374, - "Command": "Get-PnPAzureADGroup", "Rank": 1, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Id": 374, + "Command": "Get-PnPAzureADGroup" }, { - "Id": 375, - "Command": "Get-PnPAzureADGroup -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Id": 375, + "Command": "Get-PnPAzureADGroup -Identity $groupId" }, { - "Id": 376, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Rank": 3, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Id": 376, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" }, { - "Id": 377, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Rank": 4, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Id": 377, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" }, { - "Id": 378, - "Command": "Get-PnPAzureADGroup -Identity $group", "Rank": 5, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Id": 378, + "Command": "Get-PnPAzureADGroup -Identity $group" }, { - "Id": 379, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPAzureADGroupMember" + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 379, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId" }, { - "Id": 380, - "Command": "Get-PnPAzureADGroupMember -Identity $group", "Rank": 2, - "CommandName": "Get-PnPAzureADGroupMember" + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 380, + "Command": "Get-PnPAzureADGroupMember -Identity $group" }, { - "Id": 381, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPAzureADGroupOwner" + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 381, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" }, { - "Id": 382, - "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Rank": 2, - "CommandName": "Get-PnPAzureADGroupOwner" + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 382, + "Command": "Get-PnPAzureADGroupOwner -Identity $group" }, { - "Id": 383, - "Command": "Get-PnPAzureADServicePrincipal", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 383, + "Command": "Get-PnPAzureADServicePrincipal" }, { - "Id": 384, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 384, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" }, { - "Id": 385, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Rank": 3, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 385, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" }, { - "Id": 386, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Rank": 4, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 386, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" }, { - "Id": 387, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 387, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 388, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 388, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 389, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 389, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Id": 390, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 390, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 391, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 391, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" }, { - "Id": 392, - "Command": "Get-PnPAzureADUser", "Rank": 1, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 392, + "Command": "Get-PnPAzureADUser" }, { - "Id": 393, - "Command": "Get-PnPAzureADUser -EndIndex 50", "Rank": 2, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 393, + "Command": "Get-PnPAzureADUser -EndIndex 50" }, { - "Id": 394, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 3, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 394, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Id": 395, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Rank": 4, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 395, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com" }, { - "Id": 396, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Rank": 5, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 396, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" }, { - "Id": 397, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Rank": 6, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 397, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" }, { - "Id": 398, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Rank": 7, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 398, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" }, { - "Id": 399, - "Command": "Get-PnPAzureADUser -Delta", "Rank": 8, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 399, + "Command": "Get-PnPAzureADUser -Delta" }, { - "Id": 400, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Rank": 9, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 400, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" }, { - "Id": 401, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Rank": 10, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 401, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" }, { - "Id": 402, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Rank": 1, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Id": 402, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" }, { - "Id": 403, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Rank": 2, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Id": 403, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "Id": 404, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Rank": 3, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Id": 404, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" }, { - "Id": 405, - "Command": "Get-PnPBrowserIdleSignout", "Rank": 1, - "CommandName": "Get-PnPBrowserIdleSignout" + "CommandName": "Get-PnPBrowserIdleSignout", + "Id": 405, + "Command": "Get-PnPBrowserIdleSignout" }, { - "Id": 406, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Rank": 1, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 406, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" }, { - "Id": 407, - "Command": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 407, + "Command": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Id": 408, - "Command": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 408, + "Command": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 409, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Rank": 2, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 409, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" }, { - "Id": 410, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Rank": 3, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 410, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" }, { - "Id": 411, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 411, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 412, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Rank": 5, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 412, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" }, { - "Id": 413, - "Command": "Get-PnPChangeLog", "Rank": 1, - "CommandName": "Get-PnPChangeLog" + "CommandName": "Get-PnPChangeLog", + "Id": 413, + "Command": "Get-PnPChangeLog" }, { - "Id": 414, - "Command": "Get-PnPChangeLog -Nightly", "Rank": 2, - "CommandName": "Get-PnPChangeLog" + "CommandName": "Get-PnPChangeLog", + "Id": 414, + "Command": "Get-PnPChangeLog -Nightly" }, { - "Id": 415, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Rank": 1, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 415, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" }, { - "Id": 416, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Rank": 2, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 416, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" }, { - "Id": 417, - "Command": "Get-PnPContentType", "Rank": 1, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Id": 417, + "Command": "Get-PnPContentType" }, { - "Id": 418, - "Command": "Get-PnPContentType -InSiteHierarchy", "Rank": 2, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Id": 418, + "Command": "Get-PnPContentType -InSiteHierarchy" }, { - "Id": 419, - "Command": "Get-PnPContentType -Identity \"Project Document\"", "Rank": 3, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Id": 419, + "Command": "Get-PnPContentType -Identity \"Project Document\"" }, { - "Id": 420, - "Command": "Get-PnPContentType -List \"Documents\"", "Rank": 4, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Id": 420, + "Command": "Get-PnPContentType -List \"Documents\"" }, { - "Id": 421, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Rank": 1, - "CommandName": "Get-PnPContentTypePublishingStatus" + "CommandName": "Get-PnPContentTypePublishingStatus", + "Id": 421, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" }, { - "Id": 422, - "Command": "Get-PnPCustomAction", "Rank": 1, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Id": 422, + "Command": "Get-PnPCustomAction" }, { - "Id": 423, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Id": 423, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 424, - "Command": "Get-PnPCustomAction -Scope web", "Rank": 3, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Id": 424, + "Command": "Get-PnPCustomAction -Scope web" }, { - "Id": 425, - "Command": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 425, + "Command": "Get-PnPDeletedMicrosoft365Group" }, { - "Id": 426, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 2, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 426, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 427, - "Command": "Get-PnPDeletedTeam", "Rank": 1, - "CommandName": "Get-PnPDeletedTeam" + "CommandName": "Get-PnPDeletedTeam", + "Id": 427, + "Command": "Get-PnPDeletedTeam" }, { - "Id": 428, - "Command": "Get-PnPDiagnostics", "Rank": 1, - "CommandName": "Get-PnPDiagnostics" + "CommandName": "Get-PnPDiagnostics", + "Id": 428, + "Command": "Get-PnPDiagnostics" }, { - "Id": 429, - "Command": "Get-PnPDisableSpacesActivation", "Rank": 1, - "CommandName": "Get-PnPDisableSpacesActivation" + "CommandName": "Get-PnPDisableSpacesActivation", + "Id": 429, + "Command": "Get-PnPDisableSpacesActivation" }, { - "Id": 430, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Rank": 1, - "CommandName": "Get-PnPDocumentSetTemplate" + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 430, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" }, { - "Id": 431, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Rank": 2, - "CommandName": "Get-PnPDocumentSetTemplate" + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 431, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" }, { - "Id": 432, - "Command": "Get-PnPEventReceiver", "Rank": 1, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 432, + "Command": "Get-PnPEventReceiver" }, { - "Id": 433, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 433, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 434, - "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Rank": 3, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 434, + "Command": "Get-PnPEventReceiver -Identity MyReceiver" }, { - "Id": 435, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Rank": 4, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 435, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"" }, { - "Id": 436, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 5, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 436, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 437, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Rank": 6, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 437, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" }, { - "Id": 438, - "Command": "Get-PnPEventReceiver -Scope Site", "Rank": 7, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 438, + "Command": "Get-PnPEventReceiver -Scope Site" }, { - "Id": 439, - "Command": "Get-PnPEventReceiver -Scope Web", "Rank": 8, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 439, + "Command": "Get-PnPEventReceiver -Scope Web" }, { - "Id": 440, - "Command": "Get-PnPEventReceiver -Scope All", "Rank": 9, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 440, + "Command": "Get-PnPEventReceiver -Scope All" }, { - "Id": 441, - "Command": "Get-PnPException", "Rank": 1, - "CommandName": "Get-PnPException" + "CommandName": "Get-PnPException", + "Id": 441, + "Command": "Get-PnPException" }, { - "Id": 442, - "Command": "Get-PnPException -All", "Rank": 2, - "CommandName": "Get-PnPException" + "CommandName": "Get-PnPException", + "Id": 442, + "Command": "Get-PnPException -All" }, { - "Id": 443, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Rank": 1, - "CommandName": "Get-PnPExternalUser" + "CommandName": "Get-PnPExternalUser", + "Id": 443, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" }, { - "Id": 444, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Rank": 2, - "CommandName": "Get-PnPExternalUser" + "CommandName": "Get-PnPExternalUser", + "Id": 444, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" }, { - "Id": 445, - "Command": "Get-PnPFeature", "Rank": 1, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Id": 445, + "Command": "Get-PnPFeature" }, { - "Id": 446, - "Command": "Get-PnPFeature -Scope Site", "Rank": 2, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Id": 446, + "Command": "Get-PnPFeature -Scope Site" }, { - "Id": 447, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 3, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Id": 447, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 448, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Rank": 4, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Id": 448, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" }, { - "Id": 449, - "Command": "Get-PnPField", "Rank": 1, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Id": 449, + "Command": "Get-PnPField" }, { - "Id": 450, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Id": 450, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Id": 451, - "Command": "Get-PnPField -Group \"Custom Columns\"", "Rank": 3, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Id": 451, + "Command": "Get-PnPField -Group \"Custom Columns\"" }, { - "Id": 452, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Rank": 1, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Id": 452, + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" }, { - "Id": 453, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Rank": 2, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Id": 453, + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" }, { - "Id": 454, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Rank": 3, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Id": 454, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" }, { - "Id": 455, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Rank": 4, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Id": 455, + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" }, { - "Id": 456, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Rank": 5, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Id": 456, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" }, { - "Id": 457, - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Rank": 6, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Id": 457, + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" }, { - "Id": 458, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Rank": 7, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Id": 458, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" }, { - "Id": 459, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Get-PnPFileSharingLink" + "CommandName": "Get-PnPFileSharingLink", + "Id": 459, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 460, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Rank": 1, - "CommandName": "Get-PnPFileVersion" + "CommandName": "Get-PnPFileVersion", + "Id": 460, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" }, { - "Id": 461, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Rank": 2, - "CommandName": "Get-PnPFileVersion" + "CommandName": "Get-PnPFileVersion", + "Id": 461, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" }, { - "Id": 462, - "Command": "Get-PnPFlow -AsAdmin", "Rank": 1, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Id": 462, + "Command": "Get-PnPFlow -AsAdmin" }, { - "Id": 463, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "Rank": 2, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Id": 463, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe" }, { - "Id": 464, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Rank": 3, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Id": 464, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { - "Id": 465, - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Rank": 1, - "CommandName": "Get-PnPFlowOwner" + "CommandName": "Get-PnPFlowOwner", + "Id": 465, + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" }, { - "Id": 466, - "Command": "Get-PnPFolder", "Rank": 1, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Id": 466, + "Command": "Get-PnPFolder" }, { - "Id": 467, - "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Rank": 2, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Id": 467, + "Command": "Get-PnPFolder -Url \"Shared Documents\"" }, { - "Id": 468, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Id": 468, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" }, { - "Id": 469, - "Command": "Get-PnPFolder -List \"Shared Documents\"", "Rank": 4, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Id": 469, + "Command": "Get-PnPFolder -List \"Shared Documents\"" }, { - "Id": 470, - "Command": "Get-PnPFolderFile", "Rank": 1, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Id": 470, + "Command": "Get-PnPFolderFile" }, { - "Id": 471, - "Command": "Get-PnPFolderFile -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Id": 471, + "Command": "Get-PnPFolderFile -Recurse" }, { - "Id": 472, - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Id": 472, + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"" }, { - "Id": 473, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Id": 473, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Id": 474, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 5, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Id": 474, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Id": 475, - "Command": "Get-PnPFolderFolder", "Rank": 1, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Id": 475, + "Command": "Get-PnPFolderFolder" }, { - "Id": 476, - "Command": "Get-PnPFolderFolder -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Id": 476, + "Command": "Get-PnPFolderFolder -Recurse" }, { - "Id": 477, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Id": 477, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"" }, { - "Id": 478, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "Rank": 4, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Id": 478, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" }, { - "Id": 479, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "Rank": 5, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Id": 479, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" }, { - "Id": 480, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Id": 480, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Id": 481, - "Command": "Get-PnPFolderItem", "Rank": 1, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Id": 481, + "Command": "Get-PnPFolderItem" }, { - "Id": 482, - "Command": "Get-PnPFolderItem -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Id": 482, + "Command": "Get-PnPFolderItem -Recurse" }, { - "Id": 483, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Id": 483, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" }, { - "Id": 484, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Id": 484, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Id": 485, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Rank": 5, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Id": 485, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" }, { - "Id": 486, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Id": 486, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Id": 487, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Get-PnPFolderSharingLink" + "CommandName": "Get-PnPFolderSharingLink", + "Id": 487, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 488, - "Command": "Get-PnPFolderStorageMetric", "Rank": 1, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 488, + "Command": "Get-PnPFolderStorageMetric" }, { - "Id": 489, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Rank": 2, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 489, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" }, { - "Id": 490, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 490, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" }, { - "Id": 491, - "Command": "Get-PnPFooter", "Rank": 1, - "CommandName": "Get-PnPFooter" + "CommandName": "Get-PnPFooter", + "Id": 491, + "Command": "Get-PnPFooter" }, { - "Id": 492, - "Command": "Get-PnPGraphAccessToken", "Rank": 1, - "CommandName": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPGraphAccessToken", + "Id": 492, + "Command": "Get-PnPGraphAccessToken" }, { - "Id": 493, - "Command": "Get-PnPGraphAccessToken -Decoded", "Rank": 2, - "CommandName": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPGraphAccessToken", + "Id": 493, + "Command": "Get-PnPGraphAccessToken -Decoded" }, { - "Id": 494, - "Command": "Get-PnPGraphSubscription", "Rank": 1, - "CommandName": "Get-PnPGraphSubscription" + "CommandName": "Get-PnPGraphSubscription", + "Id": 494, + "Command": "Get-PnPGraphSubscription" }, { - "Id": 495, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 2, - "CommandName": "Get-PnPGraphSubscription" + "CommandName": "Get-PnPGraphSubscription", + "Id": 495, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Id": 496, - "Command": "Get-PnPGroup", "Rank": 1, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Id": 496, + "Command": "Get-PnPGroup" }, { - "Id": 497, - "Command": "Get-PnPGroup -Identity 'My Site Users'", "Rank": 2, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Id": 497, + "Command": "Get-PnPGroup -Identity 'My Site Users'" }, { - "Id": 498, - "Command": "Get-PnPGroup -AssociatedMemberGroup", "Rank": 3, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Id": 498, + "Command": "Get-PnPGroup -AssociatedMemberGroup" }, { - "Id": 499, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Rank": 1, - "CommandName": "Get-PnPGroupMember" + "CommandName": "Get-PnPGroupMember", + "Id": 499, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" }, { - "Id": 500, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Rank": 2, - "CommandName": "Get-PnPGroupMember" + "CommandName": "Get-PnPGroupMember", + "Id": 500, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" }, { - "Id": 501, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Rank": 1, - "CommandName": "Get-PnPGroupPermissions" + "CommandName": "Get-PnPGroupPermissions", + "Id": 501, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" }, { - "Id": 502, - "Command": "Get-PnPHideDefaultThemes", "Rank": 1, - "CommandName": "Get-PnPHideDefaultThemes" + "CommandName": "Get-PnPHideDefaultThemes", + "Id": 502, + "Command": "Get-PnPHideDefaultThemes" }, { - "Id": 503, - "Command": "Get-PnPHomePage", "Rank": 1, - "CommandName": "Get-PnPHomePage" + "CommandName": "Get-PnPHomePage", + "Id": 503, + "Command": "Get-PnPHomePage" }, { - "Id": 504, - "Command": "Get-PnPHomeSite", "Rank": 1, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Id": 504, + "Command": "Get-PnPHomeSite" }, { - "Id": 505, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Rank": 2, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Id": 505, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" }, { - "Id": 506, - "Command": "Get-PnPHomeSite -Detailed", "Rank": 3, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Id": 506, + "Command": "Get-PnPHomeSite -Detailed" }, { - "Id": 507, - "Command": "Get-PnPHubSite", "Rank": 1, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Id": 507, + "Command": "Get-PnPHubSite" }, { - "Id": 508, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Id": 508, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Id": 509, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Rank": 3, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Id": 509, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" }, { - "Id": 510, - "Command": "Get-PnPHubSiteChild", "Rank": 1, - "CommandName": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSiteChild", + "Id": 510, + "Command": "Get-PnPHubSiteChild" }, { - "Id": 511, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "CommandName": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSiteChild", + "Id": 511, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Id": 512, - "Command": "Get-PnPInPlaceRecordsManagement", "Rank": 1, - "CommandName": "Get-PnPInPlaceRecordsManagement" + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Id": 512, + "Command": "Get-PnPInPlaceRecordsManagement" }, { - "Id": 513, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Rank": 1, - "CommandName": "Get-PnPIsSiteAliasAvailable" + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Id": 513, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" }, { - "Id": 514, - "Command": "Get-PnPJavaScriptLink", "Rank": 1, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 514, + "Command": "Get-PnPJavaScriptLink" }, { - "Id": 515, - "Command": "Get-PnPJavaScriptLink -Scope All", "Rank": 2, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 515, + "Command": "Get-PnPJavaScriptLink -Scope All" }, { - "Id": 516, - "Command": "Get-PnPJavaScriptLink -Scope Web", "Rank": 3, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 516, + "Command": "Get-PnPJavaScriptLink -Scope Web" }, { - "Id": 517, - "Command": "Get-PnPJavaScriptLink -Scope Site", "Rank": 4, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 517, + "Command": "Get-PnPJavaScriptLink -Scope Site" }, { - "Id": 518, - "Command": "Get-PnPJavaScriptLink -Name Test", "Rank": 5, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 518, + "Command": "Get-PnPJavaScriptLink -Name Test" }, { - "Id": 519, - "Command": "Get-PnPKnowledgeHubSite", "Rank": 1, - "CommandName": "Get-PnPKnowledgeHubSite" + "CommandName": "Get-PnPKnowledgeHubSite", + "Id": 519, + "Command": "Get-PnPKnowledgeHubSite" }, { - "Id": 520, - "Command": "Get-PnPLabel", "Rank": 1, - "CommandName": "Get-PnPLabel" + "CommandName": "Get-PnPLabel", + "Id": 520, + "Command": "Get-PnPLabel" }, { - "Id": 521, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Rank": 2, - "CommandName": "Get-PnPLabel" + "CommandName": "Get-PnPLabel", + "Id": 521, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" }, { - "Id": 522, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Rank": 1, - "CommandName": "Get-PnPLargeListOperationStatus" + "CommandName": "Get-PnPLargeListOperationStatus", + "Id": 522, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" }, { - "Id": 523, - "Command": "Get-PnPList", "Rank": 1, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Id": 523, + "Command": "Get-PnPList" }, { - "Id": 524, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 2, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Id": 524, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 525, - "Command": "Get-PnPList -Identity Lists/Announcements", "Rank": 3, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Id": 525, + "Command": "Get-PnPList -Identity Lists/Announcements" }, { - "Id": 526, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Rank": 4, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Id": 526, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" }, { - "Id": 527, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Rank": 5, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Id": 527, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" }, { - "Id": 528, - "Command": "Get-PnPListDesign", "Rank": 1, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Id": 528, + "Command": "Get-PnPListDesign" }, { - "Id": 529, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Id": 529, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 530, - "Command": "Get-PnPListDesign -Identity ListEvent", "Rank": 3, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Id": 530, + "Command": "Get-PnPListDesign -Identity ListEvent" }, { - "Id": 531, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Rank": 1, - "CommandName": "Get-PnPListInformationRightsManagement" + "CommandName": "Get-PnPListInformationRightsManagement", + "Id": 531, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" }, { - "Id": 532, - "Command": "Get-PnPListItem -List Tasks", "Rank": 1, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 532, + "Command": "Get-PnPListItem -List Tasks" }, { - "Id": 533, - "Command": "Get-PnPListItem -List Tasks -Id 1", "Rank": 2, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 533, + "Command": "Get-PnPListItem -List Tasks -Id 1" }, { - "Id": 534, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Rank": 3, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 534, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" }, { - "Id": 535, - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "Rank": 4, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 535, + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" }, { - "Id": 536, - "Command": "Get-PnPListItem -List Tasks -Query \"\"", "Rank": 5, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 536, + "Command": "Get-PnPListItem -List Tasks -Query \"\"" }, { - "Id": 537, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Rank": 6, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 537, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000" }, { - "Id": 538, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Rank": 7, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 538, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" }, { - "Id": 539, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Rank": 8, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 539, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" }, { - "Id": 540, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Rank": 9, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 540, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" }, { - "Id": 541, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "Rank": 1, - "CommandName": "Get-PnPListItemAttachment" + "CommandName": "Get-PnPListItemAttachment", + "Id": 541, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" }, { - "Id": 542, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "Rank": 2, - "CommandName": "Get-PnPListItemAttachment" + "CommandName": "Get-PnPListItemAttachment", + "Id": 542, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" }, { - "Id": 543, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemComment" + "CommandName": "Get-PnPListItemComment", + "Id": 543, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1" }, { - "Id": 544, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemPermission" + "CommandName": "Get-PnPListItemPermission", + "Id": 544, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" }, { - "Id": 545, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemVersion" + "CommandName": "Get-PnPListItemVersion", + "Id": 545, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" }, { - "Id": 546, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Rank": 1, - "CommandName": "Get-PnPListPermissions" + "CommandName": "Get-PnPListPermissions", + "Id": 546, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" }, { - "Id": 547, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Rank": 2, - "CommandName": "Get-PnPListPermissions" + "CommandName": "Get-PnPListPermissions", + "Id": 547, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { - "Id": 548, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Rank": 1, - "CommandName": "Get-PnPListRecordDeclaration" + "CommandName": "Get-PnPListRecordDeclaration", + "Id": 548, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" }, { - "Id": 549, - "Command": "Get-PnPMasterPage", "Rank": 1, - "CommandName": "Get-PnPMasterPage" + "CommandName": "Get-PnPMasterPage", + "Id": 549, + "Command": "Get-PnPMasterPage" }, { - "Id": 550, - "Command": "Get-PnPMessageCenterAnnouncement", "Rank": 1, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 550, + "Command": "Get-PnPMessageCenterAnnouncement" }, { - "Id": 551, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Rank": 2, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 551, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" }, { - "Id": 552, - "Command": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 552, + "Command": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Id": 553, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 553, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" }, { - "Id": 554, - "Command": "Get-PnPMicrosoft365Group", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 554, + "Command": "Get-PnPMicrosoft365Group" }, { - "Id": 555, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 555, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId" }, { - "Id": 556, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 556, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" }, { - "Id": 557, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Rank": 4, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 557, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" }, { - "Id": 558, - "Command": "Get-PnPMicrosoft365Group -Identity $group", "Rank": 5, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 558, + "Command": "Get-PnPMicrosoft365Group -Identity $group" }, { - "Id": 559, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Rank": 6, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 559, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" }, { - "Id": 560, - "Command": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 560, + "Command": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Id": 561, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 561, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" }, { - "Id": 562, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 562, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 563, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 563, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" }, { - "Id": 564, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 564, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" }, { - "Id": 565, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 565, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" }, { - "Id": 566, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 566, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" }, { - "Id": 567, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 567, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" }, { - "Id": 568, - "Command": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 568, + "Command": "Get-PnPMicrosoft365GroupSettings" }, { - "Id": 569, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 569, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" }, { - "Id": 570, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 570, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Id": 571, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 571, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" }, { - "Id": 572, - "Command": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 572, + "Command": "Get-PnPMicrosoft365GroupTeam" }, { - "Id": 573, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 573, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" }, { - "Id": 574, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 574, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 575, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 575, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Id": 576, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 576, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" }, { - "Id": 577, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 577, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 578, - "Command": "Get-PnPNavigationNode", "Rank": 1, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Id": 578, + "Command": "Get-PnPNavigationNode" }, { - "Id": 579, - "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Rank": 2, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Id": 579, + "Command": "Get-PnPNavigationNode -Location QuickLaunch" }, { - "Id": 580, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Rank": 3, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Id": 580, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar" }, { - "Id": 581, - "Command": "Get-PnPOrgAssetsLibrary", "Rank": 1, - "CommandName": "Get-PnPOrgAssetsLibrary" + "CommandName": "Get-PnPOrgAssetsLibrary", + "Id": 581, + "Command": "Get-PnPOrgAssetsLibrary" }, { - "Id": 582, - "Command": "Get-PnPOrgNewsSite", "Rank": 1, - "CommandName": "Get-PnPOrgNewsSite" + "CommandName": "Get-PnPOrgNewsSite", + "Id": 582, + "Command": "Get-PnPOrgNewsSite" }, { - "Id": 583, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Rank": 1, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Id": 583, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" }, { - "Id": 584, - "Command": "Get-PnPPage \"MyPage\"", "Rank": 2, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Id": 584, + "Command": "Get-PnPPage \"MyPage\"" }, { - "Id": 585, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Rank": 3, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Id": 585, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" }, { - "Id": 586, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Rank": 4, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Id": 586, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" }, { - "Id": 587, - "Command": "Get-PnPPageComponent -Page Home", "Rank": 1, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Id": 587, + "Command": "Get-PnPPageComponent -Page Home" }, { - "Id": 588, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Id": 588, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 589, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Rank": 3, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Id": 589, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable" }, { - "Id": 590, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "CommandName": "Get-PnPPlannerBucket" + "CommandName": "Get-PnPPlannerBucket", + "Id": 590, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Id": 591, - "Command": "Get-PnPPlannerConfiguration", "Rank": 1, - "CommandName": "Get-PnPPlannerConfiguration" + "CommandName": "Get-PnPPlannerConfiguration", + "Id": 591, + "Command": "Get-PnPPlannerConfiguration" }, { - "Id": 592, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Rank": 1, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Id": 592, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" }, { - "Id": 593, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Rank": 2, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Id": 593, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" }, { - "Id": 594, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Rank": 3, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Id": 594, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" }, { - "Id": 595, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "CommandName": "Get-PnPPlannerRosterMember" + "CommandName": "Get-PnPPlannerRosterMember", + "Id": 595, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Id": 596, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Rank": 1, - "CommandName": "Get-PnPPlannerRosterPlan" + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 596, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" }, { - "Id": 597, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 2, - "CommandName": "Get-PnPPlannerRosterPlan" + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 597, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 598, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Id": 598, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Id": 599, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 2, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Id": 599, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Id": 600, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 3, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Id": 600, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Id": 601, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Get-PnPPlannerUserPolicy" + "CommandName": "Get-PnPPlannerUserPolicy", + "Id": 601, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 602, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "Rank": 1, - "CommandName": "Get-PnPPowerPlatformConnector" + "CommandName": "Get-PnPPowerPlatformConnector", + "Id": 602, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" }, { - "Id": 603, - "Command": "Get-PnPPowerPlatformEnvironment", "Rank": 1, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 603, + "Command": "Get-PnPPowerPlatformEnvironment" }, { - "Id": 604, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Rank": 2, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 604, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" }, { - "Id": 605, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Rank": 3, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 605, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" }, { - "Id": 606, - "Command": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, - "CommandName": "Get-PnPPowerShellTelemetryEnabled" + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Id": 606, + "Command": "Get-PnPPowerShellTelemetryEnabled" }, { - "Id": 607, - "Command": "Get-PnPPropertyBag", "Rank": 1, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Id": 607, + "Command": "Get-PnPPropertyBag" }, { - "Id": 608, - "Command": "Get-PnPPropertyBag -Key MyKey", "Rank": 2, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Id": 608, + "Command": "Get-PnPPropertyBag -Key MyKey" }, { - "Id": 609, - "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Rank": 3, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Id": 609, + "Command": "Get-PnPPropertyBag -Folder /MyFolder" }, { - "Id": 610, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Rank": 4, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Id": 610, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" }, { - "Id": 611, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Rank": 5, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Id": 611, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" }, { - "Id": 612, - "Command": "Get-PnPPublishingImageRendition", "Rank": 1, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 612, + "Command": "Get-PnPPublishingImageRendition" }, { - "Id": 613, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Rank": 2, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 613, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" }, { - "Id": 614, - "Command": "Get-PnPPublishingImageRendition -Identity 2", "Rank": 3, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 614, + "Command": "Get-PnPPublishingImageRendition -Identity 2" }, { - "Id": 615, - "Command": "Get-PnPRecycleBinItem", "Rank": 1, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 615, + "Command": "Get-PnPRecycleBinItem" }, { - "Id": 616, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Rank": 2, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 616, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" }, { - "Id": 617, - "Command": "Get-PnPRecycleBinItem -FirstStage", "Rank": 3, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 617, + "Command": "Get-PnPRecycleBinItem -FirstStage" }, { - "Id": 618, - "Command": "Get-PnPRecycleBinItem -SecondStage", "Rank": 4, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 618, + "Command": "Get-PnPRecycleBinItem -SecondStage" }, { - "Id": 619, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Rank": 5, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 619, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000" }, { - "Id": 620, - "Command": "Get-PnPRequestAccessEmails", "Rank": 1, - "CommandName": "Get-PnPRequestAccessEmails" + "CommandName": "Get-PnPRequestAccessEmails", + "Id": 620, + "Command": "Get-PnPRequestAccessEmails" }, { - "Id": 621, - "Command": "Get-PnPRetentionLabel", "Rank": 1, - "CommandName": "Get-PnPRetentionLabel" + "CommandName": "Get-PnPRetentionLabel", + "Id": 621, + "Command": "Get-PnPRetentionLabel" }, { - "Id": 622, - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "Rank": 2, - "CommandName": "Get-PnPRetentionLabel" + "CommandName": "Get-PnPRetentionLabel", + "Id": 622, + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" }, { - "Id": 623, - "Command": "Get-PnPRoleDefinition", "Rank": 1, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Id": 623, + "Command": "Get-PnPRoleDefinition" }, { - "Id": 624, - "Command": "Get-PnPRoleDefinition -Identity Read", "Rank": 2, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Id": 624, + "Command": "Get-PnPRoleDefinition -Identity Read" }, { - "Id": 625, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Rank": 3, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Id": 625, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" }, { - "Id": 626, - "Command": "Get-PnPSearchConfiguration", "Rank": 1, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 626, + "Command": "Get-PnPSearchConfiguration" }, { - "Id": 627, - "Command": "Get-PnPSearchConfiguration -Scope Site", "Rank": 2, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 627, + "Command": "Get-PnPSearchConfiguration -Scope Site" }, { - "Id": 628, - "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Rank": 3, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 628, + "Command": "Get-PnPSearchConfiguration -Scope Subscription" }, { - "Id": 629, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 629, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 630, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Rank": 5, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 630, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" }, { - "Id": 631, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Rank": 6, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 631, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" }, { - "Id": 632, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Rank": 7, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 632, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" }, { - "Id": 633, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Rank": 8, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 633, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" }, { - "Id": 634, - "Command": "Get-PnPSearchCrawlLog", "Rank": 1, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 634, + "Command": "Get-PnPSearchCrawlLog" }, { - "Id": 635, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Rank": 2, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 635, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" }, { - "Id": 636, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Rank": 3, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 636, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" }, { - "Id": 637, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Rank": 4, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 637, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" }, { - "Id": 638, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Rank": 5, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 638, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" }, { - "Id": 639, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Rank": 6, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 639, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" }, { - "Id": 640, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Rank": 7, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 640, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" }, { - "Id": 641, - "Command": "Get-PnPSearchSettings", "Rank": 1, - "CommandName": "Get-PnPSearchSettings" + "CommandName": "Get-PnPSearchSettings", + "Id": 641, + "Command": "Get-PnPSearchSettings" }, { - "Id": 642, - "Command": "Get-PnPServiceCurrentHealth", "Rank": 1, - "CommandName": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 642, + "Command": "Get-PnPServiceCurrentHealth" }, { - "Id": 643, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Rank": 2, - "CommandName": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 643, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" }, { - "Id": 644, - "Command": "Get-PnPServiceHealthIssue", "Rank": 1, - "CommandName": "Get-PnPServiceHealthIssue" + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 644, + "Command": "Get-PnPServiceHealthIssue" }, { - "Id": 645, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Rank": 2, - "CommandName": "Get-PnPServiceHealthIssue" + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 645, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" }, { - "Id": 646, - "Command": "Get-PnPSharePointAddIn", "Rank": 1, - "CommandName": "Get-PnPSharePointAddIn" + "CommandName": "Get-PnPSharePointAddIn", + "Id": 646, + "Command": "Get-PnPSharePointAddIn" }, { - "Id": 647, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Rank": 2, - "CommandName": "Get-PnPSharePointAddIn" + "CommandName": "Get-PnPSharePointAddIn", + "Id": 647, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites" }, { - "Id": 648, - "Command": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, - "CommandName": "Get-PnPSharingForNonOwnersOfSite" + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Id": 648, + "Command": "Get-PnPSharingForNonOwnersOfSite" }, { - "Id": 649, - "Command": "Get-PnPSite", "Rank": 1, - "CommandName": "Get-PnPSite" + "CommandName": "Get-PnPSite", + "Id": 649, + "Command": "Get-PnPSite" }, { - "Id": 650, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Rank": 2, - "CommandName": "Get-PnPSite" + "CommandName": "Get-PnPSite", + "Id": 650, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" }, { - "Id": 651, - "Command": "Get-PnPSiteClosure", "Rank": 1, - "CommandName": "Get-PnPSiteClosure" + "CommandName": "Get-PnPSiteClosure", + "Id": 651, + "Command": "Get-PnPSiteClosure" }, { - "Id": 652, - "Command": "Get-PnPSiteCollectionAdmin", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAdmin" + "CommandName": "Get-PnPSiteCollectionAdmin", + "Id": 652, + "Command": "Get-PnPSiteCollectionAdmin" }, { - "Id": 653, - "Command": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 653, + "Command": "Get-PnPSiteCollectionAppCatalog" }, { - "Id": 654, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Rank": 2, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 654, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" }, { - "Id": 655, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Rank": 3, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 655, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" }, { - "Id": 656, - "Command": "Get-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionTermStore" + "CommandName": "Get-PnPSiteCollectionTermStore", + "Id": 656, + "Command": "Get-PnPSiteCollectionTermStore" }, { - "Id": 657, - "Command": "Get-PnPSiteDesign", "Rank": 1, - "CommandName": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteDesign", + "Id": 657, + "Command": "Get-PnPSiteDesign" }, { - "Id": 658, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteDesign", + "Id": 658, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 659, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Get-PnPSiteDesignRights" + "CommandName": "Get-PnPSiteDesignRights", + "Id": 659, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 660, - "Command": "Get-PnPSiteDesignRun", "Rank": 1, - "CommandName": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesignRun", + "Id": 660, + "Command": "Get-PnPSiteDesignRun" }, { - "Id": 661, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Rank": 2, - "CommandName": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesignRun", + "Id": 661, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" }, { - "Id": 662, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Id": 662, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Id": 663, - "Command": "Get-PnPSiteDesignTask", "Rank": 2, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Id": 663, + "Command": "Get-PnPSiteDesignTask" }, { - "Id": 664, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 3, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Id": 664, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Id": 665, - "Command": "Get-PnPSiteGroup", "Rank": 1, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Id": 665, + "Command": "Get-PnPSiteGroup" }, { - "Id": 666, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 2, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Id": 666, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Id": 667, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Rank": 3, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Id": 667, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" }, { - "Id": 668, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 4, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Id": 668, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Id": 669, - "Command": "Get-PnPSitePolicy", "Rank": 1, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Id": 669, + "Command": "Get-PnPSitePolicy" }, { - "Id": 670, - "Command": "Get-PnPSitePolicy -AllAvailable", "Rank": 2, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Id": 670, + "Command": "Get-PnPSitePolicy -AllAvailable" }, { - "Id": 671, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 3, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Id": 671, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Id": 672, - "Command": "Get-PnPSiteScript", "Rank": 1, - "CommandName": "Get-PnPSiteScript" + "CommandName": "Get-PnPSiteScript", + "Id": 672, + "Command": "Get-PnPSiteScript" }, { - "Id": 673, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPSiteScript" + "CommandName": "Get-PnPSiteScript", + "Id": 673, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 674, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 674, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" }, { - "Id": 675, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 675, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" }, { - "Id": 676, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 676, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" }, { - "Id": 677, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 677, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" }, { - "Id": 678, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 678, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" }, { - "Id": 679, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 679, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" }, { - "Id": 680, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Rank": 4, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 680, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" }, { - "Id": 681, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Rank": 5, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 681, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" }, { - "Id": 682, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Rank": 6, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 682, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" }, { - "Id": 683, - "Command": "Get-PnPSiteSearchQueryResults", "Rank": 1, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 683, + "Command": "Get-PnPSiteSearchQueryResults" }, { - "Id": 684, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Rank": 2, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 684, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" }, { - "Id": 685, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Rank": 3, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 685, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" }, { - "Id": 686, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Rank": 4, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 686, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" }, { - "Id": 687, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Rank": 5, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 687, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" }, { - "Id": 688, - "Command": "Get-PnPSiteSearchQueryResults -All", "Rank": 6, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 688, + "Command": "Get-PnPSiteSearchQueryResults -All" }, { - "Id": 689, - "Command": "Get-PnPSiteSensitivityLabel", "Rank": 1, - "CommandName": "Get-PnPSiteSensitivityLabel" + "CommandName": "Get-PnPSiteSensitivityLabel", + "Id": 689, + "Command": "Get-PnPSiteSensitivityLabel" }, { - "Id": 690, - "Command": "Get-PnPSiteTemplate -Out template.pnp", "Rank": 1, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 690, + "Command": "Get-PnPSiteTemplate -Out template.pnp" }, { - "Id": 691, - "Command": "Get-PnPSiteTemplate -Out template.xml", "Rank": 2, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 691, + "Command": "Get-PnPSiteTemplate -Out template.xml" }, { - "Id": 692, - "Command": "Get-PnPSiteTemplate -Out template.md", "Rank": 3, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 692, + "Command": "Get-PnPSiteTemplate -Out template.md" }, { - "Id": 693, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Rank": 4, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 693, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" }, { - "Id": 694, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Rank": 5, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 694, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" }, { - "Id": 695, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Rank": 6, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 695, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" }, { - "Id": 696, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Rank": 7, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 696, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" }, { - "Id": 697, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Rank": 8, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 697, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" }, { - "Id": 698, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Rank": 9, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 698, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" }, { - "Id": 699, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Rank": 10, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 699, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" }, { - "Id": 700, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Rank": 11, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 700, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" }, { - "Id": 701, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Rank": 12, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 701, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" }, { - "Id": 702, - "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" + "CommandName": "Get-PnPSiteTemplate", + "Id": 702, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" }, { - "Id": 703, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Rank": 14, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 703, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" }, { - "Id": 704, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "CommandName": "Get-PnPSiteUserInvitations" + "CommandName": "Get-PnPSiteUserInvitations", + "Id": 704, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Id": 705, - "Command": "Get-PnPStorageEntity", "Rank": 1, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Id": 705, + "Command": "Get-PnPStorageEntity" }, { - "Id": 706, - "Command": "Get-PnPStorageEntity -Key MyKey", "Rank": 2, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Id": 706, + "Command": "Get-PnPStorageEntity -Key MyKey" }, { - "Id": 707, - "Command": "Get-PnPStorageEntity -Scope Site", "Rank": 3, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Id": 707, + "Command": "Get-PnPStorageEntity -Scope Site" }, { - "Id": 708, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 4, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Id": 708, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Id": 709, - "Command": "Get-PnPStoredCredential -Name O365", "Rank": 1, - "CommandName": "Get-PnPStoredCredential" + "CommandName": "Get-PnPStoredCredential", + "Id": 709, + "Command": "Get-PnPStoredCredential -Name O365" }, { - "Id": 710, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState" + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Id": 710, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 711, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheWebState" + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Id": 711, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 712, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest" + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Id": 712, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" }, { - "Id": 713, - "Command": "Get-PnPSubWeb", "Rank": 1, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Id": 713, + "Command": "Get-PnPSubWeb" }, { - "Id": 714, - "Command": "Get-PnPSubWeb -Recurse", "Rank": 2, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Id": 714, + "Command": "Get-PnPSubWeb -Recurse" }, { - "Id": 715, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Rank": 3, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Id": 715, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" }, { - "Id": 716, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Rank": 4, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Id": 716, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" }, { - "Id": 717, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Rank": 5, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Id": 717, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" }, { - "Id": 718, - "Command": "Get-PnPSyntexModel", "Rank": 1, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Id": 718, + "Command": "Get-PnPSyntexModel" }, { - "Id": 719, - "Command": "Get-PnPSyntexModel -Identity 1", "Rank": 2, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Id": 719, + "Command": "Get-PnPSyntexModel -Identity 1" }, { - "Id": 720, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Rank": 3, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Id": 720, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" }, { - "Id": 721, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Rank": 1, - "CommandName": "Get-PnPSyntexModelPublication" + "CommandName": "Get-PnPSyntexModelPublication", + "Id": 721, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" }, { - "Id": 722, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Rank": 1, - "CommandName": "Get-PnPTaxonomyItem" + "CommandName": "Get-PnPTaxonomyItem", + "Id": 722, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" }, { - "Id": 723, - "Command": "Get-PnPTeamsApp", "Rank": 1, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Id": 723, + "Command": "Get-PnPTeamsApp" }, { - "Id": 724, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Rank": 2, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Id": 724, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" }, { - "Id": 725, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Rank": 3, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Id": 725, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" }, { - "Id": 726, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Rank": 1, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Id": 726, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" }, { - "Id": 727, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Rank": 2, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Id": 727, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" }, { - "Id": 728, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 3, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Id": 728, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Id": 729, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 729, + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" }, { - "Id": 730, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 730, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Id": 731, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessage" + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 731, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" }, { - "Id": 732, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessage" + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 732, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" }, { - "Id": 733, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 733, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" }, { - "Id": 734, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 734, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" }, { - "Id": 735, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 735, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" }, { - "Id": 736, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 736, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" }, { - "Id": 737, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Rank": 3, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 737, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" }, { - "Id": 738, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 738, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 739, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Rank": 1, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 739, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" }, { - "Id": 740, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Rank": 2, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 740, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" }, { - "Id": 741, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "Rank": 1, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Id": 741, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" }, { - "Id": 742, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Id": 742, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" }, { - "Id": 743, - "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" + "CommandName": "Get-PnPTeamsTab", + "Id": 743, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" }, { - "Id": 744, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Rank": 4, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Id": 744, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" }, { - "Id": 745, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Rank": 5, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Id": 745, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" }, { - "Id": 746, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "CommandName": "Get-PnPTeamsTag" + "CommandName": "Get-PnPTeamsTag", + "Id": 746, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Id": 747, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTag" + "CommandName": "Get-PnPTeamsTag", + "Id": 747, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Id": 748, - "Command": "Get-PnPTeamsTeam", "Rank": 1, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Id": 748, + "Command": "Get-PnPTeamsTeam" }, { - "Id": 749, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Id": 749, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" }, { - "Id": 750, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Rank": 3, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Id": 750, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" }, { - "Id": 751, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Rank": 4, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Id": 751, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" }, { - "Id": 752, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Id": 752, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 753, - "Command": "Get-PnPTeamsUser -Team MyTeam", "Rank": 1, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Id": 753, + "Command": "Get-PnPTeamsUser -Team MyTeam" }, { - "Id": 754, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Rank": 2, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Id": 754, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" }, { - "Id": 755, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Rank": 3, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Id": 755, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" }, { - "Id": 756, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Rank": 4, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Id": 756, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" }, { - "Id": 757, - "Command": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, - "CommandName": "Get-PnPTemporarilyDisableAppBar" + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Id": 757, + "Command": "Get-PnPTemporarilyDisableAppBar" }, { - "Id": 758, - "Command": "Get-PnPTenant", "Rank": 1, - "CommandName": "Get-PnPTenant" + "CommandName": "Get-PnPTenant", + "Id": 758, + "Command": "Get-PnPTenant" }, { - "Id": 759, - "Command": "Get-PnPTenantAppCatalogUrl", "Rank": 1, - "CommandName": "Get-PnPTenantAppCatalogUrl" + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Id": 759, + "Command": "Get-PnPTenantAppCatalogUrl" }, { - "Id": 760, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnEnabled" + "CommandName": "Get-PnPTenantCdnEnabled", + "Id": 760, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public" }, { - "Id": 761, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnOrigin" + "CommandName": "Get-PnPTenantCdnOrigin", + "Id": 761, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public" }, { - "Id": 762, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnPolicies" + "CommandName": "Get-PnPTenantCdnPolicies", + "Id": 762, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public" }, { - "Id": 763, - "Command": "Get-PnPTenantDeletedSite", "Rank": 1, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 763, + "Command": "Get-PnPTenantDeletedSite" }, { - "Id": 764, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 2, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 764, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 765, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Rank": 3, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 765, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" }, { - "Id": 766, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Rank": 4, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 766, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" }, { - "Id": 767, - "Command": "Get-PnPTenantId", "Rank": 1, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Id": 767, + "Command": "Get-PnPTenantId" }, { - "Id": 768, - "Command": "Get-PnPTenantId contoso", "Rank": 2, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Id": 768, + "Command": "Get-PnPTenantId contoso" }, { - "Id": 769, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Rank": 3, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Id": 769, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" }, { - "Id": 770, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Rank": 4, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Id": 770, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" }, { - "Id": 771, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Rank": 1, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Id": 771, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" }, { - "Id": 772, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Rank": 2, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Id": 772, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" }, { - "Id": 773, - "Command": "Get-PnPTenantInfo", "Rank": 3, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Id": 773, + "Command": "Get-PnPTenantInfo" }, { - "Id": 774, - "Command": "Get-PnPTenantInfo -CurrentTenant", "Rank": 4, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Id": 774, + "Command": "Get-PnPTenantInfo -CurrentTenant" }, { - "Id": 775, - "Command": "Get-PnPTenantInstance", "Rank": 1, - "CommandName": "Get-PnPTenantInstance" + "CommandName": "Get-PnPTenantInstance", + "Id": 775, + "Command": "Get-PnPTenantInstance" }, { - "Id": 776, - "Command": "Get-PnPTenantRecycleBinItem", "Rank": 1, - "CommandName": "Get-PnPTenantRecycleBinItem" + "CommandName": "Get-PnPTenantRecycleBinItem", + "Id": 776, + "Command": "Get-PnPTenantRecycleBinItem" }, { - "Id": 777, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Rank": 1, - "CommandName": "Get-PnPTenantSequence" + "CommandName": "Get-PnPTenantSequence", + "Id": 777, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject" }, { - "Id": 778, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Rank": 2, - "CommandName": "Get-PnPTenantSequence" + "CommandName": "Get-PnPTenantSequence", + "Id": 778, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" }, { - "Id": 779, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Rank": 1, - "CommandName": "Get-PnPTenantSequenceSite" + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 779, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" }, { - "Id": 780, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Rank": 2, - "CommandName": "Get-PnPTenantSequenceSite" + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 780, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" }, { - "Id": 781, - "Command": "Get-PnPTenantSite", "Rank": 1, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 781, + "Command": "Get-PnPTenantSite" }, { - "Id": 782, - "Command": "Get-PnPTenantSite -Detailed", "Rank": 2, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 782, + "Command": "Get-PnPTenantSite -Detailed" }, { - "Id": 783, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Rank": 3, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 783, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites" }, { - "Id": 784, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Rank": 4, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 784, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" }, { - "Id": 785, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Rank": 5, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 785, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" }, { - "Id": 786, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Rank": 6, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 786, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" }, { - "Id": 787, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Rank": 7, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 787, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" }, { - "Id": 788, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Rank": 8, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 788, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" }, { - "Id": 789, - "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Rank": 9, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 789, + "Command": "Get-PnPTenantSite -GroupIdDefined $true" }, { - "Id": 790, - "Command": "Get-PnPTenantSyncClientRestriction", "Rank": 1, - "CommandName": "Get-PnPTenantSyncClientRestriction" + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Id": 790, + "Command": "Get-PnPTenantSyncClientRestriction" }, { - "Id": 791, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Rank": 1, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Id": 791, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" }, { - "Id": 792, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "Rank": 2, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Id": 792, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" }, { - "Id": 793, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Rank": 3, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Id": 793, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" }, { - "Id": 794, - "Command": "Get-PnPTenantTheme", "Rank": 1, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Id": 794, + "Command": "Get-PnPTenantTheme" }, { - "Id": 795, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 2, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Id": 795, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Id": 796, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Rank": 3, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Id": 796, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" }, { - "Id": 797, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Id": 797, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 798, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Id": 798, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 799, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Id": 799, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 800, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Rank": 4, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Id": 800, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" }, { - "Id": 801, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Rank": 5, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Id": 801, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" }, { - "Id": 802, - "Command": "Get-PnPTermGroup", "Rank": 1, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Id": 802, + "Command": "Get-PnPTermGroup" }, { - "Id": 803, - "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Rank": 2, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Id": 803, + "Command": "Get-PnPTermGroup -Identity \"Departments\"" }, { - "Id": 804, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Rank": 3, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Id": 804, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" }, { - "Id": 805, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Rank": 1, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Id": 805, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" }, { - "Id": 806, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Rank": 2, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Id": 806, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" }, { - "Id": 807, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Id": 807, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 808, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Id": 808, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" }, { - "Id": 809, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Id": 809, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 810, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Rank": 3, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Id": 810, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" }, { - "Id": 811, - "Command": "Get-PnPTheme", "Rank": 1, - "CommandName": "Get-PnPTheme" + "CommandName": "Get-PnPTheme", + "Id": 811, + "Command": "Get-PnPTheme" }, { - "Id": 812, - "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Rank": 2, - "CommandName": "Get-PnPTheme" + "CommandName": "Get-PnPTheme", + "Id": 812, + "Command": "Get-PnPTheme -DetectCurrentComposedLook" }, { - "Id": 813, - "Command": "Get-PnPTimeZoneId", "Rank": 1, - "CommandName": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTimeZoneId", + "Id": 813, + "Command": "Get-PnPTimeZoneId" }, { - "Id": 814, - "Command": "Get-PnPTimeZoneId -Match Stockholm", "Rank": 2, - "CommandName": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTimeZoneId", + "Id": 814, + "Command": "Get-PnPTimeZoneId -Match Stockholm" }, { - "Id": 815, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Rank": 1, - "CommandName": "Get-PnPUnfurlLink" + "CommandName": "Get-PnPUnfurlLink", + "Id": 815, + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" }, { - "Id": 816, - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Rank": 1, - "CommandName": "Get-PnPUnifiedAuditLog" + "CommandName": "Get-PnPUnifiedAuditLog", + "Id": 816, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" }, { - "Id": 817, - "Command": "Get-PnPUPABulkImportStatus", "Rank": 1, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 817, + "Command": "Get-PnPUPABulkImportStatus" }, { - "Id": 818, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Rank": 2, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 818, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" }, { - "Id": 819, - "Command": "Get-PnPUPABulkImportStatus -JobId ", "Rank": 3, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 819, + "Command": "Get-PnPUPABulkImportStatus -JobId " }, { - "Id": 820, - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "Rank": 4, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 820, + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" }, { - "Id": 821, - "Command": "Get-PnPUser", "Rank": 1, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 821, + "Command": "Get-PnPUser" }, { - "Id": 822, - "Command": "Get-PnPUser -Identity 23", "Rank": 2, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 822, + "Command": "Get-PnPUser -Identity 23" }, { - "Id": 823, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 823, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" }, { - "Id": 824, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Rank": 4, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 824, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" }, { - "Id": 825, - "Command": "Get-PnPUser -WithRightsAssigned", "Rank": 5, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 825, + "Command": "Get-PnPUser -WithRightsAssigned" }, { - "Id": 826, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Rank": 6, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 826, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" }, { - "Id": 827, - "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Rank": 7, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 827, + "Command": "Get-PnPUser -WithRightsAssignedDetailed" }, { - "Id": 828, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPUserOneDriveQuota" + "CommandName": "Get-PnPUserOneDriveQuota", + "Id": 828, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" }, { - "Id": 829, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Id": 829, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" }, { - "Id": 830, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Rank": 2, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Id": 830, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" }, { - "Id": 831, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Rank": 3, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Id": 831, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" }, { - "Id": 832, - "Command": "Get-PnPView -List \"Demo List\"", "Rank": 1, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Id": 832, + "Command": "Get-PnPView -List \"Demo List\"" }, { - "Id": 833, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Rank": 2, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Id": 833, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" }, { - "Id": 834, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Rank": 3, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Id": 834, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" }, { - "Id": 835, - "Command": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 835, + "Command": "Get-PnPVivaConnectionsDashboardACE" }, { - "Id": 836, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 2, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 836, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Id": 837, - "Command": "Get-PnPWeb", "Rank": 1, - "CommandName": "Get-PnPWeb" + "CommandName": "Get-PnPWeb", + "Id": 837, + "Command": "Get-PnPWeb" }, { - "Id": 838, - "Command": "Get-PnPWebHeader", "Rank": 1, - "CommandName": "Get-PnPWebHeader" + "CommandName": "Get-PnPWebHeader", + "Id": 838, + "Command": "Get-PnPWebHeader" }, { - "Id": 839, - "Command": "Get-PnPWebhookSubscriptions -List MyList", "Rank": 1, - "CommandName": "Get-PnPWebhookSubscriptions" + "CommandName": "Get-PnPWebhookSubscriptions", + "Id": 839, + "Command": "Get-PnPWebhookSubscriptions -List MyList" }, { - "Id": 840, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Rank": 1, - "CommandName": "Get-PnPWebPart" + "CommandName": "Get-PnPWebPart", + "Id": 840, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" }, { - "Id": 841, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "CommandName": "Get-PnPWebPart" + "CommandName": "Get-PnPWebPart", + "Id": 841, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 842, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "Rank": 1, - "CommandName": "Get-PnPWebPartProperty" + "CommandName": "Get-PnPWebPartProperty", + "Id": 842, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" }, { - "Id": 843, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Rank": 2, - "CommandName": "Get-PnPWebPartProperty" + "CommandName": "Get-PnPWebPartProperty", + "Id": 843, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" }, { - "Id": 844, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Get-PnPWebPartXml" + "CommandName": "Get-PnPWebPartXml", + "Id": 844, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 845, - "Command": "Get-PnPWebTemplates", "Rank": 1, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Id": 845, + "Command": "Get-PnPWebTemplates" }, { - "Id": 846, - "Command": "Get-PnPWebTemplates -LCID 1033", "Rank": 2, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Id": 846, + "Command": "Get-PnPWebTemplates -LCID 1033" }, { - "Id": 847, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Rank": 3, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Id": 847, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" }, { - "Id": 848, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Rank": 1, - "CommandName": "Get-PnPWikiPageContent" + "CommandName": "Get-PnPWikiPageContent", + "Id": 848, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" }, { - "Id": 849, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "Rank": 1, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 849, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" }, { - "Id": 850, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 850, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" }, { - "Id": 851, - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Grant-PnPHubSiteRights" + "CommandName": "Grant-PnPHubSiteRights", + "Id": 851, + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 852, - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Grant-PnPSiteDesignRights" + "CommandName": "Grant-PnPSiteDesignRights", + "Id": 852, + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 853, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "CommandName": "Grant-PnPTenantServicePrincipalPermission" + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Id": 853, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Id": 854, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Rank": 1, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Id": 854, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" }, { - "Id": 855, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Rank": 2, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Id": 855, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" }, { - "Id": 856, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Rank": 3, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Id": 856, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" }, { - "Id": 857, - "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Rank": 1, - "CommandName": "Import-PnPTermGroupFromXml" + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 857, + "Command": "Import-PnPTermGroupFromXml -Xml $xml" }, { - "Id": 858, - "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Rank": 2, - "CommandName": "Import-PnPTermGroupFromXml" + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 858, + "Command": "Import-PnPTermGroupFromXml -Path input.xml" }, { - "Id": 859, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Rank": 1, - "CommandName": "Import-PnPTermSet" + "CommandName": "Import-PnPTermSet", + "Id": 859, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" }, { - "Id": 860, - "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" + "CommandName": "Import-PnPTermSet", + "Id": 860, + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" }, { - "Id": 861, - "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" + "CommandName": "Import-PnPTermSet", + "Id": 861, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" }, { - "Id": 862, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Install-PnPApp" + "CommandName": "Install-PnPApp", + "Id": 862, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 863, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Install-PnPApp" + "CommandName": "Install-PnPApp", + "Id": 863, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 864, - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "Rank": 1, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 864, + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" }, { - "Id": 865, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Rank": 2, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 865, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" }, { - "Id": 866, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Rank": 3, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 866, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" }, { - "Id": 867, - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Rank": 4, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 867, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" }, { - "Id": 868, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Rank": 5, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 868, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" }, { - "Id": 869, - "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" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 869, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" }, { - "Id": 870, - "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" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 870, + "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": 871, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Invoke-PnPListDesign" + "CommandName": "Invoke-PnPListDesign", + "Id": 871, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 872, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "CommandName": "Invoke-PnPListDesign" + "CommandName": "Invoke-PnPListDesign", + "Id": 872, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Id": 873, - "Command": "Invoke-PnPQuery -RetryCount 5", "Rank": 1, - "CommandName": "Invoke-PnPQuery" + "CommandName": "Invoke-PnPQuery", + "Id": 873, + "Command": "Invoke-PnPQuery -RetryCount 5" }, { - "Id": 874, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Invoke-PnPSiteDesign" + "CommandName": "Invoke-PnPSiteDesign", + "Id": 874, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 875, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "CommandName": "Invoke-PnPSiteDesign" + "CommandName": "Invoke-PnPSiteDesign", + "Id": 875, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Id": 876, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Rank": 1, - "CommandName": "Invoke-PnPSiteScript" + "CommandName": "Invoke-PnPSiteScript", + "Id": 876, + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" }, { - "Id": 877, - "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" + "CommandName": "Invoke-PnPSiteSwap", + "Id": 877, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "Id": 878, - "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" + "CommandName": "Invoke-PnPSiteSwap", + "Id": 878, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "Id": 879, - "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" + "CommandName": "Invoke-PnPSiteSwap", + "Id": 879, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection" }, { - "Id": 880, - "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Rank": 1, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 880, + "Command": "Invoke-PnPSiteTemplate -Path template.xml" }, { - "Id": 881, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Rank": 2, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 881, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" }, { - "Id": 882, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 882, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Id": 883, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Rank": 4, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 883, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" }, { - "Id": 884, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Rank": 5, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 884, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp" }, { - "Id": 885, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Rank": 6, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 885, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" }, { - "Id": 886, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Rank": 7, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 886, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" }, { - "Id": 887, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Rank": 8, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 887, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" }, { - "Id": 888, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Rank": 1, - "CommandName": "Invoke-PnPSPRestMethod" + "CommandName": "Invoke-PnPSPRestMethod", + "Id": 888, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web" }, { - "Id": 889, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Rank": 1, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 889, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" }, { - "Id": 890, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Rank": 2, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 890, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" }, { - "Id": 891, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 891, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Id": 892, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Rank": 1, - "CommandName": "Invoke-PnPWebAction" + "CommandName": "Invoke-PnPWebAction", + "Id": 892, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" }, { - "Id": 893, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Rank": 2, - "CommandName": "Invoke-PnPWebAction" + "CommandName": "Invoke-PnPWebAction", + "Id": 893, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" }, { - "Id": 894, - "Command": "Measure-PnPList \"Documents\"", "Rank": 1, - "CommandName": "Measure-PnPList" + "CommandName": "Measure-PnPList", + "Id": 894, + "Command": "Measure-PnPList \"Documents\"" }, { - "Id": 895, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Rank": 2, - "CommandName": "Measure-PnPList" + "CommandName": "Measure-PnPList", + "Id": 895, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" }, { - "Id": 896, - "Command": "Measure-PnPWeb", "Rank": 1, - "CommandName": "Measure-PnPWeb" + "CommandName": "Measure-PnPWeb", + "Id": 896, + "Command": "Measure-PnPWeb" }, { - "Id": 897, - "Command": "Measure-PnPWeb $web -Recursive", "Rank": 2, - "CommandName": "Measure-PnPWeb" + "CommandName": "Measure-PnPWeb", + "Id": 897, + "Command": "Measure-PnPWeb $web -Recursive" }, { - "Id": 898, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Rank": 1, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Id": 898, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" }, { - "Id": 899, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Rank": 2, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Id": 899, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" }, { - "Id": 900, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 3, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Id": 900, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Id": 901, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 4, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Id": 901, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Id": 902, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Rank": 1, - "CommandName": "Move-PnPFolder" + "CommandName": "Move-PnPFolder", + "Id": 902, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" }, { - "Id": 903, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Rank": 2, - "CommandName": "Move-PnPFolder" + "CommandName": "Move-PnPFolder", + "Id": 903, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" }, { - "Id": 904, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "CommandName": "Move-PnPListItemToRecycleBin" + "CommandName": "Move-PnPListItemToRecycleBin", + "Id": 904, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" }, { - "Id": 905, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "Rank": 1, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Id": 905, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" }, { - "Id": 906, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "Rank": 2, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Id": 906, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" }, { - "Id": 907, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "Rank": 3, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Id": 907, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" }, { - "Id": 908, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Rank": 4, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Id": 908, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" }, { - "Id": 909, - "Command": "Move-PnPRecycleBinItem", "Rank": 1, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Id": 909, + "Command": "Move-PnPRecycleBinItem" }, { - "Id": 910, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Rank": 2, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Id": 910, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" }, { - "Id": 911, - "Command": "Move-PnPRecycleBinItem -Force", "Rank": 3, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Id": 911, + "Command": "Move-PnPRecycleBinItem -Force" }, { - "Id": 912, - "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" + "CommandName": "Move-PnPTerm", + "Id": 912, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" }, { - "Id": 913, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Rank": 2, - "CommandName": "Move-PnPTerm" + "CommandName": "Move-PnPTerm", + "Id": 913, + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" }, { - "Id": 914, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Rank": 3, - "CommandName": "Move-PnPTerm" + "CommandName": "Move-PnPTerm", + "Id": 914, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" }, { - "Id": 915, - "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" + "CommandName": "Move-PnPTermSet", + "Id": 915, + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" }, { - "Id": 916, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Rank": 2, - "CommandName": "Move-PnPTermSet" + "CommandName": "Move-PnPTermSet", + "Id": 916, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" }, { - "Id": 917, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Id": 917, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Id": 918, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Rank": 2, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Id": 918, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" }, { - "Id": 919, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Rank": 3, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Id": 919, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" }, { - "Id": 920, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Rank": 1, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 920, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" }, { - "Id": 921, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Rank": 2, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 921, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" }, { - "Id": 922, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Rank": 3, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 922, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" }, { - "Id": 923, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Rank": 1, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Id": 923, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" }, { - "Id": 924, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Rank": 2, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Id": 924, + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" }, { - "Id": 925, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "Rank": 3, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Id": 925, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" }, { - "Id": 926, - "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" + "CommandName": "New-PnPGraphSubscription", + "Id": 926, + "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Id": 927, - "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" + "CommandName": "New-PnPGraphSubscription", + "Id": 927, + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Id": 928, - "Command": "New-PnPGroup -Title \"My Site Users\"", "Rank": 1, - "CommandName": "New-PnPGroup" + "CommandName": "New-PnPGroup", + "Id": 928, + "Command": "New-PnPGroup -Title \"My Site Users\"" }, { - "Id": 929, - "Command": "New-PnPList -Title Announcements -Template Announcements", "Rank": 1, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Id": 929, + "Command": "New-PnPList -Title Announcements -Template Announcements" }, { - "Id": 930, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Rank": 2, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Id": 930, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" }, { - "Id": 931, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Rank": 3, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Id": 931, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" }, { - "Id": 932, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 932, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Id": 933, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "Rank": 2, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 933, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" }, { - "Id": 934, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Rank": 3, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 934, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" }, { - "Id": 935, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Rank": 4, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 935, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" }, { - "Id": 936, - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 5, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 936, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Id": 937, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 937, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Id": 938, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "Rank": 7, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 938, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" }, { - "Id": 939, - "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" + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Id": 939, + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" }, { - "Id": 940, - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Rank": 2, - "CommandName": "New-PnPMicrosoft365GroupSettings" + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Id": 940, + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" }, { - "Id": 941, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Rank": 1, - "CommandName": "New-PnPPersonalSite" + "CommandName": "New-PnPPersonalSite", + "Id": 941, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" }, { - "Id": 942, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Rank": 1, - "CommandName": "New-PnPPlannerPlan" + "CommandName": "New-PnPPlannerPlan", + "Id": 942, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" }, { - "Id": 943, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Rank": 1, - "CommandName": "New-PnPSdnProvider" + "CommandName": "New-PnPSdnProvider", + "Id": 943, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" }, { - "Id": 944, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 1, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 944, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Id": 945, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "Rank": 2, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 945, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" }, { - "Id": 946, - "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" + "CommandName": "New-PnPSite", + "Id": 946, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Id": 947, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 4, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 947, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Id": 948, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 5, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 948, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Id": 949, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 6, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 949, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Id": 950, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Rank": 7, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 950, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" }, { - "Id": 951, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Rank": 8, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 951, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" }, { - "Id": 952, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Rank": 9, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 952, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" }, { - "Id": 953, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Rank": 10, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 953, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" }, { - "Id": 954, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 11, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 954, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Id": 955, - "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" + "CommandName": "New-PnPSite", + "Id": 955, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Id": 956, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 13, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 956, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Id": 957, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 14, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 957, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Id": 958, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 15, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 958, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Id": 959, - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Rank": 16, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 959, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" }, { - "Id": 960, - "Command": "New-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "New-PnPSiteCollectionTermStore" + "CommandName": "New-PnPSiteCollectionTermStore", + "Id": 960, + "Command": "New-PnPSiteCollectionTermStore" }, { - "Id": 961, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "Rank": 1, - "CommandName": "New-PnPSiteGroup" + "CommandName": "New-PnPSiteGroup", + "Id": 961, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" }, { - "Id": 962, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Rank": 2, - "CommandName": "New-PnPSiteGroup" + "CommandName": "New-PnPSiteGroup", + "Id": 962, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" }, { - "Id": 963, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Rank": 1, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 963, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" }, { - "Id": 964, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Rank": 2, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 964, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" }, { - "Id": 965, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Rank": 3, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 965, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" }, { - "Id": 966, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "Rank": 4, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 966, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" }, { - "Id": 967, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "Rank": 5, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 967, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" }, { - "Id": 968, - "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" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 968, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 969, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Rank": 7, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 969, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" }, { - "Id": 970, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Rank": 8, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 970, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" }, { - "Id": 971, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Rank": 1, - "CommandName": "New-PnPTeamsApp" + "CommandName": "New-PnPTeamsApp", + "Id": 971, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" }, { - "Id": 972, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Rank": 1, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Id": 972, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" }, { - "Id": 973, - "Command": "New-PnPTeamsTeam -GroupId $groupId", "Rank": 2, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Id": 973, + "Command": "New-PnPTeamsTeam -GroupId $groupId" }, { - "Id": 974, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "Rank": 3, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Id": 974, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" }, { - "Id": 975, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 4, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Id": 975, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Id": 976, - "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" + "CommandName": "New-PnPTeamsTeam", + "Id": 976, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" }, { - "Id": 977, - "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" + "CommandName": "New-PnPTeamsTeam", + "Id": 977, + "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": 978, - "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" + "CommandName": "New-PnPTenantSite", + "Id": 978, + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Id": 979, - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Rank": 2, - "CommandName": "New-PnPTenantSite" + "CommandName": "New-PnPTenantSite", + "Id": 979, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Id": 980, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Rank": 1, - "CommandName": "New-PnPTerm" + "CommandName": "New-PnPTerm", + "Id": 980, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" }, { - "Id": 981, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "CommandName": "New-PnPTerm" + "CommandName": "New-PnPTerm", + "Id": 981, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 982, - "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Rank": 1, - "CommandName": "New-PnPTermGroup" + "CommandName": "New-PnPTermGroup", + "Id": 982, + "Command": "New-PnPTermGroup -GroupName \"Countries\"" }, { - "Id": 983, - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Rank": 1, - "CommandName": "New-PnPTermLabel" + "CommandName": "New-PnPTermLabel", + "Id": 983, + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" }, { - "Id": 984, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "New-PnPTermSet" + "CommandName": "New-PnPTermSet", + "Id": 984, + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" }, { - "Id": 985, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "Rank": 1, - "CommandName": "New-PnPUPABulkImportJob" + "CommandName": "New-PnPUPABulkImportJob", + "Id": 985, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" }, { - "Id": 986, - "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" + "CommandName": "New-PnPUPABulkImportJob", + "Id": 986, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" }, { - "Id": 987, - "Command": "New-PnPUser -LoginName user@company.com", "Rank": 1, - "CommandName": "New-PnPUser" + "CommandName": "New-PnPUser", + "Id": 987, + "Command": "New-PnPUser -LoginName user@company.com" }, { - "Id": 988, - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Rank": 1, - "CommandName": "New-PnPWeb" + "CommandName": "New-PnPWeb", + "Id": 988, + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" }, { - "Id": 989, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 1, - "CommandName": "Publish-PnPApp" + "CommandName": "Publish-PnPApp", + "Id": 989, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 990, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Rank": 2, - "CommandName": "Publish-PnPApp" + "CommandName": "Publish-PnPApp", + "Id": 990, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" }, { - "Id": 991, - "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" + "CommandName": "Publish-PnPCompanyApp", + "Id": 991, + "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": 992, - "Command": "Publish-PnPContentType -ContentType 0x0101", "Rank": 1, - "CommandName": "Publish-PnPContentType" + "CommandName": "Publish-PnPContentType", + "Id": 992, + "Command": "Publish-PnPContentType -ContentType 0x0101" }, { - "Id": 993, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "CommandName": "Publish-PnPSyntexModel" + "CommandName": "Publish-PnPSyntexModel", + "Id": 993, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Id": 994, - "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" + "CommandName": "Publish-PnPSyntexModel", + "Id": 994, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Id": 995, - "Command": "Read-PnPSiteTemplate -Path template.pnp", "Rank": 1, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Id": 995, + "Command": "Read-PnPSiteTemplate -Path template.pnp" }, { - "Id": 996, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Rank": 2, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Id": 996, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" }, { - "Id": 997, - "Command": "Read-PnPSiteTemplate -Xml $xml", "Rank": 3, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Id": 997, + "Command": "Read-PnPSiteTemplate -Xml $xml" }, { - "Id": 998, - "Command": "Read-PnPTenantTemplate -Path template.pnp", "Rank": 1, - "CommandName": "Read-PnPTenantTemplate" + "CommandName": "Read-PnPTenantTemplate", + "Id": 998, + "Command": "Read-PnPTenantTemplate -Path template.pnp" }, { - "Id": 999, - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Rank": 1, - "CommandName": "Register-PnPAppCatalogSite" + "CommandName": "Register-PnPAppCatalogSite", + "Id": 999, + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" }, { - "Id": 1000, - "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" + "CommandName": "Register-PnPAzureADApp", + "Id": 1000, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Id": 1001, - "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" + "CommandName": "Register-PnPAzureADApp", + "Id": 1001, + "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": 1002, - "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" + "CommandName": "Register-PnPAzureADApp", + "Id": 1002, + "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": 1003, - "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" + "CommandName": "Register-PnPAzureADApp", + "Id": 1003, + "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": 1004, - "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" + "CommandName": "Register-PnPAzureADApp", + "Id": 1004, + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Id": 1005, - "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" + "CommandName": "Register-PnPAzureADApp", + "Id": 1005, + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Id": 1006, - "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" + "CommandName": "Register-PnPAzureADApp", + "Id": 1006, + "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": 1007, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "CommandName": "Register-PnPHubSite" + "CommandName": "Register-PnPHubSite", + "Id": 1007, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Id": 1008, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Rank": 2, - "CommandName": "Register-PnPHubSite" + "CommandName": "Register-PnPHubSite", + "Id": 1008, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" }, { - "Id": 1009, - "Command": "Register-PnPManagementShellAccess", "Rank": 1, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1009, + "Command": "Register-PnPManagementShellAccess" }, { - "Id": 1010, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Rank": 2, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1010, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" }, { - "Id": 1011, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Rank": 3, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1011, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" }, { - "Id": 1012, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1012, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" }, { - "Id": 1013, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Rank": 2, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1013, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" }, { - "Id": 1014, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Rank": 1, - "CommandName": "Remove-PnPAlert" + "CommandName": "Remove-PnPAlert", + "Id": 1014, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" }, { - "Id": 1015, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 2, - "CommandName": "Remove-PnPAlert" + "CommandName": "Remove-PnPAlert", + "Id": 1015, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Id": 1016, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Remove-PnPApp" + "CommandName": "Remove-PnPApp", + "Id": 1016, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1017, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPApp" + "CommandName": "Remove-PnPApp", + "Id": 1017, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1018, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Remove-PnPApplicationCustomizer" + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1018, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1019, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "CommandName": "Remove-PnPApplicationCustomizer" + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1019, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Id": 1020, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Rank": 1, - "CommandName": "Remove-PnPAvailableSiteClassification" + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1020, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" }, { - "Id": 1021, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 2, - "CommandName": "Remove-PnPAvailableSiteClassification" + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1021, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Id": 1022, - "Command": "Remove-PnPAzureADApp -Identity MyApp", "Rank": 1, - "CommandName": "Remove-PnPAzureADApp" + "CommandName": "Remove-PnPAzureADApp", + "Id": 1022, + "Command": "Remove-PnPAzureADApp -Identity MyApp" }, { - "Id": 1023, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 2, - "CommandName": "Remove-PnPAzureADApp" + "CommandName": "Remove-PnPAzureADApp", + "Id": 1023, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 1024, - "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroup" + "CommandName": "Remove-PnPAzureADGroup", + "Id": 1024, + "Command": "Remove-PnPAzureADGroup -Identity $groupId" }, { - "Id": 1025, - "Command": "Remove-PnPAzureADGroup -Identity $group", "Rank": 2, - "CommandName": "Remove-PnPAzureADGroup" + "CommandName": "Remove-PnPAzureADGroup", + "Id": 1025, + "Command": "Remove-PnPAzureADGroup -Identity $group" }, { - "Id": 1026, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupMember" + "CommandName": "Remove-PnPAzureADGroupMember", + "Id": 1026, + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1027, - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupOwner" + "CommandName": "Remove-PnPAzureADGroupOwner", + "Id": 1027, + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1028, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1028, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" }, { - "Id": 1029, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Rank": 2, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1029, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" }, { - "Id": 1030, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 3, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1030, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 1031, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 4, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1031, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Id": 1032, - "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPContentType" + "CommandName": "Remove-PnPContentType", + "Id": 1032, + "Command": "Remove-PnPContentType -Identity \"Project Document\"" }, { - "Id": 1033, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Rank": 2, - "CommandName": "Remove-PnPContentType" + "CommandName": "Remove-PnPContentType", + "Id": 1033, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" }, { - "Id": 1034, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1034, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Id": 1035, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1035, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Id": 1036, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromList" + "CommandName": "Remove-PnPContentTypeFromList", + "Id": 1036, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" }, { - "Id": 1037, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Id": 1037, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1038, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Id": 1038, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Id": 1039, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Rank": 3, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Id": 1039, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" }, { - "Id": 1040, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "CommandName": "Remove-PnPDeletedMicrosoft365Group" + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Id": 1040, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 1041, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 1, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1041, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 1042, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1042, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 1043, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Rank": 3, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1043, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" }, { - "Id": 1044, - "Command": "Remove-PnPEventReceiver -List ProjectList", "Rank": 4, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1044, + "Command": "Remove-PnPEventReceiver -List ProjectList" }, { - "Id": 1045, - "Command": "Remove-PnPEventReceiver", "Rank": 5, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1045, + "Command": "Remove-PnPEventReceiver" }, { - "Id": 1046, - "Command": "Remove-PnPEventReceiver -Scope Site", "Rank": 6, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1046, + "Command": "Remove-PnPEventReceiver -Scope Site" }, { - "Id": 1047, - "Command": "Remove-PnPEventReceiver -Scope Web", "Rank": 7, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1047, + "Command": "Remove-PnPEventReceiver -Scope Web" }, { - "Id": 1048, - "Command": "Remove-PnPEventReceiver -Scope All", "Rank": 8, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1048, + "Command": "Remove-PnPEventReceiver -Scope All" }, { - "Id": 1049, - "Command": "Remove-PnPField -Identity \"Speakers\"", "Rank": 1, - "CommandName": "Remove-PnPField" + "CommandName": "Remove-PnPField", + "Id": 1049, + "Command": "Remove-PnPField -Identity \"Speakers\"" }, { - "Id": 1050, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "CommandName": "Remove-PnPField" + "CommandName": "Remove-PnPField", + "Id": 1050, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Id": 1051, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPFieldFromContentType" + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1051, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Id": 1052, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Rank": 2, - "CommandName": "Remove-PnPFieldFromContentType" + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1052, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" }, { - "Id": 1053, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Rank": 1, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Id": 1053, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" }, { - "Id": 1054, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Rank": 2, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Id": 1054, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" }, { - "Id": 1055, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Rank": 3, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Id": 1055, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" }, { - "Id": 1056, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Rank": 1, - "CommandName": "Remove-PnPFileFromSiteTemplate" + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Id": 1056, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" }, { - "Id": 1057, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Remove-PnPFileSharingLink" + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1057, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 1058, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Rank": 2, - "CommandName": "Remove-PnPFileSharingLink" + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1058, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" }, { - "Id": 1059, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Id": 1059, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Id": 1060, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 2, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Id": 1060, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Id": 1061, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Rank": 3, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Id": 1061, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" }, { - "Id": 1062, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "Rank": 1, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Id": 1062, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" }, { - "Id": 1063, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "Rank": 2, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Id": 1063, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" }, { - "Id": 1064, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "Rank": 3, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Id": 1064, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" }, { - "Id": 1065, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "Rank": 4, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Id": 1065, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" }, { - "Id": 1066, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "CommandName": "Remove-PnPFolder" + "CommandName": "Remove-PnPFolder", + "Id": 1066, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Id": 1067, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Rank": 2, - "CommandName": "Remove-PnPFolder" + "CommandName": "Remove-PnPFolder", + "Id": 1067, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" }, { - "Id": 1068, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Remove-PnPFolderSharingLink" + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1068, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 1069, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Rank": 2, - "CommandName": "Remove-PnPFolderSharingLink" + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1069, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" }, { - "Id": 1070, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Rank": 1, - "CommandName": "Remove-PnPGraphSubscription" + "CommandName": "Remove-PnPGraphSubscription", + "Id": 1070, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" }, { - "Id": 1071, - "Command": "Remove-PnPGroup -Identity \"My Users\"", "Rank": 1, - "CommandName": "Remove-PnPGroup" + "CommandName": "Remove-PnPGroup", + "Id": 1071, + "Command": "Remove-PnPGroup -Identity \"My Users\"" }, { - "Id": 1072, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "CommandName": "Remove-PnPGroupMember" + "CommandName": "Remove-PnPGroupMember", + "Id": 1072, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Id": 1073, - "Command": "Remove-PnPHomeSite", "Rank": 1, - "CommandName": "Remove-PnPHomeSite" + "CommandName": "Remove-PnPHomeSite", + "Id": 1073, + "Command": "Remove-PnPHomeSite" }, { - "Id": 1074, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "CommandName": "Remove-PnPHubSiteAssociation" + "CommandName": "Remove-PnPHubSiteAssociation", + "Id": 1074, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Id": 1075, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Rank": 1, - "CommandName": "Remove-PnPHubToHubAssociation" + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1075, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" }, { - "Id": 1076, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Rank": 2, - "CommandName": "Remove-PnPHubToHubAssociation" + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1076, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" }, { - "Id": 1077, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Rank": 1, - "CommandName": "Remove-PnPIndexedProperty" + "CommandName": "Remove-PnPIndexedProperty", + "Id": 1077, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" }, { - "Id": 1078, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Rank": 1, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1078, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery" }, { - "Id": 1079, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1079, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" }, { - "Id": 1080, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Rank": 3, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1080, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" }, { - "Id": 1081, - "Command": "Remove-PnPJavaScriptLink -Scope Site", "Rank": 4, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1081, + "Command": "Remove-PnPJavaScriptLink -Scope Site" }, { - "Id": 1082, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Rank": 5, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1082, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" }, { - "Id": 1083, - "Command": "Remove-PnPKnowledgeHubSite", "Rank": 1, - "CommandName": "Remove-PnPKnowledgeHubSite" + "CommandName": "Remove-PnPKnowledgeHubSite", + "Id": 1083, + "Command": "Remove-PnPKnowledgeHubSite" }, { - "Id": 1084, - "Command": "Remove-PnPList -Identity Announcements", "Rank": 1, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Id": 1084, + "Command": "Remove-PnPList -Identity Announcements" }, { - "Id": 1085, - "Command": "Remove-PnPList -Identity Announcements -Force", "Rank": 2, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Id": 1085, + "Command": "Remove-PnPList -Identity Announcements -Force" }, { - "Id": 1086, - "Command": "Remove-PnPList -Identity Announcements -Recycle", "Rank": 3, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Id": 1086, + "Command": "Remove-PnPList -Identity Announcements -Recycle" }, { - "Id": 1087, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Rank": 4, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Id": 1087, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" }, { - "Id": 1088, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPListDesign" + "CommandName": "Remove-PnPListDesign", + "Id": 1088, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1089, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Id": 1089, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" }, { - "Id": 1090, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Rank": 2, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Id": 1090, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" }, { - "Id": 1091, - "Command": "Remove-PnPListItem -List \"Demo List\"", "Rank": 3, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Id": 1091, + "Command": "Remove-PnPListItem -List \"Demo List\"" }, { - "Id": 1092, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Rank": 1, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1092, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" }, { - "Id": 1093, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "Rank": 2, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1093, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" }, { - "Id": 1094, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Rank": 3, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1094, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" }, { - "Id": 1095, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Rank": 4, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1095, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" }, { - "Id": 1096, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Rank": 5, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1096, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" }, { - "Id": 1097, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "CommandName": "Remove-PnPListItemVersion" + "CommandName": "Remove-PnPListItemVersion", + "Id": 1097, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Id": 1098, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "CommandName": "Remove-PnPListItemVersion" + "CommandName": "Remove-PnPListItemVersion", + "Id": 1098, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Id": 1099, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365Group" + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1099, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" }, { - "Id": 1100, - "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365Group" + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1100, + "Command": "Remove-PnPMicrosoft365Group -Identity $group" }, { - "Id": 1101, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupMember" + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Id": 1101, + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1102, - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupOwner" + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Id": 1102, + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1103, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1103, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" }, { - "Id": 1104, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1104, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" }, { - "Id": 1105, - "Command": "Remove-PnPNavigationNode -Identity 1032", "Rank": 1, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Id": 1105, + "Command": "Remove-PnPNavigationNode -Identity 1032" }, { - "Id": 1106, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Rank": 2, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Id": 1106, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" }, { - "Id": 1107, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Rank": 3, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Id": 1107, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" }, { - "Id": 1108, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Rank": 1, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1108, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" }, { - "Id": 1109, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Rank": 2, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1109, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" }, { - "Id": 1110, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Rank": 3, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1110, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" }, { - "Id": 1111, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "CommandName": "Remove-PnPOrgNewsSite" + "CommandName": "Remove-PnPOrgNewsSite", + "Id": 1111, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Id": 1112, - "Command": "Remove-PnPPage -Identity \"MyPage\"", "Rank": 1, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Id": 1112, + "Command": "Remove-PnPPage -Identity \"MyPage\"" }, { - "Id": 1113, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Rank": 2, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Id": 1113, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" }, { - "Id": 1114, - "Command": "Remove-PnPPage $page", "Rank": 3, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Id": 1114, + "Command": "Remove-PnPPage $page" }, { - "Id": 1115, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Rank": 4, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Id": 1115, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" }, { - "Id": 1116, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Remove-PnPPageComponent" + "CommandName": "Remove-PnPPageComponent", + "Id": 1116, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 1117, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerBucket" + "CommandName": "Remove-PnPPlannerBucket", + "Id": 1117, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" }, { - "Id": 1118, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerPlan" + "CommandName": "Remove-PnPPlannerPlan", + "Id": 1118, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" }, { - "Id": 1119, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerRoster" + "CommandName": "Remove-PnPPlannerRoster", + "Id": 1119, + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Id": 1120, - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerRosterMember" + "CommandName": "Remove-PnPPlannerRosterMember", + "Id": 1120, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 1121, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Rank": 1, - "CommandName": "Remove-PnPPlannerTask" + "CommandName": "Remove-PnPPlannerTask", + "Id": 1121, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" }, { - "Id": 1122, - "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1122, + "Command": "Remove-PnPPropertyBagValue -Key MyKey" }, { - "Id": 1123, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Rank": 2, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1123, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" }, { - "Id": 1124, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Rank": 3, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1124, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" }, { - "Id": 1125, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "CommandName": "Remove-PnPPublishingImageRendition" + "CommandName": "Remove-PnPPublishingImageRendition", + "Id": 1125, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Id": 1126, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Rank": 1, - "CommandName": "Remove-PnPRoleDefinition" + "CommandName": "Remove-PnPRoleDefinition", + "Id": 1126, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" }, { - "Id": 1127, - "Command": "Remove-PnPSdnProvider -Confirm:false", "Rank": 1, - "CommandName": "Remove-PnPSdnProvider" + "CommandName": "Remove-PnPSdnProvider", + "Id": 1127, + "Command": "Remove-PnPSdnProvider -Confirm:false" }, { - "Id": 1128, - "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1128, + "Command": "Remove-PnPSearchConfiguration -Configuration $config" }, { - "Id": 1129, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1129, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Id": 1130, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1130, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Id": 1131, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1131, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 1132, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1132, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Id": 1133, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1133, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Id": 1134, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAppCatalog" + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Id": 1134, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "Id": 1135, - "Command": "Remove-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionTermStore" + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Id": 1135, + "Command": "Remove-PnPSiteCollectionTermStore" }, { - "Id": 1136, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteDesign" + "CommandName": "Remove-PnPSiteDesign", + "Id": 1136, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1137, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteDesignTask" + "CommandName": "Remove-PnPSiteDesignTask", + "Id": 1137, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1138, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Remove-PnPSiteGroup" + "CommandName": "Remove-PnPSiteGroup", + "Id": 1138, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1139, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Rank": 2, - "CommandName": "Remove-PnPSiteGroup" + "CommandName": "Remove-PnPSiteGroup", + "Id": 1139, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" }, { - "Id": 1140, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteScript" + "CommandName": "Remove-PnPSiteScript", + "Id": 1140, + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1141, - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "CommandName": "Remove-PnPSiteUserInvitations" + "CommandName": "Remove-PnPSiteUserInvitations", + "Id": 1141, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Id": 1142, - "Command": "Remove-PnPStorageEntity -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPStorageEntity" + "CommandName": "Remove-PnPStorageEntity", + "Id": 1142, + "Command": "Remove-PnPStorageEntity -Key MyKey" }, { - "Id": 1143, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPStorageEntity" + "CommandName": "Remove-PnPStorageEntity", + "Id": 1143, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Id": 1144, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Rank": 1, - "CommandName": "Remove-PnPStoredCredential" + "CommandName": "Remove-PnPStoredCredential", + "Id": 1144, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" }, { - "Id": 1145, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Rank": 1, - "CommandName": "Remove-PnPTaxonomyItem" + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1145, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" }, { - "Id": 1146, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Rank": 2, - "CommandName": "Remove-PnPTaxonomyItem" + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1146, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" }, { - "Id": 1147, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Rank": 1, - "CommandName": "Remove-PnPTeamsApp" + "CommandName": "Remove-PnPTeamsApp", + "Id": 1147, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" }, { - "Id": 1148, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Rank": 2, - "CommandName": "Remove-PnPTeamsApp" + "CommandName": "Remove-PnPTeamsApp", + "Id": 1148, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" }, { - "Id": 1149, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Rank": 1, - "CommandName": "Remove-PnPTeamsChannel" + "CommandName": "Remove-PnPTeamsChannel", + "Id": 1149, + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" }, { - "Id": 1150, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Rank": 1, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1150, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" }, { - "Id": 1151, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 2, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1151, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 1152, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Rank": 3, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1152, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" }, { - "Id": 1153, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "Rank": 1, - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsTab", + "Id": 1153, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" }, { - "Id": 1154, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "Rank": 2, - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsTab", + "Id": 1154, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" }, { - "Id": 1155, - "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" + "CommandName": "Remove-PnPTeamsTab", + "Id": 1155, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" }, { - "Id": 1156, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 1, - "CommandName": "Remove-PnPTeamsTag" + "CommandName": "Remove-PnPTeamsTag", + "Id": 1156, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Id": 1157, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "CommandName": "Remove-PnPTeamsTeam" + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1157, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Id": 1158, - "Command": "Remove-PnPTeamsTeam -Identity testteam", "Rank": 2, - "CommandName": "Remove-PnPTeamsTeam" + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1158, + "Command": "Remove-PnPTeamsTeam -Identity testteam" }, { - "Id": 1159, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Rank": 1, - "CommandName": "Remove-PnPTeamsUser" + "CommandName": "Remove-PnPTeamsUser", + "Id": 1159, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" }, { - "Id": 1160, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 2, - "CommandName": "Remove-PnPTeamsUser" + "CommandName": "Remove-PnPTeamsUser", + "Id": 1160, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Id": 1161, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "CommandName": "Remove-PnPTenantCdnOrigin" + "CommandName": "Remove-PnPTenantCdnOrigin", + "Id": 1161, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Id": 1162, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Remove-PnPTenantDeletedSite" + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1162, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1163, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "CommandName": "Remove-PnPTenantDeletedSite" + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1163, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Id": 1164, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Id": 1164, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1165, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Rank": 2, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Id": 1165, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" }, { - "Id": 1166, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Rank": 3, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Id": 1166, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" }, { - "Id": 1167, - "Command": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, - "CommandName": "Remove-PnPTenantSyncClientRestriction" + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Id": 1167, + "Command": "Remove-PnPTenantSyncClientRestriction" }, { - "Id": 1168, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 1, - "CommandName": "Remove-PnPTenantTheme" + "CommandName": "Remove-PnPTenantTheme", + "Id": 1168, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Id": 1169, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "CommandName": "Remove-PnPTerm" + "CommandName": "Remove-PnPTerm", + "Id": 1169, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Id": 1170, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTerm" + "CommandName": "Remove-PnPTerm", + "Id": 1170, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 1171, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Id": 1171, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Id": 1172, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Id": 1172, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" }, { - "Id": 1173, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Rank": 3, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Id": 1173, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" }, { - "Id": 1174, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "Rank": 1, - "CommandName": "Remove-PnPTermLabel" + "CommandName": "Remove-PnPTermLabel", + "Id": 1174, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" }, { - "Id": 1175, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTermLabel" + "CommandName": "Remove-PnPTermLabel", + "Id": 1175, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 1176, - "Command": "Remove-PnPUser -Identity 23", "Rank": 1, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Id": 1176, + "Command": "Remove-PnPUser -Identity 23" }, { - "Id": 1177, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "Rank": 2, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Id": 1177, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" }, { - "Id": 1178, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Rank": 3, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Id": 1178, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" }, { - "Id": 1179, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "CommandName": "Remove-PnPUserInfo" + "CommandName": "Remove-PnPUserInfo", + "Id": 1179, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Id": 1180, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "CommandName": "Remove-PnPUserProfile" + "CommandName": "Remove-PnPUserProfile", + "Id": 1180, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com" }, { - "Id": 1181, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Rank": 1, - "CommandName": "Remove-PnPView" + "CommandName": "Remove-PnPView", + "Id": 1181, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" }, { - "Id": 1182, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 1, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE" + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Id": 1182, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Id": 1183, - "Command": "Remove-PnPWeb -Identity projectA", "Rank": 1, - "CommandName": "Remove-PnPWeb" + "CommandName": "Remove-PnPWeb", + "Id": 1183, + "Command": "Remove-PnPWeb -Identity projectA" }, { - "Id": 1184, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Rank": 2, - "CommandName": "Remove-PnPWeb" + "CommandName": "Remove-PnPWeb", + "Id": 1184, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" }, { - "Id": 1185, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Rank": 1, - "CommandName": "Remove-PnPWebhookSubscription" + "CommandName": "Remove-PnPWebhookSubscription", + "Id": 1185, + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" }, { - "Id": 1186, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Remove-PnPWebPart" + "CommandName": "Remove-PnPWebPart", + "Id": 1186, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 1187, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Rank": 2, - "CommandName": "Remove-PnPWebPart" + "CommandName": "Remove-PnPWebPart", + "Id": 1187, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" }, { - "Id": 1188, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Rank": 1, - "CommandName": "Remove-PnPWikiPage" + "CommandName": "Remove-PnPWikiPage", + "Id": 1188, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" }, { - "Id": 1189, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Rank": 1, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Id": 1189, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" }, { - "Id": 1190, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Rank": 2, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Id": 1190, + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" }, { - "Id": 1191, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Rank": 3, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Id": 1191, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" }, { - "Id": 1192, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Rank": 1, - "CommandName": "Rename-PnPFolder" + "CommandName": "Rename-PnPFolder", + "Id": 1192, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" }, { - "Id": 1193, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Repair-PnPSite" + "CommandName": "Repair-PnPSite", + "Id": 1193, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1194, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "CommandName": "Repair-PnPSite" + "CommandName": "Repair-PnPSite", + "Id": 1194, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Id": 1195, - "Command": "Request-PnPAccessToken", "Rank": 1, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Id": 1195, + "Command": "Request-PnPAccessToken" }, { - "Id": 1196, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Rank": 2, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Id": 1196, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" }, { - "Id": 1197, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "Rank": 3, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Id": 1197, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" }, { - "Id": 1198, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Rank": 4, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Id": 1198, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" }, { - "Id": 1199, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Rank": 1, - "CommandName": "Request-PnPPersonalSite" + "CommandName": "Request-PnPPersonalSite", + "Id": 1199, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" }, { - "Id": 1200, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Rank": 2, - "CommandName": "Request-PnPPersonalSite" + "CommandName": "Request-PnPPersonalSite", + "Id": 1200, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" }, { - "Id": 1201, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Rank": 1, - "CommandName": "Request-PnPReIndexList" + "CommandName": "Request-PnPReIndexList", + "Id": 1201, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"" }, { - "Id": 1202, - "Command": "Request-PnPReIndexWeb", "Rank": 1, - "CommandName": "Request-PnPReIndexWeb" + "CommandName": "Request-PnPReIndexWeb", + "Id": 1202, + "Command": "Request-PnPReIndexWeb" }, { - "Id": 1203, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Rank": 1, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1203, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" }, { - "Id": 1204, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Rank": 2, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1204, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" }, { - "Id": 1205, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Rank": 3, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1205, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" }, { - "Id": 1206, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Rank": 1, - "CommandName": "Reset-PnPFileVersion" + "CommandName": "Reset-PnPFileVersion", + "Id": 1206, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" }, { - "Id": 1207, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Rank": 2, - "CommandName": "Reset-PnPFileVersion" + "CommandName": "Reset-PnPFileVersion", + "Id": 1207, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" }, { - "Id": 1208, - "Command": "Reset-PnPLabel -List \"Demo List\"", "Rank": 1, - "CommandName": "Reset-PnPLabel" + "CommandName": "Reset-PnPLabel", + "Id": 1208, + "Command": "Reset-PnPLabel -List \"Demo List\"" }, { - "Id": 1209, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Rank": 2, - "CommandName": "Reset-PnPLabel" + "CommandName": "Reset-PnPLabel", + "Id": 1209, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" }, { - "Id": 1210, - "Command": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration" + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1210, + "Command": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Id": 1211, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Id": 1211, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" }, { - "Id": 1212, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Rank": 1, - "CommandName": "Resolve-PnPFolder" + "CommandName": "Resolve-PnPFolder", + "Id": 1212, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" }, { - "Id": 1213, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "CommandName": "Restore-PnPDeletedMicrosoft365Group" + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Id": 1213, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 1214, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Id": 1214, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Id": 1215, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Rank": 2, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Id": 1215, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" }, { - "Id": 1216, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 3, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Id": 1216, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Id": 1217, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "CommandName": "Restore-PnPListItemVersion" + "CommandName": "Restore-PnPListItemVersion", + "Id": 1217, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Id": 1218, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "CommandName": "Restore-PnPListItemVersion" + "CommandName": "Restore-PnPListItemVersion", + "Id": 1218, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Id": 1219, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "CommandName": "Restore-PnPRecycleBinItem" + "CommandName": "Restore-PnPRecycleBinItem", + "Id": 1219, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Id": 1220, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1220, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1221, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1221, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "Id": 1222, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Id": 1222, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1223, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Id": 1223, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Id": 1224, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Rank": 3, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Id": 1224, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" }, { - "Id": 1225, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Rank": 1, - "CommandName": "Revoke-PnPAzureADAppSitePermission" + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Id": 1225, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" }, { - "Id": 1226, - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Revoke-PnPHubSiteRights" + "CommandName": "Revoke-PnPHubSiteRights", + "Id": 1226, + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 1227, - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Revoke-PnPSiteDesignRights" + "CommandName": "Revoke-PnPSiteDesignRights", + "Id": 1227, + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 1228, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission" + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Id": 1228, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Id": 1229, - "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Rank": 1, - "CommandName": "Revoke-PnPUserSession" + "CommandName": "Revoke-PnPUserSession", + "Id": 1229, + "Command": "Revoke-PnPUserSession -User user1@contoso.com" }, { - "Id": 1230, - "Command": "Save-PnPPageConversionLog", "Rank": 1, - "CommandName": "Save-PnPPageConversionLog" + "CommandName": "Save-PnPPageConversionLog", + "Id": 1230, + "Command": "Save-PnPPageConversionLog" }, { - "Id": 1231, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Rank": 1, - "CommandName": "Save-PnPSiteTemplate" + "CommandName": "Save-PnPSiteTemplate", + "Id": 1231, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" }, { - "Id": 1232, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Rank": 1, - "CommandName": "Save-PnPTenantTemplate" + "CommandName": "Save-PnPTenantTemplate", + "Id": 1232, + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" }, { - "Id": 1233, - "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" + "CommandName": "Send-PnPMail", + "Id": 1233, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Id": 1234, - "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" + "CommandName": "Send-PnPMail", + "Id": 1234, + "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": 1235, - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Rank": 3, - "CommandName": "Send-PnPMail" + "CommandName": "Send-PnPMail", + "Id": 1235, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Id": 1236, - "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" + "CommandName": "Send-PnPMail", + "Id": 1236, + "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": 1237, - "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" + "CommandName": "Send-PnPMail", + "Id": 1237, + "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": 1238, - "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" + "CommandName": "Send-PnPMail", + "Id": 1238, + "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": 1239, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Rank": 1, - "CommandName": "Set-PnPAdaptiveScopeProperty" + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Id": 1239, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" }, { - "Id": 1240, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Set-PnPApplicationCustomizer" + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1240, + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1241, - "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" + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1241, + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" }, { - "Id": 1242, - "Command": "Set-PnPAppSideLoading -On", "Rank": 1, - "CommandName": "Set-PnPAppSideLoading" + "CommandName": "Set-PnPAppSideLoading", + "Id": 1242, + "Command": "Set-PnPAppSideLoading -On" }, { - "Id": 1243, - "Command": "Set-PnPAppSideLoading -Off", "Rank": 2, - "CommandName": "Set-PnPAppSideLoading" + "CommandName": "Set-PnPAppSideLoading", + "Id": 1243, + "Command": "Set-PnPAppSideLoading -Off" }, { - "Id": 1244, - "Command": "Set-PnPAuditing -EnableAll", "Rank": 1, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Id": 1244, + "Command": "Set-PnPAuditing -EnableAll" }, { - "Id": 1245, - "Command": "Set-PnPAuditing -DisableAll", "Rank": 2, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Id": 1245, + "Command": "Set-PnPAuditing -DisableAll" }, { - "Id": 1246, - "Command": "Set-PnPAuditing -RetentionTime 7", "Rank": 3, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Id": 1246, + "Command": "Set-PnPAuditing -RetentionTime 7" }, { - "Id": 1247, - "Command": "Set-PnPAuditing -TrimAuditLog", "Rank": 4, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Id": 1247, + "Command": "Set-PnPAuditing -TrimAuditLog" }, { - "Id": 1248, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Rank": 5, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Id": 1248, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" }, { - "Id": 1249, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Rank": 1, - "CommandName": "Set-PnPAvailablePageLayouts" + "CommandName": "Set-PnPAvailablePageLayouts", + "Id": 1249, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" }, { - "Id": 1250, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Rank": 1, - "CommandName": "Set-PnPAzureADAppSitePermission" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1250, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" }, { - "Id": 1251, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Rank": 2, - "CommandName": "Set-PnPAzureADAppSitePermission" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1251, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" }, { - "Id": 1252, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Id": 1252, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" }, { - "Id": 1253, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Id": 1253, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Id": 1254, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Rank": 3, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Id": 1254, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" }, { - "Id": 1255, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Rank": 1, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1255, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" }, { - "Id": 1256, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Rank": 2, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1256, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" }, { - "Id": 1257, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Rank": 3, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1257, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" }, { - "Id": 1258, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Rank": 1, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1258, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" }, { - "Id": 1259, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Rank": 2, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1259, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" }, { - "Id": 1260, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Rank": 1, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1260, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" }, { - "Id": 1261, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Rank": 2, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1261, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" }, { - "Id": 1262, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Rank": 3, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1262, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" }, { - "Id": 1263, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Rank": 4, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1263, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" }, { - "Id": 1264, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 1, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Id": 1264, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Id": 1265, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Rank": 2, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Id": 1265, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" }, { - "Id": 1266, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 3, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Id": 1266, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Id": 1267, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 4, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Id": 1267, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Id": 1268, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 5, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Id": 1268, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Id": 1269, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Rank": 1, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1269, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" }, { - "Id": 1270, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Rank": 2, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1270, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" }, { - "Id": 1271, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Rank": 3, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1271, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" }, { - "Id": 1272, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Rank": 4, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1272, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" }, { - "Id": 1273, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Rank": 1, - "CommandName": "Set-PnPDefaultContentTypeToList" + "CommandName": "Set-PnPDefaultContentTypeToList", + "Id": 1273, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" }, { - "Id": 1274, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Rank": 1, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1274, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" }, { - "Id": 1275, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Rank": 2, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1275, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" }, { - "Id": 1276, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Rank": 3, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1276, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" }, { - "Id": 1277, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Rank": 1, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1277, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" }, { - "Id": 1278, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 2, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1278, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Id": 1279, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 3, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1279, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Id": 1280, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Rank": 1, - "CommandName": "Set-PnPDocumentSetField" + "CommandName": "Set-PnPDocumentSetField", + "Id": 1280, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" }, { - "Id": 1281, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Rank": 2, - "CommandName": "Set-PnPDocumentSetField" + "CommandName": "Set-PnPDocumentSetField", + "Id": 1281, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" }, { - "Id": 1282, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "Rank": 1, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Id": 1282, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" }, { - "Id": 1283, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Rank": 2, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Id": 1283, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" }, { - "Id": 1284, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Rank": 3, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Id": 1284, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" }, { - "Id": 1285, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Set-PnPFileCheckedIn" + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1285, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" }, { - "Id": 1286, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Rank": 2, - "CommandName": "Set-PnPFileCheckedIn" + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1286, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" }, { - "Id": 1287, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Set-PnPFileCheckedOut" + "CommandName": "Set-PnPFileCheckedOut", + "Id": 1287, + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" }, { - "Id": 1288, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Id": 1288, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1289, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Id": 1289, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1290, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Id": 1290, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Id": 1291, - "Command": "Set-PnPFooter -Enabled:$true", "Rank": 1, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Id": 1291, + "Command": "Set-PnPFooter -Enabled:$true" }, { - "Id": 1292, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Rank": 2, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Id": 1292, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" }, { - "Id": 1293, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Rank": 3, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Id": 1293, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" }, { - "Id": 1294, - "Command": "Set-PnPFooter -LogoUrl \"\"", "Rank": 4, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Id": 1294, + "Command": "Set-PnPFooter -LogoUrl \"\"" }, { - "Id": 1295, - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Rank": 1, - "CommandName": "Set-PnPGraphSubscription" + "CommandName": "Set-PnPGraphSubscription", + "Id": 1295, + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" }, { - "Id": 1296, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Rank": 1, - "CommandName": "Set-PnPGroup" + "CommandName": "Set-PnPGroup", + "Id": 1296, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" }, { - "Id": 1297, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Rank": 2, - "CommandName": "Set-PnPGroup" + "CommandName": "Set-PnPGroup", + "Id": 1297, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" }, { - "Id": 1298, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Rank": 1, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1298, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" }, { - "Id": 1299, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Rank": 2, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1299, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" }, { - "Id": 1300, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Rank": 3, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1300, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" }, { - "Id": 1301, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Rank": 4, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1301, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" }, { - "Id": 1302, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Rank": 5, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1302, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" }, { - "Id": 1303, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Rank": 1, - "CommandName": "Set-PnPHideDefaultThemes" + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1303, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" }, { - "Id": 1304, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Rank": 2, - "CommandName": "Set-PnPHideDefaultThemes" + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1304, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" }, { - "Id": 1305, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Rank": 1, - "CommandName": "Set-PnPHomePage" + "CommandName": "Set-PnPHomePage", + "Id": 1305, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" }, { - "Id": 1306, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Rank": 2, - "CommandName": "Set-PnPHomePage" + "CommandName": "Set-PnPHomePage", + "Id": 1306, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" }, { - "Id": 1307, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Rank": 1, - "CommandName": "Set-PnPHomeSite" + "CommandName": "Set-PnPHomeSite", + "Id": 1307, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" }, { - "Id": 1308, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Rank": 2, - "CommandName": "Set-PnPHomeSite" + "CommandName": "Set-PnPHomeSite", + "Id": 1308, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" }, { - "Id": 1309, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "Rank": 1, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Id": 1309, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" }, { - "Id": 1310, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "Rank": 2, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Id": 1310, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" }, { - "Id": 1311, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "Rank": 3, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Id": 1311, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" }, { - "Id": 1312, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "Rank": 4, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Id": 1312, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" }, { - "Id": 1313, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Rank": 5, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Id": 1313, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" }, { - "Id": 1314, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Rank": 6, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Id": 1314, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" }, { - "Id": 1315, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Rank": 1, - "CommandName": "Set-PnPImageListItemColumn" + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1315, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" }, { - "Id": 1316, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Rank": 2, - "CommandName": "Set-PnPImageListItemColumn" + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1316, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" }, { - "Id": 1317, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Rank": 1, - "CommandName": "Set-PnPIndexedProperties" + "CommandName": "Set-PnPIndexedProperties", + "Id": 1317, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" }, { - "Id": 1318, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Rank": 1, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1318, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" }, { - "Id": 1319, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Rank": 2, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1319, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" }, { - "Id": 1320, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Rank": 1, - "CommandName": "Set-PnPKnowledgeHubSite" + "CommandName": "Set-PnPKnowledgeHubSite", + "Id": 1320, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" }, { - "Id": 1321, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Rank": 1, - "CommandName": "Set-PnPLabel" + "CommandName": "Set-PnPLabel", + "Id": 1321, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" }, { - "Id": 1322, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Rank": 2, - "CommandName": "Set-PnPLabel" + "CommandName": "Set-PnPLabel", + "Id": 1322, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" }, { - "Id": 1323, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Rank": 1, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1323, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" }, { - "Id": 1324, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Rank": 2, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1324, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" }, { - "Id": 1325, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Rank": 3, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1325, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" }, { - "Id": 1326, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Rank": 4, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1326, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" }, { - "Id": 1327, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Rank": 5, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1327, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" }, { - "Id": 1328, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Rank": 6, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1328, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" }, { - "Id": 1329, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Rank": 7, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1329, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" }, { - "Id": 1330, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "Rank": 8, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1330, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" }, { - "Id": 1331, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "Rank": 9, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1331, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" }, { - "Id": 1332, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "Rank": 10, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1332, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" }, { - "Id": 1333, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "Rank": 11, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1333, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" }, { - "Id": 1334, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "Rank": 1, - "CommandName": "Set-PnPListInformationRightsManagement" + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1334, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" }, { - "Id": 1335, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "Rank": 2, - "CommandName": "Set-PnPListInformationRightsManagement" + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1335, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" }, { - "Id": 1336, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Id": 1336, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1337, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Id": 1337, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1338, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 3, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Id": 1338, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1339, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "Rank": 4, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Id": 1339, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" }, { - "Id": 1340, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "Rank": 5, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Id": 1340, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" }, { - "Id": 1341, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Set-PnPListItemAsRecord" + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1341, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Id": 1342, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "Rank": 2, - "CommandName": "Set-PnPListItemAsRecord" + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1342, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" }, { - "Id": 1343, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Id": 1343, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1344, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Id": 1344, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1345, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Id": 1345, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Id": 1346, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "Rank": 4, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Id": 1346, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" }, { - "Id": 1347, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "Rank": 5, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Id": 1347, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" }, { - "Id": 1348, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPListPermission" + "CommandName": "Set-PnPListPermission", + "Id": 1348, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1349, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPListPermission" + "CommandName": "Set-PnPListPermission", + "Id": 1349, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1350, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "Rank": 1, - "CommandName": "Set-PnPListRecordDeclaration" + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1350, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" }, { - "Id": 1351, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "Rank": 2, - "CommandName": "Set-PnPListRecordDeclaration" + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1351, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" }, { - "Id": 1352, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 1, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Id": 1352, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Id": 1353, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 2, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Id": 1353, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Id": 1354, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 3, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Id": 1354, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Id": 1355, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 4, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Id": 1355, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Id": 1356, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1356, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" }, { - "Id": 1357, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1357, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1358, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1358, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Id": 1359, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1359, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" }, { - "Id": 1360, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1360, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1361, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1361, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Id": 1362, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1362, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" }, { - "Id": 1363, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1363, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1364, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1364, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Id": 1365, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1365, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" }, { - "Id": 1366, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1366, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1367, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1367, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Id": 1368, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1368, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" }, { - "Id": 1369, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1369, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1370, - "Command": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1370, + "Command": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Id": 1371, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1371, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" }, { - "Id": 1372, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1372, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1373, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1373, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Id": 1374, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1374, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" }, { - "Id": 1375, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1375, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Id": 1376, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "Rank": 3, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1376, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" }, { - "Id": 1377, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "Rank": 4, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1377, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" }, { - "Id": 1378, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "Rank": 5, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1378, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" }, { - "Id": 1379, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1379, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Id": 1380, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "Rank": 1, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1380, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" }, { - "Id": 1381, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "Rank": 2, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1381, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" }, { - "Id": 1382, - "Command": "Set-PnPMinimalDownloadStrategy -Off", "Rank": 1, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1382, + "Command": "Set-PnPMinimalDownloadStrategy -Off" }, { - "Id": 1383, - "Command": "Set-PnPMinimalDownloadStrategy -On", "Rank": 2, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1383, + "Command": "Set-PnPMinimalDownloadStrategy -On" }, { - "Id": 1384, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Rank": 1, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1384, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" }, { - "Id": 1385, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Rank": 2, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1385, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" }, { - "Id": 1386, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Rank": 3, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1386, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" }, { - "Id": 1387, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Rank": 4, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1387, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" }, { - "Id": 1388, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Rank": 5, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1388, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" }, { - "Id": 1389, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "Rank": 6, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1389, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" }, { - "Id": 1390, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1390, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Id": 1391, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "Rank": 8, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1391, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" }, { - "Id": 1392, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1392, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Id": 1393, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1393, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Id": 1394, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "Rank": 11, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1394, + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" }, { - "Id": 1395, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "Rank": 1, - "CommandName": "Set-PnPPageTextPart" + "CommandName": "Set-PnPPageTextPart", + "Id": 1395, + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" }, { - "Id": 1396, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "Rank": 1, - "CommandName": "Set-PnPPageWebPart" + "CommandName": "Set-PnPPageWebPart", + "Id": 1396, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" }, { - "Id": 1397, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "Rank": 2, - "CommandName": "Set-PnPPageWebPart" + "CommandName": "Set-PnPPageWebPart", + "Id": 1397, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" }, { - "Id": 1398, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "Rank": 1, - "CommandName": "Set-PnPPlannerBucket" + "CommandName": "Set-PnPPlannerBucket", + "Id": 1398, + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" }, { - "Id": 1399, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "Rank": 1, - "CommandName": "Set-PnPPlannerConfiguration" + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1399, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" }, { - "Id": 1400, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "Rank": 2, - "CommandName": "Set-PnPPlannerConfiguration" + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1400, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" }, { - "Id": 1401, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "Rank": 1, - "CommandName": "Set-PnPPlannerPlan" + "CommandName": "Set-PnPPlannerPlan", + "Id": 1401, + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" }, { - "Id": 1402, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "Rank": 1, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Id": 1402, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" }, { - "Id": 1403, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "Rank": 2, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Id": 1403, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" }, { - "Id": 1404, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Rank": 3, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Id": 1404, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "Id": 1405, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Set-PnPPlannerUserPolicy" + "CommandName": "Set-PnPPlannerUserPolicy", + "Id": 1405, + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 1406, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Rank": 1, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1406, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" }, { - "Id": 1407, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Rank": 2, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1407, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" }, { - "Id": 1408, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "Rank": 3, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1408, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" }, { - "Id": 1409, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Rank": 1, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1409, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" }, { - "Id": 1410, - "Command": "Set-PnPRequestAccessEmails -Disabled", "Rank": 2, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1410, + "Command": "Set-PnPRequestAccessEmails -Disabled" }, { - "Id": 1411, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "Rank": 3, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1411, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false" }, { - "Id": 1412, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Rank": 1, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Id": 1412, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" }, { - "Id": 1413, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Rank": 2, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Id": 1413, + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" }, { - "Id": 1414, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Rank": 3, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Id": 1414, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" }, { - "Id": 1415, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "Rank": 4, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Id": 1415, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" }, { - "Id": 1416, - "Command": "Set-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1416, + "Command": "Set-PnPSearchConfiguration -Configuration $config" }, { - "Id": 1417, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1417, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Id": 1418, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1418, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Id": 1419, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1419, + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 1420, - "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" + "CommandName": "Set-PnPSearchExternalItem", + "Id": 1420, + "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": 1421, - "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" + "CommandName": "Set-PnPSearchExternalItem", + "Id": 1421, + "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": 1422, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Rank": 1, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Id": 1422, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" }, { - "Id": 1423, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Rank": 2, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Id": 1423, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" }, { - "Id": 1424, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Rank": 3, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Id": 1424, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" }, { - "Id": 1425, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Rank": 4, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Id": 1425, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" }, { - "Id": 1426, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "Rank": 5, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Id": 1426, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" }, { - "Id": 1427, - "Command": "Set-PnPSearchSettings -SearchScope Tenant", "Rank": 6, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Id": 1427, + "Command": "Set-PnPSearchSettings -SearchScope Tenant" }, { - "Id": 1428, - "Command": "Set-PnPSearchSettings -SearchScope Hub", "Rank": 7, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Id": 1428, + "Command": "Set-PnPSearchSettings -SearchScope Hub" }, { - "Id": 1429, - "Command": "Set-PnPSite -Classification \"HBI\"", "Rank": 1, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1429, + "Command": "Set-PnPSite -Classification \"HBI\"" }, { - "Id": 1430, - "Command": "Set-PnPSite -Classification $null", "Rank": 2, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1430, + "Command": "Set-PnPSite -Classification $null" }, { - "Id": 1431, - "Command": "Set-PnPSite -DisableFlows", "Rank": 3, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1431, + "Command": "Set-PnPSite -DisableFlows" }, { - "Id": 1432, - "Command": "Set-PnPSite -DisableFlows:$false", "Rank": 4, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1432, + "Command": "Set-PnPSite -DisableFlows:$false" }, { - "Id": 1433, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "Rank": 5, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1433, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" }, { - "Id": 1434, - "Command": "Set-PnPSite -NoScriptSite $false", "Rank": 6, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1434, + "Command": "Set-PnPSite -NoScriptSite $false" }, { - "Id": 1435, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "Rank": 7, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1435, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" }, { - "Id": 1436, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "Rank": 8, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1436, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" }, { - "Id": 1437, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "Rank": 9, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1437, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" }, { - "Id": 1438, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "Rank": 10, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1438, + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" }, { - "Id": 1439, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "Rank": 11, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1439, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" }, { - "Id": 1440, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "Rank": 12, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1440, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" }, { - "Id": 1441, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "Rank": 13, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1441, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" }, { - "Id": 1442, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "Rank": 14, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1442, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" }, { - "Id": 1443, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "Rank": 15, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1443, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" }, { - "Id": 1444, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "Rank": 16, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1444, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" }, { - "Id": 1445, - "Command": "Set-PnPSite -CancelVPForExistingLibs", "Rank": 17, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1445, + "Command": "Set-PnPSite -CancelVPForExistingLibs" }, { - "Id": 1446, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "Rank": 1, - "CommandName": "Set-PnPSiteClassification" + "CommandName": "Set-PnPSiteClassification", + "Id": 1446, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"" }, { - "Id": 1447, - "Command": "Set-PnPSiteClosure -State Open", "Rank": 1, - "CommandName": "Set-PnPSiteClosure" + "CommandName": "Set-PnPSiteClosure", + "Id": 1447, + "Command": "Set-PnPSiteClosure -State Open" }, { - "Id": 1448, - "Command": "Set-PnPSiteClosure -State Closed", "Rank": 2, - "CommandName": "Set-PnPSiteClosure" + "CommandName": "Set-PnPSiteClosure", + "Id": 1448, + "Command": "Set-PnPSiteClosure -State Closed" }, { - "Id": 1449, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "Rank": 1, - "CommandName": "Set-PnPSiteDesign" + "CommandName": "Set-PnPSiteDesign", + "Id": 1449, + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" }, { - "Id": 1450, - "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" + "CommandName": "Set-PnPSiteDesign", + "Id": 1450, + "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": 1451, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "Rank": 1, - "CommandName": "Set-PnPSiteGroup" + "CommandName": "Set-PnPSiteGroup", + "Id": 1451, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" }, { - "Id": 1452, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "Rank": 2, - "CommandName": "Set-PnPSiteGroup" + "CommandName": "Set-PnPSiteGroup", + "Id": 1452, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" }, { - "Id": 1453, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 1, - "CommandName": "Set-PnPSitePolicy" + "CommandName": "Set-PnPSitePolicy", + "Id": 1453, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Id": 1454, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "CommandName": "Set-PnPSiteScript" + "CommandName": "Set-PnPSiteScript", + "Id": 1454, + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Id": 1455, - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "CommandName": "Set-PnPSiteScriptPackage" + "CommandName": "Set-PnPSiteScriptPackage", + "Id": 1455, + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Id": 1456, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Rank": 1, - "CommandName": "Set-PnPSiteSensitivityLabel" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1456, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" }, { - "Id": 1457, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "Rank": 2, - "CommandName": "Set-PnPSiteSensitivityLabel" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1457, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" }, { - "Id": 1458, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "Rank": 1, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1458, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" }, { - "Id": 1459, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "Rank": 2, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1459, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" }, { - "Id": 1460, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 3, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1460, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Id": 1461, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 4, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1461, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Id": 1462, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 5, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1462, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Id": 1463, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 6, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1463, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Id": 1464, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 1, - "CommandName": "Set-PnPStorageEntity" + "CommandName": "Set-PnPStorageEntity", + "Id": 1464, + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Id": 1465, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 2, - "CommandName": "Set-PnPStorageEntity" + "CommandName": "Set-PnPStorageEntity", + "Id": 1465, + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Id": 1466, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1466, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 1467, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1467, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 1468, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1468, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 1469, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1469, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 1470, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "Rank": 1, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1470, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" }, { - "Id": 1471, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "Rank": 2, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1471, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" }, { - "Id": 1472, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "Rank": 1, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1472, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" }, { - "Id": 1473, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "Rank": 2, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1473, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" }, { - "Id": 1474, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "Rank": 3, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1474, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" }, { - "Id": 1475, - "Command": "Set-PnPTeamifyPromptHidden", "Rank": 1, - "CommandName": "Set-PnPTeamifyPromptHidden" + "CommandName": "Set-PnPTeamifyPromptHidden", + "Id": 1475, + "Command": "Set-PnPTeamifyPromptHidden" }, { - "Id": 1476, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Rank": 1, - "CommandName": "Set-PnPTeamsChannel" + "CommandName": "Set-PnPTeamsChannel", + "Id": 1476, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" }, { - "Id": 1477, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Rank": 2, - "CommandName": "Set-PnPTeamsChannel" + "CommandName": "Set-PnPTeamsChannel", + "Id": 1477, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" }, { - "Id": 1478, - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Rank": 1, - "CommandName": "Set-PnpTeamsChannelUser" + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1478, + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" }, { - "Id": 1479, - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Rank": 2, - "CommandName": "Set-PnpTeamsChannelUser" + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1479, + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" }, { - "Id": 1480, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTab" + "CommandName": "Set-PnPTeamsTab", + "Id": 1480, + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" }, { - "Id": 1481, - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTag" + "CommandName": "Set-PnPTeamsTag", + "Id": 1481, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" }, { - "Id": 1482, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Rank": 1, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Id": 1482, + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" }, { - "Id": 1483, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Rank": 2, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Id": 1483, + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" }, { - "Id": 1484, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Rank": 3, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Id": 1484, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" }, { - "Id": 1485, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "Rank": 4, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Id": 1485, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" }, { - "Id": 1486, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Rank": 1, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1486, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" }, { - "Id": 1487, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Rank": 2, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1487, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" }, { - "Id": 1488, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "Rank": 3, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1488, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" }, { - "Id": 1489, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTeamPicture" + "CommandName": "Set-PnPTeamsTeamPicture", + "Id": 1489, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" }, { - "Id": 1490, - "Command": "Set-PnPTemporarilyDisableAppBar $true", "Rank": 1, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1490, + "Command": "Set-PnPTemporarilyDisableAppBar $true" }, { - "Id": 1491, - "Command": "Set-PnPTemporarilyDisableAppBar $false", "Rank": 2, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1491, + "Command": "Set-PnPTemporarilyDisableAppBar $false" }, { - "Id": 1492, - "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" + "CommandName": "Set-PnPTenant", + "Id": 1492, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" }, { - "Id": 1493, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Rank": 2, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Id": 1493, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" }, { - "Id": 1494, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Rank": 3, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Id": 1494, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false" }, { - "Id": 1495, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Rank": 4, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Id": 1495, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" }, { - "Id": 1496, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Rank": 1, - "CommandName": "Set-PnPTenantAppCatalogUrl" + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Id": 1496, + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" }, { - "Id": 1497, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "Rank": 1, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1497, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" }, { - "Id": 1498, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "Rank": 2, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1498, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" }, { - "Id": 1499, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "Rank": 3, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1499, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" }, { - "Id": 1500, - "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" + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1500, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" }, { - "Id": 1501, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Rank": 2, - "CommandName": "Set-PnPTenantCdnPolicy" + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1501, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" }, { - "Id": 1502, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "Rank": 1, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Id": 1502, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" }, { - "Id": 1503, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "Rank": 2, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Id": 1503, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" }, { - "Id": 1504, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Id": 1504, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Id": 1505, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 4, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Id": 1505, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Id": 1506, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "Rank": 5, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Id": 1506, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" }, { - "Id": 1507, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Rank": 1, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1507, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" }, { - "Id": 1508, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Rank": 2, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1508, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" }, { - "Id": 1509, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "Rank": 1, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Id": 1509, + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" }, { - "Id": 1510, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Id": 1510, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 1511, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 3, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Id": 1511, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 1512, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "Rank": 4, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Id": 1512, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" }, { - "Id": 1513, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "Rank": 1, - "CommandName": "Set-PnPTermGroup" + "CommandName": "Set-PnPTermGroup", + "Id": 1513, + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" }, { - "Id": 1514, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "Rank": 1, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Id": 1514, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" }, { - "Id": 1515, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "Rank": 2, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Id": 1515, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" }, { - "Id": 1516, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "Rank": 3, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Id": 1516, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" }, { - "Id": 1517, - "Command": "Set-PnPTheme", "Rank": 1, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Id": 1517, + "Command": "Set-PnPTheme" }, { - "Id": 1518, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Rank": 2, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Id": 1518, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" }, { - "Id": 1519, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "Rank": 3, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Id": 1519, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" }, { - "Id": 1520, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "Rank": 4, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Id": 1520, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" }, { - "Id": 1521, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "Rank": 1, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Id": 1521, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" }, { - "Id": 1522, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "Rank": 2, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Id": 1522, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" }, { - "Id": 1523, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "Rank": 3, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Id": 1523, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" }, { - "Id": 1524, - "Command": "Set-PnPTraceLog -Off", "Rank": 4, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Id": 1524, + "Command": "Set-PnPTraceLog -Off" }, { - "Id": 1525, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "Rank": 1, - "CommandName": "Set-PnPUserOneDriveQuota" + "CommandName": "Set-PnPUserOneDriveQuota", + "Id": 1525, + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" }, { - "Id": 1526, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "Rank": 1, - "CommandName": "Set-PnPUserProfileProperty" + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1526, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" }, { - "Id": 1527, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "Rank": 2, - "CommandName": "Set-PnPUserProfileProperty" + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1527, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" }, { - "Id": 1528, - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "Rank": 1, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Id": 1528, + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" }, { - "Id": 1529, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "Rank": 2, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Id": 1529, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" }, { - "Id": 1530, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "Rank": 3, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Id": 1530, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" }, { - "Id": 1531, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "Rank": 4, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Id": 1531, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" }, { - "Id": 1532, - "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" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1532, + "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": 1533, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "Rank": 2, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1533, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" }, { - "Id": 1534, - "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" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1534, + "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": 1535, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "Rank": 4, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1535, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" }, { - "Id": 1536, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Rank": 1, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Id": 1536, + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" }, { - "Id": 1537, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Rank": 2, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Id": 1537, + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" }, { - "Id": 1538, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "Rank": 3, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Id": 1538, + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" }, { - "Id": 1539, - "Command": "Set-PnPWeb -NoCrawl:$true", "Rank": 4, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Id": 1539, + "Command": "Set-PnPWeb -NoCrawl:$true" }, { - "Id": 1540, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "Rank": 1, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Id": 1540, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" }, { - "Id": 1541, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "Rank": 2, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Id": 1541, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" }, { - "Id": 1542, - "Command": "Set-PnPWebHeader -LogoAlignment Middle", "Rank": 3, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Id": 1542, + "Command": "Set-PnPWebHeader -LogoAlignment Middle" }, { - "Id": 1543, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "CommandName": "Set-PnPWebhookSubscription" + "CommandName": "Set-PnPWebhookSubscription", + "Id": 1543, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Id": 1544, - "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" + "CommandName": "Set-PnPWebhookSubscription", + "Id": 1544, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Id": 1545, - "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" + "CommandName": "Set-PnPWebPartProperty", + "Id": 1545, + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" }, { - "Id": 1546, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 1, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Id": 1546, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Id": 1547, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Rank": 2, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Id": 1547, + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" }, { - "Id": 1548, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 3, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Id": 1548, + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Id": 1549, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Rank": 4, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Id": 1549, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" }, { - "Id": 1550, - "Command": "Set-PnPWebTheme -Theme MyTheme", "Rank": 1, - "CommandName": "Set-PnPWebTheme" + "CommandName": "Set-PnPWebTheme", + "Id": 1550, + "Command": "Set-PnPWebTheme -Theme MyTheme" }, { - "Id": 1551, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Rank": 2, - "CommandName": "Set-PnPWebTheme" + "CommandName": "Set-PnPWebTheme", + "Id": 1551, + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" }, { - "Id": 1552, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "Rank": 1, - "CommandName": "Set-PnPWikiPageContent" + "CommandName": "Set-PnPWikiPageContent", + "Id": 1552, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" }, { - "Id": 1553, - "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Rank": 1, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1553, + "Command": "Submit-PnPSearchQuery -Query \"finance\"" }, { - "Id": 1554, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Rank": 2, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1554, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" }, { - "Id": 1555, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "Rank": 3, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1555, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" }, { - "Id": 1556, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "Rank": 4, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1556, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" }, { - "Id": 1557, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "Rank": 5, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1557, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" }, { - "Id": 1558, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "Rank": 1, - "CommandName": "Submit-PnPTeamsChannelMessage" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1558, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" }, { - "Id": 1559, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "Rank": 2, - "CommandName": "Submit-PnPTeamsChannelMessage" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1559, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" }, { - "Id": 1560, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Sync-PnPAppToTeams" + "CommandName": "Sync-PnPAppToTeams", + "Id": 1560, + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1561, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Rank": 1, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1561, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" }, { - "Id": 1562, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "Rank": 2, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1562, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" }, { - "Id": 1563, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "Rank": 3, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1563, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" }, { - "Id": 1564, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Test-PnPListItemIsRecord" + "CommandName": "Test-PnPListItemIsRecord", + "Id": 1564, + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" }, { - "Id": 1565, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "Rank": 1, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Id": 1565, + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" }, { - "Id": 1566, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Test-PnPSite" + "CommandName": "Test-PnPSite", + "Id": 1566, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1567, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "CommandName": "Test-PnPSite" + "CommandName": "Test-PnPSite", + "Id": 1567, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Id": 1568, - "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Rank": 1, - "CommandName": "Test-PnPTenantTemplate" + "CommandName": "Test-PnPTenantTemplate", + "Id": 1568, + "Command": "Test-PnPTenantTemplate -Template $myTemplate" }, { - "Id": 1569, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Undo-PnPFileCheckedOut" + "CommandName": "Undo-PnPFileCheckedOut", + "Id": 1569, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" }, { - "Id": 1570, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Uninstall-PnPApp" + "CommandName": "Uninstall-PnPApp", + "Id": 1570, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1571, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Uninstall-PnPApp" + "CommandName": "Uninstall-PnPApp", + "Id": 1571, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1572, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Unpublish-PnPApp" + "CommandName": "Unpublish-PnPApp", + "Id": 1572, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1573, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Unpublish-PnPApp" + "CommandName": "Unpublish-PnPApp", + "Id": 1573, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1574, - "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Rank": 1, - "CommandName": "Unpublish-PnPContentType" + "CommandName": "Unpublish-PnPContentType", + "Id": 1574, + "Command": "Unpublish-PnPContentType -ContentType 0x0101" }, { - "Id": 1575, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "CommandName": "Unpublish-PnPSyntexModel" + "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1575, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Id": 1576, - "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" + "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1576, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Id": 1577, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "CommandName": "Unregister-PnPHubSite" + "CommandName": "Unregister-PnPHubSite", + "Id": 1577, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Id": 1578, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Update-PnPApp" + "CommandName": "Update-PnPApp", + "Id": 1578, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1579, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Update-PnPApp" + "CommandName": "Update-PnPApp", + "Id": 1579, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1580, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 1, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1580, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Id": 1581, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Rank": 2, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1581, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" }, { - "Id": 1582, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 3, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1582, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Id": 1583, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "Rank": 1, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1583, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" }, { - "Id": 1584, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1584, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "Id": 1585, - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "Rank": 3, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1585, + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" }, { - "Id": 1586, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "Rank": 1, - "CommandName": "Update-PnPTeamsApp" + "CommandName": "Update-PnPTeamsApp", + "Id": 1586, + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" }, { - "Id": 1587, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Id": 1587, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Id": 1588, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Id": 1588, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Id": 1589, - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "Rank": 3, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Id": 1589, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" }, { - "Id": 1590, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Rank": 1, - "CommandName": "Update-PnPUserType" + "CommandName": "Update-PnPUserType", + "Id": 1590, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" } ] diff --git a/version.txt b/version.txt index b15ba717d..e46147188 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.90 \ No newline at end of file +2.2.91 \ No newline at end of file From bcb001fa411eecb6e99e2900fc5441ed652150d2 Mon Sep 17 00:00:00 2001 From: Kshitiz Kalra Date: Sat, 7 Oct 2023 12:42:11 +0530 Subject: [PATCH 061/146] Created a new folder for authentication images --- pages/images/authentication/README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 pages/images/authentication/README.md diff --git a/pages/images/authentication/README.md b/pages/images/authentication/README.md new file mode 100644 index 000000000..1202b648c --- /dev/null +++ b/pages/images/authentication/README.md @@ -0,0 +1 @@ +This folder contains images used in Authentication article From bf914373a072450a3108ae2a4134212012d59a05 Mon Sep 17 00:00:00 2001 From: Kshitiz Kalra Date: Sat, 7 Oct 2023 12:44:01 +0530 Subject: [PATCH 062/146] Added screenshots for authentication article --- .../authentication/allowPublicClient.png | Bin 0 -> 229929 bytes .../authentication/conditionalAccess.png | Bin 0 -> 115774 bytes .../images/authentication/libraryVariables.png | Bin 0 -> 134585 bytes pages/images/authentication/namedLocations.png | Bin 0 -> 194321 bytes 4 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 pages/images/authentication/allowPublicClient.png create mode 100644 pages/images/authentication/conditionalAccess.png create mode 100644 pages/images/authentication/libraryVariables.png create mode 100644 pages/images/authentication/namedLocations.png diff --git a/pages/images/authentication/allowPublicClient.png b/pages/images/authentication/allowPublicClient.png new file mode 100644 index 0000000000000000000000000000000000000000..95b7da23c10bc5a5df0a5a06f198d57bc9041547 GIT binary patch literal 229929 zcmeFZWl$X5+BS-l5G)}H?(Xgu0t5>lEO>wroZt?D;KAM965M?tB-miVVSs_a;4m<_ z44ls1@3ZUO&)#3vsX9N;*HzFnJw4rvUbkHLb=`|d4K)Qk95Ngf6cjuqML8`Ll!uxq zDCp4-uz(}lahle^4%Jml;U!A-7{w0o2E$rLRR#s6F7DB-IVSM_p|hfaD+&t3_Macr zU<*tN;Gl)g8+|uzM;m8VD>rjXb2oF~7z&CnorS%Pvxbw6qnj(8n4vG77o8Xn2c0+Y z+n?hf@A&vd1poU1Q67>1Ip?3>`19V_f9)qM1_k9_NJ&oSjhD&(GG@@z8EWh!YTEM8 z!9j|io{DKSoV1h6Ia*KXN;Pc5?yWgUW{E@0gk<(JSC1$;CbFkt%;a``1<-X@AQ| z_xCL-o%3UH<)w4Kqg#Xd!^#)NcSB+TU7gzq!C z7&4uefE$M#rvLa3;&}~*roUEwF)w4i75IId>sBo9)_ewk;Luo(xVxDD^(o@+=A&EY zf7sffVdoRM6u?0uZ+fxC{P*X1ML*uQs)+}$eDye3VkDrJn!d7Ms8^>EnIApD_k;UGK+RX#E(XMvwAMqu?dtbVoaf`M(Stj-lCwY~JA3 z=t(D9=(r$gJ0F+s&vppMr?{dVu}?#wqn-*XNd4N&*S_(h%N zaJme2i8LppY&dQL=x-wep1%4`;(mp+6#3S;hlb0lZn;7NDw(eWwhkx#oEOvysyYM zWth+WyVunX92DdE(;2XI)tikrL`&675j##Yaj z_=UoTp{1J5(~G#;y7tq!yMarS@@CYZKH162=Riw~w^kQo~FYN%*yyNzDx`NTLd0&h&`JPH5o`^Y? z+?DS5_s^uth58-zDJEQ25!-3Sh3;jzFvUWsVfE=z(ENvGq9BwaLlN2uwMRE9Z~h=k@uV?Oil+ zn0CM3iv0VK>2PW=HRU6p$m2Zc*rqOSaNSZnI2%mm%o4WaR?}!y)V$g*igQ~ey}T21 z-yL3b-?IYGI`BEI`1#wf)a&%ek~7y?49s5820iFoUU;;D#?jYWXTjhd^%McFIoX&$ zCUUv`p=8iz+q5y90`^LS-UvA@S~du?d8S#XG3F4`Sbe|2#wTOAIj065hWgMNy@J)` z#!w=QCf$Oi0hR(`yx>oSG017D{N%D)CIkx{76aPj<1}c0om!*619H?a6>ZoWY_f|D zH(~g@gW#xlK9|GXK49_8l@LQ7t;t?ljOPlY#T_npFn4&sCv9-oE^Kxt$%0_Goq;3s zA16E1sg*JXD&(S`4tf2of0sb768R)=&^m>UbUY$k(o@Y5+U+pX^-xCcArVt@ZwM%5 zf1zQ|b5&fs^fhaj&qV^p!zU#0r=mXl+vKPkhg<~RPQAfbcapDYw{1?-d9|t*i4lh# z@LgA@uCvsq?7Bw%>gn6kMun0Ju@t{vaB8<4E|=_X<*77&`1QqFE|FQC%4}IJSAtgD zbAQ_A?|)ojM9(*wH}I~D++;4}MZo=maIw_-u`m6^^>py@0>~*(&3Y(PN2^4+WNPe^ z$NZ&Io|J!(8Kd2U{^4}mB3@?1W#D~MnR+gXYx9iL#EZ#dC5w@+uoqvK+K_19SFb_$ z!$|{iF{09kT;olFcM0nQrUcmfZOYGvvMwwvxbmkfv{gpmHhpOmrqy=o}YVj0w1 zCeX=8EgCiV?0H-sng5Apyb6EC`@i;2yS)V?a9m)+2T<@Yz;-q!dPBtUNE{u(vz&L5 z+_bAWpY*C@))e@@ihqsoul>_pFUbg;E{bPdT0elt+wSm9!vFeBS5jLFG%9d=SlpX5qYkO|f-x z65b0Y4CkL;9#5q|lJZQ$meDEw{7^daM`RL-YwyMOultSj192d1Eae3xRvPfB0QuBj zs#HDieJ2t4?4^mA;(z3T!lNI1GH-qr$|u!Z4J%KVYq|&AG&{K5-Fky|C?PN)nu_Is zUZ5%^3RI|xqob;TQ#n(B7`VstX|`91_@)7ty~PAYJ_caO-$3f1jav+7Pv(mJ)RAb8ufcfz?1PNIAuR;t_fMD8`Hu#5E-A1334JKVmG1nm&fJ|&nqZO7 zCEGiZW55$o9Lp9hQO#;rlN{D#p{{iJ5A^UfHB^yM=l1eguzc|IY6XB*hjN!Y+^JA? zA2i~`0>SHsATW(PFo0CRs}|}air_~_s>V7-n+%TTavkNa|wQ5l@OST^mO@N z?DBkSUhQahT(BMKVtqf7p18usbFlge-DPWx(jxZnH;#Bs`$P_ND5)%dsm*2Q6o~Vd zC!3>UF+FS;`m__n1`jxVj(@iSUcDW7Kb2qD6H6)11Wx1R-|QUF1}BNRlPRT$HSsdn zoAvsMx^8~qC7xL63LG3xVFw(z>ulCAkvmYzVvO7QV5`m5fs6R>Sz1%>`8y!mbl+4b zvl`B(`{I4lc~FZJ+X4+ROk_~C9f`DGu9r{cGNx0{lbX3o<2K#Z_+;v_!*KzJ&TVxL zX@gIGDNrlzOqRrmCVbPYQQp(#w3;eaMeHx|`ycj(U?cXpL5gLulp#hfw^xY0iQrNo zwGHOWpu-R_Fse`M_tOJNi`DXC6Q9eE2i~`rb;mgWF~mz^V2JVJo>YK67V&NYDH0fB z^}C-@D*N+w?qsr1JTeiDsOPL4GoW%N%tsq({W0W9K&&lR%W1!+ayt2ekOR`7?OZiI zP!0*^9zQC!g_Jf~j;HGIS&h&DuFj5*b(+@tab0=5rkiiYirnYQcA?%X2$p%VSEE&W zT9(LejbCwowWU?!!iYQsAdPaF8YOJ8De$!Gub}d;{bTtEEX|+M#OescvoD_u_5kGR zID)C3%3)A!1=f8cX!~ZJ^jB_1EVXoX;IX0U#U678pB10U8J9YzI$-v&tUGiDyJq`- zekZ`T6L2X66#3rc`Ya>1xM`-!#^VKSCP~IGy%8Ic*%IC_fe=*Ht5ZtCYk_6=LH_TK zTv*E`7g9bkHCa}oqVk1=*RA_QLZR5_9QGsQ7&75hgN7}|1sB+@uc2}xLu8}l@~h|E z247L-Xn!VwllZKZGX(9Laj9;rHU<;=qM(}-g1=f zgqS1wc%4~s?RzLP4Ucdsh1*nWXSyw#!?@Y#`W*T8kGpg#|LXz$&x@ybKv`=3TAQT7 z@!&0G@VJ2QSR85?+Mis1kuR(y;ci-#_`8Wc7LAs9V?I%&5NA2E z&Fg~Lc(_iQkXWLuRH;uf9R7EgWoadmgIVD3L%F-UcUcXa?Nbd~9EZSZ+%bA`f1qcF zCpW8lC0cs&l~K=UDFlRLbLT{Xq|w*x@ISC~Hh4lJvOq zqB{K?C1n5i6&}CcD1XB0A`tl$#<~7*+(P{yRKW(niDaO?x5PV?eJ*~e_qf0FNBVA0&?5KjTs8&^0xbq&s{;Gl z)6@@1wg2}N%AL!{-sSSbME4{A!zv@_1X_Fw|6CSle4a>W@ZCS>_ph&S;GX{%#%aU+ z|I$eRjq@sWw(lp99{#MP9V0roCVphR_V~Y0bKmO#o@KC7RJ!AtV(9qq|MO|jN6D0m zu-uLCi}}#YcW0_9pwFoO3n|BvZ3k%&Rr&O07WEA!q)8|jFYv!GZ%)OYc7g6|;|R1-)*DOMcl zuNq4sdg=rqsWT`23&fD51)HC^WJlH~}3B{K3R&Il_I=UWBaWZ)mz=ia}?0x}O~gB;CLy(z17AYj*ja>&M1c z5N^c#!MJvUa?_mhE^U? z$+=tgk+d~Cl=5!rBcl8n0#>W)-xA4eS%egaLL|mRm!)(dxy>^-Amo>D(!AN91f7iQ~-eAnC2^( z$iy2|WeQqO7Dpn0(#AiRt~#P#o$#?d#y>32bBuR0*u!dF-}_h^B!>1_^TP|u#sNK3 zl~jr=%jxuo{SCdIyW>-nZFcHIIW-Xhb3whbFrcjI{}zxd;Y}w!hSXuxt*(Z%>Nh4+ zNV$x7r9`k?YB&~1$cTm^Msz&k%Sp#XWy;4|u(O-5x;6A^T&BDxB}d;!xDP4dESBD1 zb6?8IKw9pD4(&?7I;pN(+$7_#a6J!KQpC=(wy)_ajY8dIujPLTFhKi!)PDqbyLrGD z*i|!I5-7ZJb}V*JslVv4(z!P2v33&YWr+Ew21s=xlnG}tz@A-qM}i-vFJEBck#X?9 zA3F^^-GS(_=~l7;4By-ZhjF`H7yv#VNZqmWx74cR(`i4@GG634#C;FW-*yenpmUpFhk0< zd71phNLc$BxzH81n&d6Kpws6}t8DF8(Y?~WjI8DMk*3SqZ$|&aJ0vz@-=OCOJC68R zt~j^O*O^o@cd~0I?ZVpa{?V+-3KjJX3HPw2PH&YwS<*0%tcdRm2&vBR@?}-(1_1C~0nAf?OB)tOVh?@_2`~1Iqgr#Buh%Y98y)uaCZhg0&(;|F?@}^y zPaiLdwrL*bK`cf@;r%P#h|7La3obVU=#InQr;hXqe%YFC7# zs$XF(P+^CJ8v-hlnobX7ziL;*GgQqOve}eni12Wotgq#^Cpy}+U0RiX1?*MS#*pP0 zfi`ULlks)8L>qFffOX%X!?7q^)K^U{TZ9ptfJ!Kr5yy~_L%{Cb=)j#0;MnWm4f%=s zIJZ<9cD>Omd2Qawe(PG=Nign=d*kqMaf@mQppIa>(sN(*BC;*cr9yJ;CyMYMYnu69 zP{rqToC6f;{qU?qxBGGu3(wxl!qJO(Ni_H1N0e%($oKL07aYygEokfBB{z51dzD|v z;d2RndXnAANZ)2#UzM#`hcnTrc_X}hzKlhbTb03U&5*eRk?StOLRx9KZ1x&bNR zxH_5J@YTD4D63AyVu7r}#${wuqNw&O8;zRSA74nPykJeh103v!wrsm~wF@%pjqN`X z<;!CI-p*H|qMSKh!Qfd?rpMP(bpK9d-cY*u(* z!+f2^(3XzW)Y*OGG;`v1(dU1pi`)cZCoWcfnmh)TOgSl5%@MCu7W)@9Q^H2A35f5Z zD)klvjuvA=xq9tR;MoHgWIrCONoB;Fs@shFK?6C?OhFg+pyAK(7rrK58yL)CfU zGE<$4NCm|0&X*E|;)uRMHSL>Cx1z_t~dPz&wXz?*&%BV z%ZtO{H2Mpv=$qZyYTD!9{`oRG9~3L*%G>rAk>M(yC09}6o`-|kc>xJR2OWb~C&XW@ zW#ei%3FKdE7Rn{ea%K(ZQl=t19aVD(_Q$6Jcc1_hJnUO%vFB#i;s{M(4>X;j33aoX zA{*DzPZQHomgE}A6_w}4()>ZV603f10-^eWx;eaZn^Mjc@$9WHga+jEBSrGeT2Qx7=f4FN`t%+EAHYcL7( zmwpSdpnF7R@zQO*M~5EcsafB1VK=>i%!?v)zxz3|Ax&*use znriWp!)nSGzJQN`x2Iorgli;{E#jSddjof0C#Bo^D9r$PAdaj_UuM%D40L}tWn*pB zbsbk}+#>V4KayT4DQrCJnP2ZWy$?>_1yf2-m?uG>fM@dhIoI35K31uK+j-z_JqI*w zO9@5G2J6yAhIXJWw6XA!J+ZwcLIKyCSx&qlKx*g$zQ*B6wo(G5u*9FlZG} z4Jh^YN-EXfpkXk1C}2G`QzO5?y0FIQJb5xNb#naoryZwjf6hSUSz2Je0T8@9#BB|aSd5vNdY*TzjAU!fIUI$LA$?v-{h$f{k?YzkKB_<9q zY*d^p`AaaRnEkl_rr*z2U8mNLf!hn@Yn&a|;T?3-5z zCL?=t0|s~|w0+Q}#H`)-&&Mt&o2u(MK0T;MBNs2f1o`RDeux%hR0krsnGlVS5gyli+J*|=EP zUcO-qJoynZH$b;zGU`M<{S!F5e2`B>33*#%GdnoX*p01;R%cK@bJc4;QrNL~tHC2qm5fwX|0 zF?0G5Cs^Hfwww!~7ZRlJZ?*G$0p1hqjOKyG@6Qj(%-#_M|Hu@wq5BKOUetf?d9-JB z%z#lsYqkmIGIkTK>kNWXi&;iA+Ae%wn~2oU`=ca38&3Npunq%^*{OH2;3UYirl#1x zquB-7zIDi;0?@7kA0{+Hio5RvS~(0l^+QYvKl9s6$|1V|l&|z{wyI>hERQVD=KuiM zRK`>*jh@Wq4V z^Jlk%`MQwJbv*Lfn?UTlcil?s{c7CW8aFj%v^k&~kJ{K?s1sNY1lG!LH|mz-f~C) z<=ymP0zlI$t!p>u06h5h`3^l$o2C6K8rb%3E<<3rEi*9ti5&G!5|dh^-vEzf4}Di{_U6S%?nzPgK(3^(K>YTm z>P@eH@2AeU6)skIiQoB750_N{NrpWynT2b8AZE%flgGTU(RSu7K(xN|+ifBSbQJ`k zTIj6=-utf`%pE{Lref~<<&q`~Zv*Ye`K`wkFAkS)Lq_%uT0E-GUkW-;(1x;? zI_{RI_b87Am;H;bGUv76#09PJpLJf4^BmOJzCXS{1gc{`dr) zj^EURR^Q*g?_=U*^z5d)Ho0~9)gB`B6w}k7CkOVC(Kvog(TRUlGtZ>SCno?uj~ggo z{rFeK+gxBy>qG%v?+%xm6y~Ok;6Qb?yR|P^T+rdXXGL%;?u7@I+$uB8Ru^ui3O8W+=;pBUK8Ao1ya^J z01XhF%xZU}8>1pc{jVp+S8IlrOpnu#`zZYJ14p-x=G*LA0s~%Ay)yA&l3u^{ILkak zMd)YX=va-kMtZbx4nI%k_2N#&vuUva%*zYklBo zFM<_2M^o1vXO5S-9-;1c0&`n~zt**iy-4rRcrT87ycekUF3cfV&nK<0o8_Hb3|6fg zf8ILWs;xr%5h85Tk_KEx9p^QNf%4EMW*QmVE z=GdxRXKsA`L#Vfo+j$uk-sZLA5`_59p&;zE@VkYH+oqqQeVIxS$ zGZH00q*z1??@IPQ7F2$E)%fNiUc_RZMT=3Z*^R^uS(r?}U<2CKiBfx`%@=EjN1gYO z5Pxd-=X);GD;~JncY_LJjgMEmswp~9AgJEo#kkka;Y-tGCO78i>Zrqo3uD9Y9 zt~jC(^u#4s038a9leOmbLy3&hKu?Ln?}50QzMdEg!MD;OX5ZXX;Zvt|7K5HprCIw0 z%j++sTJ5h%k+E@7*NVH-brdK}YLoEZ&>Ed@y0$%Gg4rXgSz_|&Jnsf#IfTBESO4f$=Eka&p8cu;WQ49h*{}~nAE0& z1m`<#l18cA2&d1d)TMV%ftIA9@A9A>mrQ7qu#*X?$cNg~n@w^grM;%KD_$RGM!k`mY_TccB*ws;WqUXKUu zDnK8`NG`uZAax(tySDhW<1XZ5!uJNH01FA0vUu>?aQ^@_&u#HDstOuOOIjp%99=;3(>|E=x$hG*GiFi+OrJj9_CO4TlVEeUJCn(@&FHXn z`4I7wc*fmu^~7ef_}7)F^c@QT=!5{GM^5I-de6<<2cF4m4FQ+k1M(s|{+abRPd2-j zxT+Lv;&W10bJ<(3a=nd78-dl^i@Yu0_dkvaW!MF6h2uXGl@9Jq1q}F1n*xoVZ2mWR z$#8v{e_L% z184N4!^bTm`a?mS2~4AqL7@MwDOSX0*v%pRhfn67|L-5H$R%NPP(!wYh@&6K{U%n3 z?Cm|iS=+CP&u-$rV*%so`UJO9Tyo}JRpbRnlt2$%lCqB7;B9F1!K{s{{?;cbe$p=s zQ{ndp!h;rF!~VLeN<$q5TZ&&4**S?Wu7kI4<&CX z0tTLe#o!AKdgL6xoNe})aD8i~EC$pQcbmutgXL9j=TIRYqwRQFAWeRQcE6HNKiFHE z;4U_6xOa!(zsabbW zk=kErs1a~lFbUa+rwTfi5u@$eTqX8Qa=Ff3s z-9&cQD6`~4{Zk-yeN_fj(5rg548t!PgKlI zR+k|3-p4{T!6T>rG?`pil34r^#2PW3(cXntwgwO#0^>%lUcbEh#dD>79Yujglo%j? zXu)io1cHV%b1^-KU#U~41+$Td^yT=IL5QtHhuu2omby2^nrxu*rLS*fat+R+D0M%( zEv&K5f?}W#Zz1|r`*9+N7%A3Eti(s+R_p=QH(~Ap3IXz0VHOa?vu`0wa0yn;!nl_k zt&VsO%55(1=Y%S!%I+sEvN$iR!U?Etj>afc+{gJ6baFd(p*e z3%woW8A=B+eDok>{n76H<~g=K`$i1FUh?L8-IKB*w6XaoXe!G4XhEL6i#Kx=3m@Oy5t?P_^A-}TK+~6(Yjw(6qb8Vk6K;StlIVLKiZpZ<_z8%Qq4k@X{(YNV>dt2;h2uQ+ zJIAM269}VS5>19zZ$KCF(eJLfzimr@!~Z}`h9|DbU13qTLQAJ5w9G8M<5djVa1bieJ?l^BDZq~x zNMhzl`M(8ZTXxwnzcSA#tgsNK6?A>L=Zd#NnQi2zsQ&w)I0#Kb_}CroYE zEeGO!N5(*-%0v){p@ybmlWj_1t#OS>mtfptaPH#nY!$N=ICbW#L?!Jl8|pb6LxzUB zxuB?Xu4qf|PA2q0Wka>dyR1s1x|b&^1F<;*hvh*@Zg#%U$4#3hAItm|VR)&b+V<)$FUJ0`Vk{WA1E&qa1SKnBj= zB7hG{8&dMr z{>d7toVjJ=YoF$hrHIJNCfFa7y-`kOVLA!SC;|sv+|{`@{9#xV8CBm^WaTC0c3tn7 zTDR3pDt-K!ahz!jF6KD_zi$?>R=_9LLlq{2H{T(?Fh-1{%w4(DgR zp7rTVPr6lURlEy2=(Kp`LtFg~F5@hxu_s}JaJ#x(m&nw;l%TpoY$iPU8U11TX;+6y zW46lT$-s&~FoMI?*LD)*0@-@`%%lRdsEC37Ca}A4f(e-O>Z@}v8lUAn%R-}fR`-B` zx62m7G_5p-eB1TXPAXiX7wrmp!jIrVBo^I%xef0T5Wpqo)KY9=P9*|&*j~|H{XSt^ zj1aNheh_~1%%{(=!LewQ*H7vQo-ae}X_}mp{bHTnhfwCN z*%caGSYOu<`|t+=F5X6KeAq3KxCh71bV1C0cQkyV{$msFKJ+5yL|E^_b01s!Ud%MW zu=8~q9{9ti^?o>LG>;vie~uU1dP+wPtpL^wp>x62e!uE@OlS z5}jfMB#5_Ec%)L3i8Tadd0t5!Rz+oTD$T?Fj;0>C=f^`phVg!GB{EBD6LC?k-`;b7 z^59LmNmbN}d`vWcZzu{jhM0bhdUIul6=bvNZqLGB;;1;DP28wLTO_#i!m7pO8ZwyV z@9TasezGZ4rHOR)=Z+N@xf59|TV^Gm;KvS5=y0>$3N-4o*l_|Wk5McLj*n!YS=9QF z*A0l(m<3`OdSg1stw>cvg2~CI%2d8}3C-g)${i)2X+T(_(aI{$e0g5CxND>d??Rc> zXSDrTov=1{kP~DGVXj%Bay`R6*d3bm-edX}*?RuI^ z^Yd)sIc$h)Z3(VWi+bO+`z@HGn6uk%e|s&FM#j&7dE-wi%K4vEWMhoYlh#}5WOkG9 zCytyWB^8*#e_ETGFuPAQ>JO6ORKM-VO+D?6>%tc$FFWaT#T=)RzsyDregeS)26_gUcn za?O_PmGt@EWe+6_`D2Z6zZ_bBG08icI2y`2$&a~5p|GW%l`DG<2aH@1k2V*_sDl_k zUb6{8@TtnE_NHiDhC=*BJa(OZ7l?|4X1>}sW&G5C5Im2K3KPxkL%)$JiGo4B)K{Cy zlLh4-XFxd3SqN{bxCLt~O7Q_?I+TI-(8jOOHha(FObA441KmAp98GIF>7FT%! z>SxtfcMds$b1qV|VrLx)nMTD)4p>Lx39|g!Z&P2h7!VamIRkl3k3w3CbtgSHeuC#f z)R~f+1zTCb+6y~wu}zDkRi_f&gT>Tfj@pQAtAx& z*j%R`7{Z(>OoqnS8HDj?YvB)L+Jc;evw_u8Ij_`Tl6)Qc>;|p(PFhJwpp|`v$5;2P z$6PsuEd|Tl>*b+@HwQRnD&1E*Dw&nh0I?zF->-Gm5Z05l+~Kj~2GENFgZ)&Mff@By z?lwzQ7U$v6x&C zVeR^Z?lPa4%n>#ej zQ*T3{`xtf)B#@I{e+cuN-1)$q(3OT-!r36L`{siGGV?a zc+40NpyfNkd#{GU)?;`bNAC%Bdb|y(pd!q|cb7BikI1F22WxV#eqWuSc)svO3scPC zvH2>*cDi?y(r7bd^yEie*?^qD%Z>3gy>9Z`m|~?Ih)DG0=7tEN* z(vfBV;_nM`@=-arH?S9K{u%LD_WgJ^2l~y$!`d9EFL!fey?vnd>{XmUwi{`O$6>yW z6{ka{z+!m>*5UyKIcA8~7do0Fez7e;#*v^qCgyQlJkqowZ7*48D-X-aG%{^3MBL{6d4THC}N~XeFbH-n_jTmYXKD z!O(it;<8gPn|QSl7eS2pHUF#6O}e*P@Wgd5byR=`%O*}d_P}_xm$CrJb@AO@9eW4^ zxUizrDNpd)BYaA+cYfaqQhnD7OMKD-S zjXk{3hR2|(98(ez&|I;Pm51Z+bA?-2xe#WQ&P%<=*aNh_K*_`RUXeL^6Um@THgh3e zy_NvT!K1{0Y&jQg&#aCqxs<@{ebed)#{Rgj7`q<;qd+67t*SI`_cOq!6#Z(Yve;Mw zOJ{Uid#`N==*HDIY+OS0c&aPafxd;gzwNyF85|axWqs-R_h6q2h{;deKS>C=TzaC; zVviSO_h4F5{D}pO*5g>X-(|Tg-}f->&KY;O9dS3rH(yq(M-ivAH`$To9r^i77LRFm zUWs>WT>S9pt%ELcZStj`;n`D93p1&caKa7F&A$_z zW#e=$_5h6rA835c6yxMi0w>oC+?R1-{JVJbx!VS~eFF<2Jyg>fzGwSi-SLYBsaUlb zS}J7&s~~2+MYnZ_RsGtXO;vT!LXH>9GdT_pqdEUdF`@+Tx(1{$HvO}OTQ=(`J3Pq8 zu|8V}IU;&I280CW=5)&SX!B_9&F=H0+&ifP;}uXKM34&khJMuMB0+_JrWYT_D2Wq* z>=PjHU+xG$z51F}9n$t?Q!3g_Q6kQ)qXewmtqG;4yJ)49gU#V3Lx0Q+aBr-g=p~9h z537h`Fj$FZ_=Q|Ah%o)z5G`^K9-SJx(rI^j!(Vqy@@t0^f&q6 zO5NPT*hSA)L$kdvjV2&ZyQTMhordVaH(F#T2Jb+O1Bc|#)YmU$r-1ezyIRdpXqZT9 z9qD_c?z{Fp*v4RR3~7Jp>udl-uyV;;`}tZECe=(9O7X_D zsAt3A)19%i;CNaKEXhF#5p%UEkFMDRIT>!fpn~h)i{5z;F(tw(PcTm3S?MPbVpsC6FxWTz*W$Yd>h>lb;q1n+z-yl z?h>d*GX*A2>lmGKjkKB&)?zW@cval#06U~4efT%Nwh`|qQg8fFz1!Ir_b1RS&FV6;4QY& z&!y6ZKC(5bhxLyd`uyr2QD{cckrk_?a#VwZqs7mCh-5PTO-d3+U8zpB5;?y?@fZVh z&&8$r)?$}azRhm?G&;>GL-%k!&pmNNPJf3&<59-4i@eFg{A-(3YdILBh^G!d?jW9B z36u0a{EgK?JdT_tK&C>J`i z)Jzbsp$2~D0Jz6y+hIkb8WM6koCAh$Y8yp7T3SZ}8ur<53oCFy4wot!u=uOesQZcY z{QzMgOJ2S8INR|$h%0Xj22lCUzAH8d_fSFj&yMCm{ zW&Ue)zSOae5-96JGp*Noa8{$`MSN&if+XRCPjLC3MS1Z#X_QYw`UHl1K~^8$fU2>o zDa8EVbn?12wzLR#_x*{AGk>CD{bsp@8%!eNjOs>Xj(1!o{#CP&o2=RSW);NEl>H42 z=(uvvIX4KqyG9nGi|Bqt-zQ>AfApgcoZ>pw<6eM(DeoQkJjWQBsn#(r6Lwg5f04=f zxUC;a!}j!!90GCdhCaH%X3_cNlYq{WujKtqb!;*y?42Kh?&fWVQy$tzw)Xh;> zG+fXzzL7V;?M5Z@hM9Vm>rBt(_lm0$5r0%CrD&pMtpw=U6zplx%{*q9;NB{YVTpN( zoY;>VM$Mj|sWbow>WiEXx?aX3JDh(TvJq^TPCj1x8TTR!Xvej&>YTKGRw8?I&gZzV zPic!QBR<9#!XEr6p>-RE!-JbnT5+J5JUFJK7>pQ$z(tJP9`2`>)T3`3vw7_26I3Q} zV3!X%atP!5JR;_(rEuf^(4#(}M#*V&SAD!|ClXZHlCN2$uvZ(tZS`Rz;xSoeSffdU zM@+6_GKYckNkj+FQg+u1e!E#zn^_s-*@>)~8~pw=g&%@|;Tb>VWDXd6VI}5h1X^YJ zLg`Rb7tyo#16*;;_@*$D0OR6m5YnLq5>nt#L~<5bmZC$5?~ow%ZAA@U>gr2BBa z^~m0-JkCB9S~myb9z!2pbJGB1VDZlhpgL(k`!ZT#9?y#ll2n+IgHgmapq?S-Osx-c zJ-zz|yj>v6Os(4q0!mL*%hI@WIxg`=h*feHYX+X49tDNDt6v0@JjG~OeVJb*6b-cO zT~a@)hP167+AeHYttWO^(YH3J7a8|*fP&w08x0O6iYDvI^mcU_us_n0jGDeCSutyL#uro=Qnf zvvv=wPlJ%UjV&BEEzmPeg@FecKj(2!gc;Sc718yMC`E*PGr67idW=-rJ;AJYvBR=@ zVKhP0ZE zn)_R{;`+C_((d;Gti% zcZAN3E-)N}j`uMXBDJRXbgjEnG-0Zz@+3GXX@RNb|EbQlY<9g_f-crw zb1l0lcBXF5{B|C+XA6hR$;7vndGi@hqy&zn%Rrq!y`uDu$%-XYQ*A{t7dl$72q5s8 z{vq!^1p^11(F#~Dwrlp1r9SRO3%bT5L!imZ+H0UC@BIW4Jx2?inKI{q#_+kch^t?0xDfY zm$Ya>6P+Boys&ekZ9pUJZ6>>=}M z>*xmq`RFuV+@BG0v_8^O;B7TU!==rx2(v|(0*ZA>#qjd2be|ki#;vOR3 z&?~{Yt@l3&caR>M$jZfY_|6^N?Rv09Q~PQ-&)hO;rr*%fBK3;_X2|2E`+lSxl1s(HKHXb1KJbhuNInZX zwU)f4w1F^MWf&o{m4qAN5%oVUd)zL}BOM%|BgVBmqzKf}X)Thlk%N<=8|#*>Z0@ za(vZQSP#2)g-3TAP)FG(%4#q4c=(-A`HhvHJ25L4I2z3tN-%xg3sY~J>$Cb=d(l$L z=a)}AhAE<&1k?P>jSo!{xIL=xDOK$biMede(&Id4i%Qk^%9gkfth^HrKPeHa=0`RG zFUXm4q@~uRULcH@uqACA#)HhpD3ObJ}m0^QtL+Z;S=(WY}VgM_+0Y=`CkzyA~RgaBtJIC78doSf2 zQS22hv+Jl@z|EiQdK^W{y*KF&3{5)1|7f~%6!Q5DPi74>51D~<8SAOGnjxg+SU=im zIkH*&m$pR=OLlT`ODbdUPm)A1ot!pKVu_hG6+1(cp3pwzZaf^b?@1`0s5 zEw5pl4H4CYai(-Z?e?|se*(%g^Je4N%fjvo2Vi;E|M zQ@A;TPl8<9*ABJlqzuI1ORDZm`R4-eAI+#m#j*Wzhj0`-ddIVk5(cx}VJBRkf1aG# z@018sa-Cd#qkU=x2D-69#i?L|Ye+FtZ}!)Z+^E_TMSVld$if`BFHxe{5ljLlektU^ z{Z()c6NrCmJ+>TI#n^o~+6)nx%Npk|oMQTB z+i}{x_}Hg0t?YCGU1ejS>2%`-fKEwXPhI;9c`We#vA4V2O^bGLAFsI%Ux1vVIP09<0yx)_22xsHc%aUX zTP^hR_5(G!8G3*R$QEB}^4>r8&y0@`q{MUfm;e- zl5_*M!&T6An}E$s^ZP*{_JI*?-FZM{ql~>lH!wR~X^)=dJ^@E}b+7*=UdL5#i+Y@d zpg8pveA|S^_k!QihALk0;sT52Pi*R(01O&hU~F*H9QDfDLRg>r*Scd||M__45sR%PF?@7t`ULX79p<=e#gVhb$ZDrErVV&S_zA}QN?E$1 z-GLNtiR$ZS=}{jr$%|sOG+81_^=*BiPn774DPxr#+prQ-0mOE<-9TJ$dHFufJi-O@ z4jLdU);ZJuSfrPG{NU(AK&yk&!HK&sW0-Dna*{<5aa&_XPeN+Jw{CZE4rMT=#X->n zuca`j58_=`eUDx{$?S+8BR5R{b_9*garvzLVhTg(%JTHdcNWMTzw3NSlA^6xTN+COLSr1Tl7{pwDIa_{c94F$g#YW-1u&ZH zPkrwe+H^fPQ2(^tSWxCWxmqq^-csRfz+0&+UkTxd$*Bcki{WEFq10e31pN-+N^Vnn z@`EeCtjV9bEPFA6Ayj{-%6W*mUqhm-3JD!(xnMR?TwphTbkJ=%G(4Yl=YSaG)FR zV9*;crIRtgUD%DiUQ=nk`QfV~34LJf0R~fTbSi9;ZrjFD_u)*b(R(Jikpa677<_2_ zj-%iC5@t}gu=1yAZozfzpVJ=L41LdyM?y9hjdSDLMlS?y&hxeEezGK@qH)ivTjpP0 zT&xzA+q6qBQGFs9ND_Ie_rat;zL4~>a$tJUAIxCrq!7DQs_U5LYc_DxO1Njc<*$C- z{HqP`i39AhI_!33YC4*xg^|<$xDiO@U#hi!Ftaz`6d~x-B8f3z)hU)G7 z5x~bt4N;DCP&x>|zC_BCvT2}jeu>g;MNeaLBYk>j&#ci&3vKR8+ z@yD5p1Z0$xBojJH~ zUE;?b==)-aRnWvrP0vtN$?(*qs}nkp?F8Uz>n`NKj6cQb(cOUz3U#lwTc5j`jf$LmzRe+bH%BZo>LC;0dVhU98l*K z>=tS^2kmO-gXQ95Ns>X;zujqw5>B)6U$F;kX<_~o$_e`Ar+n5Ly(x_0S@LUqsimwQ zF1t{FtnD@7td(kO?G<3MtluSJ*6I`eLKvIi3GJnzwS5{Mh@qpy-GF_CFyskoc+8rH zS_-fF?6f&1H&yE0q|g5Z*R3T}@ZzBnv@7ZwAYu@)$Io=JKmSPJ33^^IB*RssUrg|B zscr#sy%(l4$I}ykNL734Crvf$9=K#1-FZwemLB{EVACc#Q+!yD@s4&3al#^N+Xo)c z=BEi%>A%@Op=yvQ+9!iW(#tcX%vTy)Mvz($6Ws~4k^_pnEX9?Y%hYA&jYpJSVQEg2 zb3!9d$P+4o(8}taY&v;pNMiWO)*Pb`ri%JC3V|#)4cGVXO<^`IwY3nVA_?_TE`8%| zorR5i%l#+#vg(%AXqT>|irxEteeu8nLC0cT8_Cee`F?g_{ z3QjhbO0#*5wKB!~i@XVV17^=#JSI-?m}C)NSd=v$cgPzFX!rqz?7<3#AH!aArMas1 zLF%^G)Oh*uM3_8$b}HB2`-kz@ri&BH-SHFJJLqU7^F~x-&VLuB8rGI_Zv>Wnw)XC+ z_u?zbB|NR8ey@1tu7&PM*>*BrZJnzqxH;ENa_ayJh8jK#gJB-{SRI~*ac!*@4bc?$ zjCLKT8yxwCA1=dBs{FCSPuFCu(2=cZTNjfpr9!0ax^M?HiA#C{C+_V3zF@IAVD3j> z9?zb1FJu)|MHH3lV3pES5W{f0*ss zV=wJq76zs@QP@e6e^9s?S@0FcMR3WR)+g!L&ewid2CrPJoehd}ZV%oD$`nw~E+z9o zy_%IXE+G>1fwF%%I`eLP^j5fU4oO@wQJ!5S^Fl8C0(?>rKX!&}I75K>yIz0V|BztI z@-<3qNXT#Pd$*&|2+=sR6S_Hn{Mi*=lRNBd*@tG#fZ0M#(QbCpo5I76A0%#{q( zhr#QmRbQ!SX!eK3JKp^8&DY@P07(g@60Amw&8wMxxXAj$C=fdD*%?B%U0O!a#DGW5 zBMUiM&zQLd01Cv=K*G+;<=1G@Bm4~K>Z`z5Uro9!i^fUNCxLJ; zc8{196@{RTr*5 z$(dw^wj`ySR( ze6?qXMI8CZr!rwbogaA!2OIFejb+IQT`+5mKOAL$g@k@tNKB~k9)ZZzm1pzf`N0xa z9(;G&f6i0fe{NsgFYU~7F?~#7yjCm>87^}hep(-vgS#=h;n*#c*`+wr`Aj>aEam9Q94&*-dQ4I0RD06fmpJp@$-si-}lhtWZroSUn^q$oQ zVl7Gcp{)8FqO&Fj-378rrjWV)oJy#pf|GN&5SJrp4yUCEdY7?2OL}_susg_s=wj(dtmPIo$;{_`WdiejYLF>rbm43PFqF$BIS*c+&}&;) zND{_kL4F<}F?&5}BVLZJh8knzy&i5WHEnR&KJvMps0R|zFc`yPA_);bC9!_QFI8o` z6jOAV`tG3d2Vj$om}AsQA(qHZa}WBI!BN{ymdNAJDT_~_*lKLCl< z&j6mg@)qNTbW5FK^G?=1pE)T;`?vCeulDO?zRoaY7a~V6>zS}Ba>6KgQRdXWuWr-EJcn2^jB~33r zed_{*QKW6P2eJGxqZR&4?=m zZEv&lrv!XfLvPN3+Y~t1$FH!%fp7`w8v8=;o&SJdy=G)p0CPn!#WHUQ?9SG` z7Y%amJV$NM$lSWnYc!8Hd0EU&8|>4*z4%#wJ2)fp+xgRC&F z?)XEIF^}EZCgjZ?(tatP<=i@-$9!Iz>0^F|YtrA-;VMTg^YNeg{lVhK&d z`kWY!MOsAu$|j#Qz`kpWbeyTdsjTnc`{$A87aSMRqJuXGlqH)z7w0=e;8D>b@Xz!R z>bWk?z#&|vn50Z&0TfQJ6rWm0VnxDDY%5OLJWb<@^?R~jav%NvbeI!rb@G&i`0`^Q zuJ^@8BW6p_BK`XKcnKQ0&v5H_b$i@&uwQOES`ip{3tS;D0~{9r$n`*ZgSDGFV%XGF zDNvOcH#Yh`jc37^DB)#Io)50u^D|tiw;}^c+Gzx=_u1M`e!FOwjYKtXH>@8d;H_xr zZCL_$P?QPlOoPxe%}Cv+D*^mN!jlY8(#iJ=;8npqmD=Yjf#$ok0e6z|VU}Ai| z*Ao=*%gCmcVD*AFzZvz=tH(IYYigG89^2qJ^SY0D2HqvQvnU?QxKc&X71ToHAr$fSz84fZRw=UmhI_k#XDnyopc`OZNnz-NZ`Zh^UD@6P|p0 zI)Cf_Ir~`pM&zY>=k7grZJ-2`IH)ypSUp|d5lLZmRm|6DE?h-jqqjtVkIsD%Sn_6` z7j{tsK}EM*3m|31&}t z_W4iV{xlI~H5wF+v{5=Vfi{}O9TT~U*TZTa?)l|1DE&p{2JP-MAMBULKx^)931mqKA}jy?&to=iqaJj}9`E4!UV?H0m`UKEm9RS1B?P+#wkixF-eFiUY zyniHCihDP=v@ugAG$u(gB-m0OFl)2a3gD{1oh~+{fc#i=w@}nCqO|b-vIV@cZid7M zPp?2rtuurw*H>OcX*m=Wx)yqzKBO~u-Sf3k)FVHQVYEJcme9hH-6Y$iWyhm+m1}nb zMDT9cu0a~bE34W$FM^GWxrmHwSe4nZINry0?*N%5h_mtek$K|DRJm!~Yx}Ft78jWn zCbe6fuRs&vGs{cm7RFpx#%#@&&9#i|;3AzRvMoR$#P!Uh4du*pQZ9>S*?z}vbsF!} zRS~md$BG<3(R_)$Yr#ix~92-{V zH;OuwUHh-xQ;A>db>65PMVG7Ah`rz7ThMOO__{>M=6T8Ek+|Zf+O<Foat@Q;GK zPy0^4zt2`KQ#yV++=Uq|Uz6%}v{R5cF3Kme&*1606nLC%lahE&wLX>kd1W(7*j4N* z^{&)gxgf>4O3N(}g3&7og{awOsN)|Epo#WhsU48Ay{r>q`-%5hpt3Fi{+$^bttZ@I zfsWzVZ82s;%YXRzL_h7;Mea|&(@pWpDE&{(n4r$zzJsrl^=^+KBI|P%Nd_;1*)8A` zD}B&{FEMQDn%)U(e3dRqAN#8aADB};A=eM`oB?y|&`7w3Od)eK4&uADpY)%y%s@dB zj894(*v3`E#CY}kD4N0<_-yCxgjtPAZS0=D65#J8&GUx{$_<}}FG#4{_M-7@9&eB9 zvYQzQ4|QAacyw2oee*awh&?K6>>Bsnl$+G^@;DxnmdiqevMXJGzJ>*RS@)EaB!)kF zE^FY)bQ*)r3$4uc`MH?g2O3^wLxD+!O1gMKKMBolEy7v-gEY{0e;BC6!jADinT^AJv$B z9;XYnof!chB=0u*EdL6uaOiX7qrr$GHzdHD>SkBtF}X zGTSfoE&TQI3yM=uqPpm#xw{zcOw*(a zS)1@y%rfsCS8ijFViL-RS${RoSINytH~q;j=o;a+FTx@6m#R31YGDf$@Mk7_Uz+Q6 zBWvv6y;S{KXhU@AayIzOyzXm;+&zLzEhg=-$m+0_oo{5^IXf-g@9z`;nn_QvL1&T3 zFORJZiY$RRjSH>dZH(kVmE_Nl--tS$z5v+3yk%D9*`0v71S#u&jc_vhK1u}xo9z(Cyc&^sBgUcXg8JbZmmzs0-#^ec_bN{ptr$FFAUkF>1f z4Lh0{o@7PHgf7mCW?$>?OU!qP1YE6{vss-n)dNoIUXIjw&rRD>7VNhky_6@LnNih$ z8_%(R_zg@^%+mdw>%I!SOFGeYqWGMIe_@mU9Is=6!~@(2v>h3XW?6HS|8D;4M)2wn z|2+f#q0H!9a0BpfNt?)H#vx@LetlQnZEru=y^`e+4@^%#9jZW_5<0uTqiokwqady%sxdd+Lz+ zHVnjRb5;sns}J$VHcLKE(Z_XvksfOOTBh8nf755-4?^iJGzJrgRPOA6$g=zUdpaKd)H+KJxDk!70z*e? z?G3HFUG9nS*j|uj8a3XlxZLUye@k*l_IHJ1uGW?GQ#MJp4gyt1Vm6#($OD=gV6F-!E z?C{atCq2aRPI*?O{mNN`PtyBhB{$(o70iKmdHTuE=#9{_;cd|3=Gn~RWG}i+yM`s@;KnmO#ZVJxHC>k_CI1=L`g8?j% zo@%-Z?j&m!8^mc1ZI{K;4(+@DB%agR?(1S;f_MY6Z zANz*Q6Ig7?SRE=_d((8jXZaX*BWC)|6yVaqsHTHv+#+3DA;w|=QmKofc{(2$KaAtkYUa}am`(fdf zQ`K#^j7T8_+ za*5~lWFg-(-Mxlx7;_x!*tVG^S>fpT`QZy!X`&!9qN+^-M6(vcd~PA_jfgFHh7Xg0m`w__%JGjO*Jr#{}l zZfm{^Hzqo$ac=62`#M(rN;5aM$U!LYR>+I}LvT%uuxWmY9X- z3_@1_hS0HR>b@$*5{Rb7hCOYF?u#VwZjH}3 z10o!g|2;hDV1XL9-h(6#Aqt4XEzj#+ihzP@HvZ(ckH!}^)!~^(5SRtLu+Hi1Kz@nj z>C-`R0;ex@9$qS8l-}*h31ShS=3tDdke3J-=R@MUdh?&0YxOmvvUDnjro#I&k5@!-i9JblS=zUwGmS*k9$=9U67-MRIv|)8dJM1cU>IBh`TUpAREM zKF!L0Ckn~fbmN@t*%{P zeNNVkIi)23b^w|8@^ZeYb8UE`rnt$s+qi)PeA95`?Le?%ZJ>cSh6Vr_EBa{lWz$}P zJ#rvPA_O4Gq=+-PC;3#K*su1HX_mH@$Y9|n#L%KqumYy@(|V1Uhve^@8C`yPb`lc? zU`^Q0#sG!?#t~_ndL(LoY3~?(9-q{}x&u>8Cewk`=%*mm|R1k#c&_A{z+Wn_zbOiv60He=KnC%ns<9D`*GI^~U z@krA80>X`Osubyw>Rb&#Obw!snb2{`UtSz^yV z0^Ic{^MBS&6luu!Zo&UX5yykbVPISYVzH;qa_4v=DsF6g`mchQ$6=(M+!-%ajlM@d z4{nUhiP*qME{m} zNpo$k&O?2=diSTV7Fat`LUoR0C4gw>uKus((@x9uBLawq=s=Q3zS#RP+U{Q-;i*6# z;QpPG-_vRKpLoeN&TmXc0ofpF(t!pYbN&eUm&k;SYA>tZ5>|AU(Wy3bUHaLV{RtMy zcWIyMcYyzg9n$3tUSrH#P1h}>cQ>hKGr|k7-PF>;sRW@}@=4MnteWDzaqQ3R=Y90k zTrqFa_%A8}1ixD%V*BQ7jYhM@JH=|YR7ElEdh|w||86dqaWBgXAQvi$ynI>qxnpFl z9p^TTfyN|# zlo{~a2R@$ulvO^^U0Gv3!K&VNdfFRtO;NZ%JtSa<$JH5=R!eZDD%= z!xVi3YAg0u#R@2JN1V>*1f2zvpK$(@KG6M-04kSF*!W|Zk5UcbUB%I&sQy~9?Kh5X47dj z5|Ur`dYxtk$Z;`D+HxS!(nyHn;oUqai}uT+X_qL`lbs1i1tDN~GivmIVfF8X5<W;bJ}ZnNCvyvw-;N?@9VQ} zZORU7y>y_%#FI*Y(A?N|bv7*sn5mS^r z3{dz_)W?C!x|q>!Gx`Xi-U+a%$zGt&@xa;r!}CZ*TrTQ)**;4E@Bc;^CuIToh`?^~ zEp{KQySH6z!bU*e2!4+HlIu&ejH)Jy5wM>b4Jft9f~(r{0pk|E(#k3iRyhdj^tJQZJ_SAPNJRd)@>OTk45YAMuZGgCUxL%Y> zkrwen&AB=WRGw)G-V0#;-_JgnDjXdU3|;3?2&WMR5gGjK`ppplb1I*VLPVqHgRO<+ zpC9ZEKT8lXgx*fH=+i{_QnUAZC#q3Xj%&t~sLYkVgo=Y+w=gS1@PwUL;on{?m-f;B z-1}y%eR=@YBJTT_0g8-r$+9=+cdNA{1^x zni)WD;W?kn)*dGh?4LsDKy9Mh2YN@0nT?lnSPxJL_2V-DTa#*pG=S(kkV04~b1rW~NsiG%6KRaOH z7kdTuI`qBGvjjMuXW)f`vj0+xjOYCPWY>Eekc^|jY!Mcf4ZDit1C-<_LG^#S)}C6w zzTOrCOGk#2jow!+v9Sdcy{)$Ap#7LeR)S%4)eK-HvH)-%s(xv3zquKK8wG$6vYn>oJC*9)XwO-jiwbtT|exdU7Ny&Me>-8n_?wQT{eb{xpUS}vZ+XEu+ zypm9IZZVTfj;_^e^sFgR&=~=5c==7M*qk@WWBez1ut|W|*?rH$gnTL*V9&YS7oXhf zUIqlub(L~Zqq$1FEte)|ijKfv;`uQnIotDGd`B~EqiEVGrr<`$!w_K~$n1UuNSn|> z*61oE-{!f2PhT>Brsuvp$xH3}thp<+S>3du>G?J}MyuUJQnud2Dhi`RxOJlR6Bm4> z=16(?XHi+OW}8V1VLBdt2rm$l;VhEpbmwsL2-z4=?uep63sca*r$isgQZ(ki(Tt0m z#P2R)R7!y+KoPTbAP%6UZ~J43je`446DmXr5_r6;O;e)7+Ew)F;$0G_d}kOCBXS$Z z*c&#-VeBuFl{7yvww9Mq4cWKBO%VE2N$pV>aKg#|Vr@Ww$O}6nSA}M($+V;|k$b|2 zrcFQ%z}&}9fBrI_%0zltKd?EYezGatVmr+g%xZ4jbQ8yZkq_oRYG4QKcFVQ)(Z7-b z{A`v2cp<^wOeo87A;`Gvjkk|>YPsLo@_MoN+SDP}dx1rLboPB0UCb0n5r|SNnCPML zKp}UNj78vOZ?myqO>o*Z%O^ZNqcFa|IZgkAWZ2VMmq81sk-EA%zu{~owY7zc-@$0g zU~1mcCxyK$JZ;Q@>OwL0ElGBLHXHd^wF~_X7F%$IasTI@8zcZ1PTeLzoHbg|Z-7>6 zamm>=XoUCvszP4H5pIMSnqSpd-E!8?n_FjlV5v-orBwcoTRfPGnG10L)^Sf8Jo9hc zmby1@$W3~Z<$kFZv4A-;W-xoAbz7RyDt@%0d6D;mBw{gM^-VKe%(YK@D60=N3#i)X4$ty*@6 zMY$)V3(I8c3!Vo3^`Yf^HT17w$R$R_>3#%U8KK|oP*qqRlfPQO*!a{obyjuzur~_f zaOt#i`q|;6k-qdc&ZtcyXl3H8Wuy7W3Pzz}zS3J+WBCM<4=KIWN-=~FXRluEmHl~d z9LB0%d|70T_>Z+lR-Cs_>=Nf-}zk=Ef}7?5hArW62yv%z^uXmQ!j)^f70HWZ(#H~$BVJx-P~|Z2$lF^u2U-D zwpY5}XKAKfq?sF8S(aS*%ngST^(D{`L^Jmcw)DjzCv4Xp8Ccp^S!c37$C8gs93;VE z!7cZTH~!5ZY!Q8~Q&wmg45#9~>I?L7)YPilel8C!s!Vbja64M}Ip}ZQ&H5A#trzaQ zCoZ$G{4!P1R%h!?VxeAzo@h80yj@cR;gF^l4SMspHi^s8-#So$t?f?V4YW+;U+lLI zyf;U)cFmNgUP5Hx!_m^B+f_VrfkdlE#78kGJT21Z9Ssz*S`rO4E_b=T;M}SgQg8b` zSjw0yTXl!^UZp8}7aI7j*VTq=HXtT6R0!bb(+(fIj!B&%CQ|O>jm93r zB1tW_&@+ElXZ$fazv-JaQ4h9?waZIsGCv4zZ!Vw?Tew?TlKCy>^I-QD&A4V+qUJ}g z3YzP8OzOgpB1My`(gTKGXuQ|jWd2AkHZBWqIdF{E4 zK%OTHn>1y<3t-~-~fR&Tgu5aEM=4?(9m7Pz3-Q72pDN;eRqok?<$&mn()ki369 zaG`>~i^vbJbId``shXWW;qxxPJf6^8BKqm-{K*})J^#~n5p5^E!*R8}@en7J<3BjG z-5he!RgatFjy0boQFTzuA4&^M`8T}q0klbPYS(zQozmHA_o5qHZA1^U=g50+!S`LF zkgmw}>+n^=LzJIm&1L3|a1;nE*r2L}!)|>e=3}MB%~2{@8$(vJ(Yci(@An28o6^Y$;&KP6McY#L|?LF%zXf=b-S`x&Evn$ z0*IO75pEr2KxKo(6tp6prKK71)05qwzJpSY{rH)Vl;jr1>xgZ zc-jd--{@Q6zSh%?YB`E&^!m=bi!Dk^whgaXc}fXge-0*6*`=L87obZgVB3~FSnbKa zpoP4ytl8pYnXyh5UDXG^Cfm<5@z_*07cn zjF~@fR`R;`y0%JTU??sAWI0i)5aKy}wiDGQQT%kfyJc*}>bYWm^DY)9n1Oh<)&#;t2*xF++GC8-jDp<_bdugET{G*_2AjZP!P9x)CiHGOyE zVsCigX)uF5dS zK`eXjX_M5@n6(cXHE@X$4 zdLfHyj+%D9$sXTTzb#JQ+rpWPMjv;*PEL!z;2989Hc7iihTu{Pjh+5U+H25gM)MEU z$kE>vF@_8F8Fw@Xc|Ba?eckfF#z5L`Q2X8eH{$GOr@B^H%P$W-v0*_=I0w|5@~;^( zu9w$Ow^-+AZFT!aWwB(Ap><@{~iZ2Dz6>T{i0bk>wl}RQ5J2Or7~)lU{!|}8RnNjSxr39 zdLLG7kLY=z!F$F9%bfE|B5IG^f|m1fuWK(fHl66k}B> z2JB^+6itTdD|wTT*mNpCP>kEFin{-PVh+#BaJdR^(A=k5cWAI!`7v$W@*osZ8%!B` zXQkJhX*4%14&ax@?=ieFeAHY5m__FkUxS~S@w{ng3lyRdaf&eNjh}DXe~`w0CTE{; z)lS?LAO3|1BXiQiY@fJL(66hRMnJ>AZK#Te8eFeq(GW*)>AM&m3pTpy>6|7oIF-O$ zouS}u>e9{m&;18;tS3^ppYs0Fmx-Got4$(6`0q+eX#F7Wac=o@{e6W= zC-2Lvg=vfKBVzSYicmW<14#)Qs1F!*C3<&D7_7FuBF z+6-0OU4YFSk)Car3G3~Uj|)|D!yh^4gI)UtGs_0&6LoF=vjJh?jhRh$xcn*atBTPD zt_GgwzY0&TaqueO7d+RmY^P<(DbSK@7rtfKw_`7(TQN>nT@WQxz=D7DqZT7byQT6?&T%q9wU zdBqSQJm=*7Ckb^7plPR9TF@0S1Mc+3wg}~FgQUe;k$+LnRK9Q#!uGC8+Y%M?4p}v7 zpKHtvy*DS0DS{qsry8G?D%jh@1gPxjEV~!3&naYsS~u2hu4@A6{2(sKLfDrEu^wR}- zcgrNARQHZ~$h?&bjg;nM@wX4`cDx8bMzFW6kY&*WUS2Q{wIC!u^>&BZ-0haQFYCtc z(t2DT=(XBa*Ro#k`ESIRPZN4+p@s`a-h#V_FI`xz!@S?I1UujAd4KXNmBSc!k${!< zeN1EQP5JKNJkhCovZ18LCPaOrkKZq)pO;&66$SGlgpZEpEH!d>?|EfPRBM(H1v+)$ z1(n*~h}99UOFwfR81%=n=JLlnioSa$0_SN*pD8UdrV&ee*(-(18N~JbTxd!sJbg2y zS*QASdx}6l`|WN*bO!H7{>Gy5+-v*iOIH%XQ%I3jg3|G#A1fI5#e)0zCQtoIjmz<- zXt~2Uxp0ClqB!=3>W!FKCK|O__xezEY(M9j^;DTc6KE!Q1MOs z%U&Gqq5HZmHr9p%!eT2bj%lsBsFmKB@&p1E6X**)$x$l2nAL!V2#vIe>3OkiB62?a zjMEfXtCp}}3Jo7zbjSUl2)lQw#IK78tt@b=5xMlimh5(uwtTi_q9Gs5VXtbclrnYL zR2t(~4{y6fEqdfyof(I8Xtt;}vx=;XeDV`K%8FBUu24rP1n3MOP z-#KxQQJ7SmfBa}>o~Y{ss06%plqCu1t9w6K1^Jx;Bxb8SLn&z0Ry5$t=H5zQ1Tu0l zFdp%@N1GE9vrs?@VHP;v6v+GQ*6{Pif`&7MR^)HY?PA6-p9NQ3&%;xzV7`NLW@Fs1 zt7W6(o?(UzVTAY1KrP@kd?BfoECIRPd**KU387@WR2$7?>~OQ~Yw%0@ z7}=~c(FS?_i~Afh^@!LNnbkaGBSlEyNdC`(TZc&s>nCzQ1o>6M?=$u}9alpR%2J}2 zTZaT6vW49t=ZXT}uTilx#LYD$z#z@>e$0F0y)7_LSP_Xv`g0(8f1U#kh^As=URt>l zg$g42f?t?PN*HR{b-1B)<*Yrs2r7I=GE5rX30s##j}#+?>Ohv^So|SA4>sD}!G~W= zf@`YD*zRZeJ|@M$ULGvKQ>#w*?X%iza=AhP&S0qbeG5r+a>&4`*XZNzY3k85^|N=o zS-4>YM9+tC{+QV%Uo8#RhtTzpA9bdb-=CG_+oD-J#tEwc{ftV8JzO{JAn#b@lb4LE z!DQg7Yr6edV}r1CA99Oh={#P9M3>%^>Ag4PhQz zy14HE#ZxZv`S)TR@-OXCr_l1IWyTIC^7iz^v+<+dmWh>xwsweEy4&ysX`RdCK&%+%skloZXjg&b$HSsY&AtT@=;!jQvvQcmsSFbX`!PdKM4I`~@56 z@+v!1rZu@txmFvWWmPvZhUGKZ!pHl9jeHM7cni@t8&BY9BiRZ|X^ImmjioC+JlNQq z=b*31u{!@1@ru26akf<;VlL&9M&rava|_z>@;$=@gckB6zGi_B)_nNKt>cyLvaves ziK*Mg8}~Ea}hoMnA%o%uXhF{?7e2GD4PSgEt@_}BWmqC|BJ4#j*6;n z^u3- z{3%M@d=L}hS1SHEDc3{FupsNU{bIU+7+Ywe-dLn*6tV%g%a6n6~Kb+tS^ptvePbm%jJr{J?6Fv z3g)4a@P49Oe#X~B|C5fTp8cWMt9I#LXCFceY_41#QvQmSdSvks-be+6+EHE5XQN)b z9Qjh%1C=fP?7GLhF6tSOwOX-1Ad-QCP>NB}VN3O!On`9lz*4Qype5n}U@q@N{AZ@D z>eoX2Z-r|Dqe24cikkE{)1w5TGb@w`Qt~1Sfs%4^=HNTDtkP|?`Q(qEk9}&n`NH>Z z-UQI6JNBKO!f$A9RS$a1UZVT-Bl(wv7wmi%iIwsggCEtl_99cMmNn4+SCI#Zsj`)8 z<=18+2PNf8)Z`tVt&c4)m^h)EQ~M$O!NkR0(U>B+anm8lY!rPI17|?ue{#HG+C$=rAe{fy{R9dxUeWT~^o1vn?Y)2D|T<_-a z7Owd`20b2o@j&$5bmw2)1NRR0fq{qFw(y`~7hN z-0X@mGG8{1BFwn2IaVm^@yCjsN>ng>*_`zYH2+I6R$PjD;j@=5 zfL?6*t#(M*Q_5vu$R}6|bMrjPdo+Y+zyNZs#WqV>dMKhAh_3)%1S54x>rgklH6U#Q z5{FB9onQvAQY?}^(3~{eWX`U&c4Z5)UMd=dA-`wX;~@7-Eh4G&;dNiS9Uhijq4F_; z(OaWxnZf~n@0OeYie}J7?IFFWX`4v@1e%GxtOze|A!%qwoR_kncEZ1qb_k^f>pqW{I(g}7+U|NQkEC!fZtTQhcu zFP-W$CUSh2+tSxeXuXQ&RWIjUzmv8n{4}<}zd_Vu{`jg52r_dJyng`LiFK83X2HG(pn^YAQEUIfYvql(*!yxMvSDi2^HIx}QdA z75}S64Zw5|84+;ic>%zGsbF%nCghfTd4xaMTpUvHkJ5V?p`xFFG#Rqa{Jp;qGP-gl zcUS&JFouS{%zJ{)ZBE8sKPF&vOay&lU6F19&%nnM>ju>=YLwM4WP)4h20{Vgpi%})ZDxGp;Cme#nJGA~xqTv2q+QHG z-E=T?3Mv4*LG+Blx>?zw)yuLk6yp$QlX|n6MoXS#UPxS?N~%Fn+%4%=YZc4bwH@crI zhQ&W)w&+l~bGK%VfHdD^POY#BG<&aP4UF$ig<%%spAs9eatpBYY z(B&e|rpGb1`G%3=uIES8i|HAw>?r@m6%`a{!oeA`JSApJ6r=$pl2>BVD(~r_&m~8^ z5feCj@M4DAXK3+n)!+T4iEJ@R@nDF+&lThLM`uJ{MJYPv`rCW_uY&G3E@pxnixU0a zR9?sFmz1uRgLQTY1*^eRA(`zyqB77UcxDvzxJTX)!LzftN^7l{_EL=Ty|2HNudf9% zfzy-`>2owJQvUTJYn~-+T8QT@dfWaWsmgKR09c`_cL}z4o6yszBDxx7fVAD^WSe`# z%o%)@;>YkPtx>bP0x^{+18Ous-aR2ij1-l$;dB~-8HV{fiVgWnn*DQwF#I!@mbIVZ zYAZIQ@yTOwY$guF1XTL4Pv<;F0}_{G28(q@OuB$(AzN%CN8A$qh-zwC&xS@sEPBw?AYnE>>uBMxYRwDHfVOM+N;@bqneT77%{g~dzQys?*^fnYS+ZA;MViZTaaPxH2=zIqK!#t zPLRl;Ccj2^J7%5&l`$G;m-(w+12_1Z31+S(a+-KHR`O064l~T)Lw@t82`$2r%{(O% zUZ{}=81$`#&gSCrnZGP@UT)duG(-ojH-9tffNXFsVj_^k!OwQl>Rnuds2F}9V*UPU z3$pfY_ibvYDiFHFja{7_DU_ykG?OAxsYg5{ACMyBe6-L`PtjUt+6H7Dem3_rxHs{s zBd&OrC9t0t-V_-y+(|VIe`OOVC4fp70qA#e;<_yN!Sv^uzJUxe=jL9oIZm&7ztb>F zQ+L1B9RPL5`5tdmy3LrksMWi6`pK88**I<&>tds6tuQ}ErEdm2CF_V7;${c*q42ZN zIbM)6UB6Nr)GF#(lOC-xuoMInW!2K%~7!8j)T$D&RarcW8 zEb$V$LHo-%@`px_-ns?k3ajLJ>ht^X7GHYZhd$Mixk8H~5h#cy7TcwBp(aQA9B$Z6 z(uUcSWdHCIL=Xn^kmn5BkHoi?+X+3EXf=fpD9V42=8yE#6sJoW=d)IEfLg=LhuQD?6q89zFpl6Zi7l;p~F5*k5?n)rgq z?H|r!J||sCzGTpba>*>pz5SBMv3xdo=aj*IrWH0{~U+`A7&2_*?RGeVLdj(%y=tlSwZjq!=8k!_f@JCu&Gj(jW>6J zEE61)pTFJ$yypnnKG14HC*>nVmYrs*kROs6m0l6mOjUbjUU;m0+byxEujW%qP!?{n z?bRuuwElSB06M<9GC>7Z$Lv_4CdJ?x(P5y-)%lTl_Pv9`&3V@6-{t`~7A`a!^i_I| z{*KqgwXK1@r6}$UMQ1fhGt!S?S!RJ3Dc0AdrCEK7Z*$zT;ek_=KQ^+x`&YQcq)Aez z#K1y-&`&e>Y;~mG++X3YMC*m%G5KZ>l5D7Jyhv87JB>9L*ZowNUJj(w@lMvyDEAV@ z>thgv*Lei;S8K(?6f{{3;ylwHzBGMG=(EeGJ3uvci((>xae~eJq-24t3h;Xkxez+8QErb|#B)P-Xld&NC zwYie|>C}r!3Djved$fzTiCqC!bO^eXMVCS3e7xD8G=(R`V1Qijs^!*JF5 z)UM=UCBHK5?t4CP6ZK4KX?UN$1PZCR+>-!%Wk$C3^3Pu?kP=guR{4&ZjKb6kBdDu3 z(!zRg>*lw0coO+EC+gbQ2Rz?p_*#3(MB`^>T+l}x{i%WJphbN(<>3c0k<|yIko` zgfTNfk3mB)UnYLAtJ7rIYvS#P5mZ89CN5rI1|3Y8{!oV~L@)H4d$upWm?Q-#O^xly z+Fee)kmTxsss?AgRx;&ocU40nlqg=?^*eRje@N`GgoS4yA*?XN z^>|BcGoJo=39Zi;_YO6;)l>W+{9r<<{qXHykVp03pv>S7^(H^hE+vc;d{}1OrqN4e zc;(^NQh?fT*;cQaUG(rTa&+Ssl?ZZKQ9SY?M+)(IFi7Fdc)$)9*JT7 z94l>hHHEy_)w+-0(cs|0-7q()qHj9~5OiqyIJ4N58o&f)6%<-5wXU+@;IdwD3)aEj$wKsPI~vM*i@};cKB%h+HjsX<>bk^ z6*be{p$~x~c;pzUHm+r5@JjGk8vtAK7bz$6Yc(FOJ;nLjXI&!OZ0=_YV?ywVZq%RG zdlavDN`%~`y@34g;PCKvNt^{vcl)5|TB#d*Xztv1@8;&RFVW%4Ejali&yHcsZy}4D zZ6b%wj5uiZB=RoC<)j1COE{>Byu7%9+CO|b2|#(rofni(D$0P^D0cQC*XRL@ z_H!&H8pWxWU&oxK!6Y5*E*wrM^fmF>vGe^7Q{K?p&7J&a?B)5Hk&Wb26VQNS|5Gbu z0QnYIj7VbE^ag=!aFct;WlYa!$2VlcTw*R3H863+R~*2JBe++G1@-bZWgRd6%6^%< zgRXnCY=?}jlt>QO)+4^t@Z7QES&RA?zYI=C3jh8*FAoZ@du0aII{WmnE3-j|1O$4) zJ|1>!H`JEOiPIbHEz**)6%u`^Z6KUxi&>VCd~fQ8iv3!57A|DKint<R1k*2LpM+wIpzTR4^{Zz?qe z5^f&(CDFCgc-?(o4?_4_v?z#XK@fpwQKwj(WUZafC^rG3KsJ>)1v-I^qS1R8cX+Lh znhApsDaf>)%FE8Hi1W^XI$^doo3*`9s|>lyufO!UxAziSqJMC5459*32EX2C`$0bH zK;R5E;`Lgsxxd=HM_)B!EhHQftzWmWE08c=>8Zm_0eN7|#&+D5Wx=v1a1|r2dwb^O zI|XAX+P>CEo%va^id>$dO9IS37N<>OrHUYPswtr7r@CGE$;(^6N>@G$lrV2qIU}Lf zTAdaLQjhvISM5j3s$n7hXM_=te+<@uwSKSi!At!zWn2G#efs!UYaA<)E$8|6kuxc? zeg5}*F~}iO9J71qf9vd(*lY@bUiAf?K@JR*IMsedwwfxL*Sj$TvDBBr@zPnTRTF;r zr*ic5){5JK)pWD1bd$$ZhgIp2$bY0ZZ9tau!`!&3)0Ss@;gRrh;_2Drov~eN>0xtu z;S-M;snVy(y}^#HKK(v84bsgvUqf}vt@I|ZL!-O4f##zX5g#^#{C!{!Z9mWbPWSBm z2R>CXDn>a(mx-igUXgQ{+Cf7J(9!yuY2HA0g#509>9-% zCu6CA3t!$z!?*qDU#{Qlc?P11^7%qJ1p$aFnfh|yDtrSfVSZZCYTO9P7oeT54_b^Y zH7TKfSNF}uqwSF2v{=pOBW{3r@+^*Hz@apAdq%;GnW0%JrSIq1OV+XN0n9q(1gwi!<4853I5iJ6n|GY@-v z6J(=fh<1slbQ>Xwa;ETM!2vXmm4J-tIqkol}Pz0F0T`|urUi{5@ucd&Du zEMU3Dn+Ba{n)7YHVn|SdmXi9Bn<4Z{|FJLk5Q8z{(@is@iC^1`3kMDR&PU(pl!koq zI3H#ENja0Pb<@d3ICK;{-;V5jD`&(ptJ3v#d`s*Kr-_KLYN~ggQeFAd z+2My4BJYKhh*MmU0ETnN$0F4WJt^nA@JoegW<@#q>)ExD9KCMW#)y?8+sW^_Hwm*$ z3_xMbCHl+DZ~#c7+$DRDYRM1o|FcqHoDE)qP*8zx#^IwYZbJRsl;^kBiEp_`>+4Nb z5p58#`S<2-4gLDPHA>n98j1(=%NXyT0>{n$M^=Y;I5HF)2`dGMpIr zkC07^NgUrW&vzgQ6Y&_Sm~oOdC;Qg|(v^+V>0V@7D;?Us=2gG8L%uK3pTcxwZ*_c? z3fG2ku{WxG>S-q7Xd@NGJSX$;m)Lun-&gdcE#$(vih2M>bC^T8)y$1+8=x$0r5;lQ z%Sby>H1p2tP(@_N&7ZD|Zn&7}d1-u9dJ;4%d%Zerd8t!>G~WTG*_ifWFgM$!V~ik1 z% z_dZ-d;;Eyg@Ehv-bj(}5^y?>3pZY)Wy7M%&Z_*rdo18NX_1WCL4|6Zz1vZ}1wEx@^ zs*3pdA#>N_l?~*N>%3dN%NzgQVL%JxAch1Dd9FC354?X{zcz<_#dD^V-v4x+m-wh6 z4^{3KFm&N;-)7XjW9?5uQB>;f>+fgoYe8MCT|_5=736t&8s^~$(ufku3xjOpIw2rP z*dK)`Zn~L#b>#86noE!H#Y*08?%SMYbK~GQ7*J?aWc$(a^H;j)r@pNOLl?|j zhwY|jC!5-yN0Eh%rT%53@D39oCl zeLtNS0&PX%tHn;jpT6;kD@VQT_(oM^S(98g5j>Hw*y&eJV%Q0>{-jMYpN6-36FTr% zoz@XqRfser!eLuQI%OxXOk@m_R-XXKsA6)_On%uCTCTnV~f8aWE{hBt0$wmEV552P?hYzvk@KUUz8SlIu8uL1%}flO#o;viRm z9xKG=X3-f2hB7~!^s*%WeWvv^*p+AX-l+0w>%;S^w*xk!=oGLdzva|Q)Q{m6tRNZ^ z|FA6MlX{MSnX=61Gyy={U4Xcp(WxlwS&N3iqp)u}Ld}~OL;<2&g2+_wFifNtEL%9m zb)jV>Rv?Y$RUgmyKqxf=cbVFeHYueDq~c znf)@FEgf=DUfv!3dwYq_Gb^~GVtqN*7Z@~2qpj0L4-00-zs`s=sZo)wi^1yIn@dSP zQ$M;%C>EKO_`93z75*)Ex|~pa>5tiU&#vbJ-(W8@m-s!6msVo;q}k~|{2I^r@!{|) z?u>b&b4U$w!4!z5Zs`sQW#N^LxXgI5EVS|EKRZ}pw5$a*xb2|PyM;f|$Fuu>i;D7u z&S+`#YrzkYjs6A1FJd?hA5yD^fNO700JS&vVk7C<7yrCGstrqn^H{kH+iGqd%iI_L zuYEB%mE(?n6{wj=9{^EwK%fb2awNgMYG-(A-CH0K6%L=rm$nEc1qLfuYM&?^3?6xB zxzp#0#vk{SE{#bL7f-yL!s%!Ld|Np?pa0v_cb{`!Y8b2@aJ$Hm?t2dCTebfD& zu>%#q@0nHiWfS4m17ZUiXFI*~%mV#7*a5hGUndJcnT#152Rx4o?Vo5V25-`$ZvYqY zXF_tzk+{cu7pHElK;R6_h*R%B17Gfc+tNrsE3oU7C4eL$oW*Vl1ng0~y-q?a9s^c} z^0>sUwYUAv+uZ%4N9L>t}zPhNHd*5kF|!6mFp_y z$b5Mtss!3sy{C)*V@>@^uJxt;1&lDXUEsP#t>dh01eKVRsD)w5SmE2D53MnbZcK}h zpX3ZZ5IXbih+CCG&9oo{I(Ts~ojwSpFS=~;+)TMV>rH zdz?Qv1|)Z(5KST4ET+NaieI{Bflt?Rbfq)~?8aC%nr}s_$jmcFi3mIr5Sd=;I9&^L7v__uf&C4NU?dO8&4C1xxlNdfue2Osb1Dr z*4EZr)A}PD607%euHyZV<8Dz)_1*FGkS*8w4jv)T`O37$3z;&cH)mvqkKW+_I`t=l zbfx34n5*>E%;T&_Ytn5ma6|Z19aOM9DVyOnSaOMBHrDP=6>nTppjF9vm816%5AVIe z6Pa%gG$5YOnnpUssKGV4GwFpzO6PHU=V%j*>c1~!&R{~mvZNu4Y=fSyl$X!^lusxC zQ&`)9ee#L$>Fe8nqNijR72`rb72@IjM97A&Z$6Q^@!x-py%llybp>Or`}V>OYT$b}N!@cEl>$l4^t=iYX`QmTYGDM@d8;@cf8gBOtwtcIFT|J5FGpse` z)}f}Gy<^M}nJHcedqNj{*$S)47XSDC-xB_HFGu+OQM7x8pQa3kpOEH z9~fW~S1>46Qj5DBDMBwVug4;gs{79j4471s?Gmow-Eu6O^`Yzc8A#Ank?Sq{?F5^u z`;A0Ocl6CLc&`)36S&o-SpM@~K9DFxh5UHv+{WQ=Z5q|77IaC@+N35P=UkAM$X<79 z{~DY{$J_88RrSpHC{on#ME=sa$z%)J<}60$gKRyPU-!5~YUd5Fi{pJDnLP?xeLFhC z<9ga5reC+8S9`Qs@3L9;%*0EcMjXOaTt}VgOOmNK_|JdF^LzA>SLSg0vWeTV-(&Z^ zZRw75^P_o2>8h@nCz3K>9!>^?xT02gQ2d9@)6Lj+gP^Pmca$cpN%N<%QbRQ`=vkNI zz7MHjAikH6?|HyzQ1e5x;mwUNkDmq~-oeAmmix6)n5VbJ8^fkR#cIeB1TIHD<9ULg zCR?h^*Lxa834LrYa%G_zSN^%4ljqlML+!c;L||$5vekd0w%3{B+ZrvSb~i_QJ`8I0 z4034pj;W$7H*{_DhC6o|EkDY`U;{|sB~Hxhr;Th3tVG{JNFd)Rk+kt?IE)BE?D?^=4*uyDc0=*`v zL4=6cW^{)CS+Y46Z_ZK3>lFGeqgJDpMsQX;l(59mi?(~4&`Z9U_A+ji+{wUxx7GJ( z+8E{_LhpD!82i_rMBn}zm*n&scZ2gaeWA+mrJlGxgY%V(QEdBXLUvO=7AD^n$Ws;Z zZf9_>;0|#H$umR*exxz}=c0$9Ph+PFVk7usa+M<&>2bF3#_5+bxz0_%sI)# zcYheqHaQ6iiGH0^Izb?+=G`I_`Y|53X;LrmT*85|&}@EoZ;9YH;g$Ekp47rzxmJ#G z>;hZ*_E%T)5JZm!ZEMp6y^t5#B;t2SXeHuz-RioEN;{WNzeb(odmc#q^EN)v5o<3gx4E*EuN?7iA#g(sGh}dEXdqL9 z3sL7>mmo7eJ-r0rZrBLI15{O?u4V?j{rMpfV7A8gj%y2<{GlM~E{;XR=*^!{dQj(B zq0&%dEk#V^>l%wpd*)cPHcl_STao%|UHbK5Z z@^#n<`cjW}PjMRUVh6gOKzGfE0_bw>1JDdS-yY_Gnhp4nCgL?ZAy2yrh-PfZ4G(6&laLV`>8H%7dj)kq(g{b{3@!m zovz>Ic3V;Ij$!Q72|t+Rxqox{I^izOZM0C z=wE*djqYD;^{01Bf*Uo6vNMAe>rv6xZPAS2fuiK?RM05Z_3`spOJK9b#fcKoiZ{RQ zPtji=E24kUoA}~^xbg6OplXINN3|7}6`ULg7{aMD=R2&LKeGIG+n8dQJQPv;i!b#X z{XX+nb9gym;|~?pB(U7Cn6Ui)2)8EB?db3QQ%T;skW5jXz2$xjj+UHl?D5EQmET`B zH%=~-=I5QU5~e1F#>I{I*`m~*ymG&s&s9IIng?zZDY7Lr5io9>}oK05*Yz=zueT2%2__&W1$BhP_)Z$!9Fxu!%{DEXRNE_CvDo}eeu4ox+VCe>$EJ;gB zO@)>{rBjYGELNB?>ZUPFp^T&08AdJg?I_ARTE(WpFeO7o9+;GLm@aEy8;r3&o8{%; z5ZDrpOIGsiU8oJ|JOBHQMn7yt^=aw)!)Q$K-S@~64%re zvLWsxX~l(nDngvjvs%LaU6p0|>)W^#OIP_SnE|XXBb}r5@zNxre)Z<3zPj|)f!|Jh zW6(5F4TnO_Ctrn_b+?ykr-)OJGWZ>9J3Uo>?i^ieHTkK6Ss-`xa*e@CeF*8X(aqP#pF0*+u+ntSo6T@?&L@)KuMy+ zuNG?^BjV=D)( z8fbE@?BhHS4;Vy3l*<@Y9`#Q5qBQ>i*MS&*xxe#S)+il&_l3?kkIm*GA$2g4r<>R!Hd`VK2>G;we|sc?H$N4-k1ctjzY^#mA7L_yG-tR zyzgrQu#%|BCR|dZ38#rW4a@tpgTilAVmj-PDVdc4Lz}D0>oYCqdxJgWBlWg!`Ul6F zhyarJNr%6>kx1jq3;RIrADYs^7*R#QA6gAaqjpP9z0&IV}<(nC-DJL*ryzTPo@9$-N=2!9q ziLDQM4}xb^5>2raOYbExPyA0ia!2wI%9D-Q68&Q)@Zr;|H1+Qt(O7fM#019b^w#}; zn96l@m}YR4Yyq=fld?@Mo$ylzOE%+`av`(UdaqZ}ij7qtw916zMbe=RA=Dj-aW)fXofA8;hvh;uz zv7n3a$Y2J~lowS{3)Y>gSsn7|JW|wWudl>w8I~?LV!m?~CHgiRB{CHf2MvK%niz_a zSRd45k-M4N4q~c};d)P+O7NnpXgj@rV-p(FAp-M7B=OMrL5O{u0EM53%EMBzwLJ=a zXyls5_+0o*?Ac?pwo4yOjk8Vt_Im%hRl2UgwrHFx)V?&6x)@3$&{=qJNTED-oZ8}0 zmx-C>!lpNI_WNS#l?13>tmcinah;Ft5BpYp-^4(YD`(!}9-kTs|6zM*u2{?MjRyQU z)73e0%*NK){=LGPfphET5pTzBq}+4~pJXrE7kz%>=PX9k0;9O=c9`s3;4gXp3DRnp z2|a#{j66E^gbvbKV_|FP18;xY%+-J?*mi9|X6vIpHUw@{fcL?ROHWGsGWv-p@#(Wc zbppzjaeAsY=%r z4|n86oFwWb0g*)0#uU^9gwUD6Y&}?vtuvc-vPUeEpQF4^D`)BU8SPsdfha1cVMWj# z(T~nYPyGXk+{2+pK5Hn7C7fiimf9yc?J)9g4VA zXeZQ<`p;pzQ#7SLsbSA3y7VeKJl;#&J|M?{^vt2b<+WMke(|)|e8Y63S>44dwej&} zh$Kf6jtkX}qaynVtu}3V4~xNTrV37zCU%JkWBR}Q-{bp75vdl#{I;_{J_*qh`SqPz zXL@H6LLF-%ch}6XJHxE)g}R5P>eO>>li`qMqkHC zp@LX%T4ZN?bbp>h_8lgcVXuqZ`t?Ucl(p$MZwg=53|;?vAdI>^^mjLOlrD|S-Gn)} zvuPDFX3>ayTYbD|z+rdEWtxOGcdoXoy`Aj%@X}YEe?!=EC4Kmq_WAJ9(58>^m2v%jWKneP%YX4Q7Ye_&9mz@F)k z-M=>)a_H|NB1SAmBgQEv4tD8&>%z{GKR;wN>EMs8)~MOcs!!=|bk=zG=ti(Kk3_$IRkF#_b(HGvfokHt}NYUJuJ8SCW+Pyxpm#g1qiZ}5&o^O{PS6rS~d063h z`r6NqtV0xol*t@oowJ3AcEiuzz8=`<&+Kl;!3S5ULk4=^GGkRy)<@-T{0d`Tr1@C* z>pts`tvcm!HU#KgYP~g|u4`}|_h92?BSZ)_3f*@J6-%ikVXf&u`^@`19*3K@6}f9U`gnzbvN@o@11%h;SUNo4Lp1dyBaVvqtQD}cR)Cl8aKD(N+V%^#1@5;$l zBenJdlP$h=ZI@LhZCO*b_KEJ>Gtz9jWp9qMBO5mm;#)H<0CKD4N1)aH)M*!bQT?|&rLOtwkBV^jPYrsYtAV3ZFvr_1m{emN%1st&Sfg_F6|*ub=N(GUFzD625!dKiq>zl`KG~W7u7S%=HNH(hM2wc#jCUm zv(R`3gSb%FwYJ`>9d#R&D=0dP%8M z^`sAUTnwGWEpJ9mWSdDXUSHjU?0&>gAtr3i}aS zu(nO9&Z>p9j4b}xedl?4+C*W6Jri#%g__qTEGx^uDh}&6^!N$C8^kl5D--iLhyoFj zUG!EZaf0;K5Wl@v+YbUhl=s?@;h?EtIe!ZT&Pw($S*X6!R;?T(|C^a&dPw}ouWImk zv(HYZxA`GH1s#aBUex^9q_X!BAx45V!j>Vz2w@UJI0ik9T5E~svcLU!BD<*0H&-vC zW(6|r`}=j~9S7Qm~GTZsea>NQA;}1-Ybn4z6huB z$a5JOTk)9kKb#p>S85tmOk%S)Xz40vvntyVd_QxL%Goc@e}1TNKJX)%@-Ome_PYeM z)L}-eZgg>Iad?qpBZ`kBJ;trC z!$yDpfWW*lUOktS(EX4kEMIP<(|9&+ zfB*oUGk^RF^FV4L1FL4BgaGL%!V~Kwh^|NGa^?si~~KX z+j-E2^`GBH=N)ZJ(1F1%2IyG9AaVf4kWspE=Qa$@!a0D7-Xs5$X*#NzZS=TMJG*3Y z)u>!EUzt8%>4AU*nd5X`JfkSKAKnQfNt4X?{CxfYgp%fa_Nytou-2c5CiKMjq|znw z0H0s<%}f~IJ`Ok#@iL)>DKM(WsoUw4vmM>lkuNZkuS zBUZVNJSO?Pi1b~W`vkX$9trxA7<1|}AtWBx?iiY=zM>LS5@^K0oQ-$~W}kT?4A_JtkjeYNF#Or$pP`1D3gl6bhMy?>qAKibzPUpq=1CJgeC(uO7s}v5dT-bhcBDf= zF?!p^GxaEq-!Tr975!#AWq5Oa^*D2@NqgGlw3bKp_7C_S z9vNnKp%2pHTDG;>67<=~2RCX+3aXHUwB#3E)AneuboVr8vjGrFE{s2G^Sb3Pnm8E^ zt9+**ccY~47bN|4ukdG;AAOG<_xC>YC>Hvm`rBlu$c-@+c{!Va5QQ^inxAR01fjH6 zIcN9yKjk#2!f0JkgOmehFaDX;0cN*nNLwd@zqC;*7MO8QM#-^A(>q_XNH*jQvC@oX zVw79|0Za3$qiIH%1?wn|(1nc*Y4^mHLnF?Dg zua6a4z%2WcG_3klP@F%{z~5%Cb## ziSDSR@{ez9m$$7x+Z{z|%QH}6Gpg9+>1es|hhT*d0N7C=!WI$nG?{=h zoL1u3r`-*(m{=E_A*P;6^*C#_=#20vfh*Jz-r5YI5ElWK+C>U*-oS>^p!7BSqoZ;3 zSe>&enbm&(7cy-3+^--;r|Ej=W&rQ%_w)6M%3S>dtG*<2DR;2F!R(&wT1?g=s;lC3 z(nb`E2iC~rS+(+>?+Z91J+IHwioRz7x=u)Yqrn*;9D(L zGvyY;`@^@jfa5eemRao!;L!meC73^AOR^M$%K)OE-ANbYU#XH~Y_`>O3 z{eDL7Ji^#r|8I94w7Si7=2^E2-QNf2-pGbyy)CgjQ@33x9MmZUhhGNqOpY?|){51n z*S3r&f32f3FX>dv=pB&Gh!3b;h-q<6VmB~XD86kgn;*MsOwxZUzPC9ugclKfp5`4Z zevd`G+(n5Ph!aM`Wpjpm2EET`P{j;Z3DtG z*<$jjFnGmsc5I@t4#zVa5qw?x?mxR0NuDDWsZE{5grq`mu6I8FVlb}EZqaZ?^&i%2 z2Nf=@ZSAxbqku5zau%6t9(G^v@U)LC-)O0qc}PoPlj?ie8*x&ZhK)fF1d+q0o8E0s z@yQ)#1NkC|aVm#gaSj$_U3z?P^uxD7Hd#rPwmV?}M^1hs8}=54GVMUWn1rL7tJ@Ob z*$ccA+Qm95sM)s6#|h6>(*$Fl>2seheC1jSp*>5&i@RCK%e%r?pXaWBO@+c?WZf|L zRd^h~qk&SRJF4&8?s>62e0v!X-!IPf!B<$gvJ|ExJrbq>I?`f0!YNb1f`L`9BI^#7 zpgOn$D=4Db`)is6cAcwsHjl_?*kb%{RFPg~j&d@$ECrt(i|t6>i*sBM`h6Dlmte8Z z3{t2C5R<4OPU+x_xAv*5n&l>9WHqDkwWvsn6Wmh|_S7d#4z(cbT8mZDcD9nX9HS&& znsE2&EB8*HbiZJzpWE(&td^|OHM?XU>jW?nrr5_ZDm|>`5{u-v6i>(uxSTA3qx0fx z5;%=l1Uaq2(%kZ>0A2*jX;-G*O{WrX5>bE**7I;3p;0c2D|kQ8=etJ>tdgw9tJNgB z6N6 zlm|G(YzJdG_z-FdD=n85P#2Zr7pD&(m7_&`0R65@XdcZ{c}p%C`eA4%*k6xxcH-I_ z@l#JA(M}qvNDOZE%RL_+iX7=tq5z4+<>1MhokbHXl}$;fnHZ+C)g_yKloh@M+w=`Q zKQ)TfkS6Qpr-_c{5s+`XvY%&wP#CfAbG0Xg$1q25XgoQGY;J6p`s)9M-cM3keU z7%aE6fVlU{#W8myaKTK-vQE2v8a*B<9I}3@{8MStluR9@(7ew|Y06f%dCUmvxwvz8>uFMz)cN(YH zK4NJ%N@}*@tgHHb>XE4Zt?IruFLr*~*mDwzl7C6qy9YCZG9Jg>eD<90H(D#?iA_u_ zIllb)vT{L=@S<%+C~AWV<*tB$08gChOtW`sZMjW;7SMWk^#O}Hx^_oHUNh?@gzRAV zao=!T2i%R_pe9rw_HrT!pQNuD2?E0{$BV|9-jC+Ux{>wmDjaK7y;Wc}s;}sMo{+vJ z$1Y%dtGD3Mi#I^-KiREa6_}-R-d*^s^7;ozK*w?qGK}eHd+8ti!=-+!&`13)7~ka+5vx0>1#v zFuZN3J8J$Z*+VUZZb<|g9^NO;$~PTxYr`1w6auH{r?RfsH!;2an>l=|#`P8ReS>w` zUm)|C-fu)Pbu-Tk&z5Cu5dj(cCMVmHLaysYqK9%xbjlOYRYR^_MA>%r=s#fB=sfanN9r+;Z*0l5>$LXjaMTQ9j%{ouOsA$jb+pHX z2VWq8DRZgL|7LLfI6}3HT+CW2*~((+__N4IUiJIx^X-#c;bzTZGaU{1e}(>pk^VLP zH8gjZ&lTY3;<#0l&Bqu?g=@iNXJd&GDvHT;%Yg6SJN$X7S+mQ<4e$~<7Vvh#@v}gH zSmW=v4gDU``XyDJ*Hz4{)*N3%eO4|KD@mVTUv%!i$O=pZI+xT_QSUu@usG>&))h`m z7B8qNii8&_(5o!>#J9X2*<(|TV~OFh=Hv-j9iVRT+RjMUr5Kt7SiGpuLDwDAwP(s! z1(K=L4Q{F4*5=Pdkde;P8q70>R&Er_PpLE zqi(mKoJer>QxK3S$ez{qy5oDe*3E+wamp_g&41uR@w%Tmw+WuW*anTFt`_M5P+#wX zWOyHRNA;RUSy8EA?r-fDh4|8k9=AnWG6tARCl*ZM&cK`@!4cQMex&emVmRLt+0NbS zC8p0;8IHOphuvZWEM6s)n4&UAE@4f>ltg?gyo*ncSd7f%XfnNQ%3&zAC?( zGuJg??f5%|WIf>s63e-~@sVzrguA?WW>I_(+xdz=+8rxifa3$pZ_}I!EpPbys|FC; zpBcQ)|Cx4;2`6vHRp~m!9RD%P9wNO^1~BN?N(1D74w}hUuhN9X9QA|S21$3k5_xt^|#!X zN49QXl%FlU@-k_^bgXxo|41e1G6WzjW}>N+Jo}fTypF;iM@60^^;jTNCNGueQWq&tCch&^!RyMa zQqooi1a@G1xp%&;l`j`bGx9^@X|j;p_gdMV;cO4pOmT}9P}6LCmT$_NXH~AVY*@=x zDzj|(;HIxUkbg9rK6w?&vb*?~XWx48#s$fhC$iscK28D@suuHXL8vc^or0mw1L2lb zICmF$pbz|=fhBd69#mxG(s>LC1)?}{qKFVDQ6hJCj<0V=M{B3D>oa3KiuX9ACx7yM0 z9axiS$bP$Pve3CJDtBJt-a4EW-*WYJ^TfcmMd`=f-&&1(&p()#Msc#7hY~;5ZE_&i z=PgRUgIOWdI<)SGl3A_siU35!jFTXMhv#KMVI z<-2PP`(qxfII#3dIR*WJ4JEAyoTv&W(x*2aBQ_ulfP z%{RRCqksGe_#k-bImJRg5s(?!`xlINZd_sUZ#nX|b{7HE;r#HNZ=-ug;JQj`-6SO8 z*2G=GGdG!a?F@Ph2f{P7sR^CcUN~yK^iy&hYkW8EO=konsLQ<+ZMEw+*sl&}KjRq$ zmG#Oe>=wb14Bl0FK<6TWiIMQ{IkAFZ2DGkRUOk-)$dIi6IH{!=_GdtP&!F&D`CBZ@ z7n}wOx+!5F+_>K#pL+a%*n97&rq*u@)QW;)K@mj}P>OVwCS3&tLhn)|(h0qHtRNu0 z_udJS-n)p@K=0ug>TKYb{4fREgVIqk~4~WAL@esp7mnjg3KyUWadfrbjrKQ<{L5d zEkiNao5l26V`24?~9_zCy;!7Kb)F}Eh8Uci2EgN^A`6TLcT z&5d6U4YcIxYr;3}*<>!fvfa5(j#TG}lV6G6E7Yw&*=KC;OFq;}Yo@HfA~?TPo9@M2 z52wuys#QF%_48+?gU|SxZMPePD5el*VsD>_C(d9!9YE{6{W$5NxQat}vphCQTNy5Y zoNnTF;vYyL^Z0{Pz3W>@I*I${o0Gk{LAP-qK{))KaZWPRyXZZ|u+%%qx*!GwqmJ1N zCtSLT{e68K6CMC~u!`q9P8nzlRT#?mdH@XY`No0A@9W-V@`jnE$@6fgEcGl=p2LNB zZ@27OK(?6nr!|I%-PO>g=kx0ubYH?f~fTK_Bq$_X1{ zA@ALHTp}2{EoRz>kmM3xFCJ0*X;8mDsG63_j_=>fTbT$mTln8yI+tu8YUTBPyMio=8`4o#DT|MdAGOu36OfCl2yX>U9 zvq>)|?%wMv;*v$r=0W$gsvzE2E&uO(C zr4!OsqsQDMlDmhkO>O1zy(&@u7f)=SyN5) zCT3!Iq~xLBc`$mIPClVLddy)lpj~#eITOs(mIjkM<^ih#g&8k;x`cEKPL0ywo~ZE3 z@f?u!`|ZsFBs9FMXIWJ;zl1ZXvvM~MJG0|~8@5<`qR{4|)$JCbyV-Z=bk}wF1amNX zSJ^aKxq!VqAM$+UhQp6;0hMoN<_G4>UruTMCc8*Oy^gDw;$$X2GunEF`T?;=0HAn( z&#_IegWV8$dw`o@>#Wno6ELAxJxFtqW5}d?CGLMz?@1;x--{21Aw7mXM>=$*4{a=+#6nLlc{)LoM3l z6)wCxiBLyr5wH3U)8A-u)QX>&{OjKPz5_6){Xt4lJ5d}!L$tPk%1HN8ip0p7Q^XyN zb?yBG93>k1M_z+{GOM(U@wOkJWlsljXO}YPravzpmD7}6T~T^-`~wl$FsB*2POaI+ zbw|Ywk)FWk=4p=CvKyfCIW{b{qP^5DFy=Qu0NTUW`xA}>i`rh<`k!?X>NrRQd-6@> zs(@~-uV`Iz2yWdx(Bp6*io7oAWIKKBSw`@Dx605grI^*)wz57IZ$A1JZD?m$bzc+9Veh)A9y zAFm!oq~T!4{8rmXRwh~>y>MhM?#DSClPp9gGGM6)iC*}VRXktD_P$ip+)Rng6KV)I z-9R)*OH=Y!@^lNywR{eG1OIJ}B3trli+*arAakwj0QMomo2A5Ii4%KX4zL5WTsHN= z|kjD*l`&{JFHN1LPuhColZCk(sLZ;wB{VF})GlTLH&wM68 zE~rx>a?~~GD!UBKL&?BfVTZe`2eoI^Z2R_xAIDq~Gp9}O;{xgmo+UUBL(b5nQ>UIU zr;8OFZ(@I-wn`5dm*T~idSk$(BuHGz{5j z#wf6TGnzGJ@HfsOBv}^AB^q<9N0h%y6e$@Z8?xD(REx@;$w95-ZMs8!-`i~xytHsg zGF3g;ZhX0Y+hH8*GqdGPfGg-KP+ON=NZyg1gWA$KB+So5@8nM#}^aH51Q=JTE0$s^rW+|D)o;8d_4f;txuOKWhui8pEE^>LWpuO zEs){$S(wFF&Z(rCF>#B%nYHN9T4nA~H~nI{bN%H`phhPuKnrq~=3wPW8~1iFBc z$BIf9EouA3&W$@yCzAd&yNfaPt?y~PQ}gqaq988|M;qY5>(9uHR{_p|-1#S_d(S^> z%*m;lV${_^V;5E67Us>`3n1g=7^IJEM6*o)Y(-g#8 zxNF0Ukcg95AJsDWPJLJ9Z5UeE`Rk*nx#GNeT1l_bu6jaw*Me%;@Z&e1=EE}8msw^KuvKh zV@Q%b^%4#JOsgO*tJPeZhyCnqL4dkGWyg`V?{F1R*;tM*9#B~VqCreJqb#Js^T0C+ zAfrrxnaqn2a9)c&+Dq9pIL-6T5V7NMP_oI0<x@c&maIQJUUiYm-Ra( z4B8H)P-EoAUJN~GB(!F}NZ)M0(D`&9$y*HPGX0)w%)b}LByXWQVcrZa?dHS1sn-M) zgm9uE^j^^vq&IP_2YE{n<2gm^-ubDxQ5s;HaQIoN5W~SQ^eRP`=Bja!Jwz0IZRpwh z&eA$!ydtdHM~=H4jwqEi5hBscL1L;Ud_JD??7saZ(_RuebGAHQeO4lw((~mRa@Maa z+OpoOBTeTdcDlT>)YW({X3a!J&5g&N3akuZ4SNWga*i?{tsG)>$u=_aNOII4*|kfj)_4YIQa2LH7DiAL3nX|BiEFQf0=h5N@m2%5-eG!o~flGMjn4hL3JSb zSB#8?E1FS>v+e#SzR38#oQCduzedkhf^wVU5M9*MC5VHG`2l*XY=UAS= zN*ArTD8G98+Im{MX5(9Ht$kVUgZvkEHyrI>;TLkE?7Oy$;c`Ah-UVLD7*UIuF7w{a zrA>=idc3Yo%F~7;(P{33?SZ%9fS+5cfRqwf9=O00P7;MZbQ9H1EAZ&DUwpPxAEj{y zbxrp9vOsyR>gcD0on6SDX>U)L*X^5U#-+l?(9%ftl**I>NP=+kL0#W!b~6tm<*u`! z#KK!0+RdSw4|7;?O!#Bvi2eW1mnfi zKkQO=;%dc)Z=^)~q8k8}npd2Lq&&8QZ+$c~vbqB2p^d3Kc6fnktS5^?ji_UpN%Z-|GVE8Ac#WGHKM# z>tLqA8I69MDFNb|(j&kSi1Rw&F-I}P2|C4l?(|DNb={(q32i#yvU3sxqg(kX%Yl97 zgS^5trNrM>IvxqjR2pYVc4C0CLnOh*_cg0WqOGEW*}}pQ4_V>y?Rt?rBwFb zH%HKE#nLxFPp2~2b9YE{Hf2RiKV%b&OpwMd_P|Z+ggp1ZdE%|8N`2sJxBD+EGI1w4A1IF6maP7^F-gj^VH~D zvR9G@idyu@RI9z*g%fs%a{DuQnGrzHC$=kgzI5Fe{m>? zH>v1z(7cH1^_w4f+%lum8{#|_hVNG~>x4|i5PWna@0_^PK4pJd^;3n}RO|ryzBm{& z@av-&Ciav5bIBVKONOM(|jSPnJp?0&?(PC} z{^VVMQd+e(5)Ng7Ql*f$`Qan9 zV==^fBcMPzleHR#kVpT?`ys|SCJe#6|vW%3m|ILZ$U3O;tnUL!(ulo zUtN|sCY5x@s5i0WT#cHNdb$cQj*d{>5D>@#Vx0w6{O4N$c=p1gCD2aFo4fhEMQ9jo%` z{XS*?mGyKA%4xBn+TKu_3umeFL3Zrjg;S=8+ryp|GXA+0*C;;kL)2nyL`oOy#ywWj z%4l4M)pEB(l1@ZIiyBj6fI!gkPO3^0jL8iw#f9>GrRERk&)iH^iF;}s4v0UoZsar~ z-bbvS+3F!Y%NaAb$g9nUGP31Qm;s|Og3qdfC+a;l-%+<33EAD@JuEWzNrvaP3@^9O z&ayJ5FD=8Wy5{R${$69oEdH$41|XK|QF}uq39)OH41O}*@p3v`DX1W-d0@*m-4sI3 zma9?C4|CDaKSIO^`yV4Y_0a6FX9bEWqAEEGdhO-?4nq)w>knT&9e+e#s}5helZ#Rc z_ubq%7CSC`4|GDPPg#!A?eiTX_>XMViTQf9(WJwA)%KF^JIm&{4Em?!MhBX)j}09g?QJHq{@X!9Wo}2Iwq;E*yiI6H@)CUx@ z+OJynlG-7nR=)c}wu@o+M3)3GeLh{zlVNsUMV(8nik;KdG4qYGiiMhjBXuudb|eet zm+#;(k3Aq~6)^)j;DJheAA9CJS?mEop4{%L$cuAQ*Tso?#d~gdFbB^}^Yp2J?$@0s zZ$E+k_4_CDqx9yO#hwINK;UN3t8p|*+F%BRk8CnfdCYMEF=KZ;ud1N)npr*<#)H*s z5F#5y%^Nx8o$#REW6v8ttD1sg z+_nA{wd+8`Z7`t&n|MD(zZAFL7+vjf5~(N#xAA5Ci|6{+h1^#REqlS4dE}Y=6chSzG@ zF7%25QSI@bGpV6u=$Shi2>}|#8J|ms0W+aa(Jn_yw|t|m>alIe8|MY%ncX+Yn)#tLMRm8j%J@L zZjmi2>u1oa`!dW14lqgnQq6{np7rlz?YCdJPE<|1La(K}*IrcqJ3=*yeRwEAIqd%L zn{eu#lK-{8p!xqgz&oX&|NjSnUrZpk_}|xqqg(baj3`Xf|5fXP6y6xGL<;-z5OKMX zCx$hPsB&}+JjG|RLy*nCDH$UaC4`Y;aGv?*)`%)e*Wb;lc&-6&8W2Fzu&P18QoeG zVmRhxsruw*ZrB5~F-?I)F-yA_9v9ah$^;6)#V3INwRrvS&pe-2@+bTIU*Ip#b6gk~lNSXsioKm5^?K$PN_B=cT%p3=N3XLLj`ctV&Ix8cg#W6x?*v`CLesyuJMcT+ zg+6=@j$FhU-Jau9R^KHn^_hixY!UiP50+4|VzP}oelJ}6?1jFsn?mTj8 zlz$V^=O1slDl9BK50vQKX=zMBcV*K)oRgCDc-pJTg~!)#$nMnLV6>e71bPZ#dgn6>$ft&fj#I(W8a2mV z6}VFL!=(K1qqkl%kzbXMd#WXhFMR*-c^1@613!NQ(_fk+m;6-nRWLOp)N4qC>=wJ( z88yK7zP5Kw=~(J4-|7e=f>W;{3QRu+b_7Jf1kWS8J2HvS{4?d^R5~L$U?Ou9faGR0 zfi5>8B-k`Wfebd1K_*-}nq6x?LNOojA+{N=VI=57sQY?{Tl+`IT~oN1k9n01aM5FW zo^`y@#nl+jdr}nDqf^n@sa{~^RgtD821M~DwR?GjXuqFgd;gp@c;K{~Rs2_e=S^bvE@O?GC2nkfcWc04onOVNx5y4KPF@UAt+6>6!ZzIh=<>F;7psB=SQ zNV&+w^W@3JK2}C$%bJSZuw~OM3jXdz z^7s8s`$%a;rhPvo#7!gQY3tsYhFKKL_(|il6N%&$Z+4`D2+p%Cd&#s;&Xl$*&_VJ0 z@wV#tsuiMKo(oPF&DmJxqc-*6d*5X=$WQN`&JXE|3^N}vl?EjUD45m00vOD=Kx0$* zIpyGeVb?eJ4ch`3`!gi@v96WCZpiYCn)Y$Qo3xjcXVf4C9{~wWdG<#jGgy&Pe#5-~ zPJS+Od|;GdG-!=wRWoS8FeGCS6|@aHab}CHuA=cWOS~fnaQ+Cq>}t877Jk5OT$R29 zRNzM2nKCA#K7=DwtqZM8?Bg^ol9%E8zvpCrJ+lMO1rH>?Ji2Zb!3{_!VW4LKA$YpU zJ8}MfVTiUBK|i8D=vL*%NfffGX^V8KMUvUzPi}@W=u#v-aF4U>lCcUAWUP?)cMN!w z>~Jo>yFqx5D%^M515`=fN%)*QD^h;_n8Aa)GNE+uciFE!l?b@me;MJ5**30rU(YWe zt_6vGR}@B^6D}SPUOi!)<%l~lhSW{2g42H_}3R|@_X1VOB2Eg2HAMa-%m0# zN~q?d;QVT;w%R7^=H5ix`pHco{!3g&pzEkcbz_EVUO;(Ya<&xfLBM128Yg1 zz{kq8i(o=!b-9?Bm8DM4%+O0+p^X+>JfgoljEDi&2-2C-VGPg)Pn7~^tC-gFqHfy~ z!2X?HHkv&wU%j9+#0wv{)m0eBEk7;0r+PA=m<8N-P<2||tLjDaNqiG(qbk5CBodjx z!-p*zt_=qYthmPp>6!8|y$jxn{i$eRlwv#y_2~e+(gIk%CSKd~9gLvfSE!eus_k`vW)lV~KY_Ta~4cGyFyieXo>wcQer zqy6GS-RhUo=t*cng85@bXvz~qCKmnlszJm_-uDpNDYW35jj2W=VIW-oF2CS<4qB8( zs4S+`6bWfpNXm4>-kS71s`bKGl$lSU)zY?C-49-gSpc~j3wEg|0+3k1p!%F1_o<>R zP4^TGOtWym{a$G&sG8MsmHKgLcM2|j;nH6I)9Z?d-XiXfE<026EGj?2B?FxO?4JhX zyS<_GAHUw?)dp6B<`tC#d?)zLwvzeH#s$FC&pyF;n2GHd8i>mnjE86vs{JAX&3u6G z{51cuu*P3SNs!m;H^=-}{$3Ezr_akW=0Cnp0h#9!3;Y!LRtKdPX+?%e%gv>r7r!}` z6Ot~yUv_v~9Yjrxz!-tcv+xWBy<1n5d%0DYpbTD;fq z&t=v_o#!;`k`cYDHEn^nIrNO0@84|C{I)RPT&^6!a6i7aLf3) zknQFEhouDhdd#k%<5ucmWqrl!-c-U|sgD5yF*1#c?ax@~j^j4bdjqsN;tk)*GrXHc zJ%-uu@LLy>-Y~aa4H+xVlEj)YJy)-FrZFG=7FKyGs>Wll=vRZoxHj26^1S1xv!=k7 zBU>)%u=e3vhOVBh5P7coZA^rPy7Bx^=)KddS=gE)lc1Fn=XLEHtoDqLk2?yaDsa?% zmbspIdDBv^tP#TJnDyOb-fLOy0|+2tsQI=h=5;I#usiNWsYNax_XDn^jrOZPiGANj?1q z7@%}^-{F>X$^yEDgcU9u$VU=r9S ztM8SFDt*>1S9q>kjiWiy?yO4BHo|(MMi#d=Ca=y4f2|6_j#QQ57%B_Z=p#mqsFzO; zOl6{2qqGn}*vNVPfy85M5v#Phw0J8+=THNXPQq|mFSt+C(oq&KXwa1|YDW3m z^)unf*|~q5oITe0KLeP=m_8Lm!gfU7)8&?=n$Y z?t@IOuTwujjd1FId+xrsVO-G@_ArO^(?V}VJ3BC^m0=nS#?--Scp3OCc4Fz)74_Ma z)r)i`7rA0>UHxg?rqN zT1z$!Va0Pl;+DXG3?^VG_)Y&Wq0|XQX>CmQoA1mhGy+7L%YGDD=aFblYth8JZ=G+A| zkc3+TDn{)B%bDY&XVqTV)kkwdtmw z*x6MQ_uF$&E2*XJ(IaKl=eko-r~pN3BPFmYL|wd|ctPpR?1zK|_E@p0ZhqLLF2v`k zc!+ay0SRsTq(2A@q8A8WNY*=|m?wPJza&&%(}(Q6*VsRVZRo11E1 z-c8V$?O##G(Sd{CFHoxvj}x_OATfK_9JC;;X8WTM&Q;`U_r@=jMZp-!pc z5slG^@p5jg8+I`QDGD=VRWkn~#b)5N@vGzd@^4JzjgvT4oz9k1r%rZcBwnbscgK}V ze|@ed=!VNAd2K=#A%=1O)Ozr^Gp<$-vPN|%()In7K?Zr%i8dulaS zBB_wPBdouhecYiSuBbf*H_B5PrrzXHsu!z53OCLlevUsE^S*kTMx9|COmZBqf&7ipL+){%K%FsvVzMp@d zQn&3l*x*@9dyyJI$y#$+%8;t~*@ur1BgA&cV$j`TmA-x@MXU+*C!m_hRhj5s#P3ix`N8KnmsfsEr5CDkw4oE(O)j{ z@r(O9>XDuq?P*b^JeOlx44GhX2f>?ZUe8`uVyzdI&#U{OMqsadDZNs__ywe846}_s zv_K5=M53HEORv#cK3UYuV)5*QZ~x;0!RT2jIW6@4W4Cn16MZGtB1#sa4Ux9}5b60y zadFRg5H{4PA5_R^ay{tmWkKCoFSANU*=XtHUtq}Rq8w)qG4UNgeAUXVZM^JdkC|n} z#(sBR6O_|=Q&n9}+(0s)6FgNG=TN9MphL@P{=17pJjg?IcW0SO$Yf@I5Bmp}lrm zUYXLR0ZvmSyL9h{LIU=eBHWinrX$g zdmHgm*V)jf zlM-*nZ~py&ojUbwPeWXdRd?`L#R<6~0Vy2+fn#{P>oEoWWKPY4?*rG=XBqr^jy?xc z$$d`aPkSE+HfC+vw3v#lfEz-=h}KGhjOOd)v_o)Joy8t}*C$!vsmD1~FcQi+<;8r1 zNg*7>pw3umyEfutU22WKcGPkgq9OeE9J93Vc+uW&UO%nrz!%TAx^YlBM2b)pW@~CXiV{nt6@K7fJ|4P4RU@sVJGL^H^1`9?4~l7f1SGR2HY=KUt2v# zIN9S%d(u)ebbCBI=6>?PjmpW{-)lW*WNbcO8HwVSQs73kW&?sevim|biP|jl);)Iw z$bU-Qx-@(giI_A3e@!Cz=9n<>cI%cqZP(n>qc-3FSf(R9%jiIi&8V$Y{i$sq9S{in zs1&|_A`|vBO9FIt+$E>aFYKabb^~G_(PJ06Lh}Z)Wx+<#^Uc=%zPl&@w_vQ|=Rc7k z%3j7pK=wy^d>|<<06>`Gy1h@Na|=H5V*Kib$RDac{~kz-6kZYNi9hxm zn6u~GT^m{r%5OVg_TLg?2OANI1ueTy+{smu@5g9|@vl~6t+-DLH3ST=o9DJ{sg-n$ zfP)ElVl)U@P#d)%$Vav(>FtlPF4j}gM1l|)$Z*6f`Q=)3-G=xZ#D>%QA#b(QYIfWn z7d+K*dtQcnN82x$hEY9VjcM)Hy$^Hl=IZ%J2iUIM{tV;Yc%LjnPO|zKpUotDqkPskUU6>u*R%cYG%jwE?)fvyeWr7(l`iKeBTMy80lxa;<2gItG1 zhIZHHzsICWZ$?(QV3rn0y!s+*HBw7NEWUK|Aq?`r$e?4b#A`A;!e!bZQQb$NPL>O0 z{q}+i{whN}KMyFHi9W?Wo@N!WhUlXv8n5iI76urZHM<%zeZ$R zWv9HyC5d)0(R*uShODXwF&dR*w4#Y|jox!Ljrc6zELQdWwTtpmta{p_hszJSX$N_D zvME~+kG3+Z7e|WpB3k{fXdxR`E@_i@t-qZ1#erPt<~7nAjNy@aDscy?%h2}=n*Zax z&`s<#2=!VEE)yunBxyz!2VShE~I#$`y_j)KC%DXfG_zfoN=j+BovIX zUE6kV!0e*dMTE=dgs6Be)H-6gQp#^W*7jm`xP|nt#!dMw{BhXf0<3{>pkD6+*RFdT z#VBh8(gzdKZ#(zAUR(XhS^{|<~QFTdwA`l*OY z^YXBBz}DOM0wBTY*J$x%{@n7`J3yo1!vfJU&kU933x88!LH*$XyU_IhcsRaEHk={P zZO}plh#;R}Hz7nU&7jrS#Eb{NF@%7MsmizCp|Q3G$YF4k;)ipj-E%;Q2?jHNG?`?Z zum+-i6IbCW0OrwLk;iPk1Dv48SW!@Cqh^MG5Dp9exQ7D6h{ZkwB(t zuaCgq%exNWXCSAm#tF7?SiZWw z|NCLJ=Rx=yx>_}wONWW5E%17xfnx{X3J2Wy8qu!B@;Ddu=PLim1X45Q+%#aF( zl$j~ZKNCNDBS#@A92BFSdmt`>7#41kQs-Weq8mY%pLBx6k3rn`vdZCHNRPKy#_7nO z3d2T#ClSSv6wERY?B2FV(+Ii5VvGGEcyvo`o6m5AOT=Nb33CCIiv!^7An%%`U9QNW z@T+Q=8?j%W0$3cQhaIwG<}fbuFru4;un$4^?N~4i0EzAA4xJ9LNC8x-)Yacxwl0Yo zS6<}2U?NAD-F+2sPiD4V@y!QTAt3&myDIiGJLvAhfa2YsgyZBHUeiqk95m+wrIkQ@GA&Xp-_wXLxI#Za0|26s#q&DWcFaYYIYBjmE8olfDYSio9 z$uVMY-pzwDB{4xCLCHo40|3#OwXzO$tZb~zus2blr}$u@r7aKzQa_z>_!ISp2V=ec z-ZZ=3w}s78f7Lk22HfIch4R1_Z$p%_AW7)5b+F!zHYe+|ZB|8j%5sNd9ck}cwW9z; zb4OsC>R>tJvPzZo_0^%|Gvg_dK8K}ABRIllLEeY?yYO3?1~HK=s@gE&0*>94F>%n)c*{C>G+LRGa++-YjL*>%9TGHd z0b7-$kYLS9!9womIhk1;w^uXC2A>}QZ3EQ~^OjHk;e2|6t8tn~rL^Q&01)ZDIyx$y zyJTrf?DvSc<9ML=SKZ8%@)S2G6`&d8I|nlt#)}!T*kj%*?C!|={Pg>?!_NLKynyI)=b-B%bX*x@2gpF;0k_ypJ_ta>HKuZ=kshp1r0fW@X z@Y3+(G(oNsfJixAbE1$W*kww7x4~JDco)nQ&TN4kcq2{<5%o}<0bV3Fz2_Df_G;O`SGx4P&(Im?j`Y9j{dyv+K>GS9;nDiS}OWgjiI3Xm4F*q=iM2o zg!%vw{7d5`)bIJg9_S(!ld6sFWt>g|)JL~V4d-y~80=>ubcYNf>xRKfKa~W`HSE zquR(0h-gp{7od${!DNzp2NwhG z(X6!)0l&8?^pYIsRc1Z$s>W&aw>Dir=i_6U^O+P;C|LdsF|mN`+s@P{AsQ3`4?GL> z9JX7piq+H=5vpmYKvuY)a*PfC7tNx{Z+%@e-QE7h#%4YT7j1PQNTn$_&5e+(YQr~~ zEY=Au){msV-MY`ax$#`d2ERp z`-iFVtID5AxwxQpkuemn7<6Bc*ST^E-G@RVza|w1{kJ#Mxq=qI`lvK1g(?8lHS3>$V$`ZJ{|LfJfPIGyQnS#Ru3Zhd;#&)DvKw@zQcw-Ct z-&HvAiwKb_%Zy&65ScFDVc)>}Z;sUK` z)BFE(~Y)zOnM}q+&+`S zQa&s?i-trbWcTtU31|ew@mb~HWPSa7WjK$6h~NBe2>(gr4|@jqMs^N!=ol@B(%S>? zc>%zLzI<0y4wy8;ME2yLKm*A?eQIrfudkxn%;Nr%(NI7d=d%h1Uj-0SX8nj zU4PH%{I5^3h1?ejr#v|#TAQ!#2%OqXVOC838O@=SDUL?~LB+(d_KBT~OAKgS%Wmq| z&u_K`!pj@jbThwrV%IAv!082s0CW7#{c_lW)~Mt&fE}PpDdLEv~(E9X;Yn*y}Ej*(VVhoB}FX)Sgyqo$%uf%3>fE}x>dHQ%#NiJEBuu> z{D?3yQU9C7Ls#}^X2-j|A6+qA#(*ARzmDcD)%~VKuPXU!0zh+og;Q@TPHz!FVf$Iw z>u^w;?Dka`7uB}^Jd*GDCI37mn?WGjbX2U57cz!{no+jsS2dh5j2EWSwYxe3|BIAM zyxL7Z|8L1|OLt9JzWR{8rn)ac5p8q)PIOe)o7hwH#+k?Ple6&v* z{=gVgx)x>aaeU}BR^t?SRBIA+PsCjf-0C;Ufj3#gjk==sSVt#o-)2E5KoMR#$xj@y z0yr-}0lm809=phqsk+o_qOVuys!SAnuMQVQ5eYmNZ)&E1ElF1nIkhyHo4^Q`&hYT* zjG=bmTWHj42r9pdW7-JN-i%)&f=qx?5^cZGDchlv#qjFuZIgPNKU|_4%$Du7ePu{u z%lG$+NF=@ZD;8)&UE_G$o%M%cwLZ48n{GOdy+a}D={le&8^y`NYcUvU)Da$MRgd$} zl!-tWtxL!xa3*P8fw;@v<+lt42o}&w_|Y7{Mm~{^F3je-$))_@`BLHDkH(Xtu!XK@ zkMW$zyVaH>ph~6&-|T+O$nj2|Du4nnRXbwB%YWE_dMSz)kBb1Ue9(r2Tdmhlx&N>c zu%C|v4Ia?fvn%9%P-!!TtDsFeMzbOIDv_`(^-W-!z=|atcKsGGXj}y49dF8wLpRFX z4do8c#Xjni1{3}h^)}i51P{9J9y`lnh0w-cZ3-5Rx+-ukKeV?mQyO(8PiRw&)wz{E zRH9U(4tV|8r$H@GSEk1CKtltry>Ri?Bl1aNn{}{AT@~0$Jpv`?w`4o{*2~nMB?EIF zgrjP(638V1y59zlte#)SP~P&)nL1g}e*TN+SauK*zN_&*sTXke09~$A=D;K7>6_<1 zESeQx1+J2_p7-@Fcy%PK%c@>TXZR{48kBBAzS@I0)Sfl2jS2<4f&M)AlZ`xUnax+~ zNytUvTsN2%9ve`B!(rSo9?QHI{dLu(ZTmlZdgReQ$K`{CTCItDplZ98tTzU$Ca1?Le_fWai+xYx18f+ggZL})6I+6C#fGYeEw^jZ^8%v z+2&u?MKGUWZ#_WG;6W*E2HcziC}qKJYRTbmIaSf~$>?_lV5z=EmzDHfskT2TDW9(ddsY_^*Z|11x*xlzwP3oLEW)%l&1<=M zmz;t8uAo{rf#C7(BPUuxYzJe=YB=^$y2y+&&!!P$`QZ&AEv@W5sGxug(*oEyhtW*~ z4g(DXTcsqxBG3W`hoL#CzpM=8R5qTmch@HZk{>kn#r1oavEts;mbgvL+ImuvY#g*Q zLaWq-WDIYnbF?K+>oai|A}#^fu6X>u`RWtttf3shd^5pY3Yx?16j~i8YMi3L4CBKB znl*6Az9R^kBO0x0hjEmleP*^h#C(bP+Q0T+wAAe8k8qs|!Ix(QzeZm{E<{|xn9%ac zR_ZlcTfJ+!s~u+Ey{t?ekupq;q=yqLT;M?(d3@nYXIMtN(NfXGHh$0?F#B0bd(tH@ z8KWeS1~^?}u^Y*z*?TT^@K3Z&1K10fyY4D~q01+l?ZqzUF^BobSp8}b*Jl;|GZ;tL z60ybZC+!98Udvn8wdxn4=EH^6bI%;{<^$RB^e0EMY-aLt!efb*6^g{REeQ2-$F#zZ z0R6AkKv%#_eXo=ar2SazJsv>jYf|^3l+b`20p{HF8aKB{mY8meI&k9l4i*z^80}^m zhNF9}rW)i0oz|u=5?t%Ef$n<>MV@3Aa(`~Q5^VAO>s0sFC|k;UqV!h}Q@kzE$VtC)n%yHI=aqR= zJPY2bpHQKgb2OK7c zUYyZ>{-=qw==un57m$m1#n;9_oShm6?^>_FvapvOOe4lb>^KXESzS05{o!sTC=Uj_^j~!yQe7V9*TcOmSF(bZNjDBs(LSE@lzi1Lw(ZhCXQ| zu!5)-n!&`#`yb))p8bV! z?B(l~K;yJ{>{VmGP;$9g?;#%e`5IP0RXunS0Dg|Af55B|Z-g_?F(^8F;mT{-Nz89x ztt3y-YWSu7P^DCZ;{Z143D_k?0-_T>KxNati*krFS%p#ys)C$|H{``S02a3aLZu`7 zw#W$#`H{zu;lEV?FPgwx9P)Txt3xqTSovo~G#AgHVIwDX4Q8w$=Ied#A8HZ<6{_w< zHArWu4~J@wyu)Rv8)(q0a$u}38|?EfAE&oYV{F55&V9(U9#eyOIOu4Cq~sitEuode z^Q_t(Om6R}rmVpCt(Ievrb;J-v)x{sDM&iX!GG>H!++iFgL|DtM*iW!TY;L&8Lynw zOq78LE8L54Ip6H@+r_VUf*}gj6#$4zMX0~#DO1g|P(RqH-K2?1@{FK+aR#ja!g7WZ z(>?2I_l1D+d30E--vS81Ci>z^=P%vl!HP-(nGKU%A_IqZ1rN5!EH}q;%w7c~ny?^K z9T8XCDedhf4JhiGP6}Wo0Iv`o7&NDq%6s@*S~QQ|*ht{!WmX5>F_%+-uw! zCc|LU;2F*~Qt&PeN*qiE`Uc>rG4$djHk7Hv3=ibS#nJjXQTb(Wqfl=o+sG(CvhRcn zj}-*SZE)#-@r$sK?KNx413EDR8HzzZUJlHl0v?dM4USsGJ~*iQMx+r@Nxo&MOc_It z^T8y8Jh|C&O@&Pb-ZL?PxggX6wYFYbSW(}kY%Q~h8S%~&Kb@_ZGO4|-1HiK^*WYge z-vJV~t^QM?K#T^Lbr=J+o@(F#xK?TO_fK8AzE-jWfu6atUa{fbHBks*fJHl zmN62fl_-Kw$GJ{V_k@%eFUJ0|?*a0Caq&N88U1i}Pr|(yx8c*7QHh?HHYL7Xdm+k+ z&EF2xAVZh7bAOueJoebTC*F|P@|g@T^yqC2C@o;UF78)wX|sdLA|7&W44R%K?@Nq& zEEYe0@Cg~qDZ`-L3OE-Mq{AM#-Ro_=Au%SJd(q>Q*)*yHS&q!E2(mB z5!~rxd`E*9KCz+}$|LMN+0)a#$~$5k=VSiv5oBJo6*5`pGyqkfnYQ1p=<8-f5-M&e7>(TPXTbRe@)NgEGA*W!JbTmb5 zzzcUc{KPC)8mZ?;s#EVC^_2!+PcW|o=P=|ii}bw< zb;e{vhtadd>eJp+gf|zLRwaTpYkbwgCM@0M)pT_ z%mkOLPl3nk9FFk=Hcoi*){h4WNd`VDKnlPWMqhOny2P@p5!O zr&H#Hg%bI*uG^j5@tL!BPVf!yr*@Y&vD)2__T-+QoNSD8K9xP~C@-BPM{|Mg;qCL+ z~C@m}^%dyv6>~jSGL2Q@MajIy)lWI!VC%9IFXOH{4ObQ>$qX7cPQCpgnBlbR&g)R9-_B0eb4LCT0#8nL75%iJoS1jvxpt zH4=ZqMRp(2cObm5P(y;JU7vaCyR*_>hisAo+ue*?iSx$DEPeQR81hjsf{J1Gdv+1j znqPFU*-fmRBWzVGM&AfYQ;ulVUCoQW5WMy`31Q~{^N_z<=&PE>dXQKA82Rs-{axlf zC|&-(bc`%JsL6v9_~r$XyF4(Idzk#!9gA=LS;bxnrXt^RFYy{FPBrVmLO|*t;00ot z@fhZ;64Jf}*ETBe(ff(@@`a;p<}80GClH#RsdO5@IP|U1kft{rb{3 zUAslVEm<@!JOt+m9Yg~^1tK-zI!7CMP*$u>{M5RGX~A3gavp%7*INp4o0{?#V0&!0 zF-L9j%?4sj5ssaX(z4$$LqC2YoBh!s$+CIZ>a# zt`e!tu9aiV^(qezA%JzNvI{65fuTxp_4cZc(p7%b=HNOlkrwIV^X=fYX*kcre)nzk z!wgFu3xx@wDX#Vo;&&aZdvU0!_xSy}OZmKMFE2B{zWsJW(kHX-Y9zZsziub{6IPS{ zb&@|j}GnD)KjTI}(&i-!cb^a`uS3i~~_#5!?8~*`m+Rvt(xbAMtc9W2~G0#tR z$S@UUHh0mHLfV3n#EIfYB#QGkLzT=tiPFNT;8Rxw%mjItsX z4@f@+uV#@SVEPQ<>dm%pPTQ-KQ7%6XDM~J?0h9c_XHQfC{ z@i*&^lox#HW;0h15S2_hBIY?s{%80H<_g@Og|KU~v#GuFiNQm050sEE4_+v8@IyG| zNHg(nS&=`F0|OzW@-%7&@2&eDy)r5r_)bgyEVsT$woYnB8d4r#<9qVSB}U|lZ<6%d zjNr~Zt^)TWp}4a*b3=OLg7R$Vq#mUf!D%HRE-ns+Ckp76c;+im0_rXUA8(OsG_zjZ zw3VTj{O$TBuV2YQ0JQVBdw%6Xh%`$~+VxhMo&b|`^@Pe-7GqTITu*Wk0eI?-u2SNY zVw4xn*nADRhFoY);z8}=vdhddt)Gi(Y@ou&GV|6?jvO$!JYeDIaz`9nu$iIRJp5vJ z`=mU0h+xx4iKkBd&%ty4mWIqR1n;I1dF%rd6phuX7FKmHqDqg=_Zz4(8y;{@5I{{~ zX71tTK@9dnztW|{jrouq{t|@KR6tcE2PYhJmD3V35v%5)jeS&Nm!2B>)(?fy*N=Zc z5?QO|pH_GjBOo%t`3^inPGN>qULfQt-D|4@;cT6wgq=dmzK4|NJ);5SXRL>-F`t+m z&3i+kM~WS7D>JAqGNisK#j!VY({S@OA2f7A)Umsvt(*IX9Nd_9KdQJ5lpU4a4=6A= zR@~dN?o5_*r}X<(YoWcS4;_Gs;%rY%)i~`;2`%tOvLEbGQifJ~Y!?F8W>6w?+8*fH zG?M1w8aGg_8qe%5oaoqB2l6*O3=4flU^jA&a2kO~BHGp~=hB!s7wKq=a~@WNX8TRX zK>;NXx2I+U>*YyQ1a!2;vCETV(E{}Dk+8kRNUbf$3bKTERQMr2!7Hl$OXrSt9Y!#3DQ$Q=LFWIkt(Gv&yb zuez$oNSHK2{+HJtbG|0mm^aE}%ps23pz_E7Dsg--4V91mHO-*zsmMWlibm}A32JuE zo<=jEPmlWyU?^I4V^g;Q_XDX^1k z_tMWCkXh-p4LxmQnkl!PzQ#v|dTi1bQm5BoHdI-1zpg>la$sX_Xh84f80?6vD$}hG z^UThDi)Ah{Zi>D0`XYzAlJ~FM18u`23XA=Yd4h>gSgnp?_jL+nV9R%8*Ux$6i7ZZ(^@WpPP_{>uA))+CYs2Ls*>s?S^A&+$gVyrlu9{8+qR(ZX*QK@y>^t+~`Jo&pG+kv}O}+~~AgsVT++>7+kO)E-Zg zJIzkvNp_toc`WtWb8`2S6(Xr^^G0C>q4-SLF| zQ{6?{JV@$#(xTDDZ<}i#Q17>FbnlP9_8XM4>DTbOGA8+JQt`!WYLl+44jZb2r1*7oqVh(KFuKoBJzbI7BESMt+rwFsysf#&-WrlN>BU5D zJzCEF;6bjkz36OjwaZby^B)Z07+?TQACSgk^x1U#ot--g`**;%EBPDfSDV$$opeiz zpb%iuI7_7%$<7Q@Stw_Fa41thrwxS>)!e0BL7UpQbkc_41;z?{Pgx>0u+eovuxsFz zB-V|RJ&ONz*-kBj2Q}Qg5~%7n2)8*hy(u!TKn>VC^xc*MXVadXG{C{dlI_m_c!$F_ z@Uozy7H(U+mbmY3Go30>paD+q_V-Eo2Ggb=^hrL+AX%B(b;L{Ia!W(Brp&)*g($~L z+!32TRpijb6qx;HwcG0(9@d08NCYA#gQqVXxUTN={vXGhc<_9SJrHzh z&zaw<4xsbBpXZr9u%(j`hEb@yf#G-FkdWeDP_xS+$!W)MCvj((LmOLKQ!jw91n@g? zhIrtW#W7)FC!WTV=2rZ{Vf@Fcsd0_J6gW@q@=mMTd-o5Zmf7~MMUf{7y4bKEB<`L9 z&#=3}UgTt^|JnGq45Fi2zurFfHzJL#;0QAA?r>lI5mTjekyp{>r^^p+5=U6W?x%ri zo*IrV5ym!@i#HL~pBBZLT}|@U+p1Y?uoAVMedSW_e!A|g)L$YBRHAtrT;YtjH75`b z3C;d!XSx#jKJSq^+q!{!!1}*bKqUVY8T+Q*>Ts9$kGCLHmeAy z<`T;v{l=)Y>?UhEG_p~b&LzoX;T`*J=N4LZt2q@jy1kwGOW#5ySb6Wd*9|z}}haPJ23Gr@XGb2Sa&fWh0=BR*7?&EE#%zfz2{UjSc(G zcm#J}S5raM!c==*bWz-}O$CQZ8m^h>$__)vZLdwmY?w58Sh8oirZ-g@CiO0QjQ5sG zjoib5ELSPrI-wu!88DaB0Ne>IR&usP2WBl(wEe`C`#FIsn_QG;%SZQ*nPj(4&CWCo)<8!CrR zeAf?v$cFdGF2u`I8sh#sTpL{y9w##$PYf~_9q8o8{ zsm1Qyg&{oPh}J!Q1FFw8@PRbreC^cXFo?O9R(v z*~&M7LjU6}G8CQSA5>wqj1h8(S+6|#a!vV?D<*CsNUTPIn!PHntv|y;XXm z8^)^X>h-4sZz>^DqJ{FOgV)--F{j(A_uqwh}j<@5pH&POcAOGdJaw^cbweNm$c#QGM=(|YbKX^e>2z-3`t;7@1B;NXX zi^1}rdD->$%IaF4UBQB1RoU=I``2x;_Z z^p|dKAkr+2Z1uS5UAg4|2Jc@VHA*}8gRkAYPb1_}E_z{Tgu#9aJW{!?BTiV+>xn%l zbiMi>&odx&rnQE&Z|awOp*-VJ!MAU95;uJo#gK9O;He+Mm?5?ALV80~7od{vePNxa%PLyxlYkM$oKNHB#jnhfO5zAFh5eSrw>lzz6Epp2Qc*@tjTjF@2g5V=| zj4Oi#t}7RXLN~`VQ_u+s;5ycH@YV@2&L-_2o`p)@I~^n7S{RN~`&eub)aD5QIvb%< zj{saTcB^YnZZnz6F}e|%k8cG)g5cjLr)iG8z06jqW10kAG`fd)=eZ&1#4K-_yJ5ZP z#as22+^fE~ErL|M1^5n{HUwa37;i4 zu0r)GM1oqxru`z1+n(UA;L{&Rp04pqBx^@;8-y}RQ$)5|?#)MqTuX;eB529lo9CAIWpI&wf~v^EU-? zC%rv5fc!DSR4B@;`-FMniRP#K+}TI{Q;cl%0OKluVb)hdXhn(-p1*jFet zX|tA`7pK6rfUQodO6~k=LKDv=#JvKmTgL1C1zVqkTU(6hH*LL2FYY9OTVu12c7w2{rJ6(Rv(5;E_f6T<|4aR z*39aoVz(fz<_A#BhU97|9DU{>&8!%1Tag4$fAoh}ox!hBbraiZC|XMx+c#Sj+~Hu~ zj;bAjgQ&#=!s?YL8AfIbo(krTM(;;#0S?n#%@1*wQP42yDGg%=`fy2FH#&K4`Np<+ zX_o4XqKKL>PEmQhWW}M8RZ!OW_*rt@5OaZ_e6{;@VA7V{irJ0$}^wAyW#52e7r%0?MIdS zNn$2`IX4iMhd)|ezMSO`2BY#`tf&?GNLHMNCQU zQcpX3xErPS6bHCKWCrkja<4Km&3o3=pFCvU3p}u6c2}E@VTN)dJRV|mIN!5ZkX^)W z-OT{95=7RZhlOcRHzi8?$2eEn$^wFBGUeI1AI_peYw=B#Vg-hRjO#Cf&Nk5;({!qd z{_GC_-mjmO6U61J^Y4Bai9W(qpX;_UE{%0U6?#FXY{xhrfC6RbG4A%p6}O+C46aD5 zTn=P{P>!jnNw1C%O1{4m<$lfvJ1iOQ|M<>9Aw)qd(0(LqJ!)C(Z&cvr{JL8^QB9l4 zp9I1~S)IApF1F@p{41SjF%Q3S@PrUqSNfZ%W+OO_5>Bhm&=D(G6yqQL`07Z%zKQ_S zNTeou_lbPO(eAGQ{o=B8n{|B%KV=8NEXtSc zgnUh1=BTZRAGiy0mtb=Zi<@)Vr_e(b#6$P>ywgmk4-3wg%dQ&`)ZhTP+ zw-uB4;}yvG*w;x!dLZp1TbsGYj#-=``IDE8R6EDV)6aJkwFBoiv3hpne$%$r2eXBY zMm8fCHxM4q8j$8|^uW!-Y|7E>{V9fRLyWwCXO+v(l#+F?a@!7m8A?{C%j(G-j0+KI zDfix3=RDZ>B@)CWqF~|UsmO~$Ufpl&;bs>6ThXVIN>A# zo8eo26b#%&r08q8S~%W1R`N_>88^AkyIDxDsoqfO;|Sc=!a``)0oyy?OU()5Wggw7 z*xgN{hE9cf$z@TuX5QJ=@}J}BIz>~6_s_Y+KZ}NuYCR%rP%>B5HNp3_DH%KcRW*hd z+P$PL#p0O`X0&qKO3>+Z)2K}=$7mt#ZV##b^0yANs|hqhDjb_IDE{1=OhUAxKPg@O zif9F`IpfMKH@1Lu$-P!t#$}h*F!dmpdY0;j0DSkB`ENb4ku%ooE5kAb(}Rw#e|*Yvfi*Jr2;~E zfD`NgQ%%7~_X*}{AX#cYKbuIMwa}gA%ROU^liA3Do5uGsFdL#;%P_~e0^ zQpGyvb63T1uPGtcJlinU5B!lDIl=K+jr{bbQ9k+fC%Kn8jH0*2%WPoPJWyV#lMeId zSUXbkS>b$Ky+tqX8&*%arP>=r<}`*U8!Q~fhYY_IezIW-(NgN1(^urMp52?i=x&l9 ze2YUEySIe`OA;-s><6hC6{uk{_%yH^t8@#IM7&$qqylKU=ETLF;4}Prowbz}j~`Kj zC`D_(b$f~a3`V2LTe~4=jze~35I1Z>ylcd*#jrTxz0+$mYF7SdkUg=`q-e2@e{k%r zUz~2KIWu;kn73(dYL6Ls8xFdz3jT^pNE!!3oQJz61p{rW3;nW2uheP4)B^9*KE@5+ zeiz^MUXirxvP=S3IE5ssni8Rjjt}<>jlVVT!h{Smt=!SW)L2WWoo0;1tm8Q=&uey6 zZ3Ri5$L?qka+iMtP%1C|1A%d*#3J!oiE<3T0%TJ*SF84`mf*=*YlI6QZOsBmF!_mW zWIzVfJ~#UDFj`7!s`(&o{=f04|9<>xy^k8N8i`cK${X1?6C<*k7vS+ze9pwI6fO{9 z4LX7A2m_+Xy!~qcU2`ez6?UDR;>BW5X&d_2c>ugT1T|}sg!RIsn44bJgdA-|#7>lS zTFA;XENMhhza35o>u<#+3D@RblszdF)+(5Z%15x5Oi+BV5R};13dOg0B!7Cr?D{%b zJU&V5TvL>EQp^YlNx)UBx4Ehi;=}q1ylP6;D<8f8OYsMY6L;at7?3Xr#FsVp*bHZQ zmX3?Mu1W(ja^>8oxO=!dUUH3RzGTdx=wSIS=)Er?o%@wu!bMHU^84c{5GQ~n|Idww zzlX1VRD0D}_cw*1X6mYYxfqFW`w9gn<{t6&mMY-1=^ooB&|Y0xA%#%zMNwBFvzt@^ z+Q5ZRJ|agGi8|=vuYE%+nBy=vsIxlVW)sP(e2IsUao>~cSg5Ey8lriNV|tA`#=7*$ zvIX82KHm2LyGne?)Z&|S*Zh#t`QN~bmAnd;9QGPKtFx^M;(Q>ds#mk@XK|eG7Eb2H z8|KO}0%Uu?)Mfzfr#}f>tJq>fYDpI;zi|1lG z)q3z2J=Hxt#clh0TYu?Pn}w82wcLJlWvHhoQI5s>5&q-s&2YB`q+yCrwFzZavc57j z*m|^5F|yPofHqO~b6*kq8)$^5_<|k5Hk3xp;bry#Ezo`sXf(V1ubFQ38QnK`XL7T2T!bmN0yA=X*z4e+~lw%?<>}acns@q>T+e8lB)RQvqGLWdE#kr?JPAWemqR@w)2%Pu1W29xt)gmxdpK!>Esa}Vf(4;ES#Bj z7fwTguzt7(2PR-F*4EZNTD63nrxbL8PJ`0@PAas*Ld0?y%cZLLpP^$x)E!69T)w&0 z0Y*3xkKRkvJ^r5+KDu`nP91^U=?B^8AF!GNFv%oM;z@jqN%+7UU>zaz<979Q@u7ex zCf>^AH)aZTmjBkOh`ISRl&bjFHCkPBfLOyhALv6b$DSmN;Y7AL#1;4iHOD{nlpE~t z)&(WqH-yGcyI(?&`H~I$YPfMC6!8aN%m8i*G-A_DE9fFhyE`9b)a)j+-EALAU}vOP z^8efCZ=Z+kS@Lg=b&_{>zGO@}boEAZlJ8YUgV6Jx6rDqz1|tyB$5qtSytJ^iP}sEZ zEm9jT%#Yiuac>jf+UT8V8mm)Ta|Q!~Fb6Gu8`an3Wz{1Y0Un(tx!*F zU3_bLSY1uhcECj*FQ2J1i*1{;YccikCqWOM3lwD+zis>DY=g}E1u8f0l8Xi5dh)rz z<42$=gV;LLk-8g&ee#@~&udrYCx`wca1`R1?If?E7gW+gnt10~ujH6$kT_b^&M%e? zhl6B8p~-n90#G`|=IAFV=}N0uL7OE8#&lxxe&Bv0_j7I~m`$Zw^r|x7c}<0;RR#7S zk4^PYzuDf=j48-W99KM?yyW-JRa(-kmUg?un-EPa(Ea5-L@4IW;P2N55QmR2&b{Yd zowsRz`loTS6_Jn48UD z*2!Q|%H#d)5Z^}G$mE+Rb!qVb(Yon60d`Z(Y&OE?##8p6KEDbDf#BM3SlU71O0Nr? z`qzQxceCa4Ts1p|R}N&Iyxm?BN67HU580(Bd8W!9)+u&*?tT05f&+OB?n#}Kgi&z)@P`W=Kv97Eq8cpogIxEX;`2fQ z7kRwW;ZTPf_Pu;yPc;TnvdGW(EGu2Ms3H22b72@C1|>>m^p{@^I8EEp+_ZfsdciSa?mdREkyW4XX?a%W zznc34GF?>T$yGNp)nf6)P|jKpm32D7Y6bkSk2U^aY0Ej~8ArZ~ST*z**4i9OaS(Ig zQ9i@aV4rBilh`dkU3=9@w1tsB)B1e!4X=0^o#bFRLYPz`Qg5psvVwGm5P~WnuUC4=PlP zd7Sy~YT~ZClIYRrE!-xZ{uw?p3L zWugb&?Tz*r&$;A?XLDoEiL&UF6PGNh9jYVj?r)jxJeEFi`&twaDl+66J``+nbd0Vb z{zNf+liJ&3{tV5wExIL$SMUG(SF2pboQ*(DeNK7y;0%LE(F2U|UCwzG;lI8(?RuQz zNDlAj3g%8+Ymxc!#la)0$)P{MX87PcfyYlbMsm~90a58X1Qv+n#(#sM$RtpJGG=SD z)iWCCaCjDEX9u=}!p|RHU?6$alvwSjv_giKR z!8v@+OPBi!U5hSDxU|0wf)sh+yr=*_<{DI(A=5DMhR0?gmi2%{z%e9(;P)%#s4tRO zAi?-Q0{E9#eiU0x}#^VJH`rxvN+O$coz$mS$pjH-*@SsTe$KPSq&+Xz}jn?>-KJf zQ3c}N*YjvA(S1oYTVtCUQMMwTBkgZRKV#)pWQlz^j4YCuVx?9?>>&CI2byQh7yw%k zd5A%RfkHtzz`ykQ8>QXUI;O&Q%=h~jrr3}i#qOMkxjh``g{}4Ze>*?Rtji%w)aNL& z$j)vf`ezoEc*Zzk8@@WwtA(#la=?`6#dT)M_tFHSe|n=2cQ`-mPml)o4;PpO7H#)UY)Y6rmKw z9lM|z5GN1;C6dna?`Q5M_g}gO|Gc5kjd2)z^0~CjP|Bn~Q{US;bL#1Vh{h;s{CLsf z>#D=m8L#lKD7^$!4*&U9!#~f*gGSKRPUPb5HXupz_X012QTe@45NFK~1%n~hD+sG& z4F&xV|L%};>g3Lb#h;x|W?kmr2lww_bgrn&sL$>`(WcO-{PAefl@3w z1~OhPdk(IoDU*z1Ja zIX4vfFvs|KkyJ_U{4bbP#v6Hz4ptQLL4)@Swn2xPb_F<9jBCadm+<@8tM;NbS)}8=40@>JO zo-DS;@ayFpRGIrF-36Xn$Yh{N>Fi2%#hS?eA%t{ZY&NXlU+Rj25v@s2SmzQ5q zKwo;2`YeF<(uQ3?Y$&ffi-l!7jIpc@hg~-NrqkRuqEt3Z08`a5`hEIIEdF!HWx@+E zgu9~9YzR&id+kYQh_b@3<40??)T9aC$;@86M|#=`tbkO70u|Gu0mwPZXo+~}7+F2t zwnD*>;E~bUE1;p`wCK$bfo@p=49v0bKjwmz(bY9qcO$CB23+BNm7n}x=>oFbh^xK3W= ziUfmby=6wuo;(AiLN)3ekJR9{Sq4z(BA#ydhuo$nxvY9{@*OEGgu%#`xV-nj7hEFx zpL2wV;g`o@@D77x~i?4K?=LVLE zAo2AQ160OQ2+M8xYVqbC5jT5*eZsVIxcyx&4S{qM7kpzu`?JH=epRo-pBp*!?~P2$ zh!`Q|>9GPYShx;hp`D;M6xdUIo(mEMG{r%g&xExum_Fq(nO?{-P4eua_2r=#wfpQK zn8kw(Jgp6xLN;PdmA6*F3;*}dIXe6AS$wqwHcLQegJM^kQ15)I^~X&txFi7w^kjQA*7PLiVBBSt; z`^->ZmHHhxpvqw-_JCPAy4^tz0Om_tsFj7Oi#Svj`v3b*od~ANsaq_+G-NLn7QyB2 z1TIOzX>Gx>uP^dE`I=2XP}T(Vb8PZU=Z!hd7)gsr2eXm;Ia;m?uxVHsPBukE^eoq~ z!m#Qlq1+xkL|n7&m`QD5zcDCHP<%|<+e)h5K+EAW49XurBRPxzfx zZim0!d=J-JBAP_Y?^fJ}RUaS`9c#T}C3HZ&V3zT8ItWA9#jB#g)~smQHGV&GKSL7R z`ldCk3<_OF{rMRWo~w!*@SMdst>ikS8%MFQ|$6(gN*K6?Ksyg%_2XNspGzG z%|Pb@tFX;*amMMIl^yya!%gQ|j&e`M-k-yg?#2zH9}fneTwEqpMY*;SoZ9!YU?1C0 z>hN+O>D*hM54pC7FDgJWxt5un)TwmH22+lD<#EMn!hRx4z{vZrVgYnpH6-^PyP>w{ zmAkkrAs27JK@Rzl?-EG*33#;cI14{-2{CSvRCzV z4TBxovst&QghMA4SlA7m8&7BaK8aQw{w)YYdS=x#jrVrE^O!>5h)@E~0hl_9JcK)C zk=FpX!(_WKohj$?78%9&=>2+zhecnTR)5wr#Q5;^`W&V(hpnjM_=R?iK*Lqr_Lt;; z0~*^#dmeH8i5GWor9Cn8>!(qn&4?5%^N9ROqk#{Q(8C^c!iKqF%7Q@yY2*;oGbISnaIztTYgVdAvJ35J0^ z5X=HwW%!4#(9Znq(X(l6Z<9unJ)(b(sr1H?zv;@}%Q@~raJ8k_A#4-29HnD~o%02S zCa%soS0_Ka57kH{Yzfhfw7uiEh~Ri=K1^6l8)%}d^q{?wP8>lX0=zmuF7($7(Atr!&$-sqOYUzB=5}VNaBQzm3-2i&j=$?6s-L5k{g>~|di-P4 z;D?o`DmlHy3~4#(&c8Y@%CBZ{;_74m8%*DBJMLGn>4PZmJmGg;z2e}0RaV1!SvuH& zmHXRkNmJv^sqsRGUQD0YLW(|qvH9kTK(x4XAW6LxqHWJ~5K46Wo_O~RDJ7Nna30;c zZl|U?Qi(oeyQOi{Ly5zp*jFa$7RjR_SWTK{kt0sXI()7>C$_f-8-%!~yi^o;{+66N z`}=z%r5CHz*CEgrEdpR_=tz2}A^&o`__Wlo8xk`k`#iOm*a5m*i$3@@;yz)KkPp&> znFGCk{ns@CB*8M7lE)cc@x4%L-8aWj{7#_hP1S;sm<`lH@BMC{*xrU<0|@19*BgIS zpR_ScIk7soy9I#a=JJS5z^g~S`6&KgW7>CPugE73f@ zu>+q;i@fDKUCS=x;FjK*4-Fciv(TVbCOEjeQbJk?#E}s4la5r7RG@F&1xY%~D0>dU zO6=*UBbb5G0PO*d=iz={QWNiG_#{muIW;?J?UqRH`iIi>=|u`i@9i5)u>*Ov_Z)^1 zq{%}5I^ZV=CQQI>$?olVu|N;I(ROu4iB>-MG`*B@B@=b1=lDVle})B#<=+k4CsXfl z@&^g!E^=SFhgcbu^;zZ6%i%wpwwi26mqU(ooN2gd@2n7ad_HY@SyKVL(fhP6HDE`DYbtufl zb>yysg_GOD&V3wjsg1Wp^poEFgdmmNkH+~lxv#~0!stCN=+d_LpR3+ZK3`n+}ejP$-^xtbs)FBM`kDSYfKJJYya>KwNS9kd(Xkldcx0-PKBjSre zv#ZTTZMw^D_sV9YP^ZrnsBma|DR}LV@a&J|?m5o)2u?G^k%!KDzM9`@hKV)iba%#d z=!g2u`?%@E53tm?z853b#6wkA5^PR_xY_&kz^I5e1gSQy=Ux`IYjCM|wIK#3pc&eG zGg|bTtEXF{cy7leYt(wQj_SBGoXig19Tu7w1`&(Je~HEZaFV`2pFREqcYls7&REUPJdGERllSI4E$LysM5(8;*=Sw@!p@s2S z1qFWgzT$0FFya7br_!%tUxF@0##{9TWvdWn+M3MHVJRX+YJ|Qi4?|TKhe+BE7BO({g$#cg8?Xy&t8P=x0 z8Bt&!cRf2W&6qxYPBQ5R#Rme*PI#j8Aybl=>+0W^OACi)moGT=MaBu)oG9QiKWi}C zX>y1YKg>T{Eo{}#`B~O8y{Y|XZ;k!Aj+uci=URpeor?D>Q14y*cQgDz;2M0M zwIuCw1I06V&0^C(4-+9bov%Qm8JPI7A>I?6C3jM{Em6{fy{s{k%i=3W{Q?u$XaECG zqN};?$@oR>A-4_XJD)$@d6N!iX&E1MIjD*|uiG+-T#Xd^LYOY9oywjIlHUHTaY{k~ z4rc+?&uypzH4y6<2ap|LoO@Jj8B>w*(5)r)p!&1tXNyztX7BIyy%5N4hw3OVc_q0| zS1bR~n6ypKou ziT-9SK)VrIN(SoiW?KS<3%16&Ep;?~&~;V5a(xz?T!87#uNkMU^SmjGc+G(mNl!4p zj6xj4TeJRVBXD?cF41``mX9ey?|)=62T!+E5U=aV)t1aHYaWah>^hJSwq0)3_q${m zdrzqhzs?#t9ylDtsbAhsdp`To`xK2_!=c5e$pbQ5MseiJm!+s2)+_hf1I6f%QFy{=2`YZ3I(PU{WlM5$-0-4UqBtKjkzzQ?jA!EM?bcd7EtDsq1)(No5Cmp` zdA*u}D!O4NM270PwKCPB*AQn@W8&9~)w?)1g|G#$(ouYURJ8dZ%o)l&xZ#+o)Q8-% zlC)}REv+wDTY7%+S@4#=E~)7sI_`E{e=nypU=xj!b%y%bQb#`ohv`Sb>H zeVrqOQ%X)+F&_xS)vg5N#=;7rBI*lm5D6I$3X^fW%BE8p&n}+}p=s8vurpyc5Nne) ziX}trNqU0O65{Nptw&BhS|c0!>U5VSeE>v%6ocf>FYesl3ltW(XiERuZ~SF;w1>m%o#mEJG=uM6R%`vBc{Tfx+v~>< z6`C^3BtfceOwlpgo9Se2{T@oMLYZ6Cdt$R?ir9XIYH8H0KcrsM(=Dj6=uKsffS;98 z2ys^0Le}3OQ;6m>DMg-W*N9i)=unDcqi2*i+g>#p8~99kL7MpfbG#>bD<;uFO#9h$ z34!@H#+Mdb)3DR7^o7B;fY&#DsEYc2MLLI{kUtV;%C2wamExK z5%C9u8aA1;Mx$uCjs2e>X~{rk7PVd5aigr|rxLst zukxIYu4XT?D_8HH7iq7oK9>9x1x0w?!}OerGgo;3Du)48lUu!{Bx_f;UR$+q>PY%X z_6U|{GtqNX^gmdiYL)Gol*R<6m~Pfp^N{9MuSxw-&SWC1nbFsmOgO4mP6HGhAec!CA4R3k zPA@9s(7Ug&^K7% zW#ef@wOM}SV2|x9WL##9F*W-6EtY*T=>j5(&(p%^i~AQMh4ASDVal5ewa2r5I*BF~ zpQ5=!79yeGe0gBArzNf@I9gfq=?|CI>r}euHpGXIS@2uSdK&U`kwv_k#iY>0K|~vs z$IN0OD-i8MSv(y`Se-fjHs08CZEd&$!RstWL%_dL#tUJxRrJ`!i^44)XTp#5$f7UL zT(+QG&liw?I{Hp_YAt_VqC3}AHGB1;$?OO&32{nsV|4(uyyZx*p@_HPS1;jyS~@2% zSK<4ZRoS}O-1Zx)N%4n^Zmum@R_wv+@3Eukm5th^fp+_aMZNK6&l5iDJ9OJto;H2n zut(jf;JY3{o_<9o_k!g~y@M9F+g}$T;DuMqtq3Rx*3yV?s5xSv#;VAk3`{-mS!lq) zQsQg(tKbPb{=%HiV7aWA^V0Qn#mJk>5j@&j;H+aEyS$PSLyo;{0I>zdHodJR@#5S% zz)ODqqFZRn}H0!5VPfRqLh;XxhENN=Nf1m<%XWiY}ECC7svTpuh^&S}t8jIqgvx0`Fu=UhGy*O{Zmm zrG!5oe<1O1@Xb&Hwo#22vr=mBcW649QyXrcbN+dzrM!aO8aa0ROt2n zRF;FK40wpkBV&kPyADLlCV`@qn1k%qk2>%)A&0h4Mo*nB=2I$S|5d0E2Bf@g)3VNY z*p&rf8jQEEw!{jBjCjSFOX23fw|+VsO}=3^+Ix?|i8qOWDLH_8?jI{? z#ZKw9+hIw!XJGKP)M{Axp!6nTU}t?J_~Y~R4R`Dn3$J=TT4NB!_d?TdVA7qVx!;tJ ze-8oG+naGV6VT$L;S8WIwoBg3#Wj3*c3AmClq9Sw3c8-AAnAQZ)3$it@msg>dPR=a zKX)uxqAfd8?i}Kh zvW#-am)8>|tFX!K$AeD2OB}?LKIAeUps*7I1Ws_G`NVktkx2Fl?FKyN6C~3#f(7nj zfui)j`+|gQ#YBmU;~HwfX4UA*SQSF98c4p#(3yVT?DtNT!N;u|5TCtrmP%|@R^iJk)IM)$c^n@qZ+WezA6`_}ocooJ1xTklMFWE`Z zjkhTa9pQ3e5O>PkU8!>^ix8&uNRw6e=F+(eI0HX5GXx)oe6ZO8c z*||P2;W|PAt;G|q-&ziqKe+q$*F&Uzqo5TMSj%VV0@`ypFafPz{*9xdfZ`r}O&IhVU4wR}$E$+PPvw;BdiD*2od3Sy~ zV}G;CwNf0c{(8EYimZopU2)x2=){G^pY!2tQ&o<`Ky6--|OXxe<8yDwEt=P~h~(YgF|Q0Yj$pj>$4Lb-L1rAq#~n*=VxKylXd100*X zMQXE>>FBdX7%ldJz(sN8n^_44eS-XkYU`KZsSJAWwFvWBY+h#5$qC;GTss)|;^dS+ z=Ko>u%>$uq`}cpPs3es(5-O2wWzQ~3)+uBkDhy-Iz78R@2wB3|_sEi+u?&^n*al-8 zD!ajiv5YbN&bgoG`8=QB_wV2Dzwi9%zVGhoa$Vfkh*labB)p3wqpks{u$32l1d)FolSwsDL zwsGG1(8Ota(=57<+`;h`GFvBpBwgR4niA17>fJMA-^Xubkk0oT@GHyVGmo$qDE%cm zOrEWt5SXP%QIXG-D+q7mFNxZVNgPthHey8>#_^;R-@7ZP0~3H44$8kQa}Hkzf&O(D z^`txTR-MRaV1TCtNS?NB1;E;pc+|(xguf6o3_lwKn@38+W8BGqRm7%EenEi*u-OR4 zRk#ZseMkvS$zubj@xjM8Z$0Ws6!q>n8~aH){mKYmzC}P?m_+MM(0r6Y&$!(!H60m4 z8zL4#Wu}X#{2&TkGWs#R+IFJXJXZRrtcL7{m*tlRvh$OqppT&FA83vjX=w(U9E9H; zzklRSn}Rz-jG)Rik3N_;^;xaL-2#CR*jQDtUO3?E3O+1;Et{Kk-aWv53QVbQ+(aLk z6dHVm&08oY0MO>9`wokuPP7g5j!8qNGL)Y2^xf%V4Co}Kh*!v09yLLmE@c;A24Dem*&n@U z3^?r)JoEb&02&L7zFN_x8u0>}w-Pj*nP-hFU%jZcnjLV^C^=#}9ybNt0m1u}FG*1c zCVL6sKO$zro}APwy}l}V*KT6lG0WJb60Uer8tf$J?=S~T`!7brJvDvoU;>rm(wg*b zas$73Ft_1um!F^Oc3I7vab#q4iK zFBy2yz+F>7P?6V&s<`1K$`60?Ea+%dlONa+MfwdjmUo}pIGtkLCE*s&z-3nvh>GHO z)Y0cUbMj=PGhwjqLtT5h4{HV+hkW`OPEmdHVraWnv+QcEB951Sq8cv5g%~vsJ9F)2 zSRhia^O*KhEg1g^WUC?UN0dP-D+dv-1A6_=cBWF+!(IRNvY=CC`8}0l@fg}fUgSTB zd-ul}@oBmcZJ6}kO6ZmFv%P`XDoG6c^UH0ZqiXzuYj_w8Hppw@>rUhaezm(t_}HU| zN)U{jKV7{Cr`LcNqqDe=EQ#NO%o0%-AtA-?wsLQwXM2M?0pCyM!1^Y;_`Gc8|t zsU-&xHJ=qe4m~A;RJvMxqW>4WSLM+%aGpMLbR>8~x!%*M;vOia8rshrTww-+QJfdM zR6x;EGLL#phd^n=%e|@$i*(YNcVOF`RARtjZ@}Q?PPT0GcQ>+o*ojH*Rk~Tc@>jp* z@~&IUz$)-{nXwM#9=f(c&q4_yG+$JY-S=7Yph; zS%2njui)*sSxvo#1n9W!fO?IhOVStjd&hwFRVi&T6F975Gji<3;YjS6z&UdyfIui! zL&EIw$1NA9YXMiJ6IEqjeD8*cLD3a%Y=k!2ls?zN7f}ahAgrptg)8*uwUVf4wUEfl zy63XD`MLxhq^?2lI*F5~?Am5ZR=2Zy9RA@+B6PK*P zfxDSzU9wc}X8tDEdD_9OzuAZK`&=%16H_z2Yr$Bbz4?XmQPPph1H^5f4u^*jjj_vJ zNQ&Hq$RQ=2Rt3H)IlLJ;WwRt%vn2mfVf2^IYnV#ZH3{urdj>Il_)$g$yZL&v`>8Ah zj;dfY50hsZN>D1iF0^BZNQqA$rK zd!Y#UeiD21$Nd`^w3nn2kP0UW=c&PCkfjigf8VWHHIFa9i&hxR=1VA@a^;d^9kb1> zPrav{%-f&uL63bMt!q$m9Enj&wmK1Mz&%pb; zY>QzIp3%`7oIQChV-Jdlaf*lgH@PYu1+pI@?6vuM?`A#C_Ue&%E9(o*Kcc5We@^_0 zR$aH?95QrqrLN*YS&Nvha0th3bgg(XMf(MUEKPeKhYQWq?Kns!T zC1$J%J0@hCfv0<~nwdo6s>1wBRXbyJf!1l?G3IXs*lRhC$&&LeryM;Y3y=l)=w*uz zLg_Heumnt%s`H9uQaU0~nz-tKT^%id$b?O)fmvZGN12Ze(zVmfPk{G&t-Y5q(&r3b zh4*@{a?ggnxpO-0#6t?~YSQj_1b!sr0H z*yp%7zObk-+Q{RvwUSp0+cOZ6E(ykWfFJjOEy_dDl{rq(xX|kLyo}>`iXBMzX?woJ z&r9Ohe7WQ{zJ5A_Oc^RNWv81Hkb%r~8AdClZ^gg(q4pRH!_b1+N6dvxngjr-Oqj}e zItG-JB_jTP#wLgytD8DNQ zKMsAB#4SGhh-rGbla-H}E`#=5Eex#S4?T5Be3R>f-?ak(TjxxFIr3iDxkA7;EG#1c zd%(Fm?>*(FgcP>;uA14sn;Y~3MXlN>1jWmFuF3+Rg0s*zip(WR?BG2h-0t7c(**`i za*|B5?+m_-P8fuw$aSXjc}2(L`6uOyOTOD19|03j$wmUQSp9HKj_Y>p(S9omO5zzzN=Lp~-)6R(F`$sU= zpl4pm;PL{Jlu^c$>o%Sc99%-_K{93|7i9Gc5G3>qvZHf_=8$C$Gtw_s2wyXPz zYXjMSuLW(`d-9C+8!>k5?5Kv-i7F|KHfj)&W&L4Zw|a#McHn+(xrufBS1N6|H0!cb z4|0EJ&R)ni&QsXUD2@|;rn@nRxd{q4<6R?t276FVw##xn;!0&oL24{#7Xv6;9iL!a z0|^W#k9&ROJV)|H!7wI+4G)>@BizilULb3xeX$M@M4iI(Z1={%qf{=ck%={m>y5WmcS-uL;f+vk8=-oyu&8v3>o(vv?=RB-?8gr*i z?CkR1s$coRuWSeTlQV5Gr|PikX%U^l{tv~4o?DdphZa;0@|9GsBG(v%H`ottEF)DbULO3NImZ92%k7a)?xsb#s=9rLI{lTS zQWe(SGqojyghz(#+`kFGxKm4oxdIjsYsRmo_5qJ0E!whmB?k)nmRV=d4as2X3UyMC zGW_xW3fiOwzZw#`=@)N`CVzEGZV3rboX=WSx&R?jYcq{tw23>1{22>GRkc4AQxjz^ zv7t&22VNo@=1>vGqm2WyA649)d~`|I>E+KboaUGv-e2B30I}qXgAmltfMtclSi9Ia zxKds{MIIN<@31C16RKaeJZwFB`3I+L;J>E}&9Ud#Fyw18UfN9-D9FL2yOtB)gF)Fg zLw}(Vtv=BeJG=EKUHyaWv<4dWHCJg~4We^c_WO(F9wQhYuR9dnGSDI-UEe)szf$R$ zDrOlBOB~F{wwCrh2~qIX%)ky#tB2)4xg1Y6N#zQjh<5b#wXOyKm>7OQdj zJrd1d)MvbMx->zf}qO6b8sWOiX#@lV@6Uu>Tv`3ju-DIUK*9)t?-7 zbH>#R8v+-&uk=90OeGy3N!fpX&1T$)5ogmy#_Jy%1j^b~b~f8F-nZ^e853NnRLs*1 zk4)|HUH^HeJZW!&xY2giIkE2!RhX(n1t=`a<3B$$nam84pVSu~(xZ+B9%i(JSa%Ig z-w;gxI%rKMVV!6K37pcxsQV2J<2>@A%-<+E_J+o_wx58htviC{GhTZU zNiYO(A6{2F8@)|HXt(R6TF<9fSncm}HJqv4IL=&2AqS!p5hGKI;@<>;VOzJz`(!C6 z$Gh9U9AIo`2x3DEp3voed%eiLW=who%nyI8P*S;6JAOhuTAf}LKj0U}aUV$Jlh$n& zpgiSc#QvT=>#KqVrR22`6lA#x7;ib)6!tZb(vlLikLsO!oMCRJ#~bq;KiynNWjkJ; zuX%%Oq(k833y`j`BJ6*daITp4f7`ISn{=9&tF&`rv_pM`aBE ztLr;}i<+dRHLm)7v}~I3_T-s&A&h6F17@IDhj*~b!S7qqgQqYwm0bH(r31OdeQmJS zx4nY4LC;X8$M{FFZKm>%DuRX=GJpzsYVNGb=RCrwX-^*mv)9Bt(TV#{!JT)7{Fl}x{8h_2CP&iM)z1lKqH`w0c6 z|E}-yti$gPos1AS7< zJ65{v7AdeXxsN`t;o z{6mnG2x9rZT={J|I7*9MjlSUF@d@X^vkE%!}Zdu*0^`wBXK%?`H&kP?-?A@ zc*>b{fEe;*iwo#V?Or!gbSzN3R5WDfl1MG+X`w3z`wB+ zwIc2}w4lP!4XB{S_o8g+A|xM5kv97<-y|C^d8Y!HfiBqZIURKgJI(13+%HF4{P)4F z210P7?5tJzCWPsuD0W)5qpa;%PLR8-=h|H=@an{jmZi4X(C|jU>MF|CG+F1nRS3AC z?Ib=B!y)9cc%V>Q%So`?Rrk?-3WS@K9mOVSJgi`EF7S|69G3K}HjJ4a3A=<4YWVzb z(fyy_C$}`s+*O{deS_XyL{R9?Y;;3XjCzDpXRiBQ`$E+X*OrJ4AF#*G7^*lg8w1PG zWd~Zk;$h-JR_lAD;Qgt=A{CHdlcKWoR04ZRo?^KG+*;Ufq_TkaYGZY$@%dO!OZbo8 zh3_bvVo&2M`V<5}3L_4PB8f|msL1h3$D8W0yb|5`92d)_vFvbAu4jHw|Ei@y{EHU) z>z@x7t-inEnhUy&>3Mh&T$ax=RTdK64PX(t@3od<41*qkMX-amqH^Z~b>TV{8j({Coz@N77XuOdI1 zcE3A7@FnABa}7Rjx$szCQTN3K-reG7Uw39fXK#`7-^RZt2LF8w=w4^28l8h8Ggd`W_>Fic$V#>|w^O{)23Y*=o3?2!5&nJ*o69;qFWg|UygMB3INYxR*I)1Y4j?tIsoX1Ind$ZUU z^ZCz0NZ`Gl>k%bv^zCgz-hmPj(&7NtF*>G%1^VxcM0@3oq1~a&GD1dot+es20A9a5 zR4iceaeq9}Z_#sTwO|6UsoxLgy4ld2)k!r`3J0ntjXUPGHm^_7_9FlNoX`M1)w)4J zJ$Ou80>@I!<2|dBH#|o8y=ZFZlAT__-l>9!B+*VL>uzKKMx!$DPyx#|c2USgi#GF| z3PgVdbo#LfEZx;>iqD&sHq8%?9`Et?5`UEsDpW;n*5sB3D)PxG0p{?U=PeI5*6NF` z_DF0St(Sk$Y)bQuUxWkpcLysBo!P{_zuESu!t`{vMQfGrYp_Kpv=1yM+Ddu)n{rB?TYM`A@b4{QtS# zJN|D5^MAh~{%T&vkrKp=C-yZswnCm*q{q|1%qX zHa=C(M;Gv7xRWIv%iE-Br=bQ~HWF~!W56CDNl+9l*;RRfDToI-9;=FafZ_n~EM*!a z6`-P|L=3^A^a-q7>TMBh#rHlj{hwd$?R#2k54386a*Y~O%apO_fCIrtqlD9HUT9yF zRun*sCjvXo>FDF7pkzq5$=?UOIX_D9y8g3x{3}HJul3|927EnhQ1Ji`vfxW<%_jiM zf~h4P_n%b7z$vRXQ<~Z3QO<+VQ@UlKW@NGRpJ31b>rV)k#7lu0#Nm7etyx*L(N+&Z zch=Z8HW110Jk$0OW|VxX7!()f*#3$7Cj-v%pOh*%C>=M6l(%d>ozHg z7MO_Vo-8?fBO6Q$xc3|kKi#g!8pQo7h(Dv+b2;+@p7JSS_S*MOqZabmJSkhY@#)?d37?r?*PIpR3{kT zJNYS`g|jOpJThUJSC{`%a@yO!hPoymMP4f=I49CELk z*{{j~Mx)epuE=WCDgV0tbE`Bqkxeg$4*?UV3#?z8%fQe!*|a*rN1}BFfnCd80vrhY zBcp1;eq1L$yp=0eo!eBlIy(?Ze`9Z_0XQ&(XvtuVKin|H z1L80e#D^n}G_o4E_uk)9sU!L`3+XWiHxF*TJ{7jch*De(IHD@)%Zc4g8r+=Zcz(m^w}r^I$=`(Y@T z|0;l4fuxoNdGUwvJTI_1`OSL(1W3F5`x)Nj*YgPOAkL?o^DW(9!Rka13nUYC@Mvt= zJ;T@&Mv6y_=pX=Iw2*_SXX&}`O`K|kr7#?`sP`Qv(QpcHkveH|{2=stmpc9?y`HWR z!RMqg;k?~h+TCkn`C82#-A`57VdWMb*i1^p#icEf{4amH!SmK`D$Kr|GAb1NVmTlq zLa*e9qg_rkd+T|{?SnbOj`eKO;q0F(%81k>PW_GF>PfV)R)7Skgsuymrp(-|rB>U; zCxCu>Prv{#=N70XopeRSm?>sY0|5EiVR-Zq*u?W-^Qgk0*!VL8^VP0NpH0kH{erg4UrorNenD&y*RPIT z`Q?HNTnxyfFr7_W^wI8f?oyb37zeD5gLGe7O-t`rXeDXs8Q|96vkHX${BZRLX`$n+ z;fB>azIZ0y80oUqnL(b9tBQ>QeIyCFTa34bPCy%dt0Z_fb_$;<6u+et_^~MWI14FPoTk`BV#*8wA{R z3v{gk!!6{$v6Zv;l4sq9RaDs9*+6q8T@H_YoV zHU%>>7K9C2)UUK*p!)pZsN z`yy?tvA=->5fDUf|vN zTQNtEGev8k0~g5q)FSfBa8FNcgj&Hqxf#U?d$nf>*g4E22~ z4zt@4rlFvk1N1Rua6f45Q3w7pOf8`Gc7MEjU9)q^2@NV2(@4w1rk8|G1i{oq5;F?^ zwbl!w1T1a;0;!m&A%YZauV3T^vwC{EtZ%e|zZ1AwcwDl6{)1#t8mfNTdI~!XD*-ur z*q$Tp?WT<8tO|P_jisvX+~h9r-%P<5r6UfQoE2EIkY(HNNe9zxJ7xZ9QQ#@_D#pk+Z35?K> zi2*6R`)7Gkhl>HnRC%|_I(>n@oTr@?n6gm*)Fx80s{yPOeS=SUGCrK8__VGQ>YnA# zXgR>I>P$I_u?aNsRR7cA0pI#VU!b>JvLfp_rf5_ME8~f|;Uak0XVKs}ZIypC>noMQ zlK7e*a~1#&*!Z88=fIit#q@+Ms(X-KQk7(6f_dS~00LN^0R~X`fBfj+JD;=u5yqTn zTBy$->oPLDOU|F2o`I-|#=H-W>E>$O=+0^hwbD5Z-hj1Mj>sx&UJ=QQ@Ky{bPkvVp z%~8SkjL4oiiH~v*4DQHO3C}UWu1s_76u@XwhH0`ND3;W%(Qy=O`gfL`4A4ZN?T`_W#DM$d zPK6C7=FIAZI@#5liZ*o)pe2TB))DQcRL}$31wyctKFyY+EZ?m9f!sUQnk^#8KM z%?&4P6QrS+GuPWI;Rn+aPLn&Z$!bu#1_qqecJ#k@1Pu%CV7(lo-rw|#H)6;UP9Inl zYz6GE;qJ9KGUZAY02bos|B2Jv8iqGgBb(jRJf^nlk>UaE>;iey=8}jpN~{32vC(fk z(RvW^JR==W3D5N#(c`Saftj2NumFNdmt{?~Vtw6e`at?$4R~bi4@wsAW74L9-j}$= z#(~EHJ`Fci#%p`}vb*21Le7ken>o|_(m)ZxiSD!nPI(mL=p_^jK^pP;b`FX7^UKp| zAl{==tClF=4z4i~)-UavWqzMQHg6dXd3+)9Yg6{Gd2>FvAx=;V-;x(gwd5o@zvDy6 zlbk>40Kx63{mKk!cdL>Er30*3#xyvA`>e$hqF#2j%6crO+`9OvT@phlcV=?{DWqBmF`Fnzt4?Z zVLP9AP?50K@%`grQox&(H3-V$I(MT5-%>~Hi}W3m+@eVvJ14Lgvm_{n^z5;oLJnqTVzqiGAM!@501$Zjp zjPfK`J+@7}eh2LEVUumlS7$-oP6Di@&FTU+R~yz*5gg?B6?{D|q8>r1KAACy#%DKC zM`k?UF~~1&^@CXp59oNYQ`PkA0ab#=JUO&mL-iO_RbR3 zVaLp%N5xYJLvZ%Iwj%K|{LCuohM6z-UcW&jjj@$NuQ^Q>CAkwvv_V6eRa>}Jqww(b zSJRqEV_rO;gABwM^YzF}XTVcPthRsUZfchibkIvFHdU-HT}F){j2FNoN!tQ|vK6Ef zwb)dSQ4mypV-K4w4-XKW&IVq@aiPQeBifN1eVX8OUR-wF?Z-V4AmEEm40)Im$|E@C zHKyRCYD>=TWS6zY0CA8Ir;*k$E_TjWDc*#sRXzB^s3ZzP9)z~<5Qvfvf5Skwpf9j# zYZvQRz@oVFa^z$0v~#3m)`V8g$HqpGOz}-Q=3zcyiRg@Jg^|UTRCgpOHF1c5!5uXF zdM@rb6AeVa&<&_TN#H5f99xJ25D6ySrkZNX4})Se_?qUH(SV;L?)4dp(ZK4)Lb_Pv z9y2}-_`#2;?|D7!gKI1p62nc=xUR`|pR9D^U~a|9-F`m}Ka2j=0?Lz$Jndq)Y&X+4 z@gjjDMH8BR4}En8eFip|agLdkZ;_@iC9FZcK&m1*pII}a4oAK`)l+ccxOtLQMl3V@ zk@q#{-w5qrnlFqQL1T0D<*v_SY$aRHZ_{k#XtFlhG{s~bS(c2;*g}gw4 z^g=Wc2a*FO;^xwbve|{`YO@%7snoeQ#)Cg&4K*3f=9|TLOJEZ;mmCYC4C*95tbJ+`bhYIYZ7-wXL@rvUT#Q9ABB1L#zFKhi6+=lP$2m>)AIV9*740~&xlNoBg) z7D?5)BwGTRydSWVNS-hUg||zD+O$2;u}1dWLefoV;xtthx$H_Ng3DjbJX#vf3@PYX z#V&{$e|w%egPL(pl7^ShpmIv;goiTDGLO1825fvbzluq@r-JgJ44Gjs2pZjP7A5T4 zD}CrC=0g=vx{Ob-OV}f=afaDmDPu^QzT~!m+2K;8F$W@MkUvu|Mv@mPV>Te!eU44) zfU#l)b%rLy|NL;d&#c`xcZXfzx!m2xv^{V}=KZCS?>vx|3tH!}`)hrNl-9s&c29ox z_l0{y-xdGsCEs*SV*KAPdHAg9;+aP%up;h|A(d0<+#Q~6Mc67p}np>23 zP1cNhu1;P1W!{p9+x47JJPIiGAQ_+?_;~SNe*8MS)dg=^Ll96&n*aOzN2L9#vQx#k z<%UR335~Eb)X5b?)O5YdCW%0M^R$zbs76sQAPW~MM#Q1A>@fyk&gIdv*h8{YW}>;XN)ahH44@&Wb(!D|_jM%Ysbn3lth91PkbS#dBL5!Ujy9tAddUE$LP91 z_2A}jKyt-2Spf5Y#Yd1)cA8?sOqczYnfktoR5~;m>&7vU{^R z7f>QVC~eiU$8K@(>2TPepe;a?;LvS}^5vRY9<7@wx7q|kYd50^x_2s+#W_;(gcLeb0U!X9Y7YnU+FYxINn`Pp+4r$y__41eSMob zLRT+u-|o(m89WoTJXL7Tr9T?3vYmPWS{NjQt|W?_`t{v}oaLUz2T8L!g^4?;Ht<~Z zvi%)@sUOr8sQ#%nK2!f(xPb{%^?VI55@W>Sx?&d`bNZ$R!vi-+$oNl?M5Qi9NNx$>wTIH1B(;Vn4_!T{6K`Aaz@hgN%x z-kHg@tFq(emIeul4L~~T{_-?i`+2>=ESd*PX>}xs5q+5`eBI8s7leh0%ch076Q? zqNf8XLO+!UOnht&Ii#Ei9)SGFmFGzw2YiR53bK6T$X=%l=28sIUYwFET;KGk-R;uj zpTJgKspb@gJ1{EagtkvqvR!9(@CDrDxv!sYYCqD3dO{hwD((5e$xf=fWU~Y(8x*p- zCG)s6pM=t&Z|BoN@<0{#pU_yn0W|>NJs8-mL|y^d20s$JugZy|pWV||=N_j>mq{3C zp&K3c$^}fI3u>kOiiiGR{AKOpPCoA6a&$Iq47f(2N>^|#ZHZ$L|qy~EOCVc8?iKve+J@>FJ8)@$YN#dY6` zW&Y%jXYKxr>luI)aiOpaj%Nh69AS&V&0^r>xz+4B;ulkMRYDXCKRe{v9>A5D=YFu1 z-M9(2$*5_%kSZ_dpg5`N!4Yh%*(pbYfJSC{9KD_Yh%#)UW>!!d@>> zt>O~%q3av+M8?8uDAT0kiWN3I!kud`VA8vycLkwUQ;^2$PPr{)hUJzp^o>09=qjD} z9-7fTOk1>B*~~_)EKiHzqqdZ@zWv=IhI;s|j#Ze>gQDg=iQ8jaMz}u1B7Jp+Gwgz( zqgx8=t->XUbv;Lwr{YC80!`fm95TtWmpI!^y)9T5eQ@S!$4;hTj6emlN{q}l0@BTP z!J>$s`O9##$sE752AB85%`KiENmtZ-{q}#lh#!eMj+L7oGXEc7Xtm`&dtbim#a4AMV z^CiwM!=1`|C9cLZJof2&l-u&`;wfIK76W9&TzaEb=Eg;&s=w-tj7Ge$<6c#rx7SY5 z35#tq1eo{DPm2Jrs!7=WX!m9y2^HJ@Pby|%!i}W7Wz$JKxniB*kH5+f#D|C z8GVrFs)SZyDy@874fco{itXOaL#`K}hR)x!Y(0Fc}v^8o#?T&kvZY>j!i5N>|G6~{0Ty04FI8kf2p=) z<1@q7{`Q2v+eZ>DK`AJ0V$6|fzPSh%wQe|T%Q%mz>HvB0R8KR@@kP{da^HJ{&7bVj zSwYez;%;9IstNvHi~R#;*$jEpo4WCLc%#*EHTBOyY;!?v$-@^QrF$e#Yb~gkLMJNW z_F)qCOTfCMjTTwl8V9F%Oye7d8r#2-26pw?1gOAU0Mc{{+d@K1@s0p*eK)>?ox@|_ zyE$BT=t#SF@$N_$ygp_OD*0)KFEW{6&dlM4nY^gWE}coy`eg}8P$4p{&~<1hr)tZL zk&OBo6-Y)WmUnBS?l;=3=Nj7MBq=Jt$Rn1e%0I&LEV!QZ{|fDm+zg8J%1y^oP!3}i z$-kQyF5)bqHCudKfiFiwWl@vFssIa`0cj*YU~PH$b^B+5M)cx9MZ!t*6Iu(JHR0F# zvlduzMJ+Ebep>hjFiaYC8*_Nh3Ju)XslEbgBvs*ypH3HuDD$#ZBkjnnVN@9yc%)@>Am5_$iU`{8heLr@f3a!rteFXxa$ z_;%UAS1)3FWNGxN(ix$K(v$w3h6E-0dQj2}-;2Z2I|8&vT$zAJXfQL=E{T32(VvX?TbcZmO_h&!frG`QanxlaJoN{qxk-tNeOFI}XBRfR|QiASyt;xr+1WI4W^QFgG zPn349Y$b3}0=)17QbbB%d+gb9ji!Y(zh3=@+X%Z};kP5fg+PKz{5}FuE$W~G5996i z-GpwTyDI^d{-SA4jS8T#ezx*Q>Wj_U3zg zq*mDzd)&b@te+J>2b7SSu%m;73$h(5^j#|0{St=I{IWaC!WO6tR{fC-2Hu6<`Z9_l zjry%-vWwIEA>j?qO=@Du5@D0J9(QXabw~`58+SW|^K6ZMJ?6wfnP&()q z19E#=Y|iB}kwR607R^15$WEQUEfi!?a>JciL~>TEvg`Hx+rKeKB)j@8HI~;Gd0x*v zA^|{xu+NY_E~K`gpXZJ>`}K2a;Kgaqx*H>cQ(iNx!;n>K5)PPMa~JNXnkN`?{pz-i zcU+Xlxn*3^nb7W@ciYFf)eu3`pjwGJLJmuFJe`dn^Ci5uD$j0?DzP3-o)j##_;mFU(EMi4yrli5T;GZUIqvC zz9P*#jKfgW>ibDA_w4gRZ%4k{Vf=GK!`Y>CLn{yWH=}$|P^Lt2+uOCj;=f&JCYRHM zz(U3VQG9HNzHP~1j!TIqVq<+=!sbndEbT>i60tXCt_Yl{uBO~Yq4BvKM1IWqdF^=t zua>}vrzoBFTZB$f)T#Y2$>0f`RU+*u0igOtOa=g+m@f7t7OPnb4UU;uuMzq}mvDif ze#+f13nvZ;EFq78@+)A0ka%E%-briN(-2B>wB|YWo=@eu_B^ zhbH*0eurXnu*e`(R0xQ69-inc1jkTj{ zy7S$Wm-dEMzfAP7GLx8`xHMuVKc3Wm3aTZy#;~4{WsW?8YM>vmkc#?}ZZGvWr4AJu ztF(d66XXqBUqSD21C1KJKdMpaQi66x1Yqd8${U)pJc+U{t(ySL+C)+qi8E9}>w z=T*f|?Uy^@zP4gao}G!JCi`8JvwGXN2K_wUpf%L~z$F#fe;Lv`)3RTJ5*oY{AEJ?6zzcJ5F3nRTfVG>?M zi?E=ofm6j80TIDGvSwWW8Ff{!YYyVH=NQkFA1w$^nG>=Rp87;4;H4DvwU0zPrR%|V z1h_viTox5s#kq)FW{6*NT&gM>B%2-AU{^!Y;8uLTju{HO2g1S{|*DXKTM(Fiixe=PC`D?WEOm_pgeme_ImW^yQe6M+xI>-)Ey5i77L zO{?_9C0!Gg&J+@7DFFW5?l$e-JPmQZgaGH~D7?7X>r3Lx>X!cw4N_+OicPztB4g2# zmdEInRI$(Li-$y@sEGE2)cftRZ%(RQ{`mrX3J>0Rk3lvs*XrH*jW$B5dO~mNT>U*u zP?$AmUgKACNdIf35FE?@bJW}ZWryW&0r2?M!w^SzTMGxy1l^7XmMWn;U~6#zuXPnbO6rMRR_Qb?g7%!r2x;5dROq50c=ST@_W0`jH+Qsp zdP{u~1c1_`fn<>w(0C6=xedrMJ4fyM*6?}!@CneqD6DP*eXHC@14$AS*9x<$$o#dpA^{BnZ6p^d2r)K-wTt` z9Jb%Ic~4p2Wr^cYK~^xfR4q~*^O{p`5z&@@Y+a?MblDfXl`sBRxM{{Om{q{Q;j753 zKh>{k)O_!((Sk6v2eAMQbh&;zPP&aI666>A-eN1v2yO>3(%^lqfmTcY>xP@Ow++Ru zUz)-lYntu$$mq^KQVq6vB4zBK&&vmqC)W%ARI6=245>?$-%P8`1<%NpNc~}WBpp0;&9PZKiW(J$^?OoCs}m;Gt4}2hIg-vNzP_Dn z{KdQ@LF;AvMoOp#eFlSgH?O0G%cPo>)^p@>ps+*|o=8=Y{3&cT+Q;ppM+_a)q=F2V zbbrQ6mvO~Y7Z*ItGFM)dGDY@ebqCA~A*734V)OD&y94aC)$i}22i8TInd!rfA84Zs zP&QzGuxJ0ytoH90bq!1{shtZuiwR?%tx#yBpM36}FC;DBe)WZNd_xUHQ|H@trHkw5=M zi=yX9(V=`g`BbGFs6UW}Tu=zEo8^74z^ovPR#>3GC8`=gox6-BX+DW(DtTZE6em=# zfuO~U@|SRBH&B0G?8TWNWub7G?~?$0KccW>tcSaSzUdAK}@NG<( zmqV*q$Xqr{ePX^GI1GZOX!Y*T#IA3@f6OIVK}=Mw<9yG%%kD12IW1}z z6B9NUQgMUI$G;zgK?vQajmJ;tZfplA)iJc#GF-+H%o{%s2|fu5$@V0UJC;0LUC}MU zh@fDs1D=ajb&idk!}(=tZ)W&XfT!t53jEL z{Uf}yUdXfqc)he2M6EuiOT?rq4i~N6t_Gh*hw4A2NaAA;3U?n#tlYt+d(@ zZ1U!6rt_1~*(jmPq#7EeI{r@6?Q61?ERwOb7DQ`+>dLbaQ(f>^$Y0ut&)@Q9I%!cF zqMNIkv;z&vuIy1sj(D~mf-pJrw4<*t?ipOHOp-!;3N9>kE<0nkYYNkuOS_16fY&K=Zep-)E3Q**750ya1P8LxV0!=eHL7MZ>}}C zmr<(lGGr+|ba^Py%c>Wp7R09!lBM7;|KUPk(oea4&zWs{;|juie+g=BL=r-`nxmGN zcKR@i-07OvHs;xJE68C@B1DS@^{U2UKcp`Yk7VM0B>4k6@ddMt(erqCW1Cop^;+mkXKG8HD$#6c^-mlC|fAXi}>5~{$yhw^&T{>40&zy7LGj7 z1$7?7E=yFVX5IvlMo)(NX;(AsRMQOfMHqt|{+noPo_g|#S?Pp$zkqW_-e>o~$x5Ht z0^q;QdgB9uSLn#}N+iEE2)56yl4QD4`$Qy5-usmWr$Xpb@v0?$%j_Hn4qjn}d5OxL zLmkozeQb74pYu3l3edJ%Na=xND}Zf0vor@M(yYU{s z3<*AVM2soDeirYshvj}HS-5A7eVo()+R2KiJd7jLS&S4$vV0lVyFVL=TfAdX+Cq9i z_SKf*slY*_;a__@)uy?k2P$+DiNoAqW9nix-kC)$&s*F{`EG^OHDxi6^_*Udb=lPE z{G)vtvp}Kx8%?oSYAPhJG~M6Hf9O8m*O1GyA?`Hzb5hFwt06E@JFG!fG)z&uFBcc) zr;NJw1NX=_@afEu**=Trxa**Fe2NFpCgEGjR%*=+6r|5!R(X17Bd4QFfyEcgZekmH z|E-4JZwi`IroNN4HLkMrPe(3cM_cJxf!RBrL$Q;yi*>TDhb=1ne;tD9u#5-(Mqw2; zC!k{2A;`5^S`P^*7`XStH=25%04ZfEX!vasJqNS|Lf7Toi|+x>3u9%o3zD2#Pa;if zJc}DPbpQsS?=@q!2-AxYSAaQ+y`~9Ky?CeL_U61u^l_%kNhfHNFq%*97MSouie3+< zu1-{U0xLw(b>jcS*IPhE*>>&UAT1&&2m%UX(28`IfP{nyQW7H4-8l>mf`Cd%cbBwu zDMQytw=_dD)WE=Zjy~}|@AH2DS+3<;+};=0HP=~t?_>WC^YkU4Z_3;vqQLU`HmLp$ z)Jl7hV}PRq8uk#?<^5xzk<>3qbk(Zo4I6o540|p2Tbb1}-$kLvKr^r3*wDwi_i)`~ zj6H7y!3Rf=Vk+`R-31Yf6%rsXe51g{cOj2vBwv2v05o~$Hos{>dbma_-d zA9i;?396aEMWGjd=c_UbrenSDRDB^u2=`|LRI_%XrE7eo#A9gK)Czm!jT@^^8)2hG zJTz%)Kt_L{ZXhjExfFqrlFwC1J}UUs=Y7J$gE=M5>U+=)zhxzPrC;q8NTfUJn9YaC z)h-rIo~!h!cS#l+E*SANaRa8RfKM-xiq|EwzWBHjb4)@wr$G~|UTT?lNRfOLa#;H2 zKCWDG+v4<#68#|D_pK9ne?2I;rA~1dxBvN}!-wcE4B3tlvz)9`1dhqd5c?|{itOVEP21_X)Yv3W z-u__HLKLy#4V>mO&p~@9ySAg`(w^q0j%`2Yxy- z#`4H7ige=}H$KsAWV#EZ`|K)9_r=91>2nu5L*d3e~kMfM}B z$vkT5Yyudt-QsPP`{ONHjpnpYfG#IiI4_5>K@u9>!zjzm_TEtgR67e6d{YIe zdTbJYmdQw`*A6?m>AcKE)EMO|=iF!hzH&45VX+o;3F^ZrrKrI!PaA;Y323*|$*rDD$X#hOW2i zV=f+gOIthAk5K9=7{Vf$k_1xGXciH(ZxG-mtaPaXJ94m2oh6@9;W3ID29~f92wQ{B zXu*o5&IKzjubD|_eLSZLrS0`Y=)(Pep23pPTO1}w&7z>Il_~xDopIY?RZBJPl8Nli zP&?pfB9e_T+-dgg<1N(i5@!KwWFEafq5V=LZ@)~~3w2hz!4}>bF^`mQ+=KWqn+w+O z))l75HiZKfkO)tK8K`>6bgkkT)&1XhRwlFbTwor9j$y)eDu`M}k#$J34QaL{!>WI+ zDcs2OIAy*jlBwyUad%pu<~*adhaPfXMm@VA;7V6U$LA=Ea|)UQQ!2eLA>2ihTnR)| zRHRw|I{AYkJ*I}*O_*$g)SDgPBz#tg6hu0w7EQJlP6U(t7M7a~<5qzirsC{htXoi6CEoUUQF#c05>K$z5YAc2kW|$c;)smjZbmFzyw*U z)uanl^R}o|3P-&+O@6i4M=gtiBwoQTUR+bCWYtNhakhB(olGj;9s-B>Pvi9@GAo&= zo4lAOg%eHcn5qhRU|pE5>;4BG$w|VRPaNmILC&sgS6ReRmrk|tetmhil@seCkONP2 zDP9{@*Z_T@@p~%I00vemEg^y5RsR#ruPGOd;0#z@3Vn3Hr`>UA-CfhZ6k`;y?|vL# z;dWhQkZI1(Bk%cu0jAO7EV5)##NF@7IMIg?v0ywI`nrj4VqOE>9@m*y1iXy~=0e}8FC@mO$bL%Pa63pJlf#b%6)6li3wzXxqkY&KeO zZwOokr<6b#NENMN3M>ew$5cAU143%b%b?3sX(0>BO{_Ch2H9QhBVQ^%Vf5h zR9>k@Ce-n8eAFc@})1*^ua(1gD><`Omb^C zIeGot8OB_>-wg)pXDYKu(n;1>?hn_@NV<{k<v+8&dvK*17kdk8b6V^k8rOkBaB^9EtXMt0zWD}j>aBscX z)AT;gv(Q;BP@@=_mR&o%Fikz=#J&e~iN`&c7XX{s$91OFj!%N~KDOLEmR*=oK9P3p zs!j1`b%k&3@YyZ2bt6=(`d7T9CR@H9_XlYnYsLmZ+siSC45Wviw{BH^qoemo0u3{) z6=E4zML8M(RgGLX?Kl+lBOc#A$yzPuj4=MiIKunr1X0?&r!@)H^tc#;jLe)WkENR& z51q+mx3aoKZ8njC!-w9{FY_d0{5sqEH?|27>$O!W#e_7k4sOQRSaNqyh9LA{VYcaEWfBs1y+>;NCWu}b*DANQ%xmKc9}@YI*11ix zPq}o7e_QVdDSan|OikbVqmb2W{)1R)&tu?SK*KN6B3Xqf zElwl3&v)eCpLhx`C6cDZ(L8#kttN`jSOil<#|5zEt>Kr=muU8S7x%dNrK2rjheeb# zxlfE3LZX7ON2Do0rzY@Oo1m(+n|Uph0%cMHva$N(VmK1Q z4ZBO5J+4g(x@>-h2FCIQz6;9>6|YY-VDsQ{_Iis-oGi+qWEM9U;^>Ke!ixsd;?K`~ zQ@XE(K2HZ0gI2?~@DAXsjWmaog6f+C;>bEm-Vu1IOE&SeN9HOF4_>|V{-O&;pLkWo z+C!@}if1rQez9YJ+HoLWVs##4F9ZU1ra3QkmDgZ(F(_^IW*v6fNMox#^;qJez3lTbOM^n}4dz}i0gMdYg z)^FsSYqCznc)C#^{iI?XRII6QjO4W*md42V)O8SICN-(_UoATlF!d$YnlMTh*7adg z?+3R0Ravdq*)&Ud&ZHT{S9#Z>G7b!KmGv$quJ*~nGu$2FiggIiT!a)3`z)}zY;cEA zjZ@wL{>hJl>oPAI1Ai_ZDK#zMUaRdA8$BF{f?h|)w3ju@OsP&Wet7=@IxZ5O^N}K%$C1ANx7%171`O+VutM+SCHbgc zA^6!MD_sPs!La8%<>NOA2MH;%lMQn^s3Uam<@kvE@D>VWtP{5e%hXH}QR$0_Iby_7 z-PZRx>*H2}6|WNbL@FGuwVJtOni{{(bE3Wz+?alRW^j$xCITut202}}I|UxCHF%-3 zpdTP|@$vlYoesa2+`W`e$n22B^jES|XqG4&WlHrHP z)`Dv4cF4`gQGyD3we~75^v;)011z8Ce>?HoP(3wlH9y_i5QU+$xtZBCR|1C1Y)s;Z zMN@h5=JhC-^Vo&9O&QXSdYMXbyhNr;WVi??pW99KXSY?_u-~!Xd+?g?7-wi z{9(%R(H0DcF!dkPmLOI7uKB~&8tas(4VkD!!^bJZQ6ZOXcY@U(Mm%nu?PmX(dTax` z%8{PG1ZSFVqUG+OU<5X83i{rs%UF0rF$Nx86#Ev2{l`Yl+ys8YP0T(Aua|q!1f+_R zo511Q~ibIEvQQnV{))fstfN>n#;0}Mp465dG`6mlN#0^|%|FrDOMC8=VgSs#TtjXFM!7SF{! zk3igR)bMO}wglLmB=r*YA@wB$Z=8NGa1&C{X*w%`1_gW?Y`#o&+S-7M9_}<>Dx``v zX6sZHm^4+L?a9(7^vZeY8Jf~w4fi_T7cPO#K1G9Sqa>AaPt)5H`kf#({N8_1M|v9& zeG4Fi4w6|rU*|?NGoRZgDhhgJ>U?|2ApaTk0Cw%Bj}3t2+A35DQK#n&V9Xft&|#g` z8dbYjLM_b1FKA;lru4b@Rn35Sev)iU_!6EL;^607jlnj7=X+CreP@q@o;sW zRM4}o%WrAdRR1xL#wShb@j8zXz@dtB#B+PvG_hu^dC)zz`*c}7WNZr%=srd^JF}t@ z2QO5}?QV^%Rm0~?#UNtbQ|e>rkQ)XGj!__(FDqTenqk5S&Z-c9{N&7IjB zqfQA3ccq=OL*IvIf97q$0TO^(X84+^Up1YJ8d!5cfH#YH?paxXFmP|E7k1gC$e33X zz3@ERum;#!YG5yH{A!)xde;8Yj+WaU+Z*1_i%Xjc$=ANX@dlV! z?_LULQWqilMTXGNOYx8i5;eJy>u`c)q+{JB0o6<3r;R23+~w40ezOor_$yFk<5h|M zD7QWxUi%?)YOcdP&C;D!vDuHO(aWaU6IAua=jUn;OJKIn%hjwbtZbm z5AJJkF!o&;sn+nIp5`gcdOnL^0JgQD@AH)s7gsKn zn1KEys1gZeL7!#=0Pu|#gOSPKgd0?ebPKW64dyE1-O|3&K zmX-HiC+XqYQZQvhi>pd(%>>u(FstQWm|VH9o7ger-B*$kv*@_eA5}1t)Hf6uq#pgbYQ*wl()xd`+M)B$<0AVz_a^UP8L_)hg_shY}PLJOopOkMb;wVa>&c;a( zw9)JRgHl7xcdxaiQX`>Qz{y|`@{C*Y=SS-EVrY?8#Mvv@1+WXqU%{sG zq#yPyjWZ}=h=QWJk_?a{t+sYexIy>OCYOp|KDEyu#Ne~>Og_933`BroZ4kTGu zyMPc~VD|p+gqAq3#_Pabk4QY*SQwZT^P_#uu}YJT->lEwaYaa9u0RjAYHU`OD%dto z;-URqATdf%eT|yy>%PDY9Z+y~<|=JtP%cgHf&Gb~V~3NqAa|gFqlW6t()jrXXuWV&gTFE0avZ+PLrk>o$E_bEHU{_iLCFrCHJH>_DGESxq3U86pdqE z>)CNjGB8MPtc;mrC%`imyUx5wdRWF1bqdy25k@%C=HwxQQSzfg!b5W(&*`-`G14GQ z_cJM1_dduxP_jF0Gz&Wn?+qhe62ugsa{NYGb@@>pv0eiYKl0p&ocxu7uj2lKI0|)y z;289}#t2 zM6kXt_@fbjm|m0y*YgIsR7T>F(B&Sbr!h}dKvLj*EUHAjk1nn9?U??mLd84tv;_Rz zs(-=_SM3?%M`Lo*5#we4^8BSrR3GWMJFLlBC5IrgiH|@tZ>pm2{0Y7H)0i;U-KI>I zJ*mZcU!0Y7Ymx{A##nL_-zWFO1&MlsH5XSo4lR-f8;i_Aci>70b5k8DMw&r}HiIC5 zXNjVoIiPkHm)*xST=N-RT9U|+dQXt|Fp-oiY-HIloyXL3z3)~fAEeN#pNwCMd6h3y z*b!%4{}AWG^@j(H|7J%RODeB-e{W<$&4oC%*p}+Su1b{ZmP7Z!5YML#jBD(+e>J0> zJpFiiRI6Kt(ol`t%^?!-hU``wJ)Rv{y*L1yWPUw|8v2IE z)+B}O47AMk;m~7|(J{AUiXLP-IyOViP$<9)!srRiOq#m}MIHA2T$Ox9Ng7Bp3YOy9 za9=%ACVTNjub$~a4t-p+tA6$Dp)wG1EuFXzAgY&psI$B$cy0=7e9YwwVFh3luD#6Z z(U(Z_;d`t~4*TsVd%&C5O#UnL=Z521&wUVke<#TpHkb82j5$Zb-@{ou2xXfYHTN)G zyo|oxMdFvyzkj~yTup^Ok$)gxh;>8e&Ft{9hNuUUaIo8lq+XNXpn)Gvz7(j{ zlu+y+MA43w_N=L9itvr(!kbVVg*o}|$tLqHz7F#(*oYY)p81WMd^O|Q>Dm>qUC=He zQ;)@JoO+4$x~-3`9{LA>1DIVE&`a;rt(tsL4L%Dr6-NEJbu7cr!ZqBqgMgNzG^SBy zrcg-gi*DL4N~-r7Lz*hl8sPJIDhE|{Ke5$NWaGFcZ&-(uU>tP`NzmMgmVYcyj%TIt zSh?uyD?TXKX_ML$?qqcB$_Uq2#_iBm#dkTvj(ZX8vtC0;aqIEsXUY`{ytbp$xTj`E z%n%C75Pwq+EJMAnDq2oDF7%CtN@(ODTH%-@ zKo{ha{H;+c7)G7G`|@jQ)K97}tgl(YEmmW!%@cTR*kjmUM)32*ZeohKOC`zy&7N;FCf#R-zvhDYki^<8{eHDSXmcuv8{Sk7IO7 zpf6Z{fKD_^c}vq6o};wFQmP`h&WcA&St*9W(|`ebilKl2&yja1ez5G;RpZ|p)`AdP zb*+RA8~zfDFGDqS-F7~nl|tOL_S;FhyrEPl>B^HXL4x9@S2{ z(tia8vEDTo9q3|1SJ zu>j_g+Z4DhBJT>1B3(Cr$%D|q1QlbVi*laOwj?A>4C2U%p&a4Xl4^-^1`YhD`#l^= z&_a!3#R&zsj4VtBA8Yqlo_0k}FYr_a9%rwCDxL1$pgK-2va3YWpP(nH_8fzh>-b3Ay5a@Xd2s_$wq8nV*&HW+}qe# zga+?3{t0lCrUX%H6!4H6MS_-ktv}F>ktTBfY(SxL*by7KBupMJd)L{?H_!uyoR*Of z69ObPxXgzi!sh_>08qBh6XTaYPcawiqfzCS$8_2aOC0~=0)t1HXUW0Fy~V2j6n(Hd zz^|8x-{dvq{$_}!DO7-82E$~b4g@T5zpmmVERMjZew?7T7r;*#P4bIb>}evy7gM4bn?Jg15SmI?!o9!+6#|ClR(FG3c00&LfT{6*;!6ldv) zvpmGquACnEuVycVnHO`mJg75R!(4<+d(B;Oz*J$t)*~g%jFV1C3xgW5v;QAM@93uy zkd7$*(_nzCkzKD&J(k131_cHUt8sTUC%WW%aubVMY--e_L=GJzGQHPNlAh71%RLy# zW^%jwIgD??)HJQ&WxAg_IA0@WdH##yHc_lw`zn@Q`yC4O+p}WGI_spHn9f7HMQHiE zGh;#bg=$_(mHLnQzvWM_bY)o#MSppuBm!VG?!Z6$1&|Awp?GnCC+o7}Wt0TwMfwo@ z`|HTK@)(xFX%w`slE_yKd|LD{qbz7 z`+orJqW`e>WH8g2YZ(JipdlCh!#Vqp+fqzCf%kI!CGMFYXrn+jS-b6EB~`{r`=nQ%M9tdKXY?E(1y#X2RCG z?Pai#j|}ScLd&sV`s#HO*cO0 zB1bX)T{w0d>3{y?`#>fW3&eLXz{+0CDS;gQW+=5jQIRX+w%bC3b3*r@|N18A!UdE0 zMK=g!iaD{=fjLYz_!>sZ<~{#CgTY;s$vdqN%S6zLT99Dd@p>LvtxwgI^5UNS{YL-! z{Yzgl@Y)MJM+x)!5;(3ZmT!}Qp80gv8dh8F(+ zSjFdw>HuO0v|9e4xiTNF-{_$Y@v;3k^$+~c7IGeNCxXC+ix;jV zx0I3w0?;=QtY^PL!KVi0^DS&|uyq53K0csSQ}T5?_VF7<{&GO+;GO|tP{QA%8V2$= zQRiF;b?5N;1dx?n&X0D9xc;7n{$6)C;FCN7VIts1YeOW)|JO~Gd!s!HNhQp{9D;4& zv<3Y=E&lU{K7rDoHn^ch07Iz)H}t>0nt4!>aM<|8Vo3-tFkK7(?+f?;OGb1N#FCCHt@c4A9g860G+=f)&j45Zh4dKelWYx%6j&MPgX#pSewy3rPuS|4oSm zx90XtA)49n5SuVu#C=~2d}lu}N3Y=S_!q~^sA2+uH~;c5gay;{X|%fCHFG9;slM{7 zY#Fq$tO$#KxXTvwUg6f8cQ-D;65Tcdn3amIAYRR(odDZxyv={?kB69rgYiUN)>(wxmnx>5>|1n6gYk?daq@2#G1-lc(PB0*CEkV*6Y{*N0&y~PkL&fH^V{FoMiv8z zW78WrWH$lE3NuWJ9W&h+nY$+tbM$UnKL>l&BQDKh6V6Dy?Sx}Lw>hU`^MAc>4EOC< zk+vGw`%du8yU!av4j)1<&PU0}TrdtWCoh3zKybtuPNZJn^TQDCsA%s&YfbY=*s)&D z-w^W8mF8Koe$@AO(d34_oZ^<7Na7uc6w#T5pK_s#;_}S671L)@|uzjEVd*EMN+tH#rE_VIr zHNoF*x*+h#0*F=2B7-{K;Q;)-GH_L*H)Ju3*^;l0?~3-bt8WL#bTJy6CUNP>8q6EQ zcepm~J7y|pEsE#G_t}8wMw)k!5@I@^6;ht&EOnA$SdM9D4Lx?KrLw+CZTOGR zR_lujN63hh#YU@1=WB^2ym$DOugTvL4?0Xim*+xwk{GfNgdY?FB40PS=SP|)y05CO zw7G2n_r+ncg9KDX|Ml@<0vzkl^xh|u&m-=bgH5CctUr2SiMA%eUU=|_JuGH-xN&P8 zz&gzPOU>aX82%zPk69W3{%JJPo;4B``Rx<~27Llxlp$4;c(g;QIBWnioACd+lFqMJ zxb3}L2g(D?YDR-2O^+eY0-?`~RzEzjKb;VPxmjZ5`hL0pO@tUa^tMS-lqg^q7>BZP zP|DqFF8R(FXDjk_r><#d64Ge(PCoub)u9N^@6s8cSijuwkN6^>tkad07xM5!)T{@; z!z4JbS9;WBgRY-9;B5EUd^jiO7!)SB)SNfR^z^W+W_CIE`_W9wM0Vb@8 z7qHLZ#dq^?-k#Q`;j@yP5x=kgHQ}J%VbK@#&}m*zacHRYL@Boz${ufKpP5W%u1+`a zOg1`d`sYjc&!99fM5enMMw8L{e5q&J8Ywgk&6}RG7h>q}ct);ax60+7*lsYxA7M^Z z+?r3^SK>{xq(9tTLGxOUbpjT@(%)py-?uhfpq~Fl@#|B`qn$YpAo_{{Vh@F`FOMF9 zz-E*};#ahYyF)%W)>i`aS|F5S!)*M9?Ljvr0tu;d6x9Lj@C&tN$s4KdTU|F)W|a%X9cF~wj?ri3Dz3`XZap@ zY77^=W?LUDi~0dF3V@#VfZk>OK8B47h!3}ye1S#W;NBF`Hvj?r2pI6j0h6P6 z@c{8lo(X9xOo{4!5;O38Z8#lG%%KHlrwCfQy=7PT_L&`Xi3!jIukC$iU2s|qSgQ)4 zc9(E!mz}CtV^e$%1dClO+3*5zbbS%eWxUkKKlf$TaU~jf7sAki56NR}n9#{UObNQI zJ^KW#P0DntHuh1pwsPQm>lJXN6LFjW+N{I{K{=h8&Ikzt;wg3N<2QVJY`R+dAUDIJ zp7)8G04oIbZ=id~RRE?o(g%&aWkl3m?=ekDAl_qQ>y=c8^M)uiw>7^Ola1`L8@jW% z9PU6P?X3DlxAt=U?8wf4Up`Cj$Za2%UhS~G(i~BPW^yY!8{8|^O6YjS6V7eMSgzIN z72hydSM^XKTCT%eTp2?v?w}X;P@nZIjR7_nT0kPf2)G@CMrp6+C9+Z)J$k^Q33j0^{Y1CiK!zDgz#DyAl95`;*j(=QhrJkA0t+gZ>fQfwSd>7L<*b}X6LEh?XHbcN=A4<0Y_gkD)d~M&h=toRvYWNJ)fbQoon1Y<@C%>iDrb9M$>HLAr^|#<4j09911-ZcMwR$y?gtwp zbdtZg_jZWb-*E*$h%_eIm8b$1p30Z?CXe-+7oM5+r(^;zzg;d8x73aCbW!5G`Q!rY zDVIu_^xTj@D<|^B9HcEf9>f--y!unnq#%J7d0)1y{socWJ;ML<&%(!< zP|}kiKPHymJ!t#fhR&@SoyEhixpKDyGi1Z0Rpty9v$bqJN)i{2VLoF^hkMm^^HT?# z>uPmw3s-VqP;f{R-F!IDBXMoA+_>9evac`Zi7p}QASVn!FwIWOjd?7PW(nv4arF{i zcZFDX>iUX8)lA06x|Jc``D(#6Gu76#$>OdN@Ep6PvZ4hLQ#l=P-%a4LzZqO3b-M{n zan-(rDx`kie7fc4S59_|?kIka;<<018=WNQft$;H$SkP6_4eGjzIRe)RA~=?o=s#H z-YPV|WziO}x9MA`G*w-x&JtEIQn21L4;sQVZ?S2X5wIn{QFU8;fv-k98mA>&+YMW44P=*IRm!s zOW;(I1!h$gu(%R+kRmbr0?pK=hC8z-;;^{F+`h!HHY*ID8E(~~SYTbDaz^oQ?P5%0w z#)P=9$+RSk0)^@vR}19;_&>GL68O<2fwsSP>v4*eHlC~h=Rg5Jyg^0amhtKWvT#}G zm@M)9tdICM9I?04cZM~4Un5$&q0w91*=E~yGq3yT29_JU5M+ZQH|!RNay&Ny70x52 zgy>K<1XcsfOfxhU9_#Zq_j#WVWuPE%LCWGXR&bnL4kB*!I{gCg5ZKom{UqdU(VZ&Z zjA9cIIQsk`SdfHN3nZ6UDh2O(po&$EC0^_T4;cJ6)Eii9@NH+?!z#8Mz< zYA(MPwkJO0vf>SkO!;yX))|rsaikOTlAwB`zr-VQx0N=AlZ+#VUHglS1le!hhCE`l zDUq8ANZH1qdU%+_k^~*?QMF@^`+M%K=0U^I!bmkA*84A~60aqkEkqSx7xn)bhVPTH6?5YiMN1o6>LebX=3PwY8-Ih^yD78sU^2IzO86 z{=PQ`k%>zC2ja~dCF-9=t7!ZNCn0C&KM|ZTTLvrN+!@AjTE}>mcoA(qR>HR90HhK4 zzglV7MT3c3fl1MwI4Z_0JVXc~6y8AC-;5v6M7?*?)wd!sPhNj{0_1yB`n3*$+ta7+m!11| zuB(F25I@7ogUzv zeA#20rGaL*FkAhyK8NrVjM8ArxL0s*l#t zR#wG6)*0-+#kS<%Y}fKq_pQY<@eUL?%I^tFS&HM|^48xyrm(_S%T-*c_UFs0VnRA2 z-I0*>xf?iM0kajRq$Rnxdg5fqn}Zp=x$Y#gD~TsOC4)+ltj(pCT7v-KI&E;S?NJsh zy7XmYmkn}%%hWml-njrW^|yR>LamPIBXQQ&+aUr4C#gHCDQR z9Hcdq>Y-bvO2mF!I*59g3aq{G^%V+NM|SQpn`Q__GkbU>ud;}YC0iAg!7++t%qpM1wOBr1wrDVZgyQ zpm;5JvjB&w;W^v|VJ!N|z68OjIb-DJNEooL$SxtG_Tq6_XmdaE( zNz^RWANp=@l&`R?U_~)oV@vPu;Zb1eOz#1fun2JQZl^yFr{fLPZ*WU5xz$FCG;*s? z6}6;1UIeM9A&~bSsq)*6X=#xVazQfJMCB;a!2R$JYPW8COMGmK5Q}V@E1K9r&bQ(? zhwm2K+1sa!*1I~20@CB)8^SJD8?%|hg2Jm=AE1{?rs}5u*!UO>YnWJ%NN%xw z;nKX=J4e{|Ia0I;%{W}78>Dg>Qfz2*Fo2%wa9xPY&_-hM+K)`ZXp!enSd+_zjX!F} zzJfiG>nE~Q+j4@!$qh6o9cl=G^}NrlH>!F=qk+(WkMKTCKxv|YIoD&IhVkD#mZMhP ziTw0Ck&woQ&1U@LV4+fFmRC7hKR!7Be)z_Isf_&whmFY5N&pAn?zlD4E@0Fhe+$B!#9LNB73Kffjqc%Rea&XDuWt+`z`VmNOo^U&~O*EqOp?C-9= z+vorgxk7*diV8bXc|3*RJl+;3IcrSFKNcR8H($Dl|d(Gd@Lh?Z_<`Xp=ZW%15|Qbvx6H zA87g)jJ1MYV?Y;T#wfHh19)^4$lhoR1#KpH>##iXU*U$3wC#?MbbTqRxRN+K^|0`} z?P%J8j(Z>s{{{M6Xt+(-YjV5Pa&}=2Cla@DnYV~`z6XB8h9EmXxBmiz40OGw)bR*R zI4;evI(n_?0X1zksq}l0<&l8r3=nc@P^%ch!gH5cUgde7-=23bcynx{TMEc!MxN34 z2xF<|*d8ZqEnB&4jQ)nvFo8{0(Xb{YwAue`UuN}b=p_VQTw;6@CTJ}<(EM`x>*qY{ zkrN7jjeB?PQY8pxnBc)Gr7TZ(iACKYpu&`f1|F|SVZf6Vz9KyCkKCj$J7)a#tg^@B?7elkDQBEH~T zpUNfmH1&zoZ{<1(^*9On?6fy*yfIZue|h(2EW6J4Poj6H8!cz;C{#~U_F2zG=4V>K zJ3N6%1KlzUc#MsNv>zXD_ygJ>{Zgaqa`)>zmDHw6&jC76vLbHA@pTQ0VTm~5GIQrD|ew}LrxtfYOVB7GUacEUvwn$n`XA#+kL4f?b-;rUn1y&V= zzU}N+r`_?>mFvP4Q)HF#s zo`+@tZ28{OcYc3RIFQIj#a-P`ByUhW7Qe{v&6EvS+$wyOc2f2L&JfA6v{Dhtt9gE& zp=c}Kn6|oO>yV(ja%_jDayFq0XQOtZ3g zn3RTcI|)Zy`qwrPu|&{|o9v}uH{i8MSN}xdI2#2{YO+2Y79jJ~zYgYLz{%@7Z5mb+ z4Ii4PS=GNk1@3`LdgNT|aMQGD_kBB$b`;4H0@1TR_*Q-?@F+#tl@5~p_Yi&Fd4g(6 z$2mK8q~Xx%iDv0p2ju{}PEO2lI*D%;P61h(vR$H}?Mh|kjfBA)q8?5bGj$}MsW@&1 z{-iwtsl*NK31Zd>Vop>6g1ZVhq=73fXZgU*dGJ%Zly*Qc1Qh)q+;6bOnx+1IcjcR5 zd#(PiKKYJh_7mJ`Hju~Z-oge;>POM9l0R+=mb*uhOsbCA%xGn?5&AjL<3#5)^BZ}N zO;%ZUs?EM3^iwLD*^=VcT*p;UrUCw;kM36!h=DuxwDVzNU7n-z?^@$8O#XIv1;6Ko zAS^5TL&m46Fj3%wlXwNE$xe=7MmIkCv{94E%~g>eXLdM~U(>$`b|khVYPN&67m)dW zMRj07Dp(--K`{4nPiiWB)Q9Ts>HhjN)IwO0sYO|BeTj+yl}UlzP@+MI1nJeEo1{y9_cdLp!YkM6;9CvaB5Y;|ps z1R_b#o(8U#gF4lQI9W@@;OF+>kz!2Tu&^pk>>lQ6bb9rcmb4+;?z3Re$1P_xN^%d* zMK-7Em`Weq^dXRMsMDt@zI8KkP9#HF^a*X2tjFl>$oVFLpZM zE@Xe&+_+U%!{W~}ZhK2V`%RGc&?YC#ZjY(ZLajvZ7cNfsrY7msD^B`3+l?ZvSE$sc zW<1@KrstA0y#we8CtN_yRGErZH$;?8n^@oPb)kMT+zs1gJH7aAt6%henX4}J!tTQl zkGu}|mtS}fCW_nARoRZk9?Ldti9ycnyi6Uzi-@@YB9{GEZACw?sP31`Bg^)C?o!`> zfFsW^eX-8aj}Op;F&*HslhysYAW!yN$_B5+E`8S9y$qROS@sV=JNskz@AU_@Pl1ht zaFx}N9}O=mTDs(swCt_zAcn`MDmhZwPfazU9=E~9+ey}29qxBtisF} zR&gPoeUrTBB~!6Yj|rcxaaMMtK}e$-SL8aX-_JU`9!Qv1TWM6vr^t%b>B7sbBgIkjr`?J(#p*}d|aYl_|P&3Nwf zSJ!}PxzI1p(u1Y`Oy~!D)GwAOo1}$o^BUM(_a;0*d?94^ZT~F8yg$7 z8+dKbaU&2`M6z@}s`Hk;9)}1xlA8N;+S}V(a$h6=9p1)FA(h^DyOei7LL?!mqs;4f zg(oQt?vQq&QO9G%`8G3kGVQ^nnIM(8_ZBU-b zHS-ZF-@o~QYAjBHfYsCel?5Vmc4Cf(h6dz9>fS9=K%5w7##N!6Z#z9WPckNQ!~J=n zuDp6j1ZEpj0sK0Y+Ji~5%Z(Kd>VE$WeN|JUxBe?X%0!Aycweg;OBD^m60ML($9Y{) z*2(d3Mht?Or_bY>B;5^^9T>2>!Q%vHl%1)OIy|<@iTu{(EVxyVTi~oBWdJBEXQ1Cn zAXeT&K(g{IlJ)>_oSW!GdW@i30w>|iC!X!!ns(X4Bbi!&37lIzpSiPnXD}(f8Av7n zN{0wTv}x(ZE0cs>m7&U6*!}+dmyPD+kj7u7nsM#-%%PVPp&C0Nv9{{L$IetdYwxZ0 z)dCUpRVT7e6oR6tffV-^Xyhw$oA#zrap>oHdgFCCTlo_?UwJ8;$7b!mtZ?g)VJloR z5!hk9{#4$6I!L7$h>~{avpo{F4HkQ!e_i!hfH4OQ<*8&%M>81jG!^>JBKsuvCH!OUENEdNI21{@-_}>TujZcjyU@0QXFo$>lA)W-0?Ok zfzSEsNXhG{8u-TWt2yGwPdfoIKM4L^Md&xW&X7A#Ihr}HCnW)*>qW4GdxBV6TU%A}5Y$G}ET94g~t^R4t4)d@gu-j@6y1slA z=@8HF`h30>gMO@(XW@yn+MJb}TFmV;w&rjtHe#(burSC60518*h zysBb;PXyKUU|T8YTU9ab-0|l)K+b)M5ZBqW|3n`>RD(5E37M*X3n4_`SfuRWcrmZD z+kbPwk(sz1UDiA8tbOJc=y`uTT+259t``dV;f%JL)Tt~03+oaoFDrhvRG74-Kzz;Tyk8;#bs(Pb*Q{$~E*-fuUW%+1zWV)d6Yk>gwu@D19qDok}tg zCe*4GWIsGCSd2$cZV9QkUu5J9hKzi3-ju2@JKn)6-decZ;kLbEib;SNH|zj!e} z-&7zPy92LS#q89<-kwM!GH4N}8)yE3rS&vd?L#kD#GJ=3|InN>*VWyNw?$Bx>)yNySoLG1M^ z&EZY0XGYIFkQ>2HXF~*H!7TbsXhmzr`n@AKzvn)eimf7U_#(GdLTe%ejk z1=F8TZoIB!-qcsvF$`t82#??9=eUC3lk`PqS?1UvMPu7W;r@7*Rc_8sqlmoz&d#7P zbeUn|hljPtrf2vpq#XTI+Dy=G?cTtGb0_71l-mc@0w;6jb}~?+wN|FZaUB5XRwHaO z-H0o0Hb50Yg+A1zpG3{^U2ilE_jLQS!0HODMkLppCGE?S;F|9S;oVDORnL1$az`NK zXiHq8_)SeU0uR_^6Pfppmw_^whsEGGhHOyJ)RRgod6j(?jXsv{e=%Y)@{3n!W3*7V zC$^NZn!cN&N25r$3)Ug{H#K>Oq~Y!Fz{@Oo@^zrAu}W(R;E6T7TTNuS`)nU1aqqN! z*F7yA2%qec^HK^Qq)5NPx*)XDdm2o`mscv1TMVbQy!UFZ8A@Me4G+R6rI9YxZ~VO+ z3)1TBzKAIRV;U(wAP&DP90YX1uvIK(oZF&tkKc5s*N3;ha3Ey07%7qjZdJd9eu!Z` zhu)^eC!y&?7`E64q<7pQQ~jv6PpVSn=3X2_wU3>7|0Ba)VV8NT(Uq1ShlU?PlEh>F zRC5V#*x=PWcl1_6IllM5@dajoVpCsKE9k3eV!vx51L^EM-^63@j+YV>nai1_lH_=Fr%v{s3##Eb6~&&n3~sUBw5Z0E%lS^B#$ zuI(wVC&Bp9?rvh2P_~y5MB-G;;7Q~9E-p1 zUVozZeXCG>OpP9zP_xKMqU9CoUF)W)<(3O{9WCVnr->pUOREe2Csv7%A(^8Nw{c!&suPL%JW{0l0NY@_rC|` zk9zkDHqA3tQ?3oM7=`9NSL1;QX?rD)r8&trmkg|Dk++GseJJ&wmsfB#x)6e(x6s?z zdR`5!Z}kQbgPM051Ug_Oq#%i-@TA11Qr><3`PYU)zqs3gYqVmNBn;%1->+JGLh95Y7;h5yR2egpC>pX*|rK@`)`Lfkq>&a`I_N(h!8s5t069TJ+~ zG9-&R#zxx9yPE|G;v2veBt7X9SqNRjeVCIp+Q&ePEqHx&1R1|gQl^2NdFqoF|ZH1iqF~? zh+l-+wG%==9Y_-|dSJbBjv{8((rl9s5d=b=EjmsW_5ceQ>_Ix83nL)=rK}I6D=9?N z8fd>T^k)d zcKrz@OklsTZ6r(=FA24T4Fzx`dq~fhS3fIU^I^onJZVE#qPCdL`l-kM;F3RsSl7>I@@hA;Np$St7LPYusLE5?4Et z9s>41gLe?+S*v1VBU=(A4O?q#eSZrNiA2X7XZo`06b;O_mJ6BQ)Y2^h4n$Gctf_Q5 z!Z^Y9GlOQQu{Y1kJhdkUUDkQQ-ZHsmQlOaOqy?B$W+%$EDIl^^P}Ip% zLzxU3DY5WYrb?A9WQgN~Ih9#{yUPv=gJTMcA>&#}fEu(*}&_q{>!dl_^acqQEs zJUXlHnvJ*;*>EkhHw?uGd87m8fsN#oU0?#A#tx{U-`}42IyXPEryk0rWOwJbBXH28 zp~@(#8~j!xazQA~jW!hQoF`VN!_Q!QH&dLKhA#~-FS;ckW_pP9=FB}Ne5^WP1tDFb z?SlpUoNQ~cnf!T5$>F;GN2tkN*1wVSWw}42T1w~cNO=^+{ ziPo1$u&H-;E8NXg17gMWu@EfM+>@=K8Y{0Wx*6)=hfp5>r6z>yoZm%N#HOVk#JiDC*IrSp6@RWyxS49oRWa*kv`;FV|=9^j+STN#ZcsRn7Oeztf0=jn% z@-0+E)s+bc-nVxN)7NZ}jB|$RZr%-~sWL+WW(d9wophl8c57ZDv5@mamSi4872D6r zlej~2mG!UlX1YG8k2A$hfBl){NBd3jN76=_c!eaBT=wSpH|J+5XBMRMey9Fv6 zpHXqLMA#?%@#zbsQ<9`ZK~$T`<+d~}`%~rqQe1yxA^DpKDn9r2olq?4zDHjm!z$5b zmq*-PW3ubA2`oDhwt3nR+x3yYVk=mnMC2%KJ3&!8!fRu3XXiMTNa)d66Kn0;J8CWx~-q=un`*BvlX@SlKjR`!iS4bqKJ5~ z_&5^N)?NF%r$Ue47Jo|Vr`S)s)vAUY6iQ%ZvsK(JD+&9;N#Og5yj4EhG&6jRoTs+2 z2|LeMB4;TnDwYuwNw)tC&lFmD7;n%`z4Pq+zAI`2`qN8he%5n49PGcBRl{6vQ#A@a6Re7QSPd9c4HN0pB-DV=3Cs%w^?{oJkLCi&Hf zfuF4M z@k~hUa$}r`ugpI)gI_a;H-b1)s{#o?@tH7S;Jgx~ZTxyh%O&Y2jzBr&96{5aIZ~_p*WtWdny1Y^hMO;_?r|ijV;x#`2ZIugsoMP+jHOri+U!)1~O+t zoCL;bISpDozzG$2?X*Vx$x}+)EXxOSL7-a_wjQtL7RpoV>1k_pUSqk}&XE3EV!a0H zonzsu&rBMwH1Ey2!+ZOyFlQ}|SNCVWM;QND*;!4ld@}~3J-+-kGvrWV7d{X-2q?$v zd0FEt76zHx*7{16Mrn@NG1N!W|LcO7;-F0qz!fd;0)k%Bkgz--H%9OCI#{G1KRI9U zFn~qCE?T{(3u67Jod69e&0>|hr^iFRh3gfs&3sx-kR{5}YhDw&uD40*j}hF0>whNf zZ138@+^STdoEjW_Hj~TznG*z8w4yg0M&E+3v2dPaFj#EvqMM<2VjjE>^PDeUogMLC z-QMoI&W!qQHx)fgT>hvm3(@KFnU2lpVeqp%!>)N4bwsxve~}F34Cd2 z71)iw#XosHP_Sn{>wDn%QI{_=l}Ax(#1X)g_!*^((U663*19iPHbNG0SNjvyIE694 z9_|AHRa(qbu(G)v89vY;p2@WC|EdJ_GXLA{Mik{AgFfxI`s7!C}&%)7K~nbA)YBT$X!$C zv4xqALpoe?h7JN~wn^RI!Q;@!53{=>JcPDy{}E!@6PXTXh&3>O_{rF@mYWv?5j|mRlAubu*_ClPrL^e;E(<2E9eqcl9}+BBir|f zsPIhB@7q$MyDQ}AM#tP7%PBas3;QhsD;5TS!k&nGNRvG`Kpy@rQoR$L0C`ECz<${ z>)9vR0KYd!M-%k?^&Bhc>2+Uc8d3{+CyjlP6uCHGnBbN5n6#cg&~27jyhQM!Y^U-E zLoPXX)#2G^A(tRgFoDQPgmEDo71?&F2_>%M{v>gWFz0 z*_`bVBG#UPAG571Bq;LM8mX%{?8fG4bQGgckn_}NK92Pg$#1Mck%zUy${Mrj2Y+hS zcv=ay2yz}tl&UZmX{tYlH0P~SW?}6jwr9)q)y+&PtN2Z-b_70nX*?nQ&PuvrAYSNu z>1TVyM&KTU0UH-i!2XG`96m9qX<) znGfk5r_K9d8TA4*s&&cy<@)RJ5U& z51%Txcn5Qrd7e^uuH=SUsK+R0p?b(=MD38+;e|3m$3~(#jee4g*dhAG?9bJGoJE?k z1?TM^I!nI2i_{73Y?(I$!y93N=3^hM_a1 z0)d_8{=8o@F-K;TY4IqIF{tln_r%aR=_8|2zp69n`A9&yCgiglz`cl2U zZ*yE>o*y;)+%6wTpyN|5dQu7aB9U<1Ot9iO%F>?b4&5CF4f(&wwdAgBmx+&Cg1v&- zLw}*;QFVH7p>EgfRj&6zb<_Q1s!$J~zX-Ak;KErcWByZ@pJQib`i*PymA8N!KB#90 zB0!^@_9ZXqZ7y$wBzi}7adYZtZ7w9a!!6mY!H>Xc^`PYhBR5y$I@}e>K ze7{3ic5Q1{!HaWKRs;9ha)i7;UJ@jZpFO}x~p!XW|&sow%0(yNA zQRE@~0oQ60<>#y}vd^POi(g?qgD9K_XepY^5)QQu16bd~BHbs<5j7@XLl*mto~=i! z@kKCVzU2sy+)fyQr?1>yVxRBcO{fm`bU%H%QD+MKH9Ss9Dj&K+JF z8Iu*T6IjclRrJE!=PuoopxB7FT-o$@p_~0{Pkf^znpdAh;aeGGPKF2|;ce!akREw~ z6dFgtXQRi9^T1mr`AMG8u5-tu@EX$l)u>A=G%T?O);3%0!9yzbq8|u%Uj&D8W&yg2 z?aw4D44gMJ*tdXjki>`cD=>j9Tyzn)Eq)0llkM=7zt(+UT+HiiA_uwoA`Fp&vw%{- z+O}ej8gb?fo5=W)$a^4ELB-Ut!s#mjmKN_OuIENAZ&eIe1PME1$^>9d2i0P8B-`IX zRO_1^5>qo?WON)WNcJ?+)o>hx@Gw3^D36aoUlln6GC*z=rxq`PV`QlXQEkgalVNML z$s91{49N?SHFP{@c&$8W2n#^$E4l_KL7Zsq8#P%rZ0n&J zSwe~+Yo>Gg)D!4@T&2nS_E;S*9sL-=&;);}8-X>WfLkQw!Uz%?{#{f%VFP}{A2eFi zE@}d{2B(y~T&&L#AW0UzA3j~nTcXyQs=PS&k@-_6AXHxx6o`tQM8ZFfB<)0wMc};A z_tgAZVm6?weQ0P9seuE(nR>(7t_*wth10QDTZ63|sCr>!V{guAb!J7Dhu=UWH~QL6`iLDP2%~Z3kVQDiY1>T`+1qzqGK$W zZ#m%0R3va)f<7qi&+n#rK;f&|WeWxYqu>LkY{H+@8{sX;IQu&V$Vzq;!g2kgV__;)APT zNB5`83OOvOM67T%LsOJSQj&gx&tq!dH*B7CpfsR@siQIewdS)P+v{lUcV_C7yp!G!3xrJH5F*}wR26i#!yuJ3v$FKbp;eJP`__+T-3J+|YH zc+#86CfX$KtSG5oY5B@0Nz&z^PIR8fW}x718_%(yf(!;3PrcRgwNjocqz_+GF--ma zx?-XznlWqbA&?^uFTdt$G~Q}|{6*3FGuQb-dKQuTL`hP(nBD}N&F`>#oyr2yg0d`$ z#G7YD@r5FJO6uW1yN8vmme=yC`r;Xl#8Z7ORJBvyi+op);rK_v8JGjRI6yS4EjY&V z=L|M=R?j)P+r`BR8%<}c^N7O;r#8@?!ng|}TU!MB z0?!Uq9P`3K7?&do5P?lZXam0jl!d|1(jUU`Fz3y;)!ykvlsU1vAXp#9Y1L7M7eXTta|yEE^|)SLL}B8NbX^N$XO*ZU~dd*~~M91{m_r!zVn z?zp)X$~g9ttV`Byc>_Y34FNnoSXCwK8v{Hu_sAQXtO%?Z{aNC}a z+rH5>;4J11l{2%ZUiLtu38j<8!vs^jy3vdn+5@KWES%9!Y-kJjB!f1s??N55_T1X` zavzc=NTQl7E2geQoMD_H849xDMlIFy^5sDlC#`ci=g220;>@*pSXBW=;=+~(Gzou~ z!Zu#OWRWN5r@+=f3jW3M1or+6fipjWYom~d4RdG1&qh)riQfk;Y?4QSg#EelZ{gQ} zPuV#RsGTDE;SB?YuaZw;xmlRO^Nsi>qftVO=G#Ln_^yjTmG1i;r+SWw_wD9gi(;>- zIF_fb?}^5Qd7P}xXFCrEyov#L`ojcGiSz^CKTPrRLZ5}`O5c;}Bszpg4qzr^%SY$F z{Jd5D&RJ$!l8V(qey5#LBtK%%4cRnBh=4>o;Ekf`t?%8B*_bY;X%4@H+CI3Bp=lsf zAAd#m&e1;nipXp5NeF{cTr2WKu};>pa%*qgg@v_=7l`(Pl@c^T`hl{@R?!1OgAGeozKCBa(5X<;zF; z<^a=xV>qh}C&^j%cWfmn1#HkGupFiRs+I0N7X_$Pt$zbc9b$Il=15@e>oirS3TQI@ zT#PEO0OcF`;>g}@*W)NH!efCj**bmbRr$tyU?}}g;jwC($-ef1CW%p~JucLFxf}CR zPPiMrKKEiqOLPRZ(TG18U0MF zB!#cQCXvI|yYk^;rMW~E8MMVe^((8G*A-t?CMd__37}`0*1K+Z3MOfJSHYrlxN z?|rM#=lK>?PIYG@85Bn9Vo5{2_>RtLIW`I*?t#J=ponhXhX&eAH~XO1)z%-n-nPq8 zhO9D;JJm+2tlGrLUpQoKqEmj(jFfHbM2j8(&L0)YlGixQEotP+t zdV9R*h(~Ns-5&x}J!EN#WE)ygCU4sjs6TkUi4IyZPxRJjg1Kqw$m$^GCc`vN#&j*if@wR%Qo-v@yOA6mcAdF1*-8aHHoFgbo$>J8;yuX_DFt2oQYyOePH-(5s+6gOyGx} z$-!3^0iO39S#HiE@VHZG)tx~{*}XnusQfV6V3wsla%ygf-b9nX7Gjg!vV&d zpmADx@hjC~Gcjwb;MpDPn|#EGL9aTwigZ^G73wd)bL%@w$3FAek6wJ=t6EAT3-dnq zHG?k{9+VO@q`19#74AW|jfsD7{`tEfQoBro5Z#|Zx_;t)@oki+5MMpQFmgi9=fogU z;;zz4im3W2r02#5sa+tv9CGH6sX6>*+cwrfq!OV*j9fojyie(&|NFGU|GpH}zjx!XA$)F8;JF(35vV#Bhr;^2xt2<%$FCNG1 zJ92?sXZI?lzC>1~7Q0!i(-s@H zP|65PQQy_+vUQCqT*}+NZaoBK+nvc08Io75*$6=poY5BeOe~-(wXUE?YC;4~cc)_3 zIbSFOaeLmcy8(@J47^Tu1~4XaoAo#~_%9J>ulN{&SHu>@QkwzNY@qtDPg6CXr+GGqCvD@iY_6>Z)w&Km(Mf3DS2%b{nXNa zWMhnXRTYjYhrV&urVUmI1HMcRP}aDd59P+n>MhbKk+z$u;@`^ZmML^FDOrR-u{78{ zFtG5!{ukLm>{$rf>eFMwATINam;r1nY3buWv`De0V4Vf`htbUo!Ke^fiU|@JMo9&|yplU57 z63fRe^wGYg7c_ecXZ|B^vvB(@uwV~Tnty!^W%rXj|LptPLB8-~XQp)sk=BN=mF3G+ z z5=!rt`YpJmr@jB_;L6Xi7}^s~n-WCR#~&ES$jzlI%Mx@OU#P_^o_CctLD%y@&)ju+ zmHF#qXa@q0aY`G?Db-}Fi%jx2bE}mvgH^VdSZAuiqODNGGUng)Z@ITne~f0%&woXe z>u^-0M_id6Am^DDOnU5K#2-#0?i~MRIO!?1@Y`GvZ&Vph@7oBQ8)_z797M_VX-9Zn zG?~+!(v#^3%V9$uW7Y1TL4((Gw^}Qfq;oO9m4(r-k`_MYrU#?Hu5Tx z{kp9@Y(zInpig{eNoCmdJ(j&GY`j}MOK#U*j}D$B8Zwjlf2;G^At0tH`V3J_!%bXh?s6eo-pHS?YkY6hrt!QI1P1!QCUX9YMGgq$`^cCUXptGb9bx5; z?{5Ei2{FurNi+D(P>S3&K2>hFO3HzAu#Z7@Ra5y8di!U~d9GsIbEHMR<$+|LmuH3z zuI4K_b+O_LM3xG*j2JG9@7lFfx%uc%q6-ha0VXXEa4agh^9*YCsC+E|=GAp`QOYeM zJS=7y+jB1u8#C0=k^&<=jC0coSIqMas0GGS8{gPS-IW246}xdoAgUf$BO-*uaARsZ5H&PXDnHnv5XM^1(AF;KMcwQ)dfB>TnRc zwW5)0Y%-3GA(=16X^NXhDy2kHGGUHP;LB{Hi+?1GYckp%@+ayCsHaK!KMA7qTDXP( zd4zoK3wxI&Y>pLUPBBxrM2@uENrBTdf^tYSJ@NQYSB96cVywD5esE%yj=@dYqN7mZ8t*YfTfOOklKP1v}0WzoT5w5t9$}0j?n5BTOON;&b1QIm%A;}uOb<6Ja?*gciZ=|C z8&BtzXq$;KFc8jf0KF>cl(t)Gy&!5wn%BISoLYqwAN-sn1}p<+x<5aXxEb;ZW`2x~ zU6l(@3s?-LrB%N*hCVDcZ0NJ{j{Eu!@lV%*uq`fqAOtI!XGc`;Wu14jQDgbg$eJRZ zDrhBgP81i~*Z}4I>tW35KnO2Aq8j1>6ye*(hzFz`4H|9oQ0bGf8`sKr`p~6>X7msF zic(wJW}$p*7MLe0;j$+2#X1fA->+8i@vK6fQziVwDTg|U#*w!f9-52?EMauNmcfUn zIFT3$0>^Hzl~!=|oQY*1BIeQ+7Af10ev>4;UeIIn4T&ILw{dFl_}Ej};J!c7)ZotS zcZ(#|ys1E8eAxlP3nJ}IdMK_?~#}z<6G)tf8OkA+qj%i5xVCFvQ%)2( z@dm8pvY>X>0MshgSSk1op8|P>LDs!PA#(M&BOKEKpTa7>8dvQJ!ZM~!sSb8!kT7#* zwG8f{4OF^Izn(K|@OOis8r)n2Y%vfs=+!wUqe-ff@Y!|7x$I#XGv&TA1v4bohIQ7D zYG~uVPOT?YJbAGqn)emkzm@nY(Y+cCMi)wRN#eW8Q48jm^m5AYsXI=5R(|&&cou{f5eX$U}O~ArvNzIHfYYXcW?ce5Yn?*+G*o@YLnLVHf~(uq^|jtBx)%dB9Gp$4k)) zLymcl;K6l1Q2{s!(I5K6FS2RT$^c9&6a@T!diVXh9qM*cpxXMpSsJxLln9#R1CM@E z*<~5@R{e`Dx$h-z&Rlbomy8dN_q!-Zy4IIWkEnP?q%k#)csLzpWQ#k}6`;3j|Z z|6u`Ob+$MGx~LWw=}es(nK4wtxyQtW1mP4a=bB`fPp14vGro^-Fi{$Ws1|J8+te){ zLdEr~Eql=huK<0700pi7ky1j^F3;rZ1Zg$ACTiz5l_jT0wZn#MRv;>~&sAAQK`~-z zKQJ^Gv;-1r&W05zUTcDm{Q203G-n%~&+d$yxw6<$KcIe)cGeCXDPfT<@!~9(mX>;# z`Af38rSLY+#X9iawk6@`h);iaNt9EgeSseEzR8lN*Y?o_#zq~5(7vu8xQuQna9mfWK7cB#088*1kktC*)N zd$z{5Ij_q%GNNxYMAT?hbAAVZA|nr1Urfg^3T(Z(JhuE@|NZ$I$t;_3b>yvKQ;J^> zbrxsJ127}xIF7^Dz1EKMlspM)xD#fOX4LlPJZf)nD$XylhGRV@yf9J9AZyFXPd;lZ zV2D{_$et%Zv3TQz+>IHzUpr-UYK3t{vX_qlXUX-H_xfG!Lz%DQp;t*dXU5BoE}aAv z@bAXfThYlCVv?Hu46uhT6?XVv3P8yoD?^7tTdUhl!E}EC(NZ_$lM{j;x@6|N>+gAH zne&G=fkN#zqPVy-mFAZ19W@!L|Wm$w{Jq>q~$BM=jy7+bBC+jPGGwUZAeM zwYaAHY(Ya;FsUI%VuW4Ia9Xxabn8P;rmdBm(QEe%AE{v@{ab^dJ?BKb4FyCr_dW8T zjFlzuhe}Z3-QOB&I1f|{-@wJbrvUMw=jGF|YlZti17HoD2ic&9^w-{(9t!LAc;Qo+ z3M`$J^2MlGvIikTwZIcB=4CB@GXMg!HV4SZ&@>vusYTxK`Y~gTzCY`#7P_xkEq*<$ zKizhsknaUbq9hW#xmu^77PcvWXl}-*>j$sLfDPhO2^QY8h&m7lcE{o_>o|Ci%!V!k zMD6FR-l4jM0w?iHTCfc8cUp*-!t3ekcL*=R;l6oKZ8{8@X@dsGrhtT+H)4B>`u%tD`z;tW+fE+O&b`PaMcRJcQIMn%UYsT`NuFHOvGk(t`R(z^m) zvt3G+s6qjai*Zj!>Qg|1_ys}F8q0n6aT8#bwr3V$FxbelTtpzIlKNeN#YnvyWnU6A zQT~$LW{iZs3x&B0;A^T(9%hZ5JgT89XRv6jxlO zhX?eAf-D$S%H%oCpsTdmwb2>?uX^44>f=V&lVTB|oSe!Rv!vmJ7>FsZIzHRjC8Qru*M1NzG7i41!l@axkY?mj+)?OCYWNHaI7 zwV8{hQ|AJr$I-gZE$PU+Cr-f0kR*)Oy^FchqeoTK;UfAyLA%iPoMFx(N@h#H|NP>H zR-X#ahR}ZH8(f|DPIHNQg1|?Jch&K|$|cWEqj8DwMIe4Wr}byEuUHH>WPcyhwIKK6>Nlhp%hv8{5F9rNLyQQTe zc!HN$|NSU)68pl!uams1sDoXji-Io3MSY?^) z#IYm?%^hTd}umv8?Ocw7Z+zAaQ?Qv_-I zU>(8x`oP3`{*Sxo5_|$9&?lA8!PLok)dLh!$AL?v{_QCX<>2)xt;rE;rPyMZb69lx z#Rb>Q$>wN!z1wad+AC;j99eh<-BE#22?bcQ$KKooQX~*uWqQTXT$!Ed^i>_--R4W6 zMdBS?g{<7}538Om$&7HC#)XwF(W)N1<@iFX5ses47LoC3#WR83)G>J(Hd8U2E}{Tf zwQo9*jXFDEq?|_H^F5>{X(5ku`AZCTc2G9jPhIyXqt=I#J7%RMQOyvW+iOU}&v?yR zfeXoUav<4OeY7-3;e5{)a(7y@U~8RdDwR;IHyw_dGX-FInop29<;HP6a&n_(48VcU%q-9wbSM_``u1y_VzlaX7^sn!C@FWMv=1dXw_=b z|F+8Wl*K1i+M~*0Dw@C8xQtUoD^1)jr60!!`IYv|kCTjd+rO0@1VjD%N0c&4t`TMS z2`z>*Oz8pgF$8AIhlb_|Z8y!7c>4!BCDnW*d|1rAV13hZ3iUjclCYosf;)xShcY%V z<|W99O~#ff@rj$wV(4XKNlC8CPA7fgNDsHK5K^#_^<=S7zJ?#AfZaHy+3s!-Vn6_| z^D2fl@GDi>@9M*Se@H}*``m61?n2=ZpK%D3lYRg+B+}vc7V~rCl9rp%qEAKxLARQ9 zz*>u8{IqOb;7X*m7EpN6ODV?*qAN{1JjL+}UcK@&05d;c5$g)c9wtIyI)Fntk!Sy@ zdIC_LBD9qnISYRXJ=$%CgIn$vU5db zGn9lJe8F}it}E)`GzR&|*YshNHLUTRJ#c8Yo_DzaZPXe-g{@Q@mROUN?nn|naIkR% zBUr6KjZTL7foOo)q8{xzq1}ywSk^oR^KiA`o0yEIaWNI5jFmz@fO>yF%iCJn3*1q4 zewmSwqfv_Ho((?($JI&%jGgPani>JnB{@2*C~KlCo((Z*cAYtm>gw&$eH{CaT)co1=M5WL7LCjBxCPr=wH}KoHDY{ zod)lT-nO0wIRADWh!9q8=rYQApb#y4uk{lp-(_8p)?3*c_ENQyvCFS@Y691-=9`SJ zk;eX|`zJR6y~anNA{xy3?{Vn%Sq@BcjcDuBqimYBxH6-6l#AV&KacnT#l7Tix`5uFEtweDp`+Q5-7ZhViA((SsK z;jbS}ESYw{icI!o2smv1!6Qo32GuA~H%;MoA#F**!*-l&xy$(B(m2qaxB$ug#A*0=->+Ep*iU>zjd)?=N+Ajh|3!8m@BEtsP5uY5th)994nvS{ z3JIvixeU=*{TPr>N=jelpauXCi^B3=QVmiqG9uDKZ})B_d_?@|b%^#dqfNB~mY~GA|B4)DGNz9UVv*8C%Ddm)dsQ3fX zr)uURRceu9Tp3n&SZhu|!%V^DNT*Y*{q%PSFBF@L5#X&O%bwbNJh;e=viO421A6!0 zSUkd72`)onXhx_iAu2qbyMAj(g0KdEBn1c?q7BuSmA%+&_-KK?=( z!vJ~tODS9SU4i9jc3SA+Y;DsF63%-F)Ord*O@-?Zve#86J;p}??+Y%tFEqylGKCV| z5gLQRXlWLw55Ia@HgoX?b~kZ_-ACnpH(J4{dwp;;%+MDXf$%GI?%VmyXzTfRj^F)^-(?` zisXc#XUB99{U%?##65S5_W&!aI!-;aO#H9S`%F|5lMIAEENt@js@}#l<_s=*IvT=^ zBwsY$!qE?=Utw19R0)*8P5nggUMb5_${BE-jlUi~CTTxwQ!1InTeQR4og;?uW&W0A zim4xy-bh9=N0QocG#?n<%c{lesKA8dz;QPyMeIc-)Lw~xL;qu(Z*SQACQaANXl%%! z#mJCm;fRb$GDkk@3vq9d1lcT7yMatvi}Qpv92#>Q;TyS;1Oi%}?&KxFZipPa5h0`B ztowbJmBIbkbm4_HOjLkQg?!HV_qasJsQhDto1}U$_JBrB<^d3(0th*eeOWF3+2(xI zHF_V0-TZ&YC4c!B^D!^&=S+rSmNLmYS!rU8z`Wi>hO75>VcB)RR~Jz^VZ6ffV1J9* zqkWSYdJ$4O@1>OUTr78?r%pX*RG^?IP2^-hYvW|y2fjT zcP9+E#)tkCF-}?hAAe695ClK>@pH+pdfGA7KY9KPIBN=I2FJ%Mo?EN7Ttg*oVnp*L zEasN4BP_)y+ItlXHtVGsThg$(jFtTzxb9sr&Xi zb{0J}JZ;NNi9%DFf66j6%sKL0(FB%k8#|!QE^({o`WpXyAWL@E6EuA^I9)ch=8ezsk0-j8#`x z_v{E^WDn5edacYBeNcAVobyWPgEQ!}dTlKIP0>PkP_fA>0w{Y>3M8uZPMlr}lrBK| zyC)0#-J%;Qs~!GC_=cUX`&W2R{`tl0xJbuuWW6Du+BS9h!rof6(oI4JIQo=5;wum( z)3ERb*GJlg0&Xs`QHXv)k4w5GsJw>K>O?2Wryd<0E>!P|Mq5t3!e^RtUSoB<7IL}~ z6!Se%G&G~F-Iufs7j4gMaP58NQ_Em*O~(Wn)4#4-lf>QUMZr!?{Ei>Blx)|kXULGT z$GS?UN+hk}`;%^ctQu4)qTo8B$13Y@^C!?ze$|HM*d<|Ym~lqe=BLi+vdUm!sEg}- z)zO-o#=BY_w;HoL&uF?S4)QJeBrq~0WVWsh;A?`EMP_=;RT%wXsQF{HLqJmHh4DMq zq2xDUP7EYfG;#pE;`U@)fIo&$hxTmO6RlxRuv=?)4&EPYb%`##rXLYKL4=hBlCdf+ zP74ZbkB-A}Jmlv`%NCy!OFvZbKfe7kms4X4kC{z;o*^i(NBuEhxk8X;200@cMAr|T zTgFRlOEtXlKZ`o>IM@uf12;n#e4OSFTtt%cPQZ3f_ILaSS4T_Ji0|l^DHbz^Av4@1 zu?&5rsmTHjGYSb)=~&-)!iw3EpC*r*#O`L_GkivseDOO5l5uoj%$9#~728>8`g9M+ z$>eT%6r+-!e?!=yuhz;m2boUEKziG`aQ%Io|>CK-?Duc0!7bN zrblIh(>X5#p8fS4X&0eag%+K9gkMN|mw zgnV$g`!A=?%h zQUHih_l*VVB7c7bx2V6{*^ms7ewy&sc425KduQtFonf#SN$?0n4p-trsI?*>U)*n! znzP829DwDdWo7RdeE<8wd*FEj%#Y@*eX;b&?4TUTVboYqO7Qn#w_|g1a_V#W(Exv- z#(vA~gM0ikAHbN#vRLtENO=G0aZzx(i`#=0epJ|~11*!`;QzKv{=R^10k8Yw--Y5) zc5mtNSd!2^VQ~`Y9BZy`sKqjAB5AiMJWz<@d70(nY0&iRhcf=b7~wU7?{?es`~xb`5WpsXi%z zI%eR(*n|H~cK`d}`**n*3MYP7ptvVEUT*!sdX_8MP%A?CX~CX z+JB!w@Mntu_7eW}qW|2B2U-mOeej z^F&|2A27y$zpw1We;uqIFS5WFfc^^A_s`zNH;201xi6@ z+-? zbTNSF%D-1CHd&vB?Cg$LFqFJ#PNR|Vy)hiufgvpsp{R%2&HX$P!){j2ib5Vtg%A1s zBAD|!3hdC$%R%4kMnAm>$_d|OByB!cV{)5gpA#s>*%(^^Y z{|RFE4D&$i{5wZ3Rh1rKZtf8GN8b+*jF*dp(`ZznAhcMr+P z5;53EJnnAAc4z7$8k?H7+Cz?AZ_y7nLynq#cPYMG|N5{!c^UFWC0!c4ex*Vcc?z)C z2q*;X*#HY03=e+|O4+Zv-fK;j{@%>~$pOG%?Qq%u9VvJ`eE;<&KX+N~#GGliONE&c z`0CT8={H$FieRJw+N(#;;?<{69ytLSisuPbzY132o5JJHak@GBF@@Le8BjIq)I1b+ zUgZMRx$p!Iz4o4%@Xl!JR2JPrWiYJd10yETpKOrSLN6C$i}& zpYQ)(siM2Fec9rhK3S|M141=2*8vP41O$xpNxdUyKwAT&BEWwXeg=dmuswa7n_I=j_x9y)>JQh|!V0lmGa~nMG>4~AW>W_mnA+JDJBE@8`UV z3W)I1skwCm>PZ?toB7CBOg_Gs-`1qsy|4lyo|Au0vdCF8oP^Ca$zA??!ode}{~K(A z6$4Q)3zVkp{}ir)Z=uS&%lT~e0hk6XkHOuz;^+XpaXEiOM3FT)AAbJran|N&&hZm1NhV}Os$i!;6Xp9!7L;BF-Z8J-`yyA9FI@k(wBtk2PR*0UCUdR_ zPDEbYX~$B)hDFCX0E*QiAK1ct)9Tt<9+;Zj^yxBximFRVPGqYRs$&0l7?g(nYvw3^ zpg&%44?uQ)JJc&3gL=F%1_p|IMD~iy>Vc{KabACX7Dy>8QrbnAW(kh|3S4}5_f00l z2G37pfh$}m577Wo$n#DPB;jaHVFmiE_NFF+>i7V?1gCL*E(Zx9%-=(8{`2v&#Qz)e z7BDd+PG`$-nT_W~Md?dIa<|jWrS7|4d2zfxw6+$y zn0BuYpKtQq+QFSY-=6rGXx7AVaOxuiO2$jB;99YV`c|UKsPRLX?~@m7J#yGviCzNe zYh(;VwPOGcb>ch=7Q+bV^B! zv~+_s2uO>B(hbtR(%tpkdyeOv@ALfT_m8vV49x7Z_x*Xtb-k_(Vauo%QQ(m7g_F?V z5P9&bnPt9d_J{+DQ&nLs`6yE`3|aQB;Ec*T*#IdC!@v?cR$4+=WBybIWi7Y~WO}mx zn9_v$ioF_c5=;y)svM|bH)p#z-uT$SAOKbxqvN_e2CEwzMI5+T(|`k#9+hLGGR5M6hF!gTR)~D&lrU<2OO!qq>tnoBIm6Tr>Vw_jlbezttfc-r@17RvkBP z3UjSKU?sUEz5VzKXJjW@(8mriFZOPfqf7r`?uo9S-z@htURuu3!SQ~a)K`1bhgZ2X zcfdex9E@r0w*%YrQf9w>JDyRuwLRlJvc?DN*ZGI($5miAG0s(H-g#?z=>(X5DnHLe z8_phDiGP1v|E5%gi>7%i74O3Lo}ku`GnK)!XSXWd4Zq7Dz`lQ>Y&cXjVaR_J?>aVI z_!RGg^v7U8nwr~J8iBnN^gXMN9`wt@$sVUO_pL*!iN99Af3D)tC;yc>v;tJSyRUiE zd97*Zzy=q$Iw_`$8_469WWOG+Z6pFb(s9EVn~nAUPpP#;7-IJTmiNo6iA=0vD^Xvu;zaZIIlnF;SKEWMj;1CpwIRejvSSs zccph$d1n-X=0G8-YV`R#h|1WUYa|J0db>0I^8~HpX4j}O?&dBN_#K%nN_#^@fng!; zFev7cVeR&&W_K)~;p4n!i?!plMpu;t0u;HqM%SEL+v%a(o2z5^`KYs=OF_e>c=8vz z59)o1qh0u1QZ)l~H>frV_8Ob_Z1Dm(FdC&;Nu}rL;GTqB@YF=b&xJ->+}Y0ESAG#t zTkk#dcvl=`?BQ|Og8%;Q3R%%-mE&Fwc2r>!f2Nx}V$pY6G_?GK3ugtX3ldrY;83Ur z8B`#2!)0qasGRQMYs$~GWROV7r1yuPL~V3pDmw=UqdQ}nNJ{wMkiWlApPelm?s%EP zeNRf;0!#Ws?$!5@<5dNFE-Z;8l^VJjMm6KG2RsY~h$1~}y&2J?q^;h#(-Lk0z2dID ziML6sU9^QEgW@c<+PVzo^FA+^l&^~Tt-o_|UQ$4ssGHBQGiiEvwQMYWLo0U0ZweRg zIbEmUEYNM%?Q^&{-_vIbJ~{&qpT`;d`L5J1JKJ;J5(5Ry9J8l+QKNRlmpR7AWAcoP z9qw}?^P?4Ocvb_a@(f3|*zmOiNA;WG!yB~|SU}9iwu;H-=^!QX6PgULUHx5t;duP<%9FKpH@C3T|(>n<)!mexKE);tFj$dp|LBRO%L6JE1Z zy2B$p1J}QtxPNLJTC#t;jzEliBAabiukXPR5o$!2Z_OL&BCUd#(qbY|eY!9%)QCBN zTFOcn^{7B#fJ6Rs$%0-~4un+UEC&Pcd`iRH4P|h#<%4aO*e@awL$j!}#Ita-#D)il7KT*OkM|0WvyL{? zC;Yb@U7XgO8;&=a-@R++5~{+ZiH7e=e|}^*AT<+cAw9JT^bBO`nVC_V8|AHydWw%Z zYY2S}@Xd&c)Q1r*ky{cMW%`W?po1S=x!2RGJ4nUWG3r-QT6`H<)q1dm5oj@b%zA91QZ~KT$9RPcS1j$h?0ThrH++%#<(=c<$v8(sV4`GF z&0!l)!@)jfq{-I6a^+=S?8x%G;ITzAOQq^_kLeR!ThR-t2YBa}5GXHs&9RsrvSVJf zv~)@y%zQC*W%@-n_g8{_!Hm|!f^R*wDe@dn5`n1x&;FpSo|S#R6xMoMFttf6#6^Lk zjn2`$dijT$rEd~F?K1Ck?B8{L731Z_j=fAJc3RNYygM?&KJR>9!fE8_O*bxV#`Dz7V3|?r{iWF@Ek&svgHZgXC>bI0Pms@rq8=3{4y7sgb9;l=*1-gV4 z8-p*7dGqEtO&4+OS_z|X-n?<{ZR?HVQp*t0ICM-H%~Omwd)Le*uzT)c{)>mS2X`&- zP%-r(CK0n{;2*G&r3P-GDft9CUi0rChtU-DSa3Uqkn=gl3H2jC>G>>W`&1-Utf47~ zm1C)55Wa1A99&~L_$G`{klPbUDML&Yn`W`|vs`3K6V+tp%N??N{lQ!0d>*|0fOI9s zSVn!~Z%e}By__iIG9?_@oQWfu!fVa^vQIDdE$?u)Yz_)0fg>4Gaw3|s6SPo@iKj-x zO#!SY1Wy3jss|v4S|a45A1Hx^_$v1=c)px&?YP9JHlM;Rg6`;KqDskG^bgb$R@}$v zHvZ~(0VKzGHCaTgI*xOTv*2Wd?ARP|Gc7(g``y`H!Cq@UlaRn+*mZ+xi*fSarxrkp z#E7F>9Xk)z-}7tuh;cfvC3DMSDaN#2ZdC=+T|uOBIrOWNqJ!Rsn_I7ho3_ePnzZ^v zc519wSeAq_Wk!}6e2JCyw;HwD>(wn;{OfE>X^($)wc{|sxP@Z9V-%6zivSskrltgC zqp1Qtv?00%w|NnxxkKQihQVOHHKd8ZHuILtu$z zr|REIPa})dxl~{N9mgigTWr9@g>3~;HI{?2`}a_nqG&$Q;l~f8`RSZG<$qx3sj|Yl zVhkgXuPTUC@g~p9=|R1JPz!neRh*ym)ms-|HL7_ZUMWGs@VjZk|lvLp21M<`D@DP zjolSILOO#No5N6cm7Tbto^^#E-ED%{tS7v=`eO7$*605r@4WeC71MWkR=s z2VjK_zJAY)u82sFL1OFA^t6}-P#0@SJ>56MXu7Sj`W0J_YV6Aa+RieX9+ON2kOA|l z{F~;JR-4K4N-Om2#F0G3&r0tC%vbx8KYEtT8nRM7jk#gYaijm;W?(8l}4ub6pDYVZ3kiMpPJ~G==rqn%nMqNfQX@he( z*X)VMQs|LgNi_B`ar1;xVdNp(TP$q*xyn9_8fe^XrMGang1rhPn)IEIK9J{}3I%yc zO^L9-Fz(SVDtv-(q{pK~b5rvu)(U%#ReRCg0J#T4O0>psTiB<4Ar2^XT}mx*W@x+O zPIrV+@b#=Eu95wTdJt~V(}PM-(=(`wcElZ)I}|B{Ib^b!DSn06vxNrPvsuDY$Eq#W zs&5)p=NbS$p4COco`Or~S3Bq?|IU~D*cB;_LvI~gz^&S5Lumz|+(7*}^4dz_8DkGl zfY!6KGNZ;ZzK+R6abF)*X_TOSzu-*Uws&OHPeJn{@S*@1ibI(AP`o!T`HYyv12F0Oa9`*{ts0D6hWx-_u4{MtxV%H z1YJoXSp(1zY^02DzD4K`R=Fu&Jz+*oW6Cy6_48 zKZ9fZ2mj7SrBK$v$nzD;3#sZ-I={9&>2B5SA~ZRhKx-aGEI^T1El^8aKDKM+GmBFo~n!_-PD%CXvL{Kl&3MIHa1^@Ip}lY2^-}TK2fUyc*B1QT^5&W7Xyv z%K-iAc!Cv9h9Cn?;b(B7xp_V$UgDw3^0a|BPxWK)Xnx_-##;ShG(V;SfFSg;h1AV9 z-tpxw)G_(0JVS`)v|B(sJIqGpt3!M*Z|~k?;^C+Nt%OFtN7mQ6_OD!)$qoeVFkUw%11K(;>43UPT%N+qPWC^ngY7K`_LpJ*<;G*vc zW*6Ela=e9V1XfkzsMnzd)~>=ZMV=G=3&bSmY?&yTuROn_f^1HF zY%@Z!vi25FdI%v77EiKRsoipm4FtHt%alJb=5VM%44ZHEPaa@ccx+$VoXVlv8GKO= zt%&f?#7xg?d%$mUnY(Qh24E^o?ssGjgQRZ7Qq2+=x_Qsds$oIUGQE3gx-E=iKHp@X z2fMY7xOXXj7!$)kXcd-b%q%wK!uPEDM`R9M82>wFoWc>g1|-?QQJaa9C421&BxF9E z@qG#qs%l>@ly5(<(TC=O!SwuDU5HwS_~^C!k=1UhARBi8I*Xed7tFnTbo3pZQ8Po# zru}34Edp)GRIxlmIc!j{gRo6ZHk@e1CO8I_mc$&yeEvuem||7@<@gd+N?j1*ay6!nPvV){+S<_Ek28POMLSHls1jq97 z{h@LMqi*${``3m`Kg3qE;!Lcf;{Rfg9NTIMn3YroO@LVgfHd~2g0TVLOnKxtQlzX0 z6}1^T&A_;pI7*eCek_H%fKlTpPu}dwUnqdpS}Bq^!Ve6h_0b3c|Fp38@48By4^?Uf+7X+~iUU2}_5LA^nej*>Jz)Mo~=xOY4LdN_J-3ExUk#8mev!yB#Yf=HbxmouR zC9MC-@A(o2u0vqUeX7EjrC4d`#bZBnDj8Y-T_#9kaQ-*1#ZQ7WN{V7I`)i|+(9RiD zK2-@In-;DQeo`to*^-(J?3k%*fJia_l|xvHy>=hygPSWlsLXwzFOnEEzQyg&5RdkC z{XGPLSg&4docmY!Lc}EeMv5)4KQ0y5z!N-cyszH63}&`TtAQD*p!fCp!E>nu5GFSS zhF`x{)YF@UB>k8dOBvs!E-tl1_*+TN3=Huo>czE&grMU-5J?InW>$`8(aD5QixvnN zhEja*EWRauaY0k#*#B*YC0(u#W&wFgFWVO$+@}xQh>^#~_4N%cOm`A;4LkY+0UGp}=@*B%XhiJK0>{-Nk3i{lpI3YR&r-<3V4#;pM$-)N79> z$1y!318&QnJ|rP00u&<}_m3lO_2*0PRQ=3s#nGALe2|AM?Qh5+rjik;@YNQH{E`T1 zh$P6WxuEi^#X}?u42L{=1?`}YN*?`{+#Dv$3$6E`q?=tp<7kn8dTGKXe8YWAmey=7 z_Kc#5wEuDsf1KPW4UT<5>^UIb@saWzxEgwAN!=e-7U8eUtP=48Hzku%B$PsdM2_>J znOwATrFn|)W4|PYqaKSNmU&dX_=F-FvOFt4dmy28yp=>KuMvB=lt1wL@K&#d9kpB) z3Uh9fy4V)uS`lnM7O5a?A3QTc_&QtZtNb_X{jc&+9{TV8Hna_>l(bZWl&xxAz=t|s z^;GGxP=}s%AJS21An*F?fo(_s zKM02k%1{$%03s80V9}L^+x0o7CqI%tx8-^*(xM8Mao#p6)%%|K^0t%T>+5oLIPFU` zHETaVG79421DE>5`v6`MYWG7Cjdq!=H+4%(8d$V|Ii=}H<_^&Hm<2oEK6w8~Fi-xj zVLo2hG2xTW*ldJ&DUOH z-1s(rv@^a^kk@#+J-nNeU4nRhY!=1rN1 zHMC?bd9*;#cdaK;H*q?|G`TbKYTPNFu6F?d3E z5E7s=2}oVg$(D=ErjTdk#>Bv>P^>s>&UB}F2gR3SV8=0}$eUg6p2YkJ^g6Gr(vnji zznNCvh=2R?Ndj9kGf-8sK?AK6j{<{*L_h>Lwp+1wDOq;mP*M_?b9U@d4I^$TyBWpI zSDU(@He7rz+hZW!2QAK`rK#bOyBMeO5ZDz7+Twvq#b5zL=F`2Jf!=6A3PBxj*2PK| zYwonV0z7JQl%pxjD3G^n+GoE5hQiA=a{d9RU+o@*@IVFt-~oDo~1y`;M5UL z9*w)dZyylj_-M$G=NocZWu>4+v9@;Z6Ae`xnj0vZkjo*VXAX-|K8^(-noiDyn6bAv-;X~?of9&=l$^N1SHNV*$5x_Xc0*{MkX=%4C|21+zwqB*PaTbnfh~WL2 z&$wIs_R|7!bWQUeQKi_Hfd9(#ai?z#1y8KYjHyN*W6sa?iFjxjM73P+VEJ(n+IW*l zP`;?Ol`VeyJEZuQ=bHw~Dp@B}tJ~Wpd&o>Sp3NG9Re07*OMhAO{n6>2nvM@lqdoHN zSM^RxC2k!k7s0KdbKAWY%28`w}G=N~E3Y8ZOH{v(Bt)$;@+QkT>X_1h_!#pko> zJ7*h>^@lB*7;yn;LHm*bvs?3uU4+C}YB{=f-P`2@i@ zRW(Dff2%iv`7{6TPsjlzc!M$DGqYZ6ykxSG9^?mCIy>Qm4pe5X%?{rDin>_@k+sF^ zw(;?xreatfkcix(qd=$PeA(+(!;&UrE4gG!6c`Q{`O#o|iPq62HFwL1G%Nd*$skR@XPiWr%iKg@!c*Ca+y(U1w)|-a0&WNMwdm`D9^j z@|v2ueGtjwR_z>hhc;|nq{Fg0M|-1@kXzLQrZkvTG>?pbiZtK+vWb75USF9FV2nZs zpFdxDp6(LeFJC|%Vjsjy9oQxO6pe2HomI?u#t1#$zdY~X{CPJ@GF>505&<-WG$VZPb3N`uKyU;d_3X}w7ges-4ULPh;^Fs!`t&mFO3iJqPgO=@sF zAya$e+Y9mOYI~>f9Ss*CmZgH&4eCSF_4bcr#k|p2v@4(mr3YBZOW)wRl15E3n2K93 zJO#vYS07}50I^opeuz}@mnS<)#teaik7__f!c>(-_?+=;$Mv30GGE(#3XI`gZysyQVZ>tsttxBCN*Kn`@0xRW^m*}QjxdN47Z zBhMau+~|J9urt%B3%vg+=s81fot42L6mSG2NWxVG*NyNT>MS!^RU3(przLJ&s??&6 zfuc`-A&UeNu^VVpkKnCgL<`r;1*X&l0WpL_Juk$7Q_U*;>(S~G@9D|O$y!a0zit@_ zH2qLrt(wZ?dn;nl@;bR+ibejEW=tW9LQnuWYB<6z{9FVw1Sv$pGlI90x~mdyZr4+r zEHhd;K!__>r%7UD8S}-r*hb(lGbsQx`H*v5+rg82tNMeA*tNSrNxY`O9-ilU*GZeVQtujK=-^z-x4Z@n}b{A{6A?DzXA z;?g~8lxdLu#dx7CHPR}}Y7dH`jno+KS?y_wAKnoD;H<@EZ1s~6D!-N#KUp{QD0>aE zbN?EFw4dRMxYmF*Qge^Q?@H&N_gz%%7mZ*b{uP7~T#<@;@RIkcAZ88Cx;p`P+2}Uk zCNQ1`{Vw`x@ElSOwqgkhOb~YFneq7D1_!ANi!trGN5UXWuy8 znPHH9n}urHx_GlO8H{T+Ui`Fa8$N??Of9N4sC0*$}S8a6av7>~)_K963aHNCmfydqJh z7O2QrXSVHs)+#Cboo5(yGfxu(qkyMTBcsK;o-&7xQT6(hhx6XR&G>zc6#>_QR47#e z#asxeWO}UQz5z*qO0W#DIZLNym8dNJ2KN)9n$gMT_{wqXXWb(`OAckW4%LqgDlhgl zAzcaFbZ8x1OQ_o*u-W;1-;@e=wEnZ#!UCg7MRF*ta%Dg3-RvGd7K8?o9q~gR*k?D{ zl3|0ZE(tUBVK@*lMqlP1$4ZCYC zympi~VoS2}BM;Jk##GvK8Fp_4YG~346X>>1~SZ$`XR3A@g*Z za`y_R;>4>5%*h5k&x_q@h-4fLRXs+(T%9g3M*eNpRUz@w{j0tB>%rDSl8vLQK6-Dh z^ickM%+PM*gmKPfV|r4{q&0iw{)gYvZ6rcxhXiY?kjP~rf!mh9XLY6L7Z(TDfSLm2 z!B#ZYkV830I~MRd2)XS;u^;+eNHm|4@O+w&mV6)y)wfK*yN2QeJlWnS*a)CPS}JZEZxYAmXsq#DseC9#NDWVR;C=o85~dMcNzAPBSp zfV43TvidfXHskZO3dD;{znfeL;W}tvNXNa~YCEBeFpo&$VzM52!PX<-xsDT}AmX!4 z%4aPdVOfR{upkG{ zrul5Fe#CrZi`y8g{Mf=4F=)dMc2bszIPDAZ99jl@$vvc{KH0L-svv_nSGU~cLqP$$ z8oyn`F!1A8bsnzqdW=0GzW+^{q=zW$(be&WlEca-&Tf}P#YYwwmX?=s!ytg`_Xil= z8|lipLqB^g*zMVZZ;@R_>yOUPpsUocV&tqkufet-rP=EuEM3H>kIGr-uDtr!77|S) zx~i(`F}?c5)x4CaLERg6_~ZZy89CrM^0>#{!H6jbL|rmZy2s40qR9LE`#0@z<>5wB z@rAwYOHu_}_v$G*whs&{2B0nBPtz`=US>EJ4IQ{gEhb|;*c?~or3S<`>n%+-Fx3=p z3+@|HQ=~MFX>OFn;GJ#_ZwzY;=S3P!(@OyR8SGZhr9ihux)1@b6qth3$2l-w)Kl z0COQ{>tdZ|A1kASqkYo0u1ig!qHKHe)!o+%B#KAt{vQ&>BE2&G<7Q>1ED|FC`V zQ*ch#pCeF5zPveKp7UDZVdm0-ioX|C{c-GQJodxvF@-+y$>5iUS`v@YIF0ICUR#@M zIl#_0Qx@T?`#LJ`OgO*hOZ$6f9p}-7EV7A2hxBaONaYQ!j@;2QyL#hCt!^;(&Zr0a z$=Um2OuA#JDB9H5NX$-~dSkFUXF~C}LvM*wnsS-I3BzA}E7t|-QEZ%Ki-oXjdmfjmJ1=R8E6wy`rc$=cC|8qH^ zerQR$d^U;rdjDL)()e8K;o9D-RHUv@&K_~wH(0Rq;X)OLnbw*xrbXHuEr4$KtbA&XByy6&Gf`93s|xEOtqGytL_vC0MRtjA9V zGg|$CsG+2+5+~wUn($pT5JrA)1%dDKPU`~}drDnxq0J88(SUxs#JI@{OGNx^XEFm= z&>tw{ykMs>!VAQLP+Mn>Z%&i~+y6b>!XdOkB%oqsMh;;GCtD=kjqSt&7lXvIKV3yIGEgdt;`{zB!m>EV zsj~ke*`w!B>~tU=GOKJAa4g|QZ~yT2_fUE-C{nq$4>)-BM)ON-Nq#HAGmw1jFhfZ- zbP)zMt6$zpzgG#x)gS@l;8hzG8l#NzJ@QSE1sGoVni(56)bNs{Nxpm`XqG{8c>BQm zN%b+I7SV-75|1y8fcQt-=MRF=8f#-_R6gd6ROvx$2@&2mk;38S5t3F7XnC=kL0*{F zi?LU!-FG*!!JDkTywKAJAm}))`GP@jUKvqi(yvnp|DgVHvH)S4AlOtfL)|t-_wKp7 zU1;o>DHM8oAI-Nf{=~KbOLH`p-K3!VoqX(}JSCh??jEZ<^5(bRPwJ?>)f1EQpC`B- zPui)*v3=7$sFkxiEOWT|CS2AFD`yLN+n2=6fO{({ny2)}xI?=*nRO7DrM_idQgjX_ zNB?fy;O8wge^snMaeX8I-^ppm?zOYBUHut?AhfkI=*WCsaAR$I&RBcE-DkAmmECCf zuI1sOMnc+KPw6`<54qk`(Y!gB*LiqDD2DO&lI*j1kcuU7cl#P+7)2W)STB(Gn{GNF zn8G-%Oh|(;{>d4pppsLL&)3tOi^V5_HVh~Tmu@0 z6N%?Ud@TnMLRMCSX~&ui{r8NVdkpGiiHHOs3_*LtIWd3Azr(G#a<Z8p$8H$a zNmHLr%x-8vNWbW{|2o^hh8{7VYhMJFYcL=vTp%!B=M69xnKSUL}UD{*%J@Q>%f?pvH8C0US_ai^24?#GHOfQhy=6#y6sC zzI=7q}P*j8kvLpVA?tnu##=E{i`v0i(a?v*`-sas05P$ z@KO>pzH*=Rgvz6uqCFuo-0i5I)~1q@Q)p2L?!S}6GH{$_&9qa_^r?hAp% z_88r4aeP#fwrL-P#*}S`tK%RPZmTH=ttD(#@PLz+XNa5V7LnZ43y(i4AjX%j4nRVP z&jwVR$%Gt2#mDIUNI5`UpmyGK+JRAVqiTJ^|Jew)56UFDWlvun)9q+6ycGyKWAVaL zCGAtuV$sJbPSmmFtp_nDrNYadl~=e9io_q`p@1$*aujN+_A?;4S{zP)x$DAK37mkF zQ{lix{!9M3H&vmV?LpX=;-nD|>r`)O|EfuL{KPatG2HW%M*spi=?=>s0e0ZeJyM(~6+- z(88F_BFZ(xf`NST5w;ZI1gZ^)qpVK(>FSeI=272cMpJi6$HKy-87eg zdShzmbDFdaw37BAS6*YInx*+r{ctk5LlEm?o}6@Es^u(DL4@fD4_?MZ?=iaktot@O znV7HkNe+)nWN`taqLR)X1eSZ}bB7Tvx<9`*04f7%mysbN_tjgmd(M=0?1WL+GT>r;J(jRh8(y~l zd-KM%ArO^HWqp*VNg?RLMCdXTd7M!sPsPnGJhQTyKkqa+3%t+y%BNAm-( zv*i4S7PAk8Z8+sIE$KhDv0f$9i>;|qyxYWWRoxQ{zLvEEdZ!J5tsOI2>IH_KBKhcD z=k;T2Aa2L*Prtzf7~+DmFZb|VT{ovHk-?x?zv`h%+T%!oyelvJYkIw8h!l;q_pD(O-`W4%AMDxpfAzXbrCPq*7+ zA3EcCUJfj~N(b!Iaa(L?P1oLXx(2a^Dwh}3gDq=_bg`@RCI>{E>*{ZK0U`;i<;aUerMMy0D^D4d@rWOGYH zoPC@nLFR_2B~{opYP!~1B}3dde|OGP9Y`FdZ#rpO#4<#z@3R{<1TJ^HmkuZ9%x`i( z8qSX-w+0?%$%N$g(b11WE}KuzcIWe`L_Hj-l>OBSKpR@XUv9$MZ73xhMwkWk%OgWH z@2o+ipxyY^mQ3&!Z|k|R=P6F9@s||XBdP+GPYLiI_h!E20lmU~M}4}ErCQs&;Zx9O z0Z!>NF#)ueo(`_QAR!s|+JEe@;Q2EQM!i-`0T<3o?Wkdt!jJnuwfY^dT^SIA6PHV= zczd?}D<^e}40wYpX#|15U%S+Ruh_7h3T~C2Gk`zbr9$AQO#6pmXYRao?cS5jN|FXR zZp2K3U+3rNw}*+dS`M229w$MD-LAy^JXH6e4}YY4Pr%9@xt$Um2K(sh`uDI2{43P~ zRc^oVXLzt8nI&t2#D$8MjCA5OCv;o-dWKg^gjn4lpl%Lk?;n`U(-*9AjhieD=7p2! zLs7D{-pA6vcKj7p;R8h5E4=M)vrX%s-U0eEPtAN3HH zag?ndEu&h1xS)~bgM<@fK{&;#P-SbP#`jLFd5Ki2R1j3lz>LWZtN-4s>@O4uDfVe@ z0KF~KV}TqmgeZ{up;>&SWNT3OmOZ?i4gc@V_yH5=bU~-!=y%uWS64?Ksar!?(%Qh3 z!3*G04fabS*o6qS!oIf@>_9=8F7DaY`_D|)@aSTcF-6pqSe!GOoIe3o8;Df1jhj8g z{~q)Pf>ih^4XfLI99~-qq0Mm?`Y+ZoV`W8JE33T4hGf%^*uydYVc7yX35IOa`$F!{ za5?s>4ogn0lxo&=x+3<`!S_D>q|t};w=AJ7OB7Y|K_g!Y)aN4{z?sEH5e60zSPh^o zDt@4)FR-OiNvVnBwqQ~91bPb**`Bz#@4u2q!Nik~IVu3MF?->($w^D1tNXZv^k`$0 zvB6Q6v7_fBBObkKYSL)%q6e_$sclV`0{6$v@H)HUM#oRBnpY>S+mcw&)y2Sr6@iE> z=7Cf}6+m>(2ll;cb(_^f4d=y08X?DHQqXOH<@b_Ej(l`BI1ELe$!O^X#B6#JzPEe6 z@O0<~pYK6`2PtoEUV#W|V5t>vF{U5^fv7PskRPGmdVACF(ey`Q6KE$nW;J|ltjY7@ zN84Zt#@$2H#lJrI(BF$Q!?a&l)V~+MFSPys;;jn%=EJP8&SkCZdX2H1|FPb6K>K90 zp}w(6+K*+~+B3cj?P-}X?T5c9b1w|2E6)CDu31DV+1eB=QLI%u76;^NE(+>BOk1Bx z?s1@DasCzexg}VjRiI$2`=cH%OKcCs6udd!ARt!$*7$T@#N9nv(1EZ+8O)C@5y3nA zIz=}=*Z56T_M*l8`_eUn)DnmniX08z1`q?dN}9*Af1Ps)B#f!T9V>7xG6+*I)IVBp zqHL1-%iD08C(J3|1C{XovyZ}3_WGrG9nSlX8eZpY-5CL5OZM_gMRx}kNnO<* zb`PDmB^bUzZt&UVC!Ft~=|N6MB_qMK=FhKL32(CC?KAlS4PR zkMMZciuoyhuA|6ahN+=`?8toq)*;Gk5gK&(^zZSL4nUPx?;^Pd0g zNzm+bmOSr+lX=W+rio?|7MwnQVKZNy7(*_5!IRBpZ{CO#iwA{95#UvRc1yOv zos(sl_c}CBw)h`Cpv9-E7xNnW0)G5Z6LkH8wm7Fj=l^MK|Lc$b{#@9W?1SESX9 zw(}UckA_e+otoQextjRqhFLFbetwNvq_q2RjLz=QcMA*501tIb=`vLH01_(KGYS1a2j+>Ao6@8|)E8;HTy|x+uJb*J2 zB>bqyK2!h#Gl#|vxt12m^8Xq7{`0N)^La?Ula|$nWwaK&PfQ>F=$f&Z{)90`BY$h2 z`dyesO)huq=8b>du!@Xs)BNc088s94GaY8Hee7J;vw26dMSzj0sj=HEFr<4w>z4oM z?hYAMh-JtE1TY7(fE?POaQo^0@%VI6?;h*L-P;%rla{`v3$TDuW7f)Bj`0C?$a;kb zS-DB8j?aRH|3?N9?jTVb%mvoTdm1E7X29eBcMK&FTTDi+-9p)}bvlrqd}baUD>aN} zv|nuVDSldw1_wcc>!W+=_TTsY|GxNUKtY>*NeX#_UGAxcfL(~At(nBy8`H8*`Rs-B z_?BpRentA(_gfKE&A39DqQkEBoi`$0@-5WP?MWXwOq$gnR6U<0IP|9WSxzS9GE)a3 zY=Gc@>wW08`qSEQfB*RT0Rc#QLm%XW?PH(>9+AI%uDQC3)()-to2;N?+unVqs6aM66)V8mTAwiw1DES;ozFGd{k}o zbehYoBU5ptR z_T$4g{r~^Bn$5H>wCC!(rO@_mis%#OJG#Kbm74j_giXq*ni9{UMn@h6yRy!sFj4Po zip(RaphrHNJ`FoA1kAkzmP0|c!VW8ZX^m@28AyHD@nEuDl;0i#Pd*4?tZ>~k2B;mI zdQltq>)-g4VqT%6ol0?;HL48|e=_*l1NW}u#BopyCkoI+p;1nN=4IY%81kmY7fyeyR}cKsRtTssY3T?dN>($gU>sH&&N} zTbR~Zb%x63JPScb+~l>=ggnGQ zojz1bi1=$qsH+R406y=;BGUPu&%^^^*E@7Py+G||1DDgX7s^YtLCgSvvHJFi!QI1S z1lVwY&(Af+0U{D~J})M?o7t@^z-tjyWD9(;FifV}}E=0%Kl<${I>sFYOUS}u?@wgF1_rY5}u zGsz|;8r*2D#fGZ1&!1VtOQB4PX$-iWc-XOwYN{7UFxYVdyWtewQ@w!4$o^@95G0MG z`Tqb1|Mu;FUeK5(hHh>M`yP616&#V}d3-YC)b!t{&GY!UtZ>9eB$1fWlEtd#eX_Oa zuL%38I5YoT+(o};%7iJ5qu3<$-1jy+za8BzXA>}@Jv}e4FL)x!g%cRv{JFb9SzGAa z+QJK%98GvKdTGM0TpK}H9g*Z})Q|VKlX;w1E?s)S)5cSwU^CL8aJ)Ir>SAjzA|hgSkS+VzGqkWm1a++uYL&?P@@a>dv5Cvu+ zU-wVf4Vui}a*=R$pVFC!L3H3`)N}|9lrpT$UWv>Glq!V^l_03?#{ep z=5|%K7x&yuQ})jmJZQ#2SzqXw7dDosWT~0~U>iV;q3i_f%bM`5$tD~BJRC(S?6v?l zt_Lj;^JHYIax4;#cA7gtKad8MU%nJ7wg!j>9Aj^ZrL|D(S=#QSxdT7Z)t>Klaa3gU zJqqxkG(YS3+IzqTD918=ybUUzi_Lv?3c35?1t8m$LT)i&{4WK({7`=WtM=P8KopLC zCvL!LT;FEg(A3map9-+T;RC5+DgakviDxpLtzXne@b{yvFTm2pO%O2tiOC^YOoK@& zl~u3ed&Y{)<>A~P@AG|0fb(>FJlkYVU|0S=`VkSQP8>WAG&(x^UJ2s7QTem4Qd$Md zmW&G{zSlHbdBB&R+ajTC?so~wX zol3xSy*4e|Cpy-Mi~KSg{gA4&n*P?f50E}?0FG6BR3M-kk~{CcUu)F| zNT%F>=tb7Ua-1$|e_ccol}a*e2kUg%aa31_M0Nej+zUjeTrBT`I2OKa0MpgSKtqv=U>hn$aC;qU%i~;{i z86=EZ&~0w(S5G~Oh8f|K>Hsc?6f*E^8wtA>E4@QP7Q<p{v&rpz$qFND5?+(g9cB6gghG7dDAkpI~#RC&J1oP3dw8r{K<9hq_fsiayc9Fpo z(WUKeWgseEJpN*%TY8`CTPDunD1sTf7X{J%^O?J1N3X@zxG1;~V&W`)Bi~a^VrMFE3Vcva@499F3#l* zd^u#vk~ut3?1U3MjKYfhHocA;f(j$$KM~9zeZ>hrtur?ZH5# z2oTOqyhvYsfF5uQhGI0nzE`5Ml;RGlqVFC8=25nhsVa!TOT5<`mC|9UL9A z!65f&K@uFQoH6T>LYo%RO7rggo~JBF3s25J71@8F-6ZQKNQYgfKgo~4Gtl!P(Vc{5 zYd8UCe+A4M*9L`q|3}HrJ6AL}R|HzeE5Z_F7d#pYoF72qx$e;+3~>CTN9azAV7&QP zi^}frNsKa#V1}xj7}NYt{P0-&bo2|mS4jb8T@~!dH(TtpLxV4`P~G?FF@hyXu{iVI zq1}6~mK)&iQ(M)3bluYIsgF_O0NOM=+8!BW2$$(~y+h4T>)lu$en^Kx><}V$k(4<)KoAn$|Qx8b11b-^b^%$$K-7tG5Gc1XhXwC6)s@g-x7bf{n?OKO>!5WIP5yMzUC8mAQm4?#x$*T;h>R0I5kX2sAxB zngg!J-$P4uyz;*um%WG0&NaRr?usNAFajQZpY%>1`qNG>`w}q79Bnuuw*vWuaUe;> z&ITuf!s+%RgaL@)nj4psA??f*c_bZuleuaz6|KDsi1{lJN~B#czta*OValo zsPF5>wc6t1_Do>B0EV}=`2)YK?#;h$oBiYcObeyNDz_q)ncB;8`t8>Ua(qLE%@)^lxVCzn!Vh-W^n?qse@~>r3w4Guyt9P(44;ud%1`WClvb z^ahzn-Ge$hoW@O=N1OH9SBWNWsg3rxB1VnHMqa7`TV$eco?<_wuJ}i87qC&))l2q?sZb zJ!9+{!sFm#NKulsVQ`ssFU1udL1Ob22-R-omsT@Cv|MF_BLHpI;1pHXI`|L9OaE<4 z^Js~zy7lKFWFzk|w$QBmO)?q^W~>nXmWRv}cHedcvEz@$=M7F+!Z==fQOtX{^fE&O z)*q@E$K?*87fG;ORw@6tRqu?~uXp?d9IyoDe<)Mf&NV!ejib&8pg?D^1s2MJ&9!u` ztxnU?m@joIXemzOpDT2>eHwdk$w{2XeL*Ac9|Kmpy*8o5dKJzDj|-&w$NyLiT+W&N ztIBt~%Ym6iiy5O4+iG6x)FEI?-F5}b)4LfHrwjjkd&xIOT0PlmaaGtGvdoC*pF4yJ z_Zkj0mea>;?rC1!NX!FvOT6qLz;^IfiU`i@=)<5inH^2f>MBD`ljVOp%(wateCL{} z5VidMRkQm`Fs;D1fh6`yRZ=6v6X@s%FsS{YVf4u({Jq{AMfHgef zjyk|8y8a)JH~XJ=vpN1#_ozbh4Ml|%!d^=iH4#ZlizS<#5-aBUQ`t*~NKvH^dWJo- zB}N5*_iD{dbv3S}^2cBNxN3Y?V)eg*3p$a&`^G09)d4p;ty#I*b6FZ_4AX~`#KnCo zDlkGj^=h06D0J|JthXvmzX88$AOy$P@|iv)*!_Y%Recv#!va32P)3_^q3y0R!xneG z$RuVn&K|m5nwJ_C_|e~`p7zmd>|``~2xdr=;c-nq634_EkK}|MqGOi!srL44>EBry&ByieG}&0&D^O&<73TWD(#V`g%KICvi~Msq4a(yNP| z2n1Uk@31v8&g~FFD>m3s9Y>2biGDv}BM2LBvdVDvwhmr|;`Pu222(!^tG5568C zCwaon=A_@#<)P6BXhDq_MT&0kHH~|w=+<51C+(v#rU}JuJQO^DxG5=AoQ(86D0M z9@F8t(}DLX>>IlH&Cz>I`keoTzcFcOn*F@Y-`w!7=3649?S%&&n?h=x4f7$gHLJO? z$$5SE-@ zi_OK7kg}*O^GpP@FfuYyisKC(3;o^KM*-jw79S^8%5izJKJhS|i>*0N0r{PLSN!&x zuy~&j6kPKXlMh=8;ay zmC227k|9e6kQSec0!`*0JzrG_OGqPO>-e>-9&+00+A zcVP@ZeFLWEK5b+FBDl5V9n2vGb!>QAGv5%*-vDlv&55qvtoL$|dl2fQ-mF(B*b-h@bbMU1I*#Lg9L6>K8w;KhwGFsLn@x0zUL-@Pf^&(3`yiPh>Yj$i6> ziCH55^->2q6>dNBdp$b|fJB~c!M3d1X1fr4w$rM{y=OSi4!V`^8+|8X33~?ZHxiJ- zeIq;(FXczdP2B=UEchtnes z!)7qy0nU^u)MtMVIrG_0tL26jZ_7+2&n5DRgK5z7g)1dlWi}Y4Ek5)F(reiQ(|~W@ z<#`UUl7oBz>_4<+^)w+JpS$$uj4SVgj|OAFl<6G0rXO0DWcmM*N(w_cFG(zARmzGf?sJL;$|jo^Sds2QO?Pk9wC~*7^ugz1AX} zF*cq!C!RCH2j*jGWrxV!e^u`&O(oAl>HEuPa`~2CQ@0HD(e35Q0ECzXLC2G{bjMMPp6Ga=KH;+w0?5AlF zkjLp>=DHh^1mcS4j)qXLK-A@{2SJ?eL)s4*oU0$)|ITAIyyaF30&$Vhme#APkcI5W zxRVqRLJHs09N&eq3;`u4T z{=lGifT4XR@L<}ESfW{z%P(x3zZF5R3@X}}TYr5@284Ba5Fm4Ai4z+^ z_Oe1;Y#MJ%kF}IqSIlW^l*xQfNz3?D2u5Sqzp+RTe=C>ki6?L;58aw7}ppKj9T zXyI}yBgr;2X`^OHfln}N@0cpCtm(!?yDc+9i6}>Mor?#9lXl`qjvh`%FN<`x~%so$b^XsEaM@ozAj6 z>?fR;dB4bOfA|FqihAON73HJD_#&j@j_Csu_%oJ(GQhhOdNO$}*6!Z}y%|>#`x2G7 zNPKhCq22Oi;M_%~mTfnn27Yz6vmVL>INeGB#t)Cr6P;9a-`hCf$ zK2Uaxh&2lw%_xD(mYG#NS8g{BKQrCT) z4_aGu?ivdZ z@srpQo)qr$@KY*3HK8YBG%FyzGO7FAX6ei<@MC1;%U#m%|I_NM9par@n)DDfhkJ?O zXr_VT{3qne5#BZs-X|WkA=zaDbU!J+0+EiBwD$)yMfF4YFCsjxAnw7P%3F_nhMv88 zQ8SPID~eE#+j6k5t3hGUG5O()-lW$of~v~D3$sW)|Kr;(o*pi$xEtdDHh=~FodWc# z=jacgjP|27&?Rsf`;&3GW!#Rm-F%(=DL$U|y5ZkszUzw?I$}zV8VRCe$&iNw ztpVo)IbCvVv-i;%^{^0+9MhFExMg2oU*s+v{{BoC@`RFCe#!wp>2N$7lcHYlXxO3~ z`MG~6tqffT9K>&R4r1dJMbrK@WcD<5gah5~B<%J-*#nEY8-7PpsFc|+)F^;U=u>2r z8~#eCL4L{(U8+~B2k2s@NMa;)PKjBM zGMP`qeedOK48u+E$9)YSRvmgDX8o&BV{kw=aD}gK?Jxy6S7d#NcL5$Tuz(6*-{IZG z+s|MzwJp+62^P2bN%JmVPlwxpWu@Zg+l(3&uI| z_~ovM0bu=Lk3`#?Tl@Xaev^HePh-Cl4>uWfRYx*S-J4cJS7o>ic`I8@m=K>2<5O$9 z)6)l5p>fVJOWEt>p>}wa1P;JT)&UEPKArT*QR}7R0SjmRJ|VeS|5*=4IU%`QMlbiQVNgdmdLQ@ijQFPEOBB)JMIkM zQgg={0X)Jl!T}iUhsnedNE_p+{?y59CFhG6R^eQ$Ar4=lMRl~F)7^J zb|#tU7a38DX^72dv3O-Krq2b~1rC4`-mLiq!ytkwhQ_He5tZFbaLW$!2`U%58IfeJ2m9kJ|kwiC_5 zRqkT!b?jjxpDyC{XEGn*bI?+-Oe$gW14!$=sc9R|;?}FX2w}4s<~EDdy=}Kg1$l}V zDD+Pt2l^jEl==d75GlNvc3~)Dd1~E)ka>;udQ~W5aU&284~-(MWlP!1_DA8Jd2rXQ zM{|fxEu#GZlpvc!3InLFy+2-1NpX5|>{JFu7vM6L?X7nICZxM^Qd8+zrw+>Gddy*? z%H(&P{0EhLdhByxz@01i_Oe-vT;ZvBYPhF=I-Jet#^(|SY!nvH;*-a66({Hw%uP-P zuWkfUE(3=nRr0MKE8D*MxQp?!vrgMqLayVzDnEWU({F$M^{vRTYG8-%(!#ww{i~=S zrCDry#o&i%4h3NMcjkJ#lcw~;V~7r_#29aFq{jP-7y64x(2akMh&N=$e=YNkfw#iK zK!Sw-{$ZIvu^5lXYdCZq8D2hUMg?Xe{#PM4M9!XTWyZz_Uk+`lD004!{u?SM9R2YH!?##_*Xsp; zDh6yWq07quE=K$=&!=l&#$qi|d=~xYNkqS#-vI*= z|0IyG3s=UOYnG7z32c46(FY9yGj<%CdAi^hxrBb{v*3Gq*cInCKMH*Z$T}9IO9!V7 zG-AH;=LtMI#t%rH8SrMg&JVm`Ez@H5FA}5nGWq>rZ+ma1VHVMYY2qX6AF}uzig|6P z<*#(>h#<-pMh*YMDHZ_GJm%$0NMK6tMsj)5aHO95T3I1eq_M7^-(j}Dg2sPzq|0Bw z#TGCXNce0uigb#;mm1a^wbF2FfLH(%VX=!hzV53`%5Do#yQ%(5*G)G8Ue%QMfP2f0 z*!`&4`;jhMoQhxX==JY{Qk_9 zyKi;^^#OvGN{plsE%Zl4Inv=<9$gv(2ZXLP%O`2PHnx{kT#{WgI(Qn?Psn*CMpwaG z|M%d@Za`?n81<21pnKT*5)xzJb(8c2m6ga@3*~~tW5W_Qy&Cxl{W^PQ^oKZ;aE3`d zB<}12Ffb)EPjL*d>r%2VpK2gB6%%>?tHvm)x%s<|^{@0;(`$dOe_7{j`n6w;1CVU0 zJ{@P~8>Roe**d%+b{jECGmp!pt1XBAnw|)S+J$+E@{~(2`XYZC9T*r!?B-NyMiaB; z88(g7ex>ji&epF4w$Eg)k(fqc)+uqohT9sI57x!jMX$yj#P7}4Q5<;JBKzM>?S5|e zigbQf=7iP1lwO_0XGg4Gn{!4n8DUpQ**i8j^60cduiOLF?e5JI(0rF_z@lS#;A2ay#6sBG&!ma{ z;>+5jT&11oTzN*@Ysan;_Foy5?QwL6{<)#@i&d?yur_J!$M?EU)w#9N`~p@y$MPf+ zJ-M@Wne;!~&bN8gAjPak_b6L4AM%boCwtfZXZcywd-+=WNypQ@d7q0nC9IkpsWSc- zucG}Ozg~>-VIjPJ*8Itp#59DIp6d;4ekXsY^J*TdB>i5;5#jdXwE8e*v3~Fsql;d^ zl)b2n3g)0l!E)Y#n4jDf1riPZ7v^m{;4=;v67}3Ihnw5b2hm1`vELh#m>t<$Oo)Y! zD=Z8q-dfi0s!$TXBJ9mm2>S*rH6x+^-MLp*;=uOL>z!>|(wmvT^11MElpd#@$Zylo z@zIHuHH)P6)Aio3ypnD>I?Mm5+t-sWlmx|HR{J9Rxtg`(n1CC zSxAc~V`f)NgI|R%qs4!`ziXfST>rOy?jD7HYLenEZ*q>$0nrfN@5ZhNZ0B^Yy>@kq zjD8ls$>jb0lby)<#Gz+U*PG`N9)e9|D+-13 z6=35>Ri+InDRz@{#Ld{)kQtC}Qwk4D!(-JdW$>yjQ8p&+1#N{t8Zf&#IYSfblUa31oi>rKWLPI)ukIHBrK$S#_)O+;;!|PJYU7xlSXenUCKmDUa>4`8#*-sVb^> z_w9t5L{I5-;CgC8nbhL}iS_3O1tFb{pClMIBx(1$qgH!ZwKAK3corLe*E2nO`U^@* zM--|VEajm&9e_2k#8grJ(YP=(sGm!K7;MAGY#J_+7nNt;!S~W~(^>-EL-%l*-TWT> zjxVT4Cm9amo_@>Yyi{2H%@3H_WK&I&K#DrlNZvFofAag7wy|xf(diOV!vBRwn;l0Q zE%>!0dR!9QB7r62%LjV!zeRB8fcO6{s5zSwT)N*a4lK{tW$Lv~Wsm*_0=UzbS#Mm+GujW@G6y9~VA2ljm%G@*3wunI2<$I*Djo&Im}pVT{?bF1 ztKk|jBNw{QCR&?*jkcfVY5h!1guCMw#C>6SP3qe8Fu=Fkep{W&aROHRw^Var z`HaYc+_adZ)w+DOaM)JsX$V+4{DUdVVPS(E;xeA&s3=3LN`E42$#|?zYf>=g+MyqG zrQz%xqf;w(hEFOc>Q&p93YB@3G_{JPvt6yEms1nv^Ycd>-)2?0B1^}3FU%iKDk5PPXqa%=@0ZuY|G|7TA#3QOrrF1HB8dU5}n7@faDc^L2Dj=EjPoC&wRtNy0` zL*AD;ndfaJwE|&_z|9j?un+Xo>bvEO00=~6B>fXui?g=;1`e}^h6G{e7C2&fj&3ezl$gbMFi^A2dGoQJMb3L+t&u9MbzbEURs^RX0ASEQ++q?$69k%VH`u+x~N)6iaFP z_~rewlwp{mv;a08vqTsL4{y*2q+~qX4&ruX*@;LdqNtertnuCT0p$Dxl?&#?H`PY0 zw@F!a{f6$S>GUEalvaDzC-Vu7hf=nC3`jHB`CK#5U zh^vsOuV?;*{aG?c^w~>Qi3qj5-*b-fC=ce?>S_rB+QE0V#e8}2$QNx%48;y%d9$mB z_-c##h)q!`Nwrg^~(<^-rOMjus2coKv71h^T9_;$3 zin{kx_8TCLq;wzo#Ex&dlsJTFIq;*ir}I_mf?ACC z;K1U>-ilph*NvadX$-rF@|I6wsi!!Q231~PmM*@)lEnBq>~ZwHUW@8=U#&*bAHAR_ ztI3Wd*R4|eUFWF`0&&iJVHMX*c%PynnbuPds<}GqNga$D&lOW%!Z6F<8ev~Qq}-Rl ze+(954NrLT-#&e}pbT$-i^<{dR33aCrtVbMagsPI(HF~UdYz)U{&vfaCP(TSi-6>n zIaj_se=iZFvdofmr_3UwLR?u#&Tajn#WB;jxfFxjFB+w!YWZ)A%*lPFw0-4@j6z#&`O<_^+izZ%cew-LB_YGy*4%{BV)jY^qd9`=TEt?ZyJeU~Tt^P@t{D8V|BP zs{F{YCU-#5O>&|}!OZ5pmq|bvkt2B{>=7C8j@e^k`JSv9Gw1NoB%IHA9LF?t6l=hr zbCzNl-7SA@C!A*Hefsny1qTp0O~D`2M!I#(dIJQGKRPWWMS6@%Ulm~(h&o^VEs;ZE zAg;#v0Esd6+6O#{6Mo@-{w8f_Ff_#7b*reOdO%01Nzav&(H#xHfT|e16ZywZaKpvw zhOsBq_oOW4K5w1BA1P5+2&k?ym&md(<|1F9yE%Tq!&c{Uw}Rag+Pv!f%! z62K8*HLGYL2pMdj1=Fp0|JrXyP2>|ig0mKj%yTR`+U$*wsPi^I&R_9UIoTC7!H<)Z z@!v`=;Sw#WQh^n}+MhB9eUx-i{_BaXipX7LKT-ONG=8T)?Jv*{3xn6?uTHleh!BSl z$s3qtUw8O9%^ciTbb1MR9(r8$z8a>!FvIk~C{y2BaKd_kz`uClYn41<_`xxGF(MYm z{>zEPSA5m`qa8;v?Rybx+S%(?mveHevA2f)rG_hXq~Am{RzJ%9ARWt{Vc|4vUT$6? zU?DVYL}|EFpL`*+EAKxKNKYc}ic`2MbT`Da?GKqFp&CmCvpp_%5ssl(+t&2*qOdJsFw;@@Gpk_Nl|TeZXe< z`eC(qpj#o{K0r5S-@PZ6ig4>ko*&=WiiJXcr{~MzGH4KVe!8GD{w6O)AU5p&xPC=5 zqimVPS`d@V1?t(N-gheBwyl1bHPkK|$9*ki=5! zGoc8Cy$+WKb`TaN_P@iH$#J$F$2rslF86u#$HZB{4F^X-{B zc&-{uBM{*y=)J$k{5fgDu!)^LyRJGyBD~{==lP@I-;%VaZ~t|-&emoVkq(xPQ_c(2 z9Jm7jG^8#tMz`{Qg@N{FpzwSBvUfS6?04O0mEj60!-EHsO}Ik-*U4hoB+R8q(u4tk z4IcfeRh$I@k8BK0q98Rhp4wVj!13=ccUz zazT9<80ClTxEx~{bixjxCq14zp>>aqO2t_aflZ6~!>tezR10OM!{hlc{+F6^IB#-A zb7!nBT`X!#*spJ*`ua6Y8;v5mMQPwS(iJZn*ar>`{YDErtwx%086CC<}l>l`Oc-MV&4 zVI;%%^^^P)PX=0*7W$sQT1=xOVzqqp6HT*f&F3wRr1W%|h|flOTLdi-+B>4c+v}KA z5)C587EpU-QI<=>)>HWxLv`>hLvJHuX1(XC_x`mC(Ugr@S`#l?T^L2%;|Je=P&5-O z#tgt@=PPT@i%8EVEEU7%ZB}%vjCj0O!RJE(72!WD%UYNyaOV;R>N9O29{ci%w6HFA z45}z8_Y5)dK?Adecxp->CW|{|0-Mb^T> zJ^zVP%xxMGw@()qFevVdh`}vTNqYO03C9N`EL)We_{#ppW?wQJDeVc`50ZKs{)o9+ z{c&;s(rag(Y$Rj5yHJTb;Wxi^Y$Ud1IhrFoKY&sf)?{?BA>xrXWYF@#wxXRyr}ehEBv@m)caBQNn8CB0GZa!!>c|-2-7NXri^z zbxztkGWYYE_=|z&Hy0B2SuDj`3P1IxP-z_&wPtH|dMh*=E#`dR*;nyz4pODB_$%GB z-VCSE)lPG@%$44t#iOE7_c)%9Bep&k8GP9q3l>xVHF2Fs23ir|V>Xntl%$9ies^zNq zZ8O&0fs|VC>Yd3a?$p#SHyB&~EX8~L!#P0#yXdaH`;p3?Tsf_b>!N3MPu<5L4_r&G(-l0XW6KyM$T z@b)@cA5TlCfH)+Mne`~9)j8B+qdA(th@>(84!fNCyNn^3N)vwjQZA0lKCaJ1xMCSbN}6vWdg7;^snjb~&wTX@#0dI^{t(YLKP$cG zNMafzhlDduc}el@<*CRM>?tJBfAk*{v94_bI;JxkK5Toop#BND!06<UMkUdh#)s{9h^V1}?9@R9xz z@P^a+(BxmGYtmpkpAyV%uQ*^X5T7Bo;04V6Eo0PVfQ}SgNlgW zt+0kfeiJSGF1|s-jphr-it?CflVV+maWTp;$0jwtpVnjV6Wy&)PVCo~9e0Oy*#{e6 zMwa$WGs44AA#s$vRXLvb$D8eR!;RB{y~)*Ta*i8(bfUr^Wewk#Gv>%v`~R{huAdIE zh3J_lZX~EH6wN(i1US-D4y|qt0iTQ%qT=gJT~_tRuEpco+oN~zbMe@MCSV5otCo_& z?GqMT$q#qWK`PN7y0OskXJt+Ao-k|QXCdW*r>3`D?A+)?{a=+8;Olvr;joiQibo$-dOmncPrMs!qi^#%Nt|=fT}eP0mplyH z>qdM}#YB_{j~XWF0+aCI(DL2#AvL!5fNlZ1F?PRDce=@DnVF?GrH2ny!y#n@d$W^e ze!(G^oZ?HvdV$TJVOsXV}6X&QBNKti^D)AfWn*pmhzHlc=~e4 zY0P$Bh6P@y*4oud(IkLOW@et1Z755D+o-K@M+MoUkl@>F)HJWI#%d z%e#P^D)4^Y35PogsO++;7*)@QmAxEVGU4Bc-;@`*y2J95T`AT9xbc4pmx*#Xtz?9F}e5;ctzKtaJ!s{4H$+Nd7S~l z2ge$NWZ~?@$M&&x%3?ghuU$-B!$!KuERYmdPrW5IT(i06*XVy<)E&LYXnf7_$@~q$ zK$UR}3A4k$5ZotB-j`O%EecuEV__EluxD>gM6RJ+6Ah1aKCin6#ooeVWnN{Osnv`9b>1`PcZ%ULlk9H? zca-T8com)+21uMGFLfphs0=!O7rF01?LecMuj zS=;1pZH(+@5<{ZqarTnc^WWx=)H^P^l+Y*n5#c}hG?Fd|uS%1Dm(3EFSQqKgTRWzE zRva06pnhT?yR@}|Gew8%drK+2e*wb>{Q$vy-JuuOrk}7$Hs*VLgV*QUPG}nYo&3wN zK)AGZo`RhNYi0v(SogfJhdtdfrJ(DBt9e_zpuTqnQi!Grg8!b!TA-bqrQyo3l}5D;3R+JR?SEA6~IFBeCxpXehu>*RS; z|CJ#{z2__G*!RAch>^7w<#QGbOz1M~tX`t(!5E{(`^|*yw+2scu@lRic)?`YFEd$J zwV4;Em4ZDSM$ziBSC$oCer)w^SWwBa$oL1@~O!ZHjHT7fskg4ysTh=RQ0{Uvr|z-=q8aPZVkCbFIj!9CahQtf*v zZZ0du+>;L&kbDyM*UdBf)8R6)w;R2v(RO zarI@Htqi>-M*{~Z+4S8q3^dC>%7f|}D%aF4*4f(W@!0WR?)OJhQkMGM%S{8N&)g5& zCG~0VxD+8Yw;3#=S;QkcX;fJCpz%5DmG%zq!39i z0eNwi%{UWP>=VG+%ZPr)Y>OPmD??*!4Vcs!wz2A5^$`@AA)ZMn+3Ri$ryYXR>$%yT z5hEQTA)Q`Xy@h$n^)@yntmGGikh(N^aS_kG1 zXF-36JGw8Dj$#mnb&-ktH-|rV&aJi=wDXW>x;FDWBj?Ne5YHqO8>kJ}VzU_77<%hu zxytnSBhkR!%D`o7NwP(EwAzZ}cM``bq<%ig_9b|o$CkzYZw>uXXCwuXZv4Y5!0WwA zng*y?l}KphZf>#d%qz$UB<}LEzx3|6}lC;mTUAmFFV>9 zaBfKvbI{9Xk(k~Go_4kr-Q50H+b<&Mhz#Blvm4L?b@!2V;TYIp-1#!B4`{pj1jGLf zJn1uN^42W3!C%mX&jE^oqGyfLF2gRXZ@v9Lm~5Bqu#^-QrRn?)>fHFB&D^QSGbyPi z3LeXv@g1s*RuTV|2Hb}~i??vAcgUqklIET~HuI@43=E_$bLha>t1z^b#h;_>t-P;2 zQ9`e7G~fX}TKNU_+@0pq`_wb$gcZ6MjzhJ=eSKHem&fYx>n`CV;u&QWWp-Ezk}@7v zMC6tbA1pC}63fs!i;) zVFdHdHq}N+!N8w9Fos%GaW;zei-U2a>yZ1yPL(^6wyDNDX_BV>b|~Ska?nUmBWk3~ zFlad7B)!w_jz+xPDkrhIS!wo(YqP?b@I@6SIl=A+_nQ`l(O*VDAqgd&ngYr;A=Cl$ z^;>FT%b2?5)Wk*8VOTOG?opW<1;5@cRu0(ua`-(=oqDUW+2us%JC&nHQ;cYI*=c*{ z-K_QtZ%=?eN4Ty(tke*PTI56mbk_8({;}sIsoTr0c=;F7wAb&m;GN(I0B4K zz1m7)EWItdQ7i&RYPo&4iqFSagC%AU8%fqqEqW!3t!_rnbawBs?!ujBD?ejvq9JPI z1qCX7blue?1K_%xaf^`f2x%*CW7;eWE2Xz_R%eW6r_qEioH73Y-;1@sKqJj}PjdtH z2T0j`T8u8SW+U&g$rF)Pcv-Jnry*RT+V-aUipGv>!xAq)$$arG5Q&Q6a!2i)=(JZrnwLBql zZf!a7u_FX?TbVx;SM{GIh+h5!yavdQQRm0Yax@CS^9$MvQ3kw>gsGQ{`-YNj`w=` zZIY3t1SSM;2-_E{B;0C3$iwR@b!FQ<%Fi4#Z1SgJNpAzln!$BiOH1ek{pQaEE`zYo z?)%e44o{|z{Cv)LTq=Kp+}3Z7hE3C*AO>N||&R@RE#%Rxl&@!?lp`jV;KnRO% z=)Pe9V$e4rrz%=poVJ>N*uZ}$G}1>>2gy{Y9sG(W-u4-@#6Q*r(HL(7#+TYAX8dj% zjW(VAegzCH*W!SV76UmU~CVuSYdtNub_Nvu<0U*Ww1PB zqh%-K`FIaqvvl+(?D3aTz$R%Tk7tpmNZ4H8aazz*)PM@;s{)bsnq1+UXo4T=gT0jYj)TQOC<&ByJ)K;@u&O z!?)~dvRF3fs^3cLqi*@L=|@h%3}d`v7+MgkMEEn9*>#N~OB9)C@!auIJoP)3fp*1V&D##RYutZ`nflXQ%3ebr~>XX$EU|6bqmdhXJ-=>GvZGu zm>k6H*o^%y^WUTjj7_#+Zcy+btZ*i#l@di7LC}k&lN-7t*6RP%k!70QBfPB!vNP1@ z9QKg67jmw1oHX2Sg=}-dZJsw4S8j$(jt|cEX62mt=|wPf>Om-pLIw=VX!|$vQib+9 z40wr~IY3~}uEarQABp;vip~`kbHi~gz})S<+WD{bF^5k5K`YJsru)%toKA~3kD2v1 z{QQ8}Rt;Fcu%oWdrYIcBwuS@-{D0N0T;ycDN#ob7$D57X`{lmMgKrLB$OVy{v;5r& zx*|9e!(caKtH1e(uty2Rp5y@!4!y=F4o@LTU*}a&X1BGhh zzky~YzZVy|I_uOn<~o<*%0q9Gp&x)q0hQ-N(E`HAG zk|Gl7#@PV$ogGeCWY^V$hqE+pO>>WCOhqd*m^6rE3J>T#o&nJ(xc`K0g!p~@ZN{U- zqx|46JQu&_6q#m!-vv6|X3*(EW*YsP_UF9vfNh3QjEUZW ziui;p1|7e6ldZU9`M?IktZ8Vk7fL=wybD3XbAC@i`>xqm_Mv@-4Mu*pm-9B^Zin;Z z039{7q7=Tad#Rom2@HCW`DGL#A73F^@}}&yM<>DiP}C)$&28RS*tIVeSQWZXeh;`{ zCdIqYzh3pJez*Cy&h^=pp>Kd$mMP8BOrXg(VI*}MAvvF8-juk3RZkpEfx{0#mC-|O zDTnz%y!tith1;EseIs&kOvG2tIg6`SX0(9GBiYR=mV@wc_NshRSL*m z7kR;+D82=W*lEsJY@^v&{9cI9>;Ic^`*v10DK6k`b742-iyujDKeHBy^I-0qMQ`-n zb@gHe%1p^bZh3FNr?*_mtn?gzO(#Qp*aGM+V1GE){Jjqt9dJ9W6WQE!aoKRM75d)x zdf}ke7Jbp{UsEz~4l$4C?w5#ViPO|w5>f1J1{bw$FUD|Ti=Jh$>29+^)nG_$}@ z@&()Vty9DpYwRTAglFj*%GCsyeZ-!U<;8t z&tcl4w!WNX9FX9?CwA@`$W+zQ7`hr`7Gh=|5Nl?ZDB5u@vwAiLPaz(94GnZ9BU1D^+jkIl7cj;qe)aMw zI8<)PjHlN{A^i zpa1#%`IR2n^~W@3_z>OkW$mr-hq+m$fckXKBA-sq`6h{3|8>YmEXYrwEo6O~;yl!K z8K;`kIC3xG!PBpPc!jDT;X?lCscny(abAa2K*(axK`O>6jHHHbnLM;E(C$wp0mB&{ zzJVmg>vKP*>tT0cawyCcOdrTKobbuth#*qJDFo)Vu}ILre*9j zU9kQNiHk%I%-Ar>T?y#XVdE$Er?VttPFd<1IjIRIbVqKawAkG?{w&U)9O3HH^?aKp z@?%|xDIrU^nN?b^l_6?x<`L+oTg1ML)E}s(-z^C350kbk0&e~NV(ky(PE2m3IS2^8 z*xWRG{V6v#{#nZDb^J`fAvls=9PAgcdAE*kMBVv(Afx@PJJRG2pa;Lf_32f zB9zYLK<>x%z0YPdma58biv8!Q&JTNCGnTvWq;~P&G>akm4IN3Vhv=(yR>h8jY;)-YKvJtZ`73jqru_B`(V0L z0*kK~pVD~0C?>E{l;gJus=tUX8`qof%`RuxT zd*!muDInh&D6YH2pUZ!i$O0h6Vb%rMdBp?4#P-m#LVSVs=l{drTQ_92ZSUW5jzp<>n&-tEr@I3b)ihC0`Yt1$1 zi0k@{m(R83P+VQM3@(z8LS)nOmMaVMN)H;~K(7f231w)O7dAYf*iBsnT3(7p+*iWZ z5AH$}2W;-ghmBd{SKpY9RVeY=&(k6b3o=RnF!1O9e2ce_os?#B%BiHTNQ6pLU%vC@ zmTs1#2VZq1ra)Ly8tDT2>~WaVqsDyYN{GJ_gLQw_rkgJzy+PVSKFER>zZ4+$59T0J zp$PDzwPvev6lW!Z%#$U~ea*+gv4G_w1a8(Haolon_p`=a2eQ>yFkDGr#M8 zQMP)yLIkrGWlc@ZWhQk_0@jD|{TUi63^mBwLd7E8lbO~1O6atnTvm|O`hlfS`o-az zKONk{s|x7%k&DRl(+(qH2d&u%Ab%6+vGnJiBy2ACNkR);?=A(r0S+L!EADSDrzFs+ zU>DB!ypM#gxme*Z7+XkONW zp1^&p^Zca&qe0Z%iOtIZhh=}#Ej(OlpQjuH{KMy*M*9U}Fw4>?@;1CZi_3=_+rSyp z?|3^+6VA<|9O2i{&k^{i}m-_qY?01()O?KO6iov_B+P@ z^V5;PEx3Mnga7%S@QCL8eT4pgQ@CRTzqRiF{;vODd$UZf)@XXSz6hW>FshK5h4R(V zOy#b)f8W^jZwLy}zTD`ba`{vHjg0SMVNu#I0?Ofue-4sdGBVe%weGcok~d*gOZV)# zOP7Ce{Oii%;P}XT`=l=)Xa&3HVg~!UMK&CtO;RPrZ?ZtEfupF3ApFSONF*c59a&WfE&EBBx6RFjDr%odu@^=37 zRi{$sm%hx;Ls7|$_1f^X+_d8dYmu?6+0zkzg3*&Kv1b`sNNd>cb&hH1GJ5>ym%_hj z5529Q&zCQj^Y$v+!cdMyU#%drinUk#Xbz7U{r>N#yLg*CpKl+-wc1%zyOggK=ak#E z>@T!d$v|V?!4@G-QQ*8|-V)B?C&+piXVP|b1%|(ckd9T(?SChj{P(K;xpI>%G48*s zt?W@&YZW5@uV4Vxk;nYsuL+_=r$u|2GxA!f;i>+9 zfhGfVl}~B%gxu`9RC^cNhK5wOm&d3ejtzOsmDvUsF~-ry!?!3=rvRLSm{J7{0d#sp zP*AXuA$EFciHSj(acH$4IuBFpDKd==|Nc?%@n#9?5cYuBc=TYa!tre%x{YC%bMHu} zwj|{&h-6+KzP^5s-s_?}O<$^9sQ_S)8REbh1qSOuNAs^$K)%`nuF>|7TR7Fh5Q5XG zD>Tg zc@LAm)PUY3NqZja8Gp9$|GJyxnqrDIU8Gg%ytr>?pUtlKpLi4$H8UxvpJ9a$W zsh7U?JioqRf;bY!-42w1ftkHg=6O_Yzd|}UlJaUPDvVb9E{yHY?h~-(CubZr$2!p6 zFEUz(`l(sdwNYT5Fx?8=rrO5cCWz2m_F5jRXa&OartOs(4XE?xXia!bfUt0`z_Oud zc6hYfxwOXjqVEI*b?i^;&W-MW`}`f>Vzi`Vj_u>|QcrbsXON*kpXb&aF6&gzgIzt1 z=#SgKAwJXqvCQu<%(aJ!DboOaNu(`D_uIWcF$AC#J^mq5HkJx9+D!i}o=u z?hp)K%y(0jv*sn8IYw_iZ12{7EV!&dJ2|No0%Igw!FiZ$KE~TyDo6ISZ6n=0@gCb)cvpWlUZfBb z1;_1nbrQ5VulV*qR1;ln)QOh>KzWToJgR_}%BEdVL$*-k&?5?!M2^%7i-ia#!rl*p zs`_ddA`IDgPH*>s!srX?6=Zj;mqih#_%H!9qdvKqTM4K0?aW4-f&5_emde2$p@;N) zkViP)1>&dv^h@0JIhwd;P+T(}&@B#p;xAZ=3f#&*`gk(cMCR89)n?P5H=5}!cj$wY zqqM#+w%dzpdsCs;D!THCKL`r5W*UXwD0JClKQhgp#nW+NhE24fm;pdIA83(HgPAoN;oh+ks(qKCgaMp(r5j zk+Xsc9$ou|V$M0zp%h{l2yQ(Ic56)S(9rKs?|BVe3=CFuQvN#-Nk6J;L)E?LO>sjm zHhU6yJK@8%CkYELcI2QY@|N3zqDQZxdq`{^;&H;y%@It|n~MW7GwnyCC5w<6bZ>pC zIMN>`1Njff*XgLBE&&2Tmoj30OJV4MFlH&|L;z|^4QL`}I+S;Bnt$oSWVo(-vOPa0 zqnx9eF$vEhxI)?6^oQdS;KQuu^o~U_m6cF6^unn-kSMXfy9E0XKRjbZ=W3Gxg77| z?Uz4}ZVjPIV@5N>Q_8Hnyv<{`n7#?rheFpD+u>bw;vl!9gN2**kmcwvz2)L1z6>C@ zFa*ePT<`dhnd|_o>1-3V>pmVuv-hPdt=HSipAEU6Ov*`x(-+IGjF!g9a*&yg7Wd7G zP<-HCo-J5kt{m3?)T(4P^@DA=%;^18yTOSJI_>`3PxH^9Q#P`fD-C^em?s6OZ z+OUoht=QeMNar9H6U)|phukis%h$pv2?WFYxNpipVtQRFru{oES4BZsGn$9b*20j? z;qKbB`^kauWg4kRRqJQYU=Oy^J5!5zp6kuBCu<3#vjmiX-T9@|1xP*+Z~mKGMuq*E zN-_$mcd5Zehsv$rycCB1 z=8VGJYeFr#cCUD`xt;My*k5Iep7fl_iRPqx zU&=&wOcKQ}r8vB}>>+qosW5^`D{~=;{%%c;oc@>HOA5utN*GlQfdG`zZ>NPG>T3?e zt|va!=hX5$AD_A?{|QB@H#QlY%X{`h;LQ-IMeB|AWE1I%=a>DMZ$dX@#o*}6AFbV=8ieYnEwR zUbx;RRLQh47JRVdnk?$`vO@O8L6?{_Hd^SjDxuUEXw-a!ogT+hx*5`=G;AbMaX01Ck5dy%qkySin| zGK^hLRpVSUn68zp>+6NCg7iTX>OLmjeq?S>_zc%RxTLODTq7xtd6lDH{Q9QZh%qbL zMoLMx7|0gHipO72zEs0m%ABrbWtR@84;P%Q`i~eUu^X*aS~2KoxpiLetijh>o#u%) zndyWTGsn%%T$kV#8Y4BUjQ;iwudwFB^8R*#cJ>-^<5?o6pt!H0l|js{si8>*Gr6~| z*7w!*jFfBA)eX=kZ_2s27R%(4@Rf{`{!qw~+%Z=umNrnUHGk(T3v)1TNW4^KD2u|r zt^o#TWml08335=bLAGU23ch=s!QW1Vv7wpyVzBBs$-Q1XhN5o~Cyg}|_^}XTgByLt)#L>%4+3qr_E5OXit+#!N#}aEGWY@bY zsp?}e`qXqNTRX?&8gXfCwbN)O<#0Wl$Zm#Snrvg(H;VS&3~M}$s?YU>^orTEJ^?oa zjK!g=8u_-^xY}m1fEnf5$MY5z<#tS)9^McRNX>S>vmL+aBad6>VR_haNuXp|)N*-E zZ$VIkyiHKi5NmX15#Q%(XB=c5#@!tRah@z%gFcO4D6!~k^pY>yAD(N`+)?%jS z=3MBWIhXUWo|iV!MfxI(yy--=;re%Y(NQxJ4OwXV_ z>i+svM^^nsOw#UW67qgnBv!Ws_$jJFt``)4AL=0DCb6qG6fH{=_V8@{+{O;Gnw2uX z^}DBS4ttv)W8aZ}&6xouz9u78bZqrZ^#Q^gm*jFw#*RNL=PG>CwQTpksammlP{O?J z>D78WePjy7^X}vB3uc#>T5INC!{qagIgZXqIBtOQMy}}HdMEJPtv6$R37MBO{e2q2 zF$d({eo~@QM=1O7njd|le zwv#a4!@$hCsC?3=k2ESZDxV%z-vtSimB^GepqD2N-=<0 zfx~n%Wl}{)I_E8yJ~TrciE}BwOs1=cT*8g`{>gRER{hCye{Fupa02d^TH^|`n!d=bU($b%zBdIe)Xvgdcz(@S;|Gmqvb znRAVK$jgf)C4SC*$CsirUh~~-v2PV3t5ocz(EML3`Num(wHVU(|6?ILa*Ep?Oz^0c z<)z)fM^7$~OK*Mn!N;fZiw8-08Dsb1{iGY=VFVYYM;P_48*hd+YO-jq;SM_-lppRi zugBi$Zqj+nX#{9i1FOx?PhA&>E9EX=9m`gxAm?0>$>?p_I84pC=Bb4PMK2r_g=Fca zvI<#wzy?NKm%6;bT6b?**-MmLXE)ohD^?1IJzQ7mB$h?2VfjkEg?{Aipn?gz3ot3e zAi}NCFcuZ%+mKOx^vhRHMMXggHXALGdLJYdktl)MhQ#tn-`k&r<2KALphBYf8FbP* zf#q`|p6j3oaJFBWha&pi^$48HR-f7!-m+bF(jB%_v=ar}(kRXuCT;Cytus}LPUYxK zZ?NxJ@5{pP&!lx;=E( zn_Bo}SKNKg!DfPC{N5AvPuR%`nYg9d(dmFnP|J7lK*>X)Ztrew-3nEEQTMKPi^?oLw z$P@z!w)$xO#uO9U*o4a(?kioFggJ2(QvSw#+e(R^)_c7MdbFnU6Gnh>>CJYu#(1{7 zyZeMXCR2%CrY$1Qw<5ZhMlQCwIfQEJ{a}thj6zUnLsQB_LgR7Qo$AAzda0%(RT6^c zgY6EIyTS%JXn5J-mX@0ELvrgU=(0yi-`a_@)R*%;{3g7&d_eJ)9mD4q{dEl@yjsxXT@*Bl4cKrR+=+R zM*Z#8j_hq;@jF@R=mfoX^lrE}tePkuU{FO^C3#Hg=W=H1Th8j70y86=8x&*Co87wS z&VZwTOQDR`s4#i|@Rwr-PgvL>Lh?4AQ_F*7l#6? zhBlS#;5c_u8Xq*go;j5~ZJ>ZUwZRyw;!F*3Af!-I=1ByKr~Y?%Y=IZ#ogTX@5WGZV zc;^(oRKomKQR4l>M_=|$NrW6IEb*RRtd1Pk-a%W9eBU+M>KK<4@y2VVj?O7;*6O4t zh>_Rfwz&YR*7>kiZ{}{KkOc#Gd)JH}q_qOX%J%bBA#E3oJMj!9K*%L}pyj;!%_ApM zvF_ZZv3X;R_AXJ{(^`Wt8S`_F+`Q?}U#lF& z{Im-4N+be5L5&SL&tdp&7%qc~)NtXn&3=`mdt0JJVC9Xi#l!R!vzW|MQ}J z*qa`4RsCRHAefXHmSi|->wa>I$5QuAjs1xaHLrP%IoY8DDV5I`|5#bsF9&kVLdCwh zAG&q|7X_Tv24l*u%N=^wwvZ9PI=?$Vke65A7Qr0ue!M5?cRD;qI*c}Oq=pOYB%>09=aI+aZ(^T=<^fMrS&rwahsJhu;ol!T*>v9(|A^%T#VXJ2){AVGD^> zCg|KP(F29(F?-N%H9i^d{H6(-$~d;|!gOuz?*>L3&mKMye>xlU{MuNBc5cP|t7ems z>ip%OTXG`z>0_erhkF}^P;^r(Hco-!s3u7Em}Z$y?(OfgRTlrPQKDMtV%`_ntfs;< zC%vZlx=`sIYCh&9Pj}haf^!#R@6HO}`|I5cfxAsD^k45^ZvEt^GPU~Yec|zxS^3(x zg0=aD(@Jj;|;i{3o z+GCii8ld8ZM|B%LLn$jl`K72&3Yp&tt^G<3O8R-E5)OoQG{rrGliHJ39rt5`^tTZL zRTn=}J%`v?u=4Ce1fwH6$+6)Ov)|YYttyB6z9+0m;mMzFg2tl8MWM>!DG4c`oj+JG zI&_0kMT&qT?oG!z`NB*xJP}beSAHls0u@J5R&hMGvRav?NBcVt$;x|4c$Ulv9M_!Z zQsh{zyAA*_bL$~p?y(*s?flg6;_|{O2-;&}sg~ELctUuKi=_#2`9vzOa!E`TH*2fz z@F5kyo(0s}ERZ}i>OieysrCuYxXYMaqq-Z>$=ZSG-bR(k?XUp7amATjv)x#kzXsso`N`^+w@BEziE`Nk!5lp`N7Y$vZD8=^mwF zOT~(Or@1s1u&=^oJ=5M>G}pviWil)KhTA=sDJ&FH9;5LZFJBx?5`J1TS5+N^hDyxu zAdJ*)!6g&|V{h7MnADqBCxo6%M?z{Rozfb;xVgdNSFx2(uB0>K!RYo$ zEoBsp$6c{net(&n!01GUQz8!rYbueIZ%p;HW;;ETLVhe?LulQa8Bsc6lfRrRfy7bL+TTihbM z1Hj#tW;RM6u~fL;WQMMye!aHhbXK(yhp3`tMc{+kJlSYk_eT$w5x5@ECIPV2jzRx2aH*^SrLV1qsju?am7XqJxon; z+P>XiAZ?oh!Qs3c1L!T`S>nsN?OXEfW(do8+gRHKzfpf#h_aQaGuSv{mJguV+M01f ztYU*2nAZ6Mv?9__UD=9h;u*=9RH+~~1@~C-^Qvp-aYufIB%8b+$!Ppb4ojz+LxkqZ zFu&E7kCvV&+>m`sS?^9vF;=k?eB++bpybZ7z;qLiP)pg`m6ZEQjr-$-KSnIp5`7|0 z1{dfh1Buxpr2pP#UECS$ft-WL>;Y?)jiFPgJTauiMHEwFU!7Au?ou{Goje`!)Ya~= zV*Gs?OSO4w`eoHY^ob1p2t)6T4-QhFp5s1vogzam)t4IfgY6Oi1FG8VQlYIhaW0S0 z*bn#HY&29HQCPwN{}#cdLm>uzOL#I&rg4Q;6D%hvd(-4})ZW{@bJ?Fu8yQe}l0Z}% z_>Q;jbxKsiAe(wGjv4AHCB+oPDvF?H$>VWa91b6EyG$d?C=^7LHcQaS zy@CIb>>8bdVj7EjmH6nn5nn3kJ@y(XW@(R=tn>sJ4%&+inF|as=ht8ma)u?;`x=c( z5H+6FQoeETbwgAeJw%${Ui`VMx16{A?S^-NUAM0j_v&bJRku*L-bs)7@BWPXingoccuI86?|kv}wwFw!>St;Ob|v=f z9V}0YztHSptVZ@72U_b0mM%;Ch-)iQ94!nFkio$qA($R~;Q(mGv&|P0?y!0V!os-f zs8w#IR&z9ClC%Am$=Po1OLZtShk4*k=XM19Aq zlDNL*oE@IbzvbX^Y=3FB(u8r$b?!>TYs!pCBE3JWE~Fkt{}}+uhA_SrR75sQBLe-W z>7SDc)hH)JQQa?4?k%SXj9iMZ|ML~%S9u{KpnegpeRvcn^K3ey>vW?vZPSXD8cn5& z((BN)6YSb&hK*^r@ILLl==Wb?G2>_qIoDHH#q;w!_sEY4&8<}$uK9e#Gv5+(+!NQ>nwZ89vER-JD+R>w;3v_HLWfB2(O z5xHH7rDxAPfX6%>NG+{HM+X|QM9sNcd;uyip4W{x<4_@4cuCVT#APa!r7+b-1`H&o z3u8&n+|Y%7v6eYIRt6>GTulmiU!ed#l!22dK!vz|3+6NI?W17QE7&gft3_7Zbr_f1 zZltcE{%!dAD2C1EeT>V}*>YueUKWZp>`H2us-1n^zEa>4!yMSK`tngbvi(mvLi2yW z>X)n!^(t+A7jg#9a*x3*x@5EHt|@5RG+qq>DjNCG{!ZkNp79#_Bhc<8AK}Hd0od7} z&SK}7Jn^|7_5kdL{%j%RkK4nbqfV$7f+wnI#yCy`(?SQ=VDoGFAmT+01!3N0XspQw zL-DljL@=FcYr*}=U0ckPyU@Svu-zRRe>`t(2?caXM4<)FuHb8NF2;AM|1AE*U1qWTeaHq}xDM38)DNb!L_nuq+8LHjNv1FyB6A=Y%IH!?2C-s3KbvxxkoPFf<)5bYBXi)DA74yR)(6flV_4NClv`(#L=o^d#JQ#D@N*1a2 zZOjUZuC1+g&?zJ5Fl-N&C8>pWK_`A5_I>$uX`6#>GsKXzxi~C_s2i$8^Sns-?0>Me zN3+Di$fB;Od38h-C_Cn~Z;4m2#Q^;Ye&_AG(3MIQrTF_E%U6m~?<4=}8Jz>osnxd+ zr}Y@~l^9f7VSKEAK`FG_-b@1qGaOJTZT91?EI?;v*M3nYPmyAu7YqFiTmtqfXC9Yb zRs~8#yVvizw~=C#u``v$QrmwjJT5M74YeBcn9ormZezC8?&AWcckVTCxdsK(s>TNk z#@%uhMI?m3UbOnZgg}XRFt|fchKpt3!A_qXE;I;*Ol6LhToYnzGkVp1E_ju{jf;?rH}GK|0RdJ zYP7ev2l7ahDM;{nk7Xkmk=`ic;YD(}w2u>Fe$c1kXpFK3^-n0sAwHAh`@sgKbsNAe z2Vh;kj@eyead^aJ-nDI9NxBs#4HoOd9k< zd3i8O{O4pPX03{3P&aIi7wA=*lYKR0CL8@+rN;4w-?8vZmE(h1SJ+B6!DXStqL}}T z5oC#J_0w&UDbRu_*_oVp!iQ}0CPTR)(5{q%LaOP;qp@h$!-Dp=JP#mF*K0p2{IfHy z)bBs6mY+U9X6Aa(G2{{W07ftwKsC#Wc+6w^p@!SRlFFDHWBnmx_DX(&*mUj5v9+4g zg#)zFp5&)gEigICOl!ntP<=2@BW;1`+GinOOKU{TVN@D`O;r+t(p zGd8GQ^|td^R(a}bX%qW!G~dF~)hd#vQ@~LEQURE1OQt8*Ha-_nsMmsrdcpch*LZOD zj#<)~aDvo7yV75!>T}ARES22m<*^fdJxXesh%nd`WuTXyBKirnQPBkdA>a-ZDx{8o z^iUBT*JJf2OX*=SM|}h(9vQ|Gd4q>=$C5^=O$A?_-kVsPon@`Lq0&5Gp%Syv$5~-k zYu_a>xH--HJWEnw9K%}977Lg2@ggQI-!t~H+!8z_hdoo z|9o*Ke;I|(_2kH2;lS&pTyrHJyEmH8Ft9)4$fLc0f0QgOoI$xcEzX4!>I*10Sv`*S z#=d=2$T7ynFnxGXfPQ5V?{p9%4XzTQXx?aJsl78Tjcd!dy)tfrhWUsGrIKRNGZ<~V zI&EpRQblk-zXqL@leXKCDvD!yHZH}jx&mYrh1lKd*bKtK6F{gJ>-Pb_^9r$yCK>TNnp?6cOs>6&J~6zutqz~c z^JATJ+}4<13;eb&vVnSHWov6dB^S8#5TLfp{!6f`2tM z_nUuP!9uQ?Yg4(LMh@gcgVqsqgu9IxsFUjRT@UOqsJ+j5VngkqFM9DYZ5@u{8$`_T zRS`?pfw3=?l;0&@_pEnFjL7GygO!>qD`?IzdD&t7N|C zD+4|=dk65BBO1kw0e9wGw+3%`E9C3o_*-3!@Y&WQdwi+&%Q76?pX=`BK8yu{L^zvQ%eRkyq^e7C+>pZE9(8U4iy*=ta(1sfURck?~$L!bAvqImQeQVwhT#U}fvZa0v# z>gVh47D`7^l@DpL-rehvu)KySRPS!lBUJjdC`>Xz#->1?W#)DQ#b>aiz1D9I7I7nH z6TNBnm2$LXB^Z<@z-LotpDC>Cuu-Hz{dt{{VgRE?iQ>@oisOdu7$R-aap}?aGQM$6 zMERT=H*u&MhvDZswy2XnIic_ljgrbUpHyt2nZ_)Z>o5WZJo~9_jfUUe19*!PuH21sJz(kW|$eS98S;&dmoVOV@@XVi07CxG$=ds$1GM~(Khv9QNt_FNJKiBjm z-9A5B{f-YFD+bqt%|TXagiV78S~{O#LEJXvYF@`iCS+cv;gJS{sWSA-6Q2+F7g#(> zh(---F+W>8NV^va2Q-1TYS1T^zO=SLl8-7x8x4;5u}v4p+RTb#&^r5J2FVa!5G);n z2RW?fHNL>hUb1oOen^*jmnX~AC-WhUY%}nGG1V0}ZbfRq*2s@G+w#HV>=ewWX}r3y z=YP|;#MkV@284l|4sW^#yKQ5W%up7}@rch|xc>=eFFv@@#xms>is71qc3QnVuhLYuH^z!cwJJ=huwR|uRCN8$X_;#jSIOByDAf{np z(kSVFDqOY-!?_w&e^B82=xIjU7X) ztfPV@J%Z$RGn+;{PE*g>uBmqC9?~mkCeNm)sWI^8pxDI5C-%jZTNei;JTn0sSMW4C#ls1pLJExD2 zzpqS~zxVWF6$gGCQl5hCe7f_U1}unN?dnXAGb-Jwf+vTsgefSlc=AKC%GQ{zWZ|h? zFESKjqMUcLQTrUz`m}Qa={7d;!8fmw*Q~mtB$C+Y!k@QKCyu#*I}o!HRje{YJ?E{j z=qcPcz;Vp2*Bt=;$6mahnFeh$>4-FN^#jacv)6rsuT%sR9gf*6fZ-6MfuhPY zpNO7Xx3bjqEAbO|#2gQ#kPG)b>)cFwzF(o!{w_g#ZUS%f)1fO^#&sekA9*DwghY8rH2gmDDwY`Sr8te`C-=?pvQ%<7Q=Pto zKD}t{8ogrk^w#S?xx(|9-$oQl62&*e1sf8PS}4*KthiUrV56{SEqdLv)VpjBZ58W4c2(-|q$qQq)$Zbv|87+){JD_$BVA8?(ULa*c6 z{#fzeu(LTyk|i^gMYSE&yz+-Pjrxk{-&~^LHl(Nz77k}(1hP4`xX3BiWc}gMYHJ+82l>W?9bK{fA!1*5uVH{&)lLfOYC&cC5!4Q4FrrrF!rZ0O38Ap z0lD0CV*BW_UPK>#LM+i28K&b4TOm?TM##7BwQeIviCOd#y13ZbeR;Fv;NSP_Gihe8j@t{e42cgwU_O*A~wz1YR#G^3!k8R9?n(RlDj}1qD%fc`{$)DyN6}WU8hDXlkw=xyJM=xx|Sj zM3+%YD2ohQqq)arlvX|KwhrI5ui)zqJ|h}=N0&VtOLh8mmqAaR54+>~b-kCx2aUkG zbiDo}g57|=%`G=^s2wWn7l@vTA7no$jTQ9tGSGdadb92obUD>3-DYmpMy z+wvw5>bSk{L4x%9OSu&`TCc6H=~Gqp_fL5d6_5lM!Q3E{VqViT403NimH ze0EWFI3ivaC`3Nus+G6JgD)i%<_oVj^i2@hNJaL4szIq3TPF2$So=Ow(RS85UDGG* z@2Z@A;2>OT2ThDe{t0|lS{`))+gf`Gl-DZM&{?_;&#Z{q2g!6l8xCiP3`oe2a}Lbb zsYRrLQA^Gj5Ay0Gb$AzR*ox){PUOAPe;C`WCtqsp&yT+Kv`U-mDRYvu?4Jumi7N2R zHb$#Z?zoY<_@%rLAFUiZ?QJmpD1dF9^Go{4_gCBNvpUwvk3LCz)G0orf23pggM8fO zsQ62@^AIFXeD=%1FyprkFu|Xinwp}FeT2`5l7srxX4rOg;lr1Rs=f8{tvk^-bHoD( z_l~VG!`qSBApVY+naQ8>`R_jQ!zn+C6%vb2)VoJoUUdV&}; z=%uPIE`!}SW2J&e6}j5D%5OMosnixd4Gm@E2951wv$OqBHJA8YGL{~V*SN0tHRG)B z7C0+iA^BL)z>X-A1KrKbnQ5ffDWBZ=Cn9S4J2hfpFJ2gwfrpD4g4)I`Wdt1p#0Nh*Z_BNDTu4nVM~_AEoV6-# zLv0thn?1bz^k;M3^*g`R8h}AuDv+4RCRSy-Ckbz$TQmuDL+pApjC%`tJmvzo{fX%= zUAe*emBbCZ-(huCVwz0R`{lI`$LaL+`_=7+_TneFNcf$#FFmXAnQ=kasn0!0 zjakclj^DjOz^xMLF*%g@DNP~&A;qN9KkMi>jFz@n7|$}g)bwVfcos22KZS0=^7`6F z*JKeIL*GA@9XyuuUNXAE+ zn14Q#E5SJQlGbHGr>py!oC!~7m)||C_eI*MXtP~JdX&&T3xx^=ksd`Pry9Fd_`HO3 z(^|FTq%Ygdmo+^PuW+?-TP;V%>{(s?TY|c4oqQ|6jdQfc*XlPLt&kW^g9{8EqF8;T z5m}EWDz!Z@-#un*spU#pWs6hrbnBCPQk{E<{Aixixql8j)ghr_a zocQO@@kgGbIgO&&%|?+O{^?R>AGR3W@D7C zhW%*qtLNXK@V+=&IfU;_&>05`#3xY=VM6Z5tmi+=FSQ7+I)L|TxXST;8#cP9_5yb{ zcVo8MXbxY_hdnNS@9xoH1JPYpvYAONL7_zNnP5N6kXVWsaS z=EIa}vhUa%iR;U&+Hz%vh$E~qn!a2ewC)Or?&Y1X*lN>{EH)IpmLHxy9O6mtcJsp| zVkYa)r2?fu2spG`S0K>d)+q`F;}Z1N>up>H+X)EY))m>A358yoY-&jm^Fx{->q4VT8{hY9(=nXWWE`VOj;V?{c=B1|AjF3;0|awO8s9lbUus~I@zt) z{fs)G-sn%tG?b^qo%%eCNrUf*8 z_K5EV*Wwf;alFgzU^@rdCJ(f}?!Dvvq$_-`$zf|=X}xKsmgqsYlF!R)OvbRGbmz`I z1V9^fZg2W6p*Gpi_!D@DaskmX5-PGt;J3x^&)C$2Q)DYSimM24Q!`M`@{U9M%M7=g zl_bxPTQN9Owcs_|jfyTmpu27IBM>hCeWT=Y7SR;~A5=FBwV1P-v15K07AQ zq**5X(^rX;BkU#33Hihwa}}ivK#gHJIX=h(WtJrPNA=J$qfTQBAK>%aJYO8I)e+(* zCl_YcEQ?oqlwV6lC`tkd%@W(A^G|9)iE-zK+}mWO*n9z$#cZ8Y*|*##H)^|%wT4E+ zYK2c@tVCfC?q=IEyn(@q7ew2SUYRu=&yDBBA*D!V(~YYxkAb4o^8tsRTfps5wQ@BY z#%XWPjq%CjW>##?SKIK5QR&pU^n%DouU&mMiW80XxF zds-EC7+3KdcoSTGB_jh-7OQnqvt0n`>W|MOEx1>d0&|E1^fIPedEEBc|2!6Vzsyw@U4J!%JCYTAYomoG&iL7*v5Mk# zK*A|xKf$5X&WRFgfROt@W>VK7m7=1_>kSQS&ip3>s6JmR#AAX_EnGhEX9RInJY6U zy=5V8=CNPOlhp_45fX(F%%)Ywc=-h7tm{z+w?`c@3S|JOh82smiAvId7lq*VkoGHE z6B?}1NZEIM=SOZ=xi*y-rZ&N4xJy&$T`3Wl2hl51hXlj z^>d^Yw^Mp_Y}I&Wb|OnqFcr9?iA}BE8)s(;N0h@`!;4zOs8HT2WvO@A<-X%_RgYr} z+@NM0WA{Cmds@J08~y4_@l)#y$4A9E6RMF+8#SAN<4TJLM@fqA4M{CbC~u-+(m&Zc z*^d@p@Hao3CKo-UjGNyr{gyK$j6p?vzCQ==$J+6Mfz3Z=JzAIFXoEcB3c8U3S3hML zHe6-}Rk16}qGd@C%6L><8ZEWY18C&{94K`-|76Ep4JAb(6hFVGtyAWJgcOM_6lOLWTl0{ijze#GZ6~m0hoO3ryJ1? znu8GZ<7Ga9nq}fjumU#2Y|wCsZwVi0ZuC3u(gy`yqDX$+@zyUhV7B!gpZqB_*1$O& zI-QzBcH0q~(rv1dM^IUqPP?DLmWIZ|qAUJCIF7b-kPC)8!(3&Uo zD_s8(E;b~yjcXVWA`gn?!XJQHx^(rS@Q%i|mKcxco_jRg1F(WILw{|^sLV(kOmN`F z&0_>HMr$MsSt2U`L_vEq`Fn#C*;sxF5NaiAF^%{|!}gjsV21e6vy}6Co_W1rdIi;K zL|pZ9gl)cT-mb)0+{uRYw)LbM}xcb_umGpnYp)SPIG$;JBGb*GwXAQG8aJdx3> z+h+s87T1=DcOUZlOwsuC&zwnf`J&{-s3PcsOHB9^1X)cv#{3X zGmUHliEj>`e)RNl(tHonP&C>%qn`O+=ebOh?NX4(_=-N@0b=D{=`&ohjT_x;hqK31Qla`F0O5_jZlnN5;mZrPe-1l< zHLxlt{@w+h&Vt?noTwTm{x4t`xPzQ`NU!+!E97@}2VeVDSfkW51QZ((_bO#6g~G3o z|5tD#F0LQ+hcuGN-43RwpXQLLJ8+Dq06wx2|Ic^C!8!lwFO|n+8Q8qR;89VjTt#f& zHcw7`V)*Q3bs#x<%V{>E2u9M>fAJnR+5a+1w5^fQGW8yz%rN_k3}kInbv|f~43r=` z2uI*N|9WdvD1Rv`7UYWY#^VWIz}{0v+E5vP9}Mw-eO6w%!`h@wdlZ{3{@6Ab;9q7s zbbhuo9yL5q==_MQFn;oejr!5vzF@ISNiEwAqy(Fx^xjwe z)wPZ&QMiv+o&J}u#_*p@4IhDmN-41d3MLF_@_Ppt&!NhHgl_*&#m&D~=(?2WRKD(s36igRd-1 zlDsG=0_5*uHCB_hwLdbfaqp3P`Cns z>^iTM{>aBz8Ls!u)Z6A@;|j63h#uy8vK&b&;5@&5ae8)^rYVSIXac&8(jX$Vxy3GW zJ|CDgZDn!p5#W3HUvFhi-F9|oQ*COo5lh}61Afn+z;7g@!K_>Wa}olC(URRJ=JC(S z6LNQVcRbt;!K9ITEe<}Ugnz_&e|D)5i6~LUAlIW$vjsZd{N}s-A){EX)5}R|%w%~A zU@74|XS=(q3x{?o8({!%YQu0Qs}Q33j@$(si&3#%`u8K!_9!b=>}7RlTKLTj5c<6>j0jmCTbgL<;M zqi!?nXW74@5*c8n(T>lSqCQ}ZK);5IjFN~y*8*gxIA^q^6)yC3=$I=c-?^`sX#$)g zC?-GMGn%@y_oIFv0hA#49|RhL=vRQ}Pc9e7o7-+X+eu>7pP$evWYvK3&eu^TTa_7x zGg6;Nn;IH|5S6L+XgiA^5}Dac^RQ@oLD%;VuM3}Bw>(Na{o!df;33P_b2PGz^*G-} z7Ql-uH-5}UZ#=^9gX*eR{JiIyyS<+`z?& zY#WGO5d>WceRWsP$Rn5rtYZ}!u=nM}S=6znQrz`<_SyPkMg{b1q@iG!JlsUq27A&J zR0H5h1-oI75!BAOQnCLz#eaRICh_EXrdyA{0YdAH;!i@}_0xrAq z%$m1YKo%K1)1lGaZ`6luJB2X3>CMpr8DXQR28ba`>FlV)LV)01ia|@Rz0(;rbYB;ihrF95Nk8>oIhg4WQ@0&*N}X z_H;5u_8sr#fwqw;HY`E1JQke-1*_T4oIW8i8J4)s@c#E1&=buh3V@*G=QJ=PLjQ9i zl~tG2bK`}Ug~BIsrR36KY(`&(GEu`bY%+RZL#uu%!aON7Q|cN0eefmq(JLT3rhmjv z8C7Ovq|16sTA}Xbjk$r!(yE=W&gviOVF!Z}tH_>PGd7HCA1+K8agF1E5IF>@vTb1* zeaT=0cr7S)K?=;!VQwd`1l(>_iZBFdw%+a>9?E+>*yFY0#9v&N@yBPgA&g}UoO5Uh ziu-Vl5RicJ=tMUacO=@BbEbyI-9qV=vgYmJmsb}&T%~#glhzRHpqTRe$DJsO1`E4u zdWG#jZszNp9QUS}sI%r&rgf*-6`T<5g9ObDOGcdc%WV znv(x%-C=iiC8CbeD7r zNOw2VCEeXfsC0LCcL+*%h%`upboaaOZ#>WWo%8q0I75sx+`#^RDT$k+7>vD+7y`u=x)IKK=V$5fT%M|oq7tw~m-3|xTG z$cO~IG=NIWrtLHU@D0mA%?=bSdc8^g{Ur`a6(8STXtW&wJ%sbGFOY~6AUTVwPBa-z z(*$N1MLmU&y!m4pE)xsdtsFrBudy(pHUlA%G+;+sdWS|emvNguN<#q@1Rae_ zUsaHwkrMqM`r5yxk{gSRti)CMN1_(o0XuXL&1~SBOH>iNfYgPx^QDI zj<{b=w}uLrHnaD+ot8ow?^nS+3n?=Hy$qK8pZ&ab-rvZ@*dGGYQ7a8vu-jGw+HHXU z7s_O?s;ZT1fm$cey!`xTPCX9!6F?CL7dy9s<&7$Pn+w=7-GCSpu*T-zoj##M%lP*d z{^va$Hh8HE7#Ui`9a@@uOK~Sr#nJp{7~_mjmbg+(;p@GhjT6gNBlIM|wrN@jBWqv4 zX$=8lvjnC>tBX7bVDA>r-~+OtZ$GlmTuX~WiBAsBvsVfUj;>t=6p_DhUc6| z-8L^&T2w56V-B$NZUo(?`}xin;7~ewJAZcsp>8|>(ginR0=VWao|P(Zj{?JiUd-Ss z^4y^C7kg)*=YHL_q7T$6e|}PcOZB!Rt4a{FK;+5?l2Ireh_KLdL%?kmq|@oMl=Od| zJL&)tm5!zq_*UpF2w%W1f;1mc zS+^I0ad<3gM;H>Az0gi;iL|P;L@pcG)yBOF8=;?HUG{-%3nYA*wJt&sm+4Y<{g$hp z?Dbzy5X$#|6(s-G)UYZ{Y`(_(G1ZCJ`hvdR(MC5bsoj8{Ppe*>Lq--<2+>y3k+p-H z>jC4$p?|;WzwdLn zs{P6A7CE+|6k`lgJ5?sFPxtE>#t}2X5$U2G^q9SIT_8m*e~lw(&Zrkv=YbB~{$Bx* zL?o^r4p?Ep>GyxV0aH!$uszUWe`OV>e~-!A!m=4mC5}zopU(J2V8!QHB~#yZr>63s z7MEx&mMR7agH=LBO90rYrHJHT2Kb%>kmV2vQ-wIEeEH6PbqgkJK-vkt1ta5Yl$OCXJ*IuSrqqZr;h92mX$}R z+K5v7UGe8Z;4J2JIQg!WY6;NZ;W6-EW7EX}R^xKw82eUP8BXb=K< zYJc7XmR+X@jVqFntOKA=yl4h)J`lR1Nthf zB8H-Q=e-@40PtIpjM|&YliHN3@m^3%|KA3kVs;gv3nyy&C;?CZmbCNeE!|b-HRwv! zv*+#iLhh^1!%&lag)#&j7daO85p{p6f}XTgGM-L<*`hJz+qXM`>#T<1#|MmJ_0A6X zh-YI!VD_2Y@#*KRz64+!euY4XphlD~0JRLyI`+gGI9o#)f~bkWpI$P)L^Vpi3^U-? zrgu1T`3fw2cj}UBO?PWfUPb50BrEycTErcS-g&3cx!V4p*(rxhJ#HJP_hT5Eu7gI! zqNjCaaCBv6C!fzPxfr&ZzUly3FdG#|FXSc{!H7pSd;$bHjtiI|nZc z4)3FNJE-nJly$Gj=-5-Ugs4jR@9&>m-cA0Evl;dr-v9gm|9ZcSZuqxArhVY=&Dwt+ zD-YhFVqU@jeERPPIkQCn0qOpG>Hq(2b*z^Sv>$_DIELtwAv32p;L%I|wIZR;f%sWF zYz~vf)2e+2ats3HUDaQ}caj)|k6A_x_?GPPu7j1R0{~e;z;-QUQcawLxHdv?NWz!N zOJI|S&tYBEX9Lz{z0>`nE2V$`V3nh?B!V~27pfL4_f0AXjtaC_JXtXb6wyQJ2xH%8 znS=@|TgaU|_{%C?)4jAt^}LPRQpu73*$?l+!NT?fz?2GDqbF>Qq|Dhe{#JzKErH1T zWNzaSoenQeJCP1Xh>dL^JbD~hM-PJ0eG^~;x5p>Vg$wp~KN*1FF!m+=XZ^-8i03WU z^EE=vYNKX7m=y2(6DuNiH{~&BoplhcMGMSoK9hu?f$w!4BXI6we?{1JVGT49lORGv zv)L$k)739VuG9Ojf$!|hGj}xK+w)4QzC`uh9wLaMZI=~iYQo!j1NB#}nP7X`c32&T zc~yIy^VleI(ZK{Qj%UkqpLG6oP*!$#6}{+ref!`FYpYrI%UfIEm5+`o$eRKoR#HM; zLsu*~ww*M-)=i8Unb-UK2n=^0t`|`%H#s{;|J~f8aA9MR@Vo}@l8N&q_wwQo>`IWX zy0sY*(xQPjaNsl9%061N@6`dDUie~_O|9A3SI8h~K9Tbt!ri`!h`$BFf_Y%(c}J%N zaV#%Y%GQd1aKUOnz@*iv_6pX6fmr)`>a9oM+wC~xO3V<@_F1sA3 zIdPUA!v_f9H#L#Ew_CeiV}2)ValQ0>m-D8Me$HLG&F^j$)uGqY)U(HcVaoF5DDC`|anLWB4U?34RjwFZv=g81xr?!IS&HLClQ5>XDkfHj? z``90{lz|9wA;hH1171mxti}-*L@W0QRq-VHx&}iSfuOm{V@Li zfVVd=PA2+c;P;Q->BRQpZ4ZE=Ik)~l;GYTZt>%fX20f3g0KcwP8 zhQMEMJ2sG5qw^FOEgwCv_g=*9&HT(+D4p)wc06T#*eW3}t0S{$DK&%wtb3f+V{23D*+G5Z)`Bg;%^e+WUAf{faSjof!EEeuTlnDf=0J6YZ zv6x4XdxRe|rRp1h=4yF#niLG%tMOjiW<_T*D?Tpy3Z-z^9eyNsSg9*k2D(5!hugaK z)Yfwk;d)M3RF}hB3DeP({MqpSt@~!j$!u@WWR`WVlQYLhTw`$hqO%qnVc-Wle6OTq zGWa>3y_h4_nalNbePwnN?S6fn%@W_ww#bbD>Hx@p%@|+fb3c`w%o}j}wY>k4F`J-! z40vB2-qvM8Q(=1PcNzwk>C|hTZjadk-KR$@>cLmJhLO?T^ApwDxZX5K-LflioXwCN zD=yp|pW}L3F>0&4+q<0qgu5W!VRsW1*Om0583Oz-RmrEl4u?pDCKfj5*nHiOyKX&64ZDLXW${2@Mt5K4klj#H@~qQa zRaPG=fL2YUB48JdGmx|#IKo2ZoZeu)FSRVr_nnfNtg=R?`NHP^J@U~*TpKeBSu40C z&%_hiB#KHg2M-ICCFk9j7`lSE;FYZ}sw>;E&uwZX#SvzT|FdBJ0+2w2dLv8-)X{OX zrTzX3dGNo(UwinYmb-TEXajuFJckTfyi^S@#Gu8a_8NgN@kZOOe|IP*iiYWRIEk#N zvhURxgEzieocN}aWO5r)zVpR2YtcJXG#qab?4BpNagR~1kBb=O{toSHR*q!gKipq- zi1V`J_ULmUV|)LZ)Zb}$UbeOQpWD*##A;dPbPI}O4!Bk(y&9<{f->bTy%P5N1>FX8EO zwB^|D`;-BYa5(@cvKse7i{4Ntvn#EVm^C1jJxRyQmcuHRbkOw4$oXl_=3D z{3~r~yekXO+grf?-R=LdEemAzTC8tUhkX%^ZNyC?$f1do1yErOjs!0GY3U#h1HWbq~S)ogl4N z9d*6UY&6I(#a*q>ZfayJQ=~H}L+E$Hh9QE^fYQ=7aS-geeDABE3zj7M|23{-gftM2VK@>I% zO|shEZubqGAdc*AKGXN`cU#dW#`K+5R7(BzZQU)wc#Fg@HoMx;Fv7kl7UC;8T8rWX zq62ovEqXv_gQHb$D9c{?rS$0U4>escjSE}^S5K4K-C41z6%?Mz&t&wlWC&vTvR>*< zSa_v6#gWRfKX5e!KAC2=J_e{gIA_Yi@)hD%3RVeI>eeKwkok(xeqnPoWP z|D&*OJyXJoWrvdA=P~1|PrZUtBIPY1Bdmo5N2qaPredbP^Cn-3JN{t$av-{{o5&}Z z<@{1tz1UO-B8rs!Ehl1{U6)LvE<-6=+S!?AEeDUgN5R{(yh(|8R>Y=@h-KgFn6GXv z%DYE=#o~%g5!g#7H>)WyWbDR0vJtqv_z#n;X!&w4Vi{rEvsPRe^J||vR=w7BRFU80 zNWs0p@6OKRvu7B(T3)};=6fze3A`FDwRn&yQ5Y;L&FHo@KE|fR5Dn8Z9G=anWtS z(PzDxuVKdQ1-A2O`kUfIUu$){&YX<1ipf~qmThu_L-&z{{aPo~t;@5<fzgJ+S=+Z^g^*UHJHhyjp)O-YVsV>N!r zAsspIB3fjG-~#^uWo(hijRU*)JUh;*5F(U8R%mq<*qq%z0DF!2@Rq~1!52?7zCdE1 zqs3u04(1}%UU9r@gZpyrLQaB+9?ucz$v$V5GKCBPbrR6pF)JDC2i{)LtPWx?<4&}x z4Eo$(+fT1=A9~rWf=TQAafx>sz8@yiW2Qtcd#xv=`lI3q%pmrrcC*sEQ~i##ACk|* zn?dQkahzqeTq?mHN#U6K?VK$O0{y}PTp|ak@634qC(&agsT{dJ-glFrBX#ej067QB z)j98q%*Kf6HI&h6p25!muNj5*7U!MgHPPGlgm3n$wCcYv16^PhsEP=t6~SxV0a4v; zEBF;ML(dhsm>Jjc#iI#@A&$b+P!;Q-Wa~6O5ekmpsT?jhi!x}}Wm(RYOag36kIh}?@N_iab%NO=M)6Z zS1_aNEaw7DWip8k9}d?75vI$v)%TXm2{K7$p+4#wi^mi+*l10GYtcQErl09_32+B+ z-V}LbXJLSN&UD@jPr~)ehdZ!L`l|D||Fay;8NL2qQ4n)~p7oMf`!c%0#?Rg@?lg6N z@J5l-Qd?;(hQ~ZNuF;-2eGTYQrt2)QDkL~6n|=cB-w8kRI{hH(wpHah-D2#Fr$3M0 zssO9`s?etgv>f(2m~)s7UF^7L^(&9($_N!yR_o{$uhuzlxqS)~7zPKMDk!j`8<5l+ zZOr_c5y`2Bhd^c%QOUi(hknmhES2mB#jhOXJ#8a1>u<$w(s`X(BRzW$h;|Pb8WVAt z^kkUy+QyIS(R+Voi-zFAs(^iH&ixI_PG=OM5IbA%6TEXewvcbScXt5Evvnv~#dURf z#l&Rw9n*d)3V#-aQT}WmiqWa6AG5p1!G$5d{V>)?{0~VyBTXU%=%Lik1y9|mi0@AO zDq7h$V)p4p0-nQ(e{wyl_q{%z#JFI(Ol*2GwDy^b46<)84%pO6yY z65+j5K!0YT-+Go(P}%t&txqS5U&^DwsaoAmu;!O-cL}K+Mw{AY@h05o(TSn4qTQxX z)ZXsSpDE|(@kN=R}!7Zs9LrQ$K(C@E;4-MeNqZM1z3FaM2UhUUU6i;e6PP-*@-?5tQm@R zTQC0%0G=tEDZ8hf!ij8rgj%^?&vv?iae)uh3Fl=o)67s3he2fEw@NTrS;Gd+`hx~w z@)nH%&E0Auhtg9Qk2y;a4n9N=>cw;Gm4>LOjh+yULSMPGJm4)qu}UUNlaiYHh-hSo zO60rO)hpyyh|gn8AIC?Xd$Gj04MYAQg$ZVmOTj6sd!r8~LxVX`By!GN{}PC-cVObJ>d6irc*C z+VNWNbtWb_=HDZ+Q7Y$k+l2y)><{wnC2Rb8ZEozIql5ys1Cu6Ra^scyzRQIj^K~{u zcQ$Yjuo<@sdY0NEBobQv2)!KBfnjF@5_DrEgUO8dR4Yk{b+fk(}gK^Cctd>=<>Sxpd9f$^ zLpqLBqTMkV;hKsYmEu?-NOd)swJ*22eDbUB6FvJu;rX8f8m;N4iTKn?^Y4@U^eN~%PbNCGyl z<-FDykrhv%(`{Xa;^@R)i2toQAOB#AWL)md_@n$JuGOmEQU&l@j1k=vvmoG)4G zD>p<5LQQfRC~A~v_Xb4WQT)vO$v!=9&YTw2x?snixJR9Zdx$M_E_{^Jb~``kAJMhX zyp=^S$PCeMyyN(AE9-H_>9iE#_fIVi_l#MYJP0+!Is%_>SzMq8I@%wX;ZlE7dap1^Z38JEle7}=l5$cx_sxamzQ5M zWtya*C173nY7dIZ+RB~3wm!pN_xR1pXn!k?P-@63Os`~+tk(72(IWiw z6x8jJcsg7(5|*zaLMjD$wIJ|^$Fw)g4lRiG^h*ER0l{Wr15}*x!!4S|_YlV{G(x^C zhHGf*1>n^&c_nx+M5kU}0Cq?peZJV$RU7t5jAwldBm{;F@g_zHs_*KVb4EHg&3+OI>|B0;W>5T1+u9Vhy0#5p3{Q!d0MU%5>c#(#lS|j zKRfMNH&gKeT}3DY0V!1XxMAjP1ku7JwoC5=?D}*>d}$Lyb_@l>2F&{Wy}s|}1GTbS zf@Zx(e8Dd1he-C@C}^wD1yiW+fsV}%aFA4LB%JbjIrZ|Lg6NWnUTyq%ye$B{M_i(V#5MnjQJKqp> z^a&GDBrC`s(FVU$v^g71IMV-!EN{NSJN0ok+Ml_WB))^+@V8in{50KYpa=fjkC=_> zh$8b1R?@&!X3ZPVcmjUKeXf%BWTN?4>uOFBi8iYN2k<5B| z|0$;>*_pEc9P&SjCM$iPBsoDU%jxBavPcfm zN{}8TCy~eC;>3%xN>8ZC|9Np`te!E^>8f|qkSnB7cQ#JM;Bp|CxFic+Yd}Q*telKFmXh50YKV z3^zrhp_05Sqw)rlGi$RhPhgS7?xAP4NO%%-_1xt;MzN>~Nr~Fq=d+aGm76#@;z)c1 zotI=eyEaC$BJ~H|OK}wsa|hjLyhISyx|kRVG%#r~#R<%seD)b;c5x(8euj)^bY@P3 zqc9zKz%98;ms?R4>>Os^#vvB{JstlPYT7Sk5*4%~t0Ua{7#+~e)F!H#Vr=Q(yphN8 z?T_jpzJ`wB`?5R-@?&nem05=4Z+tk825p$O^Dl$ulso%S`WBG+ej9y*4buMEMYxD# zsObiiow{eDhC)B?hoDVphB^q3LR+QLbI!eg44{jn$n`Ho^kn3;kl7p)mQ3kcE@hkQ zGkJM=2S>+k8#6ywVz;tqGgi}CfcqEQ+UnB6JnDQfACH#6oMt;`G*=7z9Sh8p7_r2W zvcP*H4=^Lowt;ZW{?}`Dn85kygM~Ri_#V^BWw1fCi~M%+l2Iqgvj_*j zFmaR(!?Udson`7LfD0;vET@YVA85Tu5F0;y11tvVJ!!(J64BizMBG2vRLEpnWl)5Q+GWoe3*PGsEcoHzkQ&P&1&7IG`K zvxlxZ%xb^^D#-Z}VZSf~eF6Oi6A=-$j+)Q0;7_{6LhscN90u)_3s#WkE>NOWPisek z`n%Swp?q{2`f7$zx3#*d2QLkm{FSqH05j~>9x^svNb{S;6@an!ENDH*64^nW2D8`g zA?=FD%yf7oJVuTOV@AA!k(XYGzoYXzM!$k8XYJ;=_%o9Vr(y`WF!+Li9cI0BW?rd7@)sB z#)Vh}YMw-Vsfs=A$T8{L4Ky3U3aodkOkcx%`ib?M#UJq^_+Ihtcy97mJq=@dm>T8L zTf{$(YV0M7-#^9p zyX`AgIg-;VP&?|-W-=KjSq1u+L^zB*E8S2WJD_`mV%*ey6k+no?3eH6mNe(jBD`4% zmV7>fxZ^ih=JRm=tTxJIuY56BrW%Y}g4wjXx?nC$0YXjehCk;MMV(@=VccKy|33F?rEtVFq^tpr{y@tY#FCZ_ogHo|2AmKnaH8xn<%Ptu;lu<%6!_)=0E@;0 zKVvStP#$+zyH<|wixf}ha|9#MGDib~&om}F4LOZM7O7|8WcOPPY+9AP4H~861{@G@ zP5%PAP%hIb@Pn8_xrg)RiyXMUSH0TD088??zn&Vz)md5QZ`J$-<^K$|ZcB(4qNlU7 z3a{3I>V|jU6%FE7teE<$fbtv0QQYbonbg47{9oe{kIoky*wtIkuCcb`<4JChrBC@{;UH4AwL9y* zkr7@hB5PU|hRdGp#yZD}{I(?&rXJ)02c-^uz4Q|CJv2;x=O@IEF()#s0}EtVq8gY+ z=w^e<$qnVpxMVNrwF~H1Nb0&cy0kHXs26{!eZMJ;(bpfE&_fml(NKj2X`cQNZtHMn z&hf*x>(rwu-|}w(_2wGqlRk{Wc0C4T#Nug|33i4s9ftgPK)b@p0WN8tZMB6qyf9)u zAjawU0l@KV3#p~MP_RUt0{{ar_(aKUcss4J*?|z~@w>&JWvf2k!?`Ue3i#ajXSAs> znS!jsY|wz6;$hCcb-8&(!2P1vIag`Ly{2CR#f@Pw^ZiwfTM%;fEX?yDfs>1nkiM}M zZPdOm9IDn*=DFXfY$oyIC}cI(%8(;jk@%gqK_Zv?bJY_az zK%eI^O=SkZPoQPL7}NC~fTovdc2iZS(#3aIuI3|-8)8b(tqeL5d{rqXMEMucx{6Pl zadY-TgXKA_oGQw0TM9HE?+5j*Tz<=ZR4fmIvw2<&20^w}t|iMnQvHWTJjazmI4mU> zv^6Zg(h#m=x8NVRy`;YBC2zL3DgF3xNATt6wz0(jTr@M6<07_Uni7%STxR&Z7&OKi zY@3K#ZhI>Nw_tJ>lEDi=sCml=?trkrZ)nV*$`^QIh6*srtfqN@v31r!X;3$qAZwO~ zhKyc-aC;n3AQTtR<81jrWn=IQMSe9HX8EnqGM{@ne(UN@*E~lnKHif-5tqcrkC?#j zIymNz(be`-h~)-T!ZOA9gXh)TKSplG()>LJUZ-i~a6s`hsEi_8iO}0y#Fr zc!qKBc+>$N0yA+EjD>krbMHDs_x`ukd=Ap+ksLcV%;n;Y_+xZ=>8^yjj}Ke0M$dyw z`*_V38rW9b5ZgmNM!&F?U5PW?v)-LN;LoD@XW?XeE^iIm69$MQ68KYQx0IJ@w9gOZiXnr!ouuXzP^Kr zTo?};IdALDm(zS+v4wza%|X2$a*^S}kP=biudin=bv{UyX|N1Tu|e6b?s;Z^VM;<}R(tsLj!2!3DnF+k@(TPNZRj zyXnbsm{pQh5<#rsRoh7X`dip2OinGVl7;TfR+kB2yy$LSq?At^+U%qjhppH4bWPGe zPN4SKaUMsD#wVKZkqJ)dS?LYuryM@FN2K};r|=R~9_fPuoq~xWyYaz?t2t4ne&vN8 z+8#^;It?2%MR_qlme~-)L`C%yt2LYhU;2JlxHUP0KhPT7wx!q7*qv)vBm(ARvV2D3 z`EJ!CF{PLt-+1xVimz1nG)o_6aOaWcKhZI>#n+&?Wu-Ly62MRyc+px-MfcYz5>yE_ z_0gm2)pOLg)RHkI+JP71g-xa+zYLdC-unEysZ>i6HfD~QP0`a%kq*VRTk*}47!wt& z71GG_FyMe&F&uqt{`MQiF&j?t$sD1Vu=6yM){5`Sf`4BV>)Zb*=8{m6oF#@d*QU$_ zVQEn0^kLP{A}bp3MEv(2dNjuf)<(dwx?W0ApkZ~~FJQ#br#OBCSE=+IYIFufP4AsJ zy0(B^=Fr2TbY6^l>$!+t`6MCfM212lURV3;Dmys5w6zgfklSvb{0k;>hM94;L^BYm z5e9a@r4mIB^Lt+8a64{K0Oa1{HZmDt;UtLL@YdM*P+VNDfe7hgr;C@({t^k;bn5oJ zp-s<>ubb?Ri^Wbziln#Y=))XCfKqP?1P>Og4&gZ6U$Y1x@Rf7eE(VE5;=M=l)fe-; zIw%Z@(xKpE4Fw0!y$KkRJx9cyGM#7&me+5`2Bq!o$iASi6x3)ccgui4$Py zV(o#3_jcTt!d?uESB@}(Kz*AfU%&G))@Cks(LH}`?1db?9F92oAvca z9;a(WhTCr@P0sUC<8Jaa9fQezsKTBnI*+N#DGOKTEZtKKf0c;ocDO zI{$t|o=^kS^CGQ_y*MsAJ)A0#INhPAlLi?s-ys^w^pQwc0_M;uSe$`Nxb5Lrga>^P zZ3*5F-Ca7CbCItYBnJds0=WMimNW#s72GmIFYAannrr@=wLyEGasBaR7Mz^u@aI6DIW`Tq-d^OuN4`tG3bW;rKLa)Ds)kj5&)tpkT>P9Fu53rvfUCKfAfovlScr`*(BmY4h@=jO~ROb0%m(-<9~=e|#cfngj07zq2&{HzMnz$_>8idoTj51F1vvDqwKcU)_{ z;$3wXw<4VMnA;mUaWvptUPf#&j15BsnBib>B`ExjA<`5+in)tI;;||xabfEB#VPFU+Q0+~;p4NBCPrqNDl6UkE+AY=5oArEw z^Pk;>h2++{C`kTZKLA_5+RuY}G01=&oyqNJx-8(ig$jp&0GSnJ_#C&`?aVIEK22wP z8BB*DP<`CnpeYT}LyX6KGeJ0!+e#p^U6gG!Y=6=X_mJTD`tq_MuA`&vpoE8m2Vb96a?F+!-4FQ?<<_xgqcR|)gn+--U`E=dxr2W%R=m)|Fem?sG8-gdCb*SFp zN+`FWv#FIMd7AYB7!$r~_){M_3k*^~OOwLqS;Gu6p}ANe2douM4Wsa|B1fyYQ*X$X z7vKRAd)pK05UIiAb^FIhXp&5NO;(e#=_OYRf(pRu+Lmi5FhPoY#dj?%30J)f=+Zl2 z$#QE)fq}Vn{pM%*ce3yPU%K=nMaT0`qlK$;tj3b-Q0YX>6-bhmc6w2Q-nG3lTB3%@ zp1Ij)a_4pangk!Cboupd2La{z_$v)Yxc$jbWg1ut{#qy$N4tY+(e3lBd-O!k72HHhXvTOytq!Grf1cwloJ>De-iiRr6 zZSBelgzId#3%2>IYlKD1%-xLTGLxMsL{p>0g;TDY;CupArE28d6;pvod2e7Qi{D@^ zkY)C$qd?tGAV`xi`@+G=KZH_D?CcTcV?5t6c)pafAGNX3wPR`lkhy+wKl; z&x_2u@SI2s#oXQb^js01Fm9BW)LjdR3+5wDXe>MP9Hn!$GKYNb)S@A%w{{(R^fL@? zjUPr*qWTCJa>T+#CUSNk6*nZQ*^O7*|NNRbKH49xI{@yd)drWpf1p72>8X4S?_8K& zuRDHS(R2DM*oHdD*Cha6&(%pa^`|3WYTM(}z`G7w4Q`)5cBF^NPUs)N1}Vb=v+GyM*VOK1$CgFr$5%|E!zW@=?a# zeIY5B_ps`hRC@03xwSf0-1NFPNx>SuF9!)@+J1X;lhXz<4<~b$aaDSoWsch|*b<1C ziz?J#8X%6WSUx-*XuO81)azZns^wf_b*mQ9wB^42tY7iQw#+<^$#}=(d-tp9J0dhF zygfF6>W(aVEo8%SHjw@cCz2^a9Z3NzGXqidND1ST{E8H_SgoB0g^KJm9_xoH&2`SfSMEzyhA@d1OFYgu_#G|{wo8L#0|GwN z=u|K9@VZPwtKs#oBK>hm;uwUQEu(VrN?*9|@?kxCZy*+$Ah$h5KA1$Rj=ihsN^Xc+ zA-5(-;&Da}h2fxjE0O}-+Z*1xyu;}jN>7zaWb9e!$NiqXHQxic!RC8$G<iI!yKOa?uCh3N5WOANLF&uyln|>uqvz9L5XDW=7a8XGFbk0(q z9lF+D(;()9nnx~sQ0V68fkHQ#*d&HAU(|;9dS*TF#*( zG|i6B4xHe?ix%b00Hm9gj@KR1N8irujWHX%HXrX)OvYc0ItD)$YWkTD)uOeX-{z0M zD`JL6kx7Yc@88X)XSqU;F{6z0eVRLpR{!XsXsgL zC=kmps+jFjZ%HrbFN}E+ z*w)p*a#ENHq1682|DiaUFW(oU=?06>@9`4MIALcYmj<$V+lc0!2fTG$ZZ77NO)O|T zE195Y9^C%1pSj-G{DA$m=E>>dJB>-8**)F*t}=sv7nBnn7iv*NxQ}{49szI1@iAF| z?PgqoZ2F)Lf(@b#(uJRcbenv;%;h@ZD=yk8;%PloLs_m<-EFBal*Hn8{S3r_tP2D?Rlvhfg8s>^ zlR;>FBD+U^QIJK>a9Grb*{Apc_QrBP4+%y7i+-F1&~u#AcmeJ3LrNcFopYo=UgNZY zAFG5Ltse`c@|$!G6*%LSLT2sIX2G0Jk+;wo?sm&p{_r4;kFy9)pvC+=(GRP2NUg5aSh%=?t>;Ts|f&EA~jEo%R&(%;eNN5cbQ$w5( zF!1{yB;XwXYz`&Z>k36S*&g86lFMj!A@8myW=^c3$TM^h3rrz>SZyxSOn!YI<9xqP zEdC{P8-B8bEk+abV&}$_$Mpd&^s3a>A7(p)dbiWq7&%Cj zs6bb7zV&j@mW+KO&Y|Q^)JQ6o{tbb30`=ys%PHl&#~(6J6jAT49Vp{Id8y`{NJZE5 zQp!TNYSBuE#>B;4{vr{dbY>(&eJz=${tM!d``DSd+biCCEChq#D`M)lKEz{2?_V@4 zma}d}1^!J8U7^K1a4OjojYoNtL#>#m%N_g!$#>&b?wlmQ2bh{ zqFrMWW`d~2F8Yd^V&-Ma#KhR;MZ zLUb|LE&tnB@)-0(q$mv9hw@ z5ZGzNm#9p*oBR1AiFcDozbxzyMpgpX(_1t=U7))XRW6V-7M)Fe7TMeGamBfD04VI! zwS8l0jYprbHywCBt}3I_c1G?r2B`JFhM<4~Wp_NAA7%HWb%XWX97-SsP&~!=yo1I= zNaeEXbq`!SNrxd0u!aigQq1kE`h{eK>J|j*!t+er$`CXHym@`#EJp2L=#7y>9cwD3 zuMo9LT?l`%Z$Fof3JhL^LE>fha{HY^04$FkR6>^^BM{|Cpb>Bw^>EE&&cE1$dVqgG zxCpuxXpR9q=e<|NAu%n$Y`l9z0RgO(XI7HW9eT3h(4q4B8(v!!Wt_grc#X z)7A9>b?vWd+;O%2pQS^~5(b!=EXF*A%0Li?++^fg^m?W#s#?ZI8f<>nPoxj1`f(%Y zo3?<_nj&DDb?3`au=NY}3PoyLl61Wdc?`C%kxr~g$*^4gMwP1PS8Wt57|*1hAeBh_ z9wGij85?o+3Zw;W*rXLY@2f3_+E)PNT?sHOxCs;JM3uClS%O-W}?VL@MaGHJW?xVOV_96xh=J>l3T+lW=ns5!dpn^C;eVvKwd;&Q-?|MSesE)pW$@PLX3YH7NtYA7z7>0P3Olg0z8LKdm zr-~|#rnlVXU}0+Yn<%O=^KG@(W7GfF*OiAu+4W%*4PF_tMPo^b8bX$Yq=r?)yn zEtx1}WHO12ZBo(98%6dlOBzd)jFcg7*_!0Djck*x8NFl}%Xeg{_xifN`Qu#AKj)k| z&pGEg=iKMM?_V*H4z>a6e~A7LK-8Lb)7o{xz5f1SRdUB)E@A2^9kraBs^a^v3%Z>^ z9!9dEew+|N%-246(w(OJD<^#l3+To8OPtWoFBi=?5>=f}j=9hX!VST6Opg4nhSGY{ z{l;=^TBfSzCNDthnVufrvZRC_V5QUJ@AK`-%5VzeSAeRxGcz#x&C&l*(F=(0_M6k~ zT23qLzKM2)m7p%|Cxu9=^yhBNJ-k~h%mb>mG|ctMwDLckz7se85|~lX@b)P_;u#}0 zgP~^lT1T`A%;2v1=?rUtIp4q+L=@~C(qL1pQzLfHO33}V)MOTMK7D6-|GL)=4RWPJ zqq_?6)s6sTpg}UgA>-uyd#XCTmCuZo_7Q4CN{zB2ti$k;woEQ|zz!<(nx4)6}&-BSi-n69&RY${V-PF+?YT4we#B-iIV!yegdRKBhxA!@%`-uX*MUDb?PhD;6;sQR9Tp5CN8?~(QT@RH zu*~VZJ}*(d>6KNCwn)PfacRoOTG^OZ5MRpgv%b-t8v$H^z>^x$t=2UHgxN@8y$4*c z54^z~I|OF2Z!LwtTizsoh*2%9)FFd}L4@Q;$p`%mLIo=;~ zv12w&{H7MK@2)*~6P&a;u((ps!d^jik9Akd%q9YFVnkP|{b$b2A`-95$HduUi&I+? z5+&5iZybXRY@-%kcJ^$(SHG{%h^Xh3KuJU z!N~+CBU1o(o465O3PQO?vCjie&)f?&&ZJlR9@Xlfq^%Ss{7zkBYI|;_hQhNAo;X*g zVls0gu9+@o!rrACDA~^6w+*d*gtv*^(Cqg?uWu!8T~dU!=@h z5bcOg@evY&LSmivcU$QcaE;Us;>lExEYwxS|EWAlm1Y#|4n;ZGaL+@n<$M+D;726R z=3a76-7|=`E3h9NkM=6di8Uu*ZD}lg?it-wxBXYI>7S7k8ZM zdr_i){f^OQAJlo z3)+wtgg@Mx`PI*g(K`1MPgDO+0H$*&Cx=zob~EZ@OCS6A?g}MQzrGWV&w@sk#HtpfpN%lL6!fa&wA=f>dq)m>MbPAmz$Xk$03&dzpZX4>ImG%4`v@qHM*79S)&l1 z;dWf|;rF1DQ|sUogvOB|ZJ2cj>a2?wQMO^eSjEnNNnK==xKgpgR-BPv<1%OWD|l@j zH4d|Qs!*dldr3iYuM6|jC)Rr62M+t=nMGPrG2$67bC;)M0Nbk(ej3Fy!u}?-4xGxO zhkITGCjj&Rcim3UJmg(yw$<=eaUDn<6@6?U-5p)TF0*>=sxc)e)RJ|%)?UDbYxh$u z(UlD&vA@64ceeE*;|R>12B0Sqyv zKrD{qWTm~p;pnjoB|aU*?Z5&huu0H3H5<6Jjgmz-TC?}={<~6S7xGLL&AGljg*1In z;VM0Nt(B#>2!4j`1BV#auhqr#+G{nbzC8#Z!=;^M2N)V31z#da8}h>_YNRtFKK4L+ z8C#gr%{MYf!|=@`SBrQR4RD8VY~ai}XHW*Xixy!CQaY++ewwstf^@bbPU^B0>#4h$ z%G?FBrXhO6`TWB0@IYWD0_feBy#Ai-4t@-lQX6Vs8Py5$e$1{g4@A*U0uX94ph0Gv zrPwdy76FTU?eDUBPCEKy?I%%3c?V51?{N=UPdGLgnPU+njSs{F4f{oNpPxUk7yDIJ z&Tg&!-HrjWk$?JD9{TFg5D{>YUD0AEd?z9-5rLoS3M z0)hENz71V!)OMkSgYPdHZTj5WZ4L5;M zb}=Zjtk(v!_3%EyC%YS(Up|(q>}$V}*t+}sz*n(b=<43xmiSH)o!cnhRedUSVsNfd zFmPzVrYm4xox2B(kh7$XlI3Dy@+t~5fw^D==Q&oelECg_%Fsh;{mN)x#QKZa7&0pl zpSx?H_xG+&!{4SZy6YvZjp=`9Pcd1Si~TM)`oqsb{jYpKIy%x%Qs~qwV`O7C{qn#x z|2c<$Q+JK`&%XNKy6bdszisdO2+R37yML*2{ewc=|9=}T74>DArZj)5Z&_5D1N_Vo L7DtPXU2pyuP~~u| literal 0 HcmV?d00001 diff --git a/pages/images/authentication/conditionalAccess.png b/pages/images/authentication/conditionalAccess.png new file mode 100644 index 0000000000000000000000000000000000000000..a0728536e274d974bd29aa26d4abbb2e46170e25 GIT binary patch literal 115774 zcmb@tWl&sA*EWg-cXtng-~@LK5ZpC*2<|qx4ueb3;1b*+xVyW%2ZzCR;Nv-O?)!Pa zs#E9JSyeN;x@Wp~cki`VuXU}f!;}@J(U6Iep`f79zQ{DHY`hQC7T%Y*< z-z&Jdxc>gXrM8q?kIu;A9N}fIHU>ziIzeaF-b?deEjN)*OzE zSVXUlDft6WueR@(DOsv1M*2_W=*EIa~b@|lo(6mn1xOQpt^prUf2Mdyh3zILXAo-8f z98q=LSKd1UA={wP1JADPtkAz=XH~(ru_t>qHxd?FL4f)g_RkM25~#POpy%xl6Kmg) z7fBZ(<4L7|y5lK73V`gvJeN>)pal6+H)paP&{6-Dk^;|0))z+K#ni0O3hDpV;X5s4 zaA|T2j30IGG2C0LzmhvrL=29YsldRRx(N|`MH>hijYKA;uNu5sz)B+;n9!h{p`5_^ zJ7fKU3f$#agOrKRx6XOE@UON0BpE#hVDB#N!Vp9dS)=cps?}?-+@G`WCzuR3lRj_g z?(dI9!7UozyTe^bF}>c9N}Ya;`y08 zucFq^?0^By1>XoFTC_y`)<_U2Hxjg|B4r*Qk_ggUSG_bj7L#&+N-z%5o_{M@b>M z*NLYx@~Q>DmQP3o=%+VO`r3cMC*?*`Q`{rUPx;M_U>^A@+Tn-{cdbhse59|TV<%j| zG}N0Q1SeD6==fO6$imV;o*}Tu_jfrTSxbq*ExKT>S4=E@Rx73ht)c|*^v9eZ`x9#P zn*|!;l}_+83n=-jNKsNjb=C{i0s?w05E@b$zLbz;Y*N6V3VOi>W+d~&aiWy&KN<4B5 zciqJoJs!S-`W^Kote=VF5}^CzsX-<5TwAwaN!pvo1){n+cpg%n8`4340*Dj-5IHpV zqFZQ$qRml@du{On%cnyjI^2YK$N*34Nloon-QIx#(~WkYgN+UmadGk8X=|hLfqNxn zWpfA4{)L4RV6v9Fk*IgIvi;WX+A8M(W$f6IXRA z45}mV0(3O6u9gaSROwU+tT85+-YwbeGZIn?9fb^q4hD4^m8gkwlWem@!fji?91V4PNv!+&pC zqPeTOokkf!z?vlfD(v$pgAwu9#2oai3*kGDMZ7i_^!58zc(4;x>6TY%GfiJp4F7m} zC;b`yw%pLavhX#yM@LFq{)2WIH)0)D5<|9fNw!LbQS$ zR!>6wmF;CtHNy^A)k1^QX8YWKi+n+S6tGt_-f7egO&WP$FB=JYVVW(s+EHUa;L)iz zwucuMwgq(k z7ziB7*GeXEM<;WK5$ONCGpwf_S5=9bMe$LrxFu~iU*Wb%c2$THMv42{pB#9<*=Cbo zL=g&a1sknd6q}(NowP>H-c;+*-c3IIX#_m9EPvvB<)5_%kFgb>W+!QIjCpcG;_oal zGwE7Mv_f79Y+U=9;?{`WM9jk(HJPo?=qG5&BGIyed@+{dd9YnBYA1yytg995%)s0m z+1xmb_=+jg>MRXqbx69{06|^nEt2R6@g!ws&nub?HOVJG-=GN56t+^w#oJlgdsr-- zLh+OLkF4E0n5o1!usTCO<$4DJf>fuRDq%obk?*!Srp)r7YqN@?Zpkl$f}MZEa6e+aI6aboHd&yNF_v~~C#pn^l-wBH zc>T$aulA;MaE}^=rM|tfhN$@9(skv!9hj;)gCtOLdNouQ{4zbG&+fbq> zb5icN*1+)uSW|{-d18KDQ?;QwCgKgAhgn{&l<)$N*y-0K7|hCrl^XBYULA6(j>sNo^GoK?alz$gOvu> zw>@EZno*#UpGab6F4U_Pzje3fh)HLu5du<0B_oa+IOa8U9+a0E2r5MdeADKXl2qS5 zz5B$@+>5dTlFF@UfuS83-x@d5Y<-nyvb!khb>Ap7u`g#EJ=meSsa1F4Mv?HN7kAvp zJZWc!DsGvX^2#DQ&MFSFNQ4teE;Nde#x*$J^QOzDq$2QHz&Aa@ah*~z?hmH@D1(UB zw<_$b8sRSO2rcE89JSogzx}#w=?GBzME=!wV9}TzP|}Ximb|lMuc|V|fNki0f&b#K zPT8Uyv`D|Nhh+IQz8MD5l_$diE_YKTPt8=|U#C@>jPo(YM0fJ63Ho1B3qIK56K|+c z>=4T;oK&ARaC)okMooZ%vor74G*V-Y)w)`05G$GK#T^=S0s8lRKW;UZ!>|p>A{`Gc zn4jfsy{Yk;gV%I9oY}ww)RBbb5zUtS;JuHm-e4I-7@+NmS)$BBV-LiFSogG+>f(^_ z@QDML$Y|bjYscUQbT^C&535)!N^{^>6*YtXFjXd%BZdUj4rymh^D<6>a& zFUUWxBJyN01i7n;@a+%iy1bHRkr$Awp0gMFN^m> z6ww*CuY#M+lT6)!#1pIAKE7;lS%eg;Bn7x$V@)aQ1Of~;{zFzE6$aeOimMKWe6j}* zAbknA`&d7ns^fR>0)naTK{aI#qFFZu%how=GxueW5&JHIW!(XOc`)BVw9}STM35u8j+7lUhD*+S4iNYx=juo-Oxgl3E;0&5pya!yBVbbt|fd(qqh z{8fBSFzxHa>3jy^Kyy@8Em2uk_gQSW99OljylHH%_2C&85F5CZ>PV zt;^|We2;N5g*Yd zk<-U;sZ_h!36XI}>=^Bq<)$oGPH}KmInQ;H3A#y&*r^FWw!~G|82Z{*u?N8ozv7{~ z$O$C;Q5yUSSFcKU5gY|qe89#`lo6~n;Q{~tofV63?WX(gpFi8XL-7_16&bkOFPVds zc(Z-n--cbA6OhcEZ6}XP^-Vz7dfQfnIiTh{j3GxbsuU>q)aoX#2JaB0GH*L$hZz*9&y5-|j#~Vpffrs8bN7s6Xqa2Kmy?c~u;Jit|tUG}9jn`?W}kCxj$E~*R1ehMDK`YOV-c**y_GU5+E|e9rn&D3~Qp6yd(A#Ic{Vt$S2) zE#G=!Nvp|j?U_kzpSe4D?JIWsE^pnkx(``n$8~gwVB_GhyPat7?(GfbCu2*z&}DgJ zudlDa1(U^P{eix5guQ93FOX#Hm#c?jV#F)BaMa7z2qO9h-p%vj1>jAo@F)&lWeN>K z5qqaTs5oZ6KgY3pe4_TI>O9P1mE6r1HviA=uF+DBnZ-&yv+i#T$CvG|3ZfGBtL2;~ zXH@ZDRWs1pp=Ak2Y%W{njX&pfL1(NJ6-4Z72pQs=lXb&j_|eXGONNzO`IHTEXsl!- zUl^B2c{nPwo=vhOJUkube9}?gmA$4#$0aEXb(j%j%xVCfvKsU(X>ZsScgCbehPH9w z#;-h4cIv|^ZTWxhuGxTy)udE0^!Y>k`=4KPXs(%m`y&EZdPC&nKl*O z{?H9TP9Oqi(R#cH=Aheh%0?a$`EET?kVNFM&h{XXwFZZmP8RvR(-hLe(0lSQeQD-M zagx1<#vPw)@a4tMERC?0Xp3v)M%nm4#L9oph?Vu@bg>%N($bQU*CBgWOXP2)tfD}# zC=jYI5T2v5yt#5JjB0hp$ofD-TJ;mHsHjLZzboV<*bqEC!@9GdK^L3sf#0NRtw-s+ z03$f_O5V!p`tgU{92f&7q%aR=$WiZNE=_4?sKKxIXAMJfdJlShj`*TIE$SbblPn>m zJn}66D7q^nF3oJ-ebRXd7{9;m6C6Tq#?PPPIUyi-wm?W*j>^X^2m0)J&n{M8L@}`d z@Pd|~T)@E}TKKyxpIf49&om z2Zd5&;D{>hTy3KAUJM-1~v9bps1AmhV%*T?OI^P26=Pj-QHA7p5JR zq@+SPtE@oiWWQoxQ=6W)E;2J0tB;t3mCBaqV#vM>0eKTFr65V`7B0<%=j6q)$47iOqO;?I0hT(cB!J+S)-b5U(0d$rZ@MtsOMLz_VM36j!PgcWWaI4qMkOA zR-WHJEtcJx8|`zTH|Cyxv=$G3wsyN_NSU}dU^QIj^m#J}cjd(J;gJ!S|Gwmuo*_2t z&*Ct5nG=~W3{u5Q;j4kzzlQu` z15-UstCXicZSf}-B+(2|Coy6Y?nU9Npr-_z8a$k^F4o(o;a*1Q-vK^tj!x8p@2dRo=JqzvjpylMTIK?d4NK1=3_` zh;nmP!}x8%x7yeGN&}iwU*$%DJeB@-ndSOYAvdn;wOahop^S{Gk|6Q&^26oB75 zI}8V@o$V$K0j^M@4hccN41|~ScB9_(QK<&|;M2nV%>h-eN4V1Tku0BaWrRWM%JP2UoOE9K;X*vm$<9+u;TsWV%pH`V>L)_6CK#i$9pC@Hea?rAZ>)nml& zX=YeqCSg=zruX)<`L$`x_RU1cfX+g8)PC`%18Gm#uyD$AR~kT7+rD>D<>0IIC?{^{ z(JTe44>yr1`9aKhd0LKR&j*W*JP`w;C#dJv8;68MDz1xnvgraXq94^|dA0W)&o}d> z;dAwp^(L>zw*VJF(4=xs$Z}>7PT@rEEOlAQjih=|fyFd6KDj5J4R>dc0C71nmsotk z*d+ZAiA!t^x)6w3p<<#Zw#QL%p|ZMqaAPB{;6*PE;2;O|E4IV4k`q}PO(^8Io-I8m zY`Yyp@y5ed@LDpljk1M0c)AgvS6TTxp6^nh1mos$aY)u8R_pJ(=|R>E)bHgQ3gub^RMxksm2yY#d?&H6XiF*+AMxa}(1d3U}EeG->g!bI71+Q}1rr{Kmdwgv*i(awyNJbLsq6)3vLNv|vb; zz^BaO?f$S$2x~=a(uzyZgSbzd?yp(oWtmTw8Zj>Y-iGEGH6@WDXS{+&gErmyCmH^h z_j6sh3h?|x`Rs=|r5ttYQ8}~=qS&I`=|I6eKslZR&I@mFvwmaJVV~xH_C&Yq<;^Uj zh}!l95Ur`ZDfL%rrD$x76mgzttKE`#laA*!b+V!Qz8oGduF>&)c_ZX@Wl107f40{t zKhYa)`E>Whrh-1l$FDOcncv>v_iF85hm(`amTRdyoj*0~b6!UxvfZ>D_J6^paQ>n# z;Z755IMBKFe9&U&#QKvkX~9*M#(*^g@%0wmlio-M)g;6 z4A7JuX{Yz&+sDJ;bd1hSqi=4P`03$7AB*6*~W~~(XOudzDGU!e97BymS=8M_-m4mTh zml#HZZ`xL8_hG%`q)J0#(%yoZ1mt_fr?Tc~U2Qtu)vPT1sdg=lhtCX&$okDL4XrZ0K(9xsl4rVl3JPx)Rwz)@ch3Fh9j*L@-H1ReJ;O zrNF)r@LZ9f!oCjdigb)JklZf5H8Aw_;|dFD1##nWPr^6OVcekG=`Bb^+E7RUw0G0> z|7RqZ4(|Ha3W;x{ko;BYOtL?bP^<1uh|5yOn27S)3{Q<;sTW-Nm8I;}>n;2v1-MUU zi=jUJ11{O;&3kmtEUmCjJB>J83~O zE%)2*glhmHDlm&!(`jZkFt{$0EQF=!y z(Cd$4eXLW=V>5U`J zTp|-VcD@v*POilI+R*(NR#)aZjzkE-kb3$PrOYUZ+isw%Jx;rwP^?N!Q~if`14Pi#&oa>}X+px?ni{=G-OnD~+6iGo5yAtD17`!9Vt0sHVvY8T^sT~XeA6hh#wyJ;g3aXKoR@z(p{YJcYL~qtp^ER1ku)|bGMnL{?yA7%C zVc(ttvHdCJ^?;)u9v<#Spz!wJ>H*17z3$yVKAH?Ce4Mo4yx)yi+ExAEW2E>@*&KCG zA$)&8BM-29|LA5DjA)34i!N}24!7C{J5}|WXO+W*bp7$3qxJG0HgtMur5ie}?_E$A zrT1u+{)fstYd3=R^n2_xD?<`~HU3+BgNR0X_iLYRq1K1lQ*bSbijJlKl1Y5?Y8>J~ zeM+wnu~C_>Z|2UkQ_zy<#Uj+O@-@j5X=ZCBO1DtJkHD|r{%Ca0=%-Lohb^iap2QfQ zR7iUt|B-!$K=P9yu<)p{a>05bJ0(5l|0+L(M4^|D<RwRX(sp+WD8Dy0N|mEb&}%D%7cplghtC}9+zbAFTNF}dqcC8-{kGJ z5gzFBZ8xdYM5}X*2e*#;IY)|iS}9YadI?(Tl}%FW9?8sqO*QPqd5E49Mz#Zy6Y(yn z#0uY%hvx1p_9a8`@g82JXI$50@vhk?P!5zOkq14`5>y?!FO>@7mC$Q&VCc&`piJWz z_J5PRxoL_w+M{>}S{d!afxgtaj5yA|Zfg?%s* zT0Hcolz&pyZ`ZfPai^{)v0>y%aP;X)?#MAptZ6Jks15w?_X3*IY*iM@zkmugb#7W% zH&tw*b$Syg-V+bGWVx>gz5B{d93~OCAOJ<9DL< z6D$_iwuBz7+(m~AF?fVG6rNmc`e$}n z`Wkie7OEC{ggzdkjeRTG#_G)EPIZ$gqm1cIwki?sj*bC zN?r!5|BUl>K@;}&_*DO0XOHYFNy{9nkEChjlLd=!DhI|DL0M=2*fHD9p4SwcGKTaQ z;`&htrW}s^B|evY&S!|PX|+QSdfEM>-vM?`GQqzj6RbBRz#jS0mbd;pk)nF)7Rfx} z-Ss)pNCYiB;zza9sfzL8xdU(Z^wHMVp4A$wcWWD#W+hEXhcFI@2uTcjop<(c0SBuG zb?;gZ>2>9AJr^4VMz}Mwtyd4Ig3jh@ z2X*MX83v%knWWs!7&8c_Vff_X&7>TKI{<)?a|KQYUuUC(=N6SS4gG~ywl5Iey-snh z8k@X26$+F7ug7tD_YRUcaB*CqPFR*%q*n^peA9?i-b0&PZ?)(3++_LH9~ z2UvR;QTe1_5VVYDxHQg8lILe&nFY8)Dzo5+!)0;l3iYSWRECylv}?biw`bnswWr>4 zeP_8x^HTb@bGPAMG#ofXlC-rlA>6YdGWz-XAwoGSkF@a4uJ@U5!{|s$jqN5)N4wDz zVH}TGCDjcxqQEblwNSpVOk;p`Wh^$2lc>};GkT&uJ-kUzY2=^u!JA2T5xUn4e0dJC zt`^}S0i%ewjgxI|;fDw`&jlo>;SHH%7%xwW^}APz!f;&A+CWkGJNIbM&&NL%e)mJV(7dr>X~f z2u@G1{L~b|lsT`_qeHd(51Cp!U@Z=iCp>F8p-D;e9)VkRrI{>RrVPt!u{TR*@O? zhA1Jbbvz@{v2v)38FWjHzTE43-}WW*#$HLoGk^H6o$t^aLx4n6pXjCecYh^$hCRx) zZb2+=TrY1^8R@~fjZ`OHbw#9AJsc-7FFR>F&C;bh@?5-N|j=9n-Lz( z*}Z$+5Rzaf{%r>xrHD{Ri}CRDw|eLg>Dym-sI3Rl!DDU0+Ft*8phUf2Q0W*PaXikqid#zEY*t0 zdpR=;-2b}Xm5b)ctM~1*jJm1I=^X5uy=4d+28mM*a!!mz4D_1)=dwclKQ*w6p1+oP zcIXGezAa4xgQi|SEwbrJ)p-70 z_CTon#nlgBiqMsS_Y*`(`}cu#>tY9*p!$dRWV+FO5!)}*X>jwcG${`k1B>ydLFSS) zs9vYmOnMMT-}~<$+S495=AY{^Ul#;ac|*ugpMFcLCkRCLedhgb$(kM`pKkMDj@e-U z26KO&U4u+^k39Hb|GNZJH#s3ezKn|Gt1-WRc^|B{PF5It0fywV5v2-!%X8E$m0dW| zpJMVMT`vcvwLLZsau%Cn2iE8JgFbFw;t62yz~Noi2K3ii$g>HsiU>t_}i* z@Dp#d)V+j8CWxbjhqB3P`voEYBqdCP&PJRp$Z;he=i(@KzKCBnV48!}mY*j?8}6=o zZL-OY_j(@t8~H}a&OXVFKx~>fCIWgg^tu9DnY8Ki4B1^mLPB=Y!FGFOO-+r_r=Pog zofe$bbac}9XB9VTH2=N~kLN{8*&8WAjg9)edN~1lo8<=^R5Ave>V;QOE?`YD9S<0i z+Yi~R46OGYCwqhJnleEHo)&YV=$HZnj-t%oxX5t0QjGF@1=h%?QM7#yi{%cy-kXQ` zFc7YSCFDf-KhNKoQa?fC(D90#``+N7zbAkZW^cSY47=}OU)y3W(@VmRiL4>jz7{T; zt4APC_k(c?pl+n~lvUp%Upu0)TT5P5B6@?l18 zt|b!`!W|ry@7|L1K!s}|Dnu`n$nApw&djQPrntUYFf`pAj8jcvl~qz2z)=zm z$d^l&y~+im5SY9L>1=7%CN6OQu17A3TogPczgXJQ=;O5WQ=K zkH*KsZ6o#w$Rh&P`(NnZl{Y24Hp&OySTkj?%kDOy`qSl{9p;9et^JLjQJoE=?iAn9 zSpls&ZHDZspU@fj%equrjo`CMgyL*f2IX&6*_#+QRO*RDA;`2R+yd0Ofmlb325F@z z$Icj@@Sff2Kcn-WqD7Aohg{&j=1GHeuz(dAE7Y@j-?LEkBi@2PQ}AY&a%n~e+rz`d zRz=I1_)LL9zK2Q#J~Oxz7DF_DTeRz6zuo1kxNCPl#2LhGY?z6y3nW8#CRhFO!=Yq& z-^GbIyv(G<3k|oAq{>sNx%HG{uXBo-#F2@eLbi^$>+~t_=jvjsTj>gB*_=c&h&?mAmbUCdVo@vGJ<3GkE8u>He^=DTV6_rSc(YH^4}F*Zv)+U+Id&5&te-7E{-^$R)iJI@ziQ9lplEdVz?o`23XV*DQQ zy0wFK$jZ}aaqEe$sdz^jR=7yIdXqIG*wxf}$wKrfu(|b>*7eB}PEQD$0L8Tz0AO@| zFhu|dVb-hf<(Lq3_9gqTKBRq#f`g!|@w+h@#yI7}4u|45zE&54M;pz-ql+b3)r3MP zEWPl{#;){LHwy}b4>)Tj=I3cKAD#VrbRw{ivi}eY{~mdG*`IUuGXAzNqm5^!-f!P? zC-M?9in7*ZIBF1h>fAn1!a>AVa#OUCEAYsDn@C{5$gZySrFWrs8=slYl{K+*B)PAxTlXIUd2!Rxtk>Lo9u*w>&*Sc8nR0shcxEif}me5;_M_otBa#n{A?=qk4Zow}K3&8*SIp+efw@Ffhd9n?B>5n<&*| z@n>Pq+Ak5;1qtQ25~`%f1;c{kl`Yx>d7m5ZuK;yN|77f+q1=JvTgHy#glb+L^=-S?8{Ohx_fk2 zv!}V*|OLtsOTdKa_d$d|l;>MRr|wkyzk9qaS1q(J7a5sSL0fi~TQBd(f=$ zwn~iH$=i^nG!^As(H_0CuAZKjog<+&0;8FQ4dc(=pP0nh8;^4w8_U}fNaxj`pO5wz zEvv=$hMR!POB%X>r#bN+e1)kTHLqE;%UA*f6dEUNbmOb&FMVe}va(xp)JoyolNby!X638z#>|tfc7`*}rO=Bo_mm)`@ zg-d(hvy8Ul`2LV|SV8t4zBl`@ylt{jj^kc~!eddz|MPiU_)u+w1kNO;{kUOxOI{_I z^PgAt0ABNrtXa2O$v=hBts7-IGNga*~flyTE_;>sS5%a0o{rB{Mct|A9=Z zKa2eLJVo=zH?-($fbX2;8-D82X1XBsPqVix4{!bd0`pYgfR{O^j-%_F>D-RoTo^jV zbWt}={9&MFoi3c;D^zc9Z?@a%@};h%3x~;n`*E2mA&+Q+dAt3B#AF9xikg()8}Y^W z#o^8Yq+5=EwC6wcP2AG5SX)Q%elw^@zc9KL4r@*Rr6Aj|6}s82*k85y4Sq|#;x##! z2$w^5tTVgbzi9sJwomy<|Am8Ic!FM9TLni`UbwFLg*>m1fQyUTZy52g9Mv4n+mV8& zyYrqGpC^ao@-;{44&O^v>Smo;z@+`K2ym=4$#kUn)4^P~-CC>T@#Ov#O>;;H3_V}) z;SBcFv0sle&pzTG7Hx!$74jZ^G#}%VvS5upc#I6>{%zP4K3fW63{Omqbh)TiTA#h>OUGb7lA8sH{7x4wE<^X#hvf z=!cxWHoAbk6zpg>1$(}OewK$Lsl-1gb8BZ){&)xIi58N}d9qYZgrKx9PC^(2G|B!3L1(oEUpxqVd?LE?dg* z?=>Az-cloo6BcJ4gA3h=_y6Qdgl@kc*oFW!ZG51b-GD{rRZjAFXRT=?=50bfuI`y< z92`?c$DtZ?BArxEwakso?^m%OcEj%pKlO$sKZC`1O;)IekHtlJ^1tX++w>Ta3Z?oB zno&}}ZN^T74o-JgWh;(^14@}8%vHkTg1BsEv_?H4H;e8ExK4~Wq2bp-vWwDY!-`CL z9Vi#liaFx@tY1x)7Nd$6Yrb*aet5t6Ee`%B7bd41sze5vT=V92{>BtJ>{J{ewb($s?_3ryVrSQ3oR_ueAD)1|2S zp?cNGD;VTb-G|fw&s0ajGu#AY6>t)({Q3nmukH~@#;>i`|F2CufZw*-Vs)wmyVqUb zU0)|8&z9Nh)o*^A{uoKhhpk(lUak*Ytw+JiYCoFFh2ryci>LQ6Ecb%SIE``M9j(Sa z8-3f8WzB3OZLn=;!)qgHW8WI1EIcTQVqo>0fLeou#)crI z^*(R#V|lPdt29wkF#Q7d(6&6i16=arp;h0`;vaMD@MRhR=+S&7IV%pwU6zI4C)7+u4fK zXtmNm#?Cd39i?lOWc2bPVP#+8y7gQn)BJ601Y)UKVTZ97HlN@Svhj|wka6)ex=rf0 z?}z!c9g7f+>r9nLS`djIkhN=Kw)PWOjBcXEGEzi;okP&9V|HPIj`xmT!t}xaIrtOS zU4xyF7ExukHNk6!LNLz$F2CuaO4Dnn^G7wp#zZQ}b|A8dmXvNfopSX$d8bTA+hU|Q z)nmg%$&%6}7ihL@^ZeoKU9i&@fBI_>Ef=GhLzth z{{B=uU~E9H5AWT>Vw(-)bfn*24D#QwU}~(#h;8$r+SFpBLP$_h@a?qILa`d1W!3sy z;&7N&OC>e(!LT)aKw2cMFbhCR^LkEG_Jw;GrJT3Hj|RV7Ad2zE`r_#==}|+3;wu2n z9!Qyfv+`h zvOq%1#b$%3?de8bMuobDft0t!hc>#&wciw00GX#4{a~#yqc*WgCMQs{5U86kF4M+c zM1d6yezcuzH%?J6m^#d!x7Zw948TKRm^$sEI#|pR;&<_b3QEHWEqsEQ@kr!p#wnHnbY#Sm{jEg z$O{b!QmZpacFhqTx*&11jcl3U=Tl^-KoZ}5u{+97UaaU@bvf^SN$SnujR&*srtfB4 zCw&e!6GI>ay`AkxzQNWN3u4}}HVVsOXnZ+<`#1h?jw#(LR}oL@tYwfQGsHovsPLYy zE7J{8T0>!~Iy2eX`JdRgxuiP~CIOcqPvdyrX^0|Eonfk6kLP5)O^>B1eAtF`)FJz7 zvhZTM^c6IqTU_Nk+#th*)x!j*u1mJ+l6-A`0ix&X7QQ|z<<6kZ?Wp)3=$j8y-_0b0 zcEG9J3hbQ!@$~vjc(bG2b|$`JdhD$kF4m_VD%w$BIP1*}yg$ zD64t_L<^hc6Up$kZQT~j@S8fn*hJcmjt6r6W;tpZ0(RTd^7CUSo!BhmqVt~khK66b z8X$s*J=Nfl(eNBP{eRy>Ql9n%?ssb~wY|FMWFf;RNvfnGp0d1>w9&NhHyd>j6bxXt zXM$1G9Eg$j3_{Bp-ClQo;g9!uU(%0z%uAJ39`DiOaUydJN6a{!Y<}<-IYsfl=;JI~ zPKJ)k!ml6XJ~+t=%Myk_p)_RTA6enpH5*&3u@F0o_(U(saZ@!-?g~CIkfP(Q3iV)a z(-?|q@LGK?F|O6frYwbe!MfRUZg(ehmz=+pQcC99kVhh``8IDMg|&~-s!qURxP-gj(*^)tZTG_83Qjr4%y0qum|rdgs`TkM-07idFH7O0 zbK@6T)6*KWOox85X~p!0RycFvT!T12OJv!+PjB2^(8~@m*n!WVR^2ngCycT>7)R(N zkm4i=GP4}c0j?{2WQhx>#iwB)yDgz5_z(S*wGF!XMt2eTs$s@Wv^jY=v0=e-UH3;Y z_3gQTvKIKxA{6rdt|NNk^&C%dl~23qbq%ZmFRt2d3u?HoQSKOa2^~Mvbvi*|5z~@HedE?lAyI3p(tLS!sOsOMu zpZo}TNfuEJ7=cbedWt-Sy!+5`4MjcX#cn+g|BHmRycA%t|0J%KYK(v8y`6@kTaJvL zzmt0bKMEgTCGXAebjXFrnyi_ZRA0Q_kjnB4jh{2nVMaK-SJjU*3{vaU_z!He=FNnU zVxw6qc()&Fija_;JmjpkuN>a?omX%0JB6I2<4?My`-qP!b??Sg!nh3m0`2{@!|IL~ zOx9Kp0sCpRGUW~|+`nwQ+}~iE=epx6-%}HBVRw?t@N#7ayzUBIRf%=y4#ln~Lzeyk z4!H5ClA=+;F#Xabqtl}~?dosn!kO#{bjTSGnnQA(L`tS=}(K*9IS-x&X42M z5us-FHBJ`Z5-N1EtgBqu)rSDAvfEO97TD;D6@&>r&~`P5qAxEdJWHC*Nm+U^-i>l- z87f1f2ADQNWuEozmh{&*TnVgoBo#A(s*7yzH3lV`j{`V2!~?n4gNpBwc_dXleBsB_ zhos&zg1kC5A<~jws|y`e;i}Wh+HnD}2+mOF^w-4RJkQQQ9OeNRYD$UIA*-$LN%?lX z3Dr^?(WOzNCaJ|in+0P=B2DCa@p~fFa7c^3x)Fb(x`VS~kF;d&?SkjTb-6k$(k@S! zc5(5)|JgO$`=o3!-wG9 z@BY(~9=eHb;Jqj%hPChuasjuJ$&rA)>GrR?i*+2KP2vnWUW72l`gJ*}Zc2_I?Nz0=sJu`yz6D)w2=ya!h8R`v;}|U8Kq!TPWou zFbaM`eP3|Hhn>@yj()kGb4jq_adqecg_dblc@QybXFNu|^kqp5oALCwR<1*4`Lr~s z21>kE;@iHNh6mF_^{r&H>9iEi*LTY|B%zPcx?7n!{<8Va4(C`OetA^OW#Qj#g}F(| z`*=}*XnkN-ZI!?zI$%b47{BS|e)Z=$;;x7ateatTJYyj&>-LdlX2JQeYU22c18e+r z>MZa1#4Mi*7Glst>ladJqvF2S3V&*JaPS}pm(7sq!=mrx@dQ7P3!wYiV>E^!C^Kj% zhcRksWCphlG5of|qaxrvd_K-eQi4;YP0m|`m`=7@eEiVCg%rP@9+L49ZW6B7Xc88p zQgchw%6Dih|6+kOT`n8^`yj~R|IqeUQE_csv}l5B0l~G9Ai)XlErT0Z&R2KOv<{^++6du}pqKPN8d>oha*$#Xe*J})V4Ev-TTalCfIX|9&J-PkWZ~E+9_J;M$aqU>{v=~UqdS1khCkN(`G!$IR^tQ+ zeg`Cr7!KxSx7(r=a#$r|jx7%{FoI`%zbSRi;^Cm8-y#wKs>J3)8!OPp!Z@5ob^3(N zTg{G8_SSK2j^i-v2`&uFTjdsGF#KRL(ZD8PvYN*Zb=vR=SJ}is59#NEoK!RFBKKb0 z=$`fIr3ugk)QKsw5_sx(Mf=_*SOtYQR@8sC86&eFrEZB`?~MrlRI8sSIeVsJ&0=UT z>b6%U)cT~R*UVXr3i&YYXD?FH1V)=AYNf#~CT^ovSu&WdaqjyPT{XQeN_mZcxddjm z4DC{JpQ)865Nu{fqqtEUs+;t_Iw{wI@8+cukkJ#!VG05kkF&@*?gB1W}ljQ zbmcA&UMMrTK^1LrpS81AM@dGz&-$wd`beKiWY(+{l^$-9w(s5-P;*t4ZQt8kKjRLi z-Rrf76yyoZA$1F4y$-rR*w$<~3~J*$VRTkn?5CjGvgDwt)u|jkb`9C=OPn;s z9uOVJcrf#im@g$i>nB~Vy?PYq^IX)6v2^vLRLok0Qqkq?M*}H%OrTqm9+!86Y9X-YyQJotHnVx_b4y)+yGHDSG9>}!!MDmzCKMn& z7BCcQBCc*1#Qj)Q>*09+y8Z@dn8obt(cMdBC4*R*rr5rb%@djN?c8_R`tEpe<}3Qa z8YIF?OIf+-FzWKl%J*0unTw$bpx1y6#>P(f?Vjn~{Gj(Ibcf3Hp=ZY0$9k_DSqb5H zFGwX=jzM!xb6Q=_8SQd;Q)sTQZk$D6kkYJk81%edKHc56WJ>PJ6?arpwFtk9s1*bg z6NPw{v*DgcXB~{l;sZ${9`Hs7@z106W|c7Z#%7gaM>)3CHq_Zk{C1|I1BTQVn4DFf zq(@JvO995q?llYR`IJZjkXzJ5zmwj$!cA+*hLOlet*Nhy>E3I#!6w6{@sRy!e?B>B ztxdlfgGn1@>fdyB^VZ@Z51z}L))^v$5OXi zS|cS1O?P;{sOFsJvqt@#^foW@IKWT%%Q}ex_8%fZYgLQRZL}T>RKF71FK%!BMW-_C zheaPu6*S(eL<-TPf^x&Onp<0+{z7imOy4KdIslX=v-=2Aoz8DB2q0Sut5n#`KVm1Nu`fq<4@E8@ZC;0r1QYhH1Q>bC?mKU^hEFmAUb7@Lt{ffD{0fMd>AD2oW0+D^3=j$O))_a9Ky!8e4H*xCEx zVx}yEE$U}-EDmxV?o(D1s0~7)l4;+l&$jrJNyx@MkPF{kgq@b1`Kd%aiNJ~j{}??% zzWrtE@|VTNb8H?+Lr){beI+C2+pjO{oe#%pt?xU(Y!2db_};rLIX;j#KgJ1e!H|36 ze;lL=GBy8!%l%YURdLMxZYmvwnCx1%3An75hynux&(;2-xv;Qcdb^zrL~agFl)Kws z9!@J5$V>5}|HB*qr&953Hh%KmYFoaKJSO;kd9X}jYHKylyscaMPqXHhJ;##-ZyaKL z+7#T0U!mfESB94B%La|B#QrLfz@pnX^I$%jC2nBA%E*MNQm%1&b|wAk(`y)vvegg) zG3)z>^lzv0KaYodFI1SJR+ZGxJAOZ|KSw%P!3i_wpFi?{d#SjNJ@os}HYmj#`}aP0 zbbav~=0&Ahj!zIR{RM!DnKJW8|0!9!hNA^8lAjKb_;9==zyidwAiM8qO^)Ts0vm-l zQedU1fBv^+mp=jMBEKYMaZ_AKkMI466ux(UEI0VoL(u;D91T z_n>)17e*Nk`PWVUj$#+_C2;hu@kW@CON>+Rsb(k2wT5`P+K@u_u%g?cGVfZZue1em z)u3||f|!;qIrY8$zu4q3&$0hj^&agJ9|xV3JdC7yav*E*-d{Xm#yY9GM!ihsb*j8# z;j>-{!$q))6}Gbf|`4T|6& zhM0k?y#GE}{bv!lPN=)y=N`8f_gVDnW}c6CG$J3{x#V*{U)QC0?9VE`HX~iHL37n$ zT+3JAIE(YUy^UipDdXBDZ{d^ll5_BWwDu(J4vU(U`bqpi#Y3zJ_QR{ujkSP|)2FlN zRkgoYs_oUY43RhiU}gewr-}YW#djh9@un%iWHRnr)y@euLEkP#=NzcO+5HmnYqDOE zSZIIXm^+^F@w&06Qn84uaP6I9k&rvL*;o6I0fagJz?Ct-$QI|_jX{3V_2LscN*&wK zj)6?%;?0L}ik^EP&(sL3pIr+DAfHzm`eyicDjVu*FeQBGimPxI`X7~M#FNaQGUc;N z^i#77jmSbyJR+9VFl~2ZviuUq1v6u%TkT$z9wTm)oi!woo5pwx&Im}1)L!=ns6Y|* zS%Gydy@fbQbRklAuror$_0q|bJJsiKJ|l9-f|KV^AXbOPyU-k07*MGl-8&yz(-K}_ zGS+E9QU-4$lcl%>pQOdi7-v5?!G$Yf?b@5&G$>&z*IPENPz#AJI_+>~@N%(=Ki1dj zDc9lL`n)+(W1}p>tch$aa4B)K(~$o;?W0q?@vr;kAr6Lhe6m>GhimZ??W5t>KSA~I zGV5)D{*sqR)2KKGR_W+thP@j~Lu#dKAFBzEPe_iIaE7s)e7NIa>WpLJI6#w|>~D6g zZU;a)p^a2(FW`f=!sW>{lHY>WY$inDvbqW4ZzoOA_)UYdWjw}N+RRdX z+v8gX6+%trEx4>ottlHckz;jeJ2M?PdWmiLbx?{l(X*+s6wF7#lQf=_1)r02&sN&% z61Be(#G&J5FQV>Ahh;6_`b=WuJTUOb*cmiqSJ-K(oLGX9lk3HcLOgM2YdR?3kart>ml;oKZnbUZr$JJvd z@YHhXt^BRxvO4Tl6Fudh{=PCGQzkOYiAiK7HNHB;^moV@o>7Me((~UdK56_7{x}Ly zHl<>9RS6YjkIA~276)fR^fk#mD+<%?cHf`vnzOJ%E?lgd$YVrl#~G`-k2E-Z?Fsp0 za43EzPl8#4A%EICUp#unAvM>%b;HaE<&L2Eolf>HmVf47B|0TvGqX;`#BxMGe zcx4Zx4@#aw3dh!J7bR;w#mQpqa3Ib%`W8pK@wz|{ye4-mz}WtWsnGSACmMF2IY}ZB zD`qe6Pa7Uk{yAIxxmr`q;V*!mI%Scta0-%8`oZ=9)YD}a6qy*%;ZxS9UqT3`J}Bh-*;|Yas3B$SfPTg^Ay3(o{(0r zK54E+IaF5$W3XmDe!WsFjCx>q<3Qd;_(3-KiF}ul!_!&BPtYK&qZDaLbrm->#f@y3 z-PphNrSHDyy9>e5sDthGSrbzR&c~JCvVSTE1Z;W5nA8Iw!N{v=aLDqR8uV2WfhdP3C^vn>@Usx!mZ5Ya@3%c@e^Eg%aCd6#;aKU`KiT zTG43FkNPmkd^zIMwsGitWS9$LJMKY3y&qBz$@L2g7!PT{w-r80#a;VDV6&|@IoXpX z8AbMYwK)-F0wdB;W!WX+nioJJL4w@pM&J*8&Gq|c0Zi)Fr^iC^XZlBp32Mdg$d2H% zO<$aJL9SQMA^!cAmQPP8KXF9rPGZGy*O9Kh#>Dnk{X-gF6~~_pl)`n2i~X6g&vDqw z+|cC@bE(t~#c8*Y4<3c)*hr1%i9x>UHfn1iUb*P_6AbBGFT#O#ytXrtV*y6f>~n`B z`!e>2SuEPn;zarzXrYGn`uY*3y)v)GG~r-aRV})qTu+uV-P*%<@!R9#{&e15P7E8u z7r`G(lD5En$Q$*11A!8I`(I_X=_=e>C?fh;U0>~XMa~xI^ue!=_CoK_PZ#v{*KFC* z@YPWtCJO2&?;z`NYpLcO zCNpqCWqN_T1{pCx_fNg~D*3&T7VW1e29F~zLaa_9bo%J>lQhWv6>OOktRuaC%4xeN ze%Q7sy>xNv-9sy7s|DeXeC_eHot|lrX(XxX1L%rFM0W=d$!7jW;R&9_OZPTK-_3gvEU;v0GgOgxgQ5qxc z`hcNfflZ_nD;%&ZS=f@AK7o6j&qKtTIm@4rsTvpteCX4H7ecTImJo2Y}Coe8uG zmohoZLX=BssvP2v!7b{6EG!4&*QKr1>*eHTMFkb0N%b{$Pu#7p|GaBLMstLy1UjVq zkSVhSAlgBmE@z2m=}^q$O}p)sqTUpQcVIZ(H}2M@Nqqg*<*3$yWsiq5ty=(IvfAUpTrMAjWdT{$xdTrBbLCx~2QYb9v+Pu?+V{h#M z>V$)qgvV<2a66YlA?^=Ip!{hc?p8w#pEXAe`|S8M*?90!V!Y8*3696*5#QzEBI3%q zl`;C`#nq{8(E2i-_WcYzk;wi>#rZ6(E(hhgZKSrz)(=c9zeW&;Rb1NIh&z4VP*!qU z4xyO{?@8+YxBSx6I^t!+Fng^z2@3Q`F|pe4%|ekXAB1BBmtURkj3b|&_R?^i)zOSY zG$LBeg(xgP2c^lzbw`8)`!X*Y^YC<}+KhD+St56?yF;#(78arlK+4*W_fNO0U&wr1WKkBRTi1{0OFfFbDetGQ zlAE5$=iAP@_7=yz`#dh4V)5*FDUH_AJs#v_6}@ka5Qcd9B>ezr7<7D7$0%q3muo7` z)Trv>PB`ZqVxrXvPtv;NPn2y_ta`Mcy;o=LUaq&y;mjyP|9T3mf|1wL`Y1L&WuoU3p($Kj% zNzgUwPg1BGFHIH9Io?9PS+(TwXZRh#JG;B_v?D^aGAzs5p-Hf{OJD%emn@YvtYPaL zLI*H04*ybVJIGi6;aWqgqM?mZ_yLiZ4G5WbW6%(Q*%}ZrjTp{)t;43G^TN~MzB1@_9;kpk`kuaMA zaYKiQ%QcDnW?0%Mfr-U-^B20eht$>09ukVwJ1dFYF^VZrs_c(=dAvd>oUDR6(yj;l zM3JnD91)xkD=e2h_6tP8M3>BqZ>nJvzWmF8!4(!Ahozc?ziw5ctP-JOZ`AfeYl!Vt z9Bma_j(P+P;7cC&exT7_P_E(JN{iw?MZ+MN!5<+${~fyv!n}XRxz{Pd&5kN~yWUiH zh-bz&7bd{w6Gtrib090jB!8s?0p`@)o1ZE>L6GY^_x*HnH+ucyROlzv4kq~FMO~-_ z8K0>#Ens<2Jhye=-wWOPr(gegfRL$0hR`b1%6ejbQ_776`ej9iXKtvC` z&C`Rps7(zK*+#GI+;_mHwhkGA-#y$wENS%Fm|s-(gHwX88YAmxQ@e z@@JJ6#F(Y=HA4g09OrvyM7(xF10ol1MY11=WtK=#LmT87?YY1UW%M$ln|k(3bB^gk zz8pCR6b#H2Jb4k*A>X@oAa|!pL`+qJc4P*A&w@TePX;JAx__r~T|Z$vWjF&bhTT33 z;&ZRg{aT|}PQ;aYx3bi;)3|-Tz*q6NiW^-3&!=h^n`#xw-5u7k7x*9Fr3<@?w98(} zN^-B^XaY?$wizbE3+{I8*UKx3eSfUlPXlJuukB{H+nu>+QZV*J4~s z+wrSF`p8Xqyuq@jJxBpDuHs`jjb~BK$7R(nNv(Q&GPIN;GWs}R082gk7X<5&D;vI+ zJHkVyCW*Zossa=L%aW7brO<{Ky1X{hGLi7)$3!vO_IZbwfQn^z8Q3wFrtFPfM-e&P z?GE1m(t!!raxZ4O(Y9f|-&HCg=$s9YcBQ8FpIsvj_E=xBQF%-KnIU6unl_$1_h1kT zA#CgGWnEzob*ioH&_)ks&&PX8`e@Ztyoi4KL!ZimtwQ$Crlj%ve~1$ojM3b>^0+D9 zHTV3KtRH&o2J-~kfV|M+``&xpE&R*pwCgy~VHSEbi2g_NS>SK*Kj82`O7b>;p})D# z)U5^@|7JzQd<%He{tORn4YUUSV{-8S@Uj&N5WZR9|CiG~+WNp{+KFOlXec{LtO^63 z(+^SEO6Txlvw$DNq|ASEFa5TE!Fkc&YGy*Gutu+^;UvQc|+J zdL9e$++J5b5ttVq%XZOqI#K<(%ftyxpz$BV_H?jc`7~N|KXs*gm!Iz*2&TvD@}2ZTE`RZ1;YoYa7eft|jkz@-o8R)5A+YBtY{c?a#X{5^;Tg7p^;NlSgtyKE>f z>fp7^<6;vhS*K-J%bI~_h<=xzITY-6QZ@8 z>dXgYRH4xUn|hTfcI94NPf|O9-q1(dY(MsXutw!!z2&|`sN#K z((lxB)twwhTc@?*U>2(9P&*tGoc?%WoW)Q-LYrnH2DPtaKP%Fz5t*k>|VE>fk@< zd&CP4tVVtZ5W2n36dM9DEx}s+<&+68jbIlZRY%SMA;>544ahgf&d&MlIP*Y-uKL`4 zTxvO%O^a=Sd>!_jVz4S`b*Ro>3}~z}CrVjVJA&F0aBA%+>X&s+d_Sc&LOVUL;!;I4 zeEJ@;SPDtzBb1vzvZH1aRUqh;nkR!`R1Ze3>FR7~5W=vi;1&7u$d z+Rg<~teb;s70dPGBXp3c=c)zX zK}8C)8!A3;-{%Mg*Gm-EbO*&uCGoMuaZ)5;8@cG;^Nj}FqE~57)mrsW-3V5`;0s^}V!Duoa`_shBs>?v90i>v0jWTiNA(~1 z@MtC6UY?^N%Li#xb?PaidG_?^&x z{P@9Fb12x(bxvc$Pczl48dhn&YwTEX(D6d>?R8c6p?#wq%NDuk1H1Ev-s{MWHWvIY z#hi$DoV+Lx?<5UsQ5z3CZkyEHIza>kMK=}vKZBF*+TppVUqu>5_pTxJx;V4BGWR%Us7M_zzL^HgdS z+$VzM{DK0aJqhwCCAZ|P`6zzpowa%guQaD_?a$GN1+S7*cBqeRC}P}jzmHM$#lgRm zd&eK$7h89F9HT#!7UTgB7|jTBC$t;cdf_lry56L-boiITk37FT9gV;O*)R^^Y0Su}&zXfyeqA zA+GO)1@IkPRt$L)ki1GY`XU|lY=h0ik8-79qx#6}F$h)`SD~lntH|*kTxh<6w??}$ zS2bMCgw-*m@n>Vo1CmNk9L~K4>1D-pU{{rvhXTz-DvwWn(H?hKyVzNcuLj{yy46h# z`p|JflABAOb6zqw^3?%42X3m_Uz>^H*?20bBZxJRy0d+&^xMZ;f-Y45TNTitnTHA@_^ILD*yz zRKFH9o-C&G00IpbRG}q+6rj}|v5JA?y8eq=3RblKl)@SLBt(L8;*@C$)(HLE%s95b z@rUF7ajF}`(+kk1NB&%HJTX#TO>95PE>W+Q1-|JVhc6t(Fa%7y!(p!#huHr1pmrP-{JXiqzw2U_xYO0qx0H(n!`nq zfAqD3J8Kas%0F9OL1rKv%)k0{W0>q~iuUQ9z7f&#Jkb6c0KSlzKSyYxecr~sv|bC4 z%nvdbW1yxfWWS7UnxOKd+c_i@tWy;$f@>8OCBGnKP8PZF`xs{0B@(JKXT(EdSTp21 z6n)6E{#*q(B(Kr6b(qt8*`_v^jh_OZ+Ac4Hu}cU;J17Qxcu3K|ZnAcRL9-^)7ruEN zO9RGp_DKg+Gd;%vlMQU)m^|U`B41>lI8e2 zbpHV;DAjO+Ub!H#i)c=(wCl7sB?ru_EE+_f<8Hk0o%YuATCiDqE>~Z>MAOoUUB9Z% zfBnHBVl@(~A|=pFLgzf~O3u#DTvPgCx4Nh%R7jfl-)3{X=p4UX`A!%1$+kXdpBc}J zwb!x|GQ~aqIQC-grTR8YZL7a@ZNY1k`^XZP!Z6-!s$X$$N-$Yryv7nX1~Ud!Ln`rA z(E*fV#YNs^J+fmygtR7`61j+GDz-r=85d{_o^j0HH2qo4o{{(~m-!@(LuX9uvh1H2V6tj zYH-|B+v#0AGK<9dS5Y+Jr$yumm{MjVdGz{b_{BbtH-g2XRP^HUhV(5iNrssWzI=w3q7n|vV# z3S3C`h1u)k#|d6r3US-Apec<~JhIW*ST{sS5)W|c)}y+8z+TDZ8vKKPWjiWFh7h&nu(?O}JRU7^H*u8Z#4h~_HNb)vvuU8L_tnU8K2 zII0h2zlbzvH{gq>eMevsVybxt7vjr9EK_R@+}`^RLFB< zaFqSS`-~C4+>nGVF2$`M;V2s(-ky2f^|Dy_jG-(|49U(VN_s_a6g1&M!txy=PVA>% zv`r(FOL$Mbz}sNUkiLZphYD0K65&Rxyzp~VSL4}EtZCDR4qLR(r`Z^+90X-n2$%?G zLa1$W1h9xXIviHBG4oRtXx(UL-uu7u4gw8?P{nS88Q;zrEw#;i_zm|)l>RuWvfy3u zzw@roIc2$*88-c}W#+}`8K3@g2TQ` z7+KCkfm<*;WZP?=$tm%34sxMnxY)Bi^mNo7#orKt;+Tk)Rod}A<6Csb{27FN%@{$( zXxmf3Il=YEK&T!~I~Xo67*%?{XdD5dTiu&#>U&zQq?!)m;l|y4NTEUVYEk9E5dj|I zZtpq)oTwud&asmc$e7FS5!v&lH|jG~uUim9L|}Iys&H`>n(U_`vm-3E$mA0e(i}gfQ>lB6BX1h(Vhrgji};7^yRvZCjsX8 zi)VF<5Sk0)XC4Q-j;qX>CqWEhPD|L-VbBe@B7k`QOQ#_={BAZrc|JcA1hfaO{dR0@ zhawor9FiF?3f+eN;B+BvyG};JYZYRMCF}!c3xQI1&D~GB+AcAigB?Q;aEK;QVlz=p zNp^Gaz<$Od0=#xhD6ZwOk72E%gh6>rqWw3X;lh`Z7HO+pBb0@0KNzI6w7kJ%EMa>f zNrsb8K^rFVlHP}7nbKOQR*PSWAM1WbGRU89mBDP#xl4n0HyxIb@iq$O;*0957S74N z$M@n#W*dy`w>R7$(AbTkEV;P2J>ND$xhK`V80_zVS9vWPOA?xwN4b8_P~=%Sfs*3T z0c$}K2=g&DfsK_K{~xR@_E2J$)89bpa1*O`(eN#iQRjF(07pO6sz5B~Nnvt>U?Z=S z7l{WmK>;C5=rC##@y5%&;6n*g4W3c&PxsU1$=JE?cU(fG+~Of=u*8QT+DxhUFjvdi zA8Z*?Zxj6@e@-Vo5}j5 zlH4dyx0)uJwU~ar9m&2Ac+Z%3^Yoj2?V>hTY)}^A&e8zZ>Ddiat)DNN50rV%cPK1J za)Cx{p$W&kGbhMC6&ls>puUDPjjh_Lli!RDYa`OrVoZ7s6~GmJ`u_4qhM&d6TfCG( zg7xSV!u8WVPCic|%+ok=8#xNipG%nWW{GkjQ6MLwjl@RAZ$4)p@|CMaFt6>K&UoH@ zPsNgpK&KuYANs7Zv92l^A1kVYOy1C@OON3&nvoSSp)-&1#WyAP5H86_LoCOh4=`zi z$<6UHWUiJ53ewSwvYP&JneN7ro{C)e%G z{n5b`8oiSp3Pu^Xj5)%mT>DAl{i2>aeYm``v#>I)yzy>&cD$B-*-detMoTy(SJ_HFqXS z^%X^Q-Utv0ZY#7)Al*o75AsZ5VRz_$aT)s|uUqAq%%u=b{n)SlVJS@xa1#6Ucp@`4 zfcDex3e!g3btU}*z}ANa@`-`Yi9?nfS%u2z)^yyH?H_S6H_^Y&w{HrbU0iC_2#F|v zQC@69U7Vo^|Ipl(rGLe-l9L_O=zcS(@4gy4t`1z^erK&hU1jmBw=uU1OvrRG;i_WK z6?^?^_|Vv&KR}oi{o5~ztQLxenKJ^-)Mvw?n;$08D}%)fP7{`5{;*yG`lmvt1O^Wd zOpITPGUj~x(A_b~A_9Y3^L?(;((Cx8_th}_QPZzSeee*`XFb;ROR9f$f1?#tEt}Q5 z-w*2z`UA77@C%kuoV~j(U zsd=sM9^fl6H;V1jOIuPzs_(OqsTtLbl*H~6p>@%20LLYr(RrK6p8jt_j=dT`d_L35_EwC zB+)AyTq0-x*+*nJTkKJcp{{C|uLpqskWB~5DfQSJJFLKOGHrKvokjd$AMzogL^S1RB#WsEcsp_qBzTfggQ@srqA$5~?L>RFVe8xZ zzT>4P$Sxh`823D!CcooM)V@|tc~F176Nbz-pzF-W2XyWOrq-K%^Vrm2B+d-AzQOW| z8e3sJ%}?lUJd`YpccaI+(mD3jZn)li9o+LbzS{-gG zV&k%Psdbt;m=5JFmg_er)`{5rGn%2ZC>$S)ba}!mee4MCNXmD<1Y{I3Qu+Y-5EZS2f zysOtJSi;wF3*cA*DuU-}BSQ8rnC-x#v7a~hxLLN;ZoDQMw$V%<{_aS3_hQHYj6(!^ z3h(pQ84=@YS!GOlPIFGN+%j&6a#mj|p5jI{ZWvRYHWXAD|sX?BC0@G~{c$Mzx^@o-cZgK21Ij!G`twIev8svQH-gw_MX*bUVag4=F zX@76%J^e;}rxUd!G(_S=0;)7iGI zet#I>hnA6t27l z`;Pu4n?I%RBc4xPR+^ACU)fe^(cpr_8VR;6!k3+1Zi4612&jwq6; zIf3!Swau1tk8daa&Wq9yr*ImWIg?@%DK3KK5(`K9%@y=~s!n+Y{`y_jM)PCe3 z0vhT$&z;H7>-K!Cch#YS{N#bwT&6=+ie5P)CnY3V2hQ1luFqwp-xng>ZDI0-;+X!D zUB9CjBLt-dyucsD!`Cm#t;yDJ2Jo!=>^EKxmi}_Cxz{Ll{%9odo=h|d&S>*ei8PTG zj~l{Aq>PCo`Oe^p)`VN{y__5h7fCGFt=)&K{plp6wMr{kgKCTU??pm?7tWvY6c*fk zxcvd|@idiYpOALAerCSKN53{TNZx$(1bjNy4X{*)6$Iq<^`Mx2Id4+g9`K$0zXUI} zlfAL$%23qqu%i9uFN~Ryk#YXz67<2D<=*6^dodSN=G+|1cs${Oed{UwG7te6A0^!bL9*HPR3o zi;#~H>%OOM8vVct6U#AFv{#hDimnGY|=V(ED(jrFr{V zq(}HFE7-l{O5}6`)S-}C!s9!xV=Z%`YxRz*-hZ>x0>Vz!sEd17(6XLdo8%b2Xzy{D zL)Cn;(&NE)!0N-d{t`j1ZKhklq^)WgUvsZxt@OL(<}6;J0a;*F2gqout=uS_#Eyc( zVYW2Hq@{4|0(WAf85?VvljsKZD%Z{j`=s+NwtXS^9YyzXTXpKACkyJHat z(P!E>c@u5DzkBZpU<^*IW2+|Av1@;%y4i2ttXaicDJS)ItKm3pcj!X5Q%rNzOZH1k z!t0w=!Ag8p%5@K?SuP@y9G}K1Fa5XC`-pqjX>4>8-l8j`iz45wIP-qnSqkC^7Bo-? zJ{k|LmVID4oUcQMbrW=YGu~jWB_$K3CGRt{);&|H3u|vQUZP4<8uRD<@+9IG{W1k< z^KPK!`nzIZu27tW2`2KR8#*H+W=)o80?yu#H$x0gJRXmmWHm&XCG2_-%?0h`z~n6# zy~)knRVj>1bH!YwLX~)<-muM4!4sL272olj#>KO>8knWZH_Xlq4s!FcoRp@#XX;Q% zMQ-cQQ`EXkMH2g)kH%FqOKBi8LjRsVJ2TeBlo3SZ5sx#JuEnA#J;G3l!!&)?2h!&K zLhJ{BcLIIRvvW|@n8(EQ=xLF8Dja*25cj*Nq!i&Fk}G#u+U= zpHNo6tqUC9DxK;sr{#W1|Gy4qGnJ&qCMHF!zJ1m@|83rtCE$uC8HOQ#w9v54@+XDv z`u2w$V{EYYg`n-JL8nq}Q_S%{l*+WH)}`#K%lIJmmxtFOUnv#yV-w11+h4wHW3w0>6)B==_jMzzZj}e9Og|2W zFZ^+}e4l_=~BA)wykVm9=Sv1qFd+0Ol=z9Lj ziDM^s;0tiaq_+p2&+BKP7YhyL^}`wiUnF<2JPt7gId<;b^x5;_GGZ3qHfi_S>duiX z@8HC8EDK}QOJfyAB%>z(w%RrvY;o~qKw`2?>%$t~TI++I_l;;>8?tOVQQnvqq1j4? z=We#US=!ichI`H%(}#^;8ZcWurn%v%GtRk$R7nF()~fWGDObh=U`d{9a^Utwm-*Ef zjitayn27S`P&TE@oBuc6*mkk4;1H^vd>zAB&d}2Lh{sfiVIKefBoD4_ zS#1GRp^I7IR|d9d2`#S5eQ=oR;v3FT9P-0oDyrYTF*%EW8gGBAB>NdAp!Di=7Vqr$ z*4|Iu+Ni4sC)BuVWtY4-8tXxJ$5F4z?{y4Aj@YYerR>&Ny6&m363Mpt-55-kFWEBc zj5#x#YUcNL%N#gOaHQ5P*xTt@a|pC+q09i&l^qp91>9UQkpyawj&9C01C+^)(`#e) z@O=AlY_T!oM-q>uBF4lziKfpZ+Un7HXVY8L9ytTQb>c=1SsZ+PvEh*TjAkzQ%27E7 zITRUDe+e)RD*CzlLRRk$?oJI|<O16-hZsBA58c$ z%NA$2M`bUIXa5k!3-U;wN5+(rl~!*xrLG>;i+{WgSMt-8mq&ASJj>ZEQ~EUzdZ0@w zQ!gI1S!$l(rGK)0JZIZ=S9l*uE!7ux>cApRA}4c^IzM4wUDC81{EtbRGv zS5lBid0D3RyIeUZwjozZBq^-v_M;MnODAYU*XakXt;JkByf3nz>;r-@YZ`7bN21%V zzId*+{Z`!bvW$rWm9^WaH;bAzrqfa`gn)vsd)Bc7r17S>?3N@RL&@NtF`!nR!rt!( znfsfrSo1Kh-N9|r5o} z!h32Kw&ace%LRM#T%wAcJ)x6#se7$+w~&QT%E}1;%(iM1%%fDgSWrBf>KwtnHvx%B zS42`?Yp^)N+u>U{?+QQun!7L~n6tef3o=|_tc%gMD+G&JzC*y$ zu@m4#&a@{@nce1;1*6lJC>N@&_`CVb6t|8*!?Bo>F|CO3= z>fFz}=Kqhjw+w4*3%f!+iVcrVmwaJ`K}SJd|6Y~TforRtRhFma{;tRN_9rjrYnqEX!7HQqhF^*mL&Y7M zA`x;NC!n*A_mMfn;c%|#U9L2lLgF@i4uAk{r8PYh(?^!i6S5E5lDYc-_xtz%d^j$Y zU@>lm-%-Dr_kKB9;MeDVyz*oGj!DCz#X)V+Vfrh@vYeD7F=lk>cPq{le;=ELs8XtL z<@e=s#U0ilx)<^L>|1S>X)LEii1aSqTYLIvOGr?IZqR*USz*Q2rW-isRok>z9d$dp z5~$#^+VE%5fVx7y6?6UyaR>IJJN;e8P&czabYkXbs_lwzk*zyDJWGe-`X)GDe@hl! zrAtdyMl!7b?&wARXUqNZndZdeoZ@|zDg2|I?QKIKng3>|Rek3B`&Ec7k!%L%`Ea;D z5!wa%{{$ISa=DDQCIaIuy9*n#@}V@%(_yIt;Ht-CQ}fh(+qWpql~}i#8q>1*r0-p8 zgn04_-@Xf*PgfH?7wS6{D~%v$67EWrtUWc`MvdGZNc!nwq{5Z5;7I^g#c zhhe^I^M407zE8ax){$=}SKaF<-%3hMu(KY>rC;zIaB8S9g;p40WH-LvN4w`4$ZH%mX>ei_YS=HC*QTH2B;=W$-z71S^bcUH#Njc0R=fj3sAgl(7RFD|ncVaQBPr~WR**V!4j z*hVMAfj6tt`z)d*G1$aHKOVSYd103qmYSWZeReyirx}WFTWy@Vg3og?*EamH$LpQQ zv2}!EzXaMt;i5M$`&p^&CLJ9evt4^wnY?j9+h$AGZvl3lW{$?MS#HIM7HOGj`*x<@5fDc{ z2ie1sF(AL2x^yH(>v4@8UVisNG0VWo9}gO-twt}M59u}NF1ni8sq?%76*Q0U1)`$E z&lCB|rn&2=WU}904S-#=iW{uaSO{Cc_=cv{oLMdTbp*YFRnx$&qNLhZNY)!vm9-S3 zlr8I7SrXqQ$kEm*=xK!ygSv!RBrI!hO}=-yi*yEqN)qX6zsH7saAD#Dh9c)52e%IN zs-(O(Rx>^UP#C`L@W?S%xEm}>BtpG7-{yAWDFX7HqMvllGPX-)J(Hk zZtlTZ!p6Y(B{^w^C?k)WRk1S@aLpC}x&41l?TFBFJ<7|4)|C8D4F2nk%>Qp^4)lq4-JQ7GA~Dn4h#~KW-0*B@HzsYjw~|z<=s@X4 zE%x)8pY9}h&apBa?{@sTLX%{@2m7n8cl@y%BOV4GXSe44pB~HA@D7SUES`pHKN2<3 z_LrN;Hov;l2WRN77d2GL>}?{c%ISw^T$Hg1YO4zpA3|} z!1BP$)&-XT**XG=Hu;>lXVhm_*Vbrg-=ch6XF@?&Gd~}%C|M=jWoCw+rp?)WzH_-&lq4s@n&`do+jZ=J)u)<(;)M|C$=e z<@#0uyQ519{pHehmdkXBezwA3-j&XuneA38wPd~(R^8Sq$nT0q)E3fG4A)zas`)25 zBk_h4ZY~-;v^){_%GBEY{QS22@id`u+~91|XzZ`fG%XYh#Pfe3o6{&ImzX~$o4>dk z+fTZrMY+O1-oby>Ez0KSfn+De;kCn#m0T@`|HoVXtFxaCK^HQYiSU)eDBHh+dk{B? zzjdzvVl*9~A#9@{`HRl@r!dGe%u&AY!zf$mv}DCR8j$bqto(q!PSLY7%tjg%^#C#L zY1kAGUSx1nnlgO_#8NHVQ{s4u3`*ak|wm*lHL^OX_YFJelcT3t&%)fjuyXZadZpo*xyD$aV$beu zFwu12Q8{sQppk}iCi+{8?t68fBBvRft=$cWN~!bJ1b`p`PdsX~?fX(&ZiRz24d#-i#3HDi zX0jISvw&!GPSjZo4Z|f|wVGs`MW9bzXYY63l$O#~IW!CkDCyaz>YGKe91x6#=6&AN zt{-`CdiOe%s9aAxiv{Ve7~>4xb~9t3QA>g?%(dKxl+@}IPnDYZLJVBlDlIU9SqL8& zcg48WuvqO5RPY;N{%AaeIVMd@#i*zr*=Bg@lKJ}ef-V9l-jv?@DkqzIDq(x6F+`ke;8jz`0?SvgRr6yvo!Go;Zqboaz_XTED1o9x9} zKr(z%r>=SV$Cvwet3_K?4ahl$x}$U{z&$G6`}+?bUJ@TM>)kGGnYXsLao@kX`J&3H zJ8Ic2orTe7v|)$8$}F)xxTay24J8TBYJ7Sl&oFb^t?O!O)^KuqfKi~0kvgOn59mGH zF*OWoDb)mX-e=z_ab0N3AicS4u>dx08oY z7NB#+uzq28fi1m}$>ID@=&MYBY2{mFHHW(k9WNb)6z%wFl6ei*Czf+YM}A*h1Wv-= zpV>aS9YLfDpkVbPk}Hi^OLp|}^P^#s#&u5KVH4CXWN=r=@@n{wYIM6^HwlZA` zG$T`W?3zR7(=rRTC+~=CwSI{E$@t=rkkUXH+4=mj+K6p^Z~@7Nry_XdW6401 zqYu_|N#q)-3!O3ENbiKQR`!;7SpcJ1MARUk*!cm^`qOU0|4f$M`g`3~sl58iYV3zj z;AlC%EIDE<6t|XTb`pGisHQq9`J*JDXO%baDUbAYiR}5PtiTY(`45RoP6Lhn$u))= z#l-i6oj>~-0HpFBQl$DvwcmO=Q%Zk0HcA_;oOm%bQ-|B(Qu=_~5F4xMgtbnzk`e~n zCnlo}ILxm_0*Rv3Hqm@wm_PZsX|hXUyPo&ApY&kwV1%dT%6L|Z?d3eLmiXG^BPx^| z$ns_sQy~4+?on!*H%)cy1Fc%2aws>8&Yp|wqd&;u8Xocj*}E2<@|$MR3LPp{WY%>* zkdEb|x@~6bmB@3^fgLYXZS}Ok5%pd+u}eP};+G;0yQSGwjS7nPro!UShwG0rT#~eY3IQ;Xpfm zg&cHcXF|= z0j=xUZf5g94KhRXL{1z!`XAK+lHhIrQ{z{<%+gAiiZR8r-3onMc~g5l0)3A2C8>~_ z05^4dI1SY3X85#DRhf%63&9!BW!dGe4iD6xJmB-_TZUGOG}A_EC&M7Dl(U%jg-Te$GdN!#dqGAV5VK3e zN&2HM1tv@Y<=6>SxWo9zBpVn2f_bWstl#U!O|fQg+$zsh`buQ)e-==@q!VMPG^z5^ z>4MdM1H07MfGbHNQ3ebrnOXs zRRO~p)NcK^V|fvIKAxKPzy1qXIGXYDq+hE~ps-pfkm$8={|E|rXGiECMCpmB=!~Bl z|H2aj=9SWZ`+n#!>OsTd*9-UH1lcq@e%AZ zlF004%s}}erohFW&WeMsynEdYfc5a4F=d`EcUOXs2o&jsC0Y61Fh!cKRMMAzzq*0S zjpVc&lQr>80-P^WftPfyqcY6-quiinsl`y+8f7at#WI`1nd3@g=SBm0&gGkM2PUDMyYshc!}x z!$Vs}_>HdU$|GS?;`>zJr!Xhi_#fYUTn7^r<-4C={1VZ56veYQ2eTGa%lvErw(7k} zp@)9O%`*5@G$0A7`E(`0`F1?+qU@M&^E+}y#j!j|R7U=Mm=6cCz#+^cjYS|M+!8Mg zvmkDQ1V(Cu#Te)nl(40#ES*n9{!+{4pwcNeS$ia)ON}&bS0J`$}}bl zy`|4tFUbBW?hD6j-kSx*62<7nC@8#z^H7Ny0<)q@>_SQrTaz^c~AytKl}$pcMHAgo17?cq={Kp$$@T^@wb0mWpAFJeB=85 ze0;5}7Y9}K{DSX*2^N&$aaN-t*i03TT`6aBCLrqxzc;wIVJhR5E!Vkgj{(Hi^N_>1 zRC0S&tox#;xy#ebbuk-IX2LgH4B<_{ssL%d#ZhHzdj36q3|_`Y*N7dF`sD%htz5C8 zCV}s_18&(IFy!I!gg0-FBPwKF9;tK$=Bk^OYJB<-=wrkeN`{UT4I zWx3)edfgMh{F?3|YEF9G2>^su>-259R}25g1ezO2Mz;rapi(-?dU5|!@ZeAYGHPep z4O=uut7@X1vSOWD0Z)*^3;y)$5HI-!+2Nc^SP=Du`fh+*zRxTQaay(WXhf~iV@}YT zcflOq@(~DgV!%^Wa35Pgdb))H;%pTwg4CG$_$1i>jAO-)`*>CJX3=I zBQzQdf68!UIIeCnNj@TG!oys@-ahT0737-@88;5UJNF{G`kR9HUL=?SE?bEU0{NMU z=TqA$Ck0|Yv7k4;WukWn#&o~Q>wyvK9_CrrkqzfXO`$s(yU^r>eFpFh$t)UQ*@b5O zcvlMD>9GGY!Q<@}^-q%M*jwmacrZzATChew*#Ye?EagO# zd%=SD!iK6hvADdVt1T1bEE=6+wS)ju)9h}}OybPwrCA#|*?=2O*z=b}dx2SLd@--4 z2kFbCIH`%N#M;u<43rz7BSB6bNwwUQd$NJQh@HXOd&hGcEByZKJ8 zqq2%^n-q2ImK-<6l3B6t^~3qc^=Vi%I&a7uGTRSSjhSyt>Hd_|)jBCZ=lR)@jgL%* z8BT|@PDQQFmCRZ@)-zIOgk`GnrvU(N@TS?Ouk|qW=hU7UE*q_n)1gj1g5OJGI3_gL zCem8Ex$UHDdR2v4wU9AxM85x(%u*mTNMS3&@2-PY*>Bi=Bn700SM)c$!N(s0W4=HY zJnDH?WiS5x9P|0o@~3a{U7$z?7iaxNmisBGl9Fo&5l(!!@I2$M&v0Lf`ZTqrQ@jG= z9Wee}vddL1OPDXED_#VqCmU)3c!ye_lwXAo93Bi589=|#NB>dq;ykCI?fg9b_zoh; znxJH0y7}`XkkrknglMQ9F7p)ytWjT{_)60%N2S)toqT5PbGm4TMIl2*eOWAg+74Kd zk`S*r(kZj+{pC~CR0{SYP*7y`>JE!KSZ?N* zs?wKdP0fGK&35_uoSLVVtW7XO$7hLe*&=rlH)c5#C^u@!$E6<{ zJHG_}diKr;zN-{*W04Vz)T4%HL)V%3{%gSUP@aGqpb;ZqF*iAKO4uy<)=|6V!+lka zoh>0KocuxpRVDgMUm}^ahJ{+wD*nt)~b;kJ<%@iMBrkCE>n4*Q2W)8Slq|4sXTh1}0z9|i^ z1geeYigN2FK5Ukm!QyQoE5^pgW}MzqnJ)Il49XB9>XnrLSs^@1Tj`CImU!~m52Jep z23RR=ye97!f>QRZ;_uE{oS;uATRj&F#7kKD?U|KNkZ5zpz%)z))lP}yT11XF4h>8F zK-$XiBP4sgPitcX$&#cbf9|JEHr1*PMLKOTIKkp2*UMY^?AB;TEf& zgyl-(Rp%sw#25TloA1LB&U>R@ zvPRFM65&zLk+o?05K@I*l8%ZC*@wAj3q1sAK$wN95Gtr&rG@ir2#S;4q`}8~mu^v% zF@}{G1(5#7jYPrMGluR~Vd2;tJ51{?YPYn!Uqd@aW9*_{uz)!n~sjPfS1E=ZpQx0_)Dc_VgDq1-gUI*}+>gLzjhEL#AwZ%n@h8K7z)&wjM4B4vc z`02ezlcI(tTAxq2jbqsDK+&A6lLUA5CQ+n84}oEHTCFxlUcl z?iS6m#Hvw|+`!BDS-_cxK$-M$iT$m$9yC^KuODysC$l%vK9MQT|-N{fz&I4|=CR%w-I1E1c)eyb%& zesmMgEasrw7KcTmUXbY}b=;sVAAmtjuy4lXkHG0|4AKnI^TGXd6`UJ!>Ax2^*OlD= zi}-%9N4>CLsEcE6zmK1Yf5(x&dUX%E9qGzlGeE`!bc^Ea9`w_F2;#2IRQ&$fiPX~? zcf6By6qou*KkS-sp24TOB+QgJDQ60tp>ixg_ z6S4a&zt*d!`PI#gS3H{d)W-?E9AfHE;yvS&-E>NYw|)Kkkwb0*FA5r!VipgjzggBX z+i6`6?V~z4!M(2?m`pxdCt|LpT~&9W8hD5^Z1m}rJKtN*bRtRZUDIy=)W!8=PmS0> z_`CgxErLB~O$~uZ$J1 z&*p*KzQxM%cbbiyn42$rUlk61Svj&LrsY6z{A7)jVy>>Zm+faknM^5BKiJquCVgwm zCZ#mN+stj3BcIGIb5~_0-FTec)f8YSxDQwjoos^33Sw#YkB!cbH05DEcf%S!l>hXG zFlz8(_%uP6sEGc0ZCnn!)sO`#WMsG%8&7ddd%H3>2G*IyEGSYaaeSX69x7ML(^e-6 z5E?mrdhM=1Gp6p)tW)-6@v^p29l?|{AD?FO*xL!bYFvO!%Hx8jEyo|x;F*jg3!nWJ z#n2MCl9WvD9va=sJSkh7Yl4hc@9m)`PmmX8$7MS)%k2LmPd8Sj0~gs}L&S78nSz?> zi!O$>Yt_znmfamkbw$9?2ve1*fe|H$@e5{tHx!Xj!I3%UofEh^yGFLsiz6vNEwT42&IJjlKb)U z66XPyU{>Qc6y;Q_Chg&d9fQz~I!54>kdLlz*Q)0Sy^Wizk7xIlhk~Q zGQ`CDvATLwln-LwIVAc%Ez2hLoNlv`IO6M08R@Wq`|7Z-6>L7tMTn^F>0~?!Sv)8^|6Kf3<6n z^9yS^0*qvJ37Nn<*y@n$qm^lm=6AU~4R#em1Ww*>su7(C(Z1yvr4mk+mS~AE{S4RID6T-xxj$lw;VqV@y zsUK{qLQg2f>iS~wHAAXZ@$!1hpP`}I+k58vYk)Z%=Gjd=PIbM2$|qh@szOd@)JvW`+#&KpXd?GxZ_ zXFE_ZT99DLksA`RJk3XVb)WKS`G$W~@SGnhA9~)+ckU33tXO9zwBK-7)6wFT#$_%b zJ~SS53+|WD9KO`42QgvEcqbMLF>e<tsf9ig7 zpA7l4FYV0FMH@X4Jkd5ArL)YPUD0;DmA#0pBs3;FGQs6>okXJJS*ZlYk)IUuL6;Ze zil>;S#*UpKlzDHH-e0s0))Dw>IoQ=ktIrl7UvLCpc{9%%SV^5S2K9s!kb(9_8a-`7 zuFU!!b`eEqLs|Gd+x`ZORkm-L=b|(Wa0W0-S>FJzvs^s zv%QZjvx(<^RA&3<48wehWI0i|{QA5n&vx&&+AhFFOn_2l+Sv^#)ZloCIkjPY82-RS zrDJY-b%mqp^&$HwGvv23_GO{h(Yen>!fk6nQC`LY`~tPU^Y-D!cj6=W@t5r`S8mc}wt*x_l)0`i!~9Mz}bbft;Z6q0)b}J7?V< z`+{!>&u>A$|KoOT^B-p-WbyheM)49_1be>aP)%K%u2XuvZ`N21|5g)qrs*{&16I;; z4w#}gCk7H}-ZU7yZ|Dr*7yXv;f>&2sOX}5|=R{zo(yClK-{Ww}O<=2gCNs;G7PMZ< z0vaQH(^gDNCx=z&i5{1HKm2P>c&x4Cy(gx$NxdbF5jcC(xN`k|Waao|Llr(oA92NW z9Uy|a|4t)YL{5$=&XLtbW?3SnC2?AMLc&5IjGmXP(6CEPhsEL<=7r3 zfmPJ?H0**P5)!uxAQ2M^WF9N-FnGOjR_Z-bq{ueDuF62%7#Ot6LRXvgu)`Z3RnKC* zFE{1kWVp1LE78PH$vlE}7E}NMn#Ajw-u&~I%9QFNV_v=Q0%-8N&YOvgk=f7Cbz0vUn ze8>bcXl?DrVx{dMfzE?Ua}L*A7lL-7xaJS%;Ky5Q%jsM}Ol|#c%vra5msu;P112{H zB5}vskf!q~V+L|^wt(e?+02jdc$~%tlCBDHDpfz`u3x_>$I)1tHS_KlqU||eeIFh; zKx5wPvu{*&a?#c~xW@NQPg>g6ZhoM}=!GMjBxo^q zL44$wi~arkZGycLO{bP?u65|G3Z9vw#$LBR*u%*=DZfrd$%a$u5Qw8xN$YD54)|5| zY*o#?p`CNgzMRH*ilaV zIKL*~^qkGZ-LkqymN4J{k4brr)-VOTR(VFvJ%8^A&6(EJm2^DnEnZl`m$?Ted#r~`HChUXPr%dMx6}=Yr;L9 zp=W`&^LEgZ6%y1&^|-h1WxghSjc$`y-|ydbOiWjY%>2=f+JV-%7CrAQ=oT$%#G9Ib z_xb>@#+}i;!n|Fms=Ad&-PI!eG-$kaCf=%U9e<4FkNUSoXOSU8IGELC~-J zt+-uS1Hz!wjZC(`Hx@*r^N6dWmPR|&pqN>6w##!%OPxtnVHezPzr1M~ZK|zk|L2qF zJHkEmA1zDS#ub{GkW+0jU;gO5TC?+qR@`6o4;#yBdt~m$+dk7rIG9Y*fX!a{Pfovm zbu?F7hK`DUeJTwQ(cZbcwR}t1e5>R7g)Kc#2aCg6bnuU{da&A+b5}jd*0EOqA9*3u zfdfsSb^}`P#78cRB;Z}6>2KYrc|Iumir0fL<6(LyO##o2Sa4?CPCDB{ zCgQ?USX2o;Miw_%QT=n~g95qG_d5*lXC$YNI_lxU0I+m>gM8(+1V;|x*97#h@;&M=%bLl&* za5<-tUxg}OIq(u%HOFh!0dO8&^LgyABOuMukBW?-Z$Yp7Jmk$hQF@5+w_cygIs`p7MpJEXh<#KkH+xH3Al9 z?j2wr4>~hLI>Ki4HbR^?s^;4EXZBBD9=G2MdCf8#b@tWH>1njskLnaYGTl>_%%^P_ zz(zhc`^1Y;Z?hZJ27b z0$P@JbK`t|+HnyE_dRr_Y6eccEx6y1DEpUaG;Fh&VmM2jqKRCG+vg2vU&!!Q5Pf)b zucM+e+wAcRyIJj7|LUJ5_)Tui`aSUNfhI?qY?`S`2K^k^gmiz_%=iMM1^cHW!4~6P zcAXS^@htcd)1c4_CDn2kcg*y-A|`6TsvapiPOlwqe$g}QCy~!*p_`_ zhf}K^@u+^|37eyO+``*3Y|wB75KTZcrOa9{dHAMmOH1du+=-ns7!QFa>6r!7XOUmIHVJ!iEJZGd=VJ*&C07>^HE)qMzcNOv!cz9%KM5VP|LQ zSG-es>g+w@3PNvWKi*xhlcIL6l zOoqU-9-plelVl8KL6HQ_TLhhtA^%BEw_U#aiz@Nk))@EwLr2nogF+tp^|Ww zA7+fl8Rrq2QG)|?FS7LXAs)cu<9KbjLjvcwy>*ljx#VAs?CAHhaia#BE-qwbB zyg3^XIWxI6fZ_pj!qMj!Ow9-p>bJ5sZoaaJ9L__wa;y+g;@Ho6UCIu?QFPrzgO{RtTUoHJ8I!g#21gl+^ch>dJ=QE>tKaQ64OQ;n zb$tbo#wwV72T+Z<{^0t)Htw=ZXuE=`)bs3e5qy~JJ+G%2MMV>9hm_L|Kvi^<|#H_*;2U4aNQ!`JG1oD?_K>`ieTp+TwVSrVuQ*!Pkr(P@`FS4Veqte^xcxFZO~7cj~ZFu+659pyfh+t=0TXgSf(B{T9Ba1}nPd>@QAywXQ;iQ2IAX4Che z+jPgE`g@3?)(<6T51;CU&`Pe;Nn{gpc?xu_@kw8TZVfGPg!BR#WJ=T^d;>d`}mclDSa72wPb{d?ieA7ZChQM>9c$9P@ANuZ0Y z*x?hx`6V986qSsGiHnbl0%fwBLF=Al@Ias23+n z`|CbC(o+TPHJ3JuS0XSmE zjUm@}Vi($%Y#ZyeQ*EvUjRRqR%9$=fgb zd-nOHSC0?03|e(z>Uy5I`KK0VH;AoHN!KLYtp1>!M|)YRkKLN$|5i+I2<`tps{W#% zp<5>GZU-7{6YOJF{`$GA#l-$HG8lj5cZvdVUM9UJANllOvA5>mV(%x+zhv9(831Ss zRPP`56>$_+n;Q8afw<&fzY#l{%}##%U`~V&ti_DVAwym*s4Q z06c!*Q_qUuVC};Z0dFLHf2P){$7vN$_}=k<`|Fk_-2t-4Iv8iFAU?2bRQtBCsWy$x z3%Gc82noIc+6c9T*3m)f^<=95l)+L^qMT@Am25O)>H>m#fyBwFUU z5vyM5?${06N%Flcw}bLcf0}JNa|wdYgTmt!Uggzrj^jVxw8Kuo3&gP~)E zr*3M;4d0Hg9SYS7m49&1c#{kMe6>uZTJ6+}vGbVtonlPJ@8|8OZ^##70G+Fs0z@zA zU3;Aob1^Z0Qx01cR{OUP7`#Z2UpijC0{AO`o?dszRlfB7SUZ2<9r~LU=H=Eh{QuTK z=S0;tRG5_0x60prN{XLVBI8omw9?M<_s8lq0_Tm8qIwgQSGSeUVS$r-pN3Xrik`KZ zuaqaYjCrY@4_Vh+P*}&5Vt-)i6!mfhvmI&|13?m);KFi(QR^JP;fhF|v)5|J_@wyXkZJbqAK~Z58-_NJwZxx-uL< zNR&ImqeH4P5=!RNwbDgsVsc=-qh1?svm8S8R?GFemD+W9Jhuf=$lFc`Z})15OuGU> z3IR8L&FuK|rjj~pM#ZbX_~Qxy0KeC}4QuaaTsKu=7^_xc z7XHbq)GlIf zzM&?U# zKS0cac2u@2Z7i)pascanMTrlVc0PBdtw3bDLi{FMnvgHuzFX+T-iFw<_sp#+tmttH z31zO?l-3iw9kXuFPzEYmqL$?-lUM9J- zk|&&*NJuoRp*?GbK81dNn(fWmHnEg+kIC6ptA~2!tT9j>2M@0!7++69q3UWU;EjKx z80cOi%PrTx>lSVTHOV=Xoj_dLdP<)>fBX-wy3YFlcIp4+1M}a}WG`XP7g;sA|3(Fg zXV00oqNETYiJ0C9|K8o(`xXFzY14J@-Aw*xLd&$3!-$xEd0{Oto%=LY>$fBuiR~L6 zH=9L5aT|PH`X68Fy*a|ISBkca02QB~()teFX#K6mEn3fo?`Ml0{ouH`|H6-`j%o@b z>F>7iH$49PHY4<5M*qK_@#ia@mh$ujLydtMzMy~K68R%)l=gbYqqHjYa6OkIZYKOE zBwi>YqvYNtIuT{OPVp13e({N8VnPjb=-L+YrC}HJ&#tZt z5s0DAWpln~13Z_4|^Q5%D}H z!_P=*+fvAm1Xde&a(enJ`t8pa(q|%XP5>`_L7jyjxLnu(*{hUQ=n9h}q_bV$&W`DP zXPAP8CDv>>JuWk|Oz#`Q2UBg_hjn&-4&Kd+uo%w^w*Lp$hPBUx8&;=(^EV$wK_%42Mv0jH zt{pav&dMPEMFHAp?QdfoT@&6M-wWmDpzbJL#A^ ziI*6{hKQ^^c`lJ%_vfy2rF68)jf~~pYTm|4gK{8qO+s8%AZXP_#pKZJrkTV9H(9|{ z70B{+tU*~jzAF+Em1ta>MtfzeZd+cj3}T+*o3Qd%S1md$|Ls#I%|Eow*=N&xN|f_z zzRjEK%a<=YZu6#)clPs$gs(o%V?RYu78>nGN3!??-2b&8MWF9{puZf9)SP@((3MPd zHfjfAS4heO@jtWW*9B%;c8xw)#|>5U?PE7i$*wKkJ5&=EfssUDd5>C9wPa9 z*;)cuZ*5!M4<}uWwxgz)MP{oI{dvKar)$bG%*wtRXWAC!2-K*f?!(dLVIH(Esn|p7 zAamekv%iQE-Y6AFCJ^%QW(9og^e!3QsC>*yAJ|1zhI&%f6D+hFFt5 zMp56l=jV?P7ZpkiOV?~76;|>=XcO)J-$H?$YhF*BWmUSp`PdlwmZ|p2!KG(!CiNd; z!J#$96>Q`8HP89E?_YnE)gn&vWO%aTP{upV{WvBeq2YatdHkm!Mx5p0TXc6beAjDp zliyR578^rb=6LoPI?>#bihjv{o)yQyn;I-?{pll^K9CHO#)P)c{llFN7S;GuQ~gJh z;Cxy+dENZ872iwbP7Jx%T)u-u_RJsT&GWmbLJD)*bDUuhXMFfmL@4@xH2`M4jgNSf5 zjbZV4XCy_)7*=ObxKf`enO_iRtc<_d&)1sCVQroL;L}`FDc{6l%SJ(UtZp^DzL>Hz z@d!d>6tH})-^QIdvrg>}y7}`_&(EFbknAqno?6zRGYI=s{{nE#JbY2H=47-2&i-Yn zOz?1j`o%A)wkaMc-`cOfDr*SKG-oj#+Po{5A~Q7aDpOC(oQ=gVkXMC0hBT5vzKNAH z?}Qf~=g;3DU3)AMWFJftz*(OaPPp5ZlQL+^5Z&SN0akwhu~fdc8+aMwKCt!>x5;Dl zJYP>8b zTHOq|FVSsrtM)iGTFq4V@MwaP4ZvVl`r-c)QVECYpBI9T6zvI#@iT>RM}32(faMH% zlhY5}%p)naLNFacd`HW0OPA-q zclCXv%F4t7D4C(F$>s0gem$2%-tl|nPjFMm(X3>0bc9?^#aFvw86q96_x7#;SUA?2 zJ5r2w!AP}ir5#awnHfCLZj|Rf7_Qorb@$YIzU!9Ro;x@|8@G+R1qU8<3CTg|#3D+3 z(NzV}L=$?ylsoVAdvQ4wwf)mQ`#LSgycqkJ}eWvyQghff5U( z|6&t@u6-XfKl>|SygiEgWromw#l0$}$Q)byz4_wS5RK|!?lXyR#R^Lir?7s$*tIV) z5IyNM?&aN15@uCSV(Us@QcvC6n6tSOmRmh{0bg%7YQd#7!u2D=slXL{T6F>!-ZCkA z2CFmAD6BTB*COSl6EMt|;F98xi4n*CA)yufzadxlzeXqX=hFS1h{|S^jPj$&3hZA; zek}W?H6H^oQ@@;6{YLNm8_CK(y){TS=KP75eueL; z^<~OqX9SwhlmR3?8`_<6F!O)W_Eu4Gb#2#X0s(>t4^Titkl^kX+}$05ySpWUKnRxL z?(Xgd!QEX8_rjroDxmA_@qh1==R4?w9^I$K7**`G*Is+w_nOz7f)840sjUOnoVahC zKO@lmJydT*_9sxUk4apWvP|}rQx%jBFFw>d5K!CRt&{rQN}TtUq$T$>My1hdjA)#S zX)zDdva`;|sSW6;h^g9UI^|@f*RSmyx@Y#2TqBPjCsnshx8aw{togifs7QM$UEs6} zZGU^(X7@US-=k1G?iI}0?@8T>%9_anpC}2c6^f|O^O?~>W=5id_O(L=ePQw7slMLW z_?Uk2>GF4~rUcvP2X|hGp3&0@S!-fJo$tuSS9?tbAhW%0b4Yuh;b${Q>+X)b&5zWj zb-X>T8QhYftU=#oBs=*7&JEAXljZPevNW8^nU7%CJPwJ^Xlz&8sr6Otg478qH@nagc!t2n5Rd^=mup^8$y!R}1GbJOtL?ft z_b5IV&>z3hpJ%cxGnRiabi?`mL?bq2zJwjYtD~uSvB}9@o-El~i7LblR&qDMefZ#( z(zf+(FV-Hb5WH8!XGe#6{AVtSrz`GzQ7F5c`MoVxBEheul%e@KdENGrt^#diu~=iI zw7n>^wfE?H^5lMv4klgcQJg0n>F8-8+aK2k$}b{@%AG$m^A4Wg%%n6ieIZ4GAL2;Ey`C{vCp+=YUGSYzXmTd6f2R@?+5ktdff94$NZ{w;XB5%ZgG(b!bQyX zUf{GOiOX=Oxqf8@yL5MNAuC3P_^pqFcL=Mw4U3>PFh8c;A05F8$#DyryedsHAM&PNx)D*~u0^@g+9AT6Sto||D&Up)#Eh=XJ;kjR* z6KD<|KvZI)r2GbVUGg#dqYsa>Q%-rPO@*7;`xR>HH`-sUVjRqsCB1t1Z*A++uTqCQ zTRfzqa`kOJ`@|rNvlkgZ)Zt!Xq7BJ}i1-Jpej5G(4AVGDAmZB4mGsLUU?{|G&hpHDZG%#2=2ckL?Zq|HJr(skO<+Wi#ymL2{wy=c^Ogs z`s`0daAlF`56H{ljeKMYWL-XgR=l!CEFl!kd_#Lc_zfQ0A%e|R2}j{K!+i53Q&jL^ zMU&x9%gf1Tqq_?mXN=$VPFP_OGRh_c={Ps$-EKGi$#-ngZ~U0cuq>y_uc%+)7ydHJ z&e5FM#5mENz;kcfIkVbdf5A*L8=0O#hmSj?=_S#e8G|jtHyI-$JGMPcvbCrPbDXCO#Vd*ekBikOduElV8cnG_m zQ9c26W}&mRpEqy(qkrxd0fXKgJfF6m3Azx6ttt8Ve7~f79?PnoR>R6C-`MC1u6F{h zU#&~Rw_cK%*LLv~1#!3yFj{=@9(c+LFW^SU(JsI>5jGsJ+y0lA6*&9%TDVn}H)SoT zOp}h)5Y3UWq9<`QZixRp>b>3>m6t9qF!S+|3^8n^?zZMbUa~s8U#_`d_k8|-*x`AX zl+p7N`*csmk+0Ji32v4FSQ`JDE@#}8)hFq5inD7F5A!8`5`A9#6eJ_`fbE;kKyrVN z7QLV4PA;BxC@lo6`t;A4^Xm)rbaThYuTxn;{Z?54!?YAZ{azgE@zb4&LSB4TpvN~1 zR{=;t@iPj;i3#NbI$I3qHG4ImA3fPe96G*bsW!y1kUvL`6?6)*b~;SYtnxXI(IGzG z_Q?C#ty+5$KB)y*-ZG|)O_Q}0m2YQl(ui2_%>)_9-=qF^ahpfp^S`3Y3VbNpC%M1Q z!%k_T>uI{y_^Eq-`oW*m4yAJ%I_${ANX`|hZFPD>0MoTUNrw_RMXimdq{AfFGyi^v z^9C@Zw`q-8cD)opy+DQEeOHt5EC2H`r`OY&$N{5#f_L)_?h%&+Fx7E6ZkDW}b}&*0 z0>u?hA&Y_JQI!yT_LS*0L>wYO9%${c#?j7E%~7;0kvF$(#rgC(AaRs{G4qm{MR`@G zj~MsRYYFY%X7#FFAb?BXHCp6K6S~iCyKD3|HNzbC03l!fP&{}9{EtDGaDWi^!=Q#jbC(7Zih{Af1Ma5;gzN*h9m_}c-U|)~1 ztTsJ9aln!p;$Wp&Dty&*@b6|CjBeJXX3u(&1g*CAW6bNWjg&f9lP=y&5?>xK5Ldh? zi+_LU2|awEsqHhL7_ryANa1KfKlH=;c8-9t>GC{6!L*uXz!g@OL$PehHkHFBuThXG zvd?fjgWdZHEbm|k+tG!Zn2AuKaTMdI?Shr8oiYlwF0H{MC(zEgU;HB$X)ni_@`lP% zNfw)PUf;%kiZ`wb8=ABSp+C1dZA2KZzdd7#W z1)}skK>%l?E0P6@F}GGy*KMUS)s^MRU$7Qj7tZJ5BBHYC9^s`CAJ}hb^M0nE_xaQN z>mwIxabbhdk>5QbRZ<+L0gX_&(qFAkuC{_h@ow!u7Dd>8soJl8lbS~B@=%&OXj`$caJ!P7DvEFSK5d$CI5Kbs! z5ZwzDogY0Tv%BA|2?jpP%#+cJLELD!Fy8iAKp}c-F_higoJd zmf?psVbU33qF2+joz(&tjVr zr^2PpaF%59EJH+Zqkq@k=i9Dr^Ni_AS9GmbyU@1!X=^18N(VHxrPA)sbBl^bF-2aa zhg~?i1qT`~YQc3AofkqTqNKVkaccudjq+0>EyDcyIkZgZrT5ME{zkC;#j#LyjgyFEk&K`+LUTN~ z9Uy@*g*DXSLYv*S-@VZPi9}l(znVum_$eO8fakkkV{DdVkwctwcWRdWRTSt_UGXU` zKQj`xWk*8~4tnlduRj+2v47U0u@pD0U8#Ok0FOqT(Qy6fMv+6bI&yHRJk2)Sb?cMI z`Kzke`3&&|*wI#~+&R*R7NkJGmCCGoK$02!T!~l?irW_85t(4AL3IEi z;iu=SH5CC#3c#L?W6*DG`nh+Y;zPM-rOjYJ-)i$&D5J<{RVARSJ9B}Eo#$S?YP$vI zSM82re2cXS@(A;jVoA8V0?>DS=eQ*`?q|w~SEOKdTNbb=8 zOXl~%{UFjD63Zk#ey95QzgG#)X5gVQz>{0yDIJIdFOqbtYkSAm6Xcf+t5ah#{Sx;x z0}`==7NvI|dhiA0b>eJ`=I$3JS^wxOe@==xnB+o*qT09yW}rtkzSO?8KhE&jueH5* zL|ah0Jh^JI$})Sn{ZK9vJ27E#eo+r9Da5=C05B_SQF6Vlga@~;v?>l7HjUu5vkWbc zi<+_cQj@B=uAcYIl1wa52)R$pTPb33TL&(u$bT8~vKzV-N^6A-S)No19OY%(DUT zwQ(dkcr;{EtB&VM$=^vfP1jX=3705JBdEEmfR+qWYvDM)UCPstTjufBJ$BKr*7sSt zTWUX}?Wu)YDHeSAwQ!cBg&zertDo2HF3za`*Awj4R&5h(g!{X?eAoT%4r3RcZ~-;g^qsvK8uYvA=l(F9+bD2}ON zre-PT z!g1}JI*ZzWsuGq)YBNXmrpbb1iQre0-ODlP&AUnc;OSZ&3s48~clk5v=6QvNX@GJB zVx+b5PfI)JC8oQ3zSro2x5K*1%#UV<&H$^Mmx+=0nHC&IdyQSeEgt6%{_JK9D~Sq} z6*NrIb&(cs`NVIt<5Gw;0;r4u1IUky-Zt4w2I~cQQ6|kq zYnjnd_U>gIfNk35R z4{NdMlqFmd5UC#Dr7upLzw7+p8j-< zZbbZLSxVrNg?Gro>k=|kIE{|We%E~!(Hi3;l_9T7@8Iu=Du!KdF3A76T(=w z4Vl^Cq4p2wLiH}QnDXx@Vt3YxE)QpO2%@&W`7;2N^X%=Kd{=@r8v3r_r$(%<)@^R# z93io3jX!r8n74j%4~TU$TM;8IC3Nud!e-E>`8^B1yS~j-15UA7?ezL8O++^tExo1u8tdXRawFJj?|*k#P@PAN}ZMy6QKJn0K*P?O*EQw3bzq(4?ARWA=CMyJtjlhvN=GYknIM zH4eSHKfF-C)ogX-^Rp$_b=G#ahKSY=-+0mp)aldyqiqV|l`j?zL{H4i%kro{^J0*l z!}IoXL_;N7m6~}p^R^we?|2U6cB2XCD_6YFjw-aul7GD_@_h=gkk#$f-;zZ~-ZFZO zXa_4tedHnjkvCR##;V5T7Ga)Ixo;w8uSvTZpi^4m4LR!7bLa}>{6i`RNn@t;yDak; z)?Ye1Nm0l=$2?}22dbz2&INYkHsM9gh2|A1Igqtdx9ReDAp1cLWXPOKx@9e< zg!iJ-|D5R7B@5jM31@06fs71Q1`^r;TBQlTwqcnW+#GY3=&gf$*B!;Abn5U8&XGc( z4r^GSU6X6`7QXB;7>V)W$?xd4Ek1vewY#TBC@Z-?qb1)IL16z`LhFc8O7MxTb&X_j1SW>53e0_6N(MAUWZvO$-o3X7#-$WUIG!!r%{jFPd zxfHKEnj#cY0#dSi+{D9$G}G&LSaXSbq)iIa?OCUFiyhDGXQD51Km^$173&>Q=1}I@ z-If6pT&#B8yz9O}?1chS&W79Sphne+h>_ji3d~K|6-$5nxx6rdBSW`tpVf4gvHk*l zFeNNy6HM0DKoY^C{A;B0x}suU#^1uH!8M~eLQ&DrxrQznB0@f9zng5Sl+oKu(Ws__ zbYWOk;FQPN;qR1hMIkbpF|a(=vY2oTRw(pS-Awy0kq)02v$@e!l{rd&M&_mdvxnK) z>M>{{GYVUqLj=kb-)B;GMc ziA3pn=4kID=i9G{%G#h(YYttvmU6vEW_p^6Iy3-f)d$d-C-K=#mLSF_;7!(JI>dcL zRkW4MFZnr(sGDpU)w0=TXZ;pOTJ6y~QctL`nwNxInNp^#hvi+m@7OUO@dhRUg~~nO zu8!W*ek?b?Ir*}8++eEm{S$3p0{r;4i)z;4)7qe3xDDqzKPmM9-qHTrM}@dyXx+~i zzd^29)bbJ;X=epe=9WTcY3`GEWn$6`UD$38c1|6BQR^|k4npgT@giIY$@%lb4_Xyv zqp{u>%A%0mCDicjz9|@g(RzC%9i!z!MN5PCxtwcuO;tkFhEa(5sPHIuQK}9pLS;Xt z-aB^4DNRv5;JH<(`F?)nhX!<}!XPM6bl9anKd>36qATl1$R4~IcA-_kwLy{jX@oHR z?pWM5S*i^PVI4AXmeWAXTq(6=W~@bAn91=uyA#5cQSwEg>K(^n3f|7AK#Y4It9xxCDaW{R4)143=vXiH8DSjs7L{DP9t@=GH z^iL;#OXR=)ijPh*YaFKC3jlui9|y$;AhL3=7Q^_&L|>zFe*e3SqJ$^u*B1*a>JXW~ zUDRQ;|D#rU;(7H@p~Y}KUr|t9{R1TM(OBpd?z7zLaV({xQeCC-8Xhwyjrd3yh90aG zQ3-cNThSfr9YW%5rE&HXXDSOE{A{D~ipBi~NPNGrIPBx(`aX(9aWC~w1ai7n)7Z!0 zAaLq2|JQ%c=>AzpA)|_}EagAH{Qb?dBV1}hA?s*9!H^3=@gr`W-(t9MY5PdusAjGi zq_UXYY4kKN1@N{)^8yX&_;-MY5k_dTY)f)6} z(#fhP8ci?EcB#4Pi$Pn}qIB6@HY~`!_4dazNKD%fDiSAEH47!0WBO(Ui8qw>| zlVuO{JVTdwt8Gw^rx^mSf+`$V8rl7B6$nSO2DZMV>sFfx*IAC5fS0*=4Li*~)xHU; z>lB%EYGkWg6dj4!@|m_aJ=zrEg{_;K!hYI2J~GFx6q;Wxk?-z{Rc+q!wnvPTA+2&y z&(y8UizKM;L51~(8FX7KLwdNd33$`XSK~+WgDs6;#_!@^*4M68#BumImFbo|?dQQH zp%E=kskNs~DUmwrN+s${9_q=Oy|aqcC$e;Vs10N@u6K;!MPW}T29upk_IZb~8+*Tj zQNi0e-^rYh1wYyfOK&XCA6n7m$U2bzxi4brQ>*x3qv3oudAjoiSRer-2^1l#att!| z%r!f!5Z4J!982R?Qq8!!Np@^r!Z7eVtzb4Pv6U zv*U=0`nR|337*%w)0L@-}hq}G3sexzKVcFRbvnY@61qUlJYabC$PWE4y zEcqXy-&%ngwsKNh6w0RQ95A+Vhlwv82H!u#KuvVqW_s4 zA-o)L(mE;`7FC23f?@Wj&KT}<>*0SD6xHI^S=8R19{7kdSs+hDNlAIma}QUpN$oQm z67wF=O!&H4j$Ol;dQcI`=#RaZ^fI49{5H;jy8CJnf$kC-q!0LFXvrB&h$yA#<__$|ot zHt&*NmR->(e@&Y!8(Err7mFf*LbrnKa+UBK18Zu7S5rMo^qP+aj_+a2hI38{sReWO zC>7LJw))n=4U9Y;@r6i`rpf{kdPoIyGCxZJpNr;fY>Zfvi6+ALrfEc1-8}#c8k(&8 z)lsFc3{W^wEBW9eyYlw5<6Uau*GwU_fBLyDQl<3cR9svM_2PWV4G(w-zm(9X)ntW= z87JrK>$J&2CRjf6sk9oSFa&@3zW+3rB znU`gLLc3I@v1L?QJfRP~l$9D@>+3it?5jNlE`6*vw7(D>sA<22Y~A*M8x}x)UDd6qm#^-r#Vhmd9~Zb!iW2lI#vH0Z*)T7 zGiKN~k|}Dc^phz4bMp#rtD4XI!j$^PqGH*kNm^k_c~Vz$I!{Y7S}nep_eEJ37yHH> zuHGzL*W8{gPa(lBi1*f`AEg5ML#4MH&-;ne?wE1{JtTq@;0A)C0dtFNW`ZqHJNa_; zu+?+`DE*C9bSK-SlVuOHz$Zf5KqlRYTz5&U<$Knr7X;=+mPG{y*=aEex|E+4ps|=m9J- zkc1EyrDyaXF0FzW9p9L)7CpU%s@4K%y+9tckoMZ-RdL;X{b1g+T0(rC+QCv+^@I#1 z4^dnpW{u;E-IuD;r&<&yqLOyVSZABzWhJpklG_y4miwuijQX&bkdHU(0Skuy=K;v4 z;(Y6*D4k+ubL5Is>S_Gno+T{nh$~L5rUPGJU_Y!NJXS`kNokU_)GVRO?gb+>=VvC0 zmvGBDkRTwszq*?~f2+v~fTA%G`cDf32+~ohRoDnE%6(Gwf3k84Z_C z6_3kW!o_Mq$<{Eox(#&vz3@lWotxvllB(Gf%-0)@SK_jUiIOYWSgvkA)8J;!rst8B z3)7cyYTkZx=Rp<41{z4Op79k!mffUW=wV%4dFAx?Y#DtHbfv^Vm?7y)@~346s7eqy zKnW9!%cW6-?>sJ0;-01@+7^NPc3Fk223rZ3*y~J2N=Tt~>-LK@@Eg%tx%h|R+R@LO zHR00MP$POG#(L)|3m12+I11dq*77|U{R-YF9Pd0MBdoNwxEryk;w3W6R>J^VW#KDE zWsxfkWg!TS@i>VnKH$&;_Ot*rX*|10Xn+0AU5l1YrU@s}DqM(mH!cfQM zvIkRgM;1=kZ`dryWjwfesZ;N+X;1eblJ71_;C~8@vJXJJ!VIM%+B>`dCaio*+i^Jl}B^;ZX#+Gnl4{Y|pzm3f~9w@SO5riVRpG7<|U zr{qkqA0>Kbx)$eWk7gZA8dGrU8))>xamt+sQpb1i-%n|y!7;KPuouQfxxPN9ZUm|PdO(&^6{m=mh__<_ zDL;MG7zH?zT zNl#blam(>uVQ~}Mtow%kevq`q4Cz54zN{~yoj!uvQFjQ!y+VR&k zzwr8R$vN`l2{h9E)Zn(1y4h_FPkJYkj?1#mGa5kl?gy{b>T*G7UFT*AD?hdx_`Dwy z<;pt+19WRrdv5q$Olx@-EA9XMCL^t;^~_Vv=dm^p@J2=FCfsyxm9Y&H&Pb*4T~E-B zZ~RS7ik&lO%Zk*rSIdy<;+puF)#N!w0uPgvS6idv_c{{$Wb$tB$hOf5BxNZ@6P3zY zC>B4c)^tO;a(1I6WHX|X7~yPg~Rsx?LV^Di-rF#8EpoYc{55yc>hJ9;k^k0u^&OP z{|8Y4**5qF?!+Jc$8GNdiUbeDD*T^P;>UkX9skA+g7p5b&VSU6{rk_h>Bg>qQ@HT; z*^2GosbT-`KZ(*0uxS44Za%a9k3z>LX~e^Q`OtmKnYVfcoO#&X%sbI))ta6T=#PTN zjz(g@9U^&77j|87@kmEDx|*h|O~s8%;6|6Z{|})|a8CD$$jCbrPC`uQ1fXzH9xyyQ z%x$g$UlI9g@Z;IAFAptC|zL}H;mbOc1i z0BSLqKtfWIdX7Kbo>t`JM|cA1Yfvml5*!N#JU+juTN;I91iDR*WTf2o?*s%^n*K8S z{~?m3Rd%yl%}Z9~7We5#ov5TFk_fX=FQm?@#{Zt3kU4qcM3*Cl-+~>E&~!A68(3Lo zgABWe59^YfrbypStaGNtbQnp7Tb)X1%`5w5O&veo$K|Zw8`gYA0{LHI($Uf36A=8) z%9{9wgnkECCk>7XU9r6V=WPq8o5!~t{I8w{PIx_>&qYSND=GHR*Sa;*J7SIZ-vz8u zT8=HtC9rD;n6RDsbH|*3jJkB`Xlc_fw)@poR6Z3k8#X_ruCF?8N2LdKeb02)+#ZNA z8`)#(XqZq4a?A!H{D;NTJq0TBl#Td!>vyHK3KH)3o{4RL1#R_)|EJx=P}Lq=R@pjybvRc>1oVRx z%Er+|lJZ3NgkeJ)|C&%+j9ZPhhiz6Zr=d@){xk28Zz*~oV-%oTH74byb%J|uwxk<;-DPR*|hdvxOY{GN;mSwNCYheB_@trQdj`N!m*C=(JA z-~bvo9HZIoe|of8t|!jP$q5OQ{!bR~gTYGD2s1F!VkA&7kE0Ie^EFUjSluWf_M*fE z=G495&-Q@c?|;ro#64Ivxv9TDk;~d;V zXUn@OS|0GEw7oI?YMbr;8KvMG?I~dKxndSF57er2`0k|4d;f6chf47I@BluEtZN)$ z$o#6($CZI=KKVtUACVv0HD?LYcL;kKrNc~MDFP=Tz4Hsfir23*jC>`7W~Y|i%Qp-` z=@TRtz+6fc$rfTA$}|_H2~D^d{466;)Nw9o*^Tibc@sT$l^m1*O- zb8Sm;t}n#x#VHX3A0yOsbOsZd^qXOqBdF-;R|(yzTy{Ug!@JDcefH)^U+C)UYG`Y# z7b%hbg`S1n?H31g+7-{({;JwT0v<*1Paw|}DsDd&8^W~!4@2Z)h-K4x4PZdzuz1!Y3wpDkLUKu zFBSLim+Q&>L@${}#wFjN5ptm58)wZGtl{M$&_$7zEqlkwjFG_?Ms_@NAs^XgtS&X& zs=?T*Ha~tJ{@IW>ob79~TN7)*I=$!VqNv3uK@UoVb^)QUE$^Z<-3Y4#&&a2zqd2Vr zhf&I@b-HcBS-;*gq!m8?NnLBBLzl^QZ04!d{@oIR*hhlEaLZ;jCFglEO8c%OdfL;& z4&^(F`VbxC=J_qA{j#Rw=NX+yjar-Cm~w-*@C=mNce%_pqWlI4#P)`1;-6gcX+UK- z6wDlQ|v@kF01-3A|YfvfV~IoS>CAJbZcd%JbIHKr`Y@I<;qcP#zbmU_Qw zI%$6aG%xl?=q@}XJL0jA|7Z@g$a}(4?PvF)tEu`m5{gb+UF;&iX~&)QOOdhkiB|AR zyUSeuM+`aA3To-aEY)vq{vsnu6(;g>%pugcc=<(C79F)Q7WVQCe;mU$LU;>|qdVO; zJQHet9spWr>qDo&xn3^0Yx20dNW(O&O^gLM^G&ftx`A|yiw|^c(=+7yKHN}j3p01^ z8sDYQ^A2it9la{F^C0!JDpli3p!by6c;^NJ<%c}~f}@YmXyt^YQ*2WmxUW$$FM8wR zj%e`SI3FGFXI;i_O%P8x$y#(_BN_NWeY{z~aZ7Ogt3rFA_I+E(bnIs=#>WsIkg>#X zD;u1V{`RrB7$p;9RXXbXw!5R58vo9ow)jhp!obIu@}8Dz25Q4OH}bkIlmvNMkjvpa z8)ORq7UHxOB}pG@t)#f4OI-R=rsnDz$LX@sRn0@)rlSo=JEWV)eu5<@KR?7UV&I~` znL57Ir!ZY|H0zuO(*8t-ayjyGXly9_59W}`9e)7n_P!?(M`^d1$o1qG>X#239u3T7Ko^L_~>bN0s z^JhUGT;Y%7$!rdrlE?D?oYf-Gxu1vgVad>1J&~Wc*&RVys0d)JCv0J1x!Q;j2!Nn& z6M}P#n?ts)nH2o@F%!?Uj@$@pHX@pI5_D(87>;Q>yG9*s{p;enj01aOR@mv7m}xw~ z80#7B$p~DcKN@~fboxac+NmW7Gg3Q2(Dnj4(ep0u?#wW`o}Z4L{Kw`6xs1{#QYA_0 zycT0RymcSzY|jLZf`VEg;TYP?5yHuTj%LLy0-OwPzu)mm19>ACI&`HHT}P?;{E{zE zU++1NLuR3N=}JZWz>=F|p7R860)~LH=%Xqo8XCfgr7hVTH<|}GgvWWopYqGo>_ep9 zBD#F?!X%QCBWXUnIc;w}_k{!>b%N}#2CDfD4J&&#w3Q^bJq>u=Uwet1qxA@+ELFRp zc_HgYIdXIPj~K>Dqw-MvddXzlD5C1XVs1v1|?w&XOYQ@Odq`*H*0 zv5heD?RCG?&21vh&Zzz8SV{r@sbSZ21I~5OHD3YTAN%P%%H94=_;!4Wg1mgTN?F#I!yWK~%#9n+fwhJf zCXAR9!0%mNs{`sWnADj8SI-Zv%Oh z1?PhU+_>E&6j7>Fw;QBBr#2KpCRY-!AR?K-62xQestuV0^b9R|k58PaU_aO64bxTV zf%^4vp~c#&1%9T#$R^cM9G_MhQt;*-EynQ3Fx^MqC(EzCh`om@Ag*(({gP)l7~j{x zjF%MxY28`!jTXvQ%39Ku;I-8>N@)UD;edx0UT>W>nSh-VIgHo4s)gR6;H_eH7ThG3$sj-yQkv_9UQCC74+Jq=mAi6yr|1iffxo03h{zbn zgH79Wj1u^14W4o4aWGw)Q$^duHQt`q^r^D~I*Tp| z6mX}!p{!^T*AfTX?e1&Op#L+=#o!xKrSeu*e#7T?Rh{>Q+6(fgr!l%zuS(cBiER98 z7d!3(PT@!FFCU?9E2I&qt~OJPBa4Tx^GzX2vs9NC5pq=A?$I(q61g!ly9!4M={D%U)0lTWqX)0$yn@Mi66SH-K^e>lVEr@ z(f+DxG_G>$Ln5N_+0#&Lb?DbVGau>bZDEQ$+3LrE(o58qH21loZ`9R+z&V5 zmG2hZlt5n!bLiy;rr)Y^T}Xq%s(QdKl)Ar zh)R}h2M(*9k08`-2~RH7TUXMDeruQ*-a8CvS0~Lv`vWDj843_|eU-RK+G7NoD2 z-MLaSzIsNak@c{dw$!|D<*RHaamM^8;^+19o%C;Rf0#(e>8Z>6kk>fhUN!Y_={SEA zX#Yb7I0ZO%t%)J9ZM_#;UE^LFYh5|HQ|O$ls~eI!e-nESJKdA_^6>KTxH(yc3K>4) zkDWG>;b*rD7x4pcMx4a1P#S^kc#)gOWTj7}&V1DZLMz5aQ&%}YL5|&eigPor2h0kV z-Lpv}c~763)Qzi=?amLC85~yBnT5_$m$fwulk%^DKOr<73QjZrr@(7|VdIMxsrBO) z2q`J47csC(xpjqmBF%BGRI_U-{U2f|WD#VIjJL^#+Qmt01$urPJRdMR;CB5s^`#Je zXbqjN`jU(sMXs&ks$rwuq2B2&+~{O06EyUnL>>tmUB9Al zLw||99jRw+9E@X@jmXn+CwrdWHBn4)_ta=sbL#H=*jlsd3-+VRxS;~Yz!H@+d5y`c z8u-GH?9xJLjQj|`h8%2sF;#pVu&t?mEI_2Vm15Xj`PMBJK>OI)Wl=X2w&1WpA#cB3 z(}vot|2h6*$%o2gx%VfGpHP8mW41>R;WG3~8kQBPPddl$errTEG7a`hdbfYejn~@I z^Hik>bj87@k%#1#jWsawUB|1({Cw)_sOYYAtYrY^Oo0-1SYx1g(<B$4{NQT$ zN07JkyWTqZ(Y1V|M*h@PX__FCgzp;*s3k0Y_DABK^Do&Ozckjyx|dGz;W9vlIXmt& zYXMMo(Nfsd8(8Unyy>G;9NBIC#o#_*y${4#l+Ci`Hvo8CFZ!wO_gOka<)YcoPd6Kd?}LNe zs!V&^I2O5AEN^Ho?MQhDn|M^w3o5i3^L_t&R2W~UHBEmvQ2l{ObaJpFyL*BWd#51$!b zgk&eP01{R+@0&!Zh6Tj^>mBrEE_74gtL z7()|r8;H&?u_Ir@D}NhFNWwk7U$m?LO&>L$-DiukyA~RELAp0GCw&b$T}j#ct?6M99)wJ7h)EmtXN(7XJG2aBT1NXK^dna1 zIloej{;2qZVHa1^`UH`Dn(VL=&6~*Q?`-GIaj%Vq(nl(Z`+;6TF*)i2?Cl+iQ^$Jm zk_CXf<$BIOet6~Azz0!eACT!{)KPm+O9|CE6A0iY1J81{Omb#hhu!Z zc%03)%r?z9#=|kF{>{SUt5BoKj0=|4evc#nh1H8!q^$9Meas|?_ z+TTkHWjh%r($PA#mmS9aS=Ja{8oC8!x-qA4eG3M#xV7+G-tNsyqrWeab_UDN!Jw(f z8v5i`{h?AAID3=ggqUM*#7q5fyw=@Fdn#K)ycVdO!ArC_co_S(A=JI9JkMsQonYI_ z*3 zW$**89j2K@M06vT(nMT}+YhK|;)9wR$#P@;8i zx88c)IroC;Lidj-G$$XD%?5QXy{|n^lqJn*JbZ|Ws^9S7oIYs$^@d{o5~cK( ziIIK)kRfC1D!3j>-`*(kxm#?4%YXnsaVc1Yf4TX?fYdIL7ea_yVM}e#{)-AScaCPk)1+9*1JI{F)Gk z!j${cnSnc>*U6u-e*f;|Ox5kNsT#2OK`HDC-6=dRv^^3ejKwo!y9eVtR`gPw?7yvD zrgoCg$!j_KNLSTWpc@|JXmXbaiu1Y9#2_o)H(szVWy&iZ4Xhc#5PBz>AQEiXCYZuLqHj=@F7?l?{q!?`zXK5wirH(|M;K?cxmq`!~ zM8(DXz?S&*r;n#%dmX|;Ev5YA$oeaJDSB~IBQ338a6F89t>q~)(A$ul(+(pgWoYr+ z{-kr+PlK+vW;$uV7mP|rvD?Qsb^Aw>i-YYN6E@!)YjFuUvR0QukIQDMV zy&)s5^m@&uD1{rRLGdcaS=B)2=Rno7qC{+FT<*h?%%AP-p+jmxy*0#ufiFpgG(zJf zit&oi>qylLjs>~%a;}NCP9Krmqlz-SV@dqKvZ_sQoi`&$&`OwjRP9~}NKbFpqVo#& zL@p4$qi4&QZBE>Lz$B$TzfGzmcAo<8q#j+owWrFrz@cbNOM{|cckWA~6S10hW4j+r zemyxcfCu)>d3nGkrsX-xpbkL5XidoX2IN)<6LLmtxF6>vOJK_Snxv#8qi!u#a+C4I z%v^~&ZL9m?G>ui#KMUnu85lq~v!Fksmqa}Y+G;|2fV`XFC+~c;a}71ZL%V(+lMC9& zCDnEV5qY`D+*OL23r#);ni8FMJo)1;_wV#&ZBHXUf_}N(H(-$cBBx(f!oKdjKa2sm z&CFoD9_xfzH5)L)+skrO^W7%gDXXi3zPBf`8fn+ZP)eck&c~OriwqiBadB}yx>gx| za8D|}XV`yEK9c?lCwt#(EEc45VZ|X+FZ^Q34k2(=i6@i$(D6y@B?VR(Y1Yxm8mjkN zv!K!3LJmSr*eksblpOq1ftlF=mo@{~=pIOsqDI7d!xVma^M<+g4i}j$@J^Uw$LZgo z6PC&U#oSv)wY9ZvqnpwKZIQOLK+(2X3lw*4af-XUTd)QRUaWX=cemg!!7Vrhhv30o z1A)WyjqiQ--tYNyex848tT7^U&AFyr_az|YcCGbH;ItQHZS9e4NO|?Bo0ld);5GXg z^V0gixHo(5*|2wCZDGFP$<5IUztI8he#kaue@MTehx`3LUru!zH~ks$^4*=E)T77J z|5PQhP9kgm=S3BKrF6xh)8KL{wk?t&{v!^NOdL87J0cEnVi^P~14(t^%9C^d}JqOCe z88>uiugtUz>if-Lp$dM~hd5ik z0Qo^JEiF4dABy&C^X?F2n4XM-h882>anIpB1oWu>Sf&!q1C5cFC58_#qCLC3iP+Uz z1?MOZ18X)c)xm`I;oyC%?YUQpDL$7|rNA!^M7|=VEg7oD?RIg_;ApF7Hll#g-_99$ zqUomCGC4Ek4FRuBg2Gdul1N;Hm|wH-g%7IN*E`$t5Dr%;um1X$7@QIzzquRnn)?T| z;jkJbpVPX#Pon`9%MaKG;F1+ie%99S9A4MmAn716+f0G7?vNY)3Iu_#>mt@8pBtZX zV^YFu%@N(ly}pd zYD`aPD_gC$x@g5=bKDs(TAcgJ%KZYayEKHKBTckq@M*|sZQ@d|&GNVDzStMhdX-w; zZ^k|H0Xi++L7HEi@w;xmL-0ahHa2pHP%z3-gRFV_WKT~HIW%jOQOcFYVISE@ryAMk zOZL3CVpVv>EZ>%Rxf|zY_!)(J)GW#-!P-^(Ozr!=6U56gt1#XZbWlB(Bvi9ge%sl8bsqQ^d(7Wc#b zLagM==hZnLVu_#3Cj%aQBu_AS$)o!V{MMhd6|MKw`z5^(p6s5Z4CKZUkJ>6dfZB5lCwWyu3tlmE9HKVECzrf>N*{@zh~lv=`=FY-{oE`Kn1?IjS-rEtY4Befi>elxh9uiC1!vlZ5(f54R7Qidsi2zT;kj zi(~1}xXc~f>V5ZmRaaG0aJ(p#l7s!f22`L#bg) zLwv@?k_QRHReY-ORI=ez%RCRYHJTNNGl*SC;Zb@%xK)6SF~p=pi79XiH|MI_-UzKr zE%ADn26(Ss?OGHRt^o{nan~5|t_thr#3O9TzVTis8g=n`gWc{IZ@xc6NQ{emVV1kvW_HT4sdryfE-3um=s1I}R!U@KzJv ziyPNkN}}2PtoYR%!DwB*^d!Y$HfbFV0W^ZQ^A4)qNy_<^Rg242wvV2QG)yEVeiHZm z=!q9PY{VMaYP&ka9u@h)KGY$`7}WS#h%@zti}u={sj3z~pA-j@z4!Jeyog+liegVC zzHTRFLdu>V!6zN-&m%l$B4-|Kp@p26{0squrp3cT(`?JQhvH1bWecj_{Gji=X)s?k zX(|!SUL~CgnKrA6`)o-g=eKyI1QNOP9UXK$(sdv=Z{}fDQ(yO=98Ig31l~~ah_=SVG6+|=1 z;`Tr?4FBJX<9DGKVFUKzRR|2AaUOSbd zDHmc5ZS-iVxYx#GzJ+|No;f>L7vpapF9P?ylKGyCS)jc(k&KLt`mCMu!L^CfGWnzI!D70pMlR2GZ82X6pH6g||S@@kih{-y`JI-cRf{L`sa*J@s;SaMn znnQpavanR0!FNKidL8BMtZ&B(tPI-zc!ZP5xhWz~AsPSxN26G0$%=P}u@uU!6r#gDLOO zBKG6@4}$hGo&pXjMpwUZW_NZLy}+}d`slDww`8wD+WN*>ChpAXmlI85__+{wKtj-l zy*fAu&umHwT({F9=b2e=>C)9%hS8+?ggqX4j(GJEKoIZFEc#yL`(=iDQ+}XJ$rFAr zHO_j9q<&jn22dQ|xnGIwW%gQ`9_bggruWz#uTgriiUU0SmeS8oQAq?+H87$@^1G+? z?|;iN8-h>%z>!Tp^Ga&kp-bfAN)1gvl)2x#F`H_>6SBE*u%bnM4EDV~wjWf1r_a+G zYQyz}m?I8ZXk^fU2XTPudbeyv)xEwm7rZztHC$I zVLa=s`2KxtJI7MaZx)hYc)VKW4)wo)g-|Qah3}aS!RBh54zQwPc%%aGD)Mw-+3NHt(Y!d0ATxhNq^Np0;nr?V+1upV1?aE@5;S^{ zlid+?dvx>M#fMF`EsT1;_d;2* zs_B2Nepw|Y-CS)P01ka|t}?MkhcnU{tHQvFjXpv?lyApj625$}s^>!5Tm&c6`xx=l zm=zkbKf^dMjX{A=U+w@XVqT`%l)}G&%qkpyjJ|zAkZ^Jrl5ddWm8#u^WlkjVv+k+H z?>$S)MLkrRZ@kESNH`wt_gZt~xTf?nRepgPx!P)=gurH4WRUo~GvlK9wycl^!g-!% zi5DkG&KTceZ4$Tj0`d5wvk?u2;p1TpkTdSf{Nj@$knX~#nLo+N!Ue8;4`~Vm@}LJ> zz}BXl+$WIuxF)dNs|{_*Xh2h~FLzrKSy0PQ6+DPlP%<}Qth}q4IZ~Zl5m8PU7o$)3 zp;7xy0tp%axyW{U8Pn>Lsb0%&vP+|mHulVA$kvkG%Nr$#L=O=Aq4L)}h7d;Crr^^^ z#XjB^v_*~WNgm&4p&@RDX#%tLX9;R7&bpMtpizt|!D9XT0DM(4a-hy0bwR$yxVc1n zE)qOgYdkhiWJ}#+ky$(djh+w}Ox7M=`=JV!s8dA*a5di8n{iav6*~he&hCcHjGD#9 zMywQWi8PvPgA?-AimdHf%{5c+fBm%Rw=JJklQC}NXHMa zu)NMU3kwU!;=O5NMxiaHxPlB8X1!Zx1k>6LN1Y7Fp6!!QY-vpre-yV?;y8xy5|7$r z$hsPN3=@aUaP26*OF2;Lmrc|+2LA}(tdX85A*4h4;UXBcYCct zO5Ub9F=PQeY?L*`hOnpEpnU9Kw&Hj#Yg-je8Ej|(b+qdm?Byi6P7k6ndToDJh*zJ? zTJD^O!$wP2uaK4#LqDP69~3FT@IVfhLtn%ZpNcO&Vos zy@L*u@LZ4>SD0__qgSDbYuIM}5Qph5{)|F$yR*zJB-Jb0@eMa;*JBjOg3;!f}n8Wi)WyWc?V-NjE)zV<5uzGTD~jUWL1@!XBgKw(6_2!XMx3Qlf~O zCO1n%d?A2iRBBrLiZiE&+~c;S@7lxWqR7cPg6a#)ubAl77%?1~*$sobuKw{QLumy4;GpPuNihPYQhZ7bP91F8f942jb+GbrDowIl@L*Y?lwQ@DQ_~g}M-2 z%#C9bh*T`xfhq?Jxwp?5nQ}sONuvx+?=kq`i018i+JGR8?x(joS^2)>{pGv!Y?Gljt;oGI(rQo7Ax zF*E=_R}A_1!+wJBe=&v1hj|``{POzvTE=>ei;KvA9)Z0XSSfM80c%sw4LN3X=AzEl zog)%#BMX*zsZzkV<_vBbZwsxqcE_nnosGz6OplU1ij0iWuH;!x+HvN7V#ksF#varQ zpWx(DIlI`P;q47D4q;!p!C^5&)n6deMYk8crkO|!tOcCiU(lha@ln}-N7$c3ILiA* zrZRSCXGx3uEKC(L{B?ibbzGv>f`$7YFoe`cnWo{rOb3KE=6kG+1S2J8hMVB>&6*`U z^Rk6HdDc(=ZP`cvv1jZTCl4}UYtIy?5h=MuBNb(dPQll@c)E&lm}=N}Xt{;L<2u<2j4$G4FV85#KjYap1(K`k zC*Xx>sF5IhXGt0_TRrqND&k1sDhnC9qc=HLp8>WKBwFo#L+`b+?+}o(T~`Nu z%+~nPYNtUrkP62rtkcQ(l;<|(1t;(0_lCYMF4tGfFy}h&{+HlZg(0%P~3s0 zmpVBYkfqYu$zXwDkuf0yR6wEc@yVDmbiIk2#7-ZUM2IQz+VXsIYQOKbO+#c+PW`ck z)YBL{bwpz;8Re;m4)Xi!lnYHEcAVzP9w>B}-z#T10=r6@{>G%$`qm%+BQWKMt8+lG zl*`VA$*B@12~Cc8&pciF;>LR19&hE{VFZ6NVl8T1H5SRvkky=DKd-AeOo_j==#|EM zA0aoiW4>`2m1lGE%;Iz5YW~qK_v!{|JbW(7lCZ}~#e?B0BW=)oBJ2)PitFLxMVHpu zDnq8+J{v{_!+^nE%vLlN2c=7NkR>=RTy?Rv4g*7N1(Yutp`TzoX6XyBQdM>S_Tl{P z-7?GF)&LeT?>=IbZS<`HTk-=9F?4e-t++3J%w@t>@lK0e(5I4Y#J_@R-F^&GRQ&BM_abZpU87v=nBR*#em09 zH%O1*`)!v-jtR;#Ds4X}89T(evN>xMIf>ScWfT>yr3zoGl^C86$?pnVyvaRF`!LY? za=BvGdlm_jy3yq_h-O8z4L3woC_vfRDKR*#kipG zbhZ-G#n0X@y&S*Vi;ZbN4rSZ1HO1H?C)x=`1ukf)E{kFf=)Y}#Frg}BCUjY7+$ypor2cD#tW{Du5pup}< zB-%e_E-xKc{)NGZZ_UoS26NoLYqsqhc|yYrlwE17K6AZSz|R;d%U4RP_9XiG@-fO1 z&J9+`fZleWmOHPCrr>0OIACw_cO2B>E%m_LlU49{R**B?5ULR)Dki0+l{Z{*9r!!! z9$EE-=hh3(bGx93<7eA{NEVcWkUH~hf%gLhHfH$M^apn;c?CifmQ(C*g^s&;3c_Ol z-30!p!|yr0aPwYlhZ>WEtP;PzrW z0;_J`47YIRN7SYn@o==7PPJ*n7MxG5AWS~e6w`Kfj+PnR`_lBTrc!>qby0Q%>MZpt zk*@XZ-36DxKw{HM(dajOtIejs($dRk3&o=$2jlu^72PcRV;0L~itQ4`IFp>PvqOLJ zI_FS?sK6M-nEmd7g_9>}sqD+Ic`KdzxMuVDB)ygF_LpS%3>M;SD83%Wmi%a1#0+M+ z(_#xT4P$v9ID(~+lf7i{0+V1)H^)MKrX6Q;zXO$DMu#ASse^rj(J=GymG!#(9`goC zQf@#}&+*lGV2Z0hhnZOcvhU7*EY8Ae)8PYyXYjYoG_C^9;$cjtNlWr7R-^^MscRE) zGGi`IHg`{aeMaXBY@A7O0_8u)k`WV|K&gNH6}fEAfL*pr^Ji9PzMPWauof(&n}Q_52TNYNSe{Ur@@;pt z1xHkZm5Ehbj4`DbU{Q+BNFw4=s?LXEAbl>~}F|6?f^hfeY4wHn~GjsO0kJA^7GUPkz^FV{m-$j#? z$m;*8zX5P|_b4Fn$WcVsf6L@AK6b+gG9}}Ie}Cff%1DUjUxq{ff4pNh7CTn;kJgyL)kvi>RpR zSf#N^}=@-9jTHhLzJkUJIM(AIF5uhAbYHJ-#rb9)mm2C@&Q9 z!uoKs0FO|Q`)Q8i8-J|I@_*&lUH3ii)TfEZ?3z73JVgfKwuU{L;igYbO(_f< zPs(yV#vgY*$HT*Wj3B*y=gu%z{?NW71bS39+osEr@H}K6(U3^( z)nV(x!DDO{tW>Y@2MWXWw}SV}R?yY+{94u|nXJ}(^2c9)*k>DM_P*zTOlK;56fk=6 z$)YG^$H&K8&JNwP{;O+VD}N+jlyYRkoo~Kjo#VZC{Fvc+d6V%%Tn{wR(;{$}rvLoh zx`CMPO9`M8p^gglJ>F)hntYhA|Er~Ez2Rspl4mu%oSTPI<@0?@uNy!6IZKm(KwxOo zA>Wr2&WB?L3cG{ugPHX3GJ{W7Ev$j-01w}4z6W6Cjw-!6GjR9q+S=OoQUMcZN_c*+ z_||Y*N!y;_2=A@V>FKGk`;q5kJN{9C?Y=idRA^X#gB(;nMQY#WfAendnBoGgMh)nJ z5IwJtZyeMl96Cf?obJ94+^J?6c@G;2k_)Ekbsgrr2p1kxP=D(|22Ayl2`5ZdD9jxd zaJ*yju1!csU%<~IFm8b2@!n_LlxjS}d){GL zj+~MFoW8wdysy(5ukRoBmA~H;V4RljFKz|4r=GhwDUm6eVQyd~)=9^X7sb??&2O$zZ3$0h7A^EsvFEV@=dy!No_pGQN7b^&~zD z#QG7$^rz)piHqHD8rx!i$h@PIZRLmc940eG%~gY&iFZ?CW@CcmqeD`Z8XE&S?p5jO z)ZYf~9Kw)Uv8iot{;EtHehBkdp0gcP3hn*o5=y1-PEOFf=8T4O)Dx(zwpyTMk!>9= zaIawkWzL|V112t6tHp6Kt~==x*9MCk`LZsPw;O&~%bUs1_)&NKMouI*rxBQLx3`L= zTt7_=W~NqBUQjy;8E;gHXAc&fw8t>9tnE=JRyB`PJIx&ZuK$=(sqZQ0XSQ+clD+|R zk*IW3#`eS;6@l>T!;A#oEm=)3O2)BM~&@Rz4nRn--)p`c=G{q zU@~s&Zp&oVv9+ZB03YmljuM_zbXE|s)8Qo)DuiN+Y&-ozDdEut za^c6kvLLjnhIp_Xg{Sy8=lj&_yZPb?C5h*8h3W|?IeW&4RG+Q)jaE))jLaXUuLjQu znj>ZKT2=HVf}A__`)TVJ`%2*98_iK?&ujLi>TBZbrL4GyOe{s-1YHSXm3e%GN8F() z%TYvMU@P8Zc-?JCk%M;d9|J=AjH-SwFsHGU44)syFGlyl6$cCLAbIV7WNBM-ygEuX z+5C3$F|kRB=$=QU(`Me^$3#a9Q~ybg?#!1ZIS==SrU*uUX3f_Bd-21nlptakia`Dt z92_iUfOq1>&>C{@iB`cly?fa8JV87XLf6>xLbp!{Q+gdHwI`2r#%u1J$Wb0-61u3* z@`7%dm=fTXP{Llt)#DOMfmi}t6DQq03(N4W5aH?auRUeujdYsLuJ|}e?6PFP@RyK{ zVJUJj2niSw4gZv`dUxT&(tyOfpyL&93WU&% z3ES$x1FM&(h`qZu#_;gzc=^ecdMJ_W96JBShOSBcePqEs*UN%=zq{t}{K;005lje8&Fkg~UYN~ROLO{0Wzf+^cY0Jqb;N2@mU(ol zBen}akkA}=q{E`z43!O>a>aRNVYIgXcy8|n+-2}SRc@i!}xtwm`M><#`>-k-)y#$a>KGgi4 zDD+tDwkQd5HAK^`Bn`xsqkOpJrRtb41?p+)+_z6 zY1jxti%k9NI{bUAaG&wwXxLPyf{-U0W{=)4OWoa(>e1xZSr*~EM@_`pZ&JfF+lWU; zqVA71cq!a?--CtKz*^yx(IUgYK4}SGV0_BHb%1q=Y)8k5sVzq>+8?}TNUMC+Ja091 zCrau>#+AC9GBm`%i`$m!gnLryF&7_?`OMY=jUq5rD}+mL1I| zB`@`1NMrE&Nmt0HhLhE54xCOO`6dgHcXoW*6j5tN~B3aYKWBH z;HzfzMn}cvBZrHLt=esB4eGYh_sy9#p=-+|qd93!ZKb8@*o|8@IwaFdx$~t$E8~ul zTl>n9`MMw)GCaNz5o2SG=9UjXVYbgcaQcZbwS>pu$|(a)9TqFxx3%~pOluWR)(c97 z&Xo=uGR-TPszIrp=!kmr`OY|G6ra-7vQ1?sq%`}TyyT9C^?@7hD%D*f94 z6YB)=?5<%*3cGFV%d*=Q`n}7;$06?<;EP|C^5MllgziItL+JvcbJbI{@WDnAj6W+t zg*WfSbo$Q8CU&;JDAg%KZD%fuBwQ$Fr$jo^BqP{@)b@%_kcCTCCJSyeH@A+dssEXi7M|f_h8-lj&npo*T3qn)SRq_rAWc<=RPl9IrfUT_UI*E%AX}Ft+i`DY zT1ACFvn-)YrZVIDeyWiyi;pN4X3LyE4?0&q0RL!Z9@CH=?-1CjadIx2@wSWCt`-yBVrPg-zXfr=Xa|ArsK_uuzRG(|NMF& z-;h+T#Kn9^=}A==)%}$6b)Q}rI^JE%Eezp{dAPo{7x`)4q+3C8a5_8rVCUx|BY(tJ z{7M_Le9L~Nu3nC_WYq$kr(%2CXaJce*5T@YWj#gobHH<9#Qg#F(D${^WiGzFO%*ml zL3HouR}J?56GQ>}^MK1ImsV^WtCvr-z8HR7%j2)5!O0&o#2CcIJV+qzga$uKiA61(jOc!KDKgGBgyiNJ-hbvwu&%qMlVj@7xy3 zzv{^}jrMOVPu?778_Qd}ta+9ja(6((%=B?AHO{3i$8gjx6N9d6Ws$w zGhc*{pX8S7%CC;d)BVmIl{(PO6TstHr{Ao?7~v0rKdcXgGcMv-HCB8 zP(!1m1oJyU{}L=u-w|r~1xG9hhAjW-^ub3Db3Ip8<19SmWLK!Pc;ggW>@qNJS0(x< zfiwtaq<*k4L@Vzd*@uq>v+iC`>xJ6M=jAKHl&>k}J(~Q#_u+k`=mJy(MhR^_6TB^A zcC{t(z6*(>Hp4wAD)>4dHEz?@<|dfahK&7sfy1s+wpvmy(e+VcoKXhvQ++Er_5Ozl z0az!Wyhr;y=y8lDogJJpK%0Meyhq{^Ot6-g(tXY>n)8js#vnghsm9bdZCzG_rB~go zCuz_7vt-c+<%yp5q)=2>$)q)dUP1|ERXua&<5It?m;IKt5-QL>B7-I90fkzN?M^YA z8k{I2AuJJes`?^bYHi*}+G}_RVtW2wFYm6WTH*JXzj&vQ`XFa}*t~wP^^JLA1VPDS zAQECaBGmH2+n<8*%Ta$=uAfYpwRDxNb73wlD{%Xnx7piIJGA`hpX4$}?>2|h1aYr?D1)EJ-#0yK7JhY&57k&I zi%{=6`v*86bg%rUwZzXNN%-RZ{hvOD@lwz&-OAw6|BLb|N@6SVc@GLwkbl^QDk>^w zeZ8%FO(|}F*oZic25ejr@tkVQ38An{r_;`|Yc_L=xhW)cTrhr0V#RCVD?KmK?cV?D zg^}heXuiRDe6C#1Y}rX9E`RJaK`jye+LAiU*t@AR)vx8f#v?e+1s#8R(F!X@tXJA1WCOOb8RuN&(ylXJme-4jv# zs0oA&sZby=4X}EV67iA2RT?MPq@a3hnDE9-_T2%9ytgAL<2zuTkN@J-MTYc@4F3+( zX+RMZ-;yQDK~kTUOCC|i6~tz=_+&r+KGji_GrphyjX=if-5Hy`xO2XXJjso;RX<-o z#rxN*KLwBqGR8t1o1>7GX2r8$V*aoNMsi92UGZVX9^?-`vSwT=dU1{)PRcEnPo2~V zLACHNvVXQrmVWK{Q#igch4YV)=*wh(zE!$+Ig;vV!d{&t<@g*|#MIW_XAChu$8#RJ zy?Sr}M8+S*<~ZVS=1$&b;wGx-+m>0-lq3F9qU_q{JZ9cS2n|0hr}X*^E z#hi=2IRYgVKx9|J?s6XhecBJz=a8hwcyTtj398+_z5fJeV<0aeo(WJfF*hD%8u{#o zhD2$`R_v04da9@MXXJ|5yAqaMk*fbV6mwVnS3{ufheS$HWR(`|{}XrmD8jf=Jt~MN zM}U;j{l6fIL8epraT(%78}i9~n**DSh_vqhiVo!)3eXw$)L$C@*c`kGAU@+hB6Qwd zP8qp{eW+>%@pL_0y*L27M^2s!2Ru+|k?9M%a$J~uja;BQg#)~6|DxA}gv?~ynOu+E zXH~($ZCSn)y^%f3CbVC^Jg=TB^&&Z!ax3ZYA6mO!m&b}n>0%F3c!&Knl;M^4GdN@L z^wslZZ-l>)?M@LuI27W0DXoe^-~QrynVi4rQOy|Vg!vQa-JPIAWu?x~aq3jhk;aXU zt?1-<@yDe02K#=oRFBgy-qwF0asS#^bNlSrQQM>xUf@}IP8!-xEZiZqT4{^w?vyBY zZBb;NEq1yK%k@`axcurqUc+iCmn8qDW5nUPcJqno3%^r(NBbEd7j}F5@lkeJz%}iZ}pIicS&P?&V~oEx(7c=3<(@5f8yf74L0 z{y*H=kD+@>d~I*+WIv~RuretIj0N2fevx<-Yst0<U zv7cS6fjHT3MYMZH219pm9MjO{El~9qg#d$7IzF6^IGSZ$4f&I!B7^@07I#yuJD&~Y zmZe@8LJ`Ol)wgaU3zt6GFjfAB29^dJCcuV}P;B+Udo1w7yE~v0kYm8(rVB4%Gq zqb^@uTL1fj+yRoI&=Sfz*1oqRetooOD=VUMbxlRHewEfSbCNYZuXNgd3Y|{>LaT1NQrumxUqr!sEm+?GIE%uR>MHtB!%z3?NIaa>QzEiaA)gLaaOKDF)O6VKi?12Qnk zSs~dvZHUpnFfwMBOdN?>Sn7B>Nq{NzuJQ9N&WTV9c*|Vx>+!9IVrj(WsP0;};Q23~(M==E;1pgLAF&(fx_K9?n5}}Q zX_1^s2}3dHNhrOuV30WQ=F*xGl{CJg^{p$nn5*`=vHFZZGG}Zc8G{K11k~})KOI0v z3$fBwX>#_;`S{ImzJ7kEKn<2vZw;tSu^rXE^Ws!*tmIqlaJIF^z4s2Nb;Iy^9n`Tw*X4A~n;W>NXk*Vx)GT9J4Q2FS*%CID+rx@ML z&eF^wPoh?dFtao}FI?zdbK&xiuT0W%Imms=r4wb%q;kzaWNi!KEm$f)xK{XfQ7OSO zS@ZSDVL@hY9?EIzemDzoe(Rx9d?ari6SOHde3yH;(3>B>Y|qi)cV(P}l#^BOvt0^O z{+dLtCJg<@EBBl8e8rL8ljjxIQz4|I%2Wm^T}uYrQ;#9txqgf0;GDD0U@S3BZND;L zhYFvm4E;%^f#+BJLDcz3FjdD|!3Rh*R{_VdNK|MBCyb?WNTPh-zSg$SVPNwH=&@I6 zuYC1+S54iqGnZJ7=X1QI3#EQ|$x15@IYHbMn{7;tF>9CyOM&lBE!u7}iajM9dj$I> zY)aVr@_5O=jK6WDC&Y+Q2wY;UmzN2<4jQ`HBR~#(khS)A4%zY z`Ce}~tD!W>Aw?%FSv8#P>#ybK1Yxckt+~|B14qr0o3NIyBN3 zhX&q#=U0;X>mdS6o2Se^w<_?g3vuETr zSo8wndduXkaq9ITP1RhmshGesa!OA&TbpH#E_!KQ8ynn0uj2_ufn=TG;oHd{*Y;^K z0Rgx)Wwzg>LvkfbgMD&>%kyJTM}%q5N|uJS)MQmaMD&C+Y-$&_wZ#SVb}Rn;FK_k+ z-HgR4W2QVa8nYsjV7@CN*&5Zp9MW{I_F5cgbRGHLPiE57Bp0XYz#avEQbZch{aTy_N%X&uI5c_yr3mzOQ+ht;akN0D zgUdSx>R+b3x3}Tc*Nq>p7nvORT(*u1hos6Z8L+=H<1}Ky_&l#MEbPusp_{kcz@ESr z@#6!}*9c7cupH&804~*5yvtA=vbn*&=$PIPJy zjDW-H8>i*paOy`3aU#s@_~sW4mjJA}YLdBp|kx&K~cbE;KD=F-mE0%#B#} zbz^%jmSpdk%lwn-p0=qYkh{@3y$|%!Zft`|y2hEKAB*^B7KZ)+20T2!WB4h1FlcFX z7&*Pw*U1OlS}@8xvmGym5r-@hhi=84{gCAz)k`33IgBDSV`b(GB$1cO)ei~o8yVi{ z={UJANx5;X42_Yq+-W{ylIPYW0_(Cn6I&1cu#kXKz@aA&8=+#|-8|0mijQy=wJ#Byy4ChZ3l>)s6)9 z808Lb=J2ouKBSc&cD#E}x@m28&5K#I6yv(rkL9TJ>1OSefw6z#q+`5oqx|`K3GUL; z*H_-6KF{>P{?t)}v4^;XmJ{ke`|UJ~ytYGd?Wtlt&@(T)vuj8Go#z*+oFl zPFE!{_@#Syw3+1>=pm^HMRfuP(2MS@mFns@B6(=~TT8eyUgW2OA+Z3h1zj3qfonS^ zTN6Vo_8Au&vU&g|6Xh=pplljD?G5O~r?2gIN_f7wQ6?G-f~*#X?8My4wRI1>0WYCVL0hC1&DZ(Q83kA)w&UNFYC0_bF{OfJZ)OQs<1H3b`b7fn z1PN655?flLI_v%j&^(Hp%v_+Jwxvo} ztz%sR@R})>Z9lsFcucJ8tgMzO>fmu~+p=z=fnePs&}EwLO_~f-U`b>+EsM(AG*YRW zCaz|TJe=J@bd?0|B>nxhUA!q5McuAdeOP4^osUTEXo*~O)T`bvZdvzu{xN?t70G|V zjjwj?PAwkVNm0H=f?g|*a&2q2gDyW{=kn_=oC>g&yGcBO-4ON4@2HM{c6&LCXn=zT z;^%TJOB&d;)}w9?pH#N2XU^4Fk`t~U-*uI+#eA>~ZsGilQP3yfSE`{$l068kJ7RTG-$1lxBoBk^)u57~ z-6nBMa+{Y8Oq| z9XnXQcyQHhdPTGr;m0tI<|^l+0r`Swcbfc!3#^y2g}Aqu1=C#^m%ZTX_s#S!z~_Ak zEQRu2iJ5+XVxpnt3pM1kfMLpSQ_S~ud?sSh6vnk|#IrDzpPDg>S z_aiU5qsnvopIi2OXY!1c5ahwQhIPaHg6}y)?|q)q7w|5H(O*WrF~#*VO5x|m#(1-q zqj6+m;063pGwcsL%9qNpyy9ZcT(xhoH(KAucT95kdb(+S@V3O3CUlt*$Iq6ll07sy zXMMO-cUsc$GgkQIh`lI#XW^$J0xMLaLJ};1)iE8pd^G}vOx!XG$r$MrPUFbQQ za(7Vqm?)fv+P^v^n9L~AbFkmqI2wi6G$sttz6SEkKP&iqMrB1q7CJ1~{O=|A|8^yyP)#e8SI5YFGm{;$^lTD2+On!~Ge zTu3}!LBvNf zNHn{Zo%Sq_4~eZVZqM0Sv%UepLQaU+7rS;TIi;P=Q}*ttt218kePtX)4NhP zoTrNj2ePgtQsF)_{|cSB`FC~7W=yaUL&g)qiz*{xNT7%Q5SeoFj^O7<_lpa*#GOUP zklH*|?Ax|q&o~H>7jiTOSrH@_vBJLkfOxac(6fFS0vzG zg;Fp~*?48s!IZx)6V3R?QALxr&Bp7(e=Ul!c(aa z&ej%Y#8e#VobX97EGI&iwz)3stPNoKuoP2L=zz)m^j39A!jr3Zv9thBDfBfD%U!cy zRI^0f(*@Us-=CKC&DBxmO(K)_d$+YbQ4+TH0c}q!=T1nE>YdhSHp7_i!{u}CF?M;mARa{zDL2J=}?X zH+`~Z--(>)K4;fJNKjs#@nIB5Iw$CS%Mw~rDJJeTfg|tWd=(#z_e7i4>6Q(?cH(y8 zR!_11S+g6nytOyliax$VQjYZUDdHS!GiyHBdRUU&)hWB_M6f0OQs?Ikv)p#n(`7mu zkGmK8D3wP>*(Yj*&Y|1!(_fRW7Sv&0YsM2yjj2@>dWIX>bVh4Pmi^#8p3g1GMRvFd z=yPSw^@u!aEykcU@2?5>^ua~)9+Hc51&ZvuEHvGEJ)vE4A3BW8duQxUJN$vOj|mTK z5nH`Mj5JKwNGYFz2fpy~F7mZB63k*C)0v>_A3Ox?)iG#*ck2a!%#qyzvKf{0H)Ct| zk(-m)wyZVXM2hva?&~ee%R`VtubitPH9nqT@hXFE1z2t4mm-_xQ#fF=<$oB}!L1+q z7qxcsP0^Q3-nSDw4!ia zzWkiIf-gyTJ4bGbFlVkaX^B#p@|0u$9WIUPwWK8W`u5Ngwr_oNlFGKQ_xq0w6P=X@ zl)qo#1YL43Zp>gv%HvQnvcGAK+p^xcxEgezNFFpSe%>R9UKz|OH)!RK%d|J$ppive z(AV$7IKC0c*-Wy;U^B6uVc4~DUSSz@W??hC*v(o?mJ{VmmNW3&jt6kDF`TMpWW4?^ zNr)|TcEE+g&eXa2Eu%bV)wFSYDR?gxH|xdJ6;LrasB{QxVqPbve!64U$nF^Jn@&qO zzSF!6JIQgSMM=!pVgb~A-ygyvWd6uNtP!3w(6UaFEeIj{=WQ}myR{3mXLSOo)+V&d z0d&g@ydVZ^5l&7u)>_aPZ2ZTXYG`RcvwztU&SxezM*D?bO>o7u2ZMHxpLok2sIO$u z+9d=3xpycr$;C^gxs5Y|{-^Np{~_%ygW}qnu+c*x5Ind;2o~Jkf&@Yc?(Xh7I0;U$ z5ZoPtySo$I-F0xcff>HZvE;n>)~)*L?mtj4dzSU;?zOu6d9D=>bRSaEw&#c}3QnW~ zx_e7LLx$dvbyQV6^950Aj%e{q=Sh{D3Z9JxKE7)UD)-#w!&hma@ zDmm=_ti4qg%efi0>-hdhWyNp8a)TNoq58cZbiFEc@9$ zn7e}M*0hYbnEmr6ZOhf7p{&=oimY5>Cn`X0H&Ls6t0FhvDEuJNf0NMtJ`}Ga-JW~T zIkZEg_Nz(RR^!=On%N?nywC$DsfPt?@X9?|qy{bwheWA>k z^9TNJw(}D`y;RXJm3qSbgB6`;T~fUdCbp@lzY!c7T^XsdEI49xGm(k=k#{WGWo-Lz z5|est3p+F?yKj$uR=DRmR!5y5+l*YST zbtzSr)*q%9Yv0ov<)E6MkdZ0XcxgnKXSg&7%TVOEGpYQo0 z(CNnF>U8mQ5kUqE{Q>4l`z;6GzRk$-Kp;R+LKAGfM%jl9?F)E$6eX=|!EI((Mm-0CU96I>x|NZTsM#Nn z>-{qvq%Ucgc_IR}(k#*OhT<8?UG#k?>)XjOm75KCcPc}P7nxXe4ycTUhg@PP70ZLs z;HvHJ^~Y+`omDfvt*}sJ^HrjD`rl`1iooXTG-04)R+-(m@Q+%~k&oZ2FM9R~wgVNn zkJ6LMf+-ypZ)_*ALw&;qae?K!Tw$f@ov91LDFHnJ>jgTeM*Dnkhj#ECy+=-0!X5S9{;c#EqyW5kS3H<#mYpOVzW1=i;^fKA!=t?n>Dsy zTKH7IgD$;xWcQHy(KkXGoHO^}bd{8ylU*nLnLW8AYta?EsL&)Y;^;HpSw_LhZU`~^ zP+!~d46|IOqHpByrEhmb_~8b`E^bJYr>0Dw1;@mLM`>FGC?jB4Z6sfuMh5yn zx5ml7KMK2%&s^)2t2V`Q=-knEoNY`6tloEy@#5+Bx)it;Sp4v!TgK%x17!Ogh#oA# z_k)EDtNFgQWckg!tIZNklXyGz{>RB@s;@m5dujEht4?FQaS#ME4BT=0FMH!tqbBq1 zWb510AL1EC`*BcWB%Q`F_Sm;)_uS6x@nU=yJ4Tty#S7|bYQLw~-tS~#rtxt>)An@% z$tqgKb*TLa023jrR3=A{-NMMrQ^mEiD*;Z|RHzk-p|JwWWZj9R0U_sICSBj_B)B>kv+RIDIKFn*&s z?N9=v$;Dodx`Lt<2*b=F-0azy@Pgy;g-O_*!yx)&jYfC&P!P^$P?Fw>GfW? z7VpA^pq$X75VGH%&OmT^t6%BX4hk;^yf?0S`4mp-j62atRDq0!m#d^YN2J|uS$0J> zZK7BI;o^B>4@`o+&0b^6*&26J-AA4NDk`tbMSg3UhEHK~1Kn@`$mkCpDn8X2yCn=zJE61`4;!q&_%lqH-m)hs4BNM4}21wCeXA%8e^lul2%NTyJ)} zi*?Pytu=X-)%{20k?QFDX?~^g54PEbDjvfQgIsZmsfUK{38c2Ihr)xF;#o}Bo-_e_ zcQQ@g(enxIL+YHhKiFRTJ66f-R9C%p4jVELYjS> zDAu5f`?HwP@{A#X(O!k+4q*$e*=5HH4F=iZ@>bQHzRaoQ=}l;Z>f->AfL*=LkoGWq zrE&it%Q@6;LGG8B9cgH$Or!i>A&v`0@p=%*#-EN-Oc7`MZGs=!kN&}q`x*D`|DSpT zXcj+!?Tx23o9?eWxSzirdH*+5^)q(&tx57%7asovJCm81a@A10ePjbv$1EJK#1f$d z1ZweATfv!n`wxwjunD(TMKI`XWXs!({RmkfQ1-r&j>y-<(`u!@2q$f0J}-Pt0ox=# zLH?S9X<^^=hMFeOGKO)ut1|7i)C*OHfcd2KCduDpPn%>GzcS^0KhO0anB;kB8uwcH z`&~y6dl|w%9b-Jt!>RGD4-#p84Kzc^8Q9a;Y5ZI)JGh?eYC1bgXE?9TED1pFwy0XC zb5b;}JUeqIxMH*N5^Vjd5QodQ#mJ#H&%4(Wnfj85ul%JU!hfdW7hoIJ_!IIYVT3Dl zbfxM?%UbJI(@1SYgU*Nr%2<`jt!_(M{xTA|Tl6`A=|sS@vO*NI&T)<}ySNUU*63r} zsr~LrxM!S~k7uG@uzdE?>HY|9CA()(=qr&Tf+Hr&uCDj77+}$(c+#KDO}{N>$l4g3 zX;g5(&{7Ba)6ibeK9e;(#mTw^YS@oK4ezU0?V~+eX*L{c9&c2vV1$X|ae7%jUg??D zIetu!h@f)q%BH|iG+WQw2yAK0O0q1Lfw}>YNdG0%@~H<+Dvo-U#-53>sXKZitRU&e{K)+;+EOIiw9&mD5-&iA|joY;xEdz()4m{ZXh*b7Hv))BbYv(UcDm zMj=*eDKW3OJiL4$pW9v+3gGe}nCJX(e2`t!6~RmY8NK}Dj^#4LlpZX!KCndaTh0^s zcGal&%Z@q&=#mGz8N4|d-x?cJMhSq_f0l{-l?ico_!FUTq<76#!}01#03b$D9>HML zLY~Uw^yza0zAjnsa7y)i=HlF2Ntdf*l=hz|H5g~hCw z5s@eKa(F8yg;-WI(I+;ewmQtca(GZMxL@HAAxDZN!;)e#7o>Y_;}93DSl(9t8ExNy z63U)O?lVh@{Cn7@vVGz2!XJju5aI77eybTA=O7Xi0%OEDn<-47Z`=If)Lvc;gNPS7 z1Y2;FnHNe~{!11;mLD{Bra5+ka@?|JvAJ((8tPs+r32nBV^kZMMfp_CH_!^Dov>xhD=B zOaA2yh~zzFCM@_Np%KWXi2rCZ-`1ZcNwgk|Owv%O$DTG>xs__DHi_FY;ox5K|I7!K z5{hsM3SRePF{^(D)}v?lOTh%bd}#XV$`!ro-!NZ2eFpZ>udE#@6<&tcumwYI6XRm= zH2-B|hj{#x+F|l@N8Px1K*`;ca@LI5p8J2fzP^SM(<`W|My}YdsWSbRmjhL`%n%0( z5Thx(2@Xz)ZZ)o1HHG@FGjD~aO;3OSR5O4%`!$8XoJrtI&!}G*aFz8xC7GlVD#<^C zaW^iY5QrctkURNfXY_d~xvvcJx|;AOC}d&0upIhDxki1Y`z79Zmbd3({SXBg7jD7O zJ0mgJ;<=KX!otw4NdBPdSZt{siXL6cUlnzpOMlmu{XHNkUg@bbU!}TENfJwZx#Vaz z-}0AzdJqsVGzfBa`PL%bJA z5wD2CVYt9|XwqVNED_(}UTRUD-x^c-kaozQzG@ zOESvP+vd|c`=^X7;j!;UMSaH(2$B~F{vdK2|9eo3hIgynshE1ZkNGD}&{JxYJM2_#Gveu2TG;&3)tUN$nEV9Ml(7 z<~&%jj*QQuagYRB-dc7)WL!QwO-O7h!>xWtR%rM7HFX??Y{RF+QPQ_wi4nsv1&-%& z2~NE`bN2V2SWHKk0{YF(r5222a+fw}oObAi;Gf?uLQoZg8=!`bKUrk z3vtBXtRH87_*_p5fcV-zanjrN zA1I%Z4vswNh*8^_lObxlW8U?8y`6}zNX2RR;qcF3hzcu@f5@Co%^xZBTQm?|+^p;#?N4fsXFv|D+4smk)xwEmYm=DuPa2?ZzxjFf$;nCeHm~QTQQY`Fw;->p1lmipWO z;i|x0{~f%XwhzgPFMy^a3FrR?$d?0Cw4hI@?;7OggrcSmTD*WyO2fLSSO8J^PI=ANq3gizVHTDQ5 zEQj+A5EguG6b8Tu5ywTBLyMu%!IW5+{d{5rP8)UFbEeIMMR&&JMFSKq3yTyhaKyOB z_)JMnOU8di#@Z6MQq`qR-qR z`QwTnO9$d7&D@w+AKXsy*{4!&slfr3KAyRM#~EY%k%ODN_|zKvc(LAWy`!5YWh6@w zoxvm3H|k?wv#{mER*5g=z<=tD`}LYrnRR{A;;yrvO?0Vr*Era*(XJ8D-JwDTSRX>j z3gosPPTMGGX+v|O1mm4X1v93`c*6WWuJm`l;CS72KFlBAjISc3`&$3o^`Bx|iC|%i z>wEudFI_kQN;rXA}KjladI$9>ky2GExkII|(^^E=e2?qC+qUuYO6&Pt^-) z`IIoohrnB~`Xj}zt@muB+}>+>PT+c6JXy5)5r<)+;BxRzAvGC;?j>UhHNz|mL;hN{ z?TWrRuc`0{hpltBJBu6ZQJzbN$*Fo@MANbKz@Z%^ro(+trshW^t`a>t_jm3UM{kY( zx}1nK^ysi>^93KyJVNMa32LY`C5 zE-^s0(w9z>uv8ScuW2p!p-_^PGucm`v8Ij~rEPAMY|dI!Di~^%MuR{>{n^;q>f-jD zl!3nWhbqwM)2yJnYo?ocH1yQ|%RdMa?D@1XNvQ04KGmZTdn1szy>3aKqk9({s8tMg z){I97)Z8sV`RnPB!FMf}5Ut@Q^$#W{&*^>KG9Jp@(=}33-d3|)T_l8S&Vh8_ewqy2 zy1xP^O&4;OdSH+Vom1WG)^0KzZnH<74LnTImX~Dx*yvW{3&s;p6E~>!S-lSTK78(@ zuF=bc7%1TKk;I3jJN+p&@cE3gN<7=;RD!$r6&=gr!I6ZsQYA3r{bYXGSWGGTeerZ zp;uX1_07X2t?Yo)>-te^cs28;yvTHB7$aQ6q^D}B^BxVi?di2#gyyoN;9&uag$}Q+ zKdP0D5ORT>zK#ZGT%Oh4-L)Bk(mWg6>Rdxm;bnadakV@AljjCj{OsLyylK4G1NH67 zRr~>eYir8g33$VcuNuGIC$l-ZP*1QwWZ`fIT$*pZgD&6>_PsNH>|1x$8_{e7t<9CZ znL1Sy6qV-d?pges@n($Tc$3KJ(E^W%=!zf1*m`Fk?V zI52jLP5bz7okmpD?2l{5HUzBk>$O>5dJDKsM3q;)F@4Fs=1#%A?1mhbkT*(9T*mr|sI z(RSjs?6%^I(ekWsUT{qpjr2h;R6RMlSHCa%9_FNCwI^{SkaHov`9SF}HT*+v0Y(;QT%^>){jDiw6srvkj5!u8Bl6!GHl?D+}dA z7ouG(&t;MAyTe2_lV>+4drr3`^^Q{`^^Ui-dy2J|e3$j#1xKhq=D$!}BpG>^urjLQ zt)$Lw1m|Rg;B@O>Z$EY2-2gr^GEZ2CR)D$CwaLV|8MUP$+j)i%*)@D7f`Em~1givb z1@62h44odF&hylYAI^QX-4X*sDH3voC0PRtoHnTd--YD+AJ^LVwKxLriLU8cjq12C z;$|Y1f^<4j>mP%)WJmRM3)XC&vGu1WT$%BzJIS6`yY+oggq zQ~1+=*wnA&wh`5zXBg$&A6)NG10%pVr1e@Z{bh3Ob-1`Em_YQXkdBS7_M?!)B9MwM$3WcD2->&%G^9KqlGBo z?O^G>Fr0~}qh`g0>T($-*$kEAZ2DH}rHIN3{#b3Bjn}g|`jI85sHF;vQ$oKw00rWN zALHHbLUuQvR@K(T?@OaUdpPek8?TmQel7Nn)_o=P3%!|AAcEIA11Qor!+~p0$Bor) zq_Cq{aw38t)mf8^ey#n>!zwuRqDZ1^tK_9{h;$_5cA-`Irax_pg=({AceuET38oHb zs0x~}78jMn;ybbZB-S(&XcFc~c(&f2?SVKB4~k5xz4lYQvfvlmdOXRV+zkdOa1G(- zdF;t1S3CEP4JQSq%H+0!RB@{=A|pq$ru;&td6~?1%Ps4wNZxn~c1_sr4N7r!)Qi< z{Atbbr+@_0woHBG!ongYw737c^c6kANbVFDw^n3H^f&=Wv6&xBda>1u*s#JW4G_ER zEqR^q%z53<%z2$(1Hy?NNDAT3_((XKuUWUqVT57y4x1!84wc@OVp!$yMMas`);#F9 z6UZPRTd^3TIIs8N38ST74wbh-+3>LNy&oKwocilcI1H>~_EruZK6i^M*92ytl5L;V z<2jB7=ip}@xUYvt&f6EaestzDz_;@OQw7`H`7NC^q{-oO6>YweZM@YH@&ZX51g~|~ zMz!}R^N}gguDmDF*IzBMD5-GX7>^VjI9!R?!J?^TpbwTMiD4x|y#rHguW~7Pj0D3n z!#Ev=!)Trfmo78WpqWX3NyGI~!PQ(2UBHy678`@9;V+uCaZ;)omNt+F8+LUs;{{#Z znZp8n1izKHKYq1p+BHzV%@4Fx)AtN}W~t%JlLM&E2URX?ER)-x-U7V~rYgkW+4ps4 zoWBE-dJ8&YleKzc&}IqxNIke7)6&!Dw6zH-Prl}2vQ2QO#bwqMA4?Aom_=jwpCw^k z@;i!0OLg91eZ1PYSDhvTt~Rp^dtIXiE^Q9slnl&GjrUCOW{0}R6eyDN)tKH3s4_A3 zS+jm7_oEz;ph(;nc&m zTIzNBFs0Qn3~6^%E;8P{97AtKI^nCv+G5%eEycDxOv}rmIpG~jVh$=vMZ%%%8Qu|E zkQ!C}~U^(^P9A-MJDT+E#syO&raR)>Fc0ssPPw5!4&r z@`A8DQv-Y#0bVttzAtj_!qk;kKXL1uKWvH$&qD&zK;5*sIRX$Im#Z z*UK(UiH%JScba%_TFX^ti!eLr5FBJx@4onCMImQAVV7-}}ogOc+Ta*9s`Q3kRZbAfKug^Jk*^!x~drl{ze9-Km z&yeYxgmT*nHl(JMH%4pOHGWPha}RzdsL)3Kg@UOe-nW-=GwZN?dvS?u{W8z>Th+G- zW$%}L9Y%7LUNcK5tv4Pg&3m3G#}@-jG*Ek?%Ld#(3_hl`1v0V#rC~>mL<8PMpRU^XfbP}@qQQaUZ*`@ zSA?Exy~+K~Yeh>}+*t}`KC{_Q>z9aepNK;tNyJ!gF3gYpqKQB){W?iwgNFz#P9<(| z!CP4Df|W!ZjDwD<;>vLDAg*4A@P$*7R_g;v5$<&c5PLDNXVTPm4Od3X{c^;2OYn%6 zX~1Q2n+t;=K}w>Eu?CjIc11LADVUQf&^QG>iYk8I9u{>5M|pKH1!B$0Q0fnM4;_HYz1`P3H z&vHQN*uwjm{T5WzsRJ0!J-ae6TYxHl``^t=tTR~IATHiv+$RNIMk?z4u@Bz;b45Q8( zQ+d)PvbV(0W$17(fYNqfozAVa9nR9hvT?E4)sDSLMMXs+p`lsO5SlY^{#?%c>Go%| zrM~^?)j#qFJ%!Dm0@3Lq)?cfyVFq-u&bC~e&aH=Js`1QW1Z)vb(k|D+gh!OB1EZOj zdxuWFI}lFW$Eu^+gPXxKskOoWk4;cq8d;$oWhNpIUbA!;uC!)n-c0|;(*J}rdtexZ zgwkCOX9NEvB->oi&G+O~xBRi)ayYsN90d*6drG;n(WH4J6u7JkeJ-A7f2~-(54d=R zSu(31`G`iN)9*b;Dxz)Pe0K?{n--MFfnm%v>s@Sz^II`_%jp|6PV;^IVbe~^Be#qy zv(PHKU(k^3RiWoU!#uM2C+Gyl{&N}gdk)1C>_)e+HebJ`zIy@pC@wAmrE-56DR{#p zwZhmV^d1@ln}Y>Y$3)xbWDIJO1-)S3Xdd=B$5TA6F1)a*M)uG1+(ipD$;J<@cI9t9pnmfMM&Q~qS~YDT!{6n!1>C@Z7^MD`*<4va2g zehpB-(?9o6Z>aqI%xoQ9Cki4FD4C|W`S9yRj!<`YcDCM=>$^=M;zNGp?a4T9$3keo zWOeW31uc*O{kXMqLn#ud@dkV}rNB_7h(5qFwUx5VLCA~9k7x7N3h15BM}x(!wN>4# zI&n@F@r~(N?a@+_p5LAhQGD2c(3)w-t(7U4UgLgGLPlC7tXOVWAaPRD6w!%qsRV4W z8DqJMzO@vb->usjL~{uoEk4DwU0@ab3aJZVtdS{SD_JBybh_xwHN@qD52;8Jbs=CW zc7j{V6q>DzdxJYuQ0f9?Ryt}>`E|trJ#9iv%kxeqxZMSrJ`{&Lhq^kBB5LZ8!*itEeX=zEG)^Nwwc z?ZY3nlqA@lAOh5nO4qKZiNmduJq9Iq>;4l|EovJyj6xsdXfBp9Hd=&BgJP9o*Ge5G z%5+}elBI=MdDA{|7ldk}H{@6^bMZtNO!1T+(i;_=4ohOxxz(=8g=H`&cNKEp}BOdQno(1JiMbz-D%(gEs zXlaS#GYxL7O44dWpO_Hsmn_^{>}^RC76}`!b6$T4mtaVaVhltT5T59a-mBX>#@c+N zr!`owB`}X^*a!>}_n_2lJb>aN6JX0V%t;z(Fh1$xte?bGH$ukMi_~Hr9}@ZC$>MsS zm?{N-x*vtPGd>+ih#BELJ!E|*r>Wc8L0079#wgK6m9xRJ8+$`jr-nZZ& z6URL^wzYI%mOGjC$Q;EHN=XfTFHyRF&lC++>=*e*tSJ%NJUn5f z6S&_NY3yBslCHIq5%FbuBx^rHQgZ9^-qi)vbNYv7wSEJpVv6Md=-sY$xgv-iNovH% z6<-8Gv)8J>d0W3Zhirxb{AoIH@sv56Sps?;b|wgndkAP5-k90=$EoLJG(I1}CbXuU z=BmzK4x_qT@A%XUG`R00bYbtZ=kQRM-_BBC94jj^QSuMImOeapmfMLG+j<|uG1VrC zRmWpJE(XI)Lrzlj0LgcMclr-kH*qm05P}z!nrasdV%=jmQiu zWc0?tL(z<#=YGu$|-&} zb9#77K7yrBiz+0DmKoVdG){FKY}Fn9wDh46C}m!RP%=f=fb8Nb0Muy0@%sge=+W9u zq4)|Azwr_eJ8q5KCD9*znesvasGT zlaWhI#tRolN$PhFa|G@Jo~meL-^XD4^T(-F(XWcJ4xeUd25RwvDQN@#1$!4Yi+i-! z?ib%F9bZSNmk`nqrrnKX`MkK6JZm|a@?hLhg@v%th@N!9od-y%Q#_;Ky`#Gp~eY>KWh`hYeQOlHvh7!)r!H|IH(0jg^ zD5*L>xpY-LQg~qC?EE=H5xPF$K8d^fTcH9g$|%=!*gZ(v!OZj*=1j*2*CwP4p1^taxgLw-m9+Mt>t6|rB149Y)DF~9{SEgz*_9&0fuRr2Y$mE z`nE&mRh<=@EkSlqWR=v^6q)=f+8@-jsi!bnJVfZ={w%hX+2BKH5cyq7 z;t>UsF8|M$;rWE=i7G>PakUJQU-nAbCqrh(NX{zqh9xbVc^oMs^rycw11_G9R}kE= zXS(3m?dt5l$&^!)JIAiV!HIMXmS?|y{SF)B+VGuq$n(l6ak%H=;(UG~*m)sWx?=Cm zKmW1cYUX)w##LP*UWRx2{NuW(_l@K3a8eSx8TZ5TUdjSHm5-3QmNargIiX7_F2j6W z)Nyae$~DLP(W=*Mvt$uq6?;By7IFB@h`#XsCCBrv&ez0smaLnr>NRKzUk=mWkFj?X ztRJpsba@B9r6kp|U^5uJ(SCG(e{`yW0Ph^tmo~xo-Rs(%fLwp5Oxue{F94MmC&Yp{ z2(6QDUdEJ|;pO-~HEebls`-{#|1t^h-MKuu&ySicDgReBsET68r~a-Ou8$B&7*k3d zL&->_R=ew9ky5dm$;fvP7Zt2Ck*9y6!DkC&9e zB=uLZS^zM(sQD*~o5`My5H4%4q5EvAtGE+|l+o@#bPK=KkAdLN#g+ENl?P;)9bFZ_H$=Vf!S*X?=ePxIR;VLrtDQQIJG zQSMsceCugql&1(2A^PYThud?KGA2x=1_g7Wcz%%%rt7KuP?=|@73iiNA!@(2Z-;R> zP4`^e(DM}G7-`d^bY7OPj6*=RGHp-o*<>Y-VVdV6iQOjeeveUe*rs%o(wfs=dyVjZ zXY(XB@1&~h7@q@Csk#Lg`iU;~lGN7beNv!|_4a1P%w zJ#+x!WoXgS!|7^-dRDxT)GG-6%zLM6`W})G=kQbzt7++;Xmv=Knbk{6%qo$BaDz>`h79R z!~m^BUii!yDuBsuxAOPn!nQ~1M+?@%?`$0y{pg!AuwRZjJ{O#HbR)Qp}70wx7h?rleZ%B(^4!t!r2+f)U(Y9>Bm=DQtY z@@zd3$0$ksa79 z3&Je_{@p(K0ke7`-2HMlODcvMxZGIX9Qn^cEQ5+F6KTe8nb?6e*#{>`@ZbX0#y$1v zBnTsEcuaB8_xGB9r?aWzjSJ`_O~N4vd~+_si1QlhpRa{SJ39rQ*E9tIudgV~%_}zV z$mlCf=MWQX;5iOJFF?*ABIlKHcct5=SEutY{c5JN#UCro8LPsE?Zvq|yQ8ioumJFO zlB!)WsTfgtBeFg50WtF8oIOw1`@s?k_e!61nq3=Dfn+@PncA?oI*&AR>Eiv7Bs+w! zczFr<0Vm?8tF63d|A?sq>i^BnK1Q3R>~!|$dp*oUS2ofWmfmcewou2LNFr;yhk&OC zj7`JXpPKgL#9LE|Tfb{bk3u*TW3kRE7`_YfW7-)N+K&42A+l^qcfpwNXK$0w<}+oC z9EDn}CO4|F4Ra7P$w=Z(Xb6v*Sp~BnnQo@HT|Oi%%wM(morFZtKil=^rgc8n&dSsa zPJwR;woAACa?E_&r(-80`N*rZ)9t3Cq23H+Ff{bcoMJqlfXtEtXDjf7Z^_<@Xkbjr z8oz4#q0?|!)_isrGB?gR9(1&g68kVKw#0wZ35$N+I|b%%;-~w5eKui9o=M!Sdg_0_ zD|xouq1$kn?s-11^IQ;AFVKkM(Q*c2aHix? z`pQd#d&IG*$7hGGM`B;36nIsl#9vC!Vy4PJkT)5zr)DrnhIBHLz$G&Bo-{v^jJ_0~ zX(H%c9GsEOgZGFND=F88$mIqfeh}`wpav@sS=J6prw@q2I!cd+{uYV%D}a+Zfbej)CzxN9g0xk4&OrTfs@eP?Cg2Bi zROc)M|Fi8rwkR*8LvY4MEz`y(ALF9XJ)Z{w*G8|8_t`uJ`bO=2ivDcSTYt=>)F(QSz${sm z;3648tK`-MF3g+xcBE7EgNU|Gh{Uj};da4or`mFibYY+>RR z2}uv5`E8Pht;P+YLrli}But><^9Tud2&s>VyeQ*Hfo~G`^_ugP%t@hVOE)AW zKgk8Ayt;bGND6n3$x!_GzOy6auc@A>rD%YR+MGPaBg=+8-@U|Ir_Z{a(DlOUH1Ypo z?X+f6E^m?L5`4zQQ-Z60H0k=RM##fKy0WkvEo=s^wLEmTD_0(DeTjbL%-7>O>F>cT2Q@lShuoi9COK0q80~}~RIAAd zO{7$y6)Xy} zFCXuA`^}jHW_0}5rvLWt{~uT4D#}5{*x+_Gf=31T)r!ey7Ti zZ;xWytgX;|r#J6k+UUU(3|>f(-5VOS?MtOy+lo~vyF=cgQC&ae7H5xmR*|wLID$4EO01W`4D=rDVlqDH-q`h8O}b8f2O%6 z&tX1`B9p@PZpw5-fo6Ko%ifxCpr`UqEF?;*Z;|rYh^)%=R%udBV*WPrvdyhF9r@rIy`tAMa_e}quHKOqn4n;W_;?iUb9;o8L zkB{4&Gl^6rTB@lMTWu>CIq`?f+Ha&5!tV7(yFh{n4m`9lo`54s1#=X_cfoHB_`)=D zAc34eTyy)%-${u}a+K}>Hbx!Q5PdwJ5Qhbg#U=`cD-7;MAEU`T+>Tz>l`MTCA;R0d zg+ib=)-pN!VQ2|wgto@pbF|Y=d+#~yL+s8rCv$+)ZLrUJg=~eK@uNphBzqd&?|gQI za(7HAxK|?QRb@6}>IgHU7D7R-{I7DogoOw=a35q$Q~9rmxK0-X^Q>YpR!evf;4KXJ z>Yo?0KXZ60W!x|t>YJ^dsxY77BIfxT0Om)_VW|-!ltg&jWV${Q+lG4C_J}rwPW}4+ z%#}e#d2{rJTSUW|Sh_v^bDZx{_XbudPlXBIC@3J?K^wc~O=s0al+i{s5_bAx2&xuf zbI&BSp->AiAhy@&zKX2!P#x{d<)s1E=6I15ZNBgW`RpDJxyhDK?DJW%OOFr4n&%{K zX_YX+W7Mw=mY9y-GfRRcWH54JFTQcT>QqEnv91rV7V6?o% zrYr>86di$a9{I1u&OVHL)nO~!b(^!+jX>5Ce7lO4<{~Frj(!>T-dYwX=YZ3 zP4Sim8titavMWS*QsbzH@G|9#GnIAc{WIl7N}Jq15GHg7oh?bMUqb*nK8I%K zJGpxf(j_7#c$v8MfO;Hk!*1hP#0ZwVV=2S-f~~FDd;HrS)7Y?L`fgbmx;)r@er}_O zAMkEQN6OG-Zt-xRCYT#Wolo0}fE?u11$A}{F2!tw^~3Y6^ZNjTM7CT6zW_&T9bQs? zl$CP`ibHshOGe8w=|h5VAY1GHpYNj@@J&JBO;Xv88ocMg=VO13v2;H5ZkvRiME1AB zf^1U6kR3e57&OJFyN+*NK1bCEXW(GC>~TvoL|Ha z#wP9O>n(MA484(;^2XC+b?B6DLi!qQAu-klAeS$j<8C4W)Y%3o6*%>vJ~s#ZjW<5P zzHq&L7r0nzsF0YT#oHS711@+9K4-rRTf%P~ZiR1#UzoVyrZ>mrlxBi2*YU~kWhf0u zFg$zC5BtprQRwit=xF1cM_)5d$-wY01iZ?bX)4HaoC z)RDyx2G3rf3#3lEr=BKHkIq?z{}HV8N!R;aT=YXNF4IFG7iP24=R`DbR)bjp(B6_a z2nr6-wyX#}p&O1r-G=xs@3GO_H*`Qw+kzp0O}w|361-^G|EILG?rO7J*FEm;4Gu3( zk>c)BpjdGWQk(+8H8=r6p%iU#r#Qu30!52cC@!VAQ#^3;?!CI!yU#e|oIlR|05f@J zo{@3i*Y&&R{ZhvHj!pD^l72#Rlur#N^iSEV^KCnFB>?nko0<%j9H$oi`usMlg58QO zVJ9tL)9ZbTZ2LiHu8zCd_KO+wa7xotSy;IIB%S(AL6a`mEQ&QuZ;i2C6g z3s&g2tf<2K7uz@z1l4!=#Wqc7N^j(IFnn19R z+kaM3kh(lwX=+otYz7?M(n?qf`8QL}tB-Dik;p&EOyib!%2wXu^YqC1*;?+cpo4?j4uNV}&u;>6+ewj##a3ZIl* zjt2@;orMs7-HeSEZynG#(2M48R|AFYs5ao2-MJi%uGd=MeW_m{B@Q!g#x%>8`3piS zK$+ct^1Gn6XeLB#!oWv5XKAkovy+*K#n4=ul!E)!z}}EU$J_v+No(4_1ex7{*FqG@ zX;R)fUj&t)rT;^~0-W;c1@eC&++k|*XO49EDb9;Nd={fM9*Pc#9Bfi<|CN6nkiHVr zFoU>u$2E$*yS%wa-DODpBa*2f*DOJbhcKxw;a_rdEzg}=mrUP-Pq8NRgsdO9JX;=a zIz>~GaFyJ-Kg|&;cMZn|@Pj7RgEiD4j9;*s;AES<&sEhIBO?Xm9DX#CGo>i0ioKO{ z85O-rIsU4m0ESiBU@C-cimIWbJ2mbnr0Jw`q*a}gC6FCVaq|EGXSL%WJQsW!h|%qk z0SZ{3nvO!*>3wHpKC7-oAHCdmk2~?!fF?KqNDs%KIA0`Kt!} zRwtWBI^Fk;NM+`{jJPd+njAf-6}YEksGwbAb*Ou1C=L|Yq*(pI z8YK7pm`hPI+6(=K*77QALVO+>5zpgB>(eC<@nz;aA2Kz<9|l-h=Q@3z{^ZlkX8xOx z#bMuL@Z|?QLGz}EL-jG86i@r8L3-{_!9dR4W{LNv<=!tIpYdA-qw8fViW}v~ z+n&MBLXcZL1*bZ(a&RW93aJzsTlRuoT_4FVWB~5WSW3?e!qO%v+NBA?;xRb{n^_ll7Qlc+)1RvKtYs}O>1rwx4T(gz8ol^k zdz2b*(^1cRsfH_Dr7_^7!Ynu4Kf{ee~H&T0PEPRz*7tGN^tYS>fEUkl3~$B?`z6CqHgK=5^mtl&1g- z#NGSp?7MMyIqqW`jb+q}(f_iW+Vr1=C8XO-mDeH(Y;su|vj4PEeR769%1qY@G0?Q< z) z`YqLMJNZO6!?6NQJ!&w#*2|lMWK5GRcXVJuN*M2iE2l=ZMBoHFvUMoI<1D$iM(t0X zTW-)WwR@*3(htwv^Nn%Uo9ElD@fyx0)O(roO3WZj&w;;9{e9pFjhuF&MG7xdcCk@z z{?{d`2nP5Il|}A0CA4V8#X2?^20QvSnYe;0ppx?QW!1Q!rXF>5+OYsdjF}M z$g)P#{Lc{0UTZ|d zce_6+|F(DHOt{q|z}=4rEK@3bz*i+fl|J+2bmS+e z5$CDrCww`^k&&Md4_(=1wVac`epzbJl05_a8d|k$g`q{P2AJlP}(%6x83PYj&>2t)aS9Vkp{@oB6vJyu= zO!-U7!vxXTK--Dh%SoHBBd@2DaA+n38JWsG=xJ@d9o7rofvVV(xT5YOF?tj40Y?it zwkpx0imQnSe|$TH_`d)0Z*d0b-6)?uB&rvO-`aE55p*d2xp%UiNvCv#7Cy-}rCn>e zd1w7oJPgJLt&Ohb@|9+m{%qmhS=x-*Nq}U?sFMpKXifOcG}h zrkionvlq#9_Gkycorn7|iuF)ags~_MnQ-+dl&>8d>YKV%IUEJsvt96OBg+Q|L{g_L1Tzp0 zhClEzjE7ogldidqeAST)v)R1LB*h7{1kPgX7KW`R+*0EvIe2Zfv?OM8kYmNYV3=N) z|DJE{!mTe`p`Qne$B}p9C}A^tZ)gSUYCt*E^v+W-mr=yr1#$CJj(QvpjW=%&{g6MD zvQscxL0YCQwO#n5)`|#D!2DTqAQu62lLtFHY&8h$d?%jRd?pXLbpUOuQ_K3+SU6eT zyRyPGC8lSA82ln%7zAqXMu{CDpfcwatZ|cVCn67m;q6jzt{df}vS#9jy$e6Jl6V@) zWyQj|q4shht5PXzI{)rhWf76VF13$Yj+Bb?wy$A`*R!WwKR@_6ElQA(1Km*sySc4w zjj#jA-kf$C$A!JFB`@)EaHyIwM$hngLS-3P$WAYKYN)V5;@&WZova@#{1!G0F$r(Iyszzf(5O)lQN5=Qp6d6+VmtZu*r(hC9R&Xp7* zNFF!3cIm2Rb-~-W;!N<#(gXr0PStgl4i;xdjH&&N;7*M(1{ih%??tgY44G( z>(1|LQIgE4n2o}#AhoLi_%`DzH)w{+*C@|pNV9X*G0x*fDgpS)l4U+&91w5UbfkGo z{888SCH~7)PYwsmJ?OTbzE%3uvUx?60iZ8ObHufNknXGV{-3}EVz&j>KYyJFI_3Wd zmH5BA>;FGWd@sv~(Lc|mC=!qG02&TIU!-Jf?%aNXZG^74LcZB~rZY1$ue^0;s+fzD z3iR2!soNSForoCSlXq9;0|>iBCeTXsO-yLHzEqsc{+lcL4-_(mU;3|FblzsN8xaWS zzW0CjX?Yn9F+x$vQoELnte~g}ZD%|imK2HRb+AeczrRjzW+>SI#}lvA{;Pxvl0t{G zungSz+~FBj8b~fS^CBjt=gsW>Y)mbZfC~r+oLx-F6c)8m!J_dM-sq)tq{WmMav^SV z5ceZO7$Vy2sUG;mQ)>)h{Ley8UMH&x)&H_Z+V1{*LMIxW0*VgQ$O;V&m6g0Wtk<`MXy%9_r<$-J>^^hpJ!izt8e0RDzz>L# zq5rk2yZ#(#4I~dJ4nYif-_-MXVd1w|EVDB3bfUU*1G}!z*W=)~T$gna1o-0<>$4#+ zkN<{o5HC-;M9+f-p6PJ9_EmsWOHZ)9jEV;c}D&(YyUKOc8f zhwVk@UV{LP1A~XS({>BR`;hfQC$W0uH9GbIh3iY@O1bLFUuMNBwd%jg z&PW_PhC{ahe#6@cj+X04t4tg3mKeMHCoE;}3219W)}*hM61#tXv7G1-0j))JPIa%@ z_%&z&C9nG=i$2kML{z|R$6>LkkoRtBT-6w_DSTX{5||vZvWis~(<24YOGdmYLA|a* zFqez0dR&&h!8!?PTti>7$1z8aufwqRBx4@KhqpWnW6DN{Pb~s;=~CX zBJM$5UuSN-k3C!@TIjLK!yKMb;!Tu^*I!%S#sTZzUcc0%3hQ`qN#TMMZzApp+=3+8 z5y}oFwgW|0siK#p*!G;}~Y4n9!Cv;)gl_=Cf zfjojsx$#wRqgEeW&Fz%lH+77XtOVfAC18Lx>M!^gYzP5OBugc+H7bu}J7e&HNu^Oc za-il;p9}BT;UHXB$CYPR=~)zbaKqo?CghGPeIAaAS>)H= z&h6=f`43I3Mx_Rx>(t1--5uzaqVA?sH*i%93PPDSpK>r$e>4@&87R@WpW4lLjUj$A zb8$31or(Ls(7D4fJ!%#cSB3sosKXl^uZmdfH2;S7ycEvIhIv1mq*<(bUaH$Vx`Ow{ zeNxq;#ZfPmnO$$h_@){_b_m!=)P$ z{y=uN@a=RYPrB^wtDbpM*23|b`cqlBwF}_s*%g-wgZOk*-znfUCLf?ODO-8<8D)?hk{APMZ&cXtK$I|jSct;}9K23E`GuN|}{Xq*B8318C- z?x80e33mZmD}0nPm7+BztvCzLt4zh1 z5Ytvw!^^(=2&P)+N4M{Dm}(fA_m68Le^jwThPVX?Dcq3%!W3 z*Ri7J3q-I%NnE9AoH1Yn7AEcUv&n4p$wC!O%N;*Sz6}~W>HtEfAnVD4W8tAyLDHF! z2^AQHH*t~2=4{weOxtgL$+;c7vI~)|6?>7buvYrKh&{fNF$)|O2Zc!S3!OY1`D+Ly zPboBrU@nG%gOk(xAA|$Vi6wCJZ?<)n_XKjL1`u>ue{60GwA-Dbl5mv_k9cZloBK3o z*Ks}#&3Kq2+x?yDYXJN(8u@L;qEBM;S?AKDFn0s6BjH^erQNO{41U?lh2bh1qR%Evy-67WKWRGcN2%&`5lTx=4gB z+R!a^yf^G8up9PJ6-Fg|#UE*3InWLx+??_+oHX&K0pbA?;=%;ZR^fHlOCAr8S7?8E zA19_CyWz1Ms(zBdJNYFO8U+iKI|=q}nnBK-LzCOt>4M7Gz*YP<1~G1|3_{Q>3?_L& zmNSP_H_WFTK@aZ1pdV3NqcVM5T=*H1NBYY}q!SXiltJg?!ji(iOio8svAiVhn^lxg zgkfr+O45)X=96DmeFgKA{S}_y!-mrBd9|;981Fh}LD|xfNR_3-*y{+d4u$--T3_u-?U2r{ zN}&qO8}qLx6FY2nU96&eM&XMC$-(z6yqar`NW9+f!T2AbxsSim<8lEB`Lso)_a?Pl zql0`bmUt901%pK|>o?Z6lq6SJOct@fJW@d@o7hkHPUk_dQxh#f(>U?>4@7iXmvrKh z1{R^5ymj&)f8$zYhF}Flz>%)roNN-}zek<@xLRrLy1&zlHqpSkAJC;BTCl=b1LJ9| zR(&o0F@87Rcuv%DsL(Z7&>)fqfE}OYeHWMpW5U~Ny0UrFtWBZ&hM^>Ghe#?w{BHGd z$2GZe%Q;9)fKp47I)b(2o1gEl-KEJ5vdLes2J%uh6v=me+A<|U;zTgvyyG{gSy7u&IqvYyWBN_sqe8!@4dn%XPf?20<-}+7(kL8PYcD_yT?o zF2ZEHm3R8}>2eO=F}1wo%FXO0VzpGb zpy<#Y>!mYY_IO*OzTBQm`a9;I9ueT{8i4fIv{1R5!@3e(^aP&F$k@P4tNn$*0T9y2 zjELn3^{D&Kp`-T1vpB-}ZG{^0`IdWY$O;H?XZaHfAi#Irwy$e@>uhxvPxACZc6p|Y ze1HB*&Ljn4~sV6FOIf9 zsoBqK^~Yt2;staNhD(*^c4KS3dNmN}CKKC3s?P6i`+_b2OlG1=NjRcuH6r4=7Q^7(+(W_DyTwDqhQfkQg z)wsE*KT&i@ydgc#y+9Vf$r&i%C$0Mx1Gw(s$MY48Q__nOY}EeEy!}Ag?faj04@)cb z#Q$af<91ikm5>tTiuUyWqN@a;T5TO`N zdyMhVy&`vhdc5Zbe`3({|5R}=@QXt|m!3nHl55rp(**xsmj>5ggMzzvbAZ=^=3E_3 z%5@Je{hd1yyL?9d^y`+5do9XjU;OS<-IYnGg=J#Vz)+D-C;s@wVSfg?yd+ z0=bi^bN-@vYi=`1z!7SrHv2ceOtrHemE*Wz9~8BTdJZzcO_}T0A!F!vFgMZl8EJ{k zB9aoW*^C!c}Ippm15X17H9^S^W0KjG%qRHMecC+ zRz}9rY~TySwGLoM=3VD~w_3Qt1D@#@Z603rLxVyutg>Qfqn&H6CjHsoP<{lN&U=g) z6Kr#OM(LSkoi=Z%@J}?&=E&6%^6(HuBjKY_-5T_4Z%XRdUD-omRpCH7a8?*98x&ce?-P1voi7|vH0xteYU@`^d(D|11&2I~6m zMf`Sq?wL(cK|hAKU+~RNvDG*Fv(&dbVcDk5o2n%k`|6SarUqB8S!roPsPC^~p@A3~ zz0lKNM`1RmXBXeOTf5M>(vM{=kM6Jx&2JpcKOtqSVZKgKvUn5-)+3$8{{d}PPs|B< zN_4qHR-tXqH_m8TuapdBxN2qE#`91g$*cAx?0Vb;#wanpz*(-SVEG>{=-(>C_ZoVN z@!S)F2VO%ZCG=n4G9gRt-U?=BS!Vb1%f8itQFT+<$13S%iW;UZ7;!!mHX8P%7XBW5 z(bDk0asZ;Zt>H*m(z~a-e3B*y?5ou0R2b3{DA44rn73r;5ObW5jl1si@KdcvI#dkl zFhdIybc7D0vvm9(X0n$-Nw6P$Et#iW!AQU93OAFyNby@{qaWOwY3ezge%w>OI2D!x z1gGOvsF<2LjjT>!pamv~$N_{iM&!zY)~+Y(oBUdac>LN!C?CXc zS@7s2u@bMTV;ci;^9-Q}Mbc`#j_;jT!gM02t@of2e2S9e>uhTSUDoY^c;P0ii92*v ziQBo75H`9H8klrO{Fa?#0kzQLsz3b;R_S+!U&oa_VhLTT`RSf}$n@v+D)8w^t|mhh zK)7a9}OHWvm z!@Re$ld9RVEdwtK$we9g(2>{MmAt_=sAEr%b_a1xgne6l_zQnI0% z^Nh22zD7b(%^We+$eSufLT1n=q95dU=QzfG7`+3LLD|zm)_wiClk8IBLfED+6P4d# zlGM*`>_z|T{Rweo;OU!iW2A=4Z;dJ0d+-A_yw_^7C&qS7|VSTpBu9`^_ zdA_}rR!NV?m}_l6Mv{O=I2G#X5j=#i*Gv<3!xY9RBHVbm6m?qBaf*@itpG-xW|Oy$ z`R*n<7Iu*FHB8Q4EM5oTH&D62d?^`bgVIJ^+ zfUKav#$E<3`ZsbGnv68MYi80|?@l3YPSYnO*Tz|ix}MuR0O(WGK8usCD5jt(oE5*v%epp^RgF^`)!cnNIG}(m$&@j+P zUT=$PbGq8--ZHRHu9@!$ZZkIaP>hvM+-y@Y}Q>0{)^Th;T(&;$+GvbVJhcd`glEpIY8N*0Q@yTt49f~JD zz+(Cebd3&q*!$s_5RBN)&pC+Hn~KHl-XE-+sV(deRvv_qFiA=mc39NY)`yaq9oF(u z7aJTSOmuX#%Q*{u_Gs$s>yzAX_$H71<^&SDb4I}Eim;GU2DUY3gib)^AU+x2eP-l$oKiAw@^W&w&Y^GBPrXN^|mvctW1`LuRW%HM#vW z&A;CCvGEYp$vyS(;>0-pL%j2Xl>?yuD8VP^ziBQ>r+&+g+&*ond;Yt!QB=I_w){`$ g_y6S6je4F?aoa7E$GnKlkPz#olBQy{yk+?R0=(WFrvLx| literal 0 HcmV?d00001 diff --git a/pages/images/authentication/libraryVariables.png b/pages/images/authentication/libraryVariables.png new file mode 100644 index 0000000000000000000000000000000000000000..87ba619006669b324c00d2274d37b3564f2fecdd GIT binary patch literal 134585 zcmb^YcT`i&7e9<*K@=4pML@cOihzJhlh6dE2+|=yARr<&bO=ZZ2#P2Oh*aslClN?O z2bBku7HSem3<#lz5L#%Vygc9c-rrjHuJ_M();eYOIo}zleE6Rju-pii~e`w&v?9W<-Z%FkCxRyn+yNl zo)q8t8*fgU{GU>gEcX9${o-#dR>p6Gg{2^w*x-}TxGo~%qjvf+421SbV?1&jxjZC+FCpjZ1&MD7>paA^0GUZ-)BC;DyMsK*Xu$YwANLQnn z-{edEJFWdT~%Kv7XMb_oVUGOPW^deS-A&vMWv~%`R zJ}w$ja##O<`k{nm`BHGhG9tJ3>21VI?rfWAJ>U0_Fp!j^g-FHa%}-j+d#DmFqUzH# zY&*kaBntQFn8aBuKxU4nZ|)M*&TedNyZG>Q_Pe_^U{@&Znthj|Fw0|>3oP=Fe+8r+ z{9qqAcxYRRYgN8e1XVeF`Lnbc>ih2eZRO2>9-ls$5;soy>MK;RT(!ceAM`C`)iN^K zbBgvy+FTvfwwb4vvA9y5Zm!2>xm?7U2~z5pWN~WFCCyupauXMp>y(A1V7rhO1}rpvqdK6d)jhMwN!H|-Z_pNt$(3N1XJEF_F+%vM0>1zW zv5?xMeXI;TD1tMXPShqi2$V!kmGQ$6%f-D)~MvbMqw1iW8%`1vk->tOIn?oD|Pg^M>HTzMKjx-@L`=(jTXKyI)IV2`f?q=EvrT!K6^^_1xJ!^fHhDl zMN5ulWh~dQd{yZqbTQhL|vUKa+6Vmf;c<$)^Wl1%4GFhdkSmJyXxEr z_OGb-n;TBCh@Ab*^7zbj@2IP+%!mVlsAP9pP*txZ`x-LSLwG@m>6mh~{l(9&Y3llU zk20!{Na-(~cO>H()c+>T|9LMyk?;Zm9v-*9i>9HQWkGZAA=T~k@$W0z>GH89NpxP|uRW_Us-V&FyrZc$UR1LAp9tUb$uJsZV9UKnVkXBW zF2SQXGidvr7aIqDR`cx8^re7X2BgT}qYva9R?LQnMTLU*0?oOu6@4&Tkix(&vI4Z7 zxv9U80%_xEQpiVF4PKa-vnp`{KPx!O#pDwVhox)ESqe-=PX>ga#R@Z--L5BlbR*_{ z!|0ig4j_S0#d;;A8*u%hORBx_FXdXfsACHM|B%ABo86taT=>DXhX;pX zpLyuAqR?Gb-sxq%!iRYJNUYQVO1Fop_Cu_2;0g3_v2cGOyJ4v^Tk?YN1N3TOPP17;dlL-=ZQLjjni1^vk)_QXAQm9&O6rH7Vq-Jk3&JUAXP?YPrDpu`tVD z3ki#jzI@^jv0N-cYVcE)^V$aqy$4oFBiWq!$f)jn>9V^Pk>DP`>979*%zp*z+oa(+ zoDO$355-JR-N)Y zXwp_>z4wTdQkP{*$V>D3&6z;z8KtF^<2FMFb>-*Ap(p zuS|RJ@xSap?6=57YePPHZB{Xs0L2)rPFp{$y9({D&XBag;}!4$RJrkd`RjVf~H=vn+6qWPAqqbN#)vtd|!nb13xh zqyv&zbgz7|-x+hM*R=%jP#sjFfed<9Xu40?a$GiNOVE4Y%{jUmtSzA<1KZsfZQFUf z`R|11df?^j_aC3R({J|PJn;XX^?$GZp1N-wnXhgbc}xhxO-R&^Daor#>YD=jkxFK{ z8(9_cAuMhzi4sn8%+MvJ6#3=lAKRK$DwkV8#oo;ZbRU16F21Ej#~q<%=g}+l)u%?+ z($lj~iA$7AeVF~%QD{7^EHwdw4n@PRBIMyV#R^m<4-)oIGfAXq5-Jjcj!<&`hUhp5 zhjRMNr{c{_^psdB=N}D)2zgsC&81B-BERxaet7eopJ2brJ?fp~BGoy;x;U&aTbk7iB?FVdyRmQH zycaz#*no?$%7|qiVsBAAk)``P-8k+9k-28>)`^;N;KkSp7)v&i$ zkWYXTZN5SF&3m6?{sC)?g6IMhwKct>tCE+5{r*F0;pRw;O#XfIL!Vsuaj0jlI?2*+ z)3op{7h`PEB&L~Nev_ua;0a7s9Z=@UNnc5|aQt=85S1t*?t$khuetI+*FfId;Al%u zeC>yxm3lEfXQS8IW1F`6=HuPN6=Q>(jZjo@UWDAbrkWfClh?!q80MzXR8O&#Kb~Y) zQ<-K@XrbS3J7(z6dKm5^9XG7Pf@*-v5w6!=G2b7vva;?OMxDYw;>p-B4*BP!K}d@k zDu~8YO7F3ZnD*ml+NT6I%}PpIO#XOM{k7(OkW%rU-&v3@PL7bjj z?HOA3D&LNtb03~FyG$oNXOA0MymBU2OFpOzA<8XGtVS6^(9Szo_PpzCV;fMmx)(UC zvVp*1J_P#b6WX?2v@P1SF|CtNwg&w(df@rzWUv1-0=WW}i$Ir@uwT%|?-ztWE)_Ng z1uf>bSbmHfNgo|w(HuT{3z(T@m?ze`v0Qq5rXl?3&h3_xC=HP^Tc=zt2ZSnYJ0lp{ z*`KSg{`X3m@(lhnS~{IqY@cXUVyW;11m`V=|_9ew75w$Zud> z6~vb=N`sqpAV3)$?=um1d_V_YI-{!x;FBb0KMEwP!o_z>DtNGZH>GhS&HVn7Z}s}U z&*0rjdEr8`56-=f=H|HqA75>QBZSXg<}Xlh3#-=k)J1!7n;puCyh-^sgH&2R;>0Xv zW=X6rw=h;(92Vodq|hz{`qB!R7?FW+U`IR6tP58lm3L0+u2G5$KOKe>J#@6*vt_;5 zer#7S++jdjRh7#&>F$9{_F!wjg zhEwC`u70{ww3v6MW@lXK{aW%lu?lqawt`0XnK7}Au_IBh*ZJ$+cb|I6E*4r#eJJr< z`~8*nt&StB<43mSt$z=uZA%VvI`MKWLpKgl&+_4c&jwVM@B$>|m^tVEW35Q?t53ZA zg>1sjrpG?3*Wj=Poi=4a5kGhgH40aPnxP&{cJTPry*2g){m=R0NA$^9zT_204uHPc zLC-$hjs)KA>8Um-x_UJy9JZ{kd8|;`u+BBU%NM?MxQ~-#)pC`}Des`xOZ+$I1^) z`bM=2^hK^X++i77yH@jj)V2F&!X$Gwf)BR_f5M7#w<__E$Z z{u(-M{kqbu72MLb~m zdj)MAIa5cG2A#TNVf|?SnOUk;=GFXzBs_hhm?5H8G!4&v$x`83Nm3+!b!_k$VGZI* zc=A_S$k^teXTy{7G;G6L-7K9z^Zbj%YF6n_e*;Nbl3^D!3vB5h>it;`&M#FY;&Tt* z=SNt$cYb8?)wy8$`t=jHkbl!#b_%#Z^9FjWXa~8$?{Dh=`6!Y$dOmdEjBgOAZSqnS zq|6`^-y^fO5UZxI=AnwA*G#L?M15e0#TxZ)C;YZr8Y*=B*%P)*NAV_*p^{?x<^Ljy z0!@J#a>77xJo?q!lpR-kIcWWBij~i0Mm&#-n`Wz!Wy&1fdD}pZpHKdf-wRp|UlG5^Qc-F*XZ-`G$?hfO zsEV?BZLrB(w;p!z-JTgN$0C2XCH0H9I>t1q_vPlGK#kIX48&frYSqY;PuI8tpqmcE z`Z%eTt&TgZ&5Ti6IZg&*T&4x+6sjBoE9aKNsO)X@208=`qnp!rudui_Dbk8p`bP#) z_Xn}~{s%OhSE0atZn zxNmRkECSCQy%W+l`2q|Z1&1n16obV1O@M7|$t!)p$qRB^CHUc7%lw^~W)2aPc}xPR z#RUz7gPhBKtRS@RYo)Xvxyjtf5O)a8k5JZgz<=!+<*;OnhcFuQLTaYIAPzMwBLE$N z%{XkJ4yY}t7(=VtMGx{QH=&7da_qf`zb8-Mq1J1oX==>OhhOq=U?nj82X@=*`?qQZ zcOnx6PEcG7P)eJM;AjucSq(jS;0LfNFFo+l=VlrqVzed`bI+t83jXh|vj)GvR5ep$?+?1tjwtWLb+5!1; zj&3-b&Y0YEC{7?fOtZxufOSzCPVx9Kx;UXmp^QvhsfO*<=mzYg20)Y*5yGnPj{BVX zuMvWuedk1y@Y;TeX-Qk#bP9-=99zxkktKr>gweot9UNHSMFG!%n37>kDcz+q?mmOraEmXM_ z=5vi5tt4j7HuzV>p{twjBo$H8(=n^EzRzI0@%7J_o|QIb)dd*ZEEJ5&e)B=XS)N+Ei@^PgI_akow>L!7wu4 zCh1FU$HBwevEhi`si4jY-bV>Kd8$rfz-hoBVCBmKQdQtfBe+sSNg9SlF)34-iy*F?1gc`xV&MQB{_ku_rji z$BrTXO6#m~k`@EI2&Z7pHn96D20H)4(!VkzAF4xDLfrR8Zf}TanPHe&@mJsX$))*O zXJwTr<>ge_BAe`B#YNYgOWT{n|6Ehs{NduvRG!8hqSvvnb@+GQGnywH)QfFpsgN{A zZu`H&rq8l~fWfLrtB#JG%hqRu+8$u* z?}caBGBP@Blj}Ni%R8oms}UQaB4jpj>3T}J`!->M`(AM`bsAWv-mw#ozgOww*2-+E zSP$(~1^FYZAJW@6@Z3fpaTj?jkKcVo8!6pWRbcx8L$ulZ&HreF#N;(D$+UH#@33Vw zfnHB>^DE5Rz#1i=H0h*eYd^I(_UxT@4qZ2P=(A_6LI@%wSLX34Hwbn2%}I1Q3l`BFWHg* zs(%%@Cb@a8Z-3g%yITiN{(@)=i2X_pf3THw>s+f@Ev zA**D~^$TIy?Kf!!Z9bcpbcVt*8VWai7yxbjo!L>3G_5s=2?DY(=l-3*RZFEtL49~W9L!@Er@p(pnr^2 zn8RDrwl#-t)9u&bhCO3H@)N7aD`IyZanm7EFYLd`O`=B<0Wu_Bmg30FWa01^8ry!CT#7-rY;!1f>e8%&(r-THHWb)_`PT?+v=?azt|vl zxd!A3n&Q=PDl-j{4c-kA$IWpG4Ep4)YeJX^CW4gZd@s3oEFybmo|s((S80oW{E7a? zm7Stgw|+o`l29syiS5jMABcvT=UBZ7+fJ$b=KeJr1L5X|0;!lT#B#1y?jGoBrgMNs zStVM*C7W%@i3i_IA>m0E`|0n)Y&~0%Tl|NC=#0^M`2Ywjj#r+Dj45`+pFpoIVj{@Ag%IN>m=U>V!ob6A zcBEUN;|Id>7t9w{{XA?#7v3GJxD8;)z0gE%HRc7UrUl;X`5)@P=bavG$_M#LKvzW% zL(sMVycLz7E0Zw_;ojyR*UWT9IS~~Dz91U?nqe!hg0V4KY>6kKsQ12|tYI67%fTMJ zu3V?jx0$E*%xcO-#EK`!NyL0vd^2-PK`neVA@rpmZQhRCwf+nX%aAWP5QmoZdj3kg zEcBiUQ1r}L2#>&Eka{CiB8~c1h7nJ)4=2%c z$;T7&2`z_o&=;4%n=Q>WJ9-Y>mJN)MFm5ko?a4-ysnJ?NME~1u8wH5wWnf!vmqg76 zNd08v+{1)?bz=j}D}cCp&W`WST=VkIGc@4Gm%|=;aGGzLaQN+KeYra>byP*m49+SY z^1;N$`x6{Y|BAGkVhx?&u9iPSXR(@DG#_wAlq*F*)AsF;3-b0}e^d->OF95&qYvsQ zvbN*fo0qNXtL+A%qQ@#~6niV@NoEgRsvu`md?}$^N2*u#dp{VS;oYKD93f{QwQaHR z(4*Zy;M02Ztwn;Y>`1RA1ho+_i}D}Phi$c-rM_CMWymfuMpT$j(tNd}a}PsfzDPZK zPp*G7(f*d)+DL^))xKEb%DO+m@y|y-Mu|FTDWpwXcIqYT&sl!T!8SQX#cTMkphgY3 zB{<_*7)O@)15mFz@3PrZUJam;t4dEd5#XBg1QcrYnNays=sBqXwW39R=P>%st&1U0 zp~=fR_C4yY{9=)PoEPC|s6$r_6D@}R!nM@3M{E+a>MF#lp1bZo#KKs<<|50RQTt~k zD1)?f?W;Jpp2LDU# zr2(UBL;Lj? zdn6U&9r*Tya4T(iklW@ZGA?VBypUNAPm+?A1BXHUO-wFpPe>5K*K0m(hPppqf&^KT z{$X0|t^Wz+Yq==GaG0VflTajUBkAIqvB)=J4ss@KEl3P?2=+m%Z3;!Q=zQ{WE)2c|Xn$9C|XRf#!`%bx3!!0{- z=vSm;;=%-P7IRol#SGO-445Po#P3(wmg7B! z$Cw*BhQE+nj_I{_2^5db-66XL{6d%Y6gG4zQd2j^_KJ&(uebhf-kErm2DBl-@HijG1)K4)pt@qsrB?MmGY7 zlk(RzId!YjsQ`-FbrM3I45)(kxhS-L4z>H$FRAEWh*@B)fws?FBNWD{A&brs+p1^y z@g5p;fC|(YJH}>y{{y@ED5a^l7u^YjblNY30KCslWKvsoBO&>8`vobjfOI}-3?{xc+rdd4W_1NVq`tymKH&=Q z^KuYAjGX^62dW+MY%8ic;D)G@33ed~SK9zD?*Txsz%@R>jzz1PN6{{=ik*70i?tu0 z%(n9?GW#;NMshYb8RI23$N@wFBSrE$(jjo@wI{*$V~X(TMLczI=;Ejk{__a?yO$^R$8(mM47v2~&mWBr z?ZcldIV@XXD@c@JHN>349v}4nv(ZoP>8ag*D04c*8$(rlVA@8SgY2br3{xerqn1^# z_VUMTlveX9erfn=2+X5Dc>`x+@>KE~A|D!>ADc}55a@0W^{zUy|3zgl*XcJ@a)(dk zLxf6|e5xoatB2=>*4bbOQGUK5Q6Y@KncLxqS*s$>Y+o#JtWW+;GhUA8%)?2)EgtJv zH+FX`%M{4RiCK}J^iXLR-E$Nb+OX;LK&z3nyn7|)K^v~RxW#6zjR+oIAVTdBpA(mH zqhZ3D9(=ebV6hqlhY@2o^b~WpSjtLe=TUGnX1VHU9))K$O?luI`-t%YV|-RbqtPmC zux`*L5E&FSg$oHo0R|+i%qt-~)`r)mT61OYk#CF@uAM!crX+36WBMjAc%dR>ZTntq4#KSNVD*%qFG(P28WD&`8aRdT5w>kg-5{ z%M?>DQty+w+tPM_E64Tn-*5s2gbn7Z(zq&dAF13Icx^{+%48r|14p0a7TR zTF>ZqGKtnns!U1?X?|Ck236=C7rZ98)%4w#*B?66?B;y0nFnq(-8J-5NC^{cGvzZz zqz5>AIcH;l{d)==BExpP84j2WxM$qUzOSz`o9q;~L%%Bp3_85<_tzu{;9^EuG4 z-OacaoGzH8!i&2UHSiPHw6IsFIDqIR`gq1tNBrazR}LnZi9dv_-P>K>y`&V4ja0oe z(3npLlgf+QwRMf}s+Q%4LfNfGN9euvTO`G8i=b=;-1rd~ z_3W_^9|CBDCWW9NL_SQvKETn$x+s(On~(h<#JMdyU8Mp5V!jrnY;V zYMgcUEhN@lNMj_2MSVaquEocvE9m?tXj_wA16f{_BPskK!pfpVky+W<@`qVjHdltm z>y`^IQ|(32)AiV}Y^rKaW!q&rKI9erk6lmjKTFqMSHD&nZ*j_0u=xr z_E0W&N~znQ>ar?e8@pRWN?ab6!pPs~m6dz_YBZ>Y1K(bdQ3Tuf98j@%A>yRuRhsDX z*m)`bI$gE~4%k_gj5H|u@sS;Ed#ffUx+@<-Jm#*tao589c=w{({UO(zz_KS5IXVxh zlf0ZH@(+tN?@&V{*ZjFT=`jN%tAY$8rZv)-uj2fU>y3)9Gv47qS>p$17y)QstQJll zE9Nxd0X-($Ikjg<_A)c;`t&G|7<7K0Rad)e#(qmgbFBKaJUCTiYdu((VNQGdXF0*9 zJc%%76_$EJI3I1{*WQhszbd`gaa%o#XAiW&I4v%Fxg)$0pb}!R=^Z*-%m5uvJXeG6 z4DbgWUKbaYzuFP$qs|BC#-#&6qRu9KkP8kL-$Ar+s=5x2- zPlh+tv1HdNc5F7gw8%b13m56C+m;@;9!7)d3ogqV)knp;GICWWWU(Xt^yBRYVFJZL z<>t+9NE%p2)@|OE$~d+cF81EOPCUX=LM0~nDtNn_^_T1#sO%NdP+#R8DcIKTYep@C zIuUg%_;%vRA$JhN3uWZ)Yw2zNd9kWbuhP0twP|5h9ore^F;3Z zLifg#`2(C*?=b7$R^C?~WX*jTO{`97^HWqz4zZs~Q+1vjpE@o84ll3xbPA4vlHoM> z_>F*N)ZWhbZ+cyr4Rgw0H*}D9T(HoNx^8&fa+nbt)ZOZb{&`x>_BIaabkvmhn3Z5p zQ+dU9^J_4L368xfgi{gy4YXbw zR_vDu%r#+Pzbi=`l4k&>j?9<#C-{8((_GeO@gYn}7LyUF!Qs^QO9#NK5!pLz-yx-L z;+S0PL31Ua)os8l1F@xC&WJ+7beQ{^*4TEmaCb2N;9c5fVdYIhU^;mrF4`7)H_{PM z1pf(_)lXg*XsAl3MvnoS>&Znr%26I7LXK>2u8ElD4QlV0p(n~xuavC)PK=0D;idQa zHT!rL{ze={I%J=={VIKb92qeC*M1N)Jg)JMl>E<;?W-QO0#z#i%Zq4lA0J!tPb{@6 z5!lBy$C}5r;u#<$Cg#03?=vvI}uu2v7bl5T}Ve8_DttkZCDrePe)wC+bE%*1`Th2C50Yi0Uu#L zM(O@FU0gL7aLYc7T*WOZ1&tlue`cV)voam*FogP8UlX6OPimpmTU2NbBoOmdoyQho zt79!9b5-BR^XxR7Q||=B=X=M$if>j_F`HbsqqMt!i4c_@LBE#tI2{layjR?8bQ7so zZXq$eJd!W4JKgMwSE6Nb(pm-hx)^DtPzWbrsFjRl1#ddVfZ@3^T??p-~_#rY3`06*^)oq^qWcE+E zC5%iTGUvQL8bYqMS}rnB_=bA6GeER_R(y@uFyeWV-AaJN)0D~P%_iMX!L;!vJBZ?= zJ;_(HnaGKGR`6(A(qb*CPeutc*)U}iD&GBtJMHXvYOUR-#y++uR${$jka~0x#sl*8 zA=ANhkF}1249Fz2FSqp&G?$)SxS0?+jPwc2aP?TtD5c@X;%^3PSeBoFSDs7UvvBKr zo|>_oU%FCQRRapKm|NC(EFp<`VcR$0gp$T{@2f7s+O~GNnvWAr`O_Xfr{uKU3kUy4 z)w=c)dghvg#v8W+q{jc_jOCf21iX%{Jmw z)XDXt=2p}Kuq1rpM%#0djR>>_HGMlwO6K0$)EA4<;jvB6(Y5mr^Biow$ zXO@KXn)IX=nr&Zw*{%tH#^n>P)idczzo_W(mho0rrxQ{0sOI)hSgnRvIXNzFi8%*y zBm)&q#B}rafseG}$-h$u@ssslre*BOM^D465 zW6D_udpQaM=a0gvM)p(ld&UWmSkY>K zP_%5MOYhr*U4+Q=bD!0H$c+QS(6EtGQfRA5>S&r=6r7a&{w5;}uYxvH?UR}UZ+L8R^=NM)LsaGJ{ zx#IJI@BZ{&-1RxyPa2CMrQV^8_3;z$)g<5>rvlSc$JvT4x8a8^!BU4zX=0sU8@|Q{ zj#~wyJqqBp`E~7HF<}XNo>urm%69wStENQi?;nT6HWe_bfq#m^aM^iNjfV4se~-OB ziTO)9@$}^zF~I#F>+CNolV1w`ZXkpd)J`SU_&wHPVBY>p4E1_y{BkPnKK%n@&vet5 z65!2^8}f7Jqk8T*Qd0gI(@O5%E-xx5<+(Dwz0;pozI9omSJi|7kI0h%RO;63WfrHh zXH(WFv1&xOJYIHs5mgp>lr)f_vhurebs@M;nA(LKOb;U2xbOe;ME$uDeg6}4Yr`|l)h_@sj{Z_cpjESDg({5=W{SrAa zDqw6h`ZnbkwF)9*HRaGc?LP3ToQz9|bPC+0wdICO3-yczJID;R5`+n;DWlMQf|&u5cSOz)hyv%hc{SUvG1S<0B+)_|UQQJ-~pysBYg!Dcf~m}pEPk-EyY z>M!Q-e9bwk7~oM5jtDPYfH^Pps)N54+Hf6s#pi6b48m(u7q$j{djB{z{Jth!ytq#< ztjVcRWC)=AmrPouYNJbgoLjCkLkoGbve#uO^8VkzfkEz-GD0~#=Msg7uw<-ueTqe6 zSUHC^Z`f&We4)YD`912BzQlH3Ae+aFDfMNbcE)YX%7}{=_R^|{f&JGX3R$i09AT=B zh%`HPNtvK-q`;|D3V#GnQozr#T8451qfVU)>TY38D&oS%REhP1DCI^*l5H>CpHqE| zxyMR22tn1M6Ref)Y4wsMqE**vT)S&T34P75S=KRdUI<~6IXoH1;6F2~h%OIYFLvMA z(^l$u{B?W0c;eoaEY2f)M!Ld1=G5KQso$Cd34T#YkMP*ALx)=SgbDV} z$8J~+y=j_g+ll^@mW>#ItfZrYT%4D_7j^>dtZ!xXwT?S<(pqkQdy+FFYHQs`vV3jQ z(&12zgD85CIN1Ulfhr;y{&I?tfnW$aglXjLEHv~Zx>NF=|JQ_^RE&(pSAKf=MiKxX zr)cWi7H+r!9do~4;I5F^*IV5cw05G{$7pXW4PQ!y@_SZZv6?iZVVbYYx13q7#2QHf zB4UC}?VdwevmMGQd&KN^Z3qyFOGnkquKB!h*j!x71RivNgES4VlcJV?ZLEycDa^CU zXq}Q}0+-?BP)y zjc=9vQvj1a4gG2>!X3?>?LAYQtF0XmPt>A+prdP!rCy)!E>Vqh@%MX!9OUM+1ZKn3 zHI7M2@{FwZIKIGK?>45U+7Z!nfa%$!=reAA^7mfK=&laldoNwJ@HaS=(q28*KpG4r z)65xvQ+(XEb8bmbeX}7|gQNaowR(LYZC8w>eoo0L? zsgK+qJMp9Dm}wurLY#94BCT90kNbNvxK@;}Sf$0KM|R5?AIh{pCQI7tlAA+7wG&?) z95sH54_b?q!h3hC2AY2^eO~{;wyfdkk}!%?ub_xErwrfIq2y=7W7)>vN~!Pv9_3DO zB=xJvug`H4H_hd`z_1442=8=t{e3M1E5z`BN=Nt8Dq zm@>!h#ZXu)_}zQiKQPNVw{~)?ELL4}0n+>K{E3Q#Ct7CJZoHDsC2-FlD5+OZbU?9s5r>89Rei#tSa;xCu9C~Yor@K)2bWVCO!B4C@z15wC*al$ zJ}B%E{l-6wHE6MD8_)XnrO-qMq9)~t|CI!6>Izc}q!$KV@&y?U=e>;bn85|B7-<#M z-pgIFk-hsoH*Cl1_#!~E$l09w@_qIF!S=@u5iK0M5xfw<(bpBvP+8YFmn+LAKAP1{ zy|v81%CeV2>L@~Fzv*RG#md!>DeO5IuefsU^rF_oQn>Clk>4p3Yi~R7P5&heobcH~ zwFp{+#naftINGFb8}rh)Xfd|DsVaHv()|;JX=>Qti8ufCA>G3xaw64rh2BsDM$#q} z_UgE)FNo(#okfzX|E+oXPE@6H`4&z zZrNAe(xl?^Z8Aqi8L*^p`~RNb(=sY+qYw0L|NeRHMiYFRoooFx>LXcT9lk6k>; zi{&r#CV(kRN0fR6kmF>*Dj8--eZcRRW_NQPG@5UJ zt?z`;KQ{`c&_3U~=>5=_qkDjEhjqzq} zj@?QS!RtPtiCzOG#A}#3>GWk$_g~#sxpJ$=VLW)(A(ZAuvFu~#fF=g&S|TqDE1Orr zmQOKiw4Y`M5F88ZB7egvDNcrSs755$uPX1UTgai0FD`hP#dG~SO56S@Oq`%14&%&^ z5!~{msqZm~*UKt_Z;A~>+S~Q$rM6w@FZ)0K)2LzH52ni;o9E?qKu>Qcq8coTWq~{A z?xRXKNwb62NT*VFm%Yi)}4aET7p_xRVViOP&$#^64-Y+>pM!(jcQ=8EK`^ zs%BY`g^2?a><<;zL^n@^4O*Pv7roU#jwsJZD0u+dMONpQ0f?WH9aP;{Q!C!jDF@z_ zD$q51EFgxMooqw#@_n&+9-2U}I!_Jtr_Gywoq2ToeS`-!UU>7U8!4@OU_a(HhDp3^O+wow3g;SYTh9?BNc?l<2X^ zVccEa&7qdQG=*g!oQZT1vmz3SSQf+q9i>5cOVlYcD>%nTF5L{PUQ4@dF-(?F2JU0Z z_zr$?bIEwqjj`w!>@~apz+7TVq~hU+r-q;^T8Q7W+=~M4T>{|WERgQD_b3Ji4NDCt z=5Qe)=LAIF6}N0n{$fA_EHIPI7a4V*+Q zl&{W$J^ays!0LqDk%3-!Q{Gzs)sW1j+qWep6wPaM?T&;Kt_<9`5`41H%r(iVGtIX& zg>YK>$T;HbD&*%?9kH~7f==FrAng*gae@CBj^Xad>GPGFn=d|Lg&GpkY+o2sjmiq@@Yz`An_i zK+jZ;!P^$1$9hmJi@Xr;lGA7#t4FyfzEvrDo_x)+Br;LGo-?d(qRE^Oe__Z#VZ-AX zI#u6+@=D&&;!3^W-|uO$@zSX^`h>lzeQ^C%YSLYe4s}1Q8nv>UN^H`pydNBo@nq!t zA7Z3n=gubpN$J=N%}+G$9-4sj1R;ec3$NDJMFOPg;`Xu7wQn#UwY#@aKtpaOS43h< zOqv*DKkRQmFJiqzsAhehK(H*}&3|U*4>c|cld%3;;(qaB&5OFssJDz?`T0>94@gj} z9B#H+!zG24V$iyu(M7=?{Ug-=#R~Zkh#`B$BhNn|Vg$*ZTfx7iCdig2QpU-$>ctZK z?QCZJ6*1gU5LCfM(R9`B`B1GLO>dxT|D~34Os_t<(5{+q_c40qdb!Ny@Ft<-o@#+| z|2VYLpnElGT(JQY&^@m<*8armm*p$6OT>E>ZHBa}*+kyzH-Gk=L%Voj-i-s`>Z({= z;Oyr##n8&*kX7$e4v(oMyxb8kFuVcS4QP1Sebf;rbtB|5hts3^R>_?epzrv>km{vF;#=^Av$4f_lk_zkZE7H1^%q)9u3$t*8``ES5jRq+&m)eu?R1q>jJyVyY05S<}uG3j&51vmu*L)>g*O=8Z!?G0Pk z5xs-1T_@WUDqK;AE%e>Oz|s;SR0qYf?#yvBW2q1WRESH9Tw8Gmzy3Y``u26IGovE| zNH2>P0WMp)#J6(7Yw%5ZW1Q(8^THI@V8ZJJjp7#M1MP}1W0f}%wxGkD9-@oj8DNk_ z)5}t>u}F6j=5;uSO?Ij|Tt1>x#ep>2-|4OPZ@)m2PT9C~*-P&H`({hUdpYZF>OO`P z1rg+b%ViaoKcY$eo#PL}@mRTotl#^e@~V!FgPQ9>u>2Y2^DCn}q6;@B#R58APEzX` zj?8UZ9v4p=1)A)`8ss%LFKyIrCV+MiU}Zz~^ym|pW)n0lzcw$0`pa?^K-&^5aEWSv~$*`N-ZK<7Q z+Jp|YQd+eN`C()?s&{fiek39xJ_Ua9Q(>_Vv+etJfanjvg+lt&DAmE@xQIH@ZTZ?d z_ToYLPY|O6CV5s0pr|jMn-bPEg(P4OjT$aNZ-~~R+kBM$Of)R~M-ca^Y~>eoU!d2$ zsQb6hHu!k46$@&VkXs-TmAf@piRK+)CFSR`sLd~uj#Oc_>4d*j(6`XqRTwM@I&&Xo zZmb4%7z}MIzDJ?BDnKmf${QMBYlZ6u|H_-d^qKZc#qX+Vz(nCp zm<(q&@xXID!w^LkAtYve5)k$O%ob6sqb)Xa|hU?EU$ z`(BJ~r#CW;BMr5>z-Ss(hD%+tuEZ&pWVj4b(wmn4iUT=zK*eHPD)nU zI&>f#2r3~C_6u`Y5qcGyPLQy8|G2%2#77gabiRzklTsJE`-%bw8MV!>{d?*X_)skW zVAhaa+kdO=Wvd0q)zrn=w2iMkHGVQ<4egqQqdz-ij|<~kITj!8q$?i2=rbD0KBjU! zt`v!xG&EhAKt5D>lngH+99iM2HQRYw55lC^E;rtv>_lm_nF6N13BYU}E3F&ey&G8# zdpH$pXRfhrqwcLuLciFbsAe$5=praxsnUB5MLL8Ml_o6#0)!rrPAEbM zp#@Id&*OfdbN+$z<()4p$#1Q!HTRmi@0n|^xo$GLp-l~)BOLjfyX=q4ReAs>;e3*R zd;}TbXF6fj85lUrI@9r{CMjFrd0q^9+-i=aHTapXl?XizfRi{wYdp?ugMNjdX?(7* z2-dV1@t=Y%18cWxdMq=axu(gOwyCup^T8$4(!p_9mhEVh{ZVI=k)+%4P}hzFXpt&y zui=KIK6+OcS{n~jv$jia4b+E?o8h`jvw!hWXb7ljz72?-!4Z}{tuPN<VXGvTDB>LXFteyeZ8|A5B-BGaDDfD?MMDP5qQVtEKgGDhl{1E}{~eEn~QlgQ>uBxJQ_0 zftsQg#LOCG%nMv++9d6|F6#(89_Py`^D@h&7QZlD==H?6ICK~kSp;(|mV8>jb#QK! z>5rf~^T0D(qc?g#zi%TC_8nC9+B@}n$FtlL`lW0HZ%T>sh1yk%lwu{9gIy9&XA#&- zin6bo46n-KL0f(Tj=juqFw^;^H$c!9B6ef);-|V=kB=wh)_F*@%$)K1!r8AIw>d&> zCxG#vwuID+1R8Q(ZV*pGoGF1mEgeVJrDE=bJ`le0cf1xESz^2x#lW7gX-tzv&S-?U zRdd44TWMVG{l=~{shn`NNq(lq7Bj|{IWzKdqj!?NJb~;_3w4T_g8Zco=8*1M>*3wD z`wX&L4m-j^O(WBJJHQzAG94|{*ROx=F4Su|o_DOf?#N<7e(h`!zbuN!7vfX+47Hec zgFOyD{q4HgYG(94JGi#!WcohSd~zwD$vC5-voV40&8}udayK{)Yq@*%q`&L&G@EX< ziV41a>m>D#t_>}x+|*9SayM~O~278mOkjGzaQy@OSuE_7W zFuGan$c7ji1+14z{f5f$L3!UF{_L13%w|%7AGn~0*OHoT-+P(uxph{$*B(g8xWb?3 zg#~-dHtR@CrSmBjR9DV8nHzp+kcshmqX?R2ney)n5dS^w@ zJF5v8>l?U#ci2^NR>5`Aq_}j%>6EoYuL^SVD4pqOZ)M1Mqp$1g95UyO1fduoRU4w< z_FcHHF+-Lh^l6&^J``X$$Gb{7pg!u-ERqPkBsg;?( z?B==fV;$hH9TiIhC9{S`_XYwYu%$CX`Q0PL7g=-77EJl+lfM*H1f*aXn|9HD2eKi^D;Vtmp_|CE^2sJFuo&ADy<@~PkHq> z5dz7LGfaU??q)gizc=~;GVv3+Tf<*J5@a>X1HVsZN|hw*Y;%jZe+l?UU?VtZ2h)^X zfGdkbs8TOfFVQ?Kd57vOunTa~UioV|F2!>1 z!4gI6RcyK9SO^8h+JL&C??|z>7@uA|5l(}H2YF9_2 z!Il~t{cjss-q6s<*>*npi~w_Circzx!e+jg3%lHQqXxI$olSFwK|uQwswVooX#p6A zp@fJD@bIpBQRp_eZp;c8X1B;<1fkFm*slZvM8)VNp|Q> z;L7K(3DY_fSVzWc`%zJT<1Be?#&>|BA>iydKTgN_Aw9qI2ckbIK`RwwF^7QkOZ?yH z;%v?^*doQPjkQ6H7F~rsQo6#+)jjB{U=M&0O*bMW7aKpcSxhUzcfMzEZnz9~Vj z(P=S|YxamOqT&5t_>SeDFCC|Pd;i*RK=d7j+c}TJ@&icR`=56XE=C$#cJj>S>AD-~ zHp9z-!MtmFwG>Px*A*5|4R12cvG3zwzflUzL4jk9&)sUtBKw2{1#Sn%n}?X`LYR5y z-s{=VwDmhyez}s{eE1c_3jug*-JV z?RD>aUnfig{;*5I*sbkWljiD8z~qc$U2#g_VrmEnk1W-zNT9GgorC$ym~_oa z`L$*3`$@N|iDM<8XV3HOG}oH5#~B!~LZv?I_WYP1-V{7T`-fO#zovPOQxvWLR3PGm z+je2jta&vSow$&hDfM`&de|Opt4Qu;a9P|O(M%YZ@4`1IRxn%iaC>~3(XG_U?vsTU z+lB)P!Lqx$O6Qo#_E>xdml+EM3J$NpFZhwR)ngZrS!8&Sqhf2l!dB7yM~!MGHXXH zF3k{e$h@<2`^Lv5IeRDF_)2r~v&|Z)bm^19iNi#D=i|RwgLjyu$4&gC#T)vr-FX>; z`(&rS?fN&j$#E3hNFdByL5IcP)V~FzhRZ)@6oC04ghLrBAL@3TWp15x~l)C@=uvKq?{xsM5U8g?XIUISk z>wcAW>7xeZMVlM+ZMedO`_6Jp?brQD5>1PxENV_6FYpcs_Ib$m|cITGtU|2TRYhFD(LvH$?T64Btuik!xDWeq#l)z8V9ZgZ*r0`H=-l-1n``F5C=MTr|p&_U^~;S;Z6P{rj9SF=QoLqiv8}XgdIreCDv%4QcF3HyJGf`R_GAdZ#aqYuyRD zUwE+)*{NK&kYZKQS-8yVj=dW#h`TuzbNA#`mymd^!JylIDJB+ZvoBVS+97B>U0;B8 z#op$d6zyt(G&)zjS!r15a(FN;@@kn0Qt4-L^^LXktG?M}OK5hXNhBRY@|+C)_G7@c z@o9_37+sgzJ<;2J1B=U2p{|8{_SQnlBuvBYFQ{EP;Ka}u(30f3q{eD_= zU+#$l`|76T!|L`$r{oP^DfVI$s+S|bBX&)j5^n1#>0pTKzRlp~h9r$WgM+Vg5jcC3 z#3n$kypZ*cx!l@;%eX8w`>W~^c+tR0GecXPDmz_%XQ64XSoQm0*HNgiOFiTs-e0YY0YLODw83i|+#ioRvBMV$ zY+4i%+Rn*oFaSMbGa_KfHwV;$o15{3xC6h=(;mg5%Wr$1rgX6c=CtgNn*?h>u)-^? zRe_;c=vQ>>@EaCdiGJHLrk(GS+ULQwm{XCofVSYGbBxihwf2gi1ui$HIdhO(fBBMW zHq-HH{cg0w%A<2*)-)JOTEQhSw@wDuN4UMF)WX?nJg5@tS)80+-OrNY`iRm^J4!>f zK2_qln*)yxpMfmrxRfv`zD8<5>J}pux8*gnIYus2SO6ih{8*VZVT!je=j1Ekwk?~> z8L>x(ZTS~Y4pzhGBN|6%!K{;iKtUPYs%WP)AUIFw<)UAE9G|M$diiQ`c4_4EZv%!(yh*GcSlULP^hl8c9L zlbqELi~Nd(GN*9ia(=(lm+_9$O!HbLQ{1H zBi*@;o-nyC&~5}h+ht<-xi9Wd&G)g@*8OwYjDWys(g+zg8I|s`JKjz|91Vdh4qK9%+eBD5C4k%^l>Bwy}9Wc#nn8Kv1 zWqn9a8c~u3yg@*6qT+#YSg|2{&4UHmni!&_#13Mmiz7?S_y|EIkRYbnz#n$Q{=HDR z+{>fsK}uj5d;vnPAbK6h5F14!XLWev(}V!AlIDG4C67KYY6onGz>$Nt`Dwd-R+RJh zbpvNFR3D?chyI{R`FU-~3trO#27F7&S+}iv0IU85B4qa@q>Mt+uOR*Yys;VoGmBlk zk2}KSzMQsS>-1fJa4=EyKsz||apXHXcKyc|-M5(q@5>SAKbOn}uTttetf$YY0Ev|= zAB;hALIjt!7bK@0>+UBAvxcoUK5FxaBvuUB^nNrvtvpHC&+<5<{yV^UC92PPx)YPK zmvW6Ltk3rR9MfU^X{&mXT-5)DedOl-qN9m-w`*mT!x1Yd1-r%#c52lKU-Uak&G&C# zi2h1r#BK>kh;()8*wH=n|9B~ZQFyBed%=hbw%{E`dz$q*ihN^D`|3RlHbGsBi6zz1 z!F4)aQ=_J#F1r@oo@4usmB^#Cz8wr7EC1rHxje!wo7g%k#D^}I^K}- zX&v>p8r(DQQ{q(dA#ANEYxGqhi`MID%Vp}K$5=MYcwM}zi-}19d%qu)lFT}--LIZf zBpy~Dzi5;@JnSLR04j7ELnG4If-42mYjp;36@y+719vKf831HaabG-PvI#$@3#IJ5 z<#v#K09v{(EUrY!_qk%O-ME)14D^D~UDmYi(cf_0z>WR>a+9_^H~HDiZ$+7BJ<_he znZg~LEmvcllt;}Z41XCv<}P~DEJvK}w%0C*Cgb~w}^%OK9OTOGW$Uxq3 zZsA24nt@>$ErhE14$Bf-SYJy*tB1B=N%z_$rU9W#B z$!ER;TMy4XA~X>DeCsxqxs=j*s&%;!f3@SZO-;K=nXeHoz19-o`*?x$=FQ1|?{}At z&uN@EdPeSp2D$rL+XnGlY|4R!r*fV8BfpCB%~z>}Q{iu2NpF+t%E{%UXq3!5u@9T% zeyWT~`Ke7|P!A0wT=|*7R}jmpDD#Kl&Evl3Ck2nFcPwf(WKZ6&^O@U{q`jjYe|aUW z(<1&;O8*)WFp);dV=&e6Q<2p!f2V~&$LWWt7GF{Z9>Qympiv^s0_3_vUPOd8X!ggs zIHaqJx^1&U0u58}j~KX(A6G~<(hz<9eO`W@lrZ6YI#JSGu9+p^7F{TNUmn)bw9tx| z;GOuSvfZ1GEPLJP5*Mj|#cz1D+_p+AB>Nqr2k!dmf}AS4F2!k!gy?r&p~Fe=XFX<;qvK31 zHsd)HDZ%{`=h$R%-&txH{=Ncs6VE9C4G8#R}1L zSvcGJvpt(MdU!y(d^V$1x`D6}l>}u;cPd+;WP|x$(2VYtwupNIz4Tv^6i|cE8uecv zD$aL7K1snz0CdFZ8IGCv?tkm{`{1Fy%^lWr0Z-ofN+z`;ouUR4v5kti@!9~t?h9Qn zIt|V63LT)Ed4zhz6|7dPyWjjb0?9b?y0LH3zu_Ph+q?KoKU&`{qsuJKdLx&~aY2w- z_LM1u>8Gy43NM3w0&Qr^dg@&nZf(#wFX+vo19?MVG;#^tzqKa|NAR564l3sXN`}$v zLFWm~r@c?xchdJAz70$`4ta6OI;t9l`B{fLMGY-E#vE2@g*3%6xpsg$u9{IV8uI?{jtxcVb zylk;>I-mjnsI|=tt<+r+Jc8t*H?({+O1R|r=cTlZSOQdIp=t)|{*6{eFZ8}}>J7<+ z80+-C9^-Y!ljyZl2VomIG(yakO|l)R(tVZ(roay*t_VRa4g|m-2$k${Yi4~mY|=^? zhniKjFw<8bByw;Ml}GUDz7(K$S|jZ;5`ZqVplZf{zLsitiGT`@r$X3={K+P5X~!od z|4((7cC-bqv6b9sG9Mrv_F%4d0VV|=@*EzAmJ;2(G3!16NEpb$rQ9^6FXG5W9;#qn z74>6s+8!I%J@;)sE2LhS8L+b(Aam5ryAP>P%$UiqO_#zPuNjx>UD+ovRo6umwh5|| zZ-F)z2SAtLN8EPrm_dORVtnVOccF$AYG9geII>qI0DLr+XFgU>YOU1lw0Cu3Qb3hE z_FXTl(J}ecVwYJRr(SK0(KjASn2wWqIlqX7_Xr1{S)-<^c=gzLOGw4@<-Yc_Rb{+q zLfLN8XzaPuyNm(T68GvUi^17n3q00FvqMwv9|tb=jIXK>=q|m@f+Ecb?14Y!>rA1! z$z#C?`5;Umlm`+1QZZXXPbUm-Atx6`eEm8ehR8WyyU=A&vZ6>ogdrQ==2d;6tnhBM z+BJ=T<<~k2YaLFoe+}^2ZSuX#$k=7h0WDy#;6ns8M8@wSw+Em2eyUhX7RRoO-_-Um z%njI(UkLGJ+@SB4sAD+qu>kJ(D#%#pt_S~|m_xQG&w6}Y0pW4cF@S#VhKVk7YA@H( zt4p{v*d*(2C>F9PZXrA!qC%>lrMfp68%hUupmvxf!88pokSd?^0uMZdlPixNqGSTZ zHqlqAqT3!B{AfF}vpYiEC%&CkF!!kA$$SP9{GX~5jvjVkB#lx`{3=t2Wm@XV!&$zh z6u$FAFjHp3o1)Zp{ZI2N!{}Q4=jQ!1J;ASQ;9D7Ug^9uPc6T1$IF)y z+cfAR+B2>YkzHd?<9;#)8qp>I)Tsw`AG&N>LoDNyE6Gs-#sY%XvtNcmk35%qC!N@T zE9O%(ia2~s{ZnoG1kjzw2ec1=@?&`Flcc7LA!}WPmd^JzbC~p=AS&Z@vnQrC8Bi&h zE0OaFGclB`o)Pyqm_0soaJJD)|HIlOOB}R zSu}{iS9z=J+C=;}|AcLNVCuO8qO>|^Cbxvix26gf473#B+y{$cD|@0+fWE)_Kk%j+ zTCypcH0{2TvE$}NP#r#y@+q$xdN?%YoZ4>t;N@8h$|<5y^ykm#F`b()fZ~Jtu7+#W ze>bS0NA!(FUeH=BPrmqHH*FscB7N*hV&_ldaFT}9@Z#k@Am#9Ed8R!W)R+A=nJ;QVx#T!xt3m}Up>2p$yC5Gobkp(}+sxPFOtDj5SU zItCOkl?6#zZ_gUgW{y1xuy77`9AYyvZkj6B`^R?*PH$L|3z-NQ)tjRrsGUCdra{wn zTHIv*vF|@p{{MYv_Q@cZ@SgLr9KR%7o_hw)|596iB{glXcEgT5D{;?;BI_Hwz87V> z8kVm)&`&-qqocOTsg2;6Z!$Jw8HK4T@3!L_V^qupb**!1Owv+egsF9?wJ-F+Zy%-q zxS!jvZ(_*Bu{ZAVz?Kp$h@i4P~)YPx1ox7pJ=!K zEpqxw!}i;M+7uB{Sc6KZuceMy+tA4Uj-;aE=?nP4xilm-V=Cw=vueNRU~pNTf1r`M_{|5KZ# z9o66m>=WJaAfs%fU_)U{NfXg8thWR)>?h34g{oA43t;_Wtb%)lkfg#YP>?GL} zbi{iAaJ#=vDQ&PheESB-70!yLG|FQ zTk1p>1EIqM+Gnh3i%U$dJr-T3SUmOZ)ZY~tZDFKgye{+Y87)p!CHpZI5@h?C?~@O6 zaqPJvoIoe}Q#__5`1n4igzo8bHc(KP={z~>v)DFB|NQ)}QRY<-8~z~q@AGKVhpriA zB+Mb^;KR7^&vU?iGwOF{M-T!r*HYRJhODm@b2zYSppGwq97C9=5VmIJ_gRNeA37|~ zx1{{6S4GRmZ|l{K^70#4wSGGF&0VZ;TZ(VVFW7eG!}S_pO+vAud2};qeuIoY(-#8z zsO7#QdYhz1a|^~HY0!ygz%18)2Wr0`dTHmu(H!dXSVO%FcEKvqJrKanUDsaWnObh- z@Xky>yz9Ev#FI+B)QaGnrRMo`#LSRb0O+i}e z1)Bl*seCgTLgI;^9Lk#PYuyQ3CC{|0fn6)#eg$DW+t?*?`1 zG=$13c-+m`lg5?bi%}fy8K5*akGvt4MhsNgjE%$1)T#8!;5b);?YANSuxpXogJ9eDRHV zc&ipv`q^i7(~Y;((?YjOksMq|NE;8XfQo#p1r~jVirV8lD32>+! zK5^1tDVlaNyRS_z%n2)V6>U%`CJhsiu1fI5J6Bqw~hcxJ$eh=f?7#$J`S5YixYHlsEl1M1G@J9+CvK=+C*Mt&^%m1LdgT ztySXe{s*ZK8L!%7s)>@ki+*N%UGaB3YyMtiLmX$63C~F65QcgJAplLa5#webuggwv z4HHfhBDs~{iA(-l-JqVi9kjnguL>_CH>TNQ49XKyF-wOHSyzV7AT8_|In34{7JFF_Zx^ zuG%oZQ`G@FMSFj${recNL@@f%E=|EWja-$k3(&&4l;ay;)k!=e!<18R(PKGbee z86YL*z4&|F^{2?K-20f5V@43P9!Hq1yT8HxWowIk z{Pt}!UBpN4hxas_n?5a-hJ&nLv=*{vO0xg94}rkjz`U}uQr$1SkP4k!S`F)48-ki| zuKu}Cxe0chSh?(&4~rw=AA^IMbTD?|Jlvn&W;Scy74|Py7B*Vw%kIAPp%dV$UqImRd>EGui^57`=pUVh?2!({-(8*VB=ilf5 zx7c(1fB)^@S^t0k{r`Ud-)8Nw`hV^5|F1p%Nz;`bl%qVd08VTsBzZZoR#)zw7hqnJ zJ`>8r;j;IAsN)SXyfZ}*@c@#_z$^-NLZ6C9{PyzwCnx^s|1bM#O4t6#DDVk{HM?4dsY$vMb`e^v{+PIhUPhLgesj&A?)CflPc%tM`8=?o@&WhdpK~ip5eB;J>bV5ZOeA8( zDI|hR$5Yea%l{FsBO*S+P4eH%^Y7mwWdEwc+>3cn8@jpbQotnjtZk5bXK`b-*j%>V z@LFGykpyOJwYJdYGOz4z=4?m8*3A8t9706@UEkv_K^d7vkjq1w`J%8o;q363cf6(U zaaLAmyvvY*%peT=_UL>7sePixo)%b3IAwz@3We1mkTE5X`nlglM3N8{tb|sC<}1h=hA-g5kUVeZ&N9K+%G9{4`2n6^-9Z4fXwF7w zSzReX+qFC)8<=_i>kWCAYmJclGuvmF>}QoJ0`{8~b5ZChTAl3gDyEoxy9+B9P3PhcW*4S< zV^4mq#E8{;4FJy}6-dbb9Vr~L2~qF*lb^rCo`U5!04beRH!RC+nk|szy{=78F2k$^ zB3&xN53j>s8xOqYQTjR5FU-w<0mdoauBRGeg3bIBiSz5g=`>2iM4yt9tWqDQm$$YW z_VT9_0(beeN`EKwt_{FG&N{(a-CE6AKI?OURKP~(P*DE?6C4+S5(=av=xa%yRlN6$ zQ*(;a&i?z)`;&XAFKafPa?Ac9xCi*6W~G0PN3xVkUS863f|K61#=5`CbJ(-`@dMt{ zZl-xHv0vR%Z5CyPmVO!Ti++So5GHBe?DF8=QgNUNihHWdX5?h8X`9|r7Rj@IYedOA z7qhV`6D)krtwt|piVu7R8WGk8kWe7Wah>^XL%6MSVbIz-I(K~Qx(}SVY`W1sXEDU8 zux6JQtiR{^S72r6&sPA^z?|b8k3MjCQ9HD5L*h%>U#b?!DqK_MNza_IL40ngb}pm2 zF)HjGt;%&^LMd$Ws4jwfZYqSozW=4l?8V!t^sa<5?0ucXZU6w|IsR)Ss5^wmNG7#B z7H2dV7~J2;Q>`jDXNVQwz*sKf{C^V5M$ly zQxl@43=4~NQ_%e7gKi-FijBMX4$qG{$KfH1qyFe%l@PbWGryRLC1nKm_^nN~DmLNO zbXkh%K<3rp%gkpY+Jbj*4k5PTT+{^h(OSA%DwKr|a~8N5OW)V-y`wq?fv-EA6<=-( zdKB7KRhWN{QMYlp4DO~zIDP@ZMY$DR7luKcj(gTRRmkj6lV}^2#%#S%ycom(#RQ#7^k_@Qal(&^Ue*7MQdF4}w(6;-1;|6IyY38r6XDX-2X* zn-5swLF0X2}HuOIF?!T&OIz-R^DaVrF^Bbx?T(Ce9Hx zP7hg5S_V}@o--!^;b!1>=h?`u(eBUgg&gxz&!exOahJve61d&*rVHL9O(4ro9nJd< zd(n7cH}6318&dDC?mnl(&_unrex2S^j(fp(AjfS$_2-ibHKEVNFTA3z_#-mK4M>U> z@!1pI&etOS4pQ26-lvV^*gF>_pzH^Ekxsu(=v92-Rcdis{RHB|{s4p2a7``l?2k$E zyCzhLqN%4XOMhBX)3#@SugqAXp_K}MqVMqm8b&F+pPKDC;#jG2+1D`WFvEvabZfM@Hkuzb2@rJgwR$N=iZIA>$@Iu#6ze8x?dEe4UC^Eb98^?_a59LG>a7TNp5SU2pT;A`OFDy|cwmCOS^lo zBNt{q12slpT1fKQ`zVc0w84UsuPQR!@j9wiAot1aKmn~*QSIC$mRyI|*5ta&ACoSR zi<7*EZG{w_DW471JvLKi-Y-};D|1TF+HX<^dBq856kILzotVQj9ARdJE&V5 z1Q6#)vNDChy*|*=p#4kG4^UijJv*F~eQVbbs+HKjsDC(5k~-QOP3Op56XN$8v08JS z&%J^j$UMuH@-KeR(b2B0YMxsavN#goD!QMqy63OQ3k@>AQ}UeITNGb+dboX2{KDHJ zqabBZ2MY)0Z4U?nbZYb0=tzzN6`3az?%jIR<+&&%M+5#=zp| z8SdUI!JRIDC%4agtBu`NFuQ!ZGi=rwpTqfJ*(QBl%al5)4wRGakdVA{ z8P%yEzfm|)!ztll5tNdZQPKAOoWo)Ja|rC|p9V_kv&N6>o`ut2yH;Y!pvUfP%4_W* z3*rujy;<)}K7bxL6#slcO-pMMY1dWUGho7M#F{1)TlG`;^|xGIzVnj+fX5sk2&5dY zL&$!sUR^Xems9Az-kHyRM{rxhv8L?&cU>=5taE5Mc#;d^I4HL#)4_DOSM_!sJ9jQy zS1H|{Vbzlku7&#%XB#Mv6qwWs&>E5hlPlpLYn-Wds)8;(6j-)4pTto5Z+~ih6LQLL zGdKZINM^|^xMLnJxEATWgFuLWV>&rhu21rnI*lo|-5mYQDT-++6AUY4Ufd|?-V=4( zq;njm{%@Vb5M}1XN;_}Jg-uz%`bWy~x)ezcJVKKFCHQ_AdT5;@Ab$PTaE;gez|O7y zAfGl<9S;ddon#K)f@opQPbJEk zdE2XVuSWsUwjTO&pG}rl*Bn3wRI?ysM zmCTO}fQIqksYLwClaWEy=Y0eET&7g+IUvyWzqglz#c-FVL2cT~)V}xs9a`eSWi(1V zPbr1z*d9OCyz)N}6~R@Di)_RrMK`d>I7QYrmUtmdTWAM9O|(WLUSc;<)`r{N{`9B_ z5@^SYfY@(=AaCzI$uF^VAW&A0- zeriC^WrzJvNp+g;mVJb1tB4_o5jQ%!Y9-5dpai%tZu6yVC`$#XS!{sjq?a0Ma{kGx z74cqT22m`tXg{19t>SU068Jp1U#4VrK{4lF5J0^e@DO@d!r#$1+ z+bsG-1ut2Kfgt|J<jpjlRTSIvDrBkQS($zWS*ql^XPd6B33%o){*|kMg3ui zAiO1N+r!1NIKZQE=*VvEp1@gXvp^NmY3xxUz3>Yn{K;~+hQ~>|xC}JmQ!r5n3drkZ znZUq7Zv&2lh0MC8ddsh-w?KgbQ3>OJ{lPev9#-ZNJ>bmv_V`-3ueg}qz33|&S^Idx zIPt<;!<~Hv`Tz|do-45%eNX?&s+nuNQU1esNkv`}N$rttxSl5FjkQeQMK=8nu{+wy zOY42!b{@*bFhFflW@N5)i-MJ}r+4YCkN$VaNqq?ut$cH`Ky#CvH+mYg;A$|^Y2YFw z)7RiFsL`jd`qR3$-U5SsI++FCh;LN-Kidxjo=_1X$ zzDyC{2@iqdbq5I6gO2N)A3H9*EfcYIsCprZMUp4N^ad?Axc_*yZLLlML6TD{fmOQH zdgkHW0EQ0D-C`v(?5I*Eo^)z2V{A70xjJz=oaNf{Yoxn$6*RkZJYO8C0;N~rpx}L3 zoOHIV_q_LPQ(dX(h9wL=>?22VJkwUtc|J=Y8lr;yITJdu0Hv$8JUECEM-bp&KO`#% zZNWWQakNX#ZND4Td5Gp_@WZ|doIUx*AhG9$_uQ)_Ej6nu%RvT!q6H08YKoz+$9@zX zH)@31Ch85Q7NvxC7LsrTZi~B2JOup0^$u3{6$%U*R{0S~5E}Tnt*a!qS=(zw+40}A z-al)L;_OhB#WHHfP8=RZy`Rus=z_0r`|Urf9+|F`fU=I48w5}3BqnS2gq)Gn%RvTD&ZK(+M0)r zO%-VwDhr(o@Jb~LYkcFxh{_^<^vqY~S=@J`J^OLG9kAeqbpZToIW=x(HS~RX#sR$&U;NZ}A)y=P(u+6+85VdgV z0KFTI#ps+s_c2y)18!dUBmR#a5icnC5SU~I#|xIl@t^MTXWY7Df@3^`h9$kiETgUM zi&`M|=WN{ji`Acsm`5=z0>ayz&a;}}kiH{tBozUBeWv<~r@kmzbd~A2eWhliD>yJG z`$_)V#hm^U9vWzEbCxjLGrnyRxf_ zrgqZQE|=2M_^q;W!z9A&IMCwlgWO*}z<=GU85qg$qLNHa^b^0S?)ye*>kHIz1e#>U zo3St@a_5fz&<_gzrz%@M)Ep=zuZbOuRiv_WJT^q+7K}{(y>{ct2#L>7kuuM1mg2y? z4uhBYp2UX)hGX)6up;B(i%G!2lM&Mng{-vTnnW7D$x=cJp7yt zeRr4dNSEKuLOPmdCL4tI`eW0qNhxs?fR!+V$3sTzDV=bR5o%$Z`rK@&K7IRT1Sv{T=+G0Wy-MQsC0$TSa zciN{`zyGjmdb#hYR<`*0vi3J|_w7*VFY+6A^f%W8oW`nT(d(*()Q?slGOpDjWs3sc zg)Ca+hQz8`V)066Yz9}@omdDyNo?({M7>Ois(Xlahuz6zz^YV&5wu596oU<%6o!X} zsr<9}pV8)D6#@*dGQh_%D43PkL7`?Zb1VtaGvpG_FF1Gnh3}+n-Iy;>4=Jv4Dbzji z9-S0|&k5?)uK|as($K3Wr|zsy;vSG6J4JU-$X-6+w2wQtt=GzGKy3NvjYuU-VpOjx zNZO@tu0za?F+{9?3|Ltd0{L=qXPirrdD!MKonSvzTFKAe0oB3?@s$+>NSOZ<36 z;YPOLj@(7cGiDI8<2O))b*fBb41sgEn+`~af6*{5AV7aBsn&i0e;!5mZLg2tWmxn& z!ivX^P`LUm^HFa5LRaV@SK81o#Cn5wrTV$yaD(UU3-g49AF05V51&gwD_Wt3n)Ha&Owo$!gA3X-+u5gc}s`w&F;^(=235#W$K37&Hda6xFMHwKU z?~j`Xl=a3@r4EM{J8#HZ$hpxw%LVD@yNi8uqp|!A!YJDx`}oS5zt)Otw6({jJF)3y z*dJyqB5w0a3x_Rwu-nv(KFhtA5eBB{R7lUT4>DghXtoWvOrd))X}8(SU}=7(608cn zTtj3+#T4a_bqEU)!QVL@&bsfw!j49$l0^?XoogF5c8<{d|Dp2ufwXjT>);8 z#l;=6se*Mi>E|M-;^JpR8*G!^=cX-hYP2ik-2a1RjG|g7|Ahj!l>j$Crl^r1{0w+c z)$OBv2}tZUwqDZc+kW2x>ij^rIW6(ttJem7$J$q)&Gj?p4q5#2F7=gQjzwY%BwOn! z_(Wm4n|_s6%H=l<$h!^SxFwex%w86#>(g7E*qTFI{e0azH;DLYOo|ZhemtX~Tz8+^ z7;B<*wZS?}XZ%pNWG{JEK~KWI$#tbmZ&pzut-k8DVw0o0trP#Y9pDldC_3REo$bD{ zmDoaw_yR85Ol+X##dF#dhO4l@0L=d8aEmR9Af>VSxm(UB!S3j+g^<6<67~?{4f|tD zye!)Fh#td}R0Q^-bMh|#ZFj1g6dZ@sFFl;Y-ufX%79wRN5XVx*XzuquFN$}0Y%6og z56MzfM=4ugSHf4$hA!YecmC-;FuNh}?59KS6raBe70L1F(tBt{))EB^KG6TI=g}e< zbT|a@Plbf$(OanN!apxV?2p9R<`@~etx0N0@xU7}U@y^SBejYd1S4^5&Z||T)_CDE6*VWd?WGSi}ywh#>QZoI%!suSWqnnv^yaBe< zXHQi1?L~630*rY*`KI0)fpzm8;)5+e*NW>x!wr{k3rB)VymYPM1Y~=u`J>Pr{tbq)~YSV^K4a9Y{6t zjaz6})vOHYJkKqk`|%wC9>V1rXB`!DmKR8V@86!(SaPKxX9c{y_f-KE)64^HMoD9)nK7IKm*aU2lFr!YQF&jRY^Y)2pBZnuTV5E zF~jNB@T2T89E;9vE=(gS%QtQtVf-bG@-C+|XkYxX!I4!qR~(HBy_olRlOBfSIsEB1b$|W|KBd)4Quq z1>SzZeHS}12mI`yF{$!crTfmFerYgD92htR8l)Ci%49^%>%6tK{HZ%IH(Xd$2iA~g^ofk1*tPY56(UVm3GewO7rD4k&Y648%$%9e%;XWCG>TWcgstt13+URUm32CBuWrFMzH8Tm$;T*W zSuHl&Nu0g1w>H?(dbwlHebrAQe_x}$T}5Wk5G&x@89#!aZ(YwST3i!?Ki%(4{V-Gz z1rU3cfspW0r8hO^WvXL;1xU<9e#R#TzQn01E*BB9r|!Lf3~-bRZ64j(y?)&H?3~8T zFhI%KCU4rI>aE+rWRnFNasPF#8j6a@nw9;|r}6C~0FfY}BKqh1IBprYe0fV4&dYRo zsU7+Dr!!=l3+OdzZp?;h7MjEKYweFWvl&>%(CNivgqxZGia+L^WEXj}kesLWX{6;v z<7k+|e0v_DvelNfhrgp45(munOiq&PRlJjQJ;q$QF|3zlP$s`IPieF@?FQsW=&mlL zDJ>7rgjQ60U=v44YaaLHl&M`|!ehSy2tLQPBJSD%eA@upVtpS8&uzMwQDibX??a`4<9*_nwk^vSg$`-Z^|QA(!kO- zdP+*wj|-`K*TMy@-_)5!d_5z%*}~eC4&!EhdY8vAva*o(UvBaWj}+^Xhb!4STfyQs zZ*Xa?h3K`~C%4?dEjH~z+~iBQ!t)@KL8~n%JTzBn_d$w4d@_ANJ@V^}G9*8RWNhNc zBNSD4B%}I`oM{q!$49IrVyybA9^4a+#_Pnzxi4^ZkG>(tPaOM8ijY5^sNEgwnS){;p+ zlrSW_7xmgIl^auq^yP>1TvD{}_;%ELTsF@pvM~y>cGX=q_f=IRwF^LcIBF_ot8SX~ zN{+%0Fe)0@;rYE(66R3S(9VPlx6V0wJ+6&ERYE}mrV8KalD;J{RD!bY+QWH%r|XG% z{JsYIG@F^b)JXc}5d6sqX4>2k=}nKJ-%#GfRt4Rn(4HUIV~YVfD(2U}h{~&v96$1% z=Ss%Vq6JSP6^zpV#!Z1o&%b%J@7dD^g(I&nOQ25r`f3G7qT(9x(J^E>G&wW?cyeKp;u=T^k)pmTIulrbQZRN54+|K9bp6~S%alD7&tk*S> zn>3xw2tD460^PlOAvNo5XD=hKHrex6r4^lYKC^1m`mSKsE}i@3D*w4(UztDD)hFXi zRNf5`(f2ZRn1g0^!!tAmwbG;m2c#08NnV%47rsj9?d=OSkiys485+m63|&0Httm79 zv!;x9!}Di#!_g$ZfG3_R+Q7xMr7^j|pY#4b9u+uq^M63*A7yf~)$v_?^tUOEE+^!b z>~CM$OXd-lE0YHBf^)KBRaJjI!To&nx#0Gp*PSSDzumPJ}GRM z-u6*yTe+=0#NX__TUH*(_)ExShf|~gXt{sPQ z5Uy|*I7=Q5|8>d#`Lo`Re~Z$kIQd+7u`Q?03$rDt{w?|U6y>+z`GML}mGaJ-QS5nKIn9XJlTzrQDDp`hOOpV8A2gR_Iq3y!moV^SmW7_e+obqGExztUFmI z`+spuKj~WXQL%Ygu{cFscdOw5z`$gq+UHijqHJ*P|DmJRla;!zlRui!vpVq_an{;} zPqZOkA%LG5asQ56Mg0GR`nr_OC)Q=}@ZPlVlm}%fuE?Zf0+YZ@-PJTWW2_ybL#29ok;7%vxFYZNpNnUVrXypJO)fm~54IE=@o z9DYIFuUx;C)_?Fn-cy5_`?xzai~5NR{AVcmD|G!*cR#-x`tl#R;Q#;k|4)zqH$Ma% z>2U~1+G*r5n=8L)5ZG&C-5cC-{`Bd5E_A?G6?+cz`o0mke>V59$-np|75M3&piY4V zurL*T)FLEG|DHtlCtus`&ad{yHkW!_28UV%eWoSoDfJVQ|B8-sub<5NNO$(Fx$@Fk z`FBb#Judb-WA9Dw-J7;;j!~Y@?-aLgAphy8YQ-k%3sqf$car}%vVKcb^bvO|1>u8d zAvA2i(enjZ#)I=#KE`jg*f7t9v!oln#{m^KKjUP?gJMLqcV(oC$3G`y-#$jd&*L)m zVsm7?=9u;MSZo8>Eu3!J3;U)6-KhNUC%;N|d85#r3pf)SZ0$EN)Gj+hI@N;63 z_P=18fUPS(H?a%bT0L9^-&yDUxTGjMe|W&C-ynMj_@o49TzgI5pkL`D@k3^2s8xf@ zZADpWLMuWHRT2`I$#m$o{_FY)Wn^5U*bFG1cgG;DRlveNif3b;r#l}VS!7-c1Yt%G53^(O(`mW zYPn!zMfPLC5-ouJlPX%pK32H(v89Uj@;LkVZ8&)mFhOA8q6l*61AbM}jv%aRA9n)Y zv?WlJdvD{ePHc*k4fTVTz~=q8xUeQClQ$98z!*7ws0JbGo);rd5U%Qy&MRx>PNF9` zEp5tLjd-n^FE0}9bE0^0@23ZbGo@BV7nuQNV5_{0H#y}2tne9w{?JJcDaW$o!6}|v zv%>rR(GVUeG7PjTKr8=PZ`fTCzT2T{|CP;jz{=ORY?oaiN6_?ba8I5XZ1XP3=@)rD z=w(T#qr>B$M_{x~@-}_fCZikpiazyK4aDf_N-uYeL^J<+=O1EE|AfbCNd)K@7aDok zWRhJhbRHMqFkXI1`|-jp_9QS0?O6=^hT2cLn3At*h`;I;+kOCjwAV#FneJLy+WA~+ zGtFmy?`ll;%3YoopY*q>^J?tSj2}8Y(JJQ915r{tJ*oz*D|+h0Bb9m*Fdwd+!*4SD zKI@KR==Wn-LAt z=E2TI^?)R+@PH=qDz)VzBED5c|1ZtwKHpq$^`3Q*S6iB+MdnrbYxi(VASBDFi9oYU zpyV6tt4@iCkf%*2e;aatgFU25q6ZMbr{_pf$^|NLpPOsH>U* zQb{fCNs)SDz5^9c^)>pxM{SSZpwhACj}A;`HaL0^*RX$x5k*%mEl;eqMyy4~f>!e6 z>j^~ek<>B{j`5+f$|DvxQnntH?@TG0pU~#(P{(i4sB(w#&7 z@S4aP@^X!<=DEEP=4)=${qK<ERIqF@MKXxy+4Y%9Wwu(x^mD^;0H5!<^`n~Fg*fsKHND^*yv$b|s_=iE=8r9Xw zrlnNlhPjUf(`I+~nY-f3cLmz}Dg<~c8VdOkX&vFR3~xOvwBy-aIxQonnV!$|=TutJ z`;E)L;cpu_rpR)fYcksuuuMlnbcqIhtpFmKd7}w4CJT&fe^GVif%&B%Mb1a_%<1U# zg=%?1Mp<6@+9p z>=bLbk_|_^B1^il5rMBi zd2`U61~6KbjcCW+*QR_^-P%;#J9tzQrw%COHZzVLv(HhotHJCd6>W;Pjz@)-ij#e< zZ>H=8T3vp1*#5oDZ90FaG{SwEtT<91TMBElUo%axTI1IHZQvc5;}@6e9|aiOv>a=* z^t7tPRp%f#;};teFR?71Tjbt2^DMfg?R9ac?zs)lO}lq#cD(QX5DVP0M?W0;KKq)} zg#{Qp(Z)*H2hg`~_kzxTO#T#NES&ei^w`Mk8&!iSNo&na^{iK=LLKKgsgMC}dj}iG z96kVj6JTVCi-hB#uNJOlRsYye>(jC^9Lc|GY+^hTqF(IoL^yH6H((I>rgXGb&cK0N z)&I7$&3!Ub!eVo;&)g*aTLjh4KUgUzI|PaEoXyo9xrAWls_FjaIX`l)B-&RwN|h9* z1yp~$cy)f_25Ng{YIH^2;oZ@!6vu&xz{E`Zyx=Y^b0D8$X_{S+WiL7-G`Pa)ghGUG z3&ZY*^cJU|1)@!UA>qHYEWDvB!YY~8b61zK^ql4Le-79_t1Ca%e)L8+*TsjJsq%B0y%r*C@%DR@=!l`gUR4s~TN z+L;%T1t5*`cs*jQXYmVx+MUu&GrdV$<7~Ne;+O$~v!1 zLb|dx>IQ=K0`@RjsP+rTFn%G=;!%+rUeOj?13oVj`1N3sLgmYf5~9WB#) zROk}eXd{W(9Wz+fWBH;NLJ*5{bRpvT42cN146(*LnZE#~seoBhg5^#aHh}wyX55m|KvO zujyNMYnv4sH~%5l`eiP$Hl_gygg4MAD@#X+@_Nb%vs-$Nk+q@4 zK5lot4m;w21z|iROA>r3n~Rnuuo~Scc2qeL*y!)nbM-VivvT>ciC=f(?DGN@a)UMl}yOcrlB|j!neP4iE^R&uH%Ap3Z%YY)G^H^?#bKA-_{pwqXt)mKskJld* z#5pJ^1OIhv~7}TWhkRMLbNONRDhN z*`dbV)x@D9x@7OB(UZ~=X#!DL)xUH>)(P1P-UwN;jWgJ2!_8gxClDK?t=z#v#gctN zCC+a$*EgbNT;7$nwrWdBN}4+lKF~osfu6wVcz@c8?{rIyqaKuRe0S4bQ8Dr06KW@Iu z|CL{!J#>-h^*O|z{v|yUf&pOFI337z3ebJI*t#IlkK*qADbI_b1BXtGq}2MwF38r; ziXML%ZvjRxc(_;L1~%~eI*eKesV_1))RHt!V#Su$Reb%|WKr^*0U%g8_kqpsJ6KTv9yZ z3J?5VM|kDUw~Nxyf(kt;%BpawMKgFKdC?j(FU!?kZeb;fb1^Q<87Vul#R7*UFL*DU z$neKJ{-kIS9hfL|=X*Q&^%anUwtgzy)={SJ%Aw1Q8`t;hD@%*#d0Lq~Eqq#48 z7^!R5C1tw0)QY-TQwu*GXT5h$TP#q6vxhGn(UYouN3wJ#+a2)Jsp^DBRF+rP@9IV)^hgy^Qnp#Xz1Jz= zl4hL2^aA8C-b-U~??ysx+1up;x!G<(fSQSu>dUogRMo|zr+WSBZ>!=Ca<3Tvp3PyM zkvqLEc@?U&M}5B89dG`{LCtfoj_4;|NE?N7CBXenVU;h!J%5Bj6E%0VM?Wm}a>hjz z48Hr9U#2s?4=aF>gPLk^#^Hfc`Or3npq6i7NDIC}n732?a;#H^!K>qDb%ttiulpb- zYN^7t2UpJj4bE%fsAVwX@|)G_D_6?ICsX9Xs7kt6jBjW}llXPAtLea54oothH;6^J zJ9%}$D7Wg%79MDqQar3|M_5=adn629ac9|K%NLD{6g>iCnD_6YcF!|EMH`De6tYz{ zfZm*nBs&uXHH_#dp8E_wmh%q~H#5$fOnK)u-C@+VwPCYIJZ$jd#`b+^113u9Lra?H z$6-8U?KQ00JhMH#v~Wcd+{y^OBUB1yA4oXmFAmtI%VCvVop_D&)GCkcf2(i&qvLl) z_Kn*!X%5}LEmh?1$II7i%?<|>Y{5>vIv5QX`J)5{GVsJt*42dRVCLFH@!MCH_sm#A za#&;%)BlGekSbgtpebX_M5(Bq`iJt_)f9zWLEdbBq7u{DPl&^Zb{uVcXLHOF-3KcU zwFwD*Y1KXjva9h=i>G#{8BV!vq0*eYw7|FQzB{Hh>jopaI#kbzuf!WG@^SLBl-lQ~ z7o=vZzoc1H;fMLoLA3Kxsnt_lfX>eItH!pk3pN3FD^Zhmc&483LT0rB%rSW>T0HmZ z80H%zrV8SR{VY|R7I7Vy$N(k7Z!y}$Eo!iX)}NI}&d+aFHS1!|=e6jM{vez{t$=#$OCUO7BnHMFoADXs7iPVY{wN;jnC^6l7_xRI_UP_Fl)+snWntnkD| z5*FBAZeSlN5U{F?w@Z~S0SM=!HoBUvxsPWX1_1`mN-H)g1zL-4|2owlMHZSI{8M~r z#>r^C!?bI)_FC(3dC%eFO%k59(h!oZ5Y#HRXoM2TdKnCG%;qE#c_ zaK)m~+Nq^-QggeKFdoi`+?0c0)U9O>!X7{*Ygp-Rxxtg&hyW<}*HvOy(u?A-r4wUq z=ED>a;n#jXRFseGyVo^*3z0h8dzjy;d@$^!W!80o#q0^$`bh!hc6~o|n9bt;Mu*9) zwCQdvd{wm+^>Df|PmNcgaACjDXuhkqV$;_HsHGuufPkPMn7+wqOPsC#8SY@{5NBru z*t-Wjs;~st#sTZs@cw4^^W>=d3oEsFbT??Di9D$EYb5~&l+Z(O-6W=FB)7hZkPYFE z5Blg6VEn-}PHCSao3%qf-4$OA* zu4m7B*^5y-+kLX$wEpFtg^rTYtOmEZuC+tZy9LtUB@|M5h|0( z?7;%Xm=~Uq^(!ky zI#9<8w09O}Lxg&!L5(8hI=yLxW0mO9t;tE*mQ4#UKs8hoBCk16a+%;j#Wf_Qfv{;D z>)|&YQd*&R)d|s6GJPCZa2;zL9ZmyR!KYAMHqUQ+A(&S%flag+MPkm6GOWw?pT){DHM@MxmVxQBGQ9G)`Zc(mwjrLx1SsdUGG>1x>Yx>j82fTn{={g`~>#g zNX$BG4bd`MX{dajKP~x)Njx$ra43o9ceH)lbsN&uU2aQxxeG?cSY>+dE(nt#oDk?k z&#hl#=qGcOi$Vnd2-Ia=J>i}1M(i*Dqie^t`;-u|PA?&=(X2bGW3(6oLYumCtXoz} z9YSu8l&aN-C7p^%TU>Q$8!tEuU)kN|139(ajLs)+9XG$%aiaLdb+asZ%tImNDRKk- z_9 z?8{yP$I5x(xT5!{zRmOL0N)d$dI@@6+d}w++&qM+mm(nazEL+OZ)4gfOY= z*J=$4FuOBonv_;h6QVsz&`TuD?%T0vwk3Coje$>4$kts>RU^2zK5x+$k8=dx3!JDW zH*cPG`o^tS`M-l=Ae40L+e!KiH+!>~7q~4Y_N?17dhNz3lN&j$$V%J4v zr({<6RnnQt2I=}ldqzm`YY%Btk;j~s5?315|u+^ljSZJCke`iU^}#L)8-QI@o? z;?VnBY^G@l98+!O-=ZA`*hu!YYJ?4QpUy1k){US=QB7B%iyp!O>i^luBl&_vy+10< z`T_p;ix9(-Vmi;H)FQ_v^-jTy-@ku|wt=y_4{5FJ*Eg`VoI9j{ePzfz=Loz0p-8n` zX?0CR9$^$?O|!^5N3)=~yhD*I8-C*@_&H^Jg3+laVpMvxH_#Lry&eDGCoYa%#3X1DY)?*rH@vJUa}T zUKIuA#0kr@Vw&%vcV&TLb+Elg`*tZ~c?5f{1=gZPrmlV+&{}h9SyZmu{Me3wayu7# z1yh`|R-gc94rb)P5%}yg+*2!enJ29G_v-cMi`~G+G##Ciq9hg3*XNoYkRl)#;L00a zgvEn2H@H4B@<_!bl(#%;<*L)!(LOcn2+z4Qv8om|?CM1|gX+HE9LC3wPQ-dOE1*cL z1NNHMABV}MO|kAF8R&`G5AhWO=kpK@rc4NAC3uI$Pu-kB!w9j|wxQTM;ZepOuC(hN zqkq?URrtK$2&)}xzvdKPmh15286L?pgTc17kq)c^Pe4qTnuDg1{u}|e)4#kr{~?Gv z6-eI%Q>RFxdc+>9trsr%hOv!zzK^@WgXhc?!7g&nGgmdDZFzS4oBNw{ zf+GjL__2_PD*D48gb;S8{Ii#mgz3t>lQ7*L&f6AVlc5!Yi=|OmW3}FJJL7ZSJCDN4 zHh|4|vLJuOU`fVHaoj?db{D&T1Izb|B;3!@1T~)5;~6JSO*+nn9Xh?( zJ&M7fI6Ti7 zT5Q{N#gv$2Z_GRsmmfcIpJU5!vE$BQoCBeRml0pQ7M2DoIv|(~VoBloHEAXQj{{iL zbX12DrM%CashH$OWE=oPUYsCeFR0*)t7r)1{1d37l7fM`Ck&d8;%pp$gs`m|bp-k3 zunJsMFTXQ@h*ZryF+M%_2$$Mc=41jdc_uK~oze#QDs=5Xhku`!At~{eTiMN4gL`qi zh-YQt5-Ra0PFRKi$WIhjD;GU{SS|F&i}-k>@VmZaqPC=%@2^|B6Rjunoi{*3L)0eS zID`0?^*rd(F?)?}2T zr+?yPMJsF(@kR*KSXVDe8tiV2f&MHl6JvWke&`-^~`oAn)SG;=gPv^^LycA9= zBV36Z2;c8DMQZkD`J${XYQUaWg*nhEsKaH1Hwz8u#HtmjmNnm73y!+;=T>C%ydAzXLu+B+ZrDx+e++UtV^v9Zda*i8 zYE8phi7^m3FOj*Ls1fw_YfPDiiL_#s_`WOeMrsgP4!OcsV{w%{Q(LJg@}1lL$_bpx z#GOHZ3}jb3 z*mZPc?EM>vHeQIyOez2CSW=T{QnGrrmBz?;`S`?&W0|Tid+5rQ+wFo6zg^5y0B>EJ zKc`Cb>hs{YzI0wyl}8phw?@Xto^Y}JG(?4DaIPa=v<$H)+pWSn2XO7%E&r_$`r)EE z*B+Fpo;jjq5T7&joWG1@e}SL+*igN41S?{mHXb{sq;fY#{FudGn#KdLI@F$QH3bgf z++)>pWZJ*oiRwHvg83`&BBb-8Yp3L@x2O`!Z6)(qRk}r_(`xOWcfl8yNRaN@55lEP z#$aP8T<_(HoMBu0&bAdJD9|`V6PIywVJ^J_oNeFTAe0l|6}-wo_vwmN;8MYi3_IuH zCfu+=W=OMfM_vXJ7QJ3T-gSCawUri%OfS%j$$FS0^dI79OG4BS#2tH>-v8WT<&2(@ zSqJbWANhSHKjfq({ZyK|-}!VO-!}GxW;{mCDGSKIG_(cI9@Z5|Ex&z`D=8#YEUdGG z!}GA1->?z17Dx_G8Gm#%o#Rv`^l_(w)t9cjhK9fQPh3RyJ&bC7CGR#eHN4Yv0?({6 z9GYG{X;b3N9kp5^_@%k(GYVf@GP+ZT3+Q>j&TEA z<_Mq+W|Dw-5c2xq&ixHceSfqOy$>gn!MeFE@fOedce96|-%$Ti0a(1{wNzqGh zwnjqC{T8jhHN;HaUe(h!e^y*N>o{uFkRa_k^N?rlTf;#v4D8>VzDAzkWP@>Es?5l9 zo=YJs<8qC^u$Yv*6W5z=ky;=lkMfDr-F6rJJopMiQefO7Nga<$wCRBaR zkaj+S359KJ<~GVH#s04E(=qa$X(`1$XU#3*QDVptX+f=4T2G`Os*Al=?)&O(-{{7) z=`#68#Lfy@)IV$ft9Z%YLX4*0Cs7I_{is{-CsEywtj(cWxzMj3Bh$HfwyD*4`_c;~ znY;o$5xJQ&d^h7pwC6vGih#)6T$3k^qjRXV=KD}3*)gIo^E;#^as4-L8Ts^eeG7}X zZMz$WpMGU(Q8ejMMs$`DJ<6EQGTv8i2vIxG^O;p0EG3R`eSV_m0$D=7C@J~eJslmf z7KLvT$6M)M)^Pb${naR#6&b*(dd|aMS%2X*dZun-vpjrw(D~Gw9~r6%?Qe0~_J1Fe z!;&ovIx^~g=xouFys^kldwNjGg_&8#mWca`kMoN8ol;VD89$=Y_d2I<6vH@!#FFNf z^a+5yuz`lMPk||kx6T$#@0lCqCUY$+yzk^7UhyHW6z8N)ZHQ|pyaY(|i%6z$bMQAe z`xU%gW}AW=&9?JQMnxoaC^xBeY5HHKM*!kpC(pfvkXIAh2|Kh^r+Uo2W7VyQ8B&hb zz7H8Q(xR{XbJPiYA`a%}<}EYNFOBBkCVBe&b9BCjoa5)Gj+g?he0?jcS}0Npf~q*u zfqkfIe~$0Bi}M}8#`rvRh%Woa%d?8!c%wb1>RPpwu3Pq@luF$J*`V!U;w~cI3s$#z zJ$Ke-Y5}u~Apsj-LJt5b1R|O; z@0Bnh$^?#@Xn=z^=|i&NeBs&(T-{Xy~BgS zg@ZPv;x9GW<+U|FZi|3XA$h-q+rNBPADTbx3Xkk+jjZp+@a>}*aLtFC-vp@B8?!Ov z64H|9_i8LH9Sff$cOhdO6Y~)~f0oR=AQ1ypm6xapSaYTVxJkLM7k=}&%;&)DK(|^; zq0vEXjond30+zHB(GNQGmY{rNs* zn00fnhi+_l{<2lCQe+Lqb0_m#;aSKfcCnD~1bxij!9*u>>OLVn*gkgKpvzZTV}554g6Nm+10 zS9HziKpspxBVi0)wYQB<2?9IILygl{C44eZt@hV7DzD)NR>8V572&NxRI8MDc7M`# zi^G5Cj5g=q87(Z@nmV8=fAK7TI+e5HKMhU2e*S#rUwL^}h?ljgV$Yrt*?HI%+Q9V_ z_1iUJVM*qZ8m4Fr0^y&6i^)|&55os!{yV4E(n%v%pk1Ie&(w&rw|CN6i>h~HWyR%R z9->m84dR3!cUnqapyo+Y$yD;Brs02$qkUhW46dA03ia+d*Mqeeo=OF6gDyp5gswbMc_!wIYr{lp>?CK_`?`Yx>(iXxV!f5u-OFt1|=OOJx+CK)Wm_spc-GlNr4+Qj^w! zBJf{9hM#Nu`jQ)Hz^z|_sb975c>~-_oYs?;j~-mN_|B z1M4}Ya|mKqJrj%?_6vSE3J=SIsx9TF^?`3|TBRdxVz(_~^M5n8ZJ74caPrB#->xpC z;2Jj>Qi}-dUzwg+wUKUh|K~>nV*UopnDr^OMJLf?7Yz($86v+Iuws}9XQ$+n9KETW z01IoVg3Ux!aZX>VH#4&F%wlP^jU;r!#K*K@p|m>a(yzDdC9t0>ZXU_|mMQJ2JM>LQ zSYfr)Y%zDPC@jod5$%@zbrUwx5yg**`m`e_EyKfp&UBr9PANZUR9s)QW2ZUcpG7^A zPxwifTTad2eUMXaPLrA*penp4atzllPFZG&o*x~g)JZs;keDudVO}kjb^2ZcN>D|| zu&xnAYkfnZG|UK&UDfBsI>2cYhKe4y3>$x8f&)s={6s{m00k7y(T_rpx2Wp!n&u)) z@{pF_u#X??J!lJ_s1u-PDbT_q|9unL=06d8`vz0RozBz0sYkjt$v^-6IRd+!Br;+3 z&yu;@j{mvl4|Zb~Z`z~mdBbip671Ip@919sMV@_Lf`8Me4r$(0xO%Dv&KhYSS`4Ly z>$N$TFY1zt_AqMY+DGAsNck_KW)-*J<@hIU{Cq7VYpXV>Vf(NxZl3Dn{yh?;j?(RIo~GNRftXyamr9fulSM&#^>mk>EtHPqG)cA0Dv}hPq-z>&<>QhU zz6Pv)aHly+{SBL=L|AAB!#63_tX!3kkcdQ*>th_kiasU2I|UWL%~wCQJbzWAFu~B- zY8P|HBhN6_nF8BBmg@lNHicO$k53+@nsP!zE2d&(c1!53N88hB4OTN*%`I3h&oE=# zZw*$xf+L&M{7d2~XrNF}pT$P~a7)=HdntdFpl6E>sx zHXT@TENM2KT7)=_MQ@S-&C7K zWFGFbDpc*2Jh-LtIKfACdF`KiB#-R%9&vr~`NF>)Z??8c@6AmhHj(`|g6>YpPM1-^ z!bJcXyOIQT2TJ^PoAUWwWUq-S{wW%a*Tj0|1kAl<8;X0cn-1(vF9nFAbsXw&n`Nt>pVIc&|D6dygj-^vhFrB4=`u05AiI8Ks^M1uS zF4Y!9D%N*%;EaG~b><`OocFnt2v!LFRO^cd?^|>rFh)LRzAw)F?u>7* zWFZ!nwu_L1bdq}_rN#iu(`wJw(}d4$uGC_6)KTC07Mpo;n|7b(8J2YOzO;CiBhiaH ziVuV*rxk8b%SAm~YIy%g8B!`uPujP`7jqk!buQDAj-!&iRqBmcebq3H??KElZ0hE`dpKj|F1PI13EL-du zZw`Na<gCX+6X+`p7Cuq(%OTB zO5S<^TIEXuttzjc>h2-1WI5*3q#yO<-rlh-8a{YZOXtn1HQjLw*6iZc5mQp^K}|uE z=*@^Rha^VbYE*lz3#VwoS~XtZs+-qh?n6vy5~6-P#ed|DXn;9A1>#NwUl7+^y(U_&iI9!czcPdvOR%IK5P3m^Hse#0bCd5 zeQWJWbL>7{*Yo9Ke`bmVBO!`MU_bb8IQkLso{U!B*oMle8QGS7L@3fU83bSEJil-Qe_yNwF-WzH=7%tN-U_8*DPzx%KDx3r}# zQj8L{-=ZF*Ja&$rjPNv`(lvZ{U0Y#3XCiX^>Cvs?WmE(_o2T2Z{8KF5+jvbnKTVqzcn!ni*9xlvCRBq zqP$*AoZ^b%*DfTj567Wexc}(rCM~msW*B|GTCg#4~7%*``bh22>@h|^g ziX5J$jN>V_)MVo-!)izUh`Y1oHxxy4`2IS^uzH+81pT}-OKoir*pc%lC>3TtmVs=H z>IoBI?x=U?ph*e5psiiWc!eUTXm%wz-KC@X;qki7UcwPayP(b|DVsjQMODoc6*28}^)k1~^7?Ju${C3}x|+z?>LB|hg2kJp z#DGty?RpH@U;H)X`{h{~8HnPu2|GTWzj?){BBcQpZplfh0yiHPKdwBf@f0*yblU^= zRkjRXbp!UJ0nv-3n662vv}w-2Vz$EPD(p}ca7HCB~hbm z585x3+T27XE~fiEUut-<(cSvZi&wffUa#UqAH%&45was@qyI|xRMiY5HTapE@T+Sl zjID+kL9Biv$Avn@H7#Uf$<=yQ@LeEoUi7^DXk2fx2Q+9`zM{X@azIh`6(f5U_9Yjz zq#|>a*Sz=`^`Xg##6=SaMyM}SPw|I|lSfta5o~R*mov5vUB>=bk~;h&NhjM!wnN4A zWeho~EiMz(ob_A!cbiZp$M>gEEYNR}U@4aL4umv{if>mA;|VD>7-l$y7?;3`+wa&M zQbX;EwC=UG0UW4C;~!coW0Y+oJQDj@%ew02wPP)LmAbR#(A&z}@SP01DsGeH3D_Pd z2;N|wDY#Sys;d4dLP=U7e1^#oKDA>iy(B(^Hc4mVo0`*fvB8Zt%XhoM6_)`CD82m? znW-^TS1;HZ=2ZAqy*LRBPuZU~`;0d(aFv-eTUH~fxiEBuT@%w-&JpSEP3{Ffnv%h;oXnH%L@lQIbvEBV;R4m z)qyOtL#>}y)=8-==sg|Zh*-hqM&H}ZGuQPx#C<(& z+6ZBjG=sxw6x_Z>`;1TAHWf5s(rKI%8y1=OSz`;~4Ar#r$$KCj1(Sv#SO2mO+sy)B zyVUh5YBToJd?c*k;@F>e<(`oCnHf6?Roo8!<9-3;WcB?g+j6lgqFUkV8*9x1^6%3Q zMCmN$>UDd6q6aH(=gjx+ZCh6ioR>K1{ku(l;1v^zwHLK6B1JDi2gX1jGzI8Ohcvf$ z9A%6eb88r+rp*n?pyQM6d~=`|b3TT8$p*8w)g;>6FXGe_HVoXM+Nl@2LK|V@iAXIlE%27!@v)+YEf? z`{ag~uC!BRoWrv;AT#%$n~2KA|G9@W$Sz7Th2)jB4S6mK(iG3?ODhI)3Q1sG8IfBy z4dv0h{QQD%Wy)d_%>gxbQEBFok}s8Df}Gc3EXjVDjxOS)dt@0xy5e*XRP^s0j&#q> zSTD}Y-I=stdrax`G^^^<4iGDP?ion}bMgz!Zw4l@UjocCH4_G6WE|^1L{jkRn|~5> zzb!nN0FI{j)`rN00nqgx3+c7f?eX14QS>BxR5uYk{t&tuS}43{*L0_)9*9;NO9TZ+ z9v|UWE0LlmR-5&MM3#|@BG&znPD4<+fqnKG3~OwwsZBk6nEo*0%?Ny+Tc>7I-L|Hc z;f?BuR+;+C48dQw$+Adc1Ln{uU_cdDnJ@lQ=3k5dR^}>MTg5(~M6nYig!)z{xBWDL zA$+hPCuU0XOBGv!kfT)8_FI$nN6&zh9?MTk#vCV=;hS-qIeIT1M_H*?8zSvcS`Ol= zz?AvCYhewsPDLPE>buvh1o`=)1lRc1UjK^wAevEQAoGuB8D>Md=P;aH2#S?PeG&qi z5VwD_s?qiRru}njLxJb?yn#!@nA*Y}O#8TC@C*N!<>5wre+1;Zh1(Wi(kQ>rGEtAV zptg}K6QYd79A}k@^lMt5)d&aQO?smR)8(LME39CcD=+NXyYwZ4m(;??M~wGHlsIP7|7?IOm1+Qp++tL!vSe8A(&V?GxHv!18t zcT0emtoT|h6lacKqTIDjZU3H$t87^abFSFIRJ|eoSlzSzNKipNdkK_c?{3RF=RZ?q zg7FzYex0fEGk<$zyn1=nQS#uT+6$PPHtaa%UkGmunRnII2`F8WIy3$5q|d)zwyv}32VDN_+)6NJ^5nExCw4=lXtWGl>%JsuADy? z(ng9dx-#(F*}Uiio79XKx2(EXDy3Uguo8ZQ;R6FwQOv|SBo6NWc`0d97MX=b^_^dR zA?Oq7j&t;2-*2?<_xe$(3)s+u5=wXEU50NOy2q&5SI5+k5Jx<;%G$d?OMJmJ^Sdo% zPP>5JNC2?!a^&1_jBf?fAjbQ>ZhLxZLJ46(rB>d-N48sfkMZtO(f`NZdq*|deE*`@ z6-8bJR6szfLPS)0N08oo2}P-aNbfZu0)iAlI)vT=gx*6_nt*`R&;m#&^b%SG&V%o( zFW=v}Yu$U!UFWQI?>h4bA@IyRQ}*ncz4vE6L;rJuZlGs;8*PuNckC4YLs=<$)D>J_|$rZJitne}jG+_7F8>`p`GA>X0@E!dgCLU(54|iBu zY?muiQu^^GfD?^p@4kS`cm2y(u8ehVtBZ=htxFX0tf|WfQ5w`s9x?Iv8zyS;Un26< z>Sq+p{|iq%r~WiuAh<@e=gBt3xime^OPmJ^Ba@LK-cRkio#dbO!>eQpXIit%w^nB) zxu414ZzLmE`)M&lTYasL-xpmqGE0QqqnE1#rg7Pd9R*0emieaxpxo`qw(BnmmqvQs^HVAf32FvR8 zwip~3ShK>Pq|Z4LgO+gFWcr&U?xA`kuClA>tw3K#19Oo^{5~t$79_$D1~@{Z1S=`1 z8fxahlHn!=Y0&t7cfNN!SEAU@z)#w=S1E`-b% z$8YqLeAe0e80U{jPEvr$5<5HBMByJZ77T#HGh+=2bf{fKY!AQ@-khm(Q4aw zOaF#I-Aqc$ej5$hDeIWne_2K$> z&Wd#gsDMyq|9f_16$F{Id)S00?`PCitkXLlb@H-2Ccr4@SqBe%4J<9+Ds4#gaLM4} zSji1ocsvOHWJEfViKrNbMLHEMYqC8Vlw42jrpW}ecx(a69G3a@BPhT8XlQeLj>eD* zKiA@BW>}?DEeQ2BW1%zpI<=@nzDf6Jg=;w$Uk(c+CFjb)8actVtTP)jnVY^04$_n5 zJ6osMuy_oU*5SI}gshA5!#Oya&r$d{8BUeFc5BF9a-}ZWV!`*<2TQ!;c_^H zD|JfAyIL1VOw*Ft9lU0G|N0B{>t}9m-7>76$cPQ8avhew!=GK{A@_%ST%WjCi~_OF zFN@qZ8J;T*0xotxZl%vPGV9brDv~OaoWIY_yO*j`?s1eCI(Ll8B8@I1b^uPL&brJ9ZH(sR|@r=PGUM4>N zR5E%)Sw$kkKhaO%CN`{$i4U^lu@odZ*_TbS+8){cjOm%m-xhh%CQ6>b>^$8ssu0|$ z7i%K7rnbgvP^$7fNe{grcAlGoszgi2M%lj|v*q5uyyr^ECUt4($q{RHQBrpLadY1= zzO?*>lN?QM@F16%1Nfpj?LS+>@_@fHC{i8pX&X`FKM5X6q46i0bO2(=Hc3ZV(?~)v zyPC!Xx8iqyd&+%Z5l@MAkJbz8qim^VXs0 zFNK-W+``BV=^wOgHud~z>oGs2NxZ02_4VM+jm$n+p;u)|;7H^VHur1$`XlpwvNfT9 zic{kMWl<5}WJnNjRj8}$dw+q=yR4quuP<@hjoMHzKUYzm7eEFC_=9pj;BOC)B9;e# z452>ev}nt6;*TF}NB>ih2yzQt22leSKHw4p<&O{H(8# zEQHbjrwbday@5HzLvruTjaR_vwf%CE|5GFo>#+T`@BH)Kb z?*{{Lf=2y2ckhnL{!>)Wx>c#) zD)FEaxKqcY<+JaV)n7*z1Po4r4ARold`>H|W4}cRmrU+y{4MqwcDOhl_+xq4t<$sl zJx@<&I(~-b=M~fh{QzRQztVvF{9f$*UferLg2ZdTl#Yk#sjUB#)Iv|Q{+s^0PIB&6 zc&%!a<0GVl5iziarua&ZxAqU@2XZX7iaIW7tyBOFq>TOY`z9cQ#!C1n09tuJ^0*`; z{CNAsf=$5ien}|qm?>l&7}$T)q>aL5sc4v&&la&114FsNO=>5_-|ahnYKpGAnxI`X zffC!P+aS|KQ~oDrar$46c3!dv&s5Qm@%gE8t?5{mwCUSpb~ESPMMKj91D z;SGibHE-jQ28yM|7u;8;^@2KOY{RwhAck4Q#T9Ht>BZY{f@?hg8R=wLkn^7H9KU>M z_sM`k%%8`HnB?cv7q>|6F+YCXS8O!2HT(>9pItT&SyWWSAvL|CCjK99e7Nw^yID@J zbf>=r0j-UDELBYI+I%yNRA|xMRaU2yYdR;Ya;<>v@(Rx@r^}*Wa2I9M02ae z2ht0)5Jr;ALnUShZ;g~0bYvO=cSs;O->uKTLe0OoC!52JDZ1Qx)RcxW)~iqlJcO^ z30uNV-J7sJzZ@XeVkL`Pc^aU7Cn~2ZM=B&iKW8ZB;;^N9adsN>6O|vuMihX?qu|)E zuT0c>tz4|q@06pQE@3fTl=|~$#{z^=(B&Hv;M1qPNzD-`&&N6D1 z(>u8|>kL&z#!g8AILaV(HLZ;KW6L>ok+L~YMu*|*^1|^7+arPFD)mS~e5f}6p>|tQ zka_9x=99Cn|5Xy%1#+gxj65oj$;N(!8*-Yvg~#g;q;1uc1vM#p5m7vH9((9q=azu1 zHyx!Ac5Y4R2m|-bS%06d4wOkmsU?KfSmK)J4{QmEh#WhHjV+zV1S<+!K4O4Y z{!ucgukFs_yY}%u_pBsY%SB1KSLwsKu>^tS(i!3jvH)SDp_5abQEaBcg`12FrxAAI10eG%I$-6WwRN?_bpjNq9s%5vN>U*Rir!_`{ zh$RkifCj}Ho@a6@-eu#$k7j>L7L1g-fc)tYwoAn`&!O?<4R{j~s1w^OnF!{7czfO6 zHPqEQ@Q~lake3 z>$`i>jxMN^M6PN~rrlm`7tYOJ@!YMTlT57l+C?VZlKSS;*=-WTzM6X+L`|_8i8=&j zK)vHp339RY+dW~>af3Rhw@VqHoh9?YlzF3!FPj30Ds;MU9bE<$G*matW4Rva`{Jut z|MV81I`cPAm(%L6FO`%&g83bZ1-FslytkebW~8^=vGKQs^~Qh5aK0J%I^l7j9sB-( z`I*lxvw_%+r16~jX?f2@zJ9O6|+ zx}OztEtdI>;ivHfu)myoD@i4fBf6LM11ApMUpBz5E17py-pxINwj+W8r%~;`Op<+x z-KZPxeVt%G$M*{HXy??_EBAk429qjGbRWM`52j@^oT{ z4>qJyQ8U*;OFy|kQ8XVN=1B4kDZHOA-4LwojVkaY*Qp#ro{=+xfiyteV{b?ewp{xd z8N2bG-%-B*IykZ-;V(&Z8kGK1Y_Pw+-Q&Qi@hm;`-o!$VQjOm02zuPh$ya_g>Ijj9N*6_=v#(X+@Ad#r zb#ad)pmM|M;>%9EA`i%9i*aFbX|2I(h7#n=ERQ2$%hw$@TNvLMT9yV;(Jp--#ja}d zsYo-s2T>GGKNrkpIYwsicig7LjRq}V7 zvHX}_elm8aM163Dwj{hR*G4TtlMy;PLq{t3U2wh;65`?!uTtWK@>CEtL2Fp}-IlHN zW3kN~oULB_(Hm4WhFmV_tybKuaXwWkpGaY_;I$py4mqk17G6|@>$wD$eRs)exn~!}Va*w4cjoe)oHr`_o6_)7g zR2OC$ibZ`G$gM6{F<2Q#>RAmg{`I{b3D3AN;WL&;VA36#zaAtn-7!34YrJu|8 zE0!$=3#g(ws!!E`xg!^UB%6W(yQ6$~D3yH^-R@VqwPHD%lw|GBRX&tV?;BUq66O62B(8OORk^VH~7apI5) znRlY2+|HG<;5!O~RSg=k)NSv$lkVk_C-XcDn%BcyxO}0PKU}46IY}$5DSwWFct{$W$L>yJ1|JGOCjVVDlW6h$uKd8e9;D!i4b;=0Y{)t8-v^J;~1qsqcjqiWV5~3-LebMc8 z%h!-pc$Fygm`l_Wb9MzzRKzlh*nvS9vLO|Q78YQ?$!sTa$GkTSv#E-X)eTf?oJNc?p6x0xROq<7u3Y>g$?O>jz?L7La*Bm_W!*OKgil_xtsSz6+n&rPE)l?Oy_RTFjbbTyc8xmeu^MkK5-SL9})(3QV{g&Zr`-R z>G1N-zmt4oHTLBbIWsH2yo+(=wJ;79-^)aE3)jMi+j8nJIx}m0VZ)B)(5aiJe@s=y zwO)UQHMM)5P5(0Wh`$;~cwW>&-u#}C?^Z>1c$7S4+3N&V^*klN$Sk>9M-`DJr3bE~ zMTp((;%jw$14!3xA?r)owiv2{(!(*%&Y10;{i98{)uT6-!m|};^$c}hDM8@oHvbW4 zih*oYWUKHEVXEWL7s=%EK4BkiCRNO9rT!eN`fnlbeHIj26IHtCP=K-zp1w^xfQ%~DDSD>5oh6Wy z`or0xxe8t8AS+mPc6*4G0w9LLv7e8zV|ZGoi-r_Gf0n`a6b=j=${a@HZv%kbYhk2! za@8pTl;74S@wz#bf>#x-)%Hx_$8AN)o*L(BtR#b*olBtCc$W?$tOip6%$T|kKyh4E z&gLVod83(R)_hZT+mv-Y-Wq#{Q@V7%OX;WHLqZ#0`aWt)EndY>hH0cHXdFd>6=!*u%gFo}xxxRZJAG>WGOJIi(!_=P5?<9i=udkXzM=LDN1B7b(=}=B? zir^Uq?HNu>`If2oX2R@L-4p8-&}KcH%|JN&ymx2~d;fhlMHJv3kI%D2eSlj8d?1@0 zSPAFNV$;cQ8H|)xR+sx^&p7zSk=yES+M+>^QpaQrHpHBmB@Jrt+(~Ux&!K0X@2q)d z=y}2t!wCZ0Jp|mW!8ojIs_0v`zB;idLzhA_!iB?Y^p@mK#kRW2Qr4L`;F@o2xa982 z@n?8NE8j;!%MkX%_W_!w&8E=-UOXxA$yw~iXO?~vAzCr=ICTNvZ#R&SsC?+vKG%&~ zEGQh(^jy84zy&H?G}Id}h*zOG&sXk>2}#HUpWKSyIg}F|ZnIRaC@JAWIsTqhz$d^^ zMK59)yV5p{AI0{*wp^`wElQuBMv>EY!ci$n{j65<_K1lhc-xnP>kYjylu1}PFIHJj zPBbG(MQt&d&rl{1*Pqf$j%sns6_GW7$%C9wdDI7>$bFR(feRlw8tBwglRk4%=%;@y zB5-CofQID;-Eu|COCd6uj_96H>v&#M=?&z=`z4R z(h~-_Gb}?Wsf+odw8mIK;^J#Lbo}+|w$jDGX7a*v3Rzaoru<3zFw-b5-ESjjD?eiYA2nfnQgJT@Sydg)sEj&2OnS%9B)gfWvMu!f1c{kID+b6YJAasH+ zhvrNx4x$!%+TB#zI(#tyEN!6P(nF>3d+nD;ct2@iIQExp+l2p64V+5H1%Q&vF2Bf! z3U+7F{!~IR@!tTdV*mnMSd*SdnL7vZJ!}}+N_R*@cq?}9h=o`zu z`(rVjOQh+|noQ;{Cl4-FrQ35@Ps)3)2cd(x&6o?UM~3MpD4Z*IW%W`JMwj!f_ds*) z#$R*wMg(6T1+sdq(J zf43R050sv|u8BZ;&UrwHgji6@o) zxnGF$GoR3z(OlcgYvC^s!Je`TH5?5&6K2N1W8DP+Z&ocx#4Bc}cev%iYKFXmOWF7Q z&w-jftxS04Z)Yt*V+?%LL7ZrdHmU~S&E@p5SxAIP_QQ2bi*FlFr>6=;;u05{<`xz- z#jh##K=F|8Y_}t06A@Ga7IR`2cuxeI7B3A9N(8ZdacNsd79n$!>k( zkidc^E8N?bDRUh0s^HH&MeMNMlq}y;FZ=u}4tclYf*WOg^-_ibe zKgn=?4lT~laQC|oI?tcMp)XMVDrL}|6!E%Y5vsWzWBjP8fNCA!PL97vR*-bgYiql- zg8@FsWLFj;H2z~Zr}@X<^vQ0{8qm@(b)74_$}R(1tY4k*YKCoh?N{t^*WRoqcCwrk z{6corNpBL(sB0H_Z~o17n2;pPcbB-!Q)|ImyCLs*f^3uxPt}C~rA@GqXfIE48TPRjY6r2ZoI`@y_OKz_2qu=A!i6~0-p52E%inU|$o(szk>fML{f_0k zn$z5)g{oI=uaT}^AJ4nr=#TVU>KOS^*tq7iH5rx1DLW5&qebi|40rwcl>th^`KTy6 zEjcm0th`z!o0{+q=#;5=$4|OrcyV{z$t5Jh5TDalp1x|297$w@IX6%Nvdl-PPChnX zKQ{|n-F)gNT%Gb5qU;i38>ok%aJQr(dX7fvV|(lB24f4y6;(Osj)kyPQ8}DsV)W%E zlJU2#h?IJAE_P{`w7Ry|x#iUHo{Vy^y111cUJPJ)E$ukdGz-G@3Sr6l#SsRw=ionA zx$xA6Vw{TyoC@5(=e5U;U+Aa!t5{0)m))RV3fybrg?p3MeVWzo$OU+6oO1%GSSXvR4bpM<-&1QI*Z%1#!hC_1 zBB&3eqP%APPcl4=T*j4FZk4injDk}=?38NOBDOptJwv!B#;ot22|xg=s(P(Ihe;A4 zX^$H06;Se&>{k0J;*5#HFSN(kJ~ptR%v$Pv&cU8l`LnK%R(@<(V@0-k+P>^njC%FM7uWXUuC{EtP2SCXq^g}* zz@b?6r2#=z_0e&lZm_GyuyY_$8{zbnc57)QXnn41XqYISV}7lpu+S9fuFi`%q=O3y z^M;Qyg~^qtDp8xSL#%R4300%`xZ85I7GQ2AX`_5yZKwJ&ETlv-u>F+lR`ZtOwOY3N zEwcrh%&$J(+uEg|ohS*Y(1OqFEend@Svx zn2Ue>uJ@VBYcaW3fas1>6%^aEm(LWHB2=LLQC0vGU*^|`-Nt-ObQ@Xq>IMcOFD*V& z7Uig=OZiP;)$F<4tV-^96zh;Prl?{LLVQv+*y!|lp(`D>Uk>>MSx8)5X|hX%G|OGC z{O-O)lE14ZavVQsmqsf%P>Rwko@MT#TB5c0pgA}=P*+ZiGT!SL{Ba&-cx@n7+dN*N zs;-PqPkJwaWooON5cX6VF%m^DZMSW#nBT{sB*-_)%EYh{(Kpb^Y=O)gBziTi5Tcq# z=Q2Cj+5L70;H-6As1!;N;ct#$BO4`Z<1Jru|6LiLlfPA)2EZep$vgNkl`xO%tCAQn zDZikqJMbPa89(5D>UDlM`!&5AU z61-eGemlk^Z@O?86@aMgw_v7>qFeEk2Pjw(72obp@38f&t>Q!aW(Nj4_&1_dl0sC7 z**Uw%UsG^QkZ(5+)go2`p+jp*`efcqfx}A%ZWcp`PKOl_-^I308{c);?qBI zG$pZL@nr>L&D_>jxw7oSO`505Bu2H8Xb3$x^va?+QQf@}^^#)S&!ufCV zQT%Ix4wf{yauBnO>)1Q(?y?)m;{l|GseOE3Oq`50ZWa9D+->_wOZm*pdv)|puKJev z+@5l$>%W_u^YHJ*l&97!RD$?kW(ICZX6&i_PqA7zo&*_O9cc8X(`-Wo08oQh^pm+* zT8|V*>J4!Yv)(z85*IdnOMalUvGOugXRJG)Q^w8J$8omA3NACh$Yr^QZl2PH z7GB=d0~kNpx|IvmSD)EM8petL7A5b$fq9MTuL7LjbSj(LrL|5BN}dyxfOe01AlxHO zpMVSY^{s@h(ZR}J=omGA^Im2-MP>;FH~k^LG^}jjcMHAU+M_%_ZwE(0zxF1^sG790 zZ#J;0y;jI;F;MPNK*z3WIC@4%02eSdn^g0ya3VW@SPr=YoXyfBR$@p(wdHTG3G0}Y zm&R%fMs(MYUQ^&?Ld*Naj9SBNzp%~iC`}<1SS{Pnuky4ryU@02)~-{Te5UC9v7#m) z9HjQ;`L=dQ?<`Yi62+hHB|q)nMrY61lq4@;M-h4F9AQ;$wx|(FWSL9I)}VgfdO|^P zm?}qB$;SIG17)@@^v>tiOn`8+Mp*4!SH97u9kt}fp&{D@gkzXeNK$l`$NE(B4-aG< zmrklr*NT1R&6V_|bMq8#7CQ!Zvy%YnV(nj0DvazezD-2Vn#wPV%*A}uyRn}CkaJc$ zCXrXqeIYAnQUM%u67op1J6_d}T|-Av`s=#e`EHM}a|iLfRVAsy`IgR-BYP3}h1Y~t z4@3mroi&z=Ud9bemyhE^SLfCzoW0`@$~6`y1j$|rq5$sA_!5@@+&2mHW5eZxVbzJ> zo#6fH#VMG(@dGS-0xS4bV-prz7;J4SO!X8$W7CnAIX-_)c5CP{#S+47GCwLtT0 zp8p<_|A&We|2)3W^Z)7W4dNf}L{&M0PXm}hsH}c^>a*|e^V6VwQcs2DSe8j=w0V<1 z(JxfY@3Y^yo=bOiQ>-vG=8fLxenDdh2^@X@fyVp@&&Z(nJeZ3CfG~fj-^iHxz4-aP z1Ola)Ut_!f?JB+fLU;K|n}(WNq*c|A%bXCA=sSOB5jj%V)y-EFK2k#<5H;A`JPx~A zDd+111473Zz`%L<$5pgG5cp>Zr*vO=g_(OLo4a^5TqAJwYe)nNN&XR6;SX?f{7T;T zehYhXa-Bpe1)J!z=iv!xoNr!|(s=ZYLoGEmP=o02$N&CW?)QI#*!h1AYns(nD|^wd zIF9)4Ll;?<+i018g^L07HpA1hGB)W6;gsJ9GRq)imd>NuNUiFfpa6CWV>cp%x4?uoQ|IOe~5 zgLJ?-IxcqJKxGcS zhO90o5!Cm;%XcBW+=b#&ZQ1gbssk-3oK(MUuQMC9QwFV@xeda)@NLT>4CHR>2M|ZQ z|I%p<*+rYgePRusFPh}v&kB!pR8S)4U~(?TRr>p@VuV|jlszONgSD6ztb^k_iJ!Yf zT^>BmR$cDSJ`>v3XMN!W78vatAM=$AAvvOAB*@WgE`Cx13Qq)7nzjeTF#h78nka+` z2)cT}t$vmxFNX%Zca@%6|6#oc6REMG8t3N69qyLvzf8uNs6zPg~eeP}SI($!1%z;eyiXpLi`tONcm z=)^Oq#AytZ=fr{rmw_oKVDdAqt&0loGz%Vd)X5pMFtRH689Ctrm=4a}Zff|%cc9`z z4}%|&v{m>Y-a_3-!Nc;ijh5xz$^t) z*jgvvp6nX%r@CZeKNn?@E;w2;I=UC9MFev~RA}B6;k_iu%?RoiT=%&%pBOC&jy$kR zn{H*a5Uwh z;#E`?9VC(uv$_y}9=X4Le&j-MS&$N>VcrSaWr-F}PRNCEq4YjY=%xk-??op5OnNS) zpHFUdxGa;`mZWI97^hj9xTa62!Cr6PX?x35O?X16^0%9mY{0l~`3BAHYt5PH@=(e)ha%#_zx z%)?C|mn8MNx6633iIIb%e}!VcHWZKD{kPM-0g7hM^MPzUIw@Tz`uWYp!svZJaK1lR zkc+^JTTBTw%2^s~K||NsT0m)~nt!GJXdxu$k`KIgWOB3G^=s&;sCGJLx zTUer<>^no6xU9%Q_Y4gTY52xlMk1c2o%fm5v}@#9DJ++J7dJkArWo%X(6GQ*6uxZD zg|W=ZLPuCc#f;u2RuIMqh%eqLU9TYP;PWE*)c;*mY`w1KW`)`S0+y3_wcToU_hv0n zu?i(4{BfqjKq4KTRl|&g!$iPb`_qJ^Nx`#j*z7OE1the@!K6b4&Y+4_9Z(C@-+2FjKGxpn* zIF%v;0Cug^=m!KR!_0>PgyqC{cWVXpaUebkDVLn>B7$fUFZ#mu+lEYM-$_alm#3D6ny}$f%pNJ~cCpE6wC8sI*-G zlWs4Q%N*bhyW;;srfBp5GiYgZK_x%?kKY*>mIDA#+YMgcnFMYth^v+J+^j}8s46L4 zLACEE(_9+sd@Bzw8z~sHE_bU7Vbl1Y;?m{DC&3u4Qe@|+QS*@U-?>51ZHD6!xs623 zNrc5(l)L0vp$f-RA_p>AY|tH`??K#?%2^0~#}8ISC6tz3ct4i3D0S_l(1?D}Bnp7e zEE65m@D`JHDm(x2^a8bW4L+^iIg4;XX<|7!jUk0X(&p4I9RZX4tS94!NL|F@53#|n zk!c8Z>ae@mfUc{Kz~;G-gwv6)9@CWsU^_tv{T!>SZcioJnGLM{BVft-WR%xC%wC4B zX=rR2Li6Tw|MGLF0H2Xmp2AxXc&+^`nqwiH?eVEq$rEYc`He{J&2mJWj5t@1h*-Wy zVUst&Eql^)y}Rhn>v`z#2luvc-mCK3l-#e=2miK`#`%uqgBS4Azcw=e`@fuqeGH>FyU+jd z{*QNZCrnd9!e4zFK-rv;a{?RM{|ylNKkfRTL)ibH>_89vpRW5O2LI#dItF_PqYz-tw-pIym2zUE|obN`NIwsf`jD`)zTLNx?$e7qmE5-!Py zP}M~JXs*#Y`qnqvHhM;<5D+jS^c7y8S=<0#Cg9LdZsjxWO=o`=LzlGYgyUzcU^BsU zR8kN`JU7zO4Z1?Ij-{rHaBag z-d>~+Ze@b~c%T+)GH)`4f%kAovdf&sF#HakBUuwET%RY;Kt^39qSOXO(# zZXpd|TNg`ft0eQV#*(KiSn=ER5pqFWCRKNO$WS{ow*932BbHaZKiOKVLfBy|z zkLFl~r7FN(2{3!k14m7MC6OaD2^w;C(_p~*U#uVyS>>!nO=jZKK6UG)Y~>?%K^Bj zSK4%dB$-)UTZ9-6;uN)=xn1t?>Fl;` z>eJPaiA|wa9I7$R%$pcFDu`|7Xl(0$7(`unDDI?MWtAL?A+@Zz)mi8~5nNiG^UmW1 zV;2%D;#st!a*6?%uEP;^cIwv}iEPucItzd5;Gn_%jFt}F261}PJ3LndqUd)SFtCUy|t)&M(DSi+V~XRq>^;w8(1$m%*la7o$L2_v)9K0PaDeiu2Q zY#B?F9b5I1^?1iyCl=1?USVvp`N5U~|AlawMIjvbZCbErqK2!yLFF7WA2nM1LK~!7 zwnkY=^G9k38kyi1&P8;|9IL+^$stS%C-GA6lA>5Z{kFZHN?(sQTdbQku8S!a{Q%ft zIZ@@FvO!t(Wo3_T{&L8(s_sxLi3-;iCrEoFrk(e#i0&MPzync6E@k_ZLH_My#2qpC za{Je!j&JuI?JDEHw+=IXimEHDt|5BgA1n@vET$K?rf{ITr#obB11>j0g(-uQ{syoK8JEu729TO9#HI6s_+liCGs_!wk)2g^J zX4V}fmBYxs%XOOpI- z+O$Hw&hD>8lH|PIxpJ&rbjA)L-;oOFcyOKCvX|PXo36NaJl-OxLTeBd5RCpd+4?90 zj$S|)74zX>Qh{u(%+0|;n+LkAQiZhV?fUlgKDWN%3_L(G5@9o1cNgiRP2n6aqKSrl z@lkRNC%6Vea@AtRk7*=^gOdY$tm>_~TTEXSyu_I2FBei2+>Mwfvo#qx;smgd0bcz2 zzQ~!o9><|~%xWlEhBpqL=xs0GB^7R5t_@)uVl`@o8q<`jq-4gCs|Oh6mN3g|8^p`J zU#oGpIq1pOzH*5uNb_5}*B_t$DbBBh_pb*_8H)>(AWHSmtm}d_dVDp0*4Vt%y$O}2 zM-SnL0X1|gD?@8=r<=2$Rsf50-&B`7 zky)2J!t*+3!BKOL^YP{r!=CzA%1*rX&X_1EiKmjVtpltsIe&#RgEqJ1MC}r3u7HMT zZ?W`0Ya~J&o8!5iT5j2(tQwkLUgLViUMl)Fqmge?Sk5D(a4RXh+5-%Na8 z-Q;Di$mVL|LUrS;R zaoimA#eFa1-kI3C6n`iJ(?guMbb&=o8{nwJF8@1{Q_yZN?+l3F^O#xfsQQ|tnl>DC6glI(WMN$<&UxxGlwiE@$l+E_ko!bJAPB36e$I8F8+ z^Z&G&gI8*~>zqGi*^z)&13thwdMTDcLD9+tvog!#=b9$VO=KfOK}?ORc)%0J(?7og z&aE!YSBgsRXffkf)9$?DzVbk`Q1=ZdsrWJa%HXt}vDNX#FS*W?rl8PVzbBj^T%wx89v+DA5vq zX(w`3>-NLP=$C45DN$sBw2vMHP{f|fb4@& zV!ImliY(_*rn*y0BGy4wjI$zlcSW`13S!~%i{om2`#S|_rnV33{mMv#qk2w{NJR*! zywv@SCZt~M1Fn&5D2yZyUMh6YL**&eU1Nhey4poYA9IQ`GtUVe*Qk|J6RUW#nd$i| zwmrBM$35^#wX7e&dwufckPK%~*Jy`*>%(`a4YoI!5j%2U0KlwEMHIPvn7b9z0X=#~ z90!Os3mtAr1b7}YTc<}lz%ELR*}HNHGa?>7bDRd(7P4^bq3?1lkzGXyMJx>AIgaA4 z&g^FtVyv+v_>h_F*n;<0*86F`?G;0<1vvmX+{yO&frAa~wAyO;ZXNDp%`6-p*UiL) z=2=*mL#N-G7rKOSpA2xA1i15q26mbY=j@^HlBm=_u+*QCpIi(B(Z>u%t04uW(Wh0& zw}h8Ox)T(g9oNmH`-c%-fu^395}WQj0r&qnut@SYtQnTUkFV#LPf8zdNAObguRkg0 z?CebBD;Ov&o$XIS@c9en+7`>=7B(?+2JmFR4_|Mzlky79E$-hn0Clc2a@HL^5x)Ub z-eg}_HFDpy7~I{gcAE=F4V3sCBvCBjW}_@z;e|)DL{x+L@HMQ#>xt=Z~*SNZBzva zdq(3cECxH`({kAA_eFtF@M#$O`Sa%v*a7CFjV9v5g9TdQbPG72BX%)2uRsN`oCi~0 zT;Q}AkdjZ}8bnr3VE?_BN8r*akWa)r7^)kvu>?(aXUK>p146xK8MAR>Lv_5dd`?k;h#Tt?LgYmeGai<0CxMwUk2I*f?YG&w3ei zxA5d3`6O<(j5XMvn817Cpa*trBoD*o8EC62mcIIYes#3G(?U{QoSByP?L+X5d0q&* z0FE6(=7k9#YZ<_f%8!98xt{pl?mu!pW%uG#$ftVAq`qx@^|^3Gtx#W3aO*1_HMg$3 zcwEzHEp7xm5+AxY-W$+e+H=?GKi(6h z;`x}h1F*eHj{011TZd&YEqQ&mnBA)jUDe8eCdi+MFY+6WnS1jqe5}Ok^+WC)f%lc? zzVxO9U-~^xj`nnl4gCf~gMxB5iZ}sh5yG@9K67KkrX12Ms;TdqiF-O`ntYI0{cY}> zfaW|ed)&fzff!EZ-63W|R66`EwSF2$cA;ApXR01RY(`B|!Kasld+yv~;n48cvL`1^ z@4DK0_T{SBzKPHh;m+{lL60LbM18P&q~lTStDhjB57?F0EkgG*oSfg8ckI5&-u6&$ zYQTY+HUu9xg~1H+1J+lOcZa;v)~x{^W0L6Q#(Ls%k6j4S+PDh$xRS&Bc#w6~3s!#O zp~aC-+>iPTIzp*oIujdpLfZJZZj<<;J10kyX40oa(0Fhl z2RmL}+7GT77*GqL5!SDB!}X~u3T8S2u>7y#bls&TqrVy-T%BLtJ=Y;%b~+rXu20y? za>s9AN(EmmwMz2uH8NVB^etVKu^Ha?z}*uvXqUWhC2+jxT3w?vGgW)Mi%Zdib)5_^ zU7V^8WrU8Mn@RKJ(z^!U zWU`^5)>K>+^%lYc3e4_%7KNMd-FX_ls5!sAsODa1`Px@zNYw;6M_p*kUsdG z1-oaHa1Lc($Jy*G%XHL8u%=HA1-XWS_Af6~cho%83hM!y~jfCW=kUy1=Nwz1m;uo4r|*nCb*C zQrZJ0nC*z#Wtm&Wi<71}Nll_&77CIhsr#Qy5d0Mf8!Hery~TK9Lqs($H{rx>kxO+= zMv6P@1$>}A*4Ww^G_oB8NxjpdAg{J^U2O2g)}I~Wq~Aq)H$|6kP`Mx zLo?N-WISFPx?(Wcfv9t6BI~wScWfcTayn+}dv0hjgQVHy-1L%v&IusvoK(C|aaND7;NlIhDZUu0bY0%OVL z#yb3^RfPBho4xR7&v%eEA+H$gg_6>eF&)Wy6Z`zGsoS~Q78I7;P=~b#gj70Z>=?mg zm8qrS5Jjfk&d=ooX>Rn4_1a&X8mq5xAQy|Q5vNphIrZPzw<$h$lWZ~~cOH(%nB(8q zggQVzS7PqzhfUA%&?$ZEF}Cb+^(y?UPHt9bi~p@Bqvr)6JL2-RTe}RC(62O!dgeui z1_Tn=Q+=gTUA-VPcR%d!6hvtGpvf?K6Mx<3SVjV)%B!|^SM8|Dl=rVqn2&Th2eGr+ zB&bHav6Za!*Xnj>Z&=d>G;sHuXi#2Leka5oc8c5s3fEy}$*6 zJ5g;+!8TMz0=d7=?N}?z4<{KXH`<+AY`x>!LVPdJ9;Ijg%%-!iKJjI7j))75U~{(* z#mf6GvalH5qv&&d^h%pF-n&20PdT85n*x7rK~L{<&QcTG@t$~V^-2noxjVkoZC>wq zZqRBE%YD64q-QuAF&Hm++~-7Cif-*Jdo-oz_QZL4KRSnQe;t8%$)8MUtkg#f_v_{@ zdLvUAC0sw7mJB-o@u@75m%P1#S9!PKOnoygR;*0>kAG>N-CP%p0y>uM$iTTuG3Jfw zcmufOY#Y4Zbz_LydT~po7^=NKPfLd+yw`DIvY$$w*c7Hcamq z2^$9u%3*iD4sXS`t?jG{Yo~p;Q`{Jp7-nakOk?McJ?}j$x{}Yna>*MJQ<|ueVAxtC z=vAniAQKc)#cu%}jp;J*aVvVoDXLs8aLSzoRoZaY1;tspWKQ<-9!(>fJ@iGj6OFf3 z-?kaW?uG>NbcoIw6HQRoOmO0KPEh*WCdgB^&8tRdN~7iq-sIFm|77FQA*0;6veHPK zI^(w_?hCS*$jNH(Loy6YR_$<*q;=obTz&2xzJXl}Wa+^aFMFiHIMNp33|uh3+$NxVW?wpnZ$ zp`?Xgs;@Q=BJI&MzC|6O^^sdUwF056y1IKRcNyd?bi&{j&ER}M93ZgHI?CU%fbDm- z^n28QTlP+zpoqM+^@|VRBVrs4cxc$3WQh-Fw>ZmtyEdxo6{&CXa+BgD;%HlsLpu zb+irQ;kc5`)zscbXZ_?4JMM3?7kV^L?mNm&$7b~>t5@-vr&=6V+P}243m=YwPHQz7Fw7@$ zI5j^^i));HFuFB;Ypf(|`LQ{RiC(DBD69kL>62PcBLtM=!kaoTZM5g)hrz~+MqI`< z`s%a{Q)r%tlVh=X=$sNS!{g+a_sz+BL)n+vPt?so?z<4V0sZ4tjNEjC_AH8^l530nuqXYpK#17$27iv*%HbrO+cXrU|xLF{`UTlTf=i7X0lU<1E1ep+KT;W(BzSC$q zAv&ny(y+o%$b$#3TiLVtj~QkQqz;z4VLmgy*7ve`;xTUc3l)qQm$aBi+8b`NKQ=O7=}-N-aO8q@3E7-=c}KdTe%^ZaBR2n zA}qz$v-RX+eZh>zs|VFTabCHddy{~p1wS!3Br#6q%rPFhlyv*NTF9*;5Z;ZP?Wc>c z!(|7%{#d2N+rbJ%7&?-pLM~_aAA8&UDyN7)l|mXfO$t^09KQ- zOg*pdv{|)Y&^+Xkh(;VQTL3RFh4oBxc8qPBV%#hN=#;t9t=2HMbH9m8`PpPfC!2_g z5ku$>WI@1iFH|0dcy;^(qNg$pIrq4y;?js~2G)Y4hod2H)7w9zEj@}{4aVK(ZCJG* zoqtcR5h)ylyxCveLMPkn)VAICX>1-8&NP7EsFP|cg?da%A2?TYNwGPTD$$HV?)TP8 z#W)kP&7b;FkA(SzPCJ-iLT1rB<0y~zEx+V2pL8)mCXMCsVbP{r%h|%)UM4=u{YmPDJ0FQ%yjO%bpMfEI z(dmAdy3*m4j;Nx+fGG>bNH?~F0bAQ>-``(ml)sHTHzjq?Hr}({KZ-{ul95}?{~bHG zqn$wztShqm=^0&;`Ii2J(G|WdmdDhbm|<$mX9+|2X(|j?Z>SYXNJ^avp;Q3=jcu+~n9( z`_r1c{Z zkA8)rXb_5OvuC=pms&?^KJa%iE!=*)QocRyLCbTJR|-Lh9n~NAJ49JLM&i-ch^-=; zern^A+PzG$#U;?*2+2Jz=oGk;7of+-!p+A%)R3#GDWm-TcxgIm7(Rs7S>N^uNZ!eR z$ZXONtP~;aqk6~66tu0&uz@|#0a33%MwOrO{VufdJ9csl zPhw7Etkr{PYp{4v#9h>$rdYp7-z!Oh)zyg7@)3Br@phsy@*}=!b(>D!bA)+HLk2_D zE}mCyTDzk>Gt{~MRS>B(qzn`)=M$jxZPa-_BtZIsW<%+1MxL?oFFE$mc*@r&T&l?_ z1Y7~dYB8nN+k}+}U9gVHIXzv1rtL*LiBU<`8(c#^_@IKUez8$$)z7$zWXL`+&Gj>Q z`<81)E^lFvqvkra5}NKHbfK?SZhVY#4g5L9VCGXz1A1pV$A-!Ja_kTz00 z8hU`NH=A}GI+-l{U~c5!>)4zgV#p8H2p|Dz?CTc%yE zHW<9{H(}juU1my@uB*UFWe|xFGu%_AYGt7msE@ehmX^2OR6FV>m@^SWPwexb2iBuM zy#O1IpvUiP)s!#| ztru#{&%MyM&)LtLW?1r=7ySwDt6UWfJsJE~L$N5y9f@2U!THOVb}!Gi^IIG=xQxJ7 z4PA{j6S{=J3vbr+mZRJiSvTr|en%u%qRXyy35U1o@}_(Os1)WtczX`O)+;!&KryD7-gYC)B)9qs=F4b0oOtJux=Qvr(>a{D`ia(vyj zxJ?kcZLPVh((^zvEQ#F>TsrQ@c~Wz3Se`uQQ32hJH1zq|;_SfGySk^Hzc|asQW*x7 zyD*p^Q9#7*$MFIh1iv5Hz!qcOxp~CH{LBy)%G#I-)9r2^s=2g+HT%J#m_3PcvDXSB zf?dA=K5?M_Orei;dVXiXUyPcyW;+Wuk08qwD{A@C;X*n2R62sm1wRQ%__x2?H3@SM zpC~1mgpiS|1nj&CNX$&rQff%>4@#lf?R1Q#F4~=h@+FMg{96<>CG6ubi4mIGE)(CYJ~VBL*e%GosraJp{>G=w3^Y z$Xzw5{5thMW?yUZzqXPaga1yU0I6oZ(Vgb=fuy+AmP>TYSXRJ+<;D2#w>FjZzl7pF z)@yk8nzQ7rBfPzgsB%y7opL?d6jO0uX5uxV*`Ec&3`^GQPvtE~V;lLUR8#$ldA$SU zXk;b@5J5^QWfISwAZ=8bu~NhChzkm{#dV!rq~hX5dvnv;?1|Jly$0PHzIezvFI-I? zs3XWP(4hB1i6r??n|!PENl1yaJCKI^$I&C|rX)mUIT@l7AhWeMxyDOgRvvu)gV48$ zWUee?E*gO!I|sPLroTJ88){m~d{!H4DV;lJ!x_hxh(~WsgyO#?9)q=Hbtw&n2K2_3 zc|?qijK=yvar?)GwC9E-)A!`&HhCsP*-p8kT~=O4-H6L1d%Vg}xTEU=qV`F%VctC?QH-w^_-NOrpAmAB za8O&CAUJQm_+fBin@w;|$p|m86GuY+!A(=)4K(o(8q7>7FKhh${b0}+mWvb#fQarU z#q#=)w}HTXYl!#a@pzW8Iuc~@q9G+F{MKrm4PNlvZ3_Ybf zD1P|PCEbPFuJ;(u-fJnzO!w;Am$X!b>yAP$8;)?i*NCH!Nq>~vcb@^8hGlsh8v}lg z?2^C^Nb3Kl+Spf!YKZ;fFR@cMIvchtctY>$8hkf?f{D&IFc51+Zwxoc-O(#0dlXdI z+kQ~pRrkio(A!T}XeaCJI587Ci{wG>serg2zBs1ws=COv3V?o_xM->_%_o+ zK@MQ=7K>&TSItkoZ*hx-P3pC%-HF?D+6T~_uLH}Qi&F_{3Pbe8f?rur?d^&`E9h!6 z$;E0LqE_ka`W-&g!D)lxZC*j?2h`NQUS(Mp3@o@RL=yH{UP5BIUb$msP5##Sg5hj+ zSn4YG|-_00|b zOxW0W9{~`nd#F^{7Uyuw*(M86o*Nn(`hS<_YIX?|i>4!z`O>+nEm4deB}_sI8jlwg z4MWnN=41Ty^QSD^NS5fP>)tL0C z*n9Fu0!JZv1NHv4h$Y@>u9`6&%pRSGM~MB)x5=w25&tUB?I~y zPZL5!R;bxp+WG|=?M5S~xrxE_^Wkihzg6L})KWqb=n&X-VE2+XcovhX&_}>^4_yHp zdLygJ)U!4&yKI8;oOZhEzsKU8SfGd>S}5>SanAsyi&*gKeQ75}r8m`yJaqI)i$Z<@i_Y5|lG`nPlO|>Yi+1YO0=`9A z=XGQC<&I&6Zl4xoz8!kVI5T^7w;YB@1ZeiUwMgNFbZ)XHGft({A2SzL5g3fG<-fvI zv%P5rkBn^osc&gKx!z1%;!NVT1uH(H68xYje=xgvsRe9(ws5;$_Sq)RHd3x#mjlq& zNg|Cpj*n(vJUOlcT8vgFU7k(O8pF;-@=3T;Tgn!bGk#`IaH|zt92xJY;|!!*syvxX zpxpU)ez+o@6dgQ@wXap|FA=f~!j3;KUZ>rS^Gm)7BpF21{0-9gl2a)>NELnNCwiLe z;%lJESkjYRdF}lm*W9F!S_n<+yP5Z2u=X$HTa>1OwbTk|MVg*Bx^S-H;jOZ3uRDRY z-J#LFWa0F-UL$oo{<`MoA4>K%c)}0%3Pae|ouFZGqMh#3g`zao=q-OgM2)uQ>0-xV z#O7yTaQ};%mHe3((Gv1JE-{YOaz&d?)RVEomzkMhd)^v)y~+43Ot&juqFv^?R&GJY z#EVQV6*~432M)*Y(1lx`wF59Kr!oHciE^l#RYbIL*;t0Q?_D) zy`Y4p!O>8;27dbzGedG;Gq%LD@9|#IY5-`-2}Nq z+c;C~m+oxmW9+oSAXgui#CqK5)_bqh;F-spo2L}%$IfBXZWI7~7^TAPuxW7Fwb z7sr8lLyz40dX!W?2R~re+ zeub3)K?gX5p1W8zXWfban^qtKE!Rxp$vid}=;$L0h&3xx^mE;4CfISLzKW}<*Iq`Q z+Y^RWO534P?vQ}^Q>vb^VEa@Hlfv>Od#!g&vc7jqGxil7gOG9Piv{d~W&o18-@}ma zps4=?i%F%vR}F*So3H!83fafg@}=Y1V(t`zsAz97D>`M-Lq0-3=ZhNi@v8A;Sh2E| zOh+l2bhW`R_=@WFB5ZTKvY1mO@1z>Sw#31^2z&MWV`$x zYE7c2qtgX;tw=y=zGv1zLk|IwSj$p~9nuLl5asspV4!e)KNcO}uGoJ+Dl}pwMlL`m z8sz6)G8a@4i$2tG0%E7BI+N+z?=$nJSaNTY%dbA%{6PMKr4TjV9;1cG<#R*bAtm&o z#%hP`DL#gtXNfAsXObw?Gs&i6_aBAh^JA?KwzG^;W*s>8C@} zuJ14&vsrFxU&VnNq>{I9C&U^&Xn2B2#&x`6Psx~q1;rY=WXmb*=B!P~5~$=0G4CHQ zj`v;pir5mGzoIhY*HImP0zIh$LAV#X{P#NRsMD>y1#>JSgfnlFkgYG#b_?xHLySg4 zVF3%3qd~DJZ>vm?lAu~_HU3H}88LE1bk-y#e^)YpuBf*5YPG#QH0KPNwn;fX%S_s9 zR3FY4_8@uMN3l9;TGcpo%)%$4Tb?b QgxQKLz|=s@W4Q}}q=DPku-^I%R=j4yDm z57Uct(aZy?&#wC^~0`Nhr}x&?(Vj<$wv5u&+oM4eLz-bcj5-Az!Q<52>%>n=ccYsn!YK6HePz9>toEN!^@*jUptM>N(gTyhp1DmByce}wAa+KJ zHIp?|D$Rl3#gR&wp7&cUEHj#!J)_*&R&G8|F(@Q;azCZZ(XarW=f}71RR;+$Jtnu8 zD{LpmW84`!{;4z+eQVt}9(9ElZjsLwfDcOCG+y*i;&Lc3RVOf{8ANUF_IyTr;>t3~ z$9jB=41m-QUVimZOFY}xXS_@K%y$ha0>9OKF>PYwwRRkBOoPR&dq}WcW0=ID|8gX9 z4rL&M2G{MmLSV116C9rh1Vu^wj;689Q3>b-bkb}sW#amPa8O>OvuA7WfcBLu5QkSu zf3N|?_`_-8X9PYbHG$O}GeGFhA*#pis=@PaKYN64P`mHe3j(f)Z0ASVyPSD%OvrHq zCL8fE&{l_uq&vsz=K&(Z68GpzwAq{sLIpZ~FGs9s6o*2C+Dm-yZ4OJka7*YS%DU{V ziKpQ=VK-I~hdWgB*&ijghaLXXXO}A6-dmYcud(P(Do{Gbrr#$eNZziCo&CTE^ z*!jf#Hk1t>wmcCp zb{YeVMgnx9=}Eb9x<`+8g)O7`DL<2ip0UWhje6?5f>b-h7&U7@oFqqdy!D& zdkooc@n5UYi%5HBacOk%_P%9viI3Ryym=jT$|*NLA97koF!tosI^8I(ZfL50ufb)C zXcHOw?#~{4f$+cl?3_b8VLiIEq2%Zci-uY2_TBjP8Snn#R^?!kYWDtB(y&3N!GyuO z6JbQc{y?e+TfZ}bzc#mI3st@q%e&~jH8Yw?h!@Kf+B!uMnn&8_`kTFzjoq$->WR|} zMLUansniKYwLf(v<5hlkB4(ZS5RRYH?n2-n&la?dj}VDHICG!V#Sx?Bh(VRP*13>gA6R%h`rt}uN>Zt9j`yYg^-aNt$3~hLGBccg$Mgd3GCzVBgD!F2zu^A!x^N? z(P`SjQLnFVdipqqzSSR(uaic3icK`AVpAKO5cAv$%Wk*%59)d@c=Z>sI2bOK{Hoa$ z-?-;}AY3pkZ1kKZfAewxhViLdkS05SmT_d#&SREa9??Fly-AOhTt<&Lqr;AEGWK*i z+_r6MxRlSCm%?u*)xTEaOodm*H+-E-PJO{j9>iGtgiqp@C$_4cVB&9PAPmmkY-c(R z6wZ(B%>#ctP2`qPMR^E7yv00)Gx7HB^JM5<{#w*7U7xf*Xk^$LbX`DyKCHm5Z&LVAp^qgW$fMHo5hNNI%01Rjhu%X0XSe-q4Ql z0zOzS}&HXoH)e_I_paCfP{0UHodCRYzia zA$4c<@I`1cfD9r^xH1Gg#Wv01IT)n}31bO-*u2A>t-Qt7%rBBHyx9Vqs@|g4$!0kh zN977<+*&NIgmjwqX?%>7lWAgo;OOpkUM-{w5CkBdl{c|IQkA2lo|me3;Mbx0#{*Rc zQPE4wd|T^<#=23!L8rC#_Fl3t!t}<+#Pmyy7X7Z8()=zxQU#o)R8>_0yp$;xd)*p~ zj-DRe6%Mos{v8=kDPW4_vmSW|$j6q|5RsD?EnXfWw5|Ze)Mafgzaao$^jr=gb?FCP zBr@Fi;p*V(Cz&i^|3x?-!_C5P^Y@Lx-Ho?|&rUu^SCp#u{?@MkpvFG067^i!+V@P0 zf?*!cU?w(v?Az+;JMARm>v8qq8hG>Ze)u(_a<}$IFq43Q?oQ)D_&BwYYYE9;Z%+G$ z`T%$x?C91b;S8nJo|9rT0C^{nm@zDp$9P%-Z!?}RU1yFPyuI}18h=F{?rSKkJ8})b zs$z;@sb%iiYE~R+Tkk{%V2x#bTgj=;YtpvG3;rPa21q5QfU`$@xI?oaSmA+&ArAZb z7Ikc6285+ibzF(-;ec3BMw$Q4Yt;&YF$Lr$0fX>g8Mh~0-1T-k71iPNBcy2Kp^w}1 zAaCF3X56rDhOn4#an5P`c+>d}A>omn_`HrLd3PXH22g{++V9@|e3frocX@_R1tg7j ziCazrQkih$a9?vpkpNxCwe+it{BUZKqLwS%4#C~Kk?HB_2d@dZSt4HRl!-Gar)ebf z+7eSyVT5np5HB6k3LpLLaSoNjl8E{y-MMYB0YI1}4Tqnrm@FF}E^g33u9}q(kEvLy zcIQcEu%}l{>n%Pm$Z;rk@yd{+raxlQw|MZFb#g>^6#KK*5_^Oi#A2=tv*V6MVUqUE z8AdnPxgY)!kgqWG-0O*V1`IY< z=u88}%p0-d3LO5tM^ZW1gUHpq($SJhAnvZ)$d+iR;bQAN(SjmsI z{0Tf6t{SDullXZ-iz*+xjf^r;)y+KAx_02&22AKLXKoU6c#C1IC{|k^@G!1CB)b;fAlqW4faWUu124Shu8D{(H zLHJ$PeLl9UmWw-r(gUdO%>%jUG24_0VN4c*Y+5!8$-ys*8MuSu9M{`cKxy_zC7@(6 ziCFZ7Xf97Rc_B#3c3)YD=K=UeEo>}>-Fq94>$!40gx?SnMy~!I+80QwoP)j0Pbu{d zBNhgy&>yko$9SK~bqJpX9xXm8oFsjybw9r$kH1D(N@8JVr;kJ(0U+ZbnLJ{c9{Sf!}|8B`tf<37(jFDb=eSmUPB+Y%CpPf+q_Af}LUyb|{g4 zO>53g5qm8ibk^JR-(yuI{GXWLks;W#o>oTEi{w3oriLF#0>v|xzy3!dE)7FEP!-5X zOkGG((0Z^iUL_i~YA7tczb2^Y=bdr(?%~*vU!vqECoZt_kr{E!D2kJHrb1GGpBf!! zJ>8Z_?qPo)GL@R5tOY)Mi*U5~&jnw9vV|s*JQs+~vDI38T&Nl$6JXI;xX0cAEs~Na&Yz%z6s5MLrX`qW=wXKW)JYDvdz1kU>|2uW6c>ecoxo44+Js*bp*4LDB zij>KsqrWXq*ys5AQRb&1P8b=GU&BAF{#t(;FBKkM6Sm%VgaZH0HUn8A?a;y}An+?O^Np!buR2=z-$@v|vLH(; z9VE>GTLx}G$o{*lUt%U@ixha((uHOgo|8KY`taMOZZy^WzEGKt1U}*LDk2oC7Qs|( z2krSrup=k3<e0o9Sl zOmZ&oxRvimXq~up@+&RjhQXZ{?w_AFj+fAI8$L0^^|osi*Sz{pyG8+73e!#ziA<#&X38`-Ap|HH`s*j12t zGrHuKpu?-#L?*g-wDzY4I}9yo48>JI`^(nsPHTg`OnY$AEqkl4+&15^cPR>9_@(52 zxuy2qF2Wks7p%pf_q8&pidM9hz_F^wLz^KjxI+q3ACQnOTr9>9#=bHqq9331;!%xYz9ANf?cY|Ar1AP^bVh8`UV6&7mPrP?v~F| zXXQC3+(BSjh@WzbN+WKw?6(d%zZLw)B!G>G5b|fw1v2>3D2w@OlE-P23M9Io=4#VA z5`U3a2qQl6a^^^$DTy-hODUX8-_GYnF|u^{{GJfxc2}Lu-TnI1)tFN>)sUch*vk8R z4i0~-nJZN>+6(t0d-KO~Pp4GLqK{TW7C*$c$|vCr#7a!bRN{Eck}(t4 zBU4FUb9FS~rypix9)B_M6iVHNajqtMbSm2QF#3Nk^rJV3LwrOW!HYoNDLU83dYk51 zNX3h$C@%NB3@aIrc6mMSS>$SUknq%YI*S!$*3Q-M{c4Io+RW+7x{CfayWo<1nuN4y zwZz}4+cCXeo6MimH;wI;xMQNy%&{>{*!w=7JvMWNLPGKNs;A?&R*Kvs5rsK0RGMI( z1WkQx?FC^!ZuCRP1Dc{2w-{JjJ(|Cwg%~-eykRdx(w}74B|l2{iiX;nr&&1z7Gh*YP-wa zKaEur#=9XL5Fc;oS)^I4HSzEE)xd*E%eByWe(IK$Cw3lqlpcLiiv5nzCJG3n$d7VM zZ1umbNG+siZ&QO`z$qBRVf{7m0ZrDhlKU(7G5)Z7{24i~kQ?=^E)Z_7?wOwagKYA- z{@3M>3M^NAM$!W_IM77lt9~jWqrG#k9DPB?5qB{Qz}K1g^6JED#<7x@2&GC6nlu_m zu{Rc*`;lk=TB6?txdBWy&+}*fjf=`Gc@f%K$M5@7rrzT3GeWDW{gZE2auu{`87YR;wxTCU^DkDBcP6b?Dssuj`bdgWXf&o`rjkU76HC zazUA~fby-6L7CTt%YTiJmc?WwGTwq#KeIr3OJAf{j@KCZX5EQP->LEG;9eSnop<Ke*}{am?2(Ev8^PxeQK1-F_Ett2AO) ztU2F>VQq=aB;V`d$2JTnh{WdP#MKGz`h-;0wEyBE1-#AV1L)*YqX>q~yTFEL^)1-TfR7j!y- zn5Q^CWq#vthpe*dC1-TRFe545BU9# zStqK)^Q8cb*sjS#X=ECoQRSuGLmrLKhwqvmCl^RuF<%OH#niINN{8ktBc4{^mvI7R z@*UnYEqWSNrKtEG&533bxjD0%ut{t6m47-20JrHdT}(tnb5%K7!(*SO9lpHMb83^i z5}hN2|D{lJ{+6EbhmsX%!QbUfMC0&6MCI5Ta%%q>p$DX842aB=rs1m}12(p9Htqe^ zfeF)}-i{di9Bcx9FA|lV<6#DZV4^;QUqC4eWaka21hiD{z1oeEOfn%1K=RkCaYi&| z;s_>xvc4qVa#`<|O)D< z&%Cq{0cRrf>Q^4FaZf_?+Zb$zzbYM>;+>lwSP#APt&@&HoNLh~#fSOu6o;=C&p0yl zH|u|&6yn}j&(?2@#hM3J5{f~A?xT5<2K4PTH^oWZJ*LeftFO7X|L~Q6RJu#Pd#B(u z6NiSkELa;FEKKsLH`MgI;51PNxA2a(ip9PhYs}s`B82t!7b+vH=B3FxGi%h{kDoF} zM=@@Z61vR#`DGJ!TlWaKDqQWvZEp_!dNAf*tQsU%;Dz=)8%(_Vt)LXBl-j2{QOLay z8GDDQu2)|k<|LnKifSa7Ocd~t(Vy5+542N{#}`Z?GT5^ld*kQpJlx7MzDmh0A<{i_vxrmjI4zVs=MWLL z3q9kzLb$e^e|kvqZDC^Vrr8x{+$A8Qv9w2ZJF!ymyN6u9Qz*6(cxwl|_1va8^q~am zl~=BD{o2*YqvnDe`%ldVV5Q?ew+P<3@#7$& zHHxLQ_N}(D4~PVybN+i|7&jiTg`M?w^^=?*Kb`mwP5aNUX=|j$>HEXeSK3{PKp3C4 zw4Uxa0cf1(0DSS^Tho-2Z$e9&9`mL#OOud?UtL**|6E z7ucP!BJ?pYpF8J@G3&F;tp}}l@VP9N;4aM9uP&9lQu0FMIDyH`{NlYz3~g#nl{y74 z#%)Hk(yyPnF14ogo7%f8&jAHRXDP9ZrT^+g%c*?3^-5Mw&#sf{uW|bkT3Z=|jMo0J zX*1awY*h7+we{mn&)2n|yhE=bPq@@FTiniW-VpB?L+5(kA^9TgT56P=s?@N51VMIw zuD*2#tG39Jk|@t6E|HdA)EpLO*2E_6W1Nt?j7iD=&)wYkb4t-OI7RTA21J_WqExtWN*mQ-|{WL;#BKALzPelZ~Io*3=-1RAJW;b)RwB(Vt zwdQ60%}t06g1(Sc*r<4e)5&)Mh-I&MbuZqC30I7M<4x97E#{p}3b zidfcc=IM`HN&sO0N7_wngvuCnAoPgE7kc@eCw9e%%Dx11g8N%?9#i!nQ@R1p1nT!u zNw*gZ#m$n+p@`@KazdK;dRNGM9#_b0+)ETKa8h84Lc8e>9zVC*Oj1~p%a_&su$fx= z{=_K3qfK)h{XYjQfPtYO--Y>;%nc``&E&OU%J5+uOPfr^Y~2&KGq!1Lx?|NOZVD#E+Z5=%0mzL))*luIH`nlY2Sr-MCE)*-DjQ!U2q+yhR zr}@Ovyb!3+qu>+3gv_i=Y+jUr*(C{SMgIwsz=#>D=c>2r-Wu$yhR@B;_i!{M)sKxo zi1q$nV5?N{lY5QP`bdS)gVRVBKfHUuX_XP#J3qr?UlJH+)MAkIQd&*u}`kYegpb^62G5XaU4EVQvO% z!n9)!j=psLVZHdQ2N#ODD3*@e+_X~ z&E8wDqLtT637Uqjw&v*Fil#@!TQUA&*5PwPb4m_v2bB6(pDkcw^euUlPH6QV&rxe(A?go9t!WeeU_;n2pM5hP585iO+6%=f+1asKz^EZbz`Zms_^h z)oNeN`iDj>82?6}OcXAgpeT_z?jUjQe%{7%vmw;$An;o2m2TuM`hmZ?VChe-$){1ZCPs+BGlumYN*oYw+JupYhB+T}~Gw5j$X##MT=k@D23K zwy}I@SM4uSeFm_>0hZ)*e^GsI`In&w!&#Y?7{SR+)Q{4TXCV1vG4?A1jl?~pk~D$0 zk4t9{2DM|2&x0Od47M8K9fRLbn>+i|E*3ryUhi@K8P$@oN0GmZ{p(#T@4$xX5h6cA zjDMv%C62R1yE1JUYsGg>x3H^IrTJ?2q7=uzw@X|7++_ecF3>7&&HvJUD_Fz(W?OA= z(6(y+cfb=vxijOkN9LG; z5&kr>;8GXxnE3d)Z8H23+d`^ zjS^J8Yk-?9_!{RkjzEk~$acVj`7RN{4AqY6txni8X~qg2-*CW7NmKc(Nmt3l`fii+Aar!@NkRr13#IYix%`$uJc)0~tn*7MNm!NueOS_gU37XFk)0`%`8_l| zg78EZJ6|paLfpztY#w4RlDWOZA~bP1?goH=sK6_joNr30+3KNPqa(c}%h%iyv^B%M zXgU|fID_tzWoc{qz{E*CV#JoNnRQu~Rh{)GIH@fW8` z6vnB{$M=wnzoHz^elJ=c9t?`1*SFwRm;h9Lk8aWaCR5q5dlL=;cR`7DL9GU*XKK!D zo0>e6MbEZs2ewj*n-K!v(i|Y0#U%G;6GnL0oxY-c>}>pY4SZbYL`fxUaJnghLBtm< zm(!nLkXJnKPb{ua9XwY1`4@wQvtb6UrOoIb(s(0Vgo2n)NQnX<$8VlE+9nTc_hWM9 z{4m)EJj(%LN{j_*g5>L$Lt=flwxdOSixbR2lYV1eJq^Xb-bFVcCX@P!n%(FM;se(DN z?2pEOl)WLx&AIe@LUNz*(p&p&KBi)^{l3n)4tgNk($Y>H{wuOFf0u(7XuzAVZiwns zfnp4fTyNZ9lod}m>WTQ6@^vy0Yu-gWGGQ|Y&WF+aj2GvRvTcQUl0Wg1vED|2@{}_+ zVF5i}(;T%{!9c%YZA2Tc(=GOWNa+^#QEKo>l}Aq2lJHIB-sy?vha>N1Y^B=#SQB$Yz*T2?HP>|wu zo#M7eW&RhHd#}l^F59fhEH^fpZ?g|j5BF>!v7HkyD=KJx6^ZAH)2Y3{DVQWSn0>I|;?A z6C?IB0^P0618SL(@BXW+IV<0Hr;k$C_QKU=CVa<<0MiSnK;c{e+w5-CrWo)7T@ArZdxnr}sQf?Vy?0bo+uJURy0M_hMn!s2kSZX(22`Z? zE*+%@0V$z`rdUv_fb?EN3lZrhAfO<Y>3m7Fr`iZ>9Sp0r} zqzA(NJS&D0vrX~N>kCz>W-RyL{X^*_YQOqEkk`g+G{9!F z=6Ww(jKPu_NHgvA_1xJQ+qmX4cc)3x-&0`Flv&7HK$|eN>)zQp-5v?=i zZ%p^j2xcCnhDobbopsb2=;XtO*z^=(=7ugb%Jn>%4$YZez)CwPl~lQFcE&$EK$zUC z88+JDR;>0MTRdL9WOpi}a8mP~FQ`Q{k`DLfu6fPc!4f4+`8Sh-RwxhmcPC43`83gk zLy--0R)nHRrtpD;+F_-{fdre1Hcd&7ZW*UQ-7c^H=aLNRi?>l;sxn`!XbL+$qTrTi;#yRFl<- zJffA%zl9&w_;^v4cQv%X5(*&4!2A@@b$C;oU^8y+`)X7jJ-{dd81D=x{*@F8U349j z15QRy9?n0O*9a2!?shV2--&p}#VQqmYKhzxi{SSHVQA@X9& zgF@NmPpH-^qOzpiB`^5MC9_!*yGKjbX`ZN2eQ)N zH8u>AG`G#nr=bWjFuXDw|E-*HA%nT-+bLL#eyrI(g{5iF-hz-iPP6l(QI0QR^6!8? zOT6ywxmZr{trzXTi#vI&OxDYIeI1Mq2w{}Ue!rU`nEZEul9v1E@EU5x_=cB?9K|}? z&}Cf_oKb2c9ShAvbp&^5_od~ovD@65;#OCV73X>85(1dARh6KGc5P-BRv2}2fAnjE zFzsbx7&x`YH7aU70+U7ybH=a#@PHljoW^iZ&dQp(1W>fzm4dA|h)~u;;!D7xK-s&l zk21F~DYR7yZn={@T_QEv4Z8e~;W-1G1tT&`=icUryz%YBrEj|xz9L#Pklu?g-!?f5l4 z9~wcJEHHG7(nU;5cB5|_9o_q~8-4K}IiyT)=BH%fXKxk2C1vQAoGgeSn1VoR{O4Vb zQE3Fj;7_%$`5 zQg;*QcOeC(Z;<)(G+QG~y6A{rf6=>@4!6mIaA6J3ciD=-Y@e7@oI)<3OE!1!EZa3N zAtkl_bd#6fOpRn$MpuFl=qOhwb$cTTNG!#2XE+D@eC@C>9l|1hm}WaQ&r~d>PJEt>td|4TFXo2e^mQzNIfWU1}LFT zK9*Osf1P48&B(CZqsA;U-h0WpW&I~FWy=LJ$wc51b3qr!i{VuKVLXL|-$rYQGGJ`R ztw=Wq;Qa1DRp9cd!k{R9E@dV%$MPOIpH@2`c8vRnnaH~l!8WY&8uuK3!$yj`%6PkY zjRVE;3wz_L5AN^nuJ|d2PS|*D>Mis7AgQ=k4x)zFvw9#gVJCOBV)6}*%GWWKGH#f+ z9R99H*i5mS=t+Un;uB|6(7LJO{V$gYMG_uwno=jb!L(1|)R4QP{mFbztirdS6wZD@ zA82IONjE`#M`!23+imj3&aHt8qI^7V-*Uo`q<;p0;|!%%ho0W_5c5Pv_W8<;2Q|w% zG6RHnOc-{fvI^KVOCAi13$wcE5UPCbTp%=_iA9L8SG$8S%os;EPHcbE3aspKvZUzH zzHMLvAkLrfz7|cV6;z<0<(t=99h^t-<3h;FyBKsOguL^wqVh0}A7=Yfx2t^7H14jC zq7_Nj9Jkg4wL9UBtm|EUFlBalkkiKYx1G@$re=Et|5Rm@e0LRmKutbUDb zTlO3l;`8W7czTJk({g9z*q5TL;_si%3BUr0T4hi3jxO|R@P7$@UEZwKFgI7V0uLkS z8JaT9Q&dh%Ub_p?-rBvvpMQi@FFXD0)VS0Hjd>qe*P5U8JIv*1h1IVO7=b@89hu+R z9#K}Axyg!HcrN#%_Z==e{rvnJ4F4fIgq7*Ov4t}blz{Dw=vLP%A=WUx+c3xZD-LoT zj|01lc|GDqs$Lj$al%YuBhV?^r*|!eKD5y21wFB8Fx$-4YWNLMxdkvw$ou>vj>8D* zluz=N>O9wbhT8fOeTe-b_mvMG?}vH9)fHIyFXPwKgrBgF7?fU99SfsQsh&#au_dMW z1|GZ-(Jzj}w{+I0xKb6aeES1?=Iq^3*M3vcQCP&vpG>GdO=UZ5x;A=fbBdacNoK&L zV%dQb>;;T&7~SVY^Ot;^>7P$^6cBQOhV~p;AJxmIWnA)|M&hVbs*u(?jN?>Yzl1dp ze^YXtT4qKI0qBD>eQdb;J}2i~&T9{_tq*FNz21gw2B~c}X7#zWiOqIK^=Y6*N%KdK+d2aZ`~p);)(U+C zjksrG`hSI1<|#4^66`1CtTUoW3;VRO)%O5hR}cO^m#)TV$0)OWZ4l*??pKFe+av>2 z&Y#!Ajfby(6Z>3~Ok0k2$-3PV!yw}Jx`5L0x!eV^Z{&K~Na#TqqNkknEeM7-M&duy zUcQXlPMRgZ6W4FN#$&7?_9Cdk)y+-bRJ75QvO#;GJp$?hgp08A>2`wepfOP1_W0mZ zuDB(hVn2mRrl((;B^Xb}??Ph^G9Ali-TL&tSM{~hps_ssDbE_)0d*6-TKvAbPAYi( zcsx1{mhLwja}l}UHB^T+T*R_R@tKc!DMN0$!{|GkC6 zB_)yj9NA235k~&8?s2@-3*1Hez-DjzE*(U_`Hx;f(;|-fJ;GQsCMdw3hQle#Qt$<; zxI9r9^!zGQgPOaI%Zu?ky z>ay%MJ;-KTYeaB)({51RrRp?BH$L9=5+MIn}v=Js^_S4YV;3Z>w zU0B-2$a{wEslSbtj>#WcDvE|21eB83+$GP^Fn0I1>lXRZa%TC)N(b?4)gd#FknOLr zxSxEcIFl4{S!2mccOLoveOE^92`4A-dWvY5$2NE7FM^tg6m12#zYiti6 z|9oI#eg*L?E$$HzElo%9^@5B8Qzf+x5-%b}(Shb2z4QLxedWh~yCt=?wAO$JWa@a_ zi~FRux;M&TuOyA@>Z+KGW(VoELo;k6W&9bPGEw}wKCqd<%HwLArS|Ke6t0+Mx~n$p z(WsM|JyAQx1jxmm12Bk7ol1=0rT?k&kiGh^EFmDV|7~9B|9GtLZ*Axz{SK$U1r|u1 zo^|P4o1dSb6#rj~7RWO3o)t&?KB&NdsHv$D`8&!cBh$u(r(&0WuF=ZNQ~-JMoBxx1 ztF$wwj6aseY4mIUAE#jE_E(2TD*uO?t#@}`{PTtXSB(9Cdb|C97D)X60LtHpFnQDu zju-LSQC#`)SqM9KmWf~ef1P5Azay_d`p&X>!-%c!SNuZ(^coOg@9F-#q1l9QPe{|n0hzixo1&dh>!$YZZs@Zjp&iaz z1~xF#^RrC8FE1~U!~g5@75~=_@R@Hd!!0(Ge1|t7w-yY(aa$YxcyQ9~-y@vxj|Kw% z>7m`fdI;PDi|@bE8zj*v_VBV(Lxt=j>Lro1Q~A)zFv;S4_Pb)s>_r>fzP%s8>-)3` zB|Xhl=`Sf2{8x{v;;>sh(=*-L+gqnBaYf|%cE|Is5F zi>#G*-aBDkn-`4Y>lh_vor_*A_fG+D^{{~&+Mky7hpW+>9WnD(TQNs&^rYuYRId;3 z=*xvA?PRq7Hm*LVCT-lVJB>1ek6kKKe)6_{0yrx~vlH(gaLCvJ`+J^N1#?Odu@ifV z8I=aXCP=ML)*${p)QPBLQT3$1^Gnhc*mT--)x6yg8vH{K9_)tj%;>?T6q{5SVF^F! zAcF4AWHYD#VIlb2ZUIF*Ic zwyn!O(FT-j49WzYT;Lavs0`%Rqe!!KZ0Sn?{f?NOBxOpP#k8x6Obg~p%-;;$?(+ie z&(QG`S}ng`UX}&PxFI1Ks2NV@X-{Fjs;xJM_#@UnkH4hx?3Y2V`qS47dPR{mD(lO% zB$QdSqI}_$3t`daorDL(t1X;CVgnS&&kD(GG>zL7DCCN*u#3fO1!zk_#<4A(aiX;f zfuj%!;M9y_m{C(Ed^37Kp&9MKn}5DjH8;3$kW{sRamup{T$K}pYxw33;N{@#`vyHK zkmk`Mve?w3Kt9VszP$sU3fCx)9vu~+wzEFe+qla?9=y$(srQ7qBiUB~UX5cHb=ig?SsYDh zUulZcVkI+R|JQ0gTe>KUsog6Nfkd|=8C2pHJ(UI%Sw zm}Dw=D6W*>eRkExzs7q|L9vxR|3MpYaJ;gOb))2W7NPZU|29)A3B{Gs#GX4(DSpT` zu9di;ypUpIPnwJrW49V8 zL1h^mo^e8lRYv?KMOO_&ZI>@4hxs~fN}cF5Zv>_gv2>G$n51K9krAiun08Xr7%VU| zC9;~Lp;-q&?W<}wol^MoNaLT<@bZ~?2$?Evq^hcJ*FAq!C6=9L7BNK{R>Y}aaTPsq zv)A-&!q@+NAl}sc!cjuYZv0VfmoOhxBS5#L>1T}giL#iF{bC#YkX-)LMezU>2rmRF zayY!bJRhdBH4SX#Z(rGf2h~W6C^DfhZBmuazmT%d+vIbnkBhFKnASGBK0k~bYaGXx zddp=KZs8i{sA-iI=AZhHZS`KtT<7z33uuf)irB54ghej@Q!xeT#;UCIsxBVl04VbM zu)mqnDiC80<#DkNDNre`4EmjBp*Hti8P-)~Sk~jqXv>pRes6 z)oH5+`!tM70u(nx@G|Ue)Sbcwg4b_VFB~MAH25wPCI)mjO7B4QaEUwYV$N+`U8Ud6 z{&g7Yp&|MeS?5U#&8@tws|QJTjgMUtOHed%`#Qd~xS*GLoSJF*62@gi{;UPOIJ2Ul zH+ne~%u3*qJtVr)HA=6hvB+U-D@XoG^e`jMWzO|L=bR-D2i4|HxC57bK|;R4bsl4A zft(PmxeS4~yT{ABQjf=_8wpL@cd=Y6C_m3&7AY)hq`+rlBkBL_21Ao^qURS&Er#WA zrt~jn7lRdL3B@cM3tV;^!^KX~#Xi1ol>k0PkJ*0;gaCQr{Yb%4^$2f_kzIHj%IRbZIH@{H=4{teQAJAM!AiElftr2drLKYkYL0$Z|PgGrxn<(q%$pqr-wmse~#6Ji6qbQN$J_~w+o zoA-9_&1tJ#w1f5r7 zNRrHd_r{#bfURh?Nv9FvF6HV3FnP|}+rj0=O9 zx+iOm0>>8efl`GWH}bh^5yMG$S#)epw2x_I>|!2we(7?zrvjhY34HVjK(|>m(2#1< z_LmoCI2*IuWKT}cQ`i-4(tcY& znd|d0eE9x)c)n?U(L^kxqF*i87#)9~`^$j)A$Oh)GN4CdIfPn)iuqkf|n(&B}%y}A9L7ICv zt0o3CBHhFoi=h1$9vbWr92B`+*&SOyCYce}ry(T8dLP|oTY=WI*zECV?^>E}EOLK) zah@q27X|RInDPqB?tYAWP6+O}5(7-dOpbfB8_atn=hjL7@LA`+vFpChD`+UnX26Is zvN|rV8{#>FlM>DCHZ6X@}sL=Y)Wdp z?jrBXanAK9^UV2{NCFGEjabFMGby%g6rF%>0Y8DA%MiYC*VgU*68hfxilY z;?mRqu%anGiSVop!kq}O6(7B=){|+V1#-~5n&mM|!2#kdlg~dtRm&2d9=USxb$(JS z^img9v`X`pwYz)EEs*A|{OgcE#?SZbn~Jv5>8?A1Ccz&K%HHhZ&ALN-f2w&MlGJzCW7Bwsj;4W?vW=Q{i^ffebAVgN^tF#9N|u3I8+@~aQL0qiMK+cRSYF0fSByhTM(UlD#61~vqsI!ls?A3G?yKo=$nNHGP7JFUClTaooPSnC-#lB4+tzS}$28U&6*cwo=4yu1=K)yc zG<%H;w-|=THqYGMS86%uRrv>wf|ndu(}b{ulho4Rl}0dD>JkuxE&0B|iB4+px}Bi0 z`EY|0?_60mcK>?NyU&zUC0yiPqP=@IV*-P3inS;RZROAMSXxmpK zn~i0k4DAQouL_pW?`M_EOC(=%$JRFW!4cIyphDHF)2O5dis#fs999O-TS%MNu~cSs zx}c0E9BQJ!l=(I3K~6sdvBzJ`a3v0_+0*ei+P1F@CDlx!@-A)anK>(adY!JZ8j=o? zV)lLJnpA>_=izNIb)vVa_)j#(%0U&vSX@+|9y2_TODv)Wo1O+XwD@YXu9ijBjBa^q zDHS)#IhWdO*6dgc20BO7qbg|0$+DKN>b%#qFpeoDZlMLk#3$cDy6(JdD-dq|XkfP1zSO0Ta;*x>*N+25%MjHCCXLtSCu+^S^ z>MF6r&7k#h%~!^0#4kJTLWpX%vFGJfha34UB9%TV-K+ad)4^X~sWM;D6Zz)Xnc>G6`P)5@dH>B@XEtH<3?i<0)>k zxv}&uW&@y*KL$`afNSB-!w~hY7X>5DxcA;E8`Ivpmla=7_E&SWtCvc^yI=ybBE-|J;nL{MxM?~xIb;#dOGjpPMQ_@>|6Pkb@-l# zb4ZCo!g}&pHEsaZ| zC;Y(;5~@Bu@^RxP%I)ZGz6E1x2579C)CKUv*p!NZ>xP=mb5`VpOf!Pgr6+HeY4Hcd z2YLalFp;QRYY6f1t|=h}f zTjIgm>K{{YdTk0Cb#Cl8)YmRJ`|!BzSSx}=tUg*13mM0goAV>5%X=e;7TsdcW~}+V z0`Kg|FaQHkn11=wOsh<4N#NR&?h$;UZZ+Q476j|W5nU>w_eA}_OycaVql;Gc( zyklE%Bf&+OSo3LrF^s;!+zDK;;xmO=`hj3Pu|`z*nHFL*(e0&qTAZ5s!R~ z?tHPXlF;BA!XfkMqgiB;apB{w&hTiu#tXNItrYp|ze=C(`M6JQ{c?!lPY0Fy7<0&6 zwIn-@I`j9z{O37px25IsBs%1ar+lgmhcC)$!LnTy{^7hVnMVDz-s=MZT53;^oWK2g z241?i;fJ%km$X>bO_Oy31HlH`r}`S(N}8ZkPQ>NC7X*S%rB5f6 zuSC-!092*QdyM=%!=+!5-Yp(9TG2_3=TS$uZJ-Cr{!<=0{(2F}eF{V0r#mznMDXO; zbkgQv%Ny@AUcHykj(8iD3()`~tHnxbmJDe>T%CcV4? zp{*4)pTSfAs!I9VU(+V?2dGCacM4_DRPnV~B+gEA)ZFqdhZ%raehVdahKQVf+%4|Z zFCT=0XojHouJ6f9Cbk=6KJQN#?fKG>7&YQ*%6RuNDb+WnpN*j8QVWx00D7wiPk?++ z#|t=sK}M^pqWumdQZPPA-uBCuaf7)XC2yYn$lEw$omu1-&5gW5-J7B|vmP#ECy_y= ztXVUz8-^o@)xC~C^@}+BL%@c=3U4b(e*a?vLAED&&nj?ZVrTrSs@Z9+lAz4}X_*`` zb~ymnxWI9*9&&KB5!eTR;L(C|<}?QQGrD~%iSZTp&ju_;BM9g)fRxj1$^F-O-TQOAe8*(7 zmsu`<627^=+i1%(V=v~J!TYITW1Na{_<%v!J;_`%+=#NXr^m~bb|}8S{q$=8`uHvU zsVB57qT`j(!I|Rt_72692P?hYxun@;@CUz0kC=Y{Ku*l3O6GB|qtYE`X=w3#h%@I_ zEBc@b^sLnXZ;b<-vjy7E6r1K*g=bs6`@NPE*R< zPFDmtWu#1KNMeDxr*Ie8>Pn)KvaU=loPt~NFRl02JIw83^RoNjmNX4j+D=iV%bbV4 za&>*C6&GJyw=F3FU%ql}C@NCEd~m;^1huKbRGz`o5mc zo8myd=Z76<6KUUX5z$_HjtI|^h~M_1axtmJ9@1{BfE48vIifarVJ~o6#|L0C-#FWn9#| z6Zro`AA@OURu{lctG*We`N*@U-2eai)c>2fi2paAIQ;*bki-&;2Je66LvJblSB_{Z zrBuK`+v<4ylep{-|y z5PU~gijYz5k@vms|6mOs2pptx>bdG!>DA5E)dMm5C&>det0gOZsK;)%y4J5>CE{MR zq!D0%Y-1hDs}1auU6cL0@Z{_@bt18)77YhyaExb(=+<|(MrTwD5GJSJr?=GGs%6r% z^p=y|kp1y{!Nq_Jh2sB{WnARc*l0+4j|Y!s*KGQG)Ds(}E$26#cvuFQSyHI`vYUOWH-g2!?q}D7)TPHI*>={yB|H*w6j^^{{;^Eeej=x=B5#1? zSO4<$)wv5{J3;9FJ(=dchUL?~tu+5S^QObY3uH`k=T%G_zPU1p5(Mi5w@pT{2eho1 zxf=MHpYiwgjoLkc{F8y}aJ3rObb*&%b1E13dw=h#H@wfXoBQ91-kA?lLFZL?r-$c# zBGA8NSTO!BLLWHT)ZC3Nt?hi8t5ok9m1P%iIOC37Zi>wnb1N#+uXZ_mP4*sQk9{Vz zBI~R9Qyno4?se74P|rXP>{prCv2u%QI*ZDCw7&21s} zJjd1Fv2Mi0t#-LpxvYGRFze*v-gP>LH1e@@+60K(rq(|riCLZzm#X^AeVTKZmo?$5 zaV1I`Xe8fM$<4R=#HHc-y>{yQ;sO`@bf1MXZ{8!rd>4dV*?0hp#0+*#6f(63&TC*i z@Ih89T8Ooh=AHXiy+K>IK*6bdbkhXph+-Ghh9fOa=D^5{PfzHxoRzfEZv@@S@%EF1 zzNW1j=wOF5Xocyp1rurLDNm(|5*vZgWnG%CbVf@bt+|cXo8N@j->eEK(I5FH&fh#Z zHT~TV=bvRML%HZCfI&)}SR%^nU1q^9P76?zh&{8Kb<514uZX?x<1DB#rSX5Qtd7Ka z_E+C2Sn5pF!@Qk+25(GGD7{gErm+@?^z;~yS0Yog?y^Nc6AJ z5$4mMT!v=*rxAk;qD0FQ3p4M{ks=4&06iC@{}eIG(yH!ZO*9>R+_I37^M;u9r_z_n zhgS_(D6j3bA;qnnn}vm!m3fL`7Dl0dTDe@<7Q@tq7(cls_vs<5d^DPMQ=;FYhJuy3 zWKAz~U@W*EJ?j9&qmm058D$*i8xy8Is+6Y6pCCw{4Na2A*Gihbw8akxY6l#+Q z2^r1H(j{)PTId275&W~#P4nX@IWfeWQM0B;5~03?=th8VbpX;1vCKk~ehJLm!iiJJ zJrI)EgRFPmH{d7LSX5kxWx56fU|QPvQ4^!_-nG-dwSMPeF0FrQPszS2BH4}18ES+$ z6 zP6?D$Vk`F8Zm=1h})=wy1B6RE9g@xt9+=qOL_5)NaE8PBSEBXMn9OpmUx%%v+YSZ05TXu z4t+T){?5`3<41g#SSsxq*W)R^CR-9udH!in)M%?Ox9)78c^{+xZmkkOMO{B*Yjbk2EOtnp2~b9)7Pq!O zX75FdX$^`UrmShWIou{SH7WC*Z6(@R;?1PqvX@Qek&QcfR11 za9PKBq`t%VWPYf0?&A0Ntz8YY@NlIgAz z?sgDJg>S8-ANKYrs?mx4T$ZNSx;8@IoLo$O!2btL!=Llhfiz-%s7J&;2f1C0eiAjJ zu&2a};-y6Y^rLd}%A+jzSf`aAn`rY&#d<8&k2@$QmzCvzpRZ6ioiJrFc^(#b%V zll9bX<7*hU?jd_9Wih2}(Q-~n=uf=aaqzURyUm3VRJkT%8R;6C<=*n;Bf~Rto1 zf|ArpP;iyUR5b;Ei*dWttK(2YFv74&yAG3p*@Igrh?Fs9oeR=#2)$^I?q^WVE32Y!XE$e zTaKgJCkjf(&Z(%4uiUwYoHY|c2=uJ4@;gN8AbYwf+i^5@89{ijRgQ5SIPO!sDgA?L z==WyK!8U>vgW?JL5DP_9xx1%5OIwQ{Sh5Ef&v<+2@HvSr) zuHv5@C%6A_H~m!qG?|}w+TIR}UsMcRSzRDVv1>e=wYLwKBe?Zu{$i~04_6~O*+W-y zekz&S$+SsUi&^x-#=fGt*b0ZqD8CTDkcvhKxdQ?vI~lu}@wBAn#tyaj^Kt*&bO|&U2%dz$%$46rdiOqP zli8_Y)<7|IV>-2Rwb`CiO*irAs?`oQ+x1fIi-K^0FR%;X85MI9J2!TYo3!Ee#Nzj7 z4srq|NK2SS&WG+EWtYL&)tk7P?yXJ>JGcLMuCG{AMnLZ(XG4yhu@|F#Ax$cn?-KKZ z6Y^{gHJ_!2JG}H&ddT#$io|q>7}Z;x*zsIo_|CrN75YOzS?Yvat8#vvMZ6-0x@2s}0}C zd4E1%Ny(td-IVrNc>GMepIz)6bUEcS;dsNyc{1acI)bHR>Lmf z{XT`HG|lu5-7Acll6j0Fsko>6zKWxKS=Qd{1Hc)RucbIqIlb5~8lv4=IreV{>&%Iz zNV)-D*uB{Ql)-(YQZJ!mdyR3WY1)WrbvH>8kUk%LDsPakYm zQ!HrBf#6Y3ErqQg&gYh8xx?zcZXxD&=9gbXPV)E2>oaY8(8U<4-_1?XEcS%EE zuwsoh%_Bbeg@8;^x6>u2inhYrD-n**W&0xb9f!mN>nHofu4%1ipSvI+l+X~rcOc#1 zcxVa_{PAnG^TI8kMcs_n!lg#QifE7sW)hl)@+Coh)Yg`d6h4mE3TuvT1m~qJNk7Ms zR=7#1#r*3WghU?gwwO3JjYpp>zeOi;Avp2)+K->he`4>)go# z%vl=ltyrKY?B^O}lBTIG`Zu1+2GB+2RW7sA#XH9iMb$|=Jdu8D%rrrE_Bpq_vkiwT zhg)xfqnL6I4UU%1jp0^hc!{v&x`)}o$ziQ4P50I8d%8CpA*Rli?uTaYjLf8e91N39 zmq{{cT{Wz+N=eq^%36{f=6{-PRG^bO^;MX-A&##t+PLJwQ5LNEdziA-R=F_c##D~p zTDj(U<&TtF81-WNhRdap{aQ8+&G#JXzcdMD&Bjzywim@z$E{2q_Wu6Iuic+kyr8i!{qHAhvEHetHI-Tm)zh+0&WY@>u9seQ@0X0 zkB#&Xz*jVR#5fhBkas9d>*$xeF$RaI8+Sz*u6UWGUEHr!Uz6n56545h)GYjlp_+%w z4Zc$-BDykUBUIf%9=7U$tIn|6sjOyl(@#1*6~={&i)4av(+Lt|#KQyx%9PJ~MThzI zn$^wH3PtC=(@>`ue$T4hmsx%#&_?VPc^P3x33w0q{Rf`3g;uP4V=Pa%>p<&8aS?LG zU)BCKcSlNOs?K|nW}6n{`%@*|xEX%TYBBX87}xBh?qE?+6n%f-@){Kux6hOl^QK=| zcx&aOs?DD&V;M1KIEEyE;Fgkx(ao#3(1&{>3zh*D?Q)ey;{gQ%MPsz&@#NUSCKwdd zJOX0I5} zGzG{JW}2~-JrG|*UcYCT*-#$H)v-&Fj`M_-UU8@uU+vqeaXKEC!xY!6jaxPu zOZ53$+6Ro7D3lHVK24SY=!KAXB{*QQJbn@(XG&<5PM$CJ3Zv40Yw>T3E_Plesw!Au z;AbJXqTlf18_|^-cCmvfa%huvxc8a??n7oF7fXXN=IAO*`B~h$HS~Q&KOfN}-xZC{ z3TkgEW5`}BW3gVZ$-EdrSK^=Pr{2JLRZ`OB6Q>r1{&AO#*zPVjWi9k=S)H&NA;_7j z0q|cJu8KY%K{53>M0m>LZbYU# ztTznqiJ0HWJ=cCPIqGcJ9)0FbgU)|1AE?VLm;&i0(!r`47W^hGZC{9$QNz7tT7)uP0D#w$fMDP3?iFLUvJcLD3Q3eW+s-k9%;tzPCI z_&$B0kBY}QzV$fKxIH zkygp+pmqX&MI6F-sC+NY9^;~hTKQPdxy{U<^xTp!w_nLTzfg`Kx|@L>+l}`!DjnpC z%f(()HryCVaM(oua*iMhm2JH$K@5K==~-S;nM_4mqzCx{o*nA+74Kh*;~SL$q)52^ z2~Unsi2bsE+GEk8VvW&54!$zCw|DPGpnR%JTUyVNb=*3~0oQ?L;&h^|s0Kb<@xgv< zZq9-^L=KRrr$0E-GOujMwYF&JhfWJ?^IZ>wF9IFLdyKCXS;R1!O-c0fBymMOA==qs=lvuxke|~b? zW*UYqwX!I1=IlXN2+9_&L75$=t8#T!0F9qdDp!k2v5FdaBPd%ULwfKq@pShZ--mC~ zg6Y{TAi=>`@)P#v4IjZDRlP$HP3pnPaw>^wcJE&WWN(nBO0q?`hJ!lZB5yu#Yw zDAOM(>=`E%p8gCDrz8fXWpiwat)%BgM5pgw_?fyXYY)xP4`I!7A&0u;?%0+J7#q39 z=zmZ$Tykp90{Fb1f1L17`wH@}!gQV|i%RznCY?+l%J_AY)B2KBqN}aPzXF5`D>6d} zPV8uNgpLS_DOjWNaN%jB#c780kLe;>d!b#0?y($LhXssFEw7tcX$n+W(LLhm=#d7| zK^ih7JTMbxg+-AUwa-1+7_}i4+`fI=o*&2v0V$30d7i$32>;tfGdD$~IdmSifY2g$ zpIEH-j-8l%43p!I8)sT!V|zNQs_#X5`;;6_ioF%ZB=XAEw_YvXP%#gTZhaQ1(QVm% zjZL*zNZ8$pw~1>+;5${c)cH9rJOSVU)7;baM%f=Pg&N_8@$}~7dzzjyi z?VV3Q?ewxd%GH$o6(n>45;p8L9j;+`Uio2REGr8{gbu zN~OgD_pk6_BzJK7&RUk+{D%aPy~_O-C!-K|J3(zZa>yoJkLtNv=)-r{REH~Sl+-t0 z$)q55s5G2#f~2Wqg*LFWp#qP5D;wf zb)ClR4%hO&;$CYrfLEI8>4S#mk8| z5ZVb+b!t<^_m49)dylEK6OXy+Nd;6j;|}+N5BnZvsuNDC)a;yxM1y{|;GP-!eH89} zMV~pZ^!+=JA6}2<7)iKJXp+tga<6?}uu?#@Uv7v$9temRh4hQ(*Q@2%(JT4i#L6j$ zN(>s;iKIbAA}l3p!z;ajldSW|<+YPjfqrew!tAAE^F2$2%nq?Y{*;!jV}`@_hx1~q zF&gor_0w&Q&8Ch0;H|a-OGHWaB2Sy7>*KUNyd!6Ywp#{5Hj~R`&r(0|$ls#UvWCl< z*cDrVsMs+VG%?wdW<(TSX}1xfU?lKl??(3Z-{z|A)fjR9K1tuTw`XeZsYPAXRjr1V zn~uGWG#L(6=p9VbFdGs>jk*>T;H%GN?(H^>_-C3`Wb*Bh_O^6Rb_zjU=du>59}cxc z)J?O1O*k5&-P?L8J9z6oeO&BlS!)%P*eL^<%x~$t$W;A}&0;%s&1)Qab$|b=^TwK6 zfpG?AIJnMOKMr3s{!wdk-c()_(&vJ;)1oGuk(|+;n!M63xa8C|p~HEY@sON6`DT!D zr-fxsh_SliGvj^T{2|3otc30RJ-SYsh1g<{hg;Xk=@oZ1Xx^saD$Z}$!Fl1W7frxi zz_%SFvanlLD|U{v$M}FV+WngU-CbUvk6&5o5iu1E^wqV#O*fv$ey)FDc5l(uki6Db zT-$$wcl=WkeOsubcaT0jj@QG%`RB{MQ*TGNOAS30aFyiYo1ZHSQIZ%vJ1x4LJUF9KGG-M3Ae zndS&p^6)JJpp`*G)=i@m6&C(b??ixJ{69NlF5p=FhS>cBG6VpU%L<=vK>nA?s^HZsEDhdvE#Xk!jEZ8gd$pTk`+`r=Q zaqw-_-HktHGG?h!^H_2|ow4PID4FkU{k~PAFsFA4aMinLwUoOQZTf$WImuB~Op%vV zQ>`gr+~7w9HYN8DMsGARcxVs1l#Rt^+j<(Lq>agc@bCBe>9tqRLes-o{MJm^V7uIm z*}Qi>j(48OINaa#zI`5?;XLIm^gwkloa(E@q@Nn2DQL}lgCaBrX+3J86%SN?VSyq$jLF3-82g?Q^C&Xcr6SpB9aA74prOMf!}48hv5Ks^77 z{R7!q{X!)}hG9i~eX%*kWptskQPG!L9Vw}Iyy6MROP5rsDV2Znngt+ZZzmM0Jqlww zO!5%F#V5~Y^@EY3YJKFXv&!s{gS}%=F6&*lks;*@FTGYKe*fHGk_j;xRn1k)-Fxkm zDf_nZH?}Mb9@|VCHBcDyxO}h}PLC@dCBFYyR;uF%`P3T9c+xM%QgO#h>bPCVgJrmI zFJc3|*ah83@RmDERG!e}YX<9s+{&ZP9IJOC?bIU6Pjb9w15-d-uK6yXp1W18Eu@|V zvn%LBWgr;=Y9_eUrOx4Xz)0H#wH2A=ER~9m9VkV4L=b4ppub#G#|uR!`z2C=zP~h| zAyl!#cL=!lyGSSEBVlRN@;=s9&5XoMJ^ZCuKGzic>t!e84Fe@NX`Jk(GdZ{}wo~T} zy!7N!|CV=A%4YJu$S|nfsA%!>X_?MJk7WLBALB5;X+K1a z8>>KC_P(Z3brfRq|6%Vf!`fQDxKS#U7D^S0LtBa$DDKiypage^;#QpC5GaMVScr3`d_MXh1S$k&5Z>>dKfPY(gJL_{* zcO7q^qh=2CnD=_>BZOi6=sJz&{Uf+wp6_0+b7s!$2mL!SZ18$>!Hm^|yq5K~^ire5 z13CB}B}#PO>2RXTHKg0nTMmR8)~r?$0eaOP-Qz$P4y-d&^oJh!On6|6TvwaVbLnzv z#4;V~)GPS*AZ=5ptg=Zg!<)M8Hf7il)}b@`ywlx-APQ8CDzZ;dcELISyP;O?7kV z6}y$JQU+OtyXzQ6eW7W5-M&RI`M}c-lPF>fywn3)Ni`hJD0Z#zH6Gfz5LgMS*qo!g{8lf_C_ zcY!`-{sj*@6@?Y0ft;gBjqz;VsSL!>f=`Y~a45BJUO}|dM;WIU?%todye0n?zZxEB zN)Wx(pp`w7taTi)*8LLU7Q_>l3ReM#eO3E*d?U_JJn){(Fs(_i;m~Zij)vRqHFDj3 zHJ3h0v)*9Myi+4_+HSEtrJo{Xi2|?G{O3$=-eNf#{L z9L-Oz-3U&9Cturo`prq#KNxX;@QjIFbpZutwEfcWC=_Hp(Vz{eT$N;39t+9Fr_yXv zsF9j=4#-4!15@|CMJqXCUi!*uuMT{lm10`1O$gpy9iDC;Ox*uL*`A2GTqw~&2kB#> zoPNs$yCvtAfx9KM+1VO~K|z6qyuNM4nq%?f>~AGNBwMOG{KX-}y(Vm1;91IpAyO&@q=g6H@N`07*Z7?pL$^6p_!Sjy_MgNFxc`Oix{owL&eawWqBWAPfDTN-88S zSJukmwuc36=C!!PS(8l<U<{}G>#)^l2>9`vt z+vBn`J=Nh#|`S)f&yMerSvQ?&@Zm55rR@O`Q~AK0WB%+mz)c@|vTazX#qwT|N6wK=!w$o_-V zh34_e+2s2#0aYkkmSyS6AUXleG4X@qcLx#x7Mci8A zJI=Qo)86n1Pbxl85zl&_>;>PcVjK=8J^~VQ>|7HnEl9;NN&9;AgM}{8UI*lEAL(e= zxSy%d;@ZM3gwsW1($r=02wA;qu@xhgVLLF;$rR4A5mnP)-T z4-)4vS*g_RSF35STzIJM`=29!e7lI7rja{YJ~vP0wMlBaAAz{YqJO~%wJ#`7L52wmsfkdW9zH*$T)Q!FNubHz zL=*feZ#u!XucC9UHC>*LxhzOGOnuv){M<5YH7O+3R_NZD|5I$Ybf~Zz$RPf_;qFOW zzqW4!LiBjyJ+KOYb5h-CcUjJUKu+S>+Id4DjgGp++ra2>W zhm2fI`1Kt}WdOplny(<&lXu^{ur^KTSY>_EwHlsivlrIsj_cqKIE3=}gp#=oue11n z{FwYM4O~rDatlw%*-(;2FlP_bJv5$YVz#N!`g7~oPRWz?iX1hPyzk`so!KlV{vlavzk%n;lqbvFLpowp!PxT20Rdx5XC%pe?vR( zB>ccFbqE@!tah0JfSUykJuzoy$$e+Gva+8{I`V@L;eGS$w4a~ zmHedY*g(Xe%^g1Eaammz=9U*++TEV5HHJO2Dr+~+%*Gvl9FIPHfc|VnK8pCEMq+u< zux);eq$b7<6lsiZvs{l?L&V2Hd(|hI(KUK2^EE^xZQM%L-)|fPol~RWkn-*Q)t+dM zp-U8Os92#!V`Y5GW{rHUvE-u!k<<4c(#)N{A5XlB)1!j!p)Sg+#M5}pbZcF;5>hu^ z!(#;a;a1kDOd-xrI5BqzTiCLt+& zWszw78y+DpyKoNNB6(yCT5jl`r_rA6dq<0kJ}dlzuXLL*U#$DxR}qxFcuh+Z$0NDI zayp4|Loq|#G&QDD=>`=$dDRZUGJ17toKNih_=v_%7i*Kw?Ikq}yS?0XUa^XePd;7w zBX9k{W$`{CLU@=aIF0?xbC4(tp8qjeDXO4;hI6x^^{YZP&z;*EOAYGG-n{Zmju}q4 zYWdz0IYS*U^5)}Rh^e+M1&cowE?<*)je`^R^sjYCu~Vr%JON^M8mLpnsQz^oR&x~1 zX!53j6UiP#s-Th^wXL`QiFgbz7!Tl#o<@OV%VQLorq3#2(&e#@mcGke27_z3OpNOj zJ}iAhdoM7$JlDPg4u%y8hbp?pKBr?DkY8c%qRxzJ6|=?m`bg8d{w%Squ4i+9r1vdIWH96HWy(!+d~f>ET)+MfJ0K1>fdeur$mGu930N^e zt-Py?S}FY_J7rEnzev$r=cZA~?(RKbaq_IxwaEbASYMaJ)nO4*Gqa=8zKk+W=8<_k zztztc3P*YP1XXL5C38i#G`e)yb}eJD`|;Li^u-kMTo1W6_baF|PjVnVawRffo}| zKeh)=v#v2^>(a6nUNP?67T7-e_n#TEjcO zKySP2dt{W&><5?gVjcSHcesdYOt*nXk;c%JqDePJ4V6oN1Y`I}rPxgR`URWSw8|`} zc~B$kGxf=sWzF&W+M%ktk~um z-gaETa&S_<)fn*A4uUf6p{aME3rs3i*(_(ZzsKfeCe^^D$j&m5Aq@60u2(Fcfe#pC?IsxG^w3e-7w^)2@*=VC(8xu%M>8x*3b=`wLh-0GMSI z;PSiHo#63G$Itx13M@oU=P$F9Eljb@BT6q*F+Sp@&uh@SPo3iZtE6z%QUcbY3;Qa> zpe_@|skVU0w4IZ!wE|F^;9bXUmmfZ1v`ESp-x%hKKK9R@L$PW$FUfhmh_@RI=AUM+ zy2&7KJU zInz^`$x0)Z+cZ|?c@cte`}~FO28^Dm!#(uWUv=g?sZGKwtNcA#&-50CUS&XvJ+y|% z>zEe60oK&dDe~wV+k1}gU}Ec-lkWXynk}N48BDuZoF72Md3MWd-56q<0HY`Md0+x7 zw2w4zcuAP#8<6a;0)|s}>9{Lqe!TJG_?Gj<2_vNGIT6=DjYh}Nc59aIaE$)yTEJDT z7bQ_`DC}+R_&9=7Q)hv{mAAD7YW*a|2gHyJlcDI^vKHtrN+vcI%Gs%!ukw`-r@3d! zq979yqGgbND03v*c&tA1L(K%#Awo=9m=MzYlnG-bcKcce!1t#SAy+PFQnjE+yKk%9 z8JtvNlpjKHZv%L>=~CCyO?kp&NpftQK03~O?iwB#)bXg&d4<{`#Z*IftED^gt29>x zHUN#hIjgm{jX6?umit`UDxD75y*xWNa;w|D*hE6d$=CEUL%mwO?B8O&FTPO6`=nrb zUzd!?bA|qqyBwO<@u)*a^^U5J+O`QF9@_D#f_?SAbzLt&rKMzw5Mm?h9m~_U&8X&% zWrP>P+c!b%Mwl00;oR2vB8nF0tn|U}_(R&4Zz0r%#hvu+EN9#p%}r*QE>)eR^~5Yo zW$#H~Lz!Wv*9E=g*G353Y zwNnDk0MfAs8KIXu36|Hd1XQ4>N5RaRMdnb041rc!V&hcRD(M{&w!lN)CbAm2e4qLW zRQN;9%LJXORStQXS5qXWpn>hl6%F;yr?_cU`E8C?I@OGm)E!r4x;k&~me`!7&l}>| zOf+zNbtg*7021RE+z4Du^YDA`wlG37B2ay92oqF!)H)s#DwP}P(V!%w~Zb#-49W*;`j z(FpN+!9qLk4%es9U#sf0%=q}RmDtC&fKvkz$t4wu?0p*sct!j6I= zXU5@sp0Rm9Dgr`v`h1ArZ*#rWf!HCG`a-M#!o$#ufFS{${C;9z84#d6Ib*jN7DW@oC8uTa9W-Ex;+zz5KU`x!izw{t9rgDnpwc3!%4trMjq~?c?fWcO z825XRuOy7WGzYA19AXU%ellM?srV#shBB~?GG+1b0V?!%K2=0!xtt^oQc1FQI&p{I z*Pv{bGDO)3+rY1Y-%I0PqBoA;SWbZ+T_I;of?;|j*fnn^8PMEAob_H)Gw`rhP1E3E z$wcWwhcwfb>o@W1mA)eWdtt?%Vh<_C=d}NY24bz4VbA@pED3)oJ?t;b!vFJg8`xEF zl>#-^L7*(;wo@5vWMnjU0tk)lC{_dpCW*a{*l8Qzlh$4Z>N|Rq*u!u6@GP1 zZ^1q6eS{J)|MUfWAbwC;hx3RFO}ikCbZG%^KaF^NJ^A}L8r+F3g<3K>cg@tc!hVSFL@ny|A{x`@;YF`JDK}`G->0QqNB#ME2j!qUH4e2~xxUfx{~uBb=`z zP#>Wx8;h(XBr-e3EmniG8v(4a3$Q)9N>cC-4G0%=`n|;+h_k zDLICHxwdWwlAih~IDFAxf9W%hzx%}$W;b}3m-%kp~syR^O5V>O(eF7w$v@5Z@Lk>Q@NmrO! z<}KEwqCOulk+4v6IHiXLCNpgZ(M@dKIm8PkH4tf zNh}1~k>pOqk%@D*yC1fLRK`>xqq9u6a4M5igxqvwx%~cpU|YpPGXI}FipQJFZWk6| zoaNZ4gtoiS^W%;Zx+YeszGmeZw4!M)ong#w8UkL@Tgn;5yCvg^O*0ur0iUgRrtowB zTVs=wrI_CDXUb?y!NuIYn-P2o6$7NWz+9-~$G5%jAK7d~lgT>cQ|y`?lVLp9R@lR0 z#oJ98V@$P~F7b9A@>U*fe-&oi-KhRP}Q%iQBq+QSlj$O9B;_(uQgraoBJAUOf3-0%8!b`7a|)TG&nlWBTq1$up!l8K-nk zV=9h~s7;RJ=7pq1`qV!R?ANPsbF%@kd!AIV@)9ARRdZtT)Rvl6dfgkE3m<>Gx@XE9 zV5Dc18(u1-{_*M{sW zb?V*Pk-e9XIc90xE_D&+nIBi?&$nv#5320&s_3hRd#q`?l)wP$Ye$_s0zE>Jl+1Z zO$LT@E#wreA~Ipubw?4{p`BuLWU}*}LQds;*7tlXhCKyB-NZcBH#*R4!tJ)=Y0Gw; zC;QF~s2o@gPbp-`p|hSq+EhZO^0!fD(A5jJ*RAHF88a|gL8h!5kS~CTx!U?5$)?ix zV9mABWMTIB!py?cbx`rfHnuc*qqxNKBjB(EyX85i~gt z2rxdIuJ`!b!GC^I)w3-Tuy=xDS+kbg*IPl?tA}=GwF!03Hb~&_K%psgil^A5dp%W- z^{W5AyjWl600+U-)9qz@^`nwm4ZqJR);A=JHf)N%NBHoVtquVP9rz^eIGsrqBTOr4zal!ONhT?nAVvU`>6tRroIkA( zN#pG1vsD>GG$J!YF0)?#h6NzwrrV|4R_Sy~oho9GqfJeo+O_7t+(Sjzp`s=`s;d+o zr$zl58VVVX1|i%>kK)v7wR_U^p!ZWY3B4N)?&pX??eWNcYMOKJuYon#A@|j*^(uA@ zO%9Vw?xWha@hagh>)Ef}w81RBT`EVO5JO&5n~m*=uFJb*ZByiZIg;$Ixm27v{cA3StMQ^+jI~hoKCkI~8-)pavx)Dol;)IW*PR zsg?%?C=nCQ$%YZC9Vhw)-rIEQdVB7%I=aaW<`q8vI5r;oru;R9=5)pbO~SOixm?U! z0T+jjnVwGTCHs0oTHTHcurGTnSr1_3|f|2?WGoJjE8(T~PuU6ulf`4l_!3Je_0`4Vqbx4~{xS*xWtj}361QyW` z7zAEZBd1}*9uM__%JUC!KPMN2i*3Be4T#@hfZh{aIi%Uz{)JUVeIi4jZ*g=qi3$}E zKG|d9yx@p*Zde*M%(GTRJfP|fbQ3#^6Uhc#vTzR={tQ^jMQ`-?uG~YOC%BSmB&5Bo^G?`jio2o5RF^( zVW+c7bR9EUD}6^&=bLZzNwOI-B^dF`ire<%B=gHRSYG=EM$K8>U+1ejl_^Z;v>&&FT|7FY6PARd5Zx zo2^{iYCPiR8LQg^H}j>N?xy;nHT&W;PWP4$x)HACEAl|8gS@0iC_k?KFBXc(S7eP0 zxm)o0qv)QAPV9!C)i%dLE@^PWE zN7Omm7~N^pt1lakc^L8H&x~S4)#Z6*!lxX$#Y{e1HbSMX6eEkFqC*Fn?}37+ol^eF zWf6x>-Me9-#lv0xf)I>MpH6XqkBEl8^ZeM*R8ws`8#lPBcEQG{s<8Xz*&@Mufq#W2 z<7K}9C8Wia!|{kb{sSc8+u!a%*myIJTnzs&hyOAD-_`> zlC_;vB`L}Jg3}1o)nj#8`(lSA-EabExIS{_$6+1BgFEtxzP)1GQemsWIS)Eqvbzs4 zJ~T-?(zCu33?$&b!0x1rBUZ@ji*tJ&19MZh)V$n_Sm@VQyaKm=w#}iHg-#*?ZmN+L zO--AnGve;~Z`oq=6Na-ZgR4!7s@<&=$%6mR0uCi8TnDEMG&c>QN@^;*A<&y(S>$)` zfQG52p362&-JEz7I?i%ArJv2--84F9Ur=Q~@0&8S@)miqscY*4io3wr3o*78*=QW; zkNr$Ru3TPpSP$?o!p|joaIg4|z%V+?CyHI7)Q7G_kivR_~Ms zaC;g~8Lpv|E^^MC&&Ru}Yr%5S+}`3_divum2usqG1# z`9-+-i%rOF!*s=lfBL0wchk9H)y(C&hLG4Cgx$@z@P3HfdPqurv5z)}r%)T%*y+rB z@)NNT12a6EvDUR&+jL8~<;u%x&psYmMP2{P0VSyDsujG*pM+RzGW6Z~>Fp7nv;w}hm+JXvdPzB=)FZQkPBE*=P?W1nb#vPiPEUxi~@u;~{j zf7IR5XRHVQ4?|30)$yLYxt1KM>;=)Wm9IzD=UPXo`|hsazI|KiXZE5(SH@{)9cVJa z^{Az{val;@vq-DZRYnLmb;3ZE^SR5uqL3C{XNLxB?K9>34Xh}*fNTi#nB>-?@=jw{ zB5K>5c5Qt|T|{xR5Mf5F@cO)S&Dw54UT3E$U)BwE_e?LTCq=|%10p683mqJLKrULq zx9;C;Qkm6j0K`2WQ7q&wJPwtwJ9nxtva0H&;%KS`@9klgFL@4XpS`qb)X4f&`h$K? zggju-DOZ2>)NS{qsycCPxHe8|-m9vhV}9|tMwbMvyd*(EzEcq{HFZAtD2(jPZ~Kmm zHO8cH7zs_Kbvb?vE4*Yn62zedyY9?bv9`9f6w&$dt}oxEBUIGPe-pDm!%3HhjQ%6K zPJMbp+c!3=Dwoq5mZPdLo3@q4(Z&#Ewc1vE>WxQ3s*UV48Dfb3 zA;>s7NGiFo$DTUlg5+3D(-}WGxOhr$?)7Z{F2tX2F1IM|{3ba5y62W6*+!zf2m6*| z>OKN3TpCxW)f!1D0Tr$Dk&NA;7&dJD7}i0$)&%UA*#w?y%^vrvqKC5?1c6&(@(5MRX$4p#VZ3t*Z_p*Zyt`D=V_;zCthnYKd(PX z{+P2O&$lV{g2^OFbs#I&R(3M;1%&lsV#+QNcfQ&5)lOGQ$0~Tei-E>7I(1)>#s1cZ z5hsn_g?r0Q0|aketVy_978iWr!^L2}%T5E1&%~4V_t}lZ#f@o($!yvTCK@~np_5-+ z$zcm`Qh=`saG&Df40Ll~>wQRFCG@gH_KJU1GwaOGKS|ZX#whk-gu-+)%uL=Sw{#?2 zdyy}&2VhBs+}Le2n>N1n?XG^FIh@^gvijNt|b9U9X{o6R=XHxt@x%?4*7L&6{Z9#JRH?Des`ULJBfiPZ_LTS9jCX{7Yr78g74%)!9N<_o44iv|~^t9$0g#`%#QnVH#Btv?HRM z&z!}?GxE_6y8~~fgKohAw-B2Q*OQfe7qF^%<%^o6G7KxOj_0L2om_YH^yE;c?UjH! zRr(~MWffE4lgM{SgGPrmTEm)B$O?@tw_mv~NMnwW#7_n##5PK_~DW4;S1`KB*|72pr)`oF9EuJL+{0(^Y!`BQAYtsa6un@KmdLbfw(wVP5)y z)W(H{3ejAPZGLxJ@iR9Ifli)6yzXU3rV}}Ew^*5V4^XEe=L{JBC_tzBsw9)R?%4Bd zFKC|BRqcPr=3~*HW|Da^0$XD9W~m*(-qupvrzqbAGQ@yQPr&UVISTyZUClRG*Rx;tRuZqpWKmt4o#*kC^im7LIs-_cb=nVf}f z2d{I6=9ARTQ0id5AxX@B33(sHabzgH4M>j<34qie|I^w6pGyY_SUu!7N?!&q3S_Ev`z zY>mS9^gULOpVKs&YbrYI)7{;IAT9?lT|p+J`FCz}Tvi+{7U_2Bnv+amj$;!fG2Z)g z`%_rcx*u%@AUhTXMoIED)A~{9TW6&$s8_TX!Ba2dr(I+d8 z){TtuTz-Y?^9?Ff(Xjh^i(_uBFFqbR#3gMt^@&LSR3d9eAfFtTHaNXhmPG7OKQJHTmD)m zGoRdfdaC`7A;FPUgLAAn{w^)DLh9m`%6T?l!hPP$vPhBgcZ9jU3Vj6$y$vx9*Pcl^ z9TlQ6e8<`rjYgc)SMc{%O?6?zDC*e^gJtTmf)-=qwKYbNL>azjpRzF@Hb zqJ4R3QL1^yCJC2viIKG4xlD(QTd8Vh37w+$(bNWJBVM%90`{cHm%ZcV9$mpj`8z|| zjkLwdxux&uH2O5Z2KNpE1nWZ+F9PId+9k_HV|Qo@wbJYrW7+BqWWYpS#n@PbREXK? z9>Vo!5>hKWG|7bc!-$*xJDalr2h|M~k)wSXK!aDps9}41yACgX+oa{C^80-N*H8L) z5vY>RiVhTiz1&6x=Qb}^#7I|X@;G^t4SFg$CoKPUwRc{5nTNHH&MkZ|wWjn!3utGC z0H{|By=%2g&2(69H2w8UE&K4*++$GzL)k5`uth@&+$>{{?bUN^-e`(l^Bb8w7qRZO zGn0u;rRmM@+_BrYTdcWUf2@#Ye2(00KKze7+p$D}8gb0$8QBGwHWDG#SLxg=A=m9{ zS7L=y&K^2j{{o}HO>s86sn(-kua{+V_kMriZ1tp)i=m_}KB>3d)z$mU0k})I^}X$( zokMrAI@j(8XI@w#6W;|&w3pB0v?$HRI{lU+(kLt)yXEPYdmY=^c%V0Ob!8U@)He)zpP^{d|M@c826OHF9xZr?aC?xJPVx?ltZ-^t!^ z?${c)s3lT*yib{~+E@QZA10QeDHhwUAZlpBUPu_p=)THZsCOfWX}Qh;QmyGHc*gxU zBJOa6N#U!2%8#LG!%=A|Hec%?=+?^g_j{W|A}URyuxi)N;iGlK9(=W(jr4(egX{y) z(uY^JdeGV)z|Xpu8na>-@62NK54RpRX&@`QAevmOn_)@!J2I1tk{#4-Y}zk-_R-@lgMp?{9~pfjfkX21`TQ|+?A%bAIm5@h_DX;^R|(CVW9fh6s?F(-V}qy}&v7 zxHtDAjg7ys0(x?O8&#y)DEXHxtc(&f5Pg1K!Lp=~K4rNG$#*eda*pZEPN<4=~!Qt zY!OA!NjQ3u_Nfjeve%v%O)*OQ_Um{jOWxe)QG;jCGF;6Mss)E9TpSXXL8QXOVc-#E zNPq%oQ?}(VHR_sbg%CB<`&_D7A3xTiWbyIUu%(aolPIp;v$)+vjPZb%eaQB&N$J6IY~Hn#50wo5rpd4652We^s? zeb+qnGjYu#U&3&YdsGt=p1)DI%2DM0h@lCT21}(XT_U6|yDlAS8qV)D8fLL|30=?~ z$F?L5aF~}h`~2mE)FfIL)KL@$>y)vXU zHlm?;!&WUmCrf6dds+oFVQq*_AhL1a~sSA z^)d(iHJ1VOi$T~9WZlr!>%M#Pw;gNY(5n%>qF)l@nXR^M241mtI*&3!mK5W*)SQKP z&ZpMidbms9+Dj{9mVW^PmqqP?eeN!6xoV%ItG1x3iUaKdzBx&0Un{4s_CMOr(ZS0v zq&(Msx4pSa-|XmXbYR1FE$CUE(E}XE6~;of52{?$WAS-o3TIexd8()L)L2ug3m0(m z8(vA|(?W=N+#7~8V)JGcU&KS^GfBEL)R!AnDOW)2B+ydsXwc+m5 zpIn?bz3tgI33iODdcmAAmz{k;k;cN5KlbqNVApzABqszbr;1ZlJLjIqZI_n5vbjT9 zhYb*V4?cFYDt70cq;78;PgPkF!Dxz9z0}Q~V+;>p1o*BSWxwSP70sWD z%*~cf9Wr#5UEz?%=eTJQU-X&gopKfzBCPoB!Q;rPN?|R?lj5Oh0=i@8Wnwo_#L^nE zjRFV)0Q#GE%4@_jC|gmOGgs$`{cUEj-R**B^Ur&ukvW`Mn43DIir+a+^f0V(W;!6vJa@ zql%0;7V!lT_o%I6!!v@ZxTJgb3977>3m(;znRx-CIi9H}thf>z`imIHc=vOzlo)1* z>OLlZ^iqOC9D}^BmGE4t63YPI}x`gVOPh7`)JuJgR0UJ++ifI^BF8^MO0I zK3L5(T(H2_j|+5Mjgd(8NFX za7(Y-S4zEj2;+HrR+rzWk1fJNkEx*Vgcxk6b2x2?zFD?+p3=lX1g?=(i{l#d%WVyUnN(8JW^LrhkMyuVRv_Przk1x`ZjztMDZTj1LN;hfb8?Zc?0h>tv~H$gV#U7Qg zypg?JDa)z)`b)uanZ-RiCybz~Je#0Ib4X;8xmdt3U@$h)LN$h4MAy!Q=kUHN_sfYn z7bSG~&~85$mz|lS;*qmRs4tbMZjyuqkg@&`GUV)4<#d(JxGw|NqdJv$1&zQW;r@38 zh!?19II+vNuaw}{d(GxCBTD<;g(BxONjCFTvO$ORHxDpL-mg0$F^-K?rA8xTp|88HQzu%-^h50xfX^XU?h)_uhlMt=nJ_?F?%6oIY9B7)#e@Qks7+aIN%48^jVCy*@H*7nrZR!ov|oXy^Ko7 zjw*h{T-0OuIs81Q9 z8Y8%*Z|~7Z?RuJ+g~cRUkNdzz6i2<9R8g039;ZKTUwyu!Lg73T3WdPy%vPu1KBEQD zxFh8B+K1wPL$d!~m$*!N^V`X*Wzo%c-)+9Jrddoe{A_+4-EyFAJ9QqTeq=j3H`VDu zqYL_D9shkd!u7-Tcbj-#CpZ1J=bIG03gDw|^B_&Pn~|H=h1*;9uDbX07wc(M&;RS4 z!r|VS2p3=Ke|QJSF;kgb{=fbBWsSx6VIe`9o!@D;q#4fMT|?fm9=apN*`pv>7NuHo z=fYUZ`|*G8u&#t-L4qlyCnhP_puUu;jh~4wfZRU86$XZlPO;7RnplnMANu}q5S>%% zSZO~G@4NltT8AgbwYa+WpP#V@oy8_Z5oPly^L&$%@+DqzDA*}IWai?}uJrp-#0Vhh z@Ku1Q_YJYL;@_8Wc2i9M_kVDjeB+&4PC61s6#v_J-f}#4ltZ@oRq|t-ip~EBNmrNn zmC(%Ge&PD%ovQ!yo00#$=>%=0U=$#+b8O@`lpFtRsYo(?a-O|!R zG{zv=bGiKCj|_8lduO)EWAP=bn^|;2j=dG;iJ86Wp{0!Sy339La4MlaD;7_bZ#-+G za~Yw!UWk@pB}+@^xL-V2zoLL)E>u%Dv-l&5W83<^xA9rvx{QfG9sE?I6N0jba$Hm$ z*cf=o2o;?T4r3x8Zcb`%4(&Rj1Ui`x%S=`td!DgE0-M%L#LkPgl6Y-7hn|NWss0ZZ zP;9D?h_{&6p-uTB(m==dC1}*}+>5*ixP_9cty=l<>x25vQf(c!!XxV*U)`5x;3-n4 z%r|PEBvi>Qw@4#!&Yfi(-(kaJ1xW7Wi&uXVKbhf{=JjT{gTZ>o2Aj#~U*dn!`O2?N zi1M9m)^dM1aI0!g%M}T%!m6ZZKgYIKMrm}W!@u;8ZQ0*v)wJu%PzXDyDoFmEIu40T z5y%l8>2ZEyiAd5-`7Z}MQPXU$#36n~q@v|7MK|Ynt${pa za|py}{n*i1wuE2Qf5s9=?6%kd(+6t_$=*xvxMCFXI(X#W^ zE`eKV{QC%4OO$}Lm|s@53BQh2=sVRhi>4w(N4e(ZMLGTFJL?e9xFnNr+e&sB0-Q3x zp?*gA1O&tJ?Yh~U__kWY@)9P=7U0z5iXx!`)U7q*ps7rgnRYgC#RketslFErg8+bzX&DUoy`8KUy zx)u4#*d!9KEexV7DY#cNc&4@qNAl*jOvA&2v9Jj5OXWHfWhn25xo3)TJDYRumfEN0 z#fAc!CP6utr_u^5o=5N|y%&2TVJHrwwc`xcjuel%=;c?&tH3egq&ad zNxnI-_cjG&We;=#Isxvf)Vo^G!yBs(EiU0cXxC%Dv2wVds?cT@i&wq`csM08c1@d0 z-f?*B$750Dgr1H9-cLUzL?XE52mo3B&IG{ur*Wz~J(T`!)MQ!5>HcWf^Lr_7)3b@> zU=Dddqw^i>r%#P88* zH}nLkp0`u`G@=drrUtQd&Nr^5T5-5DKhJUhA=iL5f9$*dKmF1Rn|iXSMc&NM3*Uf7-j!a46fq ztwjq(Jy9V>Nw&x?##V%EVT`d0S;lS*daOl~Y#F;Op|Oo2duUL}Zn8ACvSch7p)g|% z#(Pgs{onV)|I73Jy+7P@+;hxvU)TJuJ=9uEPz~eQa5_U>e6o(v+_ zv11E5khl^U?zDbF4vrJ#_C8C_l1{bm$En=X2v;!uIr@BfQFim|XP(;eKIQVJ zcC0QOJ_GmdR;GbMvU@{L1Dd&A&|E*OJEmyi5nONIA%L+`?eP4f6 zUO^VpG^FHErTAjjSvuA>~^ojvmmMab*<-RE~`oLobckZjosi>?#aH@dqk}DI3 zJ+#gN7HBg*{Tp2o>T`e-NNF2ZC<1lqNw%_p-^CX_OV`7wAY*|Rcx$8bg8*k~I{d0! zK38xcwYKzz+uzGIcJ;+xT*y2Y1<#=(El9mrLs8Xu{<)EIWA~hGwZM5IfZ_G$U3b9- zktE{jo***I62Kuq`nXXSNn->{uYhnbajTorel+(@-q@6!=auLh?Gl&^;1wN=Z*^}R z!~la5?NC$AXIU0u;H4!GcvtGNB33Eo|71WbM2oM^^;MWa8+AwSxpveY*A+v`pI={1 zfDCP(nD_iSlGc>Vb!kNe`nCqnt#-d!I#7{E6>qdY^HbN#q5$Ddu8AZNuA6LkcsS|b zF?qMgjDHN|#{F}hI|bn#1Zu=5K)bSB z3DV`rAR zh#FnGeYAZFCkH&bStoM?m3oR3J?Df*fvp4fS0e8;g`w1NTI%O)OLB4YP;Bd z+)648?4Jho0=U#Me-#)fE|dU*hTHCGOJ6UlpxwG5Q#S?!uR;vH@)>F=)yKaEkQ1u1 z8buj`hN(5u8ZtY`DpeW+7C^{|5=+_8s(QNNCo6QZtBen^;%H`JUs079{kVIq+0>$f zEp)+kJS$}Rwc^K@T~oom^@5VlMP~CnP93UdSF=jL@nhjc2?+c^d*aB|!+-qOAI`t3C3Y*(3>PUhU!ykY9cv@#*W|3h0TU*m4hy|g;Y z%xNNw3mZP1`?N#un=~1YH>CpzwZ77fodry^{EDs)44`5d)!taP+xc;fy>80JMkAXd z-mKlL=eE_dRddo36@=lN-iEk;N<3n{C--yVbO+x{?8knS^;*FRz)fqyl~EU2vw}wv zp8mQX9a7io{k+fbS=jHQ%t!wNtIS=V0zBRIh$_OVuqp}FPEnwsBA!2iMWq6BPuWlk zC%|#qzDW4PNl@kZ$5dGvpIUt`ft5~tm;Y1l5|eT6o$JOUQgIw-iszQ}0Ooo6vEH+S z<76%8^V*WXlwzxAX-bJ}pSy^DE@PhsOj1`koTf?29f9FT^WCg+rTZK^ukU>0EquM~ z;tKz1d>jijuZ}tQ-|!=_7d5!t2kOjFPBEEc{ru4@V)8F^KH|)a+7j@Tpo8F}ZrXS; zQII*d3x-!q4DW@hpx5uR5Y(T;dWb~_k9l1me=1p zXFUEHJZkq?q~H#q#?>zDVOSU*qbR%=zNJl;KV;g2kW&!3X)hI{8+RO{xi1woGd(Hy zvt#<(VgTWYb^3J0-!e2zv+~57g#+<1GJK%3XzHW;x1w$dJ8$w@((`BZ{UDmH0Uq=Gc zCIVPeBsxp^x?%T*G<37dD%XwZ683C6xmkBLF*YR?S}q`6VF?9P?Kg)9EGWKZ2d%5w zh`yN1E-fAG`a`>i4m+57b{h?~{mjaPT>2PugK~5}IJ+}3J73v-?sb|m?aTd>+^8}n zam=eGlQ)v%(_4Y9B9DHMf~E|@YU`UHVBG60W${~Y{tKdHefOvn3=mvzN2cZ~>JDFd z>DmLjG>^Ycczp|P7}cbEE*|2RU^PfA64_qhIJsO1WBC5Coo=?o_7pJ{lj)A{gU)9ML9H+Y?yy53%f?2)hV68TYpk2YRthpga* zzOU)5}j!g2%|*zN_(Wz&Z7u>%s1EQ+Ot5r>Hl|ozAxnnPm?`5s#W>l0-_YF$>QCBYn z3x9`hJQiu+O)CUjm2TZ5gfUHqC-|~;&|`-=);Ky?&@l^+Ic_&H}&C z#p9Hp{rUA+`*xU0c}fXePj0T6%n&2rHc^C%_BN&+HJR%Nl!U_YoN~6qv(|{kzEQ_0 zaw~G)Y^2=OsX0>i`+^9I!qo5)_B&8r_R`JnZA)4Vq~DzwGFkn~^r;S^_N@e<{YdnV zN$E)HxhmF3(+ivc2pB2w^-|M%k+!g$HVbdV&E5{`4? z%JAV&)!MsG4!lSGp~L5w9yu2|??y4UIdMnFqO`2H0xY8`fA_QUDatxoRu#1ML|F%Gya$3&^^(Uz zT9)IecM8}fRc@BiH6beNlqBWzJ|fDpk)<)vB2&OcoP3If*((S^z9LfmiM`c2U`T!siCS~5nA_BvAkH$`A-%r2QByDfFrZZpGq%m z;{y(MwS|qaQGMtBW@rqu2R(79kc@7iTodlvmZTPXPIxSml)yKW;_GUx6kL?DOgzPF z0HHAW?Iaa(Lu9SPo_69Go>I^7j2PF0Gy>_8IK}GFvsz3#@a&^J_A`bT{*^QW6{o4R z*myzBx%{3!2SQL;l$V^)Gbz(BEH0p;;sI!9Kfr+%vs66X^l9(N~OZJ7Eu5vX%e5 zQ@oT6B(-HK`&-spVdOx1vbT!&#Pq%O)z%mw9DkrOOUf&u;|kY>A-$r`OF z*w42Go2Xf4ZC#onOsWAtNZLZ6=zHV@ZqO}Mnv;W9SXI9{@01%U76s+reD1L({bFi=N ze7ZxiT0siyq4+mew^)V5F7~+k#Z6L50EzAS7}$h>!g=lA(FxOw`8pk@?ie-jhi+bF z8R5BRoc0VmOSJIJr@ZUG6e!Dn3$(}yUNpIQ!}-~xIp5&RuxIaf5==;*G1^xo3$&}H z5inPL-5`q^Kz)HWPOf*MU(ER20;;%i&>9YRPsQqpXti>uh7PeWO0A-efh*8~YY|8k zZo3T#iFc`PPG6MtlU$B=lLQm3g2BO{VxT z(}Q~ZMSRYP^wq0}(+f{{5(7iv69OEs@u#&Hp6*E^9)F$~pFX?4bzgpe`R@f< q{;iE?4(z(^F~9vyY4GV;5_E@x`-$?~}#fI|0a=?#o%mIpYTs zV)JOu(f_$Db7}CCo4;mkWYOm+Bge?X3keA^rYP=`LL21bzgm3%S3_c-FjVBRsf^SN zxII9RkC zN&bE3_50sIrv)EC$@pSYHs|Pa(ip7Ezq@R(%;%SIxZY|=+rD;`ci|SavtKdLz&QZEj*RTMQxMnod2v|F$ogbnaRfJ8CmXt)UjP|G zdwGoOd1^}C*x*8i{PbK=wC~1$mc|P@i5e!^^Hm3Kg3Bu_k`>R6x30yFR6-v3S$y`A z1_tDc$&9d{KY!kx-`|WOM8-8dAt5HlNA!@o&nFoF0jL!jrjJFlc@D z9!>a0jy}md?JYV>1$5n?eosR)$iKgR2=0^Wqfi{&*WZ!(*qz;#B3yx!m>man_8x7? z6-ITdiotqcZWJJt9ztGIu(6-3IPy42vLjLe^EiW?7@z!d^mr3em1Bcf(unQY%1ae96B zjwXX((5vKzRB6|d?)TpB?Cx?pZWvVSHjzF&JdAck_q3mpP`7C^nbc`Xsxk5^<}q2> zpdN^F956A9$gFj`vzVEi$GB2WPh4Bm5R3G-Fd*@|$!xAnU+o1M3q9m}=jS-rFjP5l zT(;TrZ|AkaZGE#psPU(#Cj#M~`Tl8Uag4+0`CM3heZAoGCNIsqQGJHMz)~VlH1w~- z)xfZ8jr6lckInz}fuVb?mMsi}BI>@Ke>btqu+t6Yybr>@(iTASnUI5b+V8Qtx_WDC z3xTxriNXAMiEWf_rfs22Ww(XB zZl~#eFb)9$)88BcS0u-qlfXNUwxJ-zYqT}XgoFgIr<%6e4h^~P`HrM#n{*?;60S$c z8!_5Ghq#?mw6p!)2i4U~KF`{A%7xOGOC@9mf3ve82ViP|_-k7DvGIR{H9mA|S%c-fxX&}CUCGp!7CJ^H3uA3Ws;R5%Lmyc8VN4p_HhWZN)96!fOuQJGEJ|;)1uce=Jz5mQ|6r8G-RVYZiI9eWE z`XG>L=}G%^kutf^_?6}U@iFp2KtSLf z8XDfI7#*F=FRp^z%Wa(PcPJwQfxX+J8OSb6A{!NHl-5DR)cxJPB(}ELt z`iDXNrbrSIi{+d3%|Yi! zgJSaz>@?_3Y`lPsYpRu!_Ab#xs7#jIg@XZtcqu@5Q(YQ+#jjLk+|1TM8O!;P){ZoK zDJ^)njn@GBojt+gN2bGSLM(zX$0(`E#yc7ebi|;(KN&xQO$GQ_&K;+~=+ebD;N3s{ zioIG*D#bfw4_=Xf1W$TXLSxdvf>=|sLooXMI!q%&!1KEgJLTOXDf@N1Oc(V{;`Iib zhaCXcl)A6s)X4XfphiZaz3Z-o;(@VS!-SkVy!|zGQBOG*DJ(C+Go6Qfv^|&g_+!tZ z-{|ctdijZI1g+z%{tY~oM1>e*qQtqurQc7aMP9t9QLa@=b`lMY-wc%GY7N>n!?#`j z^seSGUe)KtO%K(^vo7AYh06Bw<9RTcH2G4@jP02o-?D06HipIRzFFq_{>x^)87mDq zEwJ3?7DGzO_dGm2RD_WQPJK3ed)hrtNuQseXFJ_(`S}G&(+H*emNuJw+TO8)s?4DVGW^*6KYMc4vjWxgjPCH|GOG}IMVUpZ!r}>zN zb2K5FUZLCJ{6Cn~WI1EDRIRJi1ZX*kKHA+7?iIJ$QU8 z$g0;Y?^bHRSpW}!oVj-K1!!vGdz`Jkr$kz;&?j;SkKeE$0^T+IuM6TZIxd%Uc6uC# zAz>WR^79jK7;VTaD&hx1G|H3Oj;t}#b>BTpDS@=k!pz7^qYg8xwU(yqCFsv<17yGr*1!};$dx-l>GUM#x8LW&>?{K4D*W)Y5j3A8qr332q?*%zc5{n8kWhj(Q{-$ss)1qk zAEK(66xhn5K#@;@Xpn!c(n{&uJ2IV2Wh-nT8v8vg%&)`Z+~>@})c$fE_zm4=k9nfA z+!6)daVM4v!VsAYDwW`(oo~5s>Wul}U{&o~!^?TQ+!|rQ$O?`J--}0E; ztpWIPZv7Qre!v^GTZ7LIYlYClI&MU z+v*d#ytwW@T|+;atv|_a*{>d9rGJZ@ne>09KpGw?0>0VY=(xW(WG!>0yi9yLz4BdJ z{({hS?Uwjc!e7j7G^^I4@Qe3DTyr-&Vr4~iGGUnN%q10sE^6y_#S?D$6*PWYRACT% z?c(Rh(iR9gYB$Lcc8oO8##{A{%zs${9=c>Hjs=0hu8FH-927mAPv20LWx-L6V4Dxs zsci+WuT8)@Vpb2(6l(~*E&4UszMN9Aqn97v^IuNb)0@TP`Rh}GyHZlej@=|>G$ps) zay={=m`On3L5%Of+L=PkAAK^F9cTBM;H#X!fA76pzxa*sE=I!RUvF87r5gR#23JR6rN5+t)|V`lL=vTMJ{pnZ5uJSqEUdmO+Z=~vRKi`hAPa-S=!x*YPZ0IH?_dkow9r}u# zvTf~}1WFv6shzixrMI)dIvwEpWGjWgAy#9?azE zGlaKaz(pHp&ACm!CzB}NI{uM86-~{cK8lBzP#ELFxu6@GaP;rJ| zZhjkFCA841)vA(-PX?fhS&^Ym&wlFZo?ht1#1c+>Vmxcb(u&5*QDL0~YQ^LFU%jB|uE61b|{4iglIZ z*I*>Jm)uvBa0r+DPPd4br9L$)sOg}g;v#uoZqOWkry|n-)uJn(nx~}3Tc??-(gziZ zsFsk_Acay@)i-;3EJ`bW6Aw`E`|xWbzK#bkhI`q%^j9htJ3t@zXv=M49}K|`?9bqn z-i*-tMc?i&8byP$FfIqv{ae;&S0=+n0Cf9!8&IEjCWGd#49sNCf#GNMdek zto>@M+0U&3tA$R2Om2q|ZR5iapr^Kom<~KuB^8yl<5%j@SdtiJ3ZV$W!rO5FI})fZ z{(vOQT@c7@`@1^OI^g*|CH3sRzaIcXxH=1yhX0Npjfh>ksr1XpZ3#YYsMlND3Vr?j>%M%Zj;^H3wSx0cLb;Ahz2?~mp zfnD7x?A{rRr6jmrEBrpmkck=wC{DY85Mkkz3p0(6kJ3RbD)~t9)8>)X&hG|-ks`f; zgzVVI!b)BA85tRcIZHJfWbjD7QQQxJygnx*2dSaGm)?+6woLOizRj(_Q(2>IsD(aP zTY>Oq7wUq9_SYl(MNUxfHCw=y^mNa)#8zBa5VdHFcf^Q6`B@@4ayseEZ~~&dOMovs zCg}4wdTpZ*2i|$UNA5J|Xlt#bX|x6Xz*P3(3XDTY8a1h1OS~^C0`bF_lh9FYF@?f| zZ`8edC6*&H+J`KRPWeWj#CP@TaXUf-It}vJc^Hmp`QD4P?U`{rythn|3-ItGZXWWw zb^&$CKc$Sw-QepCyR`O(Dz$1d+bgI-t^#cL%P0hb>K zk`tvD;}Q@f3x~FKand4~Phu z5WPmj2}3Ggm`5)Bp-kiQtE)=F(eRWO-O>W#im}>3VE=2qU99NWJcxGbflyrK>w4dyE zwv&rE3DlJd<`mi)>Ce`rnu0%dQgC2dFuEOa3{RBdaQ~Ov7%gIm|D%|i8*E!DejiSC zHxxy{BK;!~?ynEzY#?4DxWQxqt|7J~i_am#WJ5*lB?66T8VJUxes&maBNp@TJ`mB< zRB@Sjdrt7po)M#>gR_c_Rd(|5AcXBYT!5l@_slV`NAJljnAv~FP~lKf(+)XW9~nW+&CM-z z_;Sh9DeKn5^iioNZ>prYbZ3kzU^x8c(KOJP-HolH7Y`S=-g#FRXO@cZj7)m+dP+?- z=T4!HK_we|V56l<8`vuI(BI~`$-aVe`;MbFJ)JltBrIy}d~x+jp-?bCpWl!RwVQ~6 zueV~OT#3)YU@U#k7#PluKc=Mg31OM4)DW*yf8ix9D+xH2#cSGMmKPOH<0f1Q0Z*ox z?nP|xr2oCT=DB}5*QM!KhIQ&Ru6SiCRlM!91+hEFG`TjS3Cq84K8H32BFnk%|H8T5 zIt0^AT#cRg0mHwSO;P6Vfx%I&3Y!==7rXH zpo{1i2uA!SR;XKrwpUW3hZ**WIgV$p&6IFvP$GM3`Mx9V63Zu2BLq|$4b>E+p5nFN z^vR`Q>BXMB%#0$kI0wLlgz~`UP9Zm~6lvGa(>hAqwP%*x7t`t8{?9FysDA97@?GT%)x|Qvc zv8uy-u@LxS2#(~ochj4TtWMhq4BwXN%!jDVfJ z@gyfVw_&04o6+nS6eEx)rh0VoG1i*UzSqF86-XnGYVR_Fp|{+ZTR5=b!S&xM&p{}$o7>7$Jx;M&;4 zX+G+PqsmH`cYU!vbU8GvU`EQCHZ(Ryl*Ma5See2iE&iycR=0V$@QOWF;D)>2={dIC zu=(?r$H<=oI9=yP_}!?>1HVeeAy$qJ8r{; zBJ&fI>Qg~Kn9Q;FeeIYuGtfY#NY*d5zrV52QvgxmOOIa`k8N09zykqC-*e+~DqIsh zGREkzLK67+5^-&PeFWgv^Cd~(=<+qqS48_KSe==`rNgMtkX^8iy{?BIV4#8NMT)T4 z%^+|JOjV2b$XyGwSt<{WOkx0DpZ#enYcJKjgA$(+$C~7GE*(3&J75p>%6{=8mBCwE zkTi#_q`;pZKi}b}C(dLwCV+aKewSABdz*b@-%GkoUVG*x?{p7)$)}e1HkZTh_hTN%6c*e+FuR%zG%1l`xIVkJ%IiE+fr z*cVHMV_tFg;&rSAr1Pse^qH$wsDE$BMG?s^2q)FlUR=nfgc1G%L66t)%YcON%3XiC z{Ufj}u}4qU{hn~jG9-WQ20KB|+`v|4F4&+K3*(qfizsTP%{q@aRZ$7>2k%l>k2@29 zH)R>N1MV>W`OC+to=Z?rPxvxl&C)u5I{X&!l|jkjJjT0Bea>!$jr)xSe`@b4dIKlU z_W{B7Ue8>TjN=*bk!0!(9cRDw(ngTJ1tP6r`FSp>%Sjhyswj6S*mwvZ&Z)4-t5d@v&7GHVuTHFHhIaP5mLQx$PO%5>gMs z6|Zu3u_OJmwKQHzXJ0}1nx)qyv$F)Y?4>|^BB`d7%HYQ}zG8sT3J@XBj$&D#-DL@a`p%G4_M=tz< z+$AghX;tL^F!7y?@@d(LG(o$xaxs!+$~m*We#pKT5@I*!Z;|iL)R+m5VC_)ZH9AA# zkuf9ejRRiX(WyA$a)kPVJUIHI+cy1?X=P*aMHGMl)vfLASmYfv=&g)mq@Esuu9K10B%Xm0`R#@uPf9`n3=y;hJ5-CSD;xTjT#4K2qS)& z^CPDWDL>dS83brOh^6+sN-L zI|xLh^JUWWY%Ov!jf1QW0UAMv?~cU*jZUd1_T}9#Y|_}xR<*(QazEXv@bSMHkR8l5 zmFa{BZKQx*RK2^PWKFGMR}>&FCQ`!7t6e7z0Ha;2Nz&`@zr!VRQ?B~{-GIxwR=KJK z!u9$7e97m3_@eTsSPHaM;B?G%@Wz4*>czq%;?L{DZHbnn-w9uDz4K!s@ z?_~ z^gKIkXY#916~3hSiN|&c-`F6oQYN3mqUSGAz(v5qGs)QJ-n7@Cw$dn!EHbsOu+am8 zw}0o!C#K2CUi7@j0!U$;t;(DawL8N5krusgJg|Uj>+@s|d)imUfyCoB*0}+D-yB$_ zqa2*Uo*btToQjK@d+ybj?2Ab!O`$IC^^iq3{3A6430(ZbTKY1+-%&4z;#RZgB{cKU z<(_?MPo|`7JSCrWS6uwTD^0UI@8}c3p{g{qHdMsXp@+ST`w`F%bFa;znS z@o^2Bxo;ia9FKHx|KcG=bE^y0b5-NCj@;KPT+6xuz8dwhS11~ev-KDCt0Lhuxgx;k zMa}y(#`i&op>0)aMWyn2`usic4Gj&UadmZldwLDV2Ztr++{{B8f#e|ceRLWyI zD4SbTfJk05i7PWHGp17-aO&JxC@U)y;`Klv5F*&F*?OnpVQI29Uw$`(39&Cd`xW6H z5RlIrj|U~9euXGwx(e(smQnIwZj?`VXE;o13Jg z2NOZKcO|x@sg58-+sL~_yw^$5RfDNLv0c{9kMVRgc(#*?siKfob9x8!-X^xS;N@B5 zn4{U|k7TZ1l(QH{!gJ-~6oPx&-v#Z_6EH7NC< z57X)KZ&>Nhvx7FpRXmWUP zY$d)wU+?w1JYva_vB5=^%!EAqVWSR?jf_R+3m{?{AFipP)5ybP%}bwK=c}N8R96)f z>hh}ifmS5WKoJi2`}Gx;CSC`h%9v_yGG{4{7isr!S<|8=CFKA`d0+^+fEo(qW%Vv# z)aT~~6=MD^jX59R#qtERP1MkBnDl5$(^DZbk|qZYvHx=#3jQ^! ztA{gtPPA z7oIBMCgC7b8S8VD{&Q<4!NKu=#SNUJuXSoL6H8D&AJo|RDZx9BGRNAw zf@WFqI1_TlV@dggiy_kFd+q(#t_Q(p4uDFJ4iM91BWHgl1PPu()Q(Zq>&@?()18^! zsQn$Ew)UKUPS9AX(JU5lIvnohbfrbEY&vJIVj(AT9!lps9C0cg3$vppZ&a~^gUB{j z+14a@o$c*W-4onDx7#m0 zRq(0V^joW)C&Q)O?JX@?=3R#whJpCZG74W52t<6DV2)3}AH;lFRbQWbj)=IR(U?hB zebBBmVnc!};U?oIK1{CA7}<*1R8IfFx8a4Cob{5cW>Yli9>9?t3mRR~%Qn}uSrM5` zVV^0>z0d?L`sCgjujQW&*xDV1CLswLtkq1#uhlI6F4whuqLzois8^Uj-v$*$3B>s=2kKW#mq zl~@z&Q_7&Zs$8g3i=`BavW5nPn;d@`X9RE6`N+@b0$^3i$*C>>J?&3%m6{ceKfQC3 za)P0$FdC?MqL^YEM2?xR=pb0teAPh=M$=F0eDW@pP zDtxcvMdlj-%LnN_H};c>lu3U7lV!smx1qs7>HZufqmzfxta6RA+Mi@+Cwr`L{>e0< zcl!7^>6(o3d1=Pf{YqnuWI9^HFcDEv!_csA*n7ja@JbYQrPkojRUxuhvq2b?h9yl~ zleqOYdGqHiFDP%?GU3cqx6-UuRZHF;zTBmWb5)a8<>$gn<1oa(y;NUFL+|mPL>?Gg z&{!n9!&E^}BP7lCVCq|rLlDX>-3?AnAWR=5`Ru_@{`LDDh*+ch%DZ)Ck z3f}+HRuwUt81_j>&6>oNspJgq7s;9~jK;LPUDB{;_x%7*rkWjCN=cu)pnjX%0?L4? z%P4ad#ud^z&5`~|g9PPYI$th#d1AdjyM`U`7*uL9aa%3Vwj<8U`%__W#Z~`OQhM6O zvRiG%*xueY69nwN^M5>K*xTD91@#W$*B6Oj4ZuIiV49;|gocNj|NSNAe0P#T15MQA zsF&dHlTuKG7Rkj$m_z3fzgD|XR56v6?(X)OL(F{g@0UVt4nJiDWm%}+L91FPFo{8# z7;&k7fXJ{vok5GlR_wPhgaXKc=EtDfLs* zHqAlPIW+Y)D;_VM?mK~D@8c`64|UlMJ3r7fBO9i%W$~H+X{3XoUu6Z=yG_OZ1O*;N zz_nqa;)5Jj|4D}9Nc={;-Zvjlq(hu&F&Xe>)oWKpm^QY#!VQWEd@BnL>St%4-dU?) zo#~RZ2gL=QjjXsIML=#oT0Aye?-XDgvXFKsiBgGpC^d%$Z9A{Davy;lsn0S>J`?V8 zJgk+AsEcP!ryXSl9Ut$t%J+FtLj^lKftW3Q&2B>+=m&v%L6_TzF+8gL@03^fChQ|A zi|52^{y&R+vDoG5xLB_H89`hnPc(FUD7?T2;&3omB-BeHq=nGO%EmfdWT}Ev&xUHR zUuz)1&%a_0B@#_$`vZx&t*DW(NIwKMB{y|BZhEQ}4CV}=R3JM;&P1fK7VGO(qe%te z{>g9jY!FY8w{)m+Xk=Zeau@q>24yqF&M7cHf6a1FWITOF62YNshk$2%Moy z*%?Y=F$dN}w2~k%9e;oSgUvoMD2~ts<>S#SiRW#cZv|s*j0rjR(M^W~_SOGv`ayc& zL=MRK9D*QX_u}YbiWU6ju@&ge_E6?)r)egPT7XFbVGhcxAhL8gsN@Jo2Erq40Xam+ z7+%Ci9s9mW^mN`zJ9;a0cBS!QP%HF!R1iIGHd&0j&m-qykVHet+Feo^S65de?^33G zmB3k)&DcJ}+BUF@-`lz;&Bql&jMn0<8>L z(e)`q+nlQf?2GwWY(d$x-=}XE)V?pjwRdtK_mW-}@?d1O=`xL}_GyH3r;=-DInO-~eyQni0saYRC3s!+i!Y`pJnOyYa?yDoVe9%{1$}*erJYisl-@b$3LN~= zX%<_}ctk=Zu!4^VLsjv7O0C{?Fyvg?P)%G=K!D^upJPE2H@7hTyQ5D3&B z8mK1<67_qGBA>|-bjR&^s3^1lCXHZ_oio>^LY0idN(-R%Je-#i-ITc67x&I_I$3X$ zD_$TG0if%(+R;tN01k*m`4j^<wAg&# zUa;=-jm74qvf*Cdw>d;2V`GqVs=L0G zfJimz(-i-l^4i)OHWgL4o%fslO7pNX|CMfQyjF)lLCwu>&5oOto4(f=fSUtdYCrVbZ)M2h zH$RH>T8>6LRN^Gr_ts0k{oACQt0-+>01vr(GF9;Txq8&aW9U)s=6-~!_~Z*piUcr~ zD@gFAD58*RCI!_)j!r)h^qNYAn}KR`td`4h=v7|T5KL)lXya27nBY2_MW(v)Lhijj z&@liTp^9VR7JY%ZkC`OR3B`$8VMstAJ{~@6G?Y84H4t<2r&CPEmM}mCFie0MZOA0u z6$8DF-hYu0I9gZUx5~B6fQw4T6A%(YOEkjmS)%}dQl-4uDFhU6@ffz@`ujUEnwiLv zE_3s;6CNH~&yJthR4-mVv`4xE;;VnLa?Ub5D(AK}}CLInAaICE1|nO6#fgNxefHPe#Ga*o1~{@y^autnz3itKmxj>Rj! zF#fDeos_}SX2jMfHgxT@P`L81sjiXE%o^;dI!s?AgkteF6}HpNoz8M=jXspw=kK7n z-;T3hKqJqq6*Hu=!P0d68$2^FLPUxSmt({*0|AsD`*Vy`@Lhd8%{)pC8c$Z)*qAn2 zjCp_{{AO!$SH$^dZ%*ryne|2!2xZv)G%j*iI@)}54%?5HYDd~OV~Mchd!LVNn{7eU z?IRRzb*{3V262K7j>tYf?URtC2j>IfL;rknLBBR^{Rdww5dgI|@rz5K|Dkxtb>AzX z*-Gqx8=Tz6!EK@iO8`&a>nY5`5HmS-*~X9zn9=fNQyliOuJ;-4>F#u>d`3)eCfAWT ztseQoVGx1UuoGcpLo}V+8n+TuZfbDlHYWv?fJcr9cZY(w2q~YnnZebKQxw6!Q;|^R z_8Y}S$;NdI-}cT?RDf0uZpT>$EJmew-N0whljT4tg9*&tOs1r(x6|ECECT`x>hwA! z_YBTw8;XeeA-eyqKZokk-_)Uk)XTqFJ;Npq3$OR^3JQ^qYphDaC^z?eqq{G}g`wOxI_qWF&)7R$*vwTpm-{VFK=3nb=e3t(@ z9=iWJ9vo&-DNvO|oneJ+vrrLF#u;9WW<~EVYo`ex@Y^fLpH6qQFmy`RUfc3A z5ims=B{(_Hhz^t#fD+*QX-k8%zUBcYQw1$&tVX|0y7mFekPgk%g*cBd{4aTYS+&#s z$W4aPR2dPQxbi-)#f{b6Q?v4V=lxMt9gsXCf%DFH{O8a9jUJzR&l$?Ou3RLx63W%@ z6Uh=#ye#-$rFC(8%TxRE7W3Z`lgfVvqW6!g-pDOG_&?%$=zy04aR1xQga)iH49-8E zy{Qii#;0T)95An11f8bI;CpzD(eDznvaoV;ZNa+nH>A*9qj=Hoqrcg~Yw9sKgE3k~ z`fujL=AV<}p|Vwc)29D5nefOz^WZb17lq|zo%FHR?1fAUQGB^M8a0oYL6$+^w+1f_b#7;D?Ed%@VpSR%I^a&9=tQPGaZn3DMttn9UE{&h+ zlyTezGmm>w+`M7+WyfDRyMXt-dWNcqn=Yt7xs5*jXI^IliNwTfBgX;>`gV`iXg|6P zJE2qY;tz#krWl7uS`XL1C%#-29RAz=qXM-UpM0$sje#R{cd4UBr-5&{J)i%Ezs;Qx zGmLI~=@nzyV+V;FdWPt{of$sbA7G;=td7jigqhq#!!v3z7-QrY4p+J3%;jL|B z^QE&Vh%l&leQ^FPf`nzk56O~`)BmPciG4)7XJK6o*GQCJ zTo`-rU$Iy>>yguj5~+3d1_s7)VlnUP)xhtWu0GvSbwww46MYn~y%3+oWK)~l#4#GE zx$vk$9YsXyTvIX-YK2`Gn;D8cP}()XBd}>Z57)~jyeMDAp&&&bns49h`|!9&NUrD^ z0t}`gC#OgNd?Sb*BPD8N5JzFL)#n!!l&I+m27PO2pP|M_=}2(r;KOb7iPK79ZWIu~EA zw0bU`@Z^$onM&WtGXYtHImqbbPZ!oIpWX0tAN|gY#X$Yn?ug)Z-9pVt2xq{xzg-R& zCY$0P(tSJ(cKeLzT&mdN=8z#$k1l8v12d4i~8!Q&=vUI)qm&) zJO)%MC~S0<`4a`+2Iuqs*SUnQN;;>8A1<%T3nd!nm_$LnOvk9B$<+zs{cDl7s=zGK zv@&Kr^j{0WI;u+ElPH|v&cfmaAZfbVz{(P4>r&`bfc~IjiIhh!QsN+PtB1$v!(aUR z#+LA!l+erTfX}bL*>rq3DH4N)j(V<8kJ6lwKXEyK9}*0CCAyvx=1F{xL%lVoiuSD3 zH(Rar*6|b`ZHHpdvYyoYL-09G%d_E)@pBF8zju+5W@W>t-6ta1zauI4E<1YPl01G=MTk*e6F`!S0-;K z#1iVex@i1Oy?4)Ux7JAD6PMjz)9&kqfYASHR8~0E52h8Wx1QuZ5p%)i+jZIgYm7TR z!GDt7L#W+Mnp_L{r1zT%**3vn5?KGD-*A+N!S8#?jBk{(wO=l|ciE!T>ygwQx6qE0 z0hi)infdIsChUWbTsJl_Erf04!Tce2Gvp5o@AgH36I4n*H1m3B9SC%B8Mt9p@{~-HDx836m`_67XvGw?!yM(qs0XNOQ zUlz6ww2{~|-<{||u-Jw8MptW&`)^^VVv9p5M;>|7wm_94MwL6kUHba$gEN%6dBwSh%lSmZTlZ);qidy%nzp1K{^`tiFwf0*8k4&IP;`0OIYv#Fki6T=mL zX999~=-S@m%+S)Zn zopzxs+Yk&X32>As%;A9R20rpkN~JO|;2*ykh2bRtlB>6nkE^XZl(HJWzETQ#+~F3w z+Tm=S`_I@Cc!J+~IIIS(yXXrzAHhj#TyG!zg=ILFyB8Y#AM3e{N3Rf;w>Mv9R7aGg zT!u#hn=7}MTDh_xJylde$1P)Jd028%c|n%RWX|{jFQV{du?FJF&VE9cj>%Q?m{eGf z(LIh>0~04o+*BVCHv`rvmCde&Pbl6pv_Z*eNPXh|k81DgLoC0ZaK>qIOtfM9fu5*6koS?#|CsCI)!x#!74z?bQ`TF|6_? zP9u<-KtX>qLEz0+k*Q%f-fE-j9C%n#ya7ObvZI3wLqjGZ-YStx=E}RGP^y8Ad%ZdMWl6M)L;q`d&j{_UmX_KjDsNJj|;7sXkS0 zSbw^|s|qYXurnah@FuXwegCdzh?zj`&Y`y zJN<4MWZP~&ReMn>ATtzfY6rY`+EP|JQm^m9XM)hv2Rx8i*f$Opvt3_C84L1$p^R<_ zFqB?z2rxYo;z3)>>Tof9xiHfH<#`xJ){$XqZ2TBUetJp#^dM$Smg4eH z{d=nevRINL`mMYoBJ70tDBp2h<=hgrK6e#g!D@~mifAG3IXbhk?oCe5Q=^BC2pJmy z<_8v`cApgK7<$9Y@mWu`KP6i)IWEpzrPDeQ!3=fOpAyax3GBeOq?$!2oe--Kpazm@ z1YCn)tPCU#|LL+3H$Pvobt%z7~dkp{aJ|}EvBjIXhd(vjTp5GV?S;$96 z*Crt&6~o?v_mgd3Oo>K-I9C9HWSh#MzDR2R07rnS@A*ocac;4pSKT=E@Zu9Oo~-8J z(q_QWV-YAmJsY+slqb9AbCE^bz`d!eetY^0Bsdu_utkHxWTSR6B7QPe@nJrNSw{e2 zcikC}Ghai-377bP0=~Oue9XRd4pNz&~Q9cbQ4`Rcq*mLcJkdFno+IxK4omPf(acsjvuu z6gTUqLw2p6JI=6aG(LFUBNr)LmzHb%Av@&b+sdl*9}@6>DSZ7^QC)4izXjtXBvc+# zMEdyqC`ttxYvh!iNX9VwKsmt(H_%YE2;>q{epn28_y z!JvzA%b|-u`Ei$u>*}+6mQuFAAlbeS1oSGI(YHPv)M}?ddPmd2wtyYgkxGPN~{T3KZf0yh~@qw3MvoR;-k~TI?!Kr@yzBj~oHIEo^ueMWx=Tr#o!~)S)nf18`CXRJd8RU3W&&zBJ@wg^?BhvOLVD9Rsc)VF|!6=K0y7eR%?2}-%jFMMrh9sr!Y`YEZo&qwy1!^uS!8x zuN-{NDWs!M_?+sqcg4sGg%AYb9@_megifAu6`o7$yx-q@HAO>ID*g-W-SiVupFObK zuWnwdZ5OR~v>kEGME{!Y*9vuBS@&x}Pu9g)1p7OuSwcIse@B>4j`2p^hjJw|`aFru z$SEl+{=!CrX=d5RO5O!sB{Q8o@e|01pIcUYXxW5u%?-@3J#9*E4kz79mUDnCBRDDgY)UN!%bHJ^$;w12=T`5tWqdHmC##kE_6E!i@{gCAp$i*Ii zGapI-Ukn%+fa>4eOFS8>lWAOHfZx1LpGuq^dD1F1tLUkks&6i-$VxPOoC}g!PV??F z7OU-aD*#DL^Lb;9(bth$f^Ao>6=qJ}6)qQJ^QroWqYs`2x`OhRdM!bk4ZbSY8?Wzn z*8++#KQOVpb~byDe>#+{oaP^+zFng^?79105+#vR>>)C$kaiV~ws)12y{=Me&=I6r zAxUKo&hXlOHk%z){M-l7ul&j@Z!`NB?{F(eBe|CCO}g@HNswlNvZwV@?#G8C{Nl(z zG=B5lrJ79bjf?psWb=zLM8&?lp9;Tp{~y-gF+8trecxV5nxt{l#%5#Nwr$(CZL4i; zHMZ?ER%1P}?Yy(U|6XhD{r&xz=Xj7~jxom^qCX6H2>Dc69k<$1vdqbymgf;>#AJdBav~cFc#{?+Buu#$M9`^qSaqK*WsIuTjaqcNnG#5C078nSx19DG*gVVMR-dQ3izsA@-02 zO*ypGDQ_0x+A!-xGN?Z@dC-}fH06v(f-_0JnnqZUlP0A2TZMJ9y?5n}=0Kui`W92c zl=P0Y#`4JF3|9q2;V6qwjY!?u{U3s3X4FL zl2r(gGOZrZ^|y+v(~vVOw_{Q?yjlbzYqn9Mj}9~21~G+-zj)(SGguaCST&ZPj=2== zA30~LMTQCj#S$zO3lKKkk}QYs?d{(!AXkQX4hySwy2Ne3u_W|pI7!!dd1QXpTaRlg z#=yE1C{Rs|xDBrfx=kjxvV2Um>|_#(Y+uuLR-9{PQ0zNODVTtGi>EEbGTV^yZFhcL zrlI)#vrY zTC+lR#++FZXnjmhOCtmA?u!5Z{aex0v?%$<4@$saD5;>JV8{bJZROUZ7K5~lD_>B{}%kIs}!yBTHe(WZq# z`W0hBv3F3P5pb38rDT^paN68qFfFB;7tj1H-DHtTk6rmuvEfQ)stn&FoWy6b&_8;x zcNk;Fl9>wB-iz&n8C^I$OPW%c{*|Kj2}|`B%w<@v!yTgyDMKK%5bN#N#!xfeI`uc+ zz8M&S6w1Dhn9-j@AfBiiI#r~VNIIj<=gdvZMxzutqxM@#f}e99%~+1eYQ*Fn;hHb~ zL5|}l14Bg2)9rrc;IW9T+uR3X1h65a7gDe-GW{W;#8KMGh&$)W( zwI4a^|GHMq7LIjzdwo#;iRfpBy;ID!8f2McN(RzS#7tj|^4Hpp56*E;9GG{I2q z3@2Rp)HAiKnK!LvmzyBh6HMF)vda0Mjs{~9A^wYbVyb*=0!xB=-4i)8E9&JFna^eS+*K-GiF_rq zcBJ^DUWKhvi8F_|T(nTALsm|Hw*L(FW8^_JpOw467;RjFZhnB%BSF1q3oUH6rT&^J z`PMeIUbZ~R>Kk$p&&eu@aWTo3s(PZsdY9N65<&maP?TB{z)Bc?zchLwNmBrnmB}kV zoc|%QP+?S1hYmZ_baG_`#?NiPV(@S(g~41su|>7K1u4kV!X{G1C!_?OYzwbT7dUGp z!3mgG!Y&-?*IVc|hTl-9lI!JDzDO_w(l4TL>pPe^SiSFco{J z7uTD{3%YN{4Vc^~7DOSN}(Mo?2 zTG?}s0PF~lK~hE?6xob$p)76Fxb9l>8S;|hoXh|ydk)@rZ{+}sy|WMG%9O^%#ss7^5Y<(Ytf!JAr)%I_VvAcVTM(D? z{TfR?6uDDr0M7!~jZx!0%4W1-o8$f2D22oY^bYVxxm$ZnA6 zRiz3lywG%MZM{2zDM`@W+!TH}4uiyb(D({zObYoHH0~Qz3XLiFmMS+vNiyt$F-Ro^ zB~k2X>EKr9X;aNFYe)oVWOOW0ixc=mSqSCyUJEGE&rWUJY7~BORJ(_l+?F2F&YmpX znPa)ha>#C_QCyN`6}xrH{C>~E9aDGtYMYmpT`WPA-@Yd`Xdan~33s zb-wNVS*ZtOt2}kTrAiWE6O@C>XY-TxO}nbV5Xp$)aE#!=LTq%DpaP*-R(uaw7)cQV z?~F*qOLYy79zh#8iTn^=qC)v|H4khlxDsku=vLHtaxwN-xvb6k)-%H$`Y^|LO1J*||U2O(QHR5897mb2`*PnamdFxu1 zfLi5;_XT)#S7Kivjh`e866Gl z9;`Ny@!~P!7a=q790luP+KF-2!SV|aMgNu#H5Z~2^{aftPk8doVOKTXx$S*XX7MFps%aD ziSI44%Z#pfux}Bb?f%O}38+N~vT#P>O-uj9T$XpB4PS&(q4AVl`rU_}QY+Zt^=CH2 z&1;r>$A-H#C-(Ic*n1f0aK&dsSPR=^~J;ypX_9WrT2`W zMp6pp>r$wkDdEV4CiI{0b|C$Z{PZLrGgRaw#KphXUPbZx#js*?+GKqMry6tbUSNM` z9igwi(TR+#9(Ey+xN<=GJv`RM)SS-|qN}BU(GzC20CyJvOvWiQ{l0!AdgmieZMm5~ zrV`}V+vB)|onrmNA07`sZAsNZ7Fpu{lss3=h;qr-g#>uw zQZSdAZ|M_dkd+@bDRz@`I$yACpsw)gJ4xnS1?6tj0!}iZZ{O1vRSt3|Cqr~9)EFEF zKU3>AV*se6R-RwkOxR5CKf)f9!tz=e)S^OsD4en1uvIH{LLDG<(nir7}gQ-E@ueo>@z<7F&^&=Fo6mD5K&%4L& zX>K%U-8+j)T}i@X6}ds1h+2+14@K--eZ3@~&LQT-yQMLm&<%Crx-%GR?V2i;=5;(* z84zjcTRCfx&hlF%B1PdusHJin8viw9fASE~R+KM>xN}i6`v3}J-A;q?l(ZqX$XT>F zpY;Wi%5DD6QGCNw(HwTOiCy)Lxjy?UkX8|sDu!edkkyMS<_ zw|@A5BU3BlC!3^WSc-B+b( z57gF>7tml&5Sc!V^ud1h^)*+~ycHEOgG@f6KG9@=@T=s}i|&q-wut*&se7S%kWkDM z;3KvZ12-=5vC9$jlEI?7TCuxH5tCb6F)$E?HP*g5SljMU9_IQ#Ic3~D*FjJzl zTG+z&tf1Cv_e7UG^m56Xdi5O|b84r%N4MO!`yuxmzhfC^+xbr>uN^r}?k_LnP@dX+ z&7Z?&D4b72LaRDs;-KNXiy?SBm=JLM-|)L)zV_%&9VHL*Rik&_RQA4eo>$}uDenP-F|~aP*ThNnO#W~iG;*_69*%DbiO=SGv)}g z_y>!8o#v-i++R+iR9gp1U^=`%f+3|$jnpSY?dQwmy*y}GGb5QQjdH5%MZa_ETnxlT z(VyQdn4g_Psi=Zi;%djt!VIQlkz(UJ`_|EErpb1%>iG^Oe6VtNA66^lk7hwKW3}yn zV=8s`cwioXDC6T~EsvT3)3t9@>5I%7o_6wo_FLoTwen(rh7xG?#Z92#aOA3P-!D+a z>g1e9JiDls>MpFt7H<=4EneLf4<4dCU-9Z>*Y42SQcw)3BeNsg(Y=qN1xuqFAmUlW z27$vPX(Z#VUns8--S-M;cj_g5<#1SPGay8?JTmO3tGk#NTbuqVO8?@cZD3^t)3DtW zkrV0l9j}2~E>O_~`uztk!_~dWx5r=5CDBUiHe6s_z^yD^=*x z7$#w71A!r0$XS)46=pupcE%5n&-sd+P`MIc=nhm=!#Qfe>fSjNH*v0s5x4da%RiCv zc)!GX+8* ztJW0>_)e%%MengfxglBRy93)-6~+qZZ!AZ-qAGNcL`U|Hk5vy&$Ay9djx>fuy`Qp+ z(&#F2DZAzneI+54*^u=2R$0O+iE@6Rc%Y{B!V{-Rwo)6T$BJn_<|*{GUQAo&svX6D z7g*E@z9Wl5hone>O?KSlGf}h?oFr!xy4FNS zP^+&TGYm7Yu|sL_M8jHqb|?1O9&YP9o$Xa!e3m5J+ zH%LBFBW~FS3lQ9n9$D2hw_5qOA~4f17Q-{#NeKl1*go!XTI@)Od8NV<+LCIvMA1yL zyR}kq=-)`y*tPhy3r2M-y47N|FMU|uDu`An#=~gX-g{451rZpPA z#QS0}8j^HkvO($jUQ(>T8&fZ2#|17-;IHvvhI``0VWucG=S*Xt=Y%HVMMm3OXI-+a zKO3VAdNZNvA-ya6@_jbrvCPX=3<-n#RkC?-0_K2wVv+s7rqlfh6FwMyy$x~`Vcd7YAq>JV(mP|Q69gzTEol> z6*mYsaHeeODT_ko=NvW2S4Q*Hw`i`ec7QF$^jKDj;&1o4f^w9NiEoA-qu=V0p5h+B zjdoixp9jni7Tf4d&yY~}%kF*#u<7|Bm}sL8%WwyAY`_nC;Uo3$8x0zsELG8;yy9W7 znqcNRA|y@*%3PYU=r>are{ZMbMR}8F88WD)Q(LEy2XzukD+L znf{=Skxv$E zyhM3-9Gx+miII=( zOe3^+?9?2)<7ig5a#RWAvSBKebE;TN=$tBJ10^7X);S{_p^N(#6vJSCX-`-END}{5 z%R>SU(MU$LjqH?IZY`NJHk^I2((GHJyMSLAYgrJgGcZC7?XcPHi^J`VQ9Pj|C~Qc3 zvZjq-fz==CYQAm<{?&H|AwYLxIEFjw*YR6VqKH(r<*lrC^hj`~9Zx&glNtP(awET- z8t!fHuMq)RUEhQr+74A(Dw@e(L4(%Hym6K~42}nFA6=Wmh={?(nkss)3dd?3?vY7S zPa-a}Z~dioS!;J~t{XU!2^goXq@TxWoTW)67tG^mZ6t#fIfrz)!d0Tsj2`cZKeD)f zEWRGewQ;)IwfS}T6n)GOS_6NDZU`+-BAp?gFg!d@qIX@r|JKC>C9{s0 zRdv+{?;Zsf$@U4y5>r<3_Q&vz)LF6kgT5itdU1ondi&ev;!xJFmiZfLdO0>4SUAc^ zHlm+tao2-?^Z7;95(nN1g$!Bsfh1JktTg!gha4(=tD<|_2?=^D-gYox03AD_?jV_l$T z9Dg+>#Qj_(qD#9|nad}I;hgr}eJ&dQk~GOBx6WF%$xEYMz7_Pxs){wy+<58c{bC8n zT%rbji_I(;mX&RI_r}its1nj-p)C;tN!js&9O`$4#qA`!d7ogHXA;C|K2?p(*~J8& zo>Xr5jeAlpJ2aY`X5ckSWX59mnS2prm_?yCzenrgGCiQgIx{?`3rS>uFGjwr(%V-? zSM>d|&VH@zYpCoSa)+fSb`wMOjde7g-w%H^N^%Elklew_Bk5dHla;(4?IJe*&V7ek zJn_gzLMop5+bGw8x>QWH`x<&~44)@vq0SebWV%Id# zJUW&#va~K*ELN*H!YLo zv7hnYJz(6urONS;fG*fSbl@e#UsPgd|5PPF>}Sb$DPr! zb$TAx?I=*9-higrcoe<(j4(LNTd`%beyn2w@&1Emszn9&!K=A@y$=qI6hfg>)X4eZ z5>GT1!@qI99S-y%Eglm;K)L~45_(a1=cz${rgRhQ_lSac2r+nIS)T4|Xvu+rB#b^- zRV2bxnFRgnX@$Z0UL357<<9(ln344R1i3|e+<}%vHH8w?{4twIg=6QSGyLb;&pYv@ z^+NpiCUaJEC?;!XI7$}B0Y?Z}1XI6YRS_LAM^*SczE(^Z*_t%3P{wDY#WZ_Ee@HD2 z4E=SSQy=zQK7FztQTd```SY)`=ibp7G~0Esk7ct^_=wm6x-p|fY?PmW-_eq*H9#G) zk?+$b`xdZcYhVzVQHV#HvSZ5MDdx$6C!w4v_{?ERyB z&}vZ@F77C!5<5W(JWI0|^xZRHsMv1(V+d5eeZOF6ZF$L68o|q$t%I6)aUwfyD7Rdl z6v?*~8+mn)r{D{{bv93qVEEo=$h9iKbk8n%p>7UiuS^%EP0oWtZI*KtQvPagZSC%x zMIx0-5xV7!neG(hi^h0i_yL7cnKUzqP#7rHvoeo~r@KzBPzw)U&LaH0xY1XF3^Cmr z8Fsl9LYe_`#g`uy`+0nZ?LQNMs_3`BG-qfsO(^PY2 zoajLE;r+b*CAXd~CQWlu4CdL3FGap3MJUILb0#^<@pVpUY#DXS(4<)u78`%gZXQ0R z9Y;U6F*r((z>?V)0YVH>sGMJ_Uu>YaRvMzd(#Z_lNA|O!lFP-<8AV<-IfipY9>&C- zgvx8-eAO8F^|4BQKGO~;iRpxDat-ttE474siwruYwq(&d*;9qOWU4t!D)!b97rjQt zqsEg!0mpQoauLXH6|`rCiVa%%A{_+mdOR}ewg;Zw#$WKn=`Duf*d2|-z4|{d#=^LJq z?GyYJlo5GSSK&$%g@((OYnsDF4dQf798;-PCS^Wcg@af>A@FO$kR6|BBl^K=^%tKP zB#NckLrP`%SDj~rIkGkR1x{SHZT~WtqkL6Vztt9E)GHr(?AySX-1z$Hdx|h98O>ae z7{B;}8^&}?KsW!g_-`B0^NK9Yit4oO#6 zSHARYjUocD!sk<5O&i6BVJ)Oex~DaU$*8FHm%^7*kdWSdw=^cTOh_pRQ?xn|D^32H zBT>h18i@8-iY9+()9(#8BC0EwxNnss*Oa=*bTcI-Pp*%70>9yiD6d71OpPD+&kpL( z8Q3c|Qo2TQObEfujjG_8i%6rezmPj85bHv9rF*T6`l`;K(zar{+S#onIkmdZIUr~h zec2lIDCHoatdnN<5zSt{tw;16ifaU$X0$zwf3Yllrj(uovbj>NyKfB2F0HmVUh=M* zoRaJ>qm%ER2mkgpWRV~7*m{Egyl{7e`rUBASc;XN3wL-90xY%L-i)9c>~9xlK0sDkId;M&kX-wDq|7;8K^|42Y163Zez8!vXOhl@r70z3Xfx zC`0~Rv}fX^1VrsFioUdQ6aK=$R9|%F+IRn<|_(a}DQ{lU{U;;#XzX6+QX=wW;Xb(iZbK zA6Al8Lzr0qL1F&igpfs{8i?eOY;t5ozi9f<9(6gEMS^Ru12NaQow4(;Y+^@=r2(I0>Qxa7*Cy6uIgQw#akg?jl*uCKC-Y`eq=+xy0pshRtNn|WAr zETk|9Vos9as+)+K?B8~haY-y?6VohCn_twHipQRm#@GQ6U5+YvW zH@A3ekGV`$%z$H7Yt9nUl-69 zVWz&~4c*N;*xyjYkd>>S=(a(M$z}J%pg?;2@EDN7=8LV)_bs)a{xzZ78B0<@L%kh4 zyzhip69FSGxzJbMj&B_wa{cUTIGOv!@pbIhbO!++or*s#R%$4gfSChM?H-@s+m?}5 zM<&dRLJq@{1-~iwOrXA%nfny)UgBRQ@OIw%PLbM?h%8_<4(jOONghS7&n7kk769F0 zJ5`wp8g2HJSbt!jx1tuNR7@vG#hFm9e|{8_SSXdNOkuaX#vV$%n5b{?Jzxi$ZCks2 zNjo*{7@Bp*Ir>FREGc@{E6w2O$?D?jGORcW)o{|bk1wouOSKkWlJmI6?^sehdVAjLlOlACbZf_-`U3oZ`wiwqlB z8^nOe=O{Vj9O=WEi>And(3F)= zSt=RpNB-${7E7fw@!yh>Y<6L+S3MBFUwO-nbNtkLV`~i6%umiHJ3&=g;(W&s)_BU1 z#`H7RTZ?t^vK`%rB+*?D9>A6p0x4k?LYyGuC%|i=)48)R^-QlplS(%CNG1jMm7@=X z=6k!8DU$7H4BpEg**_;DlGi$1WrwKO9aB?Fe&}9Pd24^e&xrj}{Ly%$yYaR-!8H8% zpE3Zj00GW!L8#%n$}Hh zq3JQ;k`1WTc4?|$a1AWfrEc|tzIFyN-A4%1&9*WhS_(IZYpm?yE5kJB%W_Tou*mbr z`wz`EwuPxhBOB5T3 z0?U+x<1(=Wu@?k6^vE8gRe;B>!Qp1mDC*iLC(;j?pW_p}aV35b%+Vyp;;sP_!JTX8yRg)VrC*#TOAmaQizeGlv^7dQ^;o7U=iUtADGit zi*DxFKHV;W@W^eItHQ#k-R6xIAu+=4a6sane%D+6>p0){mDRmM2DKSVSrn2F=^>>& zwsn4tAKMW&tV+Usrj;0L6l61VXTnTfKA2M16i=F_V6X$;>TB~M)iU4- zPmiS-oSCx9NxGTBa*D?mcPyPFSE|IhQnV%HAVq>vqa!MIrg_*EA!MY24O1QOL3#A{ zP4C1)cAhWbiqJk2D;^0N97UsbZImBPv2VlLy_alC{P>AOmV{)Wm>9IIK>c#f_Q>94 zFj0wJt)NNFbWUU&%n95jW;K{K@=BSOIrE3Pvsj+B#YLq27RSJIPHCWQYsVt4J%ibJ zpCYHRCN!)m&EY$&ij}g+#BG%LBAMZ2fbyK3Hfl)X;6Kml6Apc=(*Af++ixp%ANIP= z$cjXGUaGqve6wDBW!?1ZDXpR_stsokN&8KX;*<0U><6+K%TAZzE8O{!iMvD#t!kbW zIge7SMFAw?f$9LV6>YK6WCe9i#zOw>wTpM=8-9m7*wxQ#cFaRqwO=wgd=B74abbOh z8Eizcxcs%Ts>5Q#sgKR(vuIVUH(%2KTBvSN;5RXVUAIg~mkMy$5&KRtgiZ}y9KQOK zR|?TstPllav8}P`zDvzleiV!q#`CYT!7JT5k%^N56FZ#Nl1~J0Cxj#iK*v^nNTDLM zNWy)LhyS{N;CUlh0D0lewy8G;t?qoD=vv|xs$#F;R+Ji)Ux324x9IjYT_->KqbN=6 zK{hm>CM`WAzQ%uIGw>tL)ii)PO!aH3Nmg`S~_=HP$!%#&YI6ayTA zgp=zgfy~dLrHN@Qme?DMDaFgatQYlkx@Nqp@sa^;+rlS@dC*^i7KXyJw&$F@t6#Ec zds3}5)a^NeM5YMuCN5-%g@K%=_VwZ`D{;rIm(M5fJwOT((r+(tOpsQN-Z}5VY*^9y z!LzPfvN(IB(KNs9FfVnRWe}SuYiN`Mb~iTf8E3FgJ0WkO-g?*$GRzeE?dgs@c#4$f zR)4_GFq+Qb?MI}pi13f2t3F~U5&7Y+m7(kS?OxB^>%QkU%9C6%nTyQiDy8s_LP$H} zC0k^Sr4*OpQH9>C{GDGBzK1CNP&!%S{3|ACzPa9uhgNf5jK}Wrid|WFZRYz@(;EqV z=EUts9w$r~4UcUl1IhVJ-z5jJG{b=!=DFi399~xcyUM>fay?)lR4Tw%4qlgBX1}d) zUw@U|hzwa^{M7SyxKwwH0`GHEXa7q1+AjQz7UP}{6+Vdo6&fu8lT<*{^K=cqFO9ho*N7!P+7Uv^VmIhF|nU>l`K zKGoRXalo-&A5F7faT*xHBdO0Xq;^wz811%e@peo~Umt<(sqD~y+t1BRVFE`7?fdcO zU7SVL)cajtD7z)wx4q&2J zIm`u(8bs$rWwkhGI4M;u!OA+iud4&Q%h=~zELHysK^QYPo>*HR@Fp}Kg`q`7UVN&D zlzXB6q5<`e{ZDtN%dz&yjwPrk&{ifrfB7w4A}o1aki_Dz(`Dc5YEMCJ#n_(8|DM#y zFw(v8z=3HJ><~rGjqM5)VhdPCpzIMS^bZN5qx>ywxL(`9?x>ICiWeJdCU25_>l&hG zp;wTh5f@^$>xjc1OtODeLYlUM471ec1A&`&9Lyyh#nD0qnB zTs@(=8`|J4%VW!xnZ(cX)O+HEv;(MVL4(}TLdo^C*qJW!0XYua^A*AMrUz>Ri)+yJ zbkt`|C=42J{YRv5)y}P5z8}sa7I}_kzvQ$kiCdm_jY@an?AYZl*PFk^X3}jmE4wB3 zf~%?yUXwcd?Cy=-5-uhbw(AKkqdc0X9V?fo9WQC>s{Q=B$bc(csYPYgPy=7Y+4zYM zn=yi;5&S))fq%cLt^0lYEtT=_k*5p(n+risZ|zz5S31S;9td-i`L%Z6YUfLP)P}BXiz&mJ0Rhrp5M2< z-+hlrnz4yRqk~ga0(P6@Kv$qKBL4LzJH3aeABqpW9@B?d@Y?86KZXL94TbKh7YGl3E3VGi3 z4hDdxfk?Q?m;&zvUeF3_Rtd-~NOz2Ax~r3lRcE9>eLj=kLyxG_`i!v24X!@(OJr%L zx3FgJc6e-TZ?j#e01&iiZF8D4ZMmtJ7u<{oFp#`9JEW1!(Wt-0xvd}4;K8oSDJmwK zKi_^|NkOH?R^-y-yA z!pbUbE>JsCDV0zotgNV`!^VE;V|9ZZiU^$8nRr5xE;7oS{e?X1kB7N&y42(XjuXIO<&kCEt&YAqfdGe$Q}-w6j*QhMbwR^>;7t)ns07LTeB5YL4SGv#b32|GY6ws%;ek3cjWQLjEAGH zsTukDCnS7BX&Z>vs3nl)lVHO1`Ui}|>C;yBQ@fr(NcJ1}s>}EMJi}i=it``&Ba6)eQ?tE} zTCyPH+wXaFL{-Wuqn2d(^fbC1Vs&M?dHD#j#CfYMzn~zdALIaAwierJY|hFfG67-1&s}oLO~`KG3;ZUdks~A2QZmnJ6m)F(?1)z_t5D({I!6fw6sGvIJI@Vgi)6OdK7O4O zdQS(03*S}t40Z>>aVa@Dbe{TBw%Wt%qxo`Vd^-%Q*vdX2OF@Ld7ogELyI&IRO=iad zj3rnqwaQP|QHcO}p2NvBiW8sD7bh<-FItKKFA!MhggcA!89Zi4fSAOw=6-+hk@~f` zBr;-Z=9^M&B&RurOI3LURJR%oJeZ&-f6 zG9qs3^UevE7mxf@BW``4F2zW`evNztLX8G>A3dp)jvYpm^%4>jiT1L&ywEmc@#&VC z8mwIX0F>ZlmKJ3DYAFwv%Kgx+&)vWB&yWaTGXByMDiB{0nv?>onXqsddvDpM5A3Lu z?LBLCHp%(3Qc^;?-m^kD>df*1i=_En3GyG}5fI=Mo zb~N8~Mo6=X47B6bb_WPRjy9hyq5&UE?Hf&@LPo|UOjY>gJ9Kwyex<0yfV)y`41tew!~!~iWW6c~Yp_4udz!3JXu)H@kNN}b*w#wKQjEG!})3e3j81z0Us zj^55H&Vlkm;6yZ0Mj7n^LUc>zMEGf?UfWkZae2!xf)+}$8SJ#{N^37SvvTA*t;|1I ztYY)UVhzvNc?`do4l#AixP0SwNMxtgiK9#@4?hJ^cH|4WMnKUePiDpS;{JXJK*b>A z(Vog%ZnUPXOIImW>_X|`S z;+`XXn!bkp-#C~ho|fO5n-xbB+qb&Q&>Z0bh}q0X9LLA|VX>K;vQW|M6Y zK!YS8BZGzwA*>e(P=ej0Oona0Uw<~ADS+V|Sz)$Z6^6%=7)_-L+oRDUpr`)?a3oQC z?w7u)8=IN!JY4RWuT>F35!txln5nLfk7gDY&|+g_uec!pq|(B(yKlK{GL?;j>19-8m7 zK#-#CWb)9*_h1$7?UE;|247#;eOea0BHd^{Q4X?<_%~aH5`0hE6|0;n#Iu-rqxOXYHdkK0%Z1l+{LN+)#O+}bzaSPO2xk$Z-h)6gV*{|*Bu1@{3G60?c%Ln;MQ zi#Jp#rd)VT2smHkz39Han6nl}1VpX|k+?4}tJ;SlDi4jV^F{A1!)s$tNu`Ty&jlrY zR$5-f!m;Fl^7M2E3VD%AdUuOpEoIHD2#bj28V=|q=M=SG zUbivXTO_p9$}Hxa#(;NpQmGXkC(y3X`tJYAq?*}#x!Exm78Q-Gft;P0(KoUp#xwr5 z^!qnv)lgJS;2gyWb9@;~qEg~O&_~Jdf~E4l@2_r`^g+v9YuLd@DS-z!$6*_O*_Ps9 z%$LvyE}qSpRm3`9MnQ7qDTt7BY89Fh4m+Ja?jCv2Vx7LEx)1C3|I5o-ViFS&gdJD> zYXt|S;A)?vI~jVx3_1SmT24vM$O;>q;d@;}9jbu7Q}Sr<%#7fNuK?Z>LW0iVDVpzc z@n@Gpn``DuOA7^VxW}6rEc@QxZY2MCl4+r${?(Z7f$}sM{>zsjry7q3Lo4pl7A+tZ zCw4)OR$I(Mvc#>XuCA`+ynb$OrAJxNMZ!g}$4qifz(qXBlarl22Ow(`L5^PT3~e4C z!^z1Z?Wl%^VIvV$ifQ*8CnO3k3ekAJD^1vNPDJw|Eap3cMu*2H+i+1PnD-99&T;Y3 zrKMt;wdauUdwuU_bky;TbX_Y`p=xtm~()DC>)IU0N^Q=ehSSx zdpv;_DXv^9s8iGNn30!@i_^$DU#`kmjwdr7(OcclC%~?r|A*Y=wO4}9Sh$(vy;2rsdplS>C0WNLAXEoPHpZa@&B9PBR$byRd*-SkkZFG$ z8?;Knxdf6P6Lwx5z6IteFZ`~1M=Rx6ZaOE}1Db+AcN{d?tWfeQ<#@k7xqPHwAcgF+ z(5yAC8K#r%Xgsw(t+ww0_vlRbrlB72l}Uwg|10k7_CO4Z#Ys)M| zY1}$&utzg2#PxVOUajjW+(mdZz@q|n%zRA-n~mt}SFF)uXP%Fsg<`{l=&GX0xW1P~ zWFS?tZvuB^x^T=Y?*uiFQvbeE2O#8rQgQ0_m`If zUB39+0M=6Y-gb>1aFI`yUQ+?loB<#G-42$(x?ZlB)(?IQ?UEKJQ_h{IPV59BJw;^f zR&~y3;1ClK{3U=&$)9+3v+FZMF3tcgg*UgZE1@!)k?5LOa-gJ_$*qsvADtOOcMhu)Tk; zLZEj1q%TZD3gm_dd8%7Bkmlv*(c59+yD$T=?;2 z&+~cI4XbiCih42N?OG~+`m?_}S#438+c{oqBV=aYb2%kYYd zKX*m-ZDHT{;H7l+MiR(?xi80ex^J@$-8m3J@>1eiKh83A+xhQscqLW#7sDs%s=XwN z9MP&tD}Qccy|{Zo+}6P4^48v%XTLwp`Rg%pAnI~3-45+w;3ZFTbirUb!B{(PGDy(H z?L$UoM?=VG{E=JD*~Mk{G#&($hc|r{W@b(pURks$)Jr2UPydAY(k}s5U2RXjD_e(r z^7@l_|NUJ3my@U){1*qvlou-tLe2{=*+~t1pBER9Hi)2E3w3ham*`r@xp^9OCWWnA z(L}!TrlyA!N(QKcP860wvRGg4cBgUOSvk?gb{nO6hR#E1m0thSQr?F~dv9XrpZL2d z%5azb_u$?TeHhLr#cHN!VNroEkZAc1l(i*xJ~00~4^CQy1svq$T8uX!i=|K}|sBut%u`zip@Ku+LqUZQ8m+g-V8IjWMbE?#?kdyZmhKdT)0 zsao-@K(0K-K2Wyy`ya0LzgIR(#h;sj0hxk=LY|VN1@JC({UI54Y%*iTJfxA#cFh$O z7WRycNVNa`yLaB?|EY%`YCsOd-~v9?w`1TsF2O}-J>YY@e>z=h3M(umRjtxRKu1Ss zwpti(9=w*L^Me3c-c~D8`;^a83d}o71rmj9^kih`B8B6YK>uZJr7BhD>PAouCZQ#B?%;F@=pi7h$LoK z4NYI*keD3DkZ|C;@88ztAwzjlrbh^<`x5xR4g_28kW=MDE8*zj}q1_V`6U_@zL5dja8sy!W z3`;wCjlzd2yYCEl>VG0DT~$SD{VG!xD?F0FWk%#DG)6_Olv4PG93XT5qsly7NSNB0qMKC@g+Of z1fOxh#7li=V6U}+QN=|P(7a*6;r9Kafz$41yZbd{vlnDFJcVKQp9)Ww)gQc^*WePI zKlpAyK)|1DZQ$t}TqKj;yRw3Py+4T_;N<4!w)2Ay3Rc{vBQ-*l)CPIe+9KoGz0xi- zoG14l$AM6d9m?aI97Uq1HXb2 zHefbeEu2MO{BU~cjAh8^V*W{=`0A%OkX~+P=y>VIruU(>tmaiT)tz9zHKW783@JG- z>D@c*JJsFJ=3585^9wvq&{5y9gI&%EyS3&um#g-8z$nwFEW$B*`(=dsll704@5@zW zjP}kG+}0d4ge9SLXRXhQcKY)(A>obX;f%J9K~hLPp{Q`x)~BqOJRMd;4kTLcdD0SU z;dV#k=}YzQG>NAW3ca_O%u{64Z*z<<4O=*)3zi?;tahaH+k@ej8uu7+C{qL%NyV)D&IY$|=$I*w4YZT~5KS==rYt-Q12`@I)~!cgasF@Nv{MD{B{Vd&gQc2$ zci;^a^P_F&olzFEMO(n6A8gQtPe$u|xvkmV=x?tIHI(uGq-!~Y0fb2j^!ZbtbY@s< zZ&{4=pG6o|zZn)?IwAk0+D@{lo2F@&uis4|2ds#J4Nr$L`hK2& zCvNQ-d3f{?wh8|+z0+7290gtNwrC-5h;YE@aMmxd%5Txa!y=lrOzL2|g)zR2PPpKs zK%s28q+Xh>X_?>NpQO(Hrlvi@;H|op+%KjlC-na@_0~~sb=~&xQz%f}-AZxS;L_sm zuEpKmi#rr3ZUu@v!L_)%Yj6)v(7?xY-}}A4`&Tl?IpgH)y|VY7Yc82@ZIj`IZ%O13 zs-6MKFs0LWlka_^YLq-~RcD_V<)|g?qWi9fNyhyqFi2=`L1lw)n*O!7oDWbSCU0d; zTrn%)+b)fQ@&q$xd-dj_KtcNToT$^Q3ruDpFA`J_uFws5e|d=Bsk}pPFt#Hzl(8RC zYy0NNn`4%3P6Juj9DlU`0*N3P%kzOHMg#p&QzpFP`gk(oDI(B~A7e%8 z?nbHiHftt1Crx(Jsat+M{s}}%46fSk?p@4EScKEJ&JSM@IO#=yG$dYh55 z{Ocra(1n!CMirGXCb0K1B`wzWe>v$~-1mbE5?qkG_wI#@wYu#8OiPRS{rfWtF*nN9 z)zu&%_g&^?bVhb~aax_XD(GWQ2MlVh*VO)i%nPIW_g(bvFBGMWPj`N}6PW<)&eN=J z0DOqiHCOdVtGOf$Qo^9&NGmGKb;RZjBu^#Y8x+Js}owA(=@#N&_SU*yiS(A76 zC~EnEiJd$N&w3=W#p{fYMZYyHJ(Oy1EX&Gu_Gi(|XHH?5x)JN?UNl4MvA(|Z$t4F( zRg!`)d#+J(qPaSl)C&9sd#2(Nk`yeI_nX%0;~}ig%~9g=qZ`&tT-V-ey1CNcd1Wi% z`$^pBGF+^(n>3T!WUcV^YCF#0GxqFOKiC=PsNqCL39vd0wVW4$k0;WjbZlJGJ#Ai~ zAJTbfBGukIOC`WVu5%qw>gOy|=A|lDt7@RE$G|TU{*k${=((}cq=CAq2)DA533Y+7 zrn=Ty>`_-?4>FH3u?G3;YtKk&w)>%fy^)c*UJdwrWJ*$B97UA_f}1Gci(0hE-jOh-z#pyjoA*r)#}f^=GbSlcZs^argBv$+$`J zQ88J+KUO8|*LP#A7WM_dCmv+{C@@s<8eu`1KUZwuc0`UM!S*21b-|D zF31${dc~@D&aRSMTo_?SGFqn@tF{aZaQsNe1B4PCc>`xG<|begli;n(t~*P|BusD` z>*)UM3uXLc;xG61IsB)M)k&`! zMRu5%CoiVgYc0A}zi3Y*U&4tj0IvPvzOd=#H?Y9Q&|L;%_$lp@w@a$dqr12C)MPlf z2(mM~`YZ1v@aoHn3kE(ZE65aUwvRIL3up`vVn_$RKs;RoA?Q*`%{4}U?RbIak0f=+ zh*SRjnU@$x0&M%mwIV$+%KayPW(=ft?d%Fv!z9O!nkVUFcVDrNEV3n`Za&s$ulU5U z%wHs0<0?2Ul1gM|@f=9~6UF|vNbR4K;H|M{fP>w|+|6ZV;#Uc#>=Mgu4hDs&!Zn5Q~6 zj7&YHXW%AV;a?CM5>=*S{%&80_Xbm4+YlmEB)Q|LF=tU@a%&mqD^ zs5P5a!Tnmb`L?cr{2t>zoNh*9{_0f)kOF^AcDWk&r!aWPZ3|n%TnF~OPY8m*AERzgo)9HuJ@IDNAP6QJWMt{5w_>*Xv9A;abg83 zkp3_|@hH7;4BG`74ISzM-!p$u-w)iulU4-dr8fHD%H&#$S9vB-AmVm@niD4r?*8e5 z*z)@8gRvZn3HsDfJR7n)vZ{$sUS8r#E#WBN2gEeU&IP&U_l05w?ZB;14)lJ?jSc9P z0O#e`rKtyx9v_mm<_~fXEroi0UrUh$C&!1XcBP!vjEJgEpT+Y0P{%A@qx0|_`|F_X zwZ~f$ypJC#{;nCabcXgLBe312UDWxk1)OcxVjSY^&-@N1$5N{N`wKD97}_JW+_3kV z>2y)TTMIRw1xk#}L(*6E)3yaGF%oNmNVM)*?RLdDjO=byG!Z{yj`6i0-Bruv9s*u= zy5udOVpV6_N43?!gG^?IB37_`29J`x#}QD7c`kmi)KW8eiv*N^L|Ro?Pm3(FoZW*Y zySG=_C9Yxl3uC5)D7P|`qE2Cg-(|_bZ5eQ^2q{)d_sL$zpIHW03M_7joTe>zXGg@O z-AcpLg7pVn=x^{QNzlYvn-sPjHs`t0*zcf-%gIR@@?;!8E_a4LV5X}_(B%dZ6BMwK*~UR|3nH$XAwaWg3*XZxgecsu>zi{%YNtE3>` zjjXT~tDZmjGU*m*==gqSB&j%57-*0nuJs(U$^JAV_PuD-N#$^N@D=XCe3i>?+2@~U z^s^rlcUsC_%1dt@!<5Se<)Rfn?puErKc9?CzOb3oEIO=)ze@sb&sWKRgij5L>GT6x z&pG=o=*#B-kh46<`n&8I6E#{9%2)co4;cjx-}lMdZPX)2Oi>s3FgwN6+4M48FDaTqk(Fg|a?+PvD`G3*)m=?VFt*7= zLDnl?V(S=q-?F9?dHjtdo^|j7GwA5e1Gxp)%I4ZLk=-UU0Lo>d2t^y?IUlSBpE^CL zQf12_6ovu;ZkWDokfEy%xYTREInHg7lp9pM(>$(cxu)#+w z&Uk1%dRmTD$g2DHFBdG47hWU;){Xw4D%-@P6)fC^#APmXBnwufkgDhVZ7Xg5UBbPruh6>v*%ugE9ysHHbFw!*T3FAG4GO3N8A= zFYDOPdZ;+BKQ`I7MnXcu|9T$Ukhp&m?Ns#?NuM6f?GNq_7z$`T7iBdPw<||KSxRKP z-*sNb!Hz3LUZhahz)MkIyL>$ncdI1)G~>sWcDdHBmZ)8b$-r;zb!P4!H){_Hsi>4yH(A9vSaVmWnrcldVFKdWyD6HNQ}r zh#b6J65~~Ym_P`Yn1uL2W}UPri#0L5geKR?)!*MXan!-H7*98h&R;?QY?S-Pm@}Mm zkr+A?;u_k1w0(4(xEE0xYMap8zc|{J_9%_=DT>M3eD{TyW8(jlCO!bFjIAq~92JdX zFkCDJTgK^Hs3{oPszd67lN+&c*Q=EKhRXlC=yr!E0J81LUNmsAJ+OrXaxY!!`5)+u zjCx-9IDgJ|h`eU&~~_adao6|CU{*&lB{d{T!cl8LI|sh;L|9HlVO zF*E&^;}2`JjsFdqE=%VN{E({n_>WF|s>#iOx|!idEH%QI>3PRW`r|#!%XB`Hx`jVE za?%vx%JSPO4{xMmy42cuW=L7*yf*I+t^S`|JbFvE{SxY0uRE#n%sZY}LqP;b9%clq zJLPt*!BPoV_UD?F2is5~3up`Ov6EzS7v-gO+Gnn}JuP`s9vr|%kY6VjLzwDoVSdj< zl^mOA37J^HJJ4DhsCR7p;=EvICzMP_K8=M}uC5<5`3;IbWO@)x{ZOEW5kGDe)n{@l)WyZPJEgLqv30}>Yu5{@@hncg>>FF3lxp+A^&HXm z&$I#Tpep)<^C|JpsqCHxMDkffQkqs>sTc&qJ>UF3S3Jc(?NWj<+_YlL?tb?p1n}Zb zyHz?jUhgfvvT=>gMBe~5uVE-l{(w~M&3ksGY{!#WKKYiWY#DOqFB%J&#-6(EIErZv zTNC8P?7rJLtAEZdZhB%XbbH^@W{I$C9EbO%El_XXlf1_x*lv`g_6J5Us2@dPCiEoo z(Hb}CaAn4G1(Pe$Sl?qK@)nZ@z1R~-1U#;=5;Tp9B(-CTpXaLH;W%g9Bl6~#S{IQD z^n-#caIc)H(ZQfFsh9JPKH2#aithm3UeObb^T}KUnm4jlZtGc_-;nb;8?k?vM_U?sCBY?k8_$M1`w4()(MnQv zxT#6CdsU|NqHw{Ihk6@2tbXQE=5qcdqCS^WX~UR41gmQ zSg-Zx<~6~KGXn>D<-D~{xN!Eqn1|Uz*M!fJo%>?jONaGa?Vhdl9X(keqr|@?N>gD) ziC;%h!0us1?I{h-$&C5ubP&wVrP2E88|Gq+nQr(+Ub*g6qvfXFwXNl0J&UX_L`df` zeo55&yVIJ>x)Hgzq$p`pm?NYIM62jasa>$dZ;`y5RH%^}pl7s1|+ zlrW3?;s-QLzLFw`=yqo{Jag4p_G7f@X%7#EH~m)=Xg+*B!z?zRdjPTPP}lIyl+X}z zO#)>=pzywgId5olQIt13x%@-aJOhGmBl6(+3Fsu|l*)BWn=2vqSk9hgzGN*K1?-(T zN2u%{z=^v7f1@s9i!RZiU^UZEu4U=_k|p74wkaieH9yzEE%f2K+&+kvlRt#8u=*Q; zye-0@38W~~+J9-Ip}h0^S9FKd<8KZgndS@MFH1a|UmNO2Mr(9FcBSCcKfuE5oyY5* z+g%LI#U0IJZ}`9Wr0ECSSI-yG4!mj_JTJAWqgM&BwApb(FS%I--er z3@&TIE`*#!3QQr@_U3vBhoz8@+1acokA#L^_WYKLL~NN0`O@P@cRl(`C9E?|Em}_M zZ0F`>ILM@vylol36Vc~Jx$}x>JlH7Pc)xR0_+<9wc3Mj7LQz>iLA_sF@gJ_7@P;^% z{xU}{8UmOCcVW4WD!-ntg{KNHy6Q*43nV721M%z7iTdpgY-kZ~w=#`GuIfbO6yg5l ztbRL1ker*CYFep41~@ zICp-=G$tTkFJJ3)uBq?hD|o@2BU2rJnoeWHcO=1~51YqeF*%h|5+f}`s@TRwQYidL z80E}*?R-Z`P0J{{ejZ=>cg3tR#$kvyUc8tT-@K6WKDLsq*$hQKhdD(0ueZnk)|$0A zk&jT$%Oor1)B8?T`_u z_24#>eq?JW$|Cn2d_|%-;j^>@%nN)a^~e*FvG_)v!iR_>06+8Aw)*5&XxhEq?_JLQ zU9JrYl0K~eRL2Xt5q#dGWMZ`LBW8sRDO`Q24nclC>>6&^cvm)joMD2zE1uQfPu;JZvK!&)IOsctfEnq;4sM z?6l*^&Dfj{Y4k_$c(vZw%~<{8+b;K9+EW|uOh6vN_#9C2JU>5=vHqk>=4XRqnj4T= zGT70Bjx4-ey_wJZ=y3o>1hEhEg(ZZe?c5E}w)*JnOsJzuK7SWHfoN)EJELQmFGl$h zm0w=Fwc$io4k%+yAyDR;r!_TGKiu_$H|l^WQQrqta|a7TY}jOndo~*#ey@=6C?(U` zg0*`fshbClQhLE*y3Zn=Ju2=p;QaFVZ?6&g>Cvt{Bge>fp9g$052~FCv ziHznZYFHL{R@Dm2*3YT+WRJGD>0-Eo)JmMN8t<%MBMM%x`mC-)c&CIpGl|>6k@U*r zK1E;axD7Yy;&H%7=wdrb^gMflev1v^S88SaAIMTe_e{1#lcG}3zNZafa60AGpt3jc`m#?)H#*t zJNTQSMqz%G??&#RB*pm{z-Z3WnEI?|4n$%Vg za+Nxp2p{0ek3r_l_Cdei=Y(*!$D(IK=!-hb@_PCLf^MLinu57L{&_&9CY}-$K_x}BryQTR^E+SeGuj(aqFA;rer;#QZHMzcKcYum-Ji3bSq7Tk|xe1BB$`lIuN=! zav%xO@-2RXgZrtHDHZ3-IYw1cSH~V2?qgijC{{)v{#V<<>kLpF2uPZHzE9Tjgc)q3 zv)CTU!U8v@EM&RbM|~e(8D1p)&>tEs<)u}BPio?5VSlMBW$lhCQG)KeTF0scawVO} z8ZtR1(HD3L`nx$PT{QbUO1b9nNP*ZMmtOB)%}Q?Y=ieq+q7K2n{^%8~`g#4N#IE|(VMA3?CIOUOrHF)(i2kLd10}5 z=6Jl@l+kHvd)h@|vvPKc>RH0%4;$fPOWB4*3mH<=#fs14d5G{h_`B+kvnWZIViH|` z&Fe;$u$*4j%5x67tAcjh^Ei18cHwF*Yg^4`jniTfejnmTT)JLPM4GB zL$n*Q+xMx;?dH4R2`XCL+5E`2hNb@em;7TS%9d zm!@pjeyGt^t8q1`%3?)Z{kknOk#<|D<3=}06j1>Z%nYkuk>D(Kr&vpH{N86lioUVf zdmVfpJxfR925<+xCwu^3F@!)5L1C_k9KP||7OdZ2JqyeD8=}fPZQ=-CyC(%bD-$7q=3~wTnEjgLZq=kl#v8PN_Z6iYCg{4IuBR;~Su4F6|!jF88p{FI|gdPCLU@q!cyAWCOW zEl*jpd!FkbOl0+~vzEL^cHlhn4O)SEt`H^iv0oX$bbu+t9M4H>-5WEPJ8bhbOM_LF z<+hX&r|)J$s$$kr-ooy3erN!;mv3oFoSm1@{B%T z@9?0-V7m-A)`t|p5BPjM^%MV`#{WvnkKZ)j9Obx9L$4zWU{E$H3t)~b+ z2j@7Rdlj%;q5 zUKj{&7u1*ZPgY+TwNICop9^|~qK!8i?DTkZGC0%fy(TqPRgnk07e1%+)+i3k9EmYo z6#i6;Luwb^r}`{cEqHXZY>&enm{y}9l*gG&4@`Aw z5|3cNfMKNV>g`{#c~TwiMVRK_8Z9u&slsVRky{KOU1v)^+wS-59`gIY~o4eB)}at2h%Gh zgxeDp8TVkWro0hxRu_lTvfkgTKMh7Dn`26cgwYh)r$z@hoF5ly%g2dD<4ySrt6+`K+XP@{;64nH-R6oS=>aoWatr z-f-ZKZmYz*#_HAsT@#4KW_dwl_{K8;A^R2FKMxpihGq*_gCNbQzfCT_48F02NXX#< zpXG_Def0LUA4-V~?)DAOCO_PQS5lMW<{r*{6Q@>ykH(WkiWb}?JW>+hj5ORwjGh|F zCHH3*{`8~#&H?YjCf8Cz_vMkZ%JqhnbK0U8EHkH@4G7TC;(7VYV_>_$@UFH;gp1V* z*m#To)bPR&8JLaiSyzHGV`bEiSBd zWYB60ZUbm4AoWhDPo*EY?lltbigvf8xuLx8+vr8Hvi0EaXI&?+g9v$S?vj(UGrrSd z9Qz-(URvjE!l|UlgB;ce@_27t$({IE^sel>oAlh`>@iQcPgSWB_F4=JpZ&#bX04X~dTTuawLkvk}F;)eLOD-Ycm;SgPpT zo0y8ib!N5c(hNQaZj;I0+dl35OcamOL3N_vTFF>*i0siZRr;z=Ya$f4hnr@qDR|89 z#VgjvRo6xD=0wY152u*&_$%gDX_u#~RySR*SOKD2bKeT5wwOK4wtoCR>`S@J%LGj%SY-ulbCJN!|ROk%vHa3=`x;%DA_Il*;JZYdBeG#sY zN}X_n11KXE)8YGtq=sRW`7)ts+tu);p_kzdP$Q-yt(#X%O%!&+8P!JO9*@P$yu5Q4 z_r*uBzYqF_`GYWk4sW&&p(@3XV_|b_a^h&AlX+XAH!|M&3oB5Y1atfcf@8kMm_@&2 z`M!z~K|^s_SLl~2V$7L|PnW2l1qI`ezABxq_Z`g&C7ry8GN6i{C2q7hF8>qETu`^q zyqL)YK!;3{eMHg`7w77ERPtlitL6m0`oZOh8bsc`<(S4Tz1OE_(XiJQoI{(9>$VA!@%et$OY54e>v>EmRn%!u*1u-1)rPe!O zt?-CtumiPXvPtv>5##ZeP?7sbnA778cBd^ZmFd+fN^g{Pvv__U@r4G}k+lGhzcw%a z%up%hhd(p*<@_zdrZ`FD_9PoEi_0aN)`sdE>p-D}WN><>U}c5Et^niY=0s8N?+epd zgp+!#q94*?anyGkUwhmJ6e0C(>}6*SQB72{d?V8b0kXF&Fk9Z0R zbLRGRiO^tFf?=K{hJzpB)=c}&snL<+mAQR-r7$zLo?+a=lYhfU1a=KhZ_MIC^s7_D zbh5Hw&ODB;F7SF%7R@81ewKpp*dJP>O-Z3v_-Pk= zmP=}z;;>0LE<{?*hmY=tA8<`2;8^VWXN6dB^pfD>a*zYQi7x32MSZ%%YAp{L3>i+% zRmW4`IU@Wf?}o7%L?J#HwtH%0d)Sc6b+L@)uY$%O!U%Tkh$4RSq^h@O3)s{xuNb4J z$1icYF1WWxf0u_&X$}8fno3vHYNhXQ&2T0nSWFCtGRUyva2KQ_;y~8<*3qj5gQoEe zqTB$=%GyyOm-x`IjXP^Hc_(Fza>mk_#hJLj#R^feNWEj6k#sZX;*Wr7c7$#0@`^GH z`xGm?NU%RKk0(mK{jYb1YD6Sxm9=fY+XBcxl|-04658J0Zr+9cFFbjvvkL8N^f7$j zkJ6+%*%?^z(Z}D==h-cVgx>g*{SBCAZ(cG<48ey=dBY&`$Ruf-5eCl7@p2L}@JZj# z1NXs;SAhcV3HNq>;wiTCpnF89lW;T7b6}VB6T;0zHB2!HQ@(Et@+8E4PY(eAs92Yl zEDMSf%X-oKaQ#MvdN=5n>qz#JTk0vY-=uwPMEx&jdUTv)dr{@VF!WT(d$xI7^l(uX zkcESTGrq4GyiEFcJQx4E6a2V7(%O4S8ofZP!Yvd8{xI>9{Y{V-x}pBoUTY&evYOG zwy@5Rdbt0C_LANdh{BC*mKM6*@d-btNx#EBCXTNxi7#;vM*o8X8QC>x>n4He58Y#qpF6TS3H^&-YR!{|@@yLI|_(^U_}Z zTGc-MPwT(NvrPQp61C?T`tO7Pi#9>Y;oE7e?stwG68{nxQF|gW*&E;fm#X|fA8*oT zKlHyml8a5+u>6O|{O`pVZZj%{_e-Lv@$Wf|V^in)0Va(;ZKWWc(;w{I4U}{{}KrWUD|IouKmMuH* zaEN_;{GuN)L)O$Fl6G5#?QN|CV<6Db*VmK!fbcsV1THxOGbnJ~CX2F@c$g3xbNq z**|wHNbujJ+5f#NzQ}mn{1j|J;_Tx5s1}kDsD$!s?@&#>7+AGbQcstYUH?S7|H?KF z*!#1utZrRP{bO+xQ%efr^@vS$CU?sFU9u`V&ZOv8a2FKtWBXosa8606r>`*Ypf5v@ zuKE#7scCkRF>X(3Xlx+6>+;;krk-q+E|yWvPRs?gU)|_v;NGa$#1%4Ra3gU zO-^u~Qo8_Ni>EH18X40ZKFD_YTzrUu3O&E@?!>%#N?uIwn_u0&cl**>!Fmn03Qe}3 zAJZhn5e8}X^e_po-`KN5PA=_5 z-gbLBGVMIhWhgr2v&qc6~tutpNCv4xtl#j=OFWq{op zS0;=__l?jaSn7Hd%xu4A!w&S`ancM;FrA$)ZsIzq zbMct)r7|Ot6a<=^zpGyl{JjKNOl;3{ojWf5aUGSsLp1M1&TFL1Pb@Zb>mp9c{j#zO z18wzZb%z?cbPwHIe4sBCZ5quy9-F!=hS1E$BNt9@m#+93CGok9h1BJL^Z*O=i76FD zOD4?j{zP)^M2*jefUmF6L?pbtvK|?$qP9Z*dD&(RsZH={&-D#pT-eZ>FN!F&f?E{y zNow*NWiFTFcsox zQfW4|TDBJk8nVxMv5!i6!;6C(4rDE#doG0CGdDM{FKPRK8{rEQY9DLk=?SQ9YyoD^ z+1WYuvE-GveC1|F?PdK;VbBl|jM~=k?#J$!u%9tS!1Lqqf=v1+5iJ*P?cHHtOFvvv zqd9B@Fb46$2i9{#7=zrEhH>*TX~j};hh#nR110$(WLdV!k+tOBABtG}F_S~*b^E^m z^p4Ix+{JQPXD0{YM){tt9*uRkLk!`m!7;q3|B*Jmz5VAYJcM?2mRGj5tELl0Nz#v&`1QLjgHUcP+i_mD5a!}8H@el~mkq)e-g~p#H8I3G z6!OZ$hnJN~LGK{hfi#w-1e3kLbcxl<*`q{neVaf~@5v49ZzfS0q4IQp4qpO$!kF(Xn$o z<=1%0W|92CH7m<|e=@+!D4On+kHeLy0&BKZW!>5r{7DkUAt({+9vw`$T*B!f8jwQoo8J8$4u1@M_34x4 z9<~yuC87&M_6A?h+@wEZM@u+B3i%4s-qnS2GR^k&b>vS<|Hcyz%|P&yd+C~LbaKxvn^Q%i)1A|iO~a1mYSZ*k=u`Iu`Y`T+#uVax@>k>ij ztn4{!YHl9P6Aq6D&2Yn7&m7=FfvdVuDUNjR6MKClzlgs(1})9)X}J`OG3w^z=6ZfK z;F{B+DD=FY{>zn)&4o##+D=)!0ez=%+#%IZi+HscTN1jcfyorkfHR|(AE;8Ss^Al) zCE|-ih(nLb1xQ(B0df5KL~2rV0b_kv(ucQ56~lv)rwO&zjzy&L=g3&Rs{XO$m~bC~ zyRC1wL|ZF=Od}_4Est7Arx>TCpsNV!OU-#!0P}kjo~o@F{{bp>+fPVt`wORjRj=PZ z?M!zu(fo-a?gCAxV-Jka#*l_>sX+|6ct z=m=8X!gZu%!>wL-_Z4oz!6Um(dqU^T%jc`p?uY9g8_tAE`U2^fMmKp}-%`@&tjG{Y z+hb9`)Oe_lk8|`BE@a>z);4Zyar(fp$_b;J$tnC+<0Gi}b94+nJQ_2xobF%Bj@xU6 z7pW%^Vn*pHx&fgUMBz!Ti>T)d)nw0D9qg{5=i+<98On69kO?pZsr_4Oink5sz8UabQW}Km-mn zmi^Fb&IBP}S_PtyBMC~KiL{Fdm-7UP=;)+U`0#5z9VZ7)pU6XUMFz zem90b!VeV9O;;3__f)xF{^(1cT;akBv39vH^zGnG*NMM+N2L3`lRCTfM8c_42ogWe zNq`{3_>DVQD{#&BPJZ4>>Fq%ltwS&K#b=O0M$mi1bT`!dd-faPSF8(U%jk98lm?~(xN}}0^_fTBo@wA{HFLTSFdl?G*|HQV9f1WYx%{RM_6z!0iV1(k4CZRES)cLN0*Rm zYxJK-2HkZC7iFkjei9huKk@C**4ynDrP0QX5bWXPfiA$K`VZ&b<{`U~NDOVePf{xs zdsARBc1mjS8k$YmK(whn3m*f0{SMw*8|YoH0?kN`Kx7j8BVm3W)H$bZMllHn^zB;bf0x0E zx#X+Cq`+LW5RPmW@C%(tQ(9(F0teO3$<wlrz%1_Kcg%-y=?8zAs@$ zl|!rb3HZ5$#J#joSAM~KZ%^Y#C*?VrVT*tP+C$pmAJ=a}mM-u`sUbKFNI<$yu7jVV z?g1>+qKcaG>U*iWd&=Zt*}xJyWry7ZG6g4`QzBZW%!U(Le3i|2=K4Kyox|5|h2U-C z=el|%XW-Bh)- zCYk@bu8)@ zg?w(e6McP>Ypqy|Oh9K~ARi`yWJ$~C7ub-ab^7pZ+z9DXy4~Az*k7xl{*7jIjHQe5 zM$ZJ3zm4oiZg*dd?q+x+QK;(nO0ax{@0t4A-3w!Wu5}h(P+s4DKs%&AnsPL^ufuK@ zxxwgc_bho zH=8q3XBW4x6&2gl=ghpI%TI-l$8w&|6G5JWitT^DKuBaX?!|Y{lU1;SX3zwq9BAa-h`X5+hh$ z2&u=meSmyrV@>G74n)r<_weB51wdS+LM*KuCDG31Te`_VRJG52@f3(^J>g~+#Xa`E zVAfx&;@o(O-N_GtQ00llRF{WB5zu#d_r5uhPluf6w7VXX-a8poet_1fPnmP2GrCA* zU=6rrOOPwQDo#A;_u9sj!FB6kxa3!}HA7x|m%O3`r#HKXyr zfmt=L;dD2;+V|R^#yJaapKb@mxt%U&d~y`%&~q<-`_UyH`VoT&Q=v9F7uovJ1XQt< zP+rKlW?9F4hL_vXj=m8}dQ12O<9TPxXr~OQ7j1gU4$jk)$_)F6NkAeNVMR(`0!h}> zl>Fu*ocqdby-~-wB>Y4Y()X4#*-C?!H-hQyT;$k-+>;yc7V8!iLrpTqQ*d{EI1?bu zbyG{LZFgZgpPXJrR>Dt4u*@HsrRO~@G>=$?@vE~l_1P!P$)JIF$^B|O%83(yil{nW z?puqYUneQy;=oeI0APbrf2;Y@?V@cWe z-xu^pyB@e-qp*Va)4XUnWu|ml!veq@9V7ptmYVK^n;MbBF=~MkTr45JH^8Qm_h$L; zK@=KcXI9n;0S8nft=z3so)YXlwX$jhQFg7QbT@(sV%9*S0uye-CZ>dGjF*aNaqq2{ zSx@hM=oM2Ylo^<6|5<4mAjL%@;`hM3+lBr3_@Y*97g;i@JXuUwbF;#5D*jKoezc^#qjM$B>1<&(45pS&a2(>E)*g2wC<13>FKlmmpxlcv^QnO1JPE;BS7)S%j z8!tt{WRq0pbGoDZ`bsfT)|H;>qQ7*0`BVwcuXgWOjO#+YuD7KVY|OamZag?#dz6Z_ zB^LXUlgLyTqZYyapbNo?+|4$~VG3%m_%f;_!BWzzH_cu>`45c)_;`gctOJWO3{Ijy zTzrn{w_>T1X~d%b;4%1=;2yl@_qwkYYt#`TtKy%UhAP<@Kc0TlU&<6|Ph)@zXhY%m zba3VKIy#fn>$Yeq+B2RZlA_hml+-8VT>kqo&3(8Q zf|o4oaiHbDZ^M3rX3=BVmhg}jOsO?vX}iQuiR4HX8TJh@SLk%w2++&ukZiVO^aqC< zE7P^r#tn%04dLhc4dR2w55(Q$rYYQGWQO@ui?;*PZWU0g%de+T8N@sBX1eS-*YGHi zq_p&N?D(Oq%I@lE9U*1AL+s~SQB=*{G1fI3pBwbVlP;*HwAzYj(UTj3<7GS{DgV zoWbF!a}#~ptQAySE-6Q45WmGtnZgr5{U_Rj=?-BaO|9&+#KzU6x{+xa3u1+pT~VKfm!<+XjJrMO|6f ziu6W6N?NM<&H5^qW=a%)Eq#H`i`7X^}u#E;!myrU5wZ9I16PpI}$MOG_aPP%a4PK`Qc~4#+NaVSN&T<=udM%L44^>W4 z?Ee<+)=VpI!mz4!b-{Dd1Q8w9Ic)O(+Vn@n)f@MS*B_sD-mp!6yj($uq~q&+w zs=*^nqgrK>TK0%>6qBcCipq*)kGSqeR(ml|mjeqcXrB1A9Ak2H&F;aK13w#rl!_f` z&L+$JL}Y%QLVXb-^=hn)%4`)n4qo<&#f_d{3-4$+YZL>Wl5+*cC{lzSQZs9RK|p1J z&bdSvO@dFaA8F*Df@(m48P)E+Apt5APRMcxRy)>u%a@Aq*}aBl^s*#Y!^~K+m!&6u2$xcZ zVPnV$P)9`b-yNLoFhTC?JO8oy@vfEJv9wnUDIv6*Mc+$yEa5ngxDs?Spj&w2zgnqS zNT{t#CJak6#46og(z3{6t0fLoF3kvPBWvnWm?N9A9|9IPP=|R_=R8&~4)I;`Ao4lcuBfkK>a~h|_kLwb@l~3g&CYQdiw@zJ`Nv*7GWIOodcP?DT+W8bV&MBv)O_t5+Wk45zi>|_t zENk~TzZqG2go{yUto3-AUo;^rE^VOOe?nmHo$ANO!yb?_5gMsVdrD-YTQf6*+0-|h z3VLR=2kYorZ}zYY38B+g@nIX2dI@gz@`A?P8CLGlMlN8Sy^)VG`XL7z`=f>)p;6}G z)!d4ircKn@dfe7D3|a~Dw+s%x?xm1z%B+||J2YL=ubcY4`N)VQ`Y$0Zo4Y$CN^Akg znl5rFjv0bp)#%zB|k~$Z(Ia8gw_4AHk?NQy%y0P>_pPcOpH_!yJ=c5~0aNpv}i(5x; zeK&;AZyr5UhQvB%X>He^p-6Y>Fq$oj+`soJpKx@0rk2!dOIb+`C3umAmdM*cRMu_`M7Ul`v1s#>#sJ#{#~~U#fv+Xwz#`Pi@SS(;O_3UxKkhm4O-mY zp*RG0f)m``ZS%hSeAnLR{0ryTWM!?a$z*1p&vV_^{Y6x;K#Qp~t&gsu{StWsK9PgC z-qfGcaLK~w+Cmq2VNNrVQZ!M&y}%>sDEBrk$%c}@VPPR~sT0D2|BCbP53yCHFGlsv zBx*47I~w%e91e16m1}w!3AQNgOf)O9b66b~Wi#{&U74uhyQXO|8FHzp&UhHibW*3* z|Ag?e+A%bD9)(@h^$!Yzf4U2fs45C~vyTb&*BBq?$Um4Z-OdNPpp^)-eI#IQzMpIb z@RRg#UR=u?ib|73Fp?M*B_P~s44YBJyfF$)t+XHfszNv8i<-W0j(sq;xH0Z=73RA? z@FTt7r1WQ@?YG8>CouR>dbRJ^RA|W);yS5LV%)fmpsAto9L&Z^9vn*W;*2X=ZVjvm zt;OY3G^#4g=2X(zlI+Ku;EBA9S0&bJInEiUv~FxTyJrQsaMVkZ$Ir=|jeIPL0Yjd{ zaV5uc*dvXP-t7_T4=#vbNYiP0FQItzxPyBlrPWk>C(8PRVmv2zW+zZ1OTO>}H)&sJ zRH^(2%QyQD)Y3)J!gbE=v^m^dJ~>iQwEr^Y{fhCmtXZi)yoM4~0t`>)thL^cN|Iu3 zRvHB9ep9cfsrOeXkq670jWEb9Ok~;FVX5RXqx$KgOJ;aEH#jJL13z}Qt?MP-N&AhibB&oue^~H^U zY)}eZibl&mufQWD`M;0?X-0iR?(@4w{4=3Twr+d!UcKDowd4Mbokn|E0f(Gk$jQ0b zSZ=G=$){riKl;q03;0n3`S%4qlnBytGP_0|J@gG&OXJ4&w#`vuG3MfOt7Fy2x;pex z504fDbA*C0L!a|!TN00*w|4kDzQ&LkiaCzX!O?~A$(jqnrMbPYj=NW= zyPxfljEc`l@!h#)EB16+7gjoD6>AMf`rTQbZXH6}g?@K)W_xgB=ECE#Ah`|)^K;ITQF$sn4_!_&0Bz8_^Y z`FZ9Evhw8Gv9;_zI@Y|AI^spVKlU8N-+n`!mNt4wYzO>o_Fci-wh`o zy^cPj9e+(E<+2BVG}8&K@0sEvkrT=e(y!_=>rMVYZ9y?yy^jiHcvHoJb}% zH_oHWNcZisf9gFx;Inq`DC|9kIij3f%w_Y5diB=|1{7qTac?!Z}x)v)y_9}m7NjMnZz+nI5P z_lN1H4%lGrlKYtTCEgsgy-0HN`2p`+2VYLTa{HJB#%t%gdu2y^{s?X6OY=VK8;6HV zz@1lzVB14oCrsf8YNuEd$9(QkqV^ia+O)h?(oe7XP1oQMw@5TOncw#_TDM77YE3-8BmD z1DH4J!Cc;9+aom`swU;uWEh5DE39;MaOae>QdewGFmHH1cHit75?`16ZNzeS*Hl(O zYkDwap`M9O{=1BW;g>1N2WaWBf4LWO>+v1-Zn!-g(gap@UwN&NI!EUv@gb0^cl|EJ z_S|=hsWy4$K5Sw6^N>Lza)U=zKkA=hiip7WIBHGkApf_wDzR5_X9fuMSUW~w;;^vC- z^5#Rox-P)sWN0qF!x0PUClog*>@&7`(tBd+{prMmxO;l7F`_R~!FJJLsVa5z+SY>1 z0!^2nvn57(Wccy)s9!EsAP#9Y#(X`$Ms0s4AZ21sEwUBhR%b;1@1I+?u2xk{aheyF z_5)O$RYflkJ38id8^GIf`P1ykV~{KYZ zyyr|r#w)E!Ay&z-Au)=TfA9vVH3R zWg!3OCw%lT99;VmV9SG31u{lk4Rzw8>ug_tI&;rl$N3$D5hK8fXt<%DfdFysfp7tj#PNYi5cSJrfsmjp<#* z;;7i3U(x$+2F^;>3%6Q^l-t@YH=yC_HacM0{-Dlznt_>FOYwUCLB6@JwVWN;!HD?% zbg^RMHR{mrUq_8jv-$m)a;WY-M5H2$3!j>tQWRU^Ks%d) zmVCxYL&ZUkA=_+J<(aEPZUTXm9R9p(n60gjURFu;3OkaFFT%RoAzDb!Sms+Z-czv4 z=egp5sb_Fl!*Hk_Z9KPmv7G99UZoJBc|OeA|5Xt)xU>o<<3rh#l7fs%@3S%=Lqyua^nud{pV)gDyxc{r0K>v6{GWHWb2~+eH zqovecFGMc6I$mGVSE3_7#-CkWl}1Ku=;q>jYG>kRZ&i&;{YCyiXy^Z&LsHKf9H<@B zX64n~}y!dqFZ@=xXdv1BLc20sIm--!V1q(Ez%taMY$b25n9-kH1*g;ip z+ko%lZU1WC=l+*7`hTt7{1yL)jZN~G`0qD-=6l@!56gOY^6ftn`u~BD&Tsx2-sZXK zJptVRgSfuFKlb&(|No1ZzOt?4;r}=L`ahrl|JBR!FP?JEMx&%KQHdtTY$o-T!zH(f zuenCDw+RzTPIP|!=FY`7Nb!A2#TUG8M#7ePQ~()LmnM>BwiC6SrwS`E(2Y53^&Z@idnY(Dj0z^t5_X8v3dNT8%LJel*Ml zuPH??2T|3S9!!+fYl=%F-fo!?274CkbR6-$jBI4DGiQV=rZ3(%b&+ zVL`(Cq=BrliNXp7SAzn8F5nw+$;Weh?N*AE`>`Ed5+Hx<*s5pfjj%^1hLA^S!)j_@ z_H@TKN>Z^i{jJTp4HNifITzJG(7-~ln5W8$ke(Z|BaBNlvLqa5&kf1WDMrY>+dnUc z3U!?aUr5nZy&gy!gQ>q5T8;c=6FL=*jR_SUnSB$j9lsUkbWM(fC=V6w506ewWfYl> z&Tr*&HvMsNoMOt%S01A`xs(i4XDRaiZdgw`3hsrgS|7N`%LR)1+Fm{)H<$X#)!&WY zyxQkadK~?4y)|lLo=SvFk0*?VisRc88&=asU^@8AUoxeMsV`=81Rp(5KKrLJvzQzi z%r*vp2R~zkOeB7-XV4vvXd?vATrQ*BI!yKfC)|Te-wU&P!hI%Rb^&vAq$oGr)d%EH zA;AA!bmBXx{`;?g{_GOGqa}ET(w@==nwA0N$Y>*{xs!d*J?yw)$(mW%*gXsoH6~NE zadvg?QZNR*1Qw0*4Ycm9I@fa%Y~pq&*vs#%>vz_FkTx!K-9B_lkgG=*_;x^Jxh=D$t12Hd|36$R9E4jBz>W>p)Aif!tFGXFm7}4XgRZGi&-B`@{V;^x@KiYnvua7`e{gFR`PFbZOcluEo+gu;2@o}l<-X@bq@hHo68*dN3 zF1mU{`-bthpdi7H@KLy2;8Vxt$Gk&eRc16jRpp&g9OIEcQduJ+4qIgdGOyWyv)sci zy5XLtsOaXE;>AS4*wpYK_)=0i*S!1e>nj*t^>p{YLmNXzH|-0-BCn|gMkQe+E~02q zQW5~K%;WPzSz-VE-Q7AI9*~=x%Xk%=%f=s9s%9^+jKZV6Et*+Rq1A=BRb(RsR$MG! z4m)-EOgNzmN|V;Gdz*(l!{g}zH}JGlEo5T+t0R!CW>OHRrxp`fz^$Mo*d$H62?l4o zUi38Csfla;(2>CV_|cT0j;WD%agpm+Q+`m?v>dXm%y^_VRUi4knhmAYhXuF7yvKJ# zv)fbVVu}Hb6I$4JFv87ETqRxoz`&N!fk0PHdNX9_$w9n3X4(o7N4IWq0hbi|8tIYY z+{!|Nz*!`Ba|&ZoUi{cYlkQQE^wip(xo-Kt{8_FJJun#VVhvG9wT%kf`KwVne{vK> zks3fK-adp(KOTly+qJ3YBqPJh@3ppX!9T7hZD+>U^s!fMn!v%$x&K;DKNfl@$98c} zOII#(uo+X6+nf+kUL9X-6*!)!>jWM4@M;X}mwF$pO>44~sHC5_wzW4oAX=BQ4|lrM z;U}>TW;u|dDP&v!>LU9MeLM;GwM>U`6G(OKjJZ`m6P+Cds%4-k_=V)j*T;HHjTiK814H;c!JB+9;`DliQ>p>0sVjWuSs_ok0 z_AhV6nt<9eYTg3_UpkZqpa!ueEq`KD%jv)KGKLx{lS@!zERh_1c)ElqyIc`uC-Eil z^vM_MzMYBK$n(;?#Ki$2Ejv4kl@QP{7GqrjMI|(tI2+g2=_Vn%j?R_2Ur%@rz&4cX zXZhN{l1@cMVnj~Tb*&G?cTL23^VH3BgCNt4!Rs>NVp zLZ?900F{zAq*_cGp%`hyR`x@0Y-|p@=lGKrFO%^HV9EJ)M0?&DLXuWIAmE)GeZZZC zawt_<@XbyHZ=bBWS~pv>scS{HXu=Ebm^hGJ)%-`KO)zy5hb=fgU9U_i_d90_gQK3| zs0Z>xt55CkM}`@9T;;r}1ovZxyK79BS4s?$9TE{wbU1ylnlywg&bOUnI1wCuOTGB@F4sr-+N5;OeOV%cQ z1zwZs*Skq&=a>E=QWkC&StoXq3DV<%Q|@13-HS{HFQEkKvVbeyHQ5XWo5$Jy&D4wf z4&!sN*L{h4Xl|)?O6po$iJN_-;X@W9b5?ty-p_BXj&NF^OBc{%jeLl;%0)l~=oR^8 zRjPm{I+6I5sZDWlchS^w%*>T-cf!*K9_@=2iE&dTVYR)H&!pBoX?BYJqZ8BMagcYw zjOAN_yVH@L;9yKVvY&JMPiu!Bco1}RrG``bP3-wiFle~fi=0|DeJWNgI>~65j46}NcpGiLb03|(jtW%rz?W+chaZ$a;7b@cNvzN+UUzsS{?q{+5+r@pIennxmB;{(};cy@KI^C25tJ2=|7iIayM+)lS2JKffnOQW>NUt_4ADt@u=o! zqAhXF)sQ-hP3=PJye_fd3Z4DE$JI+gx+)P-n_&;7R^p%$H*yQEG`wTws&~YNQ%_0L!vegd#m6w4_p`PIgo7Kxw&$xA> zKZ{-?a1{1c$#PV$ZHE4H>{KPg6f#DS6;h3cJJ<{RNf@O$Cs4~*p$vx>R} z3@KMdS5s{_Z_h`;|FI_RV-t+zp_!ZlZLEgNE4Dv=- zoA${~E+`LhjCfFzgo4{gWkGw&(SGo{j@A3khMTYRsxy zqnBBa^Y?HI++$Z-4~x9?XnT2hBjCI3*EU9sSn(F&t%=MU!s*=isqs?`i&*fzpmv%R_19tBaW&eZfMdYM99?T#?alF2hN-ua;?BWb?VZcNa>6DDsN#)x6;kD zA{6OQyVAe{4-%`2Ur(9sXIeyXUe>ePM`RWG3*H?2GkO}zBn_vFK+tYj|I1(orZ<2hHXT{4Fj zBHN4h^9V0?*C0r~@GK=z)d0Ln=eSBLKFFA&AK=9r&vv=u0eHQNe-&D{tN|1HitkiY zs%)?y+)B6BU_K%`wG;!(Z}nEh!3v~fu_av9);nC+nLP3a6$iA*58th?AbV8%dc6)t zWEgTn@-GK`a6>th!xCWCx>0rGD3=o{V6ysAlI-P-M{u!WqiaF&)=?I#Nn2W%2l01% z_%Nh0ar|xDspggeo#7P*c_j^NzyUv^9x`fSdh!cfCX=vY=OCv|+n386SrlY~T&nWEr(wLezuszfWax~>(bf3tqjpcmU5)mm ztN?y|!axbfgzm2O%4}~`W*dlfk-OS-l~y;+?F-#MT+xY-=tXbO?cRTyrT+ACLlwzQ zX4os3#>)Spp9D8^+knl(P+MKH#?9;Z03|M#2cNi2h2 zOK@iW_chX~kohj0zL@&4yOT5e;HJ zV{YjT&B8+g`%O~?@4<4wTJ=#Br0(}+x((JCq^s=+?bf_>^I(r2X?Hvng+0^2&C$Kw z{@8LbhROR?{lXLYk2qv4u07!+P~Nz=zRYI1Cf1pfNaqu*$yyf1ZOwqaV`DNChg{y& zE@*cZ@Y@XPq)_Dm#lfps?prx3;n5}$dEmnA0uszWZaqCZWCg*eWVIWOP$HAa^DM_! z!1&`b!4~#AKEt)909exoM+%Z%D%Ngs(L=&sf-eMBCkK`Kyg5+@;=(XR28bTXs>&*NACscu}DQ-4|(` zn(b_;K+Byia;jza&(?C%Y`JGgnGj<#Z-*hr9aTB{+5QOX z`sa6aR_JSJwH3& zv38mPvBC6;*Vz@Zxpw%j->~4)H#2m{2L| zcgEy;!;*Bw93{T?taM#<;iru;8%?vHT@oC2#x!l*ZCN0|Xz>RIZwjm{q(+B*Gs593 zd(APJuae!TV+6OOg^_mO7Mh!|TfBL0XJNx99Q3iCmzYpI^6&h6MrP-KYM z#8!CoOBAm#3jdQS5+LEw0@nVqU7^n(^9y&J&l>)yiB;28=Yyk`KqUJ}MRptTC__D6 zx9t}ayLqLnyTAk2C^fqi!Sd@lHeUl8YX^R@(Y?)ugbq*#kd?g~T&ej*3!J%8wat0Q zio?~)eQIP7`?=bUY5o2B(9Q7@bPN&O(RMOLL!QWGSphIoC~2lDjr8E3KDMt{GVj%z zx_zXxv11k5BoJpiMSZqBmd5-2cy*d9yC)loF%@C0u`QLnR8n2@PqVUOZ!2_o)%?elO89Vc&ml8lA2vvbOt#A4ysb=exjO$1!LUd}j z=VP;KYHe_eaY2>Sfg6{O$!CQdjh~vg7qZj4!K8`UBrujAcHik)L#u?7*tnYlaL*`B zV6X|!9zsMtPVZ~8i@{@L4N6eWq13BsX(QmCjF0n2U2pJlgRi-_DR+!! z8&U^*{Cn*GJyVqjY1y&suJ~R2^#6z&q8u7E^Qx;=c>SMSZRKA_DGiw1;xgjm!M#kc zjj_dt^Hu*P9ryP3z#A{9$Z&i*djSq@X}pevosNPiFSnR@I~;n;4w|vntHf&lHknd_ z*G^U&$__C>5v5kZ-D%ZBqCDZgOkVZj6>%c9&}u2DxMV9dF$uv%Ridq3gjQp&M3L?U z%~wp@seY;Y&+>XoreI>aa{_b}+Ogwl&8_uB^(AJ)eF`B37mS_AJckbBVZQ621M>LwYrD z(L(dGTF!UMu*c+T&<1TiM`y^GzS>GkwdzFpYI9T>bRJ_>B_>h3f%anoh*{WIDaBK6 zKr|`;@pO$8nluz|LyWt18K4Pz$V@KSOzoAqV%-V^+|!Tww2wLYiVteEd*8n`eQY=C zO>YwQJZs|yF*bqGBFazGojSiZ-V?B4gFrF~wv5tuk9p>xy_V`8`vj-W{-i`Z44>@u z(po!4!8Y-`$0K`?s#Tx*Bsa~N&{=hL!@qjJa23-ddLRu-eL+Nx7VZ4=Z>NVO=R~#| zW!^TA((@I7EW?&2PEEWcmG~yGAU*94a(-ejFNiyzT#*^)Ygt%w|4p_3q@;dm82P8t0x*M_17G6S2lkl~B=-MFR^! z5$}>RfCWA;R}avlg(teHL_%OkQPczFOm%AAooe1tWfEwlzL`}$pT-&J3DgFc5(UYC z*&K%rOm%(ARHh4TUZ|m2tSAg#_E4={f$Oe*=xD9Z6I8{|>xy(MloRRe%@yz2)D-jy zWehgUr0U_&e16yuq_wQSsvfS9$tcp{<=u1MYU?eqEsAhD3=K`}&p%R=6}aYRxvVxo zmow#6R2Zx2)cqdUu(uY~XE#PncR)p}t$D-zR%NbwE7GR$3uZcN_N!OyL=|iW3NM$EvdMlMGCO|C_fb#>`a#jKS#@Lec(#i(evqOjl@|7g0z82dfxB@J z$`PxzD=ED*5Zh)atJgYl=fqzXmR6xDGg_*);&;G*5gNHshg!-J|M4rVSF`7{92my(Ny34KG)JD1q&qY<_q zQv`Z-+#ETrUyyxG{B?6tL8jtRYDSJKg^SvzQV6T zmloGe1Kg;8cep$UdVd$;bXFh5U!ZGEeGJ_esAxU! z#oI!ToXAvfZ@=)`%H{?mpIA_OKDR*YFkURqUYhvx>BfZb%d6@8!5gU;Q1_da>?i=F zkiex03K}C*X&1CmEv~MC(nfX_(AD&{77Z^LS|)?0XI5!4{a8*^yyN|Cs?OI#$!V#B zv}Dj9vjpxhWAR?H@0*R;$y6oAaBoJswmV)9eNFEu`!mbsd_`|pMrdU`w-L6Yvn%NL zmtC)6CV9|#rBn$@Zf4m*ob#$I{%oJ?@lUTt1TRcT^>rWs^mfcATeo&^C;TKsgN&#_ zayqgwg913Gj(}?oKg-*o&v=WYyX|b861vrET>WYT@^f z=M6IjGFQA?ix1>#e)XURG3~Q`i><|xB#xWvF-%)uJ-V73I_wPMvcqylAI7{;5I&Hw z;4yw$>b>R9T4n1F^$en?6sN!S@k6n6nb8DAa?9oWzkc!x>`9pn|rcE3)X$jw!BRH}4PbCGD+O-+wiq3JB=d40?b zf_zM(^fB3uU#=gNlzG6&KY4Ww8S0W zBAz~vh7<21RMeMv%opjVlTmI^^d6U|CM6y9xxCETo;s8tLooNzXI3Nfo{sXuD8>l7 zlGl1}^j`StUmEmx0P@ywJi-lvxp>K6{xTnjF#t5;VivEg^smz3u*LTRT48$8@)mhd z|7~diKtI3K`^9f-!m_{jL}u&s#-2v8gGaK8vn4{vH28e8Fe!0l&`P2@G3CT3%cp62 ze`A#4Nyc+G@k+%1O6E~BmNvGnVLyKOg845kE~mOo*8(}n9jIq=MxTfjnP?77%h3XS z>V$!%~9guW*9kOw6a%RC2JLTTw zQ?iO$7Amo~2JE{_uWq?&`~}l0N|}zE24UlCfd){^nM?ibR%%|ZdL$MJJi?zV=9gLg zU28!v*U7>*XVOR?JRTH60NMZ~BnqwSs-f#ttL6^tct{|gXp5m(v)hspH)~m6Am|8@x9T@SAfV^TGGCj7n@Gxi2tX-UQ-W`Np}Fu2(U4~ zyC~vUD?R#nP;rsw_A11B5ki(QG>dZ=8j3!qzqPyLb*OE)`m2027W0SdCypJYuLMJQ z*qB*i^Y189t}Ty3Sq(em!%fd5{_9W@{h0!lfcLX3P<_Wi=K&`^&HjTkZ73F2IFKv4 zAk!n8;F9gb z#A1pPbHS^JorS2VoS&&BVwUV2y?SVei;S4eRyGKaTj+=4TwA(oKf_$Iql48*mUj!x z%K>q!E+r#CplYIk7Lp#Be0PaxBU{qf*}ywe3L!W!B*&7~TAFU*oN_DX7Z|Wvf3ln)aqd$i z%eX|LgsWsTrbRsBWBOlm;LplcrUS}q?B_DzV*0q8iNPi~rjvWKX{D~r7L$%|d~>3A ziBk|2YxNrM+%~|VXP6y2<9dg+z|awHU|>NV_DqElN7HBe(HYM1=5l(T zk>7fV+80+f;Obb+t4dn@NoV3To{ISQC3KB@G5Q|iPF5mb&Sk6#*ahqic$d}$S7?dD z5!PbF0kVqc&_LBDrQ9{l$$&TVWDgjb6o$QXQB~9Z1XQ+d|B70XFHKYaY9_H?j;0ln z#tn=xhd5+k=L1KAltF?qhRdn2S>i7?a?CDcSv8{?1!rM7zEY^Y4~kjnq`Dxlpbx7Q zy5vr#LLA{71qrhkcLXKnLQi`}Y_XdvMoQkAd#Bbbk%n{i4Ob%W zc~f=1m27U9@ zXI%@EFDBxT&ikzKO!XM=kjHE`)UGl6It&;uk{kTLvQmTw6w|ROm~N0SW*%eC%2~G> z@41S4FS$rWk~h;8lhX-6@e0yB9^1k7V%~5agsh6;jm?Q8hRlm{aml_Y&zP;n3)XEM z4kracJ_>J9`7(5`$@b`!yb6Ia>@I4*DuIl5#!oAe5j^4k2X>8RbiHhEH0L3o|| z^Ta`~^V;9Q*|F-on~5l3hJvSIdu2>WSb{~W^OPtzkVui|eDdV%gyn)6c}wUlWA|)jzXm05TP` z+~Z^J{0}pRS0mDgOPD=^qDCy+kaeGPAwQy*W_h=h8pGJal1b#lHXUqizp%O0Oc|v} zDc$m9xz3n>zo>R&hBu-^$+pi}ftbLfpcS_EdW7gUY`xGWNszqow-)Z)zm-33uYBBg znx{6Jt(jrA3Fyn=wwPbeR~zw6GNJ#b>UaegJtNL}rt*VNizK=KD7$-XMtq?1ttZ*} zc{7z8o;v5h9xmqUKEW9VrZ5m|t+hcONi4>h8Zff)W zD4h}vpAV6t7@tQ{OzK?`{k`F_Z%R(cGh=%_ zguhz8$&+5Tw(|u4o>INtZ4Ibt#8e(pYa_RWuMgYCC3P6EA!knNE~WJ~7g@WBg%pXp z5?UU{bTcT7e}zVKffx0o#~l%mZ4T^7*@5G1^JLs{u|(NpgDH79VxG=GkE6Quro0yZ zI8zBHG%J0MAWwdFn(6&?mnO<#C@Y({e14wX`<+CGQm9-iO~HTZI)8B@+wPek9vyy9 zJnqLN%&n*I5CVUr5p$hhj0x8`Z9z+zhQN%*bLD#VHIE25-_%WeaW;42lBmItShB`1 z6%&pod*4@{?U?sL+V=?;O$XWbJnHseYwl^(X`}oPDB71b`A6bki9J;%a=O~~D6ebj z^dvchUL?{{1^BkEz#F;{AF!Vn`Nk-p!%NG_`F1466z{kX?=BVDXw>}zvH3TNDnCye zNmso{$h~x3Q3&#j6oTM6Nk#iJLPf_j(TP8ItRwTv&n)MUUTuOxt_b5C#8>dQbM;P~ z!&GN$`@eD%0BvWOkeRnkNAhsk@HGou-+dTJf9KuDy1jnlKz=4r(Q!xQe!cgrWyJvH zt2T;zuV_oeX&GmR-Soqs`IV2Fb26?8SA(ebhrt!KMiTauVF$z$jU2da&+*K_Fw=z+ zjPui}1YUp76=r%F&X)d;{`ad?tmk*!9vgMkds9q>3RyoQHB|YZi#^^<@?kk%ycfx+ z0D!qyAL7F|sI=bUqA3SrT4h^B=2hX2n@q!(-9A=`zGRa zk=&)<&a?3wnV?=+oMBmZ?P>*9Z~CxeD#QoGHyorDaemof|IXZKL7OBO1)AYdRi={tBnw4N! z=*@yuz{gM^L_i&lPG4vxPNPh)hc`AsyZDc<4ZYxTYks@nbm!vAaeT%241opbnvlL< zH{F!x>SF}u!Af33$Lr~okmf*ACwf(4ad@b7D6SB^kUGo>cFa70@2*7{yOxb06M^(b z+{ zz}LX3p$W92 ziaX&w9V&P0!y>ueF?fn;U)|Ce=T%E{l&Gb$+!c02FqHispH+W;DEr!XZ@;2fNl)70 z;yB9htWLH%t z7;Gai(A%#1u^wW@)96CEr7Y^{W#9}*9f-7Go=KmEs(O9PL}qiwy+jE!;O%Qz5f%sKW@B*Fect`X zaoOY`xue5rPl5egvaHGf z5Qa}wY{z5zXo1lBws)q<+SX|m0T-lGExJV=>fgt5@rs?kuHKL z)z0ThXzZ)n`BYAp|I#&*5~nyrCLFh}twdb?ee^g)VtO=S!E9DR$?mhlg7U7`(H@PR(R6$-jnS2K~YskFSpnYAj{iialiWbgDuQ#E@o1_xR^ zADc8ip6Zf3&L(zl;RPNt*2X_I#UU&OpqxpfA^EVr!N5OMLLAAWe}#w;Ti>UyUF^tX zGsj8oui>~b-mI(!$Y1QlDQ(0AHg`C-H?aXczC~&Bg!~OuYlUe2Fjx!=IXMSEm&3UV%dnKAGVhKXgkm>DvavvuJyqg^ zVMQT!pbojjA&1VTk?<8^16hQ}ZJR8?=-)JY; zh9`XT#Rp44mCPj3QcR3TXgUnhVF>*dbzG+ZtvaY(ue!(M$`<&@c9vDns;s9Pm<#;C zEi4EoWM2LO&w+@<%ZJ&<{~N4H4ALHD+%FBMRuExwQz$2p9fGx7jOX#uOYsg4nzZyC z$myy9A+qO93-}pcF}C-?tt-A3<;N!r;Vq#M4Y}O*jh)PG zcK>w|JOiT+`^MOF&Mysa+i_Fmo#3VWL4<=G*G;!I=B&Uss(<7U2AFe!kT=@r(Co$mNVS4IR{xL=A$djM& zbNgH5sX|$f=~>ABQ&*hNyCBxQgrT487ym?W7%?88y9j}PSXzP!6Plz z{KQ}DhEUw&8}w0?FnIe%s(V{7hIw?Zs18=BDoWYnepb5=n%!BKO*Lh&P>wg`4rV7HG&AA-P>j#>3 zW5^W0%yq7O#g?T0M%nz$WL_v{e2ZjfoEPm{XFc>?>eL0CN`tI%>30@O2Nrkin<%%u zbY_=oJ?4PQ&-m*j<@%C!qg(K^qg{T%uH-Zwq)Y;e&EniXntE++0A`14Fr`Ou-C9gR z$98D{dmi7*oyBI8f^D#%O+X2}j=URUC3qCL_eqxcwe*er$Z1%g7uo*2Kqeb=`V zURMWxe1^7)k1}Kc?t=9rypX`tPEK{IfCbdep|cv#$}LPcQdNlmvRs5$?VJ&wNUcJ= zHll1V&m==Ndt5jm+<`~`DBe*;z;Oi5^TF+L}_{O9`4RE#Xj2OrEb`OwYsmhHm_7 zF-O>8XV!04n7k8HaSnc|Xp2e}29R-%lD*yo6HAv%3-<@OQSdKvPkr&o8*K>fF|N&f z`>>O2-ttT8GB01I4f0e)r<7bzUhe@uS$L?(e|WM#GhdA8C6Oy%b#7r`1bBD?jZ$%) zEN+h&BaCKK(R z<0d=9TIdrHsTqyqdvw1CVbf;&p|{Q%oFwR^W)#04}l=qajLYt8|4_%JcgKraHfbqImc#5u91ahTpTt zyC0+OY3|XMWlS~cvjA%?DA=E7cv97-$9TRiVV!fZ6U-k-|}=EO>Z$UbK9FT!6n*%zuU$6 zM(N#V**@}M+2QEG9M}l{8;5%S%E2eS^S>B-%c!`TZd>?CNRZ$bAh=ubpp7KBJHg#u zo5l&j-QC^YJ-9dS?$B7ealbt8x##=t9pn7C{bP?F-8IIpnrl_n-mBJ{6S_MT8WvXf zVL(Mi<#?tL+4*4H@MNL#bhA6#`|*ae?R29vy`kaTN|UWMV7B{va?d$XZB59NUm=svXB5V@ z+7o{xfH0LSm8pkegmA*F-lbOEiP<%0EK6~ZoC7ITT5Ea5r9G|~h7$^3 zwt(WHW6eW3G+Ji;wn1nVyV z83XtDlf`86{%f2(F(vQy2U_GZi&_27sI+Fjge>EY8QF)3Q;F~*a#j7Mo+mk|2~7sh z%UfN)jyCJ*!jFKK@Zdx;AuB9jv-_exD%vb_-zU9M9lohjHC#`wi^K6iXDVuvw|qXk zQIYEHHoFOjdUYOO8^TprDnnQ_%|d>h?PJppku$PxTF`9&E{;qw%Ylv^S8>#-p}jDH z?L}*}k6ZxCRjQ4qL&6rJJsDU#Ql3s{NiaLyk9%f_I(4AF%jjgp#c@rk%xiU~(U~@_ zWf7|B8s+vmYd`rJq1EB#Jsw)N(QB4TZ&hnj)pS+?@ycLNucBR76#?Ws4_HqRr`XQq zY>+a~%RE%bC7^;`f?}ul%hgKVkWfPq=WLQQ7k6XDFG3)r z+aV!ef-&T1J(9$>&jQO#;b|w;W^xn{Jsn}$^9bc2$07~>1IEtD__P}1vL{#SCDH;C z=B=6PRO4i10}gr^a9WkR)@l%brrc^67baK(;!OwNJ8eEwhFsO2pKPBE?;({tL>`U& z5>#r+)qp5E{k9*fE*ulcKgKvRfL=p(_KsyV575v|LJ)fD8apnxg}qk9;vJ>ute*_Q z`0tP3V)Avf!5WR00Lx=~A~`9V7Z-XtfUd}`1&cKJ!sHqWJqXp-7^!82_hHM1uMaX{ zEj2E=o5G{uWkoNylV&_t_0joQ>fp5n_0_IJ*@|kt z?8p#%I{qPwi0=q}V14NL);zWT=!`ag!5FsnPWg)UqnY3Zd zchTEvad(Kesxxm&ztptjlV8=bv7<8|mb4PX@p0lhy))m$7^n3$dtfQWp(5Vjs(RL$ zx}Ra6A(a#R0^q9HGcx2{4wYDLv}N?X%xJj=Ylq%A_Hyt9?C2-exIAjk#3?wrt&)TZ ztgu^&`gVwUn~?GZts`_x1HF309 z&G`dJdyKQRyd0n2kjZ%hHu{S~!AuiHR&A6tq2E*5U?NWp=x^%xYFiUb6U0oi-#$@# zvx^X312g(5(tUtn~pKUG63Fr&a3kH`0k zLMj-%y^@E}2?*RifXEp>{QSuz^uuG&U0GRW2}B-Pq-$SjKFit*$5Qw7=$-+d+@0G- zJ)K0s8WP(!95$UF<;+m{d@tY?a~J>7Enon{B=w(WW*YD_jPjVA+flB9whBCds?!`E zfE-Gt!#^?I_bBOXGbZP)Ewat)N-9m(c54t(zPTL?7n%X^N~!;7X2f@ut1C;_C7<}y z*MT{ZgEp$>Rf8c+{X?uDsz+TK@=~)Ahxv@m@EG4fuD`WrV|4_fL}Z?K3BU(47bkmZ z`1cv@2p=dy;L$aHXEP9!TVEumH3cecs!R~BNK~?=BO|br;Y|-|&%xlAok5Eyt-2GXkf}W8gYD|9_1Shxq zpc#DX;s(gu^&$3MZmTHi7Mu2REyAzp4!|lnCEzMKWyMUwt4$s1xF?a;DWr|Kk#VD& z4-ngL&M9c~gz|%~{)|n3FPlp5FEePn4XwSq8m-tpc~nR{$0jyY3PjnQAn_D;D$i4#f<4c{vHF{HYIyg-~pVVjX~hF6}nE~8a7}l?R1h!L~D0DVY~<^ zA=&C6JSWBf=t|n#IV5lu=}6@`#5{ABf3(5W3wvLj)a$=_`P_s^;?}^@b<+rI>RTO( z3Sc^+zqycVwqvRhY6;V1j1J{G{3fw*k;_^HSl0?Leyh-YYV2(aj5-InB`Di|U;=#d z?yAY{${xMUQK`VgyJ0bsUib9x>O3OO9EwOqUUJ>~P#l#-p@1!1T}2#nWj$q;oMpaU z=A8hU!!wfLVR)K&cshu{^bwfri>#6Ce;#mYD%gv0+hg^-CGML$p*cUAmR;*kaB}GL z8U4L7RV_#6PTQop=UN}59Z>=YoH>Y;TBagh?E_<*Hk@OKCAKv4BpgZJlAj@7K?@K5 zC@0y-QL8m@L!lC_8pQI!W*$we`lNq&&qd%OZ5uyoTwIMs}b?|*)V*I;xfg=FqUsm=2b>2orrT$`6FI>$(ACH!5-I7{z zkEBzITax1XChfh)uYg9`#slB1*RkFf{@iItt22HY`HYFON|5{M7W%!1RMk~>h>H%6;OEtbK1P163W?oAv*>W&Z|i9YVZq~8r$iZl zBdtY-xR?}ak3mQ_Qi}&Ys!6Kbr#sT^gxPxs^3zQx8cwbR2d7sitXt#dVLc^6y0JR-6xz4=8^;AsPSx_z7fo6lNg8a zRkemKr2ZMU$O|~-xA9YG{)L!FX^e>E)Kii&MUdeDMJc$g1kG~gJSrV4$d7}?-1uQ%I-dz^u|;sD4L}dBpBj(GsT<@!+#^i)Z>k@a z<4x;&V$rP7deYKnh-T^f=UZTY5mh}ga|0YrBk=};h)4VUSFyif{qAn3j3RmYW{oLl z5|UhaTeb30sKC}f@2QNg6m$RcnTf^WI~TNy>Ieu15t^ag@mv?~25MXRLlEbX#FB!j zDyt8ASU>{{d0Hu)u_{F53_H_)7BYKlnCRg&Soqc)s^XP+;xDv zlCr^|QpOl(6~eQ2fL0KVlII^+d)$DoJe`a`!NUig$1CG1!)^4$TCK`zR=qvlynS}9 zp&Msun3!As{xP}+8Xp|la_>q+u#rx6;6frIDEWrbB> z^iJpJ)33j--`En3e_oQGPU_Pa3QucQdCuzkThiNXe>&9-5Q^wqR}3<)soACJ`XCC* z0hT1yIdOoiNE(Q*@VT3;o(g~Eo71r=O;|EKg%pl!p{HFRMRiw&SOG0Q50QE3F2<56 znGtzg%vTE76-hhd?Fu{8ldO5XqBbB}Q#{2GY9VmvnHJ_+m>^<1oFo zQN5zjw@uq&Z0zOx9yd<~u7HQA4sXYA-sopWj-!_~+YdhzjGSQkkGAMe#_j){xJuY- zfoucQbA{J<`L?hYVpoGVBon@DHP4nYCzUbG-L_ z7aG&|C2^eCA9^hhV&P2+4dJG07CKKyQ@)7YD5rP6r|TaL)aFV5KrhOHbv;Mt%*W?3 zc8VDN!eXa(we8f2NuNIyyvay%8`ZEaRKFf}boTtp-6F-kx}6@|IP;toxEQ?10-*(7 z9x5Ly*~8z~wWC13=tRe9!def?VQy7ZbWR6XRyfEi#jJ^F4^Mar@xqXm&tLQs zKHXE)F3-$0=8&Okfr{J{^Kgb!RWjqfMpBFK3av9}?boKDE(XBEJhQ}hRgXvg*r9R5 zR(dtE0E|R^=aLg;KOORvIrsTRh0Nq<*z{A^qooSNTI%frlVtF-zJ!uhPUJ zq3nLUw#rw@!f^c$i7sS3Oi0bs!r!;~uB;wnFbp^iwg0a00E zXj4Lr5{E6jCBs&Fb@snZ7b#hfmKi5fE=B(tUc;f+4AJ3z&%gK}+vEapKbb3*CIQ;r zqRo!K+ZNsb`dt((nfFGoIGe-QI=dsO@_3kC4nJXaFrcu$iCd`?n~~%)Lj=(iUq4hW z)l5~){$o9<5?NltzaO2gv`$#!nJaS(pUGHqB2M->7&mx5(%ymDinA+yWuU5xRzhm2 zZ=BkYAEt_`Y&74g8J05cFP?9R4h!VuD}46?^E+Ki+L+N)9K}N6JVRrK@5CX~)5rtfnzk4gHj3 zQKGq?u0fY56a&MAZ1lB^(5EC zOu6UgGWRJV>SLd3@Jm(6GhkVsUXGM68~?bAZwo)?ow~X}rwomfzEXaSF%S-sKi zPL~gi=sO#%S&p;v%Juqy-ZQ+V`c<*RF4SsoI_w?N9Q%lwnVFE#P^b&dY~-d1gs=>Y zS{j3dq{_~!nyHemzgy}7T#G`K*6)c8ue9}3NF+qt>h)@oz_p0Ro_{WAOZ)Gd7j(I?nOYDZ<&gMv0y24{*;ZnN&)Q@$-PvkF!QF6s6G4UNjmq=lr2uO~_ZG2C0 z%hj)DXIIYp2l~3-r9o{Et0g5R=^pSMm_vu1e@@~RW*;N7En*ALa+l8PQ*LCwF=dmA zPWzIP?aZi=@akr0w1jk0iqBfyf$lyaxPJYM7XbNX`qKAGJl;OuL}=clKyS;`WJ>hcEes+3t?Exh|<>N!?J8*93i zRPT7$w4Z89oJ*~TTxjkRa)k{^Bj72w2ga~#>=4rBsp32YLq(HG1zW>aO0~Q_q#Se* z$g>3TlRheT+g)p85iPpF{eBSZF3#14vK;ni zRYhF`wRv%cpBP(+3W`tQ)jFSrL$pV;@F%i55mNt-;LDq}7Obf3@)A0KUdI^}+Me38 z{OY;qC_k?IT}y{(Rq!QZKU(m|L*Uq15h8hiWt{Di!B7-&gZ<`)O6F*Jbr-~4+x_ZD z35`_nseL_HBse50>V|nA9v_A0j8>EVo_6r*TNrO`quXULExnQKZosmz;sBN#;}^wV zdbQ=e10~uc8*V_p+8IZ2e5p#&w;!55B4&S|4xcM%quD2QQV{82?1I<&6s<8OosdEIW)M_$?1?Xxz{=(SNr)fcC(pDpr{S@&D zn(RR6MK^bd`9=Jz;ar4mR!|zJf6vid$p3!cxgf)=(QeKiMpY!cIapW}ZF{&>V?}Ci z(=5VMg66>J!t~X{KRzjQ zq$kxZupc(wf~TAC3iEz?ReOCXzK5JnC`1bFm!#0Sq%to+Nh#>GG46)hWc&{L)nUCa z0F+LSs~ocGr&>!9fFX=X9)JNVD(_=SeSWZCIKQYc+W#|o3)O<;qf~o`fdq9#b`SN7 z)JierD+&9C*@liDj;#}*K#a}a_V$*}iFuG4_K$l&@qIfxR|^BO=}iPM2p4tSvNu@nvCH35>28Hf zSDsmK^hTkJtWKJG#%NOM@fq|te0ZCfF#w}kzKMGHt-wxNQW8-l7|nFHNREnz26nS* zf4LX00DH?r*Ka1|cVpG}eQpHNa|>twCFYums}7qc{9UTV#KKnZW3X|4nHBz{*RN1k zFhzJeERl8l&;A0cn%kiY9$N83#U|jOay6<(ZI__wZ-9B%l}P%s(;ii+U3{ACL_Q6S zaWiHMm-5clwBpvtIY~?g%}7Dv;4XH;hA%;0G4{n#@) ze=k6xfy(^?>HQoGzT~Aj3-bH=)U_#F8qWGF;ZHg0f_)KwE(?rke)g1h|4DXlh-+Or zE7RGj<|wL1%&3CUkEl=kH8hgf48kGZ;!W>h>+PV~c91>nU}Eeos&M2klFF#gtnhjP zyoc>mQc(1^ClDH3QS*b)o~o8VQEscXL&x(AQ(p~*JX}sjx2n~rJ*G|?=!+S39k;P@ zq)l3~4-W<5v&ozeM=dlr@b!WhH%KJcjt-Az^BDyMQ{;XF0>0~W^lY~xekV4NzXgG9$whJ`PY4`fp$>g@Vf2a zu~`4GXmpAKNz4m;@_?4cD(!*M-aur_xf0CJ;d3W+{b#~u8kqmpvk<`S{C4uV&oj66 zEl9lb`d~n;(EU7RL*nbs3%X{M7!8a6=DW)&UCeB*SR9++y=zNiuY(w+PyNlp&smH3Z7~Z=@+BCDf{bO!|^dIvD*bZpSV(!*4?U27Gq*^fl z=+E}Ia9D*rBDo#%auV5M8n-=jkK_M`Rmdx%47A-nuNi%|D|28OBb?S^FDjCT(_Gi% z8*@Nao9ki6goX-n@|V9Im~G$M*vQa(1Vd%BJ3qDGnts>XVMEIr?aGyZbJ%tr?(fY1 zZ2?5`m(Dfjk&Sk7jA4Tytm!zqD`&hZ8$>8 z17ZJd@zg4`Zj+mnZq4@Y`Y>EiD}Fp(KT-I5k6;srf&pjpby+u!5L(G|*=WiKSqf&* zKT7w%rDR;O(Qut2x;?WV8_di$`emD?ASQ3}Dod?Qq4}kL<5}L}&`;jaqMK#cieLe}s0Nc$b?&EVK$)S7?}T`wR_I46-9a>_4sl z1FnqUyF721<;5ga3M|+n#Qp!h$J4FkFP#uT$cKLi{O>q-z%IZ$>U#axiIr#Fcd*Ta z38l%9Lb{(FEufIM=G;=m|Hp`5e~9M?1ipa-4*0*3`k!G4@lB`#PFB9e%D4HJJ<=Y{ zn>91dNP%S9BTi}lx8v=ABq=k6*M7V(MY=%Zqx$v-4;+kvzjV)%A-FsCrmVlDo_DRm zN8^zCV-_FVip$RV)YJ=LpG+KdK)cZ!Sxk zmnxgmDL0gWLhg!NmBEgGad4PovBNBC*a!(he0qL{zJ1W1AD1)il+Wz2Dw!32t>xOk@7#TxL&tXwBKsrX z5@~^dv^WUty~(Dl7GifMZjTu@0rPFD3wS#$`Sr;vrtF!w%4%7&%i4$5^-&qf{{r7s zl)cXW3L$GfckwIE$;r`PDLKd$K?sc)Kc*K2iYQ0bI&H(B^1|XN|C|!vDL6Q9PjP*I zVUM0)ZK|_f{mf;*B%x)X_h}DhE2?F+wI$iTzNpq{-IdFJL!u54_uJjS_B`XyFZG-0 z3Ukiio$+Rp2H>fo6bIHgc%aPA39*OBskx?r`8&^9Cq;fx3~0;r##vjV!3_|!CN{iX z3{zMBHikE0Ix>oCvzis#RQj%UI9+95NTAO)9zCE1Xa^aGD57gfpcgs0`7*d(=dc7| zaEl-evJ~-3H63GN61*cKf3ZxxSM2U+O*w~ss0IG>_;dOl^h2Xg=7s&XQD6&s*4N?} zsoHk_!%duY6XAd7+!KLoRE5Skx_$Q`OMCS87230T3vZJRU%l^Y*!m*6kiPztEOh(} zluLxhR$1G_QwGo&S}hT2YM+PRWwk2RFBn5hApv|tbyzlN z7*z%^-f%m}cAw0f(RJ{rmFMpm&jtyMnsCxx<^0qvNI`d;pq-x5_SuUqJz~SQEfeO4 z(F{iYIGicZUGF0}22db2*$bYIc;Q*ObcdwOV$tCVuVD}q$=2~XmZ$_J=;Jike6eTDr;$WOj`!01y3V+Hg~!5m_tHD(!AC6Y19bsaPgo z(CVNOT3VK7LB7wPNx7YQ&ot@dStX99DpihM z?7@+roA~0BH5awt9hX~tekGDvA*j)q$O5}A{0U1%in!bRP)ZL2OCmaYx9z!wC1l}( zFw)_ewdPSfnqMcUsE4k@$=_-;!&XBC(TmHx=&48kUF94(u#9gU&sE(nX;#oCN#GT7On|89WE4znM z7C6B#JtfWUu+ti9DxP`o(NZ<9dk^&UGY~19htR}PWAU)ymGvLX=D4K&B$_%0WRf%d zUKVSR$=Xo6GEajWk3R{?_f0_ox1Gk@We={8i}#!zzOU&vvNz)gjutlv{4Y1k%8upU zx|8P5q$b~AyRJ^|$?VY{BU5m$f93SsrTs~_@0?gm6=FA;^1eED60-NcA%q@#L^6X< zvj$G0uL~}`Z>PH#FTe7ovu&Evcs*gYIJjcB8&z%?8XzIwe8}MdN%*?#H>nCeFmgx5xVxW88sqH8x(`N5?tm#R{yl+6nd zV`F_k&-sTz6|u-Eku2&$)_mU{kH2vI6$wd#yWUITiqrnIYM<(S>5X3`Y=TE=!*0!z zXuUPOlNP%Z&d#_=^u|tmz;Ef>#Xsa#3hLVAYBC{!NO0B9;&79bY|nQU$i-BiWmZr$ zj2*7L$su}I+Ml{6GXL4wqFXXgb#EB~ntLeksc<{94fL*%|yUwO5;H*ied(MSAo6>a?6VlC}Tuoy8L*qe;#+M^B108I% zk}x7mv>9!?+0pkqUL7H|nnj`Z3kG2{E}kQ!8HbT44(aQ+*isI&OJP)iP}D;zho2gq z`UA!o*MRxBi4ZtXA2f5+HTXeCV<7m#D|qt{dg|S!YSEiF21fbzrK>c%-H0r{^R?LJ z|Je@t+jlfFo&sa%b&WC_?|@q(avV?NPy4O#(mOX2e}C*>wRbtGF<@#Y&3Pda{|V}K zxgZgd4r2^v-@wx`f`LI@ zkFh-6Nvq$;J;b;p)JMin_y|{@5WtNZhhii_KLS~wCrlzb8xu)mLl`Rt9H$hg(8 z6f!(2wds%zgdsS%sWZ?^ar^YPQ9biqN=)uMjAr|O2k>0TWDz#MKOtrA1$T+5+?mbX zoGeQ0+am6gZbupS@Bm?&z!|_6SCUIcwy#^Fr8d|d0WntKIdW!R?Fd4B&I3>RnG{>_ zAl<5LdsAjH@X)?jeKEKgt$0NJ8lmKh?KzwgP3iI2vg6Xsc+aZKCGo=cb*5RECLF2T zclK6T;Gesaj*1hHxij@IvSv?e-PP6fyHqzUh59>3mzP5BCzNknR0zO-m0+wZl6hrQ z9Xr0wJ;Z7$IBfNxZa)m>ZI`DWWxiyEJ)zA_p|Q>k`E|k>xoJ+Yb%jI$^500ffsZ|# zE>Epz2z(YoH$9pH;Xf?fD9_wD-1SEW8=%r)Goxronm;~d_SH27x?c?HKrSQ<~KA#an_+0iU(Gsv&?7^EP7G6Z~pfv#LwQ>#MbCEyDD{P`@;2>{WC0KP3T^|GG{XJ zH6XN$uD|r%XCsIUC;xO@@5pzNKEh2Wp6~mC_dEUCD?&@NIA=skmWw!;7{uIyJ|vVV zRMughF8h32)z)Ypi?Uahk`_DII;y(P%5m-O5$MlE%$G{-;Hg(-+0~4uOuTEk%m9F* zoDZ=j)zHQ44qFL_-g_-6ua!r*@=Qq+&hoBnnbS3Afb}_XQG@v8?75vl z?aSlCj&x+#VJn{A}HFJ{>zIlGR-2@Lv9n9JGS3#<9k+3*9E=fQ@d`>NgxZ6=2_ap z(m9!D*=L?%Gm=ZA7rYju@NmDjoU=vL=U+({ z?h%J2mInSp_S8TLSw38- zx2>J(=X9i#fh!xhy$5>gbqvW$zWvZv44JDy7cj|c zP^Yv)9!hCe+ZN08b^l@6XlJw#xX+(t7y8JjD5yY&$F1<(=S9|^2?6ETLRv9N!}%)v z33%ED#ZH++R;{;AKVw6KQHk^~XrK`fTIDP|*$jRrtlNZJ;mgiOj&W%*0rR%BIEwR!d!& zfeR=bSK+&Zhp-c641@$}b_j6GWd6#q)V{BkQU96Ew(Go3=&#*(CQHjp4tDOEdiPC- zi#bCG?4Eci@Z22o!#jHx3tLK3X|qtfdFeG>DbrUO?Rj)|U)n*vm7;?ah|QdT8<@A^ zyEuStqtW@haur-cD8!BQ*j(>(&mJ|XS=}*mtq3=FPtSZq1ubp%B!v0OCO34ZmMOb5 z;`(x}rhCbqrr$8Y@o^P+ro%T_sYbfmYE4zj$&h&3a2?Lyy`FHE@qJ^~W(W<%t10(x zTmD+ojf_;xRdXp@*M-m>2Wc)IEbqv?DZYKJHegL>8?rrkMmSL}l$GM^WcN3T=l)xH zGi0l<^%pi^v(%bR)&9=&>BquX{fVq+$Cf#`(Z=>;#aqE*UXUQ};snjsnK&_>E^5-h zZ?FB=%NpGFxSVgQLn1m>tL)cob& z7ln^(0H~)q3|c*KJXcY$5~P^d%MxRUQe32$1cA(#i$r4aLY2ZfBn~JW9LQZOvqtKO z)hsmm=IRspKRVU9Pol|tSnE%tRcZ$?QKYacWWUo^=1=Ye94^%f2ClVAV;Z;`eqt8& zx4Y%I+Ep)cvSN?{>FVx>A_vcI)2qglr?h`jeLKM2u0We;(G9?{8URGQ7+scdr#3P^ z>Yo#$pv5U;NlnUjT}mvcItAp-%jn&@_nav{W>&KiM;tD-mi}-C7rYAY2~7>s9;s8sSi^zOUJgeSB)|0m?^4HA>%_ z)P$4?l-DO2pA63I#PZLz%#H6W8O3YPifQjW%y}Zqar%8;$YzC}GDwRj%%Dxgr%Ux& zNSAo=`Kl^mK?FRV)*r)fGbzvd`HJ3HFf;Vc<5WvNCiX?a*3~IByH4;W(CrR0C_`ZT zmkvfN&HO?(@aaFtP1jrzfaOWFYp8iiK;KH`eJHRih z71A#l^?V@O8dGqw7n>2qC7$i}pCpSs<6R^cwM;EjicXnZCtBA1M$eR*KCqvdP|c!F zmeoh5iu+>(pF2l}aCIib2QUW?qe@iAkIy$?H~(82+riK6;Y!A|Y`!pIw8B88Tw(I3 zxjvtV)IQmVZR|mC%2?b$xMrsz99YMcJ_CT`yh1PT&HpQ#J9GO_*a+lD~4X+mu>U=y>L7pqLnxX_pe_ci#Xnhu52Sjw$n>e?)4A5B1pV@X!tW~)+#WPYX z#CLHDyfO*3=js>9FE%H2wjl(YJI=0Vl>7gE0Vv)bgAuk%W3{;7(a-->+y zqRvK(PB$4Qv_V;olxExK>)1h)d&YwbnF_>c{^qUl0+B1|zCg4arAK%7P7iL5Ci;^X zljI$b)E5R~qQ%g#G!$1?@LfnW-UWPd=9y*T@kSE^%hB+72<2!di^=`G(7IA5Yj?N!<_C8~)d`VH`L|iM zrlZ~bpTWzMqB$!F$s6iGud6P-PN6L0!*%s=vB^VX^A3I;Qo`p=PRm!{sgo&c-a01w zY}EC;+-HRY&*stm*!{HG!V5STYpsaq5ebXyIaNXT^LJVsxbnWsWSVU>Qfi(|kaNLgW(c}%OxYlAgCP(IrvXWa{CHXQ#7v{#1O zX*DuNMNhQrbTaEUDz34^b3*!CIK_^=eBFiTd?4SNORgF{FEgutOJ2kaS`xhdaE^w4LY9Y4+7bViv6EfvC^E63Iep62EhM`D0Kel*+fo97ZbwI z+gf9XMf<)Sy925c_dbQfdZ+LXhO6N0jPwE*}bjElr$pR4r(gCTjV4m>4%VtNi`& zvApTo5~e8kg+z7PJ%1qgGwgG3ogK|?a`wQGW0F5$f!#PUyuIDEz((FzdGg$JqX9}J zuQEijO_iQJX}&Gh(yk5o1mDkgc4)rBm)E7;rYJG^38}JTYT6J!ivW zCffa*3s<4t5!v56VX57W5p;ANp^FHY1(8^v+Vz4$RV#Y#={2YVD8qj`3Q7<_RL93! zJG`x$%AIIOY@0!|HNoQ;9JQX!x%7*M%gm(Cqo??rPQwVmR7);Ks2TLVue3D3tZ zHY;<*ctgAQ!dd$j|*Xp#(PXl zhH~TaPP47a?#H&XOlr-L+%CM;eXfJ+q0XR<%gpP5y8BTUvnsOSz?EZr$y6?JWx6Vb z`-WDUH%I8ZYiUf3_7L-pi2but(y3+&3 ziGkHVVdXz)rGxeCeVt}%j0C~e>EIf7q_sz|I{!>PQ{xy7hyA#j(_EQEr7{6fQrD=a z&izKT>8|l0GnYlNTNHs*3Bc#FKQw@zRsT4IQgv5>Y~}* z(14q-Im~3+a}z_qix-!&Vx0K-WBA&{-QKhL(LyZ;r@#E)>i|@o61{k@cR!oJFIn+Q zx3C47$*CMKO{=+KF`bS~AA4V^p}KAS86(YhAh93yiZXR`pfO`mEl&}?zn)j%yY;!Q zcHjN_`yUPVsvjQxkUCh6SZ;kEP@}IPqO-lsKfh)KSE}NrC4t>u8SK_FamW^9vkNM& zQ`WyKjDYc*UOEzn<)7(X#eS`Y*dr39ehX6CEv|Fe_5c^`7nm&Tq_|8;Es~$|Pd<(G z;R`u3GcMTf>xf!1>>=&!Y)GLH3WnZ0Cp(LJf3)D))r!Mw{M-=cWfk@XH&^0KZ$Mb9^Jj-|JvleU_&z!W zbaQ^y9NIp{;4eV`pX9VjV@SuQ{fQmn+X|h2`8wKPaK=VPS_$dri}9%Y##?|}EFQ$W z<`sP`=Ew@a_+4*MKA#K9hen~BBgK@T1gs1huO7noA9t7Bx8Az~laHlCwl%KU%;Zv$ zc*o+nDgF^Mrx-hsGhNw>->bwJnHJM$H#`2A2YakPIYg4pZjRYSV*Z4~Qg$;GDVFKE z`$o_{Gd%KDyFM$k{h3}(ySO{{R|91P31^h4%+Ff0`%mE3zL9K}*hYXLaPF1qlHiHEzfZ_hWT|97=Vos9gC&) z8|%LJuN(ke0qsj=btlmVk&-J6K=xS6y-XC{$9;ZpZahXvA%Cu8AdkqPM_xK#4XR3g z=hSFaKl0-$=stoJ%8?$OaWEIk(egZg%G*KmTLz=le}D#CN+P-53KZd?G13=XiM^am z^5ZIOBm$o!^Q_$lr&Lc_;Hf0|yT251H^xL&*r)393eOzGUOpzYkYwwJFq%i;e{`sJeqw>tMPKi6NOhQ zoz7K>Bv2osG<&O@T0EY{LS+ODQ!2lwuQI*)(i-@tHl zei_VjNuTIO|8`q9{pKAsrw4~zK|2Qh@UarV?r_?4+{9eA&tnY;*L%=g= zP0mA+6Si`w9>1LYO&9P>Yco~FsdO;O_2Dl8xp&51k~f$(e`^e ztvIORWrs;;?Y#TrGRZIKisg#G+Js!^|W|QtN`$O6`c5)ixby}jFBo=VxKHns#fE}^uD8Id4gEv>*9#3MP2JQ+00 zl93k)P#*UrX3)v|-8M7m207$w@*%!oxhibCbs&Io2##dUkD{SCeWR4j$2$Z}HCC2w@^_-R400R81}F=c6*^C-GSS7`hsJwz zqoi)no%eUROftvprjEAW;p+M+lOKU1hK_@Er>orVXU88~MiUE_1-XTMxx%Osu;&lV zHYiH^6}i9k#6pTFzasQtex%o8_@w_xzW{!Ws5D2(Qa*+h43&vpu)a3L8!XcMJYJdV zdHWDa@s25VDdSA*cMpznfIOtvzkn;Y^Pw^hqMwV60*(5a2nYJ1GV|`=BgZ^ujU1ev zCQQVi8X{d9JJqxAP^~&c0Y1CU9NT-=Fhn?yL~8Y_#)#CqEEk|p=XN?#qjGr9;KqOo zeys(Zl;6u~<_nVk(_d6TGLz}k2@7! zNxb(dn+hb9TZJ_~v0EbPnORTTClL=_@g3Kf z-V&&@WFvsb*NdMNm3U;ZvK;?qIo<2w+(f=CSVTzu+oj<1FNMwj#oK$oHPvUjVpd0Ryfcy=`F}C=iZC?wqAFN0HAA&I@0fWL!Nw+658srE_Oz;?nK4;KyqH4zN$?%!S z;!h2a8%K@_dWDPQlY`qt<5%7vnI0N5RP-zveeP^Z)qe5ZjrXn&ZZL_ZHTmRFPG@sE zY3K*`<@?AXcRSNmfaHhmql>c)UdIip>%}`+k7~ZuLfJ$6N!sjBZS&-_U}4N zxlF>xNY~b0kPSY|_Ywb9k7w&S5KH1`{s5T2jS`bt%^Pe2w0fH~c-57ye}5h!@%wAr zvd)D=m$?h1(6Fw3>Fuw#yi%3Sk_-ZW73NA^;p*BbyIsJN^$=Scsh!ag?a*)_tA2(b zIW!p!wOrR@b_yyrW!V}R^uv06E{tkv|9s&ycyxUMY4qZ(*)-}a42&I+0$TZ0F@;_YFO`Ae+7BPdUhFsni@1ZLXJaSnk#vP)e%Q%}+|`$e$xG$eK)?TKH`lr#tQoRdQ;NRpgG1Zbk$%VP0XX(JMcDkwA^!1g%Mnb zuxz>d{pG6bwgQxhj2XFr>k*}%(@a-afE0zpslTertRIOJUQHuD=TI@XH1a6ZJ&vEf z5~#S?kM$MF_ha&x1vW*FCN=fRri6L=A~DP9%#9cCg;@3zGfX!oR%W1o-xK!N z7B7wqvX(S>}TYXl1lf$1@qsmQZUQ^i*h65<+_+|ldWuuC` zm8>&6TWGw2BUa$%OVKpp=w=VW+0)VNqb3HMp+>wWWL29uM8F7WP7d~Dn%rzVR=NaAKpI?}KyujwISmIMF;jgZEhsd<2HhZ+J z&3+N@{6Pd;(z3cPG>JRD7jxNH)(_Md5S9a}o2vbN0_ggQoph=oqC@cNbQ3-3GGHatgEr;Hb zY!ZrBNIkBw+W-ppST|Q7Isb{JKG>^uX&Amr$An7TA5GufNt`6eo9UNrqd%?FIH8A6hTM75fZlu)VOGv zjw2Sq-`Vn607~U!QD$e{>XBB$%{O!zs+6x?c)!Cn#W}iK4!L>KWDLMoHX_84E*uS(Y~Gcx^3@ob=-#5bV}@ToR)KyG$kusjTuKVz zISUN~&Kau+x~Lmz^1ZRVc|oX0cZz?JPZx4OQ%qy2$**Z`EQboAX7bKFqeEM^o_FSZ z+q{nd%!f+9h$D@5#L_!EFzs;I?{wUAk&aN#;>RNw*{~MEprzaK>!rLoR&|DcBO!=$GR*5UPa0fmWIH(gP zxa?+8A^E-`5WHS7tRdSsG5)mQ7=W5gW;$?hDV-iG;pX>m(10_lP&lBx=M&?>?=)PM z@C$vL?7pGCZLB#or%?rz6_DJes;yZ07GIeAe42`?{L_ZSFy}_lI^sS-zQ-~VdFPVr z<3~TD8Z|Y)B^1kJxGWz48BmlSWaCJSyGC4q*JA|FhM~HW61wM94(eH+jxUWeA3ei~ zWLQ}erdsqDS|AZ^_9pUaQ?1>>Mt>VM>6%UGy9!Ph=`$Zmr;2b4bTC2c%+%ANSK6X* z_5EQtzutX>VLzH@qpbTRMLWm3*;s-TE=6C|lZVvsZK~*P(fZp&!&a<2%A5gHJr_$G zpgTEQ4Hn=QFQA*yWOZB@9SBqNFz6_CDvae%`*_fq3_Hv}H+A1>&#;zRiEg5;4^U5& zZjR~UrHfWF8HgG2LfetCflD{Ta_ff8swU{UqNd*IC-w@b{&?tt`?c{JP)@~=7BQg| z-S%!vP(tV0YmS8EMWL~QYk_fW+(IWuHg#(t#RNlYe}}exIhb)E?8M9BW0?kEclf~q zi`$b;pZXyd^;I{wkJOLrS$9QDeSO8|-bwZU8O-{X5Y|rZobF3^V!^5Tc&wE=k_X#^ z?}2LiNyn@J8sN1vsn2rtE)An>F@DMu9ebxGMi~05>U`hy<05j)VYV^FEsx}IXEx<; z`2IxthSy0cyg;Y;xvqT;D`>Fc75mQ0c&K=P{zf(DEMhDoW&{S3-e6lpErPO2zGMaE}2nKT&A zD3Rth%LIfS84i!i67LTHr#f%3>=yT#{3X&Jw<+yyeT&d39{W~^f6sjn>@ccRY%uyP zspx^k)sy7?k+Hs6kA8|5zYH;aj!|t1Dk)B<1HD_nex%qPG;+PfF32DWoaW+xwoyyK zs4;%YZ7#F!Bv@#1drM;T`&pZ;ATb3?DG(D=|77gDDyzodgCJLX9H&+$OT%AabgFJup|+8y6(&K z1g|pYc;yu)jZk%0@&rt1-_%$um6M#F4pS=ETKj$MX@sch&kT2{CSR=h zKGgvo^+s@5{T%_H;_M7csU3cAZp_VP)@OHhxg76`6Nr?kwBgVY@S-VSuF*uJGwGgP zlbGAf87_sRUIK<}k+akJ)vTH>YK2%vQX=$5?p!pV{7L7!^biQ>VL6nJkf zqxqDHx>XwJ+xdf7BmTw-4N=@_;6Th|w7i(L*0Ob5?MDr8QbQySx3*nQFPCQ_uuL(0*g9{)>nL;>1_} zON3SYcI*<;5lNMMb&WK$AGOA6vbhiR^q^CM7!|Rnc3fIv4Y8iC3rj?qKt$L3eVOlp z`SvNzpQwjVPz!FHV2Ld%f%I3gV#C=%!P<3QU23MUqHLk5E7!UEr&7b+9?NA}hl%nx zh3y#eA}@)={6&PPjRdhLHIX}EUhmD8 zw8(EE$RhWHUfBhF7xw+3Cov?^ux6c$o*h`9#w#!o+#M<(vKNnz&ScD<&Spz{!FF9N z3Hmm_n6<5{HIQ%be}80>WbP;Pz-~7M|9*Sy7H2v}-ln5e4FL$E8s6noPYd^H#w)vo zJ_x%G{mq+suo02>`QN?9-{@1|G2pMhv=a7vO3;lkQ%~(yZzWz~0q|CiGarQb#o~JY zHyaK&ROkPj;m8%Sqru8Gd&DJ6kJ{KNFkS-NXq;fEBzrKDR2CXB@HC(J2<~3)V zDP?+(zV!-|2^-?|5rX$u%aq5u&b8XL@j_%hkg{*5Dq52c1FW}^!u&t*n8IjObrjA| z>Qc?;_2E#G>*4Kl62~3_NDa4FiIVq033+~^Qq*nILskB!#Fw*`!tOR8K(1-Q%+8de zp4(#qJxtkA1`#cBD@i_`ltxWqq@hAHv$$gT@0fCnaad2p)LN(K!mFuc2IdJ5M~0;?%BXovnOK2upB7=g zW{$0$@PS^3v*^T|TB@MEnW)7x&%^u8*Qd6H)LNlf$zW+~W>sDl|JROTy;L{T%^zHU zCm>80k7{LB=kPuBipL{^n#~+&4~SY6^)sR9hVB9lBQB!hn$tNSKW>XzXm}SB)1O|j zUw?{4j*U@0!C9DYmf6OW?7S&wiLG%*J*{cnv~C$8@1K){c{+ZRruNoC51OsRhZdLXcv`Te!Uk znz?^Xq*!8seawW{`|Kc3z!VU0%^c_d`p#bGrx=~)>ZIZ7B6p1ivMBSFg)ng)8CMgv zh2IJ2wD%awm$N}(u`TBF0vxTlh9!VtD${DmB68(ej>+ptmq@^EI3;{=Q*V9ck5#ui z#)mbz*^)cY3z0i+awdRVtLyPe2ou;$7D|V6f$tZo_HWP1e7yKUDa>WT+$c{R!{Ogw zwPlN=EsV^%0Q6Eaw6D~sTMK?X6nRwZA-X7w=nfs`-grKy+s^PoG@uD*X!5g*8z$m; zZ}ujC|5%I(Qyv*M6GmRS`1)RHs<&BDrOs>T?B<-gzSbS@`H?aM$RUf&<7Jy63E3&p zaLx6)crIUit??UIM&T5-%i|I4bgn^0pA}xwO>vE6GTwssRj+ipYVuy&J=6=vYnV|q zbQM&<4QI$j+@nvv;wtl#3AMSh>a~4;!a=zoNH|;3Sh8+s<;3FiuS^OgKdb!-l&^HF z$1@_qee-?`G=NrYP1U;LhB;xrz9@vOESpMPT@LTd8-MqLK5nM{emaTYlGtML@1v6VmmfZ#12#oZgNqUPtbuKl6uD?@LN^2SI{E>2g$G=H=u( zrl43{SDP4q<}ZyLal3+#@Wv4mTuYZV9F>vu=Sf!5-=t>jM@ac{gGRT|f2IQ;90+(9 zqC;%1=@Bv`PY=rDVMhxb#nOqNduim#X|HGwwcH-!8xE_d2gDXNug3EGFMM#l|AqPP zA>_<@@)@>OAJ{Sw)3zGQ1xj=EBO7{?g1HIw2^DOw^d6>zi8}DcBhJ6C8Yv36p0a+} zh+15R{&>;FWVWEh|H==8|EG_ySVU@nG~h&=kL!-xB$>>X#CP+zpghNkSK%@mqA)C6 z;_<+q%1H`N-lx9VDz@X@h#_LzEy$G&qddFBDo(;LSuc9s%qB$dvApzTW-$EuC*J*yrb)9Sj2=szIY zF$$=qS~dS|v%YPI*g;hi1ssT9K8h&uu6j%6M z*Mn5T+|M$Hx(*WNZ!%AMX3d{Z?{v1jkOp+uEl=Hlw z!MJ;E-r}X0GYM~4J|Kh$Q3r<|kJ4RMNJri~!woimfm_fSyWgC%K4hZSxLD17WL{$y zfee$00;pWz0*QVh=2po;7SoLZ!~Pz^z}o(SpZK6%6uGuUENvwBtFM!Ipv4JFOM&_l z`lKrfCfGh572ZsogLL#8BGwN^IQz~M9ikRw!PbT~-df{B@;3J0lh_In%tfxMTPz zZfS1Fw2<&!tWdlGlgLv1&hZnfiMW#>($#AMh>nu1yWo`JRddDXfC<{qm zW9k{YD52nTROjNSUB5p6kbYafM$Rgj1AN_bDCl}WX}94SztBIbvAy8`DwL%L__dq- zkIKf}|9?W<3a2eY5Buc|Xhce_ro%tGlb;y<^D%dmoLjMIx>&emcdqLFS(zAvS_gq( zb2rVBH`I~YS>a3)$>!3t3tu|%n=qGRoAftNW!Z(7BZ8+~3p5w}dkW5Azq(%+72@xT z7)}6eg)76=Pv_&wzRk!tb+WXygKy|50#tVP)UY#!-*_ZdAKm3Nl?-n!lYoxkJ0RKW z_f!OxPR08AKr;>z2^!eF5%EeDp=yULpyIRplCPKFF>_87I_ZrF;=Li#-ssJzRCdfm zuNy?J>Qh2PQpT1=Ek+fvWf=*U?`>le)Q}@@UWdq1G6`)AQB@#^^T^S9NVMu>b?~*=L5M$piurRt6RlpTp%?%afxhQ4tU5@ON;5sK8YSfTR z)or$Y`K4^V@2Xe!?Fn_4? zGsfiEGo-0QVv0fH_mP8B0)l+U09Fe`#`R3HhJ;JVn77I^889PJJ z5&Rc5`L1O^FiOf?W=4f}#Fc~^j#9g-A>B}kTCME-*`8DP>f+m@Y(7Jz9p#m|Zp*l` zdR>SvNB%h<{(VBIpPZ{mZJwNy2j%KJVAf6*9!ViQ!2JmR>Wl!Y;j@qB?`qO;sx9vreXt1o$K&zq`mb#M#0$S0gTZ`g@#MYb z-1OEd|HEU+Pkk6YyWQ`UJOFI-XPz7j@1=g%QA57>5%ULIe#5{qruI?S&OlP6AbeK# z>aV?Q|6!EUuZ2Se;NMo$Qc`~GSS0KkySI=#ZF|>MJ@HkO&4`#c_O96aB;s;CRdGj2 zWP5*{r>&`?-)CJX(UMVGUVqjZBE!%)>Ms-oSSU!SZz}2tXYpw zA|iDbSY5O>Fn9W`jVJZU;V+vWn&$3)|6=}e8)4PU%|%E4`JSUf{54$@*DGyg`Zf+C z^eGo3a)9&Qh5bFSEbVFt?{g_!h1&Neb$&+KtZp{LH)X1l@ynWe4-b0)Qoc{45{Nj^ zISDZ|&u51McNBf)R=-R9nsVoyFRD2iI`)Q)!H>l4YxgU11Ck`J<%t2vr*5#@!oRoj zs?vV_u_Yn4jq43fq?lU@cb8={kn|*6vrRDA^hcyYkbPp;`n(;ssM9)LqJ(d6lj_rR zmwBHKWOJz^e*C$En)aICfrKi9C=UeiUe31W$ zwx-TV0^nq(7It=)2)kPMxk1g<>1Akup&|{WUl&ty9>GDd)Pa`En1SZ&$TFrMbEp0h z2np6ZZn~SRK_($BGi-ET?x$1yUhG#$Kj7yWyG! zvKyx0mRd2R^gRNeTwzc3t0W~Tpl@wW5O6$6cv$jCE`@IkA;9cuFIigUPLB=#!aW+l zKI9DcvfYhu13$a!{qk{E){EuV>1dRh5T=L3mSPc`$2&c~ErO(_^oa^9&fu~HkIAAj zS4djkYRaC$`ntQ$SR7^BG!u4i9;H-&6KJ)h9qIy+5hL?4R1El=nBcpm#b0*fHRe6D zH-->%tH(BT=Qg++*EC}2hR=AN4y;Mm$6~$m=<|w@*ds@MN|5zR?_)6yBT3sr%*Z3l zQVt7aJ%cVw_X)BSvMc{}2bzqU8QBJwv;WW|_LvUJxa9cSTV~)Nz8Yih&dL|X-oDbl zr@8PA=IFs~ttXlssAQH4HFIsqrjPpy-k-l|r`z5AX-7|7H zB7$0ZF;W_kiv4o)3|B|H6-qx|o=kDq(nd?P3^`wCoN4MGDP0{Pe^U_`e%PR+&<|Hk zd|unh@NxDhW*lwywCF>;u?(5u!}g6vFvs>Ob7VR|NoRs~X<&Yp$o(cuCt*~VAh7WA z>ZbYkKRlUsbp5%^^M6?z%0#ZW2o@jZe_$NlaN6f%hoS5OCXOvL%S7QS#+|(x8~9>h z+qMcY7b=Qej6x#)iO@o- z`V3A?bw{~kMB#h?N#SZs{0=GCP0Fq8p{5W3JJJ+cN8XrdY9> zQv3H1(6Zx<)90S4^qPCua!|UXGU%Jjh?`QxqldTa$t&c))F_RA2q=3eF{`Z1?XzzP zt=xTUkv$J*UZw52HURD}+6OGAI9(p}lSkU~`D&LPYkTPvbcu**Gz7R8Eiw^DZdBuf z9$xVh{J8|HI~!wE2O*}3qa$agCpW}otE8?z`(UVOs|&hdza7prloB6(vP zTR##|BDQlA+v?I}WwHf~?ho^OLjPZsOL6x7`bS>TQuX&CdXgd88;H@ntR~OCl$y%* z%P)YfyS-I6EkwO>bYpiNOpe+?3SCM^{4d?#kC*N@_20zobbu7bOh0LzO=j{@oa;YE zHoIIsdG}AM;7!{9c3UNy__o8Ux4r)dR&sY=P4Z)Yz~XsXT1dOB+*oTdaoEP|g;|AF z4+i>^B_Gu30)M7k6^DP3|8?gk??3qT3WMFt<_?HO~Oe32;FHTAVrPG8dcP{$H1e zOig*fPcD1 zm{BTq`r(mZGsD&3@eJ~>ONT`&-%Cu`(;IBif?+3Yqr;1OH%JL3oma(QW7=LS}?iM z;yMYlo-H5x?+bn)E*3{ z32g#mH4lxGqNDZ*nKi9erCDnng!~a}{H-%`q@92L1@^yOU^1X?|t2Cg>>Q%xsqC)|nRiv^Ll~s!!K+N@?MQ5bNW?g9b z^)6q6{}BNba0ZC9&U_?Eau!2HXQ?;qx|}*vWFnz)gQhMuVO-e~BmgBy02*BMi^rt8 zS$my#qBl@}egk$#Es0$|K~_H`j6GzmC=|2y&iOqn)qDbZ+RErH-}h?w9zLDZUlb%T zP4HMyJ+Kxsp-kTB_w&X2?bP)O<~2c~)xPXazPUV$m1-Zmsr?n8pTyuXgZ@W#n|ULG z!Pa88jIaNB5_K4c$l5P_pRKikBmOnoz$L=PVb@zm5Sb4l`q52x8C`|59m@Yil1`o#ynE(Y}_XHNfz9H+o=X> z?T71;Y+E>pf6Q$&XbUEP3hoc#1jpZWc>*rJ# zR*}oWnv2PmP;M%`k>(X*q$day^~&qeFs+`HhiQ-5!kX8tiBKN`&asU?1aDjDyR_mX!}`y)N*v@a-G{L*>CX;MC=8nJTg*X{nVR-N^YC5f5TFS0x~ai!|~_k>NAfvx4PpMzf)D^*U0* z)8o`1Jmd80pHM1Gl0s3nG7Kp2M%0t&mizc^LQh6$8xm2nu=Z~gy&oFp=^;gW&;N7@ z;h1s)j?Py-l$Dj!HClM;HUAIbs-DzS@jsKXT||)BcD)6e@@!_EODN#$*ME1GaBSLd z6tSnE3i=9iS4J@%d)I~2 zldH9&1I5CEb{&(QoB0?NzhUlrO8IEP>50)_4k*Wb<2l8F$`2Lc<~zzoxXN<>BOcE* z&s$=}hh_?#@V0#IHbb|EIisxl2bIip&h-ZtLB4%IqY2#ChkhVCH1^Ta{2yvL^x*6x zi9%<0D6m%{oZKbCYm@N}s*-2(0ZbEl`f~RUu-*v+WUF}=T^jBA9Z>bEz65^&v7eh z+%&3;;T53d(dTHI>aUS#OLi%}H-q%deEUo`(sy}eKqEC?$K2!cyu>fL;wjQX~w zE+)iet{$WnA1V(Azq)YoOQ{|-a%CFwLN8pHkhuoePl)+YyLlPd4p$ONrzBd;mVt#J z7R6pYJPy_df-4k3e!o74bV7Yee?>qLtJaLW;Tlp+fgl;kSKVCpDto;|n4B|of)H@i zPs!!=erl$kc)5RIDfuMV8S5rfJ-65pW>$u7|Ii`=m#k%R?izpz11v7e8iVpG9Ttjs zbb7b3COP`m!ZLnmMz;kSHIF|e^j&?`r!-jqTTUEL5`3C(Ewz2cmh8zOr9E@=5)(Y| z+%V7Q+%^|@mX>ukIi$-FD=9HR0rxDzRsDyxc#FsVcy3@)+YiA^i!*2#kNGru7VT*y z=Dof^S1=g$1!o17s}kB@hw(9*ZAO6wE?!&7bA-j2koa#KiE>;fTO4!LEhJsdaKI$p zIQARvx#XR;=|^3&<27q=v^WB~QR)}UK$VW-^D(%p)$Z|!1qVrI-!Ox(4?Fxxt+ zVR)K`<4$7l>;5MYo55OAUAxh2r;}hChMI4rO2c({2T69koxK4Uu45)%F8U=JB*dGZ)Dw~S%AsP|#2YUkDMQm*~cEHL=e?Wo){``bf7hCsMdlK+}` z5SK_dRdQ@MERfS|*JA8DoQ9vH^yBmAN{@I6vA{(xJ6{pQgFo6w;s9HG>){WTt?yp% zjaE4sBMO&Qf3&$q7sT>uS$8kG>)C>u6xGiGuL+F=Yf?|h84T{Gd^|=X{5DnDh^_(Mx zV;TAg_HRLyi`$fFU4M1tQL~Ywk+6@smh%KfXp}MwkF_nAZjnYMA!D9ddx@{=EyV6$ z<8h%yLAJ$e%iY#_W<5v@Z6!n*w(QlQI?!_SB9Bg%2@l_O`m!tr(_cDYZ^u9*>B&1$ zE$9jD=dRis4Yu^plyvhl1Sn+!qfZl+KFwrzAQs=4BgH1&H$G4dJU+2bvZN`P#c;VVp8+e-hGFQf|rUn0Fy9-&^5(4Z$1V)hh(OC#|fu zzwh1e-O%HFW2bY!ORG3N=~GtP7ub6?@*gt(nZl3-No*rnlr*^MZB}mb1C&rxsL7tlEW+tGl`l6m zF{Uqbr`f!@6?S7yd{IDU$|6bJ^?n!?n`XV28!oO$ZsbYc*&!A<&aj{wJ?RAxAqe>K*NS{k zuc3mbch@x+Zn@D2xkN&^^A@+n`{AwWdHf*%ksr|(n03h)DJNDWx!*X5G!85VlwLIp z#xmxjE`P0%I3h`Ny+f=uUw}`)1}7SNd;NX>kieRxH_rQ$0H{eQ*)6bFv%%1jwziJ= zq+eML!%zW7k0EuXae1 z-~9B$tFN_64WW|{v?5%cBO;TR6osa`(K=g-|8cBBro#Oaj{SD8QKxf6z4^CR^y%6@Y*ZJETNMw+d_mjgXv{!Q&rJ62 zU;7uGTxsetX$p^%p+5vU`VOuPnYlXcO-v~F*<1`4JG8Jt;IL*id_bR(8m`1nww=|*GTFMPQ}u5=%f)tT zp!tEO)#KbXJNu`b7&N>w>O=3$zK8tX&Kld==N~F z4CSOtE|>1aAo%+bG~}bJUnl-lrfRtI&CJtaOWuo@>Gi1oT4qncMc>fBV@Ja!jn{uzXr&KcMi4`R3)`5>!*RO%fHQ`f zhuf=gW(=q24c=j4La)%I%O_fLKaV&LQ>HiNbqX+PE1C#`CSXJyC*V3h^+a}~Uw4P> zxfySiOvSfICX(EGzsd}}C0U1@uC{>uR8Yx@)@RtG5|wXOeT(5{{Y&MSmuR`|RDrMT z5;teshg-DIXRF-^IW*|?dr7s%1ncAe1Ho<|`8V2VeU(~`x$BzPTadm?|Di;5vdS^6 zJ#TQK%VmVTMM)gWyQaYrjNJbC-@$*ZfI%g(mq|-_JbE>BW7np9Sj>8yrO?F zG}O*<{Y{Zk@Z6nV+L{)cBeh$0aj{tk_DLCqFfydX^iH)K60N}24JLH^H~yyt_J=8@sa!d|ou`slgdDE}ACjU*$5@hjUGjLhJ} zC!#q)k74GdbQCN$Q;lRkS&R94<${`bCI7~@M?yB=Hrx2(l1FXyR8p?icWR}q~Qk(RJ<_RHz^Ez^#} z_1+NOsgyD;j~K5@`Hz)lH?LlAdrpmudI}R~4On;)Xy@qa8|n`fEe6{CXzi-qrKEDzk}^K`Xqx$h+pS!#Hky@xCVw{^S!|3J4H5$20u z$~Tg#g$S~Gs@b!?AhwIt6S?pKSE?E&OQ;d0x{n^-okyGrv57@gzd@EObP06{V&{eY z>mfgd_v1u8f6aG^Q8#g=`2@>o%uF}q!rZ@vmXSO!pAv?$`}b+nxgK0woIF{Nw8RBR z2~1!k!Jw_M*+B__th?k9;`}xIH_JO|(WpEh-?#EDV%{4+8h&jfT8+w>Rbj;&jwAli*}D!2kG?;RV7WS_m+^HZ za#ZsB4v{Cv&JLyno3|paak*P2sOAu^+j=hj`!&5CKhD}tw`=JEH@0FdA!a&d%si26 zZ6~wtEKB3UlH@X|3!&iKpN`tTeiW3Lhbe0p2x>Z)?CK$1iMSToRgSRQY>3)7Gnb-- z?cRY@rX5U^5h^9{v(_nVyB1y_fsW0betJQQssqcJn)^#bd?3s71ovt9UhVYW<^|aP zmLjiV7j_Y2@+-qznia@UxznFboe*)BGO@ZpSgLMBJM!`?ie{h;)QEx^QDD81(h_}k zCQ6a!l}ehqRbokLoVL>Zo{TDX0j-T!D%xKim8kcY+&01ckD0u9Ri-P%AkJ^if=IU$ zA3x`SJGP~-grRjI7Z-PzwBM2qF!ZSQ67Mfd`J%RDx-SMAJD<$fg!`0{OGLP+UF;IA zd^=u9Rod=^*f4^kOcb+}WHUTZAItde8Vn)*yH!iV3gung+}F)7Q$;y|e`pyYHbih4 z=vT`0J7+A67k=E*OprL}?H5|pQ$5~QY?n>SKx-*Fj}uhJW7RKEXzvfhrl6aaomjv( z3Ql8p&ITyh{}w9{v#{Kt6b=4s?e?$skVH$Fh|_zHtlz1RrJ0+e3!k>;*-Gp+k5OafoHzTK<3yHJ8TD5+RK6Cp)op|R<&e|lO>;Zd8R}9NA#)LQRB7m6{ z^(Xd+KY<&7@kPQ%HGu zzpI)Z@)lCBWy&MUT@xqlHw}p?ARK^p&b-RvZ*IOg+yA+JI20l4xz))Zw9>dYZ$Wdb zCB?gLH9M`}{5DGax`EgT(&*;1?K3a5;5MUB4Qm!pdt_Ykj9+Fb4vjd>(H>)L6lV=3 zfZKnpwbH5h^y-X)o-w~D^H}i7BYKU`%3BEk$BY+CMEmNHR7Pp!-yBSl{H(~gM5*|r zMzpZ;c%N9=NuFCGAK(xR9)?}1_Y~mA(}}0~by)Ad_o}`!k#gM$$1IVMG~)7}D?S{v z2W|mW*T(88e4#)Vr76R2!KapLc{SX|j$_MZO_Qa&&X*CMBzHS#c5y;WGk|azhDo8h z2$%cuV6}jlW*Vwu9uh?=4o?^wZ$?MbbG^N9?hA>n!5!GapnbRYQ(3^5i;>-ahV)Mq zyxwlFiQjmbQ>)#_4}AO)HEyTv?6gls)(RbbeXXS+SkoI9pce&DL@z0j;3f@n2AW_( zwp3pfDmed?it;?q7GHkIv^>%eU!Sypbx|aPqGJg2R;2U&`hfglojU`*EElAA93H;?g&@`&5wYd7okAj#+Yp4FAm3(81`i<38(4acZU} z03vhxW+j%|k4B9OPA2Um$lCO4HSmkmH(_DGgO&_p%({2j_K7Dny(N4`A@LzIiDPouD-+y=Hn<@3n)3Uhnbqu@G-cQQp3BPH&>=Vm zgJaLMQuw|zIe^8`l%z#x4;zP`bKAw{RrSVC4M@*hJ~FDx^<@262aA`~`Swm+JE$S{ld)~?!Lr-<2W95ndsd8alOk2n5!8sDN(YV!LFrrz88 zuXL3S_G_th1EwISR8jnEu71u`YgX5<U@4k>25GCI8 zy5)ViHb~A(9~@A!mrAxri!MW&9VLLud))aFN}J-Szq*9)Y9zc{Txhn-jQ>jQBNBQV z!PrmrAaD>C#Ho76@G=JgX7|q-4Dqr_T26eoFj{A#8hy(fN;qbadi*rbu}QXt`{3yd z-OB&Q_0a#Dns+swc&1O-FQgi+q@XY}e7ipDbiPi1dj7ks+uG5M0%yIHTyGs3s-E}3 z&%b#qI@rJ`=FG|@t(3QoBBS~1WCR_r-1W$Tkgeptk%|)}Vt~wRp~TP9;2a}Pb~dAc z*oGuutt{RrPkWbo$+vL4Wqy_!+BXd&0P$7$g9WhZXJn*qppS?4Z6QU&aBJkJVhr>n zC4c03N*i&k%{7{ZvB(2%jU9H|9IuZCHGlZ?*#8LTyK;xwadxFhiFPq$;`c5PYmo>P zLe>^&1loz9+|aD0@i|~wRM1ynNG6CEnCcL0)zX$vkpo%zQtF+eCsh;O>ej#iKFT!i zAnvP7+b~r#Yx8vz;BSq%fPL4&dNA=XVO#Z7S})D5QuF&XW*ci=$>y6Vx+~m5)=KjJ zK4IUuTf*m%@IN++iFno#K4%Yi}z>p@%ZvUK#B(Imh zRw%4GD096Kd`sPcNS9uk-4P;F|7KPyD>bvNdRG!yCcA#4QJn_TS0Z1)Z*Pj`9L*o+ zARFQo&(iAgeGnWz2U|`jadM71AwaDBAUb)pZ1NN(pvH8<)ybZVLhbo)L7sp!% z(|7(!YWU|g<204#`N+ybCYyoh9RV3C=mt8p}P@~W`LnXq@}yN9J+_@ zkR0jm&Y?T*_>1rR*1Gqv`wwf@;*E38yU#iMJp0-E8J0=RGscjo76kdalAGOJ9{aIP zMO6|SiHDn9{^Esday+((qZ$F8+Xu}Cjlv#5X1SLxi^}&x;KFoxmF`58p$i{RN+sU8 zt}zI^*D}^IZ~xSxf9Hkm@6O}1Y3^6H*OTeacasrzrzh4UP+}&o*pt;r36becjPhR{ zc|lK@!ZYGf^zm%HbUpxN>MpZiMkJ2wkvNTBoCZC;|1vR?Azhf9YT)3!V zRm2BH?vTebnq1*d=Ou4`-SSY|9W42s%>D++GZ$5ktM4=ey*YSxspA?D$?cybTo|tC zDR(>X30nw!;YF#bG9dj8vHnA{#Ds@rOB+b(V?jW_<&<|*NL*abOmy`O7svBQewurf z>4KiPA1i2-xdoPnbHoc?cHn~)3x3d^JeY5|I_jb1cibatZf;H+*+t94)a|q zD;NvpTAdiLch1Uo?V~B$xaG3ZZsUYUy7cqa?_$wW+TeXAj~Tp-Y1?l-&`O94ZY1&e|puySJ%#r_=ZHKK8gdS2$s3ji2mP zf2w8nT|1+nPAn+=a){Glu4VT+L;X~90wKIReQuwuTJFAWZRsh@H#)*!qo8K`QZm3T zElVx*RhY!?FCJe%Ext5|;Yw{@{-4^Mv2`LL>)%w+Lsgv2*&0Bd`WG0PUz^)46M4Li z%!pTUN|W06bm&S5p1qZF5vgwnn+((`xhaEaa!;vROz`E!G@HN|hmLrP1`D=JUrc zTDGfYvt|9Wlz&gp&X!ou7+#V~6DvWdaN(f~(iP6{tFRTkMg8tcI6|>VsL_xzDbW#6 zwfJ%U*KF2!tMjvtBFehk!grVVw#{yhq^SZTZMPn*c4`B`y(fi6Hsq5V%x_t;pNa(I zB?EkSE`%hKzc&zbePJjJ)6sZT_<6SHXZ5m#tHVJjHDyQ-o<_ggzSX9N z(FQf#Gz}%+3(AsY+0ZBAOf_b*b4iq2P7m2ds=ceL(F%*_xirriy1r3VtKW63Ivj9C zEC-MNoX>e4xx+vCRmOO=lx?)o&Bpa&ue;um?Z`G&9&YKENPD{eX0_)NX+=vC5M6pnm7% zBB2lK6-Cy_S#NWWoJXpzQ2j`5hegWJWUv}=e%-8+EyLD>!mEmZRzg@(?X2;>RhqJF zG1h0L7){}1#{rXjg`e!c>#G)9%6R%k{zDHYm{{g=Yt?9Eeb2}2ehd&JAdwJHLW#>|0#GX7jsY<+8 zWmGND_T~IZ%~^%R*&Eh)`~abB!&g4j@dNEU(_r8pUyAjBuyDc{*-jvIzo7!FK#8zy zWK`Y#T{0H2O65;0F#ou1fNn4j+Kn!;uUda~fs2eQ1$;$&s>re0;VgYPtLDN^(>SCO z%6{GTT{moqH_luHcMPdd}h~sQWAz` zO?Ium9skChv{XnKh+F8QQaap2*q{5_q|!=l4dv}U#Y57|wGV-_dWMEnoAC5}_3}b3 zRCq?A7NcIXAW|Fk6sPV7br?1#JtuhPF#(J2uN6O~E9-M>kNG>T+A%*(z0H3IT2B_8 z9%6fkVP2PRM4%um~W%KkDPJ08RNaL47H(`6K$IYFNlcAS38CV)l zdvks&LjaO=Bwrin@M#p!hOJfZc(U=8Bo3GpH=8${7Mb58o$VwXyPK;k*YB&E8|Ngl z!fBALgQRiic(*#+#^DB8&r2OVvdL4vYRdRH`=*TJ>TT=8A_*4GWMmV#cCFOAOjZx+FXAtN@`&DVr;^IU7 zSp+?~W_y(ofvX5_f&{uycSeuy(sCYcqY>v8?|9;TEGuq{T?}kdfOT};Ol6aNBa?MP zqen+=!+kQDr~eQjVN9N8tQ}{d)(^aUU4hl&8uJeqYp#HV#%BBvO($Ld4^4;Q!`y~L zhSEc$9C`%AlxyKqfb~yxYG3+C`>XaAq^0w9M(DXx@mC$|J63#lYtQ)Y)(&q4-wDjt zSe+=3D^`4wL`3wz#3?c!UywKFW%^XM8Cwxqh7@VGNuJ-9xVpMo9!TJf|1_J8F`yQ8 zn@Pak-5bPWe|bL(X4a`rIg?D|I6_8ukGYtQIsM^ zb9-Gy>W$wzHa^4*5)Ng~7fQZOzz5KC7+h1;?At5lh~t$Mt9N&$U5Rj9O<-FNOL0t}0Vq zxu6j}@#q%6PW+Klb~JxU{5iRP(+&s8$(bM)nqpXWW|SzkRq5qY^pSD%G=BlH4<8!E z*f0mQp3T-U4roFix7@ls!+dtib(>kY*OS2GDl80X7;aGl^!cS3_Z30b7!So)UOJauX-lJj3mr43SMD!dAh&W8=My{_xISEEO}mj z(sSIwM*6IHG8}~*v9eNNR`i)gX8$F>trjka=hRCo&3Wm?^FhXSdtb1`Zl%DLTxkpos&oN&e0Gdkz(V$fWBCdCb+n`H>zfZu$NKRNg0m#rKY5A) zuV}`;bZn4*T2GSwnLr;H5%Ha?KsAa}05^JT`a6Iai;l|tB2yMz9kRr*!_6Rj4aHA^ z)RupIohhE!n6g-z7%FgK0K#2fsl%KabGL@EJw2YtGgxQ%eg;e;prvxM(j4zAok$Gt z9{d5mU&4zTuPPVdv6b2Pqdos-nhv6!29pE3(l8}!Q}ks8`+E~UKK79s&HV(1JN^^n z`IwirOklF0^{oRQyLMRVm8EpT;`Q?xH|Ex2$Md(Hsgg)?abQa*E5ESm5E%#qO#Vc# z*`2@T_81eBfLVWYD0Qq*4L*7&jJcjP2k*BLlG9oAxaD%>J~IERDMixFC9pY^Mgyet zkKQDUu~84$aSOjxfu^?8U>`YM*PjcUMgWZPQ7obNd|>Xe`b zM~8Tb(Uk(Z;y=voKNhF)htzxon`-eAK?5mdP`|Br3`#RUnlbZW}_RBuQ=MjYfqrt|`8b?~TOE zExYKrEdTVGzO}lWGJcN7Bi8XHHV8XgV2*=FUp`_bAgEAiH%Oo?Y0)v2X4s&8y=rw} zM6h9Yy)!c|TIbi?IgwoHe~;1o=72&R<2+0u;)>61CM~8VPdyXxL9wasxxIA@)Yk z7-YIuBKcl|?86$B0cnIFxAgA!eG`m>U9^=6Fh}lPSe{arrm@t=tCvnZBoBhI$m$uB zl|mD~>MNmjKjncx3NHk==Ojluq~$Z;C*-4mOr^;36@3_$n)$kpeeFHrR2u_&9mCNE z%2pa=>E8rn7^6_5;P}xb;$2c#!_}A5tZB=Q0=ThbK!<4F^PI{Q$XbqKV&moYW|sK2 zwx#YRW}#}S@!hrhv09PT)#JB0;t1oR0S!yl?J7XiOI+-)GHZ}RpMS`2bF3U*K?M)@ z+B8jfa>@)<=x?jt&g0fg*{UiG+97 z%=-e4$8%-Ikn2-3e{53m)$Y(z2L6AweIK}yqNo*U?Ujz#b!;c4tZ#A!3dg0CmB(a- zP?4{yWk23gcy<&&oIBp&xX<)IO2f~6d35Q4dSmqfwRH?&&-1( zuhFwrNh9`uj_1h9up(#lALr8~>9Ma7*FSW(ysKJ0|LwwA?34iolAAbIS?2J-aNfMf-v&sF09*g%d@ zXJ@B#eX?2G+_r<_-vcDXs|p+09?e&WnP4+Q8SOg$6`h?1yWPVtBhJEknX?~U??=5L zn~Lyn*7=(nLnhV35BE11&!3;mAgg$;O#D&Sb&8nfeqS6?|;ySBhF`#5~$$Yy@{~ z4MaZV|MQYNxo>l!v-{_sLqn9I|FcdbpJ=T&i5<~{&}%Q!Gbwl7H5h5?UwBz|9L;MJ44|4M^~AP3;MsZaoI0@hAjo$j9&;EKa@5;taJz--C8j7eLcf@ z{ofuVe;tq^UqU)y@QPV6^f35FqlKR&-ieQ<(%?Yzv0V%e702V?-X(GzYZzw!XwWFc z_zZAuZ?dVls&ifGq>VO?P(0DG(VnqMzuF{6a@Q@O1Unm-ye_dE$lX)%<*)4Tryuc*ht)*>$qIq zJWY|FG&rN#@Zt>&gS+=-Y2dp+5%X2%PL$bk6z$82lU-2RXcrG#uX+b_>HIVw;+CB! zjzUr_f@g;>7hEz>ixCIyoax~vdjYt^O{@82MP0F z74kqACHUs=x%PmZ)I7hDKnaia+!pz<-Wt`JA@e3H&2o$c%Ad|8B0B?aC_`V%(mnAn zb7CY7qucc+n=XsO&+IbOu6!YEy_x$iUg&_?zarInw{Y40P#qr!c0$*x1^;T3Y*PfEtj0Vy5Gm0TANI{2*6$)$GJ*8zv>y7CNJfcM6P8O zv}uMnGhIaj&O-t;N=d+$BGcXFlb6DOTiL^NAjAD$CA`99kYvIAWYCKhssFv!ns;U? z9Jxk*$g8ybu%GQYcQK6$ z-^Y2bVl5M--ON|nczp(#|9&3(A!xcLWw7U^?PZ?raZH#UKu#d;WoYd~+Qe;mQ^TW( ztXopP`}xL$Ct(|52WWT-%2+Q%Uwkr)tY|35fBgjO6%DrH3!0o9(RzW>2G~Vv;=E7x zs|Pl!Ekt(5!GIv=$-vyf9%qZohRY6bvo|uzMa{(?8)M16bs%_fMz1lwDLy%N7ept2zLNcMODv^zMBm%)4#@=p!n6A z+8hUI08!}#JO@Mi_{%~rC>!F1I~EMA47Y8}nK;utlX#mKS^c#Bntk^9Tiib-n+Kz9!cEnfe9_SGw-7$_+me|z

;&;R>WmM7M`( z6U9&4iu!QRFgq@tyU{rIMLR$G{=~4|p8I0_Wtkx?^TS8U+JX1)f8u3VP(cc(8C_l> zqr;&9P}lM6ph8a}F}>?=x|1rG(d76aZj~I+P(8gdIyEObj!)`x(pWop*wLRXA+i_l zkB`s!Z9NxJO+gn}3;dfQ>5i_~PdEN{%E81|(-nT;)$XIq)o}ZZc_)iDg!O#=(ONW! z!*Nd?ha9*jyB(RFENzkp`#!zc{;jk{ae_x@PpZyALxZ?c3C`!{88k9FB;#ZxIX}c} z6J|UPZZw z@=|JbfbB+9N9;Ds7dq2@_1fwu7v*Nsz)w7>1S#Qi3}OlV;jK)Q!$${04$TeJumu+Z z$m$s6+1nC1oV^LDQ}K#>3SIw;$Fe)%au+F%G{34km%^@t$@`Rn)h z?t&J8E^|!K-&?^gc7Zaqy#diIjr2*XmTF19R?qHpSOcLd-Q5^lN6FqB6Si1=Q!eBNDs6rK<8Xdy)>Kb={m+Kvp>t$AQZ>FM6(0i&zP4Nkur^V)dk{MJ}G zI;Gs=`;z=Nwd2- zc2QQu7Qo6VC8VRp-m2>i?EN`zUJp)7R8d7}6cG`mP zRy1zTKF5(Op)PKwgcUK8^@e5kXCsb|0H{Gif-1YWF!jXs8m(Uo)!&IRLBlz2UiHd@ z#uE+UhkL(NIv3C0HI>mrM*YGok@>>(g(IngcYV93=31f}I6suaR|747;oF2RRR?I=+m1-c zB(xB!<&rv^$eZ>h8`U;XayIgp2^paA`b|S~Og5Jl9Y-B+33Z)MKh-2ApKSGa5YIJZ zNsEhg^28WHo`le-~JMnhJ{0IX%9 z99Imw+S+UqeEiDjForl~0O62)yy%Xcad-Nt<9fa&x~jfDIjHQ{94^woB+w5KaRu%y z%mhfJlXY61WyQvryi9V++ANlR#%>Y(Qakgl4rOENL)!ph}@~?F+hM|tM1ES5B1ubL3uWK*1d0kGR0)b_DQBgK| z;3n5jU)=-oLEjhg$=Aw~`$M4N+&#%|FQIVeWR&RUu}|K55ZBXMZ~0A0$Mn9oNwSaK zk*jOwob!B;*xKD@>nbZS^~Jfzw^|w@44C6a7^&uHF378-(j>xN5Z~#DAn(@UTgIV$ zR1LG~d?wZRy*kU3$~ZwQoqyIL-a3|`q6Gf*3`a4f_LKw(S8dn=NT{Dh)J>z&QJ||t z+cOo2yXffSyk3X?b-WgD|6oVD^7CQoLfUMJjTHFUQ*Mn9{G4F{0{1H7a=o zlA@(KRzw!sw&e1CE(2@F;~Tks^SbS?V!?|KUNc&+ufIeByGVaZ3 zFS2_*J`~>k5uxd~w@@E_+ju9FT#ern_?g48NPqlZ z@bO%iWmIRwV9ucR$aL1K&h z`c7!Ieybaclp}EBwUC01y*Bj$G;i|$8a%H!viFUJ@R#VItkPlKTsn;z(l5Fszm(&ZI2pu!Ais6#VI@I@S z|1M|-PI`vLYfw$N{Ohw}=_qtfw$AZ=_|Q72!!3O!QI~~5l6B}Ez{_52TS^XzTZPtt z{dQZRFVJ^-grC6vz{|s&JR}g_(mH_Z?SPmff>I+Zc8KX0hY8NHd&j1GwI7EF<}O*t z_jT~pxQhgL^%%L>E3w0xQdg>mjEL^b!qMwT?(@tqzXtuYn7gIUy8j?~FDE5cuiul>+uKVf;5Z=Qm4+49SjBxtmq2F3STq-Y*CFd%Y|UTM75HteD$jzBEI(VQ4(H~H06v#kqxPwV(*R7VZxmD0ATuX?Whc)J zG9f|ln0h1t{eX23E8=SB(&iK8oVpjVif{c;wDnjuh{l8FoT~@1<3oLdOCj$|?FTuM zkA(_P*00}}(sKd=I=_Hs4{P>N_ZG}EEfWi##Ii}CHepC8;~(r6>k6E%c&E*8{m!gc zF2O@8hLjfyytl@p8;R(SLWmf3s#Wssj3!KqP)Z~G6&9X+2($>DU2iokU*aR5;~Cz& z57?4NJ2%NwD1tmHqA#<2(w4ZJaNl8>C!5?|nv83p@O*kl(Yl%vHTdilIHZ+78zf5% zo8I4&3EjTaw>p>c2zzT2vV5~0eYJA8%nVem@c759h2Oq?JLiUIdV-Gbmd}u@)0B32 zXv^}x1g%s0@fH*c{bFpKYK?@Y!OK;zz=mx^3(l+D{S;>v(v=6j7L^PWK)$ zXCepWrA2s>Z9TcB{49MH*0^D`2G_E^xU7z3$za&1Nmo{5!O?NOj{on8DxZsVw>UOB zuYOZD;Wn5gcWr~3L{_Yrfyxa#pvJ=3D|7}uNp;~OEPez3Lukc1|J4a^NWvitz!56z zN%VDU+4?)q?Jr+$f}|=NhkF0Up|9Dc$PT*Y`K^wkQ7<5o`J6s?G~ngOy}cRRC*Wuj$w|I7BM#dYK_qy`(8L^1*^KyVnK~C&68=JtD27!Cb3T%G4 zbKQYqmPxvU2LhF^Lt#mdp?_FIIVT^aX;e_7pqz`IQAoQ*i?fkw*jQ(f5*o^+)_6i& zl`{^(HcOFz`p{^!2V%+^lEwX9U*P?S)~e%@;}Y$oQk~Qj4f=3}7dpv2XG|;11KqE* z!s)7G*B=9ZUw8XouBClJ+^2cW(}T>luDYR*DTx(#8fSb{?N{FdqywUIoG?|q=}cK1FYk(HXzXY z*(P>TvwoQus@}KIS=Qq}QlGV%ATensU3u&}5>Byk2(`Rr;$HPP;l?Mk9I2n9h_&L(tF<}k0076dFT4JvsyMk#Wt5D_r>J1YJFvGZ5czu zEFL1P1-Zwp-kKRd!o%s2QGjpX9wC(fo^qWcz2?<+Tfg735NQ@`a=UwgU}&uOrq**; zEhmbl@xvDn{;&h(SxPnj=}Q+%-7BFmP*1b;AYg7|rEWPs3Vc?5no+%c;GqKe4E4F@ z4+;vplAin)-_iA0-29vS;U3M5Do%#lsyt$>QgU4!*}f0RP?NS8&HKMG;?945IYvwDTAwDjm?^Y{1KCGTqF=1+I6+`Y zhR8pF+-*N}u=um>?eXsh4t1dmfeq8KjZj|ynCD?`mrp+7krIb#6!1PUHuMi}L=zAk zu<0LpR|XgdJpVjUSxMj3mxVc?77)!p;@I$FW#$d{FTYy<&)9zeia&;3%acm#$w;iG zCylEnjeRVVHSva0kUp^{_I7)eWnxE~^!Xo1Rhy$)@->V!MR8s6*%8~DKNWcX z#SM|a9wdSB{g8#b=4g7ki1_pXIr<~}xA$s0tG1Dmk)7S$uKBkQ(A_F^=8?`H|JK>mQ@%e-IuJqOGzXo$>(EDI!=iVf62PFIJ+ih#**&B;98!IahMX|02Fy zAqx_fDApHNV%tIHtzptG^s;^bT;KT=Y8B$PSTN?;Ev+k!#vM9yUfX}O!#s}WGHquZ zYw zPlNycR=0yg*uD?r$bsox6#L(fBA9G6LT#rON+AIW&y(IO2-t-8A5c znc;83^O{xYZW0JfcgoG?y(1U;y!(zQG{#c3)V_RU_HE9sa!UIE26bW;4@NXxyEk8gX&v_Kz!8ec>{N;1N@S60u7LohDrEHU-e*NP%OAdqc zBlVL9|JM(Pl6Y#l&ndlB6MKsz{O%_<9DlWKsMpNBYVIuham?+g+qHXvyd58 z=VFn}=;*Px0v19Q9X1Z#4_){=F_DWcyrFod3^VSwRG!EtL-krGx{OUL9W_!6k9C?> z3{d>fWcp)cN?35An*m$I&8R!pVFwC2!m4^0T9LR(ns~@dY+D#h7S`AfVeUw_!gkP9nNmZVZqt|oNW(v^?3%5NM@ZnXwbzYtl&?WkjddJ45N4RGWo|ltgI)`&I&9 zeis41*EV@BPZv3Faya!Jb53S|pgx%_kxqS{c`0D0A#C%~s3o$`w| z<%&#CFU8&oO_E-BYzX?-|JqAs`gbuf&(dv(ZLHU3wXy}KK0!mf&$ajy&5GY>iR6rqonCxLe`n@8E-2TM)a+h1 zIJ7&fb9w7`QZ2?mEWvFBg6+`7dBPHMsHpuF`*$JMc9?Qt=2AK#L`%3eY|;c?>!j{J z;5VH^z57c%&+{171#*zp!-CC!+E0JFe}*v~YLne#CCgXm%pS~}-nzdV41kbEZ{CFz zPRyUWWdI=VPA9#lBGKO|{r6;%D)Y`VEcL%v7jB@5u!MA2?$>G?)DHHdurGz$Nd2Vjxwh!QLr9Z%ghqV}EWL{rIQYjrnbe zo@oI;&PkWAUk+*i@5}C8sFJWR&`Mx5Q{%BW9ew`!ZQl(3(*%#(&)V$YdBqPhk93^u zLE&yc(_y~L=|fb5nLR%%?d)y@#TyUt^J-wjCnY?uEH%2r3vpL$wbWr-=o7#syT!Zt z+RA3io|CaR&AvVVa1;Mp>mGy%L+(kifdyPx^t!~_*1UDwU9U{EzzvWoySZ1U0@W9O zb*jgsR$JPxE9L=6v4JOO)o+hR2R*bO!|;=-zwIKnMZZh{^NRU1#y41(?L_6BAqTaU zC~wh(gqJa5FlEf7pEi42j_le`F!T8B%c(Qw0$hYNndZ4K{ z432z!H4yy#Fy&0S@n<2z_npds0MIeVdG0n}g&~I<$!Qkc3LB~g!; zRL$XGJwm`^RRKnHc+{3FkdxHZh7CC_`g*`i$p(+w5*w2~%@%+cqlL_r8hEftA^Nr# zPl|j;YP-(33SNcvvIYLEz`G>BNmaIBcx_H6&odWpH%_XUugEOy%IliVCQQdk*H5uA z2*?>*RgpzX>d!*6nwsFR#Lud<#sktfm5WuAC+5@E7Ix^0vl?Egkyh7y++GgXHm@JOf8((Yx%09iud{T?p`%lBI2sN7 z+s}Cj=~qAa6TvMp-hBFN+><_C=J$~dxB5C)MQ1`Qa*YOq#^aB;pNwd@G>I&WJq}r( zQ#D|~ognIEvL`3tm%%E0QaUzfa97y&CIDO7R)=CoEx@RfuAF`N$8a)dsvJmRM0Lac z;`OR(Wwz)j<4Fpv84)qcq`YInJ^NKiim2_j`{7k|!68svz2bP-Pgmls0;h<8 zR2ASGUnoB9YgkcP%xBNRrviIh{XwTskT%?r9+-`1$-k#_MvdQ02CprpduOzaRx!}$ z$>4{dA7zs-?NPmITR-$lHO6CN-K4BVTg6-zt21|P)Vgx%S&^iVYtWZ30x?{2+6T{L zf>gr1`~797(_HCAOG~&~8DIC_c0 zfn#ITn=(C+BovIK*>QMWm+pZoQuS=rFi)Vf37i&rQPu>UrbC8Kd8@dXm)1@cvjleo zMTwk=+(u}C8p^H$)};zN!%3T4E{XZPiW1_=t20>BT6#4Hde23X@#wu$UxSF6gEJ1> zDMfpd4C2Y(KGi)QL0E~_;4m4ytDeP((!wjXqew$)+Ns;Yqi2RVbLy2z+ z%&5O$FUw5ESXGPK$Ir78+hqMR??kO(S~`etB+ltN=5}iNDrDB<$Q-^yerR78E5w~Z z^>w^}zBK$g1SH|!NuTc7mmGeUC7ys8JlI>(xyR}4k{$a!M`VHcERYCQruO+ow1WOb zlK=4b{Ht~2$oQ|F@I~LD#q`6~pd9{?1)t)cJ&QN?7mCfvwP8C=y83II+0J)IH$Tml z!iwX>n}SQbtJz-EpP$gvvG|-mrUzOz&kRVD1ocoqJ5{U6FrHSzT+)`y5BoLabhtA$ zSzGA&hBVK;9qwiq>nSPr)^N? z^3s^DSU4{QBE>hw>-O9xG_{AFC6yy(uG80P!K8fy%O=TQ9mH-i=e%JhT#yTro$HRm zzUgIF+?eLPgltU8=rqGC2gkTLDlvzi`)XC5zq46W66A-VLJ1I^B1`zQ-_a>O5|Tt0 zF#h%zZ>cNPkB4@d`PUdbH}+GywUkW2GzyGj`E=z6H{eEYFw0fEBIZY=Q*#-AX=e&+Np<()jb#_ z0lmI-S5PO&q8S&UH1tZ^x{De9q6gn;=h^hD)~sXf6nNWJ6DPdfao%3C?X6WpNNeZX zty!lIH9{m9D>QxydLk7LRUCM>}J}abY2SI>KP3IiJ$_Fybwi%dJ%!!UffQ zvDF;Zc(C+iZpVJVP={WZ9ADQ^%+ZHO72%(b9^=5}Nt?wIzpWLtR z^Viuj&W`PNoH+ND&>GK=jy9%Br0J9hMXM&4HeC!I1KrY08Dz=XG!Pp0V@Hbpe?si> z{hv_RcHp5T%2qkB<3RTKU93&Dc*}wTw}A+0{Pk*@JH0GU{8tpp1xg@#)(4Kc@e2c_ z;N9gFk?pRB+5GxjnMFad3v@Sj!|3SU9aXBSA|)?M_N#!GD>f5xs%;0fS1{vJw&=ylZzZ;9#d~WK|I5tLx|oiaGX1*( z5rXFmX_tm5W(3stqIka7+qP3@$Z7JL;%9@m8k*3@7TqQyrz(oChJIBoL?_jIo(sltcY*@KvD$o@h;uq6=?WNa^1m)#*- z1zn6tp(SNxx?>-!15f?nQxfD=gr4bBlsHAKYemN%F~`X+imf}|Z7&E;M1RcAm+E)h zb|;rfZP;%_u*#A1L-Riir3LSyrTWu95TMy;~h@H&yVo zo0sfY3={CLHE4x$rA%>&?bkewO~Q~H$ZH@z9Vg!=9&Zns#G!pb z4O)coUd+v=-W-s(4N)c2yY$(iUEBq_NYkGT2+eQJ9GUn(lqE*(ybEim*=RhZ5fX69 z>R%$fTspyZF3)^D8yQ2%1;7UN1E*srhMzZ?pzmF*KR}R7KSYZ(5DQI+HUFdtvg?3WT=z0w+6tsa zK3O>U)xzn=xXGunHXRO-&3g@>2@_aNQQJ4UVk;dE&k6U`3Gdu`dh(W;H)fr~pwV=iIdavE~^tofF* zT1CpjUEJ@lvXN*~bV9;U?48X+MgCZXhP%6V1)J$!$A;_iYN7k)yn z+Zu@Q+KlsN8{tq5Ro<-Fi!QgsZuD-$t?pc`4BY6P>v87TM=?1KS{a>ep}*Wf-*WOu zak9oBMBnrpG6gW590b7Z&(k#3MK#xXebm*47JBnvLl$?GH9vEXk_iq3;(V`!y2S+&Fdtysg6e`%Hf1 zB)Kt5;j>(4c51c-+UVmYs-pFl3||Z`<>0lM#1*`6V?^`d^4(z1m0pUdcjUrtsf}}! z@a#qwNs6I@2=`ndI`cgNV+BkBdAMu2si}#l-TRj`EGq~1l=#zEvd!+b#MeqK$6FEU zbw&d>bDG`VaLSfm%@!@^qsa3oGb2}5(Go6KA304LFP_AvpkF%fF;gL2Vump8Ye6g< zhs_D*&IKn!@{u{#S2sl#C`Ki=D1hqk`T13Y0rVC{!t{SJB1y~ zztNBkQyG~7B<_sF@4;qcfrsgeplQM%nFXWwUc6T0-wvnSz_GLYotZLh7>5O-+NMy- zXOP6v6YZf<4N|p>>@TT1u2sh4S3BopjVaR^H4BQfYIG^WXr>gB zO7Q{$=^wO-KUr#~4xSZjy(o0Tf3cX*Cr*uik#aqH64Xoo`(#>Gq@$TGM3Ylylat5; zL%xN6;fT}SjQ#YfuzLdrWB&&Gd2vrd<@V2f)gP{_y$YXK+H@?DDJ6@%HmmOqn`>g2 zAU7|`V8Sx1kBn#E7T2}(q7Yb0o(wnyyd*&a5|k}p+-eemkd>g|ldckXv+-m-is7o3 zw?9<$LQK|vvKI*^NrsJ6EsFl-;DXn;L(5F@(mjufsYP6(!|97RuZ5jP-d*o4)%GpF zi8$CA(*2og4)ptB|KZ&R{!TwWdhaeu*k_JnjL={Ma9pM=~D zI2WNGE*z+JU@n#cgp+j@J1xkKK6fOOY7=_6baX5gY)#8uy|Nr*=yq@M_BkhWB(Gcv z3w(2VXd{!>9GR7|!v(56|GxU?M5P=5>J1?hPwk4V_gmy)*^CcLKkPILKf1*4(5SV< z5Gk1v51V+^+f|^{zz^Pf7s}LwtWiGo-TgSKlE0o3v9JF%{?3VhdVC#y+xz$X!i~4Bq3XDvAcQB|@tuvtFe^E7eGlw^kHmZf z0Xx5DLizd@2S!Up`pYCJ*CP!;N9Uv-$fU5yeKS>Bzx=PoyhM!9S1XPJzh;3xK~Sr$ zg{qV&nkX&n@GrB?>tq8AcdvdVx1TO*lpoTNBg_Zt&icpm0a9sw?={?RWu5SoQraS` z496T($2I~|c(`#*0W)>J;|jRP=Y=5WZUN#-CMAEv+BpHL1PY zq}&|jV!o-XfYN2ayNl`#T^03QMSk^hb66Sj1=N-uf79t^!ppPU2CvhOpr(3$&I3&H-I! zE5C6dI%!wQ zPULT3Z^A!ePAE3XYVD|=t*Mck&;4A>e_2R)FAknD?;c8k_hFOrMeI`1aKyc+l&d=^ zGpbexGpIdMPyxut#CGBsH)&16Hv?!%`65euw0i%xIIh^=;m#aWY6WW2fdkx@K^Sls^oT8p(4A%y7b>Yx!eNS6YwH>*C5GGw@5?e5T!nU;ZipjjAoeFh){gZUn%D zS+Bi&@j}t^oE`|&?i)sqIxA_1JzSV`?nd_+xO#N^9f|DP=B9;DzR|RF_C!k9Kj7w7 zx>*@KGQFq#_A$w#Eh^YM_r#i}q9{6>znQB@1+NJZjvwGyx!H;98}n+@N3d95F5F=&VFR z{yUVfn1z7+;JY%;{%rsK-OV)2lvjeoO1b2PsG;~9*;yW1)~TH09x)013_Md;)^hHh zh*~hl?u3njX+^T5jw@K{!!x;LY=KPWLOs8&=h%!+`qU?CHcP&MB+^+VG{Y1NB_Yh^ zu13<3{ute2k6&@CoI?{`3@-ap4WSWs(dTR?a01(0G2Dzb02`)H=NX*1 zBK7`EGW^NvpQ5f{p3t5D!`4}cwb6BJze1rvfws7pQrz813lvI$;O_435JFp^K(Qjh z-Q9yraR^%6J-7z?D`hM}r z8%4K5hLOfT4uaT6yX~$v3oRjg<+;Kh`gB7L+?R0z3xo-X!ZYLC7ghj^uV26VZj&e= zuRG_rX>ML>OD&Us9c^54kJHwVob`W~N>QeH!Y2nozD7W}=jk*{~t{IcHM0(SbuMWa-cmOK~opiIufwXZDTyiIR#+G2Vg8BE!Fb z0oCWRZ)}_X2ID_vr8OjdTnp9~d3z^5G>0=;`ZY;M)5Z^)v6TFItNbl_ikD74@-&kq zQ44vN0;Kr-FWMCp!a)9w!LzKz3)NP(@xYm(%q|Zzub=cytww=vEvs2o#D7&y{~kim zju*R8*IO33X8sPbGXR3!7K02Tdxp_}GEtX0KUqJXC^F`h{!{L*n@5&4J9*Zvuz$|k z^8ROnDe3>5^$BH=|^>L!}I96#+SZm1^-*QpDG=tijTTTon1qg(1RW@LKX%?04C*T zz8qVwI}gHc*7PD;sGiC}O#7LSostG~Q(}hUZd(Z#(%3@kct(h0l#cQEc<4v~@G4~S z&gEU0T^t}Ed4m63JJL1xdG2~M9X~5_72FU0u(8|2hI^NQhNGRygarjshQgi(VRKY& z{|u;pf|fQ<8TO$p_1T*d^+3h2TMDBS98ZV3H}A$kyx=}Z7r!Hu_t#Zw{LEB+1QNF2{3>3n4>wc^y?y9`b>`F? ze9^&bDtL?-8BsuLrZg*ywAC*!8yFcIH!BZKH)np?KFoFQ8F`-Qc5VIGsg}zR0thud zQ{<9t#$7scnxCn{nRwESe$RLo_%Tme+oxXA6HN4QVUQJ~zqAb-C80$6FnSzT%S84k zmgTLrKmk($WJc%7`qS=(kD7-9SopuPE(j?L?I7-mgu;i+x02Q@xNL-RxG^q(ca-o0 z!}imT>iRP330C{Pi^8}6xl7&tXN{JnJgQHeaxT03d^nY+M_72X<5Tob6t|HPfgNzb9Au`>x958j7B4`Yr7|!MQ;=O%Zxu zp@pt_mn|a1;wK65LE_0MA4dJp@SWSJOOOdSFA+yaN0lPAu);+uQL3-;(;EAo3Y;+x z(~yc$T-HbyM;hu>pEU8ugO-a;#Dj^vxy8r)MG+d!4EGJ>Tua8V2E4;*Xpfr*M_FrC zJlWypL;KcRMA>nfPvq-3-_B`j1vOhLIv*S^HA>n{N#jIbYaovsV!KDboUi{t8bnM4 zt6rTUTw0s-e^?3jbH0*zsoj+LYRSHHB?U>z|N98;7sp%`3g)NcPSyIr|D(t2B4g>N)TM)IlzT(cT1X($XR_sV_YP%k7nA872qYAZ|LhV7nIPj&V0Xs59t=xq<`^hcpAt-Ny}b zD(4dwWi@>+U9LM?!EIdP*X&0tfyCJ_{LpYl^)?UK5V=T*O7#b)BJKF64p>Wd{zlOR zfj$1A)Gi7@i?M9SBcu=3BwF9J8Hn=Mcft+vE?cd;Wo+nmu-MB0%sIx$(IGKyEAs(d{7cK}W6^Q4ma zy>Sy$-EF+t@p`w>=Cx-Zf%2mv4w@&`XS6gl(XrYfuLV183Z!$U);*^a#*oce$)1$s zW3?nmawy(wT;<-OGcuVtnxt%MAvzRE#B0hkf&uv< z!Z*=`()_MeWuBETpeq26a5Fj~@snHR#Ty|OlN^S*PqMTkjlET^JJrcXaQe7aW?H7< zZ*z334%6wlvlX_ubDv;-!e9vcfe86m5R2)ZAYv z8UCh^eW!PdZ1?$hk*%^h&5XuBTyf3+_IyM+JpU>DMs{JlU0F~N%R6etzNO1}KNNJ= z)?*`E|K4LRW%x&#sNqiEj~CvXwu>M*%{5Q3l35*p{UwW@{;T%%sm0Y2bNkKCV(Ed! zcnwCkHA6Z5{@%E}mwd}|$aYV3t2@D{2!do`Hr-n9rJ32xjJ;!Y*6mkL@>D8a;==f|YRq%)M(D_j#^W0} zy#B~+1^v#7uQI@IEztzN&pJ1GK+r4=Ep)C>-%NW8r*OJzDGvQ?-#P3#8YSeKDL3M9 zR=4Zk*8j=~q2`E$6{|0;+>``P-}TGV0#ka>_9N@eqD?BUQeT*xO#w z&pufo1QkvEkuii?y4^mbHoaq z5FCx|gqfi6Wq87?lBONVbUWkvUY$18KW?Lio4>hvOO$4LK3m;)c)-JsF z+&_p5F&@)j%Yn94vpIiJ?*V;nX_r&M8jJP;@#u$>55^ExXQRS+?wU7aQv-o_{fB$31_gU@QXtXAJub|fig$ueIRaA|7ICuYlZaWr?n^M1hdvtQrVbjtCSXV207B^NP;`7gT0~sm$=1q*Vda9yA`|$HR zq$Nz&^{vcKoM3?Z1Y7MhVFU>0+)g&*o_vs@tPA6pPK_|UqaCT0+pmIU)-fQ0g4DCv zC-Sug2Un+r#9xK5$+x(&!Tr8HSNr~`ssTV3FJOep<8`{0n`nw2Uiz75Oww#`%vsmZ z0|eARZWa$<;uazr? zf=?_HyJu%a&YpJL7xivQuMzVZzE;+=7%1dhG*hkgI#ke1%lO%ui6P91aBfLM;B74E zpUmor*!%K^AGY`g=YMk@nEScY_e<01^2~2)=G7?DpNbAKc-hyqRK)s#5$iz0x zaT(p>(E?MulXMHYc9W!ShRgl>f;faCl>;J$Z#OJ*!4LTElhebOnm5nw5HBf3ry>v# ziuIy`!{2M&7+Wm7h>!~-h9yWuUTdGNYZiaaj8NPjnmO0(x z_5PcCVeCfo1PjMT=5ZwY#l1?+!L8@=>V=XtF z|K1z^BvvAm=6!_Hg*3jVV@eUr>HHZN z7E`w8>4M7D(vn*>^e1Wg=Y8Zz)dnfuY%{-6UTh7D3cMa(#oE~1oBtTe@TKmk%5QDw ztS@*!q+E}1cttafbEk?!Hoh{!s3fykMsqUa{Sp`Sbw4D6hJ`vnILZARZS;OCd9G%a z;G!cuDo>VXr|#ULNreC5Nuh`t z^XJVsml)RMU}6f%zTK~;eEI1LsbCl=UIuzX77nm$L0W*a@(DgzSfObroQ;w)i)aN= zHDU8~jMuX=^Ts)eozy&o1C0h50S!0}NluG6Nfk!!UJII?2Tykreg}*Z4`NO6z3;F0 z<>!Fd=g0(ZSg;u1d{kn1lf1Y7!gY`NV7}RAK|ks7(hmLp;;R6F{|4BfXv z^v$VKR(gkJ>+_H5h~SYV_GF!IA$iem+=v$|0mJHw7j0-3S?9@CRYq*u5nfn3Ygbp5 zPM0HYNQ8VSC@*!nk1o~VQvIZlS(b`xNwyzNNRi$Bspn@{yDny*?P4kcKGv+R0|dBW zF=@wJJUuYVmZ~1>n@mUf@C7o1jh)K;rrONMsg`2XM3E|Q6r*6=?u{H5=O-2L43L%y z5RX5npelsz)tHI^WHuSgo-6e-Cc#+>=xcYkiSIbv)xq0 zm-<4KKZ=(fJS2;~Q3tU!KmXXwpjz(x>d==rO(GA$cPZ1jebq>e1>bD)Ac}kqVL$H+f z)*`9oId(RM4}5az2FKG+G=B(Gxbp>T6F9%J;Dx2=MV8Z>JgHXJt@n3hl{=u)uKdjy=NkRH6ytm}FmwzVn&Ro*Tp5F-!l# z)5Z0{Hq`{qTdHg9`_P3&+R}06G`pQP+b&7GHgJyoDh!>c`^$u0ls+ME(t>lK!i;*J zc*F@y~fqJ_TTH~d-J+BM@2|~_UrR>xnZOZuND9y2^hM= z0d%#C6E-kpkZJSypw~WCmmqIAC;pY55pmRcGJLFX;{lqGE!dX*{J8Ml11nm9=+}2H zJAEBEIIAlkaJcsBYp)D0F~@Px9<1C)nUBnQH)m%m#>Ez{U4xa}9tI}o`G44;#M(eKEn;Eh~vo!p946lQwS~?P)iCce-5` z^ZWX2qeZ>NKs@u=NkFN0z@;*6VeMhph!jPxF(#Mu(tRjAaDve(XQmf=ZIHhZIaKSO zr9H*^g4hW+k2c)MxCT&yDk6_IMTY9KJFp<{6UI}+0Zmk!N)-l(mk{|+em}9agPzxW z`5`5b6(wCttFA4bi?(%kpg+xpcQ2`c6eaIdXlW)$9+GKH`EIc3ln)!aKY1XtEOCI_ zGi7-)U>s&#S8g&ovz2&94r&O2%6azKo&3Ims@-qMGz(^Y^~!Tz9(oYv4*X``piz3*_W!WiR7*Zwad0A`&UdCH?%w;`o+}*kr=$ zY?*bME(Umi)Eu9H$kE|Y#!bRy=?in0R}hB7+Mid}Rl>Wf-!qGaUr;#`ot!Z*m0z5? z%(V^Lj1s=q;gt|cDl#`8cA)y4(V2}pAhTi3wj-@is*Ix0qQ!o)$(Hv%As^`;(vEDY zrq`~@jBSrrxqGTb?{uSB`dKLT+D;f}(!D~XZ>l~N77Q>I(TL^!Fsc5sH3ugT+)MJj8%l!SwZ6k{%o@A`u*oudIfGgvTVy!E=o83}p1uoQ5 zt9d=I@1x$eH1>7;de4qk9-pxYdxYlpXT$Xi$X@SnLquwri&fPdF!=K7dbQ{U7`(Ij zD?i!%#q93(w+QX4(wj?*JN$eXRQRDCry=Lfa*?b$U1PH)2zr(x?adkoeHqd$=m#Jg zjE_v?G#jA*4wYXG%hNL)3I~OnbLQzN(C;cC){Bbe=e{E>d2ix}3p2v>28*Qoi@d7( zEfBwB6)&W3WaAXh`}VArS`aYnJ}i8ZB{F4@nivVuEV-pA#4p9s!7vqj8)F_gymb+*Qr$bSS9GPEHRooQ$lZxvN?(%9iL-Z)0oPv zG$%G)JXJH+|5=c z@c02AuL97UA-w%D{@CZJKR6ll^@Yx3j!Rfhi^U`wNn7dCbevw zvE^FW21H!%pfS5+uTG-yJOKC9m}ry$-H_%yU$8dAIsRN6-QdcVZl6 zf@Kr=gW2+I)7AQGxJ#FD+|YQnD<p77Q zB1K>HiBG!7cqx0^ZJmsnYEoSc*G;b{oB(9pAPlAQVev}jf*q#^Ye ziH@(iXKc8~*D^Xevr2>j5x|_L51B)++i;IWta-RW8Y#{Qz7!a-jOK#cA3+{Wj zJQ!k!sFSDH@rS8uV@Fv#7Z_^ge6d;EN`&tT7Np`L)s_y7cJJ@@v`@IkHV4)`zP@UG z!zUGY*IsSkYT6#rTF%tv<@V*8J7u!=YoE=eAiL_*S?GaR)TUk0!1sU?0YeUBr6hDm zymI61ceM0N7nXq1cY`H(iz%8mT2P2MF#+7`{ngNRC=mv(W`!XgG3;4T>rB@%Ig(YG z>w~!;2@%-Hb!6*s=ie;XysI+3vQu(?ePw%I3lef90qpmUe_PjDUidj2tG~hiQG|kv zph76;(+pDMM;j{X-nO!^7f~Np<0=lhO=2fmtE&?KhS0i>`cVIpqwdrEIp$d0EwEv$fJDQfw!2Y|OW>3J-KI~%Rr8NE+*zAD+tGLLp zMa*3VO$FExgZ#ket1{MzcLAXSZS>}JpsiUz~+24qJj$mNv&G zH%4ZmjeFlo2&=?$PiCk?SE)-4*`dfFE6^E^)i_gc$gt#lLuv`jadd=z0AHywWC0V} zPt)9te=}BZ{U%H?=^Aa$&e`AC42HSx#8}>fIn|kJ3)>u>A0=yLl}a(B4eJf$HhWLk zd85t10-QjlE}WNSWljSN`v3XdTF)<-A%aOu}~7Bq#@*nF*BL7i5XcU^F4Z_wH6@NW0_ zw$EzbP-`dTPL=lQ1n(w@E`4lHbUjutHLi@XG3)4Fz-ze6pD5=Pl4E7 zz|}vlHB~54DueFJB`UPsG*7{VL%B#7&8|L&LzOXxigP?@B2mVx2J;lmy?e_(*zdV| z_Z7aQv=}9wJCufi6uqL*jpPk8{v;Ba2|cqdoe9oJNnEy!o&RK@!HvJh^csIP1Ze*D zo$z-nbo?L;HSHSSm)QelnV~)3uL>}eY05!9B&w5<9!S-kg(4EZ>MW~xw#SY)=%+CqsYq}F$6&F$M zT?kiZCcmJrNI@N;zh0V2tM&?eursMn-4#Ig}i*VWI-sr<&Tw4MWJ?()&juXk$w?CbN(>s7xPj2svpZtYpj$F+Tn zecbKtZ81_u@Cw-|2fkwVzOk(dtV#d4Pp`x)XTF}FM*kv=_E%3t9mzzmjvxfdcyfG4 zGaeT0oh|W3FHuRV{E*AFKgp2BqkjKtl370MdY^^C*vaxl$BXjGsiuukc}h8~q=3Z4 zd?E8UGyikNulE`e_J)hRq*yV|6W7D7CVcpo3R%TYi!M$s_b4rM8nSC<&`$U9hS-yJ3i&$MQVo^~)?F0J{$A$79$Niq~NMJART#SXFDOboo7GxRSH0IEw z&j*PX{^W_q(grGQ=aM=U3(0!iB}&{d`ZD?9Y`6M$&9=LZm;U^iSo*reI{)r1UZwZ0 z62_X{X6~f{ys@N4q?Ak_uH*fC`0MWis07X5(h4gYRQdFY+kh^HoP8d+{t-s_eRouh zft{rasc-b-D(V3IkeEu1knVR9*OpV*j8NyZ0di-L&ATg&%q(gIiH3k^0J+3FprZ+LNi_?NLm3QN-s=sJWO(?=f9E{-1xr2)V9GrO3 zr9mnEx$JJy0d6cw%9A?367|iGckiEw`GI0g`N|EgdEuno-GF00(WI8w;ud%vza0~1B!K8(p3bEB?d=Si)hU_8pu(X9)%_DF{`bQv z!V%iGh#!iyQO+svIt%5xb_$3LRm5?*OIG_s!=BCFn!&ss;af4$`<|_I($dm4OD($I z59W0GB~^Tlx}h32L!x&`EohM%X1xWW?btzmwYcSShChFUbSQl z((=*UawnuBw!Si0RkE7r{Sxjf=E(1=?YGVibFaT&;8LvZvKKIRRlre~x*4dfIzXE*+|&?y8c$+Nrx&l}8k z_E7FEPvTHyX#PxH-6IFx?)0d5+6eQJf#c%b=#I|Q?P9pdjQ5hF9iT07sU;<$zI$Am zln?%Bi2=sH`r2r+uAHn0F2X!gv_6J-SdLgQ0t6Eu?=!8~)0=IsUwE4O=(Z3~{G1V& zQku7X{`4R}m=zFsD~3ty3y|OJ(-X}4x*9DMFJvoR<$mQb_tdBEB6b#KD-3TxrL71P zdlYJ_Yvv2^+Yu2pSU!u?qQth`ZGk6PwuKTck=`_IdKiT#Q4P2LDwz<2<|^ejopVcR zH4P~5Gg+hw*=oZC!|Kt9Z}w%s*>8zAmmD5xLkWpzX;D)cq6OrAq!J9>l`n5Vya{v1 zI-4Z?C!AN?(W#)S#wU>W(CG!QRY8$9(v-pq_wGi*JF@A0!W~(Szsc@fSFg|wyxddY z$KOM9)yL?SVw=0Fl8im`4x2ks*DJs#&F?pXu#526ZaU#3RqqYkLp-`Bz@x zBaVHhhTdV;>|P~*4sHzJ90?!9)P<)R5MR>Ald>XkbL?csbN=Ym`bAUe6WY1QlILKo zB}2;Jd0HfC;a6XOO*RuxXVB6HLVQ|5otV~PO`JCDrkqn8$06j^AV>BRV_7^pTX=LN z<*P+wVRxF=_Vfk5qXp%Z=acw96U`M78zIuZdi-mJ>VhcB2tA*(7qjtd_mhnK{JQ+Q zz>=t#2_qV0=TOOZyKfA2T2>E6a3P*tdM&4}v&Po+3m&^>iQE_u3k|i1r<&ecG{Uks;a7mj33BsJ`0*7I1}BEb6bvkQRyg{2s!H0^!bN?bKH=aCMyO z>1!Hc2u-rOF;*1awIVdJ!W_1G@Ug<|X)z-g5tYf6!}9&UK(?x@q=TMXH6ws*yg@dM z2n;6jWGQAz`tozzOe@GBojSBjI$k)IAToZ7%a57tOPC$7o&y`dn-m*&;#|!?^fo`t zE?>5O8~W1b>+@u! zAHUHPi%I^+>IihiAm8sA$2XHrAOxn31Wk2@+8uM0Qi)cWjsAn=cmd_pkDlxJbwPF- zahH1?WDJD^a=NgpyBHco`ZeW{s5bKH?KRUgB8il;iFLgHew`)`Go`&;+ zKPJW+7ySi%G4-1TVn6FHt!7NFY@V5?D`G5nlZ084*}eq;BE;NZob6s!oR}aqd+NC3 zbfv<=FAS0d($+Q}6(^~ebG8uhbUYmvZL-pTdaqdRail4VG#p>_T;rjrZ+UW%3AiWI zv1$ApcdtIk`^^3v1R(Zs#kZ#(6gLP}H~Z)sl!umlfQmCYc*9SFf=gu*9QdAj66m0k z*JR&;PBz#Nb|(TiTju?xOIC`r)ndCXg7Os4-Y{QX;cbJSpQzs~k1GCje61VfXAN^5l7j5R40ulc{eX;V?;E@!LD-z;Qq9n|+?$_(No*{^G0eR7jf1y8`z(0a6fOo4Ez2o|FikC9#uh~M-}L=$p{~WD6_(Q--uw= z;B(l@iH`9Ru)Eqm2G}X+P2pLr0ZN&cHFEtpUr#rzvJ$=FBMI{l4748PkdTzT-%iiP z#KLO!pUqk=G|O*WX6qSg9^$#gd#_?GN^*ix8yl@(RFu$W^Twx#7Td($bocrri0j=hD!3{Idse}jwa?G(`4)hFm0V6)_JllbiEbJ&h3D+S7?ic4M1NC5aN+@i) z;Hk7y*NkihjF~p55Mn29?b7Xb3UoK&(UK(a<9@%;z{N|jvzcE+6qTqm;EJ?wZ+p7`aBC2ybuNXmP@i#CL*x~4~-XoH7s>v6JY`N zxbs9Noux!`xl+P09E0C#13IPy?c3Bvg;p`R7&eD{g#4r8Z8saCSF%WQI26mg6?o4Q z=f-na2OXN>v*=tp{Pw4Fu-?E}%w^||Z z72;W<$)l@jVluY#Hg%EIoNX+AH&&CbSB*|K9S*5l1A8AwS{&gaOP@xbY@4m_xY5D` z*{&Aoe)z-Skk;dXxv#<})A`t0T$>R9G%4q5@bkZ0o6e=)eanW9m2&H{O*N;wm(VAY zie|K5Rka+ALm1bm?H@N?=^8$Yf!_WA%A?}J4avOfS~ zsW})y`5m&dX%6E&+&&3ROJnNszL0#qMK{%X(?=8Uf<;X z5?w+$YtmLZ5lH4qrPh(^9A4et^ixLXhdVx_D^unUR4k+AFPjP1yWr%<;LVgv7t~&P z?G8F*cV;hj1c%G?+CYD4ugHb_=J(HEr){u7Mmu9U?#gbVp8kQTSjJmx@|=g+!H;qj z4%~!}!mOob#$NO86})e}HsrSfp5Ehc^B;Yf-xXCnH-7H-U8FC&xcddsc(8@vvp{WI zdyz*y1*T1+1}|{{22PV^lsvLEQnd=UsRAL1CotMb)^{q$4k}hsm*PL6!XZ!Zl z>aRHZV6DCrY8V*XVESTv{`Sac9E-~;qNf33Z0H!5F_tc6v8>hoGfuMV-h>L(?|xvd z3ig%DKbGn$Zqw7_=shYxG>!8DD_w5lk?CXt_6HH+uXa4RthK4}@ti0zC(7VoYx!h$ zBZ>BkN*<#z3X_VQg z51T9}5c)PLZq=b$U28tqCr2ZF*_UYa0m3{krAn}`uph%(P%Q!#>*Bz74!%n_?4>uc zQr8!o6?`qr*{rd3&k5ZcF&~`d>TgBX%sdq_38RYaWuT?!Ip7=tcK=V`GIu`#yOy+P4$R+~H@U2|KHRL<@g z-g;LylDk*jaT1h=Xq{mT8Ywpbx$-KFahB6pJ#BACcbIb|@i{)@S*<28blf^RJLyPQ zo+|FJP?-~yrEcua#Y@FP@%MlIdM~haJ#zRpE2-y9J>HD4Tv@)jf{JGj`$4zbsAe{> z%(XHhDN-y|m3-RIlYz$?-Zj&`WTJ7QKzYb&O~s@ScA z1v(NYr5k>mybfzY0uw3U^TFExJythvt3&E z@(CN6-B7RH83Vma_*c;{TbzdR5bBIcCpNiFHzgID59WxDDVz6YI!79NyfhKCw?5;5 zLeip%Z@T8RBR%=>4yEL>+mvyV)6@<1d0-Jjpj_wF`KN9+9rv{U!7|cI28o`q3g!&N zMwi9l`yF#J!Nsf}UtvG}0B-S}l?@&B}miQ(|gG`dyz zaf$Nm#z+C?DR71TB&IU?dL$FLU}q=Fy7b1hQF6eHJRkuXPSp{K8@$V10~`+_WGQw; z{Iy=eW+6_VKr_ZGf?6e79!Ar9`W)HP9y; z%2Gd&HZ}-t;~@oCsgT5hBUb$+QjG4sy6vJw2?Vs5AeE<%v1yet620N_WWPk~lS+@s z$@riJkFv16ur%bt>it>Mmr_05vP3qT=E{Nk6Oo}}^^i%cB9Srg2VyJ1<|tr7#(kMh zqYDXiOwKixuFO1n$gk4YR)1W0D+cq+z(mu-fZ%L|*LO84*wQE6Jf%mhnmW2bkz6aE zWUiiNvK?@d<#>}fXDME$%&6yvWsf%bSa`*zb2f$0S+i5X2Sg^J$NhU_QQv&(ue7Gx zFkh`iOdDWMsZ{e*1SKU%f2=ud z=yQS$Q<<((z&c-07fK`k*5@~%YZ#b-tEu5rvsfsxYD>rW%{O>I=6U^lTJ;sDpy8X* z0_c8bj}5EYO=dzUcoVlfoV>&P(5E}IiQjH-I{BsFL=vB?r+ocoF``CI@>F&T7P;7m z+^clL{|ZZ9($NQibQQ1~0E+=0fLb;0+q7jjjpw!_esp%$KO*k;LWut{(OC zm<=ZWE_V|U6Bi3En)&e<=PbjK7(j;25P-brE;s*>RyyM2v#+PzaG6$_1)rK#Q3MWx zfmpjteI+IxXjO~BXT|4(|0rqIg~lLC7fqC4t+euTBDFG&-^+!Dw<)*uOaBr#*E_`3 z9QzIOB`a)l#mMW0P$9##QmQ}P)!%GKkhS{uOW8hed52pVT5pLOlUw705YkuaLHCc- z5y}6FgMhvWb8$uQ?b(zVBlS)%*`ohIUN8R-*ar;%tN1AVzdV!B-hWOEP!dF0Qxkft z#F~LLgh1#e<(!~&Pdutu{v+Y&_z}sF1zGn_kh~cl_|${URsXMm=KU|t$4-adNd02u zVsu)_djSjbx>FZ?uh$6F9WeU~MZszR4pQCv%k6l9G9Es@^qlKI!+q}fYV*7P=Wda< zV@#YK*JOe>wOW>=+32F8qW>jTiB+%lUs9FsIex1;js11MFspCMIH`a#DD3bHG zp(tpb%=7bln#=D;o{>oLtGnSqF`AT<(|zpv!~d^5l>-?kVykZOu(Coud`Rw^&Jk!j zGDb~%NObmUkx(yd!gL$0Up1j9ig}#k-cDKGpi>=&xw7%2EqNgIgX~CHeAuhS`UfMc zB*R%!@&*}xpqLK!sC3@HjEhdv5LRnUXi-^CV2JA|F)l83iVKD#mQw4sRoHQ}H17*9 za$-+x+G5yROY8>;RN`r`aaawm+V^UliP0j%ZeAWx@bj3%8;DaI$vUYrVkRbb`219C z_~(j`i20=mPns}O3}(6Gn=|Tj+ScLVV&X;UEqbkAW;@8q`J|VPKD)g9%Wab|BBsp< zz-H#_>L@hRddYVv`?U-eh@}y&+hi@tsm202rP< zizKstXIJ9fM3ppg@kRGpBj{^%;T6Aq6EG*=JUA%7-Hkfo*ml`E6WkxlxlgtlRm)3) zQ9XW9ycyEGWei+rPM19z9B1Go%esGUmA7$d+8I<~Ganb;NFTT-_B7H|oMTINo_`Pb zng{cQw&@ygKXoX?*=_8uZPP+$5{)v88_rt#;=eGvT;~opnzbG4?G>xC52-$!Pt!P8 zF5^1I_5}83++TzYew|~B+Chgr=k_v7FA zJ`wp~IFYZ%GcB|RNS*Fnnda-Ugnv2F!gh%AVJ8-c@PCtkkY>(Kp{H#UBg%0H z0N{^q0I`e0aoWl#m-7IIfY||Ejv%FW$SyA;Zv4DtqvegvE zQh%hYfI8jA?^4h^#mAz|0*QrCX}fXndypHPO^uE-{-!9YLQ{0ZWD-;;0g!<9-fx|? zXeG9;Uas25*9pfM9=g%Y3+-FQHrrwt$8L-r2DimPrt9jy{TG(^pK08A@w4%hXn8n| zwHjg$j}AxP_j~S2>Scs&kFZ`s1&MBj-`*1@M;0Njy16ikYY29HHsXZTSVPz3MCI4` zw)9f%Ph5DKNqe41uwZ$7Em-3_%@R;A1Ja91PUPf^21};2q+@gBa*iu8Sg5uU4EOkk z4HX`|B_Px788`%++1Fs1E50IlxIXpXc}&uM?Z*>>h1tz+JjkGP@DgKe!G+@fHF=>& zVl_Wfx@nd;^u~!imj2U#>nP%Y>a?*0RW#>qV)(de)8)=%iffmb$Kd*6Wki+nn3mf? zet(fNL7 zaSS?-1+=&036@p~f?xtve^F&pTDCnra{l^FYt%n*O$l%y?{hw-$f|NaNnKq0FA}oe z3Ik_GI&=8#0za+4D3lowKWyFPoJ}PJ98{=?lQDJUF?FQQ4~bqqv;mmqt_-?9AI+_o zo)wO$NDDW={{h+Kol5`saX2}PDX&~hAd>uM+jxV*CGsUESDu|}O>;`*=WEj&jG!`g z+=bFZPviA>;Dv+_^_M7_w<2^C-?FT)&QBC?`F&}$&o%PL=`+R`T9l$D*^S2eH`p|K zSMO$G%Jh;x!ROQ5O=$GP;|Ch$TuA#nyZbyS8C|YGd1DWzd;aYX z^l&XjHWJ{pqd^6=Z%y5aOm(PY8I}_Z1kTT7JguE~d^)+*Vl3{)JxJQASZ+_X);iaf zQWg%+Xtd9*v?d0yI*jb)l9;0van&N)dY_GhPhBaz75e0x0xb2*Xo{u98Bx;e!x#D1 zeB7W!?=N;fkR{#-;1W=_Z4JQRJJJZcmKIICb{DF=GTqb8=J8Cqpg4q;@S(8ZOdO*u zOh$fI3cCgL`~#SjmaRy|w|=elg>`3x0%8wX+Yi3YBw=ii)BguBY1MnId3(s}VWukI zRjZEuw$*}H2v?tmYRmjPcTo3~Mdk+;dK?wDw=}!1Kr@zXD-~am51N7j0QcSfgJX1! zE5*{C#}CPc21og+b38VXAC7vig>!T*o6&$aZUy(2*iA0V>&h0Dq|)>oK^d0|eO;pjU4dI6^So=JN$rQ_tb>{R1nHt?5pRPn6Uuu|Oxnx27(j z8=W9u@9I(V7EcyZ$%dH357K4x*?>@%=WNai7QjG+nDKMIXGRr*O}MPg@F|=Gawo24 zt7legx$*g2Uw6_!y}c8w(6CuVHzxua)q8F^EPAX`yk7n07;9BYQ*QK3Y$7O&_6vf; zjI3TDUx0zJw`(u_?W{Hf-`g63`vl^3Z%KKf`YUyewIpX_Ir$T&79LXNIl2h(9;a%J z1X^$EC9<*)5t1CU7Ajed9``wf#FJ2TufsvCu%dY3A_&GrzejfmlVVqlL<2$k>j%>v zaXhdYIjtYIe)Og)IpISxCTi~lps#a50Oj(6RyaLl^2#j8?sZuWbN^GGkWWKiDaDz( z+@+Tk1?P*PS^#FzT7*0}Za}j$7Jtde)`@(=C^Ps+u|x>sLvcz?_*>JOK8x;)2JN~m zRm`2PxSpxyw{Oz1o*r6Coe&{tq(EcOTXd27VEh+5_!Gt57S*M!o90HT?wtaW%B;%o@f=nAzd>J06)e{U zhBS?5kqJBe#8)Q79ZeUVqVY%+seiNi0V$)H)vs%N3?RpKQU2+squE2HCa>?`qV$As zl5I1^{re)G*cAzcgCC=!K#ojDwv81mvMgn@kf^mRQllrd+Rq<R%vA%BVpbo3vIQQZsGUBU>E;RRVv`UDYuAb4FJC@?4TYPJ5GJ~54t{K$|v=T;dT;zU`gb@4xk@nVMZ7t!u=&n+n7WYyL z6nBEtLW@grcXxMd3lxW<0Ro|TDNb+#lp?_b6xXB>+#Q0R?7h3s?>zV3f6jB~pJZj$ zlQpx}teN?~_xs-W3p>lVHvLCIka-~A(!M5ZK5nE&#}6Ix`e zZ4NZ-{y%HDZZ?Hea6% zYWUdr|IFIFnyT5-t2{HgCiOYvpn<{Y6KsM*@KmU^U#~+i;0e%Ec9Hi5*v@6Zy@=ud zkJiNKlL9q;cebd{oG4zAyRR?S=(~HJ`#~2r6F?Fzm)DVGV4@~Na`{+8hXScvT>234 z7>Qznx>BnANiJ@9g_Yqt7wxODg7H$`=lkc~A>p}Gkz;i}!HPds$!(ttGk|R-aWjRN z8Qb-@in|umc$AFg87f7|E8e)gzn#rYf=#!^Vq*uTvZ*f$XME2#E5|C;KGPPmty>$U z?O&PCCO7H78*pa+YV;ByB@v@uAgTHJR~+Tl(?kNh&vQSU0|+?m6U*u#%&d&-OzI;Z z4}V?mv1IW0Ke3K!;9E+2>Lhjki!6ovssAGq8?tm!B-s~_1@eN<GAn%U zuvT{eYxTswqgNRW?X^-OPT?Epo~vSYSm|`~=BYq=2;siNRT*9ZjAuEX+|E#eis3)? zTXzwwnhl8Bg-wr30*%PPuL8N5_Cs5nN`>R$J5W>XY>gEgwd(B~tx=+%@r#kaiq2NI zQn^6&rU|xFSt$dg0Z$EWRV^>CCG09P)^g1*y8#)O^C1be5(DiO9S2L)rnS72Z`_An zm^)6N4p_HbCT(9zIGqSnq5U*0$PoT7W zg9Nk4u>`DO8-$tdN2C7tcBE1|w&f)Kg862#eGj@*jHAcroNGM&jz{9=%}UO3>3Q~I zd7)#7?n3O`8n)(_eg$JF`lU#GT-)WVcO(X%4v)_#ElepvXJ4qFVp5c(zA@~t4$TfG z(%&fesU#jv0!?|h2Cw?BRz2JGe8xZ+)4TqnYoX7MoA#v_=W0uw~Tt9HT$j3lE z;1gen&i#=l41mQg5xr|8`jtojI^n9?=OECu+g`AaD&1Ns5?~N?n5=+^9 zd$WTxccG7#h)fI>`NY0svFR{^&FwnwtE^|+X~x553u7#w$%>j>RXYYJx;xf!v)YSX zXqT%wjcK(TZAvJx*)B5$#+5;fQZOT!2ZV26 z{dyup+DT<^<4zz^{E}j%?SckywP!nZ-KJ&7`+)(!7JXep8>+#pY82P3%s)4A%EBUe z{s}gkRvTLp0MMqITCtFr-Rz=vGcI_7qrs03Q-k{-`Kq8Q?5RtSe?Y{8)v#0}tBrLM zcBDSASBm^X1Vnw*-bx_~{uHKA%4rJ;;C|P@4EZ(B|{!Q4A|=}P5dgbbA)rl zM!&k`V!VNUs`hXf9M2$d5y^ug4!Bo(r+a8 zn|0fX^+Ri9Ha*mQ0~XG4epLl^aw6KF4fCkqPBDm2HAksMdKYXj=J?qdya)yd#M!J$ z_>Y3pt{-3I&dRa|+~F*s&A6XQQFJe!FTndAO!^(9>s`k`wk}QyCN^E~3=|!2M#Yj$ z?qLEG*~|{gI)4B!lLQaVtuyz$_R-HfnwD8_s*{NB2wZ6Vu`aIRd0s8sE}}>zXbD%% z-$vv}|Jd8L#e08fF(=n%E4&7e=7Q8f^SVJMF6dCE{l;4aiMOLPJ?uNWUou--E4eU#L$|jXM9m!{m`D;^LghSA zY#)~^8b6-q3_0gHN>R&bl&f&qwc3v3g&rWZisOT#uf%*-+9e5VF2ZG4Z|SWEaJhN> zRUUhq><@oAXZFk|^10@TGS9vH5e^jPaXPW!!-Zs^5wAlQc4t3G_+nYo`+e9m-p|*( z177&+e%GO%-R-m4ZFC(gv$SpT(wsWq^ce1V;pS=AwXapGAAMvHadOCrA&2i?c!{g0w@2Q=Hzknao^H(#P$s2s;MCXWmtSX?t?qI z1#`>^-OD*9;BLQUVi~yvy+T)uxq&O8dVR&2SWimbsNs(2WbBrGAPW|iit`W z|7UU&NHbbNprhvUQJB38@BwJi|B`s!u!57bj1}4DKhQF9y>pcrEk#qLGT4G3S?*AD zPS@Yf(5&z(*HJx#2H3`gh7SjS{65-21Ghm(i+fl4#vHwyMtpy2-pE2xd4t0K0*J-W zR|9;?-p5gnI2|48VY3uf#(}jnyDKlWH zjXaPD#fT*Ts6?CvTiP54FneNgYZ)+D6{FmpqkZDFQSEAmj(veZm+OR}9{Pn2|q6QVp;U>7C zzh`%F_;&5Z?c_Zxq)2op{6U@LB7T9(@~X-ydIR!w0#|+D=C@aog1eYr~=so@QB z$%26|gv}D2PhhqO8**YBr(3bzdpQHsr&K*Vf$5 zo8`Ptb3S+2dX~j6D8k#X0t>XsF7_)_@aCfti55zb3pLI#wn$yo00^ z@gnh-%IdDLt`{^B`o|sow;EHxqVCa_n{ZvHL;bUVnb+>fnhpJ3yG{0jF6p)&1_rpy zUyVn`Wj2OcL>{T*RH$^Ahc(w^1^E8#MdWr^*gI(N?FUjX1&Bqa4_oh+)_UzNCXbD9 z(HMw-=H;JCavZnBEmus8jC8j(t|w@^48M7}wvSsh|06Jpvy|Ijqz{-|S)h|RTvu9H z$r_354edD}^tC+Y4fv_gMLn$8cz8K3@r~%~`pnq=#WE;YL5LbV=KJehazvp*lSf+1 zZXg2P*=>pOp6M9-9-8#F31m%{>TB7}CNU5q)hJVvVefMJYz;j>OO^yBOn9yL&7+AK z*RT#IjxlBri1GZd6v?2Jw2~nTd>4b0z{E%cxxn?9yX5<2v8|E{Ypbf}3-1SWRpdCj zKU4IvdJvO+WfYuNNEv89p~xBXp1h&-IbL<}P&A6cSb5sbQ)9jlxmDv)kF)URXbCYa zW!qVVUs`eX#dg`5s}z@~I!DHuLsD%6ehGb+YRqU*BPcSqc17@o6s`Z*6+d3o6fmQA zmEcY419wqO%+06x&*9L81QWNJ(kYhl6*^Yn-->%+T`DT|t>eF`YfP$*k%9t z0%D^agSi)}-?9-8V}DuSv0b_9nz7%JPpOqHr)=#zX#-=?@4X4C_JC`r_W9;Y#^#M% z1xz$UwM9q%^Tn5mzP_bj9YS=iSB1#;th0>%3RGb0HdS}>{dHJi^|+pJDP0sy@%cz_ zdigt3RX|(9l`M;=T-RTZ7hl~wV&BZSy&|G#G;a@;3}@SXDa;k#^s?ozEaYSkB8Pb9 zb`~UlbM2N+s~dt{{-`iDo=LP&>sY}jQsX%X>+A1Tw-2)vb84@zd5aADAvcpQhW{>q z7p~X@@u=<^ff&V@>GfBy91e4Nup6c&oGvkcptv@9?48BOr-CdH~_CIMxC&l+g# z-OC)244p-A$*y(C_t)3H7gVQpRVWw;0%Cglf{N zGLN_`QnuFdGZB42rs&bX=Hap_+czI-D%$KWwfWlm2Iz>JWn=4;*o5_q+qVg;VEdKX zT3h~kHmqlPJ|)(pNl7O13hoP;xze(|3MZGzb3=%^5kw7SGu5AK;j>1XxmG2_Ghc({ z(OYc>m~k}q-liguYil$jp|P=8`iqIa+;eQs*2C*#Zl0CiCuG4jaRU3bMVkwuqsre0 zqdBYbR9yDo04vYkrk!`AxkxG9TaM&KR@?pDOs`osA1vE>1$%#5#VFv(ZQ=ibx!_yQ zebJNLr-lP>hUsO`qiv=NtiKtyulN)+Y5eVnZ}KR&chVF67_HP;%OZ%Y`(A(GAzP6d z^7F|)QFp#;yV>Lv+zC;ikjX#&CDU3HXL0Kj^HA{vWze;RQlpFQV6Q2~=^`83q`j(9 zRCe#5VIUmbW6F7croo$?oh)P|6*%ELm|mPBtFK?l2xq>a75iB(5<3gEr1m7|wAnP_vD2>av~M)8_ZL0Uvdf9xiiTc zsk_Cx5%YC5*!fCT-HforBlGL=gQa$Jt^NixsUjm+JK_alXQ7JYw$$Nfe{f#i*-&1D~q2Hss@#a@;XRg7%foV6I9tb@tq=mHTiaYjB<9A9cuF ze%Z;T%5CDA^De9O-Px|a95ID~go5K>IJRKMx3OZ<8ZjVWV3(|qlTwLJBFn~X@uw1< z984_?Q!LZZd*V&?)eOnjAWtI|U=vADk?wF^y7Uvah#ns=_@6e@Pjg;S)} zhGgOta%FWjEdS*&t^5O-6wg)sG=9K8_px{DD=rRZwsu}p>7VwamG?3S*N?W-D|TkG z-c3LA(_M3)g69ri8jFd1Q3sJDcFP|fjI4!Sb&IbtQ`*ngk+lZ^8eXu6ShK0u zYY0DX43h@MHVxpXIp-k3zPBH(hvrNZhK;G7T@&{7P5$k(uc!6!et(sUgNJvGk~9773=c5!odGQ$M=R$il8T# z4lbc*B9&FYw{rqmkMs|Q%!H8F3{?vny<)pZB7kcRQ6iIoFRG${YdaB{zVm`;C?gp8Fh$ln=gl*?0+HbXf zAZpmpJ{i|obR~S#d#_IPl!Se(@Ej4S_N4HONo8m&5I6h@PDsq!Dtfc25dvA|0>+>3 zEbNrBCRh&H_j}}jfLip#P&vGNyF&k!x9{ECf6J|TQP_bd=ZhCdBkx~xz4+h7wontN zkJcn3XV>OU!n|L38SsBsyUk4R6-xeLYUW|WOxX7eU zS~)nf%g>QJpPzM>YWcBuC`I)2zmmi_^j^GiRL19HWShOJ&ThS@|GNC%9<@@dXr8h$ zNG`pGV|tGPX19Ly&GKl|D!BJ|=(QMiJpB-iRh4hi|4JE%Xv$?PxB z+QlH}2_Qe6ZmoVbNd;Rd!1rEYV-+);SgHBodFblC2p=Z5ewsnLVBqPqZ@Im9RGteW z$B#KhL`2%35xE_i-shc;kBwy%5Fi1;*Q!YWX=&13^73IXywtxy71Ffmg6X~LCjZx{ zYd}WFFMgpF{_9A*^gT8!G?y3_zj63O{l1~&FUh+$p)Ik&vYD8427f~wdz~&>(oq=& zaHcg?(Q_%kkt+O6lp?zbV>wQ_CWQfOZn5Y>j~@sXZYrik{V9DN{X6XjWkJuk&t^;M zsQZd&Ur>bD(}c~*y7`Rrxa>Ubfsg|WOpkdQ=)KJFKj=lEN+#(auk3bJ2;kJ4@f&FK z-g^4fkv58C$B;Yqs-0I4W*i2Tl3Ns6hM!IZBpPz=fR0#G)^?9|FPaGL;D;IjeLm1Q+lUxAx)6_YhU61WM7y-UZ z=mMelVhQztdsR;=x~+XX200hY(Ci7^4d~Yj77f0WnSe3K4pI!pp&c8I|`z7{?R;y*EQ>A3OPqu}d))yThc zCPsO7)VKq3C8Twhx`aVQOB`VJ*u$nWobQ2E67|8`99u-t3R0^f<;}xVV-pR~Au?eDBKF z0p$TZ_cCkfs;o6%x%?)x>^PS^#fc@nm`|+>rK`GWN=@blW$SNg)u}THeQEHP-Y}3# z9hTih@TAhkOK(m+Pvz=`>VHqeEp)Fp%a^|6sZHycrEi~O=pBM&Ckp%PIsQ#4-?4GKk-i1b)raRle>#O8tcY9L7N#U8OK&YH z;|zU8j)2n?6&=`0OYKS0H^O(_*HX4mezOi8RRGh$u~&T_gb`?;1s9g)$nm(;uG($nK2D3& z5UTewQPK}P5+*qSbUY3k)Bx`1kBL0+yNG7-Kl+F(f8|X>yuNpg@9Lf!t1Sf`zCe4< z=4y+Ac>N$3hyCUpr4xyA@tdUXSCr>_ZwXTIqVO_fnGdwJ@EvB(YsX37<<5UT>?T%o z(=U)_?l>l!$BCJ19uqoVvb_kX1vg z^|=Jc<6GjNRoJ!|ws{fhl?5LQvYBD>-}{slq1T`;EN`>}-1ZmOc~JF9<)WF??EyzKBCZ_1QYS<*^w3=`xg z!j9?5gAs`UEJA|djL5yVBweZ8uFi%0bx*r9h|&2;S&&o+iA*G7gcG>fg>~#ha%$we zhbpiIul1ixt{0H!u6DM%tnA5|n$PCte_5~`G21M0<=Yv)^81~aw;**bF;#L=WjUv* z&vz^6(&G9m5w9(gnw|>Yva3XKen!q=(h63%PH&(aOdLC4Ba_a6^A4fAtJejJvo6D72|C@M`*P#I_zV zo1-E66+7SPlxm_}e_Yog+{tXS-9+3^L1{?LDxzWIHBeTi)Y_@Q8|nGYa$-;Z^5#c# z9`=Lgd>QA091JnRx`(@IMy*Ggt9}H5#KuI6M18#Tgu_(iaaN0hQEO82%`5~M42x9Q z-I(XPZ2FiHJYIE8GMZ6Vwdo?BJD2S_Ui5Yc*_-d&W4aG$f@BJXQm>!8$jbYvh&D*g z3;P^rIE=5BA3sT47|L3-p<7{c?{XM(lo)9pIW19DX4uoD$Ztt4S?Y_uX_^25 zrB_)1KO+J*ujb_KmL01hSjQLZ3H{sOF-CJ^t`umrP-XDtgWeF{1a}P0XqADvaPs=W zPilVqpnbjei)&3uYN@O_M+9osbO^DvCR8CT#M$#}lK~Uj3$v}Nv+WHxolSFvmc?6t zoO+wSORzLIEqm0{T}43xgvZgRqj<>nO@yLz38&XrU3-sLZF7&EO4^`zQ+TMCyVmm; zx)g0tzWunHY+g&)@vqU?Z^i}em^|r>+eL%J-{0KDL)7^{akwB)?^n&g@dDwN)|)Yx zU5B#cG={(dna0guwFO-6j9uCuj&JV)npg8HPnx%#C4(>7vg&u=OtVpEHjmRUtnXNj z$2<=>|F#bz|Fhj<jIW#y_voLc;Sew(jHQk&5DFXKmG(!DJ=vO!`2q6zAddR$y!_(h zBkHxo1sNHCyNxjD?e4u=;*`FV!dg3Uyi%l*H2z&Ppgn}sqU(V>3CS{_iKX18D-$K` zjTL+4&brk=ElI)8&aB*&&7cr0R8*`fsgy1QK?yZ5l<{6(z1?D)h{8C)!lbtk!Ivml z&sFSbeM1)W@9fi;dqBr6RSj`kfGqe<%RrBVnSq3DpA#m3-V7!%S~DTn8dffc<8Mfr z$sJkRh8~=Y_m!FMtwOIVi*%*kg}j2W$U?eH=Bas_3{^tm>XGTHD?nq0y4@-0tLG!L z@M&a1SK!`Xq5=u0t9tEPM-+5NW4PF7pNZU7ZljjoKD12+8vY(J;G{6!3bOjX~U$KTfujEZs(ACVSt;Zjy+N zf+hMns?JTvi)b$|N+*=>?x)m!_$=$o))1Gh6^+Ez|1t3Cc6jOySUCESs zB}W!f{FK)_mIASyN!fn1PSzEIs?es60DuAb6~iNk^6Mm#5%-Ys3A=*qzvk;WVCOJjrX+qGQrv@e43fm*crHE zf23!V5xS${iEt3loHhH|HG^PmKde(IwVoT>h8 zn?4$Yn2eJm`_F6+RrsrBl6nmKPIKG2Zx zm-hB}xj(YxCH1ykYMmHEz6_9*tHb-%Swe zjZnJ=_35Huya7YgqSYZOdj+5matHGxi_V3*^>Z#$~fCj zJMf*~ed6BG;VVnqFWI{s-5k^%tv5*9Vr!pP%60Sq{R-4W2rub zCGA?IQAE~1Z*h`M>R- z!ho%-MKraCX!16cuGAf8M+L%<#VTc_+7~3Xcdw)A*7r!x zXa^WxvW-oD$e7IgPLwSjXBCzta^^Nj?1`Y`N7Gr)&)m?IOo+%2POmF&Z>vMxxwZ5ak)HUXN|#qITDV~3Zvesewyu=+C01L zJqE~qeFYxqfL+FQ-d*?}#pS+l=z{C7ero=%L6O(nY#W%c2p~ZB9Gc^mlD(1EdoCDO zal%Tj2<5$D$K)eoS3FZf_0r1ooO!MUSzy1&HxjR>o_HyAaz0Oh6Z@jwN8-CKD<)?h zyp(4D>#LA=mOz1f*npf%uiINU8qRr^-^#OU0XE=YP_l}7K}Nn;sj_Wznv(Wd(LQ1X zYNT9E+d5h3;{eB~nyT-o_GTu60)#xzGiGA6?PtE?Bz^qY+utGXP3-WD-nb67Y*}VQ zW9Zi$(A!^k-#+k+qN*h9xglr3siSmL4XvZHb4z`K6_+>Ab+0 zMiErnQ9ks~`?bNnr)5vc?3fl>Q`L0V+)F=DD>9Yq0srx#p&kKpNuJRrrv_i zb8XoC%oU-d-cBgcNQl+mCrS>3&@V3Q`1!%o{(Jxqi^Kb3JPq-dj4cl6=zAx0RI22y!?^f%l-z$)nf3 zsZCigS*h_dZ=#&&?U*?LJMGhxy2tMeg1%PCxLma`C>x}28zS0=qhX_8I&yo2mu{Ds zVw6iF`(ESf#6~QlRk=*{CqU>}oisZdeUjQ)36oFWt&@C~+tXc?tyMzjh)_~eZwoHX zp*vo-SFfJ4vi9qiuTe;{^k36|4-bEcQEkE|ybGf){<953R(f4)@IB$y9~uen(S(Gh z>hJi7VF;s2PACuPmxe5^hH2O)`NeR_in{&#L946)!V&}<90mw5@<(n zf5!8D;#(9vTTSBaXNlB-Ns9y@F9DK5CtFly*o-lmcxR1(10wvW{Wj9%X#C9c6(EYO zo-L)-_CYJ5jd{o$MB_xp+)uXgCTski=+>E>RK>i*+RJBbmU)1DHcrq4GjyeKy^TQQ zZ1?lgX(@$EXIk)wT`Z0Xd%cDJu}<)$qx=x-%kK`xSrZj8lg2+5)b`CiPj#CrT$>qb z#f;IEJG1Ta6XF>4qhRrW-fhxm1%|3(=5b|q> zxR#saFXO~55jIe6c;~C3^YGaM@gcGwtBfg|Q#^64!?!5V!~k+z?ZHuUHXS#=#&Mr- zpm3wb!>5-OT$<2fn&ifE3|;K3mc+VE<;Huooog^FG07LqOMxk=Dn%&ZvcIQ6?RCk6 zBmUIm-}ezA=9KHuv%lbzHM+O=`Ty#0n0Vu$ijh1b`Y3RIq{;$c!3Q~k|_Z+X) zS*gF~I_j{;kl!ILm{Oq9gz2agk+YUIfeOl@@v!A6K3H@5xa_@VdCL3`M*qCig-&d= z9V8>5@#J^+nxpzQiw2+mw|jW;!b28w>Hj&jefenRe~$j|Dr2XAhjP5QbEiv;{PgL5 za&mG|k3;<>5VNYyt4K@Vuc@iQ(7s$b{tFSTc)j}5sGjQuU2*SbqjrnN`RK$%Da?Em z+PmcT+e`Gu^Ti8WE=+^0qwahB>pib6#SC+CS5>9-andg(MMX(TNpD_%cuY=|#1Fdf zk;L~F)5E`u{H&H}2rC#+!Zf&vgFz(n#rW>!`+cr}109{qf*166 zc~~K$eRaFd0^f+@dhUY=$UIEC`qKycq2sUk!F8u`0p72W6=FM8|6w^# zlWK={OrR{2{g$RBhl@uvXGJ2LM%>|bG=O;m;cET7clgv8fWbdxz+4gpQ~}@YD;uwl zWP82dJMo)M-!ohIj@Mf?Y^C&lQTN>UK$MW@wt28=Z@1JcXMkBEqVQ!&k|lTh_vPPi z7SC8SBSIbhTz8_Nsa6E*GdIV*ysgHp z>EMs3J5Q*K*k-Sz+sQi1pV#HiS_F%q)eHFKfsx40LPLZKHK5vE?io7t;3?8Dqf-^K zSjJapCF4_AJ{%E=PN>|-T-odz@CaU7Y#cbch7>n2{5 z8OiCo?V4>;w4qMW8uP@x;eWTIudp-I60HJ?v!J=#!{{nNEsL*RH|L(GUQnK|_g^hjcm)bUQ5`*|t4!WE(mEr?FallDEtZKA1LZHFv$+RO>&>klKjw=W zPlH{vjfCI^(QP{HbCcY<6Kk$~ceAY-d-f_Nk89e|9;dB5Uu77jZdo!h4 zyE8dQy?KT|*?;93N>S4f=i5#X0E6GudfNl||AN(?9YYKcCukxUIMyVJFwX=7tNlg}4(1uNXNWrA zFNoyK-+Dy*jmm)Jw+KK5RaBFr*X&2x0nZ#sxOU5WIq|%1q8eIRZmfKBpwfQr&swH? z^E2Czfy$Yd)ReSUf^=$ylok(XO(x!(|9Zq%NdT76kpsr$4{mM%TT%7+h( z0Rl02P3cqezV8w~L)*$%V>!Y`)%-mQlO7*~TE&5Lq|S9!S9fs3Rjq6D*Cuw^DUf&# zv((}=nIORG$wYi%$c;SMiB3T}=!r-#;kc0t&Lum`=JC%mnvnb@2cp-oA%F$T;>Owd?nYX zBVw_?jf1n)ebUva2Vuw&+w)tAow>$D9QfSNwcO0MK^ge>)x(_QV;{=-n!9RHj#}tSV`fK^6RTX9L7E#Ax8)GXwAyW(&c|s^T2)z-O0Jkc_*VId zaf_JV1w13Mqj!z(8hV0{OEzR1?7}oR&Fw1r0EGnsW)i2X6J@SbYpl(qj}>B_k=9_L~6C zkH0pruMsRkfNj8-^!Kr^1~iWX$qx?u4moDqr+u%{t69HB@y{RIwjVm#~0b<^mih$kg%EaZM$~E>WE-5p&CZ^pAb%2-OZey(-Q1O< zTU%nN`!gx$sJ!4S2f6uXf`ip=Z-MQxSTe!;dIGC5z1*{E<_^ygqQN4q_U}Sv0P|~V zopX1z;8yRy)~QA?{N_L1MFa^NrvYbv=b!Vs!}b05TJg$z0|R?6gOD4~Qh=)-Z?@f- zDaW%&KiQee-9vAB{p5H2hy_-TEV)@t(()U9rL?dFT zFX=6D8X%Mh7va$NNnHZ9IgBtQQl$ogNHs4+e zO=9zb6DEB=?3>;_vK<^g*+E1t@^`GpinPYGUwZfvTehQo0{b8iZR)x_C0Ij7P7Yy3ZfAL#m>VU_ zTeV9zNk0qW`8Mp6tx1q<{R@Rf7pVMj1&8qah+&DV(UQRXWz3=0*-nH+6#8j4658KX@l z{o(-#6B!khUZ4=R%{7P~B0Oo$#mNLLGR3n!`H5$6vZFGh<6T3#(@V1%v_GPDG$b}} zKL=rv2snH0gcifQG2?3Ienv{SGVLmNFdFHourU<|Rw>9hL+B16K{D^X@UtjG3)!?w zRYAiNF+UG?a)Lx|1IH{3DXMn$Cp;=w#{sZfB&jkyi;FBVyIa)~^2kvNRZ-usRjQHH z0yj{vSG0a+;GGZo>HhEbAnC5~Yu_AR6H4JTGW4nTV8k*PZ?~e`RNNUo%gR#`PM!N$~@WUz3`CrdJ+psCY8V6S?w?v9{1z z@3l_^5fy+p?BMy9S5s7Et{<4aMGN*BH`MffSZp>2xjI8SBRTimTPY5*C-wSIY7L%X zi;AX&j$l9VNIdkMUHz1h=cXxOMEz*`t#sFOR1nz{UFyUt!GZYR+P&UPx7>Mg>+F{7 zcu#%Wu|!WcN`Ap%6vsKonhVz}gQ!DhYZkvxjb-qlwhh zbatuLD;xypF#0&CfnHoYY@P;ki)#%Esb?_RkQ)n$^~GR%;OWkr^F0ZQpz&2b9aXa& zbYqttF_~k*d_8asK4Ur(yT9HdT9(-=G#M0~urvb+r}rswpW1EotUQDU5I|E0xwhoe zt_9=n28Klv5hL$wz50?XErMq#fK;?{2-ergFf*h0aIrt@_Pu zPYspv4H`?;Cb#N0Cd$O{Q8Kd-Cy~I$@NrDu2bGYMd~3t5u%8{*pwFZC1^e)9WPpfi z@F^pGyjtE>4`8(2=iOF=lUlrkw*5pURu1St>+LC;yY`((0%T01 z);EQj299K0r37B^&q`9Xz_-o2wbo8*%}fKt>C3FPziw#I_A9G?rKa`)OWWB;h81D}b6Cpdl}Oqv`2kZU{E+~MfGKrYvV5xC|C;P zX*gzHX9YKgva@u825U2=p6N{gT&CpD5b=EEe;A22zf8^tk4fq%uApoZf>Osn&ZBx) zUrCx%vGA%HJ4{#ZP)l}`*g-7n{c0#!4t73C3@wVps*gzZXm)`ux?$soI*#vp%uw&e ziJZ#b<>2&)RX?Lz;Z?m}vt&_i#A+Oz$#u=lbvL>Joird}kW5Zv_3j_9$ z+o*MVI-8ySckRaY__l89cspJ#L8eK3U}@G~*>Qp|vXz@%)KnzzfH%#uCp@?q}x^tv&gY zHEIQc)(Jy#zqZM5rZ*cNAb-KZj>Kh@??vU9X#b$(k16~P-phy*N*icHm(+E{&kO>s zL;+x=+f)%C>14%>tcQuGI+zqPwh-k?U5V^?^2fN)U>4RBTU7y5o;`z%FKTW0yku!kwt`av z5QaNwr(+$&ul!xt(xv`To_%>Q+4U|>q))AczZCvu!}7>}lnz))Hh#60H3hxaioNjO zU#zPARw9yyDX=kCUf*ZoL(u9{wDPR4Sbc3|_47mK^rF!CX+tlABPtdO2uZH3j&0D$ zPPbuvgYVIHI|GLb{kG}R`ofjXA$;vp%hTERbZfHQq&{Y6=B!)wF6$8%oQ!Ot^1;e% zB6t$#7%^~7^AjItNI?Irnkdr$;niAa<630554 z4Flo%_FJoui;aZGjv{MQi4cV+gfN5Z%!y~sHG`RNE(y5vNZoO*RK>Vvs((n8IXueB0OVribW9!j>{o zJRR1dZz-N0l6f2_CX_65_6ar^B^@l^hCMD5BvEo>h&)bwOh-_VBQ_la2b4o17Y%hF zEEo3^@c2W<@;3tD&!N-})q<@nO`=6$&p;ZS428T@p&SUZ-bfluB9n#KEyA)p4fdG=GhJBDO6`7r0?g7cgT=N84K@ zQ8A?7G-&r!MtYm17;d8OHOb?QZ>oZn4tVpGvR~Tn<)jnAk!OO5ra;)dz^|BiV)GJ^)jRSV4)MjTo+NO|M9Xm6=5RaolL42PbN-?=4Zjrdex&x5fA=NK2odTQ7kQY-?yCY%wxaD(PvSRTHHD)R^>1p-oE6 z%SxINwe1*_2OjX7^5rjwUeLf|{_D2-lb{WJuBsZKFEgA0xe#?o_0Tr3e|U`kPqblD zEmxBPc|biLql5@#!^Eve97|8c6OeNWIMaPS&ec}hWX{R@ang<^vpa8P`QgJ_Vt_`e zG5+_+w4sav&9>6W$t#WPeTUK zjM(v7kqMenO3$;@qLL*H2AQq$pl86;7mBBLD*?mrqa^@DJR&F%W*zeV&9?>*B`XP0 zm|Gg@AGpr$iR@i=TVL|=do|?w-i)lEqRTy*F=@Sgy(~g!uCa2v>J^#dHUjQGl-qaq z>G>R&6)7v zlk^kp26R9UOkfk{tShtvW8p$A$8s-iUFDk93*Lit)d7CU`uVvn}?L+j8(vLG-Zk`On;~f~aE;<(T8l3_t8A z8ofo)d11@1q8+gghqJ@pPDmxTey&?>oUU9+j^(oXEiu9;0b#3gTJO@uWP|K)ZxEBK z!nV1Jma^P~gxULr8$`2_Z8W&ZmXDoP%0(Ns|HY17vtY<4gpGR&s;I^?&yM-d_EeS* zmbz&4PD!PlunWz{xAfd=FUxHG&+4NKv9t;_t9q|brbx~xcM0fKm*+>?pSM|3JLpSq zhUf=QCFK50mg%hxD?@MmFV@~VDynvk8x~Pe5fGH_M!LHM0hLmaF6n0Ih7pkNZV>4% zX&Aa2q=znPhM|Um;T@mn_;}WP&iU4Q*ZTG!vlg(J*?VU8eP7qFu0=_$I$I^dv;bCd z(BRY8d^M#qNk>(PtZd_8wcA>&@rI4Ht6ZQIBOUPzop}-pMgb_{!x#=`{n- zH`DF`*JpSy2jmw@dx66!c*ApLZcKONVVAB;UkvOgAI#*-^ZI4OLMe&Jw?-0WvxWm3g#a# z&a!cguaMjd9KHh#ZMeW@YKZrfaaw1!MY`YMKxr+-7{ch<=gQd!daWX>Y(xm;KHGb3 ztNY(9vS|J6F(Ga4A^zz}<^w#~rpWxZ3_Dkoz8&?t5~S`dgm7va;F6r(*QD{p*^>qT+u$=B!pS7BPAQ6E zTJZ|pTL37n1U^G`k6+j{d>bB7rQe74lV4Xxz}|P@V#@Zj^JTSua=T? zs*-&0U0@jXX_U&pm=|Tfgh>6+oe_(H(=4q1p$2eSmi=7`TP9)^nLUbkiFgj%!4nWk zzw_X7%_LJ;F*N`QZOoFcs1h1k%9L$mnzIA>Q+!xEi6;L7KPFKc`}R#ovh}^D)+zL$ zp*x>y@NeHsZ)O$z7d{9k&Hy;3#>fA-QHsXPlN*q()?2~T)h0e%&+HKL^f4o+{KSXt z{sB!FY$Myq0+W$Xz_N5K2D0d|{x+rmpjyI^49uNEV*q&_y>M0YFiJRZ?535S!h|k6 z_OM}SD=X)-PVQ4Aef8J(=+8y};;A;zCRrc;p&d5EbN_X+fBkOs%`Xn;_pup%mi4Hg z%)Q8XQ!ql7&4GLJjp94nmz*)(xgVd1O4}g#VEaUT#*7p!LaP;5K)dbO*u<_C@8G{) z_OFN2G59R1!{wSy3vBb&tCkv1MB5F1oz?)2F%Y=~Pd#mRW$Y49k+NJ{aif^{%uzgB z^wukPL?1Hi9+z}_AjQsMVFqeLj^z4%42A+lDOc)Gyf4&1QQDp#QJUlKX>%X>SUt@V zzxl$MCHn4XEOttR(8$U);F)rgHhELptC2xCGeSr%LQKTnN&!FoI@aG5-R&O&1m`6; zi=O`-q>VBH5GW$szX7m+b$*XgV?=INA$OW&%)$2j8~L(!pKhPsj(2!#xsbSbo?mxeoRszY{BN2(WFJT{Tr~T7x8&iuP?i2A_avvTyhktptV%onbl<{Gz zv+?d|PoA_k-UD?sPwM=QQHLIgoI7=e&-59QdI&SQM`|7CfIOLCSRoXBJg;t|wPb1f@GKr{V6uYP2|Ok7tz0#6Sb1* zw#~7|C0krv+~9}^IuQ}DKJ(unNP*PuRi4{&dLqmA4rsk-XzLWOc}daB>*l35+6{M6 zQIWB+@v~=N7pFq{Qx5ep`&;2YpH4gjS`h0dA34VQK%c#E4`r}+O5d4c2y^SVX3k^k z8@t_6%7{5pWHpYh`%~>aqaaY?g=^`Nx5XxUUr!d2TEow2@E3*c`l7|;z0XWfD`0+9 zHl5*zo6sRg{>sv=MUf@`6m-B<koXX?r3(NzpYyuf}-E-DVX z{49UQBbtECRuZut0(QLIXeiGdHsk+JX@i`h#JRySyX-9<(TNQ`M`y1t>wT8lR9Wsm zPJKuCn`1Rm`F-gH%#^M|86d+djT>Gh>6s7Yr5w{13hl7c=7P+yNgK7kC|&EZ5~scn zEZKeE@vgTnD_Mj&U07D^UCnrFxYwD@q%gRfJBf#rSXdJ_0KaMAju%V%PS+`rwOD`G z$vkxGc96aHQR9}WqT;ZhByIIO~`1}(p&y9Wf`&NWHoH8 z+`wr+eufx!25O+r~;e*+jenW`4svRHxYgdAB<>{o-<8p0Wd@dJXB%NMX+n^u8m7s)pB>@-SPj z8fER1{{A2fe1jR!aG+7q3tiHKt+=?X9$%z8=X~+4e5Oc9*6il^cMGLr8Lh(Qe2Oxx z5o2$Z-16kN9k5%A=N6^giz$uz*pUYxv5aY}f5Hdkxn{C%_NlFF(Z=gy?J0SQKR6#b zsTJhM;6716Um5=FU84!IVqbK0dATYX!>h3UvTp`(q(`RAj`S_1}O{*rZ!5vS51_JDaTQCCsZP@-; zwk6>M8TC9vW(;OETjLH=j2+&xJ^e9b>%KXFgq?u%b0Lm1*tc_iHwc}c$Er+|I=0`> zx~B&X0q&0V8~v`zMfMmT>8kBFsv!>+q|B!p(t+A+)s9$><8Ei{`ZoV&fm1oDFm1}V z->M>g$IvGZK$|76_xIBY0)l8AQ_#m^K8t+m%^0jYf^*6*B_6?>J|LDON*5Y3pGH;9 z;mbi~TJ03PlX_}BC-P0LCoFqiz}qe&YU`H#?Wwn@SxU?DzEvPm<^-D|)2bocI*dH$ zV;6bCTXJnlt@mSSs{4GK1+L4V>@6`Y(^?l46op>~ymTw>vvB)uoWjA0;o3yrzo<;J zIrD+;rEkvFHIS}UwV0Ey8(_*#!yFwicf&3l#FJnPM;axtE^>~;N`I}o?tp5A!n(wJ zn{VD@OrKLRi;bXx%6V$eOkdzxmJ*L3s)NsQ9?cZegT)T?NF9S5&Q)g}rgfvZ1q;M@ zZ<~XyC!>an`=)Z89mBUD&^zU~*?Zx6)k;1>74l?wIyVSkJ%7k@3+f0P*$3PRGa6)S-5 zbJiqeXiGBf>o{JulcYV()(~=?QSBV{5Abd67mp64%nyE7M|+S#B-lzRHL5i zDAT(+;%b6MUe)k9zZYXG@b~x+y-6W@WB(mr^VASj1*^tf4u!C7a^_wGw3HC7juo_) zoo@TrlWtknu{y3b4B%=;Ts-OfXZPHEK+4Ac5Q`lq^Hu~IXf-N13Lxo-5dCJM%$uAw zvl(M{`Ti%1<<7;Gdi>P7_=LaCYsJX_aSHfQ{@dAFcdu63BnKRn-ebPf1)~C+j8D{( z_vf;X3<0Te<(Qps1{`oKYwYyf2rYXb;@L5@q{bG#)r?U@XksFf zW|!HTOM0vQWvcZRQt+08}Mv~ZkO0gqRG z13umaq<2qIjL{<}@I@wp+qcZ7``UtX(syq}_5|~f9+b>V=g5(-U1aj!U|_xsb2~i; z^!E?u=#9xWuASC|a8A8dx!@DKyHddi4CPCXEQ7E6dp?TW)=$Xii{25p(H5*1PKPYo zwnQdw$?=PHhpX=>!+nQ>m##!9BH#hH?!I4Ci~CIKmzA2`fHj5#VML95!5yuO$~V;m zDLte@Tb=w^CszSmKj(jT`}6AaGNq75bTyW#$G6ESqW^v;kT=-#(N-UD{JS^bg`(>7O;3gvy!5V) zDl0MsFB*n!oB8u^y8g&~`X8Gd>kln^C%E077ZmC<5UYm>KMJhhRm?(8&>AnqSz;H8 z3f07NAsvLUvu>M=HQ|w(JCmU<@O?8Fk|X-Toi;G!a-C?aArKY}+8J-Nry+K3`iyX% zoNuy3N2J4o$30LRinXPXjDdtdK5E06HA7sY4R>OL26Q9p!S}-<%+|E=LJRgIPz(9~ z%*gip?4a%h$GJq!Oy+X2FqvNaOz|sRCQ~J21jxw$P2aYKygj|$^tl2 z#~+v>m+?~)EIo_5`P2+?P1^4ir@Bf-x2RCZsW3X3wz2YWRktEzlMB18&o$d#U(<=3 zoU=b0XIis2$-|lVOg&$&tRh3pKR#THbS6DBnQT0m&y-DQFkh*D!fP4b{ zcYhobvgwLCsB!<@!KlKv9>ertpD#m*i4{_*$M3r?8l-L^@!EkZh>Lr!#z3(s@gZNwxg#IpbZXRPi`9z5fr?`QAzDQQZ};u7#lG$J@^c z6JwPqWM7f{3U+kAPTkioT!L!_E=~IqCRNpWM9Dp#x%Y@;`8i#|>G8zSKg&GusDVaY zKtm8hM^1E2OVg&Xu@0~JrgHx1uG$da(zQ9UWRDiIV1o_mmvXIYTp$C_wwhNS5t}Xb zPM>3){Pd4HJt1SS&KZR1fD5Qzf%5uX&36mD>WbL>n^n=x$b$}09t12#Zja;OJjlb3 zjsY;Ns7Scw1?TuSv&Q$gJG|IVJlH*=nl-18WJHlAmU%{${>oMnbXR0nwb_U2WVsyu zq$7`}mc{4Vk~9EsEKh1$0;r3FnM`%MlK-bKLQpgFE?#V`%b`!^s6MNa@g80GZbX>K z=9Q-Q42N&)cth!Qyyiz}E59fa9GtVtX(MB19CP7l#LYHmf7unjH)z%e6;uKp71{d}EQ#YZ$-z`^sFAkfyRuAfoy)ICj$>1ld}`qpNov;j15>Jd3qWs z4~cq2TQP~y?Pnu$-^oAVtYbW_&m+SG9|~^H#f6k;EbALQ$(1~OgXLLc4?8-rcxTpD zLyWg>grp=}e3sP)AI@gmk9%TxT&!j|op60aliiia+#SkQ2n*iTy6*kvRth zFQSvvkAc>9d9mrcv^-odYS>+RGtWy`S_p*MbS%_xUGrfik}~V$)m@z-c9K4;ulRDw z51lg;lf(OPB{jYV9CRy`YPZE9XXzy0((6+QrNxXb$xY40qE^NiSkTN>yNPOo+}W*? zY`)2Kp?!>s%=O41{!+khQgZix>Y|ixY$3h;ywfh<#taghksMacV<|Cuv}OI4)lwa) z$JHL1&Naz-;&uSnaCKv^(oKD?@|{rWLI!DDOu*-l+y*(~K2jN^XXv>3=0A0KzEnD; zYKX+n_PNpSjF6umcN^QbLu3EI03_k_=eWClt8x+o0$Fo&M!vMW-%g^_EM*b-V8L@Y z5zx9zbI2d%xYz9n`2yCS=e`S|nNT zPt8Urp?ZD=Txv}Y0~T(z@=x=fnqKt+88xG0>`6@%Lc zVdc3h8H{}1{OPXrhk1vvrMZjq8kV=%+wBWIEE<)cVbJXwQ%CaY)Y$?(e=TFSy95Xn zzv`ggy;S&P5ET6)+tiu^2anlsB(tkNuAs_ofC>N5VWO_B>bN-DnAI(bBnvz^&+n3F zsAFTfS#C6WmBOOS7Zgx(F}YTX;$*E6Q>qZAAtD}yP`{ubyff;bul-Uq1*G0xHJD*Z z8S8uqO@=R8I&_sNm%RHC!#M_Z9r-l5%!uY<8*ywB#~s;qXo6H#Ht{~nGYz1;$Zvd8 z_`>)`QM(X_Ab9Ai_E>}c%iAFb@1ez6*lmRER+bT`VnfqwDrK4EJEMi%=Ye)85#+{ z$%is~%y0go%IoR3R+_Ce4+|ErhKaR8W)9PEcJ{%CRPc6}SPYsX)q*G6UuiYrYE{HvcgPpsDywnu?yEC+!r#@=n_OR* zaOpE>yYZ&h1KxaxO};oVTbnG~oR=zEY{7G84#MN*5uBWF@SuA;@7q0NA=TV80kSmf z)#E$D{Aw_?_d+_>#f3$4@aW*ap(RhQYFFxmCJarE3$d9#@iChnRRJzie{S}OLlSGlfLwC4Hoi`!k4|=iP{2WmYDPh_~F^arvLgayP;NvRy1FBAuhr9-0VgZMUR^VSR`IPfWQ2)w;BPMfPrVOQLfZPZp*|L^?}(brln~K@fTL7*xLanQ*ZT&#{oL(?}eI zhaefU9*L*=4Q&nPPeSA%ErP6?FQV^cQ^eU;$X-b!Qs>j4L=Y8v_W*L1J{Z04>|vh8 z$frPktxQ5pbD-8sN`jYCzss6Gl62&`!d9HQs7lMb(tVmpss3qiPO-VWj>VZBu5T?Q zZ1rmY?qL3EV_^EfOtJzm^eaE1WO<#29Pf(|5fSC)<=t8g3=W=_{R^%6^-QPwE?~}n z;Pozp%Mo~hf5oedcUGtC>nne^!`j(5Z{Jc;u6AdPW+*a5knnFq`Y0}EZ^ZHFxq%;; zFq?R?4Nq2hMicirnDGHLr9O_teL*nhySI8=m)6GKmQOPlRB1S@2)NaaC%<`GF+G5# z#cvOoO@;Pssvo{yEH2m}%qtxy{8t0<2R|W3HY%HELbeiOfMt=RwmY9A5Zt!B4dL+w z1H-#@01AaxX();iN4lS~>4QXco17rC>9jkq@_`WgnmTkGWBcb?AR(mM4ILR+Y}Zp8 z)&LEY{i!C_y>fN;()FRM&LtM_k(aM5{KttpA`Wbwe8Sa5z`L{I%0}tc#o$C&fE!Gk>Y7bPAIC@EG z0c5Ic82lJ4@PPp7CQDO@TiLA5Q*gVS_W6QmT1iv%d9b$lna{U2t6r<<)bH4yA2Exi zGa`-Rt0n&%bo=)?!IC+RG@4yl!|++xQ_M26rGl_@T$h}I#QiA@2N#En(A|QpYb(ST zN8w}e6$@Ta^w8wO;1o!={KNhR`+m*x}un5-$b4cC~3k)sRy% zoubcR)%G=OcFx|W9{=f0`lGE+*{JM%gFWi`I>wX%^P11_sgTjGvtFy} zBR4u(?a;C7cnFHCChEPN519ggL~fAN#TnpA%7HdedzY0q_jL?Z;ONbwMGp$>)`@M$ z^l}n#b(RLp-PAfEgzq_RKy{|7xR!sgh7+B$SShbpZXacL(y>E~?_@}|L<1%^80;Cv zBPn;N7Q}@@_KV95f7*zT@5VGYHoPTmgwLLg6tZik#6}ERQdLVb+j?BM5GNiqWYh-+ z9T7{Jr(u1ZZ}qEnFB0(Ex9=%)wO5Nf)kqJTKbg`HORdEV8uAzA2!3aS?$9SKT8M9A zGPTJciME;6w%OUo{fX4?C9spI7!$8`mf zbZ_yM<%Jg&`}Y>PsEY_vyZUIda#s%~z_WbM02gX}%_NfoZoE-o*z*i>P@1pvK{)V| zbEXG8$j$F^V#CkiPIB=CGqTm!blHQv?fBuvYuygd3e0X&A+Nq!CFohcObh&sP9V{1 zgoMJzboIpS=SR9{Ph3xqi~y^L_7tvImhCeG6=azG_2FjY&ox^_-5(`f-VIAt+{o{w z>1|IY#`JpZ((ZT!N1Sp&QkqZnV7#;HngekaiaX!>vcA^Bs_|J?Lp*&pOBu4h&eYk5 z!(Ju_t$<=4ZPY3)R7YLO@J@VXxoiHz`xWz#NH-9l*sD6 zc2!aV8r+ByAAPPQV&8d+oKt$T7DRDff4VbV5+4wtcn799@o2}DJ}g!p?+Y-dp^Rx)%>JNJlv&3;6 zZ|uw_z4V&S@n^a(H>!~7F$fa&uc=cJi>NUQwrfihQB&>Q3349T+Z!-X$OD=2txz)} z-gU1TpL1GNHjng&M0(t5Vx5Qf&y62bpXDlVeey#MopO$Y%pI{ceY2upHRzz@v!P<_ zmX!F6x^be|zk7;{XASS-?9#o^A$Dp^4jKu2rX)775rw%EN3m@9zUxirzS9O`R%|12 zZcD`L5C-P5-Jm#9`b}BAejSP2Eo~!d5c6hPFpo&_+q0<``1rBuNSWp>9GL_yV!)YH zkehpj{QNClTKt4a@=w>&BVJtZdmW(9XL<7s*J|ST_xM>G(R1FytMQYW&p5PAwr!KV6!}N1SZEYm{1Kz zFB(p7D<~XY9aN;+aSieQT$S~a&sumhD@dWuTS*VT@FOZBPtlmsy(Yg#bfs+ zxmdlzAl~xJgTPPFhDw6%)rd0W)M$}Df-&7;#AA#%Yzx0l)yT^ECS)V>m6$D9z;rmd zW2Q{oeK#-3e5RDBD-aVJumW^~qCv6x71H>&8h0|Gvp0=kg%xP;T+y?s_)|_b$FIgZ zjre=|&geUVBkQ47_ztt`N|X6^cv(^8vY};c2}}~D2BXHn zC{ZbJAjLOBv%tY@+*}W{P{!hucMDkyONBy&37&y=9k0cb2hdfH^Z4djU^mWU`owRb z^qg~0ogWADS)ei_!n+epw{lpfwze53;Or4-;h8kFcfw6)wP-v=o6Y+5X;THv_#K+6 zCEA)`ysXbiCfG;H^V>}j>zyYL+W&3Q3+qL01%j=SB+-Dyx(EV&uL*uE_j=nUua5e8 zVQ@MEiK~yq)f2U-R_HD1J36!w38(Nn(xssEhAg9g*wUVAR=2r-_>x68Q*r46^CiIl zM;WtblMBOWr5$mtdBoOxw1h>Tj%rt|wz79UyAIDY#$)u#EOCCa8t)A1Yt}9*eD0Bp zP((FX=Y6C@RI2O#xj_agjWtejJOF%d*UGm&aEaQj&FKq($f7nd#Jg`r1&PYo+ zaUN)o%#E#%8UYQTU?q`QfB1-`u0Gv;n*=|!ICwkg_xYY-$xOaZCD6C;Dm~3DSh4`a zkGfE&7T18mtJnqWa6zej)~`$wvsm^aY+ufP({8n$>U7EXwQ8wiPydGXc-&YvDf<>p zR~5c1m9t6g)*~9B;q5fmVWIx)Gaa2?1j{zG`hg+F_h%oni8-nET$vacYT8FW^T)au z0$Fx=FrlqMVDgFz*+$6zk>}mKu3otpe~K+;S3^A@yn??mogCR`4nF%0SpDgo?nXX? ziuhe_Duqrfb_on8t;AyeXV5r&jVO05i6JbwN0kmOaPE~A|_8?TEF zbDzaHSwR4C;zH8t57eaR0PEgbZy_bGQ`GqsEC(_*;(>(oIV%3StVm*tBKzS8+MZ~ZR{7?Cs(Ct8;B_V8DMV^lKySh7kVrY8W z5a+lT1k(;q7lCR&(u9%g!Rg{sNT4ud7yLFGrqv9K6a@Zu9*N-6?>Z5A<2-&Cpt=E0 zBVU`At@tJb;{e-60Utk5uXvZ+L+aBl`6-Y1l~K4jxlb0uBF|-uFG6fYMa4j6ni@C4Y_@n|rKmVqxP6a&y`a zt`99(=38RXMA6@Onbu+CD8TvVW^Q^>3fdy5yr=GS4F!!iyp=X$i{4{}L)%p3WNk=Ptd6dEtQs~&#*6U7wxWwZ{dV)ycU#%3M{Vlxa78>nInL#n66=q7%9db1P$gnI9D8qG` zyZ>^Yioe}Fs7f@dErZ*HVKMGfxecJLXcsoN0$F&jnVGJXuu$yk0Bz2=b6(z`FHEP>_fNt|jtB8ZM4c}Piz`^{kQ|pc)lX{6lo`j>tvqSW@ z?gIVDwO#F0jyssymB$gA4v04_09UU=(g!gC`PdTRKG(YSn7K*6Flw6Eug8?3X7#5V z(`cs-xDjQ}>rmuiz9~_325PQ0P=A$ce55n9JQDET%Kiy6^6b9;`H&G5p}jw`$|mA! zw1Z+&osw}gnr`nGu0YW;y)WDYF`K`1ZgD?4SV(_!H@R*zw=QhwQgCWapZDId-%iTC znE$-e16T|s7b$|z#g6-%Rw159eKKeHz&UXs$7Z`j2mi$ODslTqIG?GgrnS~Ji7L7a zO@3j=Te~V(sFrfcMZSG}+q>5Yv)?G;uV!MkW6L4wCt2obxJ3yP4tZ;9%Vx3Pw$>LB zJ>DRsrc-*mEv@I}$z?nIz53^amV7J=S@ADT(*cN%#kY>c^f>Uj^A(vGxU+!n`f zDw)FeBKAMITrFP=r9B109I+b8zVCD219@h^LbhElIJPp1oEjP^woubqJdcSoDO&HD z*|`hx+IFr{fJ~QO<>+3kZL?{;8yP|)JRIJ*N;oFFZ74-R(A6PLx(%Xz7r;v)WzA+o z-gD17C|O+pojT-^L>`hi`?mmRAR9-lmNPSsEo&rn@B`;QLm*~r%AzgEcX4@1BFjwQ zAi6@Xo+PX%l$Y|}hW?Y9ddP)0zaw11-`zpVF;Ltdn^$u9@b&X7{;;I1mIQ48C`MZ^ zMQI;hZ*5O8p^9*^-LM>B-Hs8X09aj1)8gC(ku>h+XOn`iUfLcTyI@=rkAz-qbiV5p zYvH7g@d;&}4RHwbt9ijF&t*N6=f za_ol>AJWp%!9u4!PF>OLo0n*5X`hjh$hkEj3jfw|q$~c;0ZGn+hZe9U4XOW0Udb{f zO=a(99uQeJ+~#=6;EixRZ-VEhQ9q`bJ>>~zry*>+=$6&CP-E55R}&cdA7}AvYf0B*Ahvt^do4z$ zVgOVB73cBSjw?v>yBz)XV+?of|HB_OTmI&!p#MK84J|AzkV?awvc(rTFT?)FefJ-y=d@k>;09dWw;8GmSFYN{+56xVzcF+uii%Id7JcE>trEtbhO) zwF;g7Nd--WR$Q8{BhYXW^qR{N`qJqZ6UE7#x7_ENMz5(+7^IEfbP4I9iQ;tepa!1n z4bBvzfuW-W$b?ZNzZ>U2RX=r4=@{WnR8&mEnUz`|U$$ld3zmoFc$tEN-|+VZP!>Su z&ad{}ee@bf^ND@s1vS>tuc8)<$rl^OKAE8C5%lWdQk^h|Y*Vyj!xcY^n@VbbCi|4( zOpzF(lFR3~`e9dZjC5t`nN8)5HMIzNa~!UGHqGg8>!Q0$<*^PN-j}J0e!I`Qd89p} zqyjR!PVYI8$Nnmr!1Q_{-2Zg5dOhfE>GB4x&81U5%TTu7;d?c&OIG10Oz)d5Y3I`l zxGfN--@bKeAcoZCb*mq%JBb!2)xaW`<{mXC-3)J1_!y{uOLKS?l+1U_UkFYQH30JF z6Tm!ET)FsG4 z^yitHt>gr+w)V#h0CE@X=>s!e(lqX7wwj&Qou^L1%|vUynKV*gUmT?OZbXR=|4do5 zYv9)8gV>OJUMb8NC(A7zTqDOWc{>YK067x8Ezpw%Z69EZ-Qjs+gtInOYY4z}d&lM_ z3_jx}_1UDKmGx4fZbW_N{Y+VshRV!vI@dbJWunSe?k6P=Klza92A6Z$Axx{^tU23X z6S+QR#4nJU{Hi8>p9~##-sK9jSo2xoG_}1-nbr65ofU^gmJPgQNx8!B3ThiJ{s_JL zG+R*ty{b$~0dXdr9df(x!_3@vYwI;LitYZ~4T!q~MRs;C*JP-k;(CjET*JvZDpI#I z*7gyB3AEdt2wQqC2`xAK(AOAP#EeDkj4UAQA840heJ>#inzdQ}FlEUjI{ZCK%*@`_ zH4}L59*E`bhtqXT=`}Xi0^7jPQMl(z)$wJXd2;uZqyd&`M(8u!sF9>(cK#};YA%$O zC;fd|LVNI@j?+fZkElllno(8_cjcgN;W*fCj;nyq9d4#4A7He>A`|5j%h`+B+}W^kp}V=N4Y?z#Mzl;bk*<>|D}8k5tGy~1P0bd-8WO@^0J zP$SE{U@#sLQS!AeoUxNt(Mw0^%f0SElEvvB&A-1D$VXV1jx9S@5<&BaSY#5*l9ogi zy@AdGXDsoS|CNC%TfpcyK2yjICXLq60DR+WcDGxrl@4{Whx;-KM*2=~%+DF!e7=Tc zODf~)2xw6&i4ZeA6n)d>V>ZFV_adz4-Ro8?rzk82$3?cBn1^AIxY{3ON+k>SbN6k2 z6n=<#@}bdqyV1LuspyJXs#god*?*X#tx;1)ssKOxs@8xhC-H2Wq&E9)D~}69z7fBc zy9mz5^6_}f4v;F))lsRUPwMr@7ZJp2RJ4rI$qSEvaM#6YnIGJZW7V1NOxC)x8+Q6V zdK&Ugb!g^G-~$SnIcZYw#`CGSXHlC}1$|j(Q5UNxXcMNNl!~oWdeM#OYgQIBGt1W7cbT4KkK7Yv zjDLdiic~E519kE!L)QkSfY6{gfU9qe$#RWz26~NpGC7>B+Om8P>D2Lt`o4;J{lz3M z4QXvy->Hj>BY5}PjZy7RZ-fK>6A?8w_gx8MuQ9xV{q%%vC_CLtKjY=$dtA1li?C+U*+DeTXxritIVZKBLrYjrO4X!i%pua<(QHAODS z#L{Y0TZLy%w%|1Lgy6u;Lo1wM=$lpVQltIIdSJz(0OE zy-~%zTDmowgRSnYGu_Up$bEiNk-N{aU_<*W39gK{v49wYaXh8gIa-YpO?*$c(oGG{ zcteTeFRh418%Me#V0NRn#4=^4zTXRpB;}KPy~HvUuPn7o`TXveX$(U@(*-)Bo#kjv zH>EF@WCQ3b=6PL0SEVd+ zZ+o$*-A863Trsg|pxQjpLc*TCuXz_0Le0A~Jgn1}Cig9l`Fl55(KfAGi`R zH0dkvb8Zd<{nTRqAu!}#g@#uK{5Zi^HuFtXYuJ7i6;Ej>O=c^dyi7&Mx0%Z9@J$s zj1Jo#F5hwq3TyxRDRO&Kk2K(+Kmkh=BJ6Ir{t(4EmJB*;d z%U77Pk};lLt7}e;iVg5AJNp$v$SCWfOh%vNSJp49U)Ratv-J-Qm_O`P3!k8&;TWSG z+oJcb;TqTA1)SBINfm>BOGN%kc}yDGV*X>ja~)jZ4Xfxa%^OlJbB7l7fN$1rogy(H ztWb{@jZjCtKB2&6o{&iFl`guGL4xU&79x34m*=}Xz>a7v=`2~-Tb}eJKBw(gSxJiy#*2-$UR5eSJn5%{Ne!xG(fZCQL} z^|SH-OJh&>8%5k)^{erLgYc~5t-TLp?^n!YTUJ$;iFOS7;rt)ER+cxx*Q~BUP?T`s zvNY7eH@YpA0coqLlR7qjKlSZ)bzlcRdqh`qY^5_x9ecj9^2xUZQ+(Da<{8` zrAUz(k^dF>Xz_t2ISBMFM=6ej@2GyN#q<%hZWFqE zj@RgA%(X-kV85d|@hksK;6h$SQsNUwhis>P+`LiCRlG^1#$zltqR2FsImu41HSGaA z@QY{W+zUx_ne#b|IxFf1kcV4+XB_;OX4cFHZv{ z;oGI#h}*S>iq5C|5nG@q*hP!=mE5}=wo(4x`#_W7WIPR$v#<8@9~}Qx0K{;AaLNz^ zBW_T6!uW$WL{le|Bfo3}-Yhl0{2r)GRm>h$8m-K9fnGLYx z8m{Xcjd3g#R2-nFBR$<$DP6zXJDXKtG$Ns2uA)3(NBU%d@hKGt_5B(?+PeE{W?~@& z(%K{M=3n_Z$rpWH7@A2a38~OZBc4FWGnX=r7;(K7j5ZPRr!E&=frM?bj22T^3_lz{ zD9(P`SWb}8IgCLnZR5k>%1xmF?)r)%inKB)eT8@$A@-81@&tcjZjJ}@o8enj_G`3y zK6@xftvh<;9tW&0vqH$6e32-DR`Gu=RGac<+cbTcpUFyL7np&f5Rn{uvQO=z>f??1 zf?(UniI14Nzi>mF-8bP(4k^%y7kmO!{hVehNzj?3utLWP(eEM7tBi^{QGG4y;1ECa zw(we&D+_IovZn9tro(+aKfCe>cnua7qoCcDW>ZU|mdUOvu+w39R* zXErw=0=3<&uhPN^5f57T6NR#Wn>pS*R%7Dd?bI~8{H9y;3Ezh=W-BBQ;7cUGV?~}l zy{6Q-om$ek7I-;eIqo-OFkLjPxD51W!pQ*a?0w;QLMkma>^72ZdSjIps@vAm>3=+y zGnT(SAZzEr?3y5GYE-=T{KDHP6=EFaJS;~{fadPJ2k&eN1u zde1rq_V}&etPZ#oIvs7LSv2z4%)}Gs*-_uUy`Db9h%AzfQzQF1na6FT#q&+sc%WkY zcSqQNtQi6r_dODAo`m{^S&Vw%vo0akc>rAHqL=le=lI8M7eW=`4RJ>iegl>&1n~T6 z>p8xpc?z+Pge3jm^C;l(wPuYwJ?&IE3GO#;gB-Gv&vYz|?2nfSNt1VKjWbbDC zbXeWUf_*gba7lQ)M%I;0q@FwR?D0)Yd7-#xjKtts0HUptSvNz z!yFq?_Jyw@dQmHg%e_0S1+mB60)gEZay^vXIOXH2v!!)*C2ZAJWmzzJsaN0SW|Q9c zbli_7;T+CY^#hIU&NCSC_f^wPuUZI{ykP$2ei~CetjF9 zh*kW*T%|KPu2?V?+xoQMfylEF{|Z%6Eck1u1hgFD{+E2&yGOFbC9}rwYfN+p=R>b` zOb_)&t62vGz`Z-8mBmg6lYyZf+qnEGaK1Q=X9~Ay(~x`{lZ(ki(2jJ3OZx1$YQXKJ zNF(}Obh^~}9%e8mB-Z;AvnRJ-(QF}KcF&T?5)vYI4W9F;EhM#A4xAeGEhCw4;ZBj< zFgZ7w(Bsei+2nLQmt07RaS@-vqFe1-`uUz@4)bKWHu|>+)5x=o(q$Y8C|2*q$T{Pu zDKP9{c$lG1kz0tTL@v6o;~V>tnZf~wZ5s!op;dt_=(5s9=^3k*`uP&!k3QA*WpB^$ zjY5UPhB%5uX~gB`g6LB>niK}K?#X6*!W0;}WcX#?)FEBJWs7)*-nXv%4Ti=@&w3!z zv%cM|qDb&R(su8hBzyuL$aUKHl}6SM>a%hclG~IwUkHHp*gP3h)M_Pv#y(R%V-1fj zc!2Rhn^i6&y`x+i>yrGe=K}*KS5ajp0sAS(jyfFD zsa#uZ*%hqNxYq}tbO%~}Jeb-=&hL;i$~a2BJ-Dc490{M$LLP7(RM|LGqT)aBo0S+46bgv=s^+bRDWgUn1#edpmJgn~k> zBk_9F`u`h+WbjV08#54IDVHWkR-`rQmsVH=|J$uxT-Z-`?!dw4)P7 zYbtol3#>RR<4$R`q$nWXZ$8DUcA38)>u~#TS_EbK3=T@{$4^!l`0xZOq}|0Da`R_LRjq#1_dRV(p6DI*u&*AYZE7;L_2AsLye?~b8YncdW+Go z6ow2q5s$Hohi9$yR}W$QaUbkHNAl9Rf%GvAbF4SF8?Owdi-Cu68w#mCs8K-KO~E8b zm`RfT{KJuf0jE_bDZ5svyUA6_Suu1hJOO;Rr$h*CpP##dG7RB9dt>*8(U-y7Q{^9g z2^l^oWH7A#bFgP)fT}amN@O& zgd16jq_@g3tlF$3m3Y+VJ2U4vH75$g8J-z0J9gr}dE@p4(s1=mH}`mD7&&xt9z>IH z<7cfr2_1n4tUGVp3($q#+&sOoUg+K~6Be*$*V=!5|Gv~?Ol-~|)xL}@MF$tE(Na|F zd8FSOnyzcBf@NFY46X)ksCQ)K4jPVsdP>@Z+T0)z-w-yk z&3Qa0rIo#?|BsuC`p&9F@6DiHl}}cNv&?+*PfBL}OP3pd&6e%57`Xu^`L!t%*SP(D z+IB;kexxUa73E+^N6BH-M@#jv%czwBI$5d{=v^OHIQPj#bUC%*L;?sGPi(qjC3mBV zVLtK>Mv!gX)=D3wwQVnl>=SzJV>lHb81~&@!!{Rtj0HD>tJJ8zh?0gjhw}%XQ*+oe zNdXYPmbZ&*bKm_?141@=$p%R-T^Y6?B;8YsYWzar?gy~7mRv%N94MmOY+_F#BfgiAJX13Dz2sb|3rejy9RfM z;0__Uhem?CyG!FvfB?Z=g1fs0cbCT9U5ESJoBPa~-~abwX3mRVi$04}r%QJ2`qZxP zHZepA?LU;Js-E0IY&QYB`He@vOMQ6-Lvnty#vq!GHdBt>Kew*DfA>m{C5nkN- z$)@0fw`C9xzHs$Htm&!LP!A^V`$$VN&Of>gg$^)||2KK|H}>_Bzt5A$ZPEYl`s{xR zi`(AWJq!W~e>7t_G+_gaa%YOpGIrdk@g1k&n4o#i@*WaP5=cs9x97{K;& z*Yj-paKdQq-o0hAb95K(>|8|#u;z9|B#A%ZBv-+!nbyx0<-PT(H-R}xrQ$6<5}z}i zwL-9~^Fz>&e_`Mo{Yb0R02y@+*DkxIir{+1?~fnXdyv|4np$iTUjPy;z5xHKR=-cF z@b{xMDG&I@n@)elUf3TLF!v_gqxkStZyQnZS-U>|IsgM^8(dvlhcgi#2Wj_tbE`UG z>-ZNmYLywrLtc%8JH?*PWQy538^T5U(sZq)JA-_ZJ(zv%A?i?0jLl9N-VqS09eWOo za7Y5T0m8zHuw5>O-h@1D*&mi=yk3S*@+O{35~?u2&=8e3CUHw5_uM|@YO~$Tx34>F z5}*C4h&L`z7eRSPO@D(7QRVL_vB`~@y<&JgzBrA9J9VaU3CYsRQ{dHK`gwJ6n(&GV zrP-1wzc&gc@(+Z0Oz?iPs{bszIYDw$?YtBJqc!v8^HBR*^S}<{ww(?5>Gy%-G0KX{ z?Jg|Gc+hf%ePr=ss8nzN87H%p9uMk z<6rGu(0=P17m8oYWkm~AY2QTmc{NVAKVA-t?Q4blU(?88sfA z&vm=apmu*e2x&a1nmqpf=q-K9C~deKh{k`jZOH#HlgrPu>FBcaL*Bd9Xyi4#u%EG$ z5EtB&Dm7`uXoa5pd{ZGcW;B%lYw7)|w=U5mrh?EF=D0UoM31i%rEnf5AgfQK8#qd9 z#kWuTt5a-KALrf2cgg30tARqbs)a+UMz!niReyz}_G-F{ieIF!K{l!|QdcgAe# z?SYckHcwpF4D4+n_Ub2)-qkq%b8UA}zD>aQw>|O-jcE4-uR!oqPVs5DebIIEvxf(FQ3|E1HnUlcP zAZB_!!mb{@`XmJO5OnOd6@OZ}Tzn78yU@%iZx2dZ(-RHjTf$4TO6Lr#;Of6RFJitw zj=#f2t@_D|p&q|y3)=b&Y6)7rwwVhw1Aq?~MC;GY3soB#V#~X3u!>!sraoW`*}#H+ zR2kmi=dya8?~~Fky}HeS$9)gSkaVmJAK^z~evR#_IJ&(5rcTAqy?ymKj`xZ!wfy_Q z@UPV7UXh((2vs2ek>%9kt{xYk<+#z>vXGQkro=GIse1=we7^W7mDt(tQJqaZA6>a_ z>p~azk9l4cx~423r7CeLiMR=4)TFwK6FxYoz=T|r6Umuhsu_v^+#5iBwnON!CT(!| z&C+D60Tn%p+V)C@Gc0^`fd}w|#Vn0Ns5|Tr;mwlSLfx{Ty}`t9$=$>6=crd7Rilu} zSW4(_j=1vFAIwTkt~y~YC}#3SPTaa*xFHx#>Le7K)FCZ2ei<ps`}Z z{q8mYl``pUn^iDGQp0+fGl|2vYvhGPr~-1fCmgyPDKdpoMR9hN7pku_ z^*$^cTm9@0P=(PMJCqOlW(OrcS^nl+YsX|@sc7lJS*D8l-L!Q3AxVAG_dd54meC_4 zynjbECEbmhVJIH}e3x$cz~<@*?z{yY9CTLs#1#sO$MjeSYdTe}ZJ`dEo*Wz+@C__1#lHLZ<9f z%bPG$>$xa2Vsr9o6#YXIE)4e9M0F&5C8pkh`DY-iV)TzTXg0GAurYI@;r?{`qNyf0 zlMz$6sKU3GtZtiwMh>xU+KJ zjP$;9azqFAGZv#BR*-(*ePK4*2!h08$)Z=2iQKsKJz0hMCO5wYbAGnG=!wBbK~{A) zH&+)@cRpZapKoiTxu#1^2=Lbo&n~e)WhQZr$N$0O}m}nHyJxi zBMfPyO`(XOs(fiAiARUl*!-z3z)T-r?9a8)H#_5p+BWE*o-s*@ql7K%dSF(Ba+dG=j{-3&pUMvJTRk}h&(NY4 zS92wi>&4cok2S7{74cHr z2XKacq;e*9+m@3Iu19u4y*KT9-PU;<|0K)tApI)yMc+yKS)T*C?GpP(CW?57P1FX! z;T|mv#e&-`vTa>%;Iemhp~V&Ehff0}e3f8sC2u)_Pjbfxq4767p|RuWU-VR411Ed- zTZ0W$$xh0HM)JMhKq;Y`KyLb#dwy}+w#F|j+>CUB# zOP6YPd670t;_t&qy%5>nLUP{lo&{swnR_yLAJapB=lLdBMG(xwI`(u*cFnOheum8m zz3oQ28*B~HZhJv}&$K5utp2Uz}pwq|kQ2F3?0DRIzR-9)ns+D2V^%PN&_Ra7RX=BMNO57~AMYtIp67 zDrtKw?50T}+AA2idCuSfrAmjzpR1KU&JN;9NekR0Xf|)@9Myw}>bEyl=*&?Qv%LWR zx|i_gOHoZ$I*hI0TuK6i)?tE#y_ z$fc0R4>jIU{PCIR-{wqS=-<5!wF;s>YT7sqI#v!Qjmwrf^1r{|8oD<#uuVp>{_s;B znB;xpjJ=&-49d1^SfxJwDIBQ5zBQ3=_0(Evd@GR_YU5ub|FL;c#~ZYB5`=J&a!ZMg zsY@HMqKt*r`{eTz!OrUr`h%;v|98l)gnsT;HVShOOzoq5CbYxK&hddBK?QMRokiHe zvSV&hniqK_l*;NQn?J6#DR#1~N#Ppk(?a6~4O>lk_VhuluLG1iWeS>F6JZ_;x%ndX zz0s+RQ7X9gq0RB=lt{(=)^k5xvNIb#a9Kjj^7DJ@)}aIQIbQhj@`3O&ywD@ zY8$QsSv^0ectmFsTa=z^g*Z1gYOB=Xb<;A*GSdw4*cm@>J@3Gw_0xbZN>n6z4UyZk z2z!31g>q7?Wmn1^(fP4%7e6Lr0d)(lY*Xz60cJ)M3|V=@7HK;EX!#xVi-X^}bGOFF zulU1t7iKE-gY8ggiO$9}q<`u@=PhysNq^@B6>?0w>FI$T?wlGk5(t-Vrk%`nKoF+Y@xs#)`{*$SB^tco_E?+2C|gWPkqd>-E!y z0!8a5IB)!r#X}ae?AiUYtvJtlH@u!FwSEQ2Oo>dvimgkPv(1}=c2Oj3+`8^6Cum$U zG3}P53o9ZF!J~D^7ieEt!=tMGN$KMYYtgA-A=LF&PA?nQ*Ro%>Gy$z??QhI?V(V2H zljrB+*GJO?kiInHZ=fDU0l&MXTt4ddE$@~5ecD!%Bk_`n_8%}7QZyH`0?XX!y{~nY zA=EjZ3I=EkBp8#BV^&;Zxs#-fjH6mc)xLr`Z9_()va*O?-rk_oQyV>*zumt(v7!4u zR%ZG1i2J5-R!;n=Ir3X=WMt&_+;P9V@CgpfP}lSYn)h0GGtw#v;$YZsROs!$-_BU&pSK$Z z62~SP2hko?m6M|DSg3W^$)Ahg`QIajvVN(qyhw%yKV{PWvBUb_eQ6RlWCft^QcI=7 z;z+xL@3k8U%c};n{L_`_Qf2y?quuQfwcnqIwyM|qnfkv7QQ-SuU;eo!KZb#S`tt`G z+W)JYpZ^bS$Clzfy3U>=8yXhoUs1ulvbuWm}?1(0G_o+ZKcT&rV zmnZ-TJllUy?=>_wCaJ4SoTq%7PLU%;0O^p!7WmJLDJ`n9`Ph#{sO&j(KsZ#%S4mT# zKcSQ7NKLOpZ$sfjIzdlc`+f^oYit<=6(lStp-#4S`lbD+28*od{wcFb@2{sVuCS5f z;85$0^!2}IEi`KA_-Tf2K{NA{rO}zNbv5BOU;NtEP+0yy&8f!DSG6{G z*nFBu=>OJ#eS$X_O#Li6+(S=OIIdu_?Y0BvksQs$&sbYV z$)_20c;|ZMQuZDrCg;2#zOsc(!r79hnJoZ~i)AU5^XcH4x%YLjPXT1ASBPqE z`LVqgFkVbb#iEDW&&!juhvUS=ALtovZ5h%b#zp_5TOBrt@s0a7;YkDTuetGS%tG$sP-{hCQwZ;vgh_!Lo=x8gL1Lz z{eR;PLy4gp5C<8%eWBywwA%1keb{E;)wAS7m1#Cr{eyQBDwE|{aIJcNtvC-@)?m|` zD&!RH&_tHH;J3u&Z+K8&dL2J{!QJZ3E$sP^w5@+zTI!jPNvem8A3*He5b0sr3yB(x zYZj$K%S?vab1mzdG7eEJ6^el}6zcy8nN+n8^iOUzgSmWjSxEGH{si)Fedw5H-LAW< za+~iX$jIHjwoQI~{pDtT-g18#F{{~r?OH07rVse)h1M~S7uhAY);pp9v2rJ1vi|R0 z`d3R4f8_;2sc7uv99<8)?M^#gCnrYNNzL5WUF$Wzpwd&ZZ=)laoY8g;|EfN}JQGDL z6m`F7VAwvAWl0`of#0z?xcVM&wbYmy!m>teK$165hl%LCV;*KR=m%M&>h&8zK=8jE^fy)fqIx710vo*C zJ^SY4^-UndiSaZ|@+C#Y~`Sfa|^ZUXCb@P79;PWWw#yQq1($2n` zKrQsLM-5N!Z=H6#htB}J5-){XcvKV7OmWk*lZ6CTD*znaHeJ5+0wzqDHWW^fsHS1J zzgjA3gmoaX_2EY{GGsXqmx1ZBU!wW5fQH21Sc-H;-H;lA{gPyZ%Sif(C1i9nIG2FP zd~!7~sIV_peJ#k)9hVd(z0{=bHhhRD_z@k*B>r96kph74S#;}==_D2Ogbi#zZ;qqt zt$%e|VFK+S*=iJot*`y{+>BMdFBz|+G?wW8%=+(!EEqS%Mpk_*iiG|Ab;`=Co(iRp zm;I8{M4ORC)V6j*^Cxk<&v@T?&{sEKdoHHk=aUJXYv$%rRQh`2Z3EWS(Mrtz`e2;tx$jc9t2*?rR@4nn|YYEPMF z47nUyIgQ$RWK3X-HxUKfV9?eQ)0tbA+EbF^>-l&x%Z;LHbSxjpshTiyKvO3NwE$61&&aI^=~}*1+{@#pH=g zfl8mA038m0o`AKL=Wc=+9PLf~ve@XtIAG={0bezl6gH|z_{6N!?yD6zz{a))KoMkdL3(3;?XY7pK+Te zri8}yw}mKuTWTX?;Z8E9J7D$TmNTC{b3NSFCB0$%6Q=$Vw;_wgwe)*d9CrB~oip&# zPc_hvg2d5EAEgX>Yi%pp+paxlbyn{v=h9HezR08dqze$9MH5EFk;r#34}>2Bc#`dX z_RwX$Og~7r3t`u|<}D^o1L@k+;6bkrwMCo3$aO0hwTirRx59+J=6 zL^%NwXczm5>W*^vDGGM_4(UhA#bmixebP!DR2|& z!TT9ap3a%cQ*cz*wDPn^tLq4hh<(ywphq|L?PbNaDyxW>7w(B0`4J(0k3sUsXH8?-fmaS%gF_*pd^&G- z_MS1r+c95W!bs~4b(N7kK7VUOtiu6(f)deWlZsSr@m5eTZG2Ua3!k7r_<*{1w7IWQ zwn!4w{pYlWxJb zv-tAbKQpuCm4gSVb^BY=Az0s5O($QP<}0rqaDUc?g~%KFsnR_Q3qC?Y3q3J- zxEzHO#eHP0RZBj>{o|||%f2=V@Hi-jyGpeM4Z<>84v4|bYcWnVeRkw9TRtHq-OextIkm)a0YuM)|;8*!!>~6FDbW`u0_@%)8?Qm*%B_CT-^~ILyyYj`R*` z&2g3}%zcHX=;v+%cT;?3yC(x0zg{Lxdp-A+bx^`~b_c(>dSMBE!j9U#@wT%DL-+z- zec7f|He^_&*CBYwZRWS|t&r7~h~Z)3VoyKWvNZy2T%rp=S+MScGq-hArsQU5$IW3j zfvWIg`{8FHLl=ou1h_jYK8HDwOM#<0BbRBF5B^EF+n@dGZMt>%t<^v~Z%nqX9T+(} zu~gyh=tQMHB>$@s3P(wK-|h?T+{sMRox!X!q%IyGDkA}>c+caFBIETEY3H>c#(IlE zhR0(#F&-3E+AtfbN^*fV<4XYYDoMkMNcmi97He`D_ZH?C^Oz`XgzxWS2?}K)qAoC7 zTW;z-Pt!uecY&!D4p8$aF;(%wWc_L*xrP@@0YRG8R+J{lzSw0MFQ|@>Ty@;q(eP#K zeXS%u1D9BOhP`jix#Q;z6Gv6y-MqAPLIPl7Yi4kINA>7|-0pCC77{dtRh=L8)#yj*M#`W~w#w}QW z)!Nx(;3MMH64et9`{)EpL?r23#qip-%@T?H3Be(@TT?1yahrmjfz#-8acn%I*c4bi zu1#VRWp?(@lnR@W*dU(5g)EE`%Y~(+Fd&K+{86BKymAzFIBT%6Ku=S`tBT`bFJX#+ zgp~4h(Q~&qQ32oOf#P#`^rc%Ib7-j!4%sZ2zt( zLwcsoC4cfv)KQ@wwp!ePOQo?HrOw;xb zw=!X6JxsGr^Gyz5Hg&Q5y&`V8mGkEuVtte$h*XIzyU!7pQC`AAhTP}pBda>`SbYV< zs$3yi7XNReSB!}0hRYma%p!~q2Xde}bJwkn2wv}oJRD6ywQ{W;-#B~nJ2Zj^YKthX-}8~J;Bowaq6*ZcD* z_Vd2=f0m*G5Ju-QMbW%B7P%H_^vFzKgMdkA8@g8LfJ$$bBF02fo58-@*$BIlLX1ZN zY?#DeBc#GJ8ecZcO4m`ZOq`nRk4Mh;*^_>ItoKoGAYWUB-lFoZU29OSnZHyw7!1N>ZuPL9>5nv` zoKJ3p%rH)d*Eav@G1sASWTje;wbt|SWqhuZksc)VXM!+=XwA0cqa>_MeKaG}i#T9E zj_E6VAG*u#F}ZwO&|rRy^<)VOOk6c(YhKQO9(h?;d~SZp@jhB+FB$)~HSfE*UvhTQ z?O*Xp^PPg6~?E{m}$5^G^an z4)8dt(Xh4UoZCd*X=ESmOXeJLxsN4!gZ0KI5f6rV@`uD_bDQUblUdD~4ITo~G^2jH z`5xPG$e!0!*o!rV6Q4(xLQ9dz%@_3-DX00592Lfdo=z}AIy55{BX|M3m8wLcREuz< zNjvxmwf-!*ibkf%J}%RyB${QcnskV{aB_;^@C}t4!7@5kkvnhM$ghXOB1e84lR$b*$vlt?9f_ z&oSu*W@0n+29TKMXlzOI3%TQGSP~$Gk&%4Gf9el#Y`GQDqKD5$&!+6tuw&angm>cZ z-{)p0>llQnsI*fp)dc^Z7o?eR`2oML8T=99-h9_J*7+H1>v0~~;r7G}6M<){Pyjz* z8`%hd>pvwbgKhVIsWgJ9jl;I&V7PUT`n;-x*`&<;`Qhn9h# zwhHvu_A(7mOIh#PCIimv7X=}Z*Om`baCDrtnpi>@Oe_r5x0Z2Re=q}ScRAt4xoLjfa}w+ zzdp84YjPtL;<4^r+!O7dNFPAlSm_$3ql?&j_;o;bM*S(Y}XxMW}tfYQI48ZptbH&+=-Pdfs~Smr~Zx~O&^?0w6kr!ilg zH0C)yPSpNj__=eOaL#!^NE0k{KK;rHoW@Y-X)OU36*s5pd9vA{8ntv|26Fi$mHyFG)3Ta>Vm}4rp ztjKh|fzG_ZAj=?n#iOB$tVW*Qik=vN70O&Fs+vVO+oNWuCR634fJXO$<{csDs;wxX zgJ8<1DLKhKV#D58rp!2`zkI2|PC4GyyKNwU1=3MbLASTJ+u`_h{jHKT`J(bpSCPB_ zM(S96(qR&X(_}n6_wUU!1(c6Ln%3)D!=GlUrW}xRUpR=uc1lf&mSinA!#*--Qz|{5 ze?I^QeNlCP0vjY7fYxCIN~CU`Y^W;qR%j;qUukv>a=a2sv9>u8Q!ufQFCkNZZ(@_; z(MUbWTZRpwm>&So{s`T@4)mQrqkc!<#;}kM{{aa()x}27o5?tZV?p4bCVPe-8(v*L zm-apit(v}FZ2apIh>N2Lu|8va#;jK_aOFNl{(lDC{|_`yf$jgoiYBlzV#3aWk2Ezk zRVwjLuI8Tw;)ep0lX34KAG=pqSKAZ*23w~gf9U;%W2T`62Y%UqEB2M>f;~r*0zJ$d z4s9~`y%;6D?*9|Aeh-s}uCA#eOLVXUC- zR22W<7LU%VLT}!gV`^3V5{DE7TVZ z=1LgBKkgygs!D$Um`IdvS75Q@#p3qeWR*NDT?2t%7`w^0$NNb)a%FhnBx1xOSd=7E z`lP}7Fa%KkBg3?)uXV~G#QQ+bJ@8mD=fVr(mF>odfy+~dW1wpDe(Q*k9G$QXGBkH) z`9vb~jcwoRWQuQ|nNWl-NWv^ceW9@Sa8%M>2&tC02kGh4!r`p2sa>=1H!gCa7g(Q^ zS4NjSBiIwxP6kIQZQy_+_0qV917kNAbnawxlTroN;ru$`vzF`x+_=;)oQ9fCGnSR> zRvQCW1Z%c#ujP|#o;r6jA09Nn`GN5sD-dVeCr@I@wh64AzH8m09#X>Lebulbv&!~% zb(47Kw#GT52`xQ>Jx5b-n{Ib(yuNweU(9u@CQnT@0v$)CXOJLoeQaHvC@pJmD;gdk zB|>|D^{Qz$lRba)m_gNw+P|XgIY%-`gZVPtZXWJk!^;Rv@Nju_+-?XlZTtdp?H~mH zWs z7HGcrGx$?egc|L#`Y>uqOXpDYcS`Q51=$wnl#1twGQ4!?eH z0VhEQK4?nEE!+b0D9R2?SBRO!_x|Btn6~w@;97{aNK7Ge{k#6UAPU0zVW>t(g=jWQ zp};w#hu{@v`?ELSZj>+5IR7HF_gaSki-wgo-_6s9YpWNoA69_igPzBno_Hcwvu=nq z`bs@<77IIr=?2_~%bI<ZzD7nN4IppiwXznB|BL`d?PxyrdEPsXs@3B0qtyuEMbv{AvKV%oE_g3~ zLn@TxEvs{_1TGr+%}w?I=z>Huf!iI(VD@b+_Ln@hm%PE_1>Vsgp}J3_vy~_eR3fU5 zQZJGl)**pZzA?6iDExz064KG4!W zlowAej!{T^{{TG-g5}8ILd%CU?`y~z&PV;r(ywj}8qUX0`uw})^7XgDf;INY{a(%J z{?;Mi9wQIj+VV-}MjlbG8uWr`pIN(}87zMbEQu@tp{`Na&DV?*rpj6a`zK0TWK4(<(rEwqIVk6&fm~zliBx1- z^M~;M3WKE)JlrK#_*6lXhzjnAteDBD{DPHJ;TiTsF##75d|4k{fm zD`{0XaDGT20J4AOh%UeecSvz&4^su-Ch58?lTuW5!UEuo^(94cgJgWTUYDFv``Ebe z?|<3tZXh4aj0s<3v?&hjmFn>aLaFh#`<0KDEo{^nTy-+^aED&Bb53IS7}|M;xfw2A3G9a#?quIeuY! zY$yZX^IEes`T_zyKI_vtA7gTUpJ(hG$Xy>uzR)w&*mZyAd4-H5xDxac`f1*>p%^gL z!InWFfS|H|j2JT=!Fn0xdOo^jWESYGoSpJLRhM9>ZY}~xih+)M=ID`sX}&Dres}dk za(rom5D>B@3dI&Cu^{w;=&>Up7%ow<;^oW!IvesH*NMmvL4swj^5FKR8r(-20@bka zuB{hck-MMh&+R**oC!D~trx#$-}nCdmX^rUr0y=UHb8X1R9`4@HQ1mE%c0vi>0=2d z=v7y(fBlaA<`&pN#>)Gq?opq4*>ql%z6V{{+pF5K2%~aAyDP37&5yU=e`xmbvx3!0 zq$^9Oi+$Bk@0*1>^E@uVEUsm)B27@PfEj*w$%u}D6p7k*Iicx`8nWu!(E#+7}o*%W3Xgm${Y z1A2mg(cLy!WZSFU#=_Ek$B;KKa%6%p`sP18zp zR7VaMUTkBOf1Irx&x0{Yhqy)ZXWIzoRY-DF;*_Y>u#nhdPWYqiMmH~JCgWhT_8bxl zri^o>%g)7`&x4c6S zu9~3_AJoKaE4a%se=Ak=VVKPpP!d}zliZa20M3~C{VwG7KzTr2_j#n-4tebyPaO*b zrUCA_b&dq+>sQHT8DdNLQL%_(YI~kyo$67k^i!DVu{@QTNO`#++KKf;OLn8#sT)9= z1?mfZkvX*((!Ax8;%@x>y-U3;^Laq|!Vq2C%2}O&MsXfvu5J&@FTGcL7_dUF8pkVj zBoe$Bh(Gy{zsQRFWbgJzz|Pa4YUOifn5{!w17@W@v9DVGFU_`aW_1NFA zFN!k3b2f!Ufur&B~5mm-GVpuA-2`y z;-`158RD`KI4R;-eygQ!ukQTdbhe7|W0al6X(r^}>Qb{+$P(c>6E76`LeOso()njC zkjWlR(9M^w{qd5%bltU&myPWkOKD7=vbRhGFZ z?6(QAT&94reb~WK7PHy8wG-&ZoU!n6>MJ!N6z<%1Res(C z7V&a|JX+F zR-ngZoU{%vk)f%#|4E^(Z;kSwu}hxQLPW&>WI!6o> z9@VNkcSiFBA4Wq3z}#2{LjHs>qwpzO2Du|1F5wE!#ffgiM#~7-*)ii@ON!5&1&%4q z1^a3;9IBRoBUtJ!BVW2c2-6aLXe_x9xiZa^dXwh_F%gcF$BCY*Av;^l3V&k8^P=Yz z1_r_ojsz(ZB)~>g#Pru0Y@C6hi}S!znjT_dW<_K6bh}k9)cfN zV8=h720J8LW~m#2sjlrPHHbh4HXX+58HwA8erdh7Aeo^(W8xxadSx}6$iwH)7V*aq zHCw=fd~y}j_A7&_RXvE=FJZN-!38O^5<749vepWqeQo11pnDXiOYGvTL_eGoq z-2b6G1kz)IRvUH~DRv67ZQ`jtc|p%OT7mVMD@hD3nM4KYD(}l?6s;CB^Qt0AXlh&c z4!~Q>EQjRtDda9!!iCOeius$WUAtW%@vD4^9Pls2AgJ;&MO{mqK?tW$A}yZy@Dkh_ zu!~l|c1*Vp%Tc6<<1d4BIct(oF^kOHv4o%o?3DzNCeos!X80{_K6TnN%NM_IaeqYH zW^6rW5-IxH!2A3O`GIpY2%}BcHnW9q(@u(R)_R@iZ-ReKV(*mf*nXEVWE2n*0+Tn@ zLICR*8fqg){@mH-tzq08BfB8rh$_j1(pkGMB+3}`#)YeXmJ(uf#w^;g2$9DiTUB_cEPJFYO`(}jgetj{ zW{kY)$X#7su|qbiai{WO11z|REUD!vbuw>hs&0&!@cB3FTxf~bt=IRNY#+@JT$7(h z#}^vS8Qbs8VEdW*BOBLrV$VrJw%!+>bq&>%s*jwQ5$9i23F!um*cOuhKCz3Y^p!Mt z%cE_~+nUef z#&{u`?x>-9xz$2m6YW1gwhP$IQ(dfH`EfpE_mipr?Zf;Vj+*qu*&8lj7^GX2Bo??r z3F7=tk7;M$CQ%_uPRG6gd=?>nW<&QS6A0}{crBNE7WgN4_r3LuvHmwEl;bH2Q7jAH z^sb-CCjC(6MD79hCz|y=w9r!;qPRCSjULCI>jqJI9Cl}ga{I8CQ(XLw@lWurxVY1q zbS+P6D@x1jQcxQVGH7B_Y{A!#d2BnNZ7^(Kh`K7YL6RzmO{6u#T}dg<`}8!FTlePr zx_12UmY#f3{3pzm+~?F$HcB$LZr_Rb0}PB9Rs7ex2kw0*t^FX6zVXnz1aULR_s!QT zPPlR`i)l;md8#p+L0x0XVhhi3}EW#z_-Aw?PQE)rVQ@FhpD?3n82+; zEcnL8=0zM-rLSrh!af(95}25nD^Dcf#Zg!o4IN9AZeBb}nj~%Qm3k~iO!3#d z^=V1TQYkbT&Kv-JZ9+bz2o%orf%Zg67mm~AF@;x9EmbGD$bQdN>b&mQZQ1LWwh!w3 z4?FxH;B_baoeAo$qcbX_yaeUVFmx7@m-I@Kb5Nk_I)E0Y4AKPLv7xY0?w@F46Fojq zPbHe2iyPkW9QQ2&Ehspwf-SK4EnRa0e0WG$B_!2`vOw z2ck>%%WoVqVAi}$#>s((4&ookANT%1RLV^t6d^Ev@=;(_$RW`R)k0@Znwr3QHwb- zG~A%yRf%XgL_tO2Xs|cWcfr|YIZ}}S9f8f<6zI}f{SN{J7X!^gRpwjx&-JgQGju`; z6{yfS`3TzDwbBZ_;cZXIpoL<@ef@w%^5`KZV4*7wgpPyVsRQ!1{v-``L#Nq~T(7=x z*jrZ6_K&)SR!@@Kn7IdoZZwz*HaFD- zAn2&G0t!X>%|%;`Cvft}cC>jpJmOg@`~Y?my$M%ABfO^%0#vpB?v5z=9X`K0DNt2d~fBt+bCB=}|Lr zr+mXCevi_84_NhXbL3&FhTe?k4RToTwkP)}`me!zH+lb0e7@>{czLxqE>buN58#QB zpydBi5>)*4eqAhi$px!{<)>`y@14+ys5+*PIld$V|KlJ4@fhnMiRk;-W*rP8M$U)c z?mINFTE4-Nx7eQZTY1b?UXgXPio@;01Nr8ATeSEG$o~>^cLe8cu!T`zX0}Hme@yxV z@c-L@xUorS|CkHK_svTxAY8L7kun=5PwYYTi-h0;JzSSh9W%0#+g7IjG2st|5CJDXw=4smkr;Ba%m7aV5z9SA0!QJ@>`_Iloz zuVL9e>%ILmzMvZp>@5pP@K;bv)IW>yG-(QD={y4liULdqSM5MYQ$AmD)w!X5xZ{|L z&sskN+t#VN_N#1!)o1F7Q9edAVniFL7RVhi$nRsdgZfw{G9w z$jb)tI5QwoaicWSzxiq?)gUwWmgH#de{Bfx9_kn=?QdeoJC807FWG6eYP+;G5S=SF z9As(kS{8GUuzn?rz{iOu1dj22IE8PdcAGo8vJ%Bfc0%+Ds#e;I3AX!FKU zFJ1Mwns<;6MfBg)dvv!|G6jvOG194(MX*!=I1V#^F92C{cR?2UR7H3cKB=Hd(p&P0 zqdt0kSA}DuEal>3$A6qI(*K;=Fkp75N|vQ^b8{1ZWQMLb(3xA?5{;8FW^mQSgojFy zNjxD$S4vTT?+okCZ`cJc7qG{=FkcJVW4UZNtLr51vCI_zud2>Fob9%KP{LR+4orNkb;^nKnwzvI3C zzy7%2Z^xDn{8PmWH^oYS4CMNci~L7uJQ5xt6XaFr7a?9JZ`8;T2=6rGh! zf5E+?QHpiUe85VTbAU!fgmg`Magx}%^j#%>?AB`j%P()8*SJs5kBvsE5wuQLXA*Y5 zj9iZ&pT}NWPa+KxUb)KF1zkCA=?vkQ$6eI#3#}cOo$Xnp^{$H!1+W!AOWrS}!3J-D zc8d||!z;xG1zX29g&l0z0g=-6`28*2@*SFVI)g>RPuT~K{Q9UpQ3zBxTqeoxAF=;G zO)#eQHmDt;Q^yK?WKyj@WaekmThR?NM}B2vu;JIrD^`;`R*cv6dFUR(_AB#MiKhWW zYL=tEDUO;uw)>?OMRN>K>)I^9@$B4vJ<4w`n9X@RfUG|bV| z8vwMs`xs1=+ldDERH$?Z;$ak0nT@CP#W$ZOxvyWxdj_Z|m;lgwlVhfiF&Q1IYq!Ma z=UDC@rQxpm4}_s!Bbm`ZjkOIoUjfi`En?9TAlJLngTy6U;RQv8snS?M3DvCJ9ew=7 z&l%^_#0+!MR=u1E9}N!M+`k3whJ)K@W}A# zHM^34k>QvljUY=<@{=T!!N%x@-hTPxri0E#wys%cCjd5xT;qE`ZOWAG9ox zbPC9>82-Rz&BwEG|7?M*5w86H@BHb0kv!~f5hsbQulz*A!l=yP!MV%9-G*)&)|c5r zuLRDC;KS0C`9iG;IhDN9yIz1u8cjnc4;Y^@ydaGFbZ2p(CUtY$uJ6`8mFIU6rGqh2 z(L%36zz3<-Z9gFQeU0_=9IJ4p*e~E6S=5w!Fp(tuBC>_v9y-OiO|bsd@o^-q$IQ1X zxLp}_q96@YrqpF@G3A5(8V+6$o9oz>n@}}XbI~!fM8*Xg z^Pz77fa;=3%;L+KDQ3bF^@?5ZKBG6c%SL|-`f$4m_|1X2uc;(bNOPaY!@r#}ErPm( ztT)r1QF!iPkh|U!tczEqE}M{|1F3mhDEPz(t3Ax%AuZS^}Umd!&MVI>gjwW)#VJe?d|6#SGVZnP&2l(&xN}#)yZw)T8jy6 zJoMpbG#fWmQzh%SmU)7<2QdOjIlOo}&!IGJXlidwGq$;MoLA%for9gfytX%~7b?KB z%_z#K#qa^u#jvx4I76d(y4N>pQ!sSjAbKmy)r`~Ne`f~3g%k^_KqZ7N^(13#a{$L= zn*?T~LHn#<8*Vr@@aQJ^zT@>}RFmc|@T|$uuMTrBkh<(Vo{osFO2MwPmjKDkGuNH! z?`x-a1tIm^vo%%>hV@t#dXkX@{%?;_b0uj?g3uWNkoGXYP>KASD{*;yv7C#ZgF(d& zeYvijp`z&n*HMl3NSPmw3pwE-D37}k?H^iRL=Hv@jm%;zkE*)WN#jj@JG<~HO<5-h z^?6Uol8)nB5v;)!vaz02Fwp(!O#l>HZtu4GLjTbmjbCrBc?F4eH-()jYg}Rud6|8~ zNr6izzdr6pnXb7T6On|XH#u?NVgVS0%P1Wr=n9IKQbNDNoUnuA%3}iUDo?M$XxeS! zYE@{oXM zpf$!4mFvsvc45Hd(9MAteMNT4BniHBzr;N2Zb8{gg7o!SqNDa;4G5POzx~ES4pXF! za@S3jp<(g(&Ubvzf*b-IFURb4pEif+obrG0@&e{gSP@_c;bzgF;{;`d+dn==IAuptwOA@bVY_@5?BT!VJTA<#Aa)cXVk| zne&ClyZLTbHo_z{=>A_1Q#1F5`N=vsq3!C5Fcr&1;U*q#mEVQWEhujCP|bH)PYZLR zpV<9eWGv`^NXir6si(2_O*LA*j?d;9(rmgEUSC`4Qmr)4@y`Bh8mqsoXPbQCJ%ox} zN@Ut*Ia?*K$Si+a&@%fJTq7N^I@&vv#^o~Hk~!ODCCB)#PC3!mEt<&OZ#&y?C(~dp(zS>4Hy zBwIpPlh^wraMe`3c&V=m`f;*%=tu5e~F{EyhDJTr2ATIM9_bV6J>?6N- z=e=&8Zd?IH<4cDD=?%3=3h_(B<_a~82p^FZq?p+8!jP!q#>kbnXh0qsutsYC}ysHu3XA!DJ08Nr?p;Wo?xZ7 z=>ZY>VTu{^)o)F$zR)jK+qBTMtSUS7rftS(_Tyv6WZ{h7>lf7(R274@3%_D^R9d(1 z*1ctmn^`JOyzxYoFlribE!mdB54=CgC3);2u}sS}c#tJVSlM^fb&nfXbz{uAwMJT` z<0k3T4P{CWmbOKg3{i&-LNniZpwiFGbXO+dn>C*pK2m)9rUi{it)lIgC9Oa5yknA> zF;VGa&=J`d_NkYj2tF5ya%^Gy(%k5BlJw+S)Mr3z9g(UCdE(=zEHD-y>Y5|727DYM0=#J^Tae!#d z0|ZjIoyjIwJx%bXd)%}g7~W@)u!P*~6aHWbhu)HfQZz<;;-XIs*kuD|VXc`~6n;~m z+HXME*v-lWUvoQ8)t2cQv+s!_;)TpIX%#6q6`$U+Du`1kxgEOK0RFepI`kUWe*DNJ z(rGR1&IxvkC}iIM?RNx3dyQJhlj{zzM-sBmUM0U`c6C^QCWWY)S&! zF*a$>bKY$Y<}nZDNC-YLbe4S}JPrmpdZ-6`Ic%S1(KRIWaW&7N%hF!6r&+P=52a2Q zMiF;h;rQO6-UEl66O(U$=TSOrFFSoBa&yBjs?c&cc*k$Cxd9V{8?<` zk);^-RO!9b?)pL2by-H4JBMLmBhv)j&x<8?vj~TRB>9wekJHhR7!Fc*T6xkeYI z#R>erKIwb=duAYk0{L3n0;4Gci27l)4w3Mp?$~AM`_Z_B!Ijy74VF{xH|{42hfus& zSGi!BUr`oN2{ND1VNnU6v_ z!t8`ooxxudc%dK{z{DJzRm*1NC7an$n7n#S(re_`5sD6CdC-?q(#jFixeE(ehIZ{u z8*V7s_7|RNHy!W9tdTIRCxOz`QfgL7g(MDR!iqp93^&|t5q=1k?8DxV(PB%UUcfnT z_VsY@lNj9WI=c`cE^8{W`3D^n}pQ z5tuWo@lgEvmX04&>E?|$J}8G>Nl-iwvyYCDbk!ulEQwaQ%2)k(3ql#k^S756kk7Jr z@43LOPoP`Ffuw7z}3R z<6}yIXFgN(>BSw7J;+*u)xF8thWRxg(4w!WtYoNtWQ?a#+Jw}-Zs_(ZdfSz=xyct| zA7P7Q5o1ld46KahC3g0lBreX*?6E7)30?i-dYtG=Z#0Hjg_oENUzv{d_beTSlAWJjbN55i2bC1Qqsd zyffk;n|&}&1_EjM_yw~)KM&{AKymx|`I$B*g%L%@J;}RgO+p+D>+ZA?0qvEQn~ML~ zElZEFhda-P{sYY*X*lgwfAVbQDl)x0iXev)Hk+p;uPq^Q58+HR78YZ$uI6&?zTtAY z^^0DQbRjWc+<4`5(k07EOYsCkFqO#zyt_bA+9P@SZOq$Go_3~w4t6$f0+_z-C7r_$ zo!ryVzMd_DEg7+J9w0*db)wR2kQ_ixAbPK3W!TQo(EdyOja|POz6KtW-gW+gT>R+# zW0U=@!JC+NY+ zYRiDHL%?;UL?-g2BHyv)2bhcQ&p==w@n0GTBU$k*Jx=>=vbC^>NwY;H^D@z<3urF# zJbvRd!xBf!+_K0$t-=TTBXD(`|1Un{H{>JRfsE4*;1=n2%%WlB!hg$0plQEXoRU2L zYljU!&pknX|7}g~R}loMsizcg{??Ee)c#Y9qxs4L$$fv6Rq61@KT9t7AH2l-*}o=q zcSHR^ng75!ZhaBHPksoNMkM`fU;d=NXBO)hQ1}_`YWQdI_#buVTo`|TA#ZXwidk`M Q`vUpg&@ Date: Sat, 7 Oct 2023 12:49:26 +0530 Subject: [PATCH 063/146] Update authentication.md added images references as suggested by the reviewer --- pages/articles/authentication.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/articles/authentication.md b/pages/articles/authentication.md index 94e271d72..786aeca6a 100644 --- a/pages/articles/authentication.md +++ b/pages/articles/authentication.md @@ -161,10 +161,10 @@ The AzureEnvironment parameter only allows one value. Select the correct one tha For running `Connect-PnPOnline` with user credentials in Azure DevOps pipeline, you need to make sure that authentication in your Azure AD application is configured to allow public client. Public client can be configured from the Azure portal from the Authentication Blade in the application or by setting the `allowPublicClient` property in the application's manifest to true. -![image](https://github.com/kzkalra/powershell/assets/38322484/507d3c70-9c74-445b-9f50-1022973de5ba) +![image](../images/authentication/allowPublicClient.png) `username` and `password` for service account can be stored as secret pipeline variables and can be referenced in the script to achieve complete automation. -![image](https://github.com/kzkalra/powershell/assets/38322484/1d5acb94-3b12-4d51-b1b5-61f021789187) +![image](../images/authentication/libraryVariables.png) ## Silent Authentication with Credentials and MFA for running in Azure DevOps Pipelines with Microsoft Hosted Agents ### Identify the possible IP ranges for Microsoft-hosted agents @@ -181,7 +181,7 @@ For example, if your organization is located in the South East Asia region, you - Go to Azure AD conditional access - Open named location blade, click on `+ IP Ranges Location` - Enter the IP ranges for Microsoft Hosted Agents, `Mark as trusted location` should be checked. - ![image](https://github.com/kzkalra/powershell/assets/38322484/1cab2153-4075-43ef-83fd-b9509252119a) + ![image](../images/authentication/namedLocations.png) ### Create a conditional access policy @@ -192,7 +192,7 @@ For example, if your organization is located in the South East Asia region, you - Under conditions -> locations include `any locations` and exclude the recently created named location. - Under grant -> choose `grant access`. Only `require multifactor authentication needs to be checked`. - Enable the policy and click on Save. -![image](https://github.com/kzkalra/powershell/assets/38322484/1635ca9f-b743-4128-92d6-a322462908a2) +![image](../images/authentication/conditionalAccess.png) > [!Important] > You need to make sure that the new policy does not conflicts with any other policy in your tenant, otherwise make the changes accordingly. From 6ad95dc3cd07fc6d20ff75feafecc74f265988d2 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sun, 8 Oct 2023 02:38:45 +0000 Subject: [PATCH 064/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 3180 ++++++++--------- version.txt | 2 +- 3 files changed, 1592 insertions(+), 1592 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index e42c84ad0..2df489053 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -24fa630a32e59aa6d4cd459a541177dc46536bce \ No newline at end of file +715a700dbe9a14d3798edbd47c9dd002b8092162 \ 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 85049e59a..39b1c7b8f 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9541 +1,9541 @@ [ { - "Rank": 1, "CommandName": "Add-PnPAlert", + "Rank": 1, "Id": 1, "Command": "Add-PnPAlert -List \"Demo List\"" }, { - "Rank": 2, "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)" }, { - "Rank": 3, "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\"" }, { - "Rank": 4, "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))" }, { - "Rank": 1, "CommandName": "Add-PnPApp", + "Rank": 1, "Id": 5, "Command": "Add-PnPApp -Path ./myapp.sppkg" }, { - "Rank": 2, "CommandName": "Add-PnPApp", + "Rank": 2, "Id": 6, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" }, { - "Rank": 3, "CommandName": "Add-PnPApp", + "Rank": 3, "Id": 7, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" }, { - "Rank": 4, "CommandName": "Add-PnPApp", + "Rank": 4, "Id": 8, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" }, { - "Rank": 1, "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`\"}" }, { - "Rank": 1, "CommandName": "Add-PnPAvailableSiteClassification", + "Rank": 1, "Id": 10, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" }, { - "Rank": 2, "CommandName": "Add-PnPAvailableSiteClassification", + "Rank": 2, "Id": 11, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" }, { - "Rank": 1, "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 1, "Id": 12, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 2, "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 2, "Id": 13, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Rank": 3, "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 3, "Id": 14, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "Rank": 1, "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 1, "Id": 15, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 2, "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 2, "Id": 16, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Rank": 3, "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 3, "Id": 17, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "Rank": 1, "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Rank": 1, "Id": 18, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph" }, { - "Rank": 2, "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\"" }, { - "Rank": 1, "CommandName": "Add-PnPContentType", + "Rank": 1, "Id": 20, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct" }, { - "Rank": 2, "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\"" }, { - "Rank": 3, "CommandName": "Add-PnPContentType", + "Rank": 3, "Id": 22, "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" }, { - "Rank": 4, "CommandName": "Add-PnPContentType", + "Rank": 4, "Id": 23, "Command": "Add-PnPContentType -Name \"Project Item\"" }, { - "Rank": 5, "CommandName": "Add-PnPContentType", + "Rank": 5, "Id": 24, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" }, { - "Rank": 1, "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Rank": 1, "Id": 25, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" }, { - "Rank": 2, "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Rank": 2, "Id": 26, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" }, { - "Rank": 1, "CommandName": "Add-PnPContentTypeToDocumentSet", + "Rank": 1, "Id": 27, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Rank": 2, "CommandName": "Add-PnPContentTypeToDocumentSet", + "Rank": 2, "Id": 28, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Rank": 1, "CommandName": "Add-PnPContentTypeToList", + "Rank": 1, "Id": 29, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" }, { - "Rank": 1, "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`\"}\"" }, { - "Rank": 1, "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Rank": 1, "Id": 31, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" }, { - "Rank": 2, "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Rank": 2, "Id": 32, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" }, { - "Rank": 1, "CommandName": "Add-PnPDocumentSet", + "Rank": 1, "Id": 33, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" }, { - "Rank": 1, "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" }, { - "Rank": 2, "CommandName": "Add-PnPEventReceiver", + "Rank": 2, "Id": 35, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous" }, { - "Rank": 3, "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" }, { - "Rank": 4, "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" }, { - "Rank": 1, "CommandName": "Add-PnPField", + "Rank": 1, "Id": 38, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" }, { - "Rank": 2, "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\"" }, { - "Rank": 3, "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\"" }, { - "Rank": 4, "CommandName": "Add-PnPField", + "Rank": 4, "Id": 41, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" }, { - "Rank": 5, "CommandName": "Add-PnPField", + "Rank": 5, "Id": 42, "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" }, { - "Rank": 6, "CommandName": "Add-PnPField", + "Rank": 6, "Id": 43, "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" }, { - "Rank": 1, "CommandName": "Add-PnPFieldToContentType", + "Rank": 1, "Id": 44, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Rank": 1, "CommandName": "Add-PnPFile", + "Rank": 1, "Id": 45, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" }, { - "Rank": 2, "CommandName": "Add-PnPFile", + "Rank": 2, "Id": 46, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" }, { - "Rank": 3, "CommandName": "Add-PnPFile", + "Rank": 3, "Id": 47, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" }, { - "Rank": 4, "CommandName": "Add-PnPFile", + "Rank": 4, "Id": 48, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" }, { - "Rank": 5, "CommandName": "Add-PnPFile", + "Rank": 5, "Id": 49, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" }, { - "Rank": 6, "CommandName": "Add-PnPFile", + "Rank": 6, "Id": 50, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" }, { - "Rank": 7, "CommandName": "Add-PnPFile", + "Rank": 7, "Id": 51, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" }, { - "Rank": 8, "CommandName": "Add-PnPFile", + "Rank": 8, "Id": 52, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" }, { - "Rank": 1, "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 1, "Id": 53, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Rank": 2, "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 2, "Id": 54, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" }, { - "Rank": 3, "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 3, "Id": 55, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" }, { - "Rank": 1, "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Rank": 1, "Id": 56, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Rank": 2, "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Rank": 2, "Id": 57, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" }, { - "Rank": 1, "CommandName": "Add-PnPFileSharingInvite", + "Rank": 1, "Id": 58, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "Rank": 2, "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" }, { - "Rank": 3, "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)" }, { - "Rank": 1, "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 1, "Id": 61, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" }, { - "Rank": 2, "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 2, "Id": 62, "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" }, { - "Rank": 3, "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 3, "Id": 63, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" }, { - "Rank": 4, "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 4, "Id": 64, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" }, { - "Rank": 5, "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 5, "Id": 65, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" }, { - "Rank": 1, "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\"" }, { - "Rank": 2, "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\"" }, { - "Rank": 1, "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" }, { - "Rank": 2, "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" }, { - "Rank": 3, "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" }, { - "Rank": 4, "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" }, { - "Rank": 1, "CommandName": "Add-PnPFolder", + "Rank": 1, "Id": 72, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Rank": 2, "CommandName": "Add-PnPFolder", + "Rank": 2, "Id": 73, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" }, { - "Rank": 3, "CommandName": "Add-PnPFolder", + "Rank": 3, "Id": 74, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" }, { - "Rank": 1, "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Rank": 1, "Id": 75, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Rank": 2, "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Rank": 2, "Id": 76, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" }, { - "Rank": 3, "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)" }, { - "Rank": 1, "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Rank": 1, "Id": 78, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Rank": 2, "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Rank": 2, "Id": 79, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" }, { - "Rank": 1, "CommandName": "Add-PnPFolderSharingInvite", + "Rank": 1, "Id": 80, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "Rank": 2, "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" }, { - "Rank": 3, "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)" }, { - "Rank": 1, "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\"" }, { - "Rank": 2, "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\"" }, { - "Rank": 1, "CommandName": "Add-PnPGroupMember", + "Rank": 1, "Id": 85, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Rank": 2, "CommandName": "Add-PnPGroupMember", + "Rank": 2, "Id": 86, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" }, { - "Rank": 1, "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" }, { - "Rank": 1, "CommandName": "Add-PnPHubSiteAssociation", + "Rank": 1, "Id": 88, "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" }, { - "Rank": 1, "CommandName": "Add-PnPHubToHubAssociation", + "Rank": 1, "Id": 89, "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" }, { - "Rank": 2, "CommandName": "Add-PnPHubToHubAssociation", + "Rank": 2, "Id": 90, "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"" }, { - "Rank": 3, "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\"" }, { - "Rank": 1, "CommandName": "Add-PnPJavaScriptBlock", + "Rank": 1, "Id": 92, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" }, { - "Rank": 2, "CommandName": "Add-PnPJavaScriptBlock", + "Rank": 2, "Id": 93, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" }, { - "Rank": 1, "CommandName": "Add-PnPJavaScriptLink", + "Rank": 1, "Id": 94, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site" }, { - "Rank": 2, "CommandName": "Add-PnPJavaScriptLink", + "Rank": 2, "Id": 95, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" }, { - "Rank": 1, "CommandName": "Add-PnPListDesign", + "Rank": 1, "Id": 96, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" }, { - "Rank": 2, "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\"" }, { - "Rank": 1, "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 1, "Id": 98, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" }, { - "Rank": 2, "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 2, "Id": 99, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" }, { - "Rank": 3, "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 3, "Id": 100, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" }, { - "Rank": 1, "CommandName": "Add-PnPListItem", + "Rank": 1, "Id": 101, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 2, "CommandName": "Add-PnPListItem", + "Rank": 2, "Id": 102, "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 3, "CommandName": "Add-PnPListItem", + "Rank": 3, "Id": 103, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" }, { - "Rank": 4, "CommandName": "Add-PnPListItem", + "Rank": 4, "Id": 104, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" }, { - "Rank": 5, "CommandName": "Add-PnPListItem", + "Rank": 5, "Id": 105, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" }, { - "Rank": 1, "CommandName": "Add-PnPListItemAttachment", + "Rank": 1, "Id": 106, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" }, { - "Rank": 2, "CommandName": "Add-PnPListItemAttachment", + "Rank": 2, "Id": 107, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" }, { - "Rank": 3, "CommandName": "Add-PnPListItemAttachment", + "Rank": 3, "Id": 108, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" }, { - "Rank": 1, "CommandName": "Add-PnPListItemComment", + "Rank": 1, "Id": 109, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" }, { - "Rank": 1, "CommandName": "Add-PnPMasterPage", + "Rank": 1, "Id": 110, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" }, { - "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupMember", + "Rank": 1, "Id": 111, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupMember", + "Rank": 2, "Id": 112, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Rank": 1, "Id": 113, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Rank": 2, "Id": 114, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Rank": 1, "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\"" }, { - "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 2, "Id": 116, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" }, { - "Rank": 3, "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 3, "Id": 117, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" }, { - "Rank": 1, "CommandName": "Add-PnPNavigationNode", + "Rank": 1, "Id": 118, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" }, { - "Rank": 2, "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" }, { - "Rank": 3, "CommandName": "Add-PnPNavigationNode", + "Rank": 3, "Id": 120, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" }, { - "Rank": 4, "CommandName": "Add-PnPNavigationNode", + "Rank": 4, "Id": 121, "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" }, { - "Rank": 5, "CommandName": "Add-PnPNavigationNode", + "Rank": 5, "Id": 122, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" }, { - "Rank": 6, "CommandName": "Add-PnPNavigationNode", + "Rank": 6, "Id": 123, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" }, { - "Rank": 7, "CommandName": "Add-PnPNavigationNode", + "Rank": 7, "Id": 124, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" }, { - "Rank": 8, "CommandName": "Add-PnPNavigationNode", + "Rank": 8, "Id": 125, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" }, { - "Rank": 1, "CommandName": "Add-PnPOrgAssetsLibrary", + "Rank": 1, "Id": 126, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" }, { - "Rank": 2, "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\"" }, { - "Rank": 3, "CommandName": "Add-PnPOrgAssetsLibrary", + "Rank": 3, "Id": 128, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" }, { - "Rank": 1, "CommandName": "Add-PnPOrgNewsSite", + "Rank": 1, "Id": 129, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" }, { - "Rank": 1, "CommandName": "Add-PnPPage", + "Rank": 1, "Id": 130, "Command": "Add-PnPPage -Name \"NewPage\"" }, { - "Rank": 2, "CommandName": "Add-PnPPage", + "Rank": 2, "Id": 131, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" }, { - "Rank": 3, "CommandName": "Add-PnPPage", + "Rank": 3, "Id": 132, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" }, { - "Rank": 4, "CommandName": "Add-PnPPage", + "Rank": 4, "Id": 133, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" }, { - "Rank": 5, "CommandName": "Add-PnPPage", + "Rank": 5, "Id": 134, "Command": "Add-PnPPage -Name \"Folder/NewPage\"" }, { - "Rank": 6, "CommandName": "Add-PnPPage", + "Rank": 6, "Id": 135, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" }, { - "Rank": 7, "CommandName": "Add-PnPPage", + "Rank": 7, "Id": 136, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Rank": 8, "CommandName": "Add-PnPPage", + "Rank": 8, "Id": 137, "Command": "Add-PnPPage -Name \"NewPage\" -Translate" }, { - "Rank": 9, "CommandName": "Add-PnPPage", + "Rank": 9, "Id": 138, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Rank": 10, "CommandName": "Add-PnPPage", + "Rank": 10, "Id": 139, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Rank": 1, "CommandName": "Add-PnPPageImageWebPart", + "Rank": 1, "Id": 140, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" }, { - "Rank": 2, "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\"" }, { - "Rank": 1, "CommandName": "Add-PnPPageSection", + "Rank": 1, "Id": 142, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" }, { - "Rank": 2, "CommandName": "Add-PnPPageSection", + "Rank": 2, "Id": 143, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" }, { - "Rank": 1, "CommandName": "Add-PnPPageTextPart", + "Rank": 1, "Id": 144, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" }, { - "Rank": 2, "CommandName": "Add-PnPPageTextPart", + "Rank": 2, "Id": 145, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" }, { - "Rank": 3, "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\"" }, { - "Rank": 1, "CommandName": "Add-PnPPageWebPart", + "Rank": 1, "Id": 147, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" }, { - "Rank": 2, "CommandName": "Add-PnPPageWebPart", + "Rank": 2, "Id": 148, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" }, { - "Rank": 3, "CommandName": "Add-PnPPageWebPart", + "Rank": 3, "Id": 149, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" }, { - "Rank": 1, "CommandName": "Add-PnPPlannerBucket", + "Rank": 1, "Id": 150, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" }, { - "Rank": 2, "CommandName": "Add-PnPPlannerBucket", + "Rank": 2, "Id": 151, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" }, { - "Rank": 1, "CommandName": "Add-PnPPlannerRoster", + "Rank": 1, "Id": 152, "Command": "Add-PnPPlannerRoster" }, { - "Rank": 1, "CommandName": "Add-PnPPlannerRosterMember", + "Rank": 1, "Id": 153, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Rank": 1, "CommandName": "Add-PnPPlannerTask", + "Rank": 1, "Id": 154, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "Rank": 2, "CommandName": "Add-PnPPlannerTask", + "Rank": 2, "Id": 155, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "Rank": 3, "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\"" }, { - "Rank": 1, "CommandName": "Add-PnPPublishingImageRendition", + "Rank": 1, "Id": 157, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Rank": 1, "CommandName": "Add-PnPPublishingPage", + "Rank": 1, "Id": 158, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" }, { - "Rank": 2, "CommandName": "Add-PnPPublishingPage", + "Rank": 2, "Id": 159, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" }, { - "Rank": 1, "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" }, { - "Rank": 1, "CommandName": "Add-PnPRoleDefinition", + "Rank": 1, "Id": 161, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" }, { - "Rank": 2, "CommandName": "Add-PnPRoleDefinition", + "Rank": 2, "Id": 162, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" }, { - "Rank": 3, "CommandName": "Add-PnPRoleDefinition", + "Rank": 3, "Id": 163, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" }, { - "Rank": 1, "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 1, "Id": 164, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Rank": 2, "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 2, "Id": 165, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Rank": 3, "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 3, "Id": 166, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" }, { - "Rank": 1, "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Rank": 1, "Id": 167, "Command": "Add-PnPSiteCollectionAppCatalog" }, { - "Rank": 2, "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Rank": 2, "Id": 168, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "Rank": 1, "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" }, { - "Rank": 2, "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" }, { - "Rank": 3, "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\"" }, { - "Rank": 1, "CommandName": "Add-PnPSiteDesignFromWeb", + "Rank": 1, "Id": 172, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" }, { - "Rank": 2, "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)" }, { - "Rank": 3, "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" }, { - "Rank": 1, "CommandName": "Add-PnPSiteDesignTask", + "Rank": 1, "Id": 175, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Rank": 2, "CommandName": "Add-PnPSiteDesignTask", + "Rank": 2, "Id": 176, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Rank": 1, "CommandName": "Add-PnPSiteScript", + "Rank": 1, "Id": 177, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" }, { - "Rank": 1, "CommandName": "Add-PnPSiteScriptPackage", + "Rank": 1, "Id": 178, "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" }, { - "Rank": 1, "CommandName": "Add-PnPSiteTemplate", + "Rank": 1, "Id": 179, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" }, { - "Rank": 1, "CommandName": "Add-PnPStoredCredential", + "Rank": 1, "Id": 180, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" }, { - "Rank": 2, "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)" }, { - "Rank": 3, "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\"" }, { - "Rank": 1, "CommandName": "Add-PnPTaxonomyField", + "Rank": 1, "Id": 183, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" }, { - "Rank": 2, "CommandName": "Add-PnPTaxonomyField", + "Rank": 2, "Id": 184, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" }, { - "Rank": 1, "CommandName": "Add-PnPTeamsChannel", + "Rank": 1, "Id": 185, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" }, { - "Rank": 2, "CommandName": "Add-PnPTeamsChannel", + "Rank": 2, "Id": 186, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" }, { - "Rank": 3, "CommandName": "Add-PnPTeamsChannel", + "Rank": 3, "Id": 187, "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" }, { - "Rank": 4, "CommandName": "Add-PnPTeamsChannel", + "Rank": 4, "Id": 188, "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" }, { - "Rank": 1, "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" }, { - "Rank": 2, "CommandName": "Add-PnpTeamsChannelUser", + "Rank": 2, "Id": 190, "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" }, { - "Rank": 1, "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\"" }, { - "Rank": 2, "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\"" }, { - "Rank": 3, "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\"" }, { - "Rank": 4, "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" }, { - "Rank": 1, "CommandName": "Add-PnPTeamsTeam", + "Rank": 1, "Id": 195, "Command": "Add-PnPTeamsTeam" }, { - "Rank": 1, "CommandName": "Add-PnPTeamsUser", + "Rank": 1, "Id": 196, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Rank": 2, "CommandName": "Add-PnPTeamsUser", + "Rank": 2, "Id": 197, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Rank": 3, "CommandName": "Add-PnPTeamsUser", + "Rank": 3, "Id": 198, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" }, { - "Rank": 4, "CommandName": "Add-PnPTeamsUser", + "Rank": 4, "Id": 199, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" }, { - "Rank": 1, "CommandName": "Add-PnPTenantCdnOrigin", + "Rank": 1, "Id": 200, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Rank": 1, "CommandName": "Add-PnPTenantSequence", + "Rank": 1, "Id": 201, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" }, { - "Rank": 1, "CommandName": "Add-PnPTenantSequenceSite", + "Rank": 1, "Id": 202, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" }, { - "Rank": 1, "CommandName": "Add-PnPTenantSequenceSubSite", + "Rank": 1, "Id": 203, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" }, { - "Rank": 1, "CommandName": "Add-PnPTermToTerm", + "Rank": 1, "Id": 204, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" }, { - "Rank": 1, "CommandName": "Add-PnPView", + "Rank": 1, "Id": 205, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" }, { - "Rank": 2, "CommandName": "Add-PnPView", + "Rank": 2, "Id": 206, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" }, { - "Rank": 3, "CommandName": "Add-PnPView", + "Rank": 3, "Id": 207, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" }, { - "Rank": 1, "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\"" }, { - "Rank": 2, "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\"" }, { - "Rank": 3, "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\"" }, { - "Rank": 1, "CommandName": "Add-PnPWebhookSubscription", + "Rank": 1, "Id": 211, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Rank": 2, "CommandName": "Add-PnPWebhookSubscription", + "Rank": 2, "Id": 212, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Rank": 3, "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!\"" }, { - "Rank": 1, "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" }, { - "Rank": 2, "CommandName": "Add-PnPWebPartToWebPartPage", + "Rank": 2, "Id": 215, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" }, { - "Rank": 1, "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" }, { - "Rank": 2, "CommandName": "Add-PnPWebPartToWikiPage", + "Rank": 2, "Id": 217, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" }, { - "Rank": 1, "CommandName": "Add-PnPWikiPage", + "Rank": 1, "Id": 218, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" }, { - "Rank": 1, "CommandName": "Clear-PnPAzureADGroupMember", + "Rank": 1, "Id": 219, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" }, { - "Rank": 1, "CommandName": "Clear-PnPAzureADGroupOwner", + "Rank": 1, "Id": 220, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" }, { - "Rank": 1, "CommandName": "Clear-PnPDefaultColumnValues", + "Rank": 1, "Id": 221, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" }, { - "Rank": 2, "CommandName": "Clear-PnPDefaultColumnValues", + "Rank": 2, "Id": 222, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" }, { - "Rank": 1, "CommandName": "Clear-PnPListItemAsRecord", + "Rank": 1, "Id": 223, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Rank": 1, "Id": 224, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" }, { - "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Rank": 1, "Id": 225, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" }, { - "Rank": 1, "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 1, "Id": 226, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Rank": 2, "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 2, "Id": 227, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" }, { - "Rank": 3, "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 3, "Id": 228, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" }, { - "Rank": 1, "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Rank": 1, "Id": 229, "Command": "Clear-PnPTenantAppCatalogUrl" }, { - "Rank": 1, "CommandName": "Clear-PnPTenantRecycleBinItem", + "Rank": 1, "Id": 230, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 2, "CommandName": "Clear-PnPTenantRecycleBinItem", + "Rank": 2, "Id": 231, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "Rank": 1, "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\"" }, { - "Rank": 1, "CommandName": "Convert-PnPFolderToSiteTemplate", + "Rank": 1, "Id": 233, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" }, { - "Rank": 2, "CommandName": "Convert-PnPFolderToSiteTemplate", + "Rank": 2, "Id": 234, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" }, { - "Rank": 1, "CommandName": "Convert-PnPSiteTemplate", + "Rank": 1, "Id": 235, "Command": "Convert-PnPSiteTemplate -Path template.xml" }, { - "Rank": 2, "CommandName": "Convert-PnPSiteTemplate", + "Rank": 2, "Id": 236, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" }, { - "Rank": 3, "CommandName": "Convert-PnPSiteTemplate", + "Rank": 3, "Id": 237, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" }, { - "Rank": 1, "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Rank": 1, "Id": 238, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" }, { - "Rank": 2, "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Rank": 2, "Id": 239, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" }, { - "Rank": 1, "CommandName": "ConvertTo-PnPPage", + "Rank": 1, "Id": 240, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" }, { - "Rank": 2, "CommandName": "ConvertTo-PnPPage", + "Rank": 2, "Id": 241, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" }, { - "Rank": 3, "CommandName": "ConvertTo-PnPPage", + "Rank": 3, "Id": 242, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" }, { - "Rank": 4, "CommandName": "ConvertTo-PnPPage", + "Rank": 4, "Id": 243, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" }, { - "Rank": 5, "CommandName": "ConvertTo-PnPPage", + "Rank": 5, "Id": 244, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Rank": 6, "CommandName": "ConvertTo-PnPPage", + "Rank": 6, "Id": 245, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" }, { - "Rank": 7, "CommandName": "ConvertTo-PnPPage", + "Rank": 7, "Id": 246, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" }, { - "Rank": 8, "CommandName": "ConvertTo-PnPPage", + "Rank": 8, "Id": 247, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" }, { - "Rank": 9, "CommandName": "ConvertTo-PnPPage", + "Rank": 9, "Id": 248, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Rank": 10, "CommandName": "ConvertTo-PnPPage", + "Rank": 10, "Id": 249, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" }, { - "Rank": 11, "CommandName": "ConvertTo-PnPPage", + "Rank": 11, "Id": 250, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" }, { - "Rank": 12, "CommandName": "ConvertTo-PnPPage", + "Rank": 12, "Id": 251, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Rank": 13, "CommandName": "ConvertTo-PnPPage", + "Rank": 13, "Id": 252, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Rank": 14, "CommandName": "ConvertTo-PnPPage", + "Rank": 14, "Id": 253, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" }, { - "Rank": 1, "CommandName": "Copy-PnPFile", + "Rank": 1, "Id": 254, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Rank": 2, "CommandName": "Copy-PnPFile", + "Rank": 2, "Id": 255, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Rank": 3, "CommandName": "Copy-PnPFile", + "Rank": 3, "Id": 256, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Rank": 4, "CommandName": "Copy-PnPFile", + "Rank": 4, "Id": 257, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Rank": 5, "CommandName": "Copy-PnPFile", + "Rank": 5, "Id": 258, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Rank": 6, "CommandName": "Copy-PnPFile", + "Rank": 6, "Id": 259, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Rank": 7, "CommandName": "Copy-PnPFile", + "Rank": 7, "Id": 260, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Rank": 8, "CommandName": "Copy-PnPFile", + "Rank": 8, "Id": 261, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Rank": 9, "CommandName": "Copy-PnPFile", + "Rank": 9, "Id": 262, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Rank": 10, "CommandName": "Copy-PnPFile", + "Rank": 10, "Id": 263, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Rank": 1, "CommandName": "Copy-PnPFolder", + "Rank": 1, "Id": 264, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Rank": 2, "CommandName": "Copy-PnPFolder", + "Rank": 2, "Id": 265, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Rank": 3, "CommandName": "Copy-PnPFolder", + "Rank": 3, "Id": 266, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Rank": 4, "CommandName": "Copy-PnPFolder", + "Rank": 4, "Id": 267, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Rank": 5, "CommandName": "Copy-PnPFolder", + "Rank": 5, "Id": 268, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Rank": 6, "CommandName": "Copy-PnPFolder", + "Rank": 6, "Id": 269, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Rank": 7, "CommandName": "Copy-PnPFolder", + "Rank": 7, "Id": 270, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Rank": 8, "CommandName": "Copy-PnPFolder", + "Rank": 8, "Id": 271, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Rank": 9, "CommandName": "Copy-PnPFolder", + "Rank": 9, "Id": 272, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Rank": 10, "CommandName": "Copy-PnPFolder", + "Rank": 10, "Id": 273, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Rank": 1, "CommandName": "Copy-PnPItemProxy", + "Rank": 1, "Id": 274, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" }, { - "Rank": 1, "CommandName": "Copy-PnPList", + "Rank": 1, "Id": 275, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" }, { - "Rank": 2, "CommandName": "Copy-PnPList", + "Rank": 2, "Id": 276, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" }, { - "Rank": 3, "CommandName": "Copy-PnPList", + "Rank": 3, "Id": 277, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" }, { - "Rank": 4, "CommandName": "Copy-PnPList", + "Rank": 4, "Id": 278, "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" }, { - "Rank": 1, "CommandName": "Copy-PnPTeamsTeam", + "Rank": 1, "Id": 279, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" }, { - "Rank": 2, "CommandName": "Copy-PnPTeamsTeam", + "Rank": 2, "Id": 280, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" }, { - "Rank": 3, "CommandName": "Copy-PnPTeamsTeam", + "Rank": 3, "Id": 281, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "Rank": 4, "CommandName": "Copy-PnPTeamsTeam", + "Rank": 4, "Id": 282, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "Rank": 1, "CommandName": "Disable-PnPFeature", + "Rank": 1, "Id": 283, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, "CommandName": "Disable-PnPFeature", + "Rank": 2, "Id": 284, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Rank": 3, "CommandName": "Disable-PnPFeature", + "Rank": 3, "Id": 285, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Rank": 1, "CommandName": "Disable-PnPPageScheduling", + "Rank": 1, "Id": 286, "Command": "Disable-PnPPageScheduling" }, { - "Rank": 1, "CommandName": "Disable-PnPPowerShellTelemetry", + "Rank": 1, "Id": 287, "Command": "Disable-PnPPowerShellTelemetry" }, { - "Rank": 2, "CommandName": "Disable-PnPPowerShellTelemetry", + "Rank": 2, "Id": 288, "Command": "Disable-PnPPowerShellTelemetry -Force" }, { - "Rank": 1, "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Rank": 1, "Id": 289, "Command": "Disable-PnPSharingForNonOwnersOfSite" }, { - "Rank": 1, "CommandName": "Disable-PnPSiteClassification", + "Rank": 1, "Id": 290, "Command": "Disable-PnPSiteClassification" }, { - "Rank": 1, "CommandName": "Disconnect-PnPOnline", + "Rank": 1, "Id": 291, "Command": "Disconnect-PnPOnline" }, { - "Rank": 1, "CommandName": "Enable-PnPCommSite", + "Rank": 1, "Id": 292, "Command": "Enable-PnPCommSite" }, { - "Rank": 2, "CommandName": "Enable-PnPCommSite", + "Rank": 2, "Id": 293, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" }, { - "Rank": 1, "CommandName": "Enable-PnPFeature", + "Rank": 1, "Id": 294, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, "CommandName": "Enable-PnPFeature", + "Rank": 2, "Id": 295, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Rank": 3, "CommandName": "Enable-PnPFeature", + "Rank": 3, "Id": 296, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Rank": 1, "CommandName": "Enable-PnPPageScheduling", + "Rank": 1, "Id": 297, "Command": "Enable-PnPPageScheduling" }, { - "Rank": 1, "CommandName": "Enable-PnPPowerShellTelemetry", + "Rank": 1, "Id": 298, "Command": "Enable-PnPPowerShellTelemetry" }, { - "Rank": 2, "CommandName": "Enable-PnPPowerShellTelemetry", + "Rank": 2, "Id": 299, "Command": "Enable-PnPPowerShellTelemetry -Force" }, { - "Rank": 1, "CommandName": "Enable-PnPSiteClassification", + "Rank": 1, "Id": 300, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" }, { - "Rank": 2, "CommandName": "Enable-PnPSiteClassification", + "Rank": 2, "Id": 301, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Rank": 1, "CommandName": "Export-PnPListToSiteTemplate", + "Rank": 1, "Id": 302, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" }, { - "Rank": 2, "CommandName": "Export-PnPListToSiteTemplate", + "Rank": 2, "Id": 303, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" }, { - "Rank": 1, "CommandName": "Export-PnPPage", + "Rank": 1, "Id": 304, "Command": "Export-PnPPage -Identity Home.aspx" }, { - "Rank": 1, "CommandName": "Export-PnPPageMapping", + "Rank": 1, "Id": 305, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" }, { - "Rank": 2, "CommandName": "Export-PnPPageMapping", + "Rank": 2, "Id": 306, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" }, { - "Rank": 3, "CommandName": "Export-PnPPageMapping", + "Rank": 3, "Id": 307, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" }, { - "Rank": 1, "CommandName": "Export-PnPTaxonomy", + "Rank": 1, "Id": 308, "Command": "Export-PnPTaxonomy" }, { - "Rank": 2, "CommandName": "Export-PnPTaxonomy", + "Rank": 2, "Id": 309, "Command": "Export-PnPTaxonomy -Path c:\\output.txt" }, { - "Rank": 3, "CommandName": "Export-PnPTaxonomy", + "Rank": 3, "Id": 310, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" }, { - "Rank": 4, "CommandName": "Export-PnPTaxonomy", + "Rank": 4, "Id": 311, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" }, { - "Rank": 1, "CommandName": "Export-PnPTermGroupToXml", + "Rank": 1, "Id": 312, "Command": "Export-PnPTermGroupToXml" }, { - "Rank": 2, "CommandName": "Export-PnPTermGroupToXml", + "Rank": 2, "Id": 313, "Command": "Export-PnPTermGroupToXml -Out output.xml" }, { - "Rank": 3, "CommandName": "Export-PnPTermGroupToXml", + "Rank": 3, "Id": 314, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" }, { - "Rank": 1, "CommandName": "Export-PnPUserInfo", + "Rank": 1, "Id": 315, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Rank": 2, "CommandName": "Export-PnPUserInfo", + "Rank": 2, "Id": 316, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Rank": 1, "CommandName": "Export-PnPUserProfile", + "Rank": 1, "Id": 317, "Command": "Export-PnPUserProfile -LoginName user@domain.com" }, { - "Rank": 2, "CommandName": "Export-PnPUserProfile", + "Rank": 2, "Id": 318, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Rank": 1, "CommandName": "Find-PnPFile", + "Rank": 1, "Id": 319, "Command": "Find-PnPFile -Match *.master" }, { - "Rank": 2, "CommandName": "Find-PnPFile", + "Rank": 2, "Id": 320, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" }, { - "Rank": 3, "CommandName": "Find-PnPFile", + "Rank": 3, "Id": 321, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" }, { - "Rank": 1, "CommandName": "Get-PnPAccessToken", + "Rank": 1, "Id": 322, "Command": "Get-PnPAccessToken" }, { - "Rank": 2, "CommandName": "Get-PnPAccessToken", + "Rank": 2, "Id": 323, "Command": "Get-PnPAccessToken -Decoded" }, { - "Rank": 3, "CommandName": "Get-PnPAccessToken", + "Rank": 3, "Id": 324, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" }, { - "Rank": 4, "CommandName": "Get-PnPAccessToken", + "Rank": 4, "Id": 325, "Command": "Get-PnPAccessToken -ResourceTypeName ARM" }, { - "Rank": 5, "CommandName": "Get-PnPAccessToken", + "Rank": 5, "Id": 326, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" }, { - "Rank": 1, "CommandName": "Get-PnPAlert", + "Rank": 1, "Id": 327, "Command": "Get-PnPAlert" }, { - "Rank": 2, "CommandName": "Get-PnPAlert", + "Rank": 2, "Id": 328, "Command": "Get-PnPAlert -List \"Demo List\"" }, { - "Rank": 3, "CommandName": "Get-PnPAlert", + "Rank": 3, "Id": 329, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Rank": 4, "CommandName": "Get-PnPAlert", + "Rank": 4, "Id": 330, "Command": "Get-PnPAlert -Title \"Demo Alert\"" }, { - "Rank": 5, "CommandName": "Get-PnPAlert", + "Rank": 5, "Id": 331, "Command": "Get-PnPAlert -AllUsers" }, { - "Rank": 6, "CommandName": "Get-PnPAlert", + "Rank": 6, "Id": 332, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" }, { - "Rank": 1, "CommandName": "Get-PnPApp", + "Rank": 1, "Id": 333, "Command": "Get-PnPApp" }, { - "Rank": 2, "CommandName": "Get-PnPApp", + "Rank": 2, "Id": 334, "Command": "Get-PnPApp -Scope Site" }, { - "Rank": 3, "CommandName": "Get-PnPApp", + "Rank": 3, "Id": 335, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Rank": 1, "CommandName": "Get-PnPAppErrors", + "Rank": 1, "Id": 336, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" }, { - "Rank": 2, "CommandName": "Get-PnPAppErrors", + "Rank": 2, "Id": 337, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" }, { - "Rank": 1, "CommandName": "Get-PnPAppInfo", + "Rank": 1, "Id": 338, "Command": "Get-PnPAppInfo -Name \"Excel Service\"" }, { - "Rank": 2, "CommandName": "Get-PnPAppInfo", + "Rank": 2, "Id": 339, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Rank": 3, "CommandName": "Get-PnPAppInfo", + "Rank": 3, "Id": 340, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" }, { - "Rank": 1, "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 1, "Id": 341, "Command": "Get-PnPApplicationCustomizer" }, { - "Rank": 2, "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 2, "Id": 342, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Rank": 3, "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 3, "Id": 343, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" }, { - "Rank": 1, "CommandName": "Get-PnPAuditing", + "Rank": 1, "Id": 344, "Command": "Get-PnPAuditing" }, { - "Rank": 1, "CommandName": "Get-PnPAuthenticationRealm", + "Rank": 1, "Id": 345, "Command": "Get-PnPAuthenticationRealm" }, { - "Rank": 2, "CommandName": "Get-PnPAuthenticationRealm", + "Rank": 2, "Id": 346, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" }, { - "Rank": 1, "CommandName": "Get-PnPAvailableLanguage", + "Rank": 1, "Id": 347, "Command": "Get-PnPAvailableLanguage" }, { - "Rank": 1, "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 1, "Id": 348, "Command": "Get-PnPAvailableSensitivityLabel" }, { - "Rank": 2, "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 2, "Id": 349, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" }, { - "Rank": 3, "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 3, "Id": 350, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" }, { - "Rank": 1, "CommandName": "Get-PnPAvailableSiteClassification", + "Rank": 1, "Id": 351, "Command": "Get-PnPAvailableSiteClassification" }, { - "Rank": 1, "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 1, "Id": 352, "Command": "Get-PnPAzureACSPrincipal" }, { - "Rank": 2, "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 2, "Id": 353, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" }, { - "Rank": 3, "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 3, "Id": 354, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" }, { - "Rank": 4, "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 4, "Id": 355, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" }, { - "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 1, "Id": 356, "Command": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 2, "Id": 357, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" }, { - "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 3, "Id": 358, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" }, { - "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 1, "Id": 359, "Command": "Get-PnPAzureADActivityReportSignIn" }, { - "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 2, "Id": 360, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" }, { - "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 3, "Id": 361, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" }, { - "Rank": 1, "CommandName": "Get-PnPAzureADApp", + "Rank": 1, "Id": 362, "Command": "Get-PnPAzureADApp" }, { - "Rank": 2, "CommandName": "Get-PnPAzureADApp", + "Rank": 2, "Id": 363, "Command": "Get-PnPAzureADApp -Identity MyApp" }, { - "Rank": 3, "CommandName": "Get-PnPAzureADApp", + "Rank": 3, "Id": 364, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Rank": 4, "CommandName": "Get-PnPAzureADApp", + "Rank": 4, "Id": 365, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" }, { - "Rank": 1, "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 1, "Id": 366, "Command": "Get-PnPAzureADAppPermission" }, { - "Rank": 2, "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 2, "Id": 367, "Command": "Get-PnPAzureADAppPermission -Identity MyApp" }, { - "Rank": 3, "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 3, "Id": 368, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Rank": 1, "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 1, "Id": 369, "Command": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 2, "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 2, "Id": 370, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" }, { - "Rank": 3, "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 3, "Id": 371, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" }, { - "Rank": 4, "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 4, "Id": 372, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" }, { - "Rank": 5, "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 5, "Id": 373, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" }, { - "Rank": 1, "CommandName": "Get-PnPAzureADGroup", + "Rank": 1, "Id": 374, "Command": "Get-PnPAzureADGroup" }, { - "Rank": 2, "CommandName": "Get-PnPAzureADGroup", + "Rank": 2, "Id": 375, "Command": "Get-PnPAzureADGroup -Identity $groupId" }, { - "Rank": 3, "CommandName": "Get-PnPAzureADGroup", + "Rank": 3, "Id": 376, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" }, { - "Rank": 4, "CommandName": "Get-PnPAzureADGroup", + "Rank": 4, "Id": 377, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" }, { - "Rank": 5, "CommandName": "Get-PnPAzureADGroup", + "Rank": 5, "Id": 378, "Command": "Get-PnPAzureADGroup -Identity $group" }, { - "Rank": 1, "CommandName": "Get-PnPAzureADGroupMember", + "Rank": 1, "Id": 379, "Command": "Get-PnPAzureADGroupMember -Identity $groupId" }, { - "Rank": 2, "CommandName": "Get-PnPAzureADGroupMember", + "Rank": 2, "Id": 380, "Command": "Get-PnPAzureADGroupMember -Identity $group" }, { - "Rank": 1, "CommandName": "Get-PnPAzureADGroupOwner", + "Rank": 1, "Id": 381, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" }, { - "Rank": 2, "CommandName": "Get-PnPAzureADGroupOwner", + "Rank": 2, "Id": 382, "Command": "Get-PnPAzureADGroupOwner -Identity $group" }, { - "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 1, "Id": 383, "Command": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 2, "Id": 384, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" }, { - "Rank": 3, "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 3, "Id": 385, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" }, { - "Rank": 4, "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 4, "Id": 386, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" }, { - "Rank": 5, "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 5, "Id": 387, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" }, { - "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 1, "Id": 388, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 2, "Id": 389, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Rank": 1, "Id": 390, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Rank": 2, "Id": 391, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" }, { - "Rank": 1, "CommandName": "Get-PnPAzureADUser", + "Rank": 1, "Id": 392, "Command": "Get-PnPAzureADUser" }, { - "Rank": 2, "CommandName": "Get-PnPAzureADUser", + "Rank": 2, "Id": 393, "Command": "Get-PnPAzureADUser -EndIndex 50" }, { - "Rank": 3, "CommandName": "Get-PnPAzureADUser", + "Rank": 3, "Id": 394, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Rank": 4, "CommandName": "Get-PnPAzureADUser", + "Rank": 4, "Id": 395, "Command": "Get-PnPAzureADUser -Identity john@contoso.com" }, { - "Rank": 5, "CommandName": "Get-PnPAzureADUser", + "Rank": 5, "Id": 396, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" }, { - "Rank": 6, "CommandName": "Get-PnPAzureADUser", + "Rank": 6, "Id": 397, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" }, { - "Rank": 7, "CommandName": "Get-PnPAzureADUser", + "Rank": 7, "Id": 398, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" }, { - "Rank": 8, "CommandName": "Get-PnPAzureADUser", + "Rank": 8, "Id": 399, "Command": "Get-PnPAzureADUser -Delta" }, { - "Rank": 9, "CommandName": "Get-PnPAzureADUser", + "Rank": 9, "Id": 400, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" }, { - "Rank": 10, "CommandName": "Get-PnPAzureADUser", + "Rank": 10, "Id": 401, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" }, { - "Rank": 1, "CommandName": "Get-PnPAzureCertificate", + "Rank": 1, "Id": 402, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" }, { - "Rank": 2, "CommandName": "Get-PnPAzureCertificate", + "Rank": 2, "Id": 403, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "Rank": 3, "CommandName": "Get-PnPAzureCertificate", + "Rank": 3, "Id": 404, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" }, { - "Rank": 1, "CommandName": "Get-PnPBrowserIdleSignout", + "Rank": 1, "Id": 405, "Command": "Get-PnPBrowserIdleSignout" }, { - "Rank": 1, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 1, "Id": 406, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" }, { - "Rank": 2, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 2, "Id": 407, "Command": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Rank": 1, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 1, "Id": 408, "Command": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 2, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 2, "Id": 409, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" }, { - "Rank": 3, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 3, "Id": 410, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" }, { - "Rank": 4, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 4, "Id": 411, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" }, { - "Rank": 5, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 5, "Id": 412, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" }, { - "Rank": 1, "CommandName": "Get-PnPChangeLog", + "Rank": 1, "Id": 413, "Command": "Get-PnPChangeLog" }, { - "Rank": 2, "CommandName": "Get-PnPChangeLog", + "Rank": 2, "Id": 414, "Command": "Get-PnPChangeLog -Nightly" }, { - "Rank": 1, "CommandName": "Get-PnPCompatibleHubContentTypes", + "Rank": 1, "Id": 415, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" }, { - "Rank": 2, "CommandName": "Get-PnPCompatibleHubContentTypes", + "Rank": 2, "Id": 416, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" }, { - "Rank": 1, "CommandName": "Get-PnPContentType", + "Rank": 1, "Id": 417, "Command": "Get-PnPContentType" }, { - "Rank": 2, "CommandName": "Get-PnPContentType", + "Rank": 2, "Id": 418, "Command": "Get-PnPContentType -InSiteHierarchy" }, { - "Rank": 3, "CommandName": "Get-PnPContentType", + "Rank": 3, "Id": 419, "Command": "Get-PnPContentType -Identity \"Project Document\"" }, { - "Rank": 4, "CommandName": "Get-PnPContentType", + "Rank": 4, "Id": 420, "Command": "Get-PnPContentType -List \"Documents\"" }, { - "Rank": 1, "CommandName": "Get-PnPContentTypePublishingStatus", + "Rank": 1, "Id": 421, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" }, { - "Rank": 1, "CommandName": "Get-PnPCustomAction", + "Rank": 1, "Id": 422, "Command": "Get-PnPCustomAction" }, { - "Rank": 2, "CommandName": "Get-PnPCustomAction", + "Rank": 2, "Id": 423, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Rank": 3, "CommandName": "Get-PnPCustomAction", + "Rank": 3, "Id": 424, "Command": "Get-PnPCustomAction -Scope web" }, { - "Rank": 1, "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Rank": 1, "Id": 425, "Command": "Get-PnPDeletedMicrosoft365Group" }, { - "Rank": 2, "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Rank": 2, "Id": 426, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Rank": 1, "CommandName": "Get-PnPDeletedTeam", + "Rank": 1, "Id": 427, "Command": "Get-PnPDeletedTeam" }, { - "Rank": 1, "CommandName": "Get-PnPDiagnostics", + "Rank": 1, "Id": 428, "Command": "Get-PnPDiagnostics" }, { - "Rank": 1, "CommandName": "Get-PnPDisableSpacesActivation", + "Rank": 1, "Id": 429, "Command": "Get-PnPDisableSpacesActivation" }, { - "Rank": 1, "CommandName": "Get-PnPDocumentSetTemplate", + "Rank": 1, "Id": 430, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" }, { - "Rank": 2, "CommandName": "Get-PnPDocumentSetTemplate", + "Rank": 2, "Id": 431, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" }, { - "Rank": 1, "CommandName": "Get-PnPEventReceiver", + "Rank": 1, "Id": 432, "Command": "Get-PnPEventReceiver" }, { - "Rank": 2, "CommandName": "Get-PnPEventReceiver", + "Rank": 2, "Id": 433, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Rank": 3, "CommandName": "Get-PnPEventReceiver", + "Rank": 3, "Id": 434, "Command": "Get-PnPEventReceiver -Identity MyReceiver" }, { - "Rank": 4, "CommandName": "Get-PnPEventReceiver", + "Rank": 4, "Id": 435, "Command": "Get-PnPEventReceiver -List \"ProjectList\"" }, { - "Rank": 5, "CommandName": "Get-PnPEventReceiver", + "Rank": 5, "Id": 436, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Rank": 6, "CommandName": "Get-PnPEventReceiver", + "Rank": 6, "Id": 437, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" }, { - "Rank": 7, "CommandName": "Get-PnPEventReceiver", + "Rank": 7, "Id": 438, "Command": "Get-PnPEventReceiver -Scope Site" }, { - "Rank": 8, "CommandName": "Get-PnPEventReceiver", + "Rank": 8, "Id": 439, "Command": "Get-PnPEventReceiver -Scope Web" }, { - "Rank": 9, "CommandName": "Get-PnPEventReceiver", + "Rank": 9, "Id": 440, "Command": "Get-PnPEventReceiver -Scope All" }, { - "Rank": 1, "CommandName": "Get-PnPException", + "Rank": 1, "Id": 441, "Command": "Get-PnPException" }, { - "Rank": 2, "CommandName": "Get-PnPException", + "Rank": 2, "Id": 442, "Command": "Get-PnPException -All" }, { - "Rank": 1, "CommandName": "Get-PnPExternalUser", + "Rank": 1, "Id": 443, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" }, { - "Rank": 2, "CommandName": "Get-PnPExternalUser", + "Rank": 2, "Id": 444, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" }, { - "Rank": 1, "CommandName": "Get-PnPFeature", + "Rank": 1, "Id": 445, "Command": "Get-PnPFeature" }, { - "Rank": 2, "CommandName": "Get-PnPFeature", + "Rank": 2, "Id": 446, "Command": "Get-PnPFeature -Scope Site" }, { - "Rank": 3, "CommandName": "Get-PnPFeature", + "Rank": 3, "Id": 447, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Rank": 4, "CommandName": "Get-PnPFeature", + "Rank": 4, "Id": 448, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" }, { - "Rank": 1, "CommandName": "Get-PnPField", + "Rank": 1, "Id": 449, "Command": "Get-PnPField" }, { - "Rank": 2, "CommandName": "Get-PnPField", + "Rank": 2, "Id": 450, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Rank": 3, "CommandName": "Get-PnPField", + "Rank": 3, "Id": 451, "Command": "Get-PnPField -Group \"Custom Columns\"" }, { - "Rank": 1, "CommandName": "Get-PnPFile", + "Rank": 1, "Id": 452, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" }, { - "Rank": 2, "CommandName": "Get-PnPFile", + "Rank": 2, "Id": 453, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" }, { - "Rank": 3, "CommandName": "Get-PnPFile", + "Rank": 3, "Id": 454, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" }, { - "Rank": 4, "CommandName": "Get-PnPFile", + "Rank": 4, "Id": 455, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" }, { - "Rank": 5, "CommandName": "Get-PnPFile", + "Rank": 5, "Id": 456, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" }, { - "Rank": 6, "CommandName": "Get-PnPFile", + "Rank": 6, "Id": 457, "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" }, { - "Rank": 7, "CommandName": "Get-PnPFile", + "Rank": 7, "Id": 458, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" }, { - "Rank": 1, "CommandName": "Get-PnPFileSharingLink", + "Rank": 1, "Id": 459, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Rank": 1, "CommandName": "Get-PnPFileVersion", + "Rank": 1, "Id": 460, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" }, { - "Rank": 2, "CommandName": "Get-PnPFileVersion", + "Rank": 2, "Id": 461, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" }, { - "Rank": 1, "CommandName": "Get-PnPFlow", + "Rank": 1, "Id": 462, "Command": "Get-PnPFlow -AsAdmin" }, { - "Rank": 2, "CommandName": "Get-PnPFlow", + "Rank": 2, "Id": 463, "Command": "Get-PnPFlow -SharingStatus SharedWithMe" }, { - "Rank": 3, "CommandName": "Get-PnPFlow", + "Rank": 3, "Id": 464, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { - "Rank": 1, "CommandName": "Get-PnPFlowOwner", + "Rank": 1, "Id": 465, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" }, { - "Rank": 1, "CommandName": "Get-PnPFolder", + "Rank": 1, "Id": 466, "Command": "Get-PnPFolder" }, { - "Rank": 2, "CommandName": "Get-PnPFolder", + "Rank": 2, "Id": 467, "Command": "Get-PnPFolder -Url \"Shared Documents\"" }, { - "Rank": 3, "CommandName": "Get-PnPFolder", + "Rank": 3, "Id": 468, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" }, { - "Rank": 4, "CommandName": "Get-PnPFolder", + "Rank": 4, "Id": 469, "Command": "Get-PnPFolder -List \"Shared Documents\"" }, { - "Rank": 1, "CommandName": "Get-PnPFolderFile", + "Rank": 1, "Id": 470, "Command": "Get-PnPFolderFile" }, { - "Rank": 2, "CommandName": "Get-PnPFolderFile", + "Rank": 2, "Id": 471, "Command": "Get-PnPFolderFile -Recurse" }, { - "Rank": 3, "CommandName": "Get-PnPFolderFile", + "Rank": 3, "Id": 472, "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"" }, { - "Rank": 4, "CommandName": "Get-PnPFolderFile", + "Rank": 4, "Id": 473, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Rank": 5, "CommandName": "Get-PnPFolderFile", + "Rank": 5, "Id": 474, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Rank": 1, "CommandName": "Get-PnPFolderFolder", + "Rank": 1, "Id": 475, "Command": "Get-PnPFolderFolder" }, { - "Rank": 2, "CommandName": "Get-PnPFolderFolder", + "Rank": 2, "Id": 476, "Command": "Get-PnPFolderFolder -Recurse" }, { - "Rank": 3, "CommandName": "Get-PnPFolderFolder", + "Rank": 3, "Id": 477, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"" }, { - "Rank": 4, "CommandName": "Get-PnPFolderFolder", + "Rank": 4, "Id": 478, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" }, { - "Rank": 5, "CommandName": "Get-PnPFolderFolder", + "Rank": 5, "Id": 479, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" }, { - "Rank": 6, "CommandName": "Get-PnPFolderFolder", + "Rank": 6, "Id": 480, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Rank": 1, "CommandName": "Get-PnPFolderItem", + "Rank": 1, "Id": 481, "Command": "Get-PnPFolderItem" }, { - "Rank": 2, "CommandName": "Get-PnPFolderItem", + "Rank": 2, "Id": 482, "Command": "Get-PnPFolderItem -Recurse" }, { - "Rank": 3, "CommandName": "Get-PnPFolderItem", + "Rank": 3, "Id": 483, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" }, { - "Rank": 4, "CommandName": "Get-PnPFolderItem", + "Rank": 4, "Id": 484, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Rank": 5, "CommandName": "Get-PnPFolderItem", + "Rank": 5, "Id": 485, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" }, { - "Rank": 6, "CommandName": "Get-PnPFolderItem", + "Rank": 6, "Id": 486, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Rank": 1, "CommandName": "Get-PnPFolderSharingLink", + "Rank": 1, "Id": 487, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Rank": 1, "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 1, "Id": 488, "Command": "Get-PnPFolderStorageMetric" }, { - "Rank": 2, "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 2, "Id": 489, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" }, { - "Rank": 3, "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 3, "Id": 490, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" }, { - "Rank": 1, "CommandName": "Get-PnPFooter", + "Rank": 1, "Id": 491, "Command": "Get-PnPFooter" }, { - "Rank": 1, "CommandName": "Get-PnPGraphAccessToken", + "Rank": 1, "Id": 492, "Command": "Get-PnPGraphAccessToken" }, { - "Rank": 2, "CommandName": "Get-PnPGraphAccessToken", + "Rank": 2, "Id": 493, "Command": "Get-PnPGraphAccessToken -Decoded" }, { - "Rank": 1, "CommandName": "Get-PnPGraphSubscription", + "Rank": 1, "Id": 494, "Command": "Get-PnPGraphSubscription" }, { - "Rank": 2, "CommandName": "Get-PnPGraphSubscription", + "Rank": 2, "Id": 495, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Rank": 1, "CommandName": "Get-PnPGroup", + "Rank": 1, "Id": 496, "Command": "Get-PnPGroup" }, { - "Rank": 2, "CommandName": "Get-PnPGroup", + "Rank": 2, "Id": 497, "Command": "Get-PnPGroup -Identity 'My Site Users'" }, { - "Rank": 3, "CommandName": "Get-PnPGroup", + "Rank": 3, "Id": 498, "Command": "Get-PnPGroup -AssociatedMemberGroup" }, { - "Rank": 1, "CommandName": "Get-PnPGroupMember", + "Rank": 1, "Id": 499, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" }, { - "Rank": 2, "CommandName": "Get-PnPGroupMember", + "Rank": 2, "Id": 500, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" }, { - "Rank": 1, "CommandName": "Get-PnPGroupPermissions", + "Rank": 1, "Id": 501, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" }, { - "Rank": 1, "CommandName": "Get-PnPHideDefaultThemes", + "Rank": 1, "Id": 502, "Command": "Get-PnPHideDefaultThemes" }, { - "Rank": 1, "CommandName": "Get-PnPHomePage", + "Rank": 1, "Id": 503, "Command": "Get-PnPHomePage" }, { - "Rank": 1, "CommandName": "Get-PnPHomeSite", + "Rank": 1, "Id": 504, "Command": "Get-PnPHomeSite" }, { - "Rank": 2, "CommandName": "Get-PnPHomeSite", + "Rank": 2, "Id": 505, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" }, { - "Rank": 3, "CommandName": "Get-PnPHomeSite", + "Rank": 3, "Id": 506, "Command": "Get-PnPHomeSite -Detailed" }, { - "Rank": 1, "CommandName": "Get-PnPHubSite", + "Rank": 1, "Id": 507, "Command": "Get-PnPHubSite" }, { - "Rank": 2, "CommandName": "Get-PnPHubSite", + "Rank": 2, "Id": 508, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Rank": 3, "CommandName": "Get-PnPHubSite", + "Rank": 3, "Id": 509, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" }, { - "Rank": 1, "CommandName": "Get-PnPHubSiteChild", + "Rank": 1, "Id": 510, "Command": "Get-PnPHubSiteChild" }, { - "Rank": 2, "CommandName": "Get-PnPHubSiteChild", + "Rank": 2, "Id": 511, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Rank": 1, "CommandName": "Get-PnPInPlaceRecordsManagement", + "Rank": 1, "Id": 512, "Command": "Get-PnPInPlaceRecordsManagement" }, { - "Rank": 1, "CommandName": "Get-PnPIsSiteAliasAvailable", + "Rank": 1, "Id": 513, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" }, { - "Rank": 1, "CommandName": "Get-PnPJavaScriptLink", + "Rank": 1, "Id": 514, "Command": "Get-PnPJavaScriptLink" }, { - "Rank": 2, "CommandName": "Get-PnPJavaScriptLink", + "Rank": 2, "Id": 515, "Command": "Get-PnPJavaScriptLink -Scope All" }, { - "Rank": 3, "CommandName": "Get-PnPJavaScriptLink", + "Rank": 3, "Id": 516, "Command": "Get-PnPJavaScriptLink -Scope Web" }, { - "Rank": 4, "CommandName": "Get-PnPJavaScriptLink", + "Rank": 4, "Id": 517, "Command": "Get-PnPJavaScriptLink -Scope Site" }, { - "Rank": 5, "CommandName": "Get-PnPJavaScriptLink", + "Rank": 5, "Id": 518, "Command": "Get-PnPJavaScriptLink -Name Test" }, { - "Rank": 1, "CommandName": "Get-PnPKnowledgeHubSite", + "Rank": 1, "Id": 519, "Command": "Get-PnPKnowledgeHubSite" }, { - "Rank": 1, "CommandName": "Get-PnPLabel", + "Rank": 1, "Id": 520, "Command": "Get-PnPLabel" }, { - "Rank": 2, "CommandName": "Get-PnPLabel", + "Rank": 2, "Id": 521, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" }, { - "Rank": 1, "CommandName": "Get-PnPLargeListOperationStatus", + "Rank": 1, "Id": 522, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" }, { - "Rank": 1, "CommandName": "Get-PnPList", + "Rank": 1, "Id": 523, "Command": "Get-PnPList" }, { - "Rank": 2, "CommandName": "Get-PnPList", + "Rank": 2, "Id": 524, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 3, "CommandName": "Get-PnPList", + "Rank": 3, "Id": 525, "Command": "Get-PnPList -Identity Lists/Announcements" }, { - "Rank": 4, "CommandName": "Get-PnPList", + "Rank": 4, "Id": 526, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" }, { - "Rank": 5, "CommandName": "Get-PnPList", + "Rank": 5, "Id": 527, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" }, { - "Rank": 1, "CommandName": "Get-PnPListDesign", + "Rank": 1, "Id": 528, "Command": "Get-PnPListDesign" }, { - "Rank": 2, "CommandName": "Get-PnPListDesign", + "Rank": 2, "Id": 529, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 3, "CommandName": "Get-PnPListDesign", + "Rank": 3, "Id": 530, "Command": "Get-PnPListDesign -Identity ListEvent" }, { - "Rank": 1, "CommandName": "Get-PnPListInformationRightsManagement", + "Rank": 1, "Id": 531, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" }, { - "Rank": 1, "CommandName": "Get-PnPListItem", + "Rank": 1, "Id": 532, "Command": "Get-PnPListItem -List Tasks" }, { - "Rank": 2, "CommandName": "Get-PnPListItem", + "Rank": 2, "Id": 533, "Command": "Get-PnPListItem -List Tasks -Id 1" }, { - "Rank": 3, "CommandName": "Get-PnPListItem", + "Rank": 3, "Id": 534, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" }, { - "Rank": 4, "CommandName": "Get-PnPListItem", + "Rank": 4, "Id": 535, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" }, { - "Rank": 5, "CommandName": "Get-PnPListItem", + "Rank": 5, "Id": 536, "Command": "Get-PnPListItem -List Tasks -Query \"\"" }, { - "Rank": 6, "CommandName": "Get-PnPListItem", + "Rank": 6, "Id": 537, "Command": "Get-PnPListItem -List Tasks -PageSize 1000" }, { - "Rank": 7, "CommandName": "Get-PnPListItem", + "Rank": 7, "Id": 538, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" }, { - "Rank": 8, "CommandName": "Get-PnPListItem", + "Rank": 8, "Id": 539, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" }, { - "Rank": 9, "CommandName": "Get-PnPListItem", + "Rank": 9, "Id": 540, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" }, { - "Rank": 1, "CommandName": "Get-PnPListItemAttachment", + "Rank": 1, "Id": 541, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" }, { - "Rank": 2, "CommandName": "Get-PnPListItemAttachment", + "Rank": 2, "Id": 542, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" }, { - "Rank": 1, "CommandName": "Get-PnPListItemComment", + "Rank": 1, "Id": 543, "Command": "Get-PnPListItemComment -List Tasks -Identity 1" }, { - "Rank": 1, "CommandName": "Get-PnPListItemPermission", + "Rank": 1, "Id": 544, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" }, { - "Rank": 1, "CommandName": "Get-PnPListItemVersion", + "Rank": 1, "Id": 545, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" }, { - "Rank": 1, "CommandName": "Get-PnPListPermissions", + "Rank": 1, "Id": 546, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" }, { - "Rank": 2, "CommandName": "Get-PnPListPermissions", + "Rank": 2, "Id": 547, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { - "Rank": 1, "CommandName": "Get-PnPListRecordDeclaration", + "Rank": 1, "Id": 548, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" }, { - "Rank": 1, "CommandName": "Get-PnPMasterPage", + "Rank": 1, "Id": 549, "Command": "Get-PnPMasterPage" }, { - "Rank": 1, "CommandName": "Get-PnPMessageCenterAnnouncement", + "Rank": 1, "Id": 550, "Command": "Get-PnPMessageCenterAnnouncement" }, { - "Rank": 2, "CommandName": "Get-PnPMessageCenterAnnouncement", + "Rank": 2, "Id": 551, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 1, "Id": 552, "Command": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 2, "Id": 553, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 1, "Id": 554, "Command": "Get-PnPMicrosoft365Group" }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 2, "Id": 555, "Command": "Get-PnPMicrosoft365Group -Identity $groupId" }, { - "Rank": 3, "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 3, "Id": 556, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" }, { - "Rank": 4, "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 4, "Id": 557, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" }, { - "Rank": 5, "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 5, "Id": 558, "Command": "Get-PnPMicrosoft365Group -Identity $group" }, { - "Rank": 6, "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 6, "Id": 559, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 1, "Id": 560, "Command": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 2, "Id": 561, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" }, { - "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 3, "Id": 562, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 1, "Id": 563, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 2, "Id": 564, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" }, { - "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 3, "Id": 565, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Rank": 1, "Id": 566, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Rank": 2, "Id": 567, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Rank": 1, "Id": 568, "Command": "Get-PnPMicrosoft365GroupSettings" }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Rank": 2, "Id": 569, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 1, "Id": 570, "Command": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 2, "Id": 571, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 1, "Id": 572, "Command": "Get-PnPMicrosoft365GroupTeam" }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 2, "Id": 573, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" }, { - "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 3, "Id": 574, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 1, "Id": 575, "Command": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 2, "Id": 576, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" }, { - "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 3, "Id": 577, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Rank": 1, "CommandName": "Get-PnPNavigationNode", + "Rank": 1, "Id": 578, "Command": "Get-PnPNavigationNode" }, { - "Rank": 2, "CommandName": "Get-PnPNavigationNode", + "Rank": 2, "Id": 579, "Command": "Get-PnPNavigationNode -Location QuickLaunch" }, { - "Rank": 3, "CommandName": "Get-PnPNavigationNode", + "Rank": 3, "Id": 580, "Command": "Get-PnPNavigationNode -Location TopNavigationBar" }, { - "Rank": 1, "CommandName": "Get-PnPOrgAssetsLibrary", + "Rank": 1, "Id": 581, "Command": "Get-PnPOrgAssetsLibrary" }, { - "Rank": 1, "CommandName": "Get-PnPOrgNewsSite", + "Rank": 1, "Id": 582, "Command": "Get-PnPOrgNewsSite" }, { - "Rank": 1, "CommandName": "Get-PnPPage", + "Rank": 1, "Id": 583, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" }, { - "Rank": 2, "CommandName": "Get-PnPPage", + "Rank": 2, "Id": 584, "Command": "Get-PnPPage \"MyPage\"" }, { - "Rank": 3, "CommandName": "Get-PnPPage", + "Rank": 3, "Id": 585, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" }, { - "Rank": 4, "CommandName": "Get-PnPPage", + "Rank": 4, "Id": 586, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" }, { - "Rank": 1, "CommandName": "Get-PnPPageComponent", + "Rank": 1, "Id": 587, "Command": "Get-PnPPageComponent -Page Home" }, { - "Rank": 2, "CommandName": "Get-PnPPageComponent", + "Rank": 2, "Id": 588, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Rank": 3, "CommandName": "Get-PnPPageComponent", + "Rank": 3, "Id": 589, "Command": "Get-PnPPageComponent -Page Home -ListAvailable" }, { - "Rank": 1, "CommandName": "Get-PnPPlannerBucket", + "Rank": 1, "Id": 590, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Rank": 1, "CommandName": "Get-PnPPlannerConfiguration", + "Rank": 1, "Id": 591, "Command": "Get-PnPPlannerConfiguration" }, { - "Rank": 1, "CommandName": "Get-PnPPlannerPlan", + "Rank": 1, "Id": 592, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" }, { - "Rank": 2, "CommandName": "Get-PnPPlannerPlan", + "Rank": 2, "Id": 593, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" }, { - "Rank": 3, "CommandName": "Get-PnPPlannerPlan", + "Rank": 3, "Id": 594, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" }, { - "Rank": 1, "CommandName": "Get-PnPPlannerRosterMember", + "Rank": 1, "Id": 595, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Rank": 1, "CommandName": "Get-PnPPlannerRosterPlan", + "Rank": 1, "Id": 596, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" }, { - "Rank": 2, "CommandName": "Get-PnPPlannerRosterPlan", + "Rank": 2, "Id": 597, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Rank": 1, "CommandName": "Get-PnPPlannerTask", + "Rank": 1, "Id": 598, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Rank": 2, "CommandName": "Get-PnPPlannerTask", + "Rank": 2, "Id": 599, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Rank": 3, "CommandName": "Get-PnPPlannerTask", + "Rank": 3, "Id": 600, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Rank": 1, "CommandName": "Get-PnPPlannerUserPolicy", + "Rank": 1, "Id": 601, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Rank": 1, "CommandName": "Get-PnPPowerPlatformConnector", + "Rank": 1, "Id": 602, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" }, { - "Rank": 1, "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 1, "Id": 603, "Command": "Get-PnPPowerPlatformEnvironment" }, { - "Rank": 2, "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 2, "Id": 604, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" }, { - "Rank": 3, "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 3, "Id": 605, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" }, { - "Rank": 1, "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1, "Id": 606, "Command": "Get-PnPPowerShellTelemetryEnabled" }, { - "Rank": 1, "CommandName": "Get-PnPPropertyBag", + "Rank": 1, "Id": 607, "Command": "Get-PnPPropertyBag" }, { - "Rank": 2, "CommandName": "Get-PnPPropertyBag", + "Rank": 2, "Id": 608, "Command": "Get-PnPPropertyBag -Key MyKey" }, { - "Rank": 3, "CommandName": "Get-PnPPropertyBag", + "Rank": 3, "Id": 609, "Command": "Get-PnPPropertyBag -Folder /MyFolder" }, { - "Rank": 4, "CommandName": "Get-PnPPropertyBag", + "Rank": 4, "Id": 610, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" }, { - "Rank": 5, "CommandName": "Get-PnPPropertyBag", + "Rank": 5, "Id": 611, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" }, { - "Rank": 1, "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 1, "Id": 612, "Command": "Get-PnPPublishingImageRendition" }, { - "Rank": 2, "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 2, "Id": 613, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" }, { - "Rank": 3, "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 3, "Id": 614, "Command": "Get-PnPPublishingImageRendition -Identity 2" }, { - "Rank": 1, "CommandName": "Get-PnPRecycleBinItem", + "Rank": 1, "Id": 615, "Command": "Get-PnPRecycleBinItem" }, { - "Rank": 2, "CommandName": "Get-PnPRecycleBinItem", + "Rank": 2, "Id": 616, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" }, { - "Rank": 3, "CommandName": "Get-PnPRecycleBinItem", + "Rank": 3, "Id": 617, "Command": "Get-PnPRecycleBinItem -FirstStage" }, { - "Rank": 4, "CommandName": "Get-PnPRecycleBinItem", + "Rank": 4, "Id": 618, "Command": "Get-PnPRecycleBinItem -SecondStage" }, { - "Rank": 5, "CommandName": "Get-PnPRecycleBinItem", + "Rank": 5, "Id": 619, "Command": "Get-PnPRecycleBinItem -RowLimit 10000" }, { - "Rank": 1, "CommandName": "Get-PnPRequestAccessEmails", + "Rank": 1, "Id": 620, "Command": "Get-PnPRequestAccessEmails" }, { - "Rank": 1, "CommandName": "Get-PnPRetentionLabel", + "Rank": 1, "Id": 621, "Command": "Get-PnPRetentionLabel" }, { - "Rank": 2, "CommandName": "Get-PnPRetentionLabel", + "Rank": 2, "Id": 622, "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" }, { - "Rank": 1, "CommandName": "Get-PnPRoleDefinition", + "Rank": 1, "Id": 623, "Command": "Get-PnPRoleDefinition" }, { - "Rank": 2, "CommandName": "Get-PnPRoleDefinition", + "Rank": 2, "Id": 624, "Command": "Get-PnPRoleDefinition -Identity Read" }, { - "Rank": 3, "CommandName": "Get-PnPRoleDefinition", + "Rank": 3, "Id": 625, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" }, { - "Rank": 1, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 1, "Id": 626, "Command": "Get-PnPSearchConfiguration" }, { - "Rank": 2, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 2, "Id": 627, "Command": "Get-PnPSearchConfiguration -Scope Site" }, { - "Rank": 3, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 3, "Id": 628, "Command": "Get-PnPSearchConfiguration -Scope Subscription" }, { - "Rank": 4, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 4, "Id": 629, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Rank": 5, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 5, "Id": 630, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" }, { - "Rank": 6, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 6, "Id": 631, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" }, { - "Rank": 7, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 7, "Id": 632, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" }, { - "Rank": 8, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 8, "Id": 633, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" }, { - "Rank": 1, "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 1, "Id": 634, "Command": "Get-PnPSearchCrawlLog" }, { - "Rank": 2, "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 2, "Id": 635, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" }, { - "Rank": 3, "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 3, "Id": 636, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" }, { - "Rank": 4, "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 4, "Id": 637, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" }, { - "Rank": 5, "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 5, "Id": 638, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" }, { - "Rank": 6, "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 6, "Id": 639, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" }, { - "Rank": 7, "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 7, "Id": 640, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" }, { - "Rank": 1, "CommandName": "Get-PnPSearchSettings", + "Rank": 1, "Id": 641, "Command": "Get-PnPSearchSettings" }, { - "Rank": 1, "CommandName": "Get-PnPServiceCurrentHealth", + "Rank": 1, "Id": 642, "Command": "Get-PnPServiceCurrentHealth" }, { - "Rank": 2, "CommandName": "Get-PnPServiceCurrentHealth", + "Rank": 2, "Id": 643, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" }, { - "Rank": 1, "CommandName": "Get-PnPServiceHealthIssue", + "Rank": 1, "Id": 644, "Command": "Get-PnPServiceHealthIssue" }, { - "Rank": 2, "CommandName": "Get-PnPServiceHealthIssue", + "Rank": 2, "Id": 645, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" }, { - "Rank": 1, "CommandName": "Get-PnPSharePointAddIn", + "Rank": 1, "Id": 646, "Command": "Get-PnPSharePointAddIn" }, { - "Rank": 2, "CommandName": "Get-PnPSharePointAddIn", + "Rank": 2, "Id": 647, "Command": "Get-PnPSharePointAddIn -IncludeSubsites" }, { - "Rank": 1, "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Rank": 1, "Id": 648, "Command": "Get-PnPSharingForNonOwnersOfSite" }, { - "Rank": 1, "CommandName": "Get-PnPSite", + "Rank": 1, "Id": 649, "Command": "Get-PnPSite" }, { - "Rank": 2, "CommandName": "Get-PnPSite", + "Rank": 2, "Id": 650, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" }, { - "Rank": 1, "CommandName": "Get-PnPSiteClosure", + "Rank": 1, "Id": 651, "Command": "Get-PnPSiteClosure" }, { - "Rank": 1, "CommandName": "Get-PnPSiteCollectionAdmin", + "Rank": 1, "Id": 652, "Command": "Get-PnPSiteCollectionAdmin" }, { - "Rank": 1, "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 1, "Id": 653, "Command": "Get-PnPSiteCollectionAppCatalog" }, { - "Rank": 2, "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 2, "Id": 654, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" }, { - "Rank": 3, "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 3, "Id": 655, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" }, { - "Rank": 1, "CommandName": "Get-PnPSiteCollectionTermStore", + "Rank": 1, "Id": 656, "Command": "Get-PnPSiteCollectionTermStore" }, { - "Rank": 1, "CommandName": "Get-PnPSiteDesign", + "Rank": 1, "Id": 657, "Command": "Get-PnPSiteDesign" }, { - "Rank": 2, "CommandName": "Get-PnPSiteDesign", + "Rank": 2, "Id": 658, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 1, "CommandName": "Get-PnPSiteDesignRights", + "Rank": 1, "Id": 659, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 1, "CommandName": "Get-PnPSiteDesignRun", + "Rank": 1, "Id": 660, "Command": "Get-PnPSiteDesignRun" }, { - "Rank": 2, "CommandName": "Get-PnPSiteDesignRun", + "Rank": 2, "Id": 661, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" }, { - "Rank": 1, "CommandName": "Get-PnPSiteDesignTask", + "Rank": 1, "Id": 662, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Rank": 2, "CommandName": "Get-PnPSiteDesignTask", + "Rank": 2, "Id": 663, "Command": "Get-PnPSiteDesignTask" }, { - "Rank": 3, "CommandName": "Get-PnPSiteDesignTask", + "Rank": 3, "Id": 664, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Rank": 1, "CommandName": "Get-PnPSiteGroup", + "Rank": 1, "Id": 665, "Command": "Get-PnPSiteGroup" }, { - "Rank": 2, "CommandName": "Get-PnPSiteGroup", + "Rank": 2, "Id": 666, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Rank": 3, "CommandName": "Get-PnPSiteGroup", + "Rank": 3, "Id": 667, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" }, { - "Rank": 4, "CommandName": "Get-PnPSiteGroup", + "Rank": 4, "Id": 668, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Rank": 1, "CommandName": "Get-PnPSitePolicy", + "Rank": 1, "Id": 669, "Command": "Get-PnPSitePolicy" }, { - "Rank": 2, "CommandName": "Get-PnPSitePolicy", + "Rank": 2, "Id": 670, "Command": "Get-PnPSitePolicy -AllAvailable" }, { - "Rank": 3, "CommandName": "Get-PnPSitePolicy", + "Rank": 3, "Id": 671, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Rank": 1, "CommandName": "Get-PnPSiteScript", + "Rank": 1, "Id": 672, "Command": "Get-PnPSiteScript" }, { - "Rank": 2, "CommandName": "Get-PnPSiteScript", + "Rank": 2, "Id": 673, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 1, "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 1, "Id": 674, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" }, { - "Rank": 2, "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 2, "Id": 675, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" }, { - "Rank": 3, "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 3, "Id": 676, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" }, { - "Rank": 1, "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 1, "Id": 677, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" }, { - "Rank": 2, "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 2, "Id": 678, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" }, { - "Rank": 3, "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 3, "Id": 679, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" }, { - "Rank": 4, "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 4, "Id": 680, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" }, { - "Rank": 5, "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 5, "Id": 681, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" }, { - "Rank": 6, "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 6, "Id": 682, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" }, { - "Rank": 1, "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 1, "Id": 683, "Command": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 2, "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 2, "Id": 684, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" }, { - "Rank": 3, "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 3, "Id": 685, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" }, { - "Rank": 4, "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 4, "Id": 686, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" }, { - "Rank": 5, "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 5, "Id": 687, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" }, { - "Rank": 6, "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 6, "Id": 688, "Command": "Get-PnPSiteSearchQueryResults -All" }, { - "Rank": 1, "CommandName": "Get-PnPSiteSensitivityLabel", + "Rank": 1, "Id": 689, "Command": "Get-PnPSiteSensitivityLabel" }, { - "Rank": 1, "CommandName": "Get-PnPSiteTemplate", + "Rank": 1, "Id": 690, "Command": "Get-PnPSiteTemplate -Out template.pnp" }, { - "Rank": 2, "CommandName": "Get-PnPSiteTemplate", + "Rank": 2, "Id": 691, "Command": "Get-PnPSiteTemplate -Out template.xml" }, { - "Rank": 3, "CommandName": "Get-PnPSiteTemplate", + "Rank": 3, "Id": 692, "Command": "Get-PnPSiteTemplate -Out template.md" }, { - "Rank": 4, "CommandName": "Get-PnPSiteTemplate", + "Rank": 4, "Id": 693, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" }, { - "Rank": 5, "CommandName": "Get-PnPSiteTemplate", + "Rank": 5, "Id": 694, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" }, { - "Rank": 6, "CommandName": "Get-PnPSiteTemplate", + "Rank": 6, "Id": 695, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" }, { - "Rank": 7, "CommandName": "Get-PnPSiteTemplate", + "Rank": 7, "Id": 696, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" }, { - "Rank": 8, "CommandName": "Get-PnPSiteTemplate", + "Rank": 8, "Id": 697, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" }, { - "Rank": 9, "CommandName": "Get-PnPSiteTemplate", + "Rank": 9, "Id": 698, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" }, { - "Rank": 10, "CommandName": "Get-PnPSiteTemplate", + "Rank": 10, "Id": 699, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" }, { - "Rank": 11, "CommandName": "Get-PnPSiteTemplate", + "Rank": 11, "Id": 700, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" }, { - "Rank": 12, "CommandName": "Get-PnPSiteTemplate", + "Rank": 12, "Id": 701, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" }, { - "Rank": 13, "CommandName": "Get-PnPSiteTemplate", + "Rank": 13, "Id": 702, "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" }, { - "Rank": 14, "CommandName": "Get-PnPSiteTemplate", + "Rank": 14, "Id": 703, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" }, { - "Rank": 1, "CommandName": "Get-PnPSiteUserInvitations", + "Rank": 1, "Id": 704, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Rank": 1, "CommandName": "Get-PnPStorageEntity", + "Rank": 1, "Id": 705, "Command": "Get-PnPStorageEntity" }, { - "Rank": 2, "CommandName": "Get-PnPStorageEntity", + "Rank": 2, "Id": 706, "Command": "Get-PnPStorageEntity -Key MyKey" }, { - "Rank": 3, "CommandName": "Get-PnPStorageEntity", + "Rank": 3, "Id": 707, "Command": "Get-PnPStorageEntity -Scope Site" }, { - "Rank": 4, "CommandName": "Get-PnPStorageEntity", + "Rank": 4, "Id": 708, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Rank": 1, "CommandName": "Get-PnPStoredCredential", + "Rank": 1, "Id": 709, "Command": "Get-PnPStoredCredential -Name O365" }, { - "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Rank": 1, "Id": 710, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Rank": 1, "Id": 711, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Rank": 1, "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Rank": 1, "Id": 712, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" }, { - "Rank": 1, "CommandName": "Get-PnPSubWeb", + "Rank": 1, "Id": 713, "Command": "Get-PnPSubWeb" }, { - "Rank": 2, "CommandName": "Get-PnPSubWeb", + "Rank": 2, "Id": 714, "Command": "Get-PnPSubWeb -Recurse" }, { - "Rank": 3, "CommandName": "Get-PnPSubWeb", + "Rank": 3, "Id": 715, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" }, { - "Rank": 4, "CommandName": "Get-PnPSubWeb", + "Rank": 4, "Id": 716, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" }, { - "Rank": 5, "CommandName": "Get-PnPSubWeb", + "Rank": 5, "Id": 717, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" }, { - "Rank": 1, "CommandName": "Get-PnPSyntexModel", + "Rank": 1, "Id": 718, "Command": "Get-PnPSyntexModel" }, { - "Rank": 2, "CommandName": "Get-PnPSyntexModel", + "Rank": 2, "Id": 719, "Command": "Get-PnPSyntexModel -Identity 1" }, { - "Rank": 3, "CommandName": "Get-PnPSyntexModel", + "Rank": 3, "Id": 720, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" }, { - "Rank": 1, "CommandName": "Get-PnPSyntexModelPublication", + "Rank": 1, "Id": 721, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" }, { - "Rank": 1, "CommandName": "Get-PnPTaxonomyItem", + "Rank": 1, "Id": 722, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" }, { - "Rank": 1, "CommandName": "Get-PnPTeamsApp", + "Rank": 1, "Id": 723, "Command": "Get-PnPTeamsApp" }, { - "Rank": 2, "CommandName": "Get-PnPTeamsApp", + "Rank": 2, "Id": 724, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" }, { - "Rank": 3, "CommandName": "Get-PnPTeamsApp", + "Rank": 3, "Id": 725, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" }, { - "Rank": 1, "CommandName": "Get-PnPTeamsChannel", + "Rank": 1, "Id": 726, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" }, { - "Rank": 2, "CommandName": "Get-PnPTeamsChannel", + "Rank": 2, "Id": 727, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" }, { - "Rank": 3, "CommandName": "Get-PnPTeamsChannel", + "Rank": 3, "Id": 728, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Rank": 1, "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Rank": 1, "Id": 729, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" }, { - "Rank": 2, "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Rank": 2, "Id": 730, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessage", + "Rank": 1, "Id": 731, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" }, { - "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessage", + "Rank": 2, "Id": 732, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" }, { - "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessageReply", + "Rank": 1, "Id": 733, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" }, { - "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessageReply", + "Rank": 2, "Id": 734, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" }, { - "Rank": 1, "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 1, "Id": 735, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" }, { - "Rank": 2, "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 2, "Id": 736, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" }, { - "Rank": 3, "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 3, "Id": 737, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" }, { - "Rank": 4, "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 4, "Id": 738, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Rank": 1, "CommandName": "Get-PnPTeamsPrimaryChannel", + "Rank": 1, "Id": 739, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" }, { - "Rank": 2, "CommandName": "Get-PnPTeamsPrimaryChannel", + "Rank": 2, "Id": 740, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" }, { - "Rank": 1, "CommandName": "Get-PnPTeamsTab", + "Rank": 1, "Id": 741, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" }, { - "Rank": 2, "CommandName": "Get-PnPTeamsTab", + "Rank": 2, "Id": 742, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" }, { - "Rank": 3, "CommandName": "Get-PnPTeamsTab", + "Rank": 3, "Id": 743, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" }, { - "Rank": 4, "CommandName": "Get-PnPTeamsTab", + "Rank": 4, "Id": 744, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" }, { - "Rank": 5, "CommandName": "Get-PnPTeamsTab", + "Rank": 5, "Id": 745, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" }, { - "Rank": 1, "CommandName": "Get-PnPTeamsTag", + "Rank": 1, "Id": 746, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Rank": 2, "CommandName": "Get-PnPTeamsTag", + "Rank": 2, "Id": 747, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Rank": 1, "CommandName": "Get-PnPTeamsTeam", + "Rank": 1, "Id": 748, "Command": "Get-PnPTeamsTeam" }, { - "Rank": 2, "CommandName": "Get-PnPTeamsTeam", + "Rank": 2, "Id": 749, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" }, { - "Rank": 3, "CommandName": "Get-PnPTeamsTeam", + "Rank": 3, "Id": 750, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" }, { - "Rank": 4, "CommandName": "Get-PnPTeamsTeam", + "Rank": 4, "Id": 751, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" }, { - "Rank": 5, "CommandName": "Get-PnPTeamsTeam", + "Rank": 5, "Id": 752, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" }, { - "Rank": 1, "CommandName": "Get-PnPTeamsUser", + "Rank": 1, "Id": 753, "Command": "Get-PnPTeamsUser -Team MyTeam" }, { - "Rank": 2, "CommandName": "Get-PnPTeamsUser", + "Rank": 2, "Id": 754, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" }, { - "Rank": 3, "CommandName": "Get-PnPTeamsUser", + "Rank": 3, "Id": 755, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" }, { - "Rank": 4, "CommandName": "Get-PnPTeamsUser", + "Rank": 4, "Id": 756, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" }, { - "Rank": 1, "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Rank": 1, "Id": 757, "Command": "Get-PnPTemporarilyDisableAppBar" }, { - "Rank": 1, "CommandName": "Get-PnPTenant", + "Rank": 1, "Id": 758, "Command": "Get-PnPTenant" }, { - "Rank": 1, "CommandName": "Get-PnPTenantAppCatalogUrl", + "Rank": 1, "Id": 759, "Command": "Get-PnPTenantAppCatalogUrl" }, { - "Rank": 1, "CommandName": "Get-PnPTenantCdnEnabled", + "Rank": 1, "Id": 760, "Command": "Get-PnPTenantCdnEnabled -CdnType Public" }, { - "Rank": 1, "CommandName": "Get-PnPTenantCdnOrigin", + "Rank": 1, "Id": 761, "Command": "Get-PnPTenantCdnOrigin -CdnType Public" }, { - "Rank": 1, "CommandName": "Get-PnPTenantCdnPolicies", + "Rank": 1, "Id": 762, "Command": "Get-PnPTenantCdnPolicies -CdnType Public" }, { - "Rank": 1, "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 1, "Id": 763, "Command": "Get-PnPTenantDeletedSite" }, { - "Rank": 2, "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 2, "Id": 764, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 3, "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 3, "Id": 765, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" }, { - "Rank": 4, "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 4, "Id": 766, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" }, { - "Rank": 1, "CommandName": "Get-PnPTenantId", + "Rank": 1, "Id": 767, "Command": "Get-PnPTenantId" }, { - "Rank": 2, "CommandName": "Get-PnPTenantId", + "Rank": 2, "Id": 768, "Command": "Get-PnPTenantId contoso" }, { - "Rank": 3, "CommandName": "Get-PnPTenantId", + "Rank": 3, "Id": 769, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" }, { - "Rank": 4, "CommandName": "Get-PnPTenantId", + "Rank": 4, "Id": 770, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" }, { - "Rank": 1, "CommandName": "Get-PnPTenantInfo", + "Rank": 1, "Id": 771, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" }, { - "Rank": 2, "CommandName": "Get-PnPTenantInfo", + "Rank": 2, "Id": 772, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" }, { - "Rank": 3, "CommandName": "Get-PnPTenantInfo", + "Rank": 3, "Id": 773, "Command": "Get-PnPTenantInfo" }, { - "Rank": 4, "CommandName": "Get-PnPTenantInfo", + "Rank": 4, "Id": 774, "Command": "Get-PnPTenantInfo -CurrentTenant" }, { - "Rank": 1, "CommandName": "Get-PnPTenantInstance", + "Rank": 1, "Id": 775, "Command": "Get-PnPTenantInstance" }, { - "Rank": 1, "CommandName": "Get-PnPTenantRecycleBinItem", + "Rank": 1, "Id": 776, "Command": "Get-PnPTenantRecycleBinItem" }, { - "Rank": 1, "CommandName": "Get-PnPTenantSequence", + "Rank": 1, "Id": 777, "Command": "Get-PnPTenantSequence -Template $myTemplateObject" }, { - "Rank": 2, "CommandName": "Get-PnPTenantSequence", + "Rank": 2, "Id": 778, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" }, { - "Rank": 1, "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 1, "Id": 779, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" }, { - "Rank": 2, "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 2, "Id": 780, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" }, { - "Rank": 1, "CommandName": "Get-PnPTenantSite", + "Rank": 1, "Id": 781, "Command": "Get-PnPTenantSite" }, { - "Rank": 2, "CommandName": "Get-PnPTenantSite", + "Rank": 2, "Id": 782, "Command": "Get-PnPTenantSite -Detailed" }, { - "Rank": 3, "CommandName": "Get-PnPTenantSite", + "Rank": 3, "Id": 783, "Command": "Get-PnPTenantSite -IncludeOneDriveSites" }, { - "Rank": 4, "CommandName": "Get-PnPTenantSite", + "Rank": 4, "Id": 784, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" }, { - "Rank": 5, "CommandName": "Get-PnPTenantSite", + "Rank": 5, "Id": 785, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" }, { - "Rank": 6, "CommandName": "Get-PnPTenantSite", + "Rank": 6, "Id": 786, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" }, { - "Rank": 7, "CommandName": "Get-PnPTenantSite", + "Rank": 7, "Id": 787, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" }, { - "Rank": 8, "CommandName": "Get-PnPTenantSite", + "Rank": 8, "Id": 788, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" }, { - "Rank": 9, "CommandName": "Get-PnPTenantSite", + "Rank": 9, "Id": 789, "Command": "Get-PnPTenantSite -GroupIdDefined $true" }, { - "Rank": 1, "CommandName": "Get-PnPTenantSyncClientRestriction", + "Rank": 1, "Id": 790, "Command": "Get-PnPTenantSyncClientRestriction" }, { - "Rank": 1, "CommandName": "Get-PnPTenantTemplate", + "Rank": 1, "Id": 791, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" }, { - "Rank": 2, "CommandName": "Get-PnPTenantTemplate", + "Rank": 2, "Id": 792, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" }, { - "Rank": 3, "CommandName": "Get-PnPTenantTemplate", + "Rank": 3, "Id": 793, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" }, { - "Rank": 1, "CommandName": "Get-PnPTenantTheme", + "Rank": 1, "Id": 794, "Command": "Get-PnPTenantTheme" }, { - "Rank": 2, "CommandName": "Get-PnPTenantTheme", + "Rank": 2, "Id": 795, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Rank": 3, "CommandName": "Get-PnPTenantTheme", + "Rank": 3, "Id": 796, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" }, { - "Rank": 1, "CommandName": "Get-PnPTerm", + "Rank": 1, "Id": 797, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 2, "CommandName": "Get-PnPTerm", + "Rank": 2, "Id": 798, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 3, "CommandName": "Get-PnPTerm", + "Rank": 3, "Id": 799, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 4, "CommandName": "Get-PnPTerm", + "Rank": 4, "Id": 800, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" }, { - "Rank": 5, "CommandName": "Get-PnPTerm", + "Rank": 5, "Id": 801, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" }, { - "Rank": 1, "CommandName": "Get-PnPTermGroup", + "Rank": 1, "Id": 802, "Command": "Get-PnPTermGroup" }, { - "Rank": 2, "CommandName": "Get-PnPTermGroup", + "Rank": 2, "Id": 803, "Command": "Get-PnPTermGroup -Identity \"Departments\"" }, { - "Rank": 3, "CommandName": "Get-PnPTermGroup", + "Rank": 3, "Id": 804, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" }, { - "Rank": 1, "CommandName": "Get-PnPTermLabel", + "Rank": 1, "Id": 805, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" }, { - "Rank": 2, "CommandName": "Get-PnPTermLabel", + "Rank": 2, "Id": 806, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" }, { - "Rank": 3, "CommandName": "Get-PnPTermLabel", + "Rank": 3, "Id": 807, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 1, "CommandName": "Get-PnPTermSet", + "Rank": 1, "Id": 808, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" }, { - "Rank": 2, "CommandName": "Get-PnPTermSet", + "Rank": 2, "Id": 809, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 3, "CommandName": "Get-PnPTermSet", + "Rank": 3, "Id": 810, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" }, { - "Rank": 1, "CommandName": "Get-PnPTheme", + "Rank": 1, "Id": 811, "Command": "Get-PnPTheme" }, { - "Rank": 2, "CommandName": "Get-PnPTheme", + "Rank": 2, "Id": 812, "Command": "Get-PnPTheme -DetectCurrentComposedLook" }, { - "Rank": 1, "CommandName": "Get-PnPTimeZoneId", + "Rank": 1, "Id": 813, "Command": "Get-PnPTimeZoneId" }, { - "Rank": 2, "CommandName": "Get-PnPTimeZoneId", + "Rank": 2, "Id": 814, "Command": "Get-PnPTimeZoneId -Match Stockholm" }, { - "Rank": 1, "CommandName": "Get-PnPUnfurlLink", + "Rank": 1, "Id": 815, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" }, { - "Rank": 1, "CommandName": "Get-PnPUnifiedAuditLog", + "Rank": 1, "Id": 816, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" }, { - "Rank": 1, "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 1, "Id": 817, "Command": "Get-PnPUPABulkImportStatus" }, { - "Rank": 2, "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 2, "Id": 818, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" }, { - "Rank": 3, "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 3, "Id": 819, "Command": "Get-PnPUPABulkImportStatus -JobId " }, { - "Rank": 4, "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 4, "Id": 820, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" }, { - "Rank": 1, "CommandName": "Get-PnPUser", + "Rank": 1, "Id": 821, "Command": "Get-PnPUser" }, { - "Rank": 2, "CommandName": "Get-PnPUser", + "Rank": 2, "Id": 822, "Command": "Get-PnPUser -Identity 23" }, { - "Rank": 3, "CommandName": "Get-PnPUser", + "Rank": 3, "Id": 823, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" }, { - "Rank": 4, "CommandName": "Get-PnPUser", + "Rank": 4, "Id": 824, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" }, { - "Rank": 5, "CommandName": "Get-PnPUser", + "Rank": 5, "Id": 825, "Command": "Get-PnPUser -WithRightsAssigned" }, { - "Rank": 6, "CommandName": "Get-PnPUser", + "Rank": 6, "Id": 826, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" }, { - "Rank": 7, "CommandName": "Get-PnPUser", + "Rank": 7, "Id": 827, "Command": "Get-PnPUser -WithRightsAssignedDetailed" }, { - "Rank": 1, "CommandName": "Get-PnPUserOneDriveQuota", + "Rank": 1, "Id": 828, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" }, { - "Rank": 1, "CommandName": "Get-PnPUserProfileProperty", + "Rank": 1, "Id": 829, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" }, { - "Rank": 2, "CommandName": "Get-PnPUserProfileProperty", + "Rank": 2, "Id": 830, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" }, { - "Rank": 3, "CommandName": "Get-PnPUserProfileProperty", + "Rank": 3, "Id": 831, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" }, { - "Rank": 1, "CommandName": "Get-PnPView", + "Rank": 1, "Id": 832, "Command": "Get-PnPView -List \"Demo List\"" }, { - "Rank": 2, "CommandName": "Get-PnPView", + "Rank": 2, "Id": 833, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" }, { - "Rank": 3, "CommandName": "Get-PnPView", + "Rank": 3, "Id": 834, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" }, { - "Rank": 1, "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 1, "Id": 835, "Command": "Get-PnPVivaConnectionsDashboardACE" }, { - "Rank": 2, "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 2, "Id": 836, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Rank": 1, "CommandName": "Get-PnPWeb", + "Rank": 1, "Id": 837, "Command": "Get-PnPWeb" }, { - "Rank": 1, "CommandName": "Get-PnPWebHeader", + "Rank": 1, "Id": 838, "Command": "Get-PnPWebHeader" }, { - "Rank": 1, "CommandName": "Get-PnPWebhookSubscriptions", + "Rank": 1, "Id": 839, "Command": "Get-PnPWebhookSubscriptions -List MyList" }, { - "Rank": 1, "CommandName": "Get-PnPWebPart", + "Rank": 1, "Id": 840, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" }, { - "Rank": 2, "CommandName": "Get-PnPWebPart", + "Rank": 2, "Id": 841, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Rank": 1, "CommandName": "Get-PnPWebPartProperty", + "Rank": 1, "Id": 842, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" }, { - "Rank": 2, "CommandName": "Get-PnPWebPartProperty", + "Rank": 2, "Id": 843, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" }, { - "Rank": 1, "CommandName": "Get-PnPWebPartXml", + "Rank": 1, "Id": 844, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Rank": 1, "CommandName": "Get-PnPWebTemplates", + "Rank": 1, "Id": 845, "Command": "Get-PnPWebTemplates" }, { - "Rank": 2, "CommandName": "Get-PnPWebTemplates", + "Rank": 2, "Id": 846, "Command": "Get-PnPWebTemplates -LCID 1033" }, { - "Rank": 3, "CommandName": "Get-PnPWebTemplates", + "Rank": 3, "Id": 847, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" }, { - "Rank": 1, "CommandName": "Get-PnPWikiPageContent", + "Rank": 1, "Id": 848, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" }, { - "Rank": 1, "CommandName": "Grant-PnPAzureADAppSitePermission", + "Rank": 1, "Id": 849, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" }, { - "Rank": 2, "CommandName": "Grant-PnPAzureADAppSitePermission", + "Rank": 2, "Id": 850, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" }, { - "Rank": 1, "CommandName": "Grant-PnPHubSiteRights", + "Rank": 1, "Id": 851, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Rank": 1, "CommandName": "Grant-PnPSiteDesignRights", + "Rank": 1, "Id": 852, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Rank": 1, "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Rank": 1, "Id": 853, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Rank": 1, "CommandName": "Import-PnPTaxonomy", + "Rank": 1, "Id": 854, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" }, { - "Rank": 2, "CommandName": "Import-PnPTaxonomy", + "Rank": 2, "Id": 855, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" }, { - "Rank": 3, "CommandName": "Import-PnPTaxonomy", + "Rank": 3, "Id": 856, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" }, { - "Rank": 1, "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 1, "Id": 857, "Command": "Import-PnPTermGroupFromXml -Xml $xml" }, { - "Rank": 2, "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 2, "Id": 858, "Command": "Import-PnPTermGroupFromXml -Path input.xml" }, { - "Rank": 1, "CommandName": "Import-PnPTermSet", + "Rank": 1, "Id": 859, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" }, { - "Rank": 2, "CommandName": "Import-PnPTermSet", + "Rank": 2, "Id": 860, "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" }, { - "Rank": 3, "CommandName": "Import-PnPTermSet", + "Rank": 3, "Id": 861, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" }, { - "Rank": 1, "CommandName": "Install-PnPApp", + "Rank": 1, "Id": 862, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, "CommandName": "Install-PnPApp", + "Rank": 2, "Id": 863, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Rank": 1, "CommandName": "Invoke-PnPGraphMethod", + "Rank": 1, "Id": 864, "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" }, { - "Rank": 2, "CommandName": "Invoke-PnPGraphMethod", + "Rank": 2, "Id": 865, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" }, { - "Rank": 3, "CommandName": "Invoke-PnPGraphMethod", + "Rank": 3, "Id": 866, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" }, { - "Rank": 4, "CommandName": "Invoke-PnPGraphMethod", + "Rank": 4, "Id": 867, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" }, { - "Rank": 5, "CommandName": "Invoke-PnPGraphMethod", + "Rank": 5, "Id": 868, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" }, { - "Rank": 6, "CommandName": "Invoke-PnPGraphMethod", + "Rank": 6, "Id": 869, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" }, { - "Rank": 7, "CommandName": "Invoke-PnPGraphMethod", + "Rank": 7, "Id": 870, "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": 1, "CommandName": "Invoke-PnPListDesign", + "Rank": 1, "Id": 871, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 2, "CommandName": "Invoke-PnPListDesign", + "Rank": 2, "Id": 872, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Rank": 1, "CommandName": "Invoke-PnPQuery", + "Rank": 1, "Id": 873, "Command": "Invoke-PnPQuery -RetryCount 5" }, { - "Rank": 1, "CommandName": "Invoke-PnPSiteDesign", + "Rank": 1, "Id": 874, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 2, "CommandName": "Invoke-PnPSiteDesign", + "Rank": 2, "Id": 875, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Rank": 1, "CommandName": "Invoke-PnPSiteScript", + "Rank": 1, "Id": 876, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" }, { - "Rank": 1, "CommandName": "Invoke-PnPSiteSwap", + "Rank": 1, "Id": 877, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "Rank": 2, "CommandName": "Invoke-PnPSiteSwap", + "Rank": 2, "Id": 878, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "Rank": 3, "CommandName": "Invoke-PnPSiteSwap", + "Rank": 3, "Id": 879, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection" }, { - "Rank": 1, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 1, "Id": 880, "Command": "Invoke-PnPSiteTemplate -Path template.xml" }, { - "Rank": 2, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 2, "Id": 881, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" }, { - "Rank": 3, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 3, "Id": 882, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Rank": 4, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 4, "Id": 883, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" }, { - "Rank": 5, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 5, "Id": 884, "Command": "Invoke-PnPSiteTemplate -Path template.pnp" }, { - "Rank": 6, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 6, "Id": 885, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" }, { - "Rank": 7, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 7, "Id": 886, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" }, { - "Rank": 8, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 8, "Id": 887, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" }, { - "Rank": 1, "CommandName": "Invoke-PnPSPRestMethod", + "Rank": 1, "Id": 888, "Command": "Invoke-PnPSPRestMethod -Url /_api/web" }, { - "Rank": 1, "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 1, "Id": 889, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" }, { - "Rank": 2, "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 2, "Id": 890, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" }, { - "Rank": 3, "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 3, "Id": 891, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Rank": 1, "CommandName": "Invoke-PnPWebAction", + "Rank": 1, "Id": 892, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" }, { - "Rank": 2, "CommandName": "Invoke-PnPWebAction", + "Rank": 2, "Id": 893, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" }, { - "Rank": 1, "CommandName": "Measure-PnPList", + "Rank": 1, "Id": 894, "Command": "Measure-PnPList \"Documents\"" }, { - "Rank": 2, "CommandName": "Measure-PnPList", + "Rank": 2, "Id": 895, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" }, { - "Rank": 1, "CommandName": "Measure-PnPWeb", + "Rank": 1, "Id": 896, "Command": "Measure-PnPWeb" }, { - "Rank": 2, "CommandName": "Measure-PnPWeb", + "Rank": 2, "Id": 897, "Command": "Measure-PnPWeb $web -Recursive" }, { - "Rank": 1, "CommandName": "Move-PnPFile", + "Rank": 1, "Id": 898, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" }, { - "Rank": 2, "CommandName": "Move-PnPFile", + "Rank": 2, "Id": 899, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" }, { - "Rank": 3, "CommandName": "Move-PnPFile", + "Rank": 3, "Id": 900, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Rank": 4, "CommandName": "Move-PnPFile", + "Rank": 4, "Id": 901, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Rank": 1, "CommandName": "Move-PnPFolder", + "Rank": 1, "Id": 902, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" }, { - "Rank": 2, "CommandName": "Move-PnPFolder", + "Rank": 2, "Id": 903, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" }, { - "Rank": 1, "CommandName": "Move-PnPListItemToRecycleBin", + "Rank": 1, "Id": 904, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" }, { - "Rank": 1, "CommandName": "Move-PnPPageComponent", + "Rank": 1, "Id": 905, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" }, { - "Rank": 2, "CommandName": "Move-PnPPageComponent", + "Rank": 2, "Id": 906, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" }, { - "Rank": 3, "CommandName": "Move-PnPPageComponent", + "Rank": 3, "Id": 907, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" }, { - "Rank": 4, "CommandName": "Move-PnPPageComponent", + "Rank": 4, "Id": 908, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" }, { - "Rank": 1, "CommandName": "Move-PnpRecycleBinItem", + "Rank": 1, "Id": 909, "Command": "Move-PnPRecycleBinItem" }, { - "Rank": 2, "CommandName": "Move-PnpRecycleBinItem", + "Rank": 2, "Id": 910, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" }, { - "Rank": 3, "CommandName": "Move-PnpRecycleBinItem", + "Rank": 3, "Id": 911, "Command": "Move-PnPRecycleBinItem -Force" }, { - "Rank": 1, "CommandName": "Move-PnPTerm", + "Rank": 1, "Id": 912, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" }, { - "Rank": 2, "CommandName": "Move-PnPTerm", + "Rank": 2, "Id": 913, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" }, { - "Rank": 3, "CommandName": "Move-PnPTerm", + "Rank": 3, "Id": 914, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" }, { - "Rank": 1, "CommandName": "Move-PnPTermSet", + "Rank": 1, "Id": 915, "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" }, { - "Rank": 2, "CommandName": "Move-PnPTermSet", + "Rank": 2, "Id": 916, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" }, { - "Rank": 1, "CommandName": "New-PnPAzureADGroup", + "Rank": 1, "Id": 917, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Rank": 2, "CommandName": "New-PnPAzureADGroup", + "Rank": 2, "Id": 918, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" }, { - "Rank": 3, "CommandName": "New-PnPAzureADGroup", + "Rank": 3, "Id": 919, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" }, { - "Rank": 1, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 1, "Id": 920, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" }, { - "Rank": 2, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 2, "Id": 921, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" }, { - "Rank": 3, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 3, "Id": 922, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" }, { - "Rank": 1, "CommandName": "New-PnPAzureCertificate", + "Rank": 1, "Id": 923, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" }, { - "Rank": 2, "CommandName": "New-PnPAzureCertificate", + "Rank": 2, "Id": 924, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" }, { - "Rank": 3, "CommandName": "New-PnPAzureCertificate", + "Rank": 3, "Id": 925, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" }, { - "Rank": 1, "CommandName": "New-PnPGraphSubscription", + "Rank": 1, "Id": 926, "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Rank": 2, "CommandName": "New-PnPGraphSubscription", + "Rank": 2, "Id": 927, "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Rank": 1, "CommandName": "New-PnPGroup", + "Rank": 1, "Id": 928, "Command": "New-PnPGroup -Title \"My Site Users\"" }, { - "Rank": 1, "CommandName": "New-PnPList", + "Rank": 1, "Id": 929, "Command": "New-PnPList -Title Announcements -Template Announcements" }, { - "Rank": 2, "CommandName": "New-PnPList", + "Rank": 2, "Id": 930, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" }, { - "Rank": 3, "CommandName": "New-PnPList", + "Rank": 3, "Id": 931, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" }, { - "Rank": 1, "CommandName": "New-PnPMicrosoft365Group", + "Rank": 1, "Id": 932, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Rank": 2, "CommandName": "New-PnPMicrosoft365Group", + "Rank": 2, "Id": 933, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" }, { - "Rank": 3, "CommandName": "New-PnPMicrosoft365Group", + "Rank": 3, "Id": 934, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" }, { - "Rank": 4, "CommandName": "New-PnPMicrosoft365Group", + "Rank": 4, "Id": 935, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" }, { - "Rank": 5, "CommandName": "New-PnPMicrosoft365Group", + "Rank": 5, "Id": 936, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Rank": 6, "CommandName": "New-PnPMicrosoft365Group", + "Rank": 6, "Id": 937, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Rank": 7, "CommandName": "New-PnPMicrosoft365Group", + "Rank": 7, "Id": 938, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" }, { - "Rank": 1, "CommandName": "New-PnPMicrosoft365GroupSettings", + "Rank": 1, "Id": 939, "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" }, { - "Rank": 2, "CommandName": "New-PnPMicrosoft365GroupSettings", + "Rank": 2, "Id": 940, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" }, { - "Rank": 1, "CommandName": "New-PnPPersonalSite", + "Rank": 1, "Id": 941, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" }, { - "Rank": 1, "CommandName": "New-PnPPlannerPlan", + "Rank": 1, "Id": 942, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" }, { - "Rank": 1, "CommandName": "New-PnPSdnProvider", + "Rank": 1, "Id": 943, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" }, { - "Rank": 1, "CommandName": "New-PnPSite", + "Rank": 1, "Id": 944, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Rank": 2, "CommandName": "New-PnPSite", + "Rank": 2, "Id": 945, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" }, { - "Rank": 3, "CommandName": "New-PnPSite", + "Rank": 3, "Id": 946, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Rank": 4, "CommandName": "New-PnPSite", + "Rank": 4, "Id": 947, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Rank": 5, "CommandName": "New-PnPSite", + "Rank": 5, "Id": 948, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Rank": 6, "CommandName": "New-PnPSite", + "Rank": 6, "Id": 949, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Rank": 7, "CommandName": "New-PnPSite", + "Rank": 7, "Id": 950, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" }, { - "Rank": 8, "CommandName": "New-PnPSite", + "Rank": 8, "Id": 951, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" }, { - "Rank": 9, "CommandName": "New-PnPSite", + "Rank": 9, "Id": 952, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" }, { - "Rank": 10, "CommandName": "New-PnPSite", + "Rank": 10, "Id": 953, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" }, { - "Rank": 11, "CommandName": "New-PnPSite", + "Rank": 11, "Id": 954, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Rank": 12, "CommandName": "New-PnPSite", + "Rank": 12, "Id": 955, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Rank": 13, "CommandName": "New-PnPSite", + "Rank": 13, "Id": 956, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Rank": 14, "CommandName": "New-PnPSite", + "Rank": 14, "Id": 957, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Rank": 15, "CommandName": "New-PnPSite", + "Rank": 15, "Id": 958, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Rank": 16, "CommandName": "New-PnPSite", + "Rank": 16, "Id": 959, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" }, { - "Rank": 1, "CommandName": "New-PnPSiteCollectionTermStore", + "Rank": 1, "Id": 960, "Command": "New-PnPSiteCollectionTermStore" }, { - "Rank": 1, "CommandName": "New-PnPSiteGroup", + "Rank": 1, "Id": 961, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" }, { - "Rank": 2, "CommandName": "New-PnPSiteGroup", + "Rank": 2, "Id": 962, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" }, { - "Rank": 1, "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 1, "Id": 963, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" }, { - "Rank": 2, "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 2, "Id": 964, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" }, { - "Rank": 3, "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 3, "Id": 965, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" }, { - "Rank": 4, "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 4, "Id": 966, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" }, { - "Rank": 5, "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 5, "Id": 967, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" }, { - "Rank": 6, "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 6, "Id": 968, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 7, "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 7, "Id": 969, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" }, { - "Rank": 8, "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 8, "Id": 970, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" }, { - "Rank": 1, "CommandName": "New-PnPTeamsApp", + "Rank": 1, "Id": 971, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" }, { - "Rank": 1, "CommandName": "New-PnPTeamsTeam", + "Rank": 1, "Id": 972, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" }, { - "Rank": 2, "CommandName": "New-PnPTeamsTeam", + "Rank": 2, "Id": 973, "Command": "New-PnPTeamsTeam -GroupId $groupId" }, { - "Rank": 3, "CommandName": "New-PnPTeamsTeam", + "Rank": 3, "Id": 974, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" }, { - "Rank": 4, "CommandName": "New-PnPTeamsTeam", + "Rank": 4, "Id": 975, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Rank": 5, "CommandName": "New-PnPTeamsTeam", + "Rank": 5, "Id": 976, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" }, { - "Rank": 6, "CommandName": "New-PnPTeamsTeam", + "Rank": 6, "Id": 977, "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": 1, "CommandName": "New-PnPTenantSite", + "Rank": 1, "Id": 978, "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Rank": 2, "CommandName": "New-PnPTenantSite", + "Rank": 2, "Id": 979, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Rank": 1, "CommandName": "New-PnPTerm", + "Rank": 1, "Id": 980, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" }, { - "Rank": 2, "CommandName": "New-PnPTerm", + "Rank": 2, "Id": 981, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Rank": 1, "CommandName": "New-PnPTermGroup", + "Rank": 1, "Id": 982, "Command": "New-PnPTermGroup -GroupName \"Countries\"" }, { - "Rank": 1, "CommandName": "New-PnPTermLabel", + "Rank": 1, "Id": 983, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" }, { - "Rank": 1, "CommandName": "New-PnPTermSet", + "Rank": 1, "Id": 984, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" }, { - "Rank": 1, "CommandName": "New-PnPUPABulkImportJob", + "Rank": 1, "Id": 985, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" }, { - "Rank": 2, "CommandName": "New-PnPUPABulkImportJob", + "Rank": 2, "Id": 986, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" }, { - "Rank": 1, "CommandName": "New-PnPUser", + "Rank": 1, "Id": 987, "Command": "New-PnPUser -LoginName user@company.com" }, { - "Rank": 1, "CommandName": "New-PnPWeb", + "Rank": 1, "Id": 988, "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" }, { - "Rank": 1, "CommandName": "Publish-PnPApp", + "Rank": 1, "Id": 989, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Rank": 2, "CommandName": "Publish-PnPApp", + "Rank": 2, "Id": 990, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" }, { - "Rank": 1, "CommandName": "Publish-PnPCompanyApp", + "Rank": 1, "Id": 991, "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-PnPContentType", + "Rank": 1, "Id": 992, "Command": "Publish-PnPContentType -ContentType 0x0101" }, { - "Rank": 1, "CommandName": "Publish-PnPSyntexModel", + "Rank": 1, "Id": 993, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Rank": 2, "CommandName": "Publish-PnPSyntexModel", + "Rank": 2, "Id": 994, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Rank": 1, "CommandName": "Read-PnPSiteTemplate", + "Rank": 1, "Id": 995, "Command": "Read-PnPSiteTemplate -Path template.pnp" }, { - "Rank": 2, "CommandName": "Read-PnPSiteTemplate", + "Rank": 2, "Id": 996, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" }, { - "Rank": 3, "CommandName": "Read-PnPSiteTemplate", + "Rank": 3, "Id": 997, "Command": "Read-PnPSiteTemplate -Xml $xml" }, { - "Rank": 1, "CommandName": "Read-PnPTenantTemplate", + "Rank": 1, "Id": 998, "Command": "Read-PnPTenantTemplate -Path template.pnp" }, { - "Rank": 1, "CommandName": "Register-PnPAppCatalogSite", + "Rank": 1, "Id": 999, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" }, { - "Rank": 1, "CommandName": "Register-PnPAzureADApp", + "Rank": 1, "Id": 1000, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Rank": 2, "CommandName": "Register-PnPAzureADApp", + "Rank": 2, "Id": 1001, "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": 3, "CommandName": "Register-PnPAzureADApp", + "Rank": 3, "Id": 1002, "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": 4, "CommandName": "Register-PnPAzureADApp", + "Rank": 4, "Id": 1003, "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": 5, "CommandName": "Register-PnPAzureADApp", + "Rank": 5, "Id": 1004, "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Rank": 6, "CommandName": "Register-PnPAzureADApp", + "Rank": 6, "Id": 1005, "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Rank": 7, "CommandName": "Register-PnPAzureADApp", + "Rank": 7, "Id": 1006, "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": 1, "CommandName": "Register-PnPHubSite", + "Rank": 1, "Id": 1007, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Rank": 2, "CommandName": "Register-PnPHubSite", + "Rank": 2, "Id": 1008, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" }, { - "Rank": 1, "CommandName": "Register-PnPManagementShellAccess", + "Rank": 1, "Id": 1009, "Command": "Register-PnPManagementShellAccess" }, { - "Rank": 2, "CommandName": "Register-PnPManagementShellAccess", + "Rank": 2, "Id": 1010, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" }, { - "Rank": 3, "CommandName": "Register-PnPManagementShellAccess", + "Rank": 3, "Id": 1011, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" }, { - "Rank": 1, "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Rank": 1, "Id": 1012, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" }, { - "Rank": 2, "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Rank": 2, "Id": 1013, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" }, { - "Rank": 1, "CommandName": "Remove-PnPAlert", + "Rank": 1, "Id": 1014, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" }, { - "Rank": 2, "CommandName": "Remove-PnPAlert", + "Rank": 2, "Id": 1015, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Rank": 1, "CommandName": "Remove-PnPApp", + "Rank": 1, "Id": 1016, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, "CommandName": "Remove-PnPApp", + "Rank": 2, "Id": 1017, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Rank": 1, "CommandName": "Remove-PnPApplicationCustomizer", + "Rank": 1, "Id": 1018, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Rank": 2, "CommandName": "Remove-PnPApplicationCustomizer", + "Rank": 2, "Id": 1019, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Rank": 1, "CommandName": "Remove-PnPAvailableSiteClassification", + "Rank": 1, "Id": 1020, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" }, { - "Rank": 2, "CommandName": "Remove-PnPAvailableSiteClassification", + "Rank": 2, "Id": 1021, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Rank": 1, "CommandName": "Remove-PnPAzureADApp", + "Rank": 1, "Id": 1022, "Command": "Remove-PnPAzureADApp -Identity MyApp" }, { - "Rank": 2, "CommandName": "Remove-PnPAzureADApp", + "Rank": 2, "Id": 1023, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Rank": 1, "CommandName": "Remove-PnPAzureADGroup", + "Rank": 1, "Id": 1024, "Command": "Remove-PnPAzureADGroup -Identity $groupId" }, { - "Rank": 2, "CommandName": "Remove-PnPAzureADGroup", + "Rank": 2, "Id": 1025, "Command": "Remove-PnPAzureADGroup -Identity $group" }, { - "Rank": 1, "CommandName": "Remove-PnPAzureADGroupMember", + "Rank": 1, "Id": 1026, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 1, "CommandName": "Remove-PnPAzureADGroupOwner", + "Rank": 1, "Id": 1027, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 1, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 1, "Id": 1028, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" }, { - "Rank": 2, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 2, "Id": 1029, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" }, { - "Rank": 3, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 3, "Id": 1030, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Rank": 4, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 4, "Id": 1031, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Rank": 1, "CommandName": "Remove-PnPContentType", + "Rank": 1, "Id": 1032, "Command": "Remove-PnPContentType -Identity \"Project Document\"" }, { - "Rank": 2, "CommandName": "Remove-PnPContentType", + "Rank": 2, "Id": 1033, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" }, { - "Rank": 1, "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 1, "Id": 1034, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Rank": 2, "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 2, "Id": 1035, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Rank": 1, "CommandName": "Remove-PnPContentTypeFromList", + "Rank": 1, "Id": 1036, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" }, { - "Rank": 1, "CommandName": "Remove-PnPCustomAction", + "Rank": 1, "Id": 1037, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Rank": 2, "CommandName": "Remove-PnPCustomAction", + "Rank": 2, "Id": 1038, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Rank": 3, "CommandName": "Remove-PnPCustomAction", + "Rank": 3, "Id": 1039, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" }, { - "Rank": 1, "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Rank": 1, "Id": 1040, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Rank": 1, "CommandName": "Remove-PnPEventReceiver", + "Rank": 1, "Id": 1041, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Rank": 2, "CommandName": "Remove-PnPEventReceiver", + "Rank": 2, "Id": 1042, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Rank": 3, "CommandName": "Remove-PnPEventReceiver", + "Rank": 3, "Id": 1043, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" }, { - "Rank": 4, "CommandName": "Remove-PnPEventReceiver", + "Rank": 4, "Id": 1044, "Command": "Remove-PnPEventReceiver -List ProjectList" }, { - "Rank": 5, "CommandName": "Remove-PnPEventReceiver", + "Rank": 5, "Id": 1045, "Command": "Remove-PnPEventReceiver" }, { - "Rank": 6, "CommandName": "Remove-PnPEventReceiver", + "Rank": 6, "Id": 1046, "Command": "Remove-PnPEventReceiver -Scope Site" }, { - "Rank": 7, "CommandName": "Remove-PnPEventReceiver", + "Rank": 7, "Id": 1047, "Command": "Remove-PnPEventReceiver -Scope Web" }, { - "Rank": 8, "CommandName": "Remove-PnPEventReceiver", + "Rank": 8, "Id": 1048, "Command": "Remove-PnPEventReceiver -Scope All" }, { - "Rank": 1, "CommandName": "Remove-PnPField", + "Rank": 1, "Id": 1049, "Command": "Remove-PnPField -Identity \"Speakers\"" }, { - "Rank": 2, "CommandName": "Remove-PnPField", + "Rank": 2, "Id": 1050, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Rank": 1, "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 1, "Id": 1051, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Rank": 2, "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 2, "Id": 1052, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" }, { - "Rank": 1, "CommandName": "Remove-PnPFile", + "Rank": 1, "Id": 1053, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" }, { - "Rank": 2, "CommandName": "Remove-PnPFile", + "Rank": 2, "Id": 1054, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" }, { - "Rank": 3, "CommandName": "Remove-PnPFile", + "Rank": 3, "Id": 1055, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" }, { - "Rank": 1, "CommandName": "Remove-PnPFileFromSiteTemplate", + "Rank": 1, "Id": 1056, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" }, { - "Rank": 1, "CommandName": "Remove-PnPFileSharingLink", + "Rank": 1, "Id": 1057, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Rank": 2, "CommandName": "Remove-PnPFileSharingLink", + "Rank": 2, "Id": 1058, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" }, { - "Rank": 1, "CommandName": "Remove-PnPFileVersion", + "Rank": 1, "Id": 1059, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Rank": 2, "CommandName": "Remove-PnPFileVersion", + "Rank": 2, "Id": 1060, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Rank": 3, "CommandName": "Remove-PnPFileVersion", + "Rank": 3, "Id": 1061, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" }, { - "Rank": 1, "CommandName": "Remove-PnPFlowOwner", + "Rank": 1, "Id": 1062, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" }, { - "Rank": 2, "CommandName": "Remove-PnPFlowOwner", + "Rank": 2, "Id": 1063, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" }, { - "Rank": 3, "CommandName": "Remove-PnPFlowOwner", + "Rank": 3, "Id": 1064, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" }, { - "Rank": 4, "CommandName": "Remove-PnPFlowOwner", + "Rank": 4, "Id": 1065, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" }, { - "Rank": 1, "CommandName": "Remove-PnPFolder", + "Rank": 1, "Id": 1066, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Rank": 2, "CommandName": "Remove-PnPFolder", + "Rank": 2, "Id": 1067, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" }, { - "Rank": 1, "CommandName": "Remove-PnPFolderSharingLink", + "Rank": 1, "Id": 1068, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Rank": 2, "CommandName": "Remove-PnPFolderSharingLink", + "Rank": 2, "Id": 1069, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" }, { - "Rank": 1, "CommandName": "Remove-PnPGraphSubscription", + "Rank": 1, "Id": 1070, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" }, { - "Rank": 1, "CommandName": "Remove-PnPGroup", + "Rank": 1, "Id": 1071, "Command": "Remove-PnPGroup -Identity \"My Users\"" }, { - "Rank": 1, "CommandName": "Remove-PnPGroupMember", + "Rank": 1, "Id": 1072, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Rank": 1, "CommandName": "Remove-PnPHomeSite", + "Rank": 1, "Id": 1073, "Command": "Remove-PnPHomeSite" }, { - "Rank": 1, "CommandName": "Remove-PnPHubSiteAssociation", + "Rank": 1, "Id": 1074, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Rank": 1, "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 1, "Id": 1075, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" }, { - "Rank": 2, "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 2, "Id": 1076, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" }, { - "Rank": 1, "CommandName": "Remove-PnPIndexedProperty", + "Rank": 1, "Id": 1077, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" }, { - "Rank": 1, "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 1, "Id": 1078, "Command": "Remove-PnPJavaScriptLink -Identity jQuery" }, { - "Rank": 2, "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 2, "Id": 1079, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" }, { - "Rank": 3, "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 3, "Id": 1080, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" }, { - "Rank": 4, "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 4, "Id": 1081, "Command": "Remove-PnPJavaScriptLink -Scope Site" }, { - "Rank": 5, "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 5, "Id": 1082, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" }, { - "Rank": 1, "CommandName": "Remove-PnPKnowledgeHubSite", + "Rank": 1, "Id": 1083, "Command": "Remove-PnPKnowledgeHubSite" }, { - "Rank": 1, "CommandName": "Remove-PnPList", + "Rank": 1, "Id": 1084, "Command": "Remove-PnPList -Identity Announcements" }, { - "Rank": 2, "CommandName": "Remove-PnPList", + "Rank": 2, "Id": 1085, "Command": "Remove-PnPList -Identity Announcements -Force" }, { - "Rank": 3, "CommandName": "Remove-PnPList", + "Rank": 3, "Id": 1086, "Command": "Remove-PnPList -Identity Announcements -Recycle" }, { - "Rank": 4, "CommandName": "Remove-PnPList", + "Rank": 4, "Id": 1087, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" }, { - "Rank": 1, "CommandName": "Remove-PnPListDesign", + "Rank": 1, "Id": 1088, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 1, "CommandName": "Remove-PnPListItem", + "Rank": 1, "Id": 1089, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" }, { - "Rank": 2, "CommandName": "Remove-PnPListItem", + "Rank": 2, "Id": 1090, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" }, { - "Rank": 3, "CommandName": "Remove-PnPListItem", + "Rank": 3, "Id": 1091, "Command": "Remove-PnPListItem -List \"Demo List\"" }, { - "Rank": 1, "CommandName": "Remove-PnPListItemAttachment", + "Rank": 1, "Id": 1092, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" }, { - "Rank": 2, "CommandName": "Remove-PnPListItemAttachment", + "Rank": 2, "Id": 1093, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" }, { - "Rank": 3, "CommandName": "Remove-PnPListItemAttachment", + "Rank": 3, "Id": 1094, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" }, { - "Rank": 4, "CommandName": "Remove-PnPListItemAttachment", + "Rank": 4, "Id": 1095, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" }, { - "Rank": 5, "CommandName": "Remove-PnPListItemAttachment", + "Rank": 5, "Id": 1096, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" }, { - "Rank": 1, "CommandName": "Remove-PnPListItemVersion", + "Rank": 1, "Id": 1097, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Rank": 2, "CommandName": "Remove-PnPListItemVersion", + "Rank": 2, "Id": 1098, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Rank": 1, "CommandName": "Remove-PnPMicrosoft365Group", + "Rank": 1, "Id": 1099, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" }, { - "Rank": 2, "CommandName": "Remove-PnPMicrosoft365Group", + "Rank": 2, "Id": 1100, "Command": "Remove-PnPMicrosoft365Group -Identity $group" }, { - "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Rank": 1, "Id": 1101, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Rank": 1, "Id": 1102, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 1, "Id": 1103, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" }, { - "Rank": 2, "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 2, "Id": 1104, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" }, { - "Rank": 1, "CommandName": "Remove-PnPNavigationNode", + "Rank": 1, "Id": 1105, "Command": "Remove-PnPNavigationNode -Identity 1032" }, { - "Rank": 2, "CommandName": "Remove-PnPNavigationNode", + "Rank": 2, "Id": 1106, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" }, { - "Rank": 3, "CommandName": "Remove-PnPNavigationNode", + "Rank": 3, "Id": 1107, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" }, { - "Rank": 1, "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 1, "Id": 1108, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" }, { - "Rank": 2, "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 2, "Id": 1109, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" }, { - "Rank": 3, "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 3, "Id": 1110, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" }, { - "Rank": 1, "CommandName": "Remove-PnPOrgNewsSite", + "Rank": 1, "Id": 1111, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Rank": 1, "CommandName": "Remove-PnPPage", + "Rank": 1, "Id": 1112, "Command": "Remove-PnPPage -Identity \"MyPage\"" }, { - "Rank": 2, "CommandName": "Remove-PnPPage", + "Rank": 2, "Id": 1113, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" }, { - "Rank": 3, "CommandName": "Remove-PnPPage", + "Rank": 3, "Id": 1114, "Command": "Remove-PnPPage $page" }, { - "Rank": 4, "CommandName": "Remove-PnPPage", + "Rank": 4, "Id": 1115, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" }, { - "Rank": 1, "CommandName": "Remove-PnPPageComponent", + "Rank": 1, "Id": 1116, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Rank": 1, "CommandName": "Remove-PnPPlannerBucket", + "Rank": 1, "Id": 1117, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" }, { - "Rank": 1, "CommandName": "Remove-PnPPlannerPlan", + "Rank": 1, "Id": 1118, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" }, { - "Rank": 1, "CommandName": "Remove-PnPPlannerRoster", + "Rank": 1, "Id": 1119, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Rank": 1, "CommandName": "Remove-PnPPlannerRosterMember", + "Rank": 1, "Id": 1120, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Rank": 1, "CommandName": "Remove-PnPPlannerTask", + "Rank": 1, "Id": 1121, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" }, { - "Rank": 1, "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 1, "Id": 1122, "Command": "Remove-PnPPropertyBagValue -Key MyKey" }, { - "Rank": 2, "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 2, "Id": 1123, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" }, { - "Rank": 3, "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 3, "Id": 1124, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" }, { - "Rank": 1, "CommandName": "Remove-PnPPublishingImageRendition", + "Rank": 1, "Id": 1125, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Rank": 1, "CommandName": "Remove-PnPRoleDefinition", + "Rank": 1, "Id": 1126, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" }, { - "Rank": 1, "CommandName": "Remove-PnPSdnProvider", + "Rank": 1, "Id": 1127, "Command": "Remove-PnPSdnProvider -Confirm:false" }, { - "Rank": 1, "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 1, "Id": 1128, "Command": "Remove-PnPSearchConfiguration -Configuration $config" }, { - "Rank": 2, "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 2, "Id": 1129, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Rank": 3, "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 3, "Id": 1130, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Rank": 4, "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 4, "Id": 1131, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAdmin", + "Rank": 1, "Id": 1132, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Rank": 2, "CommandName": "Remove-PnPSiteCollectionAdmin", + "Rank": 2, "Id": 1133, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Rank": 1, "Id": 1134, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "Rank": 1, "CommandName": "Remove-PnPSiteCollectionTermStore", + "Rank": 1, "Id": 1135, "Command": "Remove-PnPSiteCollectionTermStore" }, { - "Rank": 1, "CommandName": "Remove-PnPSiteDesign", + "Rank": 1, "Id": 1136, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 1, "CommandName": "Remove-PnPSiteDesignTask", + "Rank": 1, "Id": 1137, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 1, "CommandName": "Remove-PnPSiteGroup", + "Rank": 1, "Id": 1138, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Rank": 2, "CommandName": "Remove-PnPSiteGroup", + "Rank": 2, "Id": 1139, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" }, { - "Rank": 1, "CommandName": "Remove-PnPSiteScript", + "Rank": 1, "Id": 1140, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 1, "CommandName": "Remove-PnPSiteUserInvitations", + "Rank": 1, "Id": 1141, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Rank": 1, "CommandName": "Remove-PnPStorageEntity", + "Rank": 1, "Id": 1142, "Command": "Remove-PnPStorageEntity -Key MyKey" }, { - "Rank": 2, "CommandName": "Remove-PnPStorageEntity", + "Rank": 2, "Id": 1143, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Rank": 1, "CommandName": "Remove-PnPStoredCredential", + "Rank": 1, "Id": 1144, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" }, { - "Rank": 1, "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 1, "Id": 1145, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" }, { - "Rank": 2, "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 2, "Id": 1146, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" }, { - "Rank": 1, "CommandName": "Remove-PnPTeamsApp", + "Rank": 1, "Id": 1147, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" }, { - "Rank": 2, "CommandName": "Remove-PnPTeamsApp", + "Rank": 2, "Id": 1148, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" }, { - "Rank": 1, "CommandName": "Remove-PnPTeamsChannel", + "Rank": 1, "Id": 1149, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" }, { - "Rank": 1, "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 1, "Id": 1150, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" }, { - "Rank": 2, "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 2, "Id": 1151, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Rank": 3, "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 3, "Id": 1152, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" }, { - "Rank": 1, "CommandName": "Remove-PnPTeamsTab", + "Rank": 1, "Id": 1153, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" }, { - "Rank": 2, "CommandName": "Remove-PnPTeamsTab", + "Rank": 2, "Id": 1154, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" }, { - "Rank": 3, "CommandName": "Remove-PnPTeamsTab", + "Rank": 3, "Id": 1155, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" }, { - "Rank": 1, "CommandName": "Remove-PnPTeamsTag", + "Rank": 1, "Id": 1156, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Rank": 1, "CommandName": "Remove-PnPTeamsTeam", + "Rank": 1, "Id": 1157, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Rank": 2, "CommandName": "Remove-PnPTeamsTeam", + "Rank": 2, "Id": 1158, "Command": "Remove-PnPTeamsTeam -Identity testteam" }, { - "Rank": 1, "CommandName": "Remove-PnPTeamsUser", + "Rank": 1, "Id": 1159, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" }, { - "Rank": 2, "CommandName": "Remove-PnPTeamsUser", + "Rank": 2, "Id": 1160, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Rank": 1, "CommandName": "Remove-PnPTenantCdnOrigin", + "Rank": 1, "Id": 1161, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Rank": 1, "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 1, "Id": 1162, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 2, "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 2, "Id": 1163, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Rank": 1, "CommandName": "Remove-PnPTenantSite", + "Rank": 1, "Id": 1164, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 2, "CommandName": "Remove-PnPTenantSite", + "Rank": 2, "Id": 1165, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" }, { - "Rank": 3, "CommandName": "Remove-PnPTenantSite", + "Rank": 3, "Id": 1166, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" }, { - "Rank": 1, "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Rank": 1, "Id": 1167, "Command": "Remove-PnPTenantSyncClientRestriction" }, { - "Rank": 1, "CommandName": "Remove-PnPTenantTheme", + "Rank": 1, "Id": 1168, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Rank": 1, "CommandName": "Remove-PnPTerm", + "Rank": 1, "Id": 1169, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Rank": 2, "CommandName": "Remove-PnPTerm", + "Rank": 2, "Id": 1170, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 1, "CommandName": "Remove-PnPTermGroup", + "Rank": 1, "Id": 1171, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Rank": 2, "CommandName": "Remove-PnPTermGroup", + "Rank": 2, "Id": 1172, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" }, { - "Rank": 3, "CommandName": "Remove-PnPTermGroup", + "Rank": 3, "Id": 1173, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" }, { - "Rank": 1, "CommandName": "Remove-PnPTermLabel", + "Rank": 1, "Id": 1174, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" }, { - "Rank": 2, "CommandName": "Remove-PnPTermLabel", + "Rank": 2, "Id": 1175, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 1, "CommandName": "Remove-PnPUser", + "Rank": 1, "Id": 1176, "Command": "Remove-PnPUser -Identity 23" }, { - "Rank": 2, "CommandName": "Remove-PnPUser", + "Rank": 2, "Id": 1177, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" }, { - "Rank": 3, "CommandName": "Remove-PnPUser", + "Rank": 3, "Id": 1178, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" }, { - "Rank": 1, "CommandName": "Remove-PnPUserInfo", + "Rank": 1, "Id": 1179, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Rank": 1, "CommandName": "Remove-PnPUserProfile", + "Rank": 1, "Id": 1180, "Command": "Remove-PnPUserProfile -LoginName user@domain.com" }, { - "Rank": 1, "CommandName": "Remove-PnPView", + "Rank": 1, "Id": 1181, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" }, { - "Rank": 1, "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Rank": 1, "Id": 1182, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Rank": 1, "CommandName": "Remove-PnPWeb", + "Rank": 1, "Id": 1183, "Command": "Remove-PnPWeb -Identity projectA" }, { - "Rank": 2, "CommandName": "Remove-PnPWeb", + "Rank": 2, "Id": 1184, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" }, { - "Rank": 1, "CommandName": "Remove-PnPWebhookSubscription", + "Rank": 1, "Id": 1185, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" }, { - "Rank": 1, "CommandName": "Remove-PnPWebPart", + "Rank": 1, "Id": 1186, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Rank": 2, "CommandName": "Remove-PnPWebPart", + "Rank": 2, "Id": 1187, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" }, { - "Rank": 1, "CommandName": "Remove-PnPWikiPage", + "Rank": 1, "Id": 1188, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" }, { - "Rank": 1, "CommandName": "Rename-PnPFile", + "Rank": 1, "Id": 1189, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" }, { - "Rank": 2, "CommandName": "Rename-PnPFile", + "Rank": 2, "Id": 1190, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" }, { - "Rank": 3, "CommandName": "Rename-PnPFile", + "Rank": 3, "Id": 1191, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" }, { - "Rank": 1, "CommandName": "Rename-PnPFolder", + "Rank": 1, "Id": 1192, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" }, { - "Rank": 1, "CommandName": "Repair-PnPSite", + "Rank": 1, "Id": 1193, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Rank": 2, "CommandName": "Repair-PnPSite", + "Rank": 2, "Id": 1194, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Rank": 1, "CommandName": "Request-PnPAccessToken", + "Rank": 1, "Id": 1195, "Command": "Request-PnPAccessToken" }, { - "Rank": 2, "CommandName": "Request-PnPAccessToken", + "Rank": 2, "Id": 1196, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" }, { - "Rank": 3, "CommandName": "Request-PnPAccessToken", + "Rank": 3, "Id": 1197, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" }, { - "Rank": 4, "CommandName": "Request-PnPAccessToken", + "Rank": 4, "Id": 1198, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" }, { - "Rank": 1, "CommandName": "Request-PnPPersonalSite", + "Rank": 1, "Id": 1199, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" }, { - "Rank": 2, "CommandName": "Request-PnPPersonalSite", + "Rank": 2, "Id": 1200, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" }, { - "Rank": 1, "CommandName": "Request-PnPReIndexList", + "Rank": 1, "Id": 1201, "Command": "Request-PnPReIndexList -Identity \"Demo List\"" }, { - "Rank": 1, "CommandName": "Request-PnPReIndexWeb", + "Rank": 1, "Id": 1202, "Command": "Request-PnPReIndexWeb" }, { - "Rank": 1, "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 1, "Id": 1203, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" }, { - "Rank": 2, "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 2, "Id": 1204, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" }, { - "Rank": 3, "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 3, "Id": 1205, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" }, { - "Rank": 1, "CommandName": "Reset-PnPFileVersion", + "Rank": 1, "Id": 1206, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" }, { - "Rank": 2, "CommandName": "Reset-PnPFileVersion", + "Rank": 2, "Id": 1207, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" }, { - "Rank": 1, "CommandName": "Reset-PnPLabel", + "Rank": 1, "Id": 1208, "Command": "Reset-PnPLabel -List \"Demo List\"" }, { - "Rank": 2, "CommandName": "Reset-PnPLabel", + "Rank": 2, "Id": 1209, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" }, { - "Rank": 1, "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Rank": 1, "Id": 1210, "Command": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Rank": 1, "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Rank": 1, "Id": 1211, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" }, { - "Rank": 1, "CommandName": "Resolve-PnPFolder", + "Rank": 1, "Id": 1212, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" }, { - "Rank": 1, "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Rank": 1, "Id": 1213, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Rank": 1, "CommandName": "Restore-PnPFileVersion", + "Rank": 1, "Id": 1214, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Rank": 2, "CommandName": "Restore-PnPFileVersion", + "Rank": 2, "Id": 1215, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" }, { - "Rank": 3, "CommandName": "Restore-PnPFileVersion", + "Rank": 3, "Id": 1216, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Rank": 1, "CommandName": "Restore-PnPListItemVersion", + "Rank": 1, "Id": 1217, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Rank": 2, "CommandName": "Restore-PnPListItemVersion", + "Rank": 2, "Id": 1218, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Rank": 1, "CommandName": "Restore-PnPRecycleBinItem", + "Rank": 1, "Id": 1219, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Rank": 1, "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 1, "Id": 1220, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 2, "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 2, "Id": 1221, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "Rank": 1, "CommandName": "Restore-PnPTenantSite", + "Rank": 1, "Id": 1222, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 2, "CommandName": "Restore-PnPTenantSite", + "Rank": 2, "Id": 1223, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Rank": 3, "CommandName": "Restore-PnPTenantSite", + "Rank": 3, "Id": 1224, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" }, { - "Rank": 1, "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Rank": 1, "Id": 1225, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" }, { - "Rank": 1, "CommandName": "Revoke-PnPHubSiteRights", + "Rank": 1, "Id": 1226, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Rank": 1, "CommandName": "Revoke-PnPSiteDesignRights", + "Rank": 1, "Id": 1227, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Rank": 1, "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Rank": 1, "Id": 1228, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Rank": 1, "CommandName": "Revoke-PnPUserSession", + "Rank": 1, "Id": 1229, "Command": "Revoke-PnPUserSession -User user1@contoso.com" }, { - "Rank": 1, "CommandName": "Save-PnPPageConversionLog", + "Rank": 1, "Id": 1230, "Command": "Save-PnPPageConversionLog" }, { - "Rank": 1, "CommandName": "Save-PnPSiteTemplate", + "Rank": 1, "Id": 1231, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" }, { - "Rank": 1, "CommandName": "Save-PnPTenantTemplate", + "Rank": 1, "Id": 1232, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" }, { - "Rank": 1, "CommandName": "Send-PnPMail", + "Rank": 1, "Id": 1233, "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Rank": 2, "CommandName": "Send-PnPMail", + "Rank": 2, "Id": 1234, "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": 3, "CommandName": "Send-PnPMail", + "Rank": 3, "Id": 1235, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Rank": 4, "CommandName": "Send-PnPMail", + "Rank": 4, "Id": 1236, "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": 5, "CommandName": "Send-PnPMail", + "Rank": 5, "Id": 1237, "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": 6, "CommandName": "Send-PnPMail", + "Rank": 6, "Id": 1238, "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": 1, "CommandName": "Set-PnPAdaptiveScopeProperty", + "Rank": 1, "Id": 1239, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" }, { - "Rank": 1, "CommandName": "Set-PnPApplicationCustomizer", + "Rank": 1, "Id": 1240, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Rank": 2, "CommandName": "Set-PnPApplicationCustomizer", + "Rank": 2, "Id": 1241, "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" }, { - "Rank": 1, "CommandName": "Set-PnPAppSideLoading", + "Rank": 1, "Id": 1242, "Command": "Set-PnPAppSideLoading -On" }, { - "Rank": 2, "CommandName": "Set-PnPAppSideLoading", + "Rank": 2, "Id": 1243, "Command": "Set-PnPAppSideLoading -Off" }, { - "Rank": 1, "CommandName": "Set-PnPAuditing", + "Rank": 1, "Id": 1244, "Command": "Set-PnPAuditing -EnableAll" }, { - "Rank": 2, "CommandName": "Set-PnPAuditing", + "Rank": 2, "Id": 1245, "Command": "Set-PnPAuditing -DisableAll" }, { - "Rank": 3, "CommandName": "Set-PnPAuditing", + "Rank": 3, "Id": 1246, "Command": "Set-PnPAuditing -RetentionTime 7" }, { - "Rank": 4, "CommandName": "Set-PnPAuditing", + "Rank": 4, "Id": 1247, "Command": "Set-PnPAuditing -TrimAuditLog" }, { - "Rank": 5, "CommandName": "Set-PnPAuditing", + "Rank": 5, "Id": 1248, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" }, { - "Rank": 1, "CommandName": "Set-PnPAvailablePageLayouts", + "Rank": 1, "Id": 1249, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" }, { - "Rank": 1, "CommandName": "Set-PnPAzureADAppSitePermission", + "Rank": 1, "Id": 1250, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" }, { - "Rank": 2, "CommandName": "Set-PnPAzureADAppSitePermission", + "Rank": 2, "Id": 1251, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" }, { - "Rank": 1, "CommandName": "Set-PnPAzureADGroup", + "Rank": 1, "Id": 1252, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" }, { - "Rank": 2, "CommandName": "Set-PnPAzureADGroup", + "Rank": 2, "Id": 1253, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Rank": 3, "CommandName": "Set-PnPAzureADGroup", + "Rank": 3, "Id": 1254, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" }, { - "Rank": 1, "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 1, "Id": 1255, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" }, { - "Rank": 2, "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 2, "Id": 1256, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" }, { - "Rank": 3, "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 3, "Id": 1257, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" }, { - "Rank": 1, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 1, "Id": 1258, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" }, { - "Rank": 2, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 2, "Id": 1259, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" }, { - "Rank": 1, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 1, "Id": 1260, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" }, { - "Rank": 2, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 2, "Id": 1261, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" }, { - "Rank": 3, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 3, "Id": 1262, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" }, { - "Rank": 4, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 4, "Id": 1263, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" }, { - "Rank": 1, "CommandName": "Set-PnPContentType", + "Rank": 1, "Id": 1264, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Rank": 2, "CommandName": "Set-PnPContentType", + "Rank": 2, "Id": 1265, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" }, { - "Rank": 3, "CommandName": "Set-PnPContentType", + "Rank": 3, "Id": 1266, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Rank": 4, "CommandName": "Set-PnPContentType", + "Rank": 4, "Id": 1267, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Rank": 5, "CommandName": "Set-PnPContentType", + "Rank": 5, "Id": 1268, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Rank": 1, "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 1, "Id": 1269, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" }, { - "Rank": 2, "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 2, "Id": 1270, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" }, { - "Rank": 3, "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 3, "Id": 1271, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" }, { - "Rank": 4, "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 4, "Id": 1272, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" }, { - "Rank": 1, "CommandName": "Set-PnPDefaultContentTypeToList", + "Rank": 1, "Id": 1273, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" }, { - "Rank": 1, "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 1, "Id": 1274, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" }, { - "Rank": 2, "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 2, "Id": 1275, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" }, { - "Rank": 3, "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 3, "Id": 1276, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" }, { - "Rank": 1, "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 1, "Id": 1277, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" }, { - "Rank": 2, "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 2, "Id": 1278, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Rank": 3, "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 3, "Id": 1279, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Rank": 1, "CommandName": "Set-PnPDocumentSetField", + "Rank": 1, "Id": 1280, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" }, { - "Rank": 2, "CommandName": "Set-PnPDocumentSetField", + "Rank": 2, "Id": 1281, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" }, { - "Rank": 1, "CommandName": "Set-PnPField", + "Rank": 1, "Id": 1282, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" }, { - "Rank": 2, "CommandName": "Set-PnPField", + "Rank": 2, "Id": 1283, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" }, { - "Rank": 3, "CommandName": "Set-PnPField", + "Rank": 3, "Id": 1284, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" }, { - "Rank": 1, "CommandName": "Set-PnPFileCheckedIn", + "Rank": 1, "Id": 1285, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" }, { - "Rank": 2, "CommandName": "Set-PnPFileCheckedIn", + "Rank": 2, "Id": 1286, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" }, { - "Rank": 1, "CommandName": "Set-PnPFileCheckedOut", + "Rank": 1, "Id": 1287, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" }, { - "Rank": 1, "CommandName": "Set-PnPFolderPermission", + "Rank": 1, "Id": 1288, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Rank": 2, "CommandName": "Set-PnPFolderPermission", + "Rank": 2, "Id": 1289, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Rank": 3, "CommandName": "Set-PnPFolderPermission", + "Rank": 3, "Id": 1290, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Rank": 1, "CommandName": "Set-PnPFooter", + "Rank": 1, "Id": 1291, "Command": "Set-PnPFooter -Enabled:$true" }, { - "Rank": 2, "CommandName": "Set-PnPFooter", + "Rank": 2, "Id": 1292, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" }, { - "Rank": 3, "CommandName": "Set-PnPFooter", + "Rank": 3, "Id": 1293, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" }, { - "Rank": 4, "CommandName": "Set-PnPFooter", + "Rank": 4, "Id": 1294, "Command": "Set-PnPFooter -LogoUrl \"\"" }, { - "Rank": 1, "CommandName": "Set-PnPGraphSubscription", + "Rank": 1, "Id": 1295, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" }, { - "Rank": 1, "CommandName": "Set-PnPGroup", + "Rank": 1, "Id": 1296, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" }, { - "Rank": 2, "CommandName": "Set-PnPGroup", + "Rank": 2, "Id": 1297, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" }, { - "Rank": 1, "CommandName": "Set-PnPGroupPermissions", + "Rank": 1, "Id": 1298, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" }, { - "Rank": 2, "CommandName": "Set-PnPGroupPermissions", + "Rank": 2, "Id": 1299, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" }, { - "Rank": 3, "CommandName": "Set-PnPGroupPermissions", + "Rank": 3, "Id": 1300, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" }, { - "Rank": 4, "CommandName": "Set-PnPGroupPermissions", + "Rank": 4, "Id": 1301, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" }, { - "Rank": 5, "CommandName": "Set-PnPGroupPermissions", + "Rank": 5, "Id": 1302, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" }, { - "Rank": 1, "CommandName": "Set-PnPHideDefaultThemes", + "Rank": 1, "Id": 1303, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" }, { - "Rank": 2, "CommandName": "Set-PnPHideDefaultThemes", + "Rank": 2, "Id": 1304, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" }, { - "Rank": 1, "CommandName": "Set-PnPHomePage", + "Rank": 1, "Id": 1305, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" }, { - "Rank": 2, "CommandName": "Set-PnPHomePage", + "Rank": 2, "Id": 1306, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" }, { - "Rank": 1, "CommandName": "Set-PnPHomeSite", + "Rank": 1, "Id": 1307, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" }, { - "Rank": 2, "CommandName": "Set-PnPHomeSite", + "Rank": 2, "Id": 1308, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" }, { - "Rank": 1, "CommandName": "Set-PnPHubSite", + "Rank": 1, "Id": 1309, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" }, { - "Rank": 2, "CommandName": "Set-PnPHubSite", + "Rank": 2, "Id": 1310, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" }, { - "Rank": 3, "CommandName": "Set-PnPHubSite", + "Rank": 3, "Id": 1311, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" }, { - "Rank": 4, "CommandName": "Set-PnPHubSite", + "Rank": 4, "Id": 1312, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" }, { - "Rank": 5, "CommandName": "Set-PnPHubSite", + "Rank": 5, "Id": 1313, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" }, { - "Rank": 6, "CommandName": "Set-PnPHubSite", + "Rank": 6, "Id": 1314, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" }, { - "Rank": 1, "CommandName": "Set-PnPImageListItemColumn", + "Rank": 1, "Id": 1315, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" }, { - "Rank": 2, "CommandName": "Set-PnPImageListItemColumn", + "Rank": 2, "Id": 1316, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" }, { - "Rank": 1, "CommandName": "Set-PnPIndexedProperties", + "Rank": 1, "Id": 1317, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" }, { - "Rank": 1, "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 1, "Id": 1318, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" }, { - "Rank": 2, "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 2, "Id": 1319, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" }, { - "Rank": 1, "CommandName": "Set-PnPKnowledgeHubSite", + "Rank": 1, "Id": 1320, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" }, { - "Rank": 1, "CommandName": "Set-PnPLabel", + "Rank": 1, "Id": 1321, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" }, { - "Rank": 2, "CommandName": "Set-PnPLabel", + "Rank": 2, "Id": 1322, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" }, { - "Rank": 1, "CommandName": "Set-PnPList", + "Rank": 1, "Id": 1323, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" }, { - "Rank": 2, "CommandName": "Set-PnPList", + "Rank": 2, "Id": 1324, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" }, { - "Rank": 3, "CommandName": "Set-PnPList", + "Rank": 3, "Id": 1325, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" }, { - "Rank": 4, "CommandName": "Set-PnPList", + "Rank": 4, "Id": 1326, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" }, { - "Rank": 5, "CommandName": "Set-PnPList", + "Rank": 5, "Id": 1327, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" }, { - "Rank": 6, "CommandName": "Set-PnPList", + "Rank": 6, "Id": 1328, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" }, { - "Rank": 7, "CommandName": "Set-PnPList", + "Rank": 7, "Id": 1329, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" }, { - "Rank": 8, "CommandName": "Set-PnPList", + "Rank": 8, "Id": 1330, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" }, { - "Rank": 9, "CommandName": "Set-PnPList", + "Rank": 9, "Id": 1331, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" }, { - "Rank": 10, "CommandName": "Set-PnPList", + "Rank": 10, "Id": 1332, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" }, { - "Rank": 11, "CommandName": "Set-PnPList", + "Rank": 11, "Id": 1333, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" }, { - "Rank": 1, "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 1, "Id": 1334, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" }, { - "Rank": 2, "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 2, "Id": 1335, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" }, { - "Rank": 1, "CommandName": "Set-PnPListItem", + "Rank": 1, "Id": 1336, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 2, "CommandName": "Set-PnPListItem", + "Rank": 2, "Id": 1337, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 3, "CommandName": "Set-PnPListItem", + "Rank": 3, "Id": 1338, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 4, "CommandName": "Set-PnPListItem", + "Rank": 4, "Id": 1339, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" }, { - "Rank": 5, "CommandName": "Set-PnPListItem", + "Rank": 5, "Id": 1340, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" }, { - "Rank": 1, "CommandName": "Set-PnPListItemAsRecord", + "Rank": 1, "Id": 1341, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Rank": 2, "CommandName": "Set-PnPListItemAsRecord", + "Rank": 2, "Id": 1342, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" }, { - "Rank": 1, "CommandName": "Set-PnPListItemPermission", + "Rank": 1, "Id": 1343, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Rank": 2, "CommandName": "Set-PnPListItemPermission", + "Rank": 2, "Id": 1344, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Rank": 3, "CommandName": "Set-PnPListItemPermission", + "Rank": 3, "Id": 1345, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Rank": 4, "CommandName": "Set-PnPListItemPermission", + "Rank": 4, "Id": 1346, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" }, { - "Rank": 5, "CommandName": "Set-PnPListItemPermission", + "Rank": 5, "Id": 1347, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" }, { - "Rank": 1, "CommandName": "Set-PnPListPermission", + "Rank": 1, "Id": 1348, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Rank": 2, "CommandName": "Set-PnPListPermission", + "Rank": 2, "Id": 1349, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Rank": 1, "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 1, "Id": 1350, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" }, { - "Rank": 2, "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 2, "Id": 1351, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" }, { - "Rank": 1, "CommandName": "Set-PnPMasterPage", + "Rank": 1, "Id": 1352, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Rank": 2, "CommandName": "Set-PnPMasterPage", + "Rank": 2, "Id": 1353, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Rank": 3, "CommandName": "Set-PnPMasterPage", + "Rank": 3, "Id": 1354, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Rank": 4, "CommandName": "Set-PnPMasterPage", + "Rank": 4, "Id": 1355, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 1, "Id": 1356, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" }, { - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 2, "Id": 1357, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3, "Id": 1358, "Command": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 1, "Id": 1359, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" }, { - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 2, "Id": 1360, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3, "Id": 1361, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 1, "Id": 1362, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" }, { - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 2, "Id": 1363, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3, "Id": 1364, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 1, "Id": 1365, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" }, { - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 2, "Id": 1366, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3, "Id": 1367, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 1, "Id": 1368, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" }, { - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 2, "Id": 1369, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3, "Id": 1370, "Command": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 1, "Id": 1371, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" }, { - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 2, "Id": 1372, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3, "Id": 1373, "Command": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Rank": 1, "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 1, "Id": 1374, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" }, { - "Rank": 2, "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 2, "Id": 1375, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Rank": 3, "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 3, "Id": 1376, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" }, { - "Rank": 4, "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 4, "Id": 1377, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" }, { - "Rank": 5, "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 5, "Id": 1378, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" }, { - "Rank": 6, "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 6, "Id": 1379, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Rank": 1, "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Rank": 1, "Id": 1380, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" }, { - "Rank": 2, "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Rank": 2, "Id": 1381, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" }, { - "Rank": 1, "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 1, "Id": 1382, "Command": "Set-PnPMinimalDownloadStrategy -Off" }, { - "Rank": 2, "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 2, "Id": 1383, "Command": "Set-PnPMinimalDownloadStrategy -On" }, { - "Rank": 1, "CommandName": "Set-PnPPage", + "Rank": 1, "Id": 1384, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" }, { - "Rank": 2, "CommandName": "Set-PnPPage", + "Rank": 2, "Id": 1385, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" }, { - "Rank": 3, "CommandName": "Set-PnPPage", + "Rank": 3, "Id": 1386, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" }, { - "Rank": 4, "CommandName": "Set-PnPPage", + "Rank": 4, "Id": 1387, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" }, { - "Rank": 5, "CommandName": "Set-PnPPage", + "Rank": 5, "Id": 1388, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" }, { - "Rank": 6, "CommandName": "Set-PnPPage", + "Rank": 6, "Id": 1389, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" }, { - "Rank": 7, "CommandName": "Set-PnPPage", + "Rank": 7, "Id": 1390, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Rank": 8, "CommandName": "Set-PnPPage", + "Rank": 8, "Id": 1391, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" }, { - "Rank": 9, "CommandName": "Set-PnPPage", + "Rank": 9, "Id": 1392, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Rank": 10, "CommandName": "Set-PnPPage", + "Rank": 10, "Id": 1393, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Rank": 11, "CommandName": "Set-PnPPage", + "Rank": 11, "Id": 1394, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" }, { - "Rank": 1, "CommandName": "Set-PnPPageTextPart", + "Rank": 1, "Id": 1395, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" }, { - "Rank": 1, "CommandName": "Set-PnPPageWebPart", + "Rank": 1, "Id": 1396, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" }, { - "Rank": 2, "CommandName": "Set-PnPPageWebPart", + "Rank": 2, "Id": 1397, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" }, { - "Rank": 1, "CommandName": "Set-PnPPlannerBucket", + "Rank": 1, "Id": 1398, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" }, { - "Rank": 1, "CommandName": "Set-PnPPlannerConfiguration", + "Rank": 1, "Id": 1399, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" }, { - "Rank": 2, "CommandName": "Set-PnPPlannerConfiguration", + "Rank": 2, "Id": 1400, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" }, { - "Rank": 1, "CommandName": "Set-PnPPlannerPlan", + "Rank": 1, "Id": 1401, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" }, { - "Rank": 1, "CommandName": "Set-PnPPlannerTask", + "Rank": 1, "Id": 1402, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" }, { - "Rank": 2, "CommandName": "Set-PnPPlannerTask", + "Rank": 2, "Id": 1403, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" }, { - "Rank": 3, "CommandName": "Set-PnPPlannerTask", + "Rank": 3, "Id": 1404, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "Rank": 1, "CommandName": "Set-PnPPlannerUserPolicy", + "Rank": 1, "Id": 1405, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Rank": 1, "CommandName": "Set-PnPPropertyBagValue", + "Rank": 1, "Id": 1406, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" }, { - "Rank": 2, "CommandName": "Set-PnPPropertyBagValue", + "Rank": 2, "Id": 1407, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" }, { - "Rank": 3, "CommandName": "Set-PnPPropertyBagValue", + "Rank": 3, "Id": 1408, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" }, { - "Rank": 1, "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 1, "Id": 1409, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" }, { - "Rank": 2, "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 2, "Id": 1410, "Command": "Set-PnPRequestAccessEmails -Disabled" }, { - "Rank": 3, "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 3, "Id": 1411, "Command": "Set-PnPRequestAccessEmails -Disabled:$false" }, { - "Rank": 1, "CommandName": "Set-PnPRoleDefinition", + "Rank": 1, "Id": 1412, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" }, { - "Rank": 2, "CommandName": "Set-PnPRoleDefinition", + "Rank": 2, "Id": 1413, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" }, { - "Rank": 3, "CommandName": "Set-PnPRoleDefinition", + "Rank": 3, "Id": 1414, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" }, { - "Rank": 4, "CommandName": "Set-PnPRoleDefinition", + "Rank": 4, "Id": 1415, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" }, { - "Rank": 1, "CommandName": "Set-PnPSearchConfiguration", + "Rank": 1, "Id": 1416, "Command": "Set-PnPSearchConfiguration -Configuration $config" }, { - "Rank": 2, "CommandName": "Set-PnPSearchConfiguration", + "Rank": 2, "Id": 1417, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Rank": 3, "CommandName": "Set-PnPSearchConfiguration", + "Rank": 3, "Id": 1418, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Rank": 4, "CommandName": "Set-PnPSearchConfiguration", + "Rank": 4, "Id": 1419, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Rank": 1, "CommandName": "Set-PnPSearchExternalItem", + "Rank": 1, "Id": 1420, "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": 2, "CommandName": "Set-PnPSearchExternalItem", + "Rank": 2, "Id": 1421, "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": 1, "CommandName": "Set-PnPSearchSettings", + "Rank": 1, "Id": 1422, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" }, { - "Rank": 2, "CommandName": "Set-PnPSearchSettings", + "Rank": 2, "Id": 1423, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" }, { - "Rank": 3, "CommandName": "Set-PnPSearchSettings", + "Rank": 3, "Id": 1424, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" }, { - "Rank": 4, "CommandName": "Set-PnPSearchSettings", + "Rank": 4, "Id": 1425, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" }, { - "Rank": 5, "CommandName": "Set-PnPSearchSettings", + "Rank": 5, "Id": 1426, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" }, { - "Rank": 6, "CommandName": "Set-PnPSearchSettings", + "Rank": 6, "Id": 1427, "Command": "Set-PnPSearchSettings -SearchScope Tenant" }, { - "Rank": 7, "CommandName": "Set-PnPSearchSettings", + "Rank": 7, "Id": 1428, "Command": "Set-PnPSearchSettings -SearchScope Hub" }, { - "Rank": 1, "CommandName": "Set-PnPSite", + "Rank": 1, "Id": 1429, "Command": "Set-PnPSite -Classification \"HBI\"" }, { - "Rank": 2, "CommandName": "Set-PnPSite", + "Rank": 2, "Id": 1430, "Command": "Set-PnPSite -Classification $null" }, { - "Rank": 3, "CommandName": "Set-PnPSite", + "Rank": 3, "Id": 1431, "Command": "Set-PnPSite -DisableFlows" }, { - "Rank": 4, "CommandName": "Set-PnPSite", + "Rank": 4, "Id": 1432, "Command": "Set-PnPSite -DisableFlows:$false" }, { - "Rank": 5, "CommandName": "Set-PnPSite", + "Rank": 5, "Id": 1433, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" }, { - "Rank": 6, "CommandName": "Set-PnPSite", + "Rank": 6, "Id": 1434, "Command": "Set-PnPSite -NoScriptSite $false" }, { - "Rank": 7, "CommandName": "Set-PnPSite", + "Rank": 7, "Id": 1435, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" }, { - "Rank": 8, "CommandName": "Set-PnPSite", + "Rank": 8, "Id": 1436, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" }, { - "Rank": 9, "CommandName": "Set-PnPSite", + "Rank": 9, "Id": 1437, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" }, { - "Rank": 10, "CommandName": "Set-PnPSite", + "Rank": 10, "Id": 1438, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" }, { - "Rank": 11, "CommandName": "Set-PnPSite", + "Rank": 11, "Id": 1439, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" }, { - "Rank": 12, "CommandName": "Set-PnPSite", + "Rank": 12, "Id": 1440, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" }, { - "Rank": 13, "CommandName": "Set-PnPSite", + "Rank": 13, "Id": 1441, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" }, { - "Rank": 14, "CommandName": "Set-PnPSite", + "Rank": 14, "Id": 1442, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" }, { - "Rank": 15, "CommandName": "Set-PnPSite", + "Rank": 15, "Id": 1443, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" }, { - "Rank": 16, "CommandName": "Set-PnPSite", + "Rank": 16, "Id": 1444, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" }, { - "Rank": 17, "CommandName": "Set-PnPSite", + "Rank": 17, "Id": 1445, "Command": "Set-PnPSite -CancelVPForExistingLibs" }, { - "Rank": 1, "CommandName": "Set-PnPSiteClassification", + "Rank": 1, "Id": 1446, "Command": "Set-PnPSiteClassification -Identity \"LBI\"" }, { - "Rank": 1, "CommandName": "Set-PnPSiteClosure", + "Rank": 1, "Id": 1447, "Command": "Set-PnPSiteClosure -State Open" }, { - "Rank": 2, "CommandName": "Set-PnPSiteClosure", + "Rank": 2, "Id": 1448, "Command": "Set-PnPSiteClosure -State Closed" }, { - "Rank": 1, "CommandName": "Set-PnPSiteDesign", + "Rank": 1, "Id": 1449, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" }, { - "Rank": 2, "CommandName": "Set-PnPSiteDesign", + "Rank": 2, "Id": 1450, "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": 1, "CommandName": "Set-PnPSiteGroup", + "Rank": 1, "Id": 1451, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" }, { - "Rank": 2, "CommandName": "Set-PnPSiteGroup", + "Rank": 2, "Id": 1452, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" }, { - "Rank": 1, "CommandName": "Set-PnPSitePolicy", + "Rank": 1, "Id": 1453, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Rank": 1, "CommandName": "Set-PnPSiteScript", + "Rank": 1, "Id": 1454, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Rank": 1, "CommandName": "Set-PnPSiteScriptPackage", + "Rank": 1, "Id": 1455, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Rank": 1, "CommandName": "Set-PnPSiteSensitivityLabel", + "Rank": 1, "Id": 1456, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" }, { - "Rank": 2, "CommandName": "Set-PnPSiteSensitivityLabel", + "Rank": 2, "Id": 1457, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" }, { - "Rank": 1, "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 1, "Id": 1458, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" }, { - "Rank": 2, "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 2, "Id": 1459, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" }, { - "Rank": 3, "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 3, "Id": 1460, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Rank": 4, "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 4, "Id": 1461, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Rank": 5, "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 5, "Id": 1462, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Rank": 6, "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 6, "Id": 1463, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Rank": 1, "CommandName": "Set-PnPStorageEntity", + "Rank": 1, "Id": 1464, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Rank": 2, "CommandName": "Set-PnPStorageEntity", + "Rank": 2, "Id": 1465, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Rank": 1, "Id": 1466, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Rank": 2, "Id": 1467, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Rank": 1, "Id": 1468, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Rank": 2, "Id": 1469, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Rank": 1, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 1, "Id": 1470, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" }, { - "Rank": 2, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 2, "Id": 1471, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" }, { - "Rank": 1, "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 1, "Id": 1472, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" }, { - "Rank": 2, "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 2, "Id": 1473, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" }, { - "Rank": 3, "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 3, "Id": 1474, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" }, { - "Rank": 1, "CommandName": "Set-PnPTeamifyPromptHidden", + "Rank": 1, "Id": 1475, "Command": "Set-PnPTeamifyPromptHidden" }, { - "Rank": 1, "CommandName": "Set-PnPTeamsChannel", + "Rank": 1, "Id": 1476, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" }, { - "Rank": 2, "CommandName": "Set-PnPTeamsChannel", + "Rank": 2, "Id": 1477, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" }, { - "Rank": 1, "CommandName": "Set-PnpTeamsChannelUser", + "Rank": 1, "Id": 1478, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" }, { - "Rank": 2, "CommandName": "Set-PnpTeamsChannelUser", + "Rank": 2, "Id": 1479, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" }, { - "Rank": 1, "CommandName": "Set-PnPTeamsTab", + "Rank": 1, "Id": 1480, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" }, { - "Rank": 1, "CommandName": "Set-PnPTeamsTag", + "Rank": 1, "Id": 1481, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" }, { - "Rank": 1, "CommandName": "Set-PnPTeamsTeam", + "Rank": 1, "Id": 1482, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" }, { - "Rank": 2, "CommandName": "Set-PnPTeamsTeam", + "Rank": 2, "Id": 1483, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" }, { - "Rank": 3, "CommandName": "Set-PnPTeamsTeam", + "Rank": 3, "Id": 1484, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" }, { - "Rank": 4, "CommandName": "Set-PnPTeamsTeam", + "Rank": 4, "Id": 1485, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" }, { - "Rank": 1, "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 1, "Id": 1486, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" }, { - "Rank": 2, "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 2, "Id": 1487, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" }, { - "Rank": 3, "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 3, "Id": 1488, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" }, { - "Rank": 1, "CommandName": "Set-PnPTeamsTeamPicture", + "Rank": 1, "Id": 1489, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" }, { - "Rank": 1, "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Rank": 1, "Id": 1490, "Command": "Set-PnPTemporarilyDisableAppBar $true" }, { - "Rank": 2, "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Rank": 2, "Id": 1491, "Command": "Set-PnPTemporarilyDisableAppBar $false" }, { - "Rank": 1, "CommandName": "Set-PnPTenant", + "Rank": 1, "Id": 1492, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" }, { - "Rank": 2, "CommandName": "Set-PnPTenant", + "Rank": 2, "Id": 1493, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" }, { - "Rank": 3, "CommandName": "Set-PnPTenant", + "Rank": 3, "Id": 1494, "Command": "Set-PnPTenant -ShowAllUsersClaim $false" }, { - "Rank": 4, "CommandName": "Set-PnPTenant", + "Rank": 4, "Id": 1495, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" }, { - "Rank": 1, "CommandName": "Set-PnPTenantAppCatalogUrl", + "Rank": 1, "Id": 1496, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" }, { - "Rank": 1, "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 1, "Id": 1497, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" }, { - "Rank": 2, "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 2, "Id": 1498, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" }, { - "Rank": 3, "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 3, "Id": 1499, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" }, { - "Rank": 1, "CommandName": "Set-PnPTenantCdnPolicy", + "Rank": 1, "Id": 1500, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" }, { - "Rank": 2, "CommandName": "Set-PnPTenantCdnPolicy", + "Rank": 2, "Id": 1501, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" }, { - "Rank": 1, "CommandName": "Set-PnPTenantSite", + "Rank": 1, "Id": 1502, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" }, { - "Rank": 2, "CommandName": "Set-PnPTenantSite", + "Rank": 2, "Id": 1503, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" }, { - "Rank": 3, "CommandName": "Set-PnPTenantSite", + "Rank": 3, "Id": 1504, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Rank": 4, "CommandName": "Set-PnPTenantSite", + "Rank": 4, "Id": 1505, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Rank": 5, "CommandName": "Set-PnPTenantSite", + "Rank": 5, "Id": 1506, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" }, { - "Rank": 1, "CommandName": "Set-PnPTenantSyncClientRestriction", + "Rank": 1, "Id": 1507, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" }, { - "Rank": 2, "CommandName": "Set-PnPTenantSyncClientRestriction", + "Rank": 2, "Id": 1508, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" }, { - "Rank": 1, "CommandName": "Set-PnPTerm", + "Rank": 1, "Id": 1509, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" }, { - "Rank": 2, "CommandName": "Set-PnPTerm", + "Rank": 2, "Id": 1510, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Rank": 3, "CommandName": "Set-PnPTerm", + "Rank": 3, "Id": 1511, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Rank": 4, "CommandName": "Set-PnPTerm", + "Rank": 4, "Id": 1512, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" }, { - "Rank": 1, "CommandName": "Set-PnPTermGroup", + "Rank": 1, "Id": 1513, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" }, { - "Rank": 1, "CommandName": "Set-PnPTermSet", + "Rank": 1, "Id": 1514, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" }, { - "Rank": 2, "CommandName": "Set-PnPTermSet", + "Rank": 2, "Id": 1515, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" }, { - "Rank": 3, "CommandName": "Set-PnPTermSet", + "Rank": 3, "Id": 1516, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" }, { - "Rank": 1, "CommandName": "Set-PnPTheme", + "Rank": 1, "Id": 1517, "Command": "Set-PnPTheme" }, { - "Rank": 2, "CommandName": "Set-PnPTheme", + "Rank": 2, "Id": 1518, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" }, { - "Rank": 3, "CommandName": "Set-PnPTheme", + "Rank": 3, "Id": 1519, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" }, { - "Rank": 4, "CommandName": "Set-PnPTheme", + "Rank": 4, "Id": 1520, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" }, { - "Rank": 1, "CommandName": "Set-PnPTraceLog", + "Rank": 1, "Id": 1521, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" }, { - "Rank": 2, "CommandName": "Set-PnPTraceLog", + "Rank": 2, "Id": 1522, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" }, { - "Rank": 3, "CommandName": "Set-PnPTraceLog", + "Rank": 3, "Id": 1523, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" }, { - "Rank": 4, "CommandName": "Set-PnPTraceLog", + "Rank": 4, "Id": 1524, "Command": "Set-PnPTraceLog -Off" }, { - "Rank": 1, "CommandName": "Set-PnPUserOneDriveQuota", + "Rank": 1, "Id": 1525, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" }, { - "Rank": 1, "CommandName": "Set-PnPUserProfileProperty", + "Rank": 1, "Id": 1526, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" }, { - "Rank": 2, "CommandName": "Set-PnPUserProfileProperty", + "Rank": 2, "Id": 1527, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" }, { - "Rank": 1, "CommandName": "Set-PnPView", + "Rank": 1, "Id": 1528, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" }, { - "Rank": 2, "CommandName": "Set-PnPView", + "Rank": 2, "Id": 1529, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" }, { - "Rank": 3, "CommandName": "Set-PnPView", + "Rank": 3, "Id": 1530, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" }, { - "Rank": 4, "CommandName": "Set-PnPView", + "Rank": 4, "Id": 1531, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" }, { - "Rank": 1, "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 1, "Id": 1532, "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": 2, "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 2, "Id": 1533, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" }, { - "Rank": 3, "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 3, "Id": 1534, "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": 4, "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 4, "Id": 1535, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" }, { - "Rank": 1, "CommandName": "Set-PnPWeb", + "Rank": 1, "Id": 1536, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" }, { - "Rank": 2, "CommandName": "Set-PnPWeb", + "Rank": 2, "Id": 1537, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" }, { - "Rank": 3, "CommandName": "Set-PnPWeb", + "Rank": 3, "Id": 1538, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" }, { - "Rank": 4, "CommandName": "Set-PnPWeb", + "Rank": 4, "Id": 1539, "Command": "Set-PnPWeb -NoCrawl:$true" }, { - "Rank": 1, "CommandName": "Set-PnPWebHeader", + "Rank": 1, "Id": 1540, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" }, { - "Rank": 2, "CommandName": "Set-PnPWebHeader", + "Rank": 2, "Id": 1541, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" }, { - "Rank": 3, "CommandName": "Set-PnPWebHeader", + "Rank": 3, "Id": 1542, "Command": "Set-PnPWebHeader -LogoAlignment Middle" }, { - "Rank": 1, "CommandName": "Set-PnPWebhookSubscription", + "Rank": 1, "Id": 1543, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Rank": 2, "CommandName": "Set-PnPWebhookSubscription", + "Rank": 2, "Id": 1544, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Rank": 1, "CommandName": "Set-PnPWebPartProperty", + "Rank": 1, "Id": 1545, "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" }, { - "Rank": 1, "CommandName": "Set-PnPWebPermission", + "Rank": 1, "Id": 1546, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Rank": 2, "CommandName": "Set-PnPWebPermission", + "Rank": 2, "Id": 1547, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" }, { - "Rank": 3, "CommandName": "Set-PnPWebPermission", + "Rank": 3, "Id": 1548, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Rank": 4, "CommandName": "Set-PnPWebPermission", + "Rank": 4, "Id": 1549, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" }, { - "Rank": 1, "CommandName": "Set-PnPWebTheme", + "Rank": 1, "Id": 1550, "Command": "Set-PnPWebTheme -Theme MyTheme" }, { - "Rank": 2, "CommandName": "Set-PnPWebTheme", + "Rank": 2, "Id": 1551, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" }, { - "Rank": 1, "CommandName": "Set-PnPWikiPageContent", + "Rank": 1, "Id": 1552, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" }, { - "Rank": 1, "CommandName": "Submit-PnPSearchQuery", + "Rank": 1, "Id": 1553, "Command": "Submit-PnPSearchQuery -Query \"finance\"" }, { - "Rank": 2, "CommandName": "Submit-PnPSearchQuery", + "Rank": 2, "Id": 1554, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" }, { - "Rank": 3, "CommandName": "Submit-PnPSearchQuery", + "Rank": 3, "Id": 1555, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" }, { - "Rank": 4, "CommandName": "Submit-PnPSearchQuery", + "Rank": 4, "Id": 1556, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" }, { - "Rank": 5, "CommandName": "Submit-PnPSearchQuery", + "Rank": 5, "Id": 1557, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" }, { - "Rank": 1, "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 1, "Id": 1558, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" }, { - "Rank": 2, "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 2, "Id": 1559, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" }, { - "Rank": 1, "CommandName": "Sync-PnPAppToTeams", + "Rank": 1, "Id": 1560, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 1, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 1, "Id": 1561, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" }, { - "Rank": 2, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 2, "Id": 1562, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" }, { - "Rank": 3, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 3, "Id": 1563, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" }, { - "Rank": 1, "CommandName": "Test-PnPListItemIsRecord", + "Rank": 1, "Id": 1564, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" }, { - "Rank": 1, "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Rank": 1, "Id": 1565, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" }, { - "Rank": 1, "CommandName": "Test-PnPSite", + "Rank": 1, "Id": 1566, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Rank": 2, "CommandName": "Test-PnPSite", + "Rank": 2, "Id": 1567, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Rank": 1, "CommandName": "Test-PnPTenantTemplate", + "Rank": 1, "Id": 1568, "Command": "Test-PnPTenantTemplate -Template $myTemplate" }, { - "Rank": 1, "CommandName": "Undo-PnPFileCheckedOut", + "Rank": 1, "Id": 1569, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" }, { - "Rank": 1, "CommandName": "Uninstall-PnPApp", + "Rank": 1, "Id": 1570, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, "CommandName": "Uninstall-PnPApp", + "Rank": 2, "Id": 1571, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Rank": 1, "CommandName": "Unpublish-PnPApp", + "Rank": 1, "Id": 1572, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, "CommandName": "Unpublish-PnPApp", + "Rank": 2, "Id": 1573, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Rank": 1, "CommandName": "Unpublish-PnPContentType", + "Rank": 1, "Id": 1574, "Command": "Unpublish-PnPContentType -ContentType 0x0101" }, { - "Rank": 1, "CommandName": "Unpublish-PnPSyntexModel", + "Rank": 1, "Id": 1575, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Rank": 2, "CommandName": "Unpublish-PnPSyntexModel", + "Rank": 2, "Id": 1576, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Rank": 1, "CommandName": "Unregister-PnPHubSite", + "Rank": 1, "Id": 1577, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Rank": 1, "CommandName": "Update-PnPApp", + "Rank": 1, "Id": 1578, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, "CommandName": "Update-PnPApp", + "Rank": 2, "Id": 1579, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Rank": 1, "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 1, "Id": 1580, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Rank": 2, "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 2, "Id": 1581, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" }, { - "Rank": 3, "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 3, "Id": 1582, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Rank": 1, "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 1, "Id": 1583, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" }, { - "Rank": 2, "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 2, "Id": 1584, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "Rank": 3, "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 3, "Id": 1585, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" }, { - "Rank": 1, "CommandName": "Update-PnPTeamsApp", + "Rank": 1, "Id": 1586, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" }, { - "Rank": 1, "CommandName": "Update-PnPTeamsUser", + "Rank": 1, "Id": 1587, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Rank": 2, "CommandName": "Update-PnPTeamsUser", + "Rank": 2, "Id": 1588, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Rank": 3, "CommandName": "Update-PnPTeamsUser", + "Rank": 3, "Id": 1589, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" }, { - "Rank": 1, "CommandName": "Update-PnPUserType", + "Rank": 1, "Id": 1590, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" } diff --git a/version.txt b/version.txt index e46147188..6f4d0a414 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.91 \ No newline at end of file +2.2.92 \ No newline at end of file From cdc143f10aa7e3e16d5e72e17d403081d23cc770 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 8 Oct 2023 11:10:44 +0200 Subject: [PATCH 065/146] Adding PR reference --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71a4a92e1..7d61c71d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,7 +33,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added option to pass in a Stream or XML string to `Read-PnPTenantTemplate` allowing the tenant template to be modified before being applied. [#3431](https://github.com/pnp/powershell/pull/3431) - Added `Get-PnPTenantInfo` which allows retrieving tenant information by its Id or domain name. [#3414](https://github.com/pnp/powershell/pull/3414) - Added option to create a Microsoft 365 Group with dynamic membership by passing in `-DynamicMembershipRule` [#3426](https://github.com/pnp/powershell/pull/3426) -- Added `RestrictedAccessControl`, `ClearRestrictedAccessControl`, `RemoveRestrictedAccessControlGroups`, `AddRestrictedAccessControlGroups` and `RestrictedAccessControlGroups` parameters to `Set-PnPTenantSite` cmdlet to handle restricted access control. +- Added `RestrictedAccessControl`, `ClearRestrictedAccessControl`, `RemoveRestrictedAccessControlGroups`, `AddRestrictedAccessControlGroups` and `RestrictedAccessControlGroups` parameters to `Set-PnPTenantSite` cmdlet to handle restricted access control. [#3463](https://github.com/pnp/powershell/pull/3463) ### Fixed From c644dd03fe3e0b47971d0e2e52e941ed4753758b Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 8 Oct 2023 11:13:26 +0200 Subject: [PATCH 066/146] Added PR reference --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 879504421..480cfeeb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,7 +55,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed `New-PnPTeamsTeam` cmdlet not working well with a managed identity [#3351](https://github.com/pnp/powershell/pull/3351) - Fixed `Copy-PnPFile`, `Copy-PnPFolder` and `Move-PnPFile` to better handle copying or moving operations to OneDrive or Multi-geo environments. [#3245](https://github.com/pnp/powershell/pull/3245) - Fixed `Get-PnPTenantTemplate` not doing anything when the `-SiteUrl` parameter had not been specified. It will now use the currently connected site when the parameter is omitted. [#3431](https://github.com/pnp/powershell/pull/3431) -- Fixed `Enable-PnPPageScheduling` and `Disable-PnPPageScheduling` cmdlets not working due to changes in backend code. +- Fixed `Enable-PnPPageScheduling` and `Disable-PnPPageScheduling` cmdlets not working due to changes in backend code. [#3469](https://github.com/pnp/powershell/pull/3469) ### Changed From 17145848f86935f67c0c8338ebc1d060eb9a2dbd Mon Sep 17 00:00:00 2001 From: Jenny Wu Date: Sun, 8 Oct 2023 11:39:34 -0700 Subject: [PATCH 067/146] Resolve comment --- .../Model/SharePoint/SiteVersionPolicy.cs | 42 +++++++++++++++++++ src/Commands/Site/GetSite.cs | 12 +----- 2 files changed, 44 insertions(+), 10 deletions(-) create mode 100644 src/Commands/Model/SharePoint/SiteVersionPolicy.cs diff --git a/src/Commands/Model/SharePoint/SiteVersionPolicy.cs b/src/Commands/Model/SharePoint/SiteVersionPolicy.cs new file mode 100644 index 000000000..c8b28259c --- /dev/null +++ b/src/Commands/Model/SharePoint/SiteVersionPolicy.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace PnP.PowerShell.Commands.Model.SharePoint +{ + ///

+ /// The VersionPolicy setting on site + /// The new document libraries use the setting on site if it is set + /// Otherwise, it uses the setting on tenant + /// + public class SiteVersionPolicy + { + /// + /// Site Url + /// + public string Url { get; set; } + + /// + /// Site DefaultTrimMode + /// e.g. AutoExpiration, ExpireAfter, NoExpiration + /// + public string DefaultTrimMode { get; set; } + + /// + /// Site DefaultExpireAfterDays + /// + public string DefaultExpireAfterDays { get; set; } + + /// + /// Site MajorVersionLimit + /// + public string MajorVersionLimit { get; set; } + + /// + /// Results description + /// + public string Description { get; set; } + } +} diff --git a/src/Commands/Site/GetSite.cs b/src/Commands/Site/GetSite.cs index d8ef737be..813729077 100644 --- a/src/Commands/Site/GetSite.cs +++ b/src/Commands/Site/GetSite.cs @@ -3,6 +3,7 @@ using System; using System.Linq.Expressions; using System.Management.Automation; +using PnP.PowerShell.Commands.Model.SharePoint; namespace PnP.PowerShell.Commands.Site { @@ -22,7 +23,7 @@ protected override void ExecuteCmdlet() { site.EnsureProperties(s => s.Url, s => s.VersionPolicyForNewLibrariesTemplate, s => s.VersionPolicyForNewLibrariesTemplate.VersionPolicies); - var vp = new VersionPolicy(); + var vp = new SiteVersionPolicy(); vp.Url = site.Url; if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.ServerObjectIsNull == true) @@ -64,13 +65,4 @@ protected override void ExecuteCmdlet() } } } - - public class VersionPolicy - { - public string Url { get; set; } - public string DefaultTrimMode { get; set; } - public string DefaultExpireAfterDays { get; set; } - public string MajorVersionLimit { get; set; } - public string Description { get; set; } - } } From 5b257c6b6f2a8ef7303609f857f90773c116bb47 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Mon, 9 Oct 2023 02:37:52 +0000 Subject: [PATCH 068/146] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9540 ++++++++--------- version.txt | 2 +- 3 files changed, 4772 insertions(+), 4772 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 50e3b1628..c36b08f13 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -1d4c358056b3c9dc6d3d5358781ea144a325869d \ No newline at end of file +cd7ce1f38a9c1895ab9eea12f69de27ac8456ddb \ 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 39b1c7b8f..d48ef015f 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9542 +1,9542 @@ [ { - "CommandName": "Add-PnPAlert", + "Command": "Add-PnPAlert -List \"Demo List\"", "Rank": 1, - "Id": 1, - "Command": "Add-PnPAlert -List \"Demo List\"" + "CommandName": "Add-PnPAlert", + "Id": 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)", "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)" + "CommandName": "Add-PnPAlert", + "Id": 2 }, { - "CommandName": "Add-PnPAlert", + "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 3, - "Id": 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", + "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, - "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))" + "CommandName": "Add-PnPAlert", + "Id": 4 }, { - "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg", "Rank": 1, - "Id": 5, - "Command": "Add-PnPApp -Path ./myapp.sppkg" + "CommandName": "Add-PnPApp", + "Id": 5 }, { - "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Rank": 2, - "Id": 6, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" + "CommandName": "Add-PnPApp", + "Id": 6 }, { - "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Rank": 3, - "Id": 7, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" + "CommandName": "Add-PnPApp", + "Id": 7 }, { - "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Rank": 4, - "Id": 8, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" + "CommandName": "Add-PnPApp", + "Id": 8 }, { - "CommandName": "Add-PnPApplicationCustomizer", + "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", "Rank": 1, - "Id": 9, - "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", + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Rank": 1, - "Id": 10, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" + "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 10 }, { - "CommandName": "Add-PnPAvailableSiteClassification", + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Rank": 2, - "Id": 11, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" + "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 11 }, { - "CommandName": "Add-PnPAzureADGroupMember", + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 12, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 12 }, { - "CommandName": "Add-PnPAzureADGroupMember", + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "Id": 13, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 13 }, { - "CommandName": "Add-PnPAzureADGroupMember", + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "Id": 14, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 14 }, { - "CommandName": "Add-PnPAzureADGroupOwner", + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 15, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 15 }, { - "CommandName": "Add-PnPAzureADGroupOwner", + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "Id": 16, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 16 }, { - "CommandName": "Add-PnPAzureADGroupOwner", + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "Id": 17, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 17 }, { - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "Rank": 1, - "Id": 18, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph" + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Id": 18 }, { - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "Rank": 2, - "Id": 19, - "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", + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "Rank": 1, - "Id": 20, - "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", + "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, - "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\"" + "CommandName": "Add-PnPContentType", + "Id": 21 }, { - "CommandName": "Add-PnPContentType", + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "Rank": 3, - "Id": 22, - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" + "CommandName": "Add-PnPContentType", + "Id": 22 }, { - "CommandName": "Add-PnPContentType", + "Command": "Add-PnPContentType -Name \"Project Item\"", "Rank": 4, - "Id": 23, - "Command": "Add-PnPContentType -Name \"Project Item\"" + "CommandName": "Add-PnPContentType", + "Id": 23 }, { - "CommandName": "Add-PnPContentType", + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "Rank": 5, - "Id": 24, - "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", + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Rank": 1, - "Id": 25, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 25 }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Rank": 2, - "Id": 26, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 26 }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "Id": 27, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 27 }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "Id": 28, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 28 }, { - "CommandName": "Add-PnPContentTypeToList", + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Rank": 1, - "Id": 29, - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" + "CommandName": "Add-PnPContentTypeToList", + "Id": 29 }, { - "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`\"}\"", "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`\"}\"" + "CommandName": "Add-PnPCustomAction", + "Id": 30 }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "Rank": 1, - "Id": 31, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 31 }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "Rank": 2, - "Id": 32, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 32 }, { - "CommandName": "Add-PnPDocumentSet", + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Rank": 1, - "Id": 33, - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" + "CommandName": "Add-PnPDocumentSet", + "Id": 33 }, { - "CommandName": "Add-PnPEventReceiver", + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "Rank": 1, - "Id": 34, - "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", + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "Rank": 2, - "Id": 35, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous" + "CommandName": "Add-PnPEventReceiver", + "Id": 35 }, { - "CommandName": "Add-PnPEventReceiver", + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", "Rank": 3, - "Id": 36, - "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", + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "Rank": 4, - "Id": 37, - "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", + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Rank": 1, - "Id": 38, - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" + "CommandName": "Add-PnPField", + "Id": 38 }, { - "CommandName": "Add-PnPField", + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", "Rank": 2, - "Id": 39, - "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", + "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, - "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\"" + "CommandName": "Add-PnPField", + "Id": 40 }, { - "CommandName": "Add-PnPField", + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "Rank": 4, - "Id": 41, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" + "CommandName": "Add-PnPField", + "Id": 41 }, { - "CommandName": "Add-PnPField", + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "Rank": 5, - "Id": 42, - "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", + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Rank": 6, - "Id": 43, - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" + "CommandName": "Add-PnPField", + "Id": 43 }, { - "CommandName": "Add-PnPFieldToContentType", + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "Id": 44, - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "CommandName": "Add-PnPFieldToContentType", + "Id": 44 }, { - "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Rank": 1, - "Id": 45, - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" + "CommandName": "Add-PnPFile", + "Id": 45 }, { - "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Rank": 2, - "Id": 46, - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" + "CommandName": "Add-PnPFile", + "Id": 46 }, { - "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "Rank": 3, - "Id": 47, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" + "CommandName": "Add-PnPFile", + "Id": 47 }, { - "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "Rank": 4, - "Id": 48, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" + "CommandName": "Add-PnPFile", + "Id": 48 }, { - "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "Rank": 5, - "Id": 49, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" + "CommandName": "Add-PnPFile", + "Id": 49 }, { - "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "Rank": 6, - "Id": 50, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" + "CommandName": "Add-PnPFile", + "Id": 50 }, { - "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Rank": 7, - "Id": 51, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" + "CommandName": "Add-PnPFile", + "Id": 51 }, { - "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Rank": 8, - "Id": 52, - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" + "CommandName": "Add-PnPFile", + "Id": 52 }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "Id": 53, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 53 }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "Id": 54, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 54 }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3, - "Id": 55, - "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", + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "Id": 56, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 56 }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "Rank": 2, - "Id": 57, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 57 }, { - "CommandName": "Add-PnPFileSharingInvite", + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "Id": 58, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" + "CommandName": "Add-PnPFileSharingInvite", + "Id": 58 }, { - "CommandName": "Add-PnPFileSharingInvite", + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Rank": 2, - "Id": 59, - "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", + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "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)" + "CommandName": "Add-PnPFileSharingInvite", + "Id": 60 }, { - "CommandName": "Add-PnPFileToSiteTemplate", + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Rank": 1, - "Id": 61, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 61 }, { - "CommandName": "Add-PnPFileToSiteTemplate", + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "Rank": 2, - "Id": 62, - "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", + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "Rank": 3, - "Id": 63, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 63 }, { - "CommandName": "Add-PnPFileToSiteTemplate", + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "Rank": 4, - "Id": 64, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 64 }, { - "CommandName": "Add-PnPFileToSiteTemplate", + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Rank": 5, - "Id": 65, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 65 }, { - "CommandName": "Add-PnPFileUserSharingLink", + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 66, - "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", + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "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\"" + "CommandName": "Add-PnPFileUserSharingLink", + "Id": 67 }, { - "CommandName": "Add-PnPFlowOwner", + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit", "Rank": 1, - "Id": 68, - "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", + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView", "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" + "CommandName": "Add-PnPFlowOwner", + "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 CanViewWithShare", "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" + "CommandName": "Add-PnPFlowOwner", + "Id": 70 }, { - "CommandName": "Add-PnPFlowOwner", + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", "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" + "CommandName": "Add-PnPFlowOwner", + "Id": 71 }, { - "CommandName": "Add-PnPFolder", + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "Id": 72, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "CommandName": "Add-PnPFolder", + "Id": 72 }, { - "CommandName": "Add-PnPFolder", + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Rank": 2, - "Id": 73, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" + "CommandName": "Add-PnPFolder", + "Id": 73 }, { - "CommandName": "Add-PnPFolder", + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Rank": 3, - "Id": 74, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" + "CommandName": "Add-PnPFolder", + "Id": 74 }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "Id": 75, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 75 }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "Id": 76, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 76 }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3, - "Id": 77, - "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", + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "Id": 78, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 78 }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Rank": 2, - "Id": 79, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 79 }, { - "CommandName": "Add-PnPFolderSharingInvite", + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "Id": 80, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" + "CommandName": "Add-PnPFolderSharingInvite", + "Id": 80 }, { - "CommandName": "Add-PnPFolderSharingInvite", + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Rank": 2, - "Id": 81, - "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", + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "Rank": 3, - "Id": 82, - "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", + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 83, - "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", + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 2, - "Id": 84, - "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", + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "Id": 85, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "CommandName": "Add-PnPGroupMember", + "Id": 85 }, { - "CommandName": "Add-PnPGroupMember", + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Rank": 2, - "Id": 86, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" + "CommandName": "Add-PnPGroupMember", + "Id": 86 }, { - "CommandName": "Add-PnPHtmlPublishingPageLayout", + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Rank": 1, - "Id": 87, - "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", + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Rank": 1, - "Id": 88, - "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", + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "Rank": 1, - "Id": 89, - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 89 }, { - "CommandName": "Add-PnPHubToHubAssociation", + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "Rank": 2, - "Id": 90, - "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", + "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, - "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\"" + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 91 }, { - "CommandName": "Add-PnPJavaScriptBlock", + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "Rank": 1, - "Id": 92, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 92 }, { - "CommandName": "Add-PnPJavaScriptBlock", + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "Rank": 2, - "Id": 93, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 93 }, { - "CommandName": "Add-PnPJavaScriptLink", + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "Rank": 1, - "Id": 94, - "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", + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Rank": 2, - "Id": 95, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" + "CommandName": "Add-PnPJavaScriptLink", + "Id": 95 }, { - "CommandName": "Add-PnPListDesign", + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "Rank": 1, - "Id": 96, - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" + "CommandName": "Add-PnPListDesign", + "Id": 96 }, { - "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\"", "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\"" + "CommandName": "Add-PnPListDesign", + "Id": 97 }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Rank": 1, - "Id": 98, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 98 }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "Rank": 2, - "Id": 99, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 99 }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Rank": 3, - "Id": 100, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 100 }, { - "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "Id": 101, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "CommandName": "Add-PnPListItem", + "Id": 101 }, { - "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "Id": 102, - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "CommandName": "Add-PnPListItem", + "Id": 102 }, { - "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "Rank": 3, - "Id": 103, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" + "CommandName": "Add-PnPListItem", + "Id": 103 }, { - "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "Rank": 4, - "Id": 104, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" + "CommandName": "Add-PnPListItem", + "Id": 104 }, { - "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Rank": 5, - "Id": 105, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" + "CommandName": "Add-PnPListItem", + "Id": 105 }, { - "CommandName": "Add-PnPListItemAttachment", + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "Rank": 1, - "Id": 106, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" + "CommandName": "Add-PnPListItemAttachment", + "Id": 106 }, { - "CommandName": "Add-PnPListItemAttachment", + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "Rank": 2, - "Id": 107, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" + "CommandName": "Add-PnPListItemAttachment", + "Id": 107 }, { - "CommandName": "Add-PnPListItemAttachment", + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Rank": 3, - "Id": 108, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" + "CommandName": "Add-PnPListItemAttachment", + "Id": 108 }, { - "CommandName": "Add-PnPListItemComment", + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Rank": 1, - "Id": 109, - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" + "CommandName": "Add-PnPListItemComment", + "Id": 109 }, { - "CommandName": "Add-PnPMasterPage", + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Rank": 1, - "Id": 110, - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" + "CommandName": "Add-PnPMasterPage", + "Id": 110 }, { - "CommandName": "Add-PnPMicrosoft365GroupMember", + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 111, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 111 }, { - "CommandName": "Add-PnPMicrosoft365GroupMember", + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "Id": 112, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 112 }, { - "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 113, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 113 }, { - "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "Id": 114, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 114 }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "Rank": 1, - "Id": 115, - "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", + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Rank": 2, - "Id": 116, - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 116 }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Rank": 3, - "Id": 117, - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 117 }, { - "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "Rank": 1, - "Id": 118, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" + "CommandName": "Add-PnPNavigationNode", + "Id": 118 }, { - "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "Rank": 2, - "Id": 119, - "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", + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "Rank": 3, - "Id": 120, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" + "CommandName": "Add-PnPNavigationNode", + "Id": 120 }, { - "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "Rank": 4, - "Id": 121, - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" + "CommandName": "Add-PnPNavigationNode", + "Id": 121 }, { - "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Rank": 5, - "Id": 122, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" + "CommandName": "Add-PnPNavigationNode", + "Id": 122 }, { - "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Rank": 6, - "Id": 123, - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" + "CommandName": "Add-PnPNavigationNode", + "Id": 123 }, { - "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Rank": 7, - "Id": 124, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" + "CommandName": "Add-PnPNavigationNode", + "Id": 124 }, { - "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Rank": 8, - "Id": 125, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" + "CommandName": "Add-PnPNavigationNode", + "Id": 125 }, { - "CommandName": "Add-PnPOrgAssetsLibrary", + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "Rank": 1, - "Id": 126, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 126 }, { - "CommandName": "Add-PnPOrgAssetsLibrary", + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"", "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\"" + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 127 }, { - "CommandName": "Add-PnPOrgAssetsLibrary", + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Rank": 3, - "Id": 128, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 128 }, { - "CommandName": "Add-PnPOrgNewsSite", + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Rank": 1, - "Id": 129, - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" + "CommandName": "Add-PnPOrgNewsSite", + "Id": 129 }, { - "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\"", "Rank": 1, - "Id": 130, - "Command": "Add-PnPPage -Name \"NewPage\"" + "CommandName": "Add-PnPPage", + "Id": 130 }, { - "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Rank": 2, - "Id": 131, - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" + "CommandName": "Add-PnPPage", + "Id": 131 }, { - "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Rank": 3, - "Id": 132, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" + "CommandName": "Add-PnPPage", + "Id": 132 }, { - "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Rank": 4, - "Id": 133, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" + "CommandName": "Add-PnPPage", + "Id": 133 }, { - "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Rank": 5, - "Id": 134, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"" + "CommandName": "Add-PnPPage", + "Id": 134 }, { - "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Rank": 6, - "Id": 135, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" + "CommandName": "Add-PnPPage", + "Id": 135 }, { - "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "Id": 136, - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" + "CommandName": "Add-PnPPage", + "Id": 136 }, { - "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Rank": 8, - "Id": 137, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate" + "CommandName": "Add-PnPPage", + "Id": 137 }, { - "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "Id": 138, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" + "CommandName": "Add-PnPPage", + "Id": 138 }, { - "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "Id": 139, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" + "CommandName": "Add-PnPPage", + "Id": 139 }, { - "CommandName": "Add-PnPPageImageWebPart", + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "Rank": 1, - "Id": 140, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" + "CommandName": "Add-PnPPageImageWebPart", + "Id": 140 }, { - "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\"", "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\"" + "CommandName": "Add-PnPPageImageWebPart", + "Id": 141 }, { - "CommandName": "Add-PnPPageSection", + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Rank": 1, - "Id": 142, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" + "CommandName": "Add-PnPPageSection", + "Id": 142 }, { - "CommandName": "Add-PnPPageSection", + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Rank": 2, - "Id": 143, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" + "CommandName": "Add-PnPPageSection", + "Id": 143 }, { - "CommandName": "Add-PnPPageTextPart", + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Rank": 1, - "Id": 144, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" + "CommandName": "Add-PnPPageTextPart", + "Id": 144 }, { - "CommandName": "Add-PnPPageTextPart", + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "Rank": 2, - "Id": 145, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" + "CommandName": "Add-PnPPageTextPart", + "Id": 145 }, { - "CommandName": "Add-PnPPageTextPart", + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", "Rank": 3, - "Id": 146, - "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", + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Rank": 1, - "Id": 147, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" + "CommandName": "Add-PnPPageWebPart", + "Id": 147 }, { - "CommandName": "Add-PnPPageWebPart", + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Rank": 2, - "Id": 148, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" + "CommandName": "Add-PnPPageWebPart", + "Id": 148 }, { - "CommandName": "Add-PnPPageWebPart", + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Rank": 3, - "Id": 149, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" + "CommandName": "Add-PnPPageWebPart", + "Id": 149 }, { - "CommandName": "Add-PnPPlannerBucket", + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Rank": 1, - "Id": 150, - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" + "CommandName": "Add-PnPPlannerBucket", + "Id": 150 }, { - "CommandName": "Add-PnPPlannerBucket", + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Rank": 2, - "Id": 151, - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" + "CommandName": "Add-PnPPlannerBucket", + "Id": 151 }, { - "CommandName": "Add-PnPPlannerRoster", + "Command": "Add-PnPPlannerRoster", "Rank": 1, - "Id": 152, - "Command": "Add-PnPPlannerRoster" + "CommandName": "Add-PnPPlannerRoster", + "Id": 152 }, { - "CommandName": "Add-PnPPlannerRosterMember", + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 153, - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "CommandName": "Add-PnPPlannerRosterMember", + "Id": 153 }, { - "CommandName": "Add-PnPPlannerTask", + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 1, - "Id": 154, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" + "CommandName": "Add-PnPPlannerTask", + "Id": 154 }, { - "CommandName": "Add-PnPPlannerTask", + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 2, - "Id": 155, - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" + "CommandName": "Add-PnPPlannerTask", + "Id": 155 }, { - "CommandName": "Add-PnPPlannerTask", + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "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\"" + "CommandName": "Add-PnPPlannerTask", + "Id": 156 }, { - "CommandName": "Add-PnPPublishingImageRendition", + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "Id": 157, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "CommandName": "Add-PnPPublishingImageRendition", + "Id": 157 }, { - "CommandName": "Add-PnPPublishingPage", + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "Rank": 1, - "Id": 158, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" + "CommandName": "Add-PnPPublishingPage", + "Id": 158 }, { - "CommandName": "Add-PnPPublishingPage", + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Rank": 2, - "Id": 159, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" + "CommandName": "Add-PnPPublishingPage", + "Id": 159 }, { - "CommandName": "Add-PnPPublishingPageLayout", + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Rank": 1, - "Id": 160, - "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", + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Rank": 1, - "Id": 161, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" + "CommandName": "Add-PnPRoleDefinition", + "Id": 161 }, { - "CommandName": "Add-PnPRoleDefinition", + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Rank": 2, - "Id": 162, - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" + "CommandName": "Add-PnPRoleDefinition", + "Id": 162 }, { - "CommandName": "Add-PnPRoleDefinition", + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Rank": 3, - "Id": 163, - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" + "CommandName": "Add-PnPRoleDefinition", + "Id": 163 }, { - "CommandName": "Add-PnPSiteCollectionAdmin", + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 164, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 164 }, { - "CommandName": "Add-PnPSiteCollectionAdmin", + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "Id": 165, - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 165 }, { - "CommandName": "Add-PnPSiteCollectionAdmin", + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "Id": 166, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 166 }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Command": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, - "Id": 167, - "Command": "Add-PnPSiteCollectionAppCatalog" + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 167 }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 2, - "Id": 168, - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 168 }, { - "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", "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" + "CommandName": "Add-PnPSiteDesign", + "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 -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png", "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" + "CommandName": "Add-PnPSiteDesign", + "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/my images/logo.png\"", "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\"" + "CommandName": "Add-PnPSiteDesign", + "Id": 171 }, { - "CommandName": "Add-PnPSiteDesignFromWeb", + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "Rank": 1, - "Id": 172, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" + "CommandName": "Add-PnPSiteDesignFromWeb", + "Id": 172 }, { - "CommandName": "Add-PnPSiteDesignFromWeb", + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2, - "Id": 173, - "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", + "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, - "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" + "CommandName": "Add-PnPSiteDesignFromWeb", + "Id": 174 }, { - "CommandName": "Add-PnPSiteDesignTask", + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "Id": 175, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" + "CommandName": "Add-PnPSiteDesignTask", + "Id": 175 }, { - "CommandName": "Add-PnPSiteDesignTask", + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 2, - "Id": 176, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "CommandName": "Add-PnPSiteDesignTask", + "Id": 176 }, { - "CommandName": "Add-PnPSiteScript", + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Rank": 1, - "Id": 177, - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" + "CommandName": "Add-PnPSiteScript", + "Id": 177 }, { - "CommandName": "Add-PnPSiteScriptPackage", + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Rank": 1, - "Id": 178, - "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", + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Rank": 1, - "Id": 179, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" + "CommandName": "Add-PnPSiteTemplate", + "Id": 179 }, { - "CommandName": "Add-PnPStoredCredential", + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "Rank": 1, - "Id": 180, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" + "CommandName": "Add-PnPStoredCredential", + "Id": 180 }, { - "CommandName": "Add-PnPStoredCredential", + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Rank": 2, - "Id": 181, - "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", + "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, - "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\"" + "CommandName": "Add-PnPStoredCredential", + "Id": 182 }, { - "CommandName": "Add-PnPTaxonomyField", + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Rank": 1, - "Id": 183, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" + "CommandName": "Add-PnPTaxonomyField", + "Id": 183 }, { - "CommandName": "Add-PnPTaxonomyField", + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Rank": 2, - "Id": 184, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" + "CommandName": "Add-PnPTaxonomyField", + "Id": 184 }, { - "CommandName": "Add-PnPTeamsChannel", + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "Rank": 1, - "Id": 185, - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" + "CommandName": "Add-PnPTeamsChannel", + "Id": 185 }, { - "CommandName": "Add-PnPTeamsChannel", + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Rank": 2, - "Id": 186, - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" + "CommandName": "Add-PnPTeamsChannel", + "Id": 186 }, { - "CommandName": "Add-PnPTeamsChannel", + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "Rank": 3, - "Id": 187, - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" + "CommandName": "Add-PnPTeamsChannel", + "Id": 187 }, { - "CommandName": "Add-PnPTeamsChannel", + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Rank": 4, - "Id": 188, - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" + "CommandName": "Add-PnPTeamsChannel", + "Id": 188 }, { - "CommandName": "Add-PnpTeamsChannelUser", + "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", "Rank": 1, - "Id": 189, - "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", + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Rank": 2, - "Id": 190, - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" + "CommandName": "Add-PnpTeamsChannelUser", + "Id": 190 }, { - "CommandName": "Add-PnPTeamsTab", + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", "Rank": 1, - "Id": 191, - "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", + "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, - "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\"" + "CommandName": "Add-PnPTeamsTab", + "Id": 192 }, { - "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\"", "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\"" + "CommandName": "Add-PnPTeamsTab", + "Id": 193 }, { - "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", "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" + "CommandName": "Add-PnPTeamsTab", + "Id": 194 }, { - "CommandName": "Add-PnPTeamsTeam", + "Command": "Add-PnPTeamsTeam", "Rank": 1, - "Id": 195, - "Command": "Add-PnPTeamsTeam" + "CommandName": "Add-PnPTeamsTeam", + "Id": 195 }, { - "CommandName": "Add-PnPTeamsUser", + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "Id": 196, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "CommandName": "Add-PnPTeamsUser", + "Id": 196 }, { - "CommandName": "Add-PnPTeamsUser", + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "Id": 197, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "CommandName": "Add-PnPTeamsUser", + "Id": 197 }, { - "CommandName": "Add-PnPTeamsUser", + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "Rank": 3, - "Id": 198, - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" + "CommandName": "Add-PnPTeamsUser", + "Id": 198 }, { - "CommandName": "Add-PnPTeamsUser", + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Rank": 4, - "Id": 199, - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" + "CommandName": "Add-PnPTeamsUser", + "Id": 199 }, { - "CommandName": "Add-PnPTenantCdnOrigin", + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "Id": 200, - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "CommandName": "Add-PnPTenantCdnOrigin", + "Id": 200 }, { - "CommandName": "Add-PnPTenantSequence", + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Rank": 1, - "Id": 201, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" + "CommandName": "Add-PnPTenantSequence", + "Id": 201 }, { - "CommandName": "Add-PnPTenantSequenceSite", + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Rank": 1, - "Id": 202, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" + "CommandName": "Add-PnPTenantSequenceSite", + "Id": 202 }, { - "CommandName": "Add-PnPTenantSequenceSubSite", + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Rank": 1, - "Id": 203, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" + "CommandName": "Add-PnPTenantSequenceSubSite", + "Id": 203 }, { - "CommandName": "Add-PnPTermToTerm", + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Rank": 1, - "Id": 204, - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" + "CommandName": "Add-PnPTermToTerm", + "Id": 204 }, { - "CommandName": "Add-PnPView", + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "Rank": 1, - "Id": 205, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" + "CommandName": "Add-PnPView", + "Id": 205 }, { - "CommandName": "Add-PnPView", + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "Rank": 2, - "Id": 206, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" + "CommandName": "Add-PnPView", + "Id": 206 }, { - "CommandName": "Add-PnPView", + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "Rank": 3, - "Id": 207, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" + "CommandName": "Add-PnPView", + "Id": 207 }, { - "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\"", "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\"" + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Id": 208 }, { - "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\"", "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\"" + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Id": 209 }, { - "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\"", "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\"" + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Id": 210 }, { - "CommandName": "Add-PnPWebhookSubscription", + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "Id": 211, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" + "CommandName": "Add-PnPWebhookSubscription", + "Id": 211 }, { - "CommandName": "Add-PnPWebhookSubscription", + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Rank": 2, - "Id": 212, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" + "CommandName": "Add-PnPWebhookSubscription", + "Id": 212 }, { - "CommandName": "Add-PnPWebhookSubscription", + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "Rank": 3, - "Id": 213, - "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", + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "Rank": 1, - "Id": 214, - "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", + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Rank": 2, - "Id": 215, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" + "CommandName": "Add-PnPWebPartToWebPartPage", + "Id": 215 }, { - "CommandName": "Add-PnPWebPartToWikiPage", + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "Rank": 1, - "Id": 216, - "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", + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Rank": 2, - "Id": 217, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" + "CommandName": "Add-PnPWebPartToWikiPage", + "Id": 217 }, { - "CommandName": "Add-PnPWikiPage", + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Rank": 1, - "Id": 218, - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" + "CommandName": "Add-PnPWikiPage", + "Id": 218 }, { - "CommandName": "Clear-PnPAzureADGroupMember", + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Rank": 1, - "Id": 219, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" + "CommandName": "Clear-PnPAzureADGroupMember", + "Id": 219 }, { - "CommandName": "Clear-PnPAzureADGroupOwner", + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Rank": 1, - "Id": 220, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" + "CommandName": "Clear-PnPAzureADGroupOwner", + "Id": 220 }, { - "CommandName": "Clear-PnPDefaultColumnValues", + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Rank": 1, - "Id": 221, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" + "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 221 }, { - "CommandName": "Clear-PnPDefaultColumnValues", + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Rank": 2, - "Id": 222, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" + "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 222 }, { - "CommandName": "Clear-PnPListItemAsRecord", + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "Id": 223, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "CommandName": "Clear-PnPListItemAsRecord", + "Id": 223 }, { - "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Rank": 1, - "Id": 224, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" + "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Id": 224 }, { - "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Rank": 1, - "Id": 225, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" + "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Id": 225 }, { - "CommandName": "Clear-PnpRecycleBinItem", + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "Id": 226, - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 226 }, { - "CommandName": "Clear-PnpRecycleBinItem", + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Rank": 2, - "Id": 227, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 227 }, { - "CommandName": "Clear-PnpRecycleBinItem", + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Rank": 3, - "Id": 228, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 228 }, { - "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Command": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, - "Id": 229, - "Command": "Clear-PnPTenantAppCatalogUrl" + "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Id": 229 }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 230, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 230 }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "Id": 231, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 231 }, { - "CommandName": "Connect-PnPOnline", + "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", "Rank": 1, - "Id": 232, - "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-PnPFolderToSiteTemplate", + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Rank": 1, - "Id": 233, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 233 }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Rank": 2, - "Id": 234, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 234 }, { - "CommandName": "Convert-PnPSiteTemplate", + "Command": "Convert-PnPSiteTemplate -Path template.xml", "Rank": 1, - "Id": 235, - "Command": "Convert-PnPSiteTemplate -Path template.xml" + "CommandName": "Convert-PnPSiteTemplate", + "Id": 235 }, { - "CommandName": "Convert-PnPSiteTemplate", + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Rank": 2, - "Id": 236, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" + "CommandName": "Convert-PnPSiteTemplate", + "Id": 236 }, { - "CommandName": "Convert-PnPSiteTemplate", + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Rank": 3, - "Id": 237, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" + "CommandName": "Convert-PnPSiteTemplate", + "Id": 237 }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Rank": 1, - "Id": 238, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 238 }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Rank": 2, - "Id": 239, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 239 }, { - "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Rank": 1, - "Id": 240, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" + "CommandName": "ConvertTo-PnPPage", + "Id": 240 }, { - "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Rank": 2, - "Id": 241, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" + "CommandName": "ConvertTo-PnPPage", + "Id": 241 }, { - "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Rank": 3, - "Id": 242, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" + "CommandName": "ConvertTo-PnPPage", + "Id": 242 }, { - "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Rank": 4, - "Id": 243, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" + "CommandName": "ConvertTo-PnPPage", + "Id": 243 }, { - "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 5, - "Id": 244, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "CommandName": "ConvertTo-PnPPage", + "Id": 244 }, { - "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Rank": 6, - "Id": 245, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" + "CommandName": "ConvertTo-PnPPage", + "Id": 245 }, { - "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Rank": 7, - "Id": 246, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" + "CommandName": "ConvertTo-PnPPage", + "Id": 246 }, { - "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "Rank": 8, - "Id": 247, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" + "CommandName": "ConvertTo-PnPPage", + "Id": 247 }, { - "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 9, - "Id": 248, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "CommandName": "ConvertTo-PnPPage", + "Id": 248 }, { - "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Rank": 10, - "Id": 249, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" + "CommandName": "ConvertTo-PnPPage", + "Id": 249 }, { - "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Rank": 11, - "Id": 250, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" + "CommandName": "ConvertTo-PnPPage", + "Id": 250 }, { - "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 12, - "Id": 251, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "CommandName": "ConvertTo-PnPPage", + "Id": 251 }, { - "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 13, - "Id": 252, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "CommandName": "ConvertTo-PnPPage", + "Id": 252 }, { - "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Rank": 14, - "Id": 253, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" + "CommandName": "ConvertTo-PnPPage", + "Id": 253 }, { - "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "Id": 254, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "CommandName": "Copy-PnPFile", + "Id": 254 }, { - "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "Id": 255, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "CommandName": "Copy-PnPFile", + "Id": 255 }, { - "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "Id": 256, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "CommandName": "Copy-PnPFile", + "Id": 256 }, { - "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "Id": 257, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "CommandName": "Copy-PnPFile", + "Id": 257 }, { - "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "Id": 258, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "CommandName": "Copy-PnPFile", + "Id": 258 }, { - "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "Id": 259, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "CommandName": "Copy-PnPFile", + "Id": 259 }, { - "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "Id": 260, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "CommandName": "Copy-PnPFile", + "Id": 260 }, { - "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "Id": 261, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "CommandName": "Copy-PnPFile", + "Id": 261 }, { - "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "Id": 262, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "CommandName": "Copy-PnPFile", + "Id": 262 }, { - "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "Id": 263, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "CommandName": "Copy-PnPFile", + "Id": 263 }, { - "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "Id": 264, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "CommandName": "Copy-PnPFolder", + "Id": 264 }, { - "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "Id": 265, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "CommandName": "Copy-PnPFolder", + "Id": 265 }, { - "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "Id": 266, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "CommandName": "Copy-PnPFolder", + "Id": 266 }, { - "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "Id": 267, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "CommandName": "Copy-PnPFolder", + "Id": 267 }, { - "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "Id": 268, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "CommandName": "Copy-PnPFolder", + "Id": 268 }, { - "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "Id": 269, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "CommandName": "Copy-PnPFolder", + "Id": 269 }, { - "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "Id": 270, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "CommandName": "Copy-PnPFolder", + "Id": 270 }, { - "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "Id": 271, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "CommandName": "Copy-PnPFolder", + "Id": 271 }, { - "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "Id": 272, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "CommandName": "Copy-PnPFolder", + "Id": 272 }, { - "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "Id": 273, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "CommandName": "Copy-PnPFolder", + "Id": 273 }, { - "CommandName": "Copy-PnPItemProxy", + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Rank": 1, - "Id": 274, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" + "CommandName": "Copy-PnPItemProxy", + "Id": 274 }, { - "CommandName": "Copy-PnPList", + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Rank": 1, - "Id": 275, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" + "CommandName": "Copy-PnPList", + "Id": 275 }, { - "CommandName": "Copy-PnPList", + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Rank": 2, - "Id": 276, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" + "CommandName": "Copy-PnPList", + "Id": 276 }, { - "CommandName": "Copy-PnPList", + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Rank": 3, - "Id": 277, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" + "CommandName": "Copy-PnPList", + "Id": 277 }, { - "CommandName": "Copy-PnPList", + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "Rank": 4, - "Id": 278, - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" + "CommandName": "Copy-PnPList", + "Id": 278 }, { - "CommandName": "Copy-PnPTeamsTeam", + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Rank": 1, - "Id": 279, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" + "CommandName": "Copy-PnPTeamsTeam", + "Id": 279 }, { - "CommandName": "Copy-PnPTeamsTeam", + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Rank": 2, - "Id": 280, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" + "CommandName": "Copy-PnPTeamsTeam", + "Id": 280 }, { - "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", "Rank": 3, - "Id": 281, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" + "CommandName": "Copy-PnPTeamsTeam", + "Id": 281 }, { - "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", "Rank": 4, - "Id": 282, - "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": 282 }, { - "CommandName": "Disable-PnPFeature", + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 283, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "CommandName": "Disable-PnPFeature", + "Id": 283 }, { - "CommandName": "Disable-PnPFeature", + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "Id": 284, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "CommandName": "Disable-PnPFeature", + "Id": 284 }, { - "CommandName": "Disable-PnPFeature", + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "Id": 285, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "CommandName": "Disable-PnPFeature", + "Id": 285 }, { - "CommandName": "Disable-PnPPageScheduling", + "Command": "Disable-PnPPageScheduling", "Rank": 1, - "Id": 286, - "Command": "Disable-PnPPageScheduling" + "CommandName": "Disable-PnPPageScheduling", + "Id": 286 }, { - "CommandName": "Disable-PnPPowerShellTelemetry", + "Command": "Disable-PnPPowerShellTelemetry", "Rank": 1, - "Id": 287, - "Command": "Disable-PnPPowerShellTelemetry" + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 287 }, { - "CommandName": "Disable-PnPPowerShellTelemetry", + "Command": "Disable-PnPPowerShellTelemetry -Force", "Rank": 2, - "Id": 288, - "Command": "Disable-PnPPowerShellTelemetry -Force" + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 288 }, { - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Command": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, - "Id": 289, - "Command": "Disable-PnPSharingForNonOwnersOfSite" + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 289 }, { - "CommandName": "Disable-PnPSiteClassification", + "Command": "Disable-PnPSiteClassification", "Rank": 1, - "Id": 290, - "Command": "Disable-PnPSiteClassification" + "CommandName": "Disable-PnPSiteClassification", + "Id": 290 }, { - "CommandName": "Disconnect-PnPOnline", + "Command": "Disconnect-PnPOnline", "Rank": 1, - "Id": 291, - "Command": "Disconnect-PnPOnline" + "CommandName": "Disconnect-PnPOnline", + "Id": 291 }, { - "CommandName": "Enable-PnPCommSite", + "Command": "Enable-PnPCommSite", "Rank": 1, - "Id": 292, - "Command": "Enable-PnPCommSite" + "CommandName": "Enable-PnPCommSite", + "Id": 292 }, { - "CommandName": "Enable-PnPCommSite", + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Rank": 2, - "Id": 293, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" + "CommandName": "Enable-PnPCommSite", + "Id": 293 }, { - "CommandName": "Enable-PnPFeature", + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 294, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "CommandName": "Enable-PnPFeature", + "Id": 294 }, { - "CommandName": "Enable-PnPFeature", + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "Id": 295, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "CommandName": "Enable-PnPFeature", + "Id": 295 }, { - "CommandName": "Enable-PnPFeature", + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "Id": 296, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "CommandName": "Enable-PnPFeature", + "Id": 296 }, { - "CommandName": "Enable-PnPPageScheduling", + "Command": "Enable-PnPPageScheduling", "Rank": 1, - "Id": 297, - "Command": "Enable-PnPPageScheduling" + "CommandName": "Enable-PnPPageScheduling", + "Id": 297 }, { - "CommandName": "Enable-PnPPowerShellTelemetry", + "Command": "Enable-PnPPowerShellTelemetry", "Rank": 1, - "Id": 298, - "Command": "Enable-PnPPowerShellTelemetry" + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 298 }, { - "CommandName": "Enable-PnPPowerShellTelemetry", + "Command": "Enable-PnPPowerShellTelemetry -Force", "Rank": 2, - "Id": 299, - "Command": "Enable-PnPPowerShellTelemetry -Force" + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 299 }, { - "CommandName": "Enable-PnPSiteClassification", + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Rank": 1, - "Id": 300, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" + "CommandName": "Enable-PnPSiteClassification", + "Id": 300 }, { - "CommandName": "Enable-PnPSiteClassification", + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 2, - "Id": 301, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" + "CommandName": "Enable-PnPSiteClassification", + "Id": 301 }, { - "CommandName": "Export-PnPListToSiteTemplate", + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Rank": 1, - "Id": 302, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 302 }, { - "CommandName": "Export-PnPListToSiteTemplate", + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Rank": 2, - "Id": 303, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 303 }, { - "CommandName": "Export-PnPPage", + "Command": "Export-PnPPage -Identity Home.aspx", "Rank": 1, - "Id": 304, - "Command": "Export-PnPPage -Identity Home.aspx" + "CommandName": "Export-PnPPage", + "Id": 304 }, { - "CommandName": "Export-PnPPageMapping", + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Rank": 1, - "Id": 305, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" + "CommandName": "Export-PnPPageMapping", + "Id": 305 }, { - "CommandName": "Export-PnPPageMapping", + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Rank": 2, - "Id": 306, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" + "CommandName": "Export-PnPPageMapping", + "Id": 306 }, { - "CommandName": "Export-PnPPageMapping", + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Rank": 3, - "Id": 307, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" + "CommandName": "Export-PnPPageMapping", + "Id": 307 }, { - "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy", "Rank": 1, - "Id": 308, - "Command": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Id": 308 }, { - "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Rank": 2, - "Id": 309, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt" + "CommandName": "Export-PnPTaxonomy", + "Id": 309 }, { - "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Rank": 3, - "Id": 310, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" + "CommandName": "Export-PnPTaxonomy", + "Id": 310 }, { - "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Rank": 4, - "Id": 311, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" + "CommandName": "Export-PnPTaxonomy", + "Id": 311 }, { - "CommandName": "Export-PnPTermGroupToXml", + "Command": "Export-PnPTermGroupToXml", "Rank": 1, - "Id": 312, - "Command": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Id": 312 }, { - "CommandName": "Export-PnPTermGroupToXml", + "Command": "Export-PnPTermGroupToXml -Out output.xml", "Rank": 2, - "Id": 313, - "Command": "Export-PnPTermGroupToXml -Out output.xml" + "CommandName": "Export-PnPTermGroupToXml", + "Id": 313 }, { - "CommandName": "Export-PnPTermGroupToXml", + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Rank": 3, - "Id": 314, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" + "CommandName": "Export-PnPTermGroupToXml", + "Id": 314 }, { - "CommandName": "Export-PnPUserInfo", + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "Id": 315, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" + "CommandName": "Export-PnPUserInfo", + "Id": 315 }, { - "CommandName": "Export-PnPUserInfo", + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2, - "Id": 316, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" + "CommandName": "Export-PnPUserInfo", + "Id": 316 }, { - "CommandName": "Export-PnPUserProfile", + "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "Id": 317, - "Command": "Export-PnPUserProfile -LoginName user@domain.com" + "CommandName": "Export-PnPUserProfile", + "Id": 317 }, { - "CommandName": "Export-PnPUserProfile", + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2, - "Id": 318, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" + "CommandName": "Export-PnPUserProfile", + "Id": 318 }, { - "CommandName": "Find-PnPFile", + "Command": "Find-PnPFile -Match *.master", "Rank": 1, - "Id": 319, - "Command": "Find-PnPFile -Match *.master" + "CommandName": "Find-PnPFile", + "Id": 319 }, { - "CommandName": "Find-PnPFile", + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Rank": 2, - "Id": 320, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" + "CommandName": "Find-PnPFile", + "Id": 320 }, { - "CommandName": "Find-PnPFile", + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Rank": 3, - "Id": 321, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" + "CommandName": "Find-PnPFile", + "Id": 321 }, { - "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken", "Rank": 1, - "Id": 322, - "Command": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Id": 322 }, { - "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -Decoded", "Rank": 2, - "Id": 323, - "Command": "Get-PnPAccessToken -Decoded" + "CommandName": "Get-PnPAccessToken", + "Id": 323 }, { - "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Rank": 3, - "Id": 324, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" + "CommandName": "Get-PnPAccessToken", + "Id": 324 }, { - "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Rank": 4, - "Id": 325, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM" + "CommandName": "Get-PnPAccessToken", + "Id": 325 }, { - "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Rank": 5, - "Id": 326, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" + "CommandName": "Get-PnPAccessToken", + "Id": 326 }, { - "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert", "Rank": 1, - "Id": 327, - "Command": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Id": 327 }, { - "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -List \"Demo List\"", "Rank": 2, - "Id": 328, - "Command": "Get-PnPAlert -List \"Demo List\"" + "CommandName": "Get-PnPAlert", + "Id": 328 }, { - "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 3, - "Id": 329, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "CommandName": "Get-PnPAlert", + "Id": 329 }, { - "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Rank": 4, - "Id": 330, - "Command": "Get-PnPAlert -Title \"Demo Alert\"" + "CommandName": "Get-PnPAlert", + "Id": 330 }, { - "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -AllUsers", "Rank": 5, - "Id": 331, - "Command": "Get-PnPAlert -AllUsers" + "CommandName": "Get-PnPAlert", + "Id": 331 }, { - "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Rank": 6, - "Id": 332, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" + "CommandName": "Get-PnPAlert", + "Id": 332 }, { - "CommandName": "Get-PnPApp", + "Command": "Get-PnPApp", "Rank": 1, - "Id": 333, - "Command": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Id": 333 }, { - "CommandName": "Get-PnPApp", + "Command": "Get-PnPApp -Scope Site", "Rank": 2, - "Id": 334, - "Command": "Get-PnPApp -Scope Site" + "CommandName": "Get-PnPApp", + "Id": 334 }, { - "CommandName": "Get-PnPApp", + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 3, - "Id": 335, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "CommandName": "Get-PnPApp", + "Id": 335 }, { - "CommandName": "Get-PnPAppErrors", + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Rank": 1, - "Id": 336, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" + "CommandName": "Get-PnPAppErrors", + "Id": 336 }, { - "CommandName": "Get-PnPAppErrors", + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Rank": 2, - "Id": 337, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" + "CommandName": "Get-PnPAppErrors", + "Id": 337 }, { - "CommandName": "Get-PnPAppInfo", + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Rank": 1, - "Id": 338, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"" + "CommandName": "Get-PnPAppInfo", + "Id": 338 }, { - "CommandName": "Get-PnPAppInfo", + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 2, - "Id": 339, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "CommandName": "Get-PnPAppInfo", + "Id": 339 }, { - "CommandName": "Get-PnPAppInfo", + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Rank": 3, - "Id": 340, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" + "CommandName": "Get-PnPAppInfo", + "Id": 340 }, { - "CommandName": "Get-PnPApplicationCustomizer", + "Command": "Get-PnPApplicationCustomizer", "Rank": 1, - "Id": 341, - "Command": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 341 }, { - "CommandName": "Get-PnPApplicationCustomizer", + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "Id": 342, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 342 }, { - "CommandName": "Get-PnPApplicationCustomizer", + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Rank": 3, - "Id": 343, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 343 }, { - "CommandName": "Get-PnPAuditing", + "Command": "Get-PnPAuditing", "Rank": 1, - "Id": 344, - "Command": "Get-PnPAuditing" + "CommandName": "Get-PnPAuditing", + "Id": 344 }, { - "CommandName": "Get-PnPAuthenticationRealm", + "Command": "Get-PnPAuthenticationRealm", "Rank": 1, - "Id": 345, - "Command": "Get-PnPAuthenticationRealm" + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 345 }, { - "CommandName": "Get-PnPAuthenticationRealm", + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Rank": 2, - "Id": 346, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 346 }, { - "CommandName": "Get-PnPAvailableLanguage", + "Command": "Get-PnPAvailableLanguage", "Rank": 1, - "Id": 347, - "Command": "Get-PnPAvailableLanguage" + "CommandName": "Get-PnPAvailableLanguage", + "Id": 347 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", + "Command": "Get-PnPAvailableSensitivityLabel", "Rank": 1, - "Id": 348, - "Command": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 348 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Rank": 2, - "Id": 349, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 349 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Rank": 3, - "Id": 350, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 350 }, { - "CommandName": "Get-PnPAvailableSiteClassification", + "Command": "Get-PnPAvailableSiteClassification", "Rank": 1, - "Id": 351, - "Command": "Get-PnPAvailableSiteClassification" + "CommandName": "Get-PnPAvailableSiteClassification", + "Id": 351 }, { - "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal", "Rank": 1, - "Id": 352, - "Command": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 352 }, { - "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Rank": 2, - "Id": 353, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 353 }, { - "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Rank": 3, - "Id": 354, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 354 }, { - "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Rank": 4, - "Id": 355, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 355 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, - "Id": 356, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 356 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Rank": 2, - "Id": 357, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 357 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Rank": 3, - "Id": 358, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 358 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Command": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, - "Id": 359, - "Command": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 359 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Rank": 2, - "Id": 360, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 360 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Rank": 3, - "Id": 361, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 361 }, { - "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp", "Rank": 1, - "Id": 362, - "Command": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Id": 362 }, { - "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp -Identity MyApp", "Rank": 2, - "Id": 363, - "Command": "Get-PnPAzureADApp -Identity MyApp" + "CommandName": "Get-PnPAzureADApp", + "Id": 363 }, { - "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "Id": 364, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "CommandName": "Get-PnPAzureADApp", + "Id": 364 }, { - "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Rank": 4, - "Id": 365, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" + "CommandName": "Get-PnPAzureADApp", + "Id": 365 }, { - "CommandName": "Get-PnPAzureADAppPermission", + "Command": "Get-PnPAzureADAppPermission", "Rank": 1, - "Id": 366, - "Command": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 366 }, { - "CommandName": "Get-PnPAzureADAppPermission", + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Rank": 2, - "Id": 367, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp" + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 367 }, { - "CommandName": "Get-PnPAzureADAppPermission", + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "Id": 368, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 368 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission", "Rank": 1, - "Id": 369, - "Command": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 369 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "Id": 370, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 370 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Rank": 3, - "Id": 371, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 371 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Rank": 4, - "Id": 372, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 372 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Rank": 5, - "Id": 373, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 373 }, { - "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup", "Rank": 1, - "Id": 374, - "Command": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Id": 374 }, { - "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $groupId", "Rank": 2, - "Id": 375, - "Command": "Get-PnPAzureADGroup -Identity $groupId" + "CommandName": "Get-PnPAzureADGroup", + "Id": 375 }, { - "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Rank": 3, - "Id": 376, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" + "CommandName": "Get-PnPAzureADGroup", + "Id": 376 }, { - "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Rank": 4, - "Id": 377, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" + "CommandName": "Get-PnPAzureADGroup", + "Id": 377 }, { - "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $group", "Rank": 5, - "Id": 378, - "Command": "Get-PnPAzureADGroup -Identity $group" + "CommandName": "Get-PnPAzureADGroup", + "Id": 378 }, { - "CommandName": "Get-PnPAzureADGroupMember", + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Rank": 1, - "Id": 379, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId" + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 379 }, { - "CommandName": "Get-PnPAzureADGroupMember", + "Command": "Get-PnPAzureADGroupMember -Identity $group", "Rank": 2, - "Id": 380, - "Command": "Get-PnPAzureADGroupMember -Identity $group" + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 380 }, { - "CommandName": "Get-PnPAzureADGroupOwner", + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Rank": 1, - "Id": 381, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 381 }, { - "CommandName": "Get-PnPAzureADGroupOwner", + "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Rank": 2, - "Id": 382, - "Command": "Get-PnPAzureADGroupOwner -Identity $group" + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 382 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal", "Rank": 1, - "Id": 383, - "Command": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 383 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Rank": 2, - "Id": 384, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 384 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Rank": 3, - "Id": 385, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 385 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Rank": 4, - "Id": 386, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 386 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "Id": 387, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 387 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "Id": 388, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 388 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 2, - "Id": 389, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 389 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "Id": 390, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 390 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Rank": 2, - "Id": 391, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 391 }, { - "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser", "Rank": 1, - "Id": 392, - "Command": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 392 }, { - "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -EndIndex 50", "Rank": 2, - "Id": 393, - "Command": "Get-PnPAzureADUser -EndIndex 50" + "CommandName": "Get-PnPAzureADUser", + "Id": 393 }, { - "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 3, - "Id": 394, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "CommandName": "Get-PnPAzureADUser", + "Id": 394 }, { - "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Rank": 4, - "Id": 395, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com" + "CommandName": "Get-PnPAzureADUser", + "Id": 395 }, { - "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Rank": 5, - "Id": 396, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" + "CommandName": "Get-PnPAzureADUser", + "Id": 396 }, { - "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Rank": 6, - "Id": 397, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" + "CommandName": "Get-PnPAzureADUser", + "Id": 397 }, { - "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Rank": 7, - "Id": 398, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" + "CommandName": "Get-PnPAzureADUser", + "Id": 398 }, { - "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Delta", "Rank": 8, - "Id": 399, - "Command": "Get-PnPAzureADUser -Delta" + "CommandName": "Get-PnPAzureADUser", + "Id": 399 }, { - "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Rank": 9, - "Id": 400, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" + "CommandName": "Get-PnPAzureADUser", + "Id": 400 }, { - "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Rank": 10, - "Id": 401, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" + "CommandName": "Get-PnPAzureADUser", + "Id": 401 }, { - "CommandName": "Get-PnPAzureCertificate", + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Rank": 1, - "Id": 402, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" + "CommandName": "Get-PnPAzureCertificate", + "Id": 402 }, { - "CommandName": "Get-PnPAzureCertificate", + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Rank": 2, - "Id": 403, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" + "CommandName": "Get-PnPAzureCertificate", + "Id": 403 }, { - "CommandName": "Get-PnPAzureCertificate", + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Rank": 3, - "Id": 404, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" + "CommandName": "Get-PnPAzureCertificate", + "Id": 404 }, { - "CommandName": "Get-PnPBrowserIdleSignout", + "Command": "Get-PnPBrowserIdleSignout", "Rank": 1, - "Id": 405, - "Command": "Get-PnPBrowserIdleSignout" + "CommandName": "Get-PnPBrowserIdleSignout", + "Id": 405 }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Rank": 1, - "Id": 406, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 406 }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Command": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "Id": 407, - "Command": "Get-PnPBuiltInDesignPackageVisibility" + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 407 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "Id": 408, - "Command": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 408 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Rank": 2, - "Id": 409, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 409 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Rank": 3, - "Id": 410, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 410 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "Id": 411, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 411 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Rank": 5, - "Id": 412, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 412 }, { - "CommandName": "Get-PnPChangeLog", + "Command": "Get-PnPChangeLog", "Rank": 1, - "Id": 413, - "Command": "Get-PnPChangeLog" + "CommandName": "Get-PnPChangeLog", + "Id": 413 }, { - "CommandName": "Get-PnPChangeLog", + "Command": "Get-PnPChangeLog -Nightly", "Rank": 2, - "Id": 414, - "Command": "Get-PnPChangeLog -Nightly" + "CommandName": "Get-PnPChangeLog", + "Id": 414 }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Rank": 1, - "Id": 415, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 415 }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Rank": 2, - "Id": 416, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 416 }, { - "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType", "Rank": 1, - "Id": 417, - "Command": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Id": 417 }, { - "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -InSiteHierarchy", "Rank": 2, - "Id": 418, - "Command": "Get-PnPContentType -InSiteHierarchy" + "CommandName": "Get-PnPContentType", + "Id": 418 }, { - "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -Identity \"Project Document\"", "Rank": 3, - "Id": 419, - "Command": "Get-PnPContentType -Identity \"Project Document\"" + "CommandName": "Get-PnPContentType", + "Id": 419 }, { - "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -List \"Documents\"", "Rank": 4, - "Id": 420, - "Command": "Get-PnPContentType -List \"Documents\"" + "CommandName": "Get-PnPContentType", + "Id": 420 }, { - "CommandName": "Get-PnPContentTypePublishingStatus", + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Rank": 1, - "Id": 421, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" + "CommandName": "Get-PnPContentTypePublishingStatus", + "Id": 421 }, { - "CommandName": "Get-PnPCustomAction", + "Command": "Get-PnPCustomAction", "Rank": 1, - "Id": 422, - "Command": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Id": 422 }, { - "CommandName": "Get-PnPCustomAction", + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "Id": 423, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "CommandName": "Get-PnPCustomAction", + "Id": 423 }, { - "CommandName": "Get-PnPCustomAction", + "Command": "Get-PnPCustomAction -Scope web", "Rank": 3, - "Id": 424, - "Command": "Get-PnPCustomAction -Scope web" + "CommandName": "Get-PnPCustomAction", + "Id": 424 }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Command": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, - "Id": 425, - "Command": "Get-PnPDeletedMicrosoft365Group" + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 425 }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 2, - "Id": 426, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 426 }, { - "CommandName": "Get-PnPDeletedTeam", + "Command": "Get-PnPDeletedTeam", "Rank": 1, - "Id": 427, - "Command": "Get-PnPDeletedTeam" + "CommandName": "Get-PnPDeletedTeam", + "Id": 427 }, { - "CommandName": "Get-PnPDiagnostics", + "Command": "Get-PnPDiagnostics", "Rank": 1, - "Id": 428, - "Command": "Get-PnPDiagnostics" + "CommandName": "Get-PnPDiagnostics", + "Id": 428 }, { - "CommandName": "Get-PnPDisableSpacesActivation", + "Command": "Get-PnPDisableSpacesActivation", "Rank": 1, - "Id": 429, - "Command": "Get-PnPDisableSpacesActivation" + "CommandName": "Get-PnPDisableSpacesActivation", + "Id": 429 }, { - "CommandName": "Get-PnPDocumentSetTemplate", + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Rank": 1, - "Id": 430, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 430 }, { - "CommandName": "Get-PnPDocumentSetTemplate", + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Rank": 2, - "Id": 431, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 431 }, { - "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver", "Rank": 1, - "Id": 432, - "Command": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 432 }, { - "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "Id": 433, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "CommandName": "Get-PnPEventReceiver", + "Id": 433 }, { - "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Rank": 3, - "Id": 434, - "Command": "Get-PnPEventReceiver -Identity MyReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 434 }, { - "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Rank": 4, - "Id": 435, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"" + "CommandName": "Get-PnPEventReceiver", + "Id": 435 }, { - "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 5, - "Id": 436, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "CommandName": "Get-PnPEventReceiver", + "Id": 436 }, { - "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Rank": 6, - "Id": 437, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 437 }, { - "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Scope Site", "Rank": 7, - "Id": 438, - "Command": "Get-PnPEventReceiver -Scope Site" + "CommandName": "Get-PnPEventReceiver", + "Id": 438 }, { - "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Scope Web", "Rank": 8, - "Id": 439, - "Command": "Get-PnPEventReceiver -Scope Web" + "CommandName": "Get-PnPEventReceiver", + "Id": 439 }, { - "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Scope All", "Rank": 9, - "Id": 440, - "Command": "Get-PnPEventReceiver -Scope All" + "CommandName": "Get-PnPEventReceiver", + "Id": 440 }, { - "CommandName": "Get-PnPException", + "Command": "Get-PnPException", "Rank": 1, - "Id": 441, - "Command": "Get-PnPException" + "CommandName": "Get-PnPException", + "Id": 441 }, { - "CommandName": "Get-PnPException", + "Command": "Get-PnPException -All", "Rank": 2, - "Id": 442, - "Command": "Get-PnPException -All" + "CommandName": "Get-PnPException", + "Id": 442 }, { - "CommandName": "Get-PnPExternalUser", + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Rank": 1, - "Id": 443, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" + "CommandName": "Get-PnPExternalUser", + "Id": 443 }, { - "CommandName": "Get-PnPExternalUser", + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Rank": 2, - "Id": 444, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" + "CommandName": "Get-PnPExternalUser", + "Id": 444 }, { - "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature", "Rank": 1, - "Id": 445, - "Command": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Id": 445 }, { - "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature -Scope Site", "Rank": 2, - "Id": 446, - "Command": "Get-PnPFeature -Scope Site" + "CommandName": "Get-PnPFeature", + "Id": 446 }, { - "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 3, - "Id": 447, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "CommandName": "Get-PnPFeature", + "Id": 447 }, { - "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Rank": 4, - "Id": 448, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" + "CommandName": "Get-PnPFeature", + "Id": 448 }, { - "CommandName": "Get-PnPField", + "Command": "Get-PnPField", "Rank": 1, - "Id": 449, - "Command": "Get-PnPField" + "CommandName": "Get-PnPField", + "Id": 449 }, { - "CommandName": "Get-PnPField", + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "Id": 450, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "CommandName": "Get-PnPField", + "Id": 450 }, { - "CommandName": "Get-PnPField", + "Command": "Get-PnPField -Group \"Custom Columns\"", "Rank": 3, - "Id": 451, - "Command": "Get-PnPField -Group \"Custom Columns\"" + "CommandName": "Get-PnPField", + "Id": 451 }, { - "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Rank": 1, - "Id": 452, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" + "CommandName": "Get-PnPFile", + "Id": 452 }, { - "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Rank": 2, - "Id": 453, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" + "CommandName": "Get-PnPFile", + "Id": 453 }, { - "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Rank": 3, - "Id": 454, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" + "CommandName": "Get-PnPFile", + "Id": 454 }, { - "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Rank": 4, - "Id": 455, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" + "CommandName": "Get-PnPFile", + "Id": 455 }, { - "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Rank": 5, - "Id": 456, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" + "CommandName": "Get-PnPFile", + "Id": 456 }, { - "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Rank": 6, - "Id": 457, - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" + "CommandName": "Get-PnPFile", + "Id": 457 }, { - "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Rank": 7, - "Id": 458, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" + "CommandName": "Get-PnPFile", + "Id": 458 }, { - "CommandName": "Get-PnPFileSharingLink", + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "Id": 459, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "CommandName": "Get-PnPFileSharingLink", + "Id": 459 }, { - "CommandName": "Get-PnPFileVersion", + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Rank": 1, - "Id": 460, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" + "CommandName": "Get-PnPFileVersion", + "Id": 460 }, { - "CommandName": "Get-PnPFileVersion", + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Rank": 2, - "Id": 461, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" + "CommandName": "Get-PnPFileVersion", + "Id": 461 }, { - "CommandName": "Get-PnPFlow", + "Command": "Get-PnPFlow -AsAdmin", "Rank": 1, - "Id": 462, - "Command": "Get-PnPFlow -AsAdmin" + "CommandName": "Get-PnPFlow", + "Id": 462 }, { - "CommandName": "Get-PnPFlow", + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "Rank": 2, - "Id": 463, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe" + "CommandName": "Get-PnPFlow", + "Id": 463 }, { - "CommandName": "Get-PnPFlow", + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Rank": 3, - "Id": 464, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" + "CommandName": "Get-PnPFlow", + "Id": 464 }, { - "CommandName": "Get-PnPFlowOwner", + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Rank": 1, - "Id": 465, - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" + "CommandName": "Get-PnPFlowOwner", + "Id": 465 }, { - "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder", "Rank": 1, - "Id": 466, - "Command": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Id": 466 }, { - "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Rank": 2, - "Id": 467, - "Command": "Get-PnPFolder -Url \"Shared Documents\"" + "CommandName": "Get-PnPFolder", + "Id": 467 }, { - "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Rank": 3, - "Id": 468, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" + "CommandName": "Get-PnPFolder", + "Id": 468 }, { - "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder -List \"Shared Documents\"", "Rank": 4, - "Id": 469, - "Command": "Get-PnPFolder -List \"Shared Documents\"" + "CommandName": "Get-PnPFolder", + "Id": 469 }, { - "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile", "Rank": 1, - "Id": 470, - "Command": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Id": 470 }, { - "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -Recurse", "Rank": 2, - "Id": 471, - "Command": "Get-PnPFolderFile -Recurse" + "CommandName": "Get-PnPFolderFile", + "Id": 471 }, { - "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "Rank": 3, - "Id": 472, - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"" + "CommandName": "Get-PnPFolderFile", + "Id": 472 }, { - "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, - "Id": 473, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "CommandName": "Get-PnPFolderFile", + "Id": 473 }, { - "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 5, - "Id": 474, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "CommandName": "Get-PnPFolderFile", + "Id": 474 }, { - "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder", "Rank": 1, - "Id": 475, - "Command": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Id": 475 }, { - "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -Recurse", "Rank": 2, - "Id": 476, - "Command": "Get-PnPFolderFolder -Recurse" + "CommandName": "Get-PnPFolderFolder", + "Id": 476 }, { - "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "Rank": 3, - "Id": 477, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"" + "CommandName": "Get-PnPFolderFolder", + "Id": 477 }, { - "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "Rank": 4, - "Id": 478, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" + "CommandName": "Get-PnPFolderFolder", + "Id": 478 }, { - "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "Rank": 5, - "Id": 479, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" + "CommandName": "Get-PnPFolderFolder", + "Id": 479 }, { - "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, - "Id": 480, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "CommandName": "Get-PnPFolderFolder", + "Id": 480 }, { - "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem", "Rank": 1, - "Id": 481, - "Command": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Id": 481 }, { - "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -Recurse", "Rank": 2, - "Id": 482, - "Command": "Get-PnPFolderItem -Recurse" + "CommandName": "Get-PnPFolderItem", + "Id": 482 }, { - "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "Rank": 3, - "Id": 483, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" + "CommandName": "Get-PnPFolderItem", + "Id": 483 }, { - "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, - "Id": 484, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "CommandName": "Get-PnPFolderItem", + "Id": 484 }, { - "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Rank": 5, - "Id": 485, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" + "CommandName": "Get-PnPFolderItem", + "Id": 485 }, { - "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, - "Id": 486, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "CommandName": "Get-PnPFolderItem", + "Id": 486 }, { - "CommandName": "Get-PnPFolderSharingLink", + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "Id": 487, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "CommandName": "Get-PnPFolderSharingLink", + "Id": 487 }, { - "CommandName": "Get-PnPFolderStorageMetric", + "Command": "Get-PnPFolderStorageMetric", "Rank": 1, - "Id": 488, - "Command": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 488 }, { - "CommandName": "Get-PnPFolderStorageMetric", + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Rank": 2, - "Id": 489, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 489 }, { - "CommandName": "Get-PnPFolderStorageMetric", + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Rank": 3, - "Id": 490, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 490 }, { - "CommandName": "Get-PnPFooter", + "Command": "Get-PnPFooter", "Rank": 1, - "Id": 491, - "Command": "Get-PnPFooter" + "CommandName": "Get-PnPFooter", + "Id": 491 }, { - "CommandName": "Get-PnPGraphAccessToken", + "Command": "Get-PnPGraphAccessToken", "Rank": 1, - "Id": 492, - "Command": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPGraphAccessToken", + "Id": 492 }, { - "CommandName": "Get-PnPGraphAccessToken", + "Command": "Get-PnPGraphAccessToken -Decoded", "Rank": 2, - "Id": 493, - "Command": "Get-PnPGraphAccessToken -Decoded" + "CommandName": "Get-PnPGraphAccessToken", + "Id": 493 }, { - "CommandName": "Get-PnPGraphSubscription", + "Command": "Get-PnPGraphSubscription", "Rank": 1, - "Id": 494, - "Command": "Get-PnPGraphSubscription" + "CommandName": "Get-PnPGraphSubscription", + "Id": 494 }, { - "CommandName": "Get-PnPGraphSubscription", + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 2, - "Id": 495, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "CommandName": "Get-PnPGraphSubscription", + "Id": 495 }, { - "CommandName": "Get-PnPGroup", + "Command": "Get-PnPGroup", "Rank": 1, - "Id": 496, - "Command": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Id": 496 }, { - "CommandName": "Get-PnPGroup", + "Command": "Get-PnPGroup -Identity 'My Site Users'", "Rank": 2, - "Id": 497, - "Command": "Get-PnPGroup -Identity 'My Site Users'" + "CommandName": "Get-PnPGroup", + "Id": 497 }, { - "CommandName": "Get-PnPGroup", + "Command": "Get-PnPGroup -AssociatedMemberGroup", "Rank": 3, - "Id": 498, - "Command": "Get-PnPGroup -AssociatedMemberGroup" + "CommandName": "Get-PnPGroup", + "Id": 498 }, { - "CommandName": "Get-PnPGroupMember", + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Rank": 1, - "Id": 499, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" + "CommandName": "Get-PnPGroupMember", + "Id": 499 }, { - "CommandName": "Get-PnPGroupMember", + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Rank": 2, - "Id": 500, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" + "CommandName": "Get-PnPGroupMember", + "Id": 500 }, { - "CommandName": "Get-PnPGroupPermissions", + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Rank": 1, - "Id": 501, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" + "CommandName": "Get-PnPGroupPermissions", + "Id": 501 }, { - "CommandName": "Get-PnPHideDefaultThemes", + "Command": "Get-PnPHideDefaultThemes", "Rank": 1, - "Id": 502, - "Command": "Get-PnPHideDefaultThemes" + "CommandName": "Get-PnPHideDefaultThemes", + "Id": 502 }, { - "CommandName": "Get-PnPHomePage", + "Command": "Get-PnPHomePage", "Rank": 1, - "Id": 503, - "Command": "Get-PnPHomePage" + "CommandName": "Get-PnPHomePage", + "Id": 503 }, { - "CommandName": "Get-PnPHomeSite", + "Command": "Get-PnPHomeSite", "Rank": 1, - "Id": 504, - "Command": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Id": 504 }, { - "CommandName": "Get-PnPHomeSite", + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Rank": 2, - "Id": 505, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" + "CommandName": "Get-PnPHomeSite", + "Id": 505 }, { - "CommandName": "Get-PnPHomeSite", + "Command": "Get-PnPHomeSite -Detailed", "Rank": 3, - "Id": 506, - "Command": "Get-PnPHomeSite -Detailed" + "CommandName": "Get-PnPHomeSite", + "Id": 506 }, { - "CommandName": "Get-PnPHubSite", + "Command": "Get-PnPHubSite", "Rank": 1, - "Id": 507, - "Command": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Id": 507 }, { - "CommandName": "Get-PnPHubSite", + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "Id": 508, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "CommandName": "Get-PnPHubSite", + "Id": 508 }, { - "CommandName": "Get-PnPHubSite", + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Rank": 3, - "Id": 509, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" + "CommandName": "Get-PnPHubSite", + "Id": 509 }, { - "CommandName": "Get-PnPHubSiteChild", + "Command": "Get-PnPHubSiteChild", "Rank": 1, - "Id": 510, - "Command": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSiteChild", + "Id": 510 }, { - "CommandName": "Get-PnPHubSiteChild", + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "Id": 511, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "CommandName": "Get-PnPHubSiteChild", + "Id": 511 }, { - "CommandName": "Get-PnPInPlaceRecordsManagement", + "Command": "Get-PnPInPlaceRecordsManagement", "Rank": 1, - "Id": 512, - "Command": "Get-PnPInPlaceRecordsManagement" + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Id": 512 }, { - "CommandName": "Get-PnPIsSiteAliasAvailable", + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Rank": 1, - "Id": 513, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Id": 513 }, { - "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink", "Rank": 1, - "Id": 514, - "Command": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 514 }, { - "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Scope All", "Rank": 2, - "Id": 515, - "Command": "Get-PnPJavaScriptLink -Scope All" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 515 }, { - "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Scope Web", "Rank": 3, - "Id": 516, - "Command": "Get-PnPJavaScriptLink -Scope Web" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 516 }, { - "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Scope Site", "Rank": 4, - "Id": 517, - "Command": "Get-PnPJavaScriptLink -Scope Site" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 517 }, { - "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Name Test", "Rank": 5, - "Id": 518, - "Command": "Get-PnPJavaScriptLink -Name Test" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 518 }, { - "CommandName": "Get-PnPKnowledgeHubSite", + "Command": "Get-PnPKnowledgeHubSite", "Rank": 1, - "Id": 519, - "Command": "Get-PnPKnowledgeHubSite" + "CommandName": "Get-PnPKnowledgeHubSite", + "Id": 519 }, { - "CommandName": "Get-PnPLabel", + "Command": "Get-PnPLabel", "Rank": 1, - "Id": 520, - "Command": "Get-PnPLabel" + "CommandName": "Get-PnPLabel", + "Id": 520 }, { - "CommandName": "Get-PnPLabel", + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Rank": 2, - "Id": 521, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" + "CommandName": "Get-PnPLabel", + "Id": 521 }, { - "CommandName": "Get-PnPLargeListOperationStatus", + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Rank": 1, - "Id": 522, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" + "CommandName": "Get-PnPLargeListOperationStatus", + "Id": 522 }, { - "CommandName": "Get-PnPList", + "Command": "Get-PnPList", "Rank": 1, - "Id": 523, - "Command": "Get-PnPList" + "CommandName": "Get-PnPList", + "Id": 523 }, { - "CommandName": "Get-PnPList", + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 2, - "Id": 524, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "CommandName": "Get-PnPList", + "Id": 524 }, { - "CommandName": "Get-PnPList", + "Command": "Get-PnPList -Identity Lists/Announcements", "Rank": 3, - "Id": 525, - "Command": "Get-PnPList -Identity Lists/Announcements" + "CommandName": "Get-PnPList", + "Id": 525 }, { - "CommandName": "Get-PnPList", + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Rank": 4, - "Id": 526, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" + "CommandName": "Get-PnPList", + "Id": 526 }, { - "CommandName": "Get-PnPList", + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Rank": 5, - "Id": 527, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" + "CommandName": "Get-PnPList", + "Id": 527 }, { - "CommandName": "Get-PnPListDesign", + "Command": "Get-PnPListDesign", "Rank": 1, - "Id": 528, - "Command": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Id": 528 }, { - "CommandName": "Get-PnPListDesign", + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "Id": 529, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "CommandName": "Get-PnPListDesign", + "Id": 529 }, { - "CommandName": "Get-PnPListDesign", + "Command": "Get-PnPListDesign -Identity ListEvent", "Rank": 3, - "Id": 530, - "Command": "Get-PnPListDesign -Identity ListEvent" + "CommandName": "Get-PnPListDesign", + "Id": 530 }, { - "CommandName": "Get-PnPListInformationRightsManagement", + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Rank": 1, - "Id": 531, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" + "CommandName": "Get-PnPListInformationRightsManagement", + "Id": 531 }, { - "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks", "Rank": 1, - "Id": 532, - "Command": "Get-PnPListItem -List Tasks" + "CommandName": "Get-PnPListItem", + "Id": 532 }, { - "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Id 1", "Rank": 2, - "Id": 533, - "Command": "Get-PnPListItem -List Tasks -Id 1" + "CommandName": "Get-PnPListItem", + "Id": 533 }, { - "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Rank": 3, - "Id": 534, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" + "CommandName": "Get-PnPListItem", + "Id": 534 }, { - "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "Rank": 4, - "Id": 535, - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" + "CommandName": "Get-PnPListItem", + "Id": 535 }, { - "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Query \"\"", "Rank": 5, - "Id": 536, - "Command": "Get-PnPListItem -List Tasks -Query \"\"" + "CommandName": "Get-PnPListItem", + "Id": 536 }, { - "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Rank": 6, - "Id": 537, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000" + "CommandName": "Get-PnPListItem", + "Id": 537 }, { - "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Rank": 7, - "Id": 538, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" + "CommandName": "Get-PnPListItem", + "Id": 538 }, { - "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Rank": 8, - "Id": 539, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" + "CommandName": "Get-PnPListItem", + "Id": 539 }, { - "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Rank": 9, - "Id": 540, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" + "CommandName": "Get-PnPListItem", + "Id": 540 }, { - "CommandName": "Get-PnPListItemAttachment", + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "Rank": 1, - "Id": 541, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" + "CommandName": "Get-PnPListItemAttachment", + "Id": 541 }, { - "CommandName": "Get-PnPListItemAttachment", + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "Rank": 2, - "Id": 542, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" + "CommandName": "Get-PnPListItemAttachment", + "Id": 542 }, { - "CommandName": "Get-PnPListItemComment", + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Rank": 1, - "Id": 543, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1" + "CommandName": "Get-PnPListItemComment", + "Id": 543 }, { - "CommandName": "Get-PnPListItemPermission", + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Rank": 1, - "Id": 544, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" + "CommandName": "Get-PnPListItemPermission", + "Id": 544 }, { - "CommandName": "Get-PnPListItemVersion", + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Rank": 1, - "Id": 545, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" + "CommandName": "Get-PnPListItemVersion", + "Id": 545 }, { - "CommandName": "Get-PnPListPermissions", + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Rank": 1, - "Id": 546, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" + "CommandName": "Get-PnPListPermissions", + "Id": 546 }, { - "CommandName": "Get-PnPListPermissions", + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Rank": 2, - "Id": 547, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" + "CommandName": "Get-PnPListPermissions", + "Id": 547 }, { - "CommandName": "Get-PnPListRecordDeclaration", + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Rank": 1, - "Id": 548, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" + "CommandName": "Get-PnPListRecordDeclaration", + "Id": 548 }, { - "CommandName": "Get-PnPMasterPage", + "Command": "Get-PnPMasterPage", "Rank": 1, - "Id": 549, - "Command": "Get-PnPMasterPage" + "CommandName": "Get-PnPMasterPage", + "Id": 549 }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", + "Command": "Get-PnPMessageCenterAnnouncement", "Rank": 1, - "Id": 550, - "Command": "Get-PnPMessageCenterAnnouncement" + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 550 }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Rank": 2, - "Id": 551, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 551 }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Command": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, - "Id": 552, - "Command": "Get-PnPMicrosoft365ExpiringGroup" + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 552 }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Rank": 2, - "Id": 553, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 553 }, { - "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group", "Rank": 1, - "Id": 554, - "Command": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 554 }, { - "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Rank": 2, - "Id": 555, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 555 }, { - "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Rank": 3, - "Id": 556, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 556 }, { - "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Rank": 4, - "Id": 557, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 557 }, { - "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $group", "Rank": 5, - "Id": 558, - "Command": "Get-PnPMicrosoft365Group -Identity $group" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 558 }, { - "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Rank": 6, - "Id": 559, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 559 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Command": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, - "Id": 560, - "Command": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 560 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Rank": 2, - "Id": 561, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 561 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "Id": 562, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 562 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Rank": 1, - "Id": 563, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 563 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Rank": 2, - "Id": 564, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 564 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Rank": 3, - "Id": 565, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 565 }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Rank": 1, - "Id": 566, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 566 }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Rank": 2, - "Id": 567, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 567 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Command": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, - "Id": 568, - "Command": "Get-PnPMicrosoft365GroupSettings" + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 568 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Rank": 2, - "Id": 569, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 569 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, - "Id": 570, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates" + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 570 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Rank": 2, - "Id": 571, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 571 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Command": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, - "Id": 572, - "Command": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 572 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Rank": 2, - "Id": 573, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 573 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "Id": 574, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 574 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, - "Id": 575, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 575 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Rank": 2, - "Id": 576, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 576 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "Id": 577, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 577 }, { - "CommandName": "Get-PnPNavigationNode", + "Command": "Get-PnPNavigationNode", "Rank": 1, - "Id": 578, - "Command": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Id": 578 }, { - "CommandName": "Get-PnPNavigationNode", + "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Rank": 2, - "Id": 579, - "Command": "Get-PnPNavigationNode -Location QuickLaunch" + "CommandName": "Get-PnPNavigationNode", + "Id": 579 }, { - "CommandName": "Get-PnPNavigationNode", + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Rank": 3, - "Id": 580, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar" + "CommandName": "Get-PnPNavigationNode", + "Id": 580 }, { - "CommandName": "Get-PnPOrgAssetsLibrary", + "Command": "Get-PnPOrgAssetsLibrary", "Rank": 1, - "Id": 581, - "Command": "Get-PnPOrgAssetsLibrary" + "CommandName": "Get-PnPOrgAssetsLibrary", + "Id": 581 }, { - "CommandName": "Get-PnPOrgNewsSite", + "Command": "Get-PnPOrgNewsSite", "Rank": 1, - "Id": 582, - "Command": "Get-PnPOrgNewsSite" + "CommandName": "Get-PnPOrgNewsSite", + "Id": 582 }, { - "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Rank": 1, - "Id": 583, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" + "CommandName": "Get-PnPPage", + "Id": 583 }, { - "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage \"MyPage\"", "Rank": 2, - "Id": 584, - "Command": "Get-PnPPage \"MyPage\"" + "CommandName": "Get-PnPPage", + "Id": 584 }, { - "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Rank": 3, - "Id": 585, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" + "CommandName": "Get-PnPPage", + "Id": 585 }, { - "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Rank": 4, - "Id": 586, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" + "CommandName": "Get-PnPPage", + "Id": 586 }, { - "CommandName": "Get-PnPPageComponent", + "Command": "Get-PnPPageComponent -Page Home", "Rank": 1, - "Id": 587, - "Command": "Get-PnPPageComponent -Page Home" + "CommandName": "Get-PnPPageComponent", + "Id": 587 }, { - "CommandName": "Get-PnPPageComponent", + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "Id": 588, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "CommandName": "Get-PnPPageComponent", + "Id": 588 }, { - "CommandName": "Get-PnPPageComponent", + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Rank": 3, - "Id": 589, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable" + "CommandName": "Get-PnPPageComponent", + "Id": 589 }, { - "CommandName": "Get-PnPPlannerBucket", + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "Id": 590, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" + "CommandName": "Get-PnPPlannerBucket", + "Id": 590 }, { - "CommandName": "Get-PnPPlannerConfiguration", + "Command": "Get-PnPPlannerConfiguration", "Rank": 1, - "Id": 591, - "Command": "Get-PnPPlannerConfiguration" + "CommandName": "Get-PnPPlannerConfiguration", + "Id": 591 }, { - "CommandName": "Get-PnPPlannerPlan", + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Rank": 1, - "Id": 592, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" + "CommandName": "Get-PnPPlannerPlan", + "Id": 592 }, { - "CommandName": "Get-PnPPlannerPlan", + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Rank": 2, - "Id": 593, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" + "CommandName": "Get-PnPPlannerPlan", + "Id": 593 }, { - "CommandName": "Get-PnPPlannerPlan", + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Rank": 3, - "Id": 594, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" + "CommandName": "Get-PnPPlannerPlan", + "Id": 594 }, { - "CommandName": "Get-PnPPlannerRosterMember", + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "Id": 595, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "CommandName": "Get-PnPPlannerRosterMember", + "Id": 595 }, { - "CommandName": "Get-PnPPlannerRosterPlan", + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Rank": 1, - "Id": 596, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 596 }, { - "CommandName": "Get-PnPPlannerRosterPlan", + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 2, - "Id": 597, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 597 }, { - "CommandName": "Get-PnPPlannerTask", + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "Id": 598, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" + "CommandName": "Get-PnPPlannerTask", + "Id": 598 }, { - "CommandName": "Get-PnPPlannerTask", + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 2, - "Id": 599, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "CommandName": "Get-PnPPlannerTask", + "Id": 599 }, { - "CommandName": "Get-PnPPlannerTask", + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 3, - "Id": 600, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "CommandName": "Get-PnPPlannerTask", + "Id": 600 }, { - "CommandName": "Get-PnPPlannerUserPolicy", + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 601, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "CommandName": "Get-PnPPlannerUserPolicy", + "Id": 601 }, { - "CommandName": "Get-PnPPowerPlatformConnector", + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "Rank": 1, - "Id": 602, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" + "CommandName": "Get-PnPPowerPlatformConnector", + "Id": 602 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", + "Command": "Get-PnPPowerPlatformEnvironment", "Rank": 1, - "Id": 603, - "Command": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 603 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Rank": 2, - "Id": 604, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 604 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Rank": 3, - "Id": 605, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 605 }, { - "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Command": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, - "Id": 606, - "Command": "Get-PnPPowerShellTelemetryEnabled" + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Id": 606 }, { - "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag", "Rank": 1, - "Id": 607, - "Command": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Id": 607 }, { - "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Key MyKey", "Rank": 2, - "Id": 608, - "Command": "Get-PnPPropertyBag -Key MyKey" + "CommandName": "Get-PnPPropertyBag", + "Id": 608 }, { - "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Rank": 3, - "Id": 609, - "Command": "Get-PnPPropertyBag -Folder /MyFolder" + "CommandName": "Get-PnPPropertyBag", + "Id": 609 }, { - "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Rank": 4, - "Id": 610, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" + "CommandName": "Get-PnPPropertyBag", + "Id": 610 }, { - "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Rank": 5, - "Id": 611, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" + "CommandName": "Get-PnPPropertyBag", + "Id": 611 }, { - "CommandName": "Get-PnPPublishingImageRendition", + "Command": "Get-PnPPublishingImageRendition", "Rank": 1, - "Id": 612, - "Command": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 612 }, { - "CommandName": "Get-PnPPublishingImageRendition", + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Rank": 2, - "Id": 613, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 613 }, { - "CommandName": "Get-PnPPublishingImageRendition", + "Command": "Get-PnPPublishingImageRendition -Identity 2", "Rank": 3, - "Id": 614, - "Command": "Get-PnPPublishingImageRendition -Identity 2" + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 614 }, { - "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem", "Rank": 1, - "Id": 615, - "Command": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 615 }, { - "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Rank": 2, - "Id": 616, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 616 }, { - "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -FirstStage", "Rank": 3, - "Id": 617, - "Command": "Get-PnPRecycleBinItem -FirstStage" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 617 }, { - "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -SecondStage", "Rank": 4, - "Id": 618, - "Command": "Get-PnPRecycleBinItem -SecondStage" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 618 }, { - "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Rank": 5, - "Id": 619, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 619 }, { - "CommandName": "Get-PnPRequestAccessEmails", + "Command": "Get-PnPRequestAccessEmails", "Rank": 1, - "Id": 620, - "Command": "Get-PnPRequestAccessEmails" + "CommandName": "Get-PnPRequestAccessEmails", + "Id": 620 }, { - "CommandName": "Get-PnPRetentionLabel", + "Command": "Get-PnPRetentionLabel", "Rank": 1, - "Id": 621, - "Command": "Get-PnPRetentionLabel" + "CommandName": "Get-PnPRetentionLabel", + "Id": 621 }, { - "CommandName": "Get-PnPRetentionLabel", + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "Rank": 2, - "Id": 622, - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" + "CommandName": "Get-PnPRetentionLabel", + "Id": 622 }, { - "CommandName": "Get-PnPRoleDefinition", + "Command": "Get-PnPRoleDefinition", "Rank": 1, - "Id": 623, - "Command": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Id": 623 }, { - "CommandName": "Get-PnPRoleDefinition", + "Command": "Get-PnPRoleDefinition -Identity Read", "Rank": 2, - "Id": 624, - "Command": "Get-PnPRoleDefinition -Identity Read" + "CommandName": "Get-PnPRoleDefinition", + "Id": 624 }, { - "CommandName": "Get-PnPRoleDefinition", + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Rank": 3, - "Id": 625, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" + "CommandName": "Get-PnPRoleDefinition", + "Id": 625 }, { - "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration", "Rank": 1, - "Id": 626, - "Command": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 626 }, { - "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site", "Rank": 2, - "Id": 627, - "Command": "Get-PnPSearchConfiguration -Scope Site" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 627 }, { - "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Rank": 3, - "Id": 628, - "Command": "Get-PnPSearchConfiguration -Scope Subscription" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 628 }, { - "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "Id": 629, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 629 }, { - "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Rank": 5, - "Id": 630, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 630 }, { - "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Rank": 6, - "Id": 631, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 631 }, { - "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Rank": 7, - "Id": 632, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 632 }, { - "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Rank": 8, - "Id": 633, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 633 }, { - "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog", "Rank": 1, - "Id": 634, - "Command": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 634 }, { - "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Rank": 2, - "Id": 635, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 635 }, { - "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Rank": 3, - "Id": 636, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 636 }, { - "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Rank": 4, - "Id": 637, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 637 }, { - "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Rank": 5, - "Id": 638, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 638 }, { - "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Rank": 6, - "Id": 639, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 639 }, { - "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Rank": 7, - "Id": 640, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 640 }, { - "CommandName": "Get-PnPSearchSettings", + "Command": "Get-PnPSearchSettings", "Rank": 1, - "Id": 641, - "Command": "Get-PnPSearchSettings" + "CommandName": "Get-PnPSearchSettings", + "Id": 641 }, { - "CommandName": "Get-PnPServiceCurrentHealth", + "Command": "Get-PnPServiceCurrentHealth", "Rank": 1, - "Id": 642, - "Command": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 642 }, { - "CommandName": "Get-PnPServiceCurrentHealth", + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Rank": 2, - "Id": 643, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 643 }, { - "CommandName": "Get-PnPServiceHealthIssue", + "Command": "Get-PnPServiceHealthIssue", "Rank": 1, - "Id": 644, - "Command": "Get-PnPServiceHealthIssue" + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 644 }, { - "CommandName": "Get-PnPServiceHealthIssue", + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Rank": 2, - "Id": 645, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 645 }, { - "CommandName": "Get-PnPSharePointAddIn", + "Command": "Get-PnPSharePointAddIn", "Rank": 1, - "Id": 646, - "Command": "Get-PnPSharePointAddIn" + "CommandName": "Get-PnPSharePointAddIn", + "Id": 646 }, { - "CommandName": "Get-PnPSharePointAddIn", + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Rank": 2, - "Id": 647, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites" + "CommandName": "Get-PnPSharePointAddIn", + "Id": 647 }, { - "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Command": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, - "Id": 648, - "Command": "Get-PnPSharingForNonOwnersOfSite" + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Id": 648 }, { - "CommandName": "Get-PnPSite", + "Command": "Get-PnPSite", "Rank": 1, - "Id": 649, - "Command": "Get-PnPSite" + "CommandName": "Get-PnPSite", + "Id": 649 }, { - "CommandName": "Get-PnPSite", + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Rank": 2, - "Id": 650, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" + "CommandName": "Get-PnPSite", + "Id": 650 }, { - "CommandName": "Get-PnPSiteClosure", + "Command": "Get-PnPSiteClosure", "Rank": 1, - "Id": 651, - "Command": "Get-PnPSiteClosure" + "CommandName": "Get-PnPSiteClosure", + "Id": 651 }, { - "CommandName": "Get-PnPSiteCollectionAdmin", + "Command": "Get-PnPSiteCollectionAdmin", "Rank": 1, - "Id": 652, - "Command": "Get-PnPSiteCollectionAdmin" + "CommandName": "Get-PnPSiteCollectionAdmin", + "Id": 652 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Command": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, - "Id": 653, - "Command": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 653 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Rank": 2, - "Id": 654, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 654 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Rank": 3, - "Id": 655, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 655 }, { - "CommandName": "Get-PnPSiteCollectionTermStore", + "Command": "Get-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 656, - "Command": "Get-PnPSiteCollectionTermStore" + "CommandName": "Get-PnPSiteCollectionTermStore", + "Id": 656 }, { - "CommandName": "Get-PnPSiteDesign", + "Command": "Get-PnPSiteDesign", "Rank": 1, - "Id": 657, - "Command": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteDesign", + "Id": 657 }, { - "CommandName": "Get-PnPSiteDesign", + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "Id": 658, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "CommandName": "Get-PnPSiteDesign", + "Id": 658 }, { - "CommandName": "Get-PnPSiteDesignRights", + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 659, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "CommandName": "Get-PnPSiteDesignRights", + "Id": 659 }, { - "CommandName": "Get-PnPSiteDesignRun", + "Command": "Get-PnPSiteDesignRun", "Rank": 1, - "Id": 660, - "Command": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesignRun", + "Id": 660 }, { - "CommandName": "Get-PnPSiteDesignRun", + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Rank": 2, - "Id": 661, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" + "CommandName": "Get-PnPSiteDesignRun", + "Id": 661 }, { - "CommandName": "Get-PnPSiteDesignTask", + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "Id": 662, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" + "CommandName": "Get-PnPSiteDesignTask", + "Id": 662 }, { - "CommandName": "Get-PnPSiteDesignTask", + "Command": "Get-PnPSiteDesignTask", "Rank": 2, - "Id": 663, - "Command": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Id": 663 }, { - "CommandName": "Get-PnPSiteDesignTask", + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 3, - "Id": 664, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "CommandName": "Get-PnPSiteDesignTask", + "Id": 664 }, { - "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup", "Rank": 1, - "Id": 665, - "Command": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Id": 665 }, { - "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 2, - "Id": 666, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "CommandName": "Get-PnPSiteGroup", + "Id": 666 }, { - "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Rank": 3, - "Id": 667, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" + "CommandName": "Get-PnPSiteGroup", + "Id": 667 }, { - "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 4, - "Id": 668, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "CommandName": "Get-PnPSiteGroup", + "Id": 668 }, { - "CommandName": "Get-PnPSitePolicy", + "Command": "Get-PnPSitePolicy", "Rank": 1, - "Id": 669, - "Command": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Id": 669 }, { - "CommandName": "Get-PnPSitePolicy", + "Command": "Get-PnPSitePolicy -AllAvailable", "Rank": 2, - "Id": 670, - "Command": "Get-PnPSitePolicy -AllAvailable" + "CommandName": "Get-PnPSitePolicy", + "Id": 670 }, { - "CommandName": "Get-PnPSitePolicy", + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 3, - "Id": 671, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" + "CommandName": "Get-PnPSitePolicy", + "Id": 671 }, { - "CommandName": "Get-PnPSiteScript", + "Command": "Get-PnPSiteScript", "Rank": 1, - "Id": 672, - "Command": "Get-PnPSiteScript" + "CommandName": "Get-PnPSiteScript", + "Id": 672 }, { - "CommandName": "Get-PnPSiteScript", + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "Id": 673, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "CommandName": "Get-PnPSiteScript", + "Id": 673 }, { - "CommandName": "Get-PnPSiteScriptFromList", + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Rank": 1, - "Id": 674, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 674 }, { - "CommandName": "Get-PnPSiteScriptFromList", + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Rank": 2, - "Id": 675, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 675 }, { - "CommandName": "Get-PnPSiteScriptFromList", + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Rank": 3, - "Id": 676, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 676 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Rank": 1, - "Id": 677, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 677 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Rank": 2, - "Id": 678, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 678 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Rank": 3, - "Id": 679, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 679 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Rank": 4, - "Id": 680, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 680 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Rank": 5, - "Id": 681, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 681 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Rank": 6, - "Id": 682, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 682 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults", "Rank": 1, - "Id": 683, - "Command": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 683 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Rank": 2, - "Id": 684, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 684 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Rank": 3, - "Id": 685, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 685 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Rank": 4, - "Id": 686, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 686 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Rank": 5, - "Id": 687, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 687 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -All", "Rank": 6, - "Id": 688, - "Command": "Get-PnPSiteSearchQueryResults -All" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 688 }, { - "CommandName": "Get-PnPSiteSensitivityLabel", + "Command": "Get-PnPSiteSensitivityLabel", "Rank": 1, - "Id": 689, - "Command": "Get-PnPSiteSensitivityLabel" + "CommandName": "Get-PnPSiteSensitivityLabel", + "Id": 689 }, { - "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp", "Rank": 1, - "Id": 690, - "Command": "Get-PnPSiteTemplate -Out template.pnp" + "CommandName": "Get-PnPSiteTemplate", + "Id": 690 }, { - "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.xml", "Rank": 2, - "Id": 691, - "Command": "Get-PnPSiteTemplate -Out template.xml" + "CommandName": "Get-PnPSiteTemplate", + "Id": 691 }, { - "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.md", "Rank": 3, - "Id": 692, - "Command": "Get-PnPSiteTemplate -Out template.md" + "CommandName": "Get-PnPSiteTemplate", + "Id": 692 }, { - "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Rank": 4, - "Id": 693, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" + "CommandName": "Get-PnPSiteTemplate", + "Id": 693 }, { - "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Rank": 5, - "Id": 694, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" + "CommandName": "Get-PnPSiteTemplate", + "Id": 694 }, { - "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Rank": 6, - "Id": 695, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" + "CommandName": "Get-PnPSiteTemplate", + "Id": 695 }, { - "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Rank": 7, - "Id": 696, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" + "CommandName": "Get-PnPSiteTemplate", + "Id": 696 }, { - "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Rank": 8, - "Id": 697, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" + "CommandName": "Get-PnPSiteTemplate", + "Id": 697 }, { - "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Rank": 9, - "Id": 698, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" + "CommandName": "Get-PnPSiteTemplate", + "Id": 698 }, { - "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Rank": 10, - "Id": 699, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" + "CommandName": "Get-PnPSiteTemplate", + "Id": 699 }, { - "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Rank": 11, - "Id": 700, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" + "CommandName": "Get-PnPSiteTemplate", + "Id": 700 }, { - "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Rank": 12, - "Id": 701, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" + "CommandName": "Get-PnPSiteTemplate", + "Id": 701 }, { - "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", "Rank": 13, - "Id": 702, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" + "CommandName": "Get-PnPSiteTemplate", + "Id": 702 }, { - "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Rank": 14, - "Id": 703, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" + "CommandName": "Get-PnPSiteTemplate", + "Id": 703 }, { - "CommandName": "Get-PnPSiteUserInvitations", + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "Id": 704, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "CommandName": "Get-PnPSiteUserInvitations", + "Id": 704 }, { - "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity", "Rank": 1, - "Id": 705, - "Command": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Id": 705 }, { - "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity -Key MyKey", "Rank": 2, - "Id": 706, - "Command": "Get-PnPStorageEntity -Key MyKey" + "CommandName": "Get-PnPStorageEntity", + "Id": 706 }, { - "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity -Scope Site", "Rank": 3, - "Id": 707, - "Command": "Get-PnPStorageEntity -Scope Site" + "CommandName": "Get-PnPStorageEntity", + "Id": 707 }, { - "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 4, - "Id": 708, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" + "CommandName": "Get-PnPStorageEntity", + "Id": 708 }, { - "CommandName": "Get-PnPStoredCredential", + "Command": "Get-PnPStoredCredential -Name O365", "Rank": 1, - "Id": 709, - "Command": "Get-PnPStoredCredential -Name O365" + "CommandName": "Get-PnPStoredCredential", + "Id": 709 }, { - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "Id": 710, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Id": 710 }, { - "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "Id": 711, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Id": 711 }, { - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Rank": 1, - "Id": 712, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Id": 712 }, { - "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb", "Rank": 1, - "Id": 713, - "Command": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Id": 713 }, { - "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Recurse", "Rank": 2, - "Id": 714, - "Command": "Get-PnPSubWeb -Recurse" + "CommandName": "Get-PnPSubWeb", + "Id": 714 }, { - "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Rank": 3, - "Id": 715, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" + "CommandName": "Get-PnPSubWeb", + "Id": 715 }, { - "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Rank": 4, - "Id": 716, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" + "CommandName": "Get-PnPSubWeb", + "Id": 716 }, { - "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Rank": 5, - "Id": 717, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" + "CommandName": "Get-PnPSubWeb", + "Id": 717 }, { - "CommandName": "Get-PnPSyntexModel", + "Command": "Get-PnPSyntexModel", "Rank": 1, - "Id": 718, - "Command": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Id": 718 }, { - "CommandName": "Get-PnPSyntexModel", + "Command": "Get-PnPSyntexModel -Identity 1", "Rank": 2, - "Id": 719, - "Command": "Get-PnPSyntexModel -Identity 1" + "CommandName": "Get-PnPSyntexModel", + "Id": 719 }, { - "CommandName": "Get-PnPSyntexModel", + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Rank": 3, - "Id": 720, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" + "CommandName": "Get-PnPSyntexModel", + "Id": 720 }, { - "CommandName": "Get-PnPSyntexModelPublication", + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Rank": 1, - "Id": 721, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" + "CommandName": "Get-PnPSyntexModelPublication", + "Id": 721 }, { - "CommandName": "Get-PnPTaxonomyItem", + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Rank": 1, - "Id": 722, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" + "CommandName": "Get-PnPTaxonomyItem", + "Id": 722 }, { - "CommandName": "Get-PnPTeamsApp", + "Command": "Get-PnPTeamsApp", "Rank": 1, - "Id": 723, - "Command": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Id": 723 }, { - "CommandName": "Get-PnPTeamsApp", + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Rank": 2, - "Id": 724, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" + "CommandName": "Get-PnPTeamsApp", + "Id": 724 }, { - "CommandName": "Get-PnPTeamsApp", + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Rank": 3, - "Id": 725, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" + "CommandName": "Get-PnPTeamsApp", + "Id": 725 }, { - "CommandName": "Get-PnPTeamsChannel", + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Rank": 1, - "Id": 726, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" + "CommandName": "Get-PnPTeamsChannel", + "Id": 726 }, { - "CommandName": "Get-PnPTeamsChannel", + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Rank": 2, - "Id": 727, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" + "CommandName": "Get-PnPTeamsChannel", + "Id": 727 }, { - "CommandName": "Get-PnPTeamsChannel", + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 3, - "Id": 728, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "CommandName": "Get-PnPTeamsChannel", + "Id": 728 }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Rank": 1, - "Id": 729, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 729 }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 2, - "Id": 730, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 730 }, { - "CommandName": "Get-PnPTeamsChannelMessage", + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Rank": 1, - "Id": 731, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 731 }, { - "CommandName": "Get-PnPTeamsChannelMessage", + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Rank": 2, - "Id": 732, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 732 }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Rank": 1, - "Id": 733, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 733 }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Rank": 2, - "Id": 734, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 734 }, { - "CommandName": "Get-PnPTeamsChannelUser", + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Rank": 1, - "Id": 735, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 735 }, { - "CommandName": "Get-PnPTeamsChannelUser", + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Rank": 2, - "Id": 736, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 736 }, { - "CommandName": "Get-PnPTeamsChannelUser", + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Rank": 3, - "Id": 737, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 737 }, { - "CommandName": "Get-PnPTeamsChannelUser", + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "Id": 738, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 738 }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Rank": 1, - "Id": 739, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 739 }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Rank": 2, - "Id": 740, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 740 }, { - "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "Rank": 1, - "Id": 741, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" + "CommandName": "Get-PnPTeamsTab", + "Id": 741 }, { - "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "Rank": 2, - "Id": 742, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" + "CommandName": "Get-PnPTeamsTab", + "Id": 742 }, { - "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", "Rank": 3, - "Id": 743, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" + "CommandName": "Get-PnPTeamsTab", + "Id": 743 }, { - "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Rank": 4, - "Id": 744, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" + "CommandName": "Get-PnPTeamsTab", + "Id": 744 }, { - "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Rank": 5, - "Id": 745, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" + "CommandName": "Get-PnPTeamsTab", + "Id": 745 }, { - "CommandName": "Get-PnPTeamsTag", + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "Id": 746, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "CommandName": "Get-PnPTeamsTag", + "Id": 746 }, { - "CommandName": "Get-PnPTeamsTag", + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 2, - "Id": 747, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "CommandName": "Get-PnPTeamsTag", + "Id": 747 }, { - "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam", "Rank": 1, - "Id": 748, - "Command": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Id": 748 }, { - "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Rank": 2, - "Id": 749, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" + "CommandName": "Get-PnPTeamsTeam", + "Id": 749 }, { - "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Rank": 3, - "Id": 750, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" + "CommandName": "Get-PnPTeamsTeam", + "Id": 750 }, { - "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Rank": 4, - "Id": 751, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" + "CommandName": "Get-PnPTeamsTeam", + "Id": 751 }, { - "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "Id": 752, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" + "CommandName": "Get-PnPTeamsTeam", + "Id": 752 }, { - "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam", "Rank": 1, - "Id": 753, - "Command": "Get-PnPTeamsUser -Team MyTeam" + "CommandName": "Get-PnPTeamsUser", + "Id": 753 }, { - "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Rank": 2, - "Id": 754, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" + "CommandName": "Get-PnPTeamsUser", + "Id": 754 }, { - "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Rank": 3, - "Id": 755, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" + "CommandName": "Get-PnPTeamsUser", + "Id": 755 }, { - "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Rank": 4, - "Id": 756, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" + "CommandName": "Get-PnPTeamsUser", + "Id": 756 }, { - "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Command": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, - "Id": 757, - "Command": "Get-PnPTemporarilyDisableAppBar" + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Id": 757 }, { - "CommandName": "Get-PnPTenant", + "Command": "Get-PnPTenant", "Rank": 1, - "Id": 758, - "Command": "Get-PnPTenant" + "CommandName": "Get-PnPTenant", + "Id": 758 }, { - "CommandName": "Get-PnPTenantAppCatalogUrl", + "Command": "Get-PnPTenantAppCatalogUrl", "Rank": 1, - "Id": 759, - "Command": "Get-PnPTenantAppCatalogUrl" + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Id": 759 }, { - "CommandName": "Get-PnPTenantCdnEnabled", + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Rank": 1, - "Id": 760, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public" + "CommandName": "Get-PnPTenantCdnEnabled", + "Id": 760 }, { - "CommandName": "Get-PnPTenantCdnOrigin", + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Rank": 1, - "Id": 761, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public" + "CommandName": "Get-PnPTenantCdnOrigin", + "Id": 761 }, { - "CommandName": "Get-PnPTenantCdnPolicies", + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Rank": 1, - "Id": 762, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public" + "CommandName": "Get-PnPTenantCdnPolicies", + "Id": 762 }, { - "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite", "Rank": 1, - "Id": 763, - "Command": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 763 }, { - "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 2, - "Id": 764, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 764 }, { - "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Rank": 3, - "Id": 765, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 765 }, { - "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Rank": 4, - "Id": 766, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 766 }, { - "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId", "Rank": 1, - "Id": 767, - "Command": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Id": 767 }, { - "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId contoso", "Rank": 2, - "Id": 768, - "Command": "Get-PnPTenantId contoso" + "CommandName": "Get-PnPTenantId", + "Id": 768 }, { - "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Rank": 3, - "Id": 769, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" + "CommandName": "Get-PnPTenantId", + "Id": 769 }, { - "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Rank": 4, - "Id": 770, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" + "CommandName": "Get-PnPTenantId", + "Id": 770 }, { - "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Rank": 1, - "Id": 771, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" + "CommandName": "Get-PnPTenantInfo", + "Id": 771 }, { - "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Rank": 2, - "Id": 772, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" + "CommandName": "Get-PnPTenantInfo", + "Id": 772 }, { - "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo", "Rank": 3, - "Id": 773, - "Command": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Id": 773 }, { - "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo -CurrentTenant", "Rank": 4, - "Id": 774, - "Command": "Get-PnPTenantInfo -CurrentTenant" + "CommandName": "Get-PnPTenantInfo", + "Id": 774 }, { - "CommandName": "Get-PnPTenantInstance", + "Command": "Get-PnPTenantInstance", "Rank": 1, - "Id": 775, - "Command": "Get-PnPTenantInstance" + "CommandName": "Get-PnPTenantInstance", + "Id": 775 }, { - "CommandName": "Get-PnPTenantRecycleBinItem", + "Command": "Get-PnPTenantRecycleBinItem", "Rank": 1, - "Id": 776, - "Command": "Get-PnPTenantRecycleBinItem" + "CommandName": "Get-PnPTenantRecycleBinItem", + "Id": 776 }, { - "CommandName": "Get-PnPTenantSequence", + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Rank": 1, - "Id": 777, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject" + "CommandName": "Get-PnPTenantSequence", + "Id": 777 }, { - "CommandName": "Get-PnPTenantSequence", + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Rank": 2, - "Id": 778, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" + "CommandName": "Get-PnPTenantSequence", + "Id": 778 }, { - "CommandName": "Get-PnPTenantSequenceSite", + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Rank": 1, - "Id": 779, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 779 }, { - "CommandName": "Get-PnPTenantSequenceSite", + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Rank": 2, - "Id": 780, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 780 }, { - "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite", "Rank": 1, - "Id": 781, - "Command": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 781 }, { - "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Detailed", "Rank": 2, - "Id": 782, - "Command": "Get-PnPTenantSite -Detailed" + "CommandName": "Get-PnPTenantSite", + "Id": 782 }, { - "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Rank": 3, - "Id": 783, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites" + "CommandName": "Get-PnPTenantSite", + "Id": 783 }, { - "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Rank": 4, - "Id": 784, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" + "CommandName": "Get-PnPTenantSite", + "Id": 784 }, { - "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Rank": 5, - "Id": 785, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" + "CommandName": "Get-PnPTenantSite", + "Id": 785 }, { - "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Rank": 6, - "Id": 786, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" + "CommandName": "Get-PnPTenantSite", + "Id": 786 }, { - "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Rank": 7, - "Id": 787, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" + "CommandName": "Get-PnPTenantSite", + "Id": 787 }, { - "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Rank": 8, - "Id": 788, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" + "CommandName": "Get-PnPTenantSite", + "Id": 788 }, { - "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Rank": 9, - "Id": 789, - "Command": "Get-PnPTenantSite -GroupIdDefined $true" + "CommandName": "Get-PnPTenantSite", + "Id": 789 }, { - "CommandName": "Get-PnPTenantSyncClientRestriction", + "Command": "Get-PnPTenantSyncClientRestriction", "Rank": 1, - "Id": 790, - "Command": "Get-PnPTenantSyncClientRestriction" + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Id": 790 }, { - "CommandName": "Get-PnPTenantTemplate", + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Rank": 1, - "Id": 791, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" + "CommandName": "Get-PnPTenantTemplate", + "Id": 791 }, { - "CommandName": "Get-PnPTenantTemplate", + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "Rank": 2, - "Id": 792, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" + "CommandName": "Get-PnPTenantTemplate", + "Id": 792 }, { - "CommandName": "Get-PnPTenantTemplate", + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Rank": 3, - "Id": 793, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" + "CommandName": "Get-PnPTenantTemplate", + "Id": 793 }, { - "CommandName": "Get-PnPTenantTheme", + "Command": "Get-PnPTenantTheme", "Rank": 1, - "Id": 794, - "Command": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Id": 794 }, { - "CommandName": "Get-PnPTenantTheme", + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 2, - "Id": 795, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" + "CommandName": "Get-PnPTenantTheme", + "Id": 795 }, { - "CommandName": "Get-PnPTenantTheme", + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Rank": 3, - "Id": 796, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" + "CommandName": "Get-PnPTenantTheme", + "Id": 796 }, { - "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 1, - "Id": 797, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" + "CommandName": "Get-PnPTerm", + "Id": 797 }, { - "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "Id": 798, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "CommandName": "Get-PnPTerm", + "Id": 798 }, { - "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "Id": 799, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" + "CommandName": "Get-PnPTerm", + "Id": 799 }, { - "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Rank": 4, - "Id": 800, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" + "CommandName": "Get-PnPTerm", + "Id": 800 }, { - "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Rank": 5, - "Id": 801, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" + "CommandName": "Get-PnPTerm", + "Id": 801 }, { - "CommandName": "Get-PnPTermGroup", + "Command": "Get-PnPTermGroup", "Rank": 1, - "Id": 802, - "Command": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Id": 802 }, { - "CommandName": "Get-PnPTermGroup", + "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Rank": 2, - "Id": 803, - "Command": "Get-PnPTermGroup -Identity \"Departments\"" + "CommandName": "Get-PnPTermGroup", + "Id": 803 }, { - "CommandName": "Get-PnPTermGroup", + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Rank": 3, - "Id": 804, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" + "CommandName": "Get-PnPTermGroup", + "Id": 804 }, { - "CommandName": "Get-PnPTermLabel", + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Rank": 1, - "Id": 805, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" + "CommandName": "Get-PnPTermLabel", + "Id": 805 }, { - "CommandName": "Get-PnPTermLabel", + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Rank": 2, - "Id": 806, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" + "CommandName": "Get-PnPTermLabel", + "Id": 806 }, { - "CommandName": "Get-PnPTermLabel", + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "Id": 807, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "CommandName": "Get-PnPTermLabel", + "Id": 807 }, { - "CommandName": "Get-PnPTermSet", + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Rank": 1, - "Id": 808, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" + "CommandName": "Get-PnPTermSet", + "Id": 808 }, { - "CommandName": "Get-PnPTermSet", + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "Id": 809, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" + "CommandName": "Get-PnPTermSet", + "Id": 809 }, { - "CommandName": "Get-PnPTermSet", + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Rank": 3, - "Id": 810, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" + "CommandName": "Get-PnPTermSet", + "Id": 810 }, { - "CommandName": "Get-PnPTheme", + "Command": "Get-PnPTheme", "Rank": 1, - "Id": 811, - "Command": "Get-PnPTheme" + "CommandName": "Get-PnPTheme", + "Id": 811 }, { - "CommandName": "Get-PnPTheme", + "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Rank": 2, - "Id": 812, - "Command": "Get-PnPTheme -DetectCurrentComposedLook" + "CommandName": "Get-PnPTheme", + "Id": 812 }, { - "CommandName": "Get-PnPTimeZoneId", + "Command": "Get-PnPTimeZoneId", "Rank": 1, - "Id": 813, - "Command": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTimeZoneId", + "Id": 813 }, { - "CommandName": "Get-PnPTimeZoneId", + "Command": "Get-PnPTimeZoneId -Match Stockholm", "Rank": 2, - "Id": 814, - "Command": "Get-PnPTimeZoneId -Match Stockholm" + "CommandName": "Get-PnPTimeZoneId", + "Id": 814 }, { - "CommandName": "Get-PnPUnfurlLink", + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Rank": 1, - "Id": 815, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" + "CommandName": "Get-PnPUnfurlLink", + "Id": 815 }, { - "CommandName": "Get-PnPUnifiedAuditLog", + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Rank": 1, - "Id": 816, - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" + "CommandName": "Get-PnPUnifiedAuditLog", + "Id": 816 }, { - "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus", "Rank": 1, - "Id": 817, - "Command": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 817 }, { - "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Rank": 2, - "Id": 818, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 818 }, { - "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus -JobId ", "Rank": 3, - "Id": 819, - "Command": "Get-PnPUPABulkImportStatus -JobId " + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 819 }, { - "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "Rank": 4, - "Id": 820, - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 820 }, { - "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser", "Rank": 1, - "Id": 821, - "Command": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 821 }, { - "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -Identity 23", "Rank": 2, - "Id": 822, - "Command": "Get-PnPUser -Identity 23" + "CommandName": "Get-PnPUser", + "Id": 822 }, { - "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Rank": 3, - "Id": 823, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" + "CommandName": "Get-PnPUser", + "Id": 823 }, { - "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Rank": 4, - "Id": 824, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" + "CommandName": "Get-PnPUser", + "Id": 824 }, { - "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -WithRightsAssigned", "Rank": 5, - "Id": 825, - "Command": "Get-PnPUser -WithRightsAssigned" + "CommandName": "Get-PnPUser", + "Id": 825 }, { - "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Rank": 6, - "Id": 826, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" + "CommandName": "Get-PnPUser", + "Id": 826 }, { - "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Rank": 7, - "Id": 827, - "Command": "Get-PnPUser -WithRightsAssignedDetailed" + "CommandName": "Get-PnPUser", + "Id": 827 }, { - "CommandName": "Get-PnPUserOneDriveQuota", + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Rank": 1, - "Id": 828, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" + "CommandName": "Get-PnPUserOneDriveQuota", + "Id": 828 }, { - "CommandName": "Get-PnPUserProfileProperty", + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Rank": 1, - "Id": 829, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" + "CommandName": "Get-PnPUserProfileProperty", + "Id": 829 }, { - "CommandName": "Get-PnPUserProfileProperty", + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Rank": 2, - "Id": 830, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" + "CommandName": "Get-PnPUserProfileProperty", + "Id": 830 }, { - "CommandName": "Get-PnPUserProfileProperty", + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Rank": 3, - "Id": 831, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" + "CommandName": "Get-PnPUserProfileProperty", + "Id": 831 }, { - "CommandName": "Get-PnPView", + "Command": "Get-PnPView -List \"Demo List\"", "Rank": 1, - "Id": 832, - "Command": "Get-PnPView -List \"Demo List\"" + "CommandName": "Get-PnPView", + "Id": 832 }, { - "CommandName": "Get-PnPView", + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Rank": 2, - "Id": 833, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" + "CommandName": "Get-PnPView", + "Id": 833 }, { - "CommandName": "Get-PnPView", + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Rank": 3, - "Id": 834, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" + "CommandName": "Get-PnPView", + "Id": 834 }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Command": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, - "Id": 835, - "Command": "Get-PnPVivaConnectionsDashboardACE" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 835 }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 2, - "Id": 836, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 836 }, { - "CommandName": "Get-PnPWeb", + "Command": "Get-PnPWeb", "Rank": 1, - "Id": 837, - "Command": "Get-PnPWeb" + "CommandName": "Get-PnPWeb", + "Id": 837 }, { - "CommandName": "Get-PnPWebHeader", + "Command": "Get-PnPWebHeader", "Rank": 1, - "Id": 838, - "Command": "Get-PnPWebHeader" + "CommandName": "Get-PnPWebHeader", + "Id": 838 }, { - "CommandName": "Get-PnPWebhookSubscriptions", + "Command": "Get-PnPWebhookSubscriptions -List MyList", "Rank": 1, - "Id": 839, - "Command": "Get-PnPWebhookSubscriptions -List MyList" + "CommandName": "Get-PnPWebhookSubscriptions", + "Id": 839 }, { - "CommandName": "Get-PnPWebPart", + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Rank": 1, - "Id": 840, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" + "CommandName": "Get-PnPWebPart", + "Id": 840 }, { - "CommandName": "Get-PnPWebPart", + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "Id": 841, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "CommandName": "Get-PnPWebPart", + "Id": 841 }, { - "CommandName": "Get-PnPWebPartProperty", + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "Rank": 1, - "Id": 842, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" + "CommandName": "Get-PnPWebPartProperty", + "Id": 842 }, { - "CommandName": "Get-PnPWebPartProperty", + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Rank": 2, - "Id": 843, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" + "CommandName": "Get-PnPWebPartProperty", + "Id": 843 }, { - "CommandName": "Get-PnPWebPartXml", + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "Id": 844, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "CommandName": "Get-PnPWebPartXml", + "Id": 844 }, { - "CommandName": "Get-PnPWebTemplates", + "Command": "Get-PnPWebTemplates", "Rank": 1, - "Id": 845, - "Command": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Id": 845 }, { - "CommandName": "Get-PnPWebTemplates", + "Command": "Get-PnPWebTemplates -LCID 1033", "Rank": 2, - "Id": 846, - "Command": "Get-PnPWebTemplates -LCID 1033" + "CommandName": "Get-PnPWebTemplates", + "Id": 846 }, { - "CommandName": "Get-PnPWebTemplates", + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Rank": 3, - "Id": 847, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" + "CommandName": "Get-PnPWebTemplates", + "Id": 847 }, { - "CommandName": "Get-PnPWikiPageContent", + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Rank": 1, - "Id": 848, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" + "CommandName": "Get-PnPWikiPageContent", + "Id": 848 }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "Rank": 1, - "Id": 849, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 849 }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "Id": 850, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 850 }, { - "CommandName": "Grant-PnPHubSiteRights", + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "Id": 851, - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "CommandName": "Grant-PnPHubSiteRights", + "Id": 851 }, { - "CommandName": "Grant-PnPSiteDesignRights", + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "Id": 852, - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "CommandName": "Grant-PnPSiteDesignRights", + "Id": 852 }, { - "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "Id": 853, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Id": 853 }, { - "CommandName": "Import-PnPTaxonomy", + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Rank": 1, - "Id": 854, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" + "CommandName": "Import-PnPTaxonomy", + "Id": 854 }, { - "CommandName": "Import-PnPTaxonomy", + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Rank": 2, - "Id": 855, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" + "CommandName": "Import-PnPTaxonomy", + "Id": 855 }, { - "CommandName": "Import-PnPTaxonomy", + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Rank": 3, - "Id": 856, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" + "CommandName": "Import-PnPTaxonomy", + "Id": 856 }, { - "CommandName": "Import-PnPTermGroupFromXml", + "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Rank": 1, - "Id": 857, - "Command": "Import-PnPTermGroupFromXml -Xml $xml" + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 857 }, { - "CommandName": "Import-PnPTermGroupFromXml", + "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Rank": 2, - "Id": 858, - "Command": "Import-PnPTermGroupFromXml -Path input.xml" + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 858 }, { - "CommandName": "Import-PnPTermSet", + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Rank": 1, - "Id": 859, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" + "CommandName": "Import-PnPTermSet", + "Id": 859 }, { - "CommandName": "Import-PnPTermSet", + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", "Rank": 2, - "Id": 860, - "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": 860 }, { - "CommandName": "Import-PnPTermSet", + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", "Rank": 3, - "Id": 861, - "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": 861 }, { - "CommandName": "Install-PnPApp", + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 862, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "CommandName": "Install-PnPApp", + "Id": 862 }, { - "CommandName": "Install-PnPApp", + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 863, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "CommandName": "Install-PnPApp", + "Id": 863 }, { - "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "Rank": 1, - "Id": 864, - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 864 }, { - "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Rank": 2, - "Id": 865, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 865 }, { - "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Rank": 3, - "Id": 866, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 866 }, { - "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Rank": 4, - "Id": 867, - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 867 }, { - "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Rank": 5, - "Id": 868, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 868 }, { - "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", "Rank": 6, - "Id": 869, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 869 }, { - "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\"", "Rank": 7, - "Id": 870, - "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": 870 }, { - "CommandName": "Invoke-PnPListDesign", + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 871, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "CommandName": "Invoke-PnPListDesign", + "Id": 871 }, { - "CommandName": "Invoke-PnPListDesign", + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "Id": 872, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "CommandName": "Invoke-PnPListDesign", + "Id": 872 }, { - "CommandName": "Invoke-PnPQuery", + "Command": "Invoke-PnPQuery -RetryCount 5", "Rank": 1, - "Id": 873, - "Command": "Invoke-PnPQuery -RetryCount 5" + "CommandName": "Invoke-PnPQuery", + "Id": 873 }, { - "CommandName": "Invoke-PnPSiteDesign", + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 874, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "CommandName": "Invoke-PnPSiteDesign", + "Id": 874 }, { - "CommandName": "Invoke-PnPSiteDesign", + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "Id": 875, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "CommandName": "Invoke-PnPSiteDesign", + "Id": 875 }, { - "CommandName": "Invoke-PnPSiteScript", + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Rank": 1, - "Id": 876, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" + "CommandName": "Invoke-PnPSiteScript", + "Id": 876 }, { - "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", "Rank": 1, - "Id": 877, - "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": 877 }, { - "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", "Rank": 2, - "Id": 878, - "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": 878 }, { - "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", "Rank": 3, - "Id": 879, - "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": 879 }, { - "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Rank": 1, - "Id": 880, - "Command": "Invoke-PnPSiteTemplate -Path template.xml" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 880 }, { - "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Rank": 2, - "Id": 881, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 881 }, { - "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "Id": 882, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 882 }, { - "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Rank": 4, - "Id": 883, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 883 }, { - "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Rank": 5, - "Id": 884, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 884 }, { - "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Rank": 6, - "Id": 885, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 885 }, { - "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Rank": 7, - "Id": 886, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 886 }, { - "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Rank": 8, - "Id": 887, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 887 }, { - "CommandName": "Invoke-PnPSPRestMethod", + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Rank": 1, - "Id": 888, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web" + "CommandName": "Invoke-PnPSPRestMethod", + "Id": 888 }, { - "CommandName": "Invoke-PnPTenantTemplate", + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Rank": 1, - "Id": 889, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 889 }, { - "CommandName": "Invoke-PnPTenantTemplate", + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Rank": 2, - "Id": 890, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 890 }, { - "CommandName": "Invoke-PnPTenantTemplate", + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "Id": 891, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 891 }, { - "CommandName": "Invoke-PnPWebAction", + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Rank": 1, - "Id": 892, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" + "CommandName": "Invoke-PnPWebAction", + "Id": 892 }, { - "CommandName": "Invoke-PnPWebAction", + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Rank": 2, - "Id": 893, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" + "CommandName": "Invoke-PnPWebAction", + "Id": 893 }, { - "CommandName": "Measure-PnPList", + "Command": "Measure-PnPList \"Documents\"", "Rank": 1, - "Id": 894, - "Command": "Measure-PnPList \"Documents\"" + "CommandName": "Measure-PnPList", + "Id": 894 }, { - "CommandName": "Measure-PnPList", + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Rank": 2, - "Id": 895, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" + "CommandName": "Measure-PnPList", + "Id": 895 }, { - "CommandName": "Measure-PnPWeb", + "Command": "Measure-PnPWeb", "Rank": 1, - "Id": 896, - "Command": "Measure-PnPWeb" + "CommandName": "Measure-PnPWeb", + "Id": 896 }, { - "CommandName": "Measure-PnPWeb", + "Command": "Measure-PnPWeb $web -Recursive", "Rank": 2, - "Id": 897, - "Command": "Measure-PnPWeb $web -Recursive" + "CommandName": "Measure-PnPWeb", + "Id": 897 }, { - "CommandName": "Move-PnPFile", + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Rank": 1, - "Id": 898, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" + "CommandName": "Move-PnPFile", + "Id": 898 }, { - "CommandName": "Move-PnPFile", + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Rank": 2, - "Id": 899, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" + "CommandName": "Move-PnPFile", + "Id": 899 }, { - "CommandName": "Move-PnPFile", + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 3, - "Id": 900, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "CommandName": "Move-PnPFile", + "Id": 900 }, { - "CommandName": "Move-PnPFile", + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 4, - "Id": 901, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "CommandName": "Move-PnPFile", + "Id": 901 }, { - "CommandName": "Move-PnPFolder", + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Rank": 1, - "Id": 902, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" + "CommandName": "Move-PnPFolder", + "Id": 902 }, { - "CommandName": "Move-PnPFolder", + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Rank": 2, - "Id": 903, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" + "CommandName": "Move-PnPFolder", + "Id": 903 }, { - "CommandName": "Move-PnPListItemToRecycleBin", + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "Id": 904, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" + "CommandName": "Move-PnPListItemToRecycleBin", + "Id": 904 }, { - "CommandName": "Move-PnPPageComponent", + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "Rank": 1, - "Id": 905, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" + "CommandName": "Move-PnPPageComponent", + "Id": 905 }, { - "CommandName": "Move-PnPPageComponent", + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "Rank": 2, - "Id": 906, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" + "CommandName": "Move-PnPPageComponent", + "Id": 906 }, { - "CommandName": "Move-PnPPageComponent", + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "Rank": 3, - "Id": 907, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" + "CommandName": "Move-PnPPageComponent", + "Id": 907 }, { - "CommandName": "Move-PnPPageComponent", + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Rank": 4, - "Id": 908, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" + "CommandName": "Move-PnPPageComponent", + "Id": 908 }, { - "CommandName": "Move-PnpRecycleBinItem", + "Command": "Move-PnPRecycleBinItem", "Rank": 1, - "Id": 909, - "Command": "Move-PnPRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Id": 909 }, { - "CommandName": "Move-PnpRecycleBinItem", + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Rank": 2, - "Id": 910, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" + "CommandName": "Move-PnpRecycleBinItem", + "Id": 910 }, { - "CommandName": "Move-PnpRecycleBinItem", + "Command": "Move-PnPRecycleBinItem -Force", "Rank": 3, - "Id": 911, - "Command": "Move-PnPRecycleBinItem -Force" + "CommandName": "Move-PnpRecycleBinItem", + "Id": 911 }, { - "CommandName": "Move-PnPTerm", + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", "Rank": 1, - "Id": 912, - "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": 912 }, { - "CommandName": "Move-PnPTerm", + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Rank": 2, - "Id": 913, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" + "CommandName": "Move-PnPTerm", + "Id": 913 }, { - "CommandName": "Move-PnPTerm", + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Rank": 3, - "Id": 914, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" + "CommandName": "Move-PnPTerm", + "Id": 914 }, { - "CommandName": "Move-PnPTermSet", + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", "Rank": 1, - "Id": 915, - "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": 915 }, { - "CommandName": "Move-PnPTermSet", + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Rank": 2, - "Id": 916, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" + "CommandName": "Move-PnPTermSet", + "Id": 916 }, { - "CommandName": "New-PnPAzureADGroup", + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "Id": 917, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" + "CommandName": "New-PnPAzureADGroup", + "Id": 917 }, { - "CommandName": "New-PnPAzureADGroup", + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Rank": 2, - "Id": 918, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" + "CommandName": "New-PnPAzureADGroup", + "Id": 918 }, { - "CommandName": "New-PnPAzureADGroup", + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Rank": 3, - "Id": 919, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" + "CommandName": "New-PnPAzureADGroup", + "Id": 919 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Rank": 1, - "Id": 920, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 920 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Rank": 2, - "Id": 921, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 921 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Rank": 3, - "Id": 922, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 922 }, { - "CommandName": "New-PnPAzureCertificate", + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Rank": 1, - "Id": 923, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" + "CommandName": "New-PnPAzureCertificate", + "Id": 923 }, { - "CommandName": "New-PnPAzureCertificate", + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Rank": 2, - "Id": 924, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" + "CommandName": "New-PnPAzureCertificate", + "Id": 924 }, { - "CommandName": "New-PnPAzureCertificate", + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "Rank": 3, - "Id": 925, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" + "CommandName": "New-PnPAzureCertificate", + "Id": 925 }, { - "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()", "Rank": 1, - "Id": 926, - "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": 926 }, { - "CommandName": "New-PnPGraphSubscription", + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", "Rank": 2, - "Id": 927, - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" + "CommandName": "New-PnPGraphSubscription", + "Id": 927 }, { - "CommandName": "New-PnPGroup", + "Command": "New-PnPGroup -Title \"My Site Users\"", "Rank": 1, - "Id": 928, - "Command": "New-PnPGroup -Title \"My Site Users\"" + "CommandName": "New-PnPGroup", + "Id": 928 }, { - "CommandName": "New-PnPList", + "Command": "New-PnPList -Title Announcements -Template Announcements", "Rank": 1, - "Id": 929, - "Command": "New-PnPList -Title Announcements -Template Announcements" + "CommandName": "New-PnPList", + "Id": 929 }, { - "CommandName": "New-PnPList", + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Rank": 2, - "Id": 930, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" + "CommandName": "New-PnPList", + "Id": 930 }, { - "CommandName": "New-PnPList", + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Rank": 3, - "Id": 931, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" + "CommandName": "New-PnPList", + "Id": 931 }, { - "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "Id": 932, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 932 }, { - "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "Rank": 2, - "Id": 933, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 933 }, { - "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Rank": 3, - "Id": 934, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 934 }, { - "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Rank": 4, - "Id": 935, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 935 }, { - "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 5, - "Id": 936, - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 936 }, { - "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "Id": 937, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 937 }, { - "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "Rank": 7, - "Id": 938, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 938 }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", "Rank": 1, - "Id": 939, - "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": 939 }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Rank": 2, - "Id": 940, - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Id": 940 }, { - "CommandName": "New-PnPPersonalSite", + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Rank": 1, - "Id": 941, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" + "CommandName": "New-PnPPersonalSite", + "Id": 941 }, { - "CommandName": "New-PnPPlannerPlan", + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Rank": 1, - "Id": 942, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" + "CommandName": "New-PnPPlannerPlan", + "Id": 942 }, { - "CommandName": "New-PnPSdnProvider", + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Rank": 1, - "Id": 943, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" + "CommandName": "New-PnPSdnProvider", + "Id": 943 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 1, - "Id": 944, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" + "CommandName": "New-PnPSite", + "Id": 944 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "Rank": 2, - "Id": 945, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" + "CommandName": "New-PnPSite", + "Id": 945 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "Rank": 3, - "Id": 946, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" + "CommandName": "New-PnPSite", + "Id": 946 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 4, - "Id": 947, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" + "CommandName": "New-PnPSite", + "Id": 947 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 5, - "Id": 948, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" + "CommandName": "New-PnPSite", + "Id": 948 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 6, - "Id": 949, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" + "CommandName": "New-PnPSite", + "Id": 949 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Rank": 7, - "Id": 950, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" + "CommandName": "New-PnPSite", + "Id": 950 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Rank": 8, - "Id": 951, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" + "CommandName": "New-PnPSite", + "Id": 951 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Rank": 9, - "Id": 952, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" + "CommandName": "New-PnPSite", + "Id": 952 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Rank": 10, - "Id": 953, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" + "CommandName": "New-PnPSite", + "Id": 953 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 11, - "Id": 954, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" + "CommandName": "New-PnPSite", + "Id": 954 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "Rank": 12, - "Id": 955, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" + "CommandName": "New-PnPSite", + "Id": 955 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 13, - "Id": 956, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" + "CommandName": "New-PnPSite", + "Id": 956 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 14, - "Id": 957, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" + "CommandName": "New-PnPSite", + "Id": 957 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 15, - "Id": 958, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" + "CommandName": "New-PnPSite", + "Id": 958 }, { - "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Rank": 16, - "Id": 959, - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" + "CommandName": "New-PnPSite", + "Id": 959 }, { - "CommandName": "New-PnPSiteCollectionTermStore", + "Command": "New-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 960, - "Command": "New-PnPSiteCollectionTermStore" + "CommandName": "New-PnPSiteCollectionTermStore", + "Id": 960 }, { - "CommandName": "New-PnPSiteGroup", + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "Rank": 1, - "Id": 961, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" + "CommandName": "New-PnPSiteGroup", + "Id": 961 }, { - "CommandName": "New-PnPSiteGroup", + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Rank": 2, - "Id": 962, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" + "CommandName": "New-PnPSiteGroup", + "Id": 962 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Rank": 1, - "Id": 963, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 963 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Rank": 2, - "Id": 964, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 964 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Rank": 3, - "Id": 965, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 965 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "Rank": 4, - "Id": 966, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 966 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "Rank": 5, - "Id": 967, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 967 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 6, - "Id": 968, - "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": 968 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Rank": 7, - "Id": 969, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 969 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Rank": 8, - "Id": 970, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 970 }, { - "CommandName": "New-PnPTeamsApp", + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Rank": 1, - "Id": 971, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" + "CommandName": "New-PnPTeamsApp", + "Id": 971 }, { - "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Rank": 1, - "Id": 972, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" + "CommandName": "New-PnPTeamsTeam", + "Id": 972 }, { - "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -GroupId $groupId", "Rank": 2, - "Id": 973, - "Command": "New-PnPTeamsTeam -GroupId $groupId" + "CommandName": "New-PnPTeamsTeam", + "Id": 973 }, { - "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "Rank": 3, - "Id": 974, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" + "CommandName": "New-PnPTeamsTeam", + "Id": 974 }, { - "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 4, - "Id": 975, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "CommandName": "New-PnPTeamsTeam", + "Id": 975 }, { - "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", "Rank": 5, - "Id": 976, - "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": 976 }, { - "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\"", "Rank": 6, - "Id": 977, - "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": 977 }, { - "CommandName": "New-PnPTenantSite", + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", "Rank": 1, - "Id": 978, - "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": 978 }, { - "CommandName": "New-PnPTenantSite", + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Rank": 2, - "Id": 979, - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" + "CommandName": "New-PnPTenantSite", + "Id": 979 }, { - "CommandName": "New-PnPTerm", + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Rank": 1, - "Id": 980, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" + "CommandName": "New-PnPTerm", + "Id": 980 }, { - "CommandName": "New-PnPTerm", + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "Id": 981, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "CommandName": "New-PnPTerm", + "Id": 981 }, { - "CommandName": "New-PnPTermGroup", + "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Rank": 1, - "Id": 982, - "Command": "New-PnPTermGroup -GroupName \"Countries\"" + "CommandName": "New-PnPTermGroup", + "Id": 982 }, { - "CommandName": "New-PnPTermLabel", + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Rank": 1, - "Id": 983, - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" + "CommandName": "New-PnPTermLabel", + "Id": 983 }, { - "CommandName": "New-PnPTermSet", + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Rank": 1, - "Id": 984, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" + "CommandName": "New-PnPTermSet", + "Id": 984 }, { - "CommandName": "New-PnPUPABulkImportJob", + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "Rank": 1, - "Id": 985, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" + "CommandName": "New-PnPUPABulkImportJob", + "Id": 985 }, { - "CommandName": "New-PnPUPABulkImportJob", + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", "Rank": 2, - "Id": 986, - "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": 986 }, { - "CommandName": "New-PnPUser", + "Command": "New-PnPUser -LoginName user@company.com", "Rank": 1, - "Id": 987, - "Command": "New-PnPUser -LoginName user@company.com" + "CommandName": "New-PnPUser", + "Id": 987 }, { - "CommandName": "New-PnPWeb", + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Rank": 1, - "Id": 988, - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" + "CommandName": "New-PnPWeb", + "Id": 988 }, { - "CommandName": "Publish-PnPApp", + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 1, - "Id": 989, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "CommandName": "Publish-PnPApp", + "Id": 989 }, { - "CommandName": "Publish-PnPApp", + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Rank": 2, - "Id": 990, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" + "CommandName": "Publish-PnPApp", + "Id": 990 }, { - "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", "Rank": 1, - "Id": 991, - "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": 991 }, { - "CommandName": "Publish-PnPContentType", + "Command": "Publish-PnPContentType -ContentType 0x0101", "Rank": 1, - "Id": 992, - "Command": "Publish-PnPContentType -ContentType 0x0101" + "CommandName": "Publish-PnPContentType", + "Id": 992 }, { - "CommandName": "Publish-PnPSyntexModel", + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "Id": 993, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "CommandName": "Publish-PnPSyntexModel", + "Id": 993 }, { - "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", "Rank": 2, - "Id": 994, - "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": 994 }, { - "CommandName": "Read-PnPSiteTemplate", + "Command": "Read-PnPSiteTemplate -Path template.pnp", "Rank": 1, - "Id": 995, - "Command": "Read-PnPSiteTemplate -Path template.pnp" + "CommandName": "Read-PnPSiteTemplate", + "Id": 995 }, { - "CommandName": "Read-PnPSiteTemplate", + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Rank": 2, - "Id": 996, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" + "CommandName": "Read-PnPSiteTemplate", + "Id": 996 }, { - "CommandName": "Read-PnPSiteTemplate", + "Command": "Read-PnPSiteTemplate -Xml $xml", "Rank": 3, - "Id": 997, - "Command": "Read-PnPSiteTemplate -Xml $xml" + "CommandName": "Read-PnPSiteTemplate", + "Id": 997 }, { - "CommandName": "Read-PnPTenantTemplate", + "Command": "Read-PnPTenantTemplate -Path template.pnp", "Rank": 1, - "Id": 998, - "Command": "Read-PnPTenantTemplate -Path template.pnp" + "CommandName": "Read-PnPTenantTemplate", + "Id": 998 }, { - "CommandName": "Register-PnPAppCatalogSite", + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Rank": 1, - "Id": 999, - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" + "CommandName": "Register-PnPAppCatalogSite", + "Id": 999 }, { - "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\")", "Rank": 1, - "Id": 1000, - "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": 1000 }, { - "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\")", "Rank": 2, - "Id": 1001, - "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": 1001 }, { - "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\")", "Rank": 3, - "Id": 1002, - "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": 1002 }, { - "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\")", "Rank": 4, - "Id": 1003, - "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": 1003 }, { - "CommandName": "Register-PnPAzureADApp", + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Rank": 5, - "Id": 1004, - "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": 1004 }, { - "CommandName": "Register-PnPAzureADApp", + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Rank": 6, - "Id": 1005, - "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": 1005 }, { - "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", "Rank": 7, - "Id": 1006, - "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": 1006 }, { - "CommandName": "Register-PnPHubSite", + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "Id": 1007, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "CommandName": "Register-PnPHubSite", + "Id": 1007 }, { - "CommandName": "Register-PnPHubSite", + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Rank": 2, - "Id": 1008, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" + "CommandName": "Register-PnPHubSite", + "Id": 1008 }, { - "CommandName": "Register-PnPManagementShellAccess", + "Command": "Register-PnPManagementShellAccess", "Rank": 1, - "Id": 1009, - "Command": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1009 }, { - "CommandName": "Register-PnPManagementShellAccess", + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Rank": 2, - "Id": 1010, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1010 }, { - "CommandName": "Register-PnPManagementShellAccess", + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Rank": 3, - "Id": 1011, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1011 }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Rank": 1, - "Id": 1012, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1012 }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Rank": 2, - "Id": 1013, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1013 }, { - "CommandName": "Remove-PnPAlert", + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Rank": 1, - "Id": 1014, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" + "CommandName": "Remove-PnPAlert", + "Id": 1014 }, { - "CommandName": "Remove-PnPAlert", + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 2, - "Id": 1015, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "CommandName": "Remove-PnPAlert", + "Id": 1015 }, { - "CommandName": "Remove-PnPApp", + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 1016, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "CommandName": "Remove-PnPApp", + "Id": 1016 }, { - "CommandName": "Remove-PnPApp", + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 1017, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "CommandName": "Remove-PnPApp", + "Id": 1017 }, { - "CommandName": "Remove-PnPApplicationCustomizer", + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "Id": 1018, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1018 }, { - "CommandName": "Remove-PnPApplicationCustomizer", + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "Id": 1019, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1019 }, { - "CommandName": "Remove-PnPAvailableSiteClassification", + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Rank": 1, - "Id": 1020, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1020 }, { - "CommandName": "Remove-PnPAvailableSiteClassification", + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 2, - "Id": 1021, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1021 }, { - "CommandName": "Remove-PnPAzureADApp", + "Command": "Remove-PnPAzureADApp -Identity MyApp", "Rank": 1, - "Id": 1022, - "Command": "Remove-PnPAzureADApp -Identity MyApp" + "CommandName": "Remove-PnPAzureADApp", + "Id": 1022 }, { - "CommandName": "Remove-PnPAzureADApp", + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 2, - "Id": 1023, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "CommandName": "Remove-PnPAzureADApp", + "Id": 1023 }, { - "CommandName": "Remove-PnPAzureADGroup", + "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Rank": 1, - "Id": 1024, - "Command": "Remove-PnPAzureADGroup -Identity $groupId" + "CommandName": "Remove-PnPAzureADGroup", + "Id": 1024 }, { - "CommandName": "Remove-PnPAzureADGroup", + "Command": "Remove-PnPAzureADGroup -Identity $group", "Rank": 2, - "Id": 1025, - "Command": "Remove-PnPAzureADGroup -Identity $group" + "CommandName": "Remove-PnPAzureADGroup", + "Id": 1025 }, { - "CommandName": "Remove-PnPAzureADGroupMember", + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1026, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "CommandName": "Remove-PnPAzureADGroupMember", + "Id": 1026 }, { - "CommandName": "Remove-PnPAzureADGroupOwner", + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1027, - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "CommandName": "Remove-PnPAzureADGroupOwner", + "Id": 1027 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Rank": 1, - "Id": 1028, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1028 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Rank": 2, - "Id": 1029, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1029 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 3, - "Id": 1030, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1030 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 4, - "Id": 1031, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1031 }, { - "CommandName": "Remove-PnPContentType", + "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Rank": 1, - "Id": 1032, - "Command": "Remove-PnPContentType -Identity \"Project Document\"" + "CommandName": "Remove-PnPContentType", + "Id": 1032 }, { - "CommandName": "Remove-PnPContentType", + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Rank": 2, - "Id": 1033, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" + "CommandName": "Remove-PnPContentType", + "Id": 1033 }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "Id": 1034, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1034 }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "Id": 1035, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1035 }, { - "CommandName": "Remove-PnPContentTypeFromList", + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Rank": 1, - "Id": 1036, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" + "CommandName": "Remove-PnPContentTypeFromList", + "Id": 1036 }, { - "CommandName": "Remove-PnPCustomAction", + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "Id": 1037, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "CommandName": "Remove-PnPCustomAction", + "Id": 1037 }, { - "CommandName": "Remove-PnPCustomAction", + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "Id": 1038, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "CommandName": "Remove-PnPCustomAction", + "Id": 1038 }, { - "CommandName": "Remove-PnPCustomAction", + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Rank": 3, - "Id": 1039, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" + "CommandName": "Remove-PnPCustomAction", + "Id": 1039 }, { - "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "Id": 1040, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Id": 1040 }, { - "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 1, - "Id": 1041, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1041 }, { - "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "Id": 1042, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1042 }, { - "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Rank": 3, - "Id": 1043, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1043 }, { - "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -List ProjectList", "Rank": 4, - "Id": 1044, - "Command": "Remove-PnPEventReceiver -List ProjectList" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1044 }, { - "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver", "Rank": 5, - "Id": 1045, - "Command": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1045 }, { - "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Scope Site", "Rank": 6, - "Id": 1046, - "Command": "Remove-PnPEventReceiver -Scope Site" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1046 }, { - "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Scope Web", "Rank": 7, - "Id": 1047, - "Command": "Remove-PnPEventReceiver -Scope Web" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1047 }, { - "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Scope All", "Rank": 8, - "Id": 1048, - "Command": "Remove-PnPEventReceiver -Scope All" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1048 }, { - "CommandName": "Remove-PnPField", + "Command": "Remove-PnPField -Identity \"Speakers\"", "Rank": 1, - "Id": 1049, - "Command": "Remove-PnPField -Identity \"Speakers\"" + "CommandName": "Remove-PnPField", + "Id": 1049 }, { - "CommandName": "Remove-PnPField", + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "Id": 1050, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "CommandName": "Remove-PnPField", + "Id": 1050 }, { - "CommandName": "Remove-PnPFieldFromContentType", + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "Id": 1051, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1051 }, { - "CommandName": "Remove-PnPFieldFromContentType", + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Rank": 2, - "Id": 1052, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1052 }, { - "CommandName": "Remove-PnPFile", + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Rank": 1, - "Id": 1053, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" + "CommandName": "Remove-PnPFile", + "Id": 1053 }, { - "CommandName": "Remove-PnPFile", + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Rank": 2, - "Id": 1054, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" + "CommandName": "Remove-PnPFile", + "Id": 1054 }, { - "CommandName": "Remove-PnPFile", + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Rank": 3, - "Id": 1055, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" + "CommandName": "Remove-PnPFile", + "Id": 1055 }, { - "CommandName": "Remove-PnPFileFromSiteTemplate", + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Rank": 1, - "Id": 1056, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Id": 1056 }, { - "CommandName": "Remove-PnPFileSharingLink", + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "Id": 1057, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1057 }, { - "CommandName": "Remove-PnPFileSharingLink", + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Rank": 2, - "Id": 1058, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1058 }, { - "CommandName": "Remove-PnPFileVersion", + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "Id": 1059, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "CommandName": "Remove-PnPFileVersion", + "Id": 1059 }, { - "CommandName": "Remove-PnPFileVersion", + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 2, - "Id": 1060, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "CommandName": "Remove-PnPFileVersion", + "Id": 1060 }, { - "CommandName": "Remove-PnPFileVersion", + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Rank": 3, - "Id": 1061, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" + "CommandName": "Remove-PnPFileVersion", + "Id": 1061 }, { - "CommandName": "Remove-PnPFlowOwner", + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "Rank": 1, - "Id": 1062, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" + "CommandName": "Remove-PnPFlowOwner", + "Id": 1062 }, { - "CommandName": "Remove-PnPFlowOwner", + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "Rank": 2, - "Id": 1063, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" + "CommandName": "Remove-PnPFlowOwner", + "Id": 1063 }, { - "CommandName": "Remove-PnPFlowOwner", + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "Rank": 3, - "Id": 1064, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" + "CommandName": "Remove-PnPFlowOwner", + "Id": 1064 }, { - "CommandName": "Remove-PnPFlowOwner", + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "Rank": 4, - "Id": 1065, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" + "CommandName": "Remove-PnPFlowOwner", + "Id": 1065 }, { - "CommandName": "Remove-PnPFolder", + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "Id": 1066, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "CommandName": "Remove-PnPFolder", + "Id": 1066 }, { - "CommandName": "Remove-PnPFolder", + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Rank": 2, - "Id": 1067, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" + "CommandName": "Remove-PnPFolder", + "Id": 1067 }, { - "CommandName": "Remove-PnPFolderSharingLink", + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "Id": 1068, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1068 }, { - "CommandName": "Remove-PnPFolderSharingLink", + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Rank": 2, - "Id": 1069, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1069 }, { - "CommandName": "Remove-PnPGraphSubscription", + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Rank": 1, - "Id": 1070, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" + "CommandName": "Remove-PnPGraphSubscription", + "Id": 1070 }, { - "CommandName": "Remove-PnPGroup", + "Command": "Remove-PnPGroup -Identity \"My Users\"", "Rank": 1, - "Id": 1071, - "Command": "Remove-PnPGroup -Identity \"My Users\"" + "CommandName": "Remove-PnPGroup", + "Id": 1071 }, { - "CommandName": "Remove-PnPGroupMember", + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "Id": 1072, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "CommandName": "Remove-PnPGroupMember", + "Id": 1072 }, { - "CommandName": "Remove-PnPHomeSite", + "Command": "Remove-PnPHomeSite", "Rank": 1, - "Id": 1073, - "Command": "Remove-PnPHomeSite" + "CommandName": "Remove-PnPHomeSite", + "Id": 1073 }, { - "CommandName": "Remove-PnPHubSiteAssociation", + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "Id": 1074, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" + "CommandName": "Remove-PnPHubSiteAssociation", + "Id": 1074 }, { - "CommandName": "Remove-PnPHubToHubAssociation", + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Rank": 1, - "Id": 1075, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1075 }, { - "CommandName": "Remove-PnPHubToHubAssociation", + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Rank": 2, - "Id": 1076, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1076 }, { - "CommandName": "Remove-PnPIndexedProperty", + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Rank": 1, - "Id": 1077, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" + "CommandName": "Remove-PnPIndexedProperty", + "Id": 1077 }, { - "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Rank": 1, - "Id": 1078, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1078 }, { - "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Rank": 2, - "Id": 1079, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1079 }, { - "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Rank": 3, - "Id": 1080, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1080 }, { - "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Scope Site", "Rank": 4, - "Id": 1081, - "Command": "Remove-PnPJavaScriptLink -Scope Site" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1081 }, { - "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Rank": 5, - "Id": 1082, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1082 }, { - "CommandName": "Remove-PnPKnowledgeHubSite", + "Command": "Remove-PnPKnowledgeHubSite", "Rank": 1, - "Id": 1083, - "Command": "Remove-PnPKnowledgeHubSite" + "CommandName": "Remove-PnPKnowledgeHubSite", + "Id": 1083 }, { - "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements", "Rank": 1, - "Id": 1084, - "Command": "Remove-PnPList -Identity Announcements" + "CommandName": "Remove-PnPList", + "Id": 1084 }, { - "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements -Force", "Rank": 2, - "Id": 1085, - "Command": "Remove-PnPList -Identity Announcements -Force" + "CommandName": "Remove-PnPList", + "Id": 1085 }, { - "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements -Recycle", "Rank": 3, - "Id": 1086, - "Command": "Remove-PnPList -Identity Announcements -Recycle" + "CommandName": "Remove-PnPList", + "Id": 1086 }, { - "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Rank": 4, - "Id": 1087, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" + "CommandName": "Remove-PnPList", + "Id": 1087 }, { - "CommandName": "Remove-PnPListDesign", + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 1088, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "CommandName": "Remove-PnPListDesign", + "Id": 1088 }, { - "CommandName": "Remove-PnPListItem", + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "Id": 1089, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" + "CommandName": "Remove-PnPListItem", + "Id": 1089 }, { - "CommandName": "Remove-PnPListItem", + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Rank": 2, - "Id": 1090, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" + "CommandName": "Remove-PnPListItem", + "Id": 1090 }, { - "CommandName": "Remove-PnPListItem", + "Command": "Remove-PnPListItem -List \"Demo List\"", "Rank": 3, - "Id": 1091, - "Command": "Remove-PnPListItem -List \"Demo List\"" + "CommandName": "Remove-PnPListItem", + "Id": 1091 }, { - "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Rank": 1, - "Id": 1092, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1092 }, { - "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "Rank": 2, - "Id": 1093, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1093 }, { - "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Rank": 3, - "Id": 1094, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1094 }, { - "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Rank": 4, - "Id": 1095, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1095 }, { - "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Rank": 5, - "Id": 1096, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1096 }, { - "CommandName": "Remove-PnPListItemVersion", + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "Id": 1097, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "CommandName": "Remove-PnPListItemVersion", + "Id": 1097 }, { - "CommandName": "Remove-PnPListItemVersion", + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "Id": 1098, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "CommandName": "Remove-PnPListItemVersion", + "Id": 1098 }, { - "CommandName": "Remove-PnPMicrosoft365Group", + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Rank": 1, - "Id": 1099, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1099 }, { - "CommandName": "Remove-PnPMicrosoft365Group", + "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Rank": 2, - "Id": 1100, - "Command": "Remove-PnPMicrosoft365Group -Identity $group" + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1100 }, { - "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1101, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Id": 1101 }, { - "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1102, - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Id": 1102 }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Rank": 1, - "Id": 1103, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1103 }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Rank": 2, - "Id": 1104, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1104 }, { - "CommandName": "Remove-PnPNavigationNode", + "Command": "Remove-PnPNavigationNode -Identity 1032", "Rank": 1, - "Id": 1105, - "Command": "Remove-PnPNavigationNode -Identity 1032" + "CommandName": "Remove-PnPNavigationNode", + "Id": 1105 }, { - "CommandName": "Remove-PnPNavigationNode", + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Rank": 2, - "Id": 1106, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" + "CommandName": "Remove-PnPNavigationNode", + "Id": 1106 }, { - "CommandName": "Remove-PnPNavigationNode", + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Rank": 3, - "Id": 1107, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" + "CommandName": "Remove-PnPNavigationNode", + "Id": 1107 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Rank": 1, - "Id": 1108, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1108 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Rank": 2, - "Id": 1109, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1109 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Rank": 3, - "Id": 1110, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1110 }, { - "CommandName": "Remove-PnPOrgNewsSite", + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "Id": 1111, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" + "CommandName": "Remove-PnPOrgNewsSite", + "Id": 1111 }, { - "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage -Identity \"MyPage\"", "Rank": 1, - "Id": 1112, - "Command": "Remove-PnPPage -Identity \"MyPage\"" + "CommandName": "Remove-PnPPage", + "Id": 1112 }, { - "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Rank": 2, - "Id": 1113, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" + "CommandName": "Remove-PnPPage", + "Id": 1113 }, { - "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage $page", "Rank": 3, - "Id": 1114, - "Command": "Remove-PnPPage $page" + "CommandName": "Remove-PnPPage", + "Id": 1114 }, { - "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Rank": 4, - "Id": 1115, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" + "CommandName": "Remove-PnPPage", + "Id": 1115 }, { - "CommandName": "Remove-PnPPageComponent", + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "Id": 1116, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "CommandName": "Remove-PnPPageComponent", + "Id": 1116 }, { - "CommandName": "Remove-PnPPlannerBucket", + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Rank": 1, - "Id": 1117, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" + "CommandName": "Remove-PnPPlannerBucket", + "Id": 1117 }, { - "CommandName": "Remove-PnPPlannerPlan", + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Rank": 1, - "Id": 1118, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" + "CommandName": "Remove-PnPPlannerPlan", + "Id": 1118 }, { - "CommandName": "Remove-PnPPlannerRoster", + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "Id": 1119, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "CommandName": "Remove-PnPPlannerRoster", + "Id": 1119 }, { - "CommandName": "Remove-PnPPlannerRosterMember", + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1120, - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "CommandName": "Remove-PnPPlannerRosterMember", + "Id": 1120 }, { - "CommandName": "Remove-PnPPlannerTask", + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Rank": 1, - "Id": 1121, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" + "CommandName": "Remove-PnPPlannerTask", + "Id": 1121 }, { - "CommandName": "Remove-PnPPropertyBagValue", + "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Rank": 1, - "Id": 1122, - "Command": "Remove-PnPPropertyBagValue -Key MyKey" + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1122 }, { - "CommandName": "Remove-PnPPropertyBagValue", + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Rank": 2, - "Id": 1123, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1123 }, { - "CommandName": "Remove-PnPPropertyBagValue", + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Rank": 3, - "Id": 1124, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1124 }, { - "CommandName": "Remove-PnPPublishingImageRendition", + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "Id": 1125, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "CommandName": "Remove-PnPPublishingImageRendition", + "Id": 1125 }, { - "CommandName": "Remove-PnPRoleDefinition", + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Rank": 1, - "Id": 1126, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" + "CommandName": "Remove-PnPRoleDefinition", + "Id": 1126 }, { - "CommandName": "Remove-PnPSdnProvider", + "Command": "Remove-PnPSdnProvider -Confirm:false", "Rank": 1, - "Id": 1127, - "Command": "Remove-PnPSdnProvider -Confirm:false" + "CommandName": "Remove-PnPSdnProvider", + "Id": 1127 }, { - "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "Id": 1128, - "Command": "Remove-PnPSearchConfiguration -Configuration $config" + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1128 }, { - "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "Id": 1129, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1129 }, { - "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "Id": 1130, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1130 }, { - "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "Id": 1131, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1131 }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1132, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1132 }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "Id": 1133, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1133 }, { - "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 1, - "Id": 1134, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Id": 1134 }, { - "CommandName": "Remove-PnPSiteCollectionTermStore", + "Command": "Remove-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 1135, - "Command": "Remove-PnPSiteCollectionTermStore" + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Id": 1135 }, { - "CommandName": "Remove-PnPSiteDesign", + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 1136, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "CommandName": "Remove-PnPSiteDesign", + "Id": 1136 }, { - "CommandName": "Remove-PnPSiteDesignTask", + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 1137, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "CommandName": "Remove-PnPSiteDesignTask", + "Id": 1137 }, { - "CommandName": "Remove-PnPSiteGroup", + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "Id": 1138, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" + "CommandName": "Remove-PnPSiteGroup", + "Id": 1138 }, { - "CommandName": "Remove-PnPSiteGroup", + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Rank": 2, - "Id": 1139, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" + "CommandName": "Remove-PnPSiteGroup", + "Id": 1139 }, { - "CommandName": "Remove-PnPSiteScript", + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 1140, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "CommandName": "Remove-PnPSiteScript", + "Id": 1140 }, { - "CommandName": "Remove-PnPSiteUserInvitations", + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "Id": 1141, - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "CommandName": "Remove-PnPSiteUserInvitations", + "Id": 1141 }, { - "CommandName": "Remove-PnPStorageEntity", + "Command": "Remove-PnPStorageEntity -Key MyKey", "Rank": 1, - "Id": 1142, - "Command": "Remove-PnPStorageEntity -Key MyKey" + "CommandName": "Remove-PnPStorageEntity", + "Id": 1142 }, { - "CommandName": "Remove-PnPStorageEntity", + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 2, - "Id": 1143, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" + "CommandName": "Remove-PnPStorageEntity", + "Id": 1143 }, { - "CommandName": "Remove-PnPStoredCredential", + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Rank": 1, - "Id": 1144, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" + "CommandName": "Remove-PnPStoredCredential", + "Id": 1144 }, { - "CommandName": "Remove-PnPTaxonomyItem", + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Rank": 1, - "Id": 1145, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1145 }, { - "CommandName": "Remove-PnPTaxonomyItem", + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Rank": 2, - "Id": 1146, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1146 }, { - "CommandName": "Remove-PnPTeamsApp", + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Rank": 1, - "Id": 1147, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" + "CommandName": "Remove-PnPTeamsApp", + "Id": 1147 }, { - "CommandName": "Remove-PnPTeamsApp", + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Rank": 2, - "Id": 1148, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" + "CommandName": "Remove-PnPTeamsApp", + "Id": 1148 }, { - "CommandName": "Remove-PnPTeamsChannel", + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Rank": 1, - "Id": 1149, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" + "CommandName": "Remove-PnPTeamsChannel", + "Id": 1149 }, { - "CommandName": "Remove-PnPTeamsChannelUser", + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Rank": 1, - "Id": 1150, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1150 }, { - "CommandName": "Remove-PnPTeamsChannelUser", + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 2, - "Id": 1151, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1151 }, { - "CommandName": "Remove-PnPTeamsChannelUser", + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Rank": 3, - "Id": 1152, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1152 }, { - "CommandName": "Remove-PnPTeamsTab", + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "Rank": 1, - "Id": 1153, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" + "CommandName": "Remove-PnPTeamsTab", + "Id": 1153 }, { - "CommandName": "Remove-PnPTeamsTab", + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "Rank": 2, - "Id": 1154, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" + "CommandName": "Remove-PnPTeamsTab", + "Id": 1154 }, { - "CommandName": "Remove-PnPTeamsTab", + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", "Rank": 3, - "Id": 1155, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" + "CommandName": "Remove-PnPTeamsTab", + "Id": 1155 }, { - "CommandName": "Remove-PnPTeamsTag", + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 1, - "Id": 1156, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "CommandName": "Remove-PnPTeamsTag", + "Id": 1156 }, { - "CommandName": "Remove-PnPTeamsTeam", + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "Id": 1157, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1157 }, { - "CommandName": "Remove-PnPTeamsTeam", + "Command": "Remove-PnPTeamsTeam -Identity testteam", "Rank": 2, - "Id": 1158, - "Command": "Remove-PnPTeamsTeam -Identity testteam" + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1158 }, { - "CommandName": "Remove-PnPTeamsUser", + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Rank": 1, - "Id": 1159, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" + "CommandName": "Remove-PnPTeamsUser", + "Id": 1159 }, { - "CommandName": "Remove-PnPTeamsUser", + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 2, - "Id": 1160, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "CommandName": "Remove-PnPTeamsUser", + "Id": 1160 }, { - "CommandName": "Remove-PnPTenantCdnOrigin", + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "Id": 1161, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "CommandName": "Remove-PnPTenantCdnOrigin", + "Id": 1161 }, { - "CommandName": "Remove-PnPTenantDeletedSite", + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 1162, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1162 }, { - "CommandName": "Remove-PnPTenantDeletedSite", + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "Id": 1163, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1163 }, { - "CommandName": "Remove-PnPTenantSite", + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 1164, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "CommandName": "Remove-PnPTenantSite", + "Id": 1164 }, { - "CommandName": "Remove-PnPTenantSite", + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Rank": 2, - "Id": 1165, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" + "CommandName": "Remove-PnPTenantSite", + "Id": 1165 }, { - "CommandName": "Remove-PnPTenantSite", + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Rank": 3, - "Id": 1166, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" + "CommandName": "Remove-PnPTenantSite", + "Id": 1166 }, { - "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Command": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, - "Id": 1167, - "Command": "Remove-PnPTenantSyncClientRestriction" + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Id": 1167 }, { - "CommandName": "Remove-PnPTenantTheme", + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 1, - "Id": 1168, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" + "CommandName": "Remove-PnPTenantTheme", + "Id": 1168 }, { - "CommandName": "Remove-PnPTerm", + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "Id": 1169, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "CommandName": "Remove-PnPTerm", + "Id": 1169 }, { - "CommandName": "Remove-PnPTerm", + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "Id": 1170, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "CommandName": "Remove-PnPTerm", + "Id": 1170 }, { - "CommandName": "Remove-PnPTermGroup", + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "Id": 1171, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "CommandName": "Remove-PnPTermGroup", + "Id": 1171 }, { - "CommandName": "Remove-PnPTermGroup", + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Rank": 2, - "Id": 1172, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" + "CommandName": "Remove-PnPTermGroup", + "Id": 1172 }, { - "CommandName": "Remove-PnPTermGroup", + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Rank": 3, - "Id": 1173, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" + "CommandName": "Remove-PnPTermGroup", + "Id": 1173 }, { - "CommandName": "Remove-PnPTermLabel", + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "Rank": 1, - "Id": 1174, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" + "CommandName": "Remove-PnPTermLabel", + "Id": 1174 }, { - "CommandName": "Remove-PnPTermLabel", + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "Id": 1175, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "CommandName": "Remove-PnPTermLabel", + "Id": 1175 }, { - "CommandName": "Remove-PnPUser", + "Command": "Remove-PnPUser -Identity 23", "Rank": 1, - "Id": 1176, - "Command": "Remove-PnPUser -Identity 23" + "CommandName": "Remove-PnPUser", + "Id": 1176 }, { - "CommandName": "Remove-PnPUser", + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "Rank": 2, - "Id": 1177, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" + "CommandName": "Remove-PnPUser", + "Id": 1177 }, { - "CommandName": "Remove-PnPUser", + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Rank": 3, - "Id": 1178, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" + "CommandName": "Remove-PnPUser", + "Id": 1178 }, { - "CommandName": "Remove-PnPUserInfo", + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "Id": 1179, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" + "CommandName": "Remove-PnPUserInfo", + "Id": 1179 }, { - "CommandName": "Remove-PnPUserProfile", + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "Id": 1180, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com" + "CommandName": "Remove-PnPUserProfile", + "Id": 1180 }, { - "CommandName": "Remove-PnPView", + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Rank": 1, - "Id": 1181, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" + "CommandName": "Remove-PnPView", + "Id": 1181 }, { - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 1, - "Id": 1182, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Id": 1182 }, { - "CommandName": "Remove-PnPWeb", + "Command": "Remove-PnPWeb -Identity projectA", "Rank": 1, - "Id": 1183, - "Command": "Remove-PnPWeb -Identity projectA" + "CommandName": "Remove-PnPWeb", + "Id": 1183 }, { - "CommandName": "Remove-PnPWeb", + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Rank": 2, - "Id": 1184, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" + "CommandName": "Remove-PnPWeb", + "Id": 1184 }, { - "CommandName": "Remove-PnPWebhookSubscription", + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Rank": 1, - "Id": 1185, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" + "CommandName": "Remove-PnPWebhookSubscription", + "Id": 1185 }, { - "CommandName": "Remove-PnPWebPart", + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "Id": 1186, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "CommandName": "Remove-PnPWebPart", + "Id": 1186 }, { - "CommandName": "Remove-PnPWebPart", + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Rank": 2, - "Id": 1187, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" + "CommandName": "Remove-PnPWebPart", + "Id": 1187 }, { - "CommandName": "Remove-PnPWikiPage", + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Rank": 1, - "Id": 1188, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" + "CommandName": "Remove-PnPWikiPage", + "Id": 1188 }, { - "CommandName": "Rename-PnPFile", + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Rank": 1, - "Id": 1189, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" + "CommandName": "Rename-PnPFile", + "Id": 1189 }, { - "CommandName": "Rename-PnPFile", + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Rank": 2, - "Id": 1190, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" + "CommandName": "Rename-PnPFile", + "Id": 1190 }, { - "CommandName": "Rename-PnPFile", + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Rank": 3, - "Id": 1191, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" + "CommandName": "Rename-PnPFile", + "Id": 1191 }, { - "CommandName": "Rename-PnPFolder", + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Rank": 1, - "Id": 1192, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" + "CommandName": "Rename-PnPFolder", + "Id": 1192 }, { - "CommandName": "Repair-PnPSite", + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "Id": 1193, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "CommandName": "Repair-PnPSite", + "Id": 1193 }, { - "CommandName": "Repair-PnPSite", + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "Id": 1194, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "CommandName": "Repair-PnPSite", + "Id": 1194 }, { - "CommandName": "Request-PnPAccessToken", + "Command": "Request-PnPAccessToken", "Rank": 1, - "Id": 1195, - "Command": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Id": 1195 }, { - "CommandName": "Request-PnPAccessToken", + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Rank": 2, - "Id": 1196, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" + "CommandName": "Request-PnPAccessToken", + "Id": 1196 }, { - "CommandName": "Request-PnPAccessToken", + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "Rank": 3, - "Id": 1197, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" + "CommandName": "Request-PnPAccessToken", + "Id": 1197 }, { - "CommandName": "Request-PnPAccessToken", + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Rank": 4, - "Id": 1198, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" + "CommandName": "Request-PnPAccessToken", + "Id": 1198 }, { - "CommandName": "Request-PnPPersonalSite", + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Rank": 1, - "Id": 1199, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" + "CommandName": "Request-PnPPersonalSite", + "Id": 1199 }, { - "CommandName": "Request-PnPPersonalSite", + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Rank": 2, - "Id": 1200, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" + "CommandName": "Request-PnPPersonalSite", + "Id": 1200 }, { - "CommandName": "Request-PnPReIndexList", + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Rank": 1, - "Id": 1201, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"" + "CommandName": "Request-PnPReIndexList", + "Id": 1201 }, { - "CommandName": "Request-PnPReIndexWeb", + "Command": "Request-PnPReIndexWeb", "Rank": 1, - "Id": 1202, - "Command": "Request-PnPReIndexWeb" + "CommandName": "Request-PnPReIndexWeb", + "Id": 1202 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Rank": 1, - "Id": 1203, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1203 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Rank": 2, - "Id": 1204, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1204 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Rank": 3, - "Id": 1205, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1205 }, { - "CommandName": "Reset-PnPFileVersion", + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Rank": 1, - "Id": 1206, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" + "CommandName": "Reset-PnPFileVersion", + "Id": 1206 }, { - "CommandName": "Reset-PnPFileVersion", + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Rank": 2, - "Id": 1207, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" + "CommandName": "Reset-PnPFileVersion", + "Id": 1207 }, { - "CommandName": "Reset-PnPLabel", + "Command": "Reset-PnPLabel -List \"Demo List\"", "Rank": 1, - "Id": 1208, - "Command": "Reset-PnPLabel -List \"Demo List\"" + "CommandName": "Reset-PnPLabel", + "Id": 1208 }, { - "CommandName": "Reset-PnPLabel", + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Rank": 2, - "Id": 1209, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" + "CommandName": "Reset-PnPLabel", + "Id": 1209 }, { - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Command": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, - "Id": 1210, - "Command": "Reset-PnPMicrosoft365GroupExpiration" + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1210 }, { - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Rank": 1, - "Id": 1211, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Id": 1211 }, { - "CommandName": "Resolve-PnPFolder", + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Rank": 1, - "Id": 1212, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" + "CommandName": "Resolve-PnPFolder", + "Id": 1212 }, { - "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "Id": 1213, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Id": 1213 }, { - "CommandName": "Restore-PnPFileVersion", + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "Id": 1214, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "CommandName": "Restore-PnPFileVersion", + "Id": 1214 }, { - "CommandName": "Restore-PnPFileVersion", + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Rank": 2, - "Id": 1215, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" + "CommandName": "Restore-PnPFileVersion", + "Id": 1215 }, { - "CommandName": "Restore-PnPFileVersion", + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 3, - "Id": 1216, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "CommandName": "Restore-PnPFileVersion", + "Id": 1216 }, { - "CommandName": "Restore-PnPListItemVersion", + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "Id": 1217, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "CommandName": "Restore-PnPListItemVersion", + "Id": 1217 }, { - "CommandName": "Restore-PnPListItemVersion", + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "Id": 1218, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "CommandName": "Restore-PnPListItemVersion", + "Id": 1218 }, { - "CommandName": "Restore-PnPRecycleBinItem", + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "Id": 1219, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "CommandName": "Restore-PnPRecycleBinItem", + "Id": 1219 }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 1220, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1220 }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "Id": 1221, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1221 }, { - "CommandName": "Restore-PnPTenantSite", + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 1222, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "CommandName": "Restore-PnPTenantSite", + "Id": 1222 }, { - "CommandName": "Restore-PnPTenantSite", + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "Id": 1223, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "CommandName": "Restore-PnPTenantSite", + "Id": 1223 }, { - "CommandName": "Restore-PnPTenantSite", + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Rank": 3, - "Id": 1224, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" + "CommandName": "Restore-PnPTenantSite", + "Id": 1224 }, { - "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Rank": 1, - "Id": 1225, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Id": 1225 }, { - "CommandName": "Revoke-PnPHubSiteRights", + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "Id": 1226, - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "CommandName": "Revoke-PnPHubSiteRights", + "Id": 1226 }, { - "CommandName": "Revoke-PnPSiteDesignRights", + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "Id": 1227, - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "CommandName": "Revoke-PnPSiteDesignRights", + "Id": 1227 }, { - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "Id": 1228, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Id": 1228 }, { - "CommandName": "Revoke-PnPUserSession", + "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Rank": 1, - "Id": 1229, - "Command": "Revoke-PnPUserSession -User user1@contoso.com" + "CommandName": "Revoke-PnPUserSession", + "Id": 1229 }, { - "CommandName": "Save-PnPPageConversionLog", + "Command": "Save-PnPPageConversionLog", "Rank": 1, - "Id": 1230, - "Command": "Save-PnPPageConversionLog" + "CommandName": "Save-PnPPageConversionLog", + "Id": 1230 }, { - "CommandName": "Save-PnPSiteTemplate", + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Rank": 1, - "Id": 1231, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" + "CommandName": "Save-PnPSiteTemplate", + "Id": 1231 }, { - "CommandName": "Save-PnPTenantTemplate", + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Rank": 1, - "Id": 1232, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" + "CommandName": "Save-PnPTenantTemplate", + "Id": 1232 }, { - "CommandName": "Send-PnPMail", + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Rank": 1, - "Id": 1233, - "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": 1233 }, { - "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", "Rank": 2, - "Id": 1234, - "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": 1234 }, { - "CommandName": "Send-PnPMail", + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Rank": 3, - "Id": 1235, - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" + "CommandName": "Send-PnPMail", + "Id": 1235 }, { - "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", "Rank": 4, - "Id": 1236, - "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": 1236 }, { - "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", "Rank": 5, - "Id": 1237, - "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": 1237 }, { - "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\"", "Rank": 6, - "Id": 1238, - "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": 1238 }, { - "CommandName": "Set-PnPAdaptiveScopeProperty", + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Rank": 1, - "Id": 1239, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Id": 1239 }, { - "CommandName": "Set-PnPApplicationCustomizer", + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "Id": 1240, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1240 }, { - "CommandName": "Set-PnPApplicationCustomizer", + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", "Rank": 2, - "Id": 1241, - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1241 }, { - "CommandName": "Set-PnPAppSideLoading", + "Command": "Set-PnPAppSideLoading -On", "Rank": 1, - "Id": 1242, - "Command": "Set-PnPAppSideLoading -On" + "CommandName": "Set-PnPAppSideLoading", + "Id": 1242 }, { - "CommandName": "Set-PnPAppSideLoading", + "Command": "Set-PnPAppSideLoading -Off", "Rank": 2, - "Id": 1243, - "Command": "Set-PnPAppSideLoading -Off" + "CommandName": "Set-PnPAppSideLoading", + "Id": 1243 }, { - "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -EnableAll", "Rank": 1, - "Id": 1244, - "Command": "Set-PnPAuditing -EnableAll" + "CommandName": "Set-PnPAuditing", + "Id": 1244 }, { - "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -DisableAll", "Rank": 2, - "Id": 1245, - "Command": "Set-PnPAuditing -DisableAll" + "CommandName": "Set-PnPAuditing", + "Id": 1245 }, { - "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -RetentionTime 7", "Rank": 3, - "Id": 1246, - "Command": "Set-PnPAuditing -RetentionTime 7" + "CommandName": "Set-PnPAuditing", + "Id": 1246 }, { - "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -TrimAuditLog", "Rank": 4, - "Id": 1247, - "Command": "Set-PnPAuditing -TrimAuditLog" + "CommandName": "Set-PnPAuditing", + "Id": 1247 }, { - "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Rank": 5, - "Id": 1248, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" + "CommandName": "Set-PnPAuditing", + "Id": 1248 }, { - "CommandName": "Set-PnPAvailablePageLayouts", + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Rank": 1, - "Id": 1249, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" + "CommandName": "Set-PnPAvailablePageLayouts", + "Id": 1249 }, { - "CommandName": "Set-PnPAzureADAppSitePermission", + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Rank": 1, - "Id": 1250, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1250 }, { - "CommandName": "Set-PnPAzureADAppSitePermission", + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Rank": 2, - "Id": 1251, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1251 }, { - "CommandName": "Set-PnPAzureADGroup", + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "Id": 1252, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" + "CommandName": "Set-PnPAzureADGroup", + "Id": 1252 }, { - "CommandName": "Set-PnPAzureADGroup", + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "Id": 1253, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "CommandName": "Set-PnPAzureADGroup", + "Id": 1253 }, { - "CommandName": "Set-PnPAzureADGroup", + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Rank": 3, - "Id": 1254, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" + "CommandName": "Set-PnPAzureADGroup", + "Id": 1254 }, { - "CommandName": "Set-PnPBrowserIdleSignout", + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Rank": 1, - "Id": 1255, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1255 }, { - "CommandName": "Set-PnPBrowserIdleSignout", + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Rank": 2, - "Id": 1256, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1256 }, { - "CommandName": "Set-PnPBrowserIdleSignout", + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Rank": 3, - "Id": 1257, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1257 }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Rank": 1, - "Id": 1258, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1258 }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Rank": 2, - "Id": 1259, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1259 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Rank": 1, - "Id": 1260, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1260 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Rank": 2, - "Id": 1261, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1261 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Rank": 3, - "Id": 1262, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1262 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Rank": 4, - "Id": 1263, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1263 }, { - "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 1, - "Id": 1264, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "CommandName": "Set-PnPContentType", + "Id": 1264 }, { - "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Rank": 2, - "Id": 1265, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" + "CommandName": "Set-PnPContentType", + "Id": 1265 }, { - "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 3, - "Id": 1266, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "CommandName": "Set-PnPContentType", + "Id": 1266 }, { - "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 4, - "Id": 1267, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "CommandName": "Set-PnPContentType", + "Id": 1267 }, { - "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 5, - "Id": 1268, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "CommandName": "Set-PnPContentType", + "Id": 1268 }, { - "CommandName": "Set-PnPDefaultColumnValues", + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Rank": 1, - "Id": 1269, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1269 }, { - "CommandName": "Set-PnPDefaultColumnValues", + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Rank": 2, - "Id": 1270, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1270 }, { - "CommandName": "Set-PnPDefaultColumnValues", + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Rank": 3, - "Id": 1271, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1271 }, { - "CommandName": "Set-PnPDefaultColumnValues", + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Rank": 4, - "Id": 1272, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1272 }, { - "CommandName": "Set-PnPDefaultContentTypeToList", + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Rank": 1, - "Id": 1273, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" + "CommandName": "Set-PnPDefaultContentTypeToList", + "Id": 1273 }, { - "CommandName": "Set-PnPDefaultPageLayout", + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Rank": 1, - "Id": 1274, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1274 }, { - "CommandName": "Set-PnPDefaultPageLayout", + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Rank": 2, - "Id": 1275, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1275 }, { - "CommandName": "Set-PnPDefaultPageLayout", + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Rank": 3, - "Id": 1276, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1276 }, { - "CommandName": "Set-PnPDisableSpacesActivation", + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Rank": 1, - "Id": 1277, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1277 }, { - "CommandName": "Set-PnPDisableSpacesActivation", + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 2, - "Id": 1278, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1278 }, { - "CommandName": "Set-PnPDisableSpacesActivation", + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 3, - "Id": 1279, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1279 }, { - "CommandName": "Set-PnPDocumentSetField", + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Rank": 1, - "Id": 1280, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" + "CommandName": "Set-PnPDocumentSetField", + "Id": 1280 }, { - "CommandName": "Set-PnPDocumentSetField", + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Rank": 2, - "Id": 1281, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" + "CommandName": "Set-PnPDocumentSetField", + "Id": 1281 }, { - "CommandName": "Set-PnPField", + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "Rank": 1, - "Id": 1282, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" + "CommandName": "Set-PnPField", + "Id": 1282 }, { - "CommandName": "Set-PnPField", + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Rank": 2, - "Id": 1283, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" + "CommandName": "Set-PnPField", + "Id": 1283 }, { - "CommandName": "Set-PnPField", + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Rank": 3, - "Id": 1284, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" + "CommandName": "Set-PnPField", + "Id": 1284 }, { - "CommandName": "Set-PnPFileCheckedIn", + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Rank": 1, - "Id": 1285, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1285 }, { - "CommandName": "Set-PnPFileCheckedIn", + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Rank": 2, - "Id": 1286, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1286 }, { - "CommandName": "Set-PnPFileCheckedOut", + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Rank": 1, - "Id": 1287, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" + "CommandName": "Set-PnPFileCheckedOut", + "Id": 1287 }, { - "CommandName": "Set-PnPFolderPermission", + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "Id": 1288, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" + "CommandName": "Set-PnPFolderPermission", + "Id": 1288 }, { - "CommandName": "Set-PnPFolderPermission", + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "Id": 1289, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "CommandName": "Set-PnPFolderPermission", + "Id": 1289 }, { - "CommandName": "Set-PnPFolderPermission", + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "Id": 1290, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "CommandName": "Set-PnPFolderPermission", + "Id": 1290 }, { - "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -Enabled:$true", "Rank": 1, - "Id": 1291, - "Command": "Set-PnPFooter -Enabled:$true" + "CommandName": "Set-PnPFooter", + "Id": 1291 }, { - "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Rank": 2, - "Id": 1292, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" + "CommandName": "Set-PnPFooter", + "Id": 1292 }, { - "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Rank": 3, - "Id": 1293, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" + "CommandName": "Set-PnPFooter", + "Id": 1293 }, { - "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -LogoUrl \"\"", "Rank": 4, - "Id": 1294, - "Command": "Set-PnPFooter -LogoUrl \"\"" + "CommandName": "Set-PnPFooter", + "Id": 1294 }, { - "CommandName": "Set-PnPGraphSubscription", + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Rank": 1, - "Id": 1295, - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" + "CommandName": "Set-PnPGraphSubscription", + "Id": 1295 }, { - "CommandName": "Set-PnPGroup", + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Rank": 1, - "Id": 1296, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" + "CommandName": "Set-PnPGroup", + "Id": 1296 }, { - "CommandName": "Set-PnPGroup", + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Rank": 2, - "Id": 1297, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" + "CommandName": "Set-PnPGroup", + "Id": 1297 }, { - "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Rank": 1, - "Id": 1298, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1298 }, { - "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Rank": 2, - "Id": 1299, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1299 }, { - "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Rank": 3, - "Id": 1300, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1300 }, { - "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Rank": 4, - "Id": 1301, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1301 }, { - "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Rank": 5, - "Id": 1302, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1302 }, { - "CommandName": "Set-PnPHideDefaultThemes", + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Rank": 1, - "Id": 1303, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1303 }, { - "CommandName": "Set-PnPHideDefaultThemes", + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Rank": 2, - "Id": 1304, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1304 }, { - "CommandName": "Set-PnPHomePage", + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Rank": 1, - "Id": 1305, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" + "CommandName": "Set-PnPHomePage", + "Id": 1305 }, { - "CommandName": "Set-PnPHomePage", + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Rank": 2, - "Id": 1306, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" + "CommandName": "Set-PnPHomePage", + "Id": 1306 }, { - "CommandName": "Set-PnPHomeSite", + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Rank": 1, - "Id": 1307, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" + "CommandName": "Set-PnPHomeSite", + "Id": 1307 }, { - "CommandName": "Set-PnPHomeSite", + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Rank": 2, - "Id": 1308, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" + "CommandName": "Set-PnPHomeSite", + "Id": 1308 }, { - "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "Rank": 1, - "Id": 1309, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" + "CommandName": "Set-PnPHubSite", + "Id": 1309 }, { - "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "Rank": 2, - "Id": 1310, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" + "CommandName": "Set-PnPHubSite", + "Id": 1310 }, { - "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "Rank": 3, - "Id": 1311, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" + "CommandName": "Set-PnPHubSite", + "Id": 1311 }, { - "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "Rank": 4, - "Id": 1312, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" + "CommandName": "Set-PnPHubSite", + "Id": 1312 }, { - "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Rank": 5, - "Id": 1313, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" + "CommandName": "Set-PnPHubSite", + "Id": 1313 }, { - "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Rank": 6, - "Id": 1314, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" + "CommandName": "Set-PnPHubSite", + "Id": 1314 }, { - "CommandName": "Set-PnPImageListItemColumn", + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Rank": 1, - "Id": 1315, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1315 }, { - "CommandName": "Set-PnPImageListItemColumn", + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Rank": 2, - "Id": 1316, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1316 }, { - "CommandName": "Set-PnPIndexedProperties", + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Rank": 1, - "Id": 1317, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" + "CommandName": "Set-PnPIndexedProperties", + "Id": 1317 }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Rank": 1, - "Id": 1318, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1318 }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Rank": 2, - "Id": 1319, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1319 }, { - "CommandName": "Set-PnPKnowledgeHubSite", + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Rank": 1, - "Id": 1320, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" + "CommandName": "Set-PnPKnowledgeHubSite", + "Id": 1320 }, { - "CommandName": "Set-PnPLabel", + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Rank": 1, - "Id": 1321, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" + "CommandName": "Set-PnPLabel", + "Id": 1321 }, { - "CommandName": "Set-PnPLabel", + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Rank": 2, - "Id": 1322, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" + "CommandName": "Set-PnPLabel", + "Id": 1322 }, { - "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Rank": 1, - "Id": 1323, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" + "CommandName": "Set-PnPList", + "Id": 1323 }, { - "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Rank": 2, - "Id": 1324, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" + "CommandName": "Set-PnPList", + "Id": 1324 }, { - "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Rank": 3, - "Id": 1325, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" + "CommandName": "Set-PnPList", + "Id": 1325 }, { - "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Rank": 4, - "Id": 1326, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" + "CommandName": "Set-PnPList", + "Id": 1326 }, { - "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Rank": 5, - "Id": 1327, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" + "CommandName": "Set-PnPList", + "Id": 1327 }, { - "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Rank": 6, - "Id": 1328, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" + "CommandName": "Set-PnPList", + "Id": 1328 }, { - "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Rank": 7, - "Id": 1329, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" + "CommandName": "Set-PnPList", + "Id": 1329 }, { - "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "Rank": 8, - "Id": 1330, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" + "CommandName": "Set-PnPList", + "Id": 1330 }, { - "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "Rank": 9, - "Id": 1331, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" + "CommandName": "Set-PnPList", + "Id": 1331 }, { - "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "Rank": 10, - "Id": 1332, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" + "CommandName": "Set-PnPList", + "Id": 1332 }, { - "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "Rank": 11, - "Id": 1333, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" + "CommandName": "Set-PnPList", + "Id": 1333 }, { - "CommandName": "Set-PnPListInformationRightsManagement", + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "Rank": 1, - "Id": 1334, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1334 }, { - "CommandName": "Set-PnPListInformationRightsManagement", + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "Rank": 2, - "Id": 1335, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1335 }, { - "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "Id": 1336, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "CommandName": "Set-PnPListItem", + "Id": 1336 }, { - "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "Id": 1337, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "CommandName": "Set-PnPListItem", + "Id": 1337 }, { - "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 3, - "Id": 1338, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "CommandName": "Set-PnPListItem", + "Id": 1338 }, { - "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "Rank": 4, - "Id": 1339, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" + "CommandName": "Set-PnPListItem", + "Id": 1339 }, { - "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "Rank": 5, - "Id": 1340, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" + "CommandName": "Set-PnPListItem", + "Id": 1340 }, { - "CommandName": "Set-PnPListItemAsRecord", + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "Id": 1341, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1341 }, { - "CommandName": "Set-PnPListItemAsRecord", + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "Rank": 2, - "Id": 1342, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1342 }, { - "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "Id": 1343, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" + "CommandName": "Set-PnPListItemPermission", + "Id": 1343 }, { - "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "Id": 1344, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" + "CommandName": "Set-PnPListItemPermission", + "Id": 1344 }, { - "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "Id": 1345, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "CommandName": "Set-PnPListItemPermission", + "Id": 1345 }, { - "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "Rank": 4, - "Id": 1346, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" + "CommandName": "Set-PnPListItemPermission", + "Id": 1346 }, { - "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "Rank": 5, - "Id": 1347, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" + "CommandName": "Set-PnPListItemPermission", + "Id": 1347 }, { - "CommandName": "Set-PnPListPermission", + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "Id": 1348, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" + "CommandName": "Set-PnPListPermission", + "Id": 1348 }, { - "CommandName": "Set-PnPListPermission", + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "Id": 1349, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "CommandName": "Set-PnPListPermission", + "Id": 1349 }, { - "CommandName": "Set-PnPListRecordDeclaration", + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "Rank": 1, - "Id": 1350, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1350 }, { - "CommandName": "Set-PnPListRecordDeclaration", + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "Rank": 2, - "Id": 1351, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1351 }, { - "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 1, - "Id": 1352, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "CommandName": "Set-PnPMasterPage", + "Id": 1352 }, { - "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 2, - "Id": 1353, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "CommandName": "Set-PnPMasterPage", + "Id": 1353 }, { - "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 3, - "Id": 1354, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "CommandName": "Set-PnPMasterPage", + "Id": 1354 }, { - "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 4, - "Id": 1355, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "CommandName": "Set-PnPMasterPage", + "Id": 1355 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "Rank": 1, - "Id": 1356, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1356 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1357, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1357 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, - "Id": 1358, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1358 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "Rank": 1, - "Id": 1359, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1359 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1360, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1360 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, - "Id": 1361, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1361 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Rank": 1, - "Id": 1362, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1362 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1363, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1363 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, - "Id": 1364, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1364 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "Rank": 1, - "Id": 1365, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1365 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1366, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1366 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, - "Id": 1367, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1367 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "Rank": 1, - "Id": 1368, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1368 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1369, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1369 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, - "Id": 1370, - "Command": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1370 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "Rank": 1, - "Id": 1371, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1371 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1372, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1372 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, - "Id": 1373, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1373 }, { - "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "Id": 1374, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1374 }, { - "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "Id": 1375, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1375 }, { - "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "Rank": 3, - "Id": 1376, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1376 }, { - "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "Rank": 4, - "Id": 1377, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1377 }, { - "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "Rank": 5, - "Id": 1378, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1378 }, { - "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "Id": 1379, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1379 }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "Rank": 1, - "Id": 1380, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1380 }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "Rank": 2, - "Id": 1381, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1381 }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", + "Command": "Set-PnPMinimalDownloadStrategy -Off", "Rank": 1, - "Id": 1382, - "Command": "Set-PnPMinimalDownloadStrategy -Off" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1382 }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", + "Command": "Set-PnPMinimalDownloadStrategy -On", "Rank": 2, - "Id": 1383, - "Command": "Set-PnPMinimalDownloadStrategy -On" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1383 }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Rank": 1, - "Id": 1384, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" + "CommandName": "Set-PnPPage", + "Id": 1384 }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Rank": 2, - "Id": 1385, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" + "CommandName": "Set-PnPPage", + "Id": 1385 }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Rank": 3, - "Id": 1386, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" + "CommandName": "Set-PnPPage", + "Id": 1386 }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Rank": 4, - "Id": 1387, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" + "CommandName": "Set-PnPPage", + "Id": 1387 }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Rank": 5, - "Id": 1388, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" + "CommandName": "Set-PnPPage", + "Id": 1388 }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "Rank": 6, - "Id": 1389, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" + "CommandName": "Set-PnPPage", + "Id": 1389 }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "Id": 1390, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" + "CommandName": "Set-PnPPage", + "Id": 1390 }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "Rank": 8, - "Id": 1391, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" + "CommandName": "Set-PnPPage", + "Id": 1391 }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "Id": 1392, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" + "CommandName": "Set-PnPPage", + "Id": 1392 }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "Id": 1393, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" + "CommandName": "Set-PnPPage", + "Id": 1393 }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "Rank": 11, - "Id": 1394, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" + "CommandName": "Set-PnPPage", + "Id": 1394 }, { - "CommandName": "Set-PnPPageTextPart", + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "Rank": 1, - "Id": 1395, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" + "CommandName": "Set-PnPPageTextPart", + "Id": 1395 }, { - "CommandName": "Set-PnPPageWebPart", + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "Rank": 1, - "Id": 1396, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" + "CommandName": "Set-PnPPageWebPart", + "Id": 1396 }, { - "CommandName": "Set-PnPPageWebPart", + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "Rank": 2, - "Id": 1397, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" + "CommandName": "Set-PnPPageWebPart", + "Id": 1397 }, { - "CommandName": "Set-PnPPlannerBucket", + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "Rank": 1, - "Id": 1398, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" + "CommandName": "Set-PnPPlannerBucket", + "Id": 1398 }, { - "CommandName": "Set-PnPPlannerConfiguration", + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "Rank": 1, - "Id": 1399, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1399 }, { - "CommandName": "Set-PnPPlannerConfiguration", + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "Rank": 2, - "Id": 1400, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1400 }, { - "CommandName": "Set-PnPPlannerPlan", + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "Rank": 1, - "Id": 1401, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" + "CommandName": "Set-PnPPlannerPlan", + "Id": 1401 }, { - "CommandName": "Set-PnPPlannerTask", + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "Rank": 1, - "Id": 1402, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" + "CommandName": "Set-PnPPlannerTask", + "Id": 1402 }, { - "CommandName": "Set-PnPPlannerTask", + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "Rank": 2, - "Id": 1403, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" + "CommandName": "Set-PnPPlannerTask", + "Id": 1403 }, { - "CommandName": "Set-PnPPlannerTask", + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Rank": 3, - "Id": 1404, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" + "CommandName": "Set-PnPPlannerTask", + "Id": 1404 }, { - "CommandName": "Set-PnPPlannerUserPolicy", + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1405, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "CommandName": "Set-PnPPlannerUserPolicy", + "Id": 1405 }, { - "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Rank": 1, - "Id": 1406, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1406 }, { - "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Rank": 2, - "Id": 1407, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1407 }, { - "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "Rank": 3, - "Id": 1408, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1408 }, { - "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Rank": 1, - "Id": 1409, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1409 }, { - "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Disabled", "Rank": 2, - "Id": 1410, - "Command": "Set-PnPRequestAccessEmails -Disabled" + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1410 }, { - "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "Rank": 3, - "Id": 1411, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false" + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1411 }, { - "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Rank": 1, - "Id": 1412, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" + "CommandName": "Set-PnPRoleDefinition", + "Id": 1412 }, { - "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Rank": 2, - "Id": 1413, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" + "CommandName": "Set-PnPRoleDefinition", + "Id": 1413 }, { - "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Rank": 3, - "Id": 1414, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" + "CommandName": "Set-PnPRoleDefinition", + "Id": 1414 }, { - "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "Rank": 4, - "Id": 1415, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" + "CommandName": "Set-PnPRoleDefinition", + "Id": 1415 }, { - "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "Id": 1416, - "Command": "Set-PnPSearchConfiguration -Configuration $config" + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1416 }, { - "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "Id": 1417, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1417 }, { - "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "Id": 1418, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1418 }, { - "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "Id": 1419, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1419 }, { - "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", "Rank": 1, - "Id": 1420, - "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": 1420 }, { - "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\"", "Rank": 2, - "Id": 1421, - "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": 1421 }, { - "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Rank": 1, - "Id": 1422, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" + "CommandName": "Set-PnPSearchSettings", + "Id": 1422 }, { - "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Rank": 2, - "Id": 1423, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" + "CommandName": "Set-PnPSearchSettings", + "Id": 1423 }, { - "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Rank": 3, - "Id": 1424, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" + "CommandName": "Set-PnPSearchSettings", + "Id": 1424 }, { - "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Rank": 4, - "Id": 1425, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" + "CommandName": "Set-PnPSearchSettings", + "Id": 1425 }, { - "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "Rank": 5, - "Id": 1426, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" + "CommandName": "Set-PnPSearchSettings", + "Id": 1426 }, { - "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchScope Tenant", "Rank": 6, - "Id": 1427, - "Command": "Set-PnPSearchSettings -SearchScope Tenant" + "CommandName": "Set-PnPSearchSettings", + "Id": 1427 }, { - "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchScope Hub", "Rank": 7, - "Id": 1428, - "Command": "Set-PnPSearchSettings -SearchScope Hub" + "CommandName": "Set-PnPSearchSettings", + "Id": 1428 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -Classification \"HBI\"", "Rank": 1, - "Id": 1429, - "Command": "Set-PnPSite -Classification \"HBI\"" + "CommandName": "Set-PnPSite", + "Id": 1429 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -Classification $null", "Rank": 2, - "Id": 1430, - "Command": "Set-PnPSite -Classification $null" + "CommandName": "Set-PnPSite", + "Id": 1430 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -DisableFlows", "Rank": 3, - "Id": 1431, - "Command": "Set-PnPSite -DisableFlows" + "CommandName": "Set-PnPSite", + "Id": 1431 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -DisableFlows:$false", "Rank": 4, - "Id": 1432, - "Command": "Set-PnPSite -DisableFlows:$false" + "CommandName": "Set-PnPSite", + "Id": 1432 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "Rank": 5, - "Id": 1433, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" + "CommandName": "Set-PnPSite", + "Id": 1433 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -NoScriptSite $false", "Rank": 6, - "Id": 1434, - "Command": "Set-PnPSite -NoScriptSite $false" + "CommandName": "Set-PnPSite", + "Id": 1434 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "Rank": 7, - "Id": 1435, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" + "CommandName": "Set-PnPSite", + "Id": 1435 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "Rank": 8, - "Id": 1436, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" + "CommandName": "Set-PnPSite", + "Id": 1436 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "Rank": 9, - "Id": 1437, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" + "CommandName": "Set-PnPSite", + "Id": 1437 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "Rank": 10, - "Id": 1438, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" + "CommandName": "Set-PnPSite", + "Id": 1438 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "Rank": 11, - "Id": 1439, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" + "CommandName": "Set-PnPSite", + "Id": 1439 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "Rank": 12, - "Id": 1440, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" + "CommandName": "Set-PnPSite", + "Id": 1440 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "Rank": 13, - "Id": 1441, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" + "CommandName": "Set-PnPSite", + "Id": 1441 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "Rank": 14, - "Id": 1442, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" + "CommandName": "Set-PnPSite", + "Id": 1442 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "Rank": 15, - "Id": 1443, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" + "CommandName": "Set-PnPSite", + "Id": 1443 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "Rank": 16, - "Id": 1444, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" + "CommandName": "Set-PnPSite", + "Id": 1444 }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -CancelVPForExistingLibs", "Rank": 17, - "Id": 1445, - "Command": "Set-PnPSite -CancelVPForExistingLibs" + "CommandName": "Set-PnPSite", + "Id": 1445 }, { - "CommandName": "Set-PnPSiteClassification", + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "Rank": 1, - "Id": 1446, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"" + "CommandName": "Set-PnPSiteClassification", + "Id": 1446 }, { - "CommandName": "Set-PnPSiteClosure", + "Command": "Set-PnPSiteClosure -State Open", "Rank": 1, - "Id": 1447, - "Command": "Set-PnPSiteClosure -State Open" + "CommandName": "Set-PnPSiteClosure", + "Id": 1447 }, { - "CommandName": "Set-PnPSiteClosure", + "Command": "Set-PnPSiteClosure -State Closed", "Rank": 2, - "Id": 1448, - "Command": "Set-PnPSiteClosure -State Closed" + "CommandName": "Set-PnPSiteClosure", + "Id": 1448 }, { - "CommandName": "Set-PnPSiteDesign", + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "Rank": 1, - "Id": 1449, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" + "CommandName": "Set-PnPSiteDesign", + "Id": 1449 }, { - "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\"", "Rank": 2, - "Id": 1450, - "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": 1450 }, { - "CommandName": "Set-PnPSiteGroup", + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "Rank": 1, - "Id": 1451, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" + "CommandName": "Set-PnPSiteGroup", + "Id": 1451 }, { - "CommandName": "Set-PnPSiteGroup", + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "Rank": 2, - "Id": 1452, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" + "CommandName": "Set-PnPSiteGroup", + "Id": 1452 }, { - "CommandName": "Set-PnPSitePolicy", + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 1, - "Id": 1453, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" + "CommandName": "Set-PnPSitePolicy", + "Id": 1453 }, { - "CommandName": "Set-PnPSiteScript", + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "Id": 1454, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "CommandName": "Set-PnPSiteScript", + "Id": 1454 }, { - "CommandName": "Set-PnPSiteScriptPackage", + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "Id": 1455, - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "CommandName": "Set-PnPSiteScriptPackage", + "Id": 1455 }, { - "CommandName": "Set-PnPSiteSensitivityLabel", + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Rank": 1, - "Id": 1456, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1456 }, { - "CommandName": "Set-PnPSiteSensitivityLabel", + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "Rank": 2, - "Id": 1457, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1457 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "Rank": 1, - "Id": 1458, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1458 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "Rank": 2, - "Id": 1459, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1459 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 3, - "Id": 1460, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1460 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 4, - "Id": 1461, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1461 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 5, - "Id": 1462, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1462 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 6, - "Id": 1463, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1463 }, { - "CommandName": "Set-PnPStorageEntity", + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 1, - "Id": 1464, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "CommandName": "Set-PnPStorageEntity", + "Id": 1464 }, { - "CommandName": "Set-PnPStorageEntity", + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 2, - "Id": 1465, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "CommandName": "Set-PnPStorageEntity", + "Id": 1465 }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "Id": 1466, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1466 }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 2, - "Id": 1467, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1467 }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "Id": 1468, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1468 }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 2, - "Id": 1469, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1469 }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "Rank": 1, - "Id": 1470, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1470 }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "Rank": 2, - "Id": 1471, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1471 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "Rank": 1, - "Id": 1472, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1472 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "Rank": 2, - "Id": 1473, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1473 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "Rank": 3, - "Id": 1474, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1474 }, { - "CommandName": "Set-PnPTeamifyPromptHidden", + "Command": "Set-PnPTeamifyPromptHidden", "Rank": 1, - "Id": 1475, - "Command": "Set-PnPTeamifyPromptHidden" + "CommandName": "Set-PnPTeamifyPromptHidden", + "Id": 1475 }, { - "CommandName": "Set-PnPTeamsChannel", + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Rank": 1, - "Id": 1476, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" + "CommandName": "Set-PnPTeamsChannel", + "Id": 1476 }, { - "CommandName": "Set-PnPTeamsChannel", + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Rank": 2, - "Id": 1477, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" + "CommandName": "Set-PnPTeamsChannel", + "Id": 1477 }, { - "CommandName": "Set-PnpTeamsChannelUser", + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Rank": 1, - "Id": 1478, - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1478 }, { - "CommandName": "Set-PnpTeamsChannelUser", + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Rank": 2, - "Id": 1479, - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1479 }, { - "CommandName": "Set-PnPTeamsTab", + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Rank": 1, - "Id": 1480, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" + "CommandName": "Set-PnPTeamsTab", + "Id": 1480 }, { - "CommandName": "Set-PnPTeamsTag", + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "Rank": 1, - "Id": 1481, - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" + "CommandName": "Set-PnPTeamsTag", + "Id": 1481 }, { - "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Rank": 1, - "Id": 1482, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" + "CommandName": "Set-PnPTeamsTeam", + "Id": 1482 }, { - "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Rank": 2, - "Id": 1483, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" + "CommandName": "Set-PnPTeamsTeam", + "Id": 1483 }, { - "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Rank": 3, - "Id": 1484, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" + "CommandName": "Set-PnPTeamsTeam", + "Id": 1484 }, { - "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "Rank": 4, - "Id": 1485, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" + "CommandName": "Set-PnPTeamsTeam", + "Id": 1485 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Rank": 1, - "Id": 1486, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1486 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Rank": 2, - "Id": 1487, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1487 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "Rank": 3, - "Id": 1488, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1488 }, { - "CommandName": "Set-PnPTeamsTeamPicture", + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "Rank": 1, - "Id": 1489, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" + "CommandName": "Set-PnPTeamsTeamPicture", + "Id": 1489 }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Command": "Set-PnPTemporarilyDisableAppBar $true", "Rank": 1, - "Id": 1490, - "Command": "Set-PnPTemporarilyDisableAppBar $true" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1490 }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Command": "Set-PnPTemporarilyDisableAppBar $false", "Rank": 2, - "Id": 1491, - "Command": "Set-PnPTemporarilyDisableAppBar $false" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1491 }, { - "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", "Rank": 1, - "Id": 1492, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" + "CommandName": "Set-PnPTenant", + "Id": 1492 }, { - "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Rank": 2, - "Id": 1493, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" + "CommandName": "Set-PnPTenant", + "Id": 1493 }, { - "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Rank": 3, - "Id": 1494, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false" + "CommandName": "Set-PnPTenant", + "Id": 1494 }, { - "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Rank": 4, - "Id": 1495, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" + "CommandName": "Set-PnPTenant", + "Id": 1495 }, { - "CommandName": "Set-PnPTenantAppCatalogUrl", + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Rank": 1, - "Id": 1496, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Id": 1496 }, { - "CommandName": "Set-PnPTenantCdnEnabled", + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "Rank": 1, - "Id": 1497, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1497 }, { - "CommandName": "Set-PnPTenantCdnEnabled", + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "Rank": 2, - "Id": 1498, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1498 }, { - "CommandName": "Set-PnPTenantCdnEnabled", + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "Rank": 3, - "Id": 1499, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1499 }, { - "CommandName": "Set-PnPTenantCdnPolicy", + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", "Rank": 1, - "Id": 1500, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1500 }, { - "CommandName": "Set-PnPTenantCdnPolicy", + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Rank": 2, - "Id": 1501, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1501 }, { - "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "Rank": 1, - "Id": 1502, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" + "CommandName": "Set-PnPTenantSite", + "Id": 1502 }, { - "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "Rank": 2, - "Id": 1503, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" + "CommandName": "Set-PnPTenantSite", + "Id": 1503 }, { - "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "Id": 1504, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" + "CommandName": "Set-PnPTenantSite", + "Id": 1504 }, { - "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 4, - "Id": 1505, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "CommandName": "Set-PnPTenantSite", + "Id": 1505 }, { - "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "Rank": 5, - "Id": 1506, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" + "CommandName": "Set-PnPTenantSite", + "Id": 1506 }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Rank": 1, - "Id": 1507, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1507 }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Rank": 2, - "Id": 1508, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1508 }, { - "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "Rank": 1, - "Id": 1509, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" + "CommandName": "Set-PnPTerm", + "Id": 1509 }, { - "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "Id": 1510, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "CommandName": "Set-PnPTerm", + "Id": 1510 }, { - "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 3, - "Id": 1511, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" + "CommandName": "Set-PnPTerm", + "Id": 1511 }, { - "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "Rank": 4, - "Id": 1512, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" + "CommandName": "Set-PnPTerm", + "Id": 1512 }, { - "CommandName": "Set-PnPTermGroup", + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "Rank": 1, - "Id": 1513, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" + "CommandName": "Set-PnPTermGroup", + "Id": 1513 }, { - "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "Rank": 1, - "Id": 1514, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" + "CommandName": "Set-PnPTermSet", + "Id": 1514 }, { - "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "Rank": 2, - "Id": 1515, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" + "CommandName": "Set-PnPTermSet", + "Id": 1515 }, { - "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "Rank": 3, - "Id": 1516, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" + "CommandName": "Set-PnPTermSet", + "Id": 1516 }, { - "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme", "Rank": 1, - "Id": 1517, - "Command": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Id": 1517 }, { - "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Rank": 2, - "Id": 1518, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" + "CommandName": "Set-PnPTheme", + "Id": 1518 }, { - "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "Rank": 3, - "Id": 1519, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" + "CommandName": "Set-PnPTheme", + "Id": 1519 }, { - "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "Rank": 4, - "Id": 1520, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" + "CommandName": "Set-PnPTheme", + "Id": 1520 }, { - "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "Rank": 1, - "Id": 1521, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" + "CommandName": "Set-PnPTraceLog", + "Id": 1521 }, { - "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "Rank": 2, - "Id": 1522, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" + "CommandName": "Set-PnPTraceLog", + "Id": 1522 }, { - "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "Rank": 3, - "Id": 1523, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" + "CommandName": "Set-PnPTraceLog", + "Id": 1523 }, { - "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -Off", "Rank": 4, - "Id": 1524, - "Command": "Set-PnPTraceLog -Off" + "CommandName": "Set-PnPTraceLog", + "Id": 1524 }, { - "CommandName": "Set-PnPUserOneDriveQuota", + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "Rank": 1, - "Id": 1525, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" + "CommandName": "Set-PnPUserOneDriveQuota", + "Id": 1525 }, { - "CommandName": "Set-PnPUserProfileProperty", + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "Rank": 1, - "Id": 1526, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1526 }, { - "CommandName": "Set-PnPUserProfileProperty", + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "Rank": 2, - "Id": 1527, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1527 }, { - "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "Rank": 1, - "Id": 1528, - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" + "CommandName": "Set-PnPView", + "Id": 1528 }, { - "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "Rank": 2, - "Id": 1529, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" + "CommandName": "Set-PnPView", + "Id": 1529 }, { - "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "Rank": 3, - "Id": 1530, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" + "CommandName": "Set-PnPView", + "Id": 1530 }, { - "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "Rank": 4, - "Id": 1531, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" + "CommandName": "Set-PnPView", + "Id": 1531 }, { - "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", "Rank": 1, - "Id": 1532, - "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": 1532 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "Rank": 2, - "Id": 1533, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1533 }, { - "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", "Rank": 3, - "Id": 1534, - "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": 1534 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "Rank": 4, - "Id": 1535, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1535 }, { - "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Rank": 1, - "Id": 1536, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" + "CommandName": "Set-PnPWeb", + "Id": 1536 }, { - "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Rank": 2, - "Id": 1537, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" + "CommandName": "Set-PnPWeb", + "Id": 1537 }, { - "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "Rank": 3, - "Id": 1538, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" + "CommandName": "Set-PnPWeb", + "Id": 1538 }, { - "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -NoCrawl:$true", "Rank": 4, - "Id": 1539, - "Command": "Set-PnPWeb -NoCrawl:$true" + "CommandName": "Set-PnPWeb", + "Id": 1539 }, { - "CommandName": "Set-PnPWebHeader", + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "Rank": 1, - "Id": 1540, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" + "CommandName": "Set-PnPWebHeader", + "Id": 1540 }, { - "CommandName": "Set-PnPWebHeader", + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "Rank": 2, - "Id": 1541, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" + "CommandName": "Set-PnPWebHeader", + "Id": 1541 }, { - "CommandName": "Set-PnPWebHeader", + "Command": "Set-PnPWebHeader -LogoAlignment Middle", "Rank": 3, - "Id": 1542, - "Command": "Set-PnPWebHeader -LogoAlignment Middle" + "CommandName": "Set-PnPWebHeader", + "Id": 1542 }, { - "CommandName": "Set-PnPWebhookSubscription", + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "Id": 1543, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" + "CommandName": "Set-PnPWebhookSubscription", + "Id": 1543 }, { - "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\"", "Rank": 2, - "Id": 1544, - "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": 1544 }, { - "CommandName": "Set-PnPWebPartProperty", + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", "Rank": 1, - "Id": 1545, - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" + "CommandName": "Set-PnPWebPartProperty", + "Id": 1545 }, { - "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 1, - "Id": 1546, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" + "CommandName": "Set-PnPWebPermission", + "Id": 1546 }, { - "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Rank": 2, - "Id": 1547, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" + "CommandName": "Set-PnPWebPermission", + "Id": 1547 }, { - "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 3, - "Id": 1548, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" + "CommandName": "Set-PnPWebPermission", + "Id": 1548 }, { - "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Rank": 4, - "Id": 1549, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" + "CommandName": "Set-PnPWebPermission", + "Id": 1549 }, { - "CommandName": "Set-PnPWebTheme", + "Command": "Set-PnPWebTheme -Theme MyTheme", "Rank": 1, - "Id": 1550, - "Command": "Set-PnPWebTheme -Theme MyTheme" + "CommandName": "Set-PnPWebTheme", + "Id": 1550 }, { - "CommandName": "Set-PnPWebTheme", + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Rank": 2, - "Id": 1551, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" + "CommandName": "Set-PnPWebTheme", + "Id": 1551 }, { - "CommandName": "Set-PnPWikiPageContent", + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "Rank": 1, - "Id": 1552, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" + "CommandName": "Set-PnPWikiPageContent", + "Id": 1552 }, { - "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Rank": 1, - "Id": 1553, - "Command": "Submit-PnPSearchQuery -Query \"finance\"" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1553 }, { - "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Rank": 2, - "Id": 1554, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1554 }, { - "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "Rank": 3, - "Id": 1555, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1555 }, { - "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "Rank": 4, - "Id": 1556, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1556 }, { - "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "Rank": 5, - "Id": 1557, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1557 }, { - "CommandName": "Submit-PnPTeamsChannelMessage", + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "Rank": 1, - "Id": 1558, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1558 }, { - "CommandName": "Submit-PnPTeamsChannelMessage", + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "Rank": 2, - "Id": 1559, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1559 }, { - "CommandName": "Sync-PnPAppToTeams", + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 1560, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "CommandName": "Sync-PnPAppToTeams", + "Id": 1560 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Rank": 1, - "Id": 1561, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1561 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "Rank": 2, - "Id": 1562, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1562 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "Rank": 3, - "Id": 1563, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1563 }, { - "CommandName": "Test-PnPListItemIsRecord", + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "Id": 1564, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" + "CommandName": "Test-PnPListItemIsRecord", + "Id": 1564 }, { - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "Rank": 1, - "Id": 1565, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Id": 1565 }, { - "CommandName": "Test-PnPSite", + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "Id": 1566, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "CommandName": "Test-PnPSite", + "Id": 1566 }, { - "CommandName": "Test-PnPSite", + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "Id": 1567, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "CommandName": "Test-PnPSite", + "Id": 1567 }, { - "CommandName": "Test-PnPTenantTemplate", + "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Rank": 1, - "Id": 1568, - "Command": "Test-PnPTenantTemplate -Template $myTemplate" + "CommandName": "Test-PnPTenantTemplate", + "Id": 1568 }, { - "CommandName": "Undo-PnPFileCheckedOut", + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "Rank": 1, - "Id": 1569, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" + "CommandName": "Undo-PnPFileCheckedOut", + "Id": 1569 }, { - "CommandName": "Uninstall-PnPApp", + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 1570, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "CommandName": "Uninstall-PnPApp", + "Id": 1570 }, { - "CommandName": "Uninstall-PnPApp", + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 1571, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "CommandName": "Uninstall-PnPApp", + "Id": 1571 }, { - "CommandName": "Unpublish-PnPApp", + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 1572, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "CommandName": "Unpublish-PnPApp", + "Id": 1572 }, { - "CommandName": "Unpublish-PnPApp", + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 1573, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "CommandName": "Unpublish-PnPApp", + "Id": 1573 }, { - "CommandName": "Unpublish-PnPContentType", + "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Rank": 1, - "Id": 1574, - "Command": "Unpublish-PnPContentType -ContentType 0x0101" + "CommandName": "Unpublish-PnPContentType", + "Id": 1574 }, { - "CommandName": "Unpublish-PnPSyntexModel", + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "Id": 1575, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1575 }, { - "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", "Rank": 2, - "Id": 1576, - "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": 1576 }, { - "CommandName": "Unregister-PnPHubSite", + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "Id": 1577, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "CommandName": "Unregister-PnPHubSite", + "Id": 1577 }, { - "CommandName": "Update-PnPApp", + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 1578, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "CommandName": "Update-PnPApp", + "Id": 1578 }, { - "CommandName": "Update-PnPApp", + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 1579, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "CommandName": "Update-PnPApp", + "Id": 1579 }, { - "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 1, - "Id": 1580, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1580 }, { - "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Rank": 2, - "Id": 1581, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1581 }, { - "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 3, - "Id": 1582, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1582 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "Rank": 1, - "Id": 1583, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1583 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2, - "Id": 1584, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1584 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "Rank": 3, - "Id": 1585, - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1585 }, { - "CommandName": "Update-PnPTeamsApp", + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "Rank": 1, - "Id": 1586, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" + "CommandName": "Update-PnPTeamsApp", + "Id": 1586 }, { - "CommandName": "Update-PnPTeamsUser", + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "Id": 1587, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "CommandName": "Update-PnPTeamsUser", + "Id": 1587 }, { - "CommandName": "Update-PnPTeamsUser", + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "Id": 1588, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "CommandName": "Update-PnPTeamsUser", + "Id": 1588 }, { - "CommandName": "Update-PnPTeamsUser", + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "Rank": 3, - "Id": 1589, - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" + "CommandName": "Update-PnPTeamsUser", + "Id": 1589 }, { - "CommandName": "Update-PnPUserType", + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Rank": 1, - "Id": 1590, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" + "CommandName": "Update-PnPUserType", + "Id": 1590 } ] diff --git a/version.txt b/version.txt index 6f4d0a414..935a40e22 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.92 \ No newline at end of file +2.2.93 \ No newline at end of file From e501b03b364615c7ac7499cfab400ad4ec1c3585 Mon Sep 17 00:00:00 2001 From: Jenny Wu Date: Sun, 8 Oct 2023 21:10:29 -0700 Subject: [PATCH 069/146] Add a new command Get-PnPSiteVersionPolicy, revert the change in Get-PnPSite --- documentation/Get-PnPSite.md | 20 ------- documentation/Get-PnPSiteVersionPolicy.md | 53 ++++++++++++++++++ .../Model/SharePoint/SiteVersionPolicy.cs | 4 +- src/Commands/Site/GetSite.cs | 52 +----------------- src/Commands/Site/GetSiteVersionPolicy.cs | 55 +++++++++++++++++++ 5 files changed, 113 insertions(+), 71 deletions(-) create mode 100644 documentation/Get-PnPSiteVersionPolicy.md create mode 100644 src/Commands/Site/GetSiteVersionPolicy.cs diff --git a/documentation/Get-PnPSite.md b/documentation/Get-PnPSite.md index b648909d0..1a6391626 100644 --- a/documentation/Get-PnPSite.md +++ b/documentation/Get-PnPSite.md @@ -38,12 +38,6 @@ Get-PnPSite -Includes RootWeb,ServerRelativeUrl Gets the current site specifying to include RootWeb and ServerRelativeUrl properties. For the full list of properties see https://learn.microsoft.com/previous-versions/office/sharepoint-server/ee538579(v%3doffice.15) -### EXAMPLE 3 -```powershell -Get-PnPSite -GetVersionPolicy -``` -Get site level version policy settings. - ## PARAMETERS ### -Connection @@ -60,20 +54,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -GetVersionPolicy -Get site level version policy settings. - -```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) diff --git a/documentation/Get-PnPSiteVersionPolicy.md b/documentation/Get-PnPSiteVersionPolicy.md new file mode 100644 index 000000000..994a84836 --- /dev/null +++ b/documentation/Get-PnPSiteVersionPolicy.md @@ -0,0 +1,53 @@ +--- +Module Name: PnP.PowerShell +schema: 2.0.0 +applicable: SharePoint Online +online version: https://pnp.github.io/powershell/cmdlets/Get-PnPSiteVersionPolicy.html +external help file: PnP.PowerShell.dll-Help.xml +title: Get-PnPSiteVersionPolicy +--- + +# Get-PnPSiteVersionPolicy + +## SYNOPSIS +Get version policy setting of the site. + +## SYNTAX + +```powershell +Get-PnPSiteVersionPolicy [-Connection ] +``` + +## DESCRIPTION +This cmdlet allows retrieval of version policy setting on the site. When the new document libraries are created, they will be set as the version policy of the site. +If the version policy is not set on the site, the setting of the tenant will be used. + +## EXAMPLES + +### EXAMPLE 1 +```powershell +Get-PnPSiteVersionPolicy +``` + +Returns the version policy setting of the site. + +## PARAMETERS + +### -Connection +Optional connection to be used by the cmdlet. Retrieve the value for this parameter by either specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection. + +```yaml +Type: PnPConnection +Parameter Sets: (All) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +## RELATED LINKS + +[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) +[Microsoft Docs documentation](https://learn.microsoft.com/sharepoint/dev/solution-guidance/modern-experience-site-classification#programmatically-read-the-classification-of-a-site) \ No newline at end of file diff --git a/src/Commands/Model/SharePoint/SiteVersionPolicy.cs b/src/Commands/Model/SharePoint/SiteVersionPolicy.cs index c8b28259c..8f1659ec6 100644 --- a/src/Commands/Model/SharePoint/SiteVersionPolicy.cs +++ b/src/Commands/Model/SharePoint/SiteVersionPolicy.cs @@ -8,8 +8,8 @@ namespace PnP.PowerShell.Commands.Model.SharePoint { /// /// The VersionPolicy setting on site - /// The new document libraries use the setting on site if it is set - /// Otherwise, it uses the setting on tenant + /// When the new document libraries are created, they will be set as the version policy of the site. + /// If the version policy is not set on the site, the setting on the tenant will be used. /// public class SiteVersionPolicy { diff --git a/src/Commands/Site/GetSite.cs b/src/Commands/Site/GetSite.cs index 813729077..fafd6c303 100644 --- a/src/Commands/Site/GetSite.cs +++ b/src/Commands/Site/GetSite.cs @@ -3,7 +3,6 @@ using System; using System.Linq.Expressions; using System.Management.Automation; -using PnP.PowerShell.Commands.Model.SharePoint; namespace PnP.PowerShell.Commands.Site { @@ -11,58 +10,13 @@ namespace PnP.PowerShell.Commands.Site [OutputType(typeof(Microsoft.SharePoint.Client.Site))] public class GetSite : PnPRetrievalsCmdlet { - [Parameter(Mandatory = false)] - public SwitchParameter GetVersionPolicy; - protected override void ExecuteCmdlet() { DefaultRetrievalExpressions = new Expression>[] { s => s.Url, s => s.CompatibilityLevel }; var site = ClientContext.Site; - - if (ParameterSpecified(nameof(GetVersionPolicy))) - { - site.EnsureProperties(s => s.Url, s => s.VersionPolicyForNewLibrariesTemplate, s => s.VersionPolicyForNewLibrariesTemplate.VersionPolicies); - - var vp = new SiteVersionPolicy(); - vp.Url = site.Url; - - if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.ServerObjectIsNull == true) - { - vp.Description = "No Site Level Policy Set"; - } - else - { - site.EnsureProperties(s => s.VersionPolicyForNewLibrariesTemplate, s => s.VersionPolicyForNewLibrariesTemplate.MajorVersionLimit, s => s.VersionPolicyForNewLibrariesTemplate.VersionPolicies); - - vp.DefaultTrimMode = site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode.ToString(); - - if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode == VersionPolicyTrimMode.AutoExpiration) - { - vp.Description = "Site has Automatic Policy Set"; - } - else - { - if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode == VersionPolicyTrimMode.ExpireAfter) - { - vp.DefaultExpireAfterDays = site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultExpireAfterDays.ToString(); - vp.Description = "Site has Manual settings with specific count and time limits"; - } - else if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode == VersionPolicyTrimMode.NoExpiration) - { - vp.Description = "Site has Manual settings with specific version count limit and no time limits"; - } - vp.MajorVersionLimit = site.VersionPolicyForNewLibrariesTemplate.MajorVersionLimit.ToString(); - } - } - - WriteObject(vp); - } - else - { - ClientContext.Load(site, RetrievalExpressions); - ClientContext.ExecuteQueryRetry(); - WriteObject(site); - } + ClientContext.Load(site, RetrievalExpressions); + ClientContext.ExecuteQueryRetry(); + WriteObject(site); } } } diff --git a/src/Commands/Site/GetSiteVersionPolicy.cs b/src/Commands/Site/GetSiteVersionPolicy.cs new file mode 100644 index 000000000..a1f676293 --- /dev/null +++ b/src/Commands/Site/GetSiteVersionPolicy.cs @@ -0,0 +1,55 @@ +using Microsoft.SharePoint.Client; + +using System; +using System.Linq.Expressions; +using System.Management.Automation; +using PnP.PowerShell.Commands.Model.SharePoint; + +namespace PnP.PowerShell.Commands.Site +{ + [Cmdlet(VerbsCommon.Get, "PnPSiteVersionPolicy")] + [OutputType(typeof(PnP.PowerShell.Commands.Model.SharePoint.SiteVersionPolicy))] + public class GetSiteVersionPolicy : PnPSharePointCmdlet + { + protected override void ExecuteCmdlet() + { + ClientContext.Load(ClientContext.Site, s => s.Url, s => s.VersionPolicyForNewLibrariesTemplate, s => s.VersionPolicyForNewLibrariesTemplate.VersionPolicies); + ClientContext.ExecuteQueryRetry(); + var site = ClientContext.Site; + + var vp = new SiteVersionPolicy(); + vp.Url = site.Url; + + if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.ServerObjectIsNull == true) + { + vp.Description = "No Site Level Policy Set"; + } + else + { + site.EnsureProperties(s => s.VersionPolicyForNewLibrariesTemplate, s => s.VersionPolicyForNewLibrariesTemplate.MajorVersionLimit, s => s.VersionPolicyForNewLibrariesTemplate.VersionPolicies); + + vp.DefaultTrimMode = site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode.ToString(); + + if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode == VersionPolicyTrimMode.AutoExpiration) + { + vp.Description = "Site has Automatic Policy Set"; + } + else + { + if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode == VersionPolicyTrimMode.ExpireAfter) + { + vp.DefaultExpireAfterDays = site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultExpireAfterDays.ToString(); + vp.Description = "Site has Manual settings with specific count and time limits"; + } + else if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode == VersionPolicyTrimMode.NoExpiration) + { + vp.Description = "Site has Manual settings with specific version count limit and no time limits"; + } + vp.MajorVersionLimit = site.VersionPolicyForNewLibrariesTemplate.MajorVersionLimit.ToString(); + } + } + + WriteObject(vp); + } + } +} From 130db70950f7867286a642678a4839f21af9e556 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Mon, 9 Oct 2023 09:34:24 +0200 Subject: [PATCH 070/146] Added entry for PnP Core PR 1290 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aead501c9..8cf4af2ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -58,6 +58,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed `Copy-PnPFile`, `Copy-PnPFolder` and `Move-PnPFile` to better handle copying or moving operations to OneDrive or Multi-geo environments. [#3245](https://github.com/pnp/powershell/pull/3245) - Fixed `Get-PnPTenantTemplate` not doing anything when the `-SiteUrl` parameter had not been specified. It will now use the currently connected site when the parameter is omitted. [#3431](https://github.com/pnp/powershell/pull/3431) - Fixed `Enable-PnPPageScheduling` and `Disable-PnPPageScheduling` cmdlets not working due to changes in backend code. [#3469](https://github.com/pnp/powershell/pull/3469) +- 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) ### Changed From 81ecac61527156e0d72b69363f453f4994a86723 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Tue, 10 Oct 2023 02:35:58 +0000 Subject: [PATCH 071/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6360 ++++++++--------- version.txt | 2 +- 3 files changed, 3182 insertions(+), 3182 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 2df489053..db9b24e2e 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -715a700dbe9a14d3798edbd47c9dd002b8092162 \ No newline at end of file +647b0eafc80c5cedad250112852593956e9798da \ 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 d48ef015f..cb5046c2c 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -2,9541 +2,9541 @@ { "Command": "Add-PnPAlert -List \"Demo List\"", "Rank": 1, - "CommandName": "Add-PnPAlert", - "Id": 1 + "Id": 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)", "Rank": 2, - "CommandName": "Add-PnPAlert", - "Id": 2 + "Id": 2, + "CommandName": "Add-PnPAlert" }, { "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Add-PnPAlert", - "Id": 3 + "Id": 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))", "Rank": 4, - "CommandName": "Add-PnPAlert", - "Id": 4 + "Id": 4, + "CommandName": "Add-PnPAlert" }, { "Command": "Add-PnPApp -Path ./myapp.sppkg", "Rank": 1, - "CommandName": "Add-PnPApp", - "Id": 5 + "Id": 5, + "CommandName": "Add-PnPApp" }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Rank": 2, - "CommandName": "Add-PnPApp", - "Id": 6 + "Id": 6, + "CommandName": "Add-PnPApp" }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Rank": 3, - "CommandName": "Add-PnPApp", - "Id": 7 + "Id": 7, + "CommandName": "Add-PnPApp" }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Rank": 4, - "CommandName": "Add-PnPApp", - "Id": 8 + "Id": 8, + "CommandName": "Add-PnPApp" }, { "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", - "Id": 9 + "Id": 9, + "CommandName": "Add-PnPApplicationCustomizer" }, { "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Rank": 1, - "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 10 + "Id": 10, + "CommandName": "Add-PnPAvailableSiteClassification" }, { "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Rank": 2, - "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 11 + "Id": 11, + "CommandName": "Add-PnPAvailableSiteClassification" }, { "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 12 + "Id": 12, + "CommandName": "Add-PnPAzureADGroupMember" }, { "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 13 + "Id": 13, + "CommandName": "Add-PnPAzureADGroupMember" }, { "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 14 + "Id": 14, + "CommandName": "Add-PnPAzureADGroupMember" }, { "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 15 + "Id": 15, + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 16 + "Id": 16, + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 17 + "Id": 17, + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "Rank": 1, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 18 + "Id": 18, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "Rank": 2, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 19 + "Id": 19, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "Rank": 1, - "CommandName": "Add-PnPContentType", - "Id": 20 + "Id": 20, + "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\"", "Rank": 2, - "CommandName": "Add-PnPContentType", - "Id": 21 + "Id": 21, + "CommandName": "Add-PnPContentType" }, { "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "Rank": 3, - "CommandName": "Add-PnPContentType", - "Id": 22 + "Id": 22, + "CommandName": "Add-PnPContentType" }, { "Command": "Add-PnPContentType -Name \"Project Item\"", "Rank": 4, - "CommandName": "Add-PnPContentType", - "Id": 23 + "Id": 23, + "CommandName": "Add-PnPContentType" }, { "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "Rank": 5, - "CommandName": "Add-PnPContentType", - "Id": 24 + "Id": 24, + "CommandName": "Add-PnPContentType" }, { "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Rank": 1, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 25 + "Id": 25, + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Rank": 2, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 26 + "Id": 26, + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 27 + "Id": 27, + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 28 + "Id": 28, + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Rank": 1, - "CommandName": "Add-PnPContentTypeToList", - "Id": 29 + "Id": 29, + "CommandName": "Add-PnPContentTypeToList" }, { "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", - "Id": 30 + "Id": 30, + "CommandName": "Add-PnPCustomAction" }, { "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "Rank": 1, - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 31 + "Id": 31, + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "Rank": 2, - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 32 + "Id": 32, + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Rank": 1, - "CommandName": "Add-PnPDocumentSet", - "Id": 33 + "Id": 33, + "CommandName": "Add-PnPDocumentSet" }, { "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "Rank": 1, - "CommandName": "Add-PnPEventReceiver", - "Id": 34 + "Id": 34, + "CommandName": "Add-PnPEventReceiver" }, { "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "Rank": 2, - "CommandName": "Add-PnPEventReceiver", - "Id": 35 + "Id": 35, + "CommandName": "Add-PnPEventReceiver" }, { "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", "Rank": 3, - "CommandName": "Add-PnPEventReceiver", - "Id": 36 + "Id": 36, + "CommandName": "Add-PnPEventReceiver" }, { "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "Rank": 4, - "CommandName": "Add-PnPEventReceiver", - "Id": 37 + "Id": 37, + "CommandName": "Add-PnPEventReceiver" }, { "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Rank": 1, - "CommandName": "Add-PnPField", - "Id": 38 + "Id": 38, + "CommandName": "Add-PnPField" }, { "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", - "Id": 39 + "Id": 39, + "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\"", "Rank": 3, - "CommandName": "Add-PnPField", - "Id": 40 + "Id": 40, + "CommandName": "Add-PnPField" }, { "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "Rank": 4, - "CommandName": "Add-PnPField", - "Id": 41 + "Id": 41, + "CommandName": "Add-PnPField" }, { "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "Rank": 5, - "CommandName": "Add-PnPField", - "Id": 42 + "Id": 42, + "CommandName": "Add-PnPField" }, { "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Rank": 6, - "CommandName": "Add-PnPField", - "Id": 43 + "Id": 43, + "CommandName": "Add-PnPField" }, { "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Add-PnPFieldToContentType", - "Id": 44 + "Id": 44, + "CommandName": "Add-PnPFieldToContentType" }, { "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Rank": 1, - "CommandName": "Add-PnPFile", - "Id": 45 + "Id": 45, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Rank": 2, - "CommandName": "Add-PnPFile", - "Id": 46 + "Id": 46, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "Rank": 3, - "CommandName": "Add-PnPFile", - "Id": 47 + "Id": 47, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "Rank": 4, - "CommandName": "Add-PnPFile", - "Id": 48 + "Id": 48, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "Rank": 5, - "CommandName": "Add-PnPFile", - "Id": 49 + "Id": 49, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "Rank": 6, - "CommandName": "Add-PnPFile", - "Id": 50 + "Id": 50, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Rank": 7, - "CommandName": "Add-PnPFile", - "Id": 51 + "Id": 51, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Rank": 8, - "CommandName": "Add-PnPFile", - "Id": 52 + "Id": 52, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 53 + "Id": 53, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 54 + "Id": 54, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3, - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 55 + "Id": 55, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 56 + "Id": 56, + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "Rank": 2, - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 57 + "Id": 57, + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "CommandName": "Add-PnPFileSharingInvite", - "Id": 58 + "Id": 58, + "CommandName": "Add-PnPFileSharingInvite" }, { "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Rank": 2, - "CommandName": "Add-PnPFileSharingInvite", - "Id": 59 + "Id": 59, + "CommandName": "Add-PnPFileSharingInvite" }, { "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", - "Id": 60 + "Id": 60, + "CommandName": "Add-PnPFileSharingInvite" }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Rank": 1, - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 61 + "Id": 61, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "Rank": 2, - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 62 + "Id": 62, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "Rank": 3, - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 63 + "Id": 63, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "Rank": 4, - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 64 + "Id": 64, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Rank": 5, - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 65 + "Id": 65, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPFileUserSharingLink", - "Id": 66 + "Id": 66, + "CommandName": "Add-PnPFileUserSharingLink" }, { "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", - "Id": 67 + "Id": 67, + "CommandName": "Add-PnPFileUserSharingLink" }, { "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", - "Id": 68 + "Id": 68, + "CommandName": "Add-PnPFlowOwner" }, { "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", - "Id": 69 + "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 CanViewWithShare", "Rank": 3, - "CommandName": "Add-PnPFlowOwner", - "Id": 70 + "Id": 70, + "CommandName": "Add-PnPFlowOwner" }, { "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", - "Id": 71 + "Id": 71, + "CommandName": "Add-PnPFlowOwner" }, { "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "CommandName": "Add-PnPFolder", - "Id": 72 + "Id": 72, + "CommandName": "Add-PnPFolder" }, { "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Rank": 2, - "CommandName": "Add-PnPFolder", - "Id": 73 + "Id": 73, + "CommandName": "Add-PnPFolder" }, { "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Rank": 3, - "CommandName": "Add-PnPFolder", - "Id": 74 + "Id": 74, + "CommandName": "Add-PnPFolder" }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 75 + "Id": 75, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 76 + "Id": 76, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3, - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 77 + "Id": 77, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 78 + "Id": 78, + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Rank": 2, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 79 + "Id": 79, + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "CommandName": "Add-PnPFolderSharingInvite", - "Id": 80 + "Id": 80, + "CommandName": "Add-PnPFolderSharingInvite" }, { "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Rank": 2, - "CommandName": "Add-PnPFolderSharingInvite", - "Id": 81 + "Id": 81, + "CommandName": "Add-PnPFolderSharingInvite" }, { "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", - "Id": 82 + "Id": 82, + "CommandName": "Add-PnPFolderSharingInvite" }, { "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPFolderUserSharingLink", - "Id": 83 + "Id": 83, + "CommandName": "Add-PnPFolderUserSharingLink" }, { "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", - "Id": 84 + "Id": 84, + "CommandName": "Add-PnPFolderUserSharingLink" }, { "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "CommandName": "Add-PnPGroupMember", - "Id": 85 + "Id": 85, + "CommandName": "Add-PnPGroupMember" }, { "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Rank": 2, - "CommandName": "Add-PnPGroupMember", - "Id": 86 + "Id": 86, + "CommandName": "Add-PnPGroupMember" }, { "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Rank": 1, - "CommandName": "Add-PnPHtmlPublishingPageLayout", - "Id": 87 + "Id": 87, + "CommandName": "Add-PnPHtmlPublishingPageLayout" }, { "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Rank": 1, - "CommandName": "Add-PnPHubSiteAssociation", - "Id": 88 + "Id": 88, + "CommandName": "Add-PnPHubSiteAssociation" }, { "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "Rank": 1, - "CommandName": "Add-PnPHubToHubAssociation", - "Id": 89 + "Id": 89, + "CommandName": "Add-PnPHubToHubAssociation" }, { "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "Rank": 2, - "CommandName": "Add-PnPHubToHubAssociation", - "Id": 90 + "Id": 90, + "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\"", "Rank": 3, - "CommandName": "Add-PnPHubToHubAssociation", - "Id": 91 + "Id": 91, + "CommandName": "Add-PnPHubToHubAssociation" }, { "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "Rank": 1, - "CommandName": "Add-PnPJavaScriptBlock", - "Id": 92 + "Id": 92, + "CommandName": "Add-PnPJavaScriptBlock" }, { "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "Rank": 2, - "CommandName": "Add-PnPJavaScriptBlock", - "Id": 93 + "Id": 93, + "CommandName": "Add-PnPJavaScriptBlock" }, { "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "Rank": 1, - "CommandName": "Add-PnPJavaScriptLink", - "Id": 94 + "Id": 94, + "CommandName": "Add-PnPJavaScriptLink" }, { "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Rank": 2, - "CommandName": "Add-PnPJavaScriptLink", - "Id": 95 + "Id": 95, + "CommandName": "Add-PnPJavaScriptLink" }, { "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "Rank": 1, - "CommandName": "Add-PnPListDesign", - "Id": 96 + "Id": 96, + "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\"", "Rank": 2, - "CommandName": "Add-PnPListDesign", - "Id": 97 + "Id": 97, + "CommandName": "Add-PnPListDesign" }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Rank": 1, - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 98 + "Id": 98, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "Rank": 2, - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 99 + "Id": 99, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Rank": 3, - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 100 + "Id": 100, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "CommandName": "Add-PnPListItem", - "Id": 101 + "Id": 101, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "CommandName": "Add-PnPListItem", - "Id": 102 + "Id": 102, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "Rank": 3, - "CommandName": "Add-PnPListItem", - "Id": 103 + "Id": 103, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "Rank": 4, - "CommandName": "Add-PnPListItem", - "Id": 104 + "Id": 104, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Rank": 5, - "CommandName": "Add-PnPListItem", - "Id": 105 + "Id": 105, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "Rank": 1, - "CommandName": "Add-PnPListItemAttachment", - "Id": 106 + "Id": 106, + "CommandName": "Add-PnPListItemAttachment" }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "Rank": 2, - "CommandName": "Add-PnPListItemAttachment", - "Id": 107 + "Id": 107, + "CommandName": "Add-PnPListItemAttachment" }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Rank": 3, - "CommandName": "Add-PnPListItemAttachment", - "Id": 108 + "Id": 108, + "CommandName": "Add-PnPListItemAttachment" }, { "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Rank": 1, - "CommandName": "Add-PnPListItemComment", - "Id": 109 + "Id": 109, + "CommandName": "Add-PnPListItemComment" }, { "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Rank": 1, - "CommandName": "Add-PnPMasterPage", - "Id": 110 + "Id": 110, + "CommandName": "Add-PnPMasterPage" }, { "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 111 + "Id": 111, + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 112 + "Id": 112, + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 113 + "Id": 113, + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 114 + "Id": 114, + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 115 + "Id": 115, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 116 + "Id": 116, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Rank": 3, - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 117 + "Id": 117, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "Rank": 1, - "CommandName": "Add-PnPNavigationNode", - "Id": 118 + "Id": 118, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "Rank": 2, - "CommandName": "Add-PnPNavigationNode", - "Id": 119 + "Id": 119, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "Rank": 3, - "CommandName": "Add-PnPNavigationNode", - "Id": 120 + "Id": 120, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "Rank": 4, - "CommandName": "Add-PnPNavigationNode", - "Id": 121 + "Id": 121, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Rank": 5, - "CommandName": "Add-PnPNavigationNode", - "Id": 122 + "Id": 122, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Rank": 6, - "CommandName": "Add-PnPNavigationNode", - "Id": 123 + "Id": 123, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Rank": 7, - "CommandName": "Add-PnPNavigationNode", - "Id": 124 + "Id": 124, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Rank": 8, - "CommandName": "Add-PnPNavigationNode", - "Id": 125 + "Id": 125, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "Rank": 1, - "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 126 + "Id": 126, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { "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", - "Id": 127 + "Id": 127, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Rank": 3, - "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 128 + "Id": 128, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Rank": 1, - "CommandName": "Add-PnPOrgNewsSite", - "Id": 129 + "Id": 129, + "CommandName": "Add-PnPOrgNewsSite" }, { "Command": "Add-PnPPage -Name \"NewPage\"", "Rank": 1, - "CommandName": "Add-PnPPage", - "Id": 130 + "Id": 130, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Rank": 2, - "CommandName": "Add-PnPPage", - "Id": 131 + "Id": 131, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Rank": 3, - "CommandName": "Add-PnPPage", - "Id": 132 + "Id": 132, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Rank": 4, - "CommandName": "Add-PnPPage", - "Id": 133 + "Id": 133, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Rank": 5, - "CommandName": "Add-PnPPage", - "Id": 134 + "Id": 134, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Rank": 6, - "CommandName": "Add-PnPPage", - "Id": 135 + "Id": 135, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "CommandName": "Add-PnPPage", - "Id": 136 + "Id": 136, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Rank": 8, - "CommandName": "Add-PnPPage", - "Id": 137 + "Id": 137, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "CommandName": "Add-PnPPage", - "Id": 138 + "Id": 138, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "CommandName": "Add-PnPPage", - "Id": 139 + "Id": 139, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "Rank": 1, - "CommandName": "Add-PnPPageImageWebPart", - "Id": 140 + "Id": 140, + "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\"", "Rank": 2, - "CommandName": "Add-PnPPageImageWebPart", - "Id": 141 + "Id": 141, + "CommandName": "Add-PnPPageImageWebPart" }, { "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Rank": 1, - "CommandName": "Add-PnPPageSection", - "Id": 142 + "Id": 142, + "CommandName": "Add-PnPPageSection" }, { "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Rank": 2, - "CommandName": "Add-PnPPageSection", - "Id": 143 + "Id": 143, + "CommandName": "Add-PnPPageSection" }, { "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Rank": 1, - "CommandName": "Add-PnPPageTextPart", - "Id": 144 + "Id": 144, + "CommandName": "Add-PnPPageTextPart" }, { "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "Rank": 2, - "CommandName": "Add-PnPPageTextPart", - "Id": 145 + "Id": 145, + "CommandName": "Add-PnPPageTextPart" }, { "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", - "Id": 146 + "Id": 146, + "CommandName": "Add-PnPPageTextPart" }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Rank": 1, - "CommandName": "Add-PnPPageWebPart", - "Id": 147 + "Id": 147, + "CommandName": "Add-PnPPageWebPart" }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Rank": 2, - "CommandName": "Add-PnPPageWebPart", - "Id": 148 + "Id": 148, + "CommandName": "Add-PnPPageWebPart" }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Rank": 3, - "CommandName": "Add-PnPPageWebPart", - "Id": 149 + "Id": 149, + "CommandName": "Add-PnPPageWebPart" }, { "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Rank": 1, - "CommandName": "Add-PnPPlannerBucket", - "Id": 150 + "Id": 150, + "CommandName": "Add-PnPPlannerBucket" }, { "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Rank": 2, - "CommandName": "Add-PnPPlannerBucket", - "Id": 151 + "Id": 151, + "CommandName": "Add-PnPPlannerBucket" }, { "Command": "Add-PnPPlannerRoster", "Rank": 1, - "CommandName": "Add-PnPPlannerRoster", - "Id": 152 + "Id": 152, + "CommandName": "Add-PnPPlannerRoster" }, { "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPPlannerRosterMember", - "Id": 153 + "Id": 153, + "CommandName": "Add-PnPPlannerRosterMember" }, { "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 1, - "CommandName": "Add-PnPPlannerTask", - "Id": 154 + "Id": 154, + "CommandName": "Add-PnPPlannerTask" }, { "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 2, - "CommandName": "Add-PnPPlannerTask", - "Id": 155 + "Id": 155, + "CommandName": "Add-PnPPlannerTask" }, { "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", - "Id": 156 + "Id": 156, + "CommandName": "Add-PnPPlannerTask" }, { "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "CommandName": "Add-PnPPublishingImageRendition", - "Id": 157 + "Id": 157, + "CommandName": "Add-PnPPublishingImageRendition" }, { "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "Rank": 1, - "CommandName": "Add-PnPPublishingPage", - "Id": 158 + "Id": 158, + "CommandName": "Add-PnPPublishingPage" }, { "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Rank": 2, - "CommandName": "Add-PnPPublishingPage", - "Id": 159 + "Id": 159, + "CommandName": "Add-PnPPublishingPage" }, { "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Rank": 1, - "CommandName": "Add-PnPPublishingPageLayout", - "Id": 160 + "Id": 160, + "CommandName": "Add-PnPPublishingPageLayout" }, { "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Rank": 1, - "CommandName": "Add-PnPRoleDefinition", - "Id": 161 + "Id": 161, + "CommandName": "Add-PnPRoleDefinition" }, { "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Rank": 2, - "CommandName": "Add-PnPRoleDefinition", - "Id": 162 + "Id": 162, + "CommandName": "Add-PnPRoleDefinition" }, { "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Rank": 3, - "CommandName": "Add-PnPRoleDefinition", - "Id": 163 + "Id": 163, + "CommandName": "Add-PnPRoleDefinition" }, { "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 164 + "Id": 164, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 165 + "Id": 165, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 166 + "Id": 166, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Command": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 167 + "Id": 167, + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 168 + "Id": 168, + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { "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", - "Id": 169 + "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 -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png", "Rank": 2, - "CommandName": "Add-PnPSiteDesign", - "Id": 170 + "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/my images/logo.png\"", "Rank": 3, - "CommandName": "Add-PnPSiteDesign", - "Id": 171 + "Id": 171, + "CommandName": "Add-PnPSiteDesign" }, { "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "Rank": 1, - "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 172 + "Id": 172, + "CommandName": "Add-PnPSiteDesignFromWeb" }, { "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2, - "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 173 + "Id": 173, + "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", "Rank": 3, - "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 174 + "Id": 174, + "CommandName": "Add-PnPSiteDesignFromWeb" }, { "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "CommandName": "Add-PnPSiteDesignTask", - "Id": 175 + "Id": 175, + "CommandName": "Add-PnPSiteDesignTask" }, { "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 2, - "CommandName": "Add-PnPSiteDesignTask", - "Id": 176 + "Id": 176, + "CommandName": "Add-PnPSiteDesignTask" }, { "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Rank": 1, - "CommandName": "Add-PnPSiteScript", - "Id": 177 + "Id": 177, + "CommandName": "Add-PnPSiteScript" }, { "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Rank": 1, - "CommandName": "Add-PnPSiteScriptPackage", - "Id": 178 + "Id": 178, + "CommandName": "Add-PnPSiteScriptPackage" }, { "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Rank": 1, - "CommandName": "Add-PnPSiteTemplate", - "Id": 179 + "Id": 179, + "CommandName": "Add-PnPSiteTemplate" }, { "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "Rank": 1, - "CommandName": "Add-PnPStoredCredential", - "Id": 180 + "Id": 180, + "CommandName": "Add-PnPStoredCredential" }, { "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", - "Id": 181 + "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)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"", "Rank": 3, - "CommandName": "Add-PnPStoredCredential", - "Id": 182 + "Id": 182, + "CommandName": "Add-PnPStoredCredential" }, { "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Rank": 1, - "CommandName": "Add-PnPTaxonomyField", - "Id": 183 + "Id": 183, + "CommandName": "Add-PnPTaxonomyField" }, { "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Rank": 2, - "CommandName": "Add-PnPTaxonomyField", - "Id": 184 + "Id": 184, + "CommandName": "Add-PnPTaxonomyField" }, { "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "Rank": 1, - "CommandName": "Add-PnPTeamsChannel", - "Id": 185 + "Id": 185, + "CommandName": "Add-PnPTeamsChannel" }, { "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Rank": 2, - "CommandName": "Add-PnPTeamsChannel", - "Id": 186 + "Id": 186, + "CommandName": "Add-PnPTeamsChannel" }, { "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "Rank": 3, - "CommandName": "Add-PnPTeamsChannel", - "Id": 187 + "Id": 187, + "CommandName": "Add-PnPTeamsChannel" }, { "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Rank": 4, - "CommandName": "Add-PnPTeamsChannel", - "Id": 188 + "Id": 188, + "CommandName": "Add-PnPTeamsChannel" }, { "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", - "Id": 189 + "Id": 189, + "CommandName": "Add-PnpTeamsChannelUser" }, { "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Rank": 2, - "CommandName": "Add-PnpTeamsChannelUser", - "Id": 190 + "Id": 190, + "CommandName": "Add-PnpTeamsChannelUser" }, { "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", - "Id": 191 + "Id": 191, + "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\"", "Rank": 2, - "CommandName": "Add-PnPTeamsTab", - "Id": 192 + "Id": 192, + "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\"", "Rank": 3, - "CommandName": "Add-PnPTeamsTab", - "Id": 193 + "Id": 193, + "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", "Rank": 4, - "CommandName": "Add-PnPTeamsTab", - "Id": 194 + "Id": 194, + "CommandName": "Add-PnPTeamsTab" }, { "Command": "Add-PnPTeamsTeam", "Rank": 1, - "CommandName": "Add-PnPTeamsTeam", - "Id": 195 + "Id": 195, + "CommandName": "Add-PnPTeamsTeam" }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "CommandName": "Add-PnPTeamsUser", - "Id": 196 + "Id": 196, + "CommandName": "Add-PnPTeamsUser" }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "CommandName": "Add-PnPTeamsUser", - "Id": 197 + "Id": 197, + "CommandName": "Add-PnPTeamsUser" }, { "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "Rank": 3, - "CommandName": "Add-PnPTeamsUser", - "Id": 198 + "Id": 198, + "CommandName": "Add-PnPTeamsUser" }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Rank": 4, - "CommandName": "Add-PnPTeamsUser", - "Id": 199 + "Id": 199, + "CommandName": "Add-PnPTeamsUser" }, { "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "CommandName": "Add-PnPTenantCdnOrigin", - "Id": 200 + "Id": 200, + "CommandName": "Add-PnPTenantCdnOrigin" }, { "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Rank": 1, - "CommandName": "Add-PnPTenantSequence", - "Id": 201 + "Id": 201, + "CommandName": "Add-PnPTenantSequence" }, { "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSite", - "Id": 202 + "Id": 202, + "CommandName": "Add-PnPTenantSequenceSite" }, { "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSubSite", - "Id": 203 + "Id": 203, + "CommandName": "Add-PnPTenantSequenceSubSite" }, { "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Rank": 1, - "CommandName": "Add-PnPTermToTerm", - "Id": 204 + "Id": 204, + "CommandName": "Add-PnPTermToTerm" }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "Rank": 1, - "CommandName": "Add-PnPView", - "Id": 205 + "Id": 205, + "CommandName": "Add-PnPView" }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "Rank": 2, - "CommandName": "Add-PnPView", - "Id": 206 + "Id": 206, + "CommandName": "Add-PnPView" }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "Rank": 3, - "CommandName": "Add-PnPView", - "Id": 207 + "Id": 207, + "CommandName": "Add-PnPView" }, { "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", - "Id": 208 + "Id": 208, + "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\"", "Rank": 2, - "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Id": 209 + "Id": 209, + "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\"", "Rank": 3, - "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Id": 210 + "Id": 210, + "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "CommandName": "Add-PnPWebhookSubscription", - "Id": 211 + "Id": 211, + "CommandName": "Add-PnPWebhookSubscription" }, { "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Rank": 2, - "CommandName": "Add-PnPWebhookSubscription", - "Id": 212 + "Id": 212, + "CommandName": "Add-PnPWebhookSubscription" }, { "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "Rank": 3, - "CommandName": "Add-PnPWebhookSubscription", - "Id": 213 + "Id": 213, + "CommandName": "Add-PnPWebhookSubscription" }, { "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "Rank": 1, - "CommandName": "Add-PnPWebPartToWebPartPage", - "Id": 214 + "Id": 214, + "CommandName": "Add-PnPWebPartToWebPartPage" }, { "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Rank": 2, - "CommandName": "Add-PnPWebPartToWebPartPage", - "Id": 215 + "Id": 215, + "CommandName": "Add-PnPWebPartToWebPartPage" }, { "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "Rank": 1, - "CommandName": "Add-PnPWebPartToWikiPage", - "Id": 216 + "Id": 216, + "CommandName": "Add-PnPWebPartToWikiPage" }, { "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Rank": 2, - "CommandName": "Add-PnPWebPartToWikiPage", - "Id": 217 + "Id": 217, + "CommandName": "Add-PnPWebPartToWikiPage" }, { "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Rank": 1, - "CommandName": "Add-PnPWikiPage", - "Id": 218 + "Id": 218, + "CommandName": "Add-PnPWikiPage" }, { "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupMember", - "Id": 219 + "Id": 219, + "CommandName": "Clear-PnPAzureADGroupMember" }, { "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupOwner", - "Id": 220 + "Id": 220, + "CommandName": "Clear-PnPAzureADGroupOwner" }, { "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Rank": 1, - "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 221 + "Id": 221, + "CommandName": "Clear-PnPDefaultColumnValues" }, { "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Rank": 2, - "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 222 + "Id": 222, + "CommandName": "Clear-PnPDefaultColumnValues" }, { "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Clear-PnPListItemAsRecord", - "Id": 223 + "Id": 223, + "CommandName": "Clear-PnPListItemAsRecord" }, { "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Id": 224 + "Id": 224, + "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Id": 225 + "Id": 225, + "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 226 + "Id": 226, + "CommandName": "Clear-PnpRecycleBinItem" }, { "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Rank": 2, - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 227 + "Id": 227, + "CommandName": "Clear-PnpRecycleBinItem" }, { "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Rank": 3, - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 228 + "Id": 228, + "CommandName": "Clear-PnpRecycleBinItem" }, { "Command": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, - "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Id": 229 + "Id": 229, + "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 230 + "Id": 230, + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 231 + "Id": 231, + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { "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", - "Id": 232 + "Id": 232, + "CommandName": "Connect-PnPOnline" }, { "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Rank": 1, - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 233 + "Id": 233, + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Rank": 2, - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 234 + "Id": 234, + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { "Command": "Convert-PnPSiteTemplate -Path template.xml", "Rank": 1, - "CommandName": "Convert-PnPSiteTemplate", - "Id": 235 + "Id": 235, + "CommandName": "Convert-PnPSiteTemplate" }, { "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Rank": 2, - "CommandName": "Convert-PnPSiteTemplate", - "Id": 236 + "Id": 236, + "CommandName": "Convert-PnPSiteTemplate" }, { "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Rank": 3, - "CommandName": "Convert-PnPSiteTemplate", - "Id": 237 + "Id": 237, + "CommandName": "Convert-PnPSiteTemplate" }, { "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Rank": 1, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 238 + "Id": 238, + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Rank": 2, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 239 + "Id": 239, + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Rank": 1, - "CommandName": "ConvertTo-PnPPage", - "Id": 240 + "Id": 240, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Rank": 2, - "CommandName": "ConvertTo-PnPPage", - "Id": 241 + "Id": 241, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Rank": 3, - "CommandName": "ConvertTo-PnPPage", - "Id": 242 + "Id": 242, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Rank": 4, - "CommandName": "ConvertTo-PnPPage", - "Id": 243 + "Id": 243, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 5, - "CommandName": "ConvertTo-PnPPage", - "Id": 244 + "Id": 244, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Rank": 6, - "CommandName": "ConvertTo-PnPPage", - "Id": 245 + "Id": 245, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Rank": 7, - "CommandName": "ConvertTo-PnPPage", - "Id": 246 + "Id": 246, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "Rank": 8, - "CommandName": "ConvertTo-PnPPage", - "Id": 247 + "Id": 247, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 9, - "CommandName": "ConvertTo-PnPPage", - "Id": 248 + "Id": 248, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Rank": 10, - "CommandName": "ConvertTo-PnPPage", - "Id": 249 + "Id": 249, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Rank": 11, - "CommandName": "ConvertTo-PnPPage", - "Id": 250 + "Id": 250, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 12, - "CommandName": "ConvertTo-PnPPage", - "Id": 251 + "Id": 251, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 13, - "CommandName": "ConvertTo-PnPPage", - "Id": 252 + "Id": 252, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Rank": 14, - "CommandName": "ConvertTo-PnPPage", - "Id": 253 + "Id": 253, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "CommandName": "Copy-PnPFile", - "Id": 254 + "Id": 254, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "CommandName": "Copy-PnPFile", - "Id": 255 + "Id": 255, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "CommandName": "Copy-PnPFile", - "Id": 256 + "Id": 256, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "CommandName": "Copy-PnPFile", - "Id": 257 + "Id": 257, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "CommandName": "Copy-PnPFile", - "Id": 258 + "Id": 258, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "CommandName": "Copy-PnPFile", - "Id": 259 + "Id": 259, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "CommandName": "Copy-PnPFile", - "Id": 260 + "Id": 260, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "CommandName": "Copy-PnPFile", - "Id": 261 + "Id": 261, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "CommandName": "Copy-PnPFile", - "Id": 262 + "Id": 262, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "CommandName": "Copy-PnPFile", - "Id": 263 + "Id": 263, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "CommandName": "Copy-PnPFolder", - "Id": 264 + "Id": 264, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "CommandName": "Copy-PnPFolder", - "Id": 265 + "Id": 265, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "CommandName": "Copy-PnPFolder", - "Id": 266 + "Id": 266, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "CommandName": "Copy-PnPFolder", - "Id": 267 + "Id": 267, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "CommandName": "Copy-PnPFolder", - "Id": 268 + "Id": 268, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "CommandName": "Copy-PnPFolder", - "Id": 269 + "Id": 269, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "CommandName": "Copy-PnPFolder", - "Id": 270 + "Id": 270, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "CommandName": "Copy-PnPFolder", - "Id": 271 + "Id": 271, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "CommandName": "Copy-PnPFolder", - "Id": 272 + "Id": 272, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "CommandName": "Copy-PnPFolder", - "Id": 273 + "Id": 273, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Rank": 1, - "CommandName": "Copy-PnPItemProxy", - "Id": 274 + "Id": 274, + "CommandName": "Copy-PnPItemProxy" }, { "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Rank": 1, - "CommandName": "Copy-PnPList", - "Id": 275 + "Id": 275, + "CommandName": "Copy-PnPList" }, { "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Rank": 2, - "CommandName": "Copy-PnPList", - "Id": 276 + "Id": 276, + "CommandName": "Copy-PnPList" }, { "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Rank": 3, - "CommandName": "Copy-PnPList", - "Id": 277 + "Id": 277, + "CommandName": "Copy-PnPList" }, { "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", - "Id": 278 + "Id": 278, + "CommandName": "Copy-PnPList" }, { "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Rank": 1, - "CommandName": "Copy-PnPTeamsTeam", - "Id": 279 + "Id": 279, + "CommandName": "Copy-PnPTeamsTeam" }, { "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Rank": 2, - "CommandName": "Copy-PnPTeamsTeam", - "Id": 280 + "Id": 280, + "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", "Rank": 3, - "CommandName": "Copy-PnPTeamsTeam", - "Id": 281 + "Id": 281, + "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", "Rank": 4, - "CommandName": "Copy-PnPTeamsTeam", - "Id": 282 + "Id": 282, + "CommandName": "Copy-PnPTeamsTeam" }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Disable-PnPFeature", - "Id": 283 + "Id": 283, + "CommandName": "Disable-PnPFeature" }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "CommandName": "Disable-PnPFeature", - "Id": 284 + "Id": 284, + "CommandName": "Disable-PnPFeature" }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "CommandName": "Disable-PnPFeature", - "Id": 285 + "Id": 285, + "CommandName": "Disable-PnPFeature" }, { "Command": "Disable-PnPPageScheduling", "Rank": 1, - "CommandName": "Disable-PnPPageScheduling", - "Id": 286 + "Id": 286, + "CommandName": "Disable-PnPPageScheduling" }, { "Command": "Disable-PnPPowerShellTelemetry", "Rank": 1, - "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 287 + "Id": 287, + "CommandName": "Disable-PnPPowerShellTelemetry" }, { "Command": "Disable-PnPPowerShellTelemetry -Force", "Rank": 2, - "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 288 + "Id": 288, + "CommandName": "Disable-PnPPowerShellTelemetry" }, { "Command": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 289 + "Id": 289, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { "Command": "Disable-PnPSiteClassification", "Rank": 1, - "CommandName": "Disable-PnPSiteClassification", - "Id": 290 + "Id": 290, + "CommandName": "Disable-PnPSiteClassification" }, { "Command": "Disconnect-PnPOnline", "Rank": 1, - "CommandName": "Disconnect-PnPOnline", - "Id": 291 + "Id": 291, + "CommandName": "Disconnect-PnPOnline" }, { "Command": "Enable-PnPCommSite", "Rank": 1, - "CommandName": "Enable-PnPCommSite", - "Id": 292 + "Id": 292, + "CommandName": "Enable-PnPCommSite" }, { "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Rank": 2, - "CommandName": "Enable-PnPCommSite", - "Id": 293 + "Id": 293, + "CommandName": "Enable-PnPCommSite" }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Enable-PnPFeature", - "Id": 294 + "Id": 294, + "CommandName": "Enable-PnPFeature" }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "CommandName": "Enable-PnPFeature", - "Id": 295 + "Id": 295, + "CommandName": "Enable-PnPFeature" }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "CommandName": "Enable-PnPFeature", - "Id": 296 + "Id": 296, + "CommandName": "Enable-PnPFeature" }, { "Command": "Enable-PnPPageScheduling", "Rank": 1, - "CommandName": "Enable-PnPPageScheduling", - "Id": 297 + "Id": 297, + "CommandName": "Enable-PnPPageScheduling" }, { "Command": "Enable-PnPPowerShellTelemetry", "Rank": 1, - "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 298 + "Id": 298, + "CommandName": "Enable-PnPPowerShellTelemetry" }, { "Command": "Enable-PnPPowerShellTelemetry -Force", "Rank": 2, - "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 299 + "Id": 299, + "CommandName": "Enable-PnPPowerShellTelemetry" }, { "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Rank": 1, - "CommandName": "Enable-PnPSiteClassification", - "Id": 300 + "Id": 300, + "CommandName": "Enable-PnPSiteClassification" }, { "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 2, - "CommandName": "Enable-PnPSiteClassification", - "Id": 301 + "Id": 301, + "CommandName": "Enable-PnPSiteClassification" }, { "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Rank": 1, - "CommandName": "Export-PnPListToSiteTemplate", - "Id": 302 + "Id": 302, + "CommandName": "Export-PnPListToSiteTemplate" }, { "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Rank": 2, - "CommandName": "Export-PnPListToSiteTemplate", - "Id": 303 + "Id": 303, + "CommandName": "Export-PnPListToSiteTemplate" }, { "Command": "Export-PnPPage -Identity Home.aspx", "Rank": 1, - "CommandName": "Export-PnPPage", - "Id": 304 + "Id": 304, + "CommandName": "Export-PnPPage" }, { "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Rank": 1, - "CommandName": "Export-PnPPageMapping", - "Id": 305 + "Id": 305, + "CommandName": "Export-PnPPageMapping" }, { "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Rank": 2, - "CommandName": "Export-PnPPageMapping", - "Id": 306 + "Id": 306, + "CommandName": "Export-PnPPageMapping" }, { "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Rank": 3, - "CommandName": "Export-PnPPageMapping", - "Id": 307 + "Id": 307, + "CommandName": "Export-PnPPageMapping" }, { "Command": "Export-PnPTaxonomy", "Rank": 1, - "CommandName": "Export-PnPTaxonomy", - "Id": 308 + "Id": 308, + "CommandName": "Export-PnPTaxonomy" }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Rank": 2, - "CommandName": "Export-PnPTaxonomy", - "Id": 309 + "Id": 309, + "CommandName": "Export-PnPTaxonomy" }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Rank": 3, - "CommandName": "Export-PnPTaxonomy", - "Id": 310 + "Id": 310, + "CommandName": "Export-PnPTaxonomy" }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Rank": 4, - "CommandName": "Export-PnPTaxonomy", - "Id": 311 + "Id": 311, + "CommandName": "Export-PnPTaxonomy" }, { "Command": "Export-PnPTermGroupToXml", "Rank": 1, - "CommandName": "Export-PnPTermGroupToXml", - "Id": 312 + "Id": 312, + "CommandName": "Export-PnPTermGroupToXml" }, { "Command": "Export-PnPTermGroupToXml -Out output.xml", "Rank": 2, - "CommandName": "Export-PnPTermGroupToXml", - "Id": 313 + "Id": 313, + "CommandName": "Export-PnPTermGroupToXml" }, { "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Rank": 3, - "CommandName": "Export-PnPTermGroupToXml", - "Id": 314 + "Id": 314, + "CommandName": "Export-PnPTermGroupToXml" }, { "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "CommandName": "Export-PnPUserInfo", - "Id": 315 + "Id": 315, + "CommandName": "Export-PnPUserInfo" }, { "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", - "Id": 316 + "Id": 316, + "CommandName": "Export-PnPUserInfo" }, { "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "CommandName": "Export-PnPUserProfile", - "Id": 317 + "Id": 317, + "CommandName": "Export-PnPUserProfile" }, { "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2, - "CommandName": "Export-PnPUserProfile", - "Id": 318 + "Id": 318, + "CommandName": "Export-PnPUserProfile" }, { "Command": "Find-PnPFile -Match *.master", "Rank": 1, - "CommandName": "Find-PnPFile", - "Id": 319 + "Id": 319, + "CommandName": "Find-PnPFile" }, { "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Rank": 2, - "CommandName": "Find-PnPFile", - "Id": 320 + "Id": 320, + "CommandName": "Find-PnPFile" }, { "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Rank": 3, - "CommandName": "Find-PnPFile", - "Id": 321 + "Id": 321, + "CommandName": "Find-PnPFile" }, { "Command": "Get-PnPAccessToken", "Rank": 1, - "CommandName": "Get-PnPAccessToken", - "Id": 322 + "Id": 322, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAccessToken -Decoded", "Rank": 2, - "CommandName": "Get-PnPAccessToken", - "Id": 323 + "Id": 323, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Rank": 3, - "CommandName": "Get-PnPAccessToken", - "Id": 324 + "Id": 324, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Rank": 4, - "CommandName": "Get-PnPAccessToken", - "Id": 325 + "Id": 325, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Rank": 5, - "CommandName": "Get-PnPAccessToken", - "Id": 326 + "Id": 326, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAlert", "Rank": 1, - "CommandName": "Get-PnPAlert", - "Id": 327 + "Id": 327, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -List \"Demo List\"", "Rank": 2, - "CommandName": "Get-PnPAlert", - "Id": 328 + "Id": 328, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Get-PnPAlert", - "Id": 329 + "Id": 329, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Rank": 4, - "CommandName": "Get-PnPAlert", - "Id": 330 + "Id": 330, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -AllUsers", "Rank": 5, - "CommandName": "Get-PnPAlert", - "Id": 331 + "Id": 331, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Rank": 6, - "CommandName": "Get-PnPAlert", - "Id": 332 + "Id": 332, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPApp", "Rank": 1, - "CommandName": "Get-PnPApp", - "Id": 333 + "Id": 333, + "CommandName": "Get-PnPApp" }, { "Command": "Get-PnPApp -Scope Site", "Rank": 2, - "CommandName": "Get-PnPApp", - "Id": 334 + "Id": 334, + "CommandName": "Get-PnPApp" }, { "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 3, - "CommandName": "Get-PnPApp", - "Id": 335 + "Id": 335, + "CommandName": "Get-PnPApp" }, { "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Rank": 1, - "CommandName": "Get-PnPAppErrors", - "Id": 336 + "Id": 336, + "CommandName": "Get-PnPAppErrors" }, { "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Rank": 2, - "CommandName": "Get-PnPAppErrors", - "Id": 337 + "Id": 337, + "CommandName": "Get-PnPAppErrors" }, { "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Rank": 1, - "CommandName": "Get-PnPAppInfo", - "Id": 338 + "Id": 338, + "CommandName": "Get-PnPAppInfo" }, { "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 2, - "CommandName": "Get-PnPAppInfo", - "Id": 339 + "Id": 339, + "CommandName": "Get-PnPAppInfo" }, { "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Rank": 3, - "CommandName": "Get-PnPAppInfo", - "Id": 340 + "Id": 340, + "CommandName": "Get-PnPAppInfo" }, { "Command": "Get-PnPApplicationCustomizer", "Rank": 1, - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 341 + "Id": 341, + "CommandName": "Get-PnPApplicationCustomizer" }, { "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 342 + "Id": 342, + "CommandName": "Get-PnPApplicationCustomizer" }, { "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Rank": 3, - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 343 + "Id": 343, + "CommandName": "Get-PnPApplicationCustomizer" }, { "Command": "Get-PnPAuditing", "Rank": 1, - "CommandName": "Get-PnPAuditing", - "Id": 344 + "Id": 344, + "CommandName": "Get-PnPAuditing" }, { "Command": "Get-PnPAuthenticationRealm", "Rank": 1, - "CommandName": "Get-PnPAuthenticationRealm", - "Id": 345 + "Id": 345, + "CommandName": "Get-PnPAuthenticationRealm" }, { "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Rank": 2, - "CommandName": "Get-PnPAuthenticationRealm", - "Id": 346 + "Id": 346, + "CommandName": "Get-PnPAuthenticationRealm" }, { "Command": "Get-PnPAvailableLanguage", "Rank": 1, - "CommandName": "Get-PnPAvailableLanguage", - "Id": 347 + "Id": 347, + "CommandName": "Get-PnPAvailableLanguage" }, { "Command": "Get-PnPAvailableSensitivityLabel", "Rank": 1, - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 348 + "Id": 348, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Rank": 2, - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 349 + "Id": 349, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Rank": 3, - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 350 + "Id": 350, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Command": "Get-PnPAvailableSiteClassification", "Rank": 1, - "CommandName": "Get-PnPAvailableSiteClassification", - "Id": 351 + "Id": 351, + "CommandName": "Get-PnPAvailableSiteClassification" }, { "Command": "Get-PnPAzureACSPrincipal", "Rank": 1, - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 352 + "Id": 352, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Rank": 2, - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 353 + "Id": 353, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Rank": 3, - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 354 + "Id": 354, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Rank": 4, - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 355 + "Id": 355, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 356 + "Id": 356, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 357 + "Id": 357, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 358 + "Id": 358, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Command": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 359 + "Id": 359, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 360 + "Id": 360, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 361 + "Id": 361, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Command": "Get-PnPAzureADApp", "Rank": 1, - "CommandName": "Get-PnPAzureADApp", - "Id": 362 + "Id": 362, + "CommandName": "Get-PnPAzureADApp" }, { "Command": "Get-PnPAzureADApp -Identity MyApp", "Rank": 2, - "CommandName": "Get-PnPAzureADApp", - "Id": 363 + "Id": 363, + "CommandName": "Get-PnPAzureADApp" }, { "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "CommandName": "Get-PnPAzureADApp", - "Id": 364 + "Id": 364, + "CommandName": "Get-PnPAzureADApp" }, { "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Rank": 4, - "CommandName": "Get-PnPAzureADApp", - "Id": 365 + "Id": 365, + "CommandName": "Get-PnPAzureADApp" }, { "Command": "Get-PnPAzureADAppPermission", "Rank": 1, - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 366 + "Id": 366, + "CommandName": "Get-PnPAzureADAppPermission" }, { "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Rank": 2, - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 367 + "Id": 367, + "CommandName": "Get-PnPAzureADAppPermission" }, { "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 368 + "Id": 368, + "CommandName": "Get-PnPAzureADAppPermission" }, { "Command": "Get-PnPAzureADAppSitePermission", "Rank": 1, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 369 + "Id": 369, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 370 + "Id": 370, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Rank": 3, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 371 + "Id": 371, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Rank": 4, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 372 + "Id": 372, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Rank": 5, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 373 + "Id": 373, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADGroup", "Rank": 1, - "CommandName": "Get-PnPAzureADGroup", - "Id": 374 + "Id": 374, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroup -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPAzureADGroup", - "Id": 375 + "Id": 375, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Rank": 3, - "CommandName": "Get-PnPAzureADGroup", - "Id": 376 + "Id": 376, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Rank": 4, - "CommandName": "Get-PnPAzureADGroup", - "Id": 377 + "Id": 377, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroup -Identity $group", "Rank": 5, - "CommandName": "Get-PnPAzureADGroup", - "Id": 378 + "Id": 378, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPAzureADGroupMember", - "Id": 379 + "Id": 379, + "CommandName": "Get-PnPAzureADGroupMember" }, { "Command": "Get-PnPAzureADGroupMember -Identity $group", "Rank": 2, - "CommandName": "Get-PnPAzureADGroupMember", - "Id": 380 + "Id": 380, + "CommandName": "Get-PnPAzureADGroupMember" }, { "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 381 + "Id": 381, + "CommandName": "Get-PnPAzureADGroupOwner" }, { "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Rank": 2, - "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 382 + "Id": 382, + "CommandName": "Get-PnPAzureADGroupOwner" }, { "Command": "Get-PnPAzureADServicePrincipal", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 383 + "Id": 383, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 384 + "Id": 384, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Rank": 3, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 385 + "Id": 385, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Rank": 4, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 386 + "Id": 386, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 387 + "Id": 387, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 388 + "Id": 388, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 389 + "Id": 389, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 390 + "Id": 390, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 391 + "Id": 391, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { "Command": "Get-PnPAzureADUser", "Rank": 1, - "CommandName": "Get-PnPAzureADUser", - "Id": 392 + "Id": 392, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -EndIndex 50", "Rank": 2, - "CommandName": "Get-PnPAzureADUser", - "Id": 393 + "Id": 393, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 3, - "CommandName": "Get-PnPAzureADUser", - "Id": 394 + "Id": 394, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Rank": 4, - "CommandName": "Get-PnPAzureADUser", - "Id": 395 + "Id": 395, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Rank": 5, - "CommandName": "Get-PnPAzureADUser", - "Id": 396 + "Id": 396, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Rank": 6, - "CommandName": "Get-PnPAzureADUser", - "Id": 397 + "Id": 397, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Rank": 7, - "CommandName": "Get-PnPAzureADUser", - "Id": 398 + "Id": 398, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Delta", "Rank": 8, - "CommandName": "Get-PnPAzureADUser", - "Id": 399 + "Id": 399, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Rank": 9, - "CommandName": "Get-PnPAzureADUser", - "Id": 400 + "Id": 400, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Rank": 10, - "CommandName": "Get-PnPAzureADUser", - "Id": 401 + "Id": 401, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Rank": 1, - "CommandName": "Get-PnPAzureCertificate", - "Id": 402 + "Id": 402, + "CommandName": "Get-PnPAzureCertificate" }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Rank": 2, - "CommandName": "Get-PnPAzureCertificate", - "Id": 403 + "Id": 403, + "CommandName": "Get-PnPAzureCertificate" }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Rank": 3, - "CommandName": "Get-PnPAzureCertificate", - "Id": 404 + "Id": 404, + "CommandName": "Get-PnPAzureCertificate" }, { "Command": "Get-PnPBrowserIdleSignout", "Rank": 1, - "CommandName": "Get-PnPBrowserIdleSignout", - "Id": 405 + "Id": 405, + "CommandName": "Get-PnPBrowserIdleSignout" }, { "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Rank": 1, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 406 + "Id": 406, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { "Command": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 407 + "Id": 407, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 408 + "Id": 408, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Rank": 2, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 409 + "Id": 409, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Rank": 3, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 410 + "Id": 410, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 411 + "Id": 411, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Rank": 5, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 412 + "Id": 412, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPChangeLog", "Rank": 1, - "CommandName": "Get-PnPChangeLog", - "Id": 413 + "Id": 413, + "CommandName": "Get-PnPChangeLog" }, { "Command": "Get-PnPChangeLog -Nightly", "Rank": 2, - "CommandName": "Get-PnPChangeLog", - "Id": 414 + "Id": 414, + "CommandName": "Get-PnPChangeLog" }, { "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Rank": 1, - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 415 + "Id": 415, + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Rank": 2, - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 416 + "Id": 416, + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { "Command": "Get-PnPContentType", "Rank": 1, - "CommandName": "Get-PnPContentType", - "Id": 417 + "Id": 417, + "CommandName": "Get-PnPContentType" }, { "Command": "Get-PnPContentType -InSiteHierarchy", "Rank": 2, - "CommandName": "Get-PnPContentType", - "Id": 418 + "Id": 418, + "CommandName": "Get-PnPContentType" }, { "Command": "Get-PnPContentType -Identity \"Project Document\"", "Rank": 3, - "CommandName": "Get-PnPContentType", - "Id": 419 + "Id": 419, + "CommandName": "Get-PnPContentType" }, { "Command": "Get-PnPContentType -List \"Documents\"", "Rank": 4, - "CommandName": "Get-PnPContentType", - "Id": 420 + "Id": 420, + "CommandName": "Get-PnPContentType" }, { "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Rank": 1, - "CommandName": "Get-PnPContentTypePublishingStatus", - "Id": 421 + "Id": 421, + "CommandName": "Get-PnPContentTypePublishingStatus" }, { "Command": "Get-PnPCustomAction", "Rank": 1, - "CommandName": "Get-PnPCustomAction", - "Id": 422 + "Id": 422, + "CommandName": "Get-PnPCustomAction" }, { "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "CommandName": "Get-PnPCustomAction", - "Id": 423 + "Id": 423, + "CommandName": "Get-PnPCustomAction" }, { "Command": "Get-PnPCustomAction -Scope web", "Rank": 3, - "CommandName": "Get-PnPCustomAction", - "Id": 424 + "Id": 424, + "CommandName": "Get-PnPCustomAction" }, { "Command": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 425 + "Id": 425, + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 2, - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 426 + "Id": 426, + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { "Command": "Get-PnPDeletedTeam", "Rank": 1, - "CommandName": "Get-PnPDeletedTeam", - "Id": 427 + "Id": 427, + "CommandName": "Get-PnPDeletedTeam" }, { "Command": "Get-PnPDiagnostics", "Rank": 1, - "CommandName": "Get-PnPDiagnostics", - "Id": 428 + "Id": 428, + "CommandName": "Get-PnPDiagnostics" }, { "Command": "Get-PnPDisableSpacesActivation", "Rank": 1, - "CommandName": "Get-PnPDisableSpacesActivation", - "Id": 429 + "Id": 429, + "CommandName": "Get-PnPDisableSpacesActivation" }, { "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Rank": 1, - "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 430 + "Id": 430, + "CommandName": "Get-PnPDocumentSetTemplate" }, { "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Rank": 2, - "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 431 + "Id": 431, + "CommandName": "Get-PnPDocumentSetTemplate" }, { "Command": "Get-PnPEventReceiver", "Rank": 1, - "CommandName": "Get-PnPEventReceiver", - "Id": 432 + "Id": 432, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "CommandName": "Get-PnPEventReceiver", - "Id": 433 + "Id": 433, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Rank": 3, - "CommandName": "Get-PnPEventReceiver", - "Id": 434 + "Id": 434, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Rank": 4, - "CommandName": "Get-PnPEventReceiver", - "Id": 435 + "Id": 435, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 5, - "CommandName": "Get-PnPEventReceiver", - "Id": 436 + "Id": 436, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Rank": 6, - "CommandName": "Get-PnPEventReceiver", - "Id": 437 + "Id": 437, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Scope Site", "Rank": 7, - "CommandName": "Get-PnPEventReceiver", - "Id": 438 + "Id": 438, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Scope Web", "Rank": 8, - "CommandName": "Get-PnPEventReceiver", - "Id": 439 + "Id": 439, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Scope All", "Rank": 9, - "CommandName": "Get-PnPEventReceiver", - "Id": 440 + "Id": 440, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPException", "Rank": 1, - "CommandName": "Get-PnPException", - "Id": 441 + "Id": 441, + "CommandName": "Get-PnPException" }, { "Command": "Get-PnPException -All", "Rank": 2, - "CommandName": "Get-PnPException", - "Id": 442 + "Id": 442, + "CommandName": "Get-PnPException" }, { "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Rank": 1, - "CommandName": "Get-PnPExternalUser", - "Id": 443 + "Id": 443, + "CommandName": "Get-PnPExternalUser" }, { "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Rank": 2, - "CommandName": "Get-PnPExternalUser", - "Id": 444 + "Id": 444, + "CommandName": "Get-PnPExternalUser" }, { "Command": "Get-PnPFeature", "Rank": 1, - "CommandName": "Get-PnPFeature", - "Id": 445 + "Id": 445, + "CommandName": "Get-PnPFeature" }, { "Command": "Get-PnPFeature -Scope Site", "Rank": 2, - "CommandName": "Get-PnPFeature", - "Id": 446 + "Id": 446, + "CommandName": "Get-PnPFeature" }, { "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 3, - "CommandName": "Get-PnPFeature", - "Id": 447 + "Id": 447, + "CommandName": "Get-PnPFeature" }, { "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Rank": 4, - "CommandName": "Get-PnPFeature", - "Id": 448 + "Id": 448, + "CommandName": "Get-PnPFeature" }, { "Command": "Get-PnPField", "Rank": 1, - "CommandName": "Get-PnPField", - "Id": 449 + "Id": 449, + "CommandName": "Get-PnPField" }, { "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "CommandName": "Get-PnPField", - "Id": 450 + "Id": 450, + "CommandName": "Get-PnPField" }, { "Command": "Get-PnPField -Group \"Custom Columns\"", "Rank": 3, - "CommandName": "Get-PnPField", - "Id": 451 + "Id": 451, + "CommandName": "Get-PnPField" }, { "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Rank": 1, - "CommandName": "Get-PnPFile", - "Id": 452 + "Id": 452, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Rank": 2, - "CommandName": "Get-PnPFile", - "Id": 453 + "Id": 453, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Rank": 3, - "CommandName": "Get-PnPFile", - "Id": 454 + "Id": 454, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Rank": 4, - "CommandName": "Get-PnPFile", - "Id": 455 + "Id": 455, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Rank": 5, - "CommandName": "Get-PnPFile", - "Id": 456 + "Id": 456, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Rank": 6, - "CommandName": "Get-PnPFile", - "Id": 457 + "Id": 457, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Rank": 7, - "CommandName": "Get-PnPFile", - "Id": 458 + "Id": 458, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Get-PnPFileSharingLink", - "Id": 459 + "Id": 459, + "CommandName": "Get-PnPFileSharingLink" }, { "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Rank": 1, - "CommandName": "Get-PnPFileVersion", - "Id": 460 + "Id": 460, + "CommandName": "Get-PnPFileVersion" }, { "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Rank": 2, - "CommandName": "Get-PnPFileVersion", - "Id": 461 + "Id": 461, + "CommandName": "Get-PnPFileVersion" }, { "Command": "Get-PnPFlow -AsAdmin", "Rank": 1, - "CommandName": "Get-PnPFlow", - "Id": 462 + "Id": 462, + "CommandName": "Get-PnPFlow" }, { "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "Rank": 2, - "CommandName": "Get-PnPFlow", - "Id": 463 + "Id": 463, + "CommandName": "Get-PnPFlow" }, { "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Rank": 3, - "CommandName": "Get-PnPFlow", - "Id": 464 + "Id": 464, + "CommandName": "Get-PnPFlow" }, { "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Rank": 1, - "CommandName": "Get-PnPFlowOwner", - "Id": 465 + "Id": 465, + "CommandName": "Get-PnPFlowOwner" }, { "Command": "Get-PnPFolder", "Rank": 1, - "CommandName": "Get-PnPFolder", - "Id": 466 + "Id": 466, + "CommandName": "Get-PnPFolder" }, { "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Rank": 2, - "CommandName": "Get-PnPFolder", - "Id": 467 + "Id": 467, + "CommandName": "Get-PnPFolder" }, { "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolder", - "Id": 468 + "Id": 468, + "CommandName": "Get-PnPFolder" }, { "Command": "Get-PnPFolder -List \"Shared Documents\"", "Rank": 4, - "CommandName": "Get-PnPFolder", - "Id": 469 + "Id": 469, + "CommandName": "Get-PnPFolder" }, { "Command": "Get-PnPFolderFile", "Rank": 1, - "CommandName": "Get-PnPFolderFile", - "Id": 470 + "Id": 470, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFile -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderFile", - "Id": 471 + "Id": 471, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderFile", - "Id": 472 + "Id": 472, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, - "CommandName": "Get-PnPFolderFile", - "Id": 473 + "Id": 473, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 5, - "CommandName": "Get-PnPFolderFile", - "Id": 474 + "Id": 474, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFolder", "Rank": 1, - "CommandName": "Get-PnPFolderFolder", - "Id": 475 + "Id": 475, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderFolder", - "Id": 476 + "Id": 476, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderFolder", - "Id": 477 + "Id": 477, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "Rank": 4, - "CommandName": "Get-PnPFolderFolder", - "Id": 478 + "Id": 478, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "Rank": 5, - "CommandName": "Get-PnPFolderFolder", - "Id": 479 + "Id": 479, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, - "CommandName": "Get-PnPFolderFolder", - "Id": 480 + "Id": 480, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderItem", "Rank": 1, - "CommandName": "Get-PnPFolderItem", - "Id": 481 + "Id": 481, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderItem", - "Id": 482 + "Id": 482, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderItem", - "Id": 483 + "Id": 483, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, - "CommandName": "Get-PnPFolderItem", - "Id": 484 + "Id": 484, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Rank": 5, - "CommandName": "Get-PnPFolderItem", - "Id": 485 + "Id": 485, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, - "CommandName": "Get-PnPFolderItem", - "Id": 486 + "Id": 486, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Get-PnPFolderSharingLink", - "Id": 487 + "Id": 487, + "CommandName": "Get-PnPFolderSharingLink" }, { "Command": "Get-PnPFolderStorageMetric", "Rank": 1, - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 488 + "Id": 488, + "CommandName": "Get-PnPFolderStorageMetric" }, { "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Rank": 2, - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 489 + "Id": 489, + "CommandName": "Get-PnPFolderStorageMetric" }, { "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 490 + "Id": 490, + "CommandName": "Get-PnPFolderStorageMetric" }, { "Command": "Get-PnPFooter", "Rank": 1, - "CommandName": "Get-PnPFooter", - "Id": 491 + "Id": 491, + "CommandName": "Get-PnPFooter" }, { "Command": "Get-PnPGraphAccessToken", "Rank": 1, - "CommandName": "Get-PnPGraphAccessToken", - "Id": 492 + "Id": 492, + "CommandName": "Get-PnPGraphAccessToken" }, { "Command": "Get-PnPGraphAccessToken -Decoded", "Rank": 2, - "CommandName": "Get-PnPGraphAccessToken", - "Id": 493 + "Id": 493, + "CommandName": "Get-PnPGraphAccessToken" }, { "Command": "Get-PnPGraphSubscription", "Rank": 1, - "CommandName": "Get-PnPGraphSubscription", - "Id": 494 + "Id": 494, + "CommandName": "Get-PnPGraphSubscription" }, { "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 2, - "CommandName": "Get-PnPGraphSubscription", - "Id": 495 + "Id": 495, + "CommandName": "Get-PnPGraphSubscription" }, { "Command": "Get-PnPGroup", "Rank": 1, - "CommandName": "Get-PnPGroup", - "Id": 496 + "Id": 496, + "CommandName": "Get-PnPGroup" }, { "Command": "Get-PnPGroup -Identity 'My Site Users'", "Rank": 2, - "CommandName": "Get-PnPGroup", - "Id": 497 + "Id": 497, + "CommandName": "Get-PnPGroup" }, { "Command": "Get-PnPGroup -AssociatedMemberGroup", "Rank": 3, - "CommandName": "Get-PnPGroup", - "Id": 498 + "Id": 498, + "CommandName": "Get-PnPGroup" }, { "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Rank": 1, - "CommandName": "Get-PnPGroupMember", - "Id": 499 + "Id": 499, + "CommandName": "Get-PnPGroupMember" }, { "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Rank": 2, - "CommandName": "Get-PnPGroupMember", - "Id": 500 + "Id": 500, + "CommandName": "Get-PnPGroupMember" }, { "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Rank": 1, - "CommandName": "Get-PnPGroupPermissions", - "Id": 501 + "Id": 501, + "CommandName": "Get-PnPGroupPermissions" }, { "Command": "Get-PnPHideDefaultThemes", "Rank": 1, - "CommandName": "Get-PnPHideDefaultThemes", - "Id": 502 + "Id": 502, + "CommandName": "Get-PnPHideDefaultThemes" }, { "Command": "Get-PnPHomePage", "Rank": 1, - "CommandName": "Get-PnPHomePage", - "Id": 503 + "Id": 503, + "CommandName": "Get-PnPHomePage" }, { "Command": "Get-PnPHomeSite", "Rank": 1, - "CommandName": "Get-PnPHomeSite", - "Id": 504 + "Id": 504, + "CommandName": "Get-PnPHomeSite" }, { "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Rank": 2, - "CommandName": "Get-PnPHomeSite", - "Id": 505 + "Id": 505, + "CommandName": "Get-PnPHomeSite" }, { "Command": "Get-PnPHomeSite -Detailed", "Rank": 3, - "CommandName": "Get-PnPHomeSite", - "Id": 506 + "Id": 506, + "CommandName": "Get-PnPHomeSite" }, { "Command": "Get-PnPHubSite", "Rank": 1, - "CommandName": "Get-PnPHubSite", - "Id": 507 + "Id": 507, + "CommandName": "Get-PnPHubSite" }, { "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "CommandName": "Get-PnPHubSite", - "Id": 508 + "Id": 508, + "CommandName": "Get-PnPHubSite" }, { "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Rank": 3, - "CommandName": "Get-PnPHubSite", - "Id": 509 + "Id": 509, + "CommandName": "Get-PnPHubSite" }, { "Command": "Get-PnPHubSiteChild", "Rank": 1, - "CommandName": "Get-PnPHubSiteChild", - "Id": 510 + "Id": 510, + "CommandName": "Get-PnPHubSiteChild" }, { "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "CommandName": "Get-PnPHubSiteChild", - "Id": 511 + "Id": 511, + "CommandName": "Get-PnPHubSiteChild" }, { "Command": "Get-PnPInPlaceRecordsManagement", "Rank": 1, - "CommandName": "Get-PnPInPlaceRecordsManagement", - "Id": 512 + "Id": 512, + "CommandName": "Get-PnPInPlaceRecordsManagement" }, { "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Rank": 1, - "CommandName": "Get-PnPIsSiteAliasAvailable", - "Id": 513 + "Id": 513, + "CommandName": "Get-PnPIsSiteAliasAvailable" }, { "Command": "Get-PnPJavaScriptLink", "Rank": 1, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 514 + "Id": 514, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPJavaScriptLink -Scope All", "Rank": 2, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 515 + "Id": 515, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPJavaScriptLink -Scope Web", "Rank": 3, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 516 + "Id": 516, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPJavaScriptLink -Scope Site", "Rank": 4, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 517 + "Id": 517, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPJavaScriptLink -Name Test", "Rank": 5, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 518 + "Id": 518, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPKnowledgeHubSite", "Rank": 1, - "CommandName": "Get-PnPKnowledgeHubSite", - "Id": 519 + "Id": 519, + "CommandName": "Get-PnPKnowledgeHubSite" }, { "Command": "Get-PnPLabel", "Rank": 1, - "CommandName": "Get-PnPLabel", - "Id": 520 + "Id": 520, + "CommandName": "Get-PnPLabel" }, { "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Rank": 2, - "CommandName": "Get-PnPLabel", - "Id": 521 + "Id": 521, + "CommandName": "Get-PnPLabel" }, { "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Rank": 1, - "CommandName": "Get-PnPLargeListOperationStatus", - "Id": 522 + "Id": 522, + "CommandName": "Get-PnPLargeListOperationStatus" }, { "Command": "Get-PnPList", "Rank": 1, - "CommandName": "Get-PnPList", - "Id": 523 + "Id": 523, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 2, - "CommandName": "Get-PnPList", - "Id": 524 + "Id": 524, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPList -Identity Lists/Announcements", "Rank": 3, - "CommandName": "Get-PnPList", - "Id": 525 + "Id": 525, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Rank": 4, - "CommandName": "Get-PnPList", - "Id": 526 + "Id": 526, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Rank": 5, - "CommandName": "Get-PnPList", - "Id": 527 + "Id": 527, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPListDesign", "Rank": 1, - "CommandName": "Get-PnPListDesign", - "Id": 528 + "Id": 528, + "CommandName": "Get-PnPListDesign" }, { "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPListDesign", - "Id": 529 + "Id": 529, + "CommandName": "Get-PnPListDesign" }, { "Command": "Get-PnPListDesign -Identity ListEvent", "Rank": 3, - "CommandName": "Get-PnPListDesign", - "Id": 530 + "Id": 530, + "CommandName": "Get-PnPListDesign" }, { "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Rank": 1, - "CommandName": "Get-PnPListInformationRightsManagement", - "Id": 531 + "Id": 531, + "CommandName": "Get-PnPListInformationRightsManagement" }, { "Command": "Get-PnPListItem -List Tasks", "Rank": 1, - "CommandName": "Get-PnPListItem", - "Id": 532 + "Id": 532, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -Id 1", "Rank": 2, - "CommandName": "Get-PnPListItem", - "Id": 533 + "Id": 533, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Rank": 3, - "CommandName": "Get-PnPListItem", - "Id": 534 + "Id": 534, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "Rank": 4, - "CommandName": "Get-PnPListItem", - "Id": 535 + "Id": 535, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -Query \"\"", "Rank": 5, - "CommandName": "Get-PnPListItem", - "Id": 536 + "Id": 536, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Rank": 6, - "CommandName": "Get-PnPListItem", - "Id": 537 + "Id": 537, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Rank": 7, - "CommandName": "Get-PnPListItem", - "Id": 538 + "Id": 538, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Rank": 8, - "CommandName": "Get-PnPListItem", - "Id": 539 + "Id": 539, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Rank": 9, - "CommandName": "Get-PnPListItem", - "Id": 540 + "Id": 540, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "Rank": 1, - "CommandName": "Get-PnPListItemAttachment", - "Id": 541 + "Id": 541, + "CommandName": "Get-PnPListItemAttachment" }, { "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "Rank": 2, - "CommandName": "Get-PnPListItemAttachment", - "Id": 542 + "Id": 542, + "CommandName": "Get-PnPListItemAttachment" }, { "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemComment", - "Id": 543 + "Id": 543, + "CommandName": "Get-PnPListItemComment" }, { "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemPermission", - "Id": 544 + "Id": 544, + "CommandName": "Get-PnPListItemPermission" }, { "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemVersion", - "Id": 545 + "Id": 545, + "CommandName": "Get-PnPListItemVersion" }, { "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Rank": 1, - "CommandName": "Get-PnPListPermissions", - "Id": 546 + "Id": 546, + "CommandName": "Get-PnPListPermissions" }, { "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Rank": 2, - "CommandName": "Get-PnPListPermissions", - "Id": 547 + "Id": 547, + "CommandName": "Get-PnPListPermissions" }, { "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Rank": 1, - "CommandName": "Get-PnPListRecordDeclaration", - "Id": 548 + "Id": 548, + "CommandName": "Get-PnPListRecordDeclaration" }, { "Command": "Get-PnPMasterPage", "Rank": 1, - "CommandName": "Get-PnPMasterPage", - "Id": 549 + "Id": 549, + "CommandName": "Get-PnPMasterPage" }, { "Command": "Get-PnPMessageCenterAnnouncement", "Rank": 1, - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 550 + "Id": 550, + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Rank": 2, - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 551 + "Id": 551, + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { "Command": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 552 + "Id": 552, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 553 + "Id": 553, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { "Command": "Get-PnPMicrosoft365Group", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 554 + "Id": 554, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 555 + "Id": 555, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 556 + "Id": 556, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Rank": 4, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 557 + "Id": 557, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -Identity $group", "Rank": 5, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 558 + "Id": 558, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Rank": 6, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 559 + "Id": 559, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 560 + "Id": 560, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 561 + "Id": 561, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 562 + "Id": 562, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 563 + "Id": 563, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 564 + "Id": 564, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 565 + "Id": 565, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 566 + "Id": 566, + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 567 + "Id": 567, + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { "Command": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 568 + "Id": 568, + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 569 + "Id": 569, + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 570 + "Id": 570, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 571 + "Id": 571, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { "Command": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 572 + "Id": 572, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 573 + "Id": 573, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 574 + "Id": 574, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 575 + "Id": 575, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 576 + "Id": 576, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 577 + "Id": 577, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Command": "Get-PnPNavigationNode", "Rank": 1, - "CommandName": "Get-PnPNavigationNode", - "Id": 578 + "Id": 578, + "CommandName": "Get-PnPNavigationNode" }, { "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Rank": 2, - "CommandName": "Get-PnPNavigationNode", - "Id": 579 + "Id": 579, + "CommandName": "Get-PnPNavigationNode" }, { "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Rank": 3, - "CommandName": "Get-PnPNavigationNode", - "Id": 580 + "Id": 580, + "CommandName": "Get-PnPNavigationNode" }, { "Command": "Get-PnPOrgAssetsLibrary", "Rank": 1, - "CommandName": "Get-PnPOrgAssetsLibrary", - "Id": 581 + "Id": 581, + "CommandName": "Get-PnPOrgAssetsLibrary" }, { "Command": "Get-PnPOrgNewsSite", "Rank": 1, - "CommandName": "Get-PnPOrgNewsSite", - "Id": 582 + "Id": 582, + "CommandName": "Get-PnPOrgNewsSite" }, { "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Rank": 1, - "CommandName": "Get-PnPPage", - "Id": 583 + "Id": 583, + "CommandName": "Get-PnPPage" }, { "Command": "Get-PnPPage \"MyPage\"", "Rank": 2, - "CommandName": "Get-PnPPage", - "Id": 584 + "Id": 584, + "CommandName": "Get-PnPPage" }, { "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Rank": 3, - "CommandName": "Get-PnPPage", - "Id": 585 + "Id": 585, + "CommandName": "Get-PnPPage" }, { "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Rank": 4, - "CommandName": "Get-PnPPage", - "Id": 586 + "Id": 586, + "CommandName": "Get-PnPPage" }, { "Command": "Get-PnPPageComponent -Page Home", "Rank": 1, - "CommandName": "Get-PnPPageComponent", - "Id": 587 + "Id": 587, + "CommandName": "Get-PnPPageComponent" }, { "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "CommandName": "Get-PnPPageComponent", - "Id": 588 + "Id": 588, + "CommandName": "Get-PnPPageComponent" }, { "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Rank": 3, - "CommandName": "Get-PnPPageComponent", - "Id": 589 + "Id": 589, + "CommandName": "Get-PnPPageComponent" }, { "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "CommandName": "Get-PnPPlannerBucket", - "Id": 590 + "Id": 590, + "CommandName": "Get-PnPPlannerBucket" }, { "Command": "Get-PnPPlannerConfiguration", "Rank": 1, - "CommandName": "Get-PnPPlannerConfiguration", - "Id": 591 + "Id": 591, + "CommandName": "Get-PnPPlannerConfiguration" }, { "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Rank": 1, - "CommandName": "Get-PnPPlannerPlan", - "Id": 592 + "Id": 592, + "CommandName": "Get-PnPPlannerPlan" }, { "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Rank": 2, - "CommandName": "Get-PnPPlannerPlan", - "Id": 593 + "Id": 593, + "CommandName": "Get-PnPPlannerPlan" }, { "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Rank": 3, - "CommandName": "Get-PnPPlannerPlan", - "Id": 594 + "Id": 594, + "CommandName": "Get-PnPPlannerPlan" }, { "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "CommandName": "Get-PnPPlannerRosterMember", - "Id": 595 + "Id": 595, + "CommandName": "Get-PnPPlannerRosterMember" }, { "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Rank": 1, - "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 596 + "Id": 596, + "CommandName": "Get-PnPPlannerRosterPlan" }, { "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 2, - "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 597 + "Id": 597, + "CommandName": "Get-PnPPlannerRosterPlan" }, { "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "CommandName": "Get-PnPPlannerTask", - "Id": 598 + "Id": 598, + "CommandName": "Get-PnPPlannerTask" }, { "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 2, - "CommandName": "Get-PnPPlannerTask", - "Id": 599 + "Id": 599, + "CommandName": "Get-PnPPlannerTask" }, { "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 3, - "CommandName": "Get-PnPPlannerTask", - "Id": 600 + "Id": 600, + "CommandName": "Get-PnPPlannerTask" }, { "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Get-PnPPlannerUserPolicy", - "Id": 601 + "Id": 601, + "CommandName": "Get-PnPPlannerUserPolicy" }, { "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "Rank": 1, - "CommandName": "Get-PnPPowerPlatformConnector", - "Id": 602 + "Id": 602, + "CommandName": "Get-PnPPowerPlatformConnector" }, { "Command": "Get-PnPPowerPlatformEnvironment", "Rank": 1, - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 603 + "Id": 603, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Rank": 2, - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 604 + "Id": 604, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Rank": 3, - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 605 + "Id": 605, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Command": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, - "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Id": 606 + "Id": 606, + "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { "Command": "Get-PnPPropertyBag", "Rank": 1, - "CommandName": "Get-PnPPropertyBag", - "Id": 607 + "Id": 607, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPropertyBag -Key MyKey", "Rank": 2, - "CommandName": "Get-PnPPropertyBag", - "Id": 608 + "Id": 608, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Rank": 3, - "CommandName": "Get-PnPPropertyBag", - "Id": 609 + "Id": 609, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Rank": 4, - "CommandName": "Get-PnPPropertyBag", - "Id": 610 + "Id": 610, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Rank": 5, - "CommandName": "Get-PnPPropertyBag", - "Id": 611 + "Id": 611, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPublishingImageRendition", "Rank": 1, - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 612 + "Id": 612, + "CommandName": "Get-PnPPublishingImageRendition" }, { "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Rank": 2, - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 613 + "Id": 613, + "CommandName": "Get-PnPPublishingImageRendition" }, { "Command": "Get-PnPPublishingImageRendition -Identity 2", "Rank": 3, - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 614 + "Id": 614, + "CommandName": "Get-PnPPublishingImageRendition" }, { "Command": "Get-PnPRecycleBinItem", "Rank": 1, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 615 + "Id": 615, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Rank": 2, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 616 + "Id": 616, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRecycleBinItem -FirstStage", "Rank": 3, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 617 + "Id": 617, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRecycleBinItem -SecondStage", "Rank": 4, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 618 + "Id": 618, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Rank": 5, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 619 + "Id": 619, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRequestAccessEmails", "Rank": 1, - "CommandName": "Get-PnPRequestAccessEmails", - "Id": 620 + "Id": 620, + "CommandName": "Get-PnPRequestAccessEmails" }, { "Command": "Get-PnPRetentionLabel", "Rank": 1, - "CommandName": "Get-PnPRetentionLabel", - "Id": 621 + "Id": 621, + "CommandName": "Get-PnPRetentionLabel" }, { "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "Rank": 2, - "CommandName": "Get-PnPRetentionLabel", - "Id": 622 + "Id": 622, + "CommandName": "Get-PnPRetentionLabel" }, { "Command": "Get-PnPRoleDefinition", "Rank": 1, - "CommandName": "Get-PnPRoleDefinition", - "Id": 623 + "Id": 623, + "CommandName": "Get-PnPRoleDefinition" }, { "Command": "Get-PnPRoleDefinition -Identity Read", "Rank": 2, - "CommandName": "Get-PnPRoleDefinition", - "Id": 624 + "Id": 624, + "CommandName": "Get-PnPRoleDefinition" }, { "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Rank": 3, - "CommandName": "Get-PnPRoleDefinition", - "Id": 625 + "Id": 625, + "CommandName": "Get-PnPRoleDefinition" }, { "Command": "Get-PnPSearchConfiguration", "Rank": 1, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 626 + "Id": 626, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Site", "Rank": 2, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 627 + "Id": 627, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Rank": 3, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 628 + "Id": 628, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 629 + "Id": 629, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Rank": 5, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 630 + "Id": 630, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Rank": 6, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 631 + "Id": 631, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Rank": 7, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 632 + "Id": 632, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Rank": 8, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 633 + "Id": 633, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchCrawlLog", "Rank": 1, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 634 + "Id": 634, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Rank": 2, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 635 + "Id": 635, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Rank": 3, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 636 + "Id": 636, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Rank": 4, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 637 + "Id": 637, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Rank": 5, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 638 + "Id": 638, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Rank": 6, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 639 + "Id": 639, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Rank": 7, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 640 + "Id": 640, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchSettings", "Rank": 1, - "CommandName": "Get-PnPSearchSettings", - "Id": 641 + "Id": 641, + "CommandName": "Get-PnPSearchSettings" }, { "Command": "Get-PnPServiceCurrentHealth", "Rank": 1, - "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 642 + "Id": 642, + "CommandName": "Get-PnPServiceCurrentHealth" }, { "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Rank": 2, - "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 643 + "Id": 643, + "CommandName": "Get-PnPServiceCurrentHealth" }, { "Command": "Get-PnPServiceHealthIssue", "Rank": 1, - "CommandName": "Get-PnPServiceHealthIssue", - "Id": 644 + "Id": 644, + "CommandName": "Get-PnPServiceHealthIssue" }, { "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Rank": 2, - "CommandName": "Get-PnPServiceHealthIssue", - "Id": 645 + "Id": 645, + "CommandName": "Get-PnPServiceHealthIssue" }, { "Command": "Get-PnPSharePointAddIn", "Rank": 1, - "CommandName": "Get-PnPSharePointAddIn", - "Id": 646 + "Id": 646, + "CommandName": "Get-PnPSharePointAddIn" }, { "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Rank": 2, - "CommandName": "Get-PnPSharePointAddIn", - "Id": 647 + "Id": 647, + "CommandName": "Get-PnPSharePointAddIn" }, { "Command": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, - "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Id": 648 + "Id": 648, + "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { "Command": "Get-PnPSite", "Rank": 1, - "CommandName": "Get-PnPSite", - "Id": 649 + "Id": 649, + "CommandName": "Get-PnPSite" }, { "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Rank": 2, - "CommandName": "Get-PnPSite", - "Id": 650 + "Id": 650, + "CommandName": "Get-PnPSite" }, { "Command": "Get-PnPSiteClosure", "Rank": 1, - "CommandName": "Get-PnPSiteClosure", - "Id": 651 + "Id": 651, + "CommandName": "Get-PnPSiteClosure" }, { "Command": "Get-PnPSiteCollectionAdmin", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAdmin", - "Id": 652 + "Id": 652, + "CommandName": "Get-PnPSiteCollectionAdmin" }, { "Command": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 653 + "Id": 653, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Rank": 2, - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 654 + "Id": 654, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Rank": 3, - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 655 + "Id": 655, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Command": "Get-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionTermStore", - "Id": 656 + "Id": 656, + "CommandName": "Get-PnPSiteCollectionTermStore" }, { "Command": "Get-PnPSiteDesign", "Rank": 1, - "CommandName": "Get-PnPSiteDesign", - "Id": 657 + "Id": 657, + "CommandName": "Get-PnPSiteDesign" }, { "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPSiteDesign", - "Id": 658 + "Id": 658, + "CommandName": "Get-PnPSiteDesign" }, { "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Get-PnPSiteDesignRights", - "Id": 659 + "Id": 659, + "CommandName": "Get-PnPSiteDesignRights" }, { "Command": "Get-PnPSiteDesignRun", "Rank": 1, - "CommandName": "Get-PnPSiteDesignRun", - "Id": 660 + "Id": 660, + "CommandName": "Get-PnPSiteDesignRun" }, { "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Rank": 2, - "CommandName": "Get-PnPSiteDesignRun", - "Id": 661 + "Id": 661, + "CommandName": "Get-PnPSiteDesignRun" }, { "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "CommandName": "Get-PnPSiteDesignTask", - "Id": 662 + "Id": 662, + "CommandName": "Get-PnPSiteDesignTask" }, { "Command": "Get-PnPSiteDesignTask", "Rank": 2, - "CommandName": "Get-PnPSiteDesignTask", - "Id": 663 + "Id": 663, + "CommandName": "Get-PnPSiteDesignTask" }, { "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 3, - "CommandName": "Get-PnPSiteDesignTask", - "Id": 664 + "Id": 664, + "CommandName": "Get-PnPSiteDesignTask" }, { "Command": "Get-PnPSiteGroup", "Rank": 1, - "CommandName": "Get-PnPSiteGroup", - "Id": 665 + "Id": 665, + "CommandName": "Get-PnPSiteGroup" }, { "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 2, - "CommandName": "Get-PnPSiteGroup", - "Id": 666 + "Id": 666, + "CommandName": "Get-PnPSiteGroup" }, { "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Rank": 3, - "CommandName": "Get-PnPSiteGroup", - "Id": 667 + "Id": 667, + "CommandName": "Get-PnPSiteGroup" }, { "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 4, - "CommandName": "Get-PnPSiteGroup", - "Id": 668 + "Id": 668, + "CommandName": "Get-PnPSiteGroup" }, { "Command": "Get-PnPSitePolicy", "Rank": 1, - "CommandName": "Get-PnPSitePolicy", - "Id": 669 + "Id": 669, + "CommandName": "Get-PnPSitePolicy" }, { "Command": "Get-PnPSitePolicy -AllAvailable", "Rank": 2, - "CommandName": "Get-PnPSitePolicy", - "Id": 670 + "Id": 670, + "CommandName": "Get-PnPSitePolicy" }, { "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 3, - "CommandName": "Get-PnPSitePolicy", - "Id": 671 + "Id": 671, + "CommandName": "Get-PnPSitePolicy" }, { "Command": "Get-PnPSiteScript", "Rank": 1, - "CommandName": "Get-PnPSiteScript", - "Id": 672 + "Id": 672, + "CommandName": "Get-PnPSiteScript" }, { "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPSiteScript", - "Id": 673 + "Id": 673, + "CommandName": "Get-PnPSiteScript" }, { "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 674 + "Id": 674, + "CommandName": "Get-PnPSiteScriptFromList" }, { "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 675 + "Id": 675, + "CommandName": "Get-PnPSiteScriptFromList" }, { "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 676 + "Id": 676, + "CommandName": "Get-PnPSiteScriptFromList" }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 677 + "Id": 677, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 678 + "Id": 678, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 679 + "Id": 679, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Rank": 4, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 680 + "Id": 680, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Rank": 5, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 681 + "Id": 681, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Rank": 6, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 682 + "Id": 682, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteSearchQueryResults", "Rank": 1, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 683 + "Id": 683, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Rank": 2, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 684 + "Id": 684, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Rank": 3, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 685 + "Id": 685, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Rank": 4, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 686 + "Id": 686, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Rank": 5, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 687 + "Id": 687, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -All", "Rank": 6, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 688 + "Id": 688, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSensitivityLabel", "Rank": 1, - "CommandName": "Get-PnPSiteSensitivityLabel", - "Id": 689 + "Id": 689, + "CommandName": "Get-PnPSiteSensitivityLabel" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp", "Rank": 1, - "CommandName": "Get-PnPSiteTemplate", - "Id": 690 + "Id": 690, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.xml", "Rank": 2, - "CommandName": "Get-PnPSiteTemplate", - "Id": 691 + "Id": 691, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.md", "Rank": 3, - "CommandName": "Get-PnPSiteTemplate", - "Id": 692 + "Id": 692, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Rank": 4, - "CommandName": "Get-PnPSiteTemplate", - "Id": 693 + "Id": 693, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Rank": 5, - "CommandName": "Get-PnPSiteTemplate", - "Id": 694 + "Id": 694, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Rank": 6, - "CommandName": "Get-PnPSiteTemplate", - "Id": 695 + "Id": 695, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Rank": 7, - "CommandName": "Get-PnPSiteTemplate", - "Id": 696 + "Id": 696, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Rank": 8, - "CommandName": "Get-PnPSiteTemplate", - "Id": 697 + "Id": 697, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Rank": 9, - "CommandName": "Get-PnPSiteTemplate", - "Id": 698 + "Id": 698, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Rank": 10, - "CommandName": "Get-PnPSiteTemplate", - "Id": 699 + "Id": 699, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Rank": 11, - "CommandName": "Get-PnPSiteTemplate", - "Id": 700 + "Id": 700, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Rank": 12, - "CommandName": "Get-PnPSiteTemplate", - "Id": 701 + "Id": 701, + "CommandName": "Get-PnPSiteTemplate" }, { "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", - "Id": 702 + "Id": 702, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Rank": 14, - "CommandName": "Get-PnPSiteTemplate", - "Id": 703 + "Id": 703, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "CommandName": "Get-PnPSiteUserInvitations", - "Id": 704 + "Id": 704, + "CommandName": "Get-PnPSiteUserInvitations" }, { "Command": "Get-PnPStorageEntity", "Rank": 1, - "CommandName": "Get-PnPStorageEntity", - "Id": 705 + "Id": 705, + "CommandName": "Get-PnPStorageEntity" }, { "Command": "Get-PnPStorageEntity -Key MyKey", "Rank": 2, - "CommandName": "Get-PnPStorageEntity", - "Id": 706 + "Id": 706, + "CommandName": "Get-PnPStorageEntity" }, { "Command": "Get-PnPStorageEntity -Scope Site", "Rank": 3, - "CommandName": "Get-PnPStorageEntity", - "Id": 707 + "Id": 707, + "CommandName": "Get-PnPStorageEntity" }, { "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 4, - "CommandName": "Get-PnPStorageEntity", - "Id": 708 + "Id": 708, + "CommandName": "Get-PnPStorageEntity" }, { "Command": "Get-PnPStoredCredential -Name O365", "Rank": 1, - "CommandName": "Get-PnPStoredCredential", - "Id": 709 + "Id": 709, + "CommandName": "Get-PnPStoredCredential" }, { "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Id": 710 + "Id": 710, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Id": 711 + "Id": 711, + "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Id": 712 + "Id": 712, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { "Command": "Get-PnPSubWeb", "Rank": 1, - "CommandName": "Get-PnPSubWeb", - "Id": 713 + "Id": 713, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSubWeb -Recurse", "Rank": 2, - "CommandName": "Get-PnPSubWeb", - "Id": 714 + "Id": 714, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Rank": 3, - "CommandName": "Get-PnPSubWeb", - "Id": 715 + "Id": 715, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Rank": 4, - "CommandName": "Get-PnPSubWeb", - "Id": 716 + "Id": 716, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Rank": 5, - "CommandName": "Get-PnPSubWeb", - "Id": 717 + "Id": 717, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSyntexModel", "Rank": 1, - "CommandName": "Get-PnPSyntexModel", - "Id": 718 + "Id": 718, + "CommandName": "Get-PnPSyntexModel" }, { "Command": "Get-PnPSyntexModel -Identity 1", "Rank": 2, - "CommandName": "Get-PnPSyntexModel", - "Id": 719 + "Id": 719, + "CommandName": "Get-PnPSyntexModel" }, { "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Rank": 3, - "CommandName": "Get-PnPSyntexModel", - "Id": 720 + "Id": 720, + "CommandName": "Get-PnPSyntexModel" }, { "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Rank": 1, - "CommandName": "Get-PnPSyntexModelPublication", - "Id": 721 + "Id": 721, + "CommandName": "Get-PnPSyntexModelPublication" }, { "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Rank": 1, - "CommandName": "Get-PnPTaxonomyItem", - "Id": 722 + "Id": 722, + "CommandName": "Get-PnPTaxonomyItem" }, { "Command": "Get-PnPTeamsApp", "Rank": 1, - "CommandName": "Get-PnPTeamsApp", - "Id": 723 + "Id": 723, + "CommandName": "Get-PnPTeamsApp" }, { "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Rank": 2, - "CommandName": "Get-PnPTeamsApp", - "Id": 724 + "Id": 724, + "CommandName": "Get-PnPTeamsApp" }, { "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Rank": 3, - "CommandName": "Get-PnPTeamsApp", - "Id": 725 + "Id": 725, + "CommandName": "Get-PnPTeamsApp" }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Rank": 1, - "CommandName": "Get-PnPTeamsChannel", - "Id": 726 + "Id": 726, + "CommandName": "Get-PnPTeamsChannel" }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Rank": 2, - "CommandName": "Get-PnPTeamsChannel", - "Id": 727 + "Id": 727, + "CommandName": "Get-PnPTeamsChannel" }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 3, - "CommandName": "Get-PnPTeamsChannel", - "Id": 728 + "Id": 728, + "CommandName": "Get-PnPTeamsChannel" }, { "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 729 + "Id": 729, + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 730 + "Id": 730, + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 731 + "Id": 731, + "CommandName": "Get-PnPTeamsChannelMessage" }, { "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 732 + "Id": 732, + "CommandName": "Get-PnPTeamsChannelMessage" }, { "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 733 + "Id": 733, + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 734 + "Id": 734, + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 735 + "Id": 735, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 736 + "Id": 736, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Rank": 3, - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 737 + "Id": 737, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 738 + "Id": 738, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Rank": 1, - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 739 + "Id": 739, + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Rank": 2, - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 740 + "Id": 740, + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "Rank": 1, - "CommandName": "Get-PnPTeamsTab", - "Id": 741 + "Id": 741, + "CommandName": "Get-PnPTeamsTab" }, { "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTab", - "Id": 742 + "Id": 742, + "CommandName": "Get-PnPTeamsTab" }, { "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", - "Id": 743 + "Id": 743, + "CommandName": "Get-PnPTeamsTab" }, { "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Rank": 4, - "CommandName": "Get-PnPTeamsTab", - "Id": 744 + "Id": 744, + "CommandName": "Get-PnPTeamsTab" }, { "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Rank": 5, - "CommandName": "Get-PnPTeamsTab", - "Id": 745 + "Id": 745, + "CommandName": "Get-PnPTeamsTab" }, { "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "CommandName": "Get-PnPTeamsTag", - "Id": 746 + "Id": 746, + "CommandName": "Get-PnPTeamsTag" }, { "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTag", - "Id": 747 + "Id": 747, + "CommandName": "Get-PnPTeamsTag" }, { "Command": "Get-PnPTeamsTeam", "Rank": 1, - "CommandName": "Get-PnPTeamsTeam", - "Id": 748 + "Id": 748, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTeam", - "Id": 749 + "Id": 749, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Rank": 3, - "CommandName": "Get-PnPTeamsTeam", - "Id": 750 + "Id": 750, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Rank": 4, - "CommandName": "Get-PnPTeamsTeam", - "Id": 751 + "Id": 751, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "CommandName": "Get-PnPTeamsTeam", - "Id": 752 + "Id": 752, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsUser -Team MyTeam", "Rank": 1, - "CommandName": "Get-PnPTeamsUser", - "Id": 753 + "Id": 753, + "CommandName": "Get-PnPTeamsUser" }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Rank": 2, - "CommandName": "Get-PnPTeamsUser", - "Id": 754 + "Id": 754, + "CommandName": "Get-PnPTeamsUser" }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Rank": 3, - "CommandName": "Get-PnPTeamsUser", - "Id": 755 + "Id": 755, + "CommandName": "Get-PnPTeamsUser" }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Rank": 4, - "CommandName": "Get-PnPTeamsUser", - "Id": 756 + "Id": 756, + "CommandName": "Get-PnPTeamsUser" }, { "Command": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, - "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Id": 757 + "Id": 757, + "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { "Command": "Get-PnPTenant", "Rank": 1, - "CommandName": "Get-PnPTenant", - "Id": 758 + "Id": 758, + "CommandName": "Get-PnPTenant" }, { "Command": "Get-PnPTenantAppCatalogUrl", "Rank": 1, - "CommandName": "Get-PnPTenantAppCatalogUrl", - "Id": 759 + "Id": 759, + "CommandName": "Get-PnPTenantAppCatalogUrl" }, { "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnEnabled", - "Id": 760 + "Id": 760, + "CommandName": "Get-PnPTenantCdnEnabled" }, { "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnOrigin", - "Id": 761 + "Id": 761, + "CommandName": "Get-PnPTenantCdnOrigin" }, { "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnPolicies", - "Id": 762 + "Id": 762, + "CommandName": "Get-PnPTenantCdnPolicies" }, { "Command": "Get-PnPTenantDeletedSite", "Rank": 1, - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 763 + "Id": 763, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 2, - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 764 + "Id": 764, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Rank": 3, - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 765 + "Id": 765, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Rank": 4, - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 766 + "Id": 766, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Command": "Get-PnPTenantId", "Rank": 1, - "CommandName": "Get-PnPTenantId", - "Id": 767 + "Id": 767, + "CommandName": "Get-PnPTenantId" }, { "Command": "Get-PnPTenantId contoso", "Rank": 2, - "CommandName": "Get-PnPTenantId", - "Id": 768 + "Id": 768, + "CommandName": "Get-PnPTenantId" }, { "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Rank": 3, - "CommandName": "Get-PnPTenantId", - "Id": 769 + "Id": 769, + "CommandName": "Get-PnPTenantId" }, { "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Rank": 4, - "CommandName": "Get-PnPTenantId", - "Id": 770 + "Id": 770, + "CommandName": "Get-PnPTenantId" }, { "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Rank": 1, - "CommandName": "Get-PnPTenantInfo", - "Id": 771 + "Id": 771, + "CommandName": "Get-PnPTenantInfo" }, { "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Rank": 2, - "CommandName": "Get-PnPTenantInfo", - "Id": 772 + "Id": 772, + "CommandName": "Get-PnPTenantInfo" }, { "Command": "Get-PnPTenantInfo", "Rank": 3, - "CommandName": "Get-PnPTenantInfo", - "Id": 773 + "Id": 773, + "CommandName": "Get-PnPTenantInfo" }, { "Command": "Get-PnPTenantInfo -CurrentTenant", "Rank": 4, - "CommandName": "Get-PnPTenantInfo", - "Id": 774 + "Id": 774, + "CommandName": "Get-PnPTenantInfo" }, { "Command": "Get-PnPTenantInstance", "Rank": 1, - "CommandName": "Get-PnPTenantInstance", - "Id": 775 + "Id": 775, + "CommandName": "Get-PnPTenantInstance" }, { "Command": "Get-PnPTenantRecycleBinItem", "Rank": 1, - "CommandName": "Get-PnPTenantRecycleBinItem", - "Id": 776 + "Id": 776, + "CommandName": "Get-PnPTenantRecycleBinItem" }, { "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Rank": 1, - "CommandName": "Get-PnPTenantSequence", - "Id": 777 + "Id": 777, + "CommandName": "Get-PnPTenantSequence" }, { "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Rank": 2, - "CommandName": "Get-PnPTenantSequence", - "Id": 778 + "Id": 778, + "CommandName": "Get-PnPTenantSequence" }, { "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Rank": 1, - "CommandName": "Get-PnPTenantSequenceSite", - "Id": 779 + "Id": 779, + "CommandName": "Get-PnPTenantSequenceSite" }, { "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Rank": 2, - "CommandName": "Get-PnPTenantSequenceSite", - "Id": 780 + "Id": 780, + "CommandName": "Get-PnPTenantSequenceSite" }, { "Command": "Get-PnPTenantSite", "Rank": 1, - "CommandName": "Get-PnPTenantSite", - "Id": 781 + "Id": 781, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Detailed", "Rank": 2, - "CommandName": "Get-PnPTenantSite", - "Id": 782 + "Id": 782, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Rank": 3, - "CommandName": "Get-PnPTenantSite", - "Id": 783 + "Id": 783, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Rank": 4, - "CommandName": "Get-PnPTenantSite", - "Id": 784 + "Id": 784, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Rank": 5, - "CommandName": "Get-PnPTenantSite", - "Id": 785 + "Id": 785, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Rank": 6, - "CommandName": "Get-PnPTenantSite", - "Id": 786 + "Id": 786, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Rank": 7, - "CommandName": "Get-PnPTenantSite", - "Id": 787 + "Id": 787, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Rank": 8, - "CommandName": "Get-PnPTenantSite", - "Id": 788 + "Id": 788, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Rank": 9, - "CommandName": "Get-PnPTenantSite", - "Id": 789 + "Id": 789, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSyncClientRestriction", "Rank": 1, - "CommandName": "Get-PnPTenantSyncClientRestriction", - "Id": 790 + "Id": 790, + "CommandName": "Get-PnPTenantSyncClientRestriction" }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Rank": 1, - "CommandName": "Get-PnPTenantTemplate", - "Id": 791 + "Id": 791, + "CommandName": "Get-PnPTenantTemplate" }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "Rank": 2, - "CommandName": "Get-PnPTenantTemplate", - "Id": 792 + "Id": 792, + "CommandName": "Get-PnPTenantTemplate" }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Rank": 3, - "CommandName": "Get-PnPTenantTemplate", - "Id": 793 + "Id": 793, + "CommandName": "Get-PnPTenantTemplate" }, { "Command": "Get-PnPTenantTheme", "Rank": 1, - "CommandName": "Get-PnPTenantTheme", - "Id": 794 + "Id": 794, + "CommandName": "Get-PnPTenantTheme" }, { "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 2, - "CommandName": "Get-PnPTenantTheme", - "Id": 795 + "Id": 795, + "CommandName": "Get-PnPTenantTheme" }, { "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Rank": 3, - "CommandName": "Get-PnPTenantTheme", - "Id": 796 + "Id": 796, + "CommandName": "Get-PnPTenantTheme" }, { "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "Get-PnPTerm", - "Id": 797 + "Id": 797, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Get-PnPTerm", - "Id": 798 + "Id": 798, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "CommandName": "Get-PnPTerm", - "Id": 799 + "Id": 799, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Rank": 4, - "CommandName": "Get-PnPTerm", - "Id": 800 + "Id": 800, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Rank": 5, - "CommandName": "Get-PnPTerm", - "Id": 801 + "Id": 801, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTermGroup", "Rank": 1, - "CommandName": "Get-PnPTermGroup", - "Id": 802 + "Id": 802, + "CommandName": "Get-PnPTermGroup" }, { "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Rank": 2, - "CommandName": "Get-PnPTermGroup", - "Id": 803 + "Id": 803, + "CommandName": "Get-PnPTermGroup" }, { "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Rank": 3, - "CommandName": "Get-PnPTermGroup", - "Id": 804 + "Id": 804, + "CommandName": "Get-PnPTermGroup" }, { "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Rank": 1, - "CommandName": "Get-PnPTermLabel", - "Id": 805 + "Id": 805, + "CommandName": "Get-PnPTermLabel" }, { "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Rank": 2, - "CommandName": "Get-PnPTermLabel", - "Id": 806 + "Id": 806, + "CommandName": "Get-PnPTermLabel" }, { "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "CommandName": "Get-PnPTermLabel", - "Id": 807 + "Id": 807, + "CommandName": "Get-PnPTermLabel" }, { "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "Get-PnPTermSet", - "Id": 808 + "Id": 808, + "CommandName": "Get-PnPTermSet" }, { "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Get-PnPTermSet", - "Id": 809 + "Id": 809, + "CommandName": "Get-PnPTermSet" }, { "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Rank": 3, - "CommandName": "Get-PnPTermSet", - "Id": 810 + "Id": 810, + "CommandName": "Get-PnPTermSet" }, { "Command": "Get-PnPTheme", "Rank": 1, - "CommandName": "Get-PnPTheme", - "Id": 811 + "Id": 811, + "CommandName": "Get-PnPTheme" }, { "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Rank": 2, - "CommandName": "Get-PnPTheme", - "Id": 812 + "Id": 812, + "CommandName": "Get-PnPTheme" }, { "Command": "Get-PnPTimeZoneId", "Rank": 1, - "CommandName": "Get-PnPTimeZoneId", - "Id": 813 + "Id": 813, + "CommandName": "Get-PnPTimeZoneId" }, { "Command": "Get-PnPTimeZoneId -Match Stockholm", "Rank": 2, - "CommandName": "Get-PnPTimeZoneId", - "Id": 814 + "Id": 814, + "CommandName": "Get-PnPTimeZoneId" }, { "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Rank": 1, - "CommandName": "Get-PnPUnfurlLink", - "Id": 815 + "Id": 815, + "CommandName": "Get-PnPUnfurlLink" }, { "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Rank": 1, - "CommandName": "Get-PnPUnifiedAuditLog", - "Id": 816 + "Id": 816, + "CommandName": "Get-PnPUnifiedAuditLog" }, { "Command": "Get-PnPUPABulkImportStatus", "Rank": 1, - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 817 + "Id": 817, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Rank": 2, - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 818 + "Id": 818, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Command": "Get-PnPUPABulkImportStatus -JobId ", "Rank": 3, - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 819 + "Id": 819, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "Rank": 4, - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 820 + "Id": 820, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Command": "Get-PnPUser", "Rank": 1, - "CommandName": "Get-PnPUser", - "Id": 821 + "Id": 821, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -Identity 23", "Rank": 2, - "CommandName": "Get-PnPUser", - "Id": 822 + "Id": 822, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Get-PnPUser", - "Id": 823 + "Id": 823, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Rank": 4, - "CommandName": "Get-PnPUser", - "Id": 824 + "Id": 824, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -WithRightsAssigned", "Rank": 5, - "CommandName": "Get-PnPUser", - "Id": 825 + "Id": 825, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Rank": 6, - "CommandName": "Get-PnPUser", - "Id": 826 + "Id": 826, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Rank": 7, - "CommandName": "Get-PnPUser", - "Id": 827 + "Id": 827, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPUserOneDriveQuota", - "Id": 828 + "Id": 828, + "CommandName": "Get-PnPUserOneDriveQuota" }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPUserProfileProperty", - "Id": 829 + "Id": 829, + "CommandName": "Get-PnPUserProfileProperty" }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Rank": 2, - "CommandName": "Get-PnPUserProfileProperty", - "Id": 830 + "Id": 830, + "CommandName": "Get-PnPUserProfileProperty" }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Rank": 3, - "CommandName": "Get-PnPUserProfileProperty", - "Id": 831 + "Id": 831, + "CommandName": "Get-PnPUserProfileProperty" }, { "Command": "Get-PnPView -List \"Demo List\"", "Rank": 1, - "CommandName": "Get-PnPView", - "Id": 832 + "Id": 832, + "CommandName": "Get-PnPView" }, { "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Rank": 2, - "CommandName": "Get-PnPView", - "Id": 833 + "Id": 833, + "CommandName": "Get-PnPView" }, { "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Rank": 3, - "CommandName": "Get-PnPView", - "Id": 834 + "Id": 834, + "CommandName": "Get-PnPView" }, { "Command": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 835 + "Id": 835, + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 2, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 836 + "Id": 836, + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { "Command": "Get-PnPWeb", "Rank": 1, - "CommandName": "Get-PnPWeb", - "Id": 837 + "Id": 837, + "CommandName": "Get-PnPWeb" }, { "Command": "Get-PnPWebHeader", "Rank": 1, - "CommandName": "Get-PnPWebHeader", - "Id": 838 + "Id": 838, + "CommandName": "Get-PnPWebHeader" }, { "Command": "Get-PnPWebhookSubscriptions -List MyList", "Rank": 1, - "CommandName": "Get-PnPWebhookSubscriptions", - "Id": 839 + "Id": 839, + "CommandName": "Get-PnPWebhookSubscriptions" }, { "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Rank": 1, - "CommandName": "Get-PnPWebPart", - "Id": 840 + "Id": 840, + "CommandName": "Get-PnPWebPart" }, { "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "CommandName": "Get-PnPWebPart", - "Id": 841 + "Id": 841, + "CommandName": "Get-PnPWebPart" }, { "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "Rank": 1, - "CommandName": "Get-PnPWebPartProperty", - "Id": 842 + "Id": 842, + "CommandName": "Get-PnPWebPartProperty" }, { "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Rank": 2, - "CommandName": "Get-PnPWebPartProperty", - "Id": 843 + "Id": 843, + "CommandName": "Get-PnPWebPartProperty" }, { "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Get-PnPWebPartXml", - "Id": 844 + "Id": 844, + "CommandName": "Get-PnPWebPartXml" }, { "Command": "Get-PnPWebTemplates", "Rank": 1, - "CommandName": "Get-PnPWebTemplates", - "Id": 845 + "Id": 845, + "CommandName": "Get-PnPWebTemplates" }, { "Command": "Get-PnPWebTemplates -LCID 1033", "Rank": 2, - "CommandName": "Get-PnPWebTemplates", - "Id": 846 + "Id": 846, + "CommandName": "Get-PnPWebTemplates" }, { "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Rank": 3, - "CommandName": "Get-PnPWebTemplates", - "Id": 847 + "Id": 847, + "CommandName": "Get-PnPWebTemplates" }, { "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Rank": 1, - "CommandName": "Get-PnPWikiPageContent", - "Id": 848 + "Id": 848, + "CommandName": "Get-PnPWikiPageContent" }, { "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "Rank": 1, - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 849 + "Id": 849, + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 850 + "Id": 850, + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Grant-PnPHubSiteRights", - "Id": 851 + "Id": 851, + "CommandName": "Grant-PnPHubSiteRights" }, { "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Grant-PnPSiteDesignRights", - "Id": 852 + "Id": 852, + "CommandName": "Grant-PnPSiteDesignRights" }, { "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Id": 853 + "Id": 853, + "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Rank": 1, - "CommandName": "Import-PnPTaxonomy", - "Id": 854 + "Id": 854, + "CommandName": "Import-PnPTaxonomy" }, { "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Rank": 2, - "CommandName": "Import-PnPTaxonomy", - "Id": 855 + "Id": 855, + "CommandName": "Import-PnPTaxonomy" }, { "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Rank": 3, - "CommandName": "Import-PnPTaxonomy", - "Id": 856 + "Id": 856, + "CommandName": "Import-PnPTaxonomy" }, { "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Rank": 1, - "CommandName": "Import-PnPTermGroupFromXml", - "Id": 857 + "Id": 857, + "CommandName": "Import-PnPTermGroupFromXml" }, { "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Rank": 2, - "CommandName": "Import-PnPTermGroupFromXml", - "Id": 858 + "Id": 858, + "CommandName": "Import-PnPTermGroupFromXml" }, { "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Rank": 1, - "CommandName": "Import-PnPTermSet", - "Id": 859 + "Id": 859, + "CommandName": "Import-PnPTermSet" }, { "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", - "Id": 860 + "Id": 860, + "CommandName": "Import-PnPTermSet" }, { "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", - "Id": 861 + "Id": 861, + "CommandName": "Import-PnPTermSet" }, { "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Install-PnPApp", - "Id": 862 + "Id": 862, + "CommandName": "Install-PnPApp" }, { "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Install-PnPApp", - "Id": 863 + "Id": 863, + "CommandName": "Install-PnPApp" }, { "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "Rank": 1, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 864 + "Id": 864, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Rank": 2, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 865 + "Id": 865, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Rank": 3, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 866 + "Id": 866, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Rank": 4, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 867 + "Id": 867, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Rank": 5, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 868 + "Id": 868, + "CommandName": "Invoke-PnPGraphMethod" }, { "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", - "Id": 869 + "Id": 869, + "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\"", "Rank": 7, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 870 + "Id": 870, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Invoke-PnPListDesign", - "Id": 871 + "Id": 871, + "CommandName": "Invoke-PnPListDesign" }, { "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "CommandName": "Invoke-PnPListDesign", - "Id": 872 + "Id": 872, + "CommandName": "Invoke-PnPListDesign" }, { "Command": "Invoke-PnPQuery -RetryCount 5", "Rank": 1, - "CommandName": "Invoke-PnPQuery", - "Id": 873 + "Id": 873, + "CommandName": "Invoke-PnPQuery" }, { "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Invoke-PnPSiteDesign", - "Id": 874 + "Id": 874, + "CommandName": "Invoke-PnPSiteDesign" }, { "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "CommandName": "Invoke-PnPSiteDesign", - "Id": 875 + "Id": 875, + "CommandName": "Invoke-PnPSiteDesign" }, { "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Rank": 1, - "CommandName": "Invoke-PnPSiteScript", - "Id": 876 + "Id": 876, + "CommandName": "Invoke-PnPSiteScript" }, { "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", - "Id": 877 + "Id": 877, + "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", "Rank": 2, - "CommandName": "Invoke-PnPSiteSwap", - "Id": 878 + "Id": 878, + "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", "Rank": 3, - "CommandName": "Invoke-PnPSiteSwap", - "Id": 879 + "Id": 879, + "CommandName": "Invoke-PnPSiteSwap" }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Rank": 1, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 880 + "Id": 880, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Rank": 2, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 881 + "Id": 881, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 882 + "Id": 882, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Rank": 4, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 883 + "Id": 883, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Rank": 5, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 884 + "Id": 884, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Rank": 6, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 885 + "Id": 885, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Rank": 7, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 886 + "Id": 886, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Rank": 8, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 887 + "Id": 887, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Rank": 1, - "CommandName": "Invoke-PnPSPRestMethod", - "Id": 888 + "Id": 888, + "CommandName": "Invoke-PnPSPRestMethod" }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Rank": 1, - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 889 + "Id": 889, + "CommandName": "Invoke-PnPTenantTemplate" }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Rank": 2, - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 890 + "Id": 890, + "CommandName": "Invoke-PnPTenantTemplate" }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 891 + "Id": 891, + "CommandName": "Invoke-PnPTenantTemplate" }, { "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Rank": 1, - "CommandName": "Invoke-PnPWebAction", - "Id": 892 + "Id": 892, + "CommandName": "Invoke-PnPWebAction" }, { "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Rank": 2, - "CommandName": "Invoke-PnPWebAction", - "Id": 893 + "Id": 893, + "CommandName": "Invoke-PnPWebAction" }, { "Command": "Measure-PnPList \"Documents\"", "Rank": 1, - "CommandName": "Measure-PnPList", - "Id": 894 + "Id": 894, + "CommandName": "Measure-PnPList" }, { "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Rank": 2, - "CommandName": "Measure-PnPList", - "Id": 895 + "Id": 895, + "CommandName": "Measure-PnPList" }, { "Command": "Measure-PnPWeb", "Rank": 1, - "CommandName": "Measure-PnPWeb", - "Id": 896 + "Id": 896, + "CommandName": "Measure-PnPWeb" }, { "Command": "Measure-PnPWeb $web -Recursive", "Rank": 2, - "CommandName": "Measure-PnPWeb", - "Id": 897 + "Id": 897, + "CommandName": "Measure-PnPWeb" }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Rank": 1, - "CommandName": "Move-PnPFile", - "Id": 898 + "Id": 898, + "CommandName": "Move-PnPFile" }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Rank": 2, - "CommandName": "Move-PnPFile", - "Id": 899 + "Id": 899, + "CommandName": "Move-PnPFile" }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 3, - "CommandName": "Move-PnPFile", - "Id": 900 + "Id": 900, + "CommandName": "Move-PnPFile" }, { "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 4, - "CommandName": "Move-PnPFile", - "Id": 901 + "Id": 901, + "CommandName": "Move-PnPFile" }, { "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Rank": 1, - "CommandName": "Move-PnPFolder", - "Id": 902 + "Id": 902, + "CommandName": "Move-PnPFolder" }, { "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Rank": 2, - "CommandName": "Move-PnPFolder", - "Id": 903 + "Id": 903, + "CommandName": "Move-PnPFolder" }, { "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "CommandName": "Move-PnPListItemToRecycleBin", - "Id": 904 + "Id": 904, + "CommandName": "Move-PnPListItemToRecycleBin" }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "Rank": 1, - "CommandName": "Move-PnPPageComponent", - "Id": 905 + "Id": 905, + "CommandName": "Move-PnPPageComponent" }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "Rank": 2, - "CommandName": "Move-PnPPageComponent", - "Id": 906 + "Id": 906, + "CommandName": "Move-PnPPageComponent" }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "Rank": 3, - "CommandName": "Move-PnPPageComponent", - "Id": 907 + "Id": 907, + "CommandName": "Move-PnPPageComponent" }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Rank": 4, - "CommandName": "Move-PnPPageComponent", - "Id": 908 + "Id": 908, + "CommandName": "Move-PnPPageComponent" }, { "Command": "Move-PnPRecycleBinItem", "Rank": 1, - "CommandName": "Move-PnpRecycleBinItem", - "Id": 909 + "Id": 909, + "CommandName": "Move-PnpRecycleBinItem" }, { "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Rank": 2, - "CommandName": "Move-PnpRecycleBinItem", - "Id": 910 + "Id": 910, + "CommandName": "Move-PnpRecycleBinItem" }, { "Command": "Move-PnPRecycleBinItem -Force", "Rank": 3, - "CommandName": "Move-PnpRecycleBinItem", - "Id": 911 + "Id": 911, + "CommandName": "Move-PnpRecycleBinItem" }, { "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", - "Id": 912 + "Id": 912, + "CommandName": "Move-PnPTerm" }, { "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Rank": 2, - "CommandName": "Move-PnPTerm", - "Id": 913 + "Id": 913, + "CommandName": "Move-PnPTerm" }, { "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Rank": 3, - "CommandName": "Move-PnPTerm", - "Id": 914 + "Id": 914, + "CommandName": "Move-PnPTerm" }, { "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", - "Id": 915 + "Id": 915, + "CommandName": "Move-PnPTermSet" }, { "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Rank": 2, - "CommandName": "Move-PnPTermSet", - "Id": 916 + "Id": 916, + "CommandName": "Move-PnPTermSet" }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "CommandName": "New-PnPAzureADGroup", - "Id": 917 + "Id": 917, + "CommandName": "New-PnPAzureADGroup" }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Rank": 2, - "CommandName": "New-PnPAzureADGroup", - "Id": 918 + "Id": 918, + "CommandName": "New-PnPAzureADGroup" }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Rank": 3, - "CommandName": "New-PnPAzureADGroup", - "Id": 919 + "Id": 919, + "CommandName": "New-PnPAzureADGroup" }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Rank": 1, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 920 + "Id": 920, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Rank": 2, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 921 + "Id": 921, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Rank": 3, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 922 + "Id": 922, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Rank": 1, - "CommandName": "New-PnPAzureCertificate", - "Id": 923 + "Id": 923, + "CommandName": "New-PnPAzureCertificate" }, { "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Rank": 2, - "CommandName": "New-PnPAzureCertificate", - "Id": 924 + "Id": 924, + "CommandName": "New-PnPAzureCertificate" }, { "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "Rank": 3, - "CommandName": "New-PnPAzureCertificate", - "Id": 925 + "Id": 925, + "CommandName": "New-PnPAzureCertificate" }, { "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", - "Id": 926 + "Id": 926, + "CommandName": "New-PnPGraphSubscription" }, { "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", - "Id": 927 + "Id": 927, + "CommandName": "New-PnPGraphSubscription" }, { "Command": "New-PnPGroup -Title \"My Site Users\"", "Rank": 1, - "CommandName": "New-PnPGroup", - "Id": 928 + "Id": 928, + "CommandName": "New-PnPGroup" }, { "Command": "New-PnPList -Title Announcements -Template Announcements", "Rank": 1, - "CommandName": "New-PnPList", - "Id": 929 + "Id": 929, + "CommandName": "New-PnPList" }, { "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Rank": 2, - "CommandName": "New-PnPList", - "Id": 930 + "Id": 930, + "CommandName": "New-PnPList" }, { "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Rank": 3, - "CommandName": "New-PnPList", - "Id": 931 + "Id": 931, + "CommandName": "New-PnPList" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 932 + "Id": 932, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "Rank": 2, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 933 + "Id": 933, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Rank": 3, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 934 + "Id": 934, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Rank": 4, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 935 + "Id": 935, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 5, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 936 + "Id": 936, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 937 + "Id": 937, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "Rank": 7, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 938 + "Id": 938, + "CommandName": "New-PnPMicrosoft365Group" }, { "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", - "Id": 939 + "Id": 939, + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Rank": 2, - "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 940 + "Id": 940, + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Rank": 1, - "CommandName": "New-PnPPersonalSite", - "Id": 941 + "Id": 941, + "CommandName": "New-PnPPersonalSite" }, { "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Rank": 1, - "CommandName": "New-PnPPlannerPlan", - "Id": 942 + "Id": 942, + "CommandName": "New-PnPPlannerPlan" }, { "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Rank": 1, - "CommandName": "New-PnPSdnProvider", - "Id": 943 + "Id": 943, + "CommandName": "New-PnPSdnProvider" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 1, - "CommandName": "New-PnPSite", - "Id": 944 + "Id": 944, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "Rank": 2, - "CommandName": "New-PnPSite", - "Id": 945 + "Id": 945, + "CommandName": "New-PnPSite" }, { "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", - "Id": 946 + "Id": 946, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 4, - "CommandName": "New-PnPSite", - "Id": 947 + "Id": 947, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 5, - "CommandName": "New-PnPSite", - "Id": 948 + "Id": 948, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 6, - "CommandName": "New-PnPSite", - "Id": 949 + "Id": 949, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Rank": 7, - "CommandName": "New-PnPSite", - "Id": 950 + "Id": 950, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Rank": 8, - "CommandName": "New-PnPSite", - "Id": 951 + "Id": 951, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Rank": 9, - "CommandName": "New-PnPSite", - "Id": 952 + "Id": 952, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Rank": 10, - "CommandName": "New-PnPSite", - "Id": 953 + "Id": 953, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 11, - "CommandName": "New-PnPSite", - "Id": 954 + "Id": 954, + "CommandName": "New-PnPSite" }, { "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", - "Id": 955 + "Id": 955, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 13, - "CommandName": "New-PnPSite", - "Id": 956 + "Id": 956, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 14, - "CommandName": "New-PnPSite", - "Id": 957 + "Id": 957, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 15, - "CommandName": "New-PnPSite", - "Id": 958 + "Id": 958, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Rank": 16, - "CommandName": "New-PnPSite", - "Id": 959 + "Id": 959, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "New-PnPSiteCollectionTermStore", - "Id": 960 + "Id": 960, + "CommandName": "New-PnPSiteCollectionTermStore" }, { "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "Rank": 1, - "CommandName": "New-PnPSiteGroup", - "Id": 961 + "Id": 961, + "CommandName": "New-PnPSiteGroup" }, { "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Rank": 2, - "CommandName": "New-PnPSiteGroup", - "Id": 962 + "Id": 962, + "CommandName": "New-PnPSiteGroup" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Rank": 1, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 963 + "Id": 963, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Rank": 2, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 964 + "Id": 964, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Rank": 3, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 965 + "Id": 965, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "Rank": 4, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 966 + "Id": 966, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "Rank": 5, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 967 + "Id": 967, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "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", - "Id": 968 + "Id": 968, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Rank": 7, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 969 + "Id": 969, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Rank": 8, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 970 + "Id": 970, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Rank": 1, - "CommandName": "New-PnPTeamsApp", - "Id": 971 + "Id": 971, + "CommandName": "New-PnPTeamsApp" }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Rank": 1, - "CommandName": "New-PnPTeamsTeam", - "Id": 972 + "Id": 972, + "CommandName": "New-PnPTeamsTeam" }, { "Command": "New-PnPTeamsTeam -GroupId $groupId", "Rank": 2, - "CommandName": "New-PnPTeamsTeam", - "Id": 973 + "Id": 973, + "CommandName": "New-PnPTeamsTeam" }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "Rank": 3, - "CommandName": "New-PnPTeamsTeam", - "Id": 974 + "Id": 974, + "CommandName": "New-PnPTeamsTeam" }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 4, - "CommandName": "New-PnPTeamsTeam", - "Id": 975 + "Id": 975, + "CommandName": "New-PnPTeamsTeam" }, { "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", - "Id": 976 + "Id": 976, + "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\"", "Rank": 6, - "CommandName": "New-PnPTeamsTeam", - "Id": 977 + "Id": 977, + "CommandName": "New-PnPTeamsTeam" }, { "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", - "Id": 978 + "Id": 978, + "CommandName": "New-PnPTenantSite" }, { "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Rank": 2, - "CommandName": "New-PnPTenantSite", - "Id": 979 + "Id": 979, + "CommandName": "New-PnPTenantSite" }, { "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Rank": 1, - "CommandName": "New-PnPTerm", - "Id": 980 + "Id": 980, + "CommandName": "New-PnPTerm" }, { "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "CommandName": "New-PnPTerm", - "Id": 981 + "Id": 981, + "CommandName": "New-PnPTerm" }, { "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Rank": 1, - "CommandName": "New-PnPTermGroup", - "Id": 982 + "Id": 982, + "CommandName": "New-PnPTermGroup" }, { "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Rank": 1, - "CommandName": "New-PnPTermLabel", - "Id": 983 + "Id": 983, + "CommandName": "New-PnPTermLabel" }, { "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "New-PnPTermSet", - "Id": 984 + "Id": 984, + "CommandName": "New-PnPTermSet" }, { "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "Rank": 1, - "CommandName": "New-PnPUPABulkImportJob", - "Id": 985 + "Id": 985, + "CommandName": "New-PnPUPABulkImportJob" }, { "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", - "Id": 986 + "Id": 986, + "CommandName": "New-PnPUPABulkImportJob" }, { "Command": "New-PnPUser -LoginName user@company.com", "Rank": 1, - "CommandName": "New-PnPUser", - "Id": 987 + "Id": 987, + "CommandName": "New-PnPUser" }, { "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Rank": 1, - "CommandName": "New-PnPWeb", - "Id": 988 + "Id": 988, + "CommandName": "New-PnPWeb" }, { "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 1, - "CommandName": "Publish-PnPApp", - "Id": 989 + "Id": 989, + "CommandName": "Publish-PnPApp" }, { "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Rank": 2, - "CommandName": "Publish-PnPApp", - "Id": 990 + "Id": 990, + "CommandName": "Publish-PnPApp" }, { "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", - "Id": 991 + "Id": 991, + "CommandName": "Publish-PnPCompanyApp" }, { "Command": "Publish-PnPContentType -ContentType 0x0101", "Rank": 1, - "CommandName": "Publish-PnPContentType", - "Id": 992 + "Id": 992, + "CommandName": "Publish-PnPContentType" }, { "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "CommandName": "Publish-PnPSyntexModel", - "Id": 993 + "Id": 993, + "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", "Rank": 2, - "CommandName": "Publish-PnPSyntexModel", - "Id": 994 + "Id": 994, + "CommandName": "Publish-PnPSyntexModel" }, { "Command": "Read-PnPSiteTemplate -Path template.pnp", "Rank": 1, - "CommandName": "Read-PnPSiteTemplate", - "Id": 995 + "Id": 995, + "CommandName": "Read-PnPSiteTemplate" }, { "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Rank": 2, - "CommandName": "Read-PnPSiteTemplate", - "Id": 996 + "Id": 996, + "CommandName": "Read-PnPSiteTemplate" }, { "Command": "Read-PnPSiteTemplate -Xml $xml", "Rank": 3, - "CommandName": "Read-PnPSiteTemplate", - "Id": 997 + "Id": 997, + "CommandName": "Read-PnPSiteTemplate" }, { "Command": "Read-PnPTenantTemplate -Path template.pnp", "Rank": 1, - "CommandName": "Read-PnPTenantTemplate", - "Id": 998 + "Id": 998, + "CommandName": "Read-PnPTenantTemplate" }, { "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Rank": 1, - "CommandName": "Register-PnPAppCatalogSite", - "Id": 999 + "Id": 999, + "CommandName": "Register-PnPAppCatalogSite" }, { "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", - "Id": 1000 + "Id": 1000, + "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\")", "Rank": 2, - "CommandName": "Register-PnPAzureADApp", - "Id": 1001 + "Id": 1001, + "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\")", "Rank": 3, - "CommandName": "Register-PnPAzureADApp", - "Id": 1002 + "Id": 1002, + "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\")", "Rank": 4, - "CommandName": "Register-PnPAzureADApp", - "Id": 1003 + "Id": 1003, + "CommandName": "Register-PnPAzureADApp" }, { "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", - "Id": 1004 + "Id": 1004, + "CommandName": "Register-PnPAzureADApp" }, { "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", - "Id": 1005 + "Id": 1005, + "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", "Rank": 7, - "CommandName": "Register-PnPAzureADApp", - "Id": 1006 + "Id": 1006, + "CommandName": "Register-PnPAzureADApp" }, { "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "CommandName": "Register-PnPHubSite", - "Id": 1007 + "Id": 1007, + "CommandName": "Register-PnPHubSite" }, { "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Rank": 2, - "CommandName": "Register-PnPHubSite", - "Id": 1008 + "Id": 1008, + "CommandName": "Register-PnPHubSite" }, { "Command": "Register-PnPManagementShellAccess", "Rank": 1, - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1009 + "Id": 1009, + "CommandName": "Register-PnPManagementShellAccess" }, { "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Rank": 2, - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1010 + "Id": 1010, + "CommandName": "Register-PnPManagementShellAccess" }, { "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Rank": 3, - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1011 + "Id": 1011, + "CommandName": "Register-PnPManagementShellAccess" }, { "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1012 + "Id": 1012, + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Rank": 2, - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1013 + "Id": 1013, + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Rank": 1, - "CommandName": "Remove-PnPAlert", - "Id": 1014 + "Id": 1014, + "CommandName": "Remove-PnPAlert" }, { "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 2, - "CommandName": "Remove-PnPAlert", - "Id": 1015 + "Id": 1015, + "CommandName": "Remove-PnPAlert" }, { "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Remove-PnPApp", - "Id": 1016 + "Id": 1016, + "CommandName": "Remove-PnPApp" }, { "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPApp", - "Id": 1017 + "Id": 1017, + "CommandName": "Remove-PnPApp" }, { "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1018 + "Id": 1018, + "CommandName": "Remove-PnPApplicationCustomizer" }, { "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1019 + "Id": 1019, + "CommandName": "Remove-PnPApplicationCustomizer" }, { "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Rank": 1, - "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1020 + "Id": 1020, + "CommandName": "Remove-PnPAvailableSiteClassification" }, { "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 2, - "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1021 + "Id": 1021, + "CommandName": "Remove-PnPAvailableSiteClassification" }, { "Command": "Remove-PnPAzureADApp -Identity MyApp", "Rank": 1, - "CommandName": "Remove-PnPAzureADApp", - "Id": 1022 + "Id": 1022, + "CommandName": "Remove-PnPAzureADApp" }, { "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 2, - "CommandName": "Remove-PnPAzureADApp", - "Id": 1023 + "Id": 1023, + "CommandName": "Remove-PnPAzureADApp" }, { "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroup", - "Id": 1024 + "Id": 1024, + "CommandName": "Remove-PnPAzureADGroup" }, { "Command": "Remove-PnPAzureADGroup -Identity $group", "Rank": 2, - "CommandName": "Remove-PnPAzureADGroup", - "Id": 1025 + "Id": 1025, + "CommandName": "Remove-PnPAzureADGroup" }, { "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupMember", - "Id": 1026 + "Id": 1026, + "CommandName": "Remove-PnPAzureADGroupMember" }, { "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupOwner", - "Id": 1027 + "Id": 1027, + "CommandName": "Remove-PnPAzureADGroupOwner" }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1028 + "Id": 1028, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Rank": 2, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1029 + "Id": 1029, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 3, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1030 + "Id": 1030, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 4, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1031 + "Id": 1031, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPContentType", - "Id": 1032 + "Id": 1032, + "CommandName": "Remove-PnPContentType" }, { "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Rank": 2, - "CommandName": "Remove-PnPContentType", - "Id": 1033 + "Id": 1033, + "CommandName": "Remove-PnPContentType" }, { "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1034 + "Id": 1034, + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1035 + "Id": 1035, + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromList", - "Id": 1036 + "Id": 1036, + "CommandName": "Remove-PnPContentTypeFromList" }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Remove-PnPCustomAction", - "Id": 1037 + "Id": 1037, + "CommandName": "Remove-PnPCustomAction" }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "CommandName": "Remove-PnPCustomAction", - "Id": 1038 + "Id": 1038, + "CommandName": "Remove-PnPCustomAction" }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Rank": 3, - "CommandName": "Remove-PnPCustomAction", - "Id": 1039 + "Id": 1039, + "CommandName": "Remove-PnPCustomAction" }, { "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Id": 1040 + "Id": 1040, + "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 1, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1041 + "Id": 1041, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1042 + "Id": 1042, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Rank": 3, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1043 + "Id": 1043, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -List ProjectList", "Rank": 4, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1044 + "Id": 1044, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver", "Rank": 5, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1045 + "Id": 1045, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -Scope Site", "Rank": 6, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1046 + "Id": 1046, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -Scope Web", "Rank": 7, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1047 + "Id": 1047, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -Scope All", "Rank": 8, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1048 + "Id": 1048, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPField -Identity \"Speakers\"", "Rank": 1, - "CommandName": "Remove-PnPField", - "Id": 1049 + "Id": 1049, + "CommandName": "Remove-PnPField" }, { "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "CommandName": "Remove-PnPField", - "Id": 1050 + "Id": 1050, + "CommandName": "Remove-PnPField" }, { "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1051 + "Id": 1051, + "CommandName": "Remove-PnPFieldFromContentType" }, { "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Rank": 2, - "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1052 + "Id": 1052, + "CommandName": "Remove-PnPFieldFromContentType" }, { "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Rank": 1, - "CommandName": "Remove-PnPFile", - "Id": 1053 + "Id": 1053, + "CommandName": "Remove-PnPFile" }, { "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Rank": 2, - "CommandName": "Remove-PnPFile", - "Id": 1054 + "Id": 1054, + "CommandName": "Remove-PnPFile" }, { "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Rank": 3, - "CommandName": "Remove-PnPFile", - "Id": 1055 + "Id": 1055, + "CommandName": "Remove-PnPFile" }, { "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Rank": 1, - "CommandName": "Remove-PnPFileFromSiteTemplate", - "Id": 1056 + "Id": 1056, + "CommandName": "Remove-PnPFileFromSiteTemplate" }, { "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Remove-PnPFileSharingLink", - "Id": 1057 + "Id": 1057, + "CommandName": "Remove-PnPFileSharingLink" }, { "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Rank": 2, - "CommandName": "Remove-PnPFileSharingLink", - "Id": 1058 + "Id": 1058, + "CommandName": "Remove-PnPFileSharingLink" }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "CommandName": "Remove-PnPFileVersion", - "Id": 1059 + "Id": 1059, + "CommandName": "Remove-PnPFileVersion" }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 2, - "CommandName": "Remove-PnPFileVersion", - "Id": 1060 + "Id": 1060, + "CommandName": "Remove-PnPFileVersion" }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Rank": 3, - "CommandName": "Remove-PnPFileVersion", - "Id": 1061 + "Id": 1061, + "CommandName": "Remove-PnPFileVersion" }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "Rank": 1, - "CommandName": "Remove-PnPFlowOwner", - "Id": 1062 + "Id": 1062, + "CommandName": "Remove-PnPFlowOwner" }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "Rank": 2, - "CommandName": "Remove-PnPFlowOwner", - "Id": 1063 + "Id": 1063, + "CommandName": "Remove-PnPFlowOwner" }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "Rank": 3, - "CommandName": "Remove-PnPFlowOwner", - "Id": 1064 + "Id": 1064, + "CommandName": "Remove-PnPFlowOwner" }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "Rank": 4, - "CommandName": "Remove-PnPFlowOwner", - "Id": 1065 + "Id": 1065, + "CommandName": "Remove-PnPFlowOwner" }, { "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "CommandName": "Remove-PnPFolder", - "Id": 1066 + "Id": 1066, + "CommandName": "Remove-PnPFolder" }, { "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Rank": 2, - "CommandName": "Remove-PnPFolder", - "Id": 1067 + "Id": 1067, + "CommandName": "Remove-PnPFolder" }, { "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1068 + "Id": 1068, + "CommandName": "Remove-PnPFolderSharingLink" }, { "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Rank": 2, - "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1069 + "Id": 1069, + "CommandName": "Remove-PnPFolderSharingLink" }, { "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Rank": 1, - "CommandName": "Remove-PnPGraphSubscription", - "Id": 1070 + "Id": 1070, + "CommandName": "Remove-PnPGraphSubscription" }, { "Command": "Remove-PnPGroup -Identity \"My Users\"", "Rank": 1, - "CommandName": "Remove-PnPGroup", - "Id": 1071 + "Id": 1071, + "CommandName": "Remove-PnPGroup" }, { "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "CommandName": "Remove-PnPGroupMember", - "Id": 1072 + "Id": 1072, + "CommandName": "Remove-PnPGroupMember" }, { "Command": "Remove-PnPHomeSite", "Rank": 1, - "CommandName": "Remove-PnPHomeSite", - "Id": 1073 + "Id": 1073, + "CommandName": "Remove-PnPHomeSite" }, { "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "CommandName": "Remove-PnPHubSiteAssociation", - "Id": 1074 + "Id": 1074, + "CommandName": "Remove-PnPHubSiteAssociation" }, { "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Rank": 1, - "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1075 + "Id": 1075, + "CommandName": "Remove-PnPHubToHubAssociation" }, { "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Rank": 2, - "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1076 + "Id": 1076, + "CommandName": "Remove-PnPHubToHubAssociation" }, { "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Rank": 1, - "CommandName": "Remove-PnPIndexedProperty", - "Id": 1077 + "Id": 1077, + "CommandName": "Remove-PnPIndexedProperty" }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Rank": 1, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1078 + "Id": 1078, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1079 + "Id": 1079, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Rank": 3, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1080 + "Id": 1080, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPJavaScriptLink -Scope Site", "Rank": 4, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1081 + "Id": 1081, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Rank": 5, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1082 + "Id": 1082, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPKnowledgeHubSite", "Rank": 1, - "CommandName": "Remove-PnPKnowledgeHubSite", - "Id": 1083 + "Id": 1083, + "CommandName": "Remove-PnPKnowledgeHubSite" }, { "Command": "Remove-PnPList -Identity Announcements", "Rank": 1, - "CommandName": "Remove-PnPList", - "Id": 1084 + "Id": 1084, + "CommandName": "Remove-PnPList" }, { "Command": "Remove-PnPList -Identity Announcements -Force", "Rank": 2, - "CommandName": "Remove-PnPList", - "Id": 1085 + "Id": 1085, + "CommandName": "Remove-PnPList" }, { "Command": "Remove-PnPList -Identity Announcements -Recycle", "Rank": 3, - "CommandName": "Remove-PnPList", - "Id": 1086 + "Id": 1086, + "CommandName": "Remove-PnPList" }, { "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Rank": 4, - "CommandName": "Remove-PnPList", - "Id": 1087 + "Id": 1087, + "CommandName": "Remove-PnPList" }, { "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPListDesign", - "Id": 1088 + "Id": 1088, + "CommandName": "Remove-PnPListDesign" }, { "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "CommandName": "Remove-PnPListItem", - "Id": 1089 + "Id": 1089, + "CommandName": "Remove-PnPListItem" }, { "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Rank": 2, - "CommandName": "Remove-PnPListItem", - "Id": 1090 + "Id": 1090, + "CommandName": "Remove-PnPListItem" }, { "Command": "Remove-PnPListItem -List \"Demo List\"", "Rank": 3, - "CommandName": "Remove-PnPListItem", - "Id": 1091 + "Id": 1091, + "CommandName": "Remove-PnPListItem" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Rank": 1, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1092 + "Id": 1092, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "Rank": 2, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1093 + "Id": 1093, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Rank": 3, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1094 + "Id": 1094, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Rank": 4, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1095 + "Id": 1095, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Rank": 5, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1096 + "Id": 1096, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "CommandName": "Remove-PnPListItemVersion", - "Id": 1097 + "Id": 1097, + "CommandName": "Remove-PnPListItemVersion" }, { "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "CommandName": "Remove-PnPListItemVersion", - "Id": 1098 + "Id": 1098, + "CommandName": "Remove-PnPListItemVersion" }, { "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1099 + "Id": 1099, + "CommandName": "Remove-PnPMicrosoft365Group" }, { "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1100 + "Id": 1100, + "CommandName": "Remove-PnPMicrosoft365Group" }, { "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Id": 1101 + "Id": 1101, + "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Id": 1102 + "Id": 1102, + "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1103 + "Id": 1103, + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1104 + "Id": 1104, + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { "Command": "Remove-PnPNavigationNode -Identity 1032", "Rank": 1, - "CommandName": "Remove-PnPNavigationNode", - "Id": 1105 + "Id": 1105, + "CommandName": "Remove-PnPNavigationNode" }, { "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Rank": 2, - "CommandName": "Remove-PnPNavigationNode", - "Id": 1106 + "Id": 1106, + "CommandName": "Remove-PnPNavigationNode" }, { "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Rank": 3, - "CommandName": "Remove-PnPNavigationNode", - "Id": 1107 + "Id": 1107, + "CommandName": "Remove-PnPNavigationNode" }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Rank": 1, - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1108 + "Id": 1108, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Rank": 2, - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1109 + "Id": 1109, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Rank": 3, - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1110 + "Id": 1110, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "CommandName": "Remove-PnPOrgNewsSite", - "Id": 1111 + "Id": 1111, + "CommandName": "Remove-PnPOrgNewsSite" }, { "Command": "Remove-PnPPage -Identity \"MyPage\"", "Rank": 1, - "CommandName": "Remove-PnPPage", - "Id": 1112 + "Id": 1112, + "CommandName": "Remove-PnPPage" }, { "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Rank": 2, - "CommandName": "Remove-PnPPage", - "Id": 1113 + "Id": 1113, + "CommandName": "Remove-PnPPage" }, { "Command": "Remove-PnPPage $page", "Rank": 3, - "CommandName": "Remove-PnPPage", - "Id": 1114 + "Id": 1114, + "CommandName": "Remove-PnPPage" }, { "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Rank": 4, - "CommandName": "Remove-PnPPage", - "Id": 1115 + "Id": 1115, + "CommandName": "Remove-PnPPage" }, { "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Remove-PnPPageComponent", - "Id": 1116 + "Id": 1116, + "CommandName": "Remove-PnPPageComponent" }, { "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerBucket", - "Id": 1117 + "Id": 1117, + "CommandName": "Remove-PnPPlannerBucket" }, { "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerPlan", - "Id": 1118 + "Id": 1118, + "CommandName": "Remove-PnPPlannerPlan" }, { "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerRoster", - "Id": 1119 + "Id": 1119, + "CommandName": "Remove-PnPPlannerRoster" }, { "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerRosterMember", - "Id": 1120 + "Id": 1120, + "CommandName": "Remove-PnPPlannerRosterMember" }, { "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Rank": 1, - "CommandName": "Remove-PnPPlannerTask", - "Id": 1121 + "Id": 1121, + "CommandName": "Remove-PnPPlannerTask" }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1122 + "Id": 1122, + "CommandName": "Remove-PnPPropertyBagValue" }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Rank": 2, - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1123 + "Id": 1123, + "CommandName": "Remove-PnPPropertyBagValue" }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Rank": 3, - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1124 + "Id": 1124, + "CommandName": "Remove-PnPPropertyBagValue" }, { "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "CommandName": "Remove-PnPPublishingImageRendition", - "Id": 1125 + "Id": 1125, + "CommandName": "Remove-PnPPublishingImageRendition" }, { "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Rank": 1, - "CommandName": "Remove-PnPRoleDefinition", - "Id": 1126 + "Id": 1126, + "CommandName": "Remove-PnPRoleDefinition" }, { "Command": "Remove-PnPSdnProvider -Confirm:false", "Rank": 1, - "CommandName": "Remove-PnPSdnProvider", - "Id": 1127 + "Id": 1127, + "CommandName": "Remove-PnPSdnProvider" }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1128 + "Id": 1128, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1129 + "Id": 1129, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1130 + "Id": 1130, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1131 + "Id": 1131, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1132 + "Id": 1132, + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1133 + "Id": 1133, + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Id": 1134 + "Id": 1134, + "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { "Command": "Remove-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionTermStore", - "Id": 1135 + "Id": 1135, + "CommandName": "Remove-PnPSiteCollectionTermStore" }, { "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteDesign", - "Id": 1136 + "Id": 1136, + "CommandName": "Remove-PnPSiteDesign" }, { "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteDesignTask", - "Id": 1137 + "Id": 1137, + "CommandName": "Remove-PnPSiteDesignTask" }, { "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Remove-PnPSiteGroup", - "Id": 1138 + "Id": 1138, + "CommandName": "Remove-PnPSiteGroup" }, { "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Rank": 2, - "CommandName": "Remove-PnPSiteGroup", - "Id": 1139 + "Id": 1139, + "CommandName": "Remove-PnPSiteGroup" }, { "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteScript", - "Id": 1140 + "Id": 1140, + "CommandName": "Remove-PnPSiteScript" }, { "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "CommandName": "Remove-PnPSiteUserInvitations", - "Id": 1141 + "Id": 1141, + "CommandName": "Remove-PnPSiteUserInvitations" }, { "Command": "Remove-PnPStorageEntity -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPStorageEntity", - "Id": 1142 + "Id": 1142, + "CommandName": "Remove-PnPStorageEntity" }, { "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPStorageEntity", - "Id": 1143 + "Id": 1143, + "CommandName": "Remove-PnPStorageEntity" }, { "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Rank": 1, - "CommandName": "Remove-PnPStoredCredential", - "Id": 1144 + "Id": 1144, + "CommandName": "Remove-PnPStoredCredential" }, { "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Rank": 1, - "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1145 + "Id": 1145, + "CommandName": "Remove-PnPTaxonomyItem" }, { "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Rank": 2, - "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1146 + "Id": 1146, + "CommandName": "Remove-PnPTaxonomyItem" }, { "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Rank": 1, - "CommandName": "Remove-PnPTeamsApp", - "Id": 1147 + "Id": 1147, + "CommandName": "Remove-PnPTeamsApp" }, { "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Rank": 2, - "CommandName": "Remove-PnPTeamsApp", - "Id": 1148 + "Id": 1148, + "CommandName": "Remove-PnPTeamsApp" }, { "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Rank": 1, - "CommandName": "Remove-PnPTeamsChannel", - "Id": 1149 + "Id": 1149, + "CommandName": "Remove-PnPTeamsChannel" }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Rank": 1, - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1150 + "Id": 1150, + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 2, - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1151 + "Id": 1151, + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Rank": 3, - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1152 + "Id": 1152, + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "Rank": 1, - "CommandName": "Remove-PnPTeamsTab", - "Id": 1153 + "Id": 1153, + "CommandName": "Remove-PnPTeamsTab" }, { "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "Rank": 2, - "CommandName": "Remove-PnPTeamsTab", - "Id": 1154 + "Id": 1154, + "CommandName": "Remove-PnPTeamsTab" }, { "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", - "Id": 1155 + "Id": 1155, + "CommandName": "Remove-PnPTeamsTab" }, { "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 1, - "CommandName": "Remove-PnPTeamsTag", - "Id": 1156 + "Id": 1156, + "CommandName": "Remove-PnPTeamsTag" }, { "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "CommandName": "Remove-PnPTeamsTeam", - "Id": 1157 + "Id": 1157, + "CommandName": "Remove-PnPTeamsTeam" }, { "Command": "Remove-PnPTeamsTeam -Identity testteam", "Rank": 2, - "CommandName": "Remove-PnPTeamsTeam", - "Id": 1158 + "Id": 1158, + "CommandName": "Remove-PnPTeamsTeam" }, { "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Rank": 1, - "CommandName": "Remove-PnPTeamsUser", - "Id": 1159 + "Id": 1159, + "CommandName": "Remove-PnPTeamsUser" }, { "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 2, - "CommandName": "Remove-PnPTeamsUser", - "Id": 1160 + "Id": 1160, + "CommandName": "Remove-PnPTeamsUser" }, { "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "CommandName": "Remove-PnPTenantCdnOrigin", - "Id": 1161 + "Id": 1161, + "CommandName": "Remove-PnPTenantCdnOrigin" }, { "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1162 + "Id": 1162, + "CommandName": "Remove-PnPTenantDeletedSite" }, { "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1163 + "Id": 1163, + "CommandName": "Remove-PnPTenantDeletedSite" }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Remove-PnPTenantSite", - "Id": 1164 + "Id": 1164, + "CommandName": "Remove-PnPTenantSite" }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Rank": 2, - "CommandName": "Remove-PnPTenantSite", - "Id": 1165 + "Id": 1165, + "CommandName": "Remove-PnPTenantSite" }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Rank": 3, - "CommandName": "Remove-PnPTenantSite", - "Id": 1166 + "Id": 1166, + "CommandName": "Remove-PnPTenantSite" }, { "Command": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, - "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Id": 1167 + "Id": 1167, + "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 1, - "CommandName": "Remove-PnPTenantTheme", - "Id": 1168 + "Id": 1168, + "CommandName": "Remove-PnPTenantTheme" }, { "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "CommandName": "Remove-PnPTerm", - "Id": 1169 + "Id": 1169, + "CommandName": "Remove-PnPTerm" }, { "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTerm", - "Id": 1170 + "Id": 1170, + "CommandName": "Remove-PnPTerm" }, { "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "CommandName": "Remove-PnPTermGroup", - "Id": 1171 + "Id": 1171, + "CommandName": "Remove-PnPTermGroup" }, { "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTermGroup", - "Id": 1172 + "Id": 1172, + "CommandName": "Remove-PnPTermGroup" }, { "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Rank": 3, - "CommandName": "Remove-PnPTermGroup", - "Id": 1173 + "Id": 1173, + "CommandName": "Remove-PnPTermGroup" }, { "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "Rank": 1, - "CommandName": "Remove-PnPTermLabel", - "Id": 1174 + "Id": 1174, + "CommandName": "Remove-PnPTermLabel" }, { "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTermLabel", - "Id": 1175 + "Id": 1175, + "CommandName": "Remove-PnPTermLabel" }, { "Command": "Remove-PnPUser -Identity 23", "Rank": 1, - "CommandName": "Remove-PnPUser", - "Id": 1176 + "Id": 1176, + "CommandName": "Remove-PnPUser" }, { "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "Rank": 2, - "CommandName": "Remove-PnPUser", - "Id": 1177 + "Id": 1177, + "CommandName": "Remove-PnPUser" }, { "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Rank": 3, - "CommandName": "Remove-PnPUser", - "Id": 1178 + "Id": 1178, + "CommandName": "Remove-PnPUser" }, { "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "CommandName": "Remove-PnPUserInfo", - "Id": 1179 + "Id": 1179, + "CommandName": "Remove-PnPUserInfo" }, { "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "CommandName": "Remove-PnPUserProfile", - "Id": 1180 + "Id": 1180, + "CommandName": "Remove-PnPUserProfile" }, { "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Rank": 1, - "CommandName": "Remove-PnPView", - "Id": 1181 + "Id": 1181, + "CommandName": "Remove-PnPView" }, { "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 1, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Id": 1182 + "Id": 1182, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { "Command": "Remove-PnPWeb -Identity projectA", "Rank": 1, - "CommandName": "Remove-PnPWeb", - "Id": 1183 + "Id": 1183, + "CommandName": "Remove-PnPWeb" }, { "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Rank": 2, - "CommandName": "Remove-PnPWeb", - "Id": 1184 + "Id": 1184, + "CommandName": "Remove-PnPWeb" }, { "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Rank": 1, - "CommandName": "Remove-PnPWebhookSubscription", - "Id": 1185 + "Id": 1185, + "CommandName": "Remove-PnPWebhookSubscription" }, { "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Remove-PnPWebPart", - "Id": 1186 + "Id": 1186, + "CommandName": "Remove-PnPWebPart" }, { "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Rank": 2, - "CommandName": "Remove-PnPWebPart", - "Id": 1187 + "Id": 1187, + "CommandName": "Remove-PnPWebPart" }, { "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Rank": 1, - "CommandName": "Remove-PnPWikiPage", - "Id": 1188 + "Id": 1188, + "CommandName": "Remove-PnPWikiPage" }, { "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Rank": 1, - "CommandName": "Rename-PnPFile", - "Id": 1189 + "Id": 1189, + "CommandName": "Rename-PnPFile" }, { "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Rank": 2, - "CommandName": "Rename-PnPFile", - "Id": 1190 + "Id": 1190, + "CommandName": "Rename-PnPFile" }, { "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Rank": 3, - "CommandName": "Rename-PnPFile", - "Id": 1191 + "Id": 1191, + "CommandName": "Rename-PnPFile" }, { "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Rank": 1, - "CommandName": "Rename-PnPFolder", - "Id": 1192 + "Id": 1192, + "CommandName": "Rename-PnPFolder" }, { "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Repair-PnPSite", - "Id": 1193 + "Id": 1193, + "CommandName": "Repair-PnPSite" }, { "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "CommandName": "Repair-PnPSite", - "Id": 1194 + "Id": 1194, + "CommandName": "Repair-PnPSite" }, { "Command": "Request-PnPAccessToken", "Rank": 1, - "CommandName": "Request-PnPAccessToken", - "Id": 1195 + "Id": 1195, + "CommandName": "Request-PnPAccessToken" }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Rank": 2, - "CommandName": "Request-PnPAccessToken", - "Id": 1196 + "Id": 1196, + "CommandName": "Request-PnPAccessToken" }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "Rank": 3, - "CommandName": "Request-PnPAccessToken", - "Id": 1197 + "Id": 1197, + "CommandName": "Request-PnPAccessToken" }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Rank": 4, - "CommandName": "Request-PnPAccessToken", - "Id": 1198 + "Id": 1198, + "CommandName": "Request-PnPAccessToken" }, { "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Rank": 1, - "CommandName": "Request-PnPPersonalSite", - "Id": 1199 + "Id": 1199, + "CommandName": "Request-PnPPersonalSite" }, { "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Rank": 2, - "CommandName": "Request-PnPPersonalSite", - "Id": 1200 + "Id": 1200, + "CommandName": "Request-PnPPersonalSite" }, { "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Rank": 1, - "CommandName": "Request-PnPReIndexList", - "Id": 1201 + "Id": 1201, + "CommandName": "Request-PnPReIndexList" }, { "Command": "Request-PnPReIndexWeb", "Rank": 1, - "CommandName": "Request-PnPReIndexWeb", - "Id": 1202 + "Id": 1202, + "CommandName": "Request-PnPReIndexWeb" }, { "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Rank": 1, - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1203 + "Id": 1203, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Rank": 2, - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1204 + "Id": 1204, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Rank": 3, - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1205 + "Id": 1205, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Rank": 1, - "CommandName": "Reset-PnPFileVersion", - "Id": 1206 + "Id": 1206, + "CommandName": "Reset-PnPFileVersion" }, { "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Rank": 2, - "CommandName": "Reset-PnPFileVersion", - "Id": 1207 + "Id": 1207, + "CommandName": "Reset-PnPFileVersion" }, { "Command": "Reset-PnPLabel -List \"Demo List\"", "Rank": 1, - "CommandName": "Reset-PnPLabel", - "Id": 1208 + "Id": 1208, + "CommandName": "Reset-PnPLabel" }, { "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Rank": 2, - "CommandName": "Reset-PnPLabel", - "Id": 1209 + "Id": 1209, + "CommandName": "Reset-PnPLabel" }, { "Command": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1210 + "Id": 1210, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Id": 1211 + "Id": 1211, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Rank": 1, - "CommandName": "Resolve-PnPFolder", - "Id": 1212 + "Id": 1212, + "CommandName": "Resolve-PnPFolder" }, { "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Id": 1213 + "Id": 1213, + "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "CommandName": "Restore-PnPFileVersion", - "Id": 1214 + "Id": 1214, + "CommandName": "Restore-PnPFileVersion" }, { "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Rank": 2, - "CommandName": "Restore-PnPFileVersion", - "Id": 1215 + "Id": 1215, + "CommandName": "Restore-PnPFileVersion" }, { "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 3, - "CommandName": "Restore-PnPFileVersion", - "Id": 1216 + "Id": 1216, + "CommandName": "Restore-PnPFileVersion" }, { "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "CommandName": "Restore-PnPListItemVersion", - "Id": 1217 + "Id": 1217, + "CommandName": "Restore-PnPListItemVersion" }, { "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "CommandName": "Restore-PnPListItemVersion", - "Id": 1218 + "Id": 1218, + "CommandName": "Restore-PnPListItemVersion" }, { "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "CommandName": "Restore-PnPRecycleBinItem", - "Id": 1219 + "Id": 1219, + "CommandName": "Restore-PnPRecycleBinItem" }, { "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1220 + "Id": 1220, + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1221 + "Id": 1221, + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Restore-PnPTenantSite", - "Id": 1222 + "Id": 1222, + "CommandName": "Restore-PnPTenantSite" }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "CommandName": "Restore-PnPTenantSite", - "Id": 1223 + "Id": 1223, + "CommandName": "Restore-PnPTenantSite" }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Rank": 3, - "CommandName": "Restore-PnPTenantSite", - "Id": 1224 + "Id": 1224, + "CommandName": "Restore-PnPTenantSite" }, { "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Rank": 1, - "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Id": 1225 + "Id": 1225, + "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Revoke-PnPHubSiteRights", - "Id": 1226 + "Id": 1226, + "CommandName": "Revoke-PnPHubSiteRights" }, { "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Revoke-PnPSiteDesignRights", - "Id": 1227 + "Id": 1227, + "CommandName": "Revoke-PnPSiteDesignRights" }, { "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Id": 1228 + "Id": 1228, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Rank": 1, - "CommandName": "Revoke-PnPUserSession", - "Id": 1229 + "Id": 1229, + "CommandName": "Revoke-PnPUserSession" }, { "Command": "Save-PnPPageConversionLog", "Rank": 1, - "CommandName": "Save-PnPPageConversionLog", - "Id": 1230 + "Id": 1230, + "CommandName": "Save-PnPPageConversionLog" }, { "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Rank": 1, - "CommandName": "Save-PnPSiteTemplate", - "Id": 1231 + "Id": 1231, + "CommandName": "Save-PnPSiteTemplate" }, { "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Rank": 1, - "CommandName": "Save-PnPTenantTemplate", - "Id": 1232 + "Id": 1232, + "CommandName": "Save-PnPTenantTemplate" }, { "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", - "Id": 1233 + "Id": 1233, + "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", "Rank": 2, - "CommandName": "Send-PnPMail", - "Id": 1234 + "Id": 1234, + "CommandName": "Send-PnPMail" }, { "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Rank": 3, - "CommandName": "Send-PnPMail", - "Id": 1235 + "Id": 1235, + "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", "Rank": 4, - "CommandName": "Send-PnPMail", - "Id": 1236 + "Id": 1236, + "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", "Rank": 5, - "CommandName": "Send-PnPMail", - "Id": 1237 + "Id": 1237, + "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\"", "Rank": 6, - "CommandName": "Send-PnPMail", - "Id": 1238 + "Id": 1238, + "CommandName": "Send-PnPMail" }, { "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Rank": 1, - "CommandName": "Set-PnPAdaptiveScopeProperty", - "Id": 1239 + "Id": 1239, + "CommandName": "Set-PnPAdaptiveScopeProperty" }, { "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1240 + "Id": 1240, + "CommandName": "Set-PnPApplicationCustomizer" }, { "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", - "Id": 1241 + "Id": 1241, + "CommandName": "Set-PnPApplicationCustomizer" }, { "Command": "Set-PnPAppSideLoading -On", "Rank": 1, - "CommandName": "Set-PnPAppSideLoading", - "Id": 1242 + "Id": 1242, + "CommandName": "Set-PnPAppSideLoading" }, { "Command": "Set-PnPAppSideLoading -Off", "Rank": 2, - "CommandName": "Set-PnPAppSideLoading", - "Id": 1243 + "Id": 1243, + "CommandName": "Set-PnPAppSideLoading" }, { "Command": "Set-PnPAuditing -EnableAll", "Rank": 1, - "CommandName": "Set-PnPAuditing", - "Id": 1244 + "Id": 1244, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAuditing -DisableAll", "Rank": 2, - "CommandName": "Set-PnPAuditing", - "Id": 1245 + "Id": 1245, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAuditing -RetentionTime 7", "Rank": 3, - "CommandName": "Set-PnPAuditing", - "Id": 1246 + "Id": 1246, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAuditing -TrimAuditLog", "Rank": 4, - "CommandName": "Set-PnPAuditing", - "Id": 1247 + "Id": 1247, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Rank": 5, - "CommandName": "Set-PnPAuditing", - "Id": 1248 + "Id": 1248, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Rank": 1, - "CommandName": "Set-PnPAvailablePageLayouts", - "Id": 1249 + "Id": 1249, + "CommandName": "Set-PnPAvailablePageLayouts" }, { "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Rank": 1, - "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1250 + "Id": 1250, + "CommandName": "Set-PnPAzureADAppSitePermission" }, { "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Rank": 2, - "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1251 + "Id": 1251, + "CommandName": "Set-PnPAzureADAppSitePermission" }, { "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "CommandName": "Set-PnPAzureADGroup", - "Id": 1252 + "Id": 1252, + "CommandName": "Set-PnPAzureADGroup" }, { "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "CommandName": "Set-PnPAzureADGroup", - "Id": 1253 + "Id": 1253, + "CommandName": "Set-PnPAzureADGroup" }, { "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Rank": 3, - "CommandName": "Set-PnPAzureADGroup", - "Id": 1254 + "Id": 1254, + "CommandName": "Set-PnPAzureADGroup" }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Rank": 1, - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1255 + "Id": 1255, + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Rank": 2, - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1256 + "Id": 1256, + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Rank": 3, - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1257 + "Id": 1257, + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Rank": 1, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1258 + "Id": 1258, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Rank": 2, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1259 + "Id": 1259, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Rank": 1, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1260 + "Id": 1260, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Rank": 2, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1261 + "Id": 1261, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Rank": 3, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1262 + "Id": 1262, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Rank": 4, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1263 + "Id": 1263, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 1, - "CommandName": "Set-PnPContentType", - "Id": 1264 + "Id": 1264, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Rank": 2, - "CommandName": "Set-PnPContentType", - "Id": 1265 + "Id": 1265, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 3, - "CommandName": "Set-PnPContentType", - "Id": 1266 + "Id": 1266, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 4, - "CommandName": "Set-PnPContentType", - "Id": 1267 + "Id": 1267, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 5, - "CommandName": "Set-PnPContentType", - "Id": 1268 + "Id": 1268, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Rank": 1, - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1269 + "Id": 1269, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Rank": 2, - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1270 + "Id": 1270, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Rank": 3, - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1271 + "Id": 1271, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Rank": 4, - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1272 + "Id": 1272, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Rank": 1, - "CommandName": "Set-PnPDefaultContentTypeToList", - "Id": 1273 + "Id": 1273, + "CommandName": "Set-PnPDefaultContentTypeToList" }, { "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Rank": 1, - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1274 + "Id": 1274, + "CommandName": "Set-PnPDefaultPageLayout" }, { "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Rank": 2, - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1275 + "Id": 1275, + "CommandName": "Set-PnPDefaultPageLayout" }, { "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Rank": 3, - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1276 + "Id": 1276, + "CommandName": "Set-PnPDefaultPageLayout" }, { "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Rank": 1, - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1277 + "Id": 1277, + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 2, - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1278 + "Id": 1278, + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 3, - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1279 + "Id": 1279, + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Rank": 1, - "CommandName": "Set-PnPDocumentSetField", - "Id": 1280 + "Id": 1280, + "CommandName": "Set-PnPDocumentSetField" }, { "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Rank": 2, - "CommandName": "Set-PnPDocumentSetField", - "Id": 1281 + "Id": 1281, + "CommandName": "Set-PnPDocumentSetField" }, { "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "Rank": 1, - "CommandName": "Set-PnPField", - "Id": 1282 + "Id": 1282, + "CommandName": "Set-PnPField" }, { "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Rank": 2, - "CommandName": "Set-PnPField", - "Id": 1283 + "Id": 1283, + "CommandName": "Set-PnPField" }, { "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Rank": 3, - "CommandName": "Set-PnPField", - "Id": 1284 + "Id": 1284, + "CommandName": "Set-PnPField" }, { "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Set-PnPFileCheckedIn", - "Id": 1285 + "Id": 1285, + "CommandName": "Set-PnPFileCheckedIn" }, { "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Rank": 2, - "CommandName": "Set-PnPFileCheckedIn", - "Id": 1286 + "Id": 1286, + "CommandName": "Set-PnPFileCheckedIn" }, { "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Set-PnPFileCheckedOut", - "Id": 1287 + "Id": 1287, + "CommandName": "Set-PnPFileCheckedOut" }, { "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPFolderPermission", - "Id": 1288 + "Id": 1288, + "CommandName": "Set-PnPFolderPermission" }, { "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPFolderPermission", - "Id": 1289 + "Id": 1289, + "CommandName": "Set-PnPFolderPermission" }, { "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "CommandName": "Set-PnPFolderPermission", - "Id": 1290 + "Id": 1290, + "CommandName": "Set-PnPFolderPermission" }, { "Command": "Set-PnPFooter -Enabled:$true", "Rank": 1, - "CommandName": "Set-PnPFooter", - "Id": 1291 + "Id": 1291, + "CommandName": "Set-PnPFooter" }, { "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Rank": 2, - "CommandName": "Set-PnPFooter", - "Id": 1292 + "Id": 1292, + "CommandName": "Set-PnPFooter" }, { "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Rank": 3, - "CommandName": "Set-PnPFooter", - "Id": 1293 + "Id": 1293, + "CommandName": "Set-PnPFooter" }, { "Command": "Set-PnPFooter -LogoUrl \"\"", "Rank": 4, - "CommandName": "Set-PnPFooter", - "Id": 1294 + "Id": 1294, + "CommandName": "Set-PnPFooter" }, { "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Rank": 1, - "CommandName": "Set-PnPGraphSubscription", - "Id": 1295 + "Id": 1295, + "CommandName": "Set-PnPGraphSubscription" }, { "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Rank": 1, - "CommandName": "Set-PnPGroup", - "Id": 1296 + "Id": 1296, + "CommandName": "Set-PnPGroup" }, { "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Rank": 2, - "CommandName": "Set-PnPGroup", - "Id": 1297 + "Id": 1297, + "CommandName": "Set-PnPGroup" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Rank": 1, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1298 + "Id": 1298, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Rank": 2, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1299 + "Id": 1299, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Rank": 3, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1300 + "Id": 1300, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Rank": 4, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1301 + "Id": 1301, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Rank": 5, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1302 + "Id": 1302, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Rank": 1, - "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1303 + "Id": 1303, + "CommandName": "Set-PnPHideDefaultThemes" }, { "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Rank": 2, - "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1304 + "Id": 1304, + "CommandName": "Set-PnPHideDefaultThemes" }, { "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Rank": 1, - "CommandName": "Set-PnPHomePage", - "Id": 1305 + "Id": 1305, + "CommandName": "Set-PnPHomePage" }, { "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Rank": 2, - "CommandName": "Set-PnPHomePage", - "Id": 1306 + "Id": 1306, + "CommandName": "Set-PnPHomePage" }, { "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Rank": 1, - "CommandName": "Set-PnPHomeSite", - "Id": 1307 + "Id": 1307, + "CommandName": "Set-PnPHomeSite" }, { "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Rank": 2, - "CommandName": "Set-PnPHomeSite", - "Id": 1308 + "Id": 1308, + "CommandName": "Set-PnPHomeSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "Rank": 1, - "CommandName": "Set-PnPHubSite", - "Id": 1309 + "Id": 1309, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "Rank": 2, - "CommandName": "Set-PnPHubSite", - "Id": 1310 + "Id": 1310, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "Rank": 3, - "CommandName": "Set-PnPHubSite", - "Id": 1311 + "Id": 1311, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "Rank": 4, - "CommandName": "Set-PnPHubSite", - "Id": 1312 + "Id": 1312, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Rank": 5, - "CommandName": "Set-PnPHubSite", - "Id": 1313 + "Id": 1313, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Rank": 6, - "CommandName": "Set-PnPHubSite", - "Id": 1314 + "Id": 1314, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Rank": 1, - "CommandName": "Set-PnPImageListItemColumn", - "Id": 1315 + "Id": 1315, + "CommandName": "Set-PnPImageListItemColumn" }, { "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Rank": 2, - "CommandName": "Set-PnPImageListItemColumn", - "Id": 1316 + "Id": 1316, + "CommandName": "Set-PnPImageListItemColumn" }, { "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Rank": 1, - "CommandName": "Set-PnPIndexedProperties", - "Id": 1317 + "Id": 1317, + "CommandName": "Set-PnPIndexedProperties" }, { "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Rank": 1, - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1318 + "Id": 1318, + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Rank": 2, - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1319 + "Id": 1319, + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Rank": 1, - "CommandName": "Set-PnPKnowledgeHubSite", - "Id": 1320 + "Id": 1320, + "CommandName": "Set-PnPKnowledgeHubSite" }, { "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Rank": 1, - "CommandName": "Set-PnPLabel", - "Id": 1321 + "Id": 1321, + "CommandName": "Set-PnPLabel" }, { "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Rank": 2, - "CommandName": "Set-PnPLabel", - "Id": 1322 + "Id": 1322, + "CommandName": "Set-PnPLabel" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Rank": 1, - "CommandName": "Set-PnPList", - "Id": 1323 + "Id": 1323, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Rank": 2, - "CommandName": "Set-PnPList", - "Id": 1324 + "Id": 1324, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Rank": 3, - "CommandName": "Set-PnPList", - "Id": 1325 + "Id": 1325, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Rank": 4, - "CommandName": "Set-PnPList", - "Id": 1326 + "Id": 1326, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Rank": 5, - "CommandName": "Set-PnPList", - "Id": 1327 + "Id": 1327, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Rank": 6, - "CommandName": "Set-PnPList", - "Id": 1328 + "Id": 1328, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Rank": 7, - "CommandName": "Set-PnPList", - "Id": 1329 + "Id": 1329, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "Rank": 8, - "CommandName": "Set-PnPList", - "Id": 1330 + "Id": 1330, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "Rank": 9, - "CommandName": "Set-PnPList", - "Id": 1331 + "Id": 1331, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "Rank": 10, - "CommandName": "Set-PnPList", - "Id": 1332 + "Id": 1332, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "Rank": 11, - "CommandName": "Set-PnPList", - "Id": 1333 + "Id": 1333, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "Rank": 1, - "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1334 + "Id": 1334, + "CommandName": "Set-PnPListInformationRightsManagement" }, { "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "Rank": 2, - "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1335 + "Id": 1335, + "CommandName": "Set-PnPListInformationRightsManagement" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "CommandName": "Set-PnPListItem", - "Id": 1336 + "Id": 1336, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "CommandName": "Set-PnPListItem", - "Id": 1337 + "Id": 1337, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 3, - "CommandName": "Set-PnPListItem", - "Id": 1338 + "Id": 1338, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "Rank": 4, - "CommandName": "Set-PnPListItem", - "Id": 1339 + "Id": 1339, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "Rank": 5, - "CommandName": "Set-PnPListItem", - "Id": 1340 + "Id": 1340, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Set-PnPListItemAsRecord", - "Id": 1341 + "Id": 1341, + "CommandName": "Set-PnPListItemAsRecord" }, { "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "Rank": 2, - "CommandName": "Set-PnPListItemAsRecord", - "Id": 1342 + "Id": 1342, + "CommandName": "Set-PnPListItemAsRecord" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPListItemPermission", - "Id": 1343 + "Id": 1343, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPListItemPermission", - "Id": 1344 + "Id": 1344, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "CommandName": "Set-PnPListItemPermission", - "Id": 1345 + "Id": 1345, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "Rank": 4, - "CommandName": "Set-PnPListItemPermission", - "Id": 1346 + "Id": 1346, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "Rank": 5, - "CommandName": "Set-PnPListItemPermission", - "Id": 1347 + "Id": 1347, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPListPermission", - "Id": 1348 + "Id": 1348, + "CommandName": "Set-PnPListPermission" }, { "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPListPermission", - "Id": 1349 + "Id": 1349, + "CommandName": "Set-PnPListPermission" }, { "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "Rank": 1, - "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1350 + "Id": 1350, + "CommandName": "Set-PnPListRecordDeclaration" }, { "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "Rank": 2, - "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1351 + "Id": 1351, + "CommandName": "Set-PnPListRecordDeclaration" }, { "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 1, - "CommandName": "Set-PnPMasterPage", - "Id": 1352 + "Id": 1352, + "CommandName": "Set-PnPMasterPage" }, { "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 2, - "CommandName": "Set-PnPMasterPage", - "Id": 1353 + "Id": 1353, + "CommandName": "Set-PnPMasterPage" }, { "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 3, - "CommandName": "Set-PnPMasterPage", - "Id": 1354 + "Id": 1354, + "CommandName": "Set-PnPMasterPage" }, { "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 4, - "CommandName": "Set-PnPMasterPage", - "Id": 1355 + "Id": 1355, + "CommandName": "Set-PnPMasterPage" }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1356 + "Id": 1356, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1357 + "Id": 1357, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1358 + "Id": 1358, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1359 + "Id": 1359, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1360 + "Id": 1360, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1361 + "Id": 1361, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1362 + "Id": 1362, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1363 + "Id": 1363, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1364 + "Id": 1364, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1365 + "Id": 1365, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1366 + "Id": 1366, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1367 + "Id": 1367, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1368 + "Id": 1368, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1369 + "Id": 1369, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1370 + "Id": 1370, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1371 + "Id": 1371, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1372 + "Id": 1372, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1373 + "Id": 1373, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1374 + "Id": 1374, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1375 + "Id": 1375, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "Rank": 3, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1376 + "Id": 1376, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "Rank": 4, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1377 + "Id": 1377, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "Rank": 5, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1378 + "Id": 1378, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1379 + "Id": 1379, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "Rank": 1, - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1380 + "Id": 1380, + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "Rank": 2, - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1381 + "Id": 1381, + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { "Command": "Set-PnPMinimalDownloadStrategy -Off", "Rank": 1, - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1382 + "Id": 1382, + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { "Command": "Set-PnPMinimalDownloadStrategy -On", "Rank": 2, - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1383 + "Id": 1383, + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Rank": 1, - "CommandName": "Set-PnPPage", - "Id": 1384 + "Id": 1384, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Rank": 2, - "CommandName": "Set-PnPPage", - "Id": 1385 + "Id": 1385, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Rank": 3, - "CommandName": "Set-PnPPage", - "Id": 1386 + "Id": 1386, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Rank": 4, - "CommandName": "Set-PnPPage", - "Id": 1387 + "Id": 1387, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Rank": 5, - "CommandName": "Set-PnPPage", - "Id": 1388 + "Id": 1388, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "Rank": 6, - "CommandName": "Set-PnPPage", - "Id": 1389 + "Id": 1389, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "CommandName": "Set-PnPPage", - "Id": 1390 + "Id": 1390, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "Rank": 8, - "CommandName": "Set-PnPPage", - "Id": 1391 + "Id": 1391, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "CommandName": "Set-PnPPage", - "Id": 1392 + "Id": 1392, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "CommandName": "Set-PnPPage", - "Id": 1393 + "Id": 1393, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "Rank": 11, - "CommandName": "Set-PnPPage", - "Id": 1394 + "Id": 1394, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "Rank": 1, - "CommandName": "Set-PnPPageTextPart", - "Id": 1395 + "Id": 1395, + "CommandName": "Set-PnPPageTextPart" }, { "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "Rank": 1, - "CommandName": "Set-PnPPageWebPart", - "Id": 1396 + "Id": 1396, + "CommandName": "Set-PnPPageWebPart" }, { "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "Rank": 2, - "CommandName": "Set-PnPPageWebPart", - "Id": 1397 + "Id": 1397, + "CommandName": "Set-PnPPageWebPart" }, { "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "Rank": 1, - "CommandName": "Set-PnPPlannerBucket", - "Id": 1398 + "Id": 1398, + "CommandName": "Set-PnPPlannerBucket" }, { "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "Rank": 1, - "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1399 + "Id": 1399, + "CommandName": "Set-PnPPlannerConfiguration" }, { "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "Rank": 2, - "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1400 + "Id": 1400, + "CommandName": "Set-PnPPlannerConfiguration" }, { "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "Rank": 1, - "CommandName": "Set-PnPPlannerPlan", - "Id": 1401 + "Id": 1401, + "CommandName": "Set-PnPPlannerPlan" }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "Rank": 1, - "CommandName": "Set-PnPPlannerTask", - "Id": 1402 + "Id": 1402, + "CommandName": "Set-PnPPlannerTask" }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "Rank": 2, - "CommandName": "Set-PnPPlannerTask", - "Id": 1403 + "Id": 1403, + "CommandName": "Set-PnPPlannerTask" }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Rank": 3, - "CommandName": "Set-PnPPlannerTask", - "Id": 1404 + "Id": 1404, + "CommandName": "Set-PnPPlannerTask" }, { "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Set-PnPPlannerUserPolicy", - "Id": 1405 + "Id": 1405, + "CommandName": "Set-PnPPlannerUserPolicy" }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Rank": 1, - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1406 + "Id": 1406, + "CommandName": "Set-PnPPropertyBagValue" }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Rank": 2, - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1407 + "Id": 1407, + "CommandName": "Set-PnPPropertyBagValue" }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "Rank": 3, - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1408 + "Id": 1408, + "CommandName": "Set-PnPPropertyBagValue" }, { "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Rank": 1, - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1409 + "Id": 1409, + "CommandName": "Set-PnPRequestAccessEmails" }, { "Command": "Set-PnPRequestAccessEmails -Disabled", "Rank": 2, - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1410 + "Id": 1410, + "CommandName": "Set-PnPRequestAccessEmails" }, { "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "Rank": 3, - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1411 + "Id": 1411, + "CommandName": "Set-PnPRequestAccessEmails" }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Rank": 1, - "CommandName": "Set-PnPRoleDefinition", - "Id": 1412 + "Id": 1412, + "CommandName": "Set-PnPRoleDefinition" }, { "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Rank": 2, - "CommandName": "Set-PnPRoleDefinition", - "Id": 1413 + "Id": 1413, + "CommandName": "Set-PnPRoleDefinition" }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Rank": 3, - "CommandName": "Set-PnPRoleDefinition", - "Id": 1414 + "Id": 1414, + "CommandName": "Set-PnPRoleDefinition" }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "Rank": 4, - "CommandName": "Set-PnPRoleDefinition", - "Id": 1415 + "Id": 1415, + "CommandName": "Set-PnPRoleDefinition" }, { "Command": "Set-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1416 + "Id": 1416, + "CommandName": "Set-PnPSearchConfiguration" }, { "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1417 + "Id": 1417, + "CommandName": "Set-PnPSearchConfiguration" }, { "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1418 + "Id": 1418, + "CommandName": "Set-PnPSearchConfiguration" }, { "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1419 + "Id": 1419, + "CommandName": "Set-PnPSearchConfiguration" }, { "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", - "Id": 1420 + "Id": 1420, + "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\"", "Rank": 2, - "CommandName": "Set-PnPSearchExternalItem", - "Id": 1421 + "Id": 1421, + "CommandName": "Set-PnPSearchExternalItem" }, { "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Rank": 1, - "CommandName": "Set-PnPSearchSettings", - "Id": 1422 + "Id": 1422, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Rank": 2, - "CommandName": "Set-PnPSearchSettings", - "Id": 1423 + "Id": 1423, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Rank": 3, - "CommandName": "Set-PnPSearchSettings", - "Id": 1424 + "Id": 1424, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Rank": 4, - "CommandName": "Set-PnPSearchSettings", - "Id": 1425 + "Id": 1425, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "Rank": 5, - "CommandName": "Set-PnPSearchSettings", - "Id": 1426 + "Id": 1426, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchScope Tenant", "Rank": 6, - "CommandName": "Set-PnPSearchSettings", - "Id": 1427 + "Id": 1427, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchScope Hub", "Rank": 7, - "CommandName": "Set-PnPSearchSettings", - "Id": 1428 + "Id": 1428, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSite -Classification \"HBI\"", "Rank": 1, - "CommandName": "Set-PnPSite", - "Id": 1429 + "Id": 1429, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -Classification $null", "Rank": 2, - "CommandName": "Set-PnPSite", - "Id": 1430 + "Id": 1430, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -DisableFlows", "Rank": 3, - "CommandName": "Set-PnPSite", - "Id": 1431 + "Id": 1431, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -DisableFlows:$false", "Rank": 4, - "CommandName": "Set-PnPSite", - "Id": 1432 + "Id": 1432, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "Rank": 5, - "CommandName": "Set-PnPSite", - "Id": 1433 + "Id": 1433, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -NoScriptSite $false", "Rank": 6, - "CommandName": "Set-PnPSite", - "Id": 1434 + "Id": 1434, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "Rank": 7, - "CommandName": "Set-PnPSite", - "Id": 1435 + "Id": 1435, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "Rank": 8, - "CommandName": "Set-PnPSite", - "Id": 1436 + "Id": 1436, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "Rank": 9, - "CommandName": "Set-PnPSite", - "Id": 1437 + "Id": 1437, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "Rank": 10, - "CommandName": "Set-PnPSite", - "Id": 1438 + "Id": 1438, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "Rank": 11, - "CommandName": "Set-PnPSite", - "Id": 1439 + "Id": 1439, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "Rank": 12, - "CommandName": "Set-PnPSite", - "Id": 1440 + "Id": 1440, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "Rank": 13, - "CommandName": "Set-PnPSite", - "Id": 1441 + "Id": 1441, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "Rank": 14, - "CommandName": "Set-PnPSite", - "Id": 1442 + "Id": 1442, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "Rank": 15, - "CommandName": "Set-PnPSite", - "Id": 1443 + "Id": 1443, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "Rank": 16, - "CommandName": "Set-PnPSite", - "Id": 1444 + "Id": 1444, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -CancelVPForExistingLibs", "Rank": 17, - "CommandName": "Set-PnPSite", - "Id": 1445 + "Id": 1445, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "Rank": 1, - "CommandName": "Set-PnPSiteClassification", - "Id": 1446 + "Id": 1446, + "CommandName": "Set-PnPSiteClassification" }, { "Command": "Set-PnPSiteClosure -State Open", "Rank": 1, - "CommandName": "Set-PnPSiteClosure", - "Id": 1447 + "Id": 1447, + "CommandName": "Set-PnPSiteClosure" }, { "Command": "Set-PnPSiteClosure -State Closed", "Rank": 2, - "CommandName": "Set-PnPSiteClosure", - "Id": 1448 + "Id": 1448, + "CommandName": "Set-PnPSiteClosure" }, { "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "Rank": 1, - "CommandName": "Set-PnPSiteDesign", - "Id": 1449 + "Id": 1449, + "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\"", "Rank": 2, - "CommandName": "Set-PnPSiteDesign", - "Id": 1450 + "Id": 1450, + "CommandName": "Set-PnPSiteDesign" }, { "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "Rank": 1, - "CommandName": "Set-PnPSiteGroup", - "Id": 1451 + "Id": 1451, + "CommandName": "Set-PnPSiteGroup" }, { "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "Rank": 2, - "CommandName": "Set-PnPSiteGroup", - "Id": 1452 + "Id": 1452, + "CommandName": "Set-PnPSiteGroup" }, { "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 1, - "CommandName": "Set-PnPSitePolicy", - "Id": 1453 + "Id": 1453, + "CommandName": "Set-PnPSitePolicy" }, { "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "CommandName": "Set-PnPSiteScript", - "Id": 1454 + "Id": 1454, + "CommandName": "Set-PnPSiteScript" }, { "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "CommandName": "Set-PnPSiteScriptPackage", - "Id": 1455 + "Id": 1455, + "CommandName": "Set-PnPSiteScriptPackage" }, { "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Rank": 1, - "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1456 + "Id": 1456, + "CommandName": "Set-PnPSiteSensitivityLabel" }, { "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "Rank": 2, - "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1457 + "Id": 1457, + "CommandName": "Set-PnPSiteSensitivityLabel" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "Rank": 1, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1458 + "Id": 1458, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "Rank": 2, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1459 + "Id": 1459, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 3, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1460 + "Id": 1460, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 4, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1461 + "Id": 1461, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 5, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1462 + "Id": 1462, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 6, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1463 + "Id": 1463, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 1, - "CommandName": "Set-PnPStorageEntity", - "Id": 1464 + "Id": 1464, + "CommandName": "Set-PnPStorageEntity" }, { "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 2, - "CommandName": "Set-PnPStorageEntity", - "Id": 1465 + "Id": 1465, + "CommandName": "Set-PnPStorageEntity" }, { "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1466 + "Id": 1466, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1467 + "Id": 1467, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1468 + "Id": 1468, + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1469 + "Id": 1469, + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "Rank": 1, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1470 + "Id": 1470, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "Rank": 2, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1471 + "Id": 1471, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "Rank": 1, - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1472 + "Id": 1472, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "Rank": 2, - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1473 + "Id": 1473, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "Rank": 3, - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1474 + "Id": 1474, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Command": "Set-PnPTeamifyPromptHidden", "Rank": 1, - "CommandName": "Set-PnPTeamifyPromptHidden", - "Id": 1475 + "Id": 1475, + "CommandName": "Set-PnPTeamifyPromptHidden" }, { "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Rank": 1, - "CommandName": "Set-PnPTeamsChannel", - "Id": 1476 + "Id": 1476, + "CommandName": "Set-PnPTeamsChannel" }, { "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Rank": 2, - "CommandName": "Set-PnPTeamsChannel", - "Id": 1477 + "Id": 1477, + "CommandName": "Set-PnPTeamsChannel" }, { "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Rank": 1, - "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1478 + "Id": 1478, + "CommandName": "Set-PnpTeamsChannelUser" }, { "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Rank": 2, - "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1479 + "Id": 1479, + "CommandName": "Set-PnpTeamsChannelUser" }, { "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTab", - "Id": 1480 + "Id": 1480, + "CommandName": "Set-PnPTeamsTab" }, { "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTag", - "Id": 1481 + "Id": 1481, + "CommandName": "Set-PnPTeamsTag" }, { "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Rank": 1, - "CommandName": "Set-PnPTeamsTeam", - "Id": 1482 + "Id": 1482, + "CommandName": "Set-PnPTeamsTeam" }, { "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Rank": 2, - "CommandName": "Set-PnPTeamsTeam", - "Id": 1483 + "Id": 1483, + "CommandName": "Set-PnPTeamsTeam" }, { "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Rank": 3, - "CommandName": "Set-PnPTeamsTeam", - "Id": 1484 + "Id": 1484, + "CommandName": "Set-PnPTeamsTeam" }, { "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "Rank": 4, - "CommandName": "Set-PnPTeamsTeam", - "Id": 1485 + "Id": 1485, + "CommandName": "Set-PnPTeamsTeam" }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Rank": 1, - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1486 + "Id": 1486, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Rank": 2, - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1487 + "Id": 1487, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "Rank": 3, - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1488 + "Id": 1488, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTeamPicture", - "Id": 1489 + "Id": 1489, + "CommandName": "Set-PnPTeamsTeamPicture" }, { "Command": "Set-PnPTemporarilyDisableAppBar $true", "Rank": 1, - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1490 + "Id": 1490, + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { "Command": "Set-PnPTemporarilyDisableAppBar $false", "Rank": 2, - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1491 + "Id": 1491, + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { "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", - "Id": 1492 + "Id": 1492, + "CommandName": "Set-PnPTenant" }, { "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Rank": 2, - "CommandName": "Set-PnPTenant", - "Id": 1493 + "Id": 1493, + "CommandName": "Set-PnPTenant" }, { "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Rank": 3, - "CommandName": "Set-PnPTenant", - "Id": 1494 + "Id": 1494, + "CommandName": "Set-PnPTenant" }, { "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Rank": 4, - "CommandName": "Set-PnPTenant", - "Id": 1495 + "Id": 1495, + "CommandName": "Set-PnPTenant" }, { "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Rank": 1, - "CommandName": "Set-PnPTenantAppCatalogUrl", - "Id": 1496 + "Id": 1496, + "CommandName": "Set-PnPTenantAppCatalogUrl" }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "Rank": 1, - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1497 + "Id": 1497, + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "Rank": 2, - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1498 + "Id": 1498, + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "Rank": 3, - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1499 + "Id": 1499, + "CommandName": "Set-PnPTenantCdnEnabled" }, { "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", - "Id": 1500 + "Id": 1500, + "CommandName": "Set-PnPTenantCdnPolicy" }, { "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Rank": 2, - "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1501 + "Id": 1501, + "CommandName": "Set-PnPTenantCdnPolicy" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "Rank": 1, - "CommandName": "Set-PnPTenantSite", - "Id": 1502 + "Id": 1502, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "Rank": 2, - "CommandName": "Set-PnPTenantSite", - "Id": 1503 + "Id": 1503, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Set-PnPTenantSite", - "Id": 1504 + "Id": 1504, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 4, - "CommandName": "Set-PnPTenantSite", - "Id": 1505 + "Id": 1505, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "Rank": 5, - "CommandName": "Set-PnPTenantSite", - "Id": 1506 + "Id": 1506, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Rank": 1, - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1507 + "Id": 1507, + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Rank": 2, - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1508 + "Id": 1508, + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "Rank": 1, - "CommandName": "Set-PnPTerm", - "Id": 1509 + "Id": 1509, + "CommandName": "Set-PnPTerm" }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "CommandName": "Set-PnPTerm", - "Id": 1510 + "Id": 1510, + "CommandName": "Set-PnPTerm" }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 3, - "CommandName": "Set-PnPTerm", - "Id": 1511 + "Id": 1511, + "CommandName": "Set-PnPTerm" }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "Rank": 4, - "CommandName": "Set-PnPTerm", - "Id": 1512 + "Id": 1512, + "CommandName": "Set-PnPTerm" }, { "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "Rank": 1, - "CommandName": "Set-PnPTermGroup", - "Id": 1513 + "Id": 1513, + "CommandName": "Set-PnPTermGroup" }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "Rank": 1, - "CommandName": "Set-PnPTermSet", - "Id": 1514 + "Id": 1514, + "CommandName": "Set-PnPTermSet" }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "Rank": 2, - "CommandName": "Set-PnPTermSet", - "Id": 1515 + "Id": 1515, + "CommandName": "Set-PnPTermSet" }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "Rank": 3, - "CommandName": "Set-PnPTermSet", - "Id": 1516 + "Id": 1516, + "CommandName": "Set-PnPTermSet" }, { "Command": "Set-PnPTheme", "Rank": 1, - "CommandName": "Set-PnPTheme", - "Id": 1517 + "Id": 1517, + "CommandName": "Set-PnPTheme" }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Rank": 2, - "CommandName": "Set-PnPTheme", - "Id": 1518 + "Id": 1518, + "CommandName": "Set-PnPTheme" }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "Rank": 3, - "CommandName": "Set-PnPTheme", - "Id": 1519 + "Id": 1519, + "CommandName": "Set-PnPTheme" }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "Rank": 4, - "CommandName": "Set-PnPTheme", - "Id": 1520 + "Id": 1520, + "CommandName": "Set-PnPTheme" }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "Rank": 1, - "CommandName": "Set-PnPTraceLog", - "Id": 1521 + "Id": 1521, + "CommandName": "Set-PnPTraceLog" }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "Rank": 2, - "CommandName": "Set-PnPTraceLog", - "Id": 1522 + "Id": 1522, + "CommandName": "Set-PnPTraceLog" }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "Rank": 3, - "CommandName": "Set-PnPTraceLog", - "Id": 1523 + "Id": 1523, + "CommandName": "Set-PnPTraceLog" }, { "Command": "Set-PnPTraceLog -Off", "Rank": 4, - "CommandName": "Set-PnPTraceLog", - "Id": 1524 + "Id": 1524, + "CommandName": "Set-PnPTraceLog" }, { "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "Rank": 1, - "CommandName": "Set-PnPUserOneDriveQuota", - "Id": 1525 + "Id": 1525, + "CommandName": "Set-PnPUserOneDriveQuota" }, { "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "Rank": 1, - "CommandName": "Set-PnPUserProfileProperty", - "Id": 1526 + "Id": 1526, + "CommandName": "Set-PnPUserProfileProperty" }, { "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "Rank": 2, - "CommandName": "Set-PnPUserProfileProperty", - "Id": 1527 + "Id": 1527, + "CommandName": "Set-PnPUserProfileProperty" }, { "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "Rank": 1, - "CommandName": "Set-PnPView", - "Id": 1528 + "Id": 1528, + "CommandName": "Set-PnPView" }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "Rank": 2, - "CommandName": "Set-PnPView", - "Id": 1529 + "Id": 1529, + "CommandName": "Set-PnPView" }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "Rank": 3, - "CommandName": "Set-PnPView", - "Id": 1530 + "Id": 1530, + "CommandName": "Set-PnPView" }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "Rank": 4, - "CommandName": "Set-PnPView", - "Id": 1531 + "Id": 1531, + "CommandName": "Set-PnPView" }, { "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", - "Id": 1532 + "Id": 1532, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "Rank": 2, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1533 + "Id": 1533, + "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", "Rank": 3, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1534 + "Id": 1534, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "Rank": 4, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1535 + "Id": 1535, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Rank": 1, - "CommandName": "Set-PnPWeb", - "Id": 1536 + "Id": 1536, + "CommandName": "Set-PnPWeb" }, { "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Rank": 2, - "CommandName": "Set-PnPWeb", - "Id": 1537 + "Id": 1537, + "CommandName": "Set-PnPWeb" }, { "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "Rank": 3, - "CommandName": "Set-PnPWeb", - "Id": 1538 + "Id": 1538, + "CommandName": "Set-PnPWeb" }, { "Command": "Set-PnPWeb -NoCrawl:$true", "Rank": 4, - "CommandName": "Set-PnPWeb", - "Id": 1539 + "Id": 1539, + "CommandName": "Set-PnPWeb" }, { "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "Rank": 1, - "CommandName": "Set-PnPWebHeader", - "Id": 1540 + "Id": 1540, + "CommandName": "Set-PnPWebHeader" }, { "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "Rank": 2, - "CommandName": "Set-PnPWebHeader", - "Id": 1541 + "Id": 1541, + "CommandName": "Set-PnPWebHeader" }, { "Command": "Set-PnPWebHeader -LogoAlignment Middle", "Rank": 3, - "CommandName": "Set-PnPWebHeader", - "Id": 1542 + "Id": 1542, + "CommandName": "Set-PnPWebHeader" }, { "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "CommandName": "Set-PnPWebhookSubscription", - "Id": 1543 + "Id": 1543, + "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\"", "Rank": 2, - "CommandName": "Set-PnPWebhookSubscription", - "Id": 1544 + "Id": 1544, + "CommandName": "Set-PnPWebhookSubscription" }, { "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", - "Id": 1545 + "Id": 1545, + "CommandName": "Set-PnPWebPartProperty" }, { "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 1, - "CommandName": "Set-PnPWebPermission", - "Id": 1546 + "Id": 1546, + "CommandName": "Set-PnPWebPermission" }, { "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Rank": 2, - "CommandName": "Set-PnPWebPermission", - "Id": 1547 + "Id": 1547, + "CommandName": "Set-PnPWebPermission" }, { "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 3, - "CommandName": "Set-PnPWebPermission", - "Id": 1548 + "Id": 1548, + "CommandName": "Set-PnPWebPermission" }, { "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Rank": 4, - "CommandName": "Set-PnPWebPermission", - "Id": 1549 + "Id": 1549, + "CommandName": "Set-PnPWebPermission" }, { "Command": "Set-PnPWebTheme -Theme MyTheme", "Rank": 1, - "CommandName": "Set-PnPWebTheme", - "Id": 1550 + "Id": 1550, + "CommandName": "Set-PnPWebTheme" }, { "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Rank": 2, - "CommandName": "Set-PnPWebTheme", - "Id": 1551 + "Id": 1551, + "CommandName": "Set-PnPWebTheme" }, { "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "Rank": 1, - "CommandName": "Set-PnPWikiPageContent", - "Id": 1552 + "Id": 1552, + "CommandName": "Set-PnPWikiPageContent" }, { "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Rank": 1, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1553 + "Id": 1553, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Rank": 2, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1554 + "Id": 1554, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "Rank": 3, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1555 + "Id": 1555, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "Rank": 4, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1556 + "Id": 1556, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "Rank": 5, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1557 + "Id": 1557, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "Rank": 1, - "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1558 + "Id": 1558, + "CommandName": "Submit-PnPTeamsChannelMessage" }, { "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "Rank": 2, - "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1559 + "Id": 1559, + "CommandName": "Submit-PnPTeamsChannelMessage" }, { "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Sync-PnPAppToTeams", - "Id": 1560 + "Id": 1560, + "CommandName": "Sync-PnPAppToTeams" }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Rank": 1, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1561 + "Id": 1561, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "Rank": 2, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1562 + "Id": 1562, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "Rank": 3, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1563 + "Id": 1563, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Test-PnPListItemIsRecord", - "Id": 1564 + "Id": 1564, + "CommandName": "Test-PnPListItemIsRecord" }, { "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "Rank": 1, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Id": 1565 + "Id": 1565, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Test-PnPSite", - "Id": 1566 + "Id": 1566, + "CommandName": "Test-PnPSite" }, { "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "CommandName": "Test-PnPSite", - "Id": 1567 + "Id": 1567, + "CommandName": "Test-PnPSite" }, { "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Rank": 1, - "CommandName": "Test-PnPTenantTemplate", - "Id": 1568 + "Id": 1568, + "CommandName": "Test-PnPTenantTemplate" }, { "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Undo-PnPFileCheckedOut", - "Id": 1569 + "Id": 1569, + "CommandName": "Undo-PnPFileCheckedOut" }, { "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Uninstall-PnPApp", - "Id": 1570 + "Id": 1570, + "CommandName": "Uninstall-PnPApp" }, { "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Uninstall-PnPApp", - "Id": 1571 + "Id": 1571, + "CommandName": "Uninstall-PnPApp" }, { "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Unpublish-PnPApp", - "Id": 1572 + "Id": 1572, + "CommandName": "Unpublish-PnPApp" }, { "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Unpublish-PnPApp", - "Id": 1573 + "Id": 1573, + "CommandName": "Unpublish-PnPApp" }, { "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Rank": 1, - "CommandName": "Unpublish-PnPContentType", - "Id": 1574 + "Id": 1574, + "CommandName": "Unpublish-PnPContentType" }, { "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1575 + "Id": 1575, + "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", "Rank": 2, - "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1576 + "Id": 1576, + "CommandName": "Unpublish-PnPSyntexModel" }, { "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "CommandName": "Unregister-PnPHubSite", - "Id": 1577 + "Id": 1577, + "CommandName": "Unregister-PnPHubSite" }, { "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Update-PnPApp", - "Id": 1578 + "Id": 1578, + "CommandName": "Update-PnPApp" }, { "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Update-PnPApp", - "Id": 1579 + "Id": 1579, + "CommandName": "Update-PnPApp" }, { "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 1, - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1580 + "Id": 1580, + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Rank": 2, - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1581 + "Id": 1581, + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 3, - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1582 + "Id": 1582, + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "Rank": 1, - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1583 + "Id": 1583, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2, - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1584 + "Id": 1584, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "Rank": 3, - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1585 + "Id": 1585, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "Rank": 1, - "CommandName": "Update-PnPTeamsApp", - "Id": 1586 + "Id": 1586, + "CommandName": "Update-PnPTeamsApp" }, { "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "CommandName": "Update-PnPTeamsUser", - "Id": 1587 + "Id": 1587, + "CommandName": "Update-PnPTeamsUser" }, { "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "CommandName": "Update-PnPTeamsUser", - "Id": 1588 + "Id": 1588, + "CommandName": "Update-PnPTeamsUser" }, { "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "Rank": 3, - "CommandName": "Update-PnPTeamsUser", - "Id": 1589 + "Id": 1589, + "CommandName": "Update-PnPTeamsUser" }, { "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Rank": 1, - "CommandName": "Update-PnPUserType", - "Id": 1590 + "Id": 1590, + "CommandName": "Update-PnPUserType" } ] diff --git a/version.txt b/version.txt index 935a40e22..dc0fe093d 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.93 \ No newline at end of file +2.2.94 \ No newline at end of file From 10c4e119911ba4939f8943996113d7164f81da39 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Wed, 11 Oct 2023 02:38:26 +0000 Subject: [PATCH 072/146] 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 db9b24e2e..bff4d4caa 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -647b0eafc80c5cedad250112852593956e9798da \ No newline at end of file +b71953453737bb422c7c9b0616b4e516485fb623 \ No newline at end of file diff --git a/version.txt b/version.txt index dc0fe093d..4a4cef143 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.94 \ No newline at end of file +2.2.95 \ No newline at end of file From 6d7f0597dc8f53021ddc5ce27f5b559378eaba0a Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Thu, 12 Oct 2023 02:36:23 +0000 Subject: [PATCH 073/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9540 ++++++++--------- version.txt | 2 +- 3 files changed, 4772 insertions(+), 4772 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index bff4d4caa..4e5b2a248 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -b71953453737bb422c7c9b0616b4e516485fb623 \ No newline at end of file +32e7be737a48be98508b37960292f35d9bf5e906 \ 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 cb5046c2c..57aa92fef 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9542 +1,9542 @@ [ { - "Command": "Add-PnPAlert -List \"Demo List\"", - "Rank": 1, "Id": 1, - "CommandName": "Add-PnPAlert" + "CommandName": "Add-PnPAlert", + "Rank": 1, + "Command": "Add-PnPAlert -List \"Demo List\"" }, { - "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)", - "Rank": 2, "Id": 2, - "CommandName": "Add-PnPAlert" + "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)" }, { - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3, "Id": 3, - "CommandName": "Add-PnPAlert" + "CommandName": "Add-PnPAlert", + "Rank": 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\" -Frequency Daily -Time ((Get-Date).AddDays(1))", - "Rank": 4, "Id": 4, - "CommandName": "Add-PnPAlert" + "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))" }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg", - "Rank": 1, "Id": 5, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Rank": 1, + "Command": "Add-PnPApp -Path ./myapp.sppkg" }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Rank": 2, "Id": 6, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Rank": 2, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "Rank": 3, "Id": 7, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Rank": 3, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "Rank": 4, "Id": 8, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Rank": 4, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" }, { - "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", - "Rank": 1, "Id": 9, - "CommandName": "Add-PnPApplicationCustomizer" + "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`\"}" }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "Rank": 1, "Id": 10, - "CommandName": "Add-PnPAvailableSiteClassification" + "CommandName": "Add-PnPAvailableSiteClassification", + "Rank": 1, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Rank": 2, "Id": 11, - "CommandName": "Add-PnPAvailableSiteClassification" + "CommandName": "Add-PnPAvailableSiteClassification", + "Rank": 2, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 12, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 1, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2, "Id": 13, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 2, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3, "Id": 14, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 3, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 15, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 1, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2, "Id": 16, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 2, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3, "Id": 17, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 3, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "Rank": 1, "Id": 18, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole" + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Rank": 1, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph" }, { - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", - "Rank": 2, "Id": 19, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole" + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Rank": 2, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"" }, { - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "Rank": 1, "Id": 20, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Rank": 1, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct" }, { - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType (Get-PnPContentType -Identity 0x0101) -DocumentTemplate \"/_cts/Project Document/template.docx\"", - "Rank": 2, "Id": 21, - "CommandName": "Add-PnPContentType" + "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\"" }, { - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "Rank": 3, "Id": 22, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Rank": 3, + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" }, { - "Command": "Add-PnPContentType -Name \"Project Item\"", - "Rank": 4, "Id": 23, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Rank": 4, + "Command": "Add-PnPContentType -Name \"Project Item\"" }, { - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "Rank": 5, "Id": 24, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Rank": 5, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" }, { - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "Rank": 1, "Id": 25, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Rank": 1, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" }, { - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "Rank": 2, "Id": 26, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Rank": 2, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1, "Id": 27, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Rank": 1, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2, "Id": 28, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Rank": 2, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "Rank": 1, "Id": 29, - "CommandName": "Add-PnPContentTypeToList" + "CommandName": "Add-PnPContentTypeToList", + "Rank": 1, + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" }, { - "Command": "Add-PnPCustomAction -Title \"CollabFooter\" -Name \"CollabFooter\" -Location \"ClientSideExtension.ApplicationCustomizer\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "Rank": 1, "Id": 30, - "CommandName": "Add-PnPCustomAction" + "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`\"}\"" }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "Rank": 1, "Id": 31, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Rank": 1, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "Rank": 2, "Id": 32, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Rank": 2, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" }, { - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "Rank": 1, "Id": 33, - "CommandName": "Add-PnPDocumentSet" + "CommandName": "Add-PnPDocumentSet", + "Rank": 1, + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" }, { - "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", - "Rank": 1, "Id": 34, - "CommandName": "Add-PnPEventReceiver" + "CommandName": "Add-PnPEventReceiver", + "Rank": 1, + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous" }, { - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "Rank": 2, "Id": 35, - "CommandName": "Add-PnPEventReceiver" + "CommandName": "Add-PnPEventReceiver", + "Rank": 2, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous" }, { - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", - "Rank": 3, "Id": 36, - "CommandName": "Add-PnPEventReceiver" + "CommandName": "Add-PnPEventReceiver", + "Rank": 3, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site" }, { - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", - "Rank": 4, "Id": 37, - "CommandName": "Add-PnPEventReceiver" + "CommandName": "Add-PnPEventReceiver", + "Rank": 4, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web" }, { - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "Rank": 1, "Id": 38, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Rank": 1, + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" }, { - "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", - "Rank": 2, "Id": 39, - "CommandName": "Add-PnPField" + "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\"" }, { - "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, "Id": 40, - "CommandName": "Add-PnPField" + "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\"" }, { - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "Rank": 4, "Id": 41, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Rank": 4, + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" }, { - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "Rank": 5, "Id": 42, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Rank": 5, + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" }, { - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "Rank": 6, "Id": 43, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Rank": 6, + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" }, { - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1, "Id": 44, - "CommandName": "Add-PnPFieldToContentType" + "CommandName": "Add-PnPFieldToContentType", + "Rank": 1, + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "Rank": 1, "Id": 45, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 1, + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" }, { - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "Rank": 2, "Id": 46, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 2, + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" }, { - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 3, "Id": 47, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 3, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" }, { - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "Rank": 4, "Id": 48, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 4, + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" }, { - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 5, "Id": 49, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 5, + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" }, { - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "Rank": 6, "Id": 50, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 6, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" }, { - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "Rank": 7, "Id": 51, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 7, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" }, { - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 8, "Id": 52, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Rank": 8, + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, "Id": 53, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 1, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2, "Id": 54, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 2, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", - "Rank": 3, "Id": 55, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 3, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" }, { - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, "Id": 56, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Rank": 1, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "Rank": 2, "Id": 57, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Rank": 2, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" }, { - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Rank": 1, "Id": 58, - "CommandName": "Add-PnPFileSharingInvite" + "CommandName": "Add-PnPFileSharingInvite", + "Rank": 1, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "Rank": 2, "Id": 59, - "CommandName": "Add-PnPFileSharingInvite" + "CommandName": "Add-PnPFileSharingInvite", + "Rank": 2, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" }, { - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", - "Rank": 3, "Id": 60, - "CommandName": "Add-PnPFileSharingInvite" + "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)" }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "Rank": 1, "Id": 61, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 1, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" }, { - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "Rank": 2, "Id": 62, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 2, + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "Rank": 3, "Id": 63, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 3, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "Rank": 4, "Id": 64, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 4, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "Rank": 5, "Id": 65, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 5, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" }, { - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 66, - "CommandName": "Add-PnPFileUserSharingLink" + "CommandName": "Add-PnPFileUserSharingLink", + "Rank": 1, + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 2, "Id": 67, - "CommandName": "Add-PnPFileUserSharingLink" + "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\"" }, { - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit", - "Rank": 1, "Id": 68, - "CommandName": "Add-PnPFlowOwner" + "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" }, { - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView", - "Rank": 2, "Id": 69, - "CommandName": "Add-PnPFlowOwner" + "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" }, { - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare", - "Rank": 3, "Id": 70, - "CommandName": "Add-PnPFlowOwner" + "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" }, { - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", - "Rank": 4, "Id": 71, - "CommandName": "Add-PnPFlowOwner" + "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" }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1, "Id": 72, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Rank": 1, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Rank": 2, "Id": 73, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Rank": 2, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Rank": 3, "Id": 74, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Rank": 3, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, "Id": 75, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Rank": 1, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2, "Id": 76, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Rank": 2, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", - "Rank": 3, "Id": 77, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Rank": 3, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)" }, { - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, "Id": 78, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Rank": 1, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Rank": 2, "Id": 79, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Rank": 2, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Rank": 1, "Id": 80, - "CommandName": "Add-PnPFolderSharingInvite" + "CommandName": "Add-PnPFolderSharingInvite", + "Rank": 1, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "Rank": 2, "Id": 81, - "CommandName": "Add-PnPFolderSharingInvite" + "CommandName": "Add-PnPFolderSharingInvite", + "Rank": 2, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", - "Rank": 3, "Id": 82, - "CommandName": "Add-PnPFolderSharingInvite" + "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)" }, { - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 83, - "CommandName": "Add-PnPFolderUserSharingLink" + "CommandName": "Add-PnPFolderUserSharingLink", + "Rank": 1, + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 2, "Id": 84, - "CommandName": "Add-PnPFolderUserSharingLink" + "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\"" }, { - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1, "Id": 85, - "CommandName": "Add-PnPGroupMember" + "CommandName": "Add-PnPGroupMember", + "Rank": 1, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Rank": 2, "Id": 86, - "CommandName": "Add-PnPGroupMember" + "CommandName": "Add-PnPGroupMember", + "Rank": 2, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" }, { - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Rank": 1, "Id": 87, - "CommandName": "Add-PnPHtmlPublishingPageLayout" + "CommandName": "Add-PnPHtmlPublishingPageLayout", + "Rank": 1, + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" }, { - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "Rank": 1, "Id": 88, - "CommandName": "Add-PnPHubSiteAssociation" + "CommandName": "Add-PnPHubSiteAssociation", + "Rank": 1, + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" }, { - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "Rank": 1, "Id": 89, - "CommandName": "Add-PnPHubToHubAssociation" + "CommandName": "Add-PnPHubToHubAssociation", + "Rank": 1, + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" }, { - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "Rank": 2, "Id": 90, - "CommandName": "Add-PnPHubToHubAssociation" + "CommandName": "Add-PnPHubToHubAssociation", + "Rank": 2, + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"" }, { - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/toplevelhub\"\r ; Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/thirdlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\"", - "Rank": 3, "Id": 91, - "CommandName": "Add-PnPHubToHubAssociation" + "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\"" }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "Rank": 1, "Id": 92, - "CommandName": "Add-PnPJavaScriptBlock" + "CommandName": "Add-PnPJavaScriptBlock", + "Rank": 1, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Rank": 2, "Id": 93, - "CommandName": "Add-PnPJavaScriptBlock" + "CommandName": "Add-PnPJavaScriptBlock", + "Rank": 2, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" }, { - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "Rank": 1, "Id": 94, - "CommandName": "Add-PnPJavaScriptLink" + "CommandName": "Add-PnPJavaScriptLink", + "Rank": 1, + "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", - "Rank": 2, "Id": 95, - "CommandName": "Add-PnPJavaScriptLink" + "CommandName": "Add-PnPJavaScriptLink", + "Rank": 2, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" }, { - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "Rank": 1, "Id": 96, - "CommandName": "Add-PnPListDesign" + "CommandName": "Add-PnPListDesign", + "Rank": 1, + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" }, { - "Command": "Add-PnPListDesign -Title \"My Company Design\" -SiteScriptIds \"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -ListColor Orange -ListIcon BullseyeTarget -ThumbnailUrl \"https://contoso.sharepoint.com/SiteAssets/site-thumbnail.png\"", - "Rank": 2, "Id": 97, - "CommandName": "Add-PnPListDesign" + "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\"" }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Rank": 1, "Id": 98, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 1, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Rank": 2, "Id": 99, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 2, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Rank": 3, "Id": 100, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 3, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1, "Id": 101, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Rank": 1, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 2, "Id": 102, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Rank": 2, + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "Rank": 3, "Id": 103, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Rank": 3, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "Rank": 4, "Id": 104, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Rank": 4, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "Rank": 5, "Id": 105, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Rank": 5, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "Rank": 1, "Id": 106, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Rank": 1, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 2, "Id": 107, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Rank": 2, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "Rank": 3, "Id": 108, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Rank": 3, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" }, { - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "Rank": 1, "Id": 109, - "CommandName": "Add-PnPListItemComment" + "CommandName": "Add-PnPListItemComment", + "Rank": 1, + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" }, { - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "Rank": 1, "Id": 110, - "CommandName": "Add-PnPMasterPage" + "CommandName": "Add-PnPMasterPage", + "Rank": 1, + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" }, { - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 111, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Rank": 1, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2, "Id": 112, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 113, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Rank": 1, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2, "Id": 114, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "Rank": 1, "Id": 115, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 1, + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"" }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "Rank": 2, "Id": 116, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Rank": 3, "Id": 117, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 3, + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "Rank": 1, "Id": 118, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 1, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", - "Rank": 2, "Id": 119, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 2, + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012" }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "Rank": 3, "Id": 120, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 3, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "Rank": 4, "Id": 121, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 4, + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" }, { - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "Rank": 5, "Id": 122, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 5, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" }, { - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Rank": 6, "Id": 123, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 6, + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" }, { - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Rank": 7, "Id": 124, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 7, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "Rank": 8, "Id": 125, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Rank": 8, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "Rank": 1, "Id": 126, - "CommandName": "Add-PnPOrgAssetsLibrary" + "CommandName": "Add-PnPOrgAssetsLibrary", + "Rank": 1, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"", - "Rank": 2, "Id": 127, - "CommandName": "Add-PnPOrgAssetsLibrary" + "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\"" }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "Rank": 3, "Id": 128, - "CommandName": "Add-PnPOrgAssetsLibrary" + "CommandName": "Add-PnPOrgAssetsLibrary", + "Rank": 3, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" }, { - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "Rank": 1, "Id": 129, - "CommandName": "Add-PnPOrgNewsSite" + "CommandName": "Add-PnPOrgNewsSite", + "Rank": 1, + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" }, { - "Command": "Add-PnPPage -Name \"NewPage\"", - "Rank": 1, "Id": 130, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 1, + "Command": "Add-PnPPage -Name \"NewPage\"" }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Rank": 2, "Id": 131, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 2, + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" }, { - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Rank": 3, "Id": 132, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 3, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" }, { - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Rank": 4, "Id": 133, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 4, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" }, { - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Rank": 5, "Id": 134, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 5, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"" }, { - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Rank": 6, "Id": 135, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 6, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" }, { - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7, "Id": 136, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 7, + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Rank": 8, "Id": 137, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 8, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate" }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, "Id": 138, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 9, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, "Id": 139, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Rank": 10, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Rank": 1, "Id": 140, - "CommandName": "Add-PnPPageImageWebPart" + "CommandName": "Add-PnPPageImageWebPart", + "Rank": 1, + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" }, { - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -ImageWidth 400 -ImageHeight 200 -Caption \"Caption text\" -AlternativeText \"Alt text\" -Link \"https://pnp.github.io\"", - "Rank": 2, "Id": 141, - "CommandName": "Add-PnPPageImageWebPart" + "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\"" }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Rank": 1, "Id": 142, - "CommandName": "Add-PnPPageSection" + "CommandName": "Add-PnPPageSection", + "Rank": 1, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Rank": 2, "Id": 143, - "CommandName": "Add-PnPPageSection" + "CommandName": "Add-PnPPageSection", + "Rank": 2, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Rank": 1, "Id": 144, - "CommandName": "Add-PnPPageTextPart" + "CommandName": "Add-PnPPageTextPart", + "Rank": 1, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 2, "Id": 145, - "CommandName": "Add-PnPPageTextPart" + "CommandName": "Add-PnPPageTextPart", + "Rank": 2, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", - "Rank": 3, "Id": 146, - "CommandName": "Add-PnPPageTextPart" + "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\"" }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "Rank": 1, "Id": 147, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Rank": 1, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Rank": 2, "Id": 148, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Rank": 2, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Rank": 3, "Id": 149, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Rank": 3, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" }, { - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "Rank": 1, "Id": 150, - "CommandName": "Add-PnPPlannerBucket" + "CommandName": "Add-PnPPlannerBucket", + "Rank": 1, + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" }, { - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Rank": 2, "Id": 151, - "CommandName": "Add-PnPPlannerBucket" + "CommandName": "Add-PnPPlannerBucket", + "Rank": 2, + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" }, { - "Command": "Add-PnPPlannerRoster", - "Rank": 1, "Id": 152, - "CommandName": "Add-PnPPlannerRoster" + "CommandName": "Add-PnPPlannerRoster", + "Rank": 1, + "Command": "Add-PnPPlannerRoster" }, { - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 153, - "CommandName": "Add-PnPPlannerRosterMember" + "CommandName": "Add-PnPPlannerRosterMember", + "Rank": 1, + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 1, "Id": 154, - "CommandName": "Add-PnPPlannerTask" + "CommandName": "Add-PnPPlannerTask", + "Rank": 1, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 2, "Id": 155, - "CommandName": "Add-PnPPlannerTask" + "CommandName": "Add-PnPPlannerTask", + "Rank": 2, + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Rank": 3, "Id": 156, - "CommandName": "Add-PnPPlannerTask" + "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\"" }, { - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1, "Id": 157, - "CommandName": "Add-PnPPublishingImageRendition" + "CommandName": "Add-PnPPublishingImageRendition", + "Rank": 1, + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Rank": 1, "Id": 158, - "CommandName": "Add-PnPPublishingPage" + "CommandName": "Add-PnPPublishingPage", + "Rank": 1, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" }, { - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "Rank": 2, "Id": 159, - "CommandName": "Add-PnPPublishingPage" + "CommandName": "Add-PnPPublishingPage", + "Rank": 2, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" }, { - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Rank": 1, "Id": 160, - "CommandName": "Add-PnPPublishingPageLayout" + "CommandName": "Add-PnPPublishingPageLayout", + "Rank": 1, + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" }, { - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "Rank": 1, "Id": 161, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Rank": 1, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" }, { - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Rank": 2, "Id": 162, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Rank": 2, + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" }, { - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Rank": 3, "Id": 163, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Rank": 3, + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 164, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 1, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, "Id": 165, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 2, + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Rank": 3, "Id": 166, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 3, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" }, { - "Command": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1, "Id": 167, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Rank": 1, + "Command": "Add-PnPSiteCollectionAppCatalog" }, { - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 2, "Id": 168, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Rank": 2, + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite", - "Rank": 1, "Id": 169, - "CommandName": "Add-PnPSiteDesign" + "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" }, { - "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, "Id": 170, - "CommandName": "Add-PnPSiteDesign" + "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" }, { - "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, "Id": 171, - "CommandName": "Add-PnPSiteDesign" + "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\"" }, { - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "Rank": 1, "Id": 172, - "CommandName": "Add-PnPSiteDesignFromWeb" + "CommandName": "Add-PnPSiteDesignFromWeb", + "Rank": 1, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" }, { - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2, "Id": 173, - "CommandName": "Add-PnPSiteDesignFromWeb" + "CommandName": "Add-PnPSiteDesignFromWeb", + "Rank": 2, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -Lists \"/lists/Issue list\" -ThumbnailUrl https://contoso.sharepoint.com/SiteAssets/logo.png", - "Rank": 3, "Id": 174, - "CommandName": "Add-PnPSiteDesignFromWeb" + "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" }, { - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1, "Id": 175, - "CommandName": "Add-PnPSiteDesignTask" + "CommandName": "Add-PnPSiteDesignTask", + "Rank": 1, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 2, "Id": 176, - "CommandName": "Add-PnPSiteDesignTask" + "CommandName": "Add-PnPSiteDesignTask", + "Rank": 2, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "Rank": 1, "Id": 177, - "CommandName": "Add-PnPSiteScript" + "CommandName": "Add-PnPSiteScript", + "Rank": 1, + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" }, { - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "Rank": 1, "Id": 178, - "CommandName": "Add-PnPSiteScriptPackage" + "CommandName": "Add-PnPSiteScriptPackage", + "Rank": 1, + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" }, { - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "Rank": 1, "Id": 179, - "CommandName": "Add-PnPSiteTemplate" + "CommandName": "Add-PnPSiteTemplate", + "Rank": 1, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" }, { - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Rank": 1, "Id": 180, - "CommandName": "Add-PnPStoredCredential" + "CommandName": "Add-PnPStoredCredential", + "Rank": 1, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" }, { - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Rank": 2, "Id": 181, - "CommandName": "Add-PnPStoredCredential" + "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)" }, { - "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, "Id": 182, - "CommandName": "Add-PnPStoredCredential" + "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\"" }, { - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Rank": 1, "Id": 183, - "CommandName": "Add-PnPTaxonomyField" + "CommandName": "Add-PnPTaxonomyField", + "Rank": 1, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" }, { - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "Rank": 2, "Id": 184, - "CommandName": "Add-PnPTaxonomyField" + "CommandName": "Add-PnPTaxonomyField", + "Rank": 2, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" }, { - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "Rank": 1, "Id": 185, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Rank": 1, + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" }, { - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "Rank": 2, "Id": 186, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Rank": 2, + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" }, { - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "Rank": 3, "Id": 187, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Rank": 3, + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" }, { - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "Rank": 4, "Id": 188, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Rank": 4, + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" }, { - "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", - "Rank": 1, "Id": 189, - "CommandName": "Add-PnpTeamsChannelUser" + "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" }, { - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "Rank": 2, "Id": 190, - "CommandName": "Add-PnpTeamsChannelUser" + "CommandName": "Add-PnpTeamsChannelUser", + "Rank": 2, + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" }, { - "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", - "Rank": 1, "Id": 191, - "CommandName": "Add-PnPTeamsTab" + "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\"" }, { - "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, "Id": 192, - "CommandName": "Add-PnPTeamsTab" + "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\"" }, { - "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, "Id": 193, - "CommandName": "Add-PnPTeamsTab" + "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\"" }, { - "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, "Id": 194, - "CommandName": "Add-PnPTeamsTab" + "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" }, { - "Command": "Add-PnPTeamsTeam", - "Rank": 1, "Id": 195, - "CommandName": "Add-PnPTeamsTeam" + "CommandName": "Add-PnPTeamsTeam", + "Rank": 1, + "Command": "Add-PnPTeamsTeam" }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1, "Id": 196, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Rank": 1, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2, "Id": 197, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Rank": 2, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "Rank": 3, "Id": 198, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Rank": 3, + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "Rank": 4, "Id": 199, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Rank": 4, + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" }, { - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1, "Id": 200, - "CommandName": "Add-PnPTenantCdnOrigin" + "CommandName": "Add-PnPTenantCdnOrigin", + "Rank": 1, + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Rank": 1, "Id": 201, - "CommandName": "Add-PnPTenantSequence" + "CommandName": "Add-PnPTenantSequence", + "Rank": 1, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" }, { - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Rank": 1, "Id": 202, - "CommandName": "Add-PnPTenantSequenceSite" + "CommandName": "Add-PnPTenantSequenceSite", + "Rank": 1, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" }, { - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Rank": 1, "Id": 203, - "CommandName": "Add-PnPTenantSequenceSubSite" + "CommandName": "Add-PnPTenantSequenceSubSite", + "Rank": 1, + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" }, { - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "Rank": 1, "Id": 204, - "CommandName": "Add-PnPTermToTerm" + "CommandName": "Add-PnPTermToTerm", + "Rank": 1, + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "Rank": 1, "Id": 205, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Rank": 1, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "Rank": 2, "Id": 206, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Rank": 2, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "Rank": 3, "Id": 207, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Rank": 3, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" }, { - "Command": "Add-PnPVivaConnectionsDashboardACE -Identity CardDesigner -Order 3 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Large -Description \"ACE description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"", - "Rank": 1, "Id": 208, - "CommandName": "Add-PnPVivaConnectionsDashboardACE" + "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\"" }, { - "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, "Id": 209, - "CommandName": "Add-PnPVivaConnectionsDashboardACE" + "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\"" }, { - "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, "Id": 210, - "CommandName": "Add-PnPVivaConnectionsDashboardACE" + "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\"" }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1, "Id": 211, - "CommandName": "Add-PnPWebhookSubscription" + "CommandName": "Add-PnPWebhookSubscription", + "Rank": 1, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Rank": 2, "Id": 212, - "CommandName": "Add-PnPWebhookSubscription" + "CommandName": "Add-PnPWebhookSubscription", + "Rank": 2, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", - "Rank": 3, "Id": 213, - "CommandName": "Add-PnPWebhookSubscription" + "CommandName": "Add-PnPWebhookSubscription", + "Rank": 3, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"" }, { - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "Rank": 1, "Id": 214, - "CommandName": "Add-PnPWebPartToWebPartPage" + "CommandName": "Add-PnPWebPartToWebPartPage", + "Rank": 1, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1" }, { - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "Rank": 2, "Id": 215, - "CommandName": "Add-PnPWebPartToWebPartPage" + "CommandName": "Add-PnPWebPartToWebPartPage", + "Rank": 2, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" }, { - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "Rank": 1, "Id": 216, - "CommandName": "Add-PnPWebPartToWikiPage" + "CommandName": "Add-PnPWebPartToWikiPage", + "Rank": 1, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1" }, { - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "Rank": 2, "Id": 217, - "CommandName": "Add-PnPWebPartToWikiPage" + "CommandName": "Add-PnPWebPartToWikiPage", + "Rank": 2, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" }, { - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "Rank": 1, "Id": 218, - "CommandName": "Add-PnPWikiPage" + "CommandName": "Add-PnPWikiPage", + "Rank": 1, + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" }, { - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Rank": 1, "Id": 219, - "CommandName": "Clear-PnPAzureADGroupMember" + "CommandName": "Clear-PnPAzureADGroupMember", + "Rank": 1, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" }, { - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Rank": 1, "Id": 220, - "CommandName": "Clear-PnPAzureADGroupOwner" + "CommandName": "Clear-PnPAzureADGroupOwner", + "Rank": 1, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Rank": 1, "Id": 221, - "CommandName": "Clear-PnPDefaultColumnValues" + "CommandName": "Clear-PnPDefaultColumnValues", + "Rank": 1, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Rank": 2, "Id": 222, - "CommandName": "Clear-PnPDefaultColumnValues" + "CommandName": "Clear-PnPDefaultColumnValues", + "Rank": 2, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" }, { - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, "Id": 223, - "CommandName": "Clear-PnPListItemAsRecord" + "CommandName": "Clear-PnPListItemAsRecord", + "Rank": 1, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Rank": 1, "Id": 224, - "CommandName": "Clear-PnPMicrosoft365GroupMember" + "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Rank": 1, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" }, { - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Rank": 1, "Id": 225, - "CommandName": "Clear-PnPMicrosoft365GroupOwner" + "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Rank": 1, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" }, { - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, "Id": 226, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 1, + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Rank": 2, "Id": 227, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 2, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" }, { - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Rank": 3, "Id": 228, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 3, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" }, { - "Command": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1, "Id": 229, - "CommandName": "Clear-PnPTenantAppCatalogUrl" + "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Rank": 1, + "Command": "Clear-PnPTenantAppCatalogUrl" }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "Id": 230, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Rank": 1, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2, "Id": 231, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Rank": 2, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", - "Rank": 1, "Id": 232, - "CommandName": "Connect-PnPOnline" + "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\"" }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Rank": 1, "Id": 233, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Rank": 1, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Rank": 2, "Id": 234, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Rank": 2, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Rank": 1, "Id": 235, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Rank": 1, + "Command": "Convert-PnPSiteTemplate -Path template.xml" }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Rank": 2, "Id": 236, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Rank": 2, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Rank": 3, "Id": 237, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Rank": 3, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Rank": 1, "Id": 238, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Rank": 1, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Rank": 2, "Id": 239, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Rank": 2, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Rank": 1, "Id": 240, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 1, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Rank": 2, "Id": 241, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 2, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Rank": 3, "Id": 242, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 3, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Rank": 4, "Id": 243, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 4, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 5, "Id": 244, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 5, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "Rank": 6, "Id": 245, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 6, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Rank": 7, "Id": 246, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 7, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Rank": 8, "Id": 247, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 8, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 9, "Id": 248, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 9, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "Rank": 10, "Id": 249, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 10, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Rank": 11, "Id": 250, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 11, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" }, { - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 12, "Id": 251, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 12, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 13, "Id": 252, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 13, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "Rank": 14, "Id": 253, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Rank": 14, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1, "Id": 254, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 1, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2, "Id": 255, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 2, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3, "Id": 256, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 3, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4, "Id": 257, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 4, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5, "Id": 258, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 5, + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6, "Id": 259, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 6, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7, "Id": 260, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 7, + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8, "Id": 261, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 8, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9, "Id": 262, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 9, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10, "Id": 263, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Rank": 10, + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1, "Id": 264, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 1, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2, "Id": 265, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 2, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3, "Id": 266, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 3, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4, "Id": 267, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 4, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5, "Id": 268, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 5, + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6, "Id": 269, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 6, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7, "Id": 270, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 7, + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8, "Id": 271, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 8, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9, "Id": 272, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 9, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10, "Id": 273, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Rank": 10, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Rank": 1, "Id": 274, - "CommandName": "Copy-PnPItemProxy" + "CommandName": "Copy-PnPItemProxy", + "Rank": 1, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" }, { - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Rank": 1, "Id": 275, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Rank": 1, + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" }, { - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "Rank": 2, "Id": 276, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Rank": 2, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" }, { - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "Rank": 3, "Id": 277, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Rank": 3, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" }, { - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", - "Rank": 4, "Id": 278, - "CommandName": "Copy-PnPList" + "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\\" }, { - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "Rank": 1, "Id": 279, - "CommandName": "Copy-PnPTeamsTeam" + "CommandName": "Copy-PnPTeamsTeam", + "Rank": 1, + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" }, { - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "Rank": 2, "Id": 280, - "CommandName": "Copy-PnPTeamsTeam" + "CommandName": "Copy-PnPTeamsTeam", + "Rank": 2, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" }, { - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", - "Rank": 3, "Id": 281, - "CommandName": "Copy-PnPTeamsTeam" + "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" }, { - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", - "Rank": 4, "Id": 282, - "CommandName": "Copy-PnPTeamsTeam" + "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" }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "Id": 283, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Rank": 1, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, "Id": 284, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Rank": 2, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, "Id": 285, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Rank": 3, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Command": "Disable-PnPPageScheduling", - "Rank": 1, "Id": 286, - "CommandName": "Disable-PnPPageScheduling" + "CommandName": "Disable-PnPPageScheduling", + "Rank": 1, + "Command": "Disable-PnPPageScheduling" }, { - "Command": "Disable-PnPPowerShellTelemetry", - "Rank": 1, "Id": 287, - "CommandName": "Disable-PnPPowerShellTelemetry" + "CommandName": "Disable-PnPPowerShellTelemetry", + "Rank": 1, + "Command": "Disable-PnPPowerShellTelemetry" }, { - "Command": "Disable-PnPPowerShellTelemetry -Force", - "Rank": 2, "Id": 288, - "CommandName": "Disable-PnPPowerShellTelemetry" + "CommandName": "Disable-PnPPowerShellTelemetry", + "Rank": 2, + "Command": "Disable-PnPPowerShellTelemetry -Force" }, { - "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1, "Id": 289, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite" + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Rank": 1, + "Command": "Disable-PnPSharingForNonOwnersOfSite" }, { - "Command": "Disable-PnPSiteClassification", - "Rank": 1, "Id": 290, - "CommandName": "Disable-PnPSiteClassification" + "CommandName": "Disable-PnPSiteClassification", + "Rank": 1, + "Command": "Disable-PnPSiteClassification" }, { - "Command": "Disconnect-PnPOnline", - "Rank": 1, "Id": 291, - "CommandName": "Disconnect-PnPOnline" + "CommandName": "Disconnect-PnPOnline", + "Rank": 1, + "Command": "Disconnect-PnPOnline" }, { - "Command": "Enable-PnPCommSite", - "Rank": 1, "Id": 292, - "CommandName": "Enable-PnPCommSite" + "CommandName": "Enable-PnPCommSite", + "Rank": 1, + "Command": "Enable-PnPCommSite" }, { - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Rank": 2, "Id": 293, - "CommandName": "Enable-PnPCommSite" + "CommandName": "Enable-PnPCommSite", + "Rank": 2, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "Id": 294, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Rank": 1, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, "Id": 295, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Rank": 2, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, "Id": 296, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Rank": 3, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Command": "Enable-PnPPageScheduling", - "Rank": 1, "Id": 297, - "CommandName": "Enable-PnPPageScheduling" + "CommandName": "Enable-PnPPageScheduling", + "Rank": 1, + "Command": "Enable-PnPPageScheduling" }, { - "Command": "Enable-PnPPowerShellTelemetry", - "Rank": 1, "Id": 298, - "CommandName": "Enable-PnPPowerShellTelemetry" + "CommandName": "Enable-PnPPowerShellTelemetry", + "Rank": 1, + "Command": "Enable-PnPPowerShellTelemetry" }, { - "Command": "Enable-PnPPowerShellTelemetry -Force", - "Rank": 2, "Id": 299, - "CommandName": "Enable-PnPPowerShellTelemetry" + "CommandName": "Enable-PnPPowerShellTelemetry", + "Rank": 2, + "Command": "Enable-PnPPowerShellTelemetry -Force" }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Rank": 1, "Id": 300, - "CommandName": "Enable-PnPSiteClassification" + "CommandName": "Enable-PnPSiteClassification", + "Rank": 1, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 2, "Id": 301, - "CommandName": "Enable-PnPSiteClassification" + "CommandName": "Enable-PnPSiteClassification", + "Rank": 2, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Rank": 1, "Id": 302, - "CommandName": "Export-PnPListToSiteTemplate" + "CommandName": "Export-PnPListToSiteTemplate", + "Rank": 1, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" }, { - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Rank": 2, "Id": 303, - "CommandName": "Export-PnPListToSiteTemplate" + "CommandName": "Export-PnPListToSiteTemplate", + "Rank": 2, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" }, { - "Command": "Export-PnPPage -Identity Home.aspx", - "Rank": 1, "Id": 304, - "CommandName": "Export-PnPPage" + "CommandName": "Export-PnPPage", + "Rank": 1, + "Command": "Export-PnPPage -Identity Home.aspx" }, { - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Rank": 1, "Id": 305, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Rank": 1, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" }, { - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Rank": 2, "Id": 306, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Rank": 2, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" }, { - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Rank": 3, "Id": 307, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Rank": 3, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" }, { - "Command": "Export-PnPTaxonomy", - "Rank": 1, "Id": 308, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Rank": 1, + "Command": "Export-PnPTaxonomy" }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Rank": 2, "Id": 309, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Rank": 2, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt" }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Rank": 3, "Id": 310, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Rank": 3, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "Rank": 4, "Id": 311, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Rank": 4, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" }, { - "Command": "Export-PnPTermGroupToXml", - "Rank": 1, "Id": 312, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Rank": 1, + "Command": "Export-PnPTermGroupToXml" }, { - "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Rank": 2, "Id": 313, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Rank": 2, + "Command": "Export-PnPTermGroupToXml -Out output.xml" }, { - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Rank": 3, "Id": 314, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Rank": 3, + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" }, { - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1, "Id": 315, - "CommandName": "Export-PnPUserInfo" + "CommandName": "Export-PnPUserInfo", + "Rank": 1, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2, "Id": 316, - "CommandName": "Export-PnPUserInfo" + "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" }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Rank": 1, "Id": 317, - "CommandName": "Export-PnPUserProfile" + "CommandName": "Export-PnPUserProfile", + "Rank": 1, + "Command": "Export-PnPUserProfile -LoginName user@domain.com" }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2, "Id": 318, - "CommandName": "Export-PnPUserProfile" + "CommandName": "Export-PnPUserProfile", + "Rank": 2, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Command": "Find-PnPFile -Match *.master", - "Rank": 1, "Id": 319, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Rank": 1, + "Command": "Find-PnPFile -Match *.master" }, { - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Rank": 2, "Id": 320, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Rank": 2, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" }, { - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Rank": 3, "Id": 321, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Rank": 3, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" }, { - "Command": "Get-PnPAccessToken", - "Rank": 1, "Id": 322, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Rank": 1, + "Command": "Get-PnPAccessToken" }, { - "Command": "Get-PnPAccessToken -Decoded", - "Rank": 2, "Id": 323, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Rank": 2, + "Command": "Get-PnPAccessToken -Decoded" }, { - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Rank": 3, "Id": 324, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Rank": 3, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" }, { - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Rank": 4, "Id": 325, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Rank": 4, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM" }, { - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Rank": 5, "Id": 326, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Rank": 5, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" }, { - "Command": "Get-PnPAlert", - "Rank": 1, "Id": 327, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Rank": 1, + "Command": "Get-PnPAlert" }, { - "Command": "Get-PnPAlert -List \"Demo List\"", - "Rank": 2, "Id": 328, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Rank": 2, + "Command": "Get-PnPAlert -List \"Demo List\"" }, { - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3, "Id": 329, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Rank": 3, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Rank": 4, "Id": 330, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Rank": 4, + "Command": "Get-PnPAlert -Title \"Demo Alert\"" }, { - "Command": "Get-PnPAlert -AllUsers", - "Rank": 5, "Id": 331, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Rank": 5, + "Command": "Get-PnPAlert -AllUsers" }, { - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Rank": 6, "Id": 332, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Rank": 6, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" }, { - "Command": "Get-PnPApp", - "Rank": 1, "Id": 333, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Rank": 1, + "Command": "Get-PnPApp" }, { - "Command": "Get-PnPApp -Scope Site", - "Rank": 2, "Id": 334, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Rank": 2, + "Command": "Get-PnPApp -Scope Site" }, { - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 3, "Id": 335, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Rank": 3, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Rank": 1, "Id": 336, - "CommandName": "Get-PnPAppErrors" + "CommandName": "Get-PnPAppErrors", + "Rank": 1, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "Rank": 2, "Id": 337, - "CommandName": "Get-PnPAppErrors" + "CommandName": "Get-PnPAppErrors", + "Rank": 2, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" }, { - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Rank": 1, "Id": 338, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Rank": 1, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"" }, { - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 2, "Id": 339, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Rank": 2, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Rank": 3, "Id": 340, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Rank": 3, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" }, { - "Command": "Get-PnPApplicationCustomizer", - "Rank": 1, "Id": 341, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 1, + "Command": "Get-PnPApplicationCustomizer" }, { - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, "Id": 342, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 2, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Rank": 3, "Id": 343, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 3, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" }, { - "Command": "Get-PnPAuditing", - "Rank": 1, "Id": 344, - "CommandName": "Get-PnPAuditing" + "CommandName": "Get-PnPAuditing", + "Rank": 1, + "Command": "Get-PnPAuditing" }, { - "Command": "Get-PnPAuthenticationRealm", - "Rank": 1, "Id": 345, - "CommandName": "Get-PnPAuthenticationRealm" + "CommandName": "Get-PnPAuthenticationRealm", + "Rank": 1, + "Command": "Get-PnPAuthenticationRealm" }, { - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Rank": 2, "Id": 346, - "CommandName": "Get-PnPAuthenticationRealm" + "CommandName": "Get-PnPAuthenticationRealm", + "Rank": 2, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" }, { - "Command": "Get-PnPAvailableLanguage", - "Rank": 1, "Id": 347, - "CommandName": "Get-PnPAvailableLanguage" + "CommandName": "Get-PnPAvailableLanguage", + "Rank": 1, + "Command": "Get-PnPAvailableLanguage" }, { - "Command": "Get-PnPAvailableSensitivityLabel", - "Rank": 1, "Id": 348, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 1, + "Command": "Get-PnPAvailableSensitivityLabel" }, { - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Rank": 2, "Id": 349, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 2, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" }, { - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Rank": 3, "Id": 350, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 3, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" }, { - "Command": "Get-PnPAvailableSiteClassification", - "Rank": 1, "Id": 351, - "CommandName": "Get-PnPAvailableSiteClassification" + "CommandName": "Get-PnPAvailableSiteClassification", + "Rank": 1, + "Command": "Get-PnPAvailableSiteClassification" }, { - "Command": "Get-PnPAzureACSPrincipal", - "Rank": 1, "Id": 352, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 1, + "Command": "Get-PnPAzureACSPrincipal" }, { - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Rank": 2, "Id": 353, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 2, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" }, { - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Rank": 3, "Id": 354, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 3, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" }, { - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Rank": 4, "Id": 355, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 4, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1, "Id": 356, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 1, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Rank": 2, "Id": 357, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 2, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Rank": 3, "Id": 358, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 3, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" }, { - "Command": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1, "Id": 359, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 1, + "Command": "Get-PnPAzureADActivityReportSignIn" }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Rank": 2, "Id": 360, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 2, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Rank": 3, "Id": 361, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 3, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" }, { - "Command": "Get-PnPAzureADApp", - "Rank": 1, "Id": 362, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Rank": 1, + "Command": "Get-PnPAzureADApp" }, { - "Command": "Get-PnPAzureADApp -Identity MyApp", - "Rank": 2, "Id": 363, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Rank": 2, + "Command": "Get-PnPAzureADApp -Identity MyApp" }, { - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, "Id": 364, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Rank": 3, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Rank": 4, "Id": 365, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Rank": 4, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" }, { - "Command": "Get-PnPAzureADAppPermission", - "Rank": 1, "Id": 366, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 1, + "Command": "Get-PnPAzureADAppPermission" }, { - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Rank": 2, "Id": 367, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 2, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp" }, { - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, "Id": 368, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 3, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Command": "Get-PnPAzureADAppSitePermission", - "Rank": 1, "Id": 369, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 1, + "Command": "Get-PnPAzureADAppSitePermission" }, { - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2, "Id": 370, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 2, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" }, { - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Rank": 3, "Id": 371, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 3, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Rank": 4, "Id": 372, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 4, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Rank": 5, "Id": 373, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 5, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" }, { - "Command": "Get-PnPAzureADGroup", - "Rank": 1, "Id": 374, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Rank": 1, + "Command": "Get-PnPAzureADGroup" }, { - "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Rank": 2, "Id": 375, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Rank": 2, + "Command": "Get-PnPAzureADGroup -Identity $groupId" }, { - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Rank": 3, "Id": 376, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Rank": 3, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" }, { - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Rank": 4, "Id": 377, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Rank": 4, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" }, { - "Command": "Get-PnPAzureADGroup -Identity $group", - "Rank": 5, "Id": 378, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Rank": 5, + "Command": "Get-PnPAzureADGroup -Identity $group" }, { - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Rank": 1, "Id": 379, - "CommandName": "Get-PnPAzureADGroupMember" + "CommandName": "Get-PnPAzureADGroupMember", + "Rank": 1, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId" }, { - "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Rank": 2, "Id": 380, - "CommandName": "Get-PnPAzureADGroupMember" + "CommandName": "Get-PnPAzureADGroupMember", + "Rank": 2, + "Command": "Get-PnPAzureADGroupMember -Identity $group" }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Rank": 1, "Id": 381, - "CommandName": "Get-PnPAzureADGroupOwner" + "CommandName": "Get-PnPAzureADGroupOwner", + "Rank": 1, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Rank": 2, "Id": 382, - "CommandName": "Get-PnPAzureADGroupOwner" + "CommandName": "Get-PnPAzureADGroupOwner", + "Rank": 2, + "Command": "Get-PnPAzureADGroupOwner -Identity $group" }, { - "Command": "Get-PnPAzureADServicePrincipal", - "Rank": 1, "Id": 383, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipal" }, { - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Rank": 2, "Id": 384, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" }, { - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Rank": 3, "Id": 385, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 3, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" }, { - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Rank": 4, "Id": 386, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 4, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" }, { - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, "Id": 387, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 5, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, "Id": 388, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 2, "Id": 389, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, "Id": 390, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Rank": 2, "Id": 391, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" }, { - "Command": "Get-PnPAzureADUser", - "Rank": 1, "Id": 392, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 1, + "Command": "Get-PnPAzureADUser" }, { - "Command": "Get-PnPAzureADUser -EndIndex 50", - "Rank": 2, "Id": 393, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 2, + "Command": "Get-PnPAzureADUser -EndIndex 50" }, { - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 3, "Id": 394, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 3, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Rank": 4, "Id": 395, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 4, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com" }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Rank": 5, "Id": 396, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 5, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" }, { - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Rank": 6, "Id": 397, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 6, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" }, { - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Rank": 7, "Id": 398, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 7, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" }, { - "Command": "Get-PnPAzureADUser -Delta", - "Rank": 8, "Id": 399, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 8, + "Command": "Get-PnPAzureADUser -Delta" }, { - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Rank": 9, "Id": 400, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 9, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" }, { - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Rank": 10, "Id": 401, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Rank": 10, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Rank": 1, "Id": 402, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Rank": 1, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Rank": 2, "Id": 403, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Rank": 2, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Rank": 3, "Id": 404, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Rank": 3, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" }, { - "Command": "Get-PnPBrowserIdleSignout", - "Rank": 1, "Id": 405, - "CommandName": "Get-PnPBrowserIdleSignout" + "CommandName": "Get-PnPBrowserIdleSignout", + "Rank": 1, + "Command": "Get-PnPBrowserIdleSignout" }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Rank": 1, "Id": 406, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 1, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2, "Id": 407, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 2, + "Command": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1, "Id": 408, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 1, + "Command": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Rank": 2, "Id": 409, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 2, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Rank": 3, "Id": 410, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 3, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4, "Id": 411, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 4, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Rank": 5, "Id": 412, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 5, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" }, { - "Command": "Get-PnPChangeLog", - "Rank": 1, "Id": 413, - "CommandName": "Get-PnPChangeLog" + "CommandName": "Get-PnPChangeLog", + "Rank": 1, + "Command": "Get-PnPChangeLog" }, { - "Command": "Get-PnPChangeLog -Nightly", - "Rank": 2, "Id": 414, - "CommandName": "Get-PnPChangeLog" + "CommandName": "Get-PnPChangeLog", + "Rank": 2, + "Command": "Get-PnPChangeLog -Nightly" }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Rank": 1, "Id": 415, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Rank": 1, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "Rank": 2, "Id": 416, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Rank": 2, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" }, { - "Command": "Get-PnPContentType", - "Rank": 1, "Id": 417, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Rank": 1, + "Command": "Get-PnPContentType" }, { - "Command": "Get-PnPContentType -InSiteHierarchy", - "Rank": 2, "Id": 418, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Rank": 2, + "Command": "Get-PnPContentType -InSiteHierarchy" }, { - "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Rank": 3, "Id": 419, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Rank": 3, + "Command": "Get-PnPContentType -Identity \"Project Document\"" }, { - "Command": "Get-PnPContentType -List \"Documents\"", - "Rank": 4, "Id": 420, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Rank": 4, + "Command": "Get-PnPContentType -List \"Documents\"" }, { - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Rank": 1, "Id": 421, - "CommandName": "Get-PnPContentTypePublishingStatus" + "CommandName": "Get-PnPContentTypePublishingStatus", + "Rank": 1, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" }, { - "Command": "Get-PnPCustomAction", - "Rank": 1, "Id": 422, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Rank": 1, + "Command": "Get-PnPCustomAction" }, { - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, "Id": 423, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Rank": 2, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Command": "Get-PnPCustomAction -Scope web", - "Rank": 3, "Id": 424, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Rank": 3, + "Command": "Get-PnPCustomAction -Scope web" }, { - "Command": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1, "Id": 425, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Rank": 1, + "Command": "Get-PnPDeletedMicrosoft365Group" }, { - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 2, "Id": 426, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Rank": 2, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Command": "Get-PnPDeletedTeam", - "Rank": 1, "Id": 427, - "CommandName": "Get-PnPDeletedTeam" + "CommandName": "Get-PnPDeletedTeam", + "Rank": 1, + "Command": "Get-PnPDeletedTeam" }, { - "Command": "Get-PnPDiagnostics", - "Rank": 1, "Id": 428, - "CommandName": "Get-PnPDiagnostics" + "CommandName": "Get-PnPDiagnostics", + "Rank": 1, + "Command": "Get-PnPDiagnostics" }, { - "Command": "Get-PnPDisableSpacesActivation", - "Rank": 1, "Id": 429, - "CommandName": "Get-PnPDisableSpacesActivation" + "CommandName": "Get-PnPDisableSpacesActivation", + "Rank": 1, + "Command": "Get-PnPDisableSpacesActivation" }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Rank": 1, "Id": 430, - "CommandName": "Get-PnPDocumentSetTemplate" + "CommandName": "Get-PnPDocumentSetTemplate", + "Rank": 1, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Rank": 2, "Id": 431, - "CommandName": "Get-PnPDocumentSetTemplate" + "CommandName": "Get-PnPDocumentSetTemplate", + "Rank": 2, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" }, { - "Command": "Get-PnPEventReceiver", - "Rank": 1, "Id": 432, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 1, + "Command": "Get-PnPEventReceiver" }, { - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, "Id": 433, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 2, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Rank": 3, "Id": 434, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 3, + "Command": "Get-PnPEventReceiver -Identity MyReceiver" }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Rank": 4, "Id": 435, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 4, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"" }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 5, "Id": 436, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 5, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Rank": 6, "Id": 437, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 6, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" }, { - "Command": "Get-PnPEventReceiver -Scope Site", - "Rank": 7, "Id": 438, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 7, + "Command": "Get-PnPEventReceiver -Scope Site" }, { - "Command": "Get-PnPEventReceiver -Scope Web", - "Rank": 8, "Id": 439, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 8, + "Command": "Get-PnPEventReceiver -Scope Web" }, { - "Command": "Get-PnPEventReceiver -Scope All", - "Rank": 9, "Id": 440, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Rank": 9, + "Command": "Get-PnPEventReceiver -Scope All" }, { - "Command": "Get-PnPException", - "Rank": 1, "Id": 441, - "CommandName": "Get-PnPException" + "CommandName": "Get-PnPException", + "Rank": 1, + "Command": "Get-PnPException" }, { - "Command": "Get-PnPException -All", - "Rank": 2, "Id": 442, - "CommandName": "Get-PnPException" + "CommandName": "Get-PnPException", + "Rank": 2, + "Command": "Get-PnPException -All" }, { - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Rank": 1, "Id": 443, - "CommandName": "Get-PnPExternalUser" + "CommandName": "Get-PnPExternalUser", + "Rank": 1, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" }, { - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Rank": 2, "Id": 444, - "CommandName": "Get-PnPExternalUser" + "CommandName": "Get-PnPExternalUser", + "Rank": 2, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" }, { - "Command": "Get-PnPFeature", - "Rank": 1, "Id": 445, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Rank": 1, + "Command": "Get-PnPFeature" }, { - "Command": "Get-PnPFeature -Scope Site", - "Rank": 2, "Id": 446, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Rank": 2, + "Command": "Get-PnPFeature -Scope Site" }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 3, "Id": 447, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Rank": 3, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Rank": 4, "Id": 448, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Rank": 4, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" }, { - "Command": "Get-PnPField", - "Rank": 1, "Id": 449, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Rank": 1, + "Command": "Get-PnPField" }, { - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, "Id": 450, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Rank": 2, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Command": "Get-PnPField -Group \"Custom Columns\"", - "Rank": 3, "Id": 451, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Rank": 3, + "Command": "Get-PnPField -Group \"Custom Columns\"" }, { - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Rank": 1, "Id": 452, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Rank": 1, + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" }, { - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "Rank": 2, "Id": 453, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Rank": 2, + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" }, { - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Rank": 3, "Id": 454, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Rank": 3, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" }, { - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Rank": 4, "Id": 455, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Rank": 4, + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" }, { - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Rank": 5, "Id": 456, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Rank": 5, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" }, { - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "Rank": 6, "Id": 457, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Rank": 6, + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" }, { - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Rank": 7, "Id": 458, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Rank": 7, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" }, { - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, "Id": 459, - "CommandName": "Get-PnPFileSharingLink" + "CommandName": "Get-PnPFileSharingLink", + "Rank": 1, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Rank": 1, "Id": 460, - "CommandName": "Get-PnPFileVersion" + "CommandName": "Get-PnPFileVersion", + "Rank": 1, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" }, { - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Rank": 2, "Id": 461, - "CommandName": "Get-PnPFileVersion" + "CommandName": "Get-PnPFileVersion", + "Rank": 2, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" }, { - "Command": "Get-PnPFlow -AsAdmin", - "Rank": 1, "Id": 462, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Rank": 1, + "Command": "Get-PnPFlow -AsAdmin" }, { - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "Rank": 2, "Id": 463, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Rank": 2, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe" }, { - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Rank": 3, "Id": 464, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Rank": 3, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "Rank": 1, "Id": 465, - "CommandName": "Get-PnPFlowOwner" + "CommandName": "Get-PnPFlowOwner", + "Rank": 1, + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" }, { - "Command": "Get-PnPFolder", - "Rank": 1, "Id": 466, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Rank": 1, + "Command": "Get-PnPFolder" }, { - "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Rank": 2, "Id": 467, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Rank": 2, + "Command": "Get-PnPFolder -Url \"Shared Documents\"" }, { - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Rank": 3, "Id": 468, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Rank": 3, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" }, { - "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Rank": 4, "Id": 469, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Rank": 4, + "Command": "Get-PnPFolder -List \"Shared Documents\"" }, { - "Command": "Get-PnPFolderFile", - "Rank": 1, "Id": 470, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Rank": 1, + "Command": "Get-PnPFolderFile" }, { - "Command": "Get-PnPFolderFile -Recurse", - "Rank": 2, "Id": 471, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Rank": 2, + "Command": "Get-PnPFolderFile -Recurse" }, { - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "Rank": 3, "Id": 472, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Rank": 3, + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"" }, { - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4, "Id": 473, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Rank": 4, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 5, "Id": 474, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Rank": 5, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Command": "Get-PnPFolderFolder", - "Rank": 1, "Id": 475, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Rank": 1, + "Command": "Get-PnPFolderFolder" }, { - "Command": "Get-PnPFolderFolder -Recurse", - "Rank": 2, "Id": 476, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Rank": 2, + "Command": "Get-PnPFolderFolder -Recurse" }, { - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "Rank": 3, "Id": 477, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Rank": 3, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"" }, { - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "Rank": 4, "Id": 478, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Rank": 4, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" }, { - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "Rank": 5, "Id": 479, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Rank": 5, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" }, { - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6, "Id": 480, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Rank": 6, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Command": "Get-PnPFolderItem", - "Rank": 1, "Id": 481, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 1, + "Command": "Get-PnPFolderItem" }, { - "Command": "Get-PnPFolderItem -Recurse", - "Rank": 2, "Id": 482, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 2, + "Command": "Get-PnPFolderItem -Recurse" }, { - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "Rank": 3, "Id": 483, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 3, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4, "Id": 484, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 4, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Rank": 5, "Id": 485, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 5, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6, "Id": 486, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Rank": 6, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, "Id": 487, - "CommandName": "Get-PnPFolderSharingLink" + "CommandName": "Get-PnPFolderSharingLink", + "Rank": 1, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Command": "Get-PnPFolderStorageMetric", - "Rank": 1, "Id": 488, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 1, + "Command": "Get-PnPFolderStorageMetric" }, { - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Rank": 2, "Id": 489, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 2, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" }, { - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Rank": 3, "Id": 490, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 3, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" }, { - "Command": "Get-PnPFooter", - "Rank": 1, "Id": 491, - "CommandName": "Get-PnPFooter" + "CommandName": "Get-PnPFooter", + "Rank": 1, + "Command": "Get-PnPFooter" }, { - "Command": "Get-PnPGraphAccessToken", - "Rank": 1, "Id": 492, - "CommandName": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPGraphAccessToken", + "Rank": 1, + "Command": "Get-PnPGraphAccessToken" }, { - "Command": "Get-PnPGraphAccessToken -Decoded", - "Rank": 2, "Id": 493, - "CommandName": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPGraphAccessToken", + "Rank": 2, + "Command": "Get-PnPGraphAccessToken -Decoded" }, { - "Command": "Get-PnPGraphSubscription", - "Rank": 1, "Id": 494, - "CommandName": "Get-PnPGraphSubscription" + "CommandName": "Get-PnPGraphSubscription", + "Rank": 1, + "Command": "Get-PnPGraphSubscription" }, { - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 2, "Id": 495, - "CommandName": "Get-PnPGraphSubscription" + "CommandName": "Get-PnPGraphSubscription", + "Rank": 2, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Command": "Get-PnPGroup", - "Rank": 1, "Id": 496, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Rank": 1, + "Command": "Get-PnPGroup" }, { - "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Rank": 2, "Id": 497, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Rank": 2, + "Command": "Get-PnPGroup -Identity 'My Site Users'" }, { - "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Rank": 3, "Id": 498, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Rank": 3, + "Command": "Get-PnPGroup -AssociatedMemberGroup" }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Rank": 1, "Id": 499, - "CommandName": "Get-PnPGroupMember" + "CommandName": "Get-PnPGroupMember", + "Rank": 1, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Rank": 2, "Id": 500, - "CommandName": "Get-PnPGroupMember" + "CommandName": "Get-PnPGroupMember", + "Rank": 2, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" }, { - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Rank": 1, "Id": 501, - "CommandName": "Get-PnPGroupPermissions" + "CommandName": "Get-PnPGroupPermissions", + "Rank": 1, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" }, { - "Command": "Get-PnPHideDefaultThemes", - "Rank": 1, "Id": 502, - "CommandName": "Get-PnPHideDefaultThemes" + "CommandName": "Get-PnPHideDefaultThemes", + "Rank": 1, + "Command": "Get-PnPHideDefaultThemes" }, { - "Command": "Get-PnPHomePage", - "Rank": 1, "Id": 503, - "CommandName": "Get-PnPHomePage" + "CommandName": "Get-PnPHomePage", + "Rank": 1, + "Command": "Get-PnPHomePage" }, { - "Command": "Get-PnPHomeSite", - "Rank": 1, "Id": 504, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Rank": 1, + "Command": "Get-PnPHomeSite" }, { - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Rank": 2, "Id": 505, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Rank": 2, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" }, { - "Command": "Get-PnPHomeSite -Detailed", - "Rank": 3, "Id": 506, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Rank": 3, + "Command": "Get-PnPHomeSite -Detailed" }, { - "Command": "Get-PnPHubSite", - "Rank": 1, "Id": 507, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Rank": 1, + "Command": "Get-PnPHubSite" }, { - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, "Id": 508, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Rank": 2, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Rank": 3, "Id": 509, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Rank": 3, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" }, { - "Command": "Get-PnPHubSiteChild", - "Rank": 1, "Id": 510, - "CommandName": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSiteChild", + "Rank": 1, + "Command": "Get-PnPHubSiteChild" }, { - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, "Id": 511, - "CommandName": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSiteChild", + "Rank": 2, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Command": "Get-PnPInPlaceRecordsManagement", - "Rank": 1, "Id": 512, - "CommandName": "Get-PnPInPlaceRecordsManagement" + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Rank": 1, + "Command": "Get-PnPInPlaceRecordsManagement" }, { - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Rank": 1, "Id": 513, - "CommandName": "Get-PnPIsSiteAliasAvailable" + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Rank": 1, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" }, { - "Command": "Get-PnPJavaScriptLink", - "Rank": 1, "Id": 514, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 1, + "Command": "Get-PnPJavaScriptLink" }, { - "Command": "Get-PnPJavaScriptLink -Scope All", - "Rank": 2, "Id": 515, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 2, + "Command": "Get-PnPJavaScriptLink -Scope All" }, { - "Command": "Get-PnPJavaScriptLink -Scope Web", - "Rank": 3, "Id": 516, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 3, + "Command": "Get-PnPJavaScriptLink -Scope Web" }, { - "Command": "Get-PnPJavaScriptLink -Scope Site", - "Rank": 4, "Id": 517, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 4, + "Command": "Get-PnPJavaScriptLink -Scope Site" }, { - "Command": "Get-PnPJavaScriptLink -Name Test", - "Rank": 5, "Id": 518, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 5, + "Command": "Get-PnPJavaScriptLink -Name Test" }, { - "Command": "Get-PnPKnowledgeHubSite", - "Rank": 1, "Id": 519, - "CommandName": "Get-PnPKnowledgeHubSite" + "CommandName": "Get-PnPKnowledgeHubSite", + "Rank": 1, + "Command": "Get-PnPKnowledgeHubSite" }, { - "Command": "Get-PnPLabel", - "Rank": 1, "Id": 520, - "CommandName": "Get-PnPLabel" + "CommandName": "Get-PnPLabel", + "Rank": 1, + "Command": "Get-PnPLabel" }, { - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Rank": 2, "Id": 521, - "CommandName": "Get-PnPLabel" + "CommandName": "Get-PnPLabel", + "Rank": 2, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" }, { - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Rank": 1, "Id": 522, - "CommandName": "Get-PnPLargeListOperationStatus" + "CommandName": "Get-PnPLargeListOperationStatus", + "Rank": 1, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" }, { - "Command": "Get-PnPList", - "Rank": 1, "Id": 523, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Rank": 1, + "Command": "Get-PnPList" }, { - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 2, "Id": 524, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Rank": 2, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Get-PnPList -Identity Lists/Announcements", - "Rank": 3, "Id": 525, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Rank": 3, + "Command": "Get-PnPList -Identity Lists/Announcements" }, { - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Rank": 4, "Id": 526, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Rank": 4, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" }, { - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Rank": 5, "Id": 527, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Rank": 5, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" }, { - "Command": "Get-PnPListDesign", - "Rank": 1, "Id": 528, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Rank": 1, + "Command": "Get-PnPListDesign" }, { - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, "Id": 529, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Rank": 2, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Get-PnPListDesign -Identity ListEvent", - "Rank": 3, "Id": 530, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Rank": 3, + "Command": "Get-PnPListDesign -Identity ListEvent" }, { - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Rank": 1, "Id": 531, - "CommandName": "Get-PnPListInformationRightsManagement" + "CommandName": "Get-PnPListInformationRightsManagement", + "Rank": 1, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" }, { - "Command": "Get-PnPListItem -List Tasks", - "Rank": 1, "Id": 532, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 1, + "Command": "Get-PnPListItem -List Tasks" }, { - "Command": "Get-PnPListItem -List Tasks -Id 1", - "Rank": 2, "Id": 533, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 2, + "Command": "Get-PnPListItem -List Tasks -Id 1" }, { - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Rank": 3, "Id": 534, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 3, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" }, { - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Rank": 4, "Id": 535, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 4, + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" }, { - "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Rank": 5, "Id": 536, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 5, + "Command": "Get-PnPListItem -List Tasks -Query \"\"" }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Rank": 6, "Id": 537, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 6, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000" }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "Rank": 7, "Id": 538, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 7, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" }, { - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Rank": 8, "Id": 539, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 8, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" }, { - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Rank": 9, "Id": 540, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Rank": 9, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" }, { - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "Rank": 1, "Id": 541, - "CommandName": "Get-PnPListItemAttachment" + "CommandName": "Get-PnPListItemAttachment", + "Rank": 1, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" }, { - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "Rank": 2, "Id": 542, - "CommandName": "Get-PnPListItemAttachment" + "CommandName": "Get-PnPListItemAttachment", + "Rank": 2, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" }, { - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Rank": 1, "Id": 543, - "CommandName": "Get-PnPListItemComment" + "CommandName": "Get-PnPListItemComment", + "Rank": 1, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1" }, { - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Rank": 1, "Id": 544, - "CommandName": "Get-PnPListItemPermission" + "CommandName": "Get-PnPListItemPermission", + "Rank": 1, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" }, { - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Rank": 1, "Id": 545, - "CommandName": "Get-PnPListItemVersion" + "CommandName": "Get-PnPListItemVersion", + "Rank": 1, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Rank": 1, "Id": 546, - "CommandName": "Get-PnPListPermissions" + "CommandName": "Get-PnPListPermissions", + "Rank": 1, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Rank": 2, "Id": 547, - "CommandName": "Get-PnPListPermissions" + "CommandName": "Get-PnPListPermissions", + "Rank": 2, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Rank": 1, "Id": 548, - "CommandName": "Get-PnPListRecordDeclaration" + "CommandName": "Get-PnPListRecordDeclaration", + "Rank": 1, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" }, { - "Command": "Get-PnPMasterPage", - "Rank": 1, "Id": 549, - "CommandName": "Get-PnPMasterPage" + "CommandName": "Get-PnPMasterPage", + "Rank": 1, + "Command": "Get-PnPMasterPage" }, { - "Command": "Get-PnPMessageCenterAnnouncement", - "Rank": 1, "Id": 550, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Rank": 1, + "Command": "Get-PnPMessageCenterAnnouncement" }, { - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Rank": 2, "Id": 551, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Rank": 2, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1, "Id": 552, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 1, + "Command": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Rank": 2, "Id": 553, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 2, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" }, { - "Command": "Get-PnPMicrosoft365Group", - "Rank": 1, "Id": 554, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 1, + "Command": "Get-PnPMicrosoft365Group" }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Rank": 2, "Id": 555, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 2, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId" }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Rank": 3, "Id": 556, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 3, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Rank": 4, "Id": 557, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 4, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" }, { - "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Rank": 5, "Id": 558, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 5, + "Command": "Get-PnPMicrosoft365Group -Identity $group" }, { - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Rank": 6, "Id": 559, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 6, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1, "Id": 560, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Rank": 2, "Id": 561, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, "Id": 562, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Rank": 1, "Id": 563, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Rank": 2, "Id": 564, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Rank": 3, "Id": 565, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Rank": 1, "Id": 566, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Rank": 2, "Id": 567, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" }, { - "Command": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1, "Id": 568, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupSettings" }, { - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Rank": 2, "Id": 569, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1, "Id": 570, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Rank": 2, "Id": 571, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" }, { - "Command": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1, "Id": 572, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupTeam" }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Rank": 2, "Id": 573, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, "Id": 574, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1, "Id": 575, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Rank": 2, "Id": 576, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, "Id": 577, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Command": "Get-PnPNavigationNode", - "Rank": 1, "Id": 578, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Rank": 1, + "Command": "Get-PnPNavigationNode" }, { - "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Rank": 2, "Id": 579, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Rank": 2, + "Command": "Get-PnPNavigationNode -Location QuickLaunch" }, { - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Rank": 3, "Id": 580, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Rank": 3, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar" }, { - "Command": "Get-PnPOrgAssetsLibrary", - "Rank": 1, "Id": 581, - "CommandName": "Get-PnPOrgAssetsLibrary" + "CommandName": "Get-PnPOrgAssetsLibrary", + "Rank": 1, + "Command": "Get-PnPOrgAssetsLibrary" }, { - "Command": "Get-PnPOrgNewsSite", - "Rank": 1, "Id": 582, - "CommandName": "Get-PnPOrgNewsSite" + "CommandName": "Get-PnPOrgNewsSite", + "Rank": 1, + "Command": "Get-PnPOrgNewsSite" }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Rank": 1, "Id": 583, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Rank": 1, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" }, { - "Command": "Get-PnPPage \"MyPage\"", - "Rank": 2, "Id": 584, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Rank": 2, + "Command": "Get-PnPPage \"MyPage\"" }, { - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Rank": 3, "Id": 585, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Rank": 3, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Rank": 4, "Id": 586, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Rank": 4, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" }, { - "Command": "Get-PnPPageComponent -Page Home", - "Rank": 1, "Id": 587, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Rank": 1, + "Command": "Get-PnPPageComponent -Page Home" }, { - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2, "Id": 588, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Rank": 2, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Rank": 3, "Id": 589, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Rank": 3, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable" }, { - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, "Id": 590, - "CommandName": "Get-PnPPlannerBucket" + "CommandName": "Get-PnPPlannerBucket", + "Rank": 1, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Command": "Get-PnPPlannerConfiguration", - "Rank": 1, "Id": 591, - "CommandName": "Get-PnPPlannerConfiguration" + "CommandName": "Get-PnPPlannerConfiguration", + "Rank": 1, + "Command": "Get-PnPPlannerConfiguration" }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Rank": 1, "Id": 592, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Rank": 1, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Rank": 2, "Id": 593, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Rank": 2, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" }, { - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Rank": 3, "Id": 594, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Rank": 3, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" }, { - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, "Id": 595, - "CommandName": "Get-PnPPlannerRosterMember" + "CommandName": "Get-PnPPlannerRosterMember", + "Rank": 1, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Rank": 1, "Id": 596, - "CommandName": "Get-PnPPlannerRosterPlan" + "CommandName": "Get-PnPPlannerRosterPlan", + "Rank": 1, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" }, { - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 2, "Id": 597, - "CommandName": "Get-PnPPlannerRosterPlan" + "CommandName": "Get-PnPPlannerRosterPlan", + "Rank": 2, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, "Id": 598, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Rank": 1, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 2, "Id": 599, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Rank": 2, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 3, "Id": 600, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Rank": 3, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 601, - "CommandName": "Get-PnPPlannerUserPolicy" + "CommandName": "Get-PnPPlannerUserPolicy", + "Rank": 1, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "Rank": 1, "Id": 602, - "CommandName": "Get-PnPPowerPlatformConnector" + "CommandName": "Get-PnPPowerPlatformConnector", + "Rank": 1, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" }, { - "Command": "Get-PnPPowerPlatformEnvironment", - "Rank": 1, "Id": 603, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 1, + "Command": "Get-PnPPowerPlatformEnvironment" }, { - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Rank": 2, "Id": 604, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 2, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" }, { - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Rank": 3, "Id": 605, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 3, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" }, { - "Command": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1, "Id": 606, - "CommandName": "Get-PnPPowerShellTelemetryEnabled" + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1, + "Command": "Get-PnPPowerShellTelemetryEnabled" }, { - "Command": "Get-PnPPropertyBag", - "Rank": 1, "Id": 607, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Rank": 1, + "Command": "Get-PnPPropertyBag" }, { - "Command": "Get-PnPPropertyBag -Key MyKey", - "Rank": 2, "Id": 608, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Rank": 2, + "Command": "Get-PnPPropertyBag -Key MyKey" }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Rank": 3, "Id": 609, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Rank": 3, + "Command": "Get-PnPPropertyBag -Folder /MyFolder" }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Rank": 4, "Id": 610, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Rank": 4, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" }, { - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Rank": 5, "Id": 611, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Rank": 5, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" }, { - "Command": "Get-PnPPublishingImageRendition", - "Rank": 1, "Id": 612, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 1, + "Command": "Get-PnPPublishingImageRendition" }, { - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Rank": 2, "Id": 613, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 2, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" }, { - "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Rank": 3, "Id": 614, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 3, + "Command": "Get-PnPPublishingImageRendition -Identity 2" }, { - "Command": "Get-PnPRecycleBinItem", - "Rank": 1, "Id": 615, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 1, + "Command": "Get-PnPRecycleBinItem" }, { - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Rank": 2, "Id": 616, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 2, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" }, { - "Command": "Get-PnPRecycleBinItem -FirstStage", - "Rank": 3, "Id": 617, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 3, + "Command": "Get-PnPRecycleBinItem -FirstStage" }, { - "Command": "Get-PnPRecycleBinItem -SecondStage", - "Rank": 4, "Id": 618, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 4, + "Command": "Get-PnPRecycleBinItem -SecondStage" }, { - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Rank": 5, "Id": 619, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 5, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000" }, { - "Command": "Get-PnPRequestAccessEmails", - "Rank": 1, "Id": 620, - "CommandName": "Get-PnPRequestAccessEmails" + "CommandName": "Get-PnPRequestAccessEmails", + "Rank": 1, + "Command": "Get-PnPRequestAccessEmails" }, { - "Command": "Get-PnPRetentionLabel", - "Rank": 1, "Id": 621, - "CommandName": "Get-PnPRetentionLabel" + "CommandName": "Get-PnPRetentionLabel", + "Rank": 1, + "Command": "Get-PnPRetentionLabel" }, { - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", - "Rank": 2, "Id": 622, - "CommandName": "Get-PnPRetentionLabel" + "CommandName": "Get-PnPRetentionLabel", + "Rank": 2, + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" }, { - "Command": "Get-PnPRoleDefinition", - "Rank": 1, "Id": 623, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Rank": 1, + "Command": "Get-PnPRoleDefinition" }, { - "Command": "Get-PnPRoleDefinition -Identity Read", - "Rank": 2, "Id": 624, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Rank": 2, + "Command": "Get-PnPRoleDefinition -Identity Read" }, { - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Rank": 3, "Id": 625, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Rank": 3, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" }, { - "Command": "Get-PnPSearchConfiguration", - "Rank": 1, "Id": 626, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 1, + "Command": "Get-PnPSearchConfiguration" }, { - "Command": "Get-PnPSearchConfiguration -Scope Site", - "Rank": 2, "Id": 627, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 2, + "Command": "Get-PnPSearchConfiguration -Scope Site" }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Rank": 3, "Id": 628, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 3, + "Command": "Get-PnPSearchConfiguration -Scope Subscription" }, { - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, "Id": 629, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 4, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Rank": 5, "Id": 630, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 5, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Rank": 6, "Id": 631, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 6, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Rank": 7, "Id": 632, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 7, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Rank": 8, "Id": 633, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 8, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" }, { - "Command": "Get-PnPSearchCrawlLog", - "Rank": 1, "Id": 634, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 1, + "Command": "Get-PnPSearchCrawlLog" }, { - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Rank": 2, "Id": 635, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 2, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Rank": 3, "Id": 636, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 3, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Rank": 4, "Id": 637, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 4, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Rank": 5, "Id": 638, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 5, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" }, { - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Rank": 6, "Id": 639, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 6, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" }, { - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Rank": 7, "Id": 640, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 7, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" }, { - "Command": "Get-PnPSearchSettings", - "Rank": 1, "Id": 641, - "CommandName": "Get-PnPSearchSettings" + "CommandName": "Get-PnPSearchSettings", + "Rank": 1, + "Command": "Get-PnPSearchSettings" }, { - "Command": "Get-PnPServiceCurrentHealth", - "Rank": 1, "Id": 642, - "CommandName": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPServiceCurrentHealth", + "Rank": 1, + "Command": "Get-PnPServiceCurrentHealth" }, { - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Rank": 2, "Id": 643, - "CommandName": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPServiceCurrentHealth", + "Rank": 2, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" }, { - "Command": "Get-PnPServiceHealthIssue", - "Rank": 1, "Id": 644, - "CommandName": "Get-PnPServiceHealthIssue" + "CommandName": "Get-PnPServiceHealthIssue", + "Rank": 1, + "Command": "Get-PnPServiceHealthIssue" }, { - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Rank": 2, "Id": 645, - "CommandName": "Get-PnPServiceHealthIssue" + "CommandName": "Get-PnPServiceHealthIssue", + "Rank": 2, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" }, { - "Command": "Get-PnPSharePointAddIn", - "Rank": 1, "Id": 646, - "CommandName": "Get-PnPSharePointAddIn" + "CommandName": "Get-PnPSharePointAddIn", + "Rank": 1, + "Command": "Get-PnPSharePointAddIn" }, { - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Rank": 2, "Id": 647, - "CommandName": "Get-PnPSharePointAddIn" + "CommandName": "Get-PnPSharePointAddIn", + "Rank": 2, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites" }, { - "Command": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1, "Id": 648, - "CommandName": "Get-PnPSharingForNonOwnersOfSite" + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Rank": 1, + "Command": "Get-PnPSharingForNonOwnersOfSite" }, { - "Command": "Get-PnPSite", - "Rank": 1, "Id": 649, - "CommandName": "Get-PnPSite" + "CommandName": "Get-PnPSite", + "Rank": 1, + "Command": "Get-PnPSite" }, { - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Rank": 2, "Id": 650, - "CommandName": "Get-PnPSite" + "CommandName": "Get-PnPSite", + "Rank": 2, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" }, { - "Command": "Get-PnPSiteClosure", - "Rank": 1, "Id": 651, - "CommandName": "Get-PnPSiteClosure" + "CommandName": "Get-PnPSiteClosure", + "Rank": 1, + "Command": "Get-PnPSiteClosure" }, { - "Command": "Get-PnPSiteCollectionAdmin", - "Rank": 1, "Id": 652, - "CommandName": "Get-PnPSiteCollectionAdmin" + "CommandName": "Get-PnPSiteCollectionAdmin", + "Rank": 1, + "Command": "Get-PnPSiteCollectionAdmin" }, { - "Command": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1, "Id": 653, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 1, + "Command": "Get-PnPSiteCollectionAppCatalog" }, { - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Rank": 2, "Id": 654, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 2, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" }, { - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Rank": 3, "Id": 655, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 3, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" }, { - "Command": "Get-PnPSiteCollectionTermStore", - "Rank": 1, "Id": 656, - "CommandName": "Get-PnPSiteCollectionTermStore" + "CommandName": "Get-PnPSiteCollectionTermStore", + "Rank": 1, + "Command": "Get-PnPSiteCollectionTermStore" }, { - "Command": "Get-PnPSiteDesign", - "Rank": 1, "Id": 657, - "CommandName": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteDesign", + "Rank": 1, + "Command": "Get-PnPSiteDesign" }, { - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, "Id": 658, - "CommandName": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteDesign", + "Rank": 2, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "Id": 659, - "CommandName": "Get-PnPSiteDesignRights" + "CommandName": "Get-PnPSiteDesignRights", + "Rank": 1, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Get-PnPSiteDesignRun", - "Rank": 1, "Id": 660, - "CommandName": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesignRun", + "Rank": 1, + "Command": "Get-PnPSiteDesignRun" }, { - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Rank": 2, "Id": 661, - "CommandName": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesignRun", + "Rank": 2, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" }, { - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1, "Id": 662, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 1, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Command": "Get-PnPSiteDesignTask", - "Rank": 2, "Id": 663, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 2, + "Command": "Get-PnPSiteDesignTask" }, { - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 3, "Id": 664, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 3, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Command": "Get-PnPSiteGroup", - "Rank": 1, "Id": 665, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Rank": 1, + "Command": "Get-PnPSiteGroup" }, { - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 2, "Id": 666, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Rank": 2, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Rank": 3, "Id": 667, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Rank": 3, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 4, "Id": 668, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Rank": 4, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Command": "Get-PnPSitePolicy", - "Rank": 1, "Id": 669, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Rank": 1, + "Command": "Get-PnPSitePolicy" }, { - "Command": "Get-PnPSitePolicy -AllAvailable", - "Rank": 2, "Id": 670, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Rank": 2, + "Command": "Get-PnPSitePolicy -AllAvailable" }, { - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 3, "Id": 671, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Rank": 3, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Command": "Get-PnPSiteScript", - "Rank": 1, "Id": 672, - "CommandName": "Get-PnPSiteScript" + "CommandName": "Get-PnPSiteScript", + "Rank": 1, + "Command": "Get-PnPSiteScript" }, { - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, "Id": 673, - "CommandName": "Get-PnPSiteScript" + "CommandName": "Get-PnPSiteScript", + "Rank": 2, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Rank": 1, "Id": 674, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 1, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Rank": 2, "Id": 675, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 2, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Rank": 3, "Id": 676, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 3, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Rank": 1, "Id": 677, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 1, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Rank": 2, "Id": 678, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 2, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "Rank": 3, "Id": 679, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 3, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Rank": 4, "Id": 680, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 4, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Rank": 5, "Id": 681, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 5, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "Rank": 6, "Id": 682, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 6, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" }, { - "Command": "Get-PnPSiteSearchQueryResults", - "Rank": 1, "Id": 683, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 1, + "Command": "Get-PnPSiteSearchQueryResults" }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Rank": 2, "Id": 684, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 2, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Rank": 3, "Id": 685, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 3, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Rank": 4, "Id": 686, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 4, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" }, { - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Rank": 5, "Id": 687, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 5, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" }, { - "Command": "Get-PnPSiteSearchQueryResults -All", - "Rank": 6, "Id": 688, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 6, + "Command": "Get-PnPSiteSearchQueryResults -All" }, { - "Command": "Get-PnPSiteSensitivityLabel", - "Rank": 1, "Id": 689, - "CommandName": "Get-PnPSiteSensitivityLabel" + "CommandName": "Get-PnPSiteSensitivityLabel", + "Rank": 1, + "Command": "Get-PnPSiteSensitivityLabel" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Rank": 1, "Id": 690, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 1, + "Command": "Get-PnPSiteTemplate -Out template.pnp" }, { - "Command": "Get-PnPSiteTemplate -Out template.xml", - "Rank": 2, "Id": 691, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 2, + "Command": "Get-PnPSiteTemplate -Out template.xml" }, { - "Command": "Get-PnPSiteTemplate -Out template.md", - "Rank": 3, "Id": 692, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 3, + "Command": "Get-PnPSiteTemplate -Out template.md" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Rank": 4, "Id": 693, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 4, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Rank": 5, "Id": 694, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 5, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Rank": 6, "Id": 695, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 6, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Rank": 7, "Id": 696, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 7, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Rank": 8, "Id": 697, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 8, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Rank": 9, "Id": 698, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 9, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Rank": 10, "Id": 699, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 10, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Rank": 11, "Id": 700, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 11, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Rank": 12, "Id": 701, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 12, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", - "Rank": 13, "Id": 702, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 13, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" }, { - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Rank": 14, "Id": 703, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Rank": 14, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" }, { - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1, "Id": 704, - "CommandName": "Get-PnPSiteUserInvitations" + "CommandName": "Get-PnPSiteUserInvitations", + "Rank": 1, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Command": "Get-PnPStorageEntity", - "Rank": 1, "Id": 705, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Rank": 1, + "Command": "Get-PnPStorageEntity" }, { - "Command": "Get-PnPStorageEntity -Key MyKey", - "Rank": 2, "Id": 706, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Rank": 2, + "Command": "Get-PnPStorageEntity -Key MyKey" }, { - "Command": "Get-PnPStorageEntity -Scope Site", - "Rank": 3, "Id": 707, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Rank": 3, + "Command": "Get-PnPStorageEntity -Scope Site" }, { - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 4, "Id": 708, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Rank": 4, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Command": "Get-PnPStoredCredential -Name O365", - "Rank": 1, "Id": 709, - "CommandName": "Get-PnPStoredCredential" + "CommandName": "Get-PnPStoredCredential", + "Rank": 1, + "Command": "Get-PnPStoredCredential -Name O365" }, { - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1, "Id": 710, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState" + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Rank": 1, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1, "Id": 711, - "CommandName": "Get-PnPStructuralNavigationCacheWebState" + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Rank": 1, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Rank": 1, "Id": 712, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest" + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Rank": 1, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" }, { - "Command": "Get-PnPSubWeb", - "Rank": 1, "Id": 713, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Rank": 1, + "Command": "Get-PnPSubWeb" }, { - "Command": "Get-PnPSubWeb -Recurse", - "Rank": 2, "Id": 714, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Rank": 2, + "Command": "Get-PnPSubWeb -Recurse" }, { - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Rank": 3, "Id": 715, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Rank": 3, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Rank": 4, "Id": 716, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Rank": 4, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Rank": 5, "Id": 717, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Rank": 5, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" }, { - "Command": "Get-PnPSyntexModel", - "Rank": 1, "Id": 718, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Rank": 1, + "Command": "Get-PnPSyntexModel" }, { - "Command": "Get-PnPSyntexModel -Identity 1", - "Rank": 2, "Id": 719, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Rank": 2, + "Command": "Get-PnPSyntexModel -Identity 1" }, { - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Rank": 3, "Id": 720, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Rank": 3, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" }, { - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Rank": 1, "Id": 721, - "CommandName": "Get-PnPSyntexModelPublication" + "CommandName": "Get-PnPSyntexModelPublication", + "Rank": 1, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" }, { - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Rank": 1, "Id": 722, - "CommandName": "Get-PnPTaxonomyItem" + "CommandName": "Get-PnPTaxonomyItem", + "Rank": 1, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" }, { - "Command": "Get-PnPTeamsApp", - "Rank": 1, "Id": 723, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Rank": 1, + "Command": "Get-PnPTeamsApp" }, { - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Rank": 2, "Id": 724, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Rank": 2, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" }, { - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Rank": 3, "Id": 725, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Rank": 3, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Rank": 1, "Id": 726, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Rank": 1, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Rank": 2, "Id": 727, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Rank": 2, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 3, "Id": 728, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Rank": 3, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Rank": 1, "Id": 729, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Rank": 1, + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" }, { - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 2, "Id": 730, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Rank": 2, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Rank": 1, "Id": 731, - "CommandName": "Get-PnPTeamsChannelMessage" + "CommandName": "Get-PnPTeamsChannelMessage", + "Rank": 1, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Rank": 2, "Id": 732, - "CommandName": "Get-PnPTeamsChannelMessage" + "CommandName": "Get-PnPTeamsChannelMessage", + "Rank": 2, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Rank": 1, "Id": 733, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Rank": 1, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Rank": 2, "Id": 734, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Rank": 2, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 1, "Id": 735, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 1, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Rank": 2, "Id": 736, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 2, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Rank": 3, "Id": 737, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 3, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4, "Id": 738, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 4, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Rank": 1, "Id": 739, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Rank": 1, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Rank": 2, "Id": 740, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Rank": 2, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Rank": 1, "Id": 741, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Rank": 1, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "Rank": 2, "Id": 742, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Rank": 2, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", - "Rank": 3, "Id": 743, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Rank": 3, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 4, "Id": 744, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Rank": 4, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Rank": 5, "Id": 745, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Rank": 5, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, "Id": 746, - "CommandName": "Get-PnPTeamsTag" + "CommandName": "Get-PnPTeamsTag", + "Rank": 1, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 2, "Id": 747, - "CommandName": "Get-PnPTeamsTag" + "CommandName": "Get-PnPTeamsTag", + "Rank": 2, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Command": "Get-PnPTeamsTeam", - "Rank": 1, "Id": 748, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 1, + "Command": "Get-PnPTeamsTeam" }, { - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Rank": 2, "Id": 749, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 2, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" }, { - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Rank": 3, "Id": 750, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 3, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Rank": 4, "Id": 751, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 4, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, "Id": 752, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Rank": 5, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" }, { - "Command": "Get-PnPTeamsUser -Team MyTeam", - "Rank": 1, "Id": 753, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Rank": 1, + "Command": "Get-PnPTeamsUser -Team MyTeam" }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Rank": 2, "Id": 754, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Rank": 2, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Rank": 3, "Id": 755, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Rank": 3, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Rank": 4, "Id": 756, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Rank": 4, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" }, { - "Command": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1, "Id": 757, - "CommandName": "Get-PnPTemporarilyDisableAppBar" + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Rank": 1, + "Command": "Get-PnPTemporarilyDisableAppBar" }, { - "Command": "Get-PnPTenant", - "Rank": 1, "Id": 758, - "CommandName": "Get-PnPTenant" + "CommandName": "Get-PnPTenant", + "Rank": 1, + "Command": "Get-PnPTenant" }, { - "Command": "Get-PnPTenantAppCatalogUrl", - "Rank": 1, "Id": 759, - "CommandName": "Get-PnPTenantAppCatalogUrl" + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Rank": 1, + "Command": "Get-PnPTenantAppCatalogUrl" }, { - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Rank": 1, "Id": 760, - "CommandName": "Get-PnPTenantCdnEnabled" + "CommandName": "Get-PnPTenantCdnEnabled", + "Rank": 1, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public" }, { - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Rank": 1, "Id": 761, - "CommandName": "Get-PnPTenantCdnOrigin" + "CommandName": "Get-PnPTenantCdnOrigin", + "Rank": 1, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public" }, { - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Rank": 1, "Id": 762, - "CommandName": "Get-PnPTenantCdnPolicies" + "CommandName": "Get-PnPTenantCdnPolicies", + "Rank": 1, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public" }, { - "Command": "Get-PnPTenantDeletedSite", - "Rank": 1, "Id": 763, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 1, + "Command": "Get-PnPTenantDeletedSite" }, { - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 2, "Id": 764, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 2, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Rank": 3, "Id": 765, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 3, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" }, { - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Rank": 4, "Id": 766, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 4, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" }, { - "Command": "Get-PnPTenantId", - "Rank": 1, "Id": 767, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Rank": 1, + "Command": "Get-PnPTenantId" }, { - "Command": "Get-PnPTenantId contoso", - "Rank": 2, "Id": 768, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Rank": 2, + "Command": "Get-PnPTenantId contoso" }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Rank": 3, "Id": 769, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Rank": 3, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Rank": 4, "Id": 770, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Rank": 4, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" }, { - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "Rank": 1, "Id": 771, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Rank": 1, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" }, { - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "Rank": 2, "Id": 772, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Rank": 2, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" }, { - "Command": "Get-PnPTenantInfo", - "Rank": 3, "Id": 773, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Rank": 3, + "Command": "Get-PnPTenantInfo" }, { - "Command": "Get-PnPTenantInfo -CurrentTenant", - "Rank": 4, "Id": 774, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Rank": 4, + "Command": "Get-PnPTenantInfo -CurrentTenant" }, { - "Command": "Get-PnPTenantInstance", - "Rank": 1, "Id": 775, - "CommandName": "Get-PnPTenantInstance" + "CommandName": "Get-PnPTenantInstance", + "Rank": 1, + "Command": "Get-PnPTenantInstance" }, { - "Command": "Get-PnPTenantRecycleBinItem", - "Rank": 1, "Id": 776, - "CommandName": "Get-PnPTenantRecycleBinItem" + "CommandName": "Get-PnPTenantRecycleBinItem", + "Rank": 1, + "Command": "Get-PnPTenantRecycleBinItem" }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Rank": 1, "Id": 777, - "CommandName": "Get-PnPTenantSequence" + "CommandName": "Get-PnPTenantSequence", + "Rank": 1, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject" }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Rank": 2, "Id": 778, - "CommandName": "Get-PnPTenantSequence" + "CommandName": "Get-PnPTenantSequence", + "Rank": 2, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Rank": 1, "Id": 779, - "CommandName": "Get-PnPTenantSequenceSite" + "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 1, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Rank": 2, "Id": 780, - "CommandName": "Get-PnPTenantSequenceSite" + "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 2, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" }, { - "Command": "Get-PnPTenantSite", - "Rank": 1, "Id": 781, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 1, + "Command": "Get-PnPTenantSite" }, { - "Command": "Get-PnPTenantSite -Detailed", - "Rank": 2, "Id": 782, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 2, + "Command": "Get-PnPTenantSite -Detailed" }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Rank": 3, "Id": 783, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 3, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites" }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Rank": 4, "Id": 784, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 4, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" }, { - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Rank": 5, "Id": 785, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 5, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" }, { - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Rank": 6, "Id": 786, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 6, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" }, { - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Rank": 7, "Id": 787, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 7, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" }, { - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Rank": 8, "Id": 788, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 8, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" }, { - "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Rank": 9, "Id": 789, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Rank": 9, + "Command": "Get-PnPTenantSite -GroupIdDefined $true" }, { - "Command": "Get-PnPTenantSyncClientRestriction", - "Rank": 1, "Id": 790, - "CommandName": "Get-PnPTenantSyncClientRestriction" + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Rank": 1, + "Command": "Get-PnPTenantSyncClientRestriction" }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Rank": 1, "Id": 791, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Rank": 1, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Rank": 2, "Id": 792, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Rank": 2, + "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 -Force", - "Rank": 3, "Id": 793, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Rank": 3, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" }, { - "Command": "Get-PnPTenantTheme", - "Rank": 1, "Id": 794, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Rank": 1, + "Command": "Get-PnPTenantTheme" }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 2, "Id": 795, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Rank": 2, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Rank": 3, "Id": 796, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Rank": 3, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" }, { - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 1, "Id": 797, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Rank": 1, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, "Id": 798, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Rank": 2, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, "Id": 799, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Rank": 3, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Rank": 4, "Id": 800, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Rank": 4, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" }, { - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Rank": 5, "Id": 801, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Rank": 5, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" }, { - "Command": "Get-PnPTermGroup", - "Rank": 1, "Id": 802, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Rank": 1, + "Command": "Get-PnPTermGroup" }, { - "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Rank": 2, "Id": 803, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Rank": 2, + "Command": "Get-PnPTermGroup -Identity \"Departments\"" }, { - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Rank": 3, "Id": 804, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Rank": 3, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Rank": 1, "Id": 805, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Rank": 1, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Rank": 2, "Id": 806, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Rank": 2, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" }, { - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, "Id": 807, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Rank": 3, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Rank": 1, "Id": 808, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Rank": 1, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" }, { - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, "Id": 809, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Rank": 2, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" }, { - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Rank": 3, "Id": 810, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Rank": 3, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" }, { - "Command": "Get-PnPTheme", - "Rank": 1, "Id": 811, - "CommandName": "Get-PnPTheme" + "CommandName": "Get-PnPTheme", + "Rank": 1, + "Command": "Get-PnPTheme" }, { - "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Rank": 2, "Id": 812, - "CommandName": "Get-PnPTheme" + "CommandName": "Get-PnPTheme", + "Rank": 2, + "Command": "Get-PnPTheme -DetectCurrentComposedLook" }, { - "Command": "Get-PnPTimeZoneId", - "Rank": 1, "Id": 813, - "CommandName": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTimeZoneId", + "Rank": 1, + "Command": "Get-PnPTimeZoneId" }, { - "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Rank": 2, "Id": 814, - "CommandName": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTimeZoneId", + "Rank": 2, + "Command": "Get-PnPTimeZoneId -Match Stockholm" }, { - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Rank": 1, "Id": 815, - "CommandName": "Get-PnPUnfurlLink" + "CommandName": "Get-PnPUnfurlLink", + "Rank": 1, + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" }, { - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Rank": 1, "Id": 816, - "CommandName": "Get-PnPUnifiedAuditLog" + "CommandName": "Get-PnPUnifiedAuditLog", + "Rank": 1, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" }, { - "Command": "Get-PnPUPABulkImportStatus", - "Rank": 1, "Id": 817, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 1, + "Command": "Get-PnPUPABulkImportStatus" }, { - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Rank": 2, "Id": 818, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 2, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" }, { - "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Rank": 3, "Id": 819, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 3, + "Command": "Get-PnPUPABulkImportStatus -JobId " }, { - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Rank": 4, "Id": 820, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 4, + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" }, { - "Command": "Get-PnPUser", - "Rank": 1, "Id": 821, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 1, + "Command": "Get-PnPUser" }, { - "Command": "Get-PnPUser -Identity 23", - "Rank": 2, "Id": 822, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 2, + "Command": "Get-PnPUser -Identity 23" }, { - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Rank": 3, "Id": 823, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 3, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" }, { - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Rank": 4, "Id": 824, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 4, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" }, { - "Command": "Get-PnPUser -WithRightsAssigned", - "Rank": 5, "Id": 825, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 5, + "Command": "Get-PnPUser -WithRightsAssigned" }, { - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Rank": 6, "Id": 826, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 6, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" }, { - "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Rank": 7, "Id": 827, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Rank": 7, + "Command": "Get-PnPUser -WithRightsAssignedDetailed" }, { - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Rank": 1, "Id": 828, - "CommandName": "Get-PnPUserOneDriveQuota" + "CommandName": "Get-PnPUserOneDriveQuota", + "Rank": 1, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Rank": 1, "Id": 829, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Rank": 1, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Rank": 2, "Id": 830, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Rank": 2, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Rank": 3, "Id": 831, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Rank": 3, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" }, { - "Command": "Get-PnPView -List \"Demo List\"", - "Rank": 1, "Id": 832, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Rank": 1, + "Command": "Get-PnPView -List \"Demo List\"" }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Rank": 2, "Id": 833, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Rank": 2, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Rank": 3, "Id": 834, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Rank": 3, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" }, { - "Command": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1, "Id": 835, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 1, + "Command": "Get-PnPVivaConnectionsDashboardACE" }, { - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 2, "Id": 836, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 2, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Command": "Get-PnPWeb", - "Rank": 1, "Id": 837, - "CommandName": "Get-PnPWeb" + "CommandName": "Get-PnPWeb", + "Rank": 1, + "Command": "Get-PnPWeb" }, { - "Command": "Get-PnPWebHeader", - "Rank": 1, "Id": 838, - "CommandName": "Get-PnPWebHeader" + "CommandName": "Get-PnPWebHeader", + "Rank": 1, + "Command": "Get-PnPWebHeader" }, { - "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Rank": 1, "Id": 839, - "CommandName": "Get-PnPWebhookSubscriptions" + "CommandName": "Get-PnPWebhookSubscriptions", + "Rank": 1, + "Command": "Get-PnPWebhookSubscriptions -List MyList" }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Rank": 1, "Id": 840, - "CommandName": "Get-PnPWebPart" + "CommandName": "Get-PnPWebPart", + "Rank": 1, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2, "Id": 841, - "CommandName": "Get-PnPWebPart" + "CommandName": "Get-PnPWebPart", + "Rank": 2, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Rank": 1, "Id": 842, - "CommandName": "Get-PnPWebPartProperty" + "CommandName": "Get-PnPWebPartProperty", + "Rank": 1, + "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 -Key \"Title\"", - "Rank": 2, "Id": 843, - "CommandName": "Get-PnPWebPartProperty" + "CommandName": "Get-PnPWebPartProperty", + "Rank": 2, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" }, { - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, "Id": 844, - "CommandName": "Get-PnPWebPartXml" + "CommandName": "Get-PnPWebPartXml", + "Rank": 1, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Command": "Get-PnPWebTemplates", - "Rank": 1, "Id": 845, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Rank": 1, + "Command": "Get-PnPWebTemplates" }, { - "Command": "Get-PnPWebTemplates -LCID 1033", - "Rank": 2, "Id": 846, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Rank": 2, + "Command": "Get-PnPWebTemplates -LCID 1033" }, { - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Rank": 3, "Id": 847, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Rank": 3, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" }, { - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Rank": 1, "Id": 848, - "CommandName": "Get-PnPWikiPageContent" + "CommandName": "Get-PnPWikiPageContent", + "Rank": 1, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" }, { - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Rank": 1, "Id": 849, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Rank": 1, + "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 Write -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2, "Id": 850, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Rank": 2, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" }, { - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, "Id": 851, - "CommandName": "Grant-PnPHubSiteRights" + "CommandName": "Grant-PnPHubSiteRights", + "Rank": 1, + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, "Id": 852, - "CommandName": "Grant-PnPSiteDesignRights" + "CommandName": "Grant-PnPSiteDesignRights", + "Rank": 1, + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1, "Id": 853, - "CommandName": "Grant-PnPTenantServicePrincipalPermission" + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Rank": 1, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Rank": 1, "Id": 854, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Rank": 1, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Rank": 2, "Id": 855, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Rank": 2, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" }, { - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Rank": 3, "Id": 856, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Rank": 3, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" }, { - "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Rank": 1, "Id": 857, - "CommandName": "Import-PnPTermGroupFromXml" + "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 1, + "Command": "Import-PnPTermGroupFromXml -Xml $xml" }, { - "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Rank": 2, "Id": 858, - "CommandName": "Import-PnPTermGroupFromXml" + "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 2, + "Command": "Import-PnPTermGroupFromXml -Path input.xml" }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Rank": 1, "Id": 859, - "CommandName": "Import-PnPTermSet" + "CommandName": "Import-PnPTermSet", + "Rank": 1, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" }, { - "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", - "Rank": 2, "Id": 860, - "CommandName": "Import-PnPTermSet" + "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}'" }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", - "Rank": 3, "Id": 861, - "CommandName": "Import-PnPTermSet" + "CommandName": "Import-PnPTermSet", + "Rank": 3, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "Id": 862, - "CommandName": "Install-PnPApp" + "CommandName": "Install-PnPApp", + "Rank": 1, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "Id": 863, - "CommandName": "Install-PnPApp" + "CommandName": "Install-PnPApp", + "Rank": 2, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "Rank": 1, "Id": 864, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 1, + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Rank": 2, "Id": 865, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 2, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Rank": 3, "Id": 866, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 3, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" }, { - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Rank": 4, "Id": 867, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 4, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" }, { - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Rank": 5, "Id": 868, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 5, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" }, { - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", - "Rank": 6, "Id": 869, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 6, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" }, { - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"", - "Rank": 7, "Id": 870, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 7, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"" }, { - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "Id": 871, - "CommandName": "Invoke-PnPListDesign" + "CommandName": "Invoke-PnPListDesign", + "Rank": 1, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2, "Id": 872, - "CommandName": "Invoke-PnPListDesign" + "CommandName": "Invoke-PnPListDesign", + "Rank": 2, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Command": "Invoke-PnPQuery -RetryCount 5", - "Rank": 1, "Id": 873, - "CommandName": "Invoke-PnPQuery" + "CommandName": "Invoke-PnPQuery", + "Rank": 1, + "Command": "Invoke-PnPQuery -RetryCount 5" }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "Id": 874, - "CommandName": "Invoke-PnPSiteDesign" + "CommandName": "Invoke-PnPSiteDesign", + "Rank": 1, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2, "Id": 875, - "CommandName": "Invoke-PnPSiteDesign" + "CommandName": "Invoke-PnPSiteDesign", + "Rank": 2, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Rank": 1, "Id": 876, - "CommandName": "Invoke-PnPSiteScript" + "CommandName": "Invoke-PnPSiteScript", + "Rank": 1, + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" }, { - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", - "Rank": 1, "Id": 877, - "CommandName": "Invoke-PnPSiteSwap" + "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" }, { - "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, "Id": 878, - "CommandName": "Invoke-PnPSiteSwap" + "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" }, { - "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, "Id": 879, - "CommandName": "Invoke-PnPSiteSwap" + "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" }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Rank": 1, "Id": 880, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 1, + "Command": "Invoke-PnPSiteTemplate -Path template.xml" }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Rank": 2, "Id": 881, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 2, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3, "Id": 882, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 3, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Rank": 4, "Id": 883, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 4, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" }, { - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Rank": 5, "Id": 884, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 5, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp" }, { - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Rank": 6, "Id": 885, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 6, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Rank": 7, "Id": 886, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 7, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Rank": 8, "Id": 887, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 8, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" }, { - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Rank": 1, "Id": 888, - "CommandName": "Invoke-PnPSPRestMethod" + "CommandName": "Invoke-PnPSPRestMethod", + "Rank": 1, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web" }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Rank": 1, "Id": 889, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 1, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Rank": 2, "Id": 890, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 2, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3, "Id": 891, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 3, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Rank": 1, "Id": 892, - "CommandName": "Invoke-PnPWebAction" + "CommandName": "Invoke-PnPWebAction", + "Rank": 1, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" }, { - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Rank": 2, "Id": 893, - "CommandName": "Invoke-PnPWebAction" + "CommandName": "Invoke-PnPWebAction", + "Rank": 2, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" }, { - "Command": "Measure-PnPList \"Documents\"", - "Rank": 1, "Id": 894, - "CommandName": "Measure-PnPList" + "CommandName": "Measure-PnPList", + "Rank": 1, + "Command": "Measure-PnPList \"Documents\"" }, { - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Rank": 2, "Id": 895, - "CommandName": "Measure-PnPList" + "CommandName": "Measure-PnPList", + "Rank": 2, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" }, { - "Command": "Measure-PnPWeb", - "Rank": 1, "Id": 896, - "CommandName": "Measure-PnPWeb" + "CommandName": "Measure-PnPWeb", + "Rank": 1, + "Command": "Measure-PnPWeb" }, { - "Command": "Measure-PnPWeb $web -Recursive", - "Rank": 2, "Id": 897, - "CommandName": "Measure-PnPWeb" + "CommandName": "Measure-PnPWeb", + "Rank": 2, + "Command": "Measure-PnPWeb $web -Recursive" }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Rank": 1, "Id": 898, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Rank": 1, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Rank": 2, "Id": 899, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Rank": 2, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 3, "Id": 900, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Rank": 3, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 4, "Id": 901, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Rank": 4, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Rank": 1, "Id": 902, - "CommandName": "Move-PnPFolder" + "CommandName": "Move-PnPFolder", + "Rank": 1, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" }, { - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Rank": 2, "Id": 903, - "CommandName": "Move-PnPFolder" + "CommandName": "Move-PnPFolder", + "Rank": 2, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" }, { - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, "Id": 904, - "CommandName": "Move-PnPListItemToRecycleBin" + "CommandName": "Move-PnPListItemToRecycleBin", + "Rank": 1, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Rank": 1, "Id": 905, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Rank": 1, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Rank": 2, "Id": 906, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Rank": 2, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Rank": 3, "Id": 907, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Rank": 3, + "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 -Position 2", - "Rank": 4, "Id": 908, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Rank": 4, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" }, { - "Command": "Move-PnPRecycleBinItem", - "Rank": 1, "Id": 909, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 1, + "Command": "Move-PnPRecycleBinItem" }, { - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Rank": 2, "Id": 910, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 2, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" }, { - "Command": "Move-PnPRecycleBinItem -Force", - "Rank": 3, "Id": 911, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 3, + "Command": "Move-PnPRecycleBinItem -Force" }, { - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", - "Rank": 1, "Id": 912, - "CommandName": "Move-PnPTerm" + "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" }, { - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Rank": 2, "Id": 913, - "CommandName": "Move-PnPTerm" + "CommandName": "Move-PnPTerm", + "Rank": 2, + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" }, { - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Rank": 3, "Id": 914, - "CommandName": "Move-PnPTerm" + "CommandName": "Move-PnPTerm", + "Rank": 3, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" }, { - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", - "Rank": 1, "Id": 915, - "CommandName": "Move-PnPTermSet" + "CommandName": "Move-PnPTermSet", + "Rank": 1, + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" }, { - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Rank": 2, "Id": 916, - "CommandName": "Move-PnPTermSet" + "CommandName": "Move-PnPTermSet", + "Rank": 2, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, "Id": 917, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Rank": 1, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Rank": 2, "Id": 918, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Rank": 2, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Rank": 3, "Id": 919, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Rank": 3, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Rank": 1, "Id": 920, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 1, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Rank": 2, "Id": 921, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 2, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "Rank": 3, "Id": 922, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 3, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" }, { - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Rank": 1, "Id": 923, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Rank": 1, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" }, { - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Rank": 2, "Id": 924, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Rank": 2, + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" }, { - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "Rank": 3, "Id": 925, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Rank": 3, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" }, { - "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, "Id": 926, - "CommandName": "New-PnPGraphSubscription" + "CommandName": "New-PnPGraphSubscription", + "Rank": 1, + "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", - "Rank": 2, "Id": 927, - "CommandName": "New-PnPGraphSubscription" + "CommandName": "New-PnPGraphSubscription", + "Rank": 2, + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Command": "New-PnPGroup -Title \"My Site Users\"", - "Rank": 1, "Id": 928, - "CommandName": "New-PnPGroup" + "CommandName": "New-PnPGroup", + "Rank": 1, + "Command": "New-PnPGroup -Title \"My Site Users\"" }, { - "Command": "New-PnPList -Title Announcements -Template Announcements", - "Rank": 1, "Id": 929, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Rank": 1, + "Command": "New-PnPList -Title Announcements -Template Announcements" }, { - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Rank": 2, "Id": 930, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Rank": 2, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" }, { - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Rank": 3, "Id": 931, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Rank": 3, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, "Id": 932, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 1, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "Rank": 2, "Id": 933, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 2, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Rank": 3, "Id": 934, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 3, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Rank": 4, "Id": 935, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 4, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" }, { - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Rank": 5, "Id": 936, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 5, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6, "Id": 937, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 6, + "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 -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "Rank": 7, "Id": 938, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 7, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" }, { - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", - "Rank": 1, "Id": 939, - "CommandName": "New-PnPMicrosoft365GroupSettings" + "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\"}" }, { - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "Rank": 2, "Id": 940, - "CommandName": "New-PnPMicrosoft365GroupSettings" + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Rank": 2, + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" }, { - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Rank": 1, "Id": 941, - "CommandName": "New-PnPPersonalSite" + "CommandName": "New-PnPPersonalSite", + "Rank": 1, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" }, { - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Rank": 1, "Id": 942, - "CommandName": "New-PnPPlannerPlan" + "CommandName": "New-PnPPlannerPlan", + "Rank": 1, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" }, { - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Rank": 1, "Id": 943, - "CommandName": "New-PnPSdnProvider" + "CommandName": "New-PnPSdnProvider", + "Rank": 1, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 1, "Id": 944, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 1, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Rank": 2, "Id": 945, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 2, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Rank": 3, "Id": 946, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 3, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 4, "Id": 947, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 4, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 5, "Id": 948, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 5, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 6, "Id": 949, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 6, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Rank": 7, "Id": 950, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 7, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Rank": 8, "Id": 951, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 8, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Rank": 9, "Id": 952, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 9, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Rank": 10, "Id": 953, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 10, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 11, "Id": 954, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 11, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Rank": 12, "Id": 955, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 12, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 13, "Id": 956, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 13, + "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 -ShareByEmailEnabled", - "Rank": 14, "Id": 957, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 14, + "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 -Lcid 1040", - "Rank": 15, "Id": 958, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 15, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "Rank": 16, "Id": 959, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Rank": 16, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" }, { - "Command": "New-PnPSiteCollectionTermStore", - "Rank": 1, "Id": 960, - "CommandName": "New-PnPSiteCollectionTermStore" + "CommandName": "New-PnPSiteCollectionTermStore", + "Rank": 1, + "Command": "New-PnPSiteCollectionTermStore" }, { - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Rank": 1, "Id": 961, - "CommandName": "New-PnPSiteGroup" + "CommandName": "New-PnPSiteGroup", + "Rank": 1, + "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/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Rank": 2, "Id": 962, - "CommandName": "New-PnPSiteGroup" + "CommandName": "New-PnPSiteGroup", + "Rank": 2, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Rank": 1, "Id": 963, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 1, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Rank": 2, "Id": 964, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 2, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Rank": 3, "Id": 965, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 3, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Rank": 4, "Id": 966, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 4, + "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\" -ContentType \"Test Content Type\"", - "Rank": 5, "Id": 967, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 5, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 6, "Id": 968, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 6, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Rank": 7, "Id": 969, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 7, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Rank": 8, "Id": 970, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 8, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" }, { - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Rank": 1, "Id": 971, - "CommandName": "New-PnPTeamsApp" + "CommandName": "New-PnPTeamsApp", + "Rank": 1, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Rank": 1, "Id": 972, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Rank": 1, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" }, { - "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Rank": 2, "Id": 973, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Rank": 2, + "Command": "New-PnPTeamsTeam -GroupId $groupId" }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Rank": 3, "Id": 974, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Rank": 3, + "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, HideGroupInOutlook", - "Rank": 4, "Id": 975, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Rank": 4, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", - "Rank": 5, "Id": 976, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Rank": 5, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" }, { - "Command": "New-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, "Id": 977, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Rank": 6, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\" -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", - "Rank": 1, "Id": 978, - "CommandName": "New-PnPTenantSite" + "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" }, { - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "Rank": 2, "Id": 979, - "CommandName": "New-PnPTenantSite" + "CommandName": "New-PnPTenantSite", + "Rank": 2, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Rank": 1, "Id": 980, - "CommandName": "New-PnPTerm" + "CommandName": "New-PnPTerm", + "Rank": 1, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2, "Id": 981, - "CommandName": "New-PnPTerm" + "CommandName": "New-PnPTerm", + "Rank": 2, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Rank": 1, "Id": 982, - "CommandName": "New-PnPTermGroup" + "CommandName": "New-PnPTermGroup", + "Rank": 1, + "Command": "New-PnPTermGroup -GroupName \"Countries\"" }, { - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Rank": 1, "Id": 983, - "CommandName": "New-PnPTermLabel" + "CommandName": "New-PnPTermLabel", + "Rank": 1, + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" }, { - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Rank": 1, "Id": 984, - "CommandName": "New-PnPTermSet" + "CommandName": "New-PnPTermSet", + "Rank": 1, + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" }, { - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "Rank": 1, "Id": 985, - "CommandName": "New-PnPUPABulkImportJob" + "CommandName": "New-PnPUPABulkImportJob", + "Rank": 1, + "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/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", - "Rank": 2, "Id": 986, - "CommandName": "New-PnPUPABulkImportJob" + "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" }, { - "Command": "New-PnPUser -LoginName user@company.com", - "Rank": 1, "Id": 987, - "CommandName": "New-PnPUser" + "CommandName": "New-PnPUser", + "Rank": 1, + "Command": "New-PnPUser -LoginName user@company.com" }, { - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "Rank": 1, "Id": 988, - "CommandName": "New-PnPWeb" + "CommandName": "New-PnPWeb", + "Rank": 1, + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 1, "Id": 989, - "CommandName": "Publish-PnPApp" + "CommandName": "Publish-PnPApp", + "Rank": 1, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Rank": 2, "Id": 990, - "CommandName": "Publish-PnPApp" + "CommandName": "Publish-PnPApp", + "Rank": 2, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" }, { - "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, "Id": 991, - "CommandName": "Publish-PnPCompanyApp" + "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" }, { - "Command": "Publish-PnPContentType -ContentType 0x0101", - "Rank": 1, "Id": 992, - "CommandName": "Publish-PnPContentType" + "CommandName": "Publish-PnPContentType", + "Rank": 1, + "Command": "Publish-PnPContentType -ContentType 0x0101" }, { - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, "Id": 993, - "CommandName": "Publish-PnPSyntexModel" + "CommandName": "Publish-PnPSyntexModel", + "Rank": 1, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "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, "Id": 994, - "CommandName": "Publish-PnPSyntexModel" + "CommandName": "Publish-PnPSyntexModel", + "Rank": 2, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Rank": 1, "Id": 995, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Rank": 1, + "Command": "Read-PnPSiteTemplate -Path template.pnp" }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Rank": 2, "Id": 996, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Rank": 2, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" }, { - "Command": "Read-PnPSiteTemplate -Xml $xml", - "Rank": 3, "Id": 997, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Rank": 3, + "Command": "Read-PnPSiteTemplate -Xml $xml" }, { - "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Rank": 1, "Id": 998, - "CommandName": "Read-PnPTenantTemplate" + "CommandName": "Read-PnPTenantTemplate", + "Rank": 1, + "Command": "Read-PnPTenantTemplate -Path template.pnp" }, { - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Rank": 1, "Id": 999, - "CommandName": "Register-PnPAppCatalogSite" + "CommandName": "Register-PnPAppCatalogSite", + "Rank": 1, + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" }, { - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", - "Rank": 1, "Id": 1000, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Register-PnPAzureADApp", + "Rank": 1, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Command": "Register-PnPAzureADApp -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, "Id": 1001, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Register-PnPAzureADApp", + "Rank": 2, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\")" }, { - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -GraphApplicationPermissions \"User.Read.All\" -SharePointApplicationPermissions \"Sites.Read.All\" -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", - "Rank": 3, "Id": 1002, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Register-PnPAzureADApp", + "Rank": 3, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -GraphApplicationPermissions \"User.Read.All\" -SharePointApplicationPermissions \"Sites.Read.All\" -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Command": "Register-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, "Id": 1003, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Register-PnPAzureADApp", + "Rank": 4, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -OutPath c:\\ -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "Rank": 5, "Id": 1004, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Register-PnPAzureADApp", + "Rank": 5, + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "Rank": 6, "Id": 1005, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Register-PnPAzureADApp", + "Rank": 6, + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Command": "Register-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, "Id": 1006, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Register-PnPAzureADApp", + "Rank": 7, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\") -LogoFilePath c:\\logo.png" }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1, "Id": 1007, - "CommandName": "Register-PnPHubSite" + "CommandName": "Register-PnPHubSite", + "Rank": 1, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Rank": 2, "Id": 1008, - "CommandName": "Register-PnPHubSite" + "CommandName": "Register-PnPHubSite", + "Rank": 2, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" }, { - "Command": "Register-PnPManagementShellAccess", - "Rank": 1, "Id": 1009, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 1, + "Command": "Register-PnPManagementShellAccess" }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Rank": 2, "Id": 1010, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 2, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Rank": 3, "Id": 1011, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 3, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Rank": 1, "Id": 1012, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Rank": 1, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Rank": 2, "Id": 1013, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Rank": 2, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Rank": 1, "Id": 1014, - "CommandName": "Remove-PnPAlert" + "CommandName": "Remove-PnPAlert", + "Rank": 1, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 2, "Id": 1015, - "CommandName": "Remove-PnPAlert" + "CommandName": "Remove-PnPAlert", + "Rank": 2, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "Id": 1016, - "CommandName": "Remove-PnPApp" + "CommandName": "Remove-PnPApp", + "Rank": 1, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "Id": 1017, - "CommandName": "Remove-PnPApp" + "CommandName": "Remove-PnPApp", + "Rank": 2, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, "Id": 1018, - "CommandName": "Remove-PnPApplicationCustomizer" + "CommandName": "Remove-PnPApplicationCustomizer", + "Rank": 1, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, "Id": 1019, - "CommandName": "Remove-PnPApplicationCustomizer" + "CommandName": "Remove-PnPApplicationCustomizer", + "Rank": 2, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Rank": 1, "Id": 1020, - "CommandName": "Remove-PnPAvailableSiteClassification" + "CommandName": "Remove-PnPAvailableSiteClassification", + "Rank": 1, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 2, "Id": 1021, - "CommandName": "Remove-PnPAvailableSiteClassification" + "CommandName": "Remove-PnPAvailableSiteClassification", + "Rank": 2, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Rank": 1, "Id": 1022, - "CommandName": "Remove-PnPAzureADApp" + "CommandName": "Remove-PnPAzureADApp", + "Rank": 1, + "Command": "Remove-PnPAzureADApp -Identity MyApp" }, { - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 2, "Id": 1023, - "CommandName": "Remove-PnPAzureADApp" + "CommandName": "Remove-PnPAzureADApp", + "Rank": 2, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Rank": 1, "Id": 1024, - "CommandName": "Remove-PnPAzureADGroup" + "CommandName": "Remove-PnPAzureADGroup", + "Rank": 1, + "Command": "Remove-PnPAzureADGroup -Identity $groupId" }, { - "Command": "Remove-PnPAzureADGroup -Identity $group", - "Rank": 2, "Id": 1025, - "CommandName": "Remove-PnPAzureADGroup" + "CommandName": "Remove-PnPAzureADGroup", + "Rank": 2, + "Command": "Remove-PnPAzureADGroup -Identity $group" }, { - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 1026, - "CommandName": "Remove-PnPAzureADGroupMember" + "CommandName": "Remove-PnPAzureADGroupMember", + "Rank": 1, + "Command": "Remove-PnPAzureADGroupMember -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\"", - "Rank": 1, "Id": 1027, - "CommandName": "Remove-PnPAzureADGroupOwner" + "CommandName": "Remove-PnPAzureADGroupOwner", + "Rank": 1, + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Rank": 1, "Id": 1028, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 1, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Rank": 2, "Id": 1029, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 2, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 3, "Id": 1030, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 3, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 4, "Id": 1031, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 4, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Rank": 1, "Id": 1032, - "CommandName": "Remove-PnPContentType" + "CommandName": "Remove-PnPContentType", + "Rank": 1, + "Command": "Remove-PnPContentType -Identity \"Project Document\"" }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Rank": 2, "Id": 1033, - "CommandName": "Remove-PnPContentType" + "CommandName": "Remove-PnPContentType", + "Rank": 2, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1, "Id": 1034, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 1, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2, "Id": 1035, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 2, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Rank": 1, "Id": 1036, - "CommandName": "Remove-PnPContentTypeFromList" + "CommandName": "Remove-PnPContentTypeFromList", + "Rank": 1, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, "Id": 1037, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Rank": 1, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, "Id": 1038, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Rank": 2, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Rank": 3, "Id": 1039, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Rank": 3, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" }, { - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, "Id": 1040, - "CommandName": "Remove-PnPDeletedMicrosoft365Group" + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Rank": 1, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 1, "Id": 1041, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 1, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, "Id": 1042, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 2, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Rank": 3, "Id": 1043, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 3, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" }, { - "Command": "Remove-PnPEventReceiver -List ProjectList", - "Rank": 4, "Id": 1044, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 4, + "Command": "Remove-PnPEventReceiver -List ProjectList" }, { - "Command": "Remove-PnPEventReceiver", - "Rank": 5, "Id": 1045, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 5, + "Command": "Remove-PnPEventReceiver" }, { - "Command": "Remove-PnPEventReceiver -Scope Site", - "Rank": 6, "Id": 1046, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 6, + "Command": "Remove-PnPEventReceiver -Scope Site" }, { - "Command": "Remove-PnPEventReceiver -Scope Web", - "Rank": 7, "Id": 1047, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 7, + "Command": "Remove-PnPEventReceiver -Scope Web" }, { - "Command": "Remove-PnPEventReceiver -Scope All", - "Rank": 8, "Id": 1048, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Rank": 8, + "Command": "Remove-PnPEventReceiver -Scope All" }, { - "Command": "Remove-PnPField -Identity \"Speakers\"", - "Rank": 1, "Id": 1049, - "CommandName": "Remove-PnPField" + "CommandName": "Remove-PnPField", + "Rank": 1, + "Command": "Remove-PnPField -Identity \"Speakers\"" }, { - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, "Id": 1050, - "CommandName": "Remove-PnPField" + "CommandName": "Remove-PnPField", + "Rank": 2, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1, "Id": 1051, - "CommandName": "Remove-PnPFieldFromContentType" + "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 1, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Rank": 2, "Id": 1052, - "CommandName": "Remove-PnPFieldFromContentType" + "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 2, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" }, { - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Rank": 1, "Id": 1053, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Rank": 1, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Rank": 2, "Id": 1054, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Rank": 2, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Rank": 3, "Id": 1055, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Rank": 3, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" }, { - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Rank": 1, "Id": 1056, - "CommandName": "Remove-PnPFileFromSiteTemplate" + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Rank": 1, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, "Id": 1057, - "CommandName": "Remove-PnPFileSharingLink" + "CommandName": "Remove-PnPFileSharingLink", + "Rank": 1, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Rank": 2, "Id": 1058, - "CommandName": "Remove-PnPFileSharingLink" + "CommandName": "Remove-PnPFileSharingLink", + "Rank": 2, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, "Id": 1059, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Rank": 1, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 2, "Id": 1060, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Rank": 2, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Rank": 3, "Id": 1061, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Rank": 3, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" }, { - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "Rank": 1, "Id": 1062, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Rank": 1, + "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 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "Rank": 2, "Id": 1063, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Rank": 2, + "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 username@tenant.onmicrosoft.com -AsAdmin", - "Rank": 3, "Id": 1064, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Rank": 3, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" }, { - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "Rank": 4, "Id": 1065, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Rank": 4, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1, "Id": 1066, - "CommandName": "Remove-PnPFolder" + "CommandName": "Remove-PnPFolder", + "Rank": 1, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Rank": 2, "Id": 1067, - "CommandName": "Remove-PnPFolder" + "CommandName": "Remove-PnPFolder", + "Rank": 2, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, "Id": 1068, - "CommandName": "Remove-PnPFolderSharingLink" + "CommandName": "Remove-PnPFolderSharingLink", + "Rank": 1, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Rank": 2, "Id": 1069, - "CommandName": "Remove-PnPFolderSharingLink" + "CommandName": "Remove-PnPFolderSharingLink", + "Rank": 2, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" }, { - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Rank": 1, "Id": 1070, - "CommandName": "Remove-PnPGraphSubscription" + "CommandName": "Remove-PnPGraphSubscription", + "Rank": 1, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" }, { - "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Rank": 1, "Id": 1071, - "CommandName": "Remove-PnPGroup" + "CommandName": "Remove-PnPGroup", + "Rank": 1, + "Command": "Remove-PnPGroup -Identity \"My Users\"" }, { - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1, "Id": 1072, - "CommandName": "Remove-PnPGroupMember" + "CommandName": "Remove-PnPGroupMember", + "Rank": 1, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Command": "Remove-PnPHomeSite", - "Rank": 1, "Id": 1073, - "CommandName": "Remove-PnPHomeSite" + "CommandName": "Remove-PnPHomeSite", + "Rank": 1, + "Command": "Remove-PnPHomeSite" }, { - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, "Id": 1074, - "CommandName": "Remove-PnPHubSiteAssociation" + "CommandName": "Remove-PnPHubSiteAssociation", + "Rank": 1, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Rank": 1, "Id": 1075, - "CommandName": "Remove-PnPHubToHubAssociation" + "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 1, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Rank": 2, "Id": 1076, - "CommandName": "Remove-PnPHubToHubAssociation" + "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 2, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" }, { - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Rank": 1, "Id": 1077, - "CommandName": "Remove-PnPIndexedProperty" + "CommandName": "Remove-PnPIndexedProperty", + "Rank": 1, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Rank": 1, "Id": 1078, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 1, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery" }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Rank": 2, "Id": 1079, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 2, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Rank": 3, "Id": 1080, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 3, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" }, { - "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Rank": 4, "Id": 1081, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 4, + "Command": "Remove-PnPJavaScriptLink -Scope Site" }, { - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Rank": 5, "Id": 1082, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 5, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" }, { - "Command": "Remove-PnPKnowledgeHubSite", - "Rank": 1, "Id": 1083, - "CommandName": "Remove-PnPKnowledgeHubSite" + "CommandName": "Remove-PnPKnowledgeHubSite", + "Rank": 1, + "Command": "Remove-PnPKnowledgeHubSite" }, { - "Command": "Remove-PnPList -Identity Announcements", - "Rank": 1, "Id": 1084, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Rank": 1, + "Command": "Remove-PnPList -Identity Announcements" }, { - "Command": "Remove-PnPList -Identity Announcements -Force", - "Rank": 2, "Id": 1085, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Rank": 2, + "Command": "Remove-PnPList -Identity Announcements -Force" }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Rank": 3, "Id": 1086, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Rank": 3, + "Command": "Remove-PnPList -Identity Announcements -Recycle" }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Rank": 4, "Id": 1087, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Rank": 4, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" }, { - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "Id": 1088, - "CommandName": "Remove-PnPListDesign" + "CommandName": "Remove-PnPListDesign", + "Rank": 1, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, "Id": 1089, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Rank": 1, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Rank": 2, "Id": 1090, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Rank": 2, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" }, { - "Command": "Remove-PnPListItem -List \"Demo List\"", - "Rank": 3, "Id": 1091, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Rank": 3, + "Command": "Remove-PnPListItem -List \"Demo List\"" }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Rank": 1, "Id": 1092, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 1, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Rank": 2, "Id": 1093, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 2, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Rank": 3, "Id": 1094, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 3, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Rank": 4, "Id": 1095, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 4, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Rank": 5, "Id": 1096, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 5, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, "Id": 1097, - "CommandName": "Remove-PnPListItemVersion" + "CommandName": "Remove-PnPListItemVersion", + "Rank": 1, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, "Id": 1098, - "CommandName": "Remove-PnPListItemVersion" + "CommandName": "Remove-PnPListItemVersion", + "Rank": 2, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Rank": 1, "Id": 1099, - "CommandName": "Remove-PnPMicrosoft365Group" + "CommandName": "Remove-PnPMicrosoft365Group", + "Rank": 1, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Rank": 2, "Id": 1100, - "CommandName": "Remove-PnPMicrosoft365Group" + "CommandName": "Remove-PnPMicrosoft365Group", + "Rank": 2, + "Command": "Remove-PnPMicrosoft365Group -Identity $group" }, { - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 1101, - "CommandName": "Remove-PnPMicrosoft365GroupMember" + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupMember -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\"", - "Rank": 1, "Id": 1102, - "CommandName": "Remove-PnPMicrosoft365GroupOwner" + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Rank": 1, "Id": 1103, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Rank": 2, "Id": 1104, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 2, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" }, { - "Command": "Remove-PnPNavigationNode -Identity 1032", - "Rank": 1, "Id": 1105, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Rank": 1, + "Command": "Remove-PnPNavigationNode -Identity 1032" }, { - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Rank": 2, "Id": 1106, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Rank": 2, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" }, { - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Rank": 3, "Id": 1107, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Rank": 3, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Rank": 1, "Id": 1108, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 1, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Rank": 2, "Id": 1109, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 2, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Rank": 3, "Id": 1110, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 3, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" }, { - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, "Id": 1111, - "CommandName": "Remove-PnPOrgNewsSite" + "CommandName": "Remove-PnPOrgNewsSite", + "Rank": 1, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Rank": 1, "Id": 1112, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Rank": 1, + "Command": "Remove-PnPPage -Identity \"MyPage\"" }, { - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Rank": 2, "Id": 1113, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Rank": 2, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" }, { - "Command": "Remove-PnPPage $page", - "Rank": 3, "Id": 1114, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Rank": 3, + "Command": "Remove-PnPPage $page" }, { - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Rank": 4, "Id": 1115, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Rank": 4, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" }, { - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, "Id": 1116, - "CommandName": "Remove-PnPPageComponent" + "CommandName": "Remove-PnPPageComponent", + "Rank": 1, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Rank": 1, "Id": 1117, - "CommandName": "Remove-PnPPlannerBucket" + "CommandName": "Remove-PnPPlannerBucket", + "Rank": 1, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" }, { - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Rank": 1, "Id": 1118, - "CommandName": "Remove-PnPPlannerPlan" + "CommandName": "Remove-PnPPlannerPlan", + "Rank": 1, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" }, { - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, "Id": 1119, - "CommandName": "Remove-PnPPlannerRoster" + "CommandName": "Remove-PnPPlannerRoster", + "Rank": 1, + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 1120, - "CommandName": "Remove-PnPPlannerRosterMember" + "CommandName": "Remove-PnPPlannerRosterMember", + "Rank": 1, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Rank": 1, "Id": 1121, - "CommandName": "Remove-PnPPlannerTask" + "CommandName": "Remove-PnPPlannerTask", + "Rank": 1, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Rank": 1, "Id": 1122, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 1, + "Command": "Remove-PnPPropertyBagValue -Key MyKey" }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Rank": 2, "Id": 1123, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 2, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Rank": 3, "Id": 1124, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 3, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" }, { - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1, "Id": 1125, - "CommandName": "Remove-PnPPublishingImageRendition" + "CommandName": "Remove-PnPPublishingImageRendition", + "Rank": 1, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Rank": 1, "Id": 1126, - "CommandName": "Remove-PnPRoleDefinition" + "CommandName": "Remove-PnPRoleDefinition", + "Rank": 1, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" }, { - "Command": "Remove-PnPSdnProvider -Confirm:false", - "Rank": 1, "Id": 1127, - "CommandName": "Remove-PnPSdnProvider" + "CommandName": "Remove-PnPSdnProvider", + "Rank": 1, + "Command": "Remove-PnPSdnProvider -Confirm:false" }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Rank": 1, "Id": 1128, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 1, + "Command": "Remove-PnPSearchConfiguration -Configuration $config" }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, "Id": 1129, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 2, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, "Id": 1130, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 3, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, "Id": 1131, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 4, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 1132, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Rank": 1, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, "Id": 1133, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Rank": 2, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 1, "Id": 1134, - "CommandName": "Remove-PnPSiteCollectionAppCatalog" + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Rank": 1, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "Command": "Remove-PnPSiteCollectionTermStore", - "Rank": 1, "Id": 1135, - "CommandName": "Remove-PnPSiteCollectionTermStore" + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Rank": 1, + "Command": "Remove-PnPSiteCollectionTermStore" }, { - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "Id": 1136, - "CommandName": "Remove-PnPSiteDesign" + "CommandName": "Remove-PnPSiteDesign", + "Rank": 1, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "Id": 1137, - "CommandName": "Remove-PnPSiteDesignTask" + "CommandName": "Remove-PnPSiteDesignTask", + "Rank": 1, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, "Id": 1138, - "CommandName": "Remove-PnPSiteGroup" + "CommandName": "Remove-PnPSiteGroup", + "Rank": 1, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Rank": 2, "Id": 1139, - "CommandName": "Remove-PnPSiteGroup" + "CommandName": "Remove-PnPSiteGroup", + "Rank": 2, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" }, { - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "Id": 1140, - "CommandName": "Remove-PnPSiteScript" + "CommandName": "Remove-PnPSiteScript", + "Rank": 1, + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1, "Id": 1141, - "CommandName": "Remove-PnPSiteUserInvitations" + "CommandName": "Remove-PnPSiteUserInvitations", + "Rank": 1, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Command": "Remove-PnPStorageEntity -Key MyKey", - "Rank": 1, "Id": 1142, - "CommandName": "Remove-PnPStorageEntity" + "CommandName": "Remove-PnPStorageEntity", + "Rank": 1, + "Command": "Remove-PnPStorageEntity -Key MyKey" }, { - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 2, "Id": 1143, - "CommandName": "Remove-PnPStorageEntity" + "CommandName": "Remove-PnPStorageEntity", + "Rank": 2, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Rank": 1, "Id": 1144, - "CommandName": "Remove-PnPStoredCredential" + "CommandName": "Remove-PnPStoredCredential", + "Rank": 1, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Rank": 1, "Id": 1145, - "CommandName": "Remove-PnPTaxonomyItem" + "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 1, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Rank": 2, "Id": 1146, - "CommandName": "Remove-PnPTaxonomyItem" + "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 2, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" }, { - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Rank": 1, "Id": 1147, - "CommandName": "Remove-PnPTeamsApp" + "CommandName": "Remove-PnPTeamsApp", + "Rank": 1, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" }, { - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Rank": 2, "Id": 1148, - "CommandName": "Remove-PnPTeamsApp" + "CommandName": "Remove-PnPTeamsApp", + "Rank": 2, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" }, { - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Rank": 1, "Id": 1149, - "CommandName": "Remove-PnPTeamsChannel" + "CommandName": "Remove-PnPTeamsChannel", + "Rank": 1, + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Rank": 1, "Id": 1150, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 1, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 2, "Id": 1151, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 2, + "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 john.doe@contoso.com -Force", - "Rank": 3, "Id": 1152, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 3, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Rank": 1, "Id": 1153, - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsTab", + "Rank": 1, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Rank": 2, "Id": 1154, - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsTab", + "Rank": 2, + "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 fcef815d-2e8e-47a5-b06b-9bebba5c7852", - "Rank": 3, "Id": 1155, - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsTab", + "Rank": 3, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" }, { - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 1, "Id": 1156, - "CommandName": "Remove-PnPTeamsTag" + "CommandName": "Remove-PnPTeamsTag", + "Rank": 1, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, "Id": 1157, - "CommandName": "Remove-PnPTeamsTeam" + "CommandName": "Remove-PnPTeamsTeam", + "Rank": 1, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Rank": 2, "Id": 1158, - "CommandName": "Remove-PnPTeamsTeam" + "CommandName": "Remove-PnPTeamsTeam", + "Rank": 2, + "Command": "Remove-PnPTeamsTeam -Identity testteam" }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Rank": 1, "Id": 1159, - "CommandName": "Remove-PnPTeamsUser" + "CommandName": "Remove-PnPTeamsUser", + "Rank": 1, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 2, "Id": 1160, - "CommandName": "Remove-PnPTeamsUser" + "CommandName": "Remove-PnPTeamsUser", + "Rank": 2, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1, "Id": 1161, - "CommandName": "Remove-PnPTenantCdnOrigin" + "CommandName": "Remove-PnPTenantCdnOrigin", + "Rank": 1, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "Id": 1162, - "CommandName": "Remove-PnPTenantDeletedSite" + "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 1, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, "Id": 1163, - "CommandName": "Remove-PnPTenantDeletedSite" + "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 2, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "Id": 1164, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Rank": 1, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Rank": 2, "Id": 1165, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Rank": 2, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Rank": 3, "Id": 1166, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Rank": 3, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" }, { - "Command": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1, "Id": 1167, - "CommandName": "Remove-PnPTenantSyncClientRestriction" + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Rank": 1, + "Command": "Remove-PnPTenantSyncClientRestriction" }, { - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 1, "Id": 1168, - "CommandName": "Remove-PnPTenantTheme" + "CommandName": "Remove-PnPTenantTheme", + "Rank": 1, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, "Id": 1169, - "CommandName": "Remove-PnPTerm" + "CommandName": "Remove-PnPTerm", + "Rank": 1, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, "Id": 1170, - "CommandName": "Remove-PnPTerm" + "CommandName": "Remove-PnPTerm", + "Rank": 2, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, "Id": 1171, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Rank": 1, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Rank": 2, "Id": 1172, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Rank": 2, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" }, { - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Rank": 3, "Id": 1173, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Rank": 3, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Rank": 1, "Id": 1174, - "CommandName": "Remove-PnPTermLabel" + "CommandName": "Remove-PnPTermLabel", + "Rank": 1, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, "Id": 1175, - "CommandName": "Remove-PnPTermLabel" + "CommandName": "Remove-PnPTermLabel", + "Rank": 2, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Command": "Remove-PnPUser -Identity 23", - "Rank": 1, "Id": 1176, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Rank": 1, + "Command": "Remove-PnPUser -Identity 23" }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Rank": 2, "Id": 1177, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Rank": 2, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Rank": 3, "Id": 1178, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Rank": 3, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" }, { - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1, "Id": 1179, - "CommandName": "Remove-PnPUserInfo" + "CommandName": "Remove-PnPUserInfo", + "Rank": 1, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Rank": 1, "Id": 1180, - "CommandName": "Remove-PnPUserProfile" + "CommandName": "Remove-PnPUserProfile", + "Rank": 1, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com" }, { - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Rank": 1, "Id": 1181, - "CommandName": "Remove-PnPView" + "CommandName": "Remove-PnPView", + "Rank": 1, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" }, { - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 1, "Id": 1182, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE" + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Rank": 1, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Command": "Remove-PnPWeb -Identity projectA", - "Rank": 1, "Id": 1183, - "CommandName": "Remove-PnPWeb" + "CommandName": "Remove-PnPWeb", + "Rank": 1, + "Command": "Remove-PnPWeb -Identity projectA" }, { - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Rank": 2, "Id": 1184, - "CommandName": "Remove-PnPWeb" + "CommandName": "Remove-PnPWeb", + "Rank": 2, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" }, { - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Rank": 1, "Id": 1185, - "CommandName": "Remove-PnPWebhookSubscription" + "CommandName": "Remove-PnPWebhookSubscription", + "Rank": 1, + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" }, { - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, "Id": 1186, - "CommandName": "Remove-PnPWebPart" + "CommandName": "Remove-PnPWebPart", + "Rank": 1, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Rank": 2, "Id": 1187, - "CommandName": "Remove-PnPWebPart" + "CommandName": "Remove-PnPWebPart", + "Rank": 2, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" }, { - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Rank": 1, "Id": 1188, - "CommandName": "Remove-PnPWikiPage" + "CommandName": "Remove-PnPWikiPage", + "Rank": 1, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Rank": 1, "Id": 1189, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Rank": 1, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" }, { - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Rank": 2, "Id": 1190, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Rank": 2, + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Rank": 3, "Id": 1191, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Rank": 3, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" }, { - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Rank": 1, "Id": 1192, - "CommandName": "Rename-PnPFolder" + "CommandName": "Rename-PnPFolder", + "Rank": 1, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, "Id": 1193, - "CommandName": "Repair-PnPSite" + "CommandName": "Repair-PnPSite", + "Rank": 1, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2, "Id": 1194, - "CommandName": "Repair-PnPSite" + "CommandName": "Repair-PnPSite", + "Rank": 2, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Command": "Request-PnPAccessToken", - "Rank": 1, "Id": 1195, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Rank": 1, + "Command": "Request-PnPAccessToken" }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Rank": 2, "Id": 1196, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Rank": 2, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Rank": 3, "Id": 1197, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Rank": 3, + "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, AllSites.FullControl", - "Rank": 4, "Id": 1198, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Rank": 4, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" }, { - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Rank": 1, "Id": 1199, - "CommandName": "Request-PnPPersonalSite" + "CommandName": "Request-PnPPersonalSite", + "Rank": 1, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" }, { - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Rank": 2, "Id": 1200, - "CommandName": "Request-PnPPersonalSite" + "CommandName": "Request-PnPPersonalSite", + "Rank": 2, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" }, { - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Rank": 1, "Id": 1201, - "CommandName": "Request-PnPReIndexList" + "CommandName": "Request-PnPReIndexList", + "Rank": 1, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"" }, { - "Command": "Request-PnPReIndexWeb", - "Rank": 1, "Id": 1202, - "CommandName": "Request-PnPReIndexWeb" + "CommandName": "Request-PnPReIndexWeb", + "Rank": 1, + "Command": "Request-PnPReIndexWeb" }, { - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Rank": 1, "Id": 1203, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 1, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" }, { - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Rank": 2, "Id": 1204, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 2, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" }, { - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Rank": 3, "Id": 1205, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 3, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Rank": 1, "Id": 1206, - "CommandName": "Reset-PnPFileVersion" + "CommandName": "Reset-PnPFileVersion", + "Rank": 1, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Rank": 2, "Id": 1207, - "CommandName": "Reset-PnPFileVersion" + "CommandName": "Reset-PnPFileVersion", + "Rank": 2, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" }, { - "Command": "Reset-PnPLabel -List \"Demo List\"", - "Rank": 1, "Id": 1208, - "CommandName": "Reset-PnPLabel" + "CommandName": "Reset-PnPLabel", + "Rank": 1, + "Command": "Reset-PnPLabel -List \"Demo List\"" }, { - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Rank": 2, "Id": 1209, - "CommandName": "Reset-PnPLabel" + "CommandName": "Reset-PnPLabel", + "Rank": 2, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" }, { - "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1, "Id": 1210, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration" + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Rank": 1, + "Command": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Rank": 1, "Id": 1211, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Rank": 1, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" }, { - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Rank": 1, "Id": 1212, - "CommandName": "Resolve-PnPFolder" + "CommandName": "Resolve-PnPFolder", + "Rank": 1, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" }, { - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, "Id": 1213, - "CommandName": "Restore-PnPDeletedMicrosoft365Group" + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Rank": 1, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, "Id": 1214, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Rank": 1, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Rank": 2, "Id": 1215, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Rank": 2, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 3, "Id": 1216, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Rank": 3, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, "Id": 1217, - "CommandName": "Restore-PnPListItemVersion" + "CommandName": "Restore-PnPListItemVersion", + "Rank": 1, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, "Id": 1218, - "CommandName": "Restore-PnPListItemVersion" + "CommandName": "Restore-PnPListItemVersion", + "Rank": 2, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, "Id": 1219, - "CommandName": "Restore-PnPRecycleBinItem" + "CommandName": "Restore-PnPRecycleBinItem", + "Rank": 1, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "Id": 1220, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 1, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2, "Id": 1221, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 2, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "Id": 1222, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Rank": 1, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, "Id": 1223, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Rank": 2, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Rank": 3, "Id": 1224, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Rank": 3, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" }, { - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Rank": 1, "Id": 1225, - "CommandName": "Revoke-PnPAzureADAppSitePermission" + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Rank": 1, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" }, { - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, "Id": 1226, - "CommandName": "Revoke-PnPHubSiteRights" + "CommandName": "Revoke-PnPHubSiteRights", + "Rank": 1, + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, "Id": 1227, - "CommandName": "Revoke-PnPSiteDesignRights" + "CommandName": "Revoke-PnPSiteDesignRights", + "Rank": 1, + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1, "Id": 1228, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission" + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Rank": 1, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Rank": 1, "Id": 1229, - "CommandName": "Revoke-PnPUserSession" + "CommandName": "Revoke-PnPUserSession", + "Rank": 1, + "Command": "Revoke-PnPUserSession -User user1@contoso.com" }, { - "Command": "Save-PnPPageConversionLog", - "Rank": 1, "Id": 1230, - "CommandName": "Save-PnPPageConversionLog" + "CommandName": "Save-PnPPageConversionLog", + "Rank": 1, + "Command": "Save-PnPPageConversionLog" }, { - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Rank": 1, "Id": 1231, - "CommandName": "Save-PnPSiteTemplate" + "CommandName": "Save-PnPSiteTemplate", + "Rank": 1, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" }, { - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Rank": 1, "Id": 1232, - "CommandName": "Save-PnPTenantTemplate" + "CommandName": "Save-PnPTenantTemplate", + "Rank": 1, + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" }, { - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Rank": 1, "Id": 1233, - "CommandName": "Send-PnPMail" + "CommandName": "Send-PnPMail", + "Rank": 1, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Command": "Send-PnPMail -From \"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, "Id": 1234, - "CommandName": "Send-PnPMail" + "CommandName": "Send-PnPMail", + "Rank": 2, + "Command": "Send-PnPMail -From \"sharedmailbox@contoso.onmicrosoft.com\" -To \"recipient1@contoso.com\",\"recipient2@contoso.com\",\"recipient3@contoso.com\" -Cc \"recipient4@contoso.com\" -Bcc \"recipient5@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Importance Low" }, { - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Rank": 3, "Id": 1235, - "CommandName": "Send-PnPMail" + "CommandName": "Send-PnPMail", + "Rank": 3, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "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, "Id": 1236, - "CommandName": "Send-PnPMail" + "CommandName": "Send-PnPMail", + "Rank": 4, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.onmicrosoft.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server contoso.mail.protection.outlook.com" }, { - "Command": "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, "Id": 1237, - "CommandName": "Send-PnPMail" + "CommandName": "Send-PnPMail", + "Rank": 5, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com" }, { - "Command": "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, "Id": 1238, - "CommandName": "Send-PnPMail" + "CommandName": "Send-PnPMail", + "Rank": 6, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com -Port 587 -EnableSsl:$true -Username \"userxyz\" -Password \"password123\"" }, { - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Rank": 1, "Id": 1239, - "CommandName": "Set-PnPAdaptiveScopeProperty" + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Rank": 1, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" }, { - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, "Id": 1240, - "CommandName": "Set-PnPApplicationCustomizer" + "CommandName": "Set-PnPApplicationCustomizer", + "Rank": 1, + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "Rank": 2, "Id": 1241, - "CommandName": "Set-PnPApplicationCustomizer" + "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`\"}\"" }, { - "Command": "Set-PnPAppSideLoading -On", - "Rank": 1, "Id": 1242, - "CommandName": "Set-PnPAppSideLoading" + "CommandName": "Set-PnPAppSideLoading", + "Rank": 1, + "Command": "Set-PnPAppSideLoading -On" }, { - "Command": "Set-PnPAppSideLoading -Off", - "Rank": 2, "Id": 1243, - "CommandName": "Set-PnPAppSideLoading" + "CommandName": "Set-PnPAppSideLoading", + "Rank": 2, + "Command": "Set-PnPAppSideLoading -Off" }, { - "Command": "Set-PnPAuditing -EnableAll", - "Rank": 1, "Id": 1244, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Rank": 1, + "Command": "Set-PnPAuditing -EnableAll" }, { - "Command": "Set-PnPAuditing -DisableAll", - "Rank": 2, "Id": 1245, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Rank": 2, + "Command": "Set-PnPAuditing -DisableAll" }, { - "Command": "Set-PnPAuditing -RetentionTime 7", - "Rank": 3, "Id": 1246, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Rank": 3, + "Command": "Set-PnPAuditing -RetentionTime 7" }, { - "Command": "Set-PnPAuditing -TrimAuditLog", - "Rank": 4, "Id": 1247, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Rank": 4, + "Command": "Set-PnPAuditing -TrimAuditLog" }, { - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Rank": 5, "Id": 1248, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Rank": 5, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" }, { - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Rank": 1, "Id": 1249, - "CommandName": "Set-PnPAvailablePageLayouts" + "CommandName": "Set-PnPAvailablePageLayouts", + "Rank": 1, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Rank": 1, "Id": 1250, - "CommandName": "Set-PnPAzureADAppSitePermission" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Rank": 1, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Rank": 2, "Id": 1251, - "CommandName": "Set-PnPAzureADAppSitePermission" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Rank": 2, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" }, { - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, "Id": 1252, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Rank": 1, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" }, { - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, "Id": 1253, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Rank": 2, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Rank": 3, "Id": 1254, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Rank": 3, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Rank": 1, "Id": 1255, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 1, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Rank": 2, "Id": 1256, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 2, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Rank": 3, "Id": 1257, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 3, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Rank": 1, "Id": 1258, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 1, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Rank": 2, "Id": 1259, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 2, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Rank": 1, "Id": 1260, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 1, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Rank": 2, "Id": 1261, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 2, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Rank": 3, "Id": 1262, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 3, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Rank": 4, "Id": 1263, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 4, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 1, "Id": 1264, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Rank": 1, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Rank": 2, "Id": 1265, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Rank": 2, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 3, "Id": 1266, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Rank": 3, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Rank": 4, "Id": 1267, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Rank": 4, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Rank": 5, "Id": 1268, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Rank": 5, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Rank": 1, "Id": 1269, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 1, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Rank": 2, "Id": 1270, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 2, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Rank": 3, "Id": 1271, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 3, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Rank": 4, "Id": 1272, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 4, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" }, { - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Rank": 1, "Id": 1273, - "CommandName": "Set-PnPDefaultContentTypeToList" + "CommandName": "Set-PnPDefaultContentTypeToList", + "Rank": 1, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" }, { - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Rank": 1, "Id": 1274, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 1, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" }, { - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Rank": 2, "Id": 1275, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 2, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" }, { - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Rank": 3, "Id": 1276, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 3, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Rank": 1, "Id": 1277, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 1, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" }, { - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 2, "Id": 1278, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 2, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 3, "Id": 1279, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 3, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Rank": 1, "Id": 1280, - "CommandName": "Set-PnPDocumentSetField" + "CommandName": "Set-PnPDocumentSetField", + "Rank": 1, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" }, { - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Rank": 2, "Id": 1281, - "CommandName": "Set-PnPDocumentSetField" + "CommandName": "Set-PnPDocumentSetField", + "Rank": 2, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" }, { - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Rank": 1, "Id": 1282, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Rank": 1, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" }, { - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Rank": 2, "Id": 1283, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Rank": 2, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" }, { - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Rank": 3, "Id": 1284, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Rank": 3, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Rank": 1, "Id": 1285, - "CommandName": "Set-PnPFileCheckedIn" + "CommandName": "Set-PnPFileCheckedIn", + "Rank": 1, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Rank": 2, "Id": 1286, - "CommandName": "Set-PnPFileCheckedIn" + "CommandName": "Set-PnPFileCheckedIn", + "Rank": 2, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" }, { - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Rank": 1, "Id": 1287, - "CommandName": "Set-PnPFileCheckedOut" + "CommandName": "Set-PnPFileCheckedOut", + "Rank": 1, + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" }, { - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, "Id": 1288, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Rank": 1, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, "Id": 1289, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Rank": 2, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3, "Id": 1290, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Rank": 3, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Command": "Set-PnPFooter -Enabled:$true", - "Rank": 1, "Id": 1291, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Rank": 1, + "Command": "Set-PnPFooter -Enabled:$true" }, { - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Rank": 2, "Id": 1292, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Rank": 2, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" }, { - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Rank": 3, "Id": 1293, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Rank": 3, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" }, { - "Command": "Set-PnPFooter -LogoUrl \"\"", - "Rank": 4, "Id": 1294, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Rank": 4, + "Command": "Set-PnPFooter -LogoUrl \"\"" }, { - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Rank": 1, "Id": 1295, - "CommandName": "Set-PnPGraphSubscription" + "CommandName": "Set-PnPGraphSubscription", + "Rank": 1, + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Rank": 1, "Id": 1296, - "CommandName": "Set-PnPGroup" + "CommandName": "Set-PnPGroup", + "Rank": 1, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Rank": 2, "Id": 1297, - "CommandName": "Set-PnPGroup" + "CommandName": "Set-PnPGroup", + "Rank": 2, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Rank": 1, "Id": 1298, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 1, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Rank": 2, "Id": 1299, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 2, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Rank": 3, "Id": 1300, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 3, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Rank": 4, "Id": 1301, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 4, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Rank": 5, "Id": 1302, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Rank": 5, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Rank": 1, "Id": 1303, - "CommandName": "Set-PnPHideDefaultThemes" + "CommandName": "Set-PnPHideDefaultThemes", + "Rank": 1, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Rank": 2, "Id": 1304, - "CommandName": "Set-PnPHideDefaultThemes" + "CommandName": "Set-PnPHideDefaultThemes", + "Rank": 2, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Rank": 1, "Id": 1305, - "CommandName": "Set-PnPHomePage" + "CommandName": "Set-PnPHomePage", + "Rank": 1, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Rank": 2, "Id": 1306, - "CommandName": "Set-PnPHomePage" + "CommandName": "Set-PnPHomePage", + "Rank": 2, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Rank": 1, "Id": 1307, - "CommandName": "Set-PnPHomeSite" + "CommandName": "Set-PnPHomeSite", + "Rank": 1, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Rank": 2, "Id": 1308, - "CommandName": "Set-PnPHomeSite" + "CommandName": "Set-PnPHomeSite", + "Rank": 2, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Rank": 1, "Id": 1309, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Rank": 1, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Rank": 2, "Id": 1310, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Rank": 2, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Rank": 3, "Id": 1311, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Rank": 3, + "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\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "Rank": 4, "Id": 1312, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Rank": 4, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Rank": 5, "Id": 1313, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Rank": 5, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Rank": 6, "Id": 1314, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Rank": 6, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" }, { - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 1, "Id": 1315, - "CommandName": "Set-PnPImageListItemColumn" + "CommandName": "Set-PnPImageListItemColumn", + "Rank": 1, + "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\" -Path sample.png", - "Rank": 2, "Id": 1316, - "CommandName": "Set-PnPImageListItemColumn" + "CommandName": "Set-PnPImageListItemColumn", + "Rank": 2, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" }, { - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Rank": 1, "Id": 1317, - "CommandName": "Set-PnPIndexedProperties" + "CommandName": "Set-PnPIndexedProperties", + "Rank": 1, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Rank": 1, "Id": 1318, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 1, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Rank": 2, "Id": 1319, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 2, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" }, { - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Rank": 1, "Id": 1320, - "CommandName": "Set-PnPKnowledgeHubSite" + "CommandName": "Set-PnPKnowledgeHubSite", + "Rank": 1, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Rank": 1, "Id": 1321, - "CommandName": "Set-PnPLabel" + "CommandName": "Set-PnPLabel", + "Rank": 1, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Rank": 2, "Id": 1322, - "CommandName": "Set-PnPLabel" + "CommandName": "Set-PnPLabel", + "Rank": 2, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Rank": 1, "Id": 1323, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 1, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Rank": 2, "Id": 1324, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 2, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Rank": 3, "Id": 1325, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 3, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Rank": 4, "Id": 1326, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 4, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" }, { - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Rank": 5, "Id": 1327, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 5, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Rank": 6, "Id": 1328, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 6, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Rank": 7, "Id": 1329, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 7, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Rank": 8, "Id": 1330, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 8, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Rank": 9, "Id": 1331, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 9, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Rank": 10, "Id": 1332, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 10, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" }, { - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Rank": 11, "Id": 1333, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Rank": 11, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Rank": 1, "Id": 1334, - "CommandName": "Set-PnPListInformationRightsManagement" + "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 1, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Rank": 2, "Id": 1335, - "CommandName": "Set-PnPListInformationRightsManagement" + "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 2, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1, "Id": 1336, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Rank": 1, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 2, "Id": 1337, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Rank": 2, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 3, "Id": 1338, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Rank": 3, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Rank": 4, "Id": 1339, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Rank": 4, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Rank": 5, "Id": 1340, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Rank": 5, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, "Id": 1341, - "CommandName": "Set-PnPListItemAsRecord" + "CommandName": "Set-PnPListItemAsRecord", + "Rank": 1, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Rank": 2, "Id": 1342, - "CommandName": "Set-PnPListItemAsRecord" + "CommandName": "Set-PnPListItemAsRecord", + "Rank": 2, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, "Id": 1343, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Rank": 1, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, "Id": 1344, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Rank": 2, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3, "Id": 1345, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Rank": 3, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Rank": 4, "Id": 1346, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Rank": 4, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Rank": 5, "Id": 1347, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Rank": 5, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, "Id": 1348, - "CommandName": "Set-PnPListPermission" + "CommandName": "Set-PnPListPermission", + "Rank": 1, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, "Id": 1349, - "CommandName": "Set-PnPListPermission" + "CommandName": "Set-PnPListPermission", + "Rank": 2, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Rank": 1, "Id": 1350, - "CommandName": "Set-PnPListRecordDeclaration" + "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 1, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Rank": 2, "Id": 1351, - "CommandName": "Set-PnPListRecordDeclaration" + "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 2, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 1, "Id": 1352, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Rank": 1, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 2, "Id": 1353, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Rank": 2, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 3, "Id": 1354, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Rank": 3, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 4, "Id": 1355, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Rank": 4, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Rank": 1, "Id": 1356, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "Id": 1357, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3, "Id": 1358, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Rank": 1, "Id": 1359, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "Id": 1360, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3, "Id": 1361, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Rank": 1, "Id": 1362, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "Id": 1363, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3, "Id": 1364, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Rank": 1, "Id": 1365, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "Id": 1366, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3, "Id": 1367, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Rank": 1, "Id": 1368, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "Id": 1369, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3, "Id": 1370, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Rank": 1, "Id": 1371, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "Id": 1372, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3, "Id": 1373, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, "Id": 1374, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 1, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" }, { - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, "Id": 1375, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 2, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Rank": 3, "Id": 1376, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 3, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Rank": 4, "Id": 1377, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 4, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Rank": 5, "Id": 1378, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 5, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6, "Id": 1379, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 6, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Rank": 1, "Id": 1380, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Rank": 1, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Rank": 2, "Id": 1381, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Rank": 2, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" }, { - "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Rank": 1, "Id": 1382, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 1, + "Command": "Set-PnPMinimalDownloadStrategy -Off" }, { - "Command": "Set-PnPMinimalDownloadStrategy -On", - "Rank": 2, "Id": 1383, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 2, + "Command": "Set-PnPMinimalDownloadStrategy -On" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Rank": 1, "Id": 1384, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 1, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Rank": 2, "Id": 1385, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 2, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Rank": 3, "Id": 1386, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 3, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" }, { - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Rank": 4, "Id": 1387, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 4, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Rank": 5, "Id": 1388, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 5, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "Rank": 6, "Id": 1389, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 6, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7, "Id": 1390, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 7, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "Rank": 8, "Id": 1391, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 8, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, "Id": 1392, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 9, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, "Id": 1393, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 10, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "Rank": 11, "Id": 1394, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Rank": 11, + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" }, { - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Rank": 1, "Id": 1395, - "CommandName": "Set-PnPPageTextPart" + "CommandName": "Set-PnPPageTextPart", + "Rank": 1, + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" }, { - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Rank": 1, "Id": 1396, - "CommandName": "Set-PnPPageWebPart" + "CommandName": "Set-PnPPageWebPart", + "Rank": 1, + "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 $myproperties", - "Rank": 2, "Id": 1397, - "CommandName": "Set-PnPPageWebPart" + "CommandName": "Set-PnPPageWebPart", + "Rank": 2, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" }, { - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Rank": 1, "Id": 1398, - "CommandName": "Set-PnPPlannerBucket" + "CommandName": "Set-PnPPlannerBucket", + "Rank": 1, + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" }, { - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Rank": 1, "Id": 1399, - "CommandName": "Set-PnPPlannerConfiguration" + "CommandName": "Set-PnPPlannerConfiguration", + "Rank": 1, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" }, { - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Rank": 2, "Id": 1400, - "CommandName": "Set-PnPPlannerConfiguration" + "CommandName": "Set-PnPPlannerConfiguration", + "Rank": 2, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" }, { - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Rank": 1, "Id": 1401, - "CommandName": "Set-PnPPlannerPlan" + "CommandName": "Set-PnPPlannerPlan", + "Rank": 1, + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Rank": 1, "Id": 1402, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Rank": 1, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Rank": 2, "Id": 1403, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Rank": 2, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Rank": 3, "Id": 1404, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Rank": 3, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 1405, - "CommandName": "Set-PnPPlannerUserPolicy" + "CommandName": "Set-PnPPlannerUserPolicy", + "Rank": 1, + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Rank": 1, "Id": 1406, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 1, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Rank": 2, "Id": 1407, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 2, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Rank": 3, "Id": 1408, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 3, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" }, { - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Rank": 1, "Id": 1409, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 1, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" }, { - "Command": "Set-PnPRequestAccessEmails -Disabled", - "Rank": 2, "Id": 1410, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 2, + "Command": "Set-PnPRequestAccessEmails -Disabled" }, { - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Rank": 3, "Id": 1411, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 3, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false" }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Rank": 1, "Id": 1412, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Rank": 1, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" }, { - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Rank": 2, "Id": 1413, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Rank": 2, + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Rank": 3, "Id": 1414, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Rank": 3, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Rank": 4, "Id": 1415, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Rank": 4, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Rank": 1, "Id": 1416, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 1, + "Command": "Set-PnPSearchConfiguration -Configuration $config" }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, "Id": 1417, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 2, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, "Id": 1418, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 3, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, "Id": 1419, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 4, + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "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, "Id": 1420, - "CommandName": "Set-PnPSearchExternalItem" + "CommandName": "Set-PnPSearchExternalItem", + "Rank": 1, + "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone" }, { - "Command": "Set-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, "Id": 1421, - "CommandName": "Set-PnPSearchExternalItem" + "CommandName": "Set-PnPSearchExternalItem", + "Rank": 2, + "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"" }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Rank": 1, "Id": 1422, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 1, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Rank": 2, "Id": 1423, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 2, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Rank": 3, "Id": 1424, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 3, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Rank": 4, "Id": 1425, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 4, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Rank": 5, "Id": 1426, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 5, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" }, { - "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Rank": 6, "Id": 1427, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 6, + "Command": "Set-PnPSearchSettings -SearchScope Tenant" }, { - "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Rank": 7, "Id": 1428, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Rank": 7, + "Command": "Set-PnPSearchSettings -SearchScope Hub" }, { - "Command": "Set-PnPSite -Classification \"HBI\"", - "Rank": 1, "Id": 1429, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 1, + "Command": "Set-PnPSite -Classification \"HBI\"" }, { - "Command": "Set-PnPSite -Classification $null", - "Rank": 2, "Id": 1430, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 2, + "Command": "Set-PnPSite -Classification $null" }, { - "Command": "Set-PnPSite -DisableFlows", - "Rank": 3, "Id": 1431, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 3, + "Command": "Set-PnPSite -DisableFlows" }, { - "Command": "Set-PnPSite -DisableFlows:$false", - "Rank": 4, "Id": 1432, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 4, + "Command": "Set-PnPSite -DisableFlows:$false" }, { - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Rank": 5, "Id": 1433, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 5, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" }, { - "Command": "Set-PnPSite -NoScriptSite $false", - "Rank": 6, "Id": 1434, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 6, + "Command": "Set-PnPSite -NoScriptSite $false" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "Rank": 7, "Id": 1435, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 7, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "Rank": 8, "Id": 1436, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 8, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "Rank": 9, "Id": 1437, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 9, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" }, { - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "Rank": 10, "Id": 1438, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 10, + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "Rank": 11, "Id": 1439, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 11, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "Rank": 12, "Id": 1440, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 12, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "Rank": 13, "Id": 1441, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 13, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "Rank": 14, "Id": 1442, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 14, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "Rank": 15, "Id": 1443, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 15, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "Rank": 16, "Id": 1444, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 16, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" }, { - "Command": "Set-PnPSite -CancelVPForExistingLibs", - "Rank": 17, "Id": 1445, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Rank": 17, + "Command": "Set-PnPSite -CancelVPForExistingLibs" }, { - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Rank": 1, "Id": 1446, - "CommandName": "Set-PnPSiteClassification" + "CommandName": "Set-PnPSiteClassification", + "Rank": 1, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"" }, { - "Command": "Set-PnPSiteClosure -State Open", - "Rank": 1, "Id": 1447, - "CommandName": "Set-PnPSiteClosure" + "CommandName": "Set-PnPSiteClosure", + "Rank": 1, + "Command": "Set-PnPSiteClosure -State Open" }, { - "Command": "Set-PnPSiteClosure -State Closed", - "Rank": 2, "Id": 1448, - "CommandName": "Set-PnPSiteClosure" + "CommandName": "Set-PnPSiteClosure", + "Rank": 2, + "Command": "Set-PnPSiteClosure -State Closed" }, { - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Rank": 1, "Id": 1449, - "CommandName": "Set-PnPSiteDesign" + "CommandName": "Set-PnPSiteDesign", + "Rank": 1, + "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 Company Design\" -Description \"My description\" -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"", - "Rank": 2, "Id": 1450, - "CommandName": "Set-PnPSiteDesign" + "CommandName": "Set-PnPSiteDesign", + "Rank": 2, + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Company Design\" -Description \"My description\" -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"" }, { - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "Rank": 1, "Id": 1451, - "CommandName": "Set-PnPSiteGroup" + "CommandName": "Set-PnPSiteGroup", + "Rank": 1, + "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\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Rank": 2, "Id": 1452, - "CommandName": "Set-PnPSiteGroup" + "CommandName": "Set-PnPSiteGroup", + "Rank": 2, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" }, { - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 1, "Id": 1453, - "CommandName": "Set-PnPSitePolicy" + "CommandName": "Set-PnPSitePolicy", + "Rank": 1, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1, "Id": 1454, - "CommandName": "Set-PnPSiteScript" + "CommandName": "Set-PnPSiteScript", + "Rank": 1, + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1, "Id": 1455, - "CommandName": "Set-PnPSiteScriptPackage" + "CommandName": "Set-PnPSiteScriptPackage", + "Rank": 1, + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Rank": 1, "Id": 1456, - "CommandName": "Set-PnPSiteSensitivityLabel" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Rank": 1, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Rank": 2, "Id": 1457, - "CommandName": "Set-PnPSiteSensitivityLabel" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Rank": 2, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 1, "Id": 1458, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 1, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 2, "Id": 1459, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 2, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 3, "Id": 1460, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 3, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 4, "Id": 1461, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 4, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 5, "Id": 1462, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 5, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 6, "Id": 1463, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 6, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 1, "Id": 1464, - "CommandName": "Set-PnPStorageEntity" + "CommandName": "Set-PnPStorageEntity", + "Rank": 1, + "Command": "Set-PnPStorageEntity -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\"", - "Rank": 2, "Id": 1465, - "CommandName": "Set-PnPStorageEntity" + "CommandName": "Set-PnPStorageEntity", + "Rank": 2, + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1, "Id": 1466, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Rank": 1, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 2, "Id": 1467, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Rank": 2, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1, "Id": 1468, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Rank": 1, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 2, "Id": 1469, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Rank": 2, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Rank": 1, "Id": 1470, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 1, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Rank": 2, "Id": 1471, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 2, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Rank": 1, "Id": 1472, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 1, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Rank": 2, "Id": 1473, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 2, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Rank": 3, "Id": 1474, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 3, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" }, { - "Command": "Set-PnPTeamifyPromptHidden", - "Rank": 1, "Id": 1475, - "CommandName": "Set-PnPTeamifyPromptHidden" + "CommandName": "Set-PnPTeamifyPromptHidden", + "Rank": 1, + "Command": "Set-PnPTeamifyPromptHidden" }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Rank": 1, "Id": 1476, - "CommandName": "Set-PnPTeamsChannel" + "CommandName": "Set-PnPTeamsChannel", + "Rank": 1, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Rank": 2, "Id": 1477, - "CommandName": "Set-PnPTeamsChannel" + "CommandName": "Set-PnPTeamsChannel", + "Rank": 2, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" }, { - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "Rank": 1, "Id": 1478, - "CommandName": "Set-PnpTeamsChannelUser" + "CommandName": "Set-PnpTeamsChannelUser", + "Rank": 1, + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" }, { - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Rank": 2, "Id": 1479, - "CommandName": "Set-PnpTeamsChannelUser" + "CommandName": "Set-PnpTeamsChannelUser", + "Rank": 2, + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" }, { - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Rank": 1, "Id": 1480, - "CommandName": "Set-PnPTeamsTab" + "CommandName": "Set-PnPTeamsTab", + "Rank": 1, + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" }, { - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Rank": 1, "Id": 1481, - "CommandName": "Set-PnPTeamsTag" + "CommandName": "Set-PnPTeamsTag", + "Rank": 1, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" }, { - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Rank": 1, "Id": 1482, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Rank": 1, + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" }, { - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Rank": 2, "Id": 1483, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Rank": 2, + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Rank": 3, "Id": 1484, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Rank": 3, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Rank": 4, "Id": 1485, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Rank": 4, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Rank": 1, "Id": 1486, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 1, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Rank": 2, "Id": 1487, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 2, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Rank": 3, "Id": 1488, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 3, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" }, { - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Rank": 1, "Id": 1489, - "CommandName": "Set-PnPTeamsTeamPicture" + "CommandName": "Set-PnPTeamsTeamPicture", + "Rank": 1, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" }, { - "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Rank": 1, "Id": 1490, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Rank": 1, + "Command": "Set-PnPTemporarilyDisableAppBar $true" }, { - "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Rank": 2, "Id": 1491, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Rank": 2, + "Command": "Set-PnPTemporarilyDisableAppBar $false" }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", - "Rank": 1, "Id": 1492, - "CommandName": "Set-PnPTenant" + "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\"" }, { - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Rank": 2, "Id": 1493, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Rank": 2, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" }, { - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Rank": 3, "Id": 1494, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Rank": 3, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false" }, { - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Rank": 4, "Id": 1495, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Rank": 4, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" }, { - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Rank": 1, "Id": 1496, - "CommandName": "Set-PnPTenantAppCatalogUrl" + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Rank": 1, + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Rank": 1, "Id": 1497, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 1, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Rank": 2, "Id": 1498, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 2, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Rank": 3, "Id": 1499, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 3, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" }, { - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", - "Rank": 1, "Id": 1500, - "CommandName": "Set-PnPTenantCdnPolicy" + "CommandName": "Set-PnPTenantCdnPolicy", + "Rank": 1, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" }, { - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Rank": 2, "Id": 1501, - "CommandName": "Set-PnPTenantCdnPolicy" + "CommandName": "Set-PnPTenantCdnPolicy", + "Rank": 2, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Rank": 1, "Id": 1502, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Rank": 1, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Rank": 2, "Id": 1503, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Rank": 2, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 3, "Id": 1504, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Rank": 3, + "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 @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 4, "Id": 1505, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Rank": 4, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Rank": 5, "Id": 1506, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Rank": 5, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" }, { - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Rank": 1, "Id": 1507, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Rank": 1, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" }, { - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Rank": 2, "Id": 1508, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Rank": 2, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" }, { - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Rank": 1, "Id": 1509, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Rank": 1, + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2, "Id": 1510, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Rank": 2, + "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\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 3, "Id": 1511, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Rank": 3, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "Rank": 4, "Id": 1512, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Rank": 4, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" }, { - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Rank": 1, "Id": 1513, - "CommandName": "Set-PnPTermGroup" + "CommandName": "Set-PnPTermGroup", + "Rank": 1, + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Rank": 1, "Id": 1514, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Rank": 1, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Rank": 2, "Id": 1515, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Rank": 2, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Rank": 3, "Id": 1516, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Rank": 3, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" }, { - "Command": "Set-PnPTheme", - "Rank": 1, "Id": 1517, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Rank": 1, + "Command": "Set-PnPTheme" }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Rank": 2, "Id": 1518, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Rank": 2, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Rank": 3, "Id": 1519, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Rank": 3, + "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' -ResetSubwebsToInherit", - "Rank": 4, "Id": 1520, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Rank": 4, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Rank": 1, "Id": 1521, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Rank": 1, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Rank": 2, "Id": 1522, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Rank": 2, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Rank": 3, "Id": 1523, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Rank": 3, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" }, { - "Command": "Set-PnPTraceLog -Off", - "Rank": 4, "Id": 1524, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Rank": 4, + "Command": "Set-PnPTraceLog -Off" }, { - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Rank": 1, "Id": 1525, - "CommandName": "Set-PnPUserOneDriveQuota" + "CommandName": "Set-PnPUserOneDriveQuota", + "Rank": 1, + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" }, { - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Rank": 1, "Id": 1526, - "CommandName": "Set-PnPUserProfileProperty" + "CommandName": "Set-PnPUserProfileProperty", + "Rank": 1, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" }, { - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Rank": 2, "Id": 1527, - "CommandName": "Set-PnPUserProfileProperty" + "CommandName": "Set-PnPUserProfileProperty", + "Rank": 2, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" }, { - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "Rank": 1, "Id": 1528, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Rank": 1, + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Rank": 2, "Id": 1529, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Rank": 2, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "Rank": 3, "Id": 1530, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Rank": 3, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Rank": 4, "Id": 1531, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Rank": 4, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" }, { - "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, "Id": 1532, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "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" }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Rank": 2, "Id": 1533, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 2, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" }, { - "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, "Id": 1534, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "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" }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Rank": 4, "Id": 1535, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 4, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" }, { - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Rank": 1, "Id": 1536, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Rank": 1, + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" }, { - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Rank": 2, "Id": 1537, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Rank": 2, + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" }, { - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Rank": 3, "Id": 1538, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Rank": 3, + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" }, { - "Command": "Set-PnPWeb -NoCrawl:$true", - "Rank": 4, "Id": 1539, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Rank": 4, + "Command": "Set-PnPWeb -NoCrawl:$true" }, { - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Rank": 1, "Id": 1540, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Rank": 1, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" }, { - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Rank": 2, "Id": 1541, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Rank": 2, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" }, { - "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Rank": 3, "Id": 1542, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Rank": 3, + "Command": "Set-PnPWebHeader -LogoAlignment Middle" }, { - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1, "Id": 1543, - "CommandName": "Set-PnPWebhookSubscription" + "CommandName": "Set-PnPWebhookSubscription", + "Rank": 1, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Rank": 2, "Id": 1544, - "CommandName": "Set-PnPWebhookSubscription" + "CommandName": "Set-PnPWebhookSubscription", + "Rank": 2, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", - "Rank": 1, "Id": 1545, - "CommandName": "Set-PnPWebPartProperty" + "CommandName": "Set-PnPWebPartProperty", + "Rank": 1, + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" }, { - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 1, "Id": 1546, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Rank": 1, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Rank": 2, "Id": 1547, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Rank": 2, + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" }, { - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 3, "Id": 1548, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Rank": 3, + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Rank": 4, "Id": 1549, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Rank": 4, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" }, { - "Command": "Set-PnPWebTheme -Theme MyTheme", - "Rank": 1, "Id": 1550, - "CommandName": "Set-PnPWebTheme" + "CommandName": "Set-PnPWebTheme", + "Rank": 1, + "Command": "Set-PnPWebTheme -Theme MyTheme" }, { - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Rank": 2, "Id": 1551, - "CommandName": "Set-PnPWebTheme" + "CommandName": "Set-PnPWebTheme", + "Rank": 2, + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" }, { - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Rank": 1, "Id": 1552, - "CommandName": "Set-PnPWikiPageContent" + "CommandName": "Set-PnPWikiPageContent", + "Rank": 1, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" }, { - "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Rank": 1, "Id": 1553, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 1, + "Command": "Submit-PnPSearchQuery -Query \"finance\"" }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Rank": 2, "Id": 1554, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 2, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Rank": 3, "Id": 1555, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 3, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Rank": 4, "Id": 1556, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 4, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" }, { - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Rank": 5, "Id": 1557, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Rank": 5, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Rank": 1, "Id": 1558, - "CommandName": "Submit-PnPTeamsChannelMessage" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 1, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Rank": 2, "Id": 1559, - "CommandName": "Submit-PnPTeamsChannelMessage" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 2, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" }, { - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "Id": 1560, - "CommandName": "Sync-PnPAppToTeams" + "CommandName": "Sync-PnPAppToTeams", + "Rank": 1, + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Rank": 1, "Id": 1561, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 1, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Rank": 2, "Id": 1562, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 2, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Rank": 3, "Id": 1563, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 3, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" }, { - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Rank": 1, "Id": 1564, - "CommandName": "Test-PnPListItemIsRecord" + "CommandName": "Test-PnPListItemIsRecord", + "Rank": 1, + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" }, { - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Rank": 1, "Id": 1565, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Rank": 1, + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, "Id": 1566, - "CommandName": "Test-PnPSite" + "CommandName": "Test-PnPSite", + "Rank": 1, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2, "Id": 1567, - "CommandName": "Test-PnPSite" + "CommandName": "Test-PnPSite", + "Rank": 2, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Rank": 1, "Id": 1568, - "CommandName": "Test-PnPTenantTemplate" + "CommandName": "Test-PnPTenantTemplate", + "Rank": 1, + "Command": "Test-PnPTenantTemplate -Template $myTemplate" }, { - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Rank": 1, "Id": 1569, - "CommandName": "Undo-PnPFileCheckedOut" + "CommandName": "Undo-PnPFileCheckedOut", + "Rank": 1, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "Id": 1570, - "CommandName": "Uninstall-PnPApp" + "CommandName": "Uninstall-PnPApp", + "Rank": 1, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "Id": 1571, - "CommandName": "Uninstall-PnPApp" + "CommandName": "Uninstall-PnPApp", + "Rank": 2, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "Id": 1572, - "CommandName": "Unpublish-PnPApp" + "CommandName": "Unpublish-PnPApp", + "Rank": 1, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "Id": 1573, - "CommandName": "Unpublish-PnPApp" + "CommandName": "Unpublish-PnPApp", + "Rank": 2, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Rank": 1, "Id": 1574, - "CommandName": "Unpublish-PnPContentType" + "CommandName": "Unpublish-PnPContentType", + "Rank": 1, + "Command": "Unpublish-PnPContentType -ContentType 0x0101" }, { - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, "Id": 1575, - "CommandName": "Unpublish-PnPSyntexModel" + "CommandName": "Unpublish-PnPSyntexModel", + "Rank": 1, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "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, "Id": 1576, - "CommandName": "Unpublish-PnPSyntexModel" + "CommandName": "Unpublish-PnPSyntexModel", + "Rank": 2, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1, "Id": 1577, - "CommandName": "Unregister-PnPHubSite" + "CommandName": "Unregister-PnPHubSite", + "Rank": 1, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "Id": 1578, - "CommandName": "Update-PnPApp" + "CommandName": "Update-PnPApp", + "Rank": 1, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "Id": 1579, - "CommandName": "Update-PnPApp" + "CommandName": "Update-PnPApp", + "Rank": 2, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 1, "Id": 1580, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 1, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Rank": 2, "Id": 1581, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 2, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" }, { - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 3, "Id": 1582, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 3, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Rank": 1, "Id": 1583, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 1, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2, "Id": 1584, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 2, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "Rank": 3, "Id": 1585, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 3, + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" }, { - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Rank": 1, "Id": 1586, - "CommandName": "Update-PnPTeamsApp" + "CommandName": "Update-PnPTeamsApp", + "Rank": 1, + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1, "Id": 1587, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Rank": 1, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2, "Id": 1588, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Rank": 2, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Rank": 3, "Id": 1589, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Rank": 3, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" }, { - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Rank": 1, "Id": 1590, - "CommandName": "Update-PnPUserType" + "CommandName": "Update-PnPUserType", + "Rank": 1, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" } ] diff --git a/version.txt b/version.txt index 4a4cef143..a885043d3 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.95 \ No newline at end of file +2.2.96 \ No newline at end of file From 2ca73a404ab575d824933c6402c32f450dceb5c6 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Thu, 12 Oct 2023 17:18:15 +0300 Subject: [PATCH 074/146] Feature: add GCC support for some cmdlets --- CHANGELOG.md | 1 + src/Commands/AzureAD/GetAzureADUser.cs | 8 ++++---- .../PowerPlatform/PowerAutomate/AddFlowOwner.cs | 4 ++-- .../PowerAutomate/RemoveFlowOwner.cs | 4 ++-- ...PointUserProfilesFromAzureActiveDirectory.cs | 2 +- src/Commands/Utilities/AzureAdUtility.cs | 17 +++++++++-------- 6 files changed, 19 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cf4af2ff..661b8b28a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added option to create a Microsoft 365 Group with dynamic membership by passing in `-DynamicMembershipRule` [#3426](https://github.com/pnp/powershell/pull/3426) - Added `RestrictedAccessControl`, `ClearRestrictedAccessControl`, `RemoveRestrictedAccessControlGroups`, `AddRestrictedAccessControlGroups` and `RestrictedAccessControlGroups` parameters to `Set-PnPTenantSite` cmdlet to handle restricted access control. [#3463](https://github.com/pnp/powershell/pull/3463) - Added `Get-PnPRetentionLabel` cmdlet to retrieve Purview retention labels. [#3459](https://github.com/pnp/powershell/pull/3459) +- Added GCC support for `Get-PnPAzureADUser` , `Add-PnPFlowOwner` , `Remove-PnPFlowOwner` and `Sync-PnPSharePointUserProfilesFromAzureActiveDirectory` cmdlets ### Fixed diff --git a/src/Commands/AzureAD/GetAzureADUser.cs b/src/Commands/AzureAD/GetAzureADUser.cs index 651b71c25..b906e4035 100644 --- a/src/Commands/AzureAD/GetAzureADUser.cs +++ b/src/Commands/AzureAD/GetAzureADUser.cs @@ -69,22 +69,22 @@ protected override void ExecuteCmdlet() PnP.PowerShell.Commands.Model.AzureAD.User user; if (Guid.TryParse(Identity, out Guid identityGuid)) { - user = PnP.PowerShell.Commands.Utilities.AzureAdUtility.GetUser(AccessToken, identityGuid, ignoreDefaultProperties: IgnoreDefaultProperties, useBetaEndPoint: UseBeta.IsPresent); + user = PnP.PowerShell.Commands.Utilities.AzureAdUtility.GetUser(AccessToken, identityGuid, ignoreDefaultProperties: IgnoreDefaultProperties, useBetaEndPoint: UseBeta.IsPresent, azureEnvironment: Connection.AzureEnvironment); } else { - user = PnP.PowerShell.Commands.Utilities.AzureAdUtility.GetUser(AccessToken, WebUtility.UrlEncode(Identity), Select, ignoreDefaultProperties: IgnoreDefaultProperties, useBetaEndPoint: UseBeta.IsPresent); + user = PnP.PowerShell.Commands.Utilities.AzureAdUtility.GetUser(AccessToken, WebUtility.UrlEncode(Identity), Select, ignoreDefaultProperties: IgnoreDefaultProperties, useBetaEndPoint: UseBeta.IsPresent, azureEnvironment: Connection.AzureEnvironment); } WriteObject(user); } else if (ParameterSpecified(nameof(Delta))) { - var userDelta = PnP.PowerShell.Commands.Utilities.AzureAdUtility.ListUserDelta(AccessToken, DeltaToken, Filter, OrderBy, Select, StartIndex, EndIndex, useBetaEndPoint: UseBeta.IsPresent); + var userDelta = PnP.PowerShell.Commands.Utilities.AzureAdUtility.ListUserDelta(AccessToken, DeltaToken, Filter, OrderBy, Select, StartIndex, EndIndex, useBetaEndPoint: UseBeta.IsPresent, azureEnvironment: Connection.AzureEnvironment); WriteObject(userDelta); } else { - var users = PnP.PowerShell.Commands.Utilities.AzureAdUtility.ListUsers(AccessToken, Filter, OrderBy, Select, ignoreDefaultProperties: IgnoreDefaultProperties, StartIndex, EndIndex, useBetaEndPoint: UseBeta.IsPresent); + var users = PnP.PowerShell.Commands.Utilities.AzureAdUtility.ListUsers(AccessToken, Filter, OrderBy, Select, ignoreDefaultProperties: IgnoreDefaultProperties, StartIndex, EndIndex, useBetaEndPoint: UseBeta.IsPresent, azureEnvironment: Connection.AzureEnvironment); WriteObject(users, true); } } diff --git a/src/Commands/PowerPlatform/PowerAutomate/AddFlowOwner.cs b/src/Commands/PowerPlatform/PowerAutomate/AddFlowOwner.cs index 5570219f0..8270eb717 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/AddFlowOwner.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/AddFlowOwner.cs @@ -49,12 +49,12 @@ protected override void ExecuteCmdlet() if (Guid.TryParse(User, out Guid identityGuid)) { WriteVerbose("Looking up user through Microsoft Graph by user id {identityGuid}"); - user = Utilities.AzureAdUtility.GetUser(graphAccessToken, identityGuid); + user = Utilities.AzureAdUtility.GetUser(graphAccessToken, identityGuid, azureEnvironment: Connection.AzureEnvironment); } else { WriteVerbose($"Looking up user through Microsoft Graph by user principal name {User}"); - user = Utilities.AzureAdUtility.GetUser(graphAccessToken, WebUtility.UrlEncode(User)); + user = Utilities.AzureAdUtility.GetUser(graphAccessToken, WebUtility.UrlEncode(User), azureEnvironment: Connection.AzureEnvironment); } if (user == null) diff --git a/src/Commands/PowerPlatform/PowerAutomate/RemoveFlowOwner.cs b/src/Commands/PowerPlatform/PowerAutomate/RemoveFlowOwner.cs index 4adb963f1..2a229bfa5 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/RemoveFlowOwner.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/RemoveFlowOwner.cs @@ -49,12 +49,12 @@ protected override void ExecuteCmdlet() if (Guid.TryParse(User, out Guid identityGuid)) { WriteVerbose("Looking up user through Microsoft Graph by user id {identityGuid}"); - user = Utilities.AzureAdUtility.GetUser(graphAccessToken, identityGuid); + user = Utilities.AzureAdUtility.GetUser(graphAccessToken, identityGuid, azureEnvironment: Connection.AzureEnvironment); } else { WriteVerbose($"Looking up user through Microsoft Graph by user principal name {User}"); - user = Utilities.AzureAdUtility.GetUser(graphAccessToken, WebUtility.UrlEncode(User)); + user = Utilities.AzureAdUtility.GetUser(graphAccessToken, WebUtility.UrlEncode(User), azureEnvironment: Connection.AzureEnvironment); } if (user == null) diff --git a/src/Commands/UserProfiles/SyncSharePointUserProfilesFromAzureActiveDirectory.cs b/src/Commands/UserProfiles/SyncSharePointUserProfilesFromAzureActiveDirectory.cs index f2112355c..56d6d88bb 100644 --- a/src/Commands/UserProfiles/SyncSharePointUserProfilesFromAzureActiveDirectory.cs +++ b/src/Commands/UserProfiles/SyncSharePointUserProfilesFromAzureActiveDirectory.cs @@ -76,7 +76,7 @@ protected override void ExecuteCmdlet() WriteVerbose("Retrieving users from Azure Active Directory"); // Retrieve all the users from Azure Active Directory - aadUsers = PnP.PowerShell.Commands.Utilities.AzureAdUtility.ListUsers(GraphAccessToken, null, null, allAadPropertiesList.ToArray(), endIndex: null); + aadUsers = PnP.PowerShell.Commands.Utilities.AzureAdUtility.ListUsers(GraphAccessToken, null, null, allAadPropertiesList.ToArray(), endIndex: null, azureEnvironment: Connection.AzureEnvironment); WriteVerbose($"{aadUsers.Count} user{(aadUsers.Count != 1 ? "s have" : " has")} been retrieved from Azure Active Directory"); diff --git a/src/Commands/Utilities/AzureAdUtility.cs b/src/Commands/Utilities/AzureAdUtility.cs index 20c31b769..0358ab8e0 100644 --- a/src/Commands/Utilities/AzureAdUtility.cs +++ b/src/Commands/Utilities/AzureAdUtility.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.Linq; +using PnP.Framework; using PnP.PowerShell.Commands.Model.AzureAD; namespace PnP.PowerShell.Commands.Utilities @@ -24,9 +25,9 @@ internal static class AzureAdUtility /// Optional end index indicating up to which result to return users. By default all users will be returned. /// Indicates if the v1.0 (false) or beta (true) endpoint should be used at Microsoft Graph to query for the data /// UserDelta instance - public static UserDelta ListUserDelta(string accessToken, string deltaToken, string filter, string orderby, string[] selectProperties = null, int startIndex = 0, int? endIndex = null, bool useBetaEndPoint = false) + public static UserDelta ListUserDelta(string accessToken, string deltaToken, string filter, string orderby, string[] selectProperties = null, int startIndex = 0, int? endIndex = null, bool useBetaEndPoint = false, AzureEnvironment azureEnvironment = AzureEnvironment.Production) { - var userDelta = PnP.Framework.Graph.UsersUtility.ListUserDelta(accessToken, deltaToken, filter, orderby, selectProperties, startIndex, endIndex, useBetaEndPoint: useBetaEndPoint); + var userDelta = PnP.Framework.Graph.UsersUtility.ListUserDelta(accessToken, deltaToken, filter, orderby, selectProperties, startIndex, endIndex, useBetaEndPoint: useBetaEndPoint, azureEnvironment: azureEnvironment); var result = new UserDelta { @@ -48,9 +49,9 @@ public static UserDelta ListUserDelta(string accessToken, string deltaToken, str /// Last item in the results returned by Microsoft Graph to return. Provide NULL to return all results that exist. /// Indicates if the v1.0 (false) or beta (true) endpoint should be used at Microsoft Graph to query for the data /// List with User objects - public static List ListUsers(string accessToken, string filter, string orderby, string[] selectProperties = null, bool ignoreDefaultProperties = false, int startIndex = 0, int? endIndex = 999, bool useBetaEndPoint = false) + public static List ListUsers(string accessToken, string filter, string orderby, string[] selectProperties = null, bool ignoreDefaultProperties = false, int startIndex = 0, int? endIndex = 999, bool useBetaEndPoint = false, AzureEnvironment azureEnvironment = AzureEnvironment.Production) { - return PnP.Framework.Graph.UsersUtility.ListUsers(accessToken, filter, orderby, selectProperties, startIndex, endIndex, ignoreDefaultProperties: ignoreDefaultProperties, useBetaEndPoint: useBetaEndPoint).Select(User.CreateFrom).ToList(); + return PnP.Framework.Graph.UsersUtility.ListUsers(accessToken, filter, orderby, selectProperties, startIndex, endIndex, ignoreDefaultProperties: ignoreDefaultProperties, useBetaEndPoint: useBetaEndPoint, azureEnvironment: azureEnvironment).Select(User.CreateFrom).ToList(); } /// @@ -64,9 +65,9 @@ public static List ListUsers(string accessToken, string filter, string ord /// Last item in the results returned by Microsoft Graph to return. Provide NULL to return all results that exist. /// Indicates if the v1.0 (false) or beta (true) endpoint should be used at Microsoft Graph to query for the data /// List with User objects - public static User GetUser(string accessToken, Guid userId, string[] selectProperties = null, bool ignoreDefaultProperties = false, int startIndex = 0, int? endIndex = 999, bool useBetaEndPoint = false) + public static User GetUser(string accessToken, Guid userId, string[] selectProperties = null, bool ignoreDefaultProperties = false, int startIndex = 0, int? endIndex = 999, bool useBetaEndPoint = false, AzureEnvironment azureEnvironment = AzureEnvironment.Production) { - return PnP.Framework.Graph.UsersUtility.ListUsers(accessToken, $"id eq '{userId}'", null, selectProperties, startIndex, endIndex, ignoreDefaultProperties: ignoreDefaultProperties, useBetaEndPoint: useBetaEndPoint).Select(User.CreateFrom).FirstOrDefault(); + return PnP.Framework.Graph.UsersUtility.ListUsers(accessToken, $"id eq '{userId}'", null, selectProperties, startIndex, endIndex, ignoreDefaultProperties: ignoreDefaultProperties, useBetaEndPoint: useBetaEndPoint, azureEnvironment: azureEnvironment).Select(User.CreateFrom).FirstOrDefault(); } /// @@ -80,9 +81,9 @@ public static User GetUser(string accessToken, Guid userId, string[] selectPrope /// Last item in the results returned by Microsoft Graph to return. Provide NULL to return all results that exist. /// Indicates if the v1.0 (false) or beta (true) endpoint should be used at Microsoft Graph to query for the data /// User object - public static User GetUser(string accessToken, string userPrincipalName, string[] selectProperties = null, bool ignoreDefaultProperties = false, int startIndex = 0, int? endIndex = 999, bool useBetaEndPoint = false) + public static User GetUser(string accessToken, string userPrincipalName, string[] selectProperties = null, bool ignoreDefaultProperties = false, int startIndex = 0, int? endIndex = 999, bool useBetaEndPoint = false, AzureEnvironment azureEnvironment = AzureEnvironment.Production) { - return PnP.Framework.Graph.UsersUtility.ListUsers(accessToken, $"userPrincipalName eq '{userPrincipalName}'", null, selectProperties, startIndex, endIndex, ignoreDefaultProperties: ignoreDefaultProperties, useBetaEndPoint: useBetaEndPoint).Select(User.CreateFrom).FirstOrDefault(); + return PnP.Framework.Graph.UsersUtility.ListUsers(accessToken, $"userPrincipalName eq '{userPrincipalName}'", null, selectProperties, startIndex, endIndex, ignoreDefaultProperties: ignoreDefaultProperties, useBetaEndPoint: useBetaEndPoint, azureEnvironment: azureEnvironment).Select(User.CreateFrom).FirstOrDefault(); } #endregion From d08a3ec10f5cdd659be1804f2a4e089dd880c9fc Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Fri, 13 Oct 2023 02:42:57 +0000 Subject: [PATCH 075/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6360 ++++++++--------- version.txt | 2 +- 3 files changed, 3182 insertions(+), 3182 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 4e5b2a248..3b73d01f7 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -32e7be737a48be98508b37960292f35d9bf5e906 \ No newline at end of file +6a3065c5fa9eb7414b9636539020ee07bcb57927 \ 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 57aa92fef..5b2324a38 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9542 +1,9542 @@ [ { "Id": 1, + "Command": "Add-PnPAlert -List \"Demo List\"", "CommandName": "Add-PnPAlert", - "Rank": 1, - "Command": "Add-PnPAlert -List \"Demo List\"" + "Rank": 1 }, { "Id": 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", - "Rank": 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 }, { "Id": 3, + "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAlert", - "Rank": 3, - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Rank": 3 }, { "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))", "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))" + "Rank": 4 }, { "Id": 5, + "Command": "Add-PnPApp -Path ./myapp.sppkg", "CommandName": "Add-PnPApp", - "Rank": 1, - "Command": "Add-PnPApp -Path ./myapp.sppkg" + "Rank": 1 }, { "Id": 6, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "CommandName": "Add-PnPApp", - "Rank": 2, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" + "Rank": 2 }, { "Id": 7, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "CommandName": "Add-PnPApp", - "Rank": 3, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" + "Rank": 3 }, { "Id": 8, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "CommandName": "Add-PnPApp", - "Rank": 4, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" + "Rank": 4 }, { "Id": 9, + "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", "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`\"}" + "Rank": 1 }, { "Id": 10, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "CommandName": "Add-PnPAvailableSiteClassification", - "Rank": 1, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" + "Rank": 1 }, { "Id": 11, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "CommandName": "Add-PnPAvailableSiteClassification", - "Rank": 2, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" + "Rank": 2 }, { "Id": 12, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 1, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 13, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 2, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Rank": 2 }, { "Id": 14, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 3, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" + "Rank": 3 }, { "Id": 15, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 1, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 16, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 2, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Rank": 2 }, { "Id": 17, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 3, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" + "Rank": 3 }, { "Id": 18, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Rank": 1, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph" + "Rank": 1 }, { "Id": 19, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Rank": 2, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"" + "Rank": 2 }, { "Id": 20, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "CommandName": "Add-PnPContentType", - "Rank": 1, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct" + "Rank": 1 }, { "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\"", "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\"" + "Rank": 2 }, { "Id": 22, + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "CommandName": "Add-PnPContentType", - "Rank": 3, - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" + "Rank": 3 }, { "Id": 23, + "Command": "Add-PnPContentType -Name \"Project Item\"", "CommandName": "Add-PnPContentType", - "Rank": 4, - "Command": "Add-PnPContentType -Name \"Project Item\"" + "Rank": 4 }, { "Id": 24, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "CommandName": "Add-PnPContentType", - "Rank": 5, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" + "Rank": 5 }, { "Id": 25, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Rank": 1, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" + "Rank": 1 }, { "Id": 26, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Rank": 2, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" + "Rank": 2 }, { "Id": 27, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "CommandName": "Add-PnPContentTypeToDocumentSet", - "Rank": 1, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Rank": 1 }, { "Id": 28, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "CommandName": "Add-PnPContentTypeToDocumentSet", - "Rank": 2, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Rank": 2 }, { "Id": 29, + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "CommandName": "Add-PnPContentTypeToList", - "Rank": 1, - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" + "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`\"}\"", "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`\"}\"" + "Rank": 1 }, { "Id": 31, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Rank": 1, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" + "Rank": 1 }, { "Id": 32, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Rank": 2, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" + "Rank": 2 }, { "Id": 33, + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "CommandName": "Add-PnPDocumentSet", - "Rank": 1, - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" + "Rank": 1 }, { "Id": 34, + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "CommandName": "Add-PnPEventReceiver", - "Rank": 1, - "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous" + "Rank": 1 }, { "Id": 35, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "CommandName": "Add-PnPEventReceiver", - "Rank": 2, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous" + "Rank": 2 }, { "Id": 36, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", "CommandName": "Add-PnPEventReceiver", - "Rank": 3, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site" + "Rank": 3 }, { "Id": 37, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "CommandName": "Add-PnPEventReceiver", - "Rank": 4, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web" + "Rank": 4 }, { "Id": 38, + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "CommandName": "Add-PnPField", - "Rank": 1, - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" + "Rank": 1 }, { "Id": 39, + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", "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\"" + "Rank": 2 }, { "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\"", "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\"" + "Rank": 3 }, { "Id": 41, + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "CommandName": "Add-PnPField", - "Rank": 4, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" + "Rank": 4 }, { "Id": 42, + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "CommandName": "Add-PnPField", - "Rank": 5, - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" + "Rank": 5 }, { "Id": 43, + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "CommandName": "Add-PnPField", - "Rank": 6, - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" + "Rank": 6 }, { "Id": 44, + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "CommandName": "Add-PnPFieldToContentType", - "Rank": 1, - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Rank": 1 }, { "Id": 45, + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "CommandName": "Add-PnPFile", - "Rank": 1, - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" + "Rank": 1 }, { "Id": 46, + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "CommandName": "Add-PnPFile", - "Rank": 2, - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" + "Rank": 2 }, { "Id": 47, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Rank": 3, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" + "Rank": 3 }, { "Id": 48, + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Rank": 4, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" + "Rank": 4 }, { "Id": 49, + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Rank": 5, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" + "Rank": 5 }, { "Id": 50, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "CommandName": "Add-PnPFile", - "Rank": 6, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" + "Rank": 6 }, { "Id": 51, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "CommandName": "Add-PnPFile", - "Rank": 7, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" + "Rank": 7 }, { "Id": 52, + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "CommandName": "Add-PnPFile", - "Rank": 8, - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" + "Rank": 8 }, { "Id": 53, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 1, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Rank": 1 }, { "Id": 54, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 2, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" + "Rank": 2 }, { "Id": 55, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 3, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" + "Rank": 3 }, { "Id": 56, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Rank": 1, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Rank": 1 }, { "Id": 57, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Rank": 2, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" + "Rank": 2 }, { "Id": 58, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "CommandName": "Add-PnPFileSharingInvite", - "Rank": 1, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" + "Rank": 1 }, { "Id": 59, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "CommandName": "Add-PnPFileSharingInvite", - "Rank": 2, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" + "Rank": 2 }, { "Id": 60, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "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)" + "Rank": 3 }, { "Id": 61, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 1, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" + "Rank": 1 }, { "Id": 62, + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 2, - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" + "Rank": 2 }, { "Id": 63, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 3, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" + "Rank": 3 }, { "Id": 64, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 4, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" + "Rank": 4 }, { "Id": 65, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 5, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" + "Rank": 5 }, { "Id": 66, + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPFileUserSharingLink", - "Rank": 1, - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 67, + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -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\"" + "Rank": 2 }, { "Id": 68, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit", "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" + "Rank": 1 }, { "Id": 69, + "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": 2, - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView" + "Rank": 2 }, { "Id": 70, + "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": 3, - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare" + "Rank": 3 }, { "Id": 71, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", "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" + "Rank": 4 }, { "Id": 72, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "CommandName": "Add-PnPFolder", - "Rank": 1, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Rank": 1 }, { "Id": 73, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "CommandName": "Add-PnPFolder", - "Rank": 2, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" + "Rank": 2 }, { "Id": 74, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "CommandName": "Add-PnPFolder", - "Rank": 3, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" + "Rank": 3 }, { "Id": 75, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 1, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Rank": 1 }, { "Id": 76, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 2, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" + "Rank": 2 }, { "Id": 77, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 3, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)" + "Rank": 3 }, { "Id": 78, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Rank": 1, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Rank": 1 }, { "Id": 79, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Rank": 2, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" + "Rank": 2 }, { "Id": 80, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "CommandName": "Add-PnPFolderSharingInvite", - "Rank": 1, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" + "Rank": 1 }, { "Id": 81, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "CommandName": "Add-PnPFolderSharingInvite", - "Rank": 2, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" + "Rank": 2 }, { "Id": 82, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "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)" + "Rank": 3 }, { "Id": 83, + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPFolderUserSharingLink", - "Rank": 1, - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 84, + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -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\"" + "Rank": 2 }, { "Id": 85, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "CommandName": "Add-PnPGroupMember", - "Rank": 1, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Rank": 1 }, { "Id": 86, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "CommandName": "Add-PnPGroupMember", - "Rank": 2, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" + "Rank": 2 }, { "Id": 87, + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "CommandName": "Add-PnPHtmlPublishingPageLayout", - "Rank": 1, - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" + "Rank": 1 }, { "Id": 88, + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "CommandName": "Add-PnPHubSiteAssociation", - "Rank": 1, - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" + "Rank": 1 }, { "Id": 89, + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "CommandName": "Add-PnPHubToHubAssociation", - "Rank": 1, - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" + "Rank": 1 }, { "Id": 90, + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "CommandName": "Add-PnPHubToHubAssociation", - "Rank": 2, - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"" + "Rank": 2 }, { "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\"", "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\"" + "Rank": 3 }, { "Id": 92, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "CommandName": "Add-PnPJavaScriptBlock", - "Rank": 1, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" + "Rank": 1 }, { "Id": 93, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "CommandName": "Add-PnPJavaScriptBlock", - "Rank": 2, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" + "Rank": 2 }, { "Id": 94, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "CommandName": "Add-PnPJavaScriptLink", - "Rank": 1, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site" + "Rank": 1 }, { "Id": 95, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "CommandName": "Add-PnPJavaScriptLink", - "Rank": 2, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" + "Rank": 2 }, { "Id": 96, + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "CommandName": "Add-PnPListDesign", - "Rank": 1, - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" + "Rank": 1 }, { "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\"", "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\"" + "Rank": 2 }, { "Id": 98, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 1, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" + "Rank": 1 }, { "Id": 99, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 2, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" + "Rank": 2 }, { "Id": 100, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 3, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" + "Rank": 3 }, { "Id": 101, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Add-PnPListItem", - "Rank": 1, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Rank": 1 }, { "Id": 102, + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -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\"}" + "Rank": 2 }, { "Id": 103, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "CommandName": "Add-PnPListItem", - "Rank": 3, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" + "Rank": 3 }, { "Id": 104, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "CommandName": "Add-PnPListItem", - "Rank": 4, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" + "Rank": 4 }, { "Id": 105, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "CommandName": "Add-PnPListItem", - "Rank": 5, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" + "Rank": 5 }, { "Id": 106, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "CommandName": "Add-PnPListItemAttachment", - "Rank": 1, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" + "Rank": 1 }, { "Id": 107, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "CommandName": "Add-PnPListItemAttachment", - "Rank": 2, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" + "Rank": 2 }, { "Id": 108, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "CommandName": "Add-PnPListItemAttachment", - "Rank": 3, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" + "Rank": 3 }, { "Id": 109, + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "CommandName": "Add-PnPListItemComment", - "Rank": 1, - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" + "Rank": 1 }, { "Id": 110, + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "CommandName": "Add-PnPMasterPage", - "Rank": 1, - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" + "Rank": 1 }, { "Id": 111, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPMicrosoft365GroupMember", - "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 112, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPMicrosoft365GroupMember", - "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Rank": 2 }, { "Id": 113, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 114, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Rank": 2 }, { "Id": 115, + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"" + "Rank": 1 }, { "Id": 116, + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" + "Rank": 2 }, { "Id": 117, + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 3, - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" + "Rank": 3 }, { "Id": 118, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "CommandName": "Add-PnPNavigationNode", - "Rank": 1, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" + "Rank": 1 }, { "Id": 119, + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "CommandName": "Add-PnPNavigationNode", - "Rank": 2, - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012" + "Rank": 2 }, { "Id": 120, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "CommandName": "Add-PnPNavigationNode", - "Rank": 3, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" + "Rank": 3 }, { "Id": 121, + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "CommandName": "Add-PnPNavigationNode", - "Rank": 4, - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" + "Rank": 4 }, { "Id": 122, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "CommandName": "Add-PnPNavigationNode", - "Rank": 5, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" + "Rank": 5 }, { "Id": 123, + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "CommandName": "Add-PnPNavigationNode", - "Rank": 6, - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" + "Rank": 6 }, { "Id": 124, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "CommandName": "Add-PnPNavigationNode", - "Rank": 7, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" + "Rank": 7 }, { "Id": 125, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "CommandName": "Add-PnPNavigationNode", - "Rank": 8, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" + "Rank": 8 }, { "Id": 126, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 1, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" + "Rank": 1 }, { "Id": 127, + "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": 2, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"" + "Rank": 2 }, { "Id": 128, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 3, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" + "Rank": 3 }, { "Id": 129, + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "CommandName": "Add-PnPOrgNewsSite", - "Rank": 1, - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" + "Rank": 1 }, { "Id": 130, + "Command": "Add-PnPPage -Name \"NewPage\"", "CommandName": "Add-PnPPage", - "Rank": 1, - "Command": "Add-PnPPage -Name \"NewPage\"" + "Rank": 1 }, { "Id": 131, + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "CommandName": "Add-PnPPage", - "Rank": 2, - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" + "Rank": 2 }, { "Id": 132, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "CommandName": "Add-PnPPage", - "Rank": 3, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" + "Rank": 3 }, { "Id": 133, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "CommandName": "Add-PnPPage", - "Rank": 4, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" + "Rank": 4 }, { "Id": 134, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "CommandName": "Add-PnPPage", - "Rank": 5, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"" + "Rank": 5 }, { "Id": 135, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "CommandName": "Add-PnPPage", - "Rank": 6, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" + "Rank": 6 }, { "Id": 136, + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "CommandName": "Add-PnPPage", - "Rank": 7, - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" + "Rank": 7 }, { "Id": 137, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "CommandName": "Add-PnPPage", - "Rank": 8, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate" + "Rank": 8 }, { "Id": 138, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "CommandName": "Add-PnPPage", - "Rank": 9, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" + "Rank": 9 }, { "Id": 139, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "CommandName": "Add-PnPPage", - "Rank": 10, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" + "Rank": 10 }, { "Id": 140, + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "CommandName": "Add-PnPPageImageWebPart", - "Rank": 1, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" + "Rank": 1 }, { "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\"", "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\"" + "Rank": 2 }, { "Id": 142, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "CommandName": "Add-PnPPageSection", - "Rank": 1, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" + "Rank": 1 }, { "Id": 143, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "CommandName": "Add-PnPPageSection", - "Rank": 2, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" + "Rank": 2 }, { "Id": 144, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "CommandName": "Add-PnPPageTextPart", - "Rank": 1, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" + "Rank": 1 }, { "Id": 145, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "CommandName": "Add-PnPPageTextPart", - "Rank": 2, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" + "Rank": 2 }, { "Id": 146, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", "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\"" + "Rank": 3 }, { "Id": 147, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "CommandName": "Add-PnPPageWebPart", - "Rank": 1, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" + "Rank": 1 }, { "Id": 148, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "CommandName": "Add-PnPPageWebPart", - "Rank": 2, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" + "Rank": 2 }, { "Id": 149, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "CommandName": "Add-PnPPageWebPart", - "Rank": 3, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" + "Rank": 3 }, { "Id": 150, + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "CommandName": "Add-PnPPlannerBucket", - "Rank": 1, - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" + "Rank": 1 }, { "Id": 151, + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "CommandName": "Add-PnPPlannerBucket", - "Rank": 2, - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" + "Rank": 2 }, { "Id": 152, + "Command": "Add-PnPPlannerRoster", "CommandName": "Add-PnPPlannerRoster", - "Rank": 1, - "Command": "Add-PnPPlannerRoster" + "Rank": 1 }, { "Id": 153, + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPPlannerRosterMember", - "Rank": 1, - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 154, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "CommandName": "Add-PnPPlannerTask", - "Rank": 1, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" + "Rank": 1 }, { "Id": 155, + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "CommandName": "Add-PnPPlannerTask", - "Rank": 2, - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" + "Rank": 2 }, { "Id": 156, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "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\"" + "Rank": 3 }, { "Id": 157, + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "CommandName": "Add-PnPPublishingImageRendition", - "Rank": 1, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Rank": 1 }, { "Id": 158, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "CommandName": "Add-PnPPublishingPage", - "Rank": 1, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" + "Rank": 1 }, { "Id": 159, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "CommandName": "Add-PnPPublishingPage", - "Rank": 2, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" + "Rank": 2 }, { "Id": 160, + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "CommandName": "Add-PnPPublishingPageLayout", - "Rank": 1, - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" + "Rank": 1 }, { "Id": 161, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "CommandName": "Add-PnPRoleDefinition", - "Rank": 1, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" + "Rank": 1 }, { "Id": 162, + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "CommandName": "Add-PnPRoleDefinition", - "Rank": 2, - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" + "Rank": 2 }, { "Id": 163, + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "CommandName": "Add-PnPRoleDefinition", - "Rank": 3, - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" + "Rank": 3 }, { "Id": 164, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 1, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 165, + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 2, - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Rank": 2 }, { "Id": 166, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 3, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" + "Rank": 3 }, { "Id": 167, + "Command": "Add-PnPSiteCollectionAppCatalog", "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1, - "Command": "Add-PnPSiteCollectionAppCatalog" + "Rank": 1 }, { "Id": 168, + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Rank": 2, - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Rank": 2 }, { "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", "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" + "Rank": 1 }, { "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", "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" + "Rank": 2 }, { "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\"", "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\"" + "Rank": 3 }, { "Id": 172, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "CommandName": "Add-PnPSiteDesignFromWeb", - "Rank": 1, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" + "Rank": 1 }, { "Id": 173, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "CommandName": "Add-PnPSiteDesignFromWeb", - "Rank": 2, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" + "Rank": 2 }, { "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", "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" + "Rank": 3 }, { "Id": 175, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "CommandName": "Add-PnPSiteDesignTask", - "Rank": 1, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" + "Rank": 1 }, { "Id": 176, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "CommandName": "Add-PnPSiteDesignTask", - "Rank": 2, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "Rank": 2 }, { "Id": 177, + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "CommandName": "Add-PnPSiteScript", - "Rank": 1, - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" + "Rank": 1 }, { "Id": 178, + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "CommandName": "Add-PnPSiteScriptPackage", - "Rank": 1, - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" + "Rank": 1 }, { "Id": 179, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "CommandName": "Add-PnPSiteTemplate", - "Rank": 1, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" + "Rank": 1 }, { "Id": 180, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "CommandName": "Add-PnPStoredCredential", - "Rank": 1, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" + "Rank": 1 }, { "Id": 181, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "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)" + "Rank": 2 }, { "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\"", "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\"" + "Rank": 3 }, { "Id": 183, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "CommandName": "Add-PnPTaxonomyField", - "Rank": 1, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" + "Rank": 1 }, { "Id": 184, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "CommandName": "Add-PnPTaxonomyField", - "Rank": 2, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" + "Rank": 2 }, { "Id": 185, + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "CommandName": "Add-PnPTeamsChannel", - "Rank": 1, - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" + "Rank": 1 }, { "Id": 186, + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "CommandName": "Add-PnPTeamsChannel", - "Rank": 2, - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" + "Rank": 2 }, { "Id": 187, + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "CommandName": "Add-PnPTeamsChannel", - "Rank": 3, - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" + "Rank": 3 }, { "Id": 188, + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -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" + "Rank": 4 }, { "Id": 189, + "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", "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" + "Rank": 1 }, { "Id": 190, + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "CommandName": "Add-PnpTeamsChannelUser", - "Rank": 2, - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" + "Rank": 2 }, { "Id": 191, + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", "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\"" + "Rank": 1 }, { "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\"", "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\"" + "Rank": 2 }, { "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\"", "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\"" + "Rank": 3 }, { "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", "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" + "Rank": 4 }, { "Id": 195, + "Command": "Add-PnPTeamsTeam", "CommandName": "Add-PnPTeamsTeam", - "Rank": 1, - "Command": "Add-PnPTeamsTeam" + "Rank": 1 }, { "Id": 196, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Add-PnPTeamsUser", - "Rank": 1, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Rank": 1 }, { "Id": 197, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "CommandName": "Add-PnPTeamsUser", - "Rank": 2, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "Rank": 2 }, { "Id": 198, + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "CommandName": "Add-PnPTeamsUser", - "Rank": 3, - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" + "Rank": 3 }, { "Id": 199, + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "CommandName": "Add-PnPTeamsUser", - "Rank": 4, - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" + "Rank": 4 }, { "Id": 200, + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "CommandName": "Add-PnPTenantCdnOrigin", - "Rank": 1, - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Rank": 1 }, { "Id": 201, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "CommandName": "Add-PnPTenantSequence", - "Rank": 1, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" + "Rank": 1 }, { "Id": 202, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "CommandName": "Add-PnPTenantSequenceSite", - "Rank": 1, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" + "Rank": 1 }, { "Id": 203, + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "CommandName": "Add-PnPTenantSequenceSubSite", - "Rank": 1, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" + "Rank": 1 }, { "Id": 204, + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "CommandName": "Add-PnPTermToTerm", - "Rank": 1, - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" + "Rank": 1 }, { "Id": 205, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "CommandName": "Add-PnPView", - "Rank": 1, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" + "Rank": 1 }, { "Id": 206, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "CommandName": "Add-PnPView", - "Rank": 2, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" + "Rank": 2 }, { "Id": 207, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "CommandName": "Add-PnPView", - "Rank": 3, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" + "Rank": 3 }, { "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\"", "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\"" + "Rank": 1 }, { "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\"", "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\"" + "Rank": 2 }, { "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\"", "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\"" + "Rank": 3 }, { "Id": 211, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "CommandName": "Add-PnPWebhookSubscription", - "Rank": 1, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" + "Rank": 1 }, { "Id": 212, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "CommandName": "Add-PnPWebhookSubscription", - "Rank": 2, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" + "Rank": 2 }, { "Id": 213, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "CommandName": "Add-PnPWebhookSubscription", - "Rank": 3, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"" + "Rank": 3 }, { "Id": 214, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "CommandName": "Add-PnPWebPartToWebPartPage", - "Rank": 1, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1" + "Rank": 1 }, { "Id": 215, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $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" + "Rank": 2 }, { "Id": 216, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "CommandName": "Add-PnPWebPartToWikiPage", - "Rank": 1, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1" + "Rank": 1 }, { "Id": 217, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $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" + "Rank": 2 }, { "Id": 218, + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "CommandName": "Add-PnPWikiPage", - "Rank": 1, - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" + "Rank": 1 }, { "Id": 219, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "CommandName": "Clear-PnPAzureADGroupMember", - "Rank": 1, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" + "Rank": 1 }, { "Id": 220, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "CommandName": "Clear-PnPAzureADGroupOwner", - "Rank": 1, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" + "Rank": 1 }, { "Id": 221, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "CommandName": "Clear-PnPDefaultColumnValues", - "Rank": 1, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" + "Rank": 1 }, { "Id": 222, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "CommandName": "Clear-PnPDefaultColumnValues", - "Rank": 2, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" + "Rank": 2 }, { "Id": 223, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "CommandName": "Clear-PnPListItemAsRecord", - "Rank": 1, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Rank": 1 }, { "Id": 224, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Rank": 1, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" + "Rank": 1 }, { "Id": 225, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Rank": 1, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" + "Rank": 1 }, { "Id": 226, + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 1, - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Rank": 1 }, { "Id": 227, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 2, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" + "Rank": 2 }, { "Id": 228, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 3, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" + "Rank": 3 }, { "Id": 229, + "Command": "Clear-PnPTenantAppCatalogUrl", "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1, - "Command": "Clear-PnPTenantAppCatalogUrl" + "Rank": 1 }, { "Id": 230, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Clear-PnPTenantRecycleBinItem", - "Rank": 1, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1 }, { "Id": 231, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "CommandName": "Clear-PnPTenantRecycleBinItem", - "Rank": 2, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Rank": 2 }, { "Id": 232, + "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", "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\"" + "Rank": 1 }, { "Id": 233, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "CommandName": "Convert-PnPFolderToSiteTemplate", - "Rank": 1, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" + "Rank": 1 }, { "Id": 234, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "CommandName": "Convert-PnPFolderToSiteTemplate", - "Rank": 2, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" + "Rank": 2 }, { "Id": 235, + "Command": "Convert-PnPSiteTemplate -Path template.xml", "CommandName": "Convert-PnPSiteTemplate", - "Rank": 1, - "Command": "Convert-PnPSiteTemplate -Path template.xml" + "Rank": 1 }, { "Id": 236, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "CommandName": "Convert-PnPSiteTemplate", - "Rank": 2, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" + "Rank": 2 }, { "Id": 237, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "CommandName": "Convert-PnPSiteTemplate", - "Rank": 3, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" + "Rank": 3 }, { "Id": 238, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Rank": 1, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" + "Rank": 1 }, { "Id": 239, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Rank": 2, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" + "Rank": 2 }, { "Id": 240, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Rank": 1, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" + "Rank": 1 }, { "Id": 241, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "CommandName": "ConvertTo-PnPPage", - "Rank": 2, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" + "Rank": 2 }, { "Id": 242, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "CommandName": "ConvertTo-PnPPage", - "Rank": 3, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" + "Rank": 3 }, { "Id": 243, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "CommandName": "ConvertTo-PnPPage", - "Rank": 4, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" + "Rank": 4 }, { "Id": 244, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Rank": 5, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Rank": 5 }, { "Id": 245, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "CommandName": "ConvertTo-PnPPage", - "Rank": 6, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" + "Rank": 6 }, { "Id": 246, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Rank": 7, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" + "Rank": 7 }, { "Id": 247, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Rank": 8, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" + "Rank": 8 }, { "Id": 248, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Rank": 9, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Rank": 9 }, { "Id": 249, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Rank": 10, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" + "Rank": 10 }, { "Id": 250, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "CommandName": "ConvertTo-PnPPage", - "Rank": 11, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" + "Rank": 11 }, { "Id": 251, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Rank": 12, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Rank": 12 }, { "Id": 252, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -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\"" + "Rank": 13 }, { "Id": 253, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "CommandName": "ConvertTo-PnPPage", - "Rank": 14, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" + "Rank": 14 }, { "Id": 254, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Rank": 1, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 1 }, { "Id": 255, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "CommandName": "Copy-PnPFile", - "Rank": 2, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Rank": 2 }, { "Id": 256, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "CommandName": "Copy-PnPFile", - "Rank": 3, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "Rank": 3 }, { "Id": 257, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Rank": 4, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 4 }, { "Id": 258, + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "CommandName": "Copy-PnPFile", - "Rank": 5, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Rank": 5 }, { "Id": 259, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "CommandName": "Copy-PnPFile", - "Rank": 6, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "Rank": 6 }, { "Id": 260, + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "CommandName": "Copy-PnPFile", - "Rank": 7, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Rank": 7 }, { "Id": 261, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Rank": 8, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 8 }, { "Id": 262, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Rank": 9, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Rank": 9 }, { "Id": 263, + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "CommandName": "Copy-PnPFile", - "Rank": 10, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Rank": 10 }, { "Id": 264, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Rank": 1, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 1 }, { "Id": 265, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "CommandName": "Copy-PnPFolder", - "Rank": 2, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Rank": 2 }, { "Id": 266, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "CommandName": "Copy-PnPFolder", - "Rank": 3, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "Rank": 3 }, { "Id": 267, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Rank": 4, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 4 }, { "Id": 268, + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "CommandName": "Copy-PnPFolder", - "Rank": 5, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Rank": 5 }, { "Id": 269, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "CommandName": "Copy-PnPFolder", - "Rank": 6, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "Rank": 6 }, { "Id": 270, + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "CommandName": "Copy-PnPFolder", - "Rank": 7, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Rank": 7 }, { "Id": 271, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Rank": 8, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 8 }, { "Id": 272, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Rank": 9, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Rank": 9 }, { "Id": 273, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "CommandName": "Copy-PnPFolder", - "Rank": 10, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Rank": 10 }, { "Id": 274, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "CommandName": "Copy-PnPItemProxy", - "Rank": 1, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" + "Rank": 1 }, { "Id": 275, + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "CommandName": "Copy-PnPList", - "Rank": 1, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" + "Rank": 1 }, { "Id": 276, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "CommandName": "Copy-PnPList", - "Rank": 2, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" + "Rank": 2 }, { "Id": 277, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "CommandName": "Copy-PnPList", - "Rank": 3, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" + "Rank": 3 }, { "Id": 278, + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "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\\" + "Rank": 4 }, { "Id": 279, + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "CommandName": "Copy-PnPTeamsTeam", - "Rank": 1, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" + "Rank": 1 }, { "Id": 280, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "CommandName": "Copy-PnPTeamsTeam", - "Rank": 2, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" + "Rank": 2 }, { "Id": 281, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "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" + "Rank": 3 }, { "Id": 282, + "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", - "Rank": 4, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" + "Rank": 4 }, { "Id": 283, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Disable-PnPFeature", - "Rank": 1, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1 }, { "Id": 284, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "CommandName": "Disable-PnPFeature", - "Rank": 2, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Rank": 2 }, { "Id": 285, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "CommandName": "Disable-PnPFeature", - "Rank": 3, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Rank": 3 }, { "Id": 286, + "Command": "Disable-PnPPageScheduling", "CommandName": "Disable-PnPPageScheduling", - "Rank": 1, - "Command": "Disable-PnPPageScheduling" + "Rank": 1 }, { "Id": 287, + "Command": "Disable-PnPPowerShellTelemetry", "CommandName": "Disable-PnPPowerShellTelemetry", - "Rank": 1, - "Command": "Disable-PnPPowerShellTelemetry" + "Rank": 1 }, { "Id": 288, + "Command": "Disable-PnPPowerShellTelemetry -Force", "CommandName": "Disable-PnPPowerShellTelemetry", - "Rank": 2, - "Command": "Disable-PnPPowerShellTelemetry -Force" + "Rank": 2 }, { "Id": 289, + "Command": "Disable-PnPSharingForNonOwnersOfSite", "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1, - "Command": "Disable-PnPSharingForNonOwnersOfSite" + "Rank": 1 }, { "Id": 290, + "Command": "Disable-PnPSiteClassification", "CommandName": "Disable-PnPSiteClassification", - "Rank": 1, - "Command": "Disable-PnPSiteClassification" + "Rank": 1 }, { "Id": 291, + "Command": "Disconnect-PnPOnline", "CommandName": "Disconnect-PnPOnline", - "Rank": 1, - "Command": "Disconnect-PnPOnline" + "Rank": 1 }, { "Id": 292, + "Command": "Enable-PnPCommSite", "CommandName": "Enable-PnPCommSite", - "Rank": 1, - "Command": "Enable-PnPCommSite" + "Rank": 1 }, { "Id": 293, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "CommandName": "Enable-PnPCommSite", - "Rank": 2, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" + "Rank": 2 }, { "Id": 294, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Enable-PnPFeature", - "Rank": 1, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1 }, { "Id": 295, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "CommandName": "Enable-PnPFeature", - "Rank": 2, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Rank": 2 }, { "Id": 296, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "CommandName": "Enable-PnPFeature", - "Rank": 3, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Rank": 3 }, { "Id": 297, + "Command": "Enable-PnPPageScheduling", "CommandName": "Enable-PnPPageScheduling", - "Rank": 1, - "Command": "Enable-PnPPageScheduling" + "Rank": 1 }, { "Id": 298, + "Command": "Enable-PnPPowerShellTelemetry", "CommandName": "Enable-PnPPowerShellTelemetry", - "Rank": 1, - "Command": "Enable-PnPPowerShellTelemetry" + "Rank": 1 }, { "Id": 299, + "Command": "Enable-PnPPowerShellTelemetry -Force", "CommandName": "Enable-PnPPowerShellTelemetry", - "Rank": 2, - "Command": "Enable-PnPPowerShellTelemetry -Force" + "Rank": 2 }, { "Id": 300, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "CommandName": "Enable-PnPSiteClassification", - "Rank": 1, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" + "Rank": 1 }, { "Id": 301, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "CommandName": "Enable-PnPSiteClassification", - "Rank": 2, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" + "Rank": 2 }, { "Id": 302, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "CommandName": "Export-PnPListToSiteTemplate", - "Rank": 1, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" + "Rank": 1 }, { "Id": 303, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "CommandName": "Export-PnPListToSiteTemplate", - "Rank": 2, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" + "Rank": 2 }, { "Id": 304, + "Command": "Export-PnPPage -Identity Home.aspx", "CommandName": "Export-PnPPage", - "Rank": 1, - "Command": "Export-PnPPage -Identity Home.aspx" + "Rank": 1 }, { "Id": 305, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Rank": 1, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" + "Rank": 1 }, { "Id": 306, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Rank": 2, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" + "Rank": 2 }, { "Id": 307, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Rank": 3, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" + "Rank": 3 }, { "Id": 308, + "Command": "Export-PnPTaxonomy", "CommandName": "Export-PnPTaxonomy", - "Rank": 1, - "Command": "Export-PnPTaxonomy" + "Rank": 1 }, { "Id": 309, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "CommandName": "Export-PnPTaxonomy", - "Rank": 2, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt" + "Rank": 2 }, { "Id": 310, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "CommandName": "Export-PnPTaxonomy", - "Rank": 3, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" + "Rank": 3 }, { "Id": 311, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "CommandName": "Export-PnPTaxonomy", - "Rank": 4, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" + "Rank": 4 }, { "Id": 312, + "Command": "Export-PnPTermGroupToXml", "CommandName": "Export-PnPTermGroupToXml", - "Rank": 1, - "Command": "Export-PnPTermGroupToXml" + "Rank": 1 }, { "Id": 313, + "Command": "Export-PnPTermGroupToXml -Out output.xml", "CommandName": "Export-PnPTermGroupToXml", - "Rank": 2, - "Command": "Export-PnPTermGroupToXml -Out output.xml" + "Rank": 2 }, { "Id": 314, + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "CommandName": "Export-PnPTermGroupToXml", - "Rank": 3, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" + "Rank": 3 }, { "Id": 315, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "CommandName": "Export-PnPUserInfo", - "Rank": 1, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" + "Rank": 1 }, { "Id": 316, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "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" + "Rank": 2 }, { "Id": 317, + "Command": "Export-PnPUserProfile -LoginName user@domain.com", "CommandName": "Export-PnPUserProfile", - "Rank": 1, - "Command": "Export-PnPUserProfile -LoginName user@domain.com" + "Rank": 1 }, { "Id": 318, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "CommandName": "Export-PnPUserProfile", - "Rank": 2, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" + "Rank": 2 }, { "Id": 319, + "Command": "Find-PnPFile -Match *.master", "CommandName": "Find-PnPFile", - "Rank": 1, - "Command": "Find-PnPFile -Match *.master" + "Rank": 1 }, { "Id": 320, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "CommandName": "Find-PnPFile", - "Rank": 2, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" + "Rank": 2 }, { "Id": 321, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "CommandName": "Find-PnPFile", - "Rank": 3, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" + "Rank": 3 }, { "Id": 322, + "Command": "Get-PnPAccessToken", "CommandName": "Get-PnPAccessToken", - "Rank": 1, - "Command": "Get-PnPAccessToken" + "Rank": 1 }, { "Id": 323, + "Command": "Get-PnPAccessToken -Decoded", "CommandName": "Get-PnPAccessToken", - "Rank": 2, - "Command": "Get-PnPAccessToken -Decoded" + "Rank": 2 }, { "Id": 324, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "CommandName": "Get-PnPAccessToken", - "Rank": 3, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" + "Rank": 3 }, { "Id": 325, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "CommandName": "Get-PnPAccessToken", - "Rank": 4, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM" + "Rank": 4 }, { "Id": 326, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "CommandName": "Get-PnPAccessToken", - "Rank": 5, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" + "Rank": 5 }, { "Id": 327, + "Command": "Get-PnPAlert", "CommandName": "Get-PnPAlert", - "Rank": 1, - "Command": "Get-PnPAlert" + "Rank": 1 }, { "Id": 328, + "Command": "Get-PnPAlert -List \"Demo List\"", "CommandName": "Get-PnPAlert", - "Rank": 2, - "Command": "Get-PnPAlert -List \"Demo List\"" + "Rank": 2 }, { "Id": 329, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPAlert", - "Rank": 3, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Rank": 3 }, { "Id": 330, + "Command": "Get-PnPAlert -Title \"Demo Alert\"", "CommandName": "Get-PnPAlert", - "Rank": 4, - "Command": "Get-PnPAlert -Title \"Demo Alert\"" + "Rank": 4 }, { "Id": 331, + "Command": "Get-PnPAlert -AllUsers", "CommandName": "Get-PnPAlert", - "Rank": 5, - "Command": "Get-PnPAlert -AllUsers" + "Rank": 5 }, { "Id": 332, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "CommandName": "Get-PnPAlert", - "Rank": 6, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" + "Rank": 6 }, { "Id": 333, + "Command": "Get-PnPApp", "CommandName": "Get-PnPApp", - "Rank": 1, - "Command": "Get-PnPApp" + "Rank": 1 }, { "Id": 334, + "Command": "Get-PnPApp -Scope Site", "CommandName": "Get-PnPApp", - "Rank": 2, - "Command": "Get-PnPApp -Scope Site" + "Rank": 2 }, { "Id": 335, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Get-PnPApp", - "Rank": 3, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Rank": 3 }, { "Id": 336, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "CommandName": "Get-PnPAppErrors", - "Rank": 1, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" + "Rank": 1 }, { "Id": 337, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "CommandName": "Get-PnPAppErrors", - "Rank": 2, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" + "Rank": 2 }, { "Id": 338, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "CommandName": "Get-PnPAppInfo", - "Rank": 1, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"" + "Rank": 1 }, { "Id": 339, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Get-PnPAppInfo", - "Rank": 2, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Rank": 2 }, { "Id": 340, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "CommandName": "Get-PnPAppInfo", - "Rank": 3, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" + "Rank": 3 }, { "Id": 341, + "Command": "Get-PnPApplicationCustomizer", "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 1, - "Command": "Get-PnPApplicationCustomizer" + "Rank": 1 }, { "Id": 342, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 2, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 2 }, { "Id": 343, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 3, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" + "Rank": 3 }, { "Id": 344, + "Command": "Get-PnPAuditing", "CommandName": "Get-PnPAuditing", - "Rank": 1, - "Command": "Get-PnPAuditing" + "Rank": 1 }, { "Id": 345, + "Command": "Get-PnPAuthenticationRealm", "CommandName": "Get-PnPAuthenticationRealm", - "Rank": 1, - "Command": "Get-PnPAuthenticationRealm" + "Rank": 1 }, { "Id": 346, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "CommandName": "Get-PnPAuthenticationRealm", - "Rank": 2, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" + "Rank": 2 }, { "Id": 347, + "Command": "Get-PnPAvailableLanguage", "CommandName": "Get-PnPAvailableLanguage", - "Rank": 1, - "Command": "Get-PnPAvailableLanguage" + "Rank": 1 }, { "Id": 348, + "Command": "Get-PnPAvailableSensitivityLabel", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 1, - "Command": "Get-PnPAvailableSensitivityLabel" + "Rank": 1 }, { "Id": 349, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 2, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" + "Rank": 2 }, { "Id": 350, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 3, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" + "Rank": 3 }, { "Id": 351, + "Command": "Get-PnPAvailableSiteClassification", "CommandName": "Get-PnPAvailableSiteClassification", - "Rank": 1, - "Command": "Get-PnPAvailableSiteClassification" + "Rank": 1 }, { "Id": 352, + "Command": "Get-PnPAzureACSPrincipal", "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 1, - "Command": "Get-PnPAzureACSPrincipal" + "Rank": 1 }, { "Id": 353, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 2, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" + "Rank": 2 }, { "Id": 354, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 3, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" + "Rank": 3 }, { "Id": 355, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 4, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" + "Rank": 4 }, { "Id": 356, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit" + "Rank": 1 }, { "Id": 357, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 2, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" + "Rank": 2 }, { "Id": 358, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 3, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" + "Rank": 3 }, { "Id": 359, + "Command": "Get-PnPAzureADActivityReportSignIn", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1, - "Command": "Get-PnPAzureADActivityReportSignIn" + "Rank": 1 }, { "Id": 360, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 2, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" + "Rank": 2 }, { "Id": 361, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 3, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" + "Rank": 3 }, { "Id": 362, + "Command": "Get-PnPAzureADApp", "CommandName": "Get-PnPAzureADApp", - "Rank": 1, - "Command": "Get-PnPAzureADApp" + "Rank": 1 }, { "Id": 363, + "Command": "Get-PnPAzureADApp -Identity MyApp", "CommandName": "Get-PnPAzureADApp", - "Rank": 2, - "Command": "Get-PnPAzureADApp -Identity MyApp" + "Rank": 2 }, { "Id": 364, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Get-PnPAzureADApp", - "Rank": 3, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Rank": 3 }, { "Id": 365, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPAzureADApp", - "Rank": 4, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" + "Rank": 4 }, { "Id": 366, + "Command": "Get-PnPAzureADAppPermission", "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 1, - "Command": "Get-PnPAzureADAppPermission" + "Rank": 1 }, { "Id": 367, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 2, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp" + "Rank": 2 }, { "Id": 368, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 3, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Rank": 3 }, { "Id": 369, + "Command": "Get-PnPAzureADAppSitePermission", "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 1, - "Command": "Get-PnPAzureADAppSitePermission" + "Rank": 1 }, { "Id": 370, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 2, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" + "Rank": 2 }, { "Id": 371, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 3, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" + "Rank": 3 }, { "Id": 372, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 4, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" + "Rank": 4 }, { "Id": 373, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 5, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" + "Rank": 5 }, { "Id": 374, + "Command": "Get-PnPAzureADGroup", "CommandName": "Get-PnPAzureADGroup", - "Rank": 1, - "Command": "Get-PnPAzureADGroup" + "Rank": 1 }, { "Id": 375, + "Command": "Get-PnPAzureADGroup -Identity $groupId", "CommandName": "Get-PnPAzureADGroup", - "Rank": 2, - "Command": "Get-PnPAzureADGroup -Identity $groupId" + "Rank": 2 }, { "Id": 376, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "CommandName": "Get-PnPAzureADGroup", - "Rank": 3, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" + "Rank": 3 }, { "Id": 377, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "CommandName": "Get-PnPAzureADGroup", - "Rank": 4, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" + "Rank": 4 }, { "Id": 378, + "Command": "Get-PnPAzureADGroup -Identity $group", "CommandName": "Get-PnPAzureADGroup", - "Rank": 5, - "Command": "Get-PnPAzureADGroup -Identity $group" + "Rank": 5 }, { "Id": 379, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "CommandName": "Get-PnPAzureADGroupMember", - "Rank": 1, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId" + "Rank": 1 }, { "Id": 380, + "Command": "Get-PnPAzureADGroupMember -Identity $group", "CommandName": "Get-PnPAzureADGroupMember", - "Rank": 2, - "Command": "Get-PnPAzureADGroupMember -Identity $group" + "Rank": 2 }, { "Id": 381, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "CommandName": "Get-PnPAzureADGroupOwner", - "Rank": 1, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" + "Rank": 1 }, { "Id": 382, + "Command": "Get-PnPAzureADGroupOwner -Identity $group", "CommandName": "Get-PnPAzureADGroupOwner", - "Rank": 2, - "Command": "Get-PnPAzureADGroupOwner -Identity $group" + "Rank": 2 }, { "Id": 383, + "Command": "Get-PnPAzureADServicePrincipal", "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipal" + "Rank": 1 }, { "Id": 384, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" + "Rank": 2 }, { "Id": 385, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 3, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" + "Rank": 3 }, { "Id": 386, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 4, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" + "Rank": 4 }, { "Id": 387, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 5, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" + "Rank": 5 }, { "Id": 388, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Rank": 1 }, { "Id": 389, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Rank": 2 }, { "Id": 390, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Rank": 1 }, { "Id": 391, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" + "Rank": 2 }, { "Id": 392, + "Command": "Get-PnPAzureADUser", "CommandName": "Get-PnPAzureADUser", - "Rank": 1, - "Command": "Get-PnPAzureADUser" + "Rank": 1 }, { "Id": 393, + "Command": "Get-PnPAzureADUser -EndIndex 50", "CommandName": "Get-PnPAzureADUser", - "Rank": 2, - "Command": "Get-PnPAzureADUser -EndIndex 50" + "Rank": 2 }, { "Id": 394, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "CommandName": "Get-PnPAzureADUser", - "Rank": 3, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Rank": 3 }, { "Id": 395, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "CommandName": "Get-PnPAzureADUser", - "Rank": 4, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com" + "Rank": 4 }, { "Id": 396, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "CommandName": "Get-PnPAzureADUser", - "Rank": 5, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" + "Rank": 5 }, { "Id": 397, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "CommandName": "Get-PnPAzureADUser", - "Rank": 6, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" + "Rank": 6 }, { "Id": 398, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "CommandName": "Get-PnPAzureADUser", - "Rank": 7, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" + "Rank": 7 }, { "Id": 399, + "Command": "Get-PnPAzureADUser -Delta", "CommandName": "Get-PnPAzureADUser", - "Rank": 8, - "Command": "Get-PnPAzureADUser -Delta" + "Rank": 8 }, { "Id": 400, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "CommandName": "Get-PnPAzureADUser", - "Rank": 9, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" + "Rank": 9 }, { "Id": 401, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "CommandName": "Get-PnPAzureADUser", - "Rank": 10, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" + "Rank": 10 }, { "Id": 402, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "CommandName": "Get-PnPAzureCertificate", - "Rank": 1, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" + "Rank": 1 }, { "Id": 403, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "CommandName": "Get-PnPAzureCertificate", - "Rank": 2, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" + "Rank": 2 }, { "Id": 404, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "CommandName": "Get-PnPAzureCertificate", - "Rank": 3, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" + "Rank": 3 }, { "Id": 405, + "Command": "Get-PnPBrowserIdleSignout", "CommandName": "Get-PnPBrowserIdleSignout", - "Rank": 1, - "Command": "Get-PnPBrowserIdleSignout" + "Rank": 1 }, { "Id": 406, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 1, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" + "Rank": 1 }, { "Id": 407, + "Command": "Get-PnPBuiltInDesignPackageVisibility", "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2, - "Command": "Get-PnPBuiltInDesignPackageVisibility" + "Rank": 2 }, { "Id": 408, + "Command": "Get-PnPBuiltInSiteTemplateSettings", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1, - "Command": "Get-PnPBuiltInSiteTemplateSettings" + "Rank": 1 }, { "Id": 409, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 2, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" + "Rank": 2 }, { "Id": 410, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 3, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" + "Rank": 3 }, { "Id": 411, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 4, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" + "Rank": 4 }, { "Id": 412, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 5, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" + "Rank": 5 }, { "Id": 413, + "Command": "Get-PnPChangeLog", "CommandName": "Get-PnPChangeLog", - "Rank": 1, - "Command": "Get-PnPChangeLog" + "Rank": 1 }, { "Id": 414, + "Command": "Get-PnPChangeLog -Nightly", "CommandName": "Get-PnPChangeLog", - "Rank": 2, - "Command": "Get-PnPChangeLog -Nightly" + "Rank": 2 }, { "Id": 415, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "CommandName": "Get-PnPCompatibleHubContentTypes", - "Rank": 1, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" + "Rank": 1 }, { "Id": 416, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "CommandName": "Get-PnPCompatibleHubContentTypes", - "Rank": 2, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" + "Rank": 2 }, { "Id": 417, + "Command": "Get-PnPContentType", "CommandName": "Get-PnPContentType", - "Rank": 1, - "Command": "Get-PnPContentType" + "Rank": 1 }, { "Id": 418, + "Command": "Get-PnPContentType -InSiteHierarchy", "CommandName": "Get-PnPContentType", - "Rank": 2, - "Command": "Get-PnPContentType -InSiteHierarchy" + "Rank": 2 }, { "Id": 419, + "Command": "Get-PnPContentType -Identity \"Project Document\"", "CommandName": "Get-PnPContentType", - "Rank": 3, - "Command": "Get-PnPContentType -Identity \"Project Document\"" + "Rank": 3 }, { "Id": 420, + "Command": "Get-PnPContentType -List \"Documents\"", "CommandName": "Get-PnPContentType", - "Rank": 4, - "Command": "Get-PnPContentType -List \"Documents\"" + "Rank": 4 }, { "Id": 421, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "CommandName": "Get-PnPContentTypePublishingStatus", - "Rank": 1, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" + "Rank": 1 }, { "Id": 422, + "Command": "Get-PnPCustomAction", "CommandName": "Get-PnPCustomAction", - "Rank": 1, - "Command": "Get-PnPCustomAction" + "Rank": 1 }, { "Id": 423, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Get-PnPCustomAction", - "Rank": 2, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 2 }, { "Id": 424, + "Command": "Get-PnPCustomAction -Scope web", "CommandName": "Get-PnPCustomAction", - "Rank": 3, - "Command": "Get-PnPCustomAction -Scope web" + "Rank": 3 }, { "Id": 425, + "Command": "Get-PnPDeletedMicrosoft365Group", "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1, - "Command": "Get-PnPDeletedMicrosoft365Group" + "Rank": 1 }, { "Id": 426, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Rank": 2, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Rank": 2 }, { "Id": 427, + "Command": "Get-PnPDeletedTeam", "CommandName": "Get-PnPDeletedTeam", - "Rank": 1, - "Command": "Get-PnPDeletedTeam" + "Rank": 1 }, { "Id": 428, + "Command": "Get-PnPDiagnostics", "CommandName": "Get-PnPDiagnostics", - "Rank": 1, - "Command": "Get-PnPDiagnostics" + "Rank": 1 }, { "Id": 429, + "Command": "Get-PnPDisableSpacesActivation", "CommandName": "Get-PnPDisableSpacesActivation", - "Rank": 1, - "Command": "Get-PnPDisableSpacesActivation" + "Rank": 1 }, { "Id": 430, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "CommandName": "Get-PnPDocumentSetTemplate", - "Rank": 1, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" + "Rank": 1 }, { "Id": 431, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "CommandName": "Get-PnPDocumentSetTemplate", - "Rank": 2, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" + "Rank": 2 }, { "Id": 432, + "Command": "Get-PnPEventReceiver", "CommandName": "Get-PnPEventReceiver", - "Rank": 1, - "Command": "Get-PnPEventReceiver" + "Rank": 1 }, { "Id": 433, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPEventReceiver", - "Rank": 2, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 2 }, { "Id": 434, + "Command": "Get-PnPEventReceiver -Identity MyReceiver", "CommandName": "Get-PnPEventReceiver", - "Rank": 3, - "Command": "Get-PnPEventReceiver -Identity MyReceiver" + "Rank": 3 }, { "Id": 435, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "CommandName": "Get-PnPEventReceiver", - "Rank": 4, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"" + "Rank": 4 }, { "Id": 436, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPEventReceiver", - "Rank": 5, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 5 }, { "Id": 437, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "CommandName": "Get-PnPEventReceiver", - "Rank": 6, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" + "Rank": 6 }, { "Id": 438, + "Command": "Get-PnPEventReceiver -Scope Site", "CommandName": "Get-PnPEventReceiver", - "Rank": 7, - "Command": "Get-PnPEventReceiver -Scope Site" + "Rank": 7 }, { "Id": 439, + "Command": "Get-PnPEventReceiver -Scope Web", "CommandName": "Get-PnPEventReceiver", - "Rank": 8, - "Command": "Get-PnPEventReceiver -Scope Web" + "Rank": 8 }, { "Id": 440, + "Command": "Get-PnPEventReceiver -Scope All", "CommandName": "Get-PnPEventReceiver", - "Rank": 9, - "Command": "Get-PnPEventReceiver -Scope All" + "Rank": 9 }, { "Id": 441, + "Command": "Get-PnPException", "CommandName": "Get-PnPException", - "Rank": 1, - "Command": "Get-PnPException" + "Rank": 1 }, { "Id": 442, + "Command": "Get-PnPException -All", "CommandName": "Get-PnPException", - "Rank": 2, - "Command": "Get-PnPException -All" + "Rank": 2 }, { "Id": 443, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "CommandName": "Get-PnPExternalUser", - "Rank": 1, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" + "Rank": 1 }, { "Id": 444, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "CommandName": "Get-PnPExternalUser", - "Rank": 2, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" + "Rank": 2 }, { "Id": 445, + "Command": "Get-PnPFeature", "CommandName": "Get-PnPFeature", - "Rank": 1, - "Command": "Get-PnPFeature" + "Rank": 1 }, { "Id": 446, + "Command": "Get-PnPFeature -Scope Site", "CommandName": "Get-PnPFeature", - "Rank": 2, - "Command": "Get-PnPFeature -Scope Site" + "Rank": 2 }, { "Id": 447, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPFeature", - "Rank": 3, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 3 }, { "Id": 448, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "CommandName": "Get-PnPFeature", - "Rank": 4, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" + "Rank": 4 }, { "Id": 449, + "Command": "Get-PnPField", "CommandName": "Get-PnPField", - "Rank": 1, - "Command": "Get-PnPField" + "Rank": 1 }, { "Id": 450, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "CommandName": "Get-PnPField", - "Rank": 2, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Rank": 2 }, { "Id": 451, + "Command": "Get-PnPField -Group \"Custom Columns\"", "CommandName": "Get-PnPField", - "Rank": 3, - "Command": "Get-PnPField -Group \"Custom Columns\"" + "Rank": 3 }, { "Id": 452, + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "CommandName": "Get-PnPFile", - "Rank": 1, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" + "Rank": 1 }, { "Id": 453, + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "CommandName": "Get-PnPFile", - "Rank": 2, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" + "Rank": 2 }, { "Id": 454, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "CommandName": "Get-PnPFile", - "Rank": 3, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" + "Rank": 3 }, { "Id": 455, + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "CommandName": "Get-PnPFile", - "Rank": 4, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" + "Rank": 4 }, { "Id": 456, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "CommandName": "Get-PnPFile", - "Rank": 5, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" + "Rank": 5 }, { "Id": 457, + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "CommandName": "Get-PnPFile", - "Rank": 6, - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" + "Rank": 6 }, { "Id": 458, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "CommandName": "Get-PnPFile", - "Rank": 7, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" + "Rank": 7 }, { "Id": 459, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Get-PnPFileSharingLink", - "Rank": 1, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Rank": 1 }, { "Id": 460, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "CommandName": "Get-PnPFileVersion", - "Rank": 1, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" + "Rank": 1 }, { "Id": 461, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "CommandName": "Get-PnPFileVersion", - "Rank": 2, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" + "Rank": 2 }, { "Id": 462, + "Command": "Get-PnPFlow -AsAdmin", "CommandName": "Get-PnPFlow", - "Rank": 1, - "Command": "Get-PnPFlow -AsAdmin" + "Rank": 1 }, { "Id": 463, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "CommandName": "Get-PnPFlow", - "Rank": 2, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe" + "Rank": 2 }, { "Id": 464, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "CommandName": "Get-PnPFlow", - "Rank": 3, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" + "Rank": 3 }, { "Id": 465, + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "CommandName": "Get-PnPFlowOwner", - "Rank": 1, - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" + "Rank": 1 }, { "Id": 466, + "Command": "Get-PnPFolder", "CommandName": "Get-PnPFolder", - "Rank": 1, - "Command": "Get-PnPFolder" + "Rank": 1 }, { "Id": 467, + "Command": "Get-PnPFolder -Url \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Rank": 2, - "Command": "Get-PnPFolder -Url \"Shared Documents\"" + "Rank": 2 }, { "Id": 468, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "CommandName": "Get-PnPFolder", - "Rank": 3, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" + "Rank": 3 }, { "Id": 469, + "Command": "Get-PnPFolder -List \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Rank": 4, - "Command": "Get-PnPFolder -List \"Shared Documents\"" + "Rank": 4 }, { "Id": 470, + "Command": "Get-PnPFolderFile", "CommandName": "Get-PnPFolderFile", - "Rank": 1, - "Command": "Get-PnPFolderFile" + "Rank": 1 }, { "Id": 471, + "Command": "Get-PnPFolderFile -Recurse", "CommandName": "Get-PnPFolderFile", - "Rank": 2, - "Command": "Get-PnPFolderFile -Recurse" + "Rank": 2 }, { "Id": 472, + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderFile", - "Rank": 3, - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"" + "Rank": 3 }, { "Id": 473, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "CommandName": "Get-PnPFolderFile", - "Rank": 4, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Rank": 4 }, { "Id": 474, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderFile", - "Rank": 5, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Rank": 5 }, { "Id": 475, + "Command": "Get-PnPFolderFolder", "CommandName": "Get-PnPFolderFolder", - "Rank": 1, - "Command": "Get-PnPFolderFolder" + "Rank": 1 }, { "Id": 476, + "Command": "Get-PnPFolderFolder -Recurse", "CommandName": "Get-PnPFolderFolder", - "Rank": 2, - "Command": "Get-PnPFolderFolder -Recurse" + "Rank": 2 }, { "Id": 477, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderFolder", - "Rank": 3, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"" + "Rank": 3 }, { "Id": 478, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "CommandName": "Get-PnPFolderFolder", - "Rank": 4, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" + "Rank": 4 }, { "Id": 479, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "CommandName": "Get-PnPFolderFolder", - "Rank": 5, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" + "Rank": 5 }, { "Id": 480, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderFolder", - "Rank": 6, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Rank": 6 }, { "Id": 481, + "Command": "Get-PnPFolderItem", "CommandName": "Get-PnPFolderItem", - "Rank": 1, - "Command": "Get-PnPFolderItem" + "Rank": 1 }, { "Id": 482, + "Command": "Get-PnPFolderItem -Recurse", "CommandName": "Get-PnPFolderItem", - "Rank": 2, - "Command": "Get-PnPFolderItem -Recurse" + "Rank": 2 }, { "Id": 483, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderItem", - "Rank": 3, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" + "Rank": 3 }, { "Id": 484, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "CommandName": "Get-PnPFolderItem", - "Rank": 4, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Rank": 4 }, { "Id": 485, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "CommandName": "Get-PnPFolderItem", - "Rank": 5, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" + "Rank": 5 }, { "Id": 486, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderItem", - "Rank": 6, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Rank": 6 }, { "Id": 487, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Get-PnPFolderSharingLink", - "Rank": 1, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Rank": 1 }, { "Id": 488, + "Command": "Get-PnPFolderStorageMetric", "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 1, - "Command": "Get-PnPFolderStorageMetric" + "Rank": 1 }, { "Id": 489, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 2, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" + "Rank": 2 }, { "Id": 490, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 3, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" + "Rank": 3 }, { "Id": 491, + "Command": "Get-PnPFooter", "CommandName": "Get-PnPFooter", - "Rank": 1, - "Command": "Get-PnPFooter" + "Rank": 1 }, { "Id": 492, + "Command": "Get-PnPGraphAccessToken", "CommandName": "Get-PnPGraphAccessToken", - "Rank": 1, - "Command": "Get-PnPGraphAccessToken" + "Rank": 1 }, { "Id": 493, + "Command": "Get-PnPGraphAccessToken -Decoded", "CommandName": "Get-PnPGraphAccessToken", - "Rank": 2, - "Command": "Get-PnPGraphAccessToken -Decoded" + "Rank": 2 }, { "Id": 494, + "Command": "Get-PnPGraphSubscription", "CommandName": "Get-PnPGraphSubscription", - "Rank": 1, - "Command": "Get-PnPGraphSubscription" + "Rank": 1 }, { "Id": 495, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "CommandName": "Get-PnPGraphSubscription", - "Rank": 2, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Rank": 2 }, { "Id": 496, + "Command": "Get-PnPGroup", "CommandName": "Get-PnPGroup", - "Rank": 1, - "Command": "Get-PnPGroup" + "Rank": 1 }, { "Id": 497, + "Command": "Get-PnPGroup -Identity 'My Site Users'", "CommandName": "Get-PnPGroup", - "Rank": 2, - "Command": "Get-PnPGroup -Identity 'My Site Users'" + "Rank": 2 }, { "Id": 498, + "Command": "Get-PnPGroup -AssociatedMemberGroup", "CommandName": "Get-PnPGroup", - "Rank": 3, - "Command": "Get-PnPGroup -AssociatedMemberGroup" + "Rank": 3 }, { "Id": 499, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "CommandName": "Get-PnPGroupMember", - "Rank": 1, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" + "Rank": 1 }, { "Id": 500, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "CommandName": "Get-PnPGroupMember", - "Rank": 2, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" + "Rank": 2 }, { "Id": 501, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "CommandName": "Get-PnPGroupPermissions", - "Rank": 1, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" + "Rank": 1 }, { "Id": 502, + "Command": "Get-PnPHideDefaultThemes", "CommandName": "Get-PnPHideDefaultThemes", - "Rank": 1, - "Command": "Get-PnPHideDefaultThemes" + "Rank": 1 }, { "Id": 503, + "Command": "Get-PnPHomePage", "CommandName": "Get-PnPHomePage", - "Rank": 1, - "Command": "Get-PnPHomePage" + "Rank": 1 }, { "Id": 504, + "Command": "Get-PnPHomeSite", "CommandName": "Get-PnPHomeSite", - "Rank": 1, - "Command": "Get-PnPHomeSite" + "Rank": 1 }, { "Id": 505, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "CommandName": "Get-PnPHomeSite", - "Rank": 2, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" + "Rank": 2 }, { "Id": 506, + "Command": "Get-PnPHomeSite -Detailed", "CommandName": "Get-PnPHomeSite", - "Rank": 3, - "Command": "Get-PnPHomeSite -Detailed" + "Rank": 3 }, { "Id": 507, + "Command": "Get-PnPHubSite", "CommandName": "Get-PnPHubSite", - "Rank": 1, - "Command": "Get-PnPHubSite" + "Rank": 1 }, { "Id": 508, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "CommandName": "Get-PnPHubSite", - "Rank": 2, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Rank": 2 }, { "Id": 509, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "CommandName": "Get-PnPHubSite", - "Rank": 3, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" + "Rank": 3 }, { "Id": 510, + "Command": "Get-PnPHubSiteChild", "CommandName": "Get-PnPHubSiteChild", - "Rank": 1, - "Command": "Get-PnPHubSiteChild" + "Rank": 1 }, { "Id": 511, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "CommandName": "Get-PnPHubSiteChild", - "Rank": 2, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Rank": 2 }, { "Id": 512, + "Command": "Get-PnPInPlaceRecordsManagement", "CommandName": "Get-PnPInPlaceRecordsManagement", - "Rank": 1, - "Command": "Get-PnPInPlaceRecordsManagement" + "Rank": 1 }, { "Id": 513, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "CommandName": "Get-PnPIsSiteAliasAvailable", - "Rank": 1, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" + "Rank": 1 }, { "Id": 514, + "Command": "Get-PnPJavaScriptLink", "CommandName": "Get-PnPJavaScriptLink", - "Rank": 1, - "Command": "Get-PnPJavaScriptLink" + "Rank": 1 }, { "Id": 515, + "Command": "Get-PnPJavaScriptLink -Scope All", "CommandName": "Get-PnPJavaScriptLink", - "Rank": 2, - "Command": "Get-PnPJavaScriptLink -Scope All" + "Rank": 2 }, { "Id": 516, + "Command": "Get-PnPJavaScriptLink -Scope Web", "CommandName": "Get-PnPJavaScriptLink", - "Rank": 3, - "Command": "Get-PnPJavaScriptLink -Scope Web" + "Rank": 3 }, { "Id": 517, + "Command": "Get-PnPJavaScriptLink -Scope Site", "CommandName": "Get-PnPJavaScriptLink", - "Rank": 4, - "Command": "Get-PnPJavaScriptLink -Scope Site" + "Rank": 4 }, { "Id": 518, + "Command": "Get-PnPJavaScriptLink -Name Test", "CommandName": "Get-PnPJavaScriptLink", - "Rank": 5, - "Command": "Get-PnPJavaScriptLink -Name Test" + "Rank": 5 }, { "Id": 519, + "Command": "Get-PnPKnowledgeHubSite", "CommandName": "Get-PnPKnowledgeHubSite", - "Rank": 1, - "Command": "Get-PnPKnowledgeHubSite" + "Rank": 1 }, { "Id": 520, + "Command": "Get-PnPLabel", "CommandName": "Get-PnPLabel", - "Rank": 1, - "Command": "Get-PnPLabel" + "Rank": 1 }, { "Id": 521, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "CommandName": "Get-PnPLabel", - "Rank": 2, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" + "Rank": 2 }, { "Id": 522, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "CommandName": "Get-PnPLargeListOperationStatus", - "Rank": 1, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" + "Rank": 1 }, { "Id": 523, + "Command": "Get-PnPList", "CommandName": "Get-PnPList", - "Rank": 1, - "Command": "Get-PnPList" + "Rank": 1 }, { "Id": 524, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Get-PnPList", - "Rank": 2, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 2 }, { "Id": 525, + "Command": "Get-PnPList -Identity Lists/Announcements", "CommandName": "Get-PnPList", - "Rank": 3, - "Command": "Get-PnPList -Identity Lists/Announcements" + "Rank": 3 }, { "Id": 526, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "CommandName": "Get-PnPList", - "Rank": 4, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" + "Rank": 4 }, { "Id": 527, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "CommandName": "Get-PnPList", - "Rank": 5, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" + "Rank": 5 }, { "Id": 528, + "Command": "Get-PnPListDesign", "CommandName": "Get-PnPListDesign", - "Rank": 1, - "Command": "Get-PnPListDesign" + "Rank": 1 }, { "Id": 529, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPListDesign", - "Rank": 2, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2 }, { "Id": 530, + "Command": "Get-PnPListDesign -Identity ListEvent", "CommandName": "Get-PnPListDesign", - "Rank": 3, - "Command": "Get-PnPListDesign -Identity ListEvent" + "Rank": 3 }, { "Id": 531, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "CommandName": "Get-PnPListInformationRightsManagement", - "Rank": 1, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" + "Rank": 1 }, { "Id": 532, + "Command": "Get-PnPListItem -List Tasks", "CommandName": "Get-PnPListItem", - "Rank": 1, - "Command": "Get-PnPListItem -List Tasks" + "Rank": 1 }, { "Id": 533, + "Command": "Get-PnPListItem -List Tasks -Id 1", "CommandName": "Get-PnPListItem", - "Rank": 2, - "Command": "Get-PnPListItem -List Tasks -Id 1" + "Rank": 2 }, { "Id": 534, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "CommandName": "Get-PnPListItem", - "Rank": 3, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" + "Rank": 3 }, { "Id": 535, + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "CommandName": "Get-PnPListItem", - "Rank": 4, - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" + "Rank": 4 }, { "Id": 536, + "Command": "Get-PnPListItem -List Tasks -Query \"\"", "CommandName": "Get-PnPListItem", - "Rank": 5, - "Command": "Get-PnPListItem -List Tasks -Query \"\"" + "Rank": 5 }, { "Id": 537, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "CommandName": "Get-PnPListItem", - "Rank": 6, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000" + "Rank": 6 }, { "Id": 538, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "CommandName": "Get-PnPListItem", - "Rank": 7, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" + "Rank": 7 }, { "Id": 539, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "CommandName": "Get-PnPListItem", - "Rank": 8, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" + "Rank": 8 }, { "Id": 540, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "CommandName": "Get-PnPListItem", - "Rank": 9, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" + "Rank": 9 }, { "Id": 541, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "CommandName": "Get-PnPListItemAttachment", - "Rank": 1, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" + "Rank": 1 }, { "Id": 542, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "CommandName": "Get-PnPListItemAttachment", - "Rank": 2, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" + "Rank": 2 }, { "Id": 543, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "CommandName": "Get-PnPListItemComment", - "Rank": 1, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1" + "Rank": 1 }, { "Id": 544, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "CommandName": "Get-PnPListItemPermission", - "Rank": 1, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" + "Rank": 1 }, { "Id": 545, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "CommandName": "Get-PnPListItemVersion", - "Rank": 1, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" + "Rank": 1 }, { "Id": 546, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "CommandName": "Get-PnPListPermissions", - "Rank": 1, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" + "Rank": 1 }, { "Id": 547, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "CommandName": "Get-PnPListPermissions", - "Rank": 2, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" + "Rank": 2 }, { "Id": 548, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "CommandName": "Get-PnPListRecordDeclaration", - "Rank": 1, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" + "Rank": 1 }, { "Id": 549, + "Command": "Get-PnPMasterPage", "CommandName": "Get-PnPMasterPage", - "Rank": 1, - "Command": "Get-PnPMasterPage" + "Rank": 1 }, { "Id": 550, + "Command": "Get-PnPMessageCenterAnnouncement", "CommandName": "Get-PnPMessageCenterAnnouncement", - "Rank": 1, - "Command": "Get-PnPMessageCenterAnnouncement" + "Rank": 1 }, { "Id": 551, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "CommandName": "Get-PnPMessageCenterAnnouncement", - "Rank": 2, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" + "Rank": 2 }, { "Id": 552, + "Command": "Get-PnPMicrosoft365ExpiringGroup", "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1, - "Command": "Get-PnPMicrosoft365ExpiringGroup" + "Rank": 1 }, { "Id": 553, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 2, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" + "Rank": 2 }, { "Id": 554, + "Command": "Get-PnPMicrosoft365Group", "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 1, - "Command": "Get-PnPMicrosoft365Group" + "Rank": 1 }, { "Id": 555, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 2, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId" + "Rank": 2 }, { "Id": 556, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 3, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" + "Rank": 3 }, { "Id": 557, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 4, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" + "Rank": 4 }, { "Id": 558, + "Command": "Get-PnPMicrosoft365Group -Identity $group", "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 5, - "Command": "Get-PnPMicrosoft365Group -Identity $group" + "Rank": 5 }, { "Id": 559, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 6, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" + "Rank": 6 }, { "Id": 560, + "Command": "Get-PnPMicrosoft365GroupEndpoint", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupEndpoint" + "Rank": 1 }, { "Id": 561, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" + "Rank": 2 }, { "Id": 562, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Rank": 3 }, { "Id": 563, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" + "Rank": 1 }, { "Id": 564, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" + "Rank": 2 }, { "Id": 565, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" + "Rank": 3 }, { "Id": 566, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" + "Rank": 1 }, { "Id": 567, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" + "Rank": 2 }, { "Id": 568, + "Command": "Get-PnPMicrosoft365GroupSettings", "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupSettings" + "Rank": 1 }, { "Id": 569, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" + "Rank": 2 }, { "Id": 570, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates" + "Rank": 1 }, { "Id": 571, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" + "Rank": 2 }, { "Id": 572, + "Command": "Get-PnPMicrosoft365GroupTeam", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupTeam" + "Rank": 1 }, { "Id": 573, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" + "Rank": 2 }, { "Id": 574, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Rank": 3 }, { "Id": 575, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity" + "Rank": 1 }, { "Id": 576, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" + "Rank": 2 }, { "Id": 577, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Rank": 3 }, { "Id": 578, + "Command": "Get-PnPNavigationNode", "CommandName": "Get-PnPNavigationNode", - "Rank": 1, - "Command": "Get-PnPNavigationNode" + "Rank": 1 }, { "Id": 579, + "Command": "Get-PnPNavigationNode -Location QuickLaunch", "CommandName": "Get-PnPNavigationNode", - "Rank": 2, - "Command": "Get-PnPNavigationNode -Location QuickLaunch" + "Rank": 2 }, { "Id": 580, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "CommandName": "Get-PnPNavigationNode", - "Rank": 3, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar" + "Rank": 3 }, { "Id": 581, + "Command": "Get-PnPOrgAssetsLibrary", "CommandName": "Get-PnPOrgAssetsLibrary", - "Rank": 1, - "Command": "Get-PnPOrgAssetsLibrary" + "Rank": 1 }, { "Id": 582, + "Command": "Get-PnPOrgNewsSite", "CommandName": "Get-PnPOrgNewsSite", - "Rank": 1, - "Command": "Get-PnPOrgNewsSite" + "Rank": 1 }, { "Id": 583, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "CommandName": "Get-PnPPage", - "Rank": 1, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" + "Rank": 1 }, { "Id": 584, + "Command": "Get-PnPPage \"MyPage\"", "CommandName": "Get-PnPPage", - "Rank": 2, - "Command": "Get-PnPPage \"MyPage\"" + "Rank": 2 }, { "Id": 585, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "CommandName": "Get-PnPPage", - "Rank": 3, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" + "Rank": 3 }, { "Id": 586, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "CommandName": "Get-PnPPage", - "Rank": 4, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" + "Rank": 4 }, { "Id": 587, + "Command": "Get-PnPPageComponent -Page Home", "CommandName": "Get-PnPPageComponent", - "Rank": 1, - "Command": "Get-PnPPageComponent -Page Home" + "Rank": 1 }, { "Id": 588, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPPageComponent", - "Rank": 2, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 2 }, { "Id": 589, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "CommandName": "Get-PnPPageComponent", - "Rank": 3, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable" + "Rank": 3 }, { "Id": 590, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "CommandName": "Get-PnPPlannerBucket", - "Rank": 1, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" + "Rank": 1 }, { "Id": 591, + "Command": "Get-PnPPlannerConfiguration", "CommandName": "Get-PnPPlannerConfiguration", - "Rank": 1, - "Command": "Get-PnPPlannerConfiguration" + "Rank": 1 }, { "Id": 592, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "CommandName": "Get-PnPPlannerPlan", - "Rank": 1, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" + "Rank": 1 }, { "Id": 593, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "CommandName": "Get-PnPPlannerPlan", - "Rank": 2, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" + "Rank": 2 }, { "Id": 594, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "CommandName": "Get-PnPPlannerPlan", - "Rank": 3, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" + "Rank": 3 }, { "Id": 595, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "CommandName": "Get-PnPPlannerRosterMember", - "Rank": 1, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Rank": 1 }, { "Id": 596, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "CommandName": "Get-PnPPlannerRosterPlan", - "Rank": 1, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" + "Rank": 1 }, { "Id": 597, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPPlannerRosterPlan", - "Rank": 2, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 2 }, { "Id": 598, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "CommandName": "Get-PnPPlannerTask", - "Rank": 1, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" + "Rank": 1 }, { "Id": 599, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "CommandName": "Get-PnPPlannerTask", - "Rank": 2, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Rank": 2 }, { "Id": 600, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "CommandName": "Get-PnPPlannerTask", - "Rank": 3, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Rank": 3 }, { "Id": 601, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPPlannerUserPolicy", - "Rank": 1, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 602, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "CommandName": "Get-PnPPowerPlatformConnector", - "Rank": 1, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" + "Rank": 1 }, { "Id": 603, + "Command": "Get-PnPPowerPlatformEnvironment", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 1, - "Command": "Get-PnPPowerPlatformEnvironment" + "Rank": 1 }, { "Id": 604, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 2, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" + "Rank": 2 }, { "Id": 605, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 3, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" + "Rank": 3 }, { "Id": 606, + "Command": "Get-PnPPowerShellTelemetryEnabled", "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1, - "Command": "Get-PnPPowerShellTelemetryEnabled" + "Rank": 1 }, { "Id": 607, + "Command": "Get-PnPPropertyBag", "CommandName": "Get-PnPPropertyBag", - "Rank": 1, - "Command": "Get-PnPPropertyBag" + "Rank": 1 }, { "Id": 608, + "Command": "Get-PnPPropertyBag -Key MyKey", "CommandName": "Get-PnPPropertyBag", - "Rank": 2, - "Command": "Get-PnPPropertyBag -Key MyKey" + "Rank": 2 }, { "Id": 609, + "Command": "Get-PnPPropertyBag -Folder /MyFolder", "CommandName": "Get-PnPPropertyBag", - "Rank": 3, - "Command": "Get-PnPPropertyBag -Folder /MyFolder" + "Rank": 3 }, { "Id": 610, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "CommandName": "Get-PnPPropertyBag", - "Rank": 4, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" + "Rank": 4 }, { "Id": 611, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "CommandName": "Get-PnPPropertyBag", - "Rank": 5, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" + "Rank": 5 }, { "Id": 612, + "Command": "Get-PnPPublishingImageRendition", "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 1, - "Command": "Get-PnPPublishingImageRendition" + "Rank": 1 }, { "Id": 613, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 2, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" + "Rank": 2 }, { "Id": 614, + "Command": "Get-PnPPublishingImageRendition -Identity 2", "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 3, - "Command": "Get-PnPPublishingImageRendition -Identity 2" + "Rank": 3 }, { "Id": 615, + "Command": "Get-PnPRecycleBinItem", "CommandName": "Get-PnPRecycleBinItem", - "Rank": 1, - "Command": "Get-PnPRecycleBinItem" + "Rank": 1 }, { "Id": 616, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "CommandName": "Get-PnPRecycleBinItem", - "Rank": 2, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" + "Rank": 2 }, { "Id": 617, + "Command": "Get-PnPRecycleBinItem -FirstStage", "CommandName": "Get-PnPRecycleBinItem", - "Rank": 3, - "Command": "Get-PnPRecycleBinItem -FirstStage" + "Rank": 3 }, { "Id": 618, + "Command": "Get-PnPRecycleBinItem -SecondStage", "CommandName": "Get-PnPRecycleBinItem", - "Rank": 4, - "Command": "Get-PnPRecycleBinItem -SecondStage" + "Rank": 4 }, { "Id": 619, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "CommandName": "Get-PnPRecycleBinItem", - "Rank": 5, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000" + "Rank": 5 }, { "Id": 620, + "Command": "Get-PnPRequestAccessEmails", "CommandName": "Get-PnPRequestAccessEmails", - "Rank": 1, - "Command": "Get-PnPRequestAccessEmails" + "Rank": 1 }, { "Id": 621, + "Command": "Get-PnPRetentionLabel", "CommandName": "Get-PnPRetentionLabel", - "Rank": 1, - "Command": "Get-PnPRetentionLabel" + "Rank": 1 }, { "Id": 622, + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "CommandName": "Get-PnPRetentionLabel", - "Rank": 2, - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" + "Rank": 2 }, { "Id": 623, + "Command": "Get-PnPRoleDefinition", "CommandName": "Get-PnPRoleDefinition", - "Rank": 1, - "Command": "Get-PnPRoleDefinition" + "Rank": 1 }, { "Id": 624, + "Command": "Get-PnPRoleDefinition -Identity Read", "CommandName": "Get-PnPRoleDefinition", - "Rank": 2, - "Command": "Get-PnPRoleDefinition -Identity Read" + "Rank": 2 }, { "Id": 625, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "CommandName": "Get-PnPRoleDefinition", - "Rank": 3, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" + "Rank": 3 }, { "Id": 626, + "Command": "Get-PnPSearchConfiguration", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 1, - "Command": "Get-PnPSearchConfiguration" + "Rank": 1 }, { "Id": 627, + "Command": "Get-PnPSearchConfiguration -Scope Site", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 2, - "Command": "Get-PnPSearchConfiguration -Scope Site" + "Rank": 2 }, { "Id": 628, + "Command": "Get-PnPSearchConfiguration -Scope Subscription", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 3, - "Command": "Get-PnPSearchConfiguration -Scope Subscription" + "Rank": 3 }, { "Id": 629, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 4, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Rank": 4 }, { "Id": 630, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 5, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" + "Rank": 5 }, { "Id": 631, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 6, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" + "Rank": 6 }, { "Id": 632, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 7, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" + "Rank": 7 }, { "Id": 633, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 8, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" + "Rank": 8 }, { "Id": 634, + "Command": "Get-PnPSearchCrawlLog", "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 1, - "Command": "Get-PnPSearchCrawlLog" + "Rank": 1 }, { "Id": 635, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 2, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" + "Rank": 2 }, { "Id": 636, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 3, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" + "Rank": 3 }, { "Id": 637, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 4, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" + "Rank": 4 }, { "Id": 638, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 5, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" + "Rank": 5 }, { "Id": 639, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 6, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" + "Rank": 6 }, { "Id": 640, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 7, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" + "Rank": 7 }, { "Id": 641, + "Command": "Get-PnPSearchSettings", "CommandName": "Get-PnPSearchSettings", - "Rank": 1, - "Command": "Get-PnPSearchSettings" + "Rank": 1 }, { "Id": 642, + "Command": "Get-PnPServiceCurrentHealth", "CommandName": "Get-PnPServiceCurrentHealth", - "Rank": 1, - "Command": "Get-PnPServiceCurrentHealth" + "Rank": 1 }, { "Id": 643, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "CommandName": "Get-PnPServiceCurrentHealth", - "Rank": 2, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" + "Rank": 2 }, { "Id": 644, + "Command": "Get-PnPServiceHealthIssue", "CommandName": "Get-PnPServiceHealthIssue", - "Rank": 1, - "Command": "Get-PnPServiceHealthIssue" + "Rank": 1 }, { "Id": 645, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "CommandName": "Get-PnPServiceHealthIssue", - "Rank": 2, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" + "Rank": 2 }, { "Id": 646, + "Command": "Get-PnPSharePointAddIn", "CommandName": "Get-PnPSharePointAddIn", - "Rank": 1, - "Command": "Get-PnPSharePointAddIn" + "Rank": 1 }, { "Id": 647, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "CommandName": "Get-PnPSharePointAddIn", - "Rank": 2, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites" + "Rank": 2 }, { "Id": 648, + "Command": "Get-PnPSharingForNonOwnersOfSite", "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1, - "Command": "Get-PnPSharingForNonOwnersOfSite" + "Rank": 1 }, { "Id": 649, + "Command": "Get-PnPSite", "CommandName": "Get-PnPSite", - "Rank": 1, - "Command": "Get-PnPSite" + "Rank": 1 }, { "Id": 650, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "CommandName": "Get-PnPSite", - "Rank": 2, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" + "Rank": 2 }, { "Id": 651, + "Command": "Get-PnPSiteClosure", "CommandName": "Get-PnPSiteClosure", - "Rank": 1, - "Command": "Get-PnPSiteClosure" + "Rank": 1 }, { "Id": 652, + "Command": "Get-PnPSiteCollectionAdmin", "CommandName": "Get-PnPSiteCollectionAdmin", - "Rank": 1, - "Command": "Get-PnPSiteCollectionAdmin" + "Rank": 1 }, { "Id": 653, + "Command": "Get-PnPSiteCollectionAppCatalog", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1, - "Command": "Get-PnPSiteCollectionAppCatalog" + "Rank": 1 }, { "Id": 654, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 2, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" + "Rank": 2 }, { "Id": 655, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 3, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" + "Rank": 3 }, { "Id": 656, + "Command": "Get-PnPSiteCollectionTermStore", "CommandName": "Get-PnPSiteCollectionTermStore", - "Rank": 1, - "Command": "Get-PnPSiteCollectionTermStore" + "Rank": 1 }, { "Id": 657, + "Command": "Get-PnPSiteDesign", "CommandName": "Get-PnPSiteDesign", - "Rank": 1, - "Command": "Get-PnPSiteDesign" + "Rank": 1 }, { "Id": 658, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteDesign", - "Rank": 2, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2 }, { "Id": 659, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteDesignRights", - "Rank": 1, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1 }, { "Id": 660, + "Command": "Get-PnPSiteDesignRun", "CommandName": "Get-PnPSiteDesignRun", - "Rank": 1, - "Command": "Get-PnPSiteDesignRun" + "Rank": 1 }, { "Id": 661, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "CommandName": "Get-PnPSiteDesignRun", - "Rank": 2, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" + "Rank": 2 }, { "Id": 662, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "CommandName": "Get-PnPSiteDesignTask", - "Rank": 1, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" + "Rank": 1 }, { "Id": 663, + "Command": "Get-PnPSiteDesignTask", "CommandName": "Get-PnPSiteDesignTask", - "Rank": 2, - "Command": "Get-PnPSiteDesignTask" + "Rank": 2 }, { "Id": 664, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "CommandName": "Get-PnPSiteDesignTask", - "Rank": 3, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "Rank": 3 }, { "Id": 665, + "Command": "Get-PnPSiteGroup", "CommandName": "Get-PnPSiteGroup", - "Rank": 1, - "Command": "Get-PnPSiteGroup" + "Rank": 1 }, { "Id": 666, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "CommandName": "Get-PnPSiteGroup", - "Rank": 2, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Rank": 2 }, { "Id": 667, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "CommandName": "Get-PnPSiteGroup", - "Rank": 3, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" + "Rank": 3 }, { "Id": 668, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "CommandName": "Get-PnPSiteGroup", - "Rank": 4, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Rank": 4 }, { "Id": 669, + "Command": "Get-PnPSitePolicy", "CommandName": "Get-PnPSitePolicy", - "Rank": 1, - "Command": "Get-PnPSitePolicy" + "Rank": 1 }, { "Id": 670, + "Command": "Get-PnPSitePolicy -AllAvailable", "CommandName": "Get-PnPSitePolicy", - "Rank": 2, - "Command": "Get-PnPSitePolicy -AllAvailable" + "Rank": 2 }, { "Id": 671, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "CommandName": "Get-PnPSitePolicy", - "Rank": 3, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" + "Rank": 3 }, { "Id": 672, + "Command": "Get-PnPSiteScript", "CommandName": "Get-PnPSiteScript", - "Rank": 1, - "Command": "Get-PnPSiteScript" + "Rank": 1 }, { "Id": 673, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteScript", - "Rank": 2, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2 }, { "Id": 674, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 1, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" + "Rank": 1 }, { "Id": 675, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 2, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" + "Rank": 2 }, { "Id": 676, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 3, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" + "Rank": 3 }, { "Id": 677, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 1, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" + "Rank": 1 }, { "Id": 678, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 2, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" + "Rank": 2 }, { "Id": 679, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 3, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" + "Rank": 3 }, { "Id": 680, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 4, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" + "Rank": 4 }, { "Id": 681, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 5, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" + "Rank": 5 }, { "Id": 682, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 6, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" + "Rank": 6 }, { "Id": 683, + "Command": "Get-PnPSiteSearchQueryResults", "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 1, - "Command": "Get-PnPSiteSearchQueryResults" + "Rank": 1 }, { "Id": 684, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 2, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" + "Rank": 2 }, { "Id": 685, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 3, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" + "Rank": 3 }, { "Id": 686, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 4, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" + "Rank": 4 }, { "Id": 687, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 5, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" + "Rank": 5 }, { "Id": 688, + "Command": "Get-PnPSiteSearchQueryResults -All", "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 6, - "Command": "Get-PnPSiteSearchQueryResults -All" + "Rank": 6 }, { "Id": 689, + "Command": "Get-PnPSiteSensitivityLabel", "CommandName": "Get-PnPSiteSensitivityLabel", - "Rank": 1, - "Command": "Get-PnPSiteSensitivityLabel" + "Rank": 1 }, { "Id": 690, + "Command": "Get-PnPSiteTemplate -Out template.pnp", "CommandName": "Get-PnPSiteTemplate", - "Rank": 1, - "Command": "Get-PnPSiteTemplate -Out template.pnp" + "Rank": 1 }, { "Id": 691, + "Command": "Get-PnPSiteTemplate -Out template.xml", "CommandName": "Get-PnPSiteTemplate", - "Rank": 2, - "Command": "Get-PnPSiteTemplate -Out template.xml" + "Rank": 2 }, { "Id": 692, + "Command": "Get-PnPSiteTemplate -Out template.md", "CommandName": "Get-PnPSiteTemplate", - "Rank": 3, - "Command": "Get-PnPSiteTemplate -Out template.md" + "Rank": 3 }, { "Id": 693, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "CommandName": "Get-PnPSiteTemplate", - "Rank": 4, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" + "Rank": 4 }, { "Id": 694, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "CommandName": "Get-PnPSiteTemplate", - "Rank": 5, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" + "Rank": 5 }, { "Id": 695, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "CommandName": "Get-PnPSiteTemplate", - "Rank": 6, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" + "Rank": 6 }, { "Id": 696, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "CommandName": "Get-PnPSiteTemplate", - "Rank": 7, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" + "Rank": 7 }, { "Id": 697, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "CommandName": "Get-PnPSiteTemplate", - "Rank": 8, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" + "Rank": 8 }, { "Id": 698, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "CommandName": "Get-PnPSiteTemplate", - "Rank": 9, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" + "Rank": 9 }, { "Id": 699, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "CommandName": "Get-PnPSiteTemplate", - "Rank": 10, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" + "Rank": 10 }, { "Id": 700, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "CommandName": "Get-PnPSiteTemplate", - "Rank": 11, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" + "Rank": 11 }, { "Id": 701, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "CommandName": "Get-PnPSiteTemplate", - "Rank": 12, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" + "Rank": 12 }, { "Id": 702, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", "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\"" + "Rank": 13 }, { "Id": 703, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "CommandName": "Get-PnPSiteTemplate", - "Rank": 14, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" + "Rank": 14 }, { "Id": 704, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "CommandName": "Get-PnPSiteUserInvitations", - "Rank": 1, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "Rank": 1 }, { "Id": 705, + "Command": "Get-PnPStorageEntity", "CommandName": "Get-PnPStorageEntity", - "Rank": 1, - "Command": "Get-PnPStorageEntity" + "Rank": 1 }, { "Id": 706, + "Command": "Get-PnPStorageEntity -Key MyKey", "CommandName": "Get-PnPStorageEntity", - "Rank": 2, - "Command": "Get-PnPStorageEntity -Key MyKey" + "Rank": 2 }, { "Id": 707, + "Command": "Get-PnPStorageEntity -Scope Site", "CommandName": "Get-PnPStorageEntity", - "Rank": 3, - "Command": "Get-PnPStorageEntity -Scope Site" + "Rank": 3 }, { "Id": 708, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "CommandName": "Get-PnPStorageEntity", - "Rank": 4, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" + "Rank": 4 }, { "Id": 709, + "Command": "Get-PnPStoredCredential -Name O365", "CommandName": "Get-PnPStoredCredential", - "Rank": 1, - "Command": "Get-PnPStoredCredential -Name O365" + "Rank": 1 }, { "Id": 710, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Rank": 1, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Rank": 1 }, { "Id": 711, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Rank": 1, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Rank": 1 }, { "Id": 712, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Rank": 1, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" + "Rank": 1 }, { "Id": 713, + "Command": "Get-PnPSubWeb", "CommandName": "Get-PnPSubWeb", - "Rank": 1, - "Command": "Get-PnPSubWeb" + "Rank": 1 }, { "Id": 714, + "Command": "Get-PnPSubWeb -Recurse", "CommandName": "Get-PnPSubWeb", - "Rank": 2, - "Command": "Get-PnPSubWeb -Recurse" + "Rank": 2 }, { "Id": 715, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "CommandName": "Get-PnPSubWeb", - "Rank": 3, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" + "Rank": 3 }, { "Id": 716, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "CommandName": "Get-PnPSubWeb", - "Rank": 4, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" + "Rank": 4 }, { "Id": 717, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "CommandName": "Get-PnPSubWeb", - "Rank": 5, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" + "Rank": 5 }, { "Id": 718, + "Command": "Get-PnPSyntexModel", "CommandName": "Get-PnPSyntexModel", - "Rank": 1, - "Command": "Get-PnPSyntexModel" + "Rank": 1 }, { "Id": 719, + "Command": "Get-PnPSyntexModel -Identity 1", "CommandName": "Get-PnPSyntexModel", - "Rank": 2, - "Command": "Get-PnPSyntexModel -Identity 1" + "Rank": 2 }, { "Id": 720, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "CommandName": "Get-PnPSyntexModel", - "Rank": 3, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" + "Rank": 3 }, { "Id": 721, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "CommandName": "Get-PnPSyntexModelPublication", - "Rank": 1, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" + "Rank": 1 }, { "Id": 722, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "CommandName": "Get-PnPTaxonomyItem", - "Rank": 1, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" + "Rank": 1 }, { "Id": 723, + "Command": "Get-PnPTeamsApp", "CommandName": "Get-PnPTeamsApp", - "Rank": 1, - "Command": "Get-PnPTeamsApp" + "Rank": 1 }, { "Id": 724, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "CommandName": "Get-PnPTeamsApp", - "Rank": 2, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" + "Rank": 2 }, { "Id": 725, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "CommandName": "Get-PnPTeamsApp", - "Rank": 3, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" + "Rank": 3 }, { "Id": 726, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "CommandName": "Get-PnPTeamsChannel", - "Rank": 1, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" + "Rank": 1 }, { "Id": 727, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "CommandName": "Get-PnPTeamsChannel", - "Rank": 2, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" + "Rank": 2 }, { "Id": 728, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "CommandName": "Get-PnPTeamsChannel", - "Rank": 3, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "Rank": 3 }, { "Id": 729, + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Rank": 1, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" + "Rank": 1 }, { "Id": 730, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Rank": 2, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "Rank": 2 }, { "Id": 731, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsChannelMessage", - "Rank": 1, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" + "Rank": 1 }, { "Id": 732, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "CommandName": "Get-PnPTeamsChannelMessage", - "Rank": 2, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" + "Rank": 2 }, { "Id": 733, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "CommandName": "Get-PnPTeamsChannelMessageReply", - "Rank": 1, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" + "Rank": 1 }, { "Id": 734, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "CommandName": "Get-PnPTeamsChannelMessageReply", - "Rank": 2, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" + "Rank": 2 }, { "Id": 735, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 1, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" + "Rank": 1 }, { "Id": 736, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 2, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" + "Rank": 2 }, { "Id": 737, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 3, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" + "Rank": 3 }, { "Id": 738, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 4, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "Rank": 4 }, { "Id": 739, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "CommandName": "Get-PnPTeamsPrimaryChannel", - "Rank": 1, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" + "Rank": 1 }, { "Id": 740, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "CommandName": "Get-PnPTeamsPrimaryChannel", - "Rank": 2, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" + "Rank": 2 }, { "Id": 741, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "CommandName": "Get-PnPTeamsTab", - "Rank": 1, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" + "Rank": 1 }, { "Id": 742, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "CommandName": "Get-PnPTeamsTab", - "Rank": 2, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" + "Rank": 2 }, { "Id": 743, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", "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" + "Rank": 3 }, { "Id": 744, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsTab", - "Rank": 4, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" + "Rank": 4 }, { "Id": 745, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "CommandName": "Get-PnPTeamsTab", - "Rank": 5, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" + "Rank": 5 }, { "Id": 746, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "CommandName": "Get-PnPTeamsTag", - "Rank": 1, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Rank": 1 }, { "Id": 747, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "CommandName": "Get-PnPTeamsTag", - "Rank": 2, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Rank": 2 }, { "Id": 748, + "Command": "Get-PnPTeamsTeam", "CommandName": "Get-PnPTeamsTeam", - "Rank": 1, - "Command": "Get-PnPTeamsTeam" + "Rank": 1 }, { "Id": 749, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "CommandName": "Get-PnPTeamsTeam", - "Rank": 2, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" + "Rank": 2 }, { "Id": 750, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "CommandName": "Get-PnPTeamsTeam", - "Rank": 3, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" + "Rank": 3 }, { "Id": 751, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "CommandName": "Get-PnPTeamsTeam", - "Rank": 4, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" + "Rank": 4 }, { "Id": 752, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPTeamsTeam", - "Rank": 5, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" + "Rank": 5 }, { "Id": 753, + "Command": "Get-PnPTeamsUser -Team MyTeam", "CommandName": "Get-PnPTeamsUser", - "Rank": 1, - "Command": "Get-PnPTeamsUser -Team MyTeam" + "Rank": 1 }, { "Id": 754, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "CommandName": "Get-PnPTeamsUser", - "Rank": 2, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" + "Rank": 2 }, { "Id": 755, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "CommandName": "Get-PnPTeamsUser", - "Rank": 3, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" + "Rank": 3 }, { "Id": 756, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "CommandName": "Get-PnPTeamsUser", - "Rank": 4, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" + "Rank": 4 }, { "Id": 757, + "Command": "Get-PnPTemporarilyDisableAppBar", "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1, - "Command": "Get-PnPTemporarilyDisableAppBar" + "Rank": 1 }, { "Id": 758, + "Command": "Get-PnPTenant", "CommandName": "Get-PnPTenant", - "Rank": 1, - "Command": "Get-PnPTenant" + "Rank": 1 }, { "Id": 759, + "Command": "Get-PnPTenantAppCatalogUrl", "CommandName": "Get-PnPTenantAppCatalogUrl", - "Rank": 1, - "Command": "Get-PnPTenantAppCatalogUrl" + "Rank": 1 }, { "Id": 760, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "CommandName": "Get-PnPTenantCdnEnabled", - "Rank": 1, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public" + "Rank": 1 }, { "Id": 761, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "CommandName": "Get-PnPTenantCdnOrigin", - "Rank": 1, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public" + "Rank": 1 }, { "Id": 762, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "CommandName": "Get-PnPTenantCdnPolicies", - "Rank": 1, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public" + "Rank": 1 }, { "Id": 763, + "Command": "Get-PnPTenantDeletedSite", "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 1, - "Command": "Get-PnPTenantDeletedSite" + "Rank": 1 }, { "Id": 764, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 2, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 2 }, { "Id": 765, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 3, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" + "Rank": 3 }, { "Id": 766, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 4, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" + "Rank": 4 }, { "Id": 767, + "Command": "Get-PnPTenantId", "CommandName": "Get-PnPTenantId", - "Rank": 1, - "Command": "Get-PnPTenantId" + "Rank": 1 }, { "Id": 768, + "Command": "Get-PnPTenantId contoso", "CommandName": "Get-PnPTenantId", - "Rank": 2, - "Command": "Get-PnPTenantId contoso" + "Rank": 2 }, { "Id": 769, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "CommandName": "Get-PnPTenantId", - "Rank": 3, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" + "Rank": 3 }, { "Id": 770, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "CommandName": "Get-PnPTenantId", - "Rank": 4, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" + "Rank": 4 }, { "Id": 771, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "CommandName": "Get-PnPTenantInfo", - "Rank": 1, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" + "Rank": 1 }, { "Id": 772, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "CommandName": "Get-PnPTenantInfo", - "Rank": 2, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" + "Rank": 2 }, { "Id": 773, + "Command": "Get-PnPTenantInfo", "CommandName": "Get-PnPTenantInfo", - "Rank": 3, - "Command": "Get-PnPTenantInfo" + "Rank": 3 }, { "Id": 774, + "Command": "Get-PnPTenantInfo -CurrentTenant", "CommandName": "Get-PnPTenantInfo", - "Rank": 4, - "Command": "Get-PnPTenantInfo -CurrentTenant" + "Rank": 4 }, { "Id": 775, + "Command": "Get-PnPTenantInstance", "CommandName": "Get-PnPTenantInstance", - "Rank": 1, - "Command": "Get-PnPTenantInstance" + "Rank": 1 }, { "Id": 776, + "Command": "Get-PnPTenantRecycleBinItem", "CommandName": "Get-PnPTenantRecycleBinItem", - "Rank": 1, - "Command": "Get-PnPTenantRecycleBinItem" + "Rank": 1 }, { "Id": 777, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "CommandName": "Get-PnPTenantSequence", - "Rank": 1, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject" + "Rank": 1 }, { "Id": 778, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "CommandName": "Get-PnPTenantSequence", - "Rank": 2, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" + "Rank": 2 }, { "Id": 779, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "CommandName": "Get-PnPTenantSequenceSite", - "Rank": 1, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" + "Rank": 1 }, { "Id": 780, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "CommandName": "Get-PnPTenantSequenceSite", - "Rank": 2, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" + "Rank": 2 }, { "Id": 781, + "Command": "Get-PnPTenantSite", "CommandName": "Get-PnPTenantSite", - "Rank": 1, - "Command": "Get-PnPTenantSite" + "Rank": 1 }, { "Id": 782, + "Command": "Get-PnPTenantSite -Detailed", "CommandName": "Get-PnPTenantSite", - "Rank": 2, - "Command": "Get-PnPTenantSite -Detailed" + "Rank": 2 }, { "Id": 783, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "CommandName": "Get-PnPTenantSite", - "Rank": 3, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites" + "Rank": 3 }, { "Id": 784, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "CommandName": "Get-PnPTenantSite", - "Rank": 4, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" + "Rank": 4 }, { "Id": 785, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "CommandName": "Get-PnPTenantSite", - "Rank": 5, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" + "Rank": 5 }, { "Id": 786, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "CommandName": "Get-PnPTenantSite", - "Rank": 6, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" + "Rank": 6 }, { "Id": 787, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "CommandName": "Get-PnPTenantSite", - "Rank": 7, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" + "Rank": 7 }, { "Id": 788, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "CommandName": "Get-PnPTenantSite", - "Rank": 8, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" + "Rank": 8 }, { "Id": 789, + "Command": "Get-PnPTenantSite -GroupIdDefined $true", "CommandName": "Get-PnPTenantSite", - "Rank": 9, - "Command": "Get-PnPTenantSite -GroupIdDefined $true" + "Rank": 9 }, { "Id": 790, + "Command": "Get-PnPTenantSyncClientRestriction", "CommandName": "Get-PnPTenantSyncClientRestriction", - "Rank": 1, - "Command": "Get-PnPTenantSyncClientRestriction" + "Rank": 1 }, { "Id": 791, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "CommandName": "Get-PnPTenantTemplate", - "Rank": 1, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" + "Rank": 1 }, { "Id": 792, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "CommandName": "Get-PnPTenantTemplate", - "Rank": 2, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" + "Rank": 2 }, { "Id": 793, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "CommandName": "Get-PnPTenantTemplate", - "Rank": 3, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" + "Rank": 3 }, { "Id": 794, + "Command": "Get-PnPTenantTheme", "CommandName": "Get-PnPTenantTheme", - "Rank": 1, - "Command": "Get-PnPTenantTheme" + "Rank": 1 }, { "Id": 795, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "CommandName": "Get-PnPTenantTheme", - "Rank": 2, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Rank": 2 }, { "Id": 796, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "CommandName": "Get-PnPTenantTheme", - "Rank": 3, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" + "Rank": 3 }, { "Id": 797, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Rank": 1, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 1 }, { "Id": 798, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Rank": 2, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2 }, { "Id": 799, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Rank": 3, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 3 }, { "Id": 800, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "CommandName": "Get-PnPTerm", - "Rank": 4, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" + "Rank": 4 }, { "Id": 801, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "CommandName": "Get-PnPTerm", - "Rank": 5, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" + "Rank": 5 }, { "Id": 802, + "Command": "Get-PnPTermGroup", "CommandName": "Get-PnPTermGroup", - "Rank": 1, - "Command": "Get-PnPTermGroup" + "Rank": 1 }, { "Id": 803, + "Command": "Get-PnPTermGroup -Identity \"Departments\"", "CommandName": "Get-PnPTermGroup", - "Rank": 2, - "Command": "Get-PnPTermGroup -Identity \"Departments\"" + "Rank": 2 }, { "Id": 804, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "CommandName": "Get-PnPTermGroup", - "Rank": 3, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" + "Rank": 3 }, { "Id": 805, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "CommandName": "Get-PnPTermLabel", - "Rank": 1, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" + "Rank": 1 }, { "Id": 806, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "CommandName": "Get-PnPTermLabel", - "Rank": 2, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" + "Rank": 2 }, { "Id": 807, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermLabel", - "Rank": 3, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 3 }, { "Id": 808, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermSet", - "Rank": 1, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" + "Rank": 1 }, { "Id": 809, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermSet", - "Rank": 2, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2 }, { "Id": 810, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "CommandName": "Get-PnPTermSet", - "Rank": 3, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" + "Rank": 3 }, { "Id": 811, + "Command": "Get-PnPTheme", "CommandName": "Get-PnPTheme", - "Rank": 1, - "Command": "Get-PnPTheme" + "Rank": 1 }, { "Id": 812, + "Command": "Get-PnPTheme -DetectCurrentComposedLook", "CommandName": "Get-PnPTheme", - "Rank": 2, - "Command": "Get-PnPTheme -DetectCurrentComposedLook" + "Rank": 2 }, { "Id": 813, + "Command": "Get-PnPTimeZoneId", "CommandName": "Get-PnPTimeZoneId", - "Rank": 1, - "Command": "Get-PnPTimeZoneId" + "Rank": 1 }, { "Id": 814, + "Command": "Get-PnPTimeZoneId -Match Stockholm", "CommandName": "Get-PnPTimeZoneId", - "Rank": 2, - "Command": "Get-PnPTimeZoneId -Match Stockholm" + "Rank": 2 }, { "Id": 815, + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "CommandName": "Get-PnPUnfurlLink", - "Rank": 1, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" + "Rank": 1 }, { "Id": 816, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "CommandName": "Get-PnPUnifiedAuditLog", - "Rank": 1, - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" + "Rank": 1 }, { "Id": 817, + "Command": "Get-PnPUPABulkImportStatus", "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 1, - "Command": "Get-PnPUPABulkImportStatus" + "Rank": 1 }, { "Id": 818, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 2, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" + "Rank": 2 }, { "Id": 819, + "Command": "Get-PnPUPABulkImportStatus -JobId ", "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 3, - "Command": "Get-PnPUPABulkImportStatus -JobId " + "Rank": 3 }, { "Id": 820, + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 4, - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" + "Rank": 4 }, { "Id": 821, + "Command": "Get-PnPUser", "CommandName": "Get-PnPUser", - "Rank": 1, - "Command": "Get-PnPUser" + "Rank": 1 }, { "Id": 822, + "Command": "Get-PnPUser -Identity 23", "CommandName": "Get-PnPUser", - "Rank": 2, - "Command": "Get-PnPUser -Identity 23" + "Rank": 2 }, { "Id": 823, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "CommandName": "Get-PnPUser", - "Rank": 3, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" + "Rank": 3 }, { "Id": 824, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "CommandName": "Get-PnPUser", - "Rank": 4, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" + "Rank": 4 }, { "Id": 825, + "Command": "Get-PnPUser -WithRightsAssigned", "CommandName": "Get-PnPUser", - "Rank": 5, - "Command": "Get-PnPUser -WithRightsAssigned" + "Rank": 5 }, { "Id": 826, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "CommandName": "Get-PnPUser", - "Rank": 6, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" + "Rank": 6 }, { "Id": 827, + "Command": "Get-PnPUser -WithRightsAssignedDetailed", "CommandName": "Get-PnPUser", - "Rank": 7, - "Command": "Get-PnPUser -WithRightsAssignedDetailed" + "Rank": 7 }, { "Id": 828, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "CommandName": "Get-PnPUserOneDriveQuota", - "Rank": 1, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" + "Rank": 1 }, { "Id": 829, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "CommandName": "Get-PnPUserProfileProperty", - "Rank": 1, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" + "Rank": 1 }, { "Id": 830, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "CommandName": "Get-PnPUserProfileProperty", - "Rank": 2, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" + "Rank": 2 }, { "Id": 831, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "CommandName": "Get-PnPUserProfileProperty", - "Rank": 3, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" + "Rank": 3 }, { "Id": 832, + "Command": "Get-PnPView -List \"Demo List\"", "CommandName": "Get-PnPView", - "Rank": 1, - "Command": "Get-PnPView -List \"Demo List\"" + "Rank": 1 }, { "Id": 833, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "CommandName": "Get-PnPView", - "Rank": 2, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" + "Rank": 2 }, { "Id": 834, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "CommandName": "Get-PnPView", - "Rank": 3, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" + "Rank": 3 }, { "Id": 835, + "Command": "Get-PnPVivaConnectionsDashboardACE", "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1, - "Command": "Get-PnPVivaConnectionsDashboardACE" + "Rank": 1 }, { "Id": 836, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 2, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Rank": 2 }, { "Id": 837, + "Command": "Get-PnPWeb", "CommandName": "Get-PnPWeb", - "Rank": 1, - "Command": "Get-PnPWeb" + "Rank": 1 }, { "Id": 838, + "Command": "Get-PnPWebHeader", "CommandName": "Get-PnPWebHeader", - "Rank": 1, - "Command": "Get-PnPWebHeader" + "Rank": 1 }, { "Id": 839, + "Command": "Get-PnPWebhookSubscriptions -List MyList", "CommandName": "Get-PnPWebhookSubscriptions", - "Rank": 1, - "Command": "Get-PnPWebhookSubscriptions -List MyList" + "Rank": 1 }, { "Id": 840, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "CommandName": "Get-PnPWebPart", - "Rank": 1, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" + "Rank": 1 }, { "Id": 841, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPWebPart", - "Rank": 2, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 2 }, { "Id": 842, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "CommandName": "Get-PnPWebPartProperty", - "Rank": 1, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" + "Rank": 1 }, { "Id": 843, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "CommandName": "Get-PnPWebPartProperty", - "Rank": 2, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" + "Rank": 2 }, { "Id": 844, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPWebPartXml", - "Rank": 1, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 1 }, { "Id": 845, + "Command": "Get-PnPWebTemplates", "CommandName": "Get-PnPWebTemplates", - "Rank": 1, - "Command": "Get-PnPWebTemplates" + "Rank": 1 }, { "Id": 846, + "Command": "Get-PnPWebTemplates -LCID 1033", "CommandName": "Get-PnPWebTemplates", - "Rank": 2, - "Command": "Get-PnPWebTemplates -LCID 1033" + "Rank": 2 }, { "Id": 847, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "CommandName": "Get-PnPWebTemplates", - "Rank": 3, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" + "Rank": 3 }, { "Id": 848, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "CommandName": "Get-PnPWikiPageContent", - "Rank": 1, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" + "Rank": 1 }, { "Id": 849, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "CommandName": "Grant-PnPAzureADAppSitePermission", - "Rank": 1, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" + "Rank": 1 }, { "Id": 850, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "CommandName": "Grant-PnPAzureADAppSitePermission", - "Rank": 2, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" + "Rank": 2 }, { "Id": 851, + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Grant-PnPHubSiteRights", - "Rank": 1, - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Rank": 1 }, { "Id": 852, + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Grant-PnPSiteDesignRights", - "Rank": 1, - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Rank": 1 }, { "Id": 853, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Rank": 1, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Rank": 1 }, { "Id": 854, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "CommandName": "Import-PnPTaxonomy", - "Rank": 1, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" + "Rank": 1 }, { "Id": 855, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "CommandName": "Import-PnPTaxonomy", - "Rank": 2, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" + "Rank": 2 }, { "Id": 856, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "CommandName": "Import-PnPTaxonomy", - "Rank": 3, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" + "Rank": 3 }, { "Id": 857, + "Command": "Import-PnPTermGroupFromXml -Xml $xml", "CommandName": "Import-PnPTermGroupFromXml", - "Rank": 1, - "Command": "Import-PnPTermGroupFromXml -Xml $xml" + "Rank": 1 }, { "Id": 858, + "Command": "Import-PnPTermGroupFromXml -Path input.xml", "CommandName": "Import-PnPTermGroupFromXml", - "Rank": 2, - "Command": "Import-PnPTermGroupFromXml -Path input.xml" + "Rank": 2 }, { "Id": 859, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "CommandName": "Import-PnPTermSet", - "Rank": 1, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" + "Rank": 1 }, { "Id": 860, + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", "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}'" + "Rank": 2 }, { "Id": 861, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", "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'" + "Rank": 3 }, { "Id": 862, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Install-PnPApp", - "Rank": 1, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1 }, { "Id": 863, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Install-PnPApp", - "Rank": 2, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2 }, { "Id": 864, + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "CommandName": "Invoke-PnPGraphMethod", - "Rank": 1, - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" + "Rank": 1 }, { "Id": 865, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "CommandName": "Invoke-PnPGraphMethod", - "Rank": 2, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" + "Rank": 2 }, { "Id": 866, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "CommandName": "Invoke-PnPGraphMethod", - "Rank": 3, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" + "Rank": 3 }, { "Id": 867, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "CommandName": "Invoke-PnPGraphMethod", - "Rank": 4, - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" + "Rank": 4 }, { "Id": 868, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "CommandName": "Invoke-PnPGraphMethod", - "Rank": 5, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" + "Rank": 5 }, { "Id": 869, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", "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" + "Rank": 6 }, { "Id": 870, + "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", - "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\"" + "Rank": 7 }, { "Id": 871, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Invoke-PnPListDesign", - "Rank": 1, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1 }, { "Id": 872, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "CommandName": "Invoke-PnPListDesign", - "Rank": 2, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "Rank": 2 }, { "Id": 873, + "Command": "Invoke-PnPQuery -RetryCount 5", "CommandName": "Invoke-PnPQuery", - "Rank": 1, - "Command": "Invoke-PnPQuery -RetryCount 5" + "Rank": 1 }, { "Id": 874, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Invoke-PnPSiteDesign", - "Rank": 1, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1 }, { "Id": 875, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "CommandName": "Invoke-PnPSiteDesign", - "Rank": 2, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "Rank": 2 }, { "Id": 876, + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "CommandName": "Invoke-PnPSiteScript", - "Rank": 1, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" + "Rank": 1 }, { "Id": 877, + "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", - "Rank": 1, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" + "Rank": 1 }, { "Id": 878, + "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", - "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" + "Rank": 2 }, { "Id": 879, + "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", - "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" + "Rank": 3 }, { "Id": 880, + "Command": "Invoke-PnPSiteTemplate -Path template.xml", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 1, - "Command": "Invoke-PnPSiteTemplate -Path template.xml" + "Rank": 1 }, { "Id": 881, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 2, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" + "Rank": 2 }, { "Id": 882, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 3, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "Rank": 3 }, { "Id": 883, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 4, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" + "Rank": 4 }, { "Id": 884, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 5, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp" + "Rank": 5 }, { "Id": 885, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 6, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" + "Rank": 6 }, { "Id": 886, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 7, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" + "Rank": 7 }, { "Id": 887, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 8, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" + "Rank": 8 }, { "Id": 888, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "CommandName": "Invoke-PnPSPRestMethod", - "Rank": 1, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web" + "Rank": 1 }, { "Id": 889, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 1, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" + "Rank": 1 }, { "Id": 890, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 2, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" + "Rank": 2 }, { "Id": 891, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 3, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "Rank": 3 }, { "Id": 892, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "CommandName": "Invoke-PnPWebAction", - "Rank": 1, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" + "Rank": 1 }, { "Id": 893, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "CommandName": "Invoke-PnPWebAction", - "Rank": 2, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" + "Rank": 2 }, { "Id": 894, + "Command": "Measure-PnPList \"Documents\"", "CommandName": "Measure-PnPList", - "Rank": 1, - "Command": "Measure-PnPList \"Documents\"" + "Rank": 1 }, { "Id": 895, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "CommandName": "Measure-PnPList", - "Rank": 2, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" + "Rank": 2 }, { "Id": 896, + "Command": "Measure-PnPWeb", "CommandName": "Measure-PnPWeb", - "Rank": 1, - "Command": "Measure-PnPWeb" + "Rank": 1 }, { "Id": 897, + "Command": "Measure-PnPWeb $web -Recursive", "CommandName": "Measure-PnPWeb", - "Rank": 2, - "Command": "Measure-PnPWeb $web -Recursive" + "Rank": 2 }, { "Id": 898, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "CommandName": "Move-PnPFile", - "Rank": 1, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" + "Rank": 1 }, { "Id": 899, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "CommandName": "Move-PnPFile", - "Rank": 2, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" + "Rank": 2 }, { "Id": 900, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "CommandName": "Move-PnPFile", - "Rank": 3, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "Rank": 3 }, { "Id": 901, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "CommandName": "Move-PnPFile", - "Rank": 4, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "Rank": 4 }, { "Id": 902, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "CommandName": "Move-PnPFolder", - "Rank": 1, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" + "Rank": 1 }, { "Id": 903, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "CommandName": "Move-PnPFolder", - "Rank": 2, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" + "Rank": 2 }, { "Id": 904, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "CommandName": "Move-PnPListItemToRecycleBin", - "Rank": 1, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" + "Rank": 1 }, { "Id": 905, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "CommandName": "Move-PnPPageComponent", - "Rank": 1, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" + "Rank": 1 }, { "Id": 906, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "CommandName": "Move-PnPPageComponent", - "Rank": 2, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" + "Rank": 2 }, { "Id": 907, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "CommandName": "Move-PnPPageComponent", - "Rank": 3, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" + "Rank": 3 }, { "Id": 908, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "CommandName": "Move-PnPPageComponent", - "Rank": 4, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" + "Rank": 4 }, { "Id": 909, + "Command": "Move-PnPRecycleBinItem", "CommandName": "Move-PnpRecycleBinItem", - "Rank": 1, - "Command": "Move-PnPRecycleBinItem" + "Rank": 1 }, { "Id": 910, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "CommandName": "Move-PnpRecycleBinItem", - "Rank": 2, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" + "Rank": 2 }, { "Id": 911, + "Command": "Move-PnPRecycleBinItem -Force", "CommandName": "Move-PnpRecycleBinItem", - "Rank": 3, - "Command": "Move-PnPRecycleBinItem -Force" + "Rank": 3 }, { "Id": 912, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", "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" + "Rank": 1 }, { "Id": 913, + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "CommandName": "Move-PnPTerm", - "Rank": 2, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" + "Rank": 2 }, { "Id": 914, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "CommandName": "Move-PnPTerm", - "Rank": 3, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" + "Rank": 3 }, { "Id": 915, + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", "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" + "Rank": 1 }, { "Id": 916, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "CommandName": "Move-PnPTermSet", - "Rank": 2, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" + "Rank": 2 }, { "Id": 917, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "CommandName": "New-PnPAzureADGroup", - "Rank": 1, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" + "Rank": 1 }, { "Id": 918, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "CommandName": "New-PnPAzureADGroup", - "Rank": 2, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" + "Rank": 2 }, { "Id": 919, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "CommandName": "New-PnPAzureADGroup", - "Rank": 3, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" + "Rank": 3 }, { "Id": 920, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 1, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" + "Rank": 1 }, { "Id": 921, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 2, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" + "Rank": 2 }, { "Id": 922, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 3, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" + "Rank": 3 }, { "Id": 923, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "CommandName": "New-PnPAzureCertificate", - "Rank": 1, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" + "Rank": 1 }, { "Id": 924, + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "CommandName": "New-PnPAzureCertificate", - "Rank": 2, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" + "Rank": 2 }, { "Id": 925, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "CommandName": "New-PnPAzureCertificate", - "Rank": 3, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" + "Rank": 3 }, { "Id": 926, + "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", - "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()" + "Rank": 1 }, { "Id": 927, + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", "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()" + "Rank": 2 }, { "Id": 928, + "Command": "New-PnPGroup -Title \"My Site Users\"", "CommandName": "New-PnPGroup", - "Rank": 1, - "Command": "New-PnPGroup -Title \"My Site Users\"" + "Rank": 1 }, { "Id": 929, + "Command": "New-PnPList -Title Announcements -Template Announcements", "CommandName": "New-PnPList", - "Rank": 1, - "Command": "New-PnPList -Title Announcements -Template Announcements" + "Rank": 1 }, { "Id": 930, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "CommandName": "New-PnPList", - "Rank": 2, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" + "Rank": 2 }, { "Id": 931, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "CommandName": "New-PnPList", - "Rank": 3, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" + "Rank": 3 }, { "Id": 932, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "CommandName": "New-PnPMicrosoft365Group", - "Rank": 1, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" + "Rank": 1 }, { "Id": 933, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "CommandName": "New-PnPMicrosoft365Group", - "Rank": 2, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" + "Rank": 2 }, { "Id": 934, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "CommandName": "New-PnPMicrosoft365Group", - "Rank": 3, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" + "Rank": 3 }, { "Id": 935, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "CommandName": "New-PnPMicrosoft365Group", - "Rank": 4, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" + "Rank": 4 }, { "Id": 936, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "CommandName": "New-PnPMicrosoft365Group", - "Rank": 5, - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "Rank": 5 }, { "Id": 937, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "CommandName": "New-PnPMicrosoft365Group", - "Rank": 6, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "Rank": 6 }, { "Id": 938, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "CommandName": "New-PnPMicrosoft365Group", - "Rank": 7, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" + "Rank": 7 }, { "Id": 939, + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", "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\"}" + "Rank": 1 }, { "Id": 940, + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "CommandName": "New-PnPMicrosoft365GroupSettings", - "Rank": 2, - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" + "Rank": 2 }, { "Id": 941, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "CommandName": "New-PnPPersonalSite", - "Rank": 1, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" + "Rank": 1 }, { "Id": 942, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "CommandName": "New-PnPPlannerPlan", - "Rank": 1, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" + "Rank": 1 }, { "Id": 943, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "CommandName": "New-PnPSdnProvider", - "Rank": 1, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" + "Rank": 1 }, { "Id": 944, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "CommandName": "New-PnPSite", - "Rank": 1, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" + "Rank": 1 }, { "Id": 945, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "CommandName": "New-PnPSite", - "Rank": 2, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" + "Rank": 2 }, { "Id": 946, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "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" + "Rank": 3 }, { "Id": 947, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "CommandName": "New-PnPSite", - "Rank": 4, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" + "Rank": 4 }, { "Id": 948, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "CommandName": "New-PnPSite", - "Rank": 5, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" + "Rank": 5 }, { "Id": 949, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Rank": 6, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" + "Rank": 6 }, { "Id": 950, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "CommandName": "New-PnPSite", - "Rank": 7, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" + "Rank": 7 }, { "Id": 951, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "CommandName": "New-PnPSite", - "Rank": 8, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" + "Rank": 8 }, { "Id": 952, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Rank": 9, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" + "Rank": 9 }, { "Id": 953, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "CommandName": "New-PnPSite", - "Rank": 10, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" + "Rank": 10 }, { "Id": 954, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "CommandName": "New-PnPSite", - "Rank": 11, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" + "Rank": 11 }, { "Id": 955, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "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" + "Rank": 12 }, { "Id": 956, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "CommandName": "New-PnPSite", - "Rank": 13, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" + "Rank": 13 }, { "Id": 957, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "CommandName": "New-PnPSite", - "Rank": 14, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" + "Rank": 14 }, { "Id": 958, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Rank": 15, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" + "Rank": 15 }, { "Id": 959, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "CommandName": "New-PnPSite", - "Rank": 16, - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" + "Rank": 16 }, { "Id": 960, + "Command": "New-PnPSiteCollectionTermStore", "CommandName": "New-PnPSiteCollectionTermStore", - "Rank": 1, - "Command": "New-PnPSiteCollectionTermStore" + "Rank": 1 }, { "Id": 961, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "CommandName": "New-PnPSiteGroup", - "Rank": 1, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" + "Rank": 1 }, { "Id": 962, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "CommandName": "New-PnPSiteGroup", - "Rank": 2, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" + "Rank": 2 }, { "Id": 963, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 1, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" + "Rank": 1 }, { "Id": 964, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 2, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" + "Rank": 2 }, { "Id": 965, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 3, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" + "Rank": 3 }, { "Id": 966, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 4, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" + "Rank": 4 }, { "Id": 967, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 5, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" + "Rank": 5 }, { "Id": 968, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "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\"}" + "Rank": 6 }, { "Id": 969, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 7, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" + "Rank": 7 }, { "Id": 970, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 8, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" + "Rank": 8 }, { "Id": 971, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "CommandName": "New-PnPTeamsApp", - "Rank": 1, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" + "Rank": 1 }, { "Id": 972, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "CommandName": "New-PnPTeamsTeam", - "Rank": 1, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" + "Rank": 1 }, { "Id": 973, + "Command": "New-PnPTeamsTeam -GroupId $groupId", "CommandName": "New-PnPTeamsTeam", - "Rank": 2, - "Command": "New-PnPTeamsTeam -GroupId $groupId" + "Rank": 2 }, { "Id": 974, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "CommandName": "New-PnPTeamsTeam", - "Rank": 3, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" + "Rank": 3 }, { "Id": 975, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "CommandName": "New-PnPTeamsTeam", - "Rank": 4, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "Rank": 4 }, { "Id": 976, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", "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\"" + "Rank": 5 }, { "Id": 977, + "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", - "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\"" + "Rank": 6 }, { "Id": 978, + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", "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" + "Rank": 1 }, { "Id": 979, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "CommandName": "New-PnPTenantSite", - "Rank": 2, - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" + "Rank": 2 }, { "Id": 980, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "CommandName": "New-PnPTerm", - "Rank": 1, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" + "Rank": 1 }, { "Id": 981, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "New-PnPTerm", - "Rank": 2, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Rank": 2 }, { "Id": 982, + "Command": "New-PnPTermGroup -GroupName \"Countries\"", "CommandName": "New-PnPTermGroup", - "Rank": 1, - "Command": "New-PnPTermGroup -GroupName \"Countries\"" + "Rank": 1 }, { "Id": 983, + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "CommandName": "New-PnPTermLabel", - "Rank": 1, - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" + "Rank": 1 }, { "Id": 984, + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "CommandName": "New-PnPTermSet", - "Rank": 1, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" + "Rank": 1 }, { "Id": 985, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "CommandName": "New-PnPUPABulkImportJob", - "Rank": 1, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" + "Rank": 1 }, { "Id": 986, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", "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" + "Rank": 2 }, { "Id": 987, + "Command": "New-PnPUser -LoginName user@company.com", "CommandName": "New-PnPUser", - "Rank": 1, - "Command": "New-PnPUser -LoginName user@company.com" + "Rank": 1 }, { "Id": 988, + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "CommandName": "New-PnPWeb", - "Rank": 1, - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" + "Rank": 1 }, { "Id": 989, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Publish-PnPApp", - "Rank": 1, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Rank": 1 }, { "Id": 990, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "CommandName": "Publish-PnPApp", - "Rank": 2, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" + "Rank": 2 }, { "Id": 991, + "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", - "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" + "Rank": 1 }, { "Id": 992, + "Command": "Publish-PnPContentType -ContentType 0x0101", "CommandName": "Publish-PnPContentType", - "Rank": 1, - "Command": "Publish-PnPContentType -ContentType 0x0101" + "Rank": 1 }, { "Id": 993, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "CommandName": "Publish-PnPSyntexModel", - "Rank": 1, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "Rank": 1 }, { "Id": 994, + "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", - "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" + "Rank": 2 }, { "Id": 995, + "Command": "Read-PnPSiteTemplate -Path template.pnp", "CommandName": "Read-PnPSiteTemplate", - "Rank": 1, - "Command": "Read-PnPSiteTemplate -Path template.pnp" + "Rank": 1 }, { "Id": 996, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "CommandName": "Read-PnPSiteTemplate", - "Rank": 2, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" + "Rank": 2 }, { "Id": 997, + "Command": "Read-PnPSiteTemplate -Xml $xml", "CommandName": "Read-PnPSiteTemplate", - "Rank": 3, - "Command": "Read-PnPSiteTemplate -Xml $xml" + "Rank": 3 }, { "Id": 998, + "Command": "Read-PnPTenantTemplate -Path template.pnp", "CommandName": "Read-PnPTenantTemplate", - "Rank": 1, - "Command": "Read-PnPTenantTemplate -Path template.pnp" + "Rank": 1 }, { "Id": 999, + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "CommandName": "Register-PnPAppCatalogSite", - "Rank": 1, - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" + "Rank": 1 }, { "Id": 1000, + "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", - "Rank": 1, - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" + "Rank": 1 }, { "Id": 1001, + "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", - "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\")" + "Rank": 2 }, { "Id": 1002, + "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", - "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\")" + "Rank": 3 }, { "Id": 1003, + "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", - "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\")" + "Rank": 4 }, { "Id": 1004, + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "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)" + "Rank": 5 }, { "Id": 1005, + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "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)" + "Rank": 6 }, { "Id": 1006, + "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", - "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" + "Rank": 7 }, { "Id": 1007, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "CommandName": "Register-PnPHubSite", - "Rank": 1, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Rank": 1 }, { "Id": 1008, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "CommandName": "Register-PnPHubSite", - "Rank": 2, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" + "Rank": 2 }, { "Id": 1009, + "Command": "Register-PnPManagementShellAccess", "CommandName": "Register-PnPManagementShellAccess", - "Rank": 1, - "Command": "Register-PnPManagementShellAccess" + "Rank": 1 }, { "Id": 1010, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "CommandName": "Register-PnPManagementShellAccess", - "Rank": 2, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" + "Rank": 2 }, { "Id": 1011, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "CommandName": "Register-PnPManagementShellAccess", - "Rank": 3, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" + "Rank": 3 }, { "Id": 1012, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Rank": 1, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" + "Rank": 1 }, { "Id": 1013, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Rank": 2, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" + "Rank": 2 }, { "Id": 1014, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "CommandName": "Remove-PnPAlert", - "Rank": 1, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" + "Rank": 1 }, { "Id": 1015, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAlert", - "Rank": 2, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Rank": 2 }, { "Id": 1016, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Remove-PnPApp", - "Rank": 1, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1 }, { "Id": 1017, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Remove-PnPApp", - "Rank": 2, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2 }, { "Id": 1018, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Remove-PnPApplicationCustomizer", - "Rank": 1, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 1 }, { "Id": 1019, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "CommandName": "Remove-PnPApplicationCustomizer", - "Rank": 2, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Rank": 2 }, { "Id": 1020, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "CommandName": "Remove-PnPAvailableSiteClassification", - "Rank": 1, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" + "Rank": 1 }, { "Id": 1021, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "CommandName": "Remove-PnPAvailableSiteClassification", - "Rank": 2, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Rank": 2 }, { "Id": 1022, + "Command": "Remove-PnPAzureADApp -Identity MyApp", "CommandName": "Remove-PnPAzureADApp", - "Rank": 1, - "Command": "Remove-PnPAzureADApp -Identity MyApp" + "Rank": 1 }, { "Id": 1023, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Remove-PnPAzureADApp", - "Rank": 2, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Rank": 2 }, { "Id": 1024, + "Command": "Remove-PnPAzureADGroup -Identity $groupId", "CommandName": "Remove-PnPAzureADGroup", - "Rank": 1, - "Command": "Remove-PnPAzureADGroup -Identity $groupId" + "Rank": 1 }, { "Id": 1025, + "Command": "Remove-PnPAzureADGroup -Identity $group", "CommandName": "Remove-PnPAzureADGroup", - "Rank": 2, - "Command": "Remove-PnPAzureADGroup -Identity $group" + "Rank": 2 }, { "Id": 1026, + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAzureADGroupMember", - "Rank": 1, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 1027, + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAzureADGroupOwner", - "Rank": 1, - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 1028, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 1, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" + "Rank": 1 }, { "Id": 1029, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 2, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" + "Rank": 2 }, { "Id": 1030, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 3, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Rank": 3 }, { "Id": 1031, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 4, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Rank": 4 }, { "Id": 1032, + "Command": "Remove-PnPContentType -Identity \"Project Document\"", "CommandName": "Remove-PnPContentType", - "Rank": 1, - "Command": "Remove-PnPContentType -Identity \"Project Document\"" + "Rank": 1 }, { "Id": 1033, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "CommandName": "Remove-PnPContentType", - "Rank": 2, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" + "Rank": 2 }, { "Id": 1034, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Rank": 1, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Rank": 1 }, { "Id": 1035, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Rank": 2, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Rank": 2 }, { "Id": 1036, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "CommandName": "Remove-PnPContentTypeFromList", - "Rank": 1, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" + "Rank": 1 }, { "Id": 1037, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Remove-PnPCustomAction", - "Rank": 1, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 1 }, { "Id": 1038, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "CommandName": "Remove-PnPCustomAction", - "Rank": 2, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Rank": 2 }, { "Id": 1039, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "CommandName": "Remove-PnPCustomAction", - "Rank": 3, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" + "Rank": 3 }, { "Id": 1040, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Rank": 1, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Rank": 1 }, { "Id": 1041, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Remove-PnPEventReceiver", - "Rank": 1, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 1 }, { "Id": 1042, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Remove-PnPEventReceiver", - "Rank": 2, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 2 }, { "Id": 1043, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "CommandName": "Remove-PnPEventReceiver", - "Rank": 3, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" + "Rank": 3 }, { "Id": 1044, + "Command": "Remove-PnPEventReceiver -List ProjectList", "CommandName": "Remove-PnPEventReceiver", - "Rank": 4, - "Command": "Remove-PnPEventReceiver -List ProjectList" + "Rank": 4 }, { "Id": 1045, + "Command": "Remove-PnPEventReceiver", "CommandName": "Remove-PnPEventReceiver", - "Rank": 5, - "Command": "Remove-PnPEventReceiver" + "Rank": 5 }, { "Id": 1046, + "Command": "Remove-PnPEventReceiver -Scope Site", "CommandName": "Remove-PnPEventReceiver", - "Rank": 6, - "Command": "Remove-PnPEventReceiver -Scope Site" + "Rank": 6 }, { "Id": 1047, + "Command": "Remove-PnPEventReceiver -Scope Web", "CommandName": "Remove-PnPEventReceiver", - "Rank": 7, - "Command": "Remove-PnPEventReceiver -Scope Web" + "Rank": 7 }, { "Id": 1048, + "Command": "Remove-PnPEventReceiver -Scope All", "CommandName": "Remove-PnPEventReceiver", - "Rank": 8, - "Command": "Remove-PnPEventReceiver -Scope All" + "Rank": 8 }, { "Id": 1049, + "Command": "Remove-PnPField -Identity \"Speakers\"", "CommandName": "Remove-PnPField", - "Rank": 1, - "Command": "Remove-PnPField -Identity \"Speakers\"" + "Rank": 1 }, { "Id": 1050, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "CommandName": "Remove-PnPField", - "Rank": 2, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Rank": 2 }, { "Id": 1051, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "CommandName": "Remove-PnPFieldFromContentType", - "Rank": 1, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Rank": 1 }, { "Id": 1052, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "CommandName": "Remove-PnPFieldFromContentType", - "Rank": 2, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" + "Rank": 2 }, { "Id": 1053, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "CommandName": "Remove-PnPFile", - "Rank": 1, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" + "Rank": 1 }, { "Id": 1054, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "CommandName": "Remove-PnPFile", - "Rank": 2, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" + "Rank": 2 }, { "Id": 1055, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "CommandName": "Remove-PnPFile", - "Rank": 3, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" + "Rank": 3 }, { "Id": 1056, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "CommandName": "Remove-PnPFileFromSiteTemplate", - "Rank": 1, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" + "Rank": 1 }, { "Id": 1057, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Remove-PnPFileSharingLink", - "Rank": 1, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Rank": 1 }, { "Id": 1058, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "CommandName": "Remove-PnPFileSharingLink", - "Rank": 2, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" + "Rank": 2 }, { "Id": 1059, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "CommandName": "Remove-PnPFileVersion", - "Rank": 1, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Rank": 1 }, { "Id": 1060, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "CommandName": "Remove-PnPFileVersion", - "Rank": 2, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Rank": 2 }, { "Id": 1061, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "CommandName": "Remove-PnPFileVersion", - "Rank": 3, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" + "Rank": 3 }, { "Id": 1062, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "CommandName": "Remove-PnPFlowOwner", - "Rank": 1, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" + "Rank": 1 }, { "Id": 1063, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "CommandName": "Remove-PnPFlowOwner", - "Rank": 2, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" + "Rank": 2 }, { "Id": 1064, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "CommandName": "Remove-PnPFlowOwner", - "Rank": 3, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" + "Rank": 3 }, { "Id": 1065, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "CommandName": "Remove-PnPFlowOwner", - "Rank": 4, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" + "Rank": 4 }, { "Id": 1066, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "CommandName": "Remove-PnPFolder", - "Rank": 1, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Rank": 1 }, { "Id": 1067, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "CommandName": "Remove-PnPFolder", - "Rank": 2, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" + "Rank": 2 }, { "Id": 1068, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Remove-PnPFolderSharingLink", - "Rank": 1, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Rank": 1 }, { "Id": 1069, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "CommandName": "Remove-PnPFolderSharingLink", - "Rank": 2, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" + "Rank": 2 }, { "Id": 1070, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "CommandName": "Remove-PnPGraphSubscription", - "Rank": 1, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" + "Rank": 1 }, { "Id": 1071, + "Command": "Remove-PnPGroup -Identity \"My Users\"", "CommandName": "Remove-PnPGroup", - "Rank": 1, - "Command": "Remove-PnPGroup -Identity \"My Users\"" + "Rank": 1 }, { "Id": 1072, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "CommandName": "Remove-PnPGroupMember", - "Rank": 1, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Rank": 1 }, { "Id": 1073, + "Command": "Remove-PnPHomeSite", "CommandName": "Remove-PnPHomeSite", - "Rank": 1, - "Command": "Remove-PnPHomeSite" + "Rank": 1 }, { "Id": 1074, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "CommandName": "Remove-PnPHubSiteAssociation", - "Rank": 1, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" + "Rank": 1 }, { "Id": 1075, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "CommandName": "Remove-PnPHubToHubAssociation", - "Rank": 1, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" + "Rank": 1 }, { "Id": 1076, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "CommandName": "Remove-PnPHubToHubAssociation", - "Rank": 2, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" + "Rank": 2 }, { "Id": 1077, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "CommandName": "Remove-PnPIndexedProperty", - "Rank": 1, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" + "Rank": 1 }, { "Id": 1078, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 1, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery" + "Rank": 1 }, { "Id": 1079, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 2, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" + "Rank": 2 }, { "Id": 1080, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 3, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" + "Rank": 3 }, { "Id": 1081, + "Command": "Remove-PnPJavaScriptLink -Scope Site", "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 4, - "Command": "Remove-PnPJavaScriptLink -Scope Site" + "Rank": 4 }, { "Id": 1082, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 5, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" + "Rank": 5 }, { "Id": 1083, + "Command": "Remove-PnPKnowledgeHubSite", "CommandName": "Remove-PnPKnowledgeHubSite", - "Rank": 1, - "Command": "Remove-PnPKnowledgeHubSite" + "Rank": 1 }, { "Id": 1084, + "Command": "Remove-PnPList -Identity Announcements", "CommandName": "Remove-PnPList", - "Rank": 1, - "Command": "Remove-PnPList -Identity Announcements" + "Rank": 1 }, { "Id": 1085, + "Command": "Remove-PnPList -Identity Announcements -Force", "CommandName": "Remove-PnPList", - "Rank": 2, - "Command": "Remove-PnPList -Identity Announcements -Force" + "Rank": 2 }, { "Id": 1086, + "Command": "Remove-PnPList -Identity Announcements -Recycle", "CommandName": "Remove-PnPList", - "Rank": 3, - "Command": "Remove-PnPList -Identity Announcements -Recycle" + "Rank": 3 }, { "Id": 1087, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "CommandName": "Remove-PnPList", - "Rank": 4, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" + "Rank": 4 }, { "Id": 1088, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPListDesign", - "Rank": 1, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1 }, { "Id": 1089, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "CommandName": "Remove-PnPListItem", - "Rank": 1, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" + "Rank": 1 }, { "Id": 1090, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "CommandName": "Remove-PnPListItem", - "Rank": 2, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" + "Rank": 2 }, { "Id": 1091, + "Command": "Remove-PnPListItem -List \"Demo List\"", "CommandName": "Remove-PnPListItem", - "Rank": 3, - "Command": "Remove-PnPListItem -List \"Demo List\"" + "Rank": 3 }, { "Id": 1092, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "CommandName": "Remove-PnPListItemAttachment", - "Rank": 1, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" + "Rank": 1 }, { "Id": 1093, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "CommandName": "Remove-PnPListItemAttachment", - "Rank": 2, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" + "Rank": 2 }, { "Id": 1094, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "CommandName": "Remove-PnPListItemAttachment", - "Rank": 3, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" + "Rank": 3 }, { "Id": 1095, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "CommandName": "Remove-PnPListItemAttachment", - "Rank": 4, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" + "Rank": 4 }, { "Id": 1096, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "CommandName": "Remove-PnPListItemAttachment", - "Rank": 5, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" + "Rank": 5 }, { "Id": 1097, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "CommandName": "Remove-PnPListItemVersion", - "Rank": 1, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Rank": 1 }, { "Id": 1098, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "CommandName": "Remove-PnPListItemVersion", - "Rank": 2, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Rank": 2 }, { "Id": 1099, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "CommandName": "Remove-PnPMicrosoft365Group", - "Rank": 1, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" + "Rank": 1 }, { "Id": 1100, + "Command": "Remove-PnPMicrosoft365Group -Identity $group", "CommandName": "Remove-PnPMicrosoft365Group", - "Rank": 2, - "Command": "Remove-PnPMicrosoft365Group -Identity $group" + "Rank": 2 }, { "Id": 1101, + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 1102, + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 1103, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" + "Rank": 1 }, { "Id": 1104, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Rank": 2, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" + "Rank": 2 }, { "Id": 1105, + "Command": "Remove-PnPNavigationNode -Identity 1032", "CommandName": "Remove-PnPNavigationNode", - "Rank": 1, - "Command": "Remove-PnPNavigationNode -Identity 1032" + "Rank": 1 }, { "Id": 1106, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "CommandName": "Remove-PnPNavigationNode", - "Rank": 2, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" + "Rank": 2 }, { "Id": 1107, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "CommandName": "Remove-PnPNavigationNode", - "Rank": 3, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" + "Rank": 3 }, { "Id": 1108, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 1, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" + "Rank": 1 }, { "Id": 1109, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 2, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" + "Rank": 2 }, { "Id": 1110, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 3, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" + "Rank": 3 }, { "Id": 1111, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "CommandName": "Remove-PnPOrgNewsSite", - "Rank": 1, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" + "Rank": 1 }, { "Id": 1112, + "Command": "Remove-PnPPage -Identity \"MyPage\"", "CommandName": "Remove-PnPPage", - "Rank": 1, - "Command": "Remove-PnPPage -Identity \"MyPage\"" + "Rank": 1 }, { "Id": 1113, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "CommandName": "Remove-PnPPage", - "Rank": 2, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" + "Rank": 2 }, { "Id": 1114, + "Command": "Remove-PnPPage $page", "CommandName": "Remove-PnPPage", - "Rank": 3, - "Command": "Remove-PnPPage $page" + "Rank": 3 }, { "Id": 1115, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "CommandName": "Remove-PnPPage", - "Rank": 4, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" + "Rank": 4 }, { "Id": 1116, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Remove-PnPPageComponent", - "Rank": 1, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 1 }, { "Id": 1117, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "CommandName": "Remove-PnPPlannerBucket", - "Rank": 1, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" + "Rank": 1 }, { "Id": 1118, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "CommandName": "Remove-PnPPlannerPlan", - "Rank": 1, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" + "Rank": 1 }, { "Id": 1119, + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "CommandName": "Remove-PnPPlannerRoster", - "Rank": 1, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Rank": 1 }, { "Id": 1120, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPPlannerRosterMember", - "Rank": 1, - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 1121, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "CommandName": "Remove-PnPPlannerTask", - "Rank": 1, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" + "Rank": 1 }, { "Id": 1122, + "Command": "Remove-PnPPropertyBagValue -Key MyKey", "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 1, - "Command": "Remove-PnPPropertyBagValue -Key MyKey" + "Rank": 1 }, { "Id": 1123, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 2, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" + "Rank": 2 }, { "Id": 1124, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 3, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" + "Rank": 3 }, { "Id": 1125, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "CommandName": "Remove-PnPPublishingImageRendition", - "Rank": 1, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Rank": 1 }, { "Id": 1126, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "CommandName": "Remove-PnPRoleDefinition", - "Rank": 1, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" + "Rank": 1 }, { "Id": 1127, + "Command": "Remove-PnPSdnProvider -Confirm:false", "CommandName": "Remove-PnPSdnProvider", - "Rank": 1, - "Command": "Remove-PnPSdnProvider -Confirm:false" + "Rank": 1 }, { "Id": 1128, + "Command": "Remove-PnPSearchConfiguration -Configuration $config", "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 1, - "Command": "Remove-PnPSearchConfiguration -Configuration $config" + "Rank": 1 }, { "Id": 1129, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 2, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" + "Rank": 2 }, { "Id": 1130, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 3, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Rank": 3 }, { "Id": 1131, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 4, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Rank": 4 }, { "Id": 1132, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPSiteCollectionAdmin", - "Rank": 1, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 1133, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Remove-PnPSiteCollectionAdmin", - "Rank": 2, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Rank": 2 }, { "Id": 1134, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Rank": 1, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Rank": 1 }, { "Id": 1135, + "Command": "Remove-PnPSiteCollectionTermStore", "CommandName": "Remove-PnPSiteCollectionTermStore", - "Rank": 1, - "Command": "Remove-PnPSiteCollectionTermStore" + "Rank": 1 }, { "Id": 1136, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteDesign", - "Rank": 1, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1 }, { "Id": 1137, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteDesignTask", - "Rank": 1, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1 }, { "Id": 1138, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Remove-PnPSiteGroup", - "Rank": 1, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" + "Rank": 1 }, { "Id": 1139, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "CommandName": "Remove-PnPSiteGroup", - "Rank": 2, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" + "Rank": 2 }, { "Id": 1140, + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteScript", - "Rank": 1, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1 }, { "Id": 1141, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "CommandName": "Remove-PnPSiteUserInvitations", - "Rank": 1, - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "Rank": 1 }, { "Id": 1142, + "Command": "Remove-PnPStorageEntity -Key MyKey", "CommandName": "Remove-PnPStorageEntity", - "Rank": 1, - "Command": "Remove-PnPStorageEntity -Key MyKey" + "Rank": 1 }, { "Id": 1143, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "CommandName": "Remove-PnPStorageEntity", - "Rank": 2, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" + "Rank": 2 }, { "Id": 1144, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "CommandName": "Remove-PnPStoredCredential", - "Rank": 1, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" + "Rank": 1 }, { "Id": 1145, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "CommandName": "Remove-PnPTaxonomyItem", - "Rank": 1, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" + "Rank": 1 }, { "Id": 1146, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "CommandName": "Remove-PnPTaxonomyItem", - "Rank": 2, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" + "Rank": 2 }, { "Id": 1147, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "CommandName": "Remove-PnPTeamsApp", - "Rank": 1, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" + "Rank": 1 }, { "Id": 1148, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "CommandName": "Remove-PnPTeamsApp", - "Rank": 2, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" + "Rank": 2 }, { "Id": 1149, + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "CommandName": "Remove-PnPTeamsChannel", - "Rank": 1, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" + "Rank": 1 }, { "Id": 1150, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 1, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" + "Rank": 1 }, { "Id": 1151, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 2, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "Rank": 2 }, { "Id": 1152, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 3, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" + "Rank": 3 }, { "Id": 1153, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "CommandName": "Remove-PnPTeamsTab", - "Rank": 1, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" + "Rank": 1 }, { "Id": 1154, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "CommandName": "Remove-PnPTeamsTab", - "Rank": 2, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" + "Rank": 2 }, { "Id": 1155, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", "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" + "Rank": 3 }, { "Id": 1156, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "CommandName": "Remove-PnPTeamsTag", - "Rank": 1, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Rank": 1 }, { "Id": 1157, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "CommandName": "Remove-PnPTeamsTeam", - "Rank": 1, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Rank": 1 }, { "Id": 1158, + "Command": "Remove-PnPTeamsTeam -Identity testteam", "CommandName": "Remove-PnPTeamsTeam", - "Rank": 2, - "Command": "Remove-PnPTeamsTeam -Identity testteam" + "Rank": 2 }, { "Id": 1159, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "CommandName": "Remove-PnPTeamsUser", - "Rank": 1, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" + "Rank": 1 }, { "Id": 1160, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Remove-PnPTeamsUser", - "Rank": 2, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Rank": 2 }, { "Id": 1161, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "CommandName": "Remove-PnPTenantCdnOrigin", - "Rank": 1, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Rank": 1 }, { "Id": 1162, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Remove-PnPTenantDeletedSite", - "Rank": 1, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1 }, { "Id": 1163, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "CommandName": "Remove-PnPTenantDeletedSite", - "Rank": 2, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Rank": 2 }, { "Id": 1164, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Remove-PnPTenantSite", - "Rank": 1, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1 }, { "Id": 1165, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "CommandName": "Remove-PnPTenantSite", - "Rank": 2, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" + "Rank": 2 }, { "Id": 1166, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "CommandName": "Remove-PnPTenantSite", - "Rank": 3, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" + "Rank": 3 }, { "Id": 1167, + "Command": "Remove-PnPTenantSyncClientRestriction", "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1, - "Command": "Remove-PnPTenantSyncClientRestriction" + "Rank": 1 }, { "Id": 1168, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "CommandName": "Remove-PnPTenantTheme", - "Rank": 1, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Rank": 1 }, { "Id": 1169, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "CommandName": "Remove-PnPTerm", - "Rank": 1, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Rank": 1 }, { "Id": 1170, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Remove-PnPTerm", - "Rank": 2, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2 }, { "Id": 1171, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "CommandName": "Remove-PnPTermGroup", - "Rank": 1, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Rank": 1 }, { "Id": 1172, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "CommandName": "Remove-PnPTermGroup", - "Rank": 2, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" + "Rank": 2 }, { "Id": 1173, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "CommandName": "Remove-PnPTermGroup", - "Rank": 3, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" + "Rank": 3 }, { "Id": 1174, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "CommandName": "Remove-PnPTermLabel", - "Rank": 1, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" + "Rank": 1 }, { "Id": 1175, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Remove-PnPTermLabel", - "Rank": 2, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2 }, { "Id": 1176, + "Command": "Remove-PnPUser -Identity 23", "CommandName": "Remove-PnPUser", - "Rank": 1, - "Command": "Remove-PnPUser -Identity 23" + "Rank": 1 }, { "Id": 1177, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "CommandName": "Remove-PnPUser", - "Rank": 2, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" + "Rank": 2 }, { "Id": 1178, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "CommandName": "Remove-PnPUser", - "Rank": 3, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" + "Rank": 3 }, { "Id": 1179, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "CommandName": "Remove-PnPUserInfo", - "Rank": 1, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" + "Rank": 1 }, { "Id": 1180, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "CommandName": "Remove-PnPUserProfile", - "Rank": 1, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com" + "Rank": 1 }, { "Id": 1181, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "CommandName": "Remove-PnPView", - "Rank": 1, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" + "Rank": 1 }, { "Id": 1182, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Rank": 1, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Rank": 1 }, { "Id": 1183, + "Command": "Remove-PnPWeb -Identity projectA", "CommandName": "Remove-PnPWeb", - "Rank": 1, - "Command": "Remove-PnPWeb -Identity projectA" + "Rank": 1 }, { "Id": 1184, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "CommandName": "Remove-PnPWeb", - "Rank": 2, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" + "Rank": 2 }, { "Id": 1185, + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "CommandName": "Remove-PnPWebhookSubscription", - "Rank": 1, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" + "Rank": 1 }, { "Id": 1186, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Remove-PnPWebPart", - "Rank": 1, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 1 }, { "Id": 1187, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "CommandName": "Remove-PnPWebPart", - "Rank": 2, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" + "Rank": 2 }, { "Id": 1188, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "CommandName": "Remove-PnPWikiPage", - "Rank": 1, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" + "Rank": 1 }, { "Id": 1189, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "CommandName": "Rename-PnPFile", - "Rank": 1, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" + "Rank": 1 }, { "Id": 1190, + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "CommandName": "Rename-PnPFile", - "Rank": 2, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" + "Rank": 2 }, { "Id": 1191, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "CommandName": "Rename-PnPFile", - "Rank": 3, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" + "Rank": 3 }, { "Id": 1192, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "CommandName": "Rename-PnPFolder", - "Rank": 1, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" + "Rank": 1 }, { "Id": 1193, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Repair-PnPSite", - "Rank": 1, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Rank": 1 }, { "Id": 1194, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "CommandName": "Repair-PnPSite", - "Rank": 2, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "Rank": 2 }, { "Id": 1195, + "Command": "Request-PnPAccessToken", "CommandName": "Request-PnPAccessToken", - "Rank": 1, - "Command": "Request-PnPAccessToken" + "Rank": 1 }, { "Id": 1196, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "CommandName": "Request-PnPAccessToken", - "Rank": 2, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" + "Rank": 2 }, { "Id": 1197, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "CommandName": "Request-PnPAccessToken", - "Rank": 3, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" + "Rank": 3 }, { "Id": 1198, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "CommandName": "Request-PnPAccessToken", - "Rank": 4, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" + "Rank": 4 }, { "Id": 1199, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "CommandName": "Request-PnPPersonalSite", - "Rank": 1, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" + "Rank": 1 }, { "Id": 1200, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "CommandName": "Request-PnPPersonalSite", - "Rank": 2, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" + "Rank": 2 }, { "Id": 1201, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "CommandName": "Request-PnPReIndexList", - "Rank": 1, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"" + "Rank": 1 }, { "Id": 1202, + "Command": "Request-PnPReIndexWeb", "CommandName": "Request-PnPReIndexWeb", - "Rank": 1, - "Command": "Request-PnPReIndexWeb" + "Rank": 1 }, { "Id": 1203, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 1, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" + "Rank": 1 }, { "Id": 1204, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 2, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" + "Rank": 2 }, { "Id": 1205, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 3, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" + "Rank": 3 }, { "Id": 1206, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "CommandName": "Reset-PnPFileVersion", - "Rank": 1, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" + "Rank": 1 }, { "Id": 1207, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "CommandName": "Reset-PnPFileVersion", - "Rank": 2, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" + "Rank": 2 }, { "Id": 1208, + "Command": "Reset-PnPLabel -List \"Demo List\"", "CommandName": "Reset-PnPLabel", - "Rank": 1, - "Command": "Reset-PnPLabel -List \"Demo List\"" + "Rank": 1 }, { "Id": 1209, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "CommandName": "Reset-PnPLabel", - "Rank": 2, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" + "Rank": 2 }, { "Id": 1210, + "Command": "Reset-PnPMicrosoft365GroupExpiration", "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1, - "Command": "Reset-PnPMicrosoft365GroupExpiration" + "Rank": 1 }, { "Id": 1211, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Rank": 1, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" + "Rank": 1 }, { "Id": 1212, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "CommandName": "Resolve-PnPFolder", - "Rank": 1, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" + "Rank": 1 }, { "Id": 1213, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Rank": 1, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Rank": 1 }, { "Id": 1214, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "CommandName": "Restore-PnPFileVersion", - "Rank": 1, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Rank": 1 }, { "Id": 1215, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "CommandName": "Restore-PnPFileVersion", - "Rank": 2, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" + "Rank": 2 }, { "Id": 1216, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "CommandName": "Restore-PnPFileVersion", - "Rank": 3, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Rank": 3 }, { "Id": 1217, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "CommandName": "Restore-PnPListItemVersion", - "Rank": 1, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Rank": 1 }, { "Id": 1218, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "CommandName": "Restore-PnPListItemVersion", - "Rank": 2, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Rank": 2 }, { "Id": 1219, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "CommandName": "Restore-PnPRecycleBinItem", - "Rank": 1, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Rank": 1 }, { "Id": 1220, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Restore-PnPTenantRecycleBinItem", - "Rank": 1, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1 }, { "Id": 1221, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "CommandName": "Restore-PnPTenantRecycleBinItem", - "Rank": 2, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Rank": 2 }, { "Id": 1222, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Restore-PnPTenantSite", - "Rank": 1, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1 }, { "Id": 1223, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "CommandName": "Restore-PnPTenantSite", - "Rank": 2, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Rank": 2 }, { "Id": 1224, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "CommandName": "Restore-PnPTenantSite", - "Rank": 3, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" + "Rank": 3 }, { "Id": 1225, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Rank": 1, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" + "Rank": 1 }, { "Id": 1226, + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Revoke-PnPHubSiteRights", - "Rank": 1, - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Rank": 1 }, { "Id": 1227, + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Revoke-PnPSiteDesignRights", - "Rank": 1, - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Rank": 1 }, { "Id": 1228, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Rank": 1, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Rank": 1 }, { "Id": 1229, + "Command": "Revoke-PnPUserSession -User user1@contoso.com", "CommandName": "Revoke-PnPUserSession", - "Rank": 1, - "Command": "Revoke-PnPUserSession -User user1@contoso.com" + "Rank": 1 }, { "Id": 1230, + "Command": "Save-PnPPageConversionLog", "CommandName": "Save-PnPPageConversionLog", - "Rank": 1, - "Command": "Save-PnPPageConversionLog" + "Rank": 1 }, { "Id": 1231, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "CommandName": "Save-PnPSiteTemplate", - "Rank": 1, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" + "Rank": 1 }, { "Id": 1232, + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "CommandName": "Save-PnPTenantTemplate", - "Rank": 1, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" + "Rank": 1 }, { "Id": 1233, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", "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\"" + "Rank": 1 }, { "Id": 1234, + "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", - "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" + "Rank": 2 }, { "Id": 1235, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "CommandName": "Send-PnPMail", - "Rank": 3, - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" + "Rank": 3 }, { "Id": 1236, + "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", - "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" + "Rank": 4 }, { "Id": 1237, + "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", - "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" + "Rank": 5 }, { "Id": 1238, + "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", - "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\"" + "Rank": 6 }, { "Id": 1239, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "CommandName": "Set-PnPAdaptiveScopeProperty", - "Rank": 1, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" + "Rank": 1 }, { "Id": 1240, + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Set-PnPApplicationCustomizer", - "Rank": 1, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 1 }, { "Id": 1241, + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", "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`\"}\"" + "Rank": 2 }, { "Id": 1242, + "Command": "Set-PnPAppSideLoading -On", "CommandName": "Set-PnPAppSideLoading", - "Rank": 1, - "Command": "Set-PnPAppSideLoading -On" + "Rank": 1 }, { "Id": 1243, + "Command": "Set-PnPAppSideLoading -Off", "CommandName": "Set-PnPAppSideLoading", - "Rank": 2, - "Command": "Set-PnPAppSideLoading -Off" + "Rank": 2 }, { "Id": 1244, + "Command": "Set-PnPAuditing -EnableAll", "CommandName": "Set-PnPAuditing", - "Rank": 1, - "Command": "Set-PnPAuditing -EnableAll" + "Rank": 1 }, { "Id": 1245, + "Command": "Set-PnPAuditing -DisableAll", "CommandName": "Set-PnPAuditing", - "Rank": 2, - "Command": "Set-PnPAuditing -DisableAll" + "Rank": 2 }, { "Id": 1246, + "Command": "Set-PnPAuditing -RetentionTime 7", "CommandName": "Set-PnPAuditing", - "Rank": 3, - "Command": "Set-PnPAuditing -RetentionTime 7" + "Rank": 3 }, { "Id": 1247, + "Command": "Set-PnPAuditing -TrimAuditLog", "CommandName": "Set-PnPAuditing", - "Rank": 4, - "Command": "Set-PnPAuditing -TrimAuditLog" + "Rank": 4 }, { "Id": 1248, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "CommandName": "Set-PnPAuditing", - "Rank": 5, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" + "Rank": 5 }, { "Id": 1249, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "CommandName": "Set-PnPAvailablePageLayouts", - "Rank": 1, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" + "Rank": 1 }, { "Id": 1250, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "CommandName": "Set-PnPAzureADAppSitePermission", - "Rank": 1, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" + "Rank": 1 }, { "Id": 1251, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "CommandName": "Set-PnPAzureADAppSitePermission", - "Rank": 2, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" + "Rank": 2 }, { "Id": 1252, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPAzureADGroup", - "Rank": 1, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" + "Rank": 1 }, { "Id": 1253, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPAzureADGroup", - "Rank": 2, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Rank": 2 }, { "Id": 1254, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "CommandName": "Set-PnPAzureADGroup", - "Rank": 3, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" + "Rank": 3 }, { "Id": 1255, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 1, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" + "Rank": 1 }, { "Id": 1256, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 2, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" + "Rank": 2 }, { "Id": 1257, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 3, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" + "Rank": 3 }, { "Id": 1258, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Rank": 1, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" + "Rank": 1 }, { "Id": 1259, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Rank": 2, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" + "Rank": 2 }, { "Id": 1260, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 1, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" + "Rank": 1 }, { "Id": 1261, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 2, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" + "Rank": 2 }, { "Id": 1262, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 3, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" + "Rank": 3 }, { "Id": 1263, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 4, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" + "Rank": 4 }, { "Id": 1264, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "CommandName": "Set-PnPContentType", - "Rank": 1, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "Rank": 1 }, { "Id": 1265, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "CommandName": "Set-PnPContentType", - "Rank": 2, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" + "Rank": 2 }, { "Id": 1266, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "CommandName": "Set-PnPContentType", - "Rank": 3, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "Rank": 3 }, { "Id": 1267, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "CommandName": "Set-PnPContentType", - "Rank": 4, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "Rank": 4 }, { "Id": 1268, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "CommandName": "Set-PnPContentType", - "Rank": 5, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "Rank": 5 }, { "Id": 1269, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 1, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" + "Rank": 1 }, { "Id": 1270, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 2, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" + "Rank": 2 }, { "Id": 1271, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 3, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" + "Rank": 3 }, { "Id": 1272, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 4, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" + "Rank": 4 }, { "Id": 1273, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "CommandName": "Set-PnPDefaultContentTypeToList", - "Rank": 1, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" + "Rank": 1 }, { "Id": 1274, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 1, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" + "Rank": 1 }, { "Id": 1275, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 2, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" + "Rank": 2 }, { "Id": 1276, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 3, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" + "Rank": 3 }, { "Id": 1277, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 1, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" + "Rank": 1 }, { "Id": 1278, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 2, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Rank": 2 }, { "Id": 1279, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 3, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Rank": 3 }, { "Id": 1280, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "CommandName": "Set-PnPDocumentSetField", - "Rank": 1, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" + "Rank": 1 }, { "Id": 1281, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "CommandName": "Set-PnPDocumentSetField", - "Rank": 2, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" + "Rank": 2 }, { "Id": 1282, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "CommandName": "Set-PnPField", - "Rank": 1, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" + "Rank": 1 }, { "Id": 1283, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "CommandName": "Set-PnPField", - "Rank": 2, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" + "Rank": 2 }, { "Id": 1284, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "CommandName": "Set-PnPField", - "Rank": 3, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" + "Rank": 3 }, { "Id": 1285, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "CommandName": "Set-PnPFileCheckedIn", - "Rank": 1, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" + "Rank": 1 }, { "Id": 1286, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "CommandName": "Set-PnPFileCheckedIn", - "Rank": 2, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" + "Rank": 2 }, { "Id": 1287, + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "CommandName": "Set-PnPFileCheckedOut", - "Rank": 1, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" + "Rank": 1 }, { "Id": 1288, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPFolderPermission", - "Rank": 1, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" + "Rank": 1 }, { "Id": 1289, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPFolderPermission", - "Rank": 2, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Rank": 2 }, { "Id": 1290, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "CommandName": "Set-PnPFolderPermission", - "Rank": 3, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "Rank": 3 }, { "Id": 1291, + "Command": "Set-PnPFooter -Enabled:$true", "CommandName": "Set-PnPFooter", - "Rank": 1, - "Command": "Set-PnPFooter -Enabled:$true" + "Rank": 1 }, { "Id": 1292, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "CommandName": "Set-PnPFooter", - "Rank": 2, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" + "Rank": 2 }, { "Id": 1293, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "CommandName": "Set-PnPFooter", - "Rank": 3, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" + "Rank": 3 }, { "Id": 1294, + "Command": "Set-PnPFooter -LogoUrl \"\"", "CommandName": "Set-PnPFooter", - "Rank": 4, - "Command": "Set-PnPFooter -LogoUrl \"\"" + "Rank": 4 }, { "Id": 1295, + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "CommandName": "Set-PnPGraphSubscription", - "Rank": 1, - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" + "Rank": 1 }, { "Id": 1296, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "CommandName": "Set-PnPGroup", - "Rank": 1, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" + "Rank": 1 }, { "Id": 1297, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "CommandName": "Set-PnPGroup", - "Rank": 2, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" + "Rank": 2 }, { "Id": 1298, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "CommandName": "Set-PnPGroupPermissions", - "Rank": 1, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" + "Rank": 1 }, { "Id": 1299, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "CommandName": "Set-PnPGroupPermissions", - "Rank": 2, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" + "Rank": 2 }, { "Id": 1300, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "CommandName": "Set-PnPGroupPermissions", - "Rank": 3, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" + "Rank": 3 }, { "Id": 1301, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "CommandName": "Set-PnPGroupPermissions", - "Rank": 4, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" + "Rank": 4 }, { "Id": 1302, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "CommandName": "Set-PnPGroupPermissions", - "Rank": 5, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" + "Rank": 5 }, { "Id": 1303, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "CommandName": "Set-PnPHideDefaultThemes", - "Rank": 1, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" + "Rank": 1 }, { "Id": 1304, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "CommandName": "Set-PnPHideDefaultThemes", - "Rank": 2, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" + "Rank": 2 }, { "Id": 1305, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "CommandName": "Set-PnPHomePage", - "Rank": 1, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" + "Rank": 1 }, { "Id": 1306, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "CommandName": "Set-PnPHomePage", - "Rank": 2, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" + "Rank": 2 }, { "Id": 1307, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "CommandName": "Set-PnPHomeSite", - "Rank": 1, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" + "Rank": 1 }, { "Id": 1308, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "CommandName": "Set-PnPHomeSite", - "Rank": 2, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" + "Rank": 2 }, { "Id": 1309, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "CommandName": "Set-PnPHubSite", - "Rank": 1, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" + "Rank": 1 }, { "Id": 1310, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "CommandName": "Set-PnPHubSite", - "Rank": 2, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" + "Rank": 2 }, { "Id": 1311, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "CommandName": "Set-PnPHubSite", - "Rank": 3, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" + "Rank": 3 }, { "Id": 1312, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "CommandName": "Set-PnPHubSite", - "Rank": 4, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" + "Rank": 4 }, { "Id": 1313, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "CommandName": "Set-PnPHubSite", - "Rank": 5, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" + "Rank": 5 }, { "Id": 1314, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "CommandName": "Set-PnPHubSite", - "Rank": 6, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" + "Rank": 6 }, { "Id": 1315, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "CommandName": "Set-PnPImageListItemColumn", - "Rank": 1, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" + "Rank": 1 }, { "Id": 1316, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "CommandName": "Set-PnPImageListItemColumn", - "Rank": 2, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" + "Rank": 2 }, { "Id": 1317, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "CommandName": "Set-PnPIndexedProperties", - "Rank": 1, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" + "Rank": 1 }, { "Id": 1318, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "CommandName": "Set-PnPInPlaceRecordsManagement", - "Rank": 1, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" + "Rank": 1 }, { "Id": 1319, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "CommandName": "Set-PnPInPlaceRecordsManagement", - "Rank": 2, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" + "Rank": 2 }, { "Id": 1320, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "CommandName": "Set-PnPKnowledgeHubSite", - "Rank": 1, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" + "Rank": 1 }, { "Id": 1321, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "CommandName": "Set-PnPLabel", - "Rank": 1, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" + "Rank": 1 }, { "Id": 1322, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "CommandName": "Set-PnPLabel", - "Rank": 2, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" + "Rank": 2 }, { "Id": 1323, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "CommandName": "Set-PnPList", - "Rank": 1, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" + "Rank": 1 }, { "Id": 1324, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "CommandName": "Set-PnPList", - "Rank": 2, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" + "Rank": 2 }, { "Id": 1325, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "CommandName": "Set-PnPList", - "Rank": 3, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" + "Rank": 3 }, { "Id": 1326, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "CommandName": "Set-PnPList", - "Rank": 4, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" + "Rank": 4 }, { "Id": 1327, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "CommandName": "Set-PnPList", - "Rank": 5, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" + "Rank": 5 }, { "Id": 1328, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "CommandName": "Set-PnPList", - "Rank": 6, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" + "Rank": 6 }, { "Id": 1329, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "CommandName": "Set-PnPList", - "Rank": 7, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" + "Rank": 7 }, { "Id": 1330, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "CommandName": "Set-PnPList", - "Rank": 8, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" + "Rank": 8 }, { "Id": 1331, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "CommandName": "Set-PnPList", - "Rank": 9, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" + "Rank": 9 }, { "Id": 1332, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "CommandName": "Set-PnPList", - "Rank": 10, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" + "Rank": 10 }, { "Id": 1333, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "CommandName": "Set-PnPList", - "Rank": 11, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" + "Rank": 11 }, { "Id": 1334, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "CommandName": "Set-PnPListInformationRightsManagement", - "Rank": 1, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" + "Rank": 1 }, { "Id": 1335, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "CommandName": "Set-PnPListInformationRightsManagement", - "Rank": 2, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" + "Rank": 2 }, { "Id": 1336, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Rank": 1, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Rank": 1 }, { "Id": 1337, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Rank": 2, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Rank": 2 }, { "Id": 1338, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Rank": 3, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Rank": 3 }, { "Id": 1339, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "CommandName": "Set-PnPListItem", - "Rank": 4, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" + "Rank": 4 }, { "Id": 1340, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "CommandName": "Set-PnPListItem", - "Rank": 5, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" + "Rank": 5 }, { "Id": 1341, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "CommandName": "Set-PnPListItemAsRecord", - "Rank": 1, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Rank": 1 }, { "Id": 1342, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "CommandName": "Set-PnPListItemAsRecord", - "Rank": 2, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" + "Rank": 2 }, { "Id": 1343, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPListItemPermission", - "Rank": 1, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" + "Rank": 1 }, { "Id": 1344, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPListItemPermission", - "Rank": 2, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Rank": 2 }, { "Id": 1345, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "CommandName": "Set-PnPListItemPermission", - "Rank": 3, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "Rank": 3 }, { "Id": 1346, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "CommandName": "Set-PnPListItemPermission", - "Rank": 4, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" + "Rank": 4 }, { "Id": 1347, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "CommandName": "Set-PnPListItemPermission", - "Rank": 5, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" + "Rank": 5 }, { "Id": 1348, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPListPermission", - "Rank": 1, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" + "Rank": 1 }, { "Id": 1349, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPListPermission", - "Rank": 2, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Rank": 2 }, { "Id": 1350, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "CommandName": "Set-PnPListRecordDeclaration", - "Rank": 1, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" + "Rank": 1 }, { "Id": 1351, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "CommandName": "Set-PnPListRecordDeclaration", - "Rank": 2, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" + "Rank": 2 }, { "Id": 1352, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Rank": 1, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "Rank": 1 }, { "Id": 1353, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Rank": 2, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "Rank": 2 }, { "Id": 1354, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Rank": 3, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "Rank": 3 }, { "Id": 1355, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Rank": 4, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "Rank": 4 }, { "Id": 1356, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" + "Rank": 1 }, { "Id": 1357, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" + "Rank": 2 }, { "Id": 1358, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived" + "Rank": 3 }, { "Id": 1359, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" + "Rank": 1 }, { "Id": 1360, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" + "Rank": 2 }, { "Id": 1361, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Rank": 3 }, { "Id": 1362, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" + "Rank": 1 }, { "Id": 1363, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" + "Rank": 2 }, { "Id": 1364, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Rank": 3 }, { "Id": 1365, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" + "Rank": 1 }, { "Id": 1366, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" + "Rank": 2 }, { "Id": 1367, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Rank": 3 }, { "Id": 1368, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" + "Rank": 1 }, { "Id": 1369, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" + "Rank": 2 }, { "Id": 1370, + "Command": "Set-PnPMessageCenterAnnouncementAsRead", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsRead" + "Rank": 3 }, { "Id": 1371, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" + "Rank": 1 }, { "Id": 1372, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" + "Rank": 2 }, { "Id": 1373, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread" + "Rank": 3 }, { "Id": 1374, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 1, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" + "Rank": 1 }, { "Id": 1375, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 2, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Rank": 2 }, { "Id": 1376, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 3, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" + "Rank": 3 }, { "Id": 1377, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 4, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" + "Rank": 4 }, { "Id": 1378, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 5, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" + "Rank": 5 }, { "Id": 1379, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 6, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "Rank": 6 }, { "Id": 1380, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Rank": 1, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" + "Rank": 1 }, { "Id": 1381, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Rank": 2, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" + "Rank": 2 }, { "Id": 1382, + "Command": "Set-PnPMinimalDownloadStrategy -Off", "CommandName": "Set-PnPMinimalDownloadStrategy", - "Rank": 1, - "Command": "Set-PnPMinimalDownloadStrategy -Off" + "Rank": 1 }, { "Id": 1383, + "Command": "Set-PnPMinimalDownloadStrategy -On", "CommandName": "Set-PnPMinimalDownloadStrategy", - "Rank": 2, - "Command": "Set-PnPMinimalDownloadStrategy -On" + "Rank": 2 }, { "Id": 1384, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "CommandName": "Set-PnPPage", - "Rank": 1, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" + "Rank": 1 }, { "Id": 1385, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "CommandName": "Set-PnPPage", - "Rank": 2, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" + "Rank": 2 }, { "Id": 1386, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "CommandName": "Set-PnPPage", - "Rank": 3, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" + "Rank": 3 }, { "Id": 1387, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "CommandName": "Set-PnPPage", - "Rank": 4, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" + "Rank": 4 }, { "Id": 1388, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "CommandName": "Set-PnPPage", - "Rank": 5, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" + "Rank": 5 }, { "Id": 1389, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "CommandName": "Set-PnPPage", - "Rank": 6, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" + "Rank": 6 }, { "Id": 1390, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "CommandName": "Set-PnPPage", - "Rank": 7, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" + "Rank": 7 }, { "Id": 1391, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "CommandName": "Set-PnPPage", - "Rank": 8, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" + "Rank": 8 }, { "Id": 1392, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "CommandName": "Set-PnPPage", - "Rank": 9, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" + "Rank": 9 }, { "Id": 1393, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "CommandName": "Set-PnPPage", - "Rank": 10, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" + "Rank": 10 }, { "Id": 1394, + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "CommandName": "Set-PnPPage", - "Rank": 11, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" + "Rank": 11 }, { "Id": 1395, + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "CommandName": "Set-PnPPageTextPart", - "Rank": 1, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" + "Rank": 1 }, { "Id": 1396, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "CommandName": "Set-PnPPageWebPart", - "Rank": 1, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" + "Rank": 1 }, { "Id": 1397, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "CommandName": "Set-PnPPageWebPart", - "Rank": 2, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" + "Rank": 2 }, { "Id": 1398, + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "CommandName": "Set-PnPPlannerBucket", - "Rank": 1, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" + "Rank": 1 }, { "Id": 1399, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "CommandName": "Set-PnPPlannerConfiguration", - "Rank": 1, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" + "Rank": 1 }, { "Id": 1400, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "CommandName": "Set-PnPPlannerConfiguration", - "Rank": 2, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" + "Rank": 2 }, { "Id": 1401, + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "CommandName": "Set-PnPPlannerPlan", - "Rank": 1, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" + "Rank": 1 }, { "Id": 1402, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "CommandName": "Set-PnPPlannerTask", - "Rank": 1, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" + "Rank": 1 }, { "Id": 1403, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "CommandName": "Set-PnPPlannerTask", - "Rank": 2, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" + "Rank": 2 }, { "Id": 1404, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "CommandName": "Set-PnPPlannerTask", - "Rank": 3, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" + "Rank": 3 }, { "Id": 1405, + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPPlannerUserPolicy", - "Rank": 1, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 1 }, { "Id": 1406, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "CommandName": "Set-PnPPropertyBagValue", - "Rank": 1, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" + "Rank": 1 }, { "Id": 1407, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "CommandName": "Set-PnPPropertyBagValue", - "Rank": 2, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" + "Rank": 2 }, { "Id": 1408, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "CommandName": "Set-PnPPropertyBagValue", - "Rank": 3, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" + "Rank": 3 }, { "Id": 1409, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 1, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" + "Rank": 1 }, { "Id": 1410, + "Command": "Set-PnPRequestAccessEmails -Disabled", "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 2, - "Command": "Set-PnPRequestAccessEmails -Disabled" + "Rank": 2 }, { "Id": 1411, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 3, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false" + "Rank": 3 }, { "Id": 1412, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "CommandName": "Set-PnPRoleDefinition", - "Rank": 1, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" + "Rank": 1 }, { "Id": 1413, + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "CommandName": "Set-PnPRoleDefinition", - "Rank": 2, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" + "Rank": 2 }, { "Id": 1414, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "CommandName": "Set-PnPRoleDefinition", - "Rank": 3, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" + "Rank": 3 }, { "Id": 1415, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "CommandName": "Set-PnPRoleDefinition", - "Rank": 4, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" + "Rank": 4 }, { "Id": 1416, + "Command": "Set-PnPSearchConfiguration -Configuration $config", "CommandName": "Set-PnPSearchConfiguration", - "Rank": 1, - "Command": "Set-PnPSearchConfiguration -Configuration $config" + "Rank": 1 }, { "Id": 1417, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "CommandName": "Set-PnPSearchConfiguration", - "Rank": 2, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" + "Rank": 2 }, { "Id": 1418, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "CommandName": "Set-PnPSearchConfiguration", - "Rank": 3, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Rank": 3 }, { "Id": 1419, + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Set-PnPSearchConfiguration", - "Rank": 4, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Rank": 4 }, { "Id": 1420, + "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", - "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" + "Rank": 1 }, { "Id": 1421, + "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", - "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\"" + "Rank": 2 }, { "Id": 1422, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "CommandName": "Set-PnPSearchSettings", - "Rank": 1, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" + "Rank": 1 }, { "Id": 1423, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "CommandName": "Set-PnPSearchSettings", - "Rank": 2, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" + "Rank": 2 }, { "Id": 1424, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "CommandName": "Set-PnPSearchSettings", - "Rank": 3, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" + "Rank": 3 }, { "Id": 1425, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "CommandName": "Set-PnPSearchSettings", - "Rank": 4, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" + "Rank": 4 }, { "Id": 1426, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "CommandName": "Set-PnPSearchSettings", - "Rank": 5, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" + "Rank": 5 }, { "Id": 1427, + "Command": "Set-PnPSearchSettings -SearchScope Tenant", "CommandName": "Set-PnPSearchSettings", - "Rank": 6, - "Command": "Set-PnPSearchSettings -SearchScope Tenant" + "Rank": 6 }, { "Id": 1428, + "Command": "Set-PnPSearchSettings -SearchScope Hub", "CommandName": "Set-PnPSearchSettings", - "Rank": 7, - "Command": "Set-PnPSearchSettings -SearchScope Hub" + "Rank": 7 }, { "Id": 1429, + "Command": "Set-PnPSite -Classification \"HBI\"", "CommandName": "Set-PnPSite", - "Rank": 1, - "Command": "Set-PnPSite -Classification \"HBI\"" + "Rank": 1 }, { "Id": 1430, + "Command": "Set-PnPSite -Classification $null", "CommandName": "Set-PnPSite", - "Rank": 2, - "Command": "Set-PnPSite -Classification $null" + "Rank": 2 }, { "Id": 1431, + "Command": "Set-PnPSite -DisableFlows", "CommandName": "Set-PnPSite", - "Rank": 3, - "Command": "Set-PnPSite -DisableFlows" + "Rank": 3 }, { "Id": 1432, + "Command": "Set-PnPSite -DisableFlows:$false", "CommandName": "Set-PnPSite", - "Rank": 4, - "Command": "Set-PnPSite -DisableFlows:$false" + "Rank": 4 }, { "Id": 1433, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "CommandName": "Set-PnPSite", - "Rank": 5, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" + "Rank": 5 }, { "Id": 1434, + "Command": "Set-PnPSite -NoScriptSite $false", "CommandName": "Set-PnPSite", - "Rank": 6, - "Command": "Set-PnPSite -NoScriptSite $false" + "Rank": 6 }, { "Id": 1435, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "CommandName": "Set-PnPSite", - "Rank": 7, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" + "Rank": 7 }, { "Id": 1436, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "CommandName": "Set-PnPSite", - "Rank": 8, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" + "Rank": 8 }, { "Id": 1437, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "CommandName": "Set-PnPSite", - "Rank": 9, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" + "Rank": 9 }, { "Id": 1438, + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "CommandName": "Set-PnPSite", - "Rank": 10, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" + "Rank": 10 }, { "Id": 1439, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Rank": 11, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" + "Rank": 11 }, { "Id": 1440, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Rank": 12, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" + "Rank": 12 }, { "Id": 1441, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Rank": 13, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" + "Rank": 13 }, { "Id": 1442, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Rank": 14, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" + "Rank": 14 }, { "Id": 1443, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Rank": 15, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" + "Rank": 15 }, { "Id": 1444, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Rank": 16, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" + "Rank": 16 }, { "Id": 1445, + "Command": "Set-PnPSite -CancelVPForExistingLibs", "CommandName": "Set-PnPSite", - "Rank": 17, - "Command": "Set-PnPSite -CancelVPForExistingLibs" + "Rank": 17 }, { "Id": 1446, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "CommandName": "Set-PnPSiteClassification", - "Rank": 1, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"" + "Rank": 1 }, { "Id": 1447, + "Command": "Set-PnPSiteClosure -State Open", "CommandName": "Set-PnPSiteClosure", - "Rank": 1, - "Command": "Set-PnPSiteClosure -State Open" + "Rank": 1 }, { "Id": 1448, + "Command": "Set-PnPSiteClosure -State Closed", "CommandName": "Set-PnPSiteClosure", - "Rank": 2, - "Command": "Set-PnPSiteClosure -State Closed" + "Rank": 2 }, { "Id": 1449, + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "CommandName": "Set-PnPSiteDesign", - "Rank": 1, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" + "Rank": 1 }, { "Id": 1450, + "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", - "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\"" + "Rank": 2 }, { "Id": 1451, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "CommandName": "Set-PnPSiteGroup", - "Rank": 1, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" + "Rank": 1 }, { "Id": 1452, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "CommandName": "Set-PnPSiteGroup", - "Rank": 2, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" + "Rank": 2 }, { "Id": 1453, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "CommandName": "Set-PnPSitePolicy", - "Rank": 1, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" + "Rank": 1 }, { "Id": 1454, + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "CommandName": "Set-PnPSiteScript", - "Rank": 1, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "Rank": 1 }, { "Id": 1455, + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "CommandName": "Set-PnPSiteScriptPackage", - "Rank": 1, - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "Rank": 1 }, { "Id": 1456, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "CommandName": "Set-PnPSiteSensitivityLabel", - "Rank": 1, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" + "Rank": 1 }, { "Id": 1457, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "CommandName": "Set-PnPSiteSensitivityLabel", - "Rank": 2, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" + "Rank": 2 }, { "Id": 1458, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 1, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" + "Rank": 1 }, { "Id": 1459, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 2, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" + "Rank": 2 }, { "Id": 1460, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 3, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "Rank": 3 }, { "Id": 1461, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 4, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "Rank": 4 }, { "Id": 1462, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 5, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "Rank": 5 }, { "Id": 1463, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 6, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "Rank": 6 }, { "Id": 1464, + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "CommandName": "Set-PnPStorageEntity", - "Rank": 1, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "Rank": 1 }, { "Id": 1465, + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "CommandName": "Set-PnPStorageEntity", - "Rank": 2, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "Rank": 2 }, { "Id": 1466, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Rank": 1, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Rank": 1 }, { "Id": 1467, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Rank": 2, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Rank": 2 }, { "Id": 1468, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Rank": 1, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Rank": 1 }, { "Id": 1469, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Rank": 2, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Rank": 2 }, { "Id": 1470, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Rank": 1, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" + "Rank": 1 }, { "Id": 1471, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Rank": 2, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" + "Rank": 2 }, { "Id": 1472, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 1, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" + "Rank": 1 }, { "Id": 1473, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 2, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" + "Rank": 2 }, { "Id": 1474, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 3, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" + "Rank": 3 }, { "Id": 1475, + "Command": "Set-PnPTeamifyPromptHidden", "CommandName": "Set-PnPTeamifyPromptHidden", - "Rank": 1, - "Command": "Set-PnPTeamifyPromptHidden" + "Rank": 1 }, { "Id": 1476, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "CommandName": "Set-PnPTeamsChannel", - "Rank": 1, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" + "Rank": 1 }, { "Id": 1477, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "CommandName": "Set-PnPTeamsChannel", - "Rank": 2, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" + "Rank": 2 }, { "Id": 1478, + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "CommandName": "Set-PnpTeamsChannelUser", - "Rank": 1, - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" + "Rank": 1 }, { "Id": 1479, + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "CommandName": "Set-PnpTeamsChannelUser", - "Rank": 2, - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" + "Rank": 2 }, { "Id": 1480, + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "CommandName": "Set-PnPTeamsTab", - "Rank": 1, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" + "Rank": 1 }, { "Id": 1481, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "CommandName": "Set-PnPTeamsTag", - "Rank": 1, - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" + "Rank": 1 }, { "Id": 1482, + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "CommandName": "Set-PnPTeamsTeam", - "Rank": 1, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" + "Rank": 1 }, { "Id": 1483, + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "CommandName": "Set-PnPTeamsTeam", - "Rank": 2, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" + "Rank": 2 }, { "Id": 1484, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "CommandName": "Set-PnPTeamsTeam", - "Rank": 3, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" + "Rank": 3 }, { "Id": 1485, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "CommandName": "Set-PnPTeamsTeam", - "Rank": 4, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" + "Rank": 4 }, { "Id": 1486, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 1, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" + "Rank": 1 }, { "Id": 1487, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 2, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" + "Rank": 2 }, { "Id": 1488, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 3, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" + "Rank": 3 }, { "Id": 1489, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "CommandName": "Set-PnPTeamsTeamPicture", - "Rank": 1, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" + "Rank": 1 }, { "Id": 1490, + "Command": "Set-PnPTemporarilyDisableAppBar $true", "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Rank": 1, - "Command": "Set-PnPTemporarilyDisableAppBar $true" + "Rank": 1 }, { "Id": 1491, + "Command": "Set-PnPTemporarilyDisableAppBar $false", "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Rank": 2, - "Command": "Set-PnPTemporarilyDisableAppBar $false" + "Rank": 2 }, { "Id": 1492, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", "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\"" + "Rank": 1 }, { "Id": 1493, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "CommandName": "Set-PnPTenant", - "Rank": 2, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" + "Rank": 2 }, { "Id": 1494, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "CommandName": "Set-PnPTenant", - "Rank": 3, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false" + "Rank": 3 }, { "Id": 1495, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "CommandName": "Set-PnPTenant", - "Rank": 4, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" + "Rank": 4 }, { "Id": 1496, + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "CommandName": "Set-PnPTenantAppCatalogUrl", - "Rank": 1, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" + "Rank": 1 }, { "Id": 1497, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 1, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" + "Rank": 1 }, { "Id": 1498, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 2, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" + "Rank": 2 }, { "Id": 1499, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 3, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" + "Rank": 3 }, { "Id": 1500, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", "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\"" + "Rank": 1 }, { "Id": 1501, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "CommandName": "Set-PnPTenantCdnPolicy", - "Rank": 2, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" + "Rank": 2 }, { "Id": 1502, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "CommandName": "Set-PnPTenantSite", - "Rank": 1, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" + "Rank": 1 }, { "Id": 1503, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "CommandName": "Set-PnPTenantSite", - "Rank": 2, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" + "Rank": 2 }, { "Id": 1504, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPTenantSite", - "Rank": 3, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" + "Rank": 3 }, { "Id": 1505, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Set-PnPTenantSite", - "Rank": 4, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Rank": 4 }, { "Id": 1506, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "CommandName": "Set-PnPTenantSite", - "Rank": 5, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" + "Rank": 5 }, { "Id": 1507, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "CommandName": "Set-PnPTenantSyncClientRestriction", - "Rank": 1, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" + "Rank": 1 }, { "Id": 1508, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "CommandName": "Set-PnPTenantSyncClientRestriction", - "Rank": 2, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" + "Rank": 2 }, { "Id": 1509, + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "CommandName": "Set-PnPTerm", - "Rank": 1, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" + "Rank": 1 }, { "Id": 1510, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "Set-PnPTerm", - "Rank": 2, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Rank": 2 }, { "Id": 1511, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "Set-PnPTerm", - "Rank": 3, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Rank": 3 }, { "Id": 1512, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "CommandName": "Set-PnPTerm", - "Rank": 4, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" + "Rank": 4 }, { "Id": 1513, + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "CommandName": "Set-PnPTermGroup", - "Rank": 1, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" + "Rank": 1 }, { "Id": 1514, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "CommandName": "Set-PnPTermSet", - "Rank": 1, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" + "Rank": 1 }, { "Id": 1515, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "CommandName": "Set-PnPTermSet", - "Rank": 2, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" + "Rank": 2 }, { "Id": 1516, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "CommandName": "Set-PnPTermSet", - "Rank": 3, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" + "Rank": 3 }, { "Id": 1517, + "Command": "Set-PnPTheme", "CommandName": "Set-PnPTheme", - "Rank": 1, - "Command": "Set-PnPTheme" + "Rank": 1 }, { "Id": 1518, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "CommandName": "Set-PnPTheme", - "Rank": 2, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" + "Rank": 2 }, { "Id": 1519, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "CommandName": "Set-PnPTheme", - "Rank": 3, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" + "Rank": 3 }, { "Id": 1520, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "CommandName": "Set-PnPTheme", - "Rank": 4, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" + "Rank": 4 }, { "Id": 1521, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "CommandName": "Set-PnPTraceLog", - "Rank": 1, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" + "Rank": 1 }, { "Id": 1522, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "CommandName": "Set-PnPTraceLog", - "Rank": 2, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" + "Rank": 2 }, { "Id": 1523, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "CommandName": "Set-PnPTraceLog", - "Rank": 3, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" + "Rank": 3 }, { "Id": 1524, + "Command": "Set-PnPTraceLog -Off", "CommandName": "Set-PnPTraceLog", - "Rank": 4, - "Command": "Set-PnPTraceLog -Off" + "Rank": 4 }, { "Id": 1525, + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "CommandName": "Set-PnPUserOneDriveQuota", - "Rank": 1, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" + "Rank": 1 }, { "Id": 1526, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "CommandName": "Set-PnPUserProfileProperty", - "Rank": 1, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" + "Rank": 1 }, { "Id": 1527, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "CommandName": "Set-PnPUserProfileProperty", - "Rank": 2, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" + "Rank": 2 }, { "Id": 1528, + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "CommandName": "Set-PnPView", - "Rank": 1, - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" + "Rank": 1 }, { "Id": 1529, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "CommandName": "Set-PnPView", - "Rank": 2, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" + "Rank": 2 }, { "Id": 1530, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "CommandName": "Set-PnPView", - "Rank": 3, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" + "Rank": 3 }, { "Id": 1531, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "CommandName": "Set-PnPView", - "Rank": 4, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" + "Rank": 4 }, { "Id": 1532, + "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", - "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" + "Rank": 1 }, { "Id": 1533, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 2, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" + "Rank": 2 }, { "Id": 1534, + "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", - "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" + "Rank": 3 }, { "Id": 1535, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 4, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" + "Rank": 4 }, { "Id": 1536, + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "CommandName": "Set-PnPWeb", - "Rank": 1, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" + "Rank": 1 }, { "Id": 1537, + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "CommandName": "Set-PnPWeb", - "Rank": 2, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" + "Rank": 2 }, { "Id": 1538, + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "CommandName": "Set-PnPWeb", - "Rank": 3, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" + "Rank": 3 }, { "Id": 1539, + "Command": "Set-PnPWeb -NoCrawl:$true", "CommandName": "Set-PnPWeb", - "Rank": 4, - "Command": "Set-PnPWeb -NoCrawl:$true" + "Rank": 4 }, { "Id": 1540, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "CommandName": "Set-PnPWebHeader", - "Rank": 1, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" + "Rank": 1 }, { "Id": 1541, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "CommandName": "Set-PnPWebHeader", - "Rank": 2, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" + "Rank": 2 }, { "Id": 1542, + "Command": "Set-PnPWebHeader -LogoAlignment Middle", "CommandName": "Set-PnPWebHeader", - "Rank": 3, - "Command": "Set-PnPWebHeader -LogoAlignment Middle" + "Rank": 3 }, { "Id": 1543, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "CommandName": "Set-PnPWebhookSubscription", - "Rank": 1, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" + "Rank": 1 }, { "Id": 1544, + "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", - "Rank": 2, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" + "Rank": 2 }, { "Id": 1545, + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", "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\"" + "Rank": 1 }, { "Id": 1546, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Rank": 1, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" + "Rank": 1 }, { "Id": 1547, + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Rank": 2, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" + "Rank": 2 }, { "Id": 1548, + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Rank": 3, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" + "Rank": 3 }, { "Id": 1549, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "CommandName": "Set-PnPWebPermission", - "Rank": 4, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" + "Rank": 4 }, { "Id": 1550, + "Command": "Set-PnPWebTheme -Theme MyTheme", "CommandName": "Set-PnPWebTheme", - "Rank": 1, - "Command": "Set-PnPWebTheme -Theme MyTheme" + "Rank": 1 }, { "Id": 1551, + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "CommandName": "Set-PnPWebTheme", - "Rank": 2, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" + "Rank": 2 }, { "Id": 1552, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "CommandName": "Set-PnPWikiPageContent", - "Rank": 1, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" + "Rank": 1 }, { "Id": 1553, + "Command": "Submit-PnPSearchQuery -Query \"finance\"", "CommandName": "Submit-PnPSearchQuery", - "Rank": 1, - "Command": "Submit-PnPSearchQuery -Query \"finance\"" + "Rank": 1 }, { "Id": 1554, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "CommandName": "Submit-PnPSearchQuery", - "Rank": 2, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" + "Rank": 2 }, { "Id": 1555, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "CommandName": "Submit-PnPSearchQuery", - "Rank": 3, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" + "Rank": 3 }, { "Id": 1556, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "CommandName": "Submit-PnPSearchQuery", - "Rank": 4, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" + "Rank": 4 }, { "Id": 1557, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "CommandName": "Submit-PnPSearchQuery", - "Rank": 5, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" + "Rank": 5 }, { "Id": 1558, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "CommandName": "Submit-PnPTeamsChannelMessage", - "Rank": 1, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" + "Rank": 1 }, { "Id": 1559, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "CommandName": "Submit-PnPTeamsChannelMessage", - "Rank": 2, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" + "Rank": 2 }, { "Id": 1560, + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Sync-PnPAppToTeams", - "Rank": 1, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1 }, { "Id": 1561, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 1, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" + "Rank": 1 }, { "Id": 1562, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 2, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" + "Rank": 2 }, { "Id": 1563, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 3, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" + "Rank": 3 }, { "Id": 1564, + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "CommandName": "Test-PnPListItemIsRecord", - "Rank": 1, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" + "Rank": 1 }, { "Id": 1565, + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Rank": 1, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" + "Rank": 1 }, { "Id": 1566, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Test-PnPSite", - "Rank": 1, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Rank": 1 }, { "Id": 1567, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "CommandName": "Test-PnPSite", - "Rank": 2, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "Rank": 2 }, { "Id": 1568, + "Command": "Test-PnPTenantTemplate -Template $myTemplate", "CommandName": "Test-PnPTenantTemplate", - "Rank": 1, - "Command": "Test-PnPTenantTemplate -Template $myTemplate" + "Rank": 1 }, { "Id": 1569, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "CommandName": "Undo-PnPFileCheckedOut", - "Rank": 1, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" + "Rank": 1 }, { "Id": 1570, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Uninstall-PnPApp", - "Rank": 1, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1 }, { "Id": 1571, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Uninstall-PnPApp", - "Rank": 2, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2 }, { "Id": 1572, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Unpublish-PnPApp", - "Rank": 1, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1 }, { "Id": 1573, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Unpublish-PnPApp", - "Rank": 2, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2 }, { "Id": 1574, + "Command": "Unpublish-PnPContentType -ContentType 0x0101", "CommandName": "Unpublish-PnPContentType", - "Rank": 1, - "Command": "Unpublish-PnPContentType -ContentType 0x0101" + "Rank": 1 }, { "Id": 1575, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "CommandName": "Unpublish-PnPSyntexModel", - "Rank": 1, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "Rank": 1 }, { "Id": 1576, + "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", - "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" + "Rank": 2 }, { "Id": 1577, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "CommandName": "Unregister-PnPHubSite", - "Rank": 1, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Rank": 1 }, { "Id": 1578, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Update-PnPApp", - "Rank": 1, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1 }, { "Id": 1579, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Update-PnPApp", - "Rank": 2, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2 }, { "Id": 1580, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 1, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Rank": 1 }, { "Id": 1581, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 2, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" + "Rank": 2 }, { "Id": 1582, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 3, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" + "Rank": 3 }, { "Id": 1583, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 1, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" + "Rank": 1 }, { "Id": 1584, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 2, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" + "Rank": 2 }, { "Id": 1585, + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 3, - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" + "Rank": 3 }, { "Id": 1586, + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "CommandName": "Update-PnPTeamsApp", - "Rank": 1, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" + "Rank": 1 }, { "Id": 1587, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Update-PnPTeamsUser", - "Rank": 1, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Rank": 1 }, { "Id": 1588, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "CommandName": "Update-PnPTeamsUser", - "Rank": 2, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "Rank": 2 }, { "Id": 1589, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "CommandName": "Update-PnPTeamsUser", - "Rank": 3, - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" + "Rank": 3 }, { "Id": 1590, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "CommandName": "Update-PnPUserType", - "Rank": 1, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" + "Rank": 1 } ] diff --git a/version.txt b/version.txt index a885043d3..aa9b7289d 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.96 \ No newline at end of file +2.2.97 \ No newline at end of file From 913618646b36a7adbc18197c8a8bf2215bb557f3 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Fri, 13 Oct 2023 14:27:35 +0200 Subject: [PATCH 076/146] Clarified the error message when running a PnPAdminCmdlet so it also includes a hint towards checking for PIM activation as many customers are using that nowadays and forget to enable it (#3492) --- src/Commands/Base/PnPAdminCmdlet.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/Base/PnPAdminCmdlet.cs b/src/Commands/Base/PnPAdminCmdlet.cs index 5201706c8..05c16cf09 100644 --- a/src/Commands/Base/PnPAdminCmdlet.cs +++ b/src/Commands/Base/PnPAdminCmdlet.cs @@ -121,7 +121,7 @@ protected override void BeginProcessing() } catch(Exception e) { - throw new PSInvalidOperationException($"Unable to connect to the SharePoint Online Admin Center at '{tenantAdminUrl}' to run this cmdlet. Please ensure you pass in the correct Admin Center URL using Connect-PnPOnline -TenantAdminUrl and you have access to it. Error message: {e.Message}.", e); + throw new PSInvalidOperationException($"Unable to connect to the SharePoint Online Admin Center at '{tenantAdminUrl}' to run this cmdlet. If this URL is incorrect for your tenant, you can pass in the correct Admin Center URL using Connect-PnPOnline -TenantAdminUrl. If you are using Privileged Identity Management (PIM) on your tenant, please ensure you have activated at least the SharePoint Administrator role and allowed some time for it to activate. Error message: {e.Message}", e); } WriteVerbose($"Connected to the SharePoint Online Admin Center at '{tenantAdminUrl}' to run this cmdlet"); } From d9044fcd9dd28d5e172042f42b69e4b537aaba3a Mon Sep 17 00:00:00 2001 From: Giacomo Pozzoni Date: Fri, 13 Oct 2023 14:30:57 +0200 Subject: [PATCH 077/146] Fix retrieving error detail in Get-UPABulkImportStatus (#3494) * Fix retrieving error detail in Get-UPABulkImportStatus * Handle exceptions when setting the error message --- .../UserProfiles/GetUPABulkImportStatus.cs | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/src/Commands/UserProfiles/GetUPABulkImportStatus.cs b/src/Commands/UserProfiles/GetUPABulkImportStatus.cs index d0f50bcdf..5dafb9b6c 100644 --- a/src/Commands/UserProfiles/GetUPABulkImportStatus.cs +++ b/src/Commands/UserProfiles/GetUPABulkImportStatus.cs @@ -48,7 +48,7 @@ private void GetErrorInfo(ImportProfilePropertiesJobInfo job) { var webUrl = Web.GetWebUrlFromPageUrl(AdminContext, job.LogFolderUri); AdminContext.ExecuteQueryRetry(); - string relativePath = job.LogFolderUri.Replace(webUrl.Value, ""); + string relativePath = new Uri(job.LogFolderUri).LocalPath; var webCtx = AdminContext.Clone(webUrl.Value); if (webCtx.Web.DoesFolderExists(relativePath)) { @@ -60,9 +60,22 @@ private void GetErrorInfo(ImportProfilePropertiesJobInfo job) string message = string.Empty; foreach (var logFile in files) message += "\r\n" + webCtx.Web.GetFileAsString(logFile.ServerRelativeUrl); - job.ErrorMessage = message; + TrySetJobErrorMessage(job, message); } } } + + private void TrySetJobErrorMessage(ImportProfilePropertiesJobInfo job, string message) + { + try + { + job.ErrorMessage = message; + } + catch (ClientRequestException) + { + // Setting the ErrorMessage property to ImportProfilePropertiesJobInfo returned by GetImportProfilePropertyJobs() throws an exception sometimes as the Path is property is null. + // In this case the generic error message with the file location of the log in SPO will be returned. + } + } } } \ No newline at end of file From 77b39aa28cea23005d00282e83b3ae7e45c05c38 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Fri, 13 Oct 2023 15:32:18 +0300 Subject: [PATCH 078/146] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cf4af2ff..27fac66dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -59,6 +59,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed `Get-PnPTenantTemplate` not doing anything when the `-SiteUrl` parameter had not been specified. It will now use the currently connected site when the parameter is omitted. [#3431](https://github.com/pnp/powershell/pull/3431) - Fixed `Enable-PnPPageScheduling` and `Disable-PnPPageScheduling` cmdlets not working due to changes in backend code. [#3469](https://github.com/pnp/powershell/pull/3469) - 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) ### Changed From 60839fd64902d049314bc0e498c0e7130a138b78 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Fri, 13 Oct 2023 16:40:04 +0300 Subject: [PATCH 079/146] Additional cmdlet support for GCC --- CHANGELOG.md | 2 +- .../AzureAD/NewAzureADUserTemporaryAccessPass.cs | 2 +- src/Commands/Base/PipeBinds/AzureADUserPipeBind.cs | 10 ++++++---- src/Commands/Purview/GetAvailableSensitivityLabel.cs | 2 +- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 661b8b28a..c392eb5c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,7 +35,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added option to create a Microsoft 365 Group with dynamic membership by passing in `-DynamicMembershipRule` [#3426](https://github.com/pnp/powershell/pull/3426) - Added `RestrictedAccessControl`, `ClearRestrictedAccessControl`, `RemoveRestrictedAccessControlGroups`, `AddRestrictedAccessControlGroups` and `RestrictedAccessControlGroups` parameters to `Set-PnPTenantSite` cmdlet to handle restricted access control. [#3463](https://github.com/pnp/powershell/pull/3463) - Added `Get-PnPRetentionLabel` cmdlet to retrieve Purview retention labels. [#3459](https://github.com/pnp/powershell/pull/3459) -- Added GCC support for `Get-PnPAzureADUser` , `Add-PnPFlowOwner` , `Remove-PnPFlowOwner` and `Sync-PnPSharePointUserProfilesFromAzureActiveDirectory` cmdlets +- Added GCC support for `Get-PnPAzureADUser` , `Add-PnPFlowOwner` , `Remove-PnPFlowOwner`, `Sync-PnPSharePointUserProfilesFromAzureActiveDirectory`, `New-PnPAzureADUserTemporaryAccessPass` and `Get-PnPAvailableSensitivityLabel` cmdlets. [#3484](https://github.com/pnp/powershell/pull/3484) ### Fixed diff --git a/src/Commands/AzureAD/NewAzureADUserTemporaryAccessPass.cs b/src/Commands/AzureAD/NewAzureADUserTemporaryAccessPass.cs index 7138d5a8d..3e6b59b0d 100644 --- a/src/Commands/AzureAD/NewAzureADUserTemporaryAccessPass.cs +++ b/src/Commands/AzureAD/NewAzureADUserTemporaryAccessPass.cs @@ -30,7 +30,7 @@ protected override void ExecuteCmdlet() userId: Identity.User?.Id?.ToString() ?? Identity.Upn ?? Identity.UserId, startDateTime: StartDateTime, lifeTimeInMinutes: LifeTimeInMinutes, - isUsableOnce: IsUsableOnce); + isUsableOnce: IsUsableOnce, azureEnvironment: Connection.AzureEnvironment); WriteObject(accessPass); } diff --git a/src/Commands/Base/PipeBinds/AzureADUserPipeBind.cs b/src/Commands/Base/PipeBinds/AzureADUserPipeBind.cs index b22e79c92..466b4f373 100644 --- a/src/Commands/Base/PipeBinds/AzureADUserPipeBind.cs +++ b/src/Commands/Base/PipeBinds/AzureADUserPipeBind.cs @@ -1,4 +1,5 @@ -using PnP.PowerShell.Commands.Model.AzureAD; +using PnP.Framework; +using PnP.PowerShell.Commands.Model.AzureAD; using System; using System.Net; @@ -54,8 +55,9 @@ public AzureADUserPipeBind(string input) /// Tries to return the User instace based on the information this pipe has available /// /// Access Token for Microsoft Graph that can be used to fetch User data + /// Azure environment cloud /// User instance or NULL if unable to define user instance based on the available information - public User GetUser(string accessToken) + public User GetUser(string accessToken, AzureEnvironment azureEnvironment = AzureEnvironment.Production) { if (_user != null) { @@ -63,11 +65,11 @@ public User GetUser(string accessToken) } if (_userId != null) { - return User.CreateFrom(PnP.Framework.Graph.UsersUtility.GetUser(accessToken, _userId)); + return User.CreateFrom(PnP.Framework.Graph.UsersUtility.GetUser(accessToken, _userId, azureEnvironment: azureEnvironment)); } if (_upn != null) { - return User.CreateFrom(PnP.Framework.Graph.UsersUtility.GetUser(accessToken, WebUtility.UrlEncode(_upn))); + return User.CreateFrom(PnP.Framework.Graph.UsersUtility.GetUser(accessToken, WebUtility.UrlEncode(_upn), azureEnvironment: azureEnvironment)); } return null; } diff --git a/src/Commands/Purview/GetAvailableSensitivityLabel.cs b/src/Commands/Purview/GetAvailableSensitivityLabel.cs index f1debcd91..bd171bf87 100644 --- a/src/Commands/Purview/GetAvailableSensitivityLabel.cs +++ b/src/Commands/Purview/GetAvailableSensitivityLabel.cs @@ -23,7 +23,7 @@ protected override void ExecuteCmdlet() string url; if (ParameterSpecified(nameof(User))) { - var user = User.GetUser(AccessToken); + var user = User.GetUser(AccessToken, Connection.AzureEnvironment); if (user == null) { From 83b8364d4166f0ce31f8c41eafc0bd363328c015 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Fri, 13 Oct 2023 17:15:58 +0200 Subject: [PATCH 080/146] Added changelog entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69b76c46c..eb4a2cba5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added option to pass in a Stream or XML string to `Read-PnPTenantTemplate` allowing the tenant template to be modified before being applied. [#3431](https://github.com/pnp/powershell/pull/3431) - Added `Get-PnPTenantInfo` which allows retrieving tenant information by its Id or domain name. [#3414](https://github.com/pnp/powershell/pull/3414) - Added option to create a Microsoft 365 Group with dynamic membership by passing in `-DynamicMembershipRule` [#3426](https://github.com/pnp/powershell/pull/3426) +- Added `Get-PnPSiteVersionPolicy` which allows retrieval of the version policy settings for a site [#3470](https://github.com/pnp/powershell/pull/3470) ### Fixed From e30dfb61d0a6425fb5f04e96121d3900e8f7d2c5 Mon Sep 17 00:00:00 2001 From: Reshmee Auckloo Date: Fri, 13 Oct 2023 17:15:11 +0100 Subject: [PATCH 081/146] Fix Bug 3495 --- src/Commands/Base/PipeBinds/TeamsTeamPipeBind.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Commands/Base/PipeBinds/TeamsTeamPipeBind.cs b/src/Commands/Base/PipeBinds/TeamsTeamPipeBind.cs index 28d8122ac..929ddb41e 100644 --- a/src/Commands/Base/PipeBinds/TeamsTeamPipeBind.cs +++ b/src/Commands/Base/PipeBinds/TeamsTeamPipeBind.cs @@ -41,6 +41,11 @@ public TeamsTeamPipeBind(Team team) _id = team.GroupId; } + public TeamsTeamPipeBind(Guid id) + { + _id = id.ToString(); + } + public string GetGroupId(PnPConnection connection, string accessToken) { if (!string.IsNullOrEmpty(_id)) From 7d88af131896758dec153c421862155a73aa291b Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sat, 14 Oct 2023 02:37:27 +0000 Subject: [PATCH 082/146] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6366 +++++++++-------- version.txt | 2 +- 3 files changed, 3188 insertions(+), 3182 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index c36b08f13..b4a4f255f 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -cd7ce1f38a9c1895ab9eea12f69de27ac8456ddb \ No newline at end of file +ac1da66d7edb9b44bb480715d1564f6735e52189 \ 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 5b2324a38..ce43b7b07 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9542 +1,9548 @@ [ { - "Id": 1, + "Rank": 1, "Command": "Add-PnPAlert -List \"Demo List\"", "CommandName": "Add-PnPAlert", - "Rank": 1 + "Id": 1 }, { - "Id": 2, + "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", - "Rank": 2 + "Id": 2 }, { - "Id": 3, + "Rank": 3, "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAlert", - "Rank": 3 + "Id": 3 }, { - "Id": 4, + "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", - "Rank": 4 + "Id": 4 }, { - "Id": 5, + "Rank": 1, "Command": "Add-PnPApp -Path ./myapp.sppkg", "CommandName": "Add-PnPApp", - "Rank": 1 + "Id": 5 }, { - "Id": 6, + "Rank": 2, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "CommandName": "Add-PnPApp", - "Rank": 2 + "Id": 6 }, { - "Id": 7, + "Rank": 3, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "CommandName": "Add-PnPApp", - "Rank": 3 + "Id": 7 }, { - "Id": 8, + "Rank": 4, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "CommandName": "Add-PnPApp", - "Rank": 4 + "Id": 8 }, { - "Id": 9, + "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", - "Rank": 1 + "Id": 9 }, { - "Id": 10, + "Rank": 1, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "CommandName": "Add-PnPAvailableSiteClassification", - "Rank": 1 + "Id": 10 }, { - "Id": 11, + "Rank": 2, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "CommandName": "Add-PnPAvailableSiteClassification", - "Rank": 2 + "Id": 11 }, { - "Id": 12, + "Rank": 1, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 1 + "Id": 12 }, { - "Id": 13, + "Rank": 2, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 2 + "Id": 13 }, { - "Id": 14, + "Rank": 3, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 3 + "Id": 14 }, { - "Id": 15, + "Rank": 1, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 1 + "Id": 15 }, { - "Id": 16, + "Rank": 2, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 2 + "Id": 16 }, { - "Id": 17, + "Rank": 3, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 3 + "Id": 17 }, { - "Id": 18, + "Rank": 1, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Rank": 1 + "Id": 18 }, { - "Id": 19, + "Rank": 2, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Rank": 2 + "Id": 19 }, { - "Id": 20, + "Rank": 1, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "CommandName": "Add-PnPContentType", - "Rank": 1 + "Id": 20 }, { - "Id": 21, + "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", - "Rank": 2 + "Id": 21 }, { - "Id": 22, + "Rank": 3, "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "CommandName": "Add-PnPContentType", - "Rank": 3 + "Id": 22 }, { - "Id": 23, + "Rank": 4, "Command": "Add-PnPContentType -Name \"Project Item\"", "CommandName": "Add-PnPContentType", - "Rank": 4 + "Id": 23 }, { - "Id": 24, + "Rank": 5, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "CommandName": "Add-PnPContentType", - "Rank": 5 + "Id": 24 }, { - "Id": 25, + "Rank": 1, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Rank": 1 + "Id": 25 }, { - "Id": 26, + "Rank": 2, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Rank": 2 + "Id": 26 }, { - "Id": 27, + "Rank": 1, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "CommandName": "Add-PnPContentTypeToDocumentSet", - "Rank": 1 + "Id": 27 }, { - "Id": 28, + "Rank": 2, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "CommandName": "Add-PnPContentTypeToDocumentSet", - "Rank": 2 + "Id": 28 }, { - "Id": 29, + "Rank": 1, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "CommandName": "Add-PnPContentTypeToList", - "Rank": 1 + "Id": 29 }, { - "Id": 30, + "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", - "Rank": 1 + "Id": 30 }, { - "Id": 31, + "Rank": 1, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Rank": 1 + "Id": 31 }, { - "Id": 32, + "Rank": 2, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Rank": 2 + "Id": 32 }, { - "Id": 33, + "Rank": 1, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "CommandName": "Add-PnPDocumentSet", - "Rank": 1 + "Id": 33 }, { - "Id": 34, + "Rank": 1, "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "CommandName": "Add-PnPEventReceiver", - "Rank": 1 + "Id": 34 }, { - "Id": 35, + "Rank": 2, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "CommandName": "Add-PnPEventReceiver", - "Rank": 2 + "Id": 35 }, { - "Id": 36, + "Rank": 3, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", "CommandName": "Add-PnPEventReceiver", - "Rank": 3 + "Id": 36 }, { - "Id": 37, + "Rank": 4, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "CommandName": "Add-PnPEventReceiver", - "Rank": 4 + "Id": 37 }, { - "Id": 38, + "Rank": 1, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "CommandName": "Add-PnPField", - "Rank": 1 + "Id": 38 }, { - "Id": 39, + "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", - "Rank": 2 + "Id": 39 }, { - "Id": 40, + "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", - "Rank": 3 + "Id": 40 }, { - "Id": 41, + "Rank": 4, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "CommandName": "Add-PnPField", - "Rank": 4 + "Id": 41 }, { - "Id": 42, + "Rank": 5, "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "CommandName": "Add-PnPField", - "Rank": 5 + "Id": 42 }, { - "Id": 43, + "Rank": 6, "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "CommandName": "Add-PnPField", - "Rank": 6 + "Id": 43 }, { - "Id": 44, + "Rank": 1, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "CommandName": "Add-PnPFieldToContentType", - "Rank": 1 + "Id": 44 }, { - "Id": 45, + "Rank": 1, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "CommandName": "Add-PnPFile", - "Rank": 1 + "Id": 45 }, { - "Id": 46, + "Rank": 2, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "CommandName": "Add-PnPFile", - "Rank": 2 + "Id": 46 }, { - "Id": 47, + "Rank": 3, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Rank": 3 + "Id": 47 }, { - "Id": 48, + "Rank": 4, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Rank": 4 + "Id": 48 }, { - "Id": 49, + "Rank": 5, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Rank": 5 + "Id": 49 }, { - "Id": 50, + "Rank": 6, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "CommandName": "Add-PnPFile", - "Rank": 6 + "Id": 50 }, { - "Id": 51, + "Rank": 7, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "CommandName": "Add-PnPFile", - "Rank": 7 + "Id": 51 }, { - "Id": 52, + "Rank": 8, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "CommandName": "Add-PnPFile", - "Rank": 8 + "Id": 52 }, { - "Id": 53, + "Rank": 1, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 1 + "Id": 53 }, { - "Id": 54, + "Rank": 2, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 2 + "Id": 54 }, { - "Id": 55, + "Rank": 3, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 3 + "Id": 55 }, { - "Id": 56, + "Rank": 1, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Rank": 1 + "Id": 56 }, { - "Id": 57, + "Rank": 2, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Rank": 2 + "Id": 57 }, { - "Id": 58, + "Rank": 1, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "CommandName": "Add-PnPFileSharingInvite", - "Rank": 1 + "Id": 58 }, { - "Id": 59, + "Rank": 2, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "CommandName": "Add-PnPFileSharingInvite", - "Rank": 2 + "Id": 59 }, { - "Id": 60, + "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", - "Rank": 3 + "Id": 60 }, { - "Id": 61, + "Rank": 1, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 1 + "Id": 61 }, { - "Id": 62, + "Rank": 2, "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 2 + "Id": 62 }, { - "Id": 63, + "Rank": 3, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 3 + "Id": 63 }, { - "Id": 64, + "Rank": 4, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 4 + "Id": 64 }, { - "Id": 65, + "Rank": 5, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 5 + "Id": 65 }, { - "Id": 66, + "Rank": 1, "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPFileUserSharingLink", - "Rank": 1 + "Id": 66 }, { - "Id": 67, + "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", - "Rank": 2 + "Id": 67 }, { - "Id": 68, + "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", - "Rank": 1 + "Id": 68 }, { - "Id": 69, + "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", - "Rank": 2 + "Id": 69 }, { - "Id": 70, + "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", - "Rank": 3 + "Id": 70 }, { - "Id": 71, + "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", - "Rank": 4 + "Id": 71 }, { - "Id": 72, + "Rank": 1, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "CommandName": "Add-PnPFolder", - "Rank": 1 + "Id": 72 }, { - "Id": 73, + "Rank": 2, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "CommandName": "Add-PnPFolder", - "Rank": 2 + "Id": 73 }, { - "Id": 74, + "Rank": 3, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "CommandName": "Add-PnPFolder", - "Rank": 3 + "Id": 74 }, { - "Id": 75, + "Rank": 1, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 1 + "Id": 75 }, { - "Id": 76, + "Rank": 2, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 2 + "Id": 76 }, { - "Id": 77, + "Rank": 3, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 3 + "Id": 77 }, { - "Id": 78, + "Rank": 1, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Rank": 1 + "Id": 78 }, { - "Id": 79, + "Rank": 2, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Rank": 2 + "Id": 79 }, { - "Id": 80, + "Rank": 1, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "CommandName": "Add-PnPFolderSharingInvite", - "Rank": 1 + "Id": 80 }, { - "Id": 81, + "Rank": 2, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "CommandName": "Add-PnPFolderSharingInvite", - "Rank": 2 + "Id": 81 }, { - "Id": 82, + "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", - "Rank": 3 + "Id": 82 }, { - "Id": 83, + "Rank": 1, "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPFolderUserSharingLink", - "Rank": 1 + "Id": 83 }, { - "Id": 84, + "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", - "Rank": 2 + "Id": 84 }, { - "Id": 85, + "Rank": 1, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "CommandName": "Add-PnPGroupMember", - "Rank": 1 + "Id": 85 }, { - "Id": 86, + "Rank": 2, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "CommandName": "Add-PnPGroupMember", - "Rank": 2 + "Id": 86 }, { - "Id": 87, + "Rank": 1, "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "CommandName": "Add-PnPHtmlPublishingPageLayout", - "Rank": 1 + "Id": 87 }, { - "Id": 88, + "Rank": 1, "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "CommandName": "Add-PnPHubSiteAssociation", - "Rank": 1 + "Id": 88 }, { - "Id": 89, + "Rank": 1, "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "CommandName": "Add-PnPHubToHubAssociation", - "Rank": 1 + "Id": 89 }, { - "Id": 90, + "Rank": 2, "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "CommandName": "Add-PnPHubToHubAssociation", - "Rank": 2 + "Id": 90 }, { - "Id": 91, + "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", - "Rank": 3 + "Id": 91 }, { - "Id": 92, + "Rank": 1, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "CommandName": "Add-PnPJavaScriptBlock", - "Rank": 1 + "Id": 92 }, { - "Id": 93, + "Rank": 2, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "CommandName": "Add-PnPJavaScriptBlock", - "Rank": 2 + "Id": 93 }, { - "Id": 94, + "Rank": 1, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "CommandName": "Add-PnPJavaScriptLink", - "Rank": 1 + "Id": 94 }, { - "Id": 95, + "Rank": 2, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "CommandName": "Add-PnPJavaScriptLink", - "Rank": 2 + "Id": 95 }, { - "Id": 96, + "Rank": 1, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "CommandName": "Add-PnPListDesign", - "Rank": 1 + "Id": 96 }, { - "Id": 97, + "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", - "Rank": 2 + "Id": 97 }, { - "Id": 98, + "Rank": 1, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 1 + "Id": 98 }, { - "Id": 99, + "Rank": 2, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 2 + "Id": 99 }, { - "Id": 100, + "Rank": 3, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 3 + "Id": 100 }, { - "Id": 101, + "Rank": 1, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Add-PnPListItem", - "Rank": 1 + "Id": 101 }, { - "Id": 102, + "Rank": 2, "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Add-PnPListItem", - "Rank": 2 + "Id": 102 }, { - "Id": 103, + "Rank": 3, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "CommandName": "Add-PnPListItem", - "Rank": 3 + "Id": 103 }, { - "Id": 104, + "Rank": 4, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "CommandName": "Add-PnPListItem", - "Rank": 4 + "Id": 104 }, { - "Id": 105, + "Rank": 5, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "CommandName": "Add-PnPListItem", - "Rank": 5 + "Id": 105 }, { - "Id": 106, + "Rank": 1, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "CommandName": "Add-PnPListItemAttachment", - "Rank": 1 + "Id": 106 }, { - "Id": 107, + "Rank": 2, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "CommandName": "Add-PnPListItemAttachment", - "Rank": 2 + "Id": 107 }, { - "Id": 108, + "Rank": 3, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "CommandName": "Add-PnPListItemAttachment", - "Rank": 3 + "Id": 108 }, { - "Id": 109, + "Rank": 1, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "CommandName": "Add-PnPListItemComment", - "Rank": 1 + "Id": 109 }, { - "Id": 110, + "Rank": 1, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "CommandName": "Add-PnPMasterPage", - "Rank": 1 + "Id": 110 }, { - "Id": 111, + "Rank": 1, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPMicrosoft365GroupMember", - "Rank": 1 + "Id": 111 }, { - "Id": 112, + "Rank": 2, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPMicrosoft365GroupMember", - "Rank": 2 + "Id": 112 }, { - "Id": 113, + "Rank": 1, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Rank": 1 + "Id": 113 }, { - "Id": 114, + "Rank": 2, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Rank": 2 + "Id": 114 }, { - "Id": 115, + "Rank": 1, "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 1 + "Id": 115 }, { - "Id": 116, + "Rank": 2, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 2 + "Id": 116 }, { - "Id": 117, + "Rank": 3, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 3 + "Id": 117 }, { - "Id": 118, + "Rank": 1, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "CommandName": "Add-PnPNavigationNode", - "Rank": 1 + "Id": 118 }, { - "Id": 119, + "Rank": 2, "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "CommandName": "Add-PnPNavigationNode", - "Rank": 2 + "Id": 119 }, { - "Id": 120, + "Rank": 3, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "CommandName": "Add-PnPNavigationNode", - "Rank": 3 + "Id": 120 }, { - "Id": 121, + "Rank": 4, "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "CommandName": "Add-PnPNavigationNode", - "Rank": 4 + "Id": 121 }, { - "Id": 122, + "Rank": 5, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "CommandName": "Add-PnPNavigationNode", - "Rank": 5 + "Id": 122 }, { - "Id": 123, + "Rank": 6, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "CommandName": "Add-PnPNavigationNode", - "Rank": 6 + "Id": 123 }, { - "Id": 124, + "Rank": 7, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "CommandName": "Add-PnPNavigationNode", - "Rank": 7 + "Id": 124 }, { - "Id": 125, + "Rank": 8, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "CommandName": "Add-PnPNavigationNode", - "Rank": 8 + "Id": 125 }, { - "Id": 126, + "Rank": 1, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 1 + "Id": 126 }, { - "Id": 127, + "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", - "Rank": 2 + "Id": 127 }, { - "Id": 128, + "Rank": 3, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 3 + "Id": 128 }, { - "Id": 129, + "Rank": 1, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "CommandName": "Add-PnPOrgNewsSite", - "Rank": 1 + "Id": 129 }, { - "Id": 130, + "Rank": 1, "Command": "Add-PnPPage -Name \"NewPage\"", "CommandName": "Add-PnPPage", - "Rank": 1 + "Id": 130 }, { - "Id": 131, + "Rank": 2, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "CommandName": "Add-PnPPage", - "Rank": 2 + "Id": 131 }, { - "Id": 132, + "Rank": 3, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "CommandName": "Add-PnPPage", - "Rank": 3 + "Id": 132 }, { - "Id": 133, + "Rank": 4, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "CommandName": "Add-PnPPage", - "Rank": 4 + "Id": 133 }, { - "Id": 134, + "Rank": 5, "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "CommandName": "Add-PnPPage", - "Rank": 5 + "Id": 134 }, { - "Id": 135, + "Rank": 6, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "CommandName": "Add-PnPPage", - "Rank": 6 + "Id": 135 }, { - "Id": 136, + "Rank": 7, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "CommandName": "Add-PnPPage", - "Rank": 7 + "Id": 136 }, { - "Id": 137, + "Rank": 8, "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "CommandName": "Add-PnPPage", - "Rank": 8 + "Id": 137 }, { - "Id": 138, + "Rank": 9, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "CommandName": "Add-PnPPage", - "Rank": 9 + "Id": 138 }, { - "Id": 139, + "Rank": 10, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "CommandName": "Add-PnPPage", - "Rank": 10 + "Id": 139 }, { - "Id": 140, + "Rank": 1, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "CommandName": "Add-PnPPageImageWebPart", - "Rank": 1 + "Id": 140 }, { - "Id": 141, + "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", - "Rank": 2 + "Id": 141 }, { - "Id": 142, + "Rank": 1, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "CommandName": "Add-PnPPageSection", - "Rank": 1 + "Id": 142 }, { - "Id": 143, + "Rank": 2, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "CommandName": "Add-PnPPageSection", - "Rank": 2 + "Id": 143 }, { - "Id": 144, + "Rank": 1, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "CommandName": "Add-PnPPageTextPart", - "Rank": 1 + "Id": 144 }, { - "Id": 145, + "Rank": 2, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "CommandName": "Add-PnPPageTextPart", - "Rank": 2 + "Id": 145 }, { - "Id": 146, + "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", - "Rank": 3 + "Id": 146 }, { - "Id": 147, + "Rank": 1, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "CommandName": "Add-PnPPageWebPart", - "Rank": 1 + "Id": 147 }, { - "Id": 148, + "Rank": 2, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "CommandName": "Add-PnPPageWebPart", - "Rank": 2 + "Id": 148 }, { - "Id": 149, + "Rank": 3, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "CommandName": "Add-PnPPageWebPart", - "Rank": 3 + "Id": 149 }, { - "Id": 150, + "Rank": 1, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "CommandName": "Add-PnPPlannerBucket", - "Rank": 1 + "Id": 150 }, { - "Id": 151, + "Rank": 2, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "CommandName": "Add-PnPPlannerBucket", - "Rank": 2 + "Id": 151 }, { - "Id": 152, + "Rank": 1, "Command": "Add-PnPPlannerRoster", "CommandName": "Add-PnPPlannerRoster", - "Rank": 1 + "Id": 152 }, { - "Id": 153, + "Rank": 1, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPPlannerRosterMember", - "Rank": 1 + "Id": 153 }, { - "Id": 154, + "Rank": 1, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "CommandName": "Add-PnPPlannerTask", - "Rank": 1 + "Id": 154 }, { - "Id": 155, + "Rank": 2, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "CommandName": "Add-PnPPlannerTask", - "Rank": 2 + "Id": 155 }, { - "Id": 156, + "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", - "Rank": 3 + "Id": 156 }, { - "Id": 157, + "Rank": 1, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "CommandName": "Add-PnPPublishingImageRendition", - "Rank": 1 + "Id": 157 }, { - "Id": 158, + "Rank": 1, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "CommandName": "Add-PnPPublishingPage", - "Rank": 1 + "Id": 158 }, { - "Id": 159, + "Rank": 2, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "CommandName": "Add-PnPPublishingPage", - "Rank": 2 + "Id": 159 }, { - "Id": 160, + "Rank": 1, "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "CommandName": "Add-PnPPublishingPageLayout", - "Rank": 1 + "Id": 160 }, { - "Id": 161, + "Rank": 1, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "CommandName": "Add-PnPRoleDefinition", - "Rank": 1 + "Id": 161 }, { - "Id": 162, + "Rank": 2, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "CommandName": "Add-PnPRoleDefinition", - "Rank": 2 + "Id": 162 }, { - "Id": 163, + "Rank": 3, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "CommandName": "Add-PnPRoleDefinition", - "Rank": 3 + "Id": 163 }, { - "Id": 164, + "Rank": 1, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 1 + "Id": 164 }, { - "Id": 165, + "Rank": 2, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 2 + "Id": 165 }, { - "Id": 166, + "Rank": 3, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 3 + "Id": 166 }, { - "Id": 167, + "Rank": 1, "Command": "Add-PnPSiteCollectionAppCatalog", "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1 + "Id": 167 }, { - "Id": 168, + "Rank": 2, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Rank": 2 + "Id": 168 }, { - "Id": 169, + "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", - "Rank": 1 + "Id": 169 }, { - "Id": 170, + "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", - "Rank": 2 + "Id": 170 }, { - "Id": 171, + "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", - "Rank": 3 + "Id": 171 }, { - "Id": 172, + "Rank": 1, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "CommandName": "Add-PnPSiteDesignFromWeb", - "Rank": 1 + "Id": 172 }, { - "Id": 173, + "Rank": 2, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "CommandName": "Add-PnPSiteDesignFromWeb", - "Rank": 2 + "Id": 173 }, { - "Id": 174, + "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", - "Rank": 3 + "Id": 174 }, { - "Id": 175, + "Rank": 1, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "CommandName": "Add-PnPSiteDesignTask", - "Rank": 1 + "Id": 175 }, { - "Id": 176, + "Rank": 2, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "CommandName": "Add-PnPSiteDesignTask", - "Rank": 2 + "Id": 176 }, { - "Id": 177, + "Rank": 1, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "CommandName": "Add-PnPSiteScript", - "Rank": 1 + "Id": 177 }, { - "Id": 178, + "Rank": 1, "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "CommandName": "Add-PnPSiteScriptPackage", - "Rank": 1 + "Id": 178 }, { - "Id": 179, + "Rank": 1, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "CommandName": "Add-PnPSiteTemplate", - "Rank": 1 + "Id": 179 }, { - "Id": 180, + "Rank": 1, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "CommandName": "Add-PnPStoredCredential", - "Rank": 1 + "Id": 180 }, { - "Id": 181, + "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", - "Rank": 2 + "Id": 181 }, { - "Id": 182, + "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", - "Rank": 3 + "Id": 182 }, { - "Id": 183, + "Rank": 1, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "CommandName": "Add-PnPTaxonomyField", - "Rank": 1 + "Id": 183 }, { - "Id": 184, + "Rank": 2, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "CommandName": "Add-PnPTaxonomyField", - "Rank": 2 + "Id": 184 }, { - "Id": 185, + "Rank": 1, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "CommandName": "Add-PnPTeamsChannel", - "Rank": 1 + "Id": 185 }, { - "Id": 186, + "Rank": 2, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "CommandName": "Add-PnPTeamsChannel", - "Rank": 2 + "Id": 186 }, { - "Id": 187, + "Rank": 3, "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "CommandName": "Add-PnPTeamsChannel", - "Rank": 3 + "Id": 187 }, { - "Id": 188, + "Rank": 4, "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "CommandName": "Add-PnPTeamsChannel", - "Rank": 4 + "Id": 188 }, { - "Id": 189, + "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", - "Rank": 1 + "Id": 189 }, { - "Id": 190, + "Rank": 2, "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "CommandName": "Add-PnpTeamsChannelUser", - "Rank": 2 + "Id": 190 }, { - "Id": 191, + "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", - "Rank": 1 + "Id": 191 }, { - "Id": 192, + "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", - "Rank": 2 + "Id": 192 }, { - "Id": 193, + "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", - "Rank": 3 + "Id": 193 }, { - "Id": 194, + "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", - "Rank": 4 + "Id": 194 }, { - "Id": 195, + "Rank": 1, "Command": "Add-PnPTeamsTeam", "CommandName": "Add-PnPTeamsTeam", - "Rank": 1 + "Id": 195 }, { - "Id": 196, + "Rank": 1, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Add-PnPTeamsUser", - "Rank": 1 + "Id": 196 }, { - "Id": 197, + "Rank": 2, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "CommandName": "Add-PnPTeamsUser", - "Rank": 2 + "Id": 197 }, { - "Id": 198, + "Rank": 3, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "CommandName": "Add-PnPTeamsUser", - "Rank": 3 + "Id": 198 }, { - "Id": 199, + "Rank": 4, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "CommandName": "Add-PnPTeamsUser", - "Rank": 4 + "Id": 199 }, { - "Id": 200, + "Rank": 1, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "CommandName": "Add-PnPTenantCdnOrigin", - "Rank": 1 + "Id": 200 }, { - "Id": 201, + "Rank": 1, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "CommandName": "Add-PnPTenantSequence", - "Rank": 1 + "Id": 201 }, { - "Id": 202, + "Rank": 1, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "CommandName": "Add-PnPTenantSequenceSite", - "Rank": 1 + "Id": 202 }, { - "Id": 203, + "Rank": 1, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "CommandName": "Add-PnPTenantSequenceSubSite", - "Rank": 1 + "Id": 203 }, { - "Id": 204, + "Rank": 1, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "CommandName": "Add-PnPTermToTerm", - "Rank": 1 + "Id": 204 }, { - "Id": 205, + "Rank": 1, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "CommandName": "Add-PnPView", - "Rank": 1 + "Id": 205 }, { - "Id": 206, + "Rank": 2, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "CommandName": "Add-PnPView", - "Rank": 2 + "Id": 206 }, { - "Id": 207, + "Rank": 3, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "CommandName": "Add-PnPView", - "Rank": 3 + "Id": 207 }, { - "Id": 208, + "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", - "Rank": 1 + "Id": 208 }, { - "Id": 209, + "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", - "Rank": 2 + "Id": 209 }, { - "Id": 210, + "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", - "Rank": 3 + "Id": 210 }, { - "Id": 211, + "Rank": 1, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "CommandName": "Add-PnPWebhookSubscription", - "Rank": 1 + "Id": 211 }, { - "Id": 212, + "Rank": 2, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "CommandName": "Add-PnPWebhookSubscription", - "Rank": 2 + "Id": 212 }, { - "Id": 213, + "Rank": 3, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "CommandName": "Add-PnPWebhookSubscription", - "Rank": 3 + "Id": 213 }, { - "Id": 214, + "Rank": 1, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "CommandName": "Add-PnPWebPartToWebPartPage", - "Rank": 1 + "Id": 214 }, { - "Id": 215, + "Rank": 2, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "CommandName": "Add-PnPWebPartToWebPartPage", - "Rank": 2 + "Id": 215 }, { - "Id": 216, + "Rank": 1, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "CommandName": "Add-PnPWebPartToWikiPage", - "Rank": 1 + "Id": 216 }, { - "Id": 217, + "Rank": 2, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "CommandName": "Add-PnPWebPartToWikiPage", - "Rank": 2 + "Id": 217 }, { - "Id": 218, + "Rank": 1, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "CommandName": "Add-PnPWikiPage", - "Rank": 1 + "Id": 218 }, { - "Id": 219, + "Rank": 1, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "CommandName": "Clear-PnPAzureADGroupMember", - "Rank": 1 + "Id": 219 }, { - "Id": 220, + "Rank": 1, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "CommandName": "Clear-PnPAzureADGroupOwner", - "Rank": 1 + "Id": 220 }, { - "Id": 221, + "Rank": 1, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "CommandName": "Clear-PnPDefaultColumnValues", - "Rank": 1 + "Id": 221 }, { - "Id": 222, + "Rank": 2, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "CommandName": "Clear-PnPDefaultColumnValues", - "Rank": 2 + "Id": 222 }, { - "Id": 223, + "Rank": 1, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "CommandName": "Clear-PnPListItemAsRecord", - "Rank": 1 + "Id": 223 }, { - "Id": 224, + "Rank": 1, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Rank": 1 + "Id": 224 }, { - "Id": 225, + "Rank": 1, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Rank": 1 + "Id": 225 }, { - "Id": 226, + "Rank": 1, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 1 + "Id": 226 }, { - "Id": 227, + "Rank": 2, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 2 + "Id": 227 }, { - "Id": 228, + "Rank": 3, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 3 + "Id": 228 }, { - "Id": 229, + "Rank": 1, "Command": "Clear-PnPTenantAppCatalogUrl", "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1 + "Id": 229 }, { - "Id": 230, + "Rank": 1, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Clear-PnPTenantRecycleBinItem", - "Rank": 1 + "Id": 230 }, { - "Id": 231, + "Rank": 2, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "CommandName": "Clear-PnPTenantRecycleBinItem", - "Rank": 2 + "Id": 231 }, { - "Id": 232, + "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", - "Rank": 1 + "Id": 232 }, { - "Id": 233, + "Rank": 1, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "CommandName": "Convert-PnPFolderToSiteTemplate", - "Rank": 1 + "Id": 233 }, { - "Id": 234, + "Rank": 2, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "CommandName": "Convert-PnPFolderToSiteTemplate", - "Rank": 2 + "Id": 234 }, { - "Id": 235, + "Rank": 1, "Command": "Convert-PnPSiteTemplate -Path template.xml", "CommandName": "Convert-PnPSiteTemplate", - "Rank": 1 + "Id": 235 }, { - "Id": 236, + "Rank": 2, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "CommandName": "Convert-PnPSiteTemplate", - "Rank": 2 + "Id": 236 }, { - "Id": 237, + "Rank": 3, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "CommandName": "Convert-PnPSiteTemplate", - "Rank": 3 + "Id": 237 }, { - "Id": 238, + "Rank": 1, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Rank": 1 + "Id": 238 }, { - "Id": 239, + "Rank": 2, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Rank": 2 + "Id": 239 }, { - "Id": 240, + "Rank": 1, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Rank": 1 + "Id": 240 }, { - "Id": 241, + "Rank": 2, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "CommandName": "ConvertTo-PnPPage", - "Rank": 2 + "Id": 241 }, { - "Id": 242, + "Rank": 3, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "CommandName": "ConvertTo-PnPPage", - "Rank": 3 + "Id": 242 }, { - "Id": 243, + "Rank": 4, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "CommandName": "ConvertTo-PnPPage", - "Rank": 4 + "Id": 243 }, { - "Id": 244, + "Rank": 5, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Rank": 5 + "Id": 244 }, { - "Id": 245, + "Rank": 6, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "CommandName": "ConvertTo-PnPPage", - "Rank": 6 + "Id": 245 }, { - "Id": 246, + "Rank": 7, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Rank": 7 + "Id": 246 }, { - "Id": 247, + "Rank": 8, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Rank": 8 + "Id": 247 }, { - "Id": 248, + "Rank": 9, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Rank": 9 + "Id": 248 }, { - "Id": 249, + "Rank": 10, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Rank": 10 + "Id": 249 }, { - "Id": 250, + "Rank": 11, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "CommandName": "ConvertTo-PnPPage", - "Rank": 11 + "Id": 250 }, { - "Id": 251, + "Rank": 12, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Rank": 12 + "Id": 251 }, { - "Id": 252, + "Rank": 13, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Rank": 13 + "Id": 252 }, { - "Id": 253, + "Rank": 14, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "CommandName": "ConvertTo-PnPPage", - "Rank": 14 + "Id": 253 }, { - "Id": 254, + "Rank": 1, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Rank": 1 + "Id": 254 }, { - "Id": 255, + "Rank": 2, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "CommandName": "Copy-PnPFile", - "Rank": 2 + "Id": 255 }, { - "Id": 256, + "Rank": 3, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "CommandName": "Copy-PnPFile", - "Rank": 3 + "Id": 256 }, { - "Id": 257, + "Rank": 4, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Rank": 4 + "Id": 257 }, { - "Id": 258, + "Rank": 5, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "CommandName": "Copy-PnPFile", - "Rank": 5 + "Id": 258 }, { - "Id": 259, + "Rank": 6, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "CommandName": "Copy-PnPFile", - "Rank": 6 + "Id": 259 }, { - "Id": 260, + "Rank": 7, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "CommandName": "Copy-PnPFile", - "Rank": 7 + "Id": 260 }, { - "Id": 261, + "Rank": 8, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Rank": 8 + "Id": 261 }, { - "Id": 262, + "Rank": 9, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Rank": 9 + "Id": 262 }, { - "Id": 263, + "Rank": 10, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "CommandName": "Copy-PnPFile", - "Rank": 10 + "Id": 263 }, { - "Id": 264, + "Rank": 1, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Rank": 1 + "Id": 264 }, { - "Id": 265, + "Rank": 2, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "CommandName": "Copy-PnPFolder", - "Rank": 2 + "Id": 265 }, { - "Id": 266, + "Rank": 3, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "CommandName": "Copy-PnPFolder", - "Rank": 3 + "Id": 266 }, { - "Id": 267, + "Rank": 4, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Rank": 4 + "Id": 267 }, { - "Id": 268, + "Rank": 5, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "CommandName": "Copy-PnPFolder", - "Rank": 5 + "Id": 268 }, { - "Id": 269, + "Rank": 6, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "CommandName": "Copy-PnPFolder", - "Rank": 6 + "Id": 269 }, { - "Id": 270, + "Rank": 7, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "CommandName": "Copy-PnPFolder", - "Rank": 7 + "Id": 270 }, { - "Id": 271, + "Rank": 8, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Rank": 8 + "Id": 271 }, { - "Id": 272, + "Rank": 9, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Rank": 9 + "Id": 272 }, { - "Id": 273, + "Rank": 10, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "CommandName": "Copy-PnPFolder", - "Rank": 10 + "Id": 273 }, { - "Id": 274, + "Rank": 1, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "CommandName": "Copy-PnPItemProxy", - "Rank": 1 + "Id": 274 }, { - "Id": 275, + "Rank": 1, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "CommandName": "Copy-PnPList", - "Rank": 1 + "Id": 275 }, { - "Id": 276, + "Rank": 2, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "CommandName": "Copy-PnPList", - "Rank": 2 + "Id": 276 }, { - "Id": 277, + "Rank": 3, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "CommandName": "Copy-PnPList", - "Rank": 3 + "Id": 277 }, { - "Id": 278, + "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", - "Rank": 4 + "Id": 278 }, { - "Id": 279, + "Rank": 1, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "CommandName": "Copy-PnPTeamsTeam", - "Rank": 1 + "Id": 279 }, { - "Id": 280, + "Rank": 2, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "CommandName": "Copy-PnPTeamsTeam", - "Rank": 2 + "Id": 280 }, { - "Id": 281, + "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", - "Rank": 3 + "Id": 281 }, { - "Id": 282, + "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", - "Rank": 4 + "Id": 282 }, { - "Id": 283, + "Rank": 1, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Disable-PnPFeature", - "Rank": 1 + "Id": 283 }, { - "Id": 284, + "Rank": 2, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "CommandName": "Disable-PnPFeature", - "Rank": 2 + "Id": 284 }, { - "Id": 285, + "Rank": 3, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "CommandName": "Disable-PnPFeature", - "Rank": 3 + "Id": 285 }, { - "Id": 286, + "Rank": 1, "Command": "Disable-PnPPageScheduling", "CommandName": "Disable-PnPPageScheduling", - "Rank": 1 + "Id": 286 }, { - "Id": 287, + "Rank": 1, "Command": "Disable-PnPPowerShellTelemetry", "CommandName": "Disable-PnPPowerShellTelemetry", - "Rank": 1 + "Id": 287 }, { - "Id": 288, + "Rank": 2, "Command": "Disable-PnPPowerShellTelemetry -Force", "CommandName": "Disable-PnPPowerShellTelemetry", - "Rank": 2 + "Id": 288 }, { - "Id": 289, + "Rank": 1, "Command": "Disable-PnPSharingForNonOwnersOfSite", "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1 + "Id": 289 }, { - "Id": 290, + "Rank": 1, "Command": "Disable-PnPSiteClassification", "CommandName": "Disable-PnPSiteClassification", - "Rank": 1 + "Id": 290 }, { - "Id": 291, + "Rank": 1, "Command": "Disconnect-PnPOnline", "CommandName": "Disconnect-PnPOnline", - "Rank": 1 + "Id": 291 }, { - "Id": 292, + "Rank": 1, "Command": "Enable-PnPCommSite", "CommandName": "Enable-PnPCommSite", - "Rank": 1 + "Id": 292 }, { - "Id": 293, + "Rank": 2, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "CommandName": "Enable-PnPCommSite", - "Rank": 2 + "Id": 293 }, { - "Id": 294, + "Rank": 1, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Enable-PnPFeature", - "Rank": 1 + "Id": 294 }, { - "Id": 295, + "Rank": 2, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "CommandName": "Enable-PnPFeature", - "Rank": 2 + "Id": 295 }, { - "Id": 296, + "Rank": 3, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "CommandName": "Enable-PnPFeature", - "Rank": 3 + "Id": 296 }, { - "Id": 297, + "Rank": 1, "Command": "Enable-PnPPageScheduling", "CommandName": "Enable-PnPPageScheduling", - "Rank": 1 + "Id": 297 }, { - "Id": 298, + "Rank": 1, "Command": "Enable-PnPPowerShellTelemetry", "CommandName": "Enable-PnPPowerShellTelemetry", - "Rank": 1 + "Id": 298 }, { - "Id": 299, + "Rank": 2, "Command": "Enable-PnPPowerShellTelemetry -Force", "CommandName": "Enable-PnPPowerShellTelemetry", - "Rank": 2 + "Id": 299 }, { - "Id": 300, + "Rank": 1, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "CommandName": "Enable-PnPSiteClassification", - "Rank": 1 + "Id": 300 }, { - "Id": 301, + "Rank": 2, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "CommandName": "Enable-PnPSiteClassification", - "Rank": 2 + "Id": 301 }, { - "Id": 302, + "Rank": 1, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "CommandName": "Export-PnPListToSiteTemplate", - "Rank": 1 + "Id": 302 }, { - "Id": 303, + "Rank": 2, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "CommandName": "Export-PnPListToSiteTemplate", - "Rank": 2 + "Id": 303 }, { - "Id": 304, + "Rank": 1, "Command": "Export-PnPPage -Identity Home.aspx", "CommandName": "Export-PnPPage", - "Rank": 1 + "Id": 304 }, { - "Id": 305, + "Rank": 1, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Rank": 1 + "Id": 305 }, { - "Id": 306, + "Rank": 2, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Rank": 2 + "Id": 306 }, { - "Id": 307, + "Rank": 3, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Rank": 3 + "Id": 307 }, { - "Id": 308, + "Rank": 1, "Command": "Export-PnPTaxonomy", "CommandName": "Export-PnPTaxonomy", - "Rank": 1 + "Id": 308 }, { - "Id": 309, + "Rank": 2, "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "CommandName": "Export-PnPTaxonomy", - "Rank": 2 + "Id": 309 }, { - "Id": 310, + "Rank": 3, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "CommandName": "Export-PnPTaxonomy", - "Rank": 3 + "Id": 310 }, { - "Id": 311, + "Rank": 4, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "CommandName": "Export-PnPTaxonomy", - "Rank": 4 + "Id": 311 }, { - "Id": 312, + "Rank": 1, "Command": "Export-PnPTermGroupToXml", "CommandName": "Export-PnPTermGroupToXml", - "Rank": 1 + "Id": 312 }, { - "Id": 313, + "Rank": 2, "Command": "Export-PnPTermGroupToXml -Out output.xml", "CommandName": "Export-PnPTermGroupToXml", - "Rank": 2 + "Id": 313 }, { - "Id": 314, + "Rank": 3, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "CommandName": "Export-PnPTermGroupToXml", - "Rank": 3 + "Id": 314 }, { - "Id": 315, + "Rank": 1, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "CommandName": "Export-PnPUserInfo", - "Rank": 1 + "Id": 315 }, { - "Id": 316, + "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", - "Rank": 2 + "Id": 316 }, { - "Id": 317, + "Rank": 1, "Command": "Export-PnPUserProfile -LoginName user@domain.com", "CommandName": "Export-PnPUserProfile", - "Rank": 1 + "Id": 317 }, { - "Id": 318, + "Rank": 2, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "CommandName": "Export-PnPUserProfile", - "Rank": 2 + "Id": 318 }, { - "Id": 319, + "Rank": 1, "Command": "Find-PnPFile -Match *.master", "CommandName": "Find-PnPFile", - "Rank": 1 + "Id": 319 }, { - "Id": 320, + "Rank": 2, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "CommandName": "Find-PnPFile", - "Rank": 2 + "Id": 320 }, { - "Id": 321, + "Rank": 3, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "CommandName": "Find-PnPFile", - "Rank": 3 + "Id": 321 }, { - "Id": 322, + "Rank": 1, "Command": "Get-PnPAccessToken", "CommandName": "Get-PnPAccessToken", - "Rank": 1 + "Id": 322 }, { - "Id": 323, + "Rank": 2, "Command": "Get-PnPAccessToken -Decoded", "CommandName": "Get-PnPAccessToken", - "Rank": 2 + "Id": 323 }, { - "Id": 324, + "Rank": 3, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "CommandName": "Get-PnPAccessToken", - "Rank": 3 + "Id": 324 }, { - "Id": 325, + "Rank": 4, "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "CommandName": "Get-PnPAccessToken", - "Rank": 4 + "Id": 325 }, { - "Id": 326, + "Rank": 5, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "CommandName": "Get-PnPAccessToken", - "Rank": 5 + "Id": 326 }, { - "Id": 327, + "Rank": 1, "Command": "Get-PnPAlert", "CommandName": "Get-PnPAlert", - "Rank": 1 + "Id": 327 }, { - "Id": 328, + "Rank": 2, "Command": "Get-PnPAlert -List \"Demo List\"", "CommandName": "Get-PnPAlert", - "Rank": 2 + "Id": 328 }, { - "Id": 329, + "Rank": 3, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPAlert", - "Rank": 3 + "Id": 329 }, { - "Id": 330, + "Rank": 4, "Command": "Get-PnPAlert -Title \"Demo Alert\"", "CommandName": "Get-PnPAlert", - "Rank": 4 + "Id": 330 }, { - "Id": 331, + "Rank": 5, "Command": "Get-PnPAlert -AllUsers", "CommandName": "Get-PnPAlert", - "Rank": 5 + "Id": 331 }, { - "Id": 332, + "Rank": 6, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "CommandName": "Get-PnPAlert", - "Rank": 6 + "Id": 332 }, { - "Id": 333, + "Rank": 1, "Command": "Get-PnPApp", "CommandName": "Get-PnPApp", - "Rank": 1 + "Id": 333 }, { - "Id": 334, + "Rank": 2, "Command": "Get-PnPApp -Scope Site", "CommandName": "Get-PnPApp", - "Rank": 2 + "Id": 334 }, { - "Id": 335, + "Rank": 3, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Get-PnPApp", - "Rank": 3 + "Id": 335 }, { - "Id": 336, + "Rank": 1, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "CommandName": "Get-PnPAppErrors", - "Rank": 1 + "Id": 336 }, { - "Id": 337, + "Rank": 2, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "CommandName": "Get-PnPAppErrors", - "Rank": 2 + "Id": 337 }, { - "Id": 338, + "Rank": 1, "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "CommandName": "Get-PnPAppInfo", - "Rank": 1 + "Id": 338 }, { - "Id": 339, + "Rank": 2, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Get-PnPAppInfo", - "Rank": 2 + "Id": 339 }, { - "Id": 340, + "Rank": 3, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "CommandName": "Get-PnPAppInfo", - "Rank": 3 + "Id": 340 }, { - "Id": 341, + "Rank": 1, "Command": "Get-PnPApplicationCustomizer", "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 1 + "Id": 341 }, { - "Id": 342, + "Rank": 2, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 2 + "Id": 342 }, { - "Id": 343, + "Rank": 3, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 3 + "Id": 343 }, { - "Id": 344, + "Rank": 1, "Command": "Get-PnPAuditing", "CommandName": "Get-PnPAuditing", - "Rank": 1 + "Id": 344 }, { - "Id": 345, + "Rank": 1, "Command": "Get-PnPAuthenticationRealm", "CommandName": "Get-PnPAuthenticationRealm", - "Rank": 1 + "Id": 345 }, { - "Id": 346, + "Rank": 2, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "CommandName": "Get-PnPAuthenticationRealm", - "Rank": 2 + "Id": 346 }, { - "Id": 347, + "Rank": 1, "Command": "Get-PnPAvailableLanguage", "CommandName": "Get-PnPAvailableLanguage", - "Rank": 1 + "Id": 347 }, { - "Id": 348, + "Rank": 1, "Command": "Get-PnPAvailableSensitivityLabel", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 1 + "Id": 348 }, { - "Id": 349, + "Rank": 2, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 2 + "Id": 349 }, { - "Id": 350, + "Rank": 3, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 3 + "Id": 350 }, { - "Id": 351, + "Rank": 1, "Command": "Get-PnPAvailableSiteClassification", "CommandName": "Get-PnPAvailableSiteClassification", - "Rank": 1 + "Id": 351 }, { - "Id": 352, + "Rank": 1, "Command": "Get-PnPAzureACSPrincipal", "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 1 + "Id": 352 }, { - "Id": 353, + "Rank": 2, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 2 + "Id": 353 }, { - "Id": 354, + "Rank": 3, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 3 + "Id": 354 }, { - "Id": 355, + "Rank": 4, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 4 + "Id": 355 }, { - "Id": 356, + "Rank": 1, "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1 + "Id": 356 }, { - "Id": 357, + "Rank": 2, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 2 + "Id": 357 }, { - "Id": 358, + "Rank": 3, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 3 + "Id": 358 }, { - "Id": 359, + "Rank": 1, "Command": "Get-PnPAzureADActivityReportSignIn", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1 + "Id": 359 }, { - "Id": 360, + "Rank": 2, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 2 + "Id": 360 }, { - "Id": 361, + "Rank": 3, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 3 + "Id": 361 }, { - "Id": 362, + "Rank": 1, "Command": "Get-PnPAzureADApp", "CommandName": "Get-PnPAzureADApp", - "Rank": 1 + "Id": 362 }, { - "Id": 363, + "Rank": 2, "Command": "Get-PnPAzureADApp -Identity MyApp", "CommandName": "Get-PnPAzureADApp", - "Rank": 2 + "Id": 363 }, { - "Id": 364, + "Rank": 3, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Get-PnPAzureADApp", - "Rank": 3 + "Id": 364 }, { - "Id": 365, + "Rank": 4, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPAzureADApp", - "Rank": 4 + "Id": 365 }, { - "Id": 366, + "Rank": 1, "Command": "Get-PnPAzureADAppPermission", "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 1 + "Id": 366 }, { - "Id": 367, + "Rank": 2, "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 2 + "Id": 367 }, { - "Id": 368, + "Rank": 3, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 3 + "Id": 368 }, { - "Id": 369, + "Rank": 1, "Command": "Get-PnPAzureADAppSitePermission", "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 1 + "Id": 369 }, { - "Id": 370, + "Rank": 2, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 2 + "Id": 370 }, { - "Id": 371, + "Rank": 3, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 3 + "Id": 371 }, { - "Id": 372, + "Rank": 4, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 4 + "Id": 372 }, { - "Id": 373, + "Rank": 5, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 5 + "Id": 373 }, { - "Id": 374, + "Rank": 1, "Command": "Get-PnPAzureADGroup", "CommandName": "Get-PnPAzureADGroup", - "Rank": 1 + "Id": 374 }, { - "Id": 375, + "Rank": 2, "Command": "Get-PnPAzureADGroup -Identity $groupId", "CommandName": "Get-PnPAzureADGroup", - "Rank": 2 + "Id": 375 }, { - "Id": 376, + "Rank": 3, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "CommandName": "Get-PnPAzureADGroup", - "Rank": 3 + "Id": 376 }, { - "Id": 377, + "Rank": 4, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "CommandName": "Get-PnPAzureADGroup", - "Rank": 4 + "Id": 377 }, { - "Id": 378, + "Rank": 5, "Command": "Get-PnPAzureADGroup -Identity $group", "CommandName": "Get-PnPAzureADGroup", - "Rank": 5 + "Id": 378 }, { - "Id": 379, + "Rank": 1, "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "CommandName": "Get-PnPAzureADGroupMember", - "Rank": 1 + "Id": 379 }, { - "Id": 380, + "Rank": 2, "Command": "Get-PnPAzureADGroupMember -Identity $group", "CommandName": "Get-PnPAzureADGroupMember", - "Rank": 2 + "Id": 380 }, { - "Id": 381, + "Rank": 1, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "CommandName": "Get-PnPAzureADGroupOwner", - "Rank": 1 + "Id": 381 }, { - "Id": 382, + "Rank": 2, "Command": "Get-PnPAzureADGroupOwner -Identity $group", "CommandName": "Get-PnPAzureADGroupOwner", - "Rank": 2 + "Id": 382 }, { - "Id": 383, + "Rank": 1, "Command": "Get-PnPAzureADServicePrincipal", "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 1 + "Id": 383 }, { - "Id": 384, + "Rank": 2, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 2 + "Id": 384 }, { - "Id": 385, + "Rank": 3, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 3 + "Id": 385 }, { - "Id": 386, + "Rank": 4, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 4 + "Id": 386 }, { - "Id": 387, + "Rank": 5, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 5 + "Id": 387 }, { - "Id": 388, + "Rank": 1, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 1 + "Id": 388 }, { - "Id": 389, + "Rank": 2, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 2 + "Id": 389 }, { - "Id": 390, + "Rank": 1, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Rank": 1 + "Id": 390 }, { - "Id": 391, + "Rank": 2, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Rank": 2 + "Id": 391 }, { - "Id": 392, + "Rank": 1, "Command": "Get-PnPAzureADUser", "CommandName": "Get-PnPAzureADUser", - "Rank": 1 + "Id": 392 }, { - "Id": 393, + "Rank": 2, "Command": "Get-PnPAzureADUser -EndIndex 50", "CommandName": "Get-PnPAzureADUser", - "Rank": 2 + "Id": 393 }, { - "Id": 394, + "Rank": 3, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "CommandName": "Get-PnPAzureADUser", - "Rank": 3 + "Id": 394 }, { - "Id": 395, + "Rank": 4, "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "CommandName": "Get-PnPAzureADUser", - "Rank": 4 + "Id": 395 }, { - "Id": 396, + "Rank": 5, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "CommandName": "Get-PnPAzureADUser", - "Rank": 5 + "Id": 396 }, { - "Id": 397, + "Rank": 6, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "CommandName": "Get-PnPAzureADUser", - "Rank": 6 + "Id": 397 }, { - "Id": 398, + "Rank": 7, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "CommandName": "Get-PnPAzureADUser", - "Rank": 7 + "Id": 398 }, { - "Id": 399, + "Rank": 8, "Command": "Get-PnPAzureADUser -Delta", "CommandName": "Get-PnPAzureADUser", - "Rank": 8 + "Id": 399 }, { - "Id": 400, + "Rank": 9, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "CommandName": "Get-PnPAzureADUser", - "Rank": 9 + "Id": 400 }, { - "Id": 401, + "Rank": 10, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "CommandName": "Get-PnPAzureADUser", - "Rank": 10 + "Id": 401 }, { - "Id": 402, + "Rank": 1, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "CommandName": "Get-PnPAzureCertificate", - "Rank": 1 + "Id": 402 }, { - "Id": 403, + "Rank": 2, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "CommandName": "Get-PnPAzureCertificate", - "Rank": 2 + "Id": 403 }, { - "Id": 404, + "Rank": 3, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "CommandName": "Get-PnPAzureCertificate", - "Rank": 3 + "Id": 404 }, { - "Id": 405, + "Rank": 1, "Command": "Get-PnPBrowserIdleSignout", "CommandName": "Get-PnPBrowserIdleSignout", - "Rank": 1 + "Id": 405 }, { - "Id": 406, + "Rank": 1, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 1 + "Id": 406 }, { - "Id": 407, + "Rank": 2, "Command": "Get-PnPBuiltInDesignPackageVisibility", "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2 + "Id": 407 }, { - "Id": 408, + "Rank": 1, "Command": "Get-PnPBuiltInSiteTemplateSettings", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1 + "Id": 408 }, { - "Id": 409, + "Rank": 2, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 2 + "Id": 409 }, { - "Id": 410, + "Rank": 3, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 3 + "Id": 410 }, { - "Id": 411, + "Rank": 4, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 4 + "Id": 411 }, { - "Id": 412, + "Rank": 5, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 5 + "Id": 412 }, { - "Id": 413, + "Rank": 1, "Command": "Get-PnPChangeLog", "CommandName": "Get-PnPChangeLog", - "Rank": 1 + "Id": 413 }, { - "Id": 414, + "Rank": 2, "Command": "Get-PnPChangeLog -Nightly", "CommandName": "Get-PnPChangeLog", - "Rank": 2 + "Id": 414 }, { - "Id": 415, + "Rank": 1, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "CommandName": "Get-PnPCompatibleHubContentTypes", - "Rank": 1 + "Id": 415 }, { - "Id": 416, + "Rank": 2, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "CommandName": "Get-PnPCompatibleHubContentTypes", - "Rank": 2 + "Id": 416 }, { - "Id": 417, + "Rank": 1, "Command": "Get-PnPContentType", "CommandName": "Get-PnPContentType", - "Rank": 1 + "Id": 417 }, { - "Id": 418, + "Rank": 2, "Command": "Get-PnPContentType -InSiteHierarchy", "CommandName": "Get-PnPContentType", - "Rank": 2 + "Id": 418 }, { - "Id": 419, + "Rank": 3, "Command": "Get-PnPContentType -Identity \"Project Document\"", "CommandName": "Get-PnPContentType", - "Rank": 3 + "Id": 419 }, { - "Id": 420, + "Rank": 4, "Command": "Get-PnPContentType -List \"Documents\"", "CommandName": "Get-PnPContentType", - "Rank": 4 + "Id": 420 }, { - "Id": 421, + "Rank": 1, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "CommandName": "Get-PnPContentTypePublishingStatus", - "Rank": 1 + "Id": 421 }, { - "Id": 422, + "Rank": 1, "Command": "Get-PnPCustomAction", "CommandName": "Get-PnPCustomAction", - "Rank": 1 + "Id": 422 }, { - "Id": 423, + "Rank": 2, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Get-PnPCustomAction", - "Rank": 2 + "Id": 423 }, { - "Id": 424, + "Rank": 3, "Command": "Get-PnPCustomAction -Scope web", "CommandName": "Get-PnPCustomAction", - "Rank": 3 + "Id": 424 }, { - "Id": 425, + "Rank": 1, "Command": "Get-PnPDeletedMicrosoft365Group", "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1 + "Id": 425 }, { - "Id": 426, + "Rank": 2, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Rank": 2 + "Id": 426 }, { - "Id": 427, + "Rank": 1, "Command": "Get-PnPDeletedTeam", "CommandName": "Get-PnPDeletedTeam", - "Rank": 1 + "Id": 427 }, { - "Id": 428, + "Rank": 1, "Command": "Get-PnPDiagnostics", "CommandName": "Get-PnPDiagnostics", - "Rank": 1 + "Id": 428 }, { - "Id": 429, + "Rank": 1, "Command": "Get-PnPDisableSpacesActivation", "CommandName": "Get-PnPDisableSpacesActivation", - "Rank": 1 + "Id": 429 }, { - "Id": 430, + "Rank": 1, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "CommandName": "Get-PnPDocumentSetTemplate", - "Rank": 1 + "Id": 430 }, { - "Id": 431, + "Rank": 2, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "CommandName": "Get-PnPDocumentSetTemplate", - "Rank": 2 + "Id": 431 }, { - "Id": 432, + "Rank": 1, "Command": "Get-PnPEventReceiver", "CommandName": "Get-PnPEventReceiver", - "Rank": 1 + "Id": 432 }, { - "Id": 433, + "Rank": 2, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPEventReceiver", - "Rank": 2 + "Id": 433 }, { - "Id": 434, + "Rank": 3, "Command": "Get-PnPEventReceiver -Identity MyReceiver", "CommandName": "Get-PnPEventReceiver", - "Rank": 3 + "Id": 434 }, { - "Id": 435, + "Rank": 4, "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "CommandName": "Get-PnPEventReceiver", - "Rank": 4 + "Id": 435 }, { - "Id": 436, + "Rank": 5, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPEventReceiver", - "Rank": 5 + "Id": 436 }, { - "Id": 437, + "Rank": 6, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "CommandName": "Get-PnPEventReceiver", - "Rank": 6 + "Id": 437 }, { - "Id": 438, + "Rank": 7, "Command": "Get-PnPEventReceiver -Scope Site", "CommandName": "Get-PnPEventReceiver", - "Rank": 7 + "Id": 438 }, { - "Id": 439, + "Rank": 8, "Command": "Get-PnPEventReceiver -Scope Web", "CommandName": "Get-PnPEventReceiver", - "Rank": 8 + "Id": 439 }, { - "Id": 440, + "Rank": 9, "Command": "Get-PnPEventReceiver -Scope All", "CommandName": "Get-PnPEventReceiver", - "Rank": 9 + "Id": 440 }, { - "Id": 441, + "Rank": 1, "Command": "Get-PnPException", "CommandName": "Get-PnPException", - "Rank": 1 + "Id": 441 }, { - "Id": 442, + "Rank": 2, "Command": "Get-PnPException -All", "CommandName": "Get-PnPException", - "Rank": 2 + "Id": 442 }, { - "Id": 443, + "Rank": 1, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "CommandName": "Get-PnPExternalUser", - "Rank": 1 + "Id": 443 }, { - "Id": 444, + "Rank": 2, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "CommandName": "Get-PnPExternalUser", - "Rank": 2 + "Id": 444 }, { - "Id": 445, + "Rank": 1, "Command": "Get-PnPFeature", "CommandName": "Get-PnPFeature", - "Rank": 1 + "Id": 445 }, { - "Id": 446, + "Rank": 2, "Command": "Get-PnPFeature -Scope Site", "CommandName": "Get-PnPFeature", - "Rank": 2 + "Id": 446 }, { - "Id": 447, + "Rank": 3, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPFeature", - "Rank": 3 + "Id": 447 }, { - "Id": 448, + "Rank": 4, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "CommandName": "Get-PnPFeature", - "Rank": 4 + "Id": 448 }, { - "Id": 449, + "Rank": 1, "Command": "Get-PnPField", "CommandName": "Get-PnPField", - "Rank": 1 + "Id": 449 }, { - "Id": 450, + "Rank": 2, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "CommandName": "Get-PnPField", - "Rank": 2 + "Id": 450 }, { - "Id": 451, + "Rank": 3, "Command": "Get-PnPField -Group \"Custom Columns\"", "CommandName": "Get-PnPField", - "Rank": 3 + "Id": 451 }, { - "Id": 452, + "Rank": 1, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "CommandName": "Get-PnPFile", - "Rank": 1 + "Id": 452 }, { - "Id": 453, + "Rank": 2, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "CommandName": "Get-PnPFile", - "Rank": 2 + "Id": 453 }, { - "Id": 454, + "Rank": 3, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "CommandName": "Get-PnPFile", - "Rank": 3 + "Id": 454 }, { - "Id": 455, + "Rank": 4, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "CommandName": "Get-PnPFile", - "Rank": 4 + "Id": 455 }, { - "Id": 456, + "Rank": 5, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "CommandName": "Get-PnPFile", - "Rank": 5 + "Id": 456 }, { - "Id": 457, + "Rank": 6, "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "CommandName": "Get-PnPFile", - "Rank": 6 + "Id": 457 }, { - "Id": 458, + "Rank": 7, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "CommandName": "Get-PnPFile", - "Rank": 7 + "Id": 458 }, { - "Id": 459, + "Rank": 1, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Get-PnPFileSharingLink", - "Rank": 1 + "Id": 459 }, { - "Id": 460, + "Rank": 1, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "CommandName": "Get-PnPFileVersion", - "Rank": 1 + "Id": 460 }, { - "Id": 461, + "Rank": 2, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "CommandName": "Get-PnPFileVersion", - "Rank": 2 + "Id": 461 }, { - "Id": 462, + "Rank": 1, "Command": "Get-PnPFlow -AsAdmin", "CommandName": "Get-PnPFlow", - "Rank": 1 + "Id": 462 }, { - "Id": 463, + "Rank": 2, "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "CommandName": "Get-PnPFlow", - "Rank": 2 + "Id": 463 }, { - "Id": 464, + "Rank": 3, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "CommandName": "Get-PnPFlow", - "Rank": 3 + "Id": 464 }, { - "Id": 465, + "Rank": 1, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "CommandName": "Get-PnPFlowOwner", - "Rank": 1 + "Id": 465 }, { - "Id": 466, + "Rank": 1, "Command": "Get-PnPFolder", "CommandName": "Get-PnPFolder", - "Rank": 1 + "Id": 466 }, { - "Id": 467, + "Rank": 2, "Command": "Get-PnPFolder -Url \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Rank": 2 + "Id": 467 }, { - "Id": 468, + "Rank": 3, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "CommandName": "Get-PnPFolder", - "Rank": 3 + "Id": 468 }, { - "Id": 469, + "Rank": 4, "Command": "Get-PnPFolder -List \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Rank": 4 + "Id": 469 }, { - "Id": 470, + "Rank": 1, "Command": "Get-PnPFolderFile", "CommandName": "Get-PnPFolderFile", - "Rank": 1 + "Id": 470 }, { - "Id": 471, + "Rank": 2, "Command": "Get-PnPFolderFile -Recurse", "CommandName": "Get-PnPFolderFile", - "Rank": 2 + "Id": 471 }, { - "Id": 472, + "Rank": 3, "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderFile", - "Rank": 3 + "Id": 472 }, { - "Id": 473, + "Rank": 4, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "CommandName": "Get-PnPFolderFile", - "Rank": 4 + "Id": 473 }, { - "Id": 474, + "Rank": 5, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderFile", - "Rank": 5 + "Id": 474 }, { - "Id": 475, + "Rank": 1, "Command": "Get-PnPFolderFolder", "CommandName": "Get-PnPFolderFolder", - "Rank": 1 + "Id": 475 }, { - "Id": 476, + "Rank": 2, "Command": "Get-PnPFolderFolder -Recurse", "CommandName": "Get-PnPFolderFolder", - "Rank": 2 + "Id": 476 }, { - "Id": 477, + "Rank": 3, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderFolder", - "Rank": 3 + "Id": 477 }, { - "Id": 478, + "Rank": 4, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "CommandName": "Get-PnPFolderFolder", - "Rank": 4 + "Id": 478 }, { - "Id": 479, + "Rank": 5, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "CommandName": "Get-PnPFolderFolder", - "Rank": 5 + "Id": 479 }, { - "Id": 480, + "Rank": 6, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderFolder", - "Rank": 6 + "Id": 480 }, { - "Id": 481, + "Rank": 1, "Command": "Get-PnPFolderItem", "CommandName": "Get-PnPFolderItem", - "Rank": 1 + "Id": 481 }, { - "Id": 482, + "Rank": 2, "Command": "Get-PnPFolderItem -Recurse", "CommandName": "Get-PnPFolderItem", - "Rank": 2 + "Id": 482 }, { - "Id": 483, + "Rank": 3, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderItem", - "Rank": 3 + "Id": 483 }, { - "Id": 484, + "Rank": 4, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "CommandName": "Get-PnPFolderItem", - "Rank": 4 + "Id": 484 }, { - "Id": 485, + "Rank": 5, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "CommandName": "Get-PnPFolderItem", - "Rank": 5 + "Id": 485 }, { - "Id": 486, + "Rank": 6, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderItem", - "Rank": 6 + "Id": 486 }, { - "Id": 487, + "Rank": 1, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Get-PnPFolderSharingLink", - "Rank": 1 + "Id": 487 }, { - "Id": 488, + "Rank": 1, "Command": "Get-PnPFolderStorageMetric", "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 1 + "Id": 488 }, { - "Id": 489, + "Rank": 2, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 2 + "Id": 489 }, { - "Id": 490, + "Rank": 3, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 3 + "Id": 490 }, { - "Id": 491, + "Rank": 1, "Command": "Get-PnPFooter", "CommandName": "Get-PnPFooter", - "Rank": 1 + "Id": 491 }, { - "Id": 492, + "Rank": 1, "Command": "Get-PnPGraphAccessToken", "CommandName": "Get-PnPGraphAccessToken", - "Rank": 1 + "Id": 492 }, { - "Id": 493, + "Rank": 2, "Command": "Get-PnPGraphAccessToken -Decoded", "CommandName": "Get-PnPGraphAccessToken", - "Rank": 2 + "Id": 493 }, { - "Id": 494, + "Rank": 1, "Command": "Get-PnPGraphSubscription", "CommandName": "Get-PnPGraphSubscription", - "Rank": 1 + "Id": 494 }, { - "Id": 495, + "Rank": 2, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "CommandName": "Get-PnPGraphSubscription", - "Rank": 2 + "Id": 495 }, { - "Id": 496, + "Rank": 1, "Command": "Get-PnPGroup", "CommandName": "Get-PnPGroup", - "Rank": 1 + "Id": 496 }, { - "Id": 497, + "Rank": 2, "Command": "Get-PnPGroup -Identity 'My Site Users'", "CommandName": "Get-PnPGroup", - "Rank": 2 + "Id": 497 }, { - "Id": 498, + "Rank": 3, "Command": "Get-PnPGroup -AssociatedMemberGroup", "CommandName": "Get-PnPGroup", - "Rank": 3 + "Id": 498 }, { - "Id": 499, + "Rank": 1, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "CommandName": "Get-PnPGroupMember", - "Rank": 1 + "Id": 499 }, { - "Id": 500, + "Rank": 2, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "CommandName": "Get-PnPGroupMember", - "Rank": 2 + "Id": 500 }, { - "Id": 501, + "Rank": 1, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "CommandName": "Get-PnPGroupPermissions", - "Rank": 1 + "Id": 501 }, { - "Id": 502, + "Rank": 1, "Command": "Get-PnPHideDefaultThemes", "CommandName": "Get-PnPHideDefaultThemes", - "Rank": 1 + "Id": 502 }, { - "Id": 503, + "Rank": 1, "Command": "Get-PnPHomePage", "CommandName": "Get-PnPHomePage", - "Rank": 1 + "Id": 503 }, { - "Id": 504, + "Rank": 1, "Command": "Get-PnPHomeSite", "CommandName": "Get-PnPHomeSite", - "Rank": 1 + "Id": 504 }, { - "Id": 505, + "Rank": 2, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "CommandName": "Get-PnPHomeSite", - "Rank": 2 + "Id": 505 }, { - "Id": 506, + "Rank": 3, "Command": "Get-PnPHomeSite -Detailed", "CommandName": "Get-PnPHomeSite", - "Rank": 3 + "Id": 506 }, { - "Id": 507, + "Rank": 1, "Command": "Get-PnPHubSite", "CommandName": "Get-PnPHubSite", - "Rank": 1 + "Id": 507 }, { - "Id": 508, + "Rank": 2, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "CommandName": "Get-PnPHubSite", - "Rank": 2 + "Id": 508 }, { - "Id": 509, + "Rank": 3, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "CommandName": "Get-PnPHubSite", - "Rank": 3 + "Id": 509 }, { - "Id": 510, + "Rank": 1, "Command": "Get-PnPHubSiteChild", "CommandName": "Get-PnPHubSiteChild", - "Rank": 1 + "Id": 510 }, { - "Id": 511, + "Rank": 2, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "CommandName": "Get-PnPHubSiteChild", - "Rank": 2 + "Id": 511 }, { - "Id": 512, + "Rank": 1, "Command": "Get-PnPInPlaceRecordsManagement", "CommandName": "Get-PnPInPlaceRecordsManagement", - "Rank": 1 + "Id": 512 }, { - "Id": 513, + "Rank": 1, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "CommandName": "Get-PnPIsSiteAliasAvailable", - "Rank": 1 + "Id": 513 }, { - "Id": 514, + "Rank": 1, "Command": "Get-PnPJavaScriptLink", "CommandName": "Get-PnPJavaScriptLink", - "Rank": 1 + "Id": 514 }, { - "Id": 515, + "Rank": 2, "Command": "Get-PnPJavaScriptLink -Scope All", "CommandName": "Get-PnPJavaScriptLink", - "Rank": 2 + "Id": 515 }, { - "Id": 516, + "Rank": 3, "Command": "Get-PnPJavaScriptLink -Scope Web", "CommandName": "Get-PnPJavaScriptLink", - "Rank": 3 + "Id": 516 }, { - "Id": 517, + "Rank": 4, "Command": "Get-PnPJavaScriptLink -Scope Site", "CommandName": "Get-PnPJavaScriptLink", - "Rank": 4 + "Id": 517 }, { - "Id": 518, + "Rank": 5, "Command": "Get-PnPJavaScriptLink -Name Test", "CommandName": "Get-PnPJavaScriptLink", - "Rank": 5 + "Id": 518 }, { - "Id": 519, + "Rank": 1, "Command": "Get-PnPKnowledgeHubSite", "CommandName": "Get-PnPKnowledgeHubSite", - "Rank": 1 + "Id": 519 }, { - "Id": 520, + "Rank": 1, "Command": "Get-PnPLabel", "CommandName": "Get-PnPLabel", - "Rank": 1 + "Id": 520 }, { - "Id": 521, + "Rank": 2, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "CommandName": "Get-PnPLabel", - "Rank": 2 + "Id": 521 }, { - "Id": 522, + "Rank": 1, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "CommandName": "Get-PnPLargeListOperationStatus", - "Rank": 1 + "Id": 522 }, { - "Id": 523, + "Rank": 1, "Command": "Get-PnPList", "CommandName": "Get-PnPList", - "Rank": 1 + "Id": 523 }, { - "Id": 524, + "Rank": 2, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Get-PnPList", - "Rank": 2 + "Id": 524 }, { - "Id": 525, + "Rank": 3, "Command": "Get-PnPList -Identity Lists/Announcements", "CommandName": "Get-PnPList", - "Rank": 3 + "Id": 525 }, { - "Id": 526, + "Rank": 4, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "CommandName": "Get-PnPList", - "Rank": 4 + "Id": 526 }, { - "Id": 527, + "Rank": 5, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "CommandName": "Get-PnPList", - "Rank": 5 + "Id": 527 }, { - "Id": 528, + "Rank": 1, "Command": "Get-PnPListDesign", "CommandName": "Get-PnPListDesign", - "Rank": 1 + "Id": 528 }, { - "Id": 529, + "Rank": 2, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPListDesign", - "Rank": 2 + "Id": 529 }, { - "Id": 530, + "Rank": 3, "Command": "Get-PnPListDesign -Identity ListEvent", "CommandName": "Get-PnPListDesign", - "Rank": 3 + "Id": 530 }, { - "Id": 531, + "Rank": 1, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "CommandName": "Get-PnPListInformationRightsManagement", - "Rank": 1 + "Id": 531 }, { - "Id": 532, + "Rank": 1, "Command": "Get-PnPListItem -List Tasks", "CommandName": "Get-PnPListItem", - "Rank": 1 + "Id": 532 }, { - "Id": 533, + "Rank": 2, "Command": "Get-PnPListItem -List Tasks -Id 1", "CommandName": "Get-PnPListItem", - "Rank": 2 + "Id": 533 }, { - "Id": 534, + "Rank": 3, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "CommandName": "Get-PnPListItem", - "Rank": 3 + "Id": 534 }, { - "Id": 535, + "Rank": 4, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "CommandName": "Get-PnPListItem", - "Rank": 4 + "Id": 535 }, { - "Id": 536, + "Rank": 5, "Command": "Get-PnPListItem -List Tasks -Query \"\"", "CommandName": "Get-PnPListItem", - "Rank": 5 + "Id": 536 }, { - "Id": 537, + "Rank": 6, "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "CommandName": "Get-PnPListItem", - "Rank": 6 + "Id": 537 }, { - "Id": 538, + "Rank": 7, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "CommandName": "Get-PnPListItem", - "Rank": 7 + "Id": 538 }, { - "Id": 539, + "Rank": 8, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "CommandName": "Get-PnPListItem", - "Rank": 8 + "Id": 539 }, { - "Id": 540, + "Rank": 9, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "CommandName": "Get-PnPListItem", - "Rank": 9 + "Id": 540 }, { - "Id": 541, + "Rank": 1, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "CommandName": "Get-PnPListItemAttachment", - "Rank": 1 + "Id": 541 }, { - "Id": 542, + "Rank": 2, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "CommandName": "Get-PnPListItemAttachment", - "Rank": 2 + "Id": 542 }, { - "Id": 543, + "Rank": 1, "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "CommandName": "Get-PnPListItemComment", - "Rank": 1 + "Id": 543 }, { - "Id": 544, + "Rank": 1, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "CommandName": "Get-PnPListItemPermission", - "Rank": 1 + "Id": 544 }, { - "Id": 545, + "Rank": 1, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "CommandName": "Get-PnPListItemVersion", - "Rank": 1 + "Id": 545 }, { - "Id": 546, + "Rank": 1, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "CommandName": "Get-PnPListPermissions", - "Rank": 1 + "Id": 546 }, { - "Id": 547, + "Rank": 2, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "CommandName": "Get-PnPListPermissions", - "Rank": 2 + "Id": 547 }, { - "Id": 548, + "Rank": 1, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "CommandName": "Get-PnPListRecordDeclaration", - "Rank": 1 + "Id": 548 }, { - "Id": 549, + "Rank": 1, "Command": "Get-PnPMasterPage", "CommandName": "Get-PnPMasterPage", - "Rank": 1 + "Id": 549 }, { - "Id": 550, + "Rank": 1, "Command": "Get-PnPMessageCenterAnnouncement", "CommandName": "Get-PnPMessageCenterAnnouncement", - "Rank": 1 + "Id": 550 }, { - "Id": 551, + "Rank": 2, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "CommandName": "Get-PnPMessageCenterAnnouncement", - "Rank": 2 + "Id": 551 }, { - "Id": 552, + "Rank": 1, "Command": "Get-PnPMicrosoft365ExpiringGroup", "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1 + "Id": 552 }, { - "Id": 553, + "Rank": 2, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 2 + "Id": 553 }, { - "Id": 554, + "Rank": 1, "Command": "Get-PnPMicrosoft365Group", "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 1 + "Id": 554 }, { - "Id": 555, + "Rank": 2, "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 2 + "Id": 555 }, { - "Id": 556, + "Rank": 3, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 3 + "Id": 556 }, { - "Id": 557, + "Rank": 4, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 4 + "Id": 557 }, { - "Id": 558, + "Rank": 5, "Command": "Get-PnPMicrosoft365Group -Identity $group", "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 5 + "Id": 558 }, { - "Id": 559, + "Rank": 6, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 6 + "Id": 559 }, { - "Id": 560, + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupEndpoint", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1 + "Id": 560 }, { - "Id": 561, + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 2 + "Id": 561 }, { - "Id": 562, + "Rank": 3, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 3 + "Id": 562 }, { - "Id": 563, + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 1 + "Id": 563 }, { - "Id": 564, + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 2 + "Id": 564 }, { - "Id": 565, + "Rank": 3, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 3 + "Id": 565 }, { - "Id": 566, + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Rank": 1 + "Id": 566 }, { - "Id": 567, + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Rank": 2 + "Id": 567 }, { - "Id": 568, + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupSettings", "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1 + "Id": 568 }, { - "Id": 569, + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Rank": 2 + "Id": 569 }, { - "Id": 570, + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1 + "Id": 570 }, { - "Id": 571, + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 2 + "Id": 571 }, { - "Id": 572, + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupTeam", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1 + "Id": 572 }, { - "Id": 573, + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 2 + "Id": 573 }, { - "Id": 574, + "Rank": 3, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 3 + "Id": 574 }, { - "Id": 575, + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1 + "Id": 575 }, { - "Id": 576, + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 2 + "Id": 576 }, { - "Id": 577, + "Rank": 3, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 3 + "Id": 577 }, { - "Id": 578, + "Rank": 1, "Command": "Get-PnPNavigationNode", "CommandName": "Get-PnPNavigationNode", - "Rank": 1 + "Id": 578 }, { - "Id": 579, + "Rank": 2, "Command": "Get-PnPNavigationNode -Location QuickLaunch", "CommandName": "Get-PnPNavigationNode", - "Rank": 2 + "Id": 579 }, { - "Id": 580, + "Rank": 3, "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "CommandName": "Get-PnPNavigationNode", - "Rank": 3 + "Id": 580 }, { - "Id": 581, + "Rank": 1, "Command": "Get-PnPOrgAssetsLibrary", "CommandName": "Get-PnPOrgAssetsLibrary", - "Rank": 1 + "Id": 581 }, { - "Id": 582, + "Rank": 1, "Command": "Get-PnPOrgNewsSite", "CommandName": "Get-PnPOrgNewsSite", - "Rank": 1 + "Id": 582 }, { - "Id": 583, + "Rank": 1, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "CommandName": "Get-PnPPage", - "Rank": 1 + "Id": 583 }, { - "Id": 584, + "Rank": 2, "Command": "Get-PnPPage \"MyPage\"", "CommandName": "Get-PnPPage", - "Rank": 2 + "Id": 584 }, { - "Id": 585, + "Rank": 3, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "CommandName": "Get-PnPPage", - "Rank": 3 + "Id": 585 }, { - "Id": 586, + "Rank": 4, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "CommandName": "Get-PnPPage", - "Rank": 4 + "Id": 586 }, { - "Id": 587, + "Rank": 1, "Command": "Get-PnPPageComponent -Page Home", "CommandName": "Get-PnPPageComponent", - "Rank": 1 + "Id": 587 }, { - "Id": 588, + "Rank": 2, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPPageComponent", - "Rank": 2 + "Id": 588 }, { - "Id": 589, + "Rank": 3, "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "CommandName": "Get-PnPPageComponent", - "Rank": 3 + "Id": 589 }, { - "Id": 590, + "Rank": 1, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "CommandName": "Get-PnPPlannerBucket", - "Rank": 1 + "Id": 590 }, { - "Id": 591, + "Rank": 1, "Command": "Get-PnPPlannerConfiguration", "CommandName": "Get-PnPPlannerConfiguration", - "Rank": 1 + "Id": 591 }, { - "Id": 592, + "Rank": 1, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "CommandName": "Get-PnPPlannerPlan", - "Rank": 1 + "Id": 592 }, { - "Id": 593, + "Rank": 2, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "CommandName": "Get-PnPPlannerPlan", - "Rank": 2 + "Id": 593 }, { - "Id": 594, + "Rank": 3, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "CommandName": "Get-PnPPlannerPlan", - "Rank": 3 + "Id": 594 }, { - "Id": 595, + "Rank": 1, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "CommandName": "Get-PnPPlannerRosterMember", - "Rank": 1 + "Id": 595 }, { - "Id": 596, + "Rank": 1, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "CommandName": "Get-PnPPlannerRosterPlan", - "Rank": 1 + "Id": 596 }, { - "Id": 597, + "Rank": 2, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPPlannerRosterPlan", - "Rank": 2 + "Id": 597 }, { - "Id": 598, + "Rank": 1, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "CommandName": "Get-PnPPlannerTask", - "Rank": 1 + "Id": 598 }, { - "Id": 599, + "Rank": 2, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "CommandName": "Get-PnPPlannerTask", - "Rank": 2 + "Id": 599 }, { - "Id": 600, + "Rank": 3, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "CommandName": "Get-PnPPlannerTask", - "Rank": 3 + "Id": 600 }, { - "Id": 601, + "Rank": 1, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPPlannerUserPolicy", - "Rank": 1 + "Id": 601 }, { - "Id": 602, + "Rank": 1, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "CommandName": "Get-PnPPowerPlatformConnector", - "Rank": 1 + "Id": 602 }, { - "Id": 603, + "Rank": 1, "Command": "Get-PnPPowerPlatformEnvironment", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 1 + "Id": 603 }, { - "Id": 604, + "Rank": 2, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 2 + "Id": 604 }, { - "Id": 605, + "Rank": 3, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 3 + "Id": 605 }, { - "Id": 606, + "Rank": 1, "Command": "Get-PnPPowerShellTelemetryEnabled", "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1 + "Id": 606 }, { - "Id": 607, + "Rank": 1, "Command": "Get-PnPPropertyBag", "CommandName": "Get-PnPPropertyBag", - "Rank": 1 + "Id": 607 }, { - "Id": 608, + "Rank": 2, "Command": "Get-PnPPropertyBag -Key MyKey", "CommandName": "Get-PnPPropertyBag", - "Rank": 2 + "Id": 608 }, { - "Id": 609, + "Rank": 3, "Command": "Get-PnPPropertyBag -Folder /MyFolder", "CommandName": "Get-PnPPropertyBag", - "Rank": 3 + "Id": 609 }, { - "Id": 610, + "Rank": 4, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "CommandName": "Get-PnPPropertyBag", - "Rank": 4 + "Id": 610 }, { - "Id": 611, + "Rank": 5, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "CommandName": "Get-PnPPropertyBag", - "Rank": 5 + "Id": 611 }, { - "Id": 612, + "Rank": 1, "Command": "Get-PnPPublishingImageRendition", "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 1 + "Id": 612 }, { - "Id": 613, + "Rank": 2, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 2 + "Id": 613 }, { - "Id": 614, + "Rank": 3, "Command": "Get-PnPPublishingImageRendition -Identity 2", "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 3 + "Id": 614 }, { - "Id": 615, + "Rank": 1, "Command": "Get-PnPRecycleBinItem", "CommandName": "Get-PnPRecycleBinItem", - "Rank": 1 + "Id": 615 }, { - "Id": 616, + "Rank": 2, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "CommandName": "Get-PnPRecycleBinItem", - "Rank": 2 + "Id": 616 }, { - "Id": 617, + "Rank": 3, "Command": "Get-PnPRecycleBinItem -FirstStage", "CommandName": "Get-PnPRecycleBinItem", - "Rank": 3 + "Id": 617 }, { - "Id": 618, + "Rank": 4, "Command": "Get-PnPRecycleBinItem -SecondStage", "CommandName": "Get-PnPRecycleBinItem", - "Rank": 4 + "Id": 618 }, { - "Id": 619, + "Rank": 5, "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "CommandName": "Get-PnPRecycleBinItem", - "Rank": 5 + "Id": 619 }, { - "Id": 620, + "Rank": 1, "Command": "Get-PnPRequestAccessEmails", "CommandName": "Get-PnPRequestAccessEmails", - "Rank": 1 + "Id": 620 }, { - "Id": 621, + "Rank": 1, "Command": "Get-PnPRetentionLabel", "CommandName": "Get-PnPRetentionLabel", - "Rank": 1 + "Id": 621 }, { - "Id": 622, + "Rank": 2, "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "CommandName": "Get-PnPRetentionLabel", - "Rank": 2 + "Id": 622 }, { - "Id": 623, + "Rank": 1, "Command": "Get-PnPRoleDefinition", "CommandName": "Get-PnPRoleDefinition", - "Rank": 1 + "Id": 623 }, { - "Id": 624, + "Rank": 2, "Command": "Get-PnPRoleDefinition -Identity Read", "CommandName": "Get-PnPRoleDefinition", - "Rank": 2 + "Id": 624 }, { - "Id": 625, + "Rank": 3, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "CommandName": "Get-PnPRoleDefinition", - "Rank": 3 + "Id": 625 }, { - "Id": 626, + "Rank": 1, "Command": "Get-PnPSearchConfiguration", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 1 + "Id": 626 }, { - "Id": 627, + "Rank": 2, "Command": "Get-PnPSearchConfiguration -Scope Site", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 2 + "Id": 627 }, { - "Id": 628, + "Rank": 3, "Command": "Get-PnPSearchConfiguration -Scope Subscription", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 3 + "Id": 628 }, { - "Id": 629, + "Rank": 4, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 4 + "Id": 629 }, { - "Id": 630, + "Rank": 5, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 5 + "Id": 630 }, { - "Id": 631, + "Rank": 6, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 6 + "Id": 631 }, { - "Id": 632, + "Rank": 7, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 7 + "Id": 632 }, { - "Id": 633, + "Rank": 8, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "CommandName": "Get-PnPSearchConfiguration", - "Rank": 8 + "Id": 633 }, { - "Id": 634, + "Rank": 1, "Command": "Get-PnPSearchCrawlLog", "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 1 + "Id": 634 }, { - "Id": 635, + "Rank": 2, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 2 + "Id": 635 }, { - "Id": 636, + "Rank": 3, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 3 + "Id": 636 }, { - "Id": 637, + "Rank": 4, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 4 + "Id": 637 }, { - "Id": 638, + "Rank": 5, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 5 + "Id": 638 }, { - "Id": 639, + "Rank": 6, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 6 + "Id": 639 }, { - "Id": 640, + "Rank": 7, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 7 + "Id": 640 }, { - "Id": 641, + "Rank": 1, "Command": "Get-PnPSearchSettings", "CommandName": "Get-PnPSearchSettings", - "Rank": 1 + "Id": 641 }, { - "Id": 642, + "Rank": 1, "Command": "Get-PnPServiceCurrentHealth", "CommandName": "Get-PnPServiceCurrentHealth", - "Rank": 1 + "Id": 642 }, { - "Id": 643, + "Rank": 2, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "CommandName": "Get-PnPServiceCurrentHealth", - "Rank": 2 + "Id": 643 }, { - "Id": 644, + "Rank": 1, "Command": "Get-PnPServiceHealthIssue", "CommandName": "Get-PnPServiceHealthIssue", - "Rank": 1 + "Id": 644 }, { - "Id": 645, + "Rank": 2, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "CommandName": "Get-PnPServiceHealthIssue", - "Rank": 2 + "Id": 645 }, { - "Id": 646, + "Rank": 1, "Command": "Get-PnPSharePointAddIn", "CommandName": "Get-PnPSharePointAddIn", - "Rank": 1 + "Id": 646 }, { - "Id": 647, + "Rank": 2, "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "CommandName": "Get-PnPSharePointAddIn", - "Rank": 2 + "Id": 647 }, { - "Id": 648, + "Rank": 1, "Command": "Get-PnPSharingForNonOwnersOfSite", "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1 + "Id": 648 }, { - "Id": 649, + "Rank": 1, "Command": "Get-PnPSite", "CommandName": "Get-PnPSite", - "Rank": 1 + "Id": 649 }, { - "Id": 650, + "Rank": 2, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "CommandName": "Get-PnPSite", - "Rank": 2 + "Id": 650 }, { - "Id": 651, + "Rank": 1, "Command": "Get-PnPSiteClosure", "CommandName": "Get-PnPSiteClosure", - "Rank": 1 + "Id": 651 }, { - "Id": 652, + "Rank": 1, "Command": "Get-PnPSiteCollectionAdmin", "CommandName": "Get-PnPSiteCollectionAdmin", - "Rank": 1 + "Id": 652 }, { - "Id": 653, + "Rank": 1, "Command": "Get-PnPSiteCollectionAppCatalog", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1 + "Id": 653 }, { - "Id": 654, + "Rank": 2, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 2 + "Id": 654 }, { - "Id": 655, + "Rank": 3, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 3 + "Id": 655 }, { - "Id": 656, + "Rank": 1, "Command": "Get-PnPSiteCollectionTermStore", "CommandName": "Get-PnPSiteCollectionTermStore", - "Rank": 1 + "Id": 656 }, { - "Id": 657, + "Rank": 1, "Command": "Get-PnPSiteDesign", "CommandName": "Get-PnPSiteDesign", - "Rank": 1 + "Id": 657 }, { - "Id": 658, + "Rank": 2, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteDesign", - "Rank": 2 + "Id": 658 }, { - "Id": 659, + "Rank": 1, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteDesignRights", - "Rank": 1 + "Id": 659 }, { - "Id": 660, + "Rank": 1, "Command": "Get-PnPSiteDesignRun", "CommandName": "Get-PnPSiteDesignRun", - "Rank": 1 + "Id": 660 }, { - "Id": 661, + "Rank": 2, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "CommandName": "Get-PnPSiteDesignRun", - "Rank": 2 + "Id": 661 }, { - "Id": 662, + "Rank": 1, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "CommandName": "Get-PnPSiteDesignTask", - "Rank": 1 + "Id": 662 }, { - "Id": 663, + "Rank": 2, "Command": "Get-PnPSiteDesignTask", "CommandName": "Get-PnPSiteDesignTask", - "Rank": 2 + "Id": 663 }, { - "Id": 664, + "Rank": 3, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "CommandName": "Get-PnPSiteDesignTask", - "Rank": 3 + "Id": 664 }, { - "Id": 665, + "Rank": 1, "Command": "Get-PnPSiteGroup", "CommandName": "Get-PnPSiteGroup", - "Rank": 1 + "Id": 665 }, { - "Id": 666, + "Rank": 2, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "CommandName": "Get-PnPSiteGroup", - "Rank": 2 + "Id": 666 }, { - "Id": 667, + "Rank": 3, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "CommandName": "Get-PnPSiteGroup", - "Rank": 3 + "Id": 667 }, { - "Id": 668, + "Rank": 4, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "CommandName": "Get-PnPSiteGroup", - "Rank": 4 + "Id": 668 }, { - "Id": 669, + "Rank": 1, "Command": "Get-PnPSitePolicy", "CommandName": "Get-PnPSitePolicy", - "Rank": 1 + "Id": 669 }, { - "Id": 670, + "Rank": 2, "Command": "Get-PnPSitePolicy -AllAvailable", "CommandName": "Get-PnPSitePolicy", - "Rank": 2 + "Id": 670 }, { - "Id": 671, + "Rank": 3, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "CommandName": "Get-PnPSitePolicy", - "Rank": 3 + "Id": 671 }, { - "Id": 672, + "Rank": 1, "Command": "Get-PnPSiteScript", "CommandName": "Get-PnPSiteScript", - "Rank": 1 + "Id": 672 }, { - "Id": 673, + "Rank": 2, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteScript", - "Rank": 2 + "Id": 673 }, { - "Id": 674, + "Rank": 1, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 1 + "Id": 674 }, { - "Id": 675, + "Rank": 2, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 2 + "Id": 675 }, { - "Id": 676, + "Rank": 3, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 3 + "Id": 676 }, { - "Id": 677, + "Rank": 1, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 1 + "Id": 677 }, { - "Id": 678, + "Rank": 2, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 2 + "Id": 678 }, { - "Id": 679, + "Rank": 3, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 3 + "Id": 679 }, { - "Id": 680, + "Rank": 4, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 4 + "Id": 680 }, { - "Id": 681, + "Rank": 5, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 5 + "Id": 681 }, { - "Id": 682, + "Rank": 6, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 6 + "Id": 682 }, { - "Id": 683, + "Rank": 1, "Command": "Get-PnPSiteSearchQueryResults", "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 1 + "Id": 683 }, { - "Id": 684, + "Rank": 2, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 2 + "Id": 684 }, { - "Id": 685, + "Rank": 3, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 3 + "Id": 685 }, { - "Id": 686, + "Rank": 4, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 4 + "Id": 686 }, { - "Id": 687, + "Rank": 5, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 5 + "Id": 687 }, { - "Id": 688, + "Rank": 6, "Command": "Get-PnPSiteSearchQueryResults -All", "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 6 + "Id": 688 }, { - "Id": 689, + "Rank": 1, "Command": "Get-PnPSiteSensitivityLabel", "CommandName": "Get-PnPSiteSensitivityLabel", - "Rank": 1 + "Id": 689 }, { - "Id": 690, + "Rank": 1, "Command": "Get-PnPSiteTemplate -Out template.pnp", "CommandName": "Get-PnPSiteTemplate", - "Rank": 1 + "Id": 690 }, { - "Id": 691, + "Rank": 2, "Command": "Get-PnPSiteTemplate -Out template.xml", "CommandName": "Get-PnPSiteTemplate", - "Rank": 2 + "Id": 691 }, { - "Id": 692, + "Rank": 3, "Command": "Get-PnPSiteTemplate -Out template.md", "CommandName": "Get-PnPSiteTemplate", - "Rank": 3 + "Id": 692 }, { - "Id": 693, + "Rank": 4, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "CommandName": "Get-PnPSiteTemplate", - "Rank": 4 + "Id": 693 }, { - "Id": 694, + "Rank": 5, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "CommandName": "Get-PnPSiteTemplate", - "Rank": 5 + "Id": 694 }, { - "Id": 695, + "Rank": 6, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "CommandName": "Get-PnPSiteTemplate", - "Rank": 6 + "Id": 695 }, { - "Id": 696, + "Rank": 7, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "CommandName": "Get-PnPSiteTemplate", - "Rank": 7 + "Id": 696 }, { - "Id": 697, + "Rank": 8, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "CommandName": "Get-PnPSiteTemplate", - "Rank": 8 + "Id": 697 }, { - "Id": 698, + "Rank": 9, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "CommandName": "Get-PnPSiteTemplate", - "Rank": 9 + "Id": 698 }, { - "Id": 699, + "Rank": 10, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "CommandName": "Get-PnPSiteTemplate", - "Rank": 10 + "Id": 699 }, { - "Id": 700, + "Rank": 11, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "CommandName": "Get-PnPSiteTemplate", - "Rank": 11 + "Id": 700 }, { - "Id": 701, + "Rank": 12, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "CommandName": "Get-PnPSiteTemplate", - "Rank": 12 + "Id": 701 }, { - "Id": 702, + "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": 13 + "Id": 702 }, { - "Id": 703, + "Rank": 14, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "CommandName": "Get-PnPSiteTemplate", - "Rank": 14 + "Id": 703 }, { - "Id": 704, + "Rank": 1, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "CommandName": "Get-PnPSiteUserInvitations", - "Rank": 1 + "Id": 704 }, { - "Id": 705, + "Rank": 1, + "Command": "Get-PnPSiteVersionPolicy", + "CommandName": "Get-PnPSiteVersionPolicy", + "Id": 705 + }, + { + "Rank": 1, "Command": "Get-PnPStorageEntity", "CommandName": "Get-PnPStorageEntity", - "Rank": 1 + "Id": 706 }, { - "Id": 706, + "Rank": 2, "Command": "Get-PnPStorageEntity -Key MyKey", "CommandName": "Get-PnPStorageEntity", - "Rank": 2 + "Id": 707 }, { - "Id": 707, + "Rank": 3, "Command": "Get-PnPStorageEntity -Scope Site", "CommandName": "Get-PnPStorageEntity", - "Rank": 3 + "Id": 708 }, { - "Id": 708, + "Rank": 4, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "CommandName": "Get-PnPStorageEntity", - "Rank": 4 + "Id": 709 }, { - "Id": 709, + "Rank": 1, "Command": "Get-PnPStoredCredential -Name O365", "CommandName": "Get-PnPStoredCredential", - "Rank": 1 + "Id": 710 }, { - "Id": 710, + "Rank": 1, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Rank": 1 + "Id": 711 }, { - "Id": 711, + "Rank": 1, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Rank": 1 + "Id": 712 }, { - "Id": 712, + "Rank": 1, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Rank": 1 + "Id": 713 }, { - "Id": 713, + "Rank": 1, "Command": "Get-PnPSubWeb", "CommandName": "Get-PnPSubWeb", - "Rank": 1 + "Id": 714 }, { - "Id": 714, + "Rank": 2, "Command": "Get-PnPSubWeb -Recurse", "CommandName": "Get-PnPSubWeb", - "Rank": 2 + "Id": 715 }, { - "Id": 715, + "Rank": 3, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "CommandName": "Get-PnPSubWeb", - "Rank": 3 + "Id": 716 }, { - "Id": 716, + "Rank": 4, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "CommandName": "Get-PnPSubWeb", - "Rank": 4 + "Id": 717 }, { - "Id": 717, + "Rank": 5, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "CommandName": "Get-PnPSubWeb", - "Rank": 5 + "Id": 718 }, { - "Id": 718, + "Rank": 1, "Command": "Get-PnPSyntexModel", "CommandName": "Get-PnPSyntexModel", - "Rank": 1 + "Id": 719 }, { - "Id": 719, + "Rank": 2, "Command": "Get-PnPSyntexModel -Identity 1", "CommandName": "Get-PnPSyntexModel", - "Rank": 2 + "Id": 720 }, { - "Id": 720, + "Rank": 3, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "CommandName": "Get-PnPSyntexModel", - "Rank": 3 + "Id": 721 }, { - "Id": 721, + "Rank": 1, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "CommandName": "Get-PnPSyntexModelPublication", - "Rank": 1 + "Id": 722 }, { - "Id": 722, + "Rank": 1, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "CommandName": "Get-PnPTaxonomyItem", - "Rank": 1 + "Id": 723 }, { - "Id": 723, + "Rank": 1, "Command": "Get-PnPTeamsApp", "CommandName": "Get-PnPTeamsApp", - "Rank": 1 + "Id": 724 }, { - "Id": 724, + "Rank": 2, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "CommandName": "Get-PnPTeamsApp", - "Rank": 2 + "Id": 725 }, { - "Id": 725, + "Rank": 3, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "CommandName": "Get-PnPTeamsApp", - "Rank": 3 + "Id": 726 }, { - "Id": 726, + "Rank": 1, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "CommandName": "Get-PnPTeamsChannel", - "Rank": 1 + "Id": 727 }, { - "Id": 727, + "Rank": 2, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "CommandName": "Get-PnPTeamsChannel", - "Rank": 2 + "Id": 728 }, { - "Id": 728, + "Rank": 3, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "CommandName": "Get-PnPTeamsChannel", - "Rank": 3 + "Id": 729 }, { - "Id": 729, + "Rank": 1, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Rank": 1 + "Id": 730 }, { - "Id": 730, + "Rank": 2, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Rank": 2 + "Id": 731 }, { - "Id": 731, + "Rank": 1, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsChannelMessage", - "Rank": 1 + "Id": 732 }, { - "Id": 732, + "Rank": 2, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "CommandName": "Get-PnPTeamsChannelMessage", - "Rank": 2 + "Id": 733 }, { - "Id": 733, + "Rank": 1, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "CommandName": "Get-PnPTeamsChannelMessageReply", - "Rank": 1 + "Id": 734 }, { - "Id": 734, + "Rank": 2, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "CommandName": "Get-PnPTeamsChannelMessageReply", - "Rank": 2 + "Id": 735 }, { - "Id": 735, + "Rank": 1, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 1 + "Id": 736 }, { - "Id": 736, + "Rank": 2, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 2 + "Id": 737 }, { - "Id": 737, + "Rank": 3, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 3 + "Id": 738 }, { - "Id": 738, + "Rank": 4, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 4 + "Id": 739 }, { - "Id": 739, + "Rank": 1, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "CommandName": "Get-PnPTeamsPrimaryChannel", - "Rank": 1 + "Id": 740 }, { - "Id": 740, + "Rank": 2, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "CommandName": "Get-PnPTeamsPrimaryChannel", - "Rank": 2 + "Id": 741 }, { - "Id": 741, + "Rank": 1, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "CommandName": "Get-PnPTeamsTab", - "Rank": 1 + "Id": 742 }, { - "Id": 742, + "Rank": 2, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "CommandName": "Get-PnPTeamsTab", - "Rank": 2 + "Id": 743 }, { - "Id": 743, + "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", - "Rank": 3 + "Id": 744 }, { - "Id": 744, + "Rank": 4, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsTab", - "Rank": 4 + "Id": 745 }, { - "Id": 745, + "Rank": 5, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "CommandName": "Get-PnPTeamsTab", - "Rank": 5 + "Id": 746 }, { - "Id": 746, + "Rank": 1, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "CommandName": "Get-PnPTeamsTag", - "Rank": 1 + "Id": 747 }, { - "Id": 747, + "Rank": 2, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "CommandName": "Get-PnPTeamsTag", - "Rank": 2 + "Id": 748 }, { - "Id": 748, + "Rank": 1, "Command": "Get-PnPTeamsTeam", "CommandName": "Get-PnPTeamsTeam", - "Rank": 1 + "Id": 749 }, { - "Id": 749, + "Rank": 2, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "CommandName": "Get-PnPTeamsTeam", - "Rank": 2 + "Id": 750 }, { - "Id": 750, + "Rank": 3, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "CommandName": "Get-PnPTeamsTeam", - "Rank": 3 + "Id": 751 }, { - "Id": 751, + "Rank": 4, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "CommandName": "Get-PnPTeamsTeam", - "Rank": 4 + "Id": 752 }, { - "Id": 752, + "Rank": 5, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPTeamsTeam", - "Rank": 5 + "Id": 753 }, { - "Id": 753, + "Rank": 1, "Command": "Get-PnPTeamsUser -Team MyTeam", "CommandName": "Get-PnPTeamsUser", - "Rank": 1 + "Id": 754 }, { - "Id": 754, + "Rank": 2, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "CommandName": "Get-PnPTeamsUser", - "Rank": 2 + "Id": 755 }, { - "Id": 755, + "Rank": 3, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "CommandName": "Get-PnPTeamsUser", - "Rank": 3 + "Id": 756 }, { - "Id": 756, + "Rank": 4, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "CommandName": "Get-PnPTeamsUser", - "Rank": 4 + "Id": 757 }, { - "Id": 757, + "Rank": 1, "Command": "Get-PnPTemporarilyDisableAppBar", "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1 + "Id": 758 }, { - "Id": 758, + "Rank": 1, "Command": "Get-PnPTenant", "CommandName": "Get-PnPTenant", - "Rank": 1 + "Id": 759 }, { - "Id": 759, + "Rank": 1, "Command": "Get-PnPTenantAppCatalogUrl", "CommandName": "Get-PnPTenantAppCatalogUrl", - "Rank": 1 + "Id": 760 }, { - "Id": 760, + "Rank": 1, "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "CommandName": "Get-PnPTenantCdnEnabled", - "Rank": 1 + "Id": 761 }, { - "Id": 761, + "Rank": 1, "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "CommandName": "Get-PnPTenantCdnOrigin", - "Rank": 1 + "Id": 762 }, { - "Id": 762, + "Rank": 1, "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "CommandName": "Get-PnPTenantCdnPolicies", - "Rank": 1 + "Id": 763 }, { - "Id": 763, + "Rank": 1, "Command": "Get-PnPTenantDeletedSite", "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 1 + "Id": 764 }, { - "Id": 764, + "Rank": 2, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 2 + "Id": 765 }, { - "Id": 765, + "Rank": 3, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 3 + "Id": 766 }, { - "Id": 766, + "Rank": 4, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 4 + "Id": 767 }, { - "Id": 767, + "Rank": 1, "Command": "Get-PnPTenantId", "CommandName": "Get-PnPTenantId", - "Rank": 1 + "Id": 768 }, { - "Id": 768, + "Rank": 2, "Command": "Get-PnPTenantId contoso", "CommandName": "Get-PnPTenantId", - "Rank": 2 + "Id": 769 }, { - "Id": 769, + "Rank": 3, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "CommandName": "Get-PnPTenantId", - "Rank": 3 + "Id": 770 }, { - "Id": 770, + "Rank": 4, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "CommandName": "Get-PnPTenantId", - "Rank": 4 + "Id": 771 }, { - "Id": 771, + "Rank": 1, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "CommandName": "Get-PnPTenantInfo", - "Rank": 1 + "Id": 772 }, { - "Id": 772, + "Rank": 2, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "CommandName": "Get-PnPTenantInfo", - "Rank": 2 + "Id": 773 }, { - "Id": 773, + "Rank": 3, "Command": "Get-PnPTenantInfo", "CommandName": "Get-PnPTenantInfo", - "Rank": 3 + "Id": 774 }, { - "Id": 774, + "Rank": 4, "Command": "Get-PnPTenantInfo -CurrentTenant", "CommandName": "Get-PnPTenantInfo", - "Rank": 4 + "Id": 775 }, { - "Id": 775, + "Rank": 1, "Command": "Get-PnPTenantInstance", "CommandName": "Get-PnPTenantInstance", - "Rank": 1 + "Id": 776 }, { - "Id": 776, + "Rank": 1, "Command": "Get-PnPTenantRecycleBinItem", "CommandName": "Get-PnPTenantRecycleBinItem", - "Rank": 1 + "Id": 777 }, { - "Id": 777, + "Rank": 1, "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "CommandName": "Get-PnPTenantSequence", - "Rank": 1 + "Id": 778 }, { - "Id": 778, + "Rank": 2, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "CommandName": "Get-PnPTenantSequence", - "Rank": 2 + "Id": 779 }, { - "Id": 779, + "Rank": 1, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "CommandName": "Get-PnPTenantSequenceSite", - "Rank": 1 + "Id": 780 }, { - "Id": 780, + "Rank": 2, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "CommandName": "Get-PnPTenantSequenceSite", - "Rank": 2 + "Id": 781 }, { - "Id": 781, + "Rank": 1, "Command": "Get-PnPTenantSite", "CommandName": "Get-PnPTenantSite", - "Rank": 1 + "Id": 782 }, { - "Id": 782, + "Rank": 2, "Command": "Get-PnPTenantSite -Detailed", "CommandName": "Get-PnPTenantSite", - "Rank": 2 + "Id": 783 }, { - "Id": 783, + "Rank": 3, "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "CommandName": "Get-PnPTenantSite", - "Rank": 3 + "Id": 784 }, { - "Id": 784, + "Rank": 4, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "CommandName": "Get-PnPTenantSite", - "Rank": 4 + "Id": 785 }, { - "Id": 785, + "Rank": 5, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "CommandName": "Get-PnPTenantSite", - "Rank": 5 + "Id": 786 }, { - "Id": 786, + "Rank": 6, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "CommandName": "Get-PnPTenantSite", - "Rank": 6 + "Id": 787 }, { - "Id": 787, + "Rank": 7, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "CommandName": "Get-PnPTenantSite", - "Rank": 7 + "Id": 788 }, { - "Id": 788, + "Rank": 8, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "CommandName": "Get-PnPTenantSite", - "Rank": 8 + "Id": 789 }, { - "Id": 789, + "Rank": 9, "Command": "Get-PnPTenantSite -GroupIdDefined $true", "CommandName": "Get-PnPTenantSite", - "Rank": 9 + "Id": 790 }, { - "Id": 790, + "Rank": 1, "Command": "Get-PnPTenantSyncClientRestriction", "CommandName": "Get-PnPTenantSyncClientRestriction", - "Rank": 1 + "Id": 791 }, { - "Id": 791, + "Rank": 1, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "CommandName": "Get-PnPTenantTemplate", - "Rank": 1 + "Id": 792 }, { - "Id": 792, + "Rank": 2, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "CommandName": "Get-PnPTenantTemplate", - "Rank": 2 + "Id": 793 }, { - "Id": 793, + "Rank": 3, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "CommandName": "Get-PnPTenantTemplate", - "Rank": 3 + "Id": 794 }, { - "Id": 794, + "Rank": 1, "Command": "Get-PnPTenantTheme", "CommandName": "Get-PnPTenantTheme", - "Rank": 1 + "Id": 795 }, { - "Id": 795, + "Rank": 2, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "CommandName": "Get-PnPTenantTheme", - "Rank": 2 + "Id": 796 }, { - "Id": 796, + "Rank": 3, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "CommandName": "Get-PnPTenantTheme", - "Rank": 3 + "Id": 797 }, { - "Id": 797, + "Rank": 1, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Rank": 1 + "Id": 798 }, { - "Id": 798, + "Rank": 2, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Rank": 2 + "Id": 799 }, { - "Id": 799, + "Rank": 3, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Rank": 3 + "Id": 800 }, { - "Id": 800, + "Rank": 4, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "CommandName": "Get-PnPTerm", - "Rank": 4 + "Id": 801 }, { - "Id": 801, + "Rank": 5, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "CommandName": "Get-PnPTerm", - "Rank": 5 + "Id": 802 }, { - "Id": 802, + "Rank": 1, "Command": "Get-PnPTermGroup", "CommandName": "Get-PnPTermGroup", - "Rank": 1 + "Id": 803 }, { - "Id": 803, + "Rank": 2, "Command": "Get-PnPTermGroup -Identity \"Departments\"", "CommandName": "Get-PnPTermGroup", - "Rank": 2 + "Id": 804 }, { - "Id": 804, + "Rank": 3, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "CommandName": "Get-PnPTermGroup", - "Rank": 3 + "Id": 805 }, { - "Id": 805, + "Rank": 1, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "CommandName": "Get-PnPTermLabel", - "Rank": 1 + "Id": 806 }, { - "Id": 806, + "Rank": 2, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "CommandName": "Get-PnPTermLabel", - "Rank": 2 + "Id": 807 }, { - "Id": 807, + "Rank": 3, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermLabel", - "Rank": 3 + "Id": 808 }, { - "Id": 808, + "Rank": 1, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermSet", - "Rank": 1 + "Id": 809 }, { - "Id": 809, + "Rank": 2, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermSet", - "Rank": 2 + "Id": 810 }, { - "Id": 810, + "Rank": 3, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "CommandName": "Get-PnPTermSet", - "Rank": 3 + "Id": 811 }, { - "Id": 811, + "Rank": 1, "Command": "Get-PnPTheme", "CommandName": "Get-PnPTheme", - "Rank": 1 + "Id": 812 }, { - "Id": 812, + "Rank": 2, "Command": "Get-PnPTheme -DetectCurrentComposedLook", "CommandName": "Get-PnPTheme", - "Rank": 2 + "Id": 813 }, { - "Id": 813, + "Rank": 1, "Command": "Get-PnPTimeZoneId", "CommandName": "Get-PnPTimeZoneId", - "Rank": 1 + "Id": 814 }, { - "Id": 814, + "Rank": 2, "Command": "Get-PnPTimeZoneId -Match Stockholm", "CommandName": "Get-PnPTimeZoneId", - "Rank": 2 + "Id": 815 }, { - "Id": 815, + "Rank": 1, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "CommandName": "Get-PnPUnfurlLink", - "Rank": 1 + "Id": 816 }, { - "Id": 816, + "Rank": 1, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "CommandName": "Get-PnPUnifiedAuditLog", - "Rank": 1 + "Id": 817 }, { - "Id": 817, + "Rank": 1, "Command": "Get-PnPUPABulkImportStatus", "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 1 + "Id": 818 }, { - "Id": 818, + "Rank": 2, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 2 + "Id": 819 }, { - "Id": 819, + "Rank": 3, "Command": "Get-PnPUPABulkImportStatus -JobId ", "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 3 + "Id": 820 }, { - "Id": 820, + "Rank": 4, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 4 + "Id": 821 }, { - "Id": 821, + "Rank": 1, "Command": "Get-PnPUser", "CommandName": "Get-PnPUser", - "Rank": 1 + "Id": 822 }, { - "Id": 822, + "Rank": 2, "Command": "Get-PnPUser -Identity 23", "CommandName": "Get-PnPUser", - "Rank": 2 + "Id": 823 }, { - "Id": 823, + "Rank": 3, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "CommandName": "Get-PnPUser", - "Rank": 3 + "Id": 824 }, { - "Id": 824, + "Rank": 4, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "CommandName": "Get-PnPUser", - "Rank": 4 + "Id": 825 }, { - "Id": 825, + "Rank": 5, "Command": "Get-PnPUser -WithRightsAssigned", "CommandName": "Get-PnPUser", - "Rank": 5 + "Id": 826 }, { - "Id": 826, + "Rank": 6, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "CommandName": "Get-PnPUser", - "Rank": 6 + "Id": 827 }, { - "Id": 827, + "Rank": 7, "Command": "Get-PnPUser -WithRightsAssignedDetailed", "CommandName": "Get-PnPUser", - "Rank": 7 + "Id": 828 }, { - "Id": 828, + "Rank": 1, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "CommandName": "Get-PnPUserOneDriveQuota", - "Rank": 1 + "Id": 829 }, { - "Id": 829, + "Rank": 1, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "CommandName": "Get-PnPUserProfileProperty", - "Rank": 1 + "Id": 830 }, { - "Id": 830, + "Rank": 2, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "CommandName": "Get-PnPUserProfileProperty", - "Rank": 2 + "Id": 831 }, { - "Id": 831, + "Rank": 3, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "CommandName": "Get-PnPUserProfileProperty", - "Rank": 3 + "Id": 832 }, { - "Id": 832, + "Rank": 1, "Command": "Get-PnPView -List \"Demo List\"", "CommandName": "Get-PnPView", - "Rank": 1 + "Id": 833 }, { - "Id": 833, + "Rank": 2, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "CommandName": "Get-PnPView", - "Rank": 2 + "Id": 834 }, { - "Id": 834, + "Rank": 3, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "CommandName": "Get-PnPView", - "Rank": 3 + "Id": 835 }, { - "Id": 835, + "Rank": 1, "Command": "Get-PnPVivaConnectionsDashboardACE", "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1 + "Id": 836 }, { - "Id": 836, + "Rank": 2, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 2 + "Id": 837 }, { - "Id": 837, + "Rank": 1, "Command": "Get-PnPWeb", "CommandName": "Get-PnPWeb", - "Rank": 1 + "Id": 838 }, { - "Id": 838, + "Rank": 1, "Command": "Get-PnPWebHeader", "CommandName": "Get-PnPWebHeader", - "Rank": 1 + "Id": 839 }, { - "Id": 839, + "Rank": 1, "Command": "Get-PnPWebhookSubscriptions -List MyList", "CommandName": "Get-PnPWebhookSubscriptions", - "Rank": 1 + "Id": 840 }, { - "Id": 840, + "Rank": 1, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "CommandName": "Get-PnPWebPart", - "Rank": 1 + "Id": 841 }, { - "Id": 841, + "Rank": 2, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPWebPart", - "Rank": 2 + "Id": 842 }, { - "Id": 842, + "Rank": 1, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "CommandName": "Get-PnPWebPartProperty", - "Rank": 1 + "Id": 843 }, { - "Id": 843, + "Rank": 2, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "CommandName": "Get-PnPWebPartProperty", - "Rank": 2 + "Id": 844 }, { - "Id": 844, + "Rank": 1, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPWebPartXml", - "Rank": 1 + "Id": 845 }, { - "Id": 845, + "Rank": 1, "Command": "Get-PnPWebTemplates", "CommandName": "Get-PnPWebTemplates", - "Rank": 1 + "Id": 846 }, { - "Id": 846, + "Rank": 2, "Command": "Get-PnPWebTemplates -LCID 1033", "CommandName": "Get-PnPWebTemplates", - "Rank": 2 + "Id": 847 }, { - "Id": 847, + "Rank": 3, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "CommandName": "Get-PnPWebTemplates", - "Rank": 3 + "Id": 848 }, { - "Id": 848, + "Rank": 1, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "CommandName": "Get-PnPWikiPageContent", - "Rank": 1 + "Id": 849 }, { - "Id": 849, + "Rank": 1, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "CommandName": "Grant-PnPAzureADAppSitePermission", - "Rank": 1 + "Id": 850 }, { - "Id": 850, + "Rank": 2, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "CommandName": "Grant-PnPAzureADAppSitePermission", - "Rank": 2 + "Id": 851 }, { - "Id": 851, + "Rank": 1, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Grant-PnPHubSiteRights", - "Rank": 1 + "Id": 852 }, { - "Id": 852, + "Rank": 1, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Grant-PnPSiteDesignRights", - "Rank": 1 + "Id": 853 }, { - "Id": 853, + "Rank": 1, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Rank": 1 + "Id": 854 }, { - "Id": 854, + "Rank": 1, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "CommandName": "Import-PnPTaxonomy", - "Rank": 1 + "Id": 855 }, { - "Id": 855, + "Rank": 2, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "CommandName": "Import-PnPTaxonomy", - "Rank": 2 + "Id": 856 }, { - "Id": 856, + "Rank": 3, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "CommandName": "Import-PnPTaxonomy", - "Rank": 3 + "Id": 857 }, { - "Id": 857, + "Rank": 1, "Command": "Import-PnPTermGroupFromXml -Xml $xml", "CommandName": "Import-PnPTermGroupFromXml", - "Rank": 1 + "Id": 858 }, { - "Id": 858, + "Rank": 2, "Command": "Import-PnPTermGroupFromXml -Path input.xml", "CommandName": "Import-PnPTermGroupFromXml", - "Rank": 2 + "Id": 859 }, { - "Id": 859, + "Rank": 1, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "CommandName": "Import-PnPTermSet", - "Rank": 1 + "Id": 860 }, { - "Id": 860, + "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", - "Rank": 2 + "Id": 861 }, { - "Id": 861, + "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", - "Rank": 3 + "Id": 862 }, { - "Id": 862, + "Rank": 1, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Install-PnPApp", - "Rank": 1 + "Id": 863 }, { - "Id": 863, + "Rank": 2, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Install-PnPApp", - "Rank": 2 + "Id": 864 }, { - "Id": 864, + "Rank": 1, "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "CommandName": "Invoke-PnPGraphMethod", - "Rank": 1 + "Id": 865 }, { - "Id": 865, + "Rank": 2, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "CommandName": "Invoke-PnPGraphMethod", - "Rank": 2 + "Id": 866 }, { - "Id": 866, + "Rank": 3, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "CommandName": "Invoke-PnPGraphMethod", - "Rank": 3 + "Id": 867 }, { - "Id": 867, + "Rank": 4, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "CommandName": "Invoke-PnPGraphMethod", - "Rank": 4 + "Id": 868 }, { - "Id": 868, + "Rank": 5, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "CommandName": "Invoke-PnPGraphMethod", - "Rank": 5 + "Id": 869 }, { - "Id": 869, + "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", - "Rank": 6 + "Id": 870 }, { - "Id": 870, + "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", - "Rank": 7 + "Id": 871 }, { - "Id": 871, + "Rank": 1, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Invoke-PnPListDesign", - "Rank": 1 + "Id": 872 }, { - "Id": 872, + "Rank": 2, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "CommandName": "Invoke-PnPListDesign", - "Rank": 2 + "Id": 873 }, { - "Id": 873, + "Rank": 1, "Command": "Invoke-PnPQuery -RetryCount 5", "CommandName": "Invoke-PnPQuery", - "Rank": 1 + "Id": 874 }, { - "Id": 874, + "Rank": 1, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Invoke-PnPSiteDesign", - "Rank": 1 + "Id": 875 }, { - "Id": 875, + "Rank": 2, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "CommandName": "Invoke-PnPSiteDesign", - "Rank": 2 + "Id": 876 }, { - "Id": 876, + "Rank": 1, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "CommandName": "Invoke-PnPSiteScript", - "Rank": 1 + "Id": 877 }, { - "Id": 877, + "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", - "Rank": 1 + "Id": 878 }, { - "Id": 878, + "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", - "Rank": 2 + "Id": 879 }, { - "Id": 879, + "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", - "Rank": 3 + "Id": 880 }, { - "Id": 880, + "Rank": 1, "Command": "Invoke-PnPSiteTemplate -Path template.xml", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 1 + "Id": 881 }, { - "Id": 881, + "Rank": 2, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 2 + "Id": 882 }, { - "Id": 882, + "Rank": 3, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 3 + "Id": 883 }, { - "Id": 883, + "Rank": 4, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 4 + "Id": 884 }, { - "Id": 884, + "Rank": 5, "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 5 + "Id": 885 }, { - "Id": 885, + "Rank": 6, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 6 + "Id": 886 }, { - "Id": 886, + "Rank": 7, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 7 + "Id": 887 }, { - "Id": 887, + "Rank": 8, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 8 + "Id": 888 }, { - "Id": 888, + "Rank": 1, "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "CommandName": "Invoke-PnPSPRestMethod", - "Rank": 1 + "Id": 889 }, { - "Id": 889, + "Rank": 1, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 1 + "Id": 890 }, { - "Id": 890, + "Rank": 2, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 2 + "Id": 891 }, { - "Id": 891, + "Rank": 3, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 3 + "Id": 892 }, { - "Id": 892, + "Rank": 1, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "CommandName": "Invoke-PnPWebAction", - "Rank": 1 + "Id": 893 }, { - "Id": 893, + "Rank": 2, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "CommandName": "Invoke-PnPWebAction", - "Rank": 2 + "Id": 894 }, { - "Id": 894, + "Rank": 1, "Command": "Measure-PnPList \"Documents\"", "CommandName": "Measure-PnPList", - "Rank": 1 + "Id": 895 }, { - "Id": 895, + "Rank": 2, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "CommandName": "Measure-PnPList", - "Rank": 2 + "Id": 896 }, { - "Id": 896, + "Rank": 1, "Command": "Measure-PnPWeb", "CommandName": "Measure-PnPWeb", - "Rank": 1 + "Id": 897 }, { - "Id": 897, + "Rank": 2, "Command": "Measure-PnPWeb $web -Recursive", "CommandName": "Measure-PnPWeb", - "Rank": 2 + "Id": 898 }, { - "Id": 898, + "Rank": 1, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "CommandName": "Move-PnPFile", - "Rank": 1 + "Id": 899 }, { - "Id": 899, + "Rank": 2, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "CommandName": "Move-PnPFile", - "Rank": 2 + "Id": 900 }, { - "Id": 900, + "Rank": 3, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "CommandName": "Move-PnPFile", - "Rank": 3 + "Id": 901 }, { - "Id": 901, + "Rank": 4, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "CommandName": "Move-PnPFile", - "Rank": 4 + "Id": 902 }, { - "Id": 902, + "Rank": 1, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "CommandName": "Move-PnPFolder", - "Rank": 1 + "Id": 903 }, { - "Id": 903, + "Rank": 2, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "CommandName": "Move-PnPFolder", - "Rank": 2 + "Id": 904 }, { - "Id": 904, + "Rank": 1, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "CommandName": "Move-PnPListItemToRecycleBin", - "Rank": 1 + "Id": 905 }, { - "Id": 905, + "Rank": 1, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "CommandName": "Move-PnPPageComponent", - "Rank": 1 + "Id": 906 }, { - "Id": 906, + "Rank": 2, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "CommandName": "Move-PnPPageComponent", - "Rank": 2 + "Id": 907 }, { - "Id": 907, + "Rank": 3, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "CommandName": "Move-PnPPageComponent", - "Rank": 3 + "Id": 908 }, { - "Id": 908, + "Rank": 4, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "CommandName": "Move-PnPPageComponent", - "Rank": 4 + "Id": 909 }, { - "Id": 909, + "Rank": 1, "Command": "Move-PnPRecycleBinItem", "CommandName": "Move-PnpRecycleBinItem", - "Rank": 1 + "Id": 910 }, { - "Id": 910, + "Rank": 2, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "CommandName": "Move-PnpRecycleBinItem", - "Rank": 2 + "Id": 911 }, { - "Id": 911, + "Rank": 3, "Command": "Move-PnPRecycleBinItem -Force", "CommandName": "Move-PnpRecycleBinItem", - "Rank": 3 + "Id": 912 }, { - "Id": 912, + "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", - "Rank": 1 + "Id": 913 }, { - "Id": 913, + "Rank": 2, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "CommandName": "Move-PnPTerm", - "Rank": 2 + "Id": 914 }, { - "Id": 914, + "Rank": 3, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "CommandName": "Move-PnPTerm", - "Rank": 3 + "Id": 915 }, { - "Id": 915, + "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", - "Rank": 1 + "Id": 916 }, { - "Id": 916, + "Rank": 2, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "CommandName": "Move-PnPTermSet", - "Rank": 2 + "Id": 917 }, { - "Id": 917, + "Rank": 1, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "CommandName": "New-PnPAzureADGroup", - "Rank": 1 + "Id": 918 }, { - "Id": 918, + "Rank": 2, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "CommandName": "New-PnPAzureADGroup", - "Rank": 2 + "Id": 919 }, { - "Id": 919, + "Rank": 3, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "CommandName": "New-PnPAzureADGroup", - "Rank": 3 + "Id": 920 }, { - "Id": 920, + "Rank": 1, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 1 + "Id": 921 }, { - "Id": 921, + "Rank": 2, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 2 + "Id": 922 }, { - "Id": 922, + "Rank": 3, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 3 + "Id": 923 }, { - "Id": 923, + "Rank": 1, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "CommandName": "New-PnPAzureCertificate", - "Rank": 1 + "Id": 924 }, { - "Id": 924, + "Rank": 2, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "CommandName": "New-PnPAzureCertificate", - "Rank": 2 + "Id": 925 }, { - "Id": 925, + "Rank": 3, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "CommandName": "New-PnPAzureCertificate", - "Rank": 3 + "Id": 926 }, { - "Id": 926, + "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", - "Rank": 1 + "Id": 927 }, { - "Id": 927, + "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", - "Rank": 2 + "Id": 928 }, { - "Id": 928, + "Rank": 1, "Command": "New-PnPGroup -Title \"My Site Users\"", "CommandName": "New-PnPGroup", - "Rank": 1 + "Id": 929 }, { - "Id": 929, + "Rank": 1, "Command": "New-PnPList -Title Announcements -Template Announcements", "CommandName": "New-PnPList", - "Rank": 1 + "Id": 930 }, { - "Id": 930, + "Rank": 2, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "CommandName": "New-PnPList", - "Rank": 2 + "Id": 931 }, { - "Id": 931, + "Rank": 3, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "CommandName": "New-PnPList", - "Rank": 3 + "Id": 932 }, { - "Id": 932, + "Rank": 1, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "CommandName": "New-PnPMicrosoft365Group", - "Rank": 1 + "Id": 933 }, { - "Id": 933, + "Rank": 2, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "CommandName": "New-PnPMicrosoft365Group", - "Rank": 2 + "Id": 934 }, { - "Id": 934, + "Rank": 3, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "CommandName": "New-PnPMicrosoft365Group", - "Rank": 3 + "Id": 935 }, { - "Id": 935, + "Rank": 4, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "CommandName": "New-PnPMicrosoft365Group", - "Rank": 4 + "Id": 936 }, { - "Id": 936, + "Rank": 5, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "CommandName": "New-PnPMicrosoft365Group", - "Rank": 5 + "Id": 937 }, { - "Id": 937, + "Rank": 6, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "CommandName": "New-PnPMicrosoft365Group", - "Rank": 6 + "Id": 938 }, { - "Id": 938, + "Rank": 7, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "CommandName": "New-PnPMicrosoft365Group", - "Rank": 7 + "Id": 939 }, { - "Id": 939, + "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", - "Rank": 1 + "Id": 940 }, { - "Id": 940, + "Rank": 2, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "CommandName": "New-PnPMicrosoft365GroupSettings", - "Rank": 2 + "Id": 941 }, { - "Id": 941, + "Rank": 1, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "CommandName": "New-PnPPersonalSite", - "Rank": 1 + "Id": 942 }, { - "Id": 942, + "Rank": 1, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "CommandName": "New-PnPPlannerPlan", - "Rank": 1 + "Id": 943 }, { - "Id": 943, + "Rank": 1, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "CommandName": "New-PnPSdnProvider", - "Rank": 1 + "Id": 944 }, { - "Id": 944, + "Rank": 1, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "CommandName": "New-PnPSite", - "Rank": 1 + "Id": 945 }, { - "Id": 945, + "Rank": 2, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "CommandName": "New-PnPSite", - "Rank": 2 + "Id": 946 }, { - "Id": 946, + "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", - "Rank": 3 + "Id": 947 }, { - "Id": 947, + "Rank": 4, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "CommandName": "New-PnPSite", - "Rank": 4 + "Id": 948 }, { - "Id": 948, + "Rank": 5, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "CommandName": "New-PnPSite", - "Rank": 5 + "Id": 949 }, { - "Id": 949, + "Rank": 6, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Rank": 6 + "Id": 950 }, { - "Id": 950, + "Rank": 7, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "CommandName": "New-PnPSite", - "Rank": 7 + "Id": 951 }, { - "Id": 951, + "Rank": 8, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "CommandName": "New-PnPSite", - "Rank": 8 + "Id": 952 }, { - "Id": 952, + "Rank": 9, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Rank": 9 + "Id": 953 }, { - "Id": 953, + "Rank": 10, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "CommandName": "New-PnPSite", - "Rank": 10 + "Id": 954 }, { - "Id": 954, + "Rank": 11, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "CommandName": "New-PnPSite", - "Rank": 11 + "Id": 955 }, { - "Id": 955, + "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": 12 + "Id": 956 }, { - "Id": 956, + "Rank": 13, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "CommandName": "New-PnPSite", - "Rank": 13 + "Id": 957 }, { - "Id": 957, + "Rank": 14, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "CommandName": "New-PnPSite", - "Rank": 14 + "Id": 958 }, { - "Id": 958, + "Rank": 15, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Rank": 15 + "Id": 959 }, { - "Id": 959, + "Rank": 16, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "CommandName": "New-PnPSite", - "Rank": 16 + "Id": 960 }, { - "Id": 960, + "Rank": 1, "Command": "New-PnPSiteCollectionTermStore", "CommandName": "New-PnPSiteCollectionTermStore", - "Rank": 1 + "Id": 961 }, { - "Id": 961, + "Rank": 1, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "CommandName": "New-PnPSiteGroup", - "Rank": 1 + "Id": 962 }, { - "Id": 962, + "Rank": 2, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "CommandName": "New-PnPSiteGroup", - "Rank": 2 + "Id": 963 }, { - "Id": 963, + "Rank": 1, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 1 + "Id": 964 }, { - "Id": 964, + "Rank": 2, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 2 + "Id": 965 }, { - "Id": 965, + "Rank": 3, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 3 + "Id": 966 }, { - "Id": 966, + "Rank": 4, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 4 + "Id": 967 }, { - "Id": 967, + "Rank": 5, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 5 + "Id": 968 }, { - "Id": 968, + "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", - "Rank": 6 + "Id": 969 }, { - "Id": 969, + "Rank": 7, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 7 + "Id": 970 }, { - "Id": 970, + "Rank": 8, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 8 + "Id": 971 }, { - "Id": 971, + "Rank": 1, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "CommandName": "New-PnPTeamsApp", - "Rank": 1 + "Id": 972 }, { - "Id": 972, + "Rank": 1, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "CommandName": "New-PnPTeamsTeam", - "Rank": 1 + "Id": 973 }, { - "Id": 973, + "Rank": 2, "Command": "New-PnPTeamsTeam -GroupId $groupId", "CommandName": "New-PnPTeamsTeam", - "Rank": 2 + "Id": 974 }, { - "Id": 974, + "Rank": 3, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "CommandName": "New-PnPTeamsTeam", - "Rank": 3 + "Id": 975 }, { - "Id": 975, + "Rank": 4, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "CommandName": "New-PnPTeamsTeam", - "Rank": 4 + "Id": 976 }, { - "Id": 976, + "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", - "Rank": 5 + "Id": 977 }, { - "Id": 977, + "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", - "Rank": 6 + "Id": 978 }, { - "Id": 978, + "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", - "Rank": 1 + "Id": 979 }, { - "Id": 979, + "Rank": 2, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "CommandName": "New-PnPTenantSite", - "Rank": 2 + "Id": 980 }, { - "Id": 980, + "Rank": 1, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "CommandName": "New-PnPTerm", - "Rank": 1 + "Id": 981 }, { - "Id": 981, + "Rank": 2, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "New-PnPTerm", - "Rank": 2 + "Id": 982 }, { - "Id": 982, + "Rank": 1, "Command": "New-PnPTermGroup -GroupName \"Countries\"", "CommandName": "New-PnPTermGroup", - "Rank": 1 + "Id": 983 }, { - "Id": 983, + "Rank": 1, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "CommandName": "New-PnPTermLabel", - "Rank": 1 + "Id": 984 }, { - "Id": 984, + "Rank": 1, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "CommandName": "New-PnPTermSet", - "Rank": 1 + "Id": 985 }, { - "Id": 985, + "Rank": 1, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "CommandName": "New-PnPUPABulkImportJob", - "Rank": 1 + "Id": 986 }, { - "Id": 986, + "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", - "Rank": 2 + "Id": 987 }, { - "Id": 987, + "Rank": 1, "Command": "New-PnPUser -LoginName user@company.com", "CommandName": "New-PnPUser", - "Rank": 1 + "Id": 988 }, { - "Id": 988, + "Rank": 1, "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "CommandName": "New-PnPWeb", - "Rank": 1 + "Id": 989 }, { - "Id": 989, + "Rank": 1, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Publish-PnPApp", - "Rank": 1 + "Id": 990 }, { - "Id": 990, + "Rank": 2, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "CommandName": "Publish-PnPApp", - "Rank": 2 + "Id": 991 }, { - "Id": 991, + "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", - "Rank": 1 + "Id": 992 }, { - "Id": 992, + "Rank": 1, "Command": "Publish-PnPContentType -ContentType 0x0101", "CommandName": "Publish-PnPContentType", - "Rank": 1 + "Id": 993 }, { - "Id": 993, + "Rank": 1, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "CommandName": "Publish-PnPSyntexModel", - "Rank": 1 + "Id": 994 }, { - "Id": 994, + "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", - "Rank": 2 + "Id": 995 }, { - "Id": 995, + "Rank": 1, "Command": "Read-PnPSiteTemplate -Path template.pnp", "CommandName": "Read-PnPSiteTemplate", - "Rank": 1 + "Id": 996 }, { - "Id": 996, + "Rank": 2, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "CommandName": "Read-PnPSiteTemplate", - "Rank": 2 + "Id": 997 }, { - "Id": 997, + "Rank": 3, "Command": "Read-PnPSiteTemplate -Xml $xml", "CommandName": "Read-PnPSiteTemplate", - "Rank": 3 + "Id": 998 }, { - "Id": 998, + "Rank": 1, "Command": "Read-PnPTenantTemplate -Path template.pnp", "CommandName": "Read-PnPTenantTemplate", - "Rank": 1 + "Id": 999 }, { - "Id": 999, + "Rank": 1, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "CommandName": "Register-PnPAppCatalogSite", - "Rank": 1 + "Id": 1000 }, { - "Id": 1000, + "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", - "Rank": 1 + "Id": 1001 }, { - "Id": 1001, + "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", - "Rank": 2 + "Id": 1002 }, { - "Id": 1002, + "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", - "Rank": 3 + "Id": 1003 }, { - "Id": 1003, + "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", - "Rank": 4 + "Id": 1004 }, { - "Id": 1004, + "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", - "Rank": 5 + "Id": 1005 }, { - "Id": 1005, + "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", - "Rank": 6 + "Id": 1006 }, { - "Id": 1006, + "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", - "Rank": 7 + "Id": 1007 }, { - "Id": 1007, + "Rank": 1, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "CommandName": "Register-PnPHubSite", - "Rank": 1 + "Id": 1008 }, { - "Id": 1008, + "Rank": 2, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "CommandName": "Register-PnPHubSite", - "Rank": 2 + "Id": 1009 }, { - "Id": 1009, + "Rank": 1, "Command": "Register-PnPManagementShellAccess", "CommandName": "Register-PnPManagementShellAccess", - "Rank": 1 + "Id": 1010 }, { - "Id": 1010, + "Rank": 2, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "CommandName": "Register-PnPManagementShellAccess", - "Rank": 2 + "Id": 1011 }, { - "Id": 1011, + "Rank": 3, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "CommandName": "Register-PnPManagementShellAccess", - "Rank": 3 + "Id": 1012 }, { - "Id": 1012, + "Rank": 1, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Rank": 1 + "Id": 1013 }, { - "Id": 1013, + "Rank": 2, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Rank": 2 + "Id": 1014 }, { - "Id": 1014, + "Rank": 1, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "CommandName": "Remove-PnPAlert", - "Rank": 1 + "Id": 1015 }, { - "Id": 1015, + "Rank": 2, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAlert", - "Rank": 2 + "Id": 1016 }, { - "Id": 1016, + "Rank": 1, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Remove-PnPApp", - "Rank": 1 + "Id": 1017 }, { - "Id": 1017, + "Rank": 2, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Remove-PnPApp", - "Rank": 2 + "Id": 1018 }, { - "Id": 1018, + "Rank": 1, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Remove-PnPApplicationCustomizer", - "Rank": 1 + "Id": 1019 }, { - "Id": 1019, + "Rank": 2, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "CommandName": "Remove-PnPApplicationCustomizer", - "Rank": 2 + "Id": 1020 }, { - "Id": 1020, + "Rank": 1, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "CommandName": "Remove-PnPAvailableSiteClassification", - "Rank": 1 + "Id": 1021 }, { - "Id": 1021, + "Rank": 2, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "CommandName": "Remove-PnPAvailableSiteClassification", - "Rank": 2 + "Id": 1022 }, { - "Id": 1022, + "Rank": 1, "Command": "Remove-PnPAzureADApp -Identity MyApp", "CommandName": "Remove-PnPAzureADApp", - "Rank": 1 + "Id": 1023 }, { - "Id": 1023, + "Rank": 2, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Remove-PnPAzureADApp", - "Rank": 2 + "Id": 1024 }, { - "Id": 1024, + "Rank": 1, "Command": "Remove-PnPAzureADGroup -Identity $groupId", "CommandName": "Remove-PnPAzureADGroup", - "Rank": 1 + "Id": 1025 }, { - "Id": 1025, + "Rank": 2, "Command": "Remove-PnPAzureADGroup -Identity $group", "CommandName": "Remove-PnPAzureADGroup", - "Rank": 2 + "Id": 1026 }, { - "Id": 1026, + "Rank": 1, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAzureADGroupMember", - "Rank": 1 + "Id": 1027 }, { - "Id": 1027, + "Rank": 1, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAzureADGroupOwner", - "Rank": 1 + "Id": 1028 }, { - "Id": 1028, + "Rank": 1, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 1 + "Id": 1029 }, { - "Id": 1029, + "Rank": 2, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 2 + "Id": 1030 }, { - "Id": 1030, + "Rank": 3, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 3 + "Id": 1031 }, { - "Id": 1031, + "Rank": 4, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 4 + "Id": 1032 }, { - "Id": 1032, + "Rank": 1, "Command": "Remove-PnPContentType -Identity \"Project Document\"", "CommandName": "Remove-PnPContentType", - "Rank": 1 + "Id": 1033 }, { - "Id": 1033, + "Rank": 2, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "CommandName": "Remove-PnPContentType", - "Rank": 2 + "Id": 1034 }, { - "Id": 1034, + "Rank": 1, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Rank": 1 + "Id": 1035 }, { - "Id": 1035, + "Rank": 2, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Rank": 2 + "Id": 1036 }, { - "Id": 1036, + "Rank": 1, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "CommandName": "Remove-PnPContentTypeFromList", - "Rank": 1 + "Id": 1037 }, { - "Id": 1037, + "Rank": 1, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Remove-PnPCustomAction", - "Rank": 1 + "Id": 1038 }, { - "Id": 1038, + "Rank": 2, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "CommandName": "Remove-PnPCustomAction", - "Rank": 2 + "Id": 1039 }, { - "Id": 1039, + "Rank": 3, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "CommandName": "Remove-PnPCustomAction", - "Rank": 3 + "Id": 1040 }, { - "Id": 1040, + "Rank": 1, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Rank": 1 + "Id": 1041 }, { - "Id": 1041, + "Rank": 1, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Remove-PnPEventReceiver", - "Rank": 1 + "Id": 1042 }, { - "Id": 1042, + "Rank": 2, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Remove-PnPEventReceiver", - "Rank": 2 + "Id": 1043 }, { - "Id": 1043, + "Rank": 3, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "CommandName": "Remove-PnPEventReceiver", - "Rank": 3 + "Id": 1044 }, { - "Id": 1044, + "Rank": 4, "Command": "Remove-PnPEventReceiver -List ProjectList", "CommandName": "Remove-PnPEventReceiver", - "Rank": 4 + "Id": 1045 }, { - "Id": 1045, + "Rank": 5, "Command": "Remove-PnPEventReceiver", "CommandName": "Remove-PnPEventReceiver", - "Rank": 5 + "Id": 1046 }, { - "Id": 1046, + "Rank": 6, "Command": "Remove-PnPEventReceiver -Scope Site", "CommandName": "Remove-PnPEventReceiver", - "Rank": 6 + "Id": 1047 }, { - "Id": 1047, + "Rank": 7, "Command": "Remove-PnPEventReceiver -Scope Web", "CommandName": "Remove-PnPEventReceiver", - "Rank": 7 + "Id": 1048 }, { - "Id": 1048, + "Rank": 8, "Command": "Remove-PnPEventReceiver -Scope All", "CommandName": "Remove-PnPEventReceiver", - "Rank": 8 + "Id": 1049 }, { - "Id": 1049, + "Rank": 1, "Command": "Remove-PnPField -Identity \"Speakers\"", "CommandName": "Remove-PnPField", - "Rank": 1 + "Id": 1050 }, { - "Id": 1050, + "Rank": 2, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "CommandName": "Remove-PnPField", - "Rank": 2 + "Id": 1051 }, { - "Id": 1051, + "Rank": 1, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "CommandName": "Remove-PnPFieldFromContentType", - "Rank": 1 + "Id": 1052 }, { - "Id": 1052, + "Rank": 2, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "CommandName": "Remove-PnPFieldFromContentType", - "Rank": 2 + "Id": 1053 }, { - "Id": 1053, + "Rank": 1, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "CommandName": "Remove-PnPFile", - "Rank": 1 + "Id": 1054 }, { - "Id": 1054, + "Rank": 2, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "CommandName": "Remove-PnPFile", - "Rank": 2 + "Id": 1055 }, { - "Id": 1055, + "Rank": 3, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "CommandName": "Remove-PnPFile", - "Rank": 3 + "Id": 1056 }, { - "Id": 1056, + "Rank": 1, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "CommandName": "Remove-PnPFileFromSiteTemplate", - "Rank": 1 + "Id": 1057 }, { - "Id": 1057, + "Rank": 1, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Remove-PnPFileSharingLink", - "Rank": 1 + "Id": 1058 }, { - "Id": 1058, + "Rank": 2, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "CommandName": "Remove-PnPFileSharingLink", - "Rank": 2 + "Id": 1059 }, { - "Id": 1059, + "Rank": 1, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "CommandName": "Remove-PnPFileVersion", - "Rank": 1 + "Id": 1060 }, { - "Id": 1060, + "Rank": 2, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "CommandName": "Remove-PnPFileVersion", - "Rank": 2 + "Id": 1061 }, { - "Id": 1061, + "Rank": 3, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "CommandName": "Remove-PnPFileVersion", - "Rank": 3 + "Id": 1062 }, { - "Id": 1062, + "Rank": 1, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "CommandName": "Remove-PnPFlowOwner", - "Rank": 1 + "Id": 1063 }, { - "Id": 1063, + "Rank": 2, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "CommandName": "Remove-PnPFlowOwner", - "Rank": 2 + "Id": 1064 }, { - "Id": 1064, + "Rank": 3, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "CommandName": "Remove-PnPFlowOwner", - "Rank": 3 + "Id": 1065 }, { - "Id": 1065, + "Rank": 4, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "CommandName": "Remove-PnPFlowOwner", - "Rank": 4 + "Id": 1066 }, { - "Id": 1066, + "Rank": 1, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "CommandName": "Remove-PnPFolder", - "Rank": 1 + "Id": 1067 }, { - "Id": 1067, + "Rank": 2, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "CommandName": "Remove-PnPFolder", - "Rank": 2 + "Id": 1068 }, { - "Id": 1068, + "Rank": 1, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Remove-PnPFolderSharingLink", - "Rank": 1 + "Id": 1069 }, { - "Id": 1069, + "Rank": 2, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "CommandName": "Remove-PnPFolderSharingLink", - "Rank": 2 + "Id": 1070 }, { - "Id": 1070, + "Rank": 1, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "CommandName": "Remove-PnPGraphSubscription", - "Rank": 1 + "Id": 1071 }, { - "Id": 1071, + "Rank": 1, "Command": "Remove-PnPGroup -Identity \"My Users\"", "CommandName": "Remove-PnPGroup", - "Rank": 1 + "Id": 1072 }, { - "Id": 1072, + "Rank": 1, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "CommandName": "Remove-PnPGroupMember", - "Rank": 1 + "Id": 1073 }, { - "Id": 1073, + "Rank": 1, "Command": "Remove-PnPHomeSite", "CommandName": "Remove-PnPHomeSite", - "Rank": 1 + "Id": 1074 }, { - "Id": 1074, + "Rank": 1, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "CommandName": "Remove-PnPHubSiteAssociation", - "Rank": 1 + "Id": 1075 }, { - "Id": 1075, + "Rank": 1, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "CommandName": "Remove-PnPHubToHubAssociation", - "Rank": 1 + "Id": 1076 }, { - "Id": 1076, + "Rank": 2, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "CommandName": "Remove-PnPHubToHubAssociation", - "Rank": 2 + "Id": 1077 }, { - "Id": 1077, + "Rank": 1, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "CommandName": "Remove-PnPIndexedProperty", - "Rank": 1 + "Id": 1078 }, { - "Id": 1078, + "Rank": 1, "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 1 + "Id": 1079 }, { - "Id": 1079, + "Rank": 2, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 2 + "Id": 1080 }, { - "Id": 1080, + "Rank": 3, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 3 + "Id": 1081 }, { - "Id": 1081, + "Rank": 4, "Command": "Remove-PnPJavaScriptLink -Scope Site", "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 4 + "Id": 1082 }, { - "Id": 1082, + "Rank": 5, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 5 + "Id": 1083 }, { - "Id": 1083, + "Rank": 1, "Command": "Remove-PnPKnowledgeHubSite", "CommandName": "Remove-PnPKnowledgeHubSite", - "Rank": 1 + "Id": 1084 }, { - "Id": 1084, + "Rank": 1, "Command": "Remove-PnPList -Identity Announcements", "CommandName": "Remove-PnPList", - "Rank": 1 + "Id": 1085 }, { - "Id": 1085, + "Rank": 2, "Command": "Remove-PnPList -Identity Announcements -Force", "CommandName": "Remove-PnPList", - "Rank": 2 + "Id": 1086 }, { - "Id": 1086, + "Rank": 3, "Command": "Remove-PnPList -Identity Announcements -Recycle", "CommandName": "Remove-PnPList", - "Rank": 3 + "Id": 1087 }, { - "Id": 1087, + "Rank": 4, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "CommandName": "Remove-PnPList", - "Rank": 4 + "Id": 1088 }, { - "Id": 1088, + "Rank": 1, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPListDesign", - "Rank": 1 + "Id": 1089 }, { - "Id": 1089, + "Rank": 1, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "CommandName": "Remove-PnPListItem", - "Rank": 1 + "Id": 1090 }, { - "Id": 1090, + "Rank": 2, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "CommandName": "Remove-PnPListItem", - "Rank": 2 + "Id": 1091 }, { - "Id": 1091, + "Rank": 3, "Command": "Remove-PnPListItem -List \"Demo List\"", "CommandName": "Remove-PnPListItem", - "Rank": 3 + "Id": 1092 }, { - "Id": 1092, + "Rank": 1, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "CommandName": "Remove-PnPListItemAttachment", - "Rank": 1 + "Id": 1093 }, { - "Id": 1093, + "Rank": 2, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "CommandName": "Remove-PnPListItemAttachment", - "Rank": 2 + "Id": 1094 }, { - "Id": 1094, + "Rank": 3, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "CommandName": "Remove-PnPListItemAttachment", - "Rank": 3 + "Id": 1095 }, { - "Id": 1095, + "Rank": 4, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "CommandName": "Remove-PnPListItemAttachment", - "Rank": 4 + "Id": 1096 }, { - "Id": 1096, + "Rank": 5, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "CommandName": "Remove-PnPListItemAttachment", - "Rank": 5 + "Id": 1097 }, { - "Id": 1097, + "Rank": 1, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "CommandName": "Remove-PnPListItemVersion", - "Rank": 1 + "Id": 1098 }, { - "Id": 1098, + "Rank": 2, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "CommandName": "Remove-PnPListItemVersion", - "Rank": 2 + "Id": 1099 }, { - "Id": 1099, + "Rank": 1, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "CommandName": "Remove-PnPMicrosoft365Group", - "Rank": 1 + "Id": 1100 }, { - "Id": 1100, + "Rank": 2, "Command": "Remove-PnPMicrosoft365Group -Identity $group", "CommandName": "Remove-PnPMicrosoft365Group", - "Rank": 2 + "Id": 1101 }, { - "Id": 1101, + "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Rank": 1 + "Id": 1102 }, { - "Id": 1102, + "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Rank": 1 + "Id": 1103 }, { - "Id": 1103, + "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Rank": 1 + "Id": 1104 }, { - "Id": 1104, + "Rank": 2, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Rank": 2 + "Id": 1105 }, { - "Id": 1105, + "Rank": 1, "Command": "Remove-PnPNavigationNode -Identity 1032", "CommandName": "Remove-PnPNavigationNode", - "Rank": 1 + "Id": 1106 }, { - "Id": 1106, + "Rank": 2, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "CommandName": "Remove-PnPNavigationNode", - "Rank": 2 + "Id": 1107 }, { - "Id": 1107, + "Rank": 3, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "CommandName": "Remove-PnPNavigationNode", - "Rank": 3 + "Id": 1108 }, { - "Id": 1108, + "Rank": 1, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 1 + "Id": 1109 }, { - "Id": 1109, + "Rank": 2, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 2 + "Id": 1110 }, { - "Id": 1110, + "Rank": 3, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 3 + "Id": 1111 }, { - "Id": 1111, + "Rank": 1, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "CommandName": "Remove-PnPOrgNewsSite", - "Rank": 1 + "Id": 1112 }, { - "Id": 1112, + "Rank": 1, "Command": "Remove-PnPPage -Identity \"MyPage\"", "CommandName": "Remove-PnPPage", - "Rank": 1 + "Id": 1113 }, { - "Id": 1113, + "Rank": 2, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "CommandName": "Remove-PnPPage", - "Rank": 2 + "Id": 1114 }, { - "Id": 1114, + "Rank": 3, "Command": "Remove-PnPPage $page", "CommandName": "Remove-PnPPage", - "Rank": 3 + "Id": 1115 }, { - "Id": 1115, + "Rank": 4, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "CommandName": "Remove-PnPPage", - "Rank": 4 + "Id": 1116 }, { - "Id": 1116, + "Rank": 1, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Remove-PnPPageComponent", - "Rank": 1 + "Id": 1117 }, { - "Id": 1117, + "Rank": 1, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "CommandName": "Remove-PnPPlannerBucket", - "Rank": 1 + "Id": 1118 }, { - "Id": 1118, + "Rank": 1, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "CommandName": "Remove-PnPPlannerPlan", - "Rank": 1 + "Id": 1119 }, { - "Id": 1119, + "Rank": 1, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "CommandName": "Remove-PnPPlannerRoster", - "Rank": 1 + "Id": 1120 }, { - "Id": 1120, + "Rank": 1, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPPlannerRosterMember", - "Rank": 1 + "Id": 1121 }, { - "Id": 1121, + "Rank": 1, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "CommandName": "Remove-PnPPlannerTask", - "Rank": 1 + "Id": 1122 }, { - "Id": 1122, + "Rank": 1, "Command": "Remove-PnPPropertyBagValue -Key MyKey", "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 1 + "Id": 1123 }, { - "Id": 1123, + "Rank": 2, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 2 + "Id": 1124 }, { - "Id": 1124, + "Rank": 3, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 3 + "Id": 1125 }, { - "Id": 1125, + "Rank": 1, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "CommandName": "Remove-PnPPublishingImageRendition", - "Rank": 1 + "Id": 1126 }, { - "Id": 1126, + "Rank": 1, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "CommandName": "Remove-PnPRoleDefinition", - "Rank": 1 + "Id": 1127 }, { - "Id": 1127, + "Rank": 1, "Command": "Remove-PnPSdnProvider -Confirm:false", "CommandName": "Remove-PnPSdnProvider", - "Rank": 1 + "Id": 1128 }, { - "Id": 1128, + "Rank": 1, "Command": "Remove-PnPSearchConfiguration -Configuration $config", "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 1 + "Id": 1129 }, { - "Id": 1129, + "Rank": 2, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 2 + "Id": 1130 }, { - "Id": 1130, + "Rank": 3, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 3 + "Id": 1131 }, { - "Id": 1131, + "Rank": 4, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 4 + "Id": 1132 }, { - "Id": 1132, + "Rank": 1, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPSiteCollectionAdmin", - "Rank": 1 + "Id": 1133 }, { - "Id": 1133, + "Rank": 2, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Remove-PnPSiteCollectionAdmin", - "Rank": 2 + "Id": 1134 }, { - "Id": 1134, + "Rank": 1, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Rank": 1 + "Id": 1135 }, { - "Id": 1135, + "Rank": 1, "Command": "Remove-PnPSiteCollectionTermStore", "CommandName": "Remove-PnPSiteCollectionTermStore", - "Rank": 1 + "Id": 1136 }, { - "Id": 1136, + "Rank": 1, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteDesign", - "Rank": 1 + "Id": 1137 }, { - "Id": 1137, + "Rank": 1, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteDesignTask", - "Rank": 1 + "Id": 1138 }, { - "Id": 1138, + "Rank": 1, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Remove-PnPSiteGroup", - "Rank": 1 + "Id": 1139 }, { - "Id": 1139, + "Rank": 2, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "CommandName": "Remove-PnPSiteGroup", - "Rank": 2 + "Id": 1140 }, { - "Id": 1140, + "Rank": 1, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteScript", - "Rank": 1 + "Id": 1141 }, { - "Id": 1141, + "Rank": 1, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "CommandName": "Remove-PnPSiteUserInvitations", - "Rank": 1 + "Id": 1142 }, { - "Id": 1142, + "Rank": 1, "Command": "Remove-PnPStorageEntity -Key MyKey", "CommandName": "Remove-PnPStorageEntity", - "Rank": 1 + "Id": 1143 }, { - "Id": 1143, + "Rank": 2, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "CommandName": "Remove-PnPStorageEntity", - "Rank": 2 + "Id": 1144 }, { - "Id": 1144, + "Rank": 1, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "CommandName": "Remove-PnPStoredCredential", - "Rank": 1 + "Id": 1145 }, { - "Id": 1145, + "Rank": 1, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "CommandName": "Remove-PnPTaxonomyItem", - "Rank": 1 + "Id": 1146 }, { - "Id": 1146, + "Rank": 2, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "CommandName": "Remove-PnPTaxonomyItem", - "Rank": 2 + "Id": 1147 }, { - "Id": 1147, + "Rank": 1, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "CommandName": "Remove-PnPTeamsApp", - "Rank": 1 + "Id": 1148 }, { - "Id": 1148, + "Rank": 2, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "CommandName": "Remove-PnPTeamsApp", - "Rank": 2 + "Id": 1149 }, { - "Id": 1149, + "Rank": 1, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "CommandName": "Remove-PnPTeamsChannel", - "Rank": 1 + "Id": 1150 }, { - "Id": 1150, + "Rank": 1, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 1 + "Id": 1151 }, { - "Id": 1151, + "Rank": 2, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 2 + "Id": 1152 }, { - "Id": 1152, + "Rank": 3, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 3 + "Id": 1153 }, { - "Id": 1153, + "Rank": 1, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "CommandName": "Remove-PnPTeamsTab", - "Rank": 1 + "Id": 1154 }, { - "Id": 1154, + "Rank": 2, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "CommandName": "Remove-PnPTeamsTab", - "Rank": 2 + "Id": 1155 }, { - "Id": 1155, + "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", - "Rank": 3 + "Id": 1156 }, { - "Id": 1156, + "Rank": 1, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "CommandName": "Remove-PnPTeamsTag", - "Rank": 1 + "Id": 1157 }, { - "Id": 1157, + "Rank": 1, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "CommandName": "Remove-PnPTeamsTeam", - "Rank": 1 + "Id": 1158 }, { - "Id": 1158, + "Rank": 2, "Command": "Remove-PnPTeamsTeam -Identity testteam", "CommandName": "Remove-PnPTeamsTeam", - "Rank": 2 + "Id": 1159 }, { - "Id": 1159, + "Rank": 1, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "CommandName": "Remove-PnPTeamsUser", - "Rank": 1 + "Id": 1160 }, { - "Id": 1160, + "Rank": 2, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Remove-PnPTeamsUser", - "Rank": 2 + "Id": 1161 }, { - "Id": 1161, + "Rank": 1, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "CommandName": "Remove-PnPTenantCdnOrigin", - "Rank": 1 + "Id": 1162 }, { - "Id": 1162, + "Rank": 1, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Remove-PnPTenantDeletedSite", - "Rank": 1 + "Id": 1163 }, { - "Id": 1163, + "Rank": 2, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "CommandName": "Remove-PnPTenantDeletedSite", - "Rank": 2 + "Id": 1164 }, { - "Id": 1164, + "Rank": 1, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Remove-PnPTenantSite", - "Rank": 1 + "Id": 1165 }, { - "Id": 1165, + "Rank": 2, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "CommandName": "Remove-PnPTenantSite", - "Rank": 2 + "Id": 1166 }, { - "Id": 1166, + "Rank": 3, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "CommandName": "Remove-PnPTenantSite", - "Rank": 3 + "Id": 1167 }, { - "Id": 1167, + "Rank": 1, "Command": "Remove-PnPTenantSyncClientRestriction", "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1 + "Id": 1168 }, { - "Id": 1168, + "Rank": 1, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "CommandName": "Remove-PnPTenantTheme", - "Rank": 1 + "Id": 1169 }, { - "Id": 1169, + "Rank": 1, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "CommandName": "Remove-PnPTerm", - "Rank": 1 + "Id": 1170 }, { - "Id": 1170, + "Rank": 2, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Remove-PnPTerm", - "Rank": 2 + "Id": 1171 }, { - "Id": 1171, + "Rank": 1, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "CommandName": "Remove-PnPTermGroup", - "Rank": 1 + "Id": 1172 }, { - "Id": 1172, + "Rank": 2, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "CommandName": "Remove-PnPTermGroup", - "Rank": 2 + "Id": 1173 }, { - "Id": 1173, + "Rank": 3, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "CommandName": "Remove-PnPTermGroup", - "Rank": 3 + "Id": 1174 }, { - "Id": 1174, + "Rank": 1, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "CommandName": "Remove-PnPTermLabel", - "Rank": 1 + "Id": 1175 }, { - "Id": 1175, + "Rank": 2, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Remove-PnPTermLabel", - "Rank": 2 + "Id": 1176 }, { - "Id": 1176, + "Rank": 1, "Command": "Remove-PnPUser -Identity 23", "CommandName": "Remove-PnPUser", - "Rank": 1 + "Id": 1177 }, { - "Id": 1177, + "Rank": 2, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "CommandName": "Remove-PnPUser", - "Rank": 2 + "Id": 1178 }, { - "Id": 1178, + "Rank": 3, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "CommandName": "Remove-PnPUser", - "Rank": 3 + "Id": 1179 }, { - "Id": 1179, + "Rank": 1, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "CommandName": "Remove-PnPUserInfo", - "Rank": 1 + "Id": 1180 }, { - "Id": 1180, + "Rank": 1, "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "CommandName": "Remove-PnPUserProfile", - "Rank": 1 + "Id": 1181 }, { - "Id": 1181, + "Rank": 1, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "CommandName": "Remove-PnPView", - "Rank": 1 + "Id": 1182 }, { - "Id": 1182, + "Rank": 1, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Rank": 1 + "Id": 1183 }, { - "Id": 1183, + "Rank": 1, "Command": "Remove-PnPWeb -Identity projectA", "CommandName": "Remove-PnPWeb", - "Rank": 1 + "Id": 1184 }, { - "Id": 1184, + "Rank": 2, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "CommandName": "Remove-PnPWeb", - "Rank": 2 + "Id": 1185 }, { - "Id": 1185, + "Rank": 1, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "CommandName": "Remove-PnPWebhookSubscription", - "Rank": 1 + "Id": 1186 }, { - "Id": 1186, + "Rank": 1, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Remove-PnPWebPart", - "Rank": 1 + "Id": 1187 }, { - "Id": 1187, + "Rank": 2, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "CommandName": "Remove-PnPWebPart", - "Rank": 2 + "Id": 1188 }, { - "Id": 1188, + "Rank": 1, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "CommandName": "Remove-PnPWikiPage", - "Rank": 1 + "Id": 1189 }, { - "Id": 1189, + "Rank": 1, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "CommandName": "Rename-PnPFile", - "Rank": 1 + "Id": 1190 }, { - "Id": 1190, + "Rank": 2, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "CommandName": "Rename-PnPFile", - "Rank": 2 + "Id": 1191 }, { - "Id": 1191, + "Rank": 3, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "CommandName": "Rename-PnPFile", - "Rank": 3 + "Id": 1192 }, { - "Id": 1192, + "Rank": 1, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "CommandName": "Rename-PnPFolder", - "Rank": 1 + "Id": 1193 }, { - "Id": 1193, + "Rank": 1, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Repair-PnPSite", - "Rank": 1 + "Id": 1194 }, { - "Id": 1194, + "Rank": 2, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "CommandName": "Repair-PnPSite", - "Rank": 2 + "Id": 1195 }, { - "Id": 1195, + "Rank": 1, "Command": "Request-PnPAccessToken", "CommandName": "Request-PnPAccessToken", - "Rank": 1 + "Id": 1196 }, { - "Id": 1196, + "Rank": 2, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "CommandName": "Request-PnPAccessToken", - "Rank": 2 + "Id": 1197 }, { - "Id": 1197, + "Rank": 3, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "CommandName": "Request-PnPAccessToken", - "Rank": 3 + "Id": 1198 }, { - "Id": 1198, + "Rank": 4, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "CommandName": "Request-PnPAccessToken", - "Rank": 4 + "Id": 1199 }, { - "Id": 1199, + "Rank": 1, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "CommandName": "Request-PnPPersonalSite", - "Rank": 1 + "Id": 1200 }, { - "Id": 1200, + "Rank": 2, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "CommandName": "Request-PnPPersonalSite", - "Rank": 2 + "Id": 1201 }, { - "Id": 1201, + "Rank": 1, "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "CommandName": "Request-PnPReIndexList", - "Rank": 1 + "Id": 1202 }, { - "Id": 1202, + "Rank": 1, "Command": "Request-PnPReIndexWeb", "CommandName": "Request-PnPReIndexWeb", - "Rank": 1 + "Id": 1203 }, { - "Id": 1203, + "Rank": 1, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 1 + "Id": 1204 }, { - "Id": 1204, + "Rank": 2, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 2 + "Id": 1205 }, { - "Id": 1205, + "Rank": 3, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 3 + "Id": 1206 }, { - "Id": 1206, + "Rank": 1, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "CommandName": "Reset-PnPFileVersion", - "Rank": 1 + "Id": 1207 }, { - "Id": 1207, + "Rank": 2, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "CommandName": "Reset-PnPFileVersion", - "Rank": 2 + "Id": 1208 }, { - "Id": 1208, + "Rank": 1, "Command": "Reset-PnPLabel -List \"Demo List\"", "CommandName": "Reset-PnPLabel", - "Rank": 1 + "Id": 1209 }, { - "Id": 1209, + "Rank": 2, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "CommandName": "Reset-PnPLabel", - "Rank": 2 + "Id": 1210 }, { - "Id": 1210, + "Rank": 1, "Command": "Reset-PnPMicrosoft365GroupExpiration", "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1 + "Id": 1211 }, { - "Id": 1211, + "Rank": 1, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Rank": 1 + "Id": 1212 }, { - "Id": 1212, + "Rank": 1, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "CommandName": "Resolve-PnPFolder", - "Rank": 1 + "Id": 1213 }, { - "Id": 1213, + "Rank": 1, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Rank": 1 + "Id": 1214 }, { - "Id": 1214, + "Rank": 1, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "CommandName": "Restore-PnPFileVersion", - "Rank": 1 + "Id": 1215 }, { - "Id": 1215, + "Rank": 2, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "CommandName": "Restore-PnPFileVersion", - "Rank": 2 + "Id": 1216 }, { - "Id": 1216, + "Rank": 3, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "CommandName": "Restore-PnPFileVersion", - "Rank": 3 + "Id": 1217 }, { - "Id": 1217, + "Rank": 1, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "CommandName": "Restore-PnPListItemVersion", - "Rank": 1 + "Id": 1218 }, { - "Id": 1218, + "Rank": 2, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "CommandName": "Restore-PnPListItemVersion", - "Rank": 2 + "Id": 1219 }, { - "Id": 1219, + "Rank": 1, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "CommandName": "Restore-PnPRecycleBinItem", - "Rank": 1 + "Id": 1220 }, { - "Id": 1220, + "Rank": 1, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Restore-PnPTenantRecycleBinItem", - "Rank": 1 + "Id": 1221 }, { - "Id": 1221, + "Rank": 2, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "CommandName": "Restore-PnPTenantRecycleBinItem", - "Rank": 2 + "Id": 1222 }, { - "Id": 1222, + "Rank": 1, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Restore-PnPTenantSite", - "Rank": 1 + "Id": 1223 }, { - "Id": 1223, + "Rank": 2, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "CommandName": "Restore-PnPTenantSite", - "Rank": 2 + "Id": 1224 }, { - "Id": 1224, + "Rank": 3, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "CommandName": "Restore-PnPTenantSite", - "Rank": 3 + "Id": 1225 }, { - "Id": 1225, + "Rank": 1, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Rank": 1 + "Id": 1226 }, { - "Id": 1226, + "Rank": 1, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Revoke-PnPHubSiteRights", - "Rank": 1 + "Id": 1227 }, { - "Id": 1227, + "Rank": 1, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Revoke-PnPSiteDesignRights", - "Rank": 1 + "Id": 1228 }, { - "Id": 1228, + "Rank": 1, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Rank": 1 + "Id": 1229 }, { - "Id": 1229, + "Rank": 1, "Command": "Revoke-PnPUserSession -User user1@contoso.com", "CommandName": "Revoke-PnPUserSession", - "Rank": 1 + "Id": 1230 }, { - "Id": 1230, + "Rank": 1, "Command": "Save-PnPPageConversionLog", "CommandName": "Save-PnPPageConversionLog", - "Rank": 1 + "Id": 1231 }, { - "Id": 1231, + "Rank": 1, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "CommandName": "Save-PnPSiteTemplate", - "Rank": 1 + "Id": 1232 }, { - "Id": 1232, + "Rank": 1, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "CommandName": "Save-PnPTenantTemplate", - "Rank": 1 + "Id": 1233 }, { - "Id": 1233, + "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", - "Rank": 1 + "Id": 1234 }, { - "Id": 1234, + "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", - "Rank": 2 + "Id": 1235 }, { - "Id": 1235, + "Rank": 3, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "CommandName": "Send-PnPMail", - "Rank": 3 + "Id": 1236 }, { - "Id": 1236, + "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", - "Rank": 4 + "Id": 1237 }, { - "Id": 1237, + "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", - "Rank": 5 + "Id": 1238 }, { - "Id": 1238, + "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", - "Rank": 6 + "Id": 1239 }, { - "Id": 1239, + "Rank": 1, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "CommandName": "Set-PnPAdaptiveScopeProperty", - "Rank": 1 + "Id": 1240 }, { - "Id": 1240, + "Rank": 1, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Set-PnPApplicationCustomizer", - "Rank": 1 + "Id": 1241 }, { - "Id": 1241, + "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", - "Rank": 2 + "Id": 1242 }, { - "Id": 1242, + "Rank": 1, "Command": "Set-PnPAppSideLoading -On", "CommandName": "Set-PnPAppSideLoading", - "Rank": 1 + "Id": 1243 }, { - "Id": 1243, + "Rank": 2, "Command": "Set-PnPAppSideLoading -Off", "CommandName": "Set-PnPAppSideLoading", - "Rank": 2 + "Id": 1244 }, { - "Id": 1244, + "Rank": 1, "Command": "Set-PnPAuditing -EnableAll", "CommandName": "Set-PnPAuditing", - "Rank": 1 + "Id": 1245 }, { - "Id": 1245, + "Rank": 2, "Command": "Set-PnPAuditing -DisableAll", "CommandName": "Set-PnPAuditing", - "Rank": 2 + "Id": 1246 }, { - "Id": 1246, + "Rank": 3, "Command": "Set-PnPAuditing -RetentionTime 7", "CommandName": "Set-PnPAuditing", - "Rank": 3 + "Id": 1247 }, { - "Id": 1247, + "Rank": 4, "Command": "Set-PnPAuditing -TrimAuditLog", "CommandName": "Set-PnPAuditing", - "Rank": 4 + "Id": 1248 }, { - "Id": 1248, + "Rank": 5, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "CommandName": "Set-PnPAuditing", - "Rank": 5 + "Id": 1249 }, { - "Id": 1249, + "Rank": 1, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "CommandName": "Set-PnPAvailablePageLayouts", - "Rank": 1 + "Id": 1250 }, { - "Id": 1250, + "Rank": 1, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "CommandName": "Set-PnPAzureADAppSitePermission", - "Rank": 1 + "Id": 1251 }, { - "Id": 1251, + "Rank": 2, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "CommandName": "Set-PnPAzureADAppSitePermission", - "Rank": 2 + "Id": 1252 }, { - "Id": 1252, + "Rank": 1, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPAzureADGroup", - "Rank": 1 + "Id": 1253 }, { - "Id": 1253, + "Rank": 2, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPAzureADGroup", - "Rank": 2 + "Id": 1254 }, { - "Id": 1254, + "Rank": 3, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "CommandName": "Set-PnPAzureADGroup", - "Rank": 3 + "Id": 1255 }, { - "Id": 1255, + "Rank": 1, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 1 + "Id": 1256 }, { - "Id": 1256, + "Rank": 2, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 2 + "Id": 1257 }, { - "Id": 1257, + "Rank": 3, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 3 + "Id": 1258 }, { - "Id": 1258, + "Rank": 1, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Rank": 1 + "Id": 1259 }, { - "Id": 1259, + "Rank": 2, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Rank": 2 + "Id": 1260 }, { - "Id": 1260, + "Rank": 1, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 1 + "Id": 1261 }, { - "Id": 1261, + "Rank": 2, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 2 + "Id": 1262 }, { - "Id": 1262, + "Rank": 3, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 3 + "Id": 1263 }, { - "Id": 1263, + "Rank": 4, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 4 + "Id": 1264 }, { - "Id": 1264, + "Rank": 1, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "CommandName": "Set-PnPContentType", - "Rank": 1 + "Id": 1265 }, { - "Id": 1265, + "Rank": 2, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "CommandName": "Set-PnPContentType", - "Rank": 2 + "Id": 1266 }, { - "Id": 1266, + "Rank": 3, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "CommandName": "Set-PnPContentType", - "Rank": 3 + "Id": 1267 }, { - "Id": 1267, + "Rank": 4, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "CommandName": "Set-PnPContentType", - "Rank": 4 + "Id": 1268 }, { - "Id": 1268, + "Rank": 5, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "CommandName": "Set-PnPContentType", - "Rank": 5 + "Id": 1269 }, { - "Id": 1269, + "Rank": 1, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 1 + "Id": 1270 }, { - "Id": 1270, + "Rank": 2, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 2 + "Id": 1271 }, { - "Id": 1271, + "Rank": 3, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 3 + "Id": 1272 }, { - "Id": 1272, + "Rank": 4, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 4 + "Id": 1273 }, { - "Id": 1273, + "Rank": 1, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "CommandName": "Set-PnPDefaultContentTypeToList", - "Rank": 1 + "Id": 1274 }, { - "Id": 1274, + "Rank": 1, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 1 + "Id": 1275 }, { - "Id": 1275, + "Rank": 2, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 2 + "Id": 1276 }, { - "Id": 1276, + "Rank": 3, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 3 + "Id": 1277 }, { - "Id": 1277, + "Rank": 1, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 1 + "Id": 1278 }, { - "Id": 1278, + "Rank": 2, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 2 + "Id": 1279 }, { - "Id": 1279, + "Rank": 3, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 3 + "Id": 1280 }, { - "Id": 1280, + "Rank": 1, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "CommandName": "Set-PnPDocumentSetField", - "Rank": 1 + "Id": 1281 }, { - "Id": 1281, + "Rank": 2, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "CommandName": "Set-PnPDocumentSetField", - "Rank": 2 + "Id": 1282 }, { - "Id": 1282, + "Rank": 1, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "CommandName": "Set-PnPField", - "Rank": 1 + "Id": 1283 }, { - "Id": 1283, + "Rank": 2, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "CommandName": "Set-PnPField", - "Rank": 2 + "Id": 1284 }, { - "Id": 1284, + "Rank": 3, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "CommandName": "Set-PnPField", - "Rank": 3 + "Id": 1285 }, { - "Id": 1285, + "Rank": 1, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "CommandName": "Set-PnPFileCheckedIn", - "Rank": 1 + "Id": 1286 }, { - "Id": 1286, + "Rank": 2, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "CommandName": "Set-PnPFileCheckedIn", - "Rank": 2 + "Id": 1287 }, { - "Id": 1287, + "Rank": 1, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "CommandName": "Set-PnPFileCheckedOut", - "Rank": 1 + "Id": 1288 }, { - "Id": 1288, + "Rank": 1, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPFolderPermission", - "Rank": 1 + "Id": 1289 }, { - "Id": 1289, + "Rank": 2, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPFolderPermission", - "Rank": 2 + "Id": 1290 }, { - "Id": 1290, + "Rank": 3, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "CommandName": "Set-PnPFolderPermission", - "Rank": 3 + "Id": 1291 }, { - "Id": 1291, + "Rank": 1, "Command": "Set-PnPFooter -Enabled:$true", "CommandName": "Set-PnPFooter", - "Rank": 1 + "Id": 1292 }, { - "Id": 1292, + "Rank": 2, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "CommandName": "Set-PnPFooter", - "Rank": 2 + "Id": 1293 }, { - "Id": 1293, + "Rank": 3, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "CommandName": "Set-PnPFooter", - "Rank": 3 + "Id": 1294 }, { - "Id": 1294, + "Rank": 4, "Command": "Set-PnPFooter -LogoUrl \"\"", "CommandName": "Set-PnPFooter", - "Rank": 4 + "Id": 1295 }, { - "Id": 1295, + "Rank": 1, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "CommandName": "Set-PnPGraphSubscription", - "Rank": 1 + "Id": 1296 }, { - "Id": 1296, + "Rank": 1, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "CommandName": "Set-PnPGroup", - "Rank": 1 + "Id": 1297 }, { - "Id": 1297, + "Rank": 2, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "CommandName": "Set-PnPGroup", - "Rank": 2 + "Id": 1298 }, { - "Id": 1298, + "Rank": 1, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "CommandName": "Set-PnPGroupPermissions", - "Rank": 1 + "Id": 1299 }, { - "Id": 1299, + "Rank": 2, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "CommandName": "Set-PnPGroupPermissions", - "Rank": 2 + "Id": 1300 }, { - "Id": 1300, + "Rank": 3, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "CommandName": "Set-PnPGroupPermissions", - "Rank": 3 + "Id": 1301 }, { - "Id": 1301, + "Rank": 4, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "CommandName": "Set-PnPGroupPermissions", - "Rank": 4 + "Id": 1302 }, { - "Id": 1302, + "Rank": 5, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "CommandName": "Set-PnPGroupPermissions", - "Rank": 5 + "Id": 1303 }, { - "Id": 1303, + "Rank": 1, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "CommandName": "Set-PnPHideDefaultThemes", - "Rank": 1 + "Id": 1304 }, { - "Id": 1304, + "Rank": 2, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "CommandName": "Set-PnPHideDefaultThemes", - "Rank": 2 + "Id": 1305 }, { - "Id": 1305, + "Rank": 1, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "CommandName": "Set-PnPHomePage", - "Rank": 1 + "Id": 1306 }, { - "Id": 1306, + "Rank": 2, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "CommandName": "Set-PnPHomePage", - "Rank": 2 + "Id": 1307 }, { - "Id": 1307, + "Rank": 1, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "CommandName": "Set-PnPHomeSite", - "Rank": 1 + "Id": 1308 }, { - "Id": 1308, + "Rank": 2, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "CommandName": "Set-PnPHomeSite", - "Rank": 2 + "Id": 1309 }, { - "Id": 1309, + "Rank": 1, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "CommandName": "Set-PnPHubSite", - "Rank": 1 + "Id": 1310 }, { - "Id": 1310, + "Rank": 2, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "CommandName": "Set-PnPHubSite", - "Rank": 2 + "Id": 1311 }, { - "Id": 1311, + "Rank": 3, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "CommandName": "Set-PnPHubSite", - "Rank": 3 + "Id": 1312 }, { - "Id": 1312, + "Rank": 4, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "CommandName": "Set-PnPHubSite", - "Rank": 4 + "Id": 1313 }, { - "Id": 1313, + "Rank": 5, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "CommandName": "Set-PnPHubSite", - "Rank": 5 + "Id": 1314 }, { - "Id": 1314, + "Rank": 6, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "CommandName": "Set-PnPHubSite", - "Rank": 6 + "Id": 1315 }, { - "Id": 1315, + "Rank": 1, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "CommandName": "Set-PnPImageListItemColumn", - "Rank": 1 + "Id": 1316 }, { - "Id": 1316, + "Rank": 2, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "CommandName": "Set-PnPImageListItemColumn", - "Rank": 2 + "Id": 1317 }, { - "Id": 1317, + "Rank": 1, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "CommandName": "Set-PnPIndexedProperties", - "Rank": 1 + "Id": 1318 }, { - "Id": 1318, + "Rank": 1, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "CommandName": "Set-PnPInPlaceRecordsManagement", - "Rank": 1 + "Id": 1319 }, { - "Id": 1319, + "Rank": 2, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "CommandName": "Set-PnPInPlaceRecordsManagement", - "Rank": 2 + "Id": 1320 }, { - "Id": 1320, + "Rank": 1, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "CommandName": "Set-PnPKnowledgeHubSite", - "Rank": 1 + "Id": 1321 }, { - "Id": 1321, + "Rank": 1, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "CommandName": "Set-PnPLabel", - "Rank": 1 + "Id": 1322 }, { - "Id": 1322, + "Rank": 2, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "CommandName": "Set-PnPLabel", - "Rank": 2 + "Id": 1323 }, { - "Id": 1323, + "Rank": 1, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "CommandName": "Set-PnPList", - "Rank": 1 + "Id": 1324 }, { - "Id": 1324, + "Rank": 2, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "CommandName": "Set-PnPList", - "Rank": 2 + "Id": 1325 }, { - "Id": 1325, + "Rank": 3, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "CommandName": "Set-PnPList", - "Rank": 3 + "Id": 1326 }, { - "Id": 1326, + "Rank": 4, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "CommandName": "Set-PnPList", - "Rank": 4 + "Id": 1327 }, { - "Id": 1327, + "Rank": 5, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "CommandName": "Set-PnPList", - "Rank": 5 + "Id": 1328 }, { - "Id": 1328, + "Rank": 6, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "CommandName": "Set-PnPList", - "Rank": 6 + "Id": 1329 }, { - "Id": 1329, + "Rank": 7, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "CommandName": "Set-PnPList", - "Rank": 7 + "Id": 1330 }, { - "Id": 1330, + "Rank": 8, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "CommandName": "Set-PnPList", - "Rank": 8 + "Id": 1331 }, { - "Id": 1331, + "Rank": 9, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "CommandName": "Set-PnPList", - "Rank": 9 + "Id": 1332 }, { - "Id": 1332, + "Rank": 10, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "CommandName": "Set-PnPList", - "Rank": 10 + "Id": 1333 }, { - "Id": 1333, + "Rank": 11, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "CommandName": "Set-PnPList", - "Rank": 11 + "Id": 1334 }, { - "Id": 1334, + "Rank": 1, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "CommandName": "Set-PnPListInformationRightsManagement", - "Rank": 1 + "Id": 1335 }, { - "Id": 1335, + "Rank": 2, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "CommandName": "Set-PnPListInformationRightsManagement", - "Rank": 2 + "Id": 1336 }, { - "Id": 1336, + "Rank": 1, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Rank": 1 + "Id": 1337 }, { - "Id": 1337, + "Rank": 2, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Rank": 2 + "Id": 1338 }, { - "Id": 1338, + "Rank": 3, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Rank": 3 + "Id": 1339 }, { - "Id": 1339, + "Rank": 4, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "CommandName": "Set-PnPListItem", - "Rank": 4 + "Id": 1340 }, { - "Id": 1340, + "Rank": 5, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "CommandName": "Set-PnPListItem", - "Rank": 5 + "Id": 1341 }, { - "Id": 1341, + "Rank": 1, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "CommandName": "Set-PnPListItemAsRecord", - "Rank": 1 + "Id": 1342 }, { - "Id": 1342, + "Rank": 2, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "CommandName": "Set-PnPListItemAsRecord", - "Rank": 2 + "Id": 1343 }, { - "Id": 1343, + "Rank": 1, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPListItemPermission", - "Rank": 1 + "Id": 1344 }, { - "Id": 1344, + "Rank": 2, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPListItemPermission", - "Rank": 2 + "Id": 1345 }, { - "Id": 1345, + "Rank": 3, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "CommandName": "Set-PnPListItemPermission", - "Rank": 3 + "Id": 1346 }, { - "Id": 1346, + "Rank": 4, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "CommandName": "Set-PnPListItemPermission", - "Rank": 4 + "Id": 1347 }, { - "Id": 1347, + "Rank": 5, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "CommandName": "Set-PnPListItemPermission", - "Rank": 5 + "Id": 1348 }, { - "Id": 1348, + "Rank": 1, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPListPermission", - "Rank": 1 + "Id": 1349 }, { - "Id": 1349, + "Rank": 2, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPListPermission", - "Rank": 2 + "Id": 1350 }, { - "Id": 1350, + "Rank": 1, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "CommandName": "Set-PnPListRecordDeclaration", - "Rank": 1 + "Id": 1351 }, { - "Id": 1351, + "Rank": 2, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "CommandName": "Set-PnPListRecordDeclaration", - "Rank": 2 + "Id": 1352 }, { - "Id": 1352, + "Rank": 1, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Rank": 1 + "Id": 1353 }, { - "Id": 1353, + "Rank": 2, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Rank": 2 + "Id": 1354 }, { - "Id": 1354, + "Rank": 3, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Rank": 3 + "Id": 1355 }, { - "Id": 1355, + "Rank": 4, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Rank": 4 + "Id": 1356 }, { - "Id": 1356, + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 1 + "Id": 1357 }, { - "Id": 1357, + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 2 + "Id": 1358 }, { - "Id": 1358, + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3 + "Id": 1359 }, { - "Id": 1359, + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 1 + "Id": 1360 }, { - "Id": 1360, + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 2 + "Id": 1361 }, { - "Id": 1361, + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3 + "Id": 1362 }, { - "Id": 1362, + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 1 + "Id": 1363 }, { - "Id": 1363, + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 2 + "Id": 1364 }, { - "Id": 1364, + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3 + "Id": 1365 }, { - "Id": 1365, + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 1 + "Id": 1366 }, { - "Id": 1366, + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 2 + "Id": 1367 }, { - "Id": 1367, + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3 + "Id": 1368 }, { - "Id": 1368, + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 1 + "Id": 1369 }, { - "Id": 1369, + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 2 + "Id": 1370 }, { - "Id": 1370, + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsRead", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3 + "Id": 1371 }, { - "Id": 1371, + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 1 + "Id": 1372 }, { - "Id": 1372, + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 2 + "Id": 1373 }, { - "Id": 1373, + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3 + "Id": 1374 }, { - "Id": 1374, + "Rank": 1, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 1 + "Id": 1375 }, { - "Id": 1375, + "Rank": 2, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 2 + "Id": 1376 }, { - "Id": 1376, + "Rank": 3, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 3 + "Id": 1377 }, { - "Id": 1377, + "Rank": 4, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 4 + "Id": 1378 }, { - "Id": 1378, + "Rank": 5, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 5 + "Id": 1379 }, { - "Id": 1379, + "Rank": 6, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 6 + "Id": 1380 }, { - "Id": 1380, + "Rank": 1, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Rank": 1 + "Id": 1381 }, { - "Id": 1381, + "Rank": 2, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Rank": 2 + "Id": 1382 }, { - "Id": 1382, + "Rank": 1, "Command": "Set-PnPMinimalDownloadStrategy -Off", "CommandName": "Set-PnPMinimalDownloadStrategy", - "Rank": 1 + "Id": 1383 }, { - "Id": 1383, + "Rank": 2, "Command": "Set-PnPMinimalDownloadStrategy -On", "CommandName": "Set-PnPMinimalDownloadStrategy", - "Rank": 2 + "Id": 1384 }, { - "Id": 1384, + "Rank": 1, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "CommandName": "Set-PnPPage", - "Rank": 1 + "Id": 1385 }, { - "Id": 1385, + "Rank": 2, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "CommandName": "Set-PnPPage", - "Rank": 2 + "Id": 1386 }, { - "Id": 1386, + "Rank": 3, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "CommandName": "Set-PnPPage", - "Rank": 3 + "Id": 1387 }, { - "Id": 1387, + "Rank": 4, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "CommandName": "Set-PnPPage", - "Rank": 4 + "Id": 1388 }, { - "Id": 1388, + "Rank": 5, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "CommandName": "Set-PnPPage", - "Rank": 5 + "Id": 1389 }, { - "Id": 1389, + "Rank": 6, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "CommandName": "Set-PnPPage", - "Rank": 6 + "Id": 1390 }, { - "Id": 1390, + "Rank": 7, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "CommandName": "Set-PnPPage", - "Rank": 7 + "Id": 1391 }, { - "Id": 1391, + "Rank": 8, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "CommandName": "Set-PnPPage", - "Rank": 8 + "Id": 1392 }, { - "Id": 1392, + "Rank": 9, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "CommandName": "Set-PnPPage", - "Rank": 9 + "Id": 1393 }, { - "Id": 1393, + "Rank": 10, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "CommandName": "Set-PnPPage", - "Rank": 10 + "Id": 1394 }, { - "Id": 1394, + "Rank": 11, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "CommandName": "Set-PnPPage", - "Rank": 11 + "Id": 1395 }, { - "Id": 1395, + "Rank": 1, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "CommandName": "Set-PnPPageTextPart", - "Rank": 1 + "Id": 1396 }, { - "Id": 1396, + "Rank": 1, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "CommandName": "Set-PnPPageWebPart", - "Rank": 1 + "Id": 1397 }, { - "Id": 1397, + "Rank": 2, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "CommandName": "Set-PnPPageWebPart", - "Rank": 2 + "Id": 1398 }, { - "Id": 1398, + "Rank": 1, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "CommandName": "Set-PnPPlannerBucket", - "Rank": 1 + "Id": 1399 }, { - "Id": 1399, + "Rank": 1, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "CommandName": "Set-PnPPlannerConfiguration", - "Rank": 1 + "Id": 1400 }, { - "Id": 1400, + "Rank": 2, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "CommandName": "Set-PnPPlannerConfiguration", - "Rank": 2 + "Id": 1401 }, { - "Id": 1401, + "Rank": 1, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "CommandName": "Set-PnPPlannerPlan", - "Rank": 1 + "Id": 1402 }, { - "Id": 1402, + "Rank": 1, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "CommandName": "Set-PnPPlannerTask", - "Rank": 1 + "Id": 1403 }, { - "Id": 1403, + "Rank": 2, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "CommandName": "Set-PnPPlannerTask", - "Rank": 2 + "Id": 1404 }, { - "Id": 1404, + "Rank": 3, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "CommandName": "Set-PnPPlannerTask", - "Rank": 3 + "Id": 1405 }, { - "Id": 1405, + "Rank": 1, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPPlannerUserPolicy", - "Rank": 1 + "Id": 1406 }, { - "Id": 1406, + "Rank": 1, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "CommandName": "Set-PnPPropertyBagValue", - "Rank": 1 + "Id": 1407 }, { - "Id": 1407, + "Rank": 2, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "CommandName": "Set-PnPPropertyBagValue", - "Rank": 2 + "Id": 1408 }, { - "Id": 1408, + "Rank": 3, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "CommandName": "Set-PnPPropertyBagValue", - "Rank": 3 + "Id": 1409 }, { - "Id": 1409, + "Rank": 1, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 1 + "Id": 1410 }, { - "Id": 1410, + "Rank": 2, "Command": "Set-PnPRequestAccessEmails -Disabled", "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 2 + "Id": 1411 }, { - "Id": 1411, + "Rank": 3, "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 3 + "Id": 1412 }, { - "Id": 1412, + "Rank": 1, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "CommandName": "Set-PnPRoleDefinition", - "Rank": 1 + "Id": 1413 }, { - "Id": 1413, + "Rank": 2, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "CommandName": "Set-PnPRoleDefinition", - "Rank": 2 + "Id": 1414 }, { - "Id": 1414, + "Rank": 3, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "CommandName": "Set-PnPRoleDefinition", - "Rank": 3 + "Id": 1415 }, { - "Id": 1415, + "Rank": 4, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "CommandName": "Set-PnPRoleDefinition", - "Rank": 4 + "Id": 1416 }, { - "Id": 1416, + "Rank": 1, "Command": "Set-PnPSearchConfiguration -Configuration $config", "CommandName": "Set-PnPSearchConfiguration", - "Rank": 1 + "Id": 1417 }, { - "Id": 1417, + "Rank": 2, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "CommandName": "Set-PnPSearchConfiguration", - "Rank": 2 + "Id": 1418 }, { - "Id": 1418, + "Rank": 3, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "CommandName": "Set-PnPSearchConfiguration", - "Rank": 3 + "Id": 1419 }, { - "Id": 1419, + "Rank": 4, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Set-PnPSearchConfiguration", - "Rank": 4 + "Id": 1420 }, { - "Id": 1420, + "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", - "Rank": 1 + "Id": 1421 }, { - "Id": 1421, + "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", - "Rank": 2 + "Id": 1422 }, { - "Id": 1422, + "Rank": 1, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "CommandName": "Set-PnPSearchSettings", - "Rank": 1 + "Id": 1423 }, { - "Id": 1423, + "Rank": 2, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "CommandName": "Set-PnPSearchSettings", - "Rank": 2 + "Id": 1424 }, { - "Id": 1424, + "Rank": 3, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "CommandName": "Set-PnPSearchSettings", - "Rank": 3 + "Id": 1425 }, { - "Id": 1425, + "Rank": 4, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "CommandName": "Set-PnPSearchSettings", - "Rank": 4 + "Id": 1426 }, { - "Id": 1426, + "Rank": 5, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "CommandName": "Set-PnPSearchSettings", - "Rank": 5 + "Id": 1427 }, { - "Id": 1427, + "Rank": 6, "Command": "Set-PnPSearchSettings -SearchScope Tenant", "CommandName": "Set-PnPSearchSettings", - "Rank": 6 + "Id": 1428 }, { - "Id": 1428, + "Rank": 7, "Command": "Set-PnPSearchSettings -SearchScope Hub", "CommandName": "Set-PnPSearchSettings", - "Rank": 7 + "Id": 1429 }, { - "Id": 1429, + "Rank": 1, "Command": "Set-PnPSite -Classification \"HBI\"", "CommandName": "Set-PnPSite", - "Rank": 1 + "Id": 1430 }, { - "Id": 1430, + "Rank": 2, "Command": "Set-PnPSite -Classification $null", "CommandName": "Set-PnPSite", - "Rank": 2 + "Id": 1431 }, { - "Id": 1431, + "Rank": 3, "Command": "Set-PnPSite -DisableFlows", "CommandName": "Set-PnPSite", - "Rank": 3 + "Id": 1432 }, { - "Id": 1432, + "Rank": 4, "Command": "Set-PnPSite -DisableFlows:$false", "CommandName": "Set-PnPSite", - "Rank": 4 + "Id": 1433 }, { - "Id": 1433, + "Rank": 5, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "CommandName": "Set-PnPSite", - "Rank": 5 + "Id": 1434 }, { - "Id": 1434, + "Rank": 6, "Command": "Set-PnPSite -NoScriptSite $false", "CommandName": "Set-PnPSite", - "Rank": 6 + "Id": 1435 }, { - "Id": 1435, + "Rank": 7, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "CommandName": "Set-PnPSite", - "Rank": 7 + "Id": 1436 }, { - "Id": 1436, + "Rank": 8, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "CommandName": "Set-PnPSite", - "Rank": 8 + "Id": 1437 }, { - "Id": 1437, + "Rank": 9, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "CommandName": "Set-PnPSite", - "Rank": 9 + "Id": 1438 }, { - "Id": 1438, + "Rank": 10, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "CommandName": "Set-PnPSite", - "Rank": 10 + "Id": 1439 }, { - "Id": 1439, + "Rank": 11, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Rank": 11 + "Id": 1440 }, { - "Id": 1440, + "Rank": 12, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Rank": 12 + "Id": 1441 }, { - "Id": 1441, + "Rank": 13, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Rank": 13 + "Id": 1442 }, { - "Id": 1442, + "Rank": 14, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Rank": 14 + "Id": 1443 }, { - "Id": 1443, + "Rank": 15, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Rank": 15 + "Id": 1444 }, { - "Id": 1444, + "Rank": 16, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Rank": 16 + "Id": 1445 }, { - "Id": 1445, + "Rank": 17, "Command": "Set-PnPSite -CancelVPForExistingLibs", "CommandName": "Set-PnPSite", - "Rank": 17 + "Id": 1446 }, { - "Id": 1446, + "Rank": 1, "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "CommandName": "Set-PnPSiteClassification", - "Rank": 1 + "Id": 1447 }, { - "Id": 1447, + "Rank": 1, "Command": "Set-PnPSiteClosure -State Open", "CommandName": "Set-PnPSiteClosure", - "Rank": 1 + "Id": 1448 }, { - "Id": 1448, + "Rank": 2, "Command": "Set-PnPSiteClosure -State Closed", "CommandName": "Set-PnPSiteClosure", - "Rank": 2 + "Id": 1449 }, { - "Id": 1449, + "Rank": 1, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "CommandName": "Set-PnPSiteDesign", - "Rank": 1 + "Id": 1450 }, { - "Id": 1450, + "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", - "Rank": 2 + "Id": 1451 }, { - "Id": 1451, + "Rank": 1, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "CommandName": "Set-PnPSiteGroup", - "Rank": 1 + "Id": 1452 }, { - "Id": 1452, + "Rank": 2, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "CommandName": "Set-PnPSiteGroup", - "Rank": 2 + "Id": 1453 }, { - "Id": 1453, + "Rank": 1, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "CommandName": "Set-PnPSitePolicy", - "Rank": 1 + "Id": 1454 }, { - "Id": 1454, + "Rank": 1, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "CommandName": "Set-PnPSiteScript", - "Rank": 1 + "Id": 1455 }, { - "Id": 1455, + "Rank": 1, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "CommandName": "Set-PnPSiteScriptPackage", - "Rank": 1 + "Id": 1456 }, { - "Id": 1456, + "Rank": 1, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "CommandName": "Set-PnPSiteSensitivityLabel", - "Rank": 1 + "Id": 1457 }, { - "Id": 1457, + "Rank": 2, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "CommandName": "Set-PnPSiteSensitivityLabel", - "Rank": 2 + "Id": 1458 }, { - "Id": 1458, + "Rank": 1, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 1 + "Id": 1459 }, { - "Id": 1459, + "Rank": 2, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 2 + "Id": 1460 }, { - "Id": 1460, + "Rank": 3, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 3 + "Id": 1461 }, { - "Id": 1461, + "Rank": 4, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 4 + "Id": 1462 }, { - "Id": 1462, + "Rank": 5, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 5 + "Id": 1463 }, { - "Id": 1463, + "Rank": 6, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 6 + "Id": 1464 }, { - "Id": 1464, + "Rank": 1, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "CommandName": "Set-PnPStorageEntity", - "Rank": 1 + "Id": 1465 }, { - "Id": 1465, + "Rank": 2, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "CommandName": "Set-PnPStorageEntity", - "Rank": 2 + "Id": 1466 }, { - "Id": 1466, + "Rank": 1, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Rank": 1 + "Id": 1467 }, { - "Id": 1467, + "Rank": 2, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Rank": 2 + "Id": 1468 }, { - "Id": 1468, + "Rank": 1, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Rank": 1 + "Id": 1469 }, { - "Id": 1469, + "Rank": 2, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Rank": 2 + "Id": 1470 }, { - "Id": 1470, + "Rank": 1, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Rank": 1 + "Id": 1471 }, { - "Id": 1471, + "Rank": 2, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Rank": 2 + "Id": 1472 }, { - "Id": 1472, + "Rank": 1, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 1 + "Id": 1473 }, { - "Id": 1473, + "Rank": 2, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 2 + "Id": 1474 }, { - "Id": 1474, + "Rank": 3, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 3 + "Id": 1475 }, { - "Id": 1475, + "Rank": 1, "Command": "Set-PnPTeamifyPromptHidden", "CommandName": "Set-PnPTeamifyPromptHidden", - "Rank": 1 + "Id": 1476 }, { - "Id": 1476, + "Rank": 1, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "CommandName": "Set-PnPTeamsChannel", - "Rank": 1 + "Id": 1477 }, { - "Id": 1477, + "Rank": 2, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "CommandName": "Set-PnPTeamsChannel", - "Rank": 2 + "Id": 1478 }, { - "Id": 1478, + "Rank": 1, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "CommandName": "Set-PnpTeamsChannelUser", - "Rank": 1 + "Id": 1479 }, { - "Id": 1479, + "Rank": 2, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "CommandName": "Set-PnpTeamsChannelUser", - "Rank": 2 + "Id": 1480 }, { - "Id": 1480, + "Rank": 1, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "CommandName": "Set-PnPTeamsTab", - "Rank": 1 + "Id": 1481 }, { - "Id": 1481, + "Rank": 1, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "CommandName": "Set-PnPTeamsTag", - "Rank": 1 + "Id": 1482 }, { - "Id": 1482, + "Rank": 1, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "CommandName": "Set-PnPTeamsTeam", - "Rank": 1 + "Id": 1483 }, { - "Id": 1483, + "Rank": 2, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "CommandName": "Set-PnPTeamsTeam", - "Rank": 2 + "Id": 1484 }, { - "Id": 1484, + "Rank": 3, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "CommandName": "Set-PnPTeamsTeam", - "Rank": 3 + "Id": 1485 }, { - "Id": 1485, + "Rank": 4, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "CommandName": "Set-PnPTeamsTeam", - "Rank": 4 + "Id": 1486 }, { - "Id": 1486, + "Rank": 1, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 1 + "Id": 1487 }, { - "Id": 1487, + "Rank": 2, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 2 + "Id": 1488 }, { - "Id": 1488, + "Rank": 3, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 3 + "Id": 1489 }, { - "Id": 1489, + "Rank": 1, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "CommandName": "Set-PnPTeamsTeamPicture", - "Rank": 1 + "Id": 1490 }, { - "Id": 1490, + "Rank": 1, "Command": "Set-PnPTemporarilyDisableAppBar $true", "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Rank": 1 + "Id": 1491 }, { - "Id": 1491, + "Rank": 2, "Command": "Set-PnPTemporarilyDisableAppBar $false", "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Rank": 2 + "Id": 1492 }, { - "Id": 1492, + "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", - "Rank": 1 + "Id": 1493 }, { - "Id": 1493, + "Rank": 2, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "CommandName": "Set-PnPTenant", - "Rank": 2 + "Id": 1494 }, { - "Id": 1494, + "Rank": 3, "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "CommandName": "Set-PnPTenant", - "Rank": 3 + "Id": 1495 }, { - "Id": 1495, + "Rank": 4, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "CommandName": "Set-PnPTenant", - "Rank": 4 + "Id": 1496 }, { - "Id": 1496, + "Rank": 1, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "CommandName": "Set-PnPTenantAppCatalogUrl", - "Rank": 1 + "Id": 1497 }, { - "Id": 1497, + "Rank": 1, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 1 + "Id": 1498 }, { - "Id": 1498, + "Rank": 2, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 2 + "Id": 1499 }, { - "Id": 1499, + "Rank": 3, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 3 + "Id": 1500 }, { - "Id": 1500, + "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", - "Rank": 1 + "Id": 1501 }, { - "Id": 1501, + "Rank": 2, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "CommandName": "Set-PnPTenantCdnPolicy", - "Rank": 2 + "Id": 1502 }, { - "Id": 1502, + "Rank": 1, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "CommandName": "Set-PnPTenantSite", - "Rank": 1 + "Id": 1503 }, { - "Id": 1503, + "Rank": 2, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "CommandName": "Set-PnPTenantSite", - "Rank": 2 + "Id": 1504 }, { - "Id": 1504, + "Rank": 3, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPTenantSite", - "Rank": 3 + "Id": 1505 }, { - "Id": 1505, + "Rank": 4, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Set-PnPTenantSite", - "Rank": 4 + "Id": 1506 }, { - "Id": 1506, + "Rank": 5, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "CommandName": "Set-PnPTenantSite", - "Rank": 5 + "Id": 1507 }, { - "Id": 1507, + "Rank": 1, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "CommandName": "Set-PnPTenantSyncClientRestriction", - "Rank": 1 + "Id": 1508 }, { - "Id": 1508, + "Rank": 2, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "CommandName": "Set-PnPTenantSyncClientRestriction", - "Rank": 2 + "Id": 1509 }, { - "Id": 1509, + "Rank": 1, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "CommandName": "Set-PnPTerm", - "Rank": 1 + "Id": 1510 }, { - "Id": 1510, + "Rank": 2, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "Set-PnPTerm", - "Rank": 2 + "Id": 1511 }, { - "Id": 1511, + "Rank": 3, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "Set-PnPTerm", - "Rank": 3 + "Id": 1512 }, { - "Id": 1512, + "Rank": 4, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "CommandName": "Set-PnPTerm", - "Rank": 4 + "Id": 1513 }, { - "Id": 1513, + "Rank": 1, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "CommandName": "Set-PnPTermGroup", - "Rank": 1 + "Id": 1514 }, { - "Id": 1514, + "Rank": 1, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "CommandName": "Set-PnPTermSet", - "Rank": 1 + "Id": 1515 }, { - "Id": 1515, + "Rank": 2, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "CommandName": "Set-PnPTermSet", - "Rank": 2 + "Id": 1516 }, { - "Id": 1516, + "Rank": 3, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "CommandName": "Set-PnPTermSet", - "Rank": 3 + "Id": 1517 }, { - "Id": 1517, + "Rank": 1, "Command": "Set-PnPTheme", "CommandName": "Set-PnPTheme", - "Rank": 1 + "Id": 1518 }, { - "Id": 1518, + "Rank": 2, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "CommandName": "Set-PnPTheme", - "Rank": 2 + "Id": 1519 }, { - "Id": 1519, + "Rank": 3, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "CommandName": "Set-PnPTheme", - "Rank": 3 + "Id": 1520 }, { - "Id": 1520, + "Rank": 4, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "CommandName": "Set-PnPTheme", - "Rank": 4 + "Id": 1521 }, { - "Id": 1521, + "Rank": 1, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "CommandName": "Set-PnPTraceLog", - "Rank": 1 + "Id": 1522 }, { - "Id": 1522, + "Rank": 2, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "CommandName": "Set-PnPTraceLog", - "Rank": 2 + "Id": 1523 }, { - "Id": 1523, + "Rank": 3, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "CommandName": "Set-PnPTraceLog", - "Rank": 3 + "Id": 1524 }, { - "Id": 1524, + "Rank": 4, "Command": "Set-PnPTraceLog -Off", "CommandName": "Set-PnPTraceLog", - "Rank": 4 + "Id": 1525 }, { - "Id": 1525, + "Rank": 1, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "CommandName": "Set-PnPUserOneDriveQuota", - "Rank": 1 + "Id": 1526 }, { - "Id": 1526, + "Rank": 1, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "CommandName": "Set-PnPUserProfileProperty", - "Rank": 1 + "Id": 1527 }, { - "Id": 1527, + "Rank": 2, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "CommandName": "Set-PnPUserProfileProperty", - "Rank": 2 + "Id": 1528 }, { - "Id": 1528, + "Rank": 1, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "CommandName": "Set-PnPView", - "Rank": 1 + "Id": 1529 }, { - "Id": 1529, + "Rank": 2, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "CommandName": "Set-PnPView", - "Rank": 2 + "Id": 1530 }, { - "Id": 1530, + "Rank": 3, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "CommandName": "Set-PnPView", - "Rank": 3 + "Id": 1531 }, { - "Id": 1531, + "Rank": 4, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "CommandName": "Set-PnPView", - "Rank": 4 + "Id": 1532 }, { - "Id": 1532, + "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", - "Rank": 1 + "Id": 1533 }, { - "Id": 1533, + "Rank": 2, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 2 + "Id": 1534 }, { - "Id": 1534, + "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", - "Rank": 3 + "Id": 1535 }, { - "Id": 1535, + "Rank": 4, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 4 + "Id": 1536 }, { - "Id": 1536, + "Rank": 1, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "CommandName": "Set-PnPWeb", - "Rank": 1 + "Id": 1537 }, { - "Id": 1537, + "Rank": 2, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "CommandName": "Set-PnPWeb", - "Rank": 2 + "Id": 1538 }, { - "Id": 1538, + "Rank": 3, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "CommandName": "Set-PnPWeb", - "Rank": 3 + "Id": 1539 }, { - "Id": 1539, + "Rank": 4, "Command": "Set-PnPWeb -NoCrawl:$true", "CommandName": "Set-PnPWeb", - "Rank": 4 + "Id": 1540 }, { - "Id": 1540, + "Rank": 1, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "CommandName": "Set-PnPWebHeader", - "Rank": 1 + "Id": 1541 }, { - "Id": 1541, + "Rank": 2, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "CommandName": "Set-PnPWebHeader", - "Rank": 2 + "Id": 1542 }, { - "Id": 1542, + "Rank": 3, "Command": "Set-PnPWebHeader -LogoAlignment Middle", "CommandName": "Set-PnPWebHeader", - "Rank": 3 + "Id": 1543 }, { - "Id": 1543, + "Rank": 1, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "CommandName": "Set-PnPWebhookSubscription", - "Rank": 1 + "Id": 1544 }, { - "Id": 1544, + "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", - "Rank": 2 + "Id": 1545 }, { - "Id": 1545, + "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", - "Rank": 1 + "Id": 1546 }, { - "Id": 1546, + "Rank": 1, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Rank": 1 + "Id": 1547 }, { - "Id": 1547, + "Rank": 2, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Rank": 2 + "Id": 1548 }, { - "Id": 1548, + "Rank": 3, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Rank": 3 + "Id": 1549 }, { - "Id": 1549, + "Rank": 4, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "CommandName": "Set-PnPWebPermission", - "Rank": 4 + "Id": 1550 }, { - "Id": 1550, + "Rank": 1, "Command": "Set-PnPWebTheme -Theme MyTheme", "CommandName": "Set-PnPWebTheme", - "Rank": 1 + "Id": 1551 }, { - "Id": 1551, + "Rank": 2, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "CommandName": "Set-PnPWebTheme", - "Rank": 2 + "Id": 1552 }, { - "Id": 1552, + "Rank": 1, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "CommandName": "Set-PnPWikiPageContent", - "Rank": 1 + "Id": 1553 }, { - "Id": 1553, + "Rank": 1, "Command": "Submit-PnPSearchQuery -Query \"finance\"", "CommandName": "Submit-PnPSearchQuery", - "Rank": 1 + "Id": 1554 }, { - "Id": 1554, + "Rank": 2, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "CommandName": "Submit-PnPSearchQuery", - "Rank": 2 + "Id": 1555 }, { - "Id": 1555, + "Rank": 3, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "CommandName": "Submit-PnPSearchQuery", - "Rank": 3 + "Id": 1556 }, { - "Id": 1556, + "Rank": 4, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "CommandName": "Submit-PnPSearchQuery", - "Rank": 4 + "Id": 1557 }, { - "Id": 1557, + "Rank": 5, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "CommandName": "Submit-PnPSearchQuery", - "Rank": 5 + "Id": 1558 }, { - "Id": 1558, + "Rank": 1, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "CommandName": "Submit-PnPTeamsChannelMessage", - "Rank": 1 + "Id": 1559 }, { - "Id": 1559, + "Rank": 2, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "CommandName": "Submit-PnPTeamsChannelMessage", - "Rank": 2 + "Id": 1560 }, { - "Id": 1560, + "Rank": 1, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Sync-PnPAppToTeams", - "Rank": 1 + "Id": 1561 }, { - "Id": 1561, + "Rank": 1, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 1 + "Id": 1562 }, { - "Id": 1562, + "Rank": 2, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 2 + "Id": 1563 }, { - "Id": 1563, + "Rank": 3, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 3 + "Id": 1564 }, { - "Id": 1564, + "Rank": 1, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "CommandName": "Test-PnPListItemIsRecord", - "Rank": 1 + "Id": 1565 }, { - "Id": 1565, + "Rank": 1, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Rank": 1 + "Id": 1566 }, { - "Id": 1566, + "Rank": 1, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Test-PnPSite", - "Rank": 1 + "Id": 1567 }, { - "Id": 1567, + "Rank": 2, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "CommandName": "Test-PnPSite", - "Rank": 2 + "Id": 1568 }, { - "Id": 1568, + "Rank": 1, "Command": "Test-PnPTenantTemplate -Template $myTemplate", "CommandName": "Test-PnPTenantTemplate", - "Rank": 1 + "Id": 1569 }, { - "Id": 1569, + "Rank": 1, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "CommandName": "Undo-PnPFileCheckedOut", - "Rank": 1 + "Id": 1570 }, { - "Id": 1570, + "Rank": 1, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Uninstall-PnPApp", - "Rank": 1 + "Id": 1571 }, { - "Id": 1571, + "Rank": 2, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Uninstall-PnPApp", - "Rank": 2 + "Id": 1572 }, { - "Id": 1572, + "Rank": 1, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Unpublish-PnPApp", - "Rank": 1 + "Id": 1573 }, { - "Id": 1573, + "Rank": 2, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Unpublish-PnPApp", - "Rank": 2 + "Id": 1574 }, { - "Id": 1574, + "Rank": 1, "Command": "Unpublish-PnPContentType -ContentType 0x0101", "CommandName": "Unpublish-PnPContentType", - "Rank": 1 + "Id": 1575 }, { - "Id": 1575, + "Rank": 1, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "CommandName": "Unpublish-PnPSyntexModel", - "Rank": 1 + "Id": 1576 }, { - "Id": 1576, + "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", - "Rank": 2 + "Id": 1577 }, { - "Id": 1577, + "Rank": 1, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "CommandName": "Unregister-PnPHubSite", - "Rank": 1 + "Id": 1578 }, { - "Id": 1578, + "Rank": 1, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Update-PnPApp", - "Rank": 1 + "Id": 1579 }, { - "Id": 1579, + "Rank": 2, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Update-PnPApp", - "Rank": 2 + "Id": 1580 }, { - "Id": 1580, + "Rank": 1, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 1 + "Id": 1581 }, { - "Id": 1581, + "Rank": 2, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 2 + "Id": 1582 }, { - "Id": 1582, + "Rank": 3, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 3 + "Id": 1583 }, { - "Id": 1583, + "Rank": 1, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 1 + "Id": 1584 }, { - "Id": 1584, + "Rank": 2, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 2 + "Id": 1585 }, { - "Id": 1585, + "Rank": 3, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 3 + "Id": 1586 }, { - "Id": 1586, + "Rank": 1, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "CommandName": "Update-PnPTeamsApp", - "Rank": 1 + "Id": 1587 }, { - "Id": 1587, + "Rank": 1, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Update-PnPTeamsUser", - "Rank": 1 + "Id": 1588 }, { - "Id": 1588, + "Rank": 2, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "CommandName": "Update-PnPTeamsUser", - "Rank": 2 + "Id": 1589 }, { - "Id": 1589, + "Rank": 3, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "CommandName": "Update-PnPTeamsUser", - "Rank": 3 + "Id": 1590 }, { - "Id": 1590, + "Rank": 1, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "CommandName": "Update-PnPUserType", - "Rank": 1 + "Id": 1591 } ] diff --git a/version.txt b/version.txt index aa9b7289d..89d12e8cd 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.97 \ No newline at end of file +2.2.98 \ No newline at end of file From 78a989a563f600ba526cf7cbc87950015bcf1b6b Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sun, 15 Oct 2023 02:40:14 +0000 Subject: [PATCH 083/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 3182 ++++++++--------- version.txt | 2 +- 3 files changed, 1593 insertions(+), 1593 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 3b73d01f7..8453016d9 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -6a3065c5fa9eb7414b9636539020ee07bcb57927 \ No newline at end of file +83dbc123ba0b28e6825009564bf737455aabb6eb \ 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 ce43b7b07..7a0331b79 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9547 +1,9547 @@ [ { - "Rank": 1, "Command": "Add-PnPAlert -List \"Demo List\"", + "Rank": 1, "CommandName": "Add-PnPAlert", "Id": 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)", + "Rank": 2, "CommandName": "Add-PnPAlert", "Id": 2 }, { - "Rank": 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", "Id": 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))", + "Rank": 4, "CommandName": "Add-PnPAlert", "Id": 4 }, { - "Rank": 1, "Command": "Add-PnPApp -Path ./myapp.sppkg", + "Rank": 1, "CommandName": "Add-PnPApp", "Id": 5 }, { - "Rank": 2, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "Rank": 2, "CommandName": "Add-PnPApp", "Id": 6 }, { - "Rank": 3, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "Rank": 3, "CommandName": "Add-PnPApp", "Id": 7 }, { - "Rank": 4, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "Rank": 4, "CommandName": "Add-PnPApp", "Id": 8 }, { - "Rank": 1, "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", "Id": 9 }, { - "Rank": 1, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "Rank": 1, "CommandName": "Add-PnPAvailableSiteClassification", "Id": 10 }, { - "Rank": 2, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "Rank": 2, "CommandName": "Add-PnPAvailableSiteClassification", "Id": 11 }, { - "Rank": 1, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPAzureADGroupMember", "Id": 12 }, { - "Rank": 2, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "CommandName": "Add-PnPAzureADGroupMember", "Id": 13 }, { - "Rank": 3, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Rank": 3, "CommandName": "Add-PnPAzureADGroupMember", "Id": 14 }, { - "Rank": 1, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPAzureADGroupOwner", "Id": 15 }, { - "Rank": 2, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "CommandName": "Add-PnPAzureADGroupOwner", "Id": 16 }, { - "Rank": 3, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Rank": 3, "CommandName": "Add-PnPAzureADGroupOwner", "Id": 17 }, { - "Rank": 1, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", + "Rank": 1, "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Id": 18 }, { - "Rank": 2, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", + "Rank": 2, "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Id": 19 }, { - "Rank": 1, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", + "Rank": 1, "CommandName": "Add-PnPContentType", "Id": 20 }, { - "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\"", + "Rank": 2, "CommandName": "Add-PnPContentType", "Id": 21 }, { - "Rank": 3, "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", + "Rank": 3, "CommandName": "Add-PnPContentType", "Id": 22 }, { - "Rank": 4, "Command": "Add-PnPContentType -Name \"Project Item\"", + "Rank": 4, "CommandName": "Add-PnPContentType", "Id": 23 }, { - "Rank": 5, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", + "Rank": 5, "CommandName": "Add-PnPContentType", "Id": 24 }, { - "Rank": 1, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "Rank": 1, "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 25 }, { - "Rank": 2, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "Rank": 2, "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 26 }, { - "Rank": 1, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Rank": 1, "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 27 }, { - "Rank": 2, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Rank": 2, "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 28 }, { - "Rank": 1, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "Rank": 1, "CommandName": "Add-PnPContentTypeToList", "Id": 29 }, { - "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`\"}\"", + "Rank": 1, "CommandName": "Add-PnPCustomAction", "Id": 30 }, { - "Rank": 1, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "Rank": 1, "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 31 }, { - "Rank": 2, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "Rank": 2, "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 32 }, { - "Rank": 1, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "Rank": 1, "CommandName": "Add-PnPDocumentSet", "Id": 33 }, { - "Rank": 1, "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", + "Rank": 1, "CommandName": "Add-PnPEventReceiver", "Id": 34 }, { - "Rank": 2, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", + "Rank": 2, "CommandName": "Add-PnPEventReceiver", "Id": 35 }, { - "Rank": 3, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", + "Rank": 3, "CommandName": "Add-PnPEventReceiver", "Id": 36 }, { - "Rank": 4, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", + "Rank": 4, "CommandName": "Add-PnPEventReceiver", "Id": 37 }, { - "Rank": 1, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "Rank": 1, "CommandName": "Add-PnPField", "Id": 38 }, { - "Rank": 2, "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", "Id": 39 }, { - "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\"", + "Rank": 3, "CommandName": "Add-PnPField", "Id": 40 }, { - "Rank": 4, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "Rank": 4, "CommandName": "Add-PnPField", "Id": 41 }, { - "Rank": 5, "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", + "Rank": 5, "CommandName": "Add-PnPField", "Id": 42 }, { - "Rank": 6, "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "Rank": 6, "CommandName": "Add-PnPField", "Id": 43 }, { - "Rank": 1, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Rank": 1, "CommandName": "Add-PnPFieldToContentType", "Id": 44 }, { - "Rank": 1, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "Rank": 1, "CommandName": "Add-PnPFile", "Id": 45 }, { - "Rank": 2, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "Rank": 2, "CommandName": "Add-PnPFile", "Id": 46 }, { - "Rank": 3, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 3, "CommandName": "Add-PnPFile", "Id": 47 }, { - "Rank": 4, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", + "Rank": 4, "CommandName": "Add-PnPFile", "Id": 48 }, { - "Rank": 5, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 5, "CommandName": "Add-PnPFile", "Id": 49 }, { - "Rank": 6, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", + "Rank": 6, "CommandName": "Add-PnPFile", "Id": 50 }, { - "Rank": 7, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "Rank": 7, "CommandName": "Add-PnPFile", "Id": 51 }, { - "Rank": 8, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "Rank": 8, "CommandName": "Add-PnPFile", "Id": 52 }, { - "Rank": 1, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 53 }, { - "Rank": 2, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", + "Rank": 2, "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 54 }, { - "Rank": 3, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", + "Rank": 3, "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 55 }, { - "Rank": 1, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, "CommandName": "Add-PnPFileOrganizationalSharingLink", "Id": 56 }, { - "Rank": 2, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "Rank": 2, "CommandName": "Add-PnPFileOrganizationalSharingLink", "Id": 57 }, { - "Rank": 1, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "Rank": 1, "CommandName": "Add-PnPFileSharingInvite", "Id": 58 }, { - "Rank": 2, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "Rank": 2, "CommandName": "Add-PnPFileSharingInvite", "Id": 59 }, { - "Rank": 3, "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", "Id": 60 }, { - "Rank": 1, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "Rank": 1, "CommandName": "Add-PnPFileToSiteTemplate", "Id": 61 }, { - "Rank": 2, "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", + "Rank": 2, "CommandName": "Add-PnPFileToSiteTemplate", "Id": 62 }, { - "Rank": 3, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", + "Rank": 3, "CommandName": "Add-PnPFileToSiteTemplate", "Id": 63 }, { - "Rank": 4, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "Rank": 4, "CommandName": "Add-PnPFileToSiteTemplate", "Id": 64 }, { - "Rank": 5, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "Rank": 5, "CommandName": "Add-PnPFileToSiteTemplate", "Id": 65 }, { - "Rank": 1, "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPFileUserSharingLink", "Id": 66 }, { - "Rank": 2, "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", "Id": 67 }, { - "Rank": 1, "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", "Id": 68 }, { - "Rank": 2, "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", "Id": 69 }, { - "Rank": 3, "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", "Id": 70 }, { - "Rank": 4, "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", "Id": 71 }, { - "Rank": 1, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Rank": 1, "CommandName": "Add-PnPFolder", "Id": 72 }, { - "Rank": 2, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "Rank": 2, "CommandName": "Add-PnPFolder", "Id": 73 }, { - "Rank": 3, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "Rank": 3, "CommandName": "Add-PnPFolder", "Id": 74 }, { - "Rank": 1, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 75 }, { - "Rank": 2, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", + "Rank": 2, "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 76 }, { - "Rank": 3, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", + "Rank": 3, "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 77 }, { - "Rank": 1, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 78 }, { - "Rank": 2, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "Rank": 2, "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 79 }, { - "Rank": 1, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "Rank": 1, "CommandName": "Add-PnPFolderSharingInvite", "Id": 80 }, { - "Rank": 2, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "Rank": 2, "CommandName": "Add-PnPFolderSharingInvite", "Id": 81 }, { - "Rank": 3, "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", "Id": 82 }, { - "Rank": 1, "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPFolderUserSharingLink", "Id": 83 }, { - "Rank": 2, "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", "Id": 84 }, { - "Rank": 1, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Rank": 1, "CommandName": "Add-PnPGroupMember", "Id": 85 }, { - "Rank": 2, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "Rank": 2, "CommandName": "Add-PnPGroupMember", "Id": 86 }, { - "Rank": 1, "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Rank": 1, "CommandName": "Add-PnPHtmlPublishingPageLayout", "Id": 87 }, { - "Rank": 1, "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", + "Rank": 1, "CommandName": "Add-PnPHubSiteAssociation", "Id": 88 }, { - "Rank": 1, "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "Rank": 1, "CommandName": "Add-PnPHubToHubAssociation", "Id": 89 }, { - "Rank": 2, "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", + "Rank": 2, "CommandName": "Add-PnPHubToHubAssociation", "Id": 90 }, { - "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\"", + "Rank": 3, "CommandName": "Add-PnPHubToHubAssociation", "Id": 91 }, { - "Rank": 1, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "Rank": 1, "CommandName": "Add-PnPJavaScriptBlock", "Id": 92 }, { - "Rank": 2, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "Rank": 2, "CommandName": "Add-PnPJavaScriptBlock", "Id": 93 }, { - "Rank": 1, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", + "Rank": 1, "CommandName": "Add-PnPJavaScriptLink", "Id": 94 }, { - "Rank": 2, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "Rank": 2, "CommandName": "Add-PnPJavaScriptLink", "Id": 95 }, { - "Rank": 1, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "Rank": 1, "CommandName": "Add-PnPListDesign", "Id": 96 }, { - "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\"", + "Rank": 2, "CommandName": "Add-PnPListDesign", "Id": 97 }, { - "Rank": 1, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "Rank": 1, "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 98 }, { - "Rank": 2, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "Rank": 2, "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 99 }, { - "Rank": 3, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "Rank": 3, "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 100 }, { - "Rank": 1, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 1, "CommandName": "Add-PnPListItem", "Id": 101 }, { - "Rank": 2, "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 2, "CommandName": "Add-PnPListItem", "Id": 102 }, { - "Rank": 3, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "Rank": 3, "CommandName": "Add-PnPListItem", "Id": 103 }, { - "Rank": 4, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", + "Rank": 4, "CommandName": "Add-PnPListItem", "Id": 104 }, { - "Rank": 5, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "Rank": 5, "CommandName": "Add-PnPListItem", "Id": 105 }, { - "Rank": 1, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", + "Rank": 1, "CommandName": "Add-PnPListItemAttachment", "Id": 106 }, { - "Rank": 2, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", + "Rank": 2, "CommandName": "Add-PnPListItemAttachment", "Id": 107 }, { - "Rank": 3, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "Rank": 3, "CommandName": "Add-PnPListItemAttachment", "Id": 108 }, { - "Rank": 1, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "Rank": 1, "CommandName": "Add-PnPListItemComment", "Id": 109 }, { - "Rank": 1, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "Rank": 1, "CommandName": "Add-PnPMasterPage", "Id": 110 }, { - "Rank": 1, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupMember", "Id": 111 }, { - "Rank": 2, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupMember", "Id": 112 }, { - "Rank": 1, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupOwner", "Id": 113 }, { - "Rank": 2, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupOwner", "Id": 114 }, { - "Rank": 1, "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", + "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 115 }, { - "Rank": 2, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 116 }, { - "Rank": 3, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "Rank": 3, "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 117 }, { - "Rank": 1, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "Rank": 1, "CommandName": "Add-PnPNavigationNode", "Id": 118 }, { - "Rank": 2, "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", + "Rank": 2, "CommandName": "Add-PnPNavigationNode", "Id": 119 }, { - "Rank": 3, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "Rank": 3, "CommandName": "Add-PnPNavigationNode", "Id": 120 }, { - "Rank": 4, "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", + "Rank": 4, "CommandName": "Add-PnPNavigationNode", "Id": 121 }, { - "Rank": 5, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "Rank": 5, "CommandName": "Add-PnPNavigationNode", "Id": 122 }, { - "Rank": 6, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "Rank": 6, "CommandName": "Add-PnPNavigationNode", "Id": 123 }, { - "Rank": 7, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "Rank": 7, "CommandName": "Add-PnPNavigationNode", "Id": 124 }, { - "Rank": 8, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "Rank": 8, "CommandName": "Add-PnPNavigationNode", "Id": 125 }, { - "Rank": 1, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", + "Rank": 1, "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 126 }, { - "Rank": 2, "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", "Id": 127 }, { - "Rank": 3, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "Rank": 3, "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 128 }, { - "Rank": 1, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "Rank": 1, "CommandName": "Add-PnPOrgNewsSite", "Id": 129 }, { - "Rank": 1, "Command": "Add-PnPPage -Name \"NewPage\"", + "Rank": 1, "CommandName": "Add-PnPPage", "Id": 130 }, { - "Rank": 2, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "Rank": 2, "CommandName": "Add-PnPPage", "Id": 131 }, { - "Rank": 3, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "Rank": 3, "CommandName": "Add-PnPPage", "Id": 132 }, { - "Rank": 4, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "Rank": 4, "CommandName": "Add-PnPPage", "Id": 133 }, { - "Rank": 5, "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "Rank": 5, "CommandName": "Add-PnPPage", "Id": 134 }, { - "Rank": 6, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "Rank": 6, "CommandName": "Add-PnPPage", "Id": 135 }, { - "Rank": 7, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "Rank": 7, "CommandName": "Add-PnPPage", "Id": 136 }, { - "Rank": 8, "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "Rank": 8, "CommandName": "Add-PnPPage", "Id": 137 }, { - "Rank": 9, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Rank": 9, "CommandName": "Add-PnPPage", "Id": 138 }, { - "Rank": 10, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Rank": 10, "CommandName": "Add-PnPPage", "Id": 139 }, { - "Rank": 1, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", + "Rank": 1, "CommandName": "Add-PnPPageImageWebPart", "Id": 140 }, { - "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\"", + "Rank": 2, "CommandName": "Add-PnPPageImageWebPart", "Id": 141 }, { - "Rank": 1, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "Rank": 1, "CommandName": "Add-PnPPageSection", "Id": 142 }, { - "Rank": 2, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "Rank": 2, "CommandName": "Add-PnPPageSection", "Id": 143 }, { - "Rank": 1, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "Rank": 1, "CommandName": "Add-PnPPageTextPart", "Id": 144 }, { - "Rank": 2, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", + "Rank": 2, "CommandName": "Add-PnPPageTextPart", "Id": 145 }, { - "Rank": 3, "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", "Id": 146 }, { - "Rank": 1, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "Rank": 1, "CommandName": "Add-PnPPageWebPart", "Id": 147 }, { - "Rank": 2, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "Rank": 2, "CommandName": "Add-PnPPageWebPart", "Id": 148 }, { - "Rank": 3, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "Rank": 3, "CommandName": "Add-PnPPageWebPart", "Id": 149 }, { - "Rank": 1, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "Rank": 1, "CommandName": "Add-PnPPlannerBucket", "Id": 150 }, { - "Rank": 2, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "Rank": 2, "CommandName": "Add-PnPPlannerBucket", "Id": 151 }, { - "Rank": 1, "Command": "Add-PnPPlannerRoster", + "Rank": 1, "CommandName": "Add-PnPPlannerRoster", "Id": 152 }, { - "Rank": 1, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPPlannerRosterMember", "Id": 153 }, { - "Rank": 1, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Rank": 1, "CommandName": "Add-PnPPlannerTask", "Id": 154 }, { - "Rank": 2, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Rank": 2, "CommandName": "Add-PnPPlannerTask", "Id": 155 }, { - "Rank": 3, "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", "Id": 156 }, { - "Rank": 1, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Rank": 1, "CommandName": "Add-PnPPublishingImageRendition", "Id": 157 }, { - "Rank": 1, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", + "Rank": 1, "CommandName": "Add-PnPPublishingPage", "Id": 158 }, { - "Rank": 2, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "Rank": 2, "CommandName": "Add-PnPPublishingPage", "Id": 159 }, { - "Rank": 1, "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Rank": 1, "CommandName": "Add-PnPPublishingPageLayout", "Id": 160 }, { - "Rank": 1, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "Rank": 1, "CommandName": "Add-PnPRoleDefinition", "Id": 161 }, { - "Rank": 2, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "Rank": 2, "CommandName": "Add-PnPRoleDefinition", "Id": 162 }, { - "Rank": 3, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "Rank": 3, "CommandName": "Add-PnPRoleDefinition", "Id": 163 }, { - "Rank": 1, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 164 }, { - "Rank": 2, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 2, "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 165 }, { - "Rank": 3, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "Rank": 3, "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 166 }, { - "Rank": 1, "Command": "Add-PnPSiteCollectionAppCatalog", + "Rank": 1, "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 167 }, { - "Rank": 2, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Rank": 2, "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 168 }, { - "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", + "Rank": 1, "CommandName": "Add-PnPSiteDesign", "Id": 169 }, { - "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", + "Rank": 2, "CommandName": "Add-PnPSiteDesign", "Id": 170 }, { - "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\"", + "Rank": 3, "CommandName": "Add-PnPSiteDesign", "Id": 171 }, { - "Rank": 1, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", + "Rank": 1, "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 172 }, { - "Rank": 2, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Rank": 2, "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 173 }, { - "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", + "Rank": 3, "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 174 }, { - "Rank": 1, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "Rank": 1, "CommandName": "Add-PnPSiteDesignTask", "Id": 175 }, { - "Rank": 2, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Rank": 2, "CommandName": "Add-PnPSiteDesignTask", "Id": 176 }, { - "Rank": 1, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "Rank": 1, "CommandName": "Add-PnPSiteScript", "Id": 177 }, { - "Rank": 1, "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", + "Rank": 1, "CommandName": "Add-PnPSiteScriptPackage", "Id": 178 }, { - "Rank": 1, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "Rank": 1, "CommandName": "Add-PnPSiteTemplate", "Id": 179 }, { - "Rank": 1, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", + "Rank": 1, "CommandName": "Add-PnPStoredCredential", "Id": 180 }, { - "Rank": 2, "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", "Id": 181 }, { - "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\"", + "Rank": 3, "CommandName": "Add-PnPStoredCredential", "Id": 182 }, { - "Rank": 1, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "Rank": 1, "CommandName": "Add-PnPTaxonomyField", "Id": 183 }, { - "Rank": 2, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "Rank": 2, "CommandName": "Add-PnPTaxonomyField", "Id": 184 }, { - "Rank": 1, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "Rank": 1, "CommandName": "Add-PnPTeamsChannel", "Id": 185 }, { - "Rank": 2, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "Rank": 2, "CommandName": "Add-PnPTeamsChannel", "Id": 186 }, { - "Rank": 3, "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "Rank": 3, "CommandName": "Add-PnPTeamsChannel", "Id": 187 }, { - "Rank": 4, "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", + "Rank": 4, "CommandName": "Add-PnPTeamsChannel", "Id": 188 }, { - "Rank": 1, "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", "Id": 189 }, { - "Rank": 2, "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", + "Rank": 2, "CommandName": "Add-PnpTeamsChannelUser", "Id": 190 }, { - "Rank": 1, "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", "Id": 191 }, { - "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\"", + "Rank": 2, "CommandName": "Add-PnPTeamsTab", "Id": 192 }, { - "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\"", + "Rank": 3, "CommandName": "Add-PnPTeamsTab", "Id": 193 }, { - "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", + "Rank": 4, "CommandName": "Add-PnPTeamsTab", "Id": 194 }, { - "Rank": 1, "Command": "Add-PnPTeamsTeam", + "Rank": 1, "CommandName": "Add-PnPTeamsTeam", "Id": 195 }, { - "Rank": 1, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 1, "CommandName": "Add-PnPTeamsUser", "Id": 196 }, { - "Rank": 2, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Rank": 2, "CommandName": "Add-PnPTeamsUser", "Id": 197 }, { - "Rank": 3, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "Rank": 3, "CommandName": "Add-PnPTeamsUser", "Id": 198 }, { - "Rank": 4, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "Rank": 4, "CommandName": "Add-PnPTeamsUser", "Id": 199 }, { - "Rank": 1, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Rank": 1, "CommandName": "Add-PnPTenantCdnOrigin", "Id": 200 }, { - "Rank": 1, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "Rank": 1, "CommandName": "Add-PnPTenantSequence", "Id": 201 }, { - "Rank": 1, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "Rank": 1, "CommandName": "Add-PnPTenantSequenceSite", "Id": 202 }, { - "Rank": 1, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "Rank": 1, "CommandName": "Add-PnPTenantSequenceSubSite", "Id": 203 }, { - "Rank": 1, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "Rank": 1, "CommandName": "Add-PnPTermToTerm", "Id": 204 }, { - "Rank": 1, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", + "Rank": 1, "CommandName": "Add-PnPView", "Id": 205 }, { - "Rank": 2, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", + "Rank": 2, "CommandName": "Add-PnPView", "Id": 206 }, { - "Rank": 3, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "Rank": 3, "CommandName": "Add-PnPView", "Id": 207 }, { - "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\"", + "Rank": 1, "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Id": 208 }, { - "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\"", + "Rank": 2, "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Id": 209 }, { - "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\"", + "Rank": 3, "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Id": 210 }, { - "Rank": 1, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Rank": 1, "CommandName": "Add-PnPWebhookSubscription", "Id": 211 }, { - "Rank": 2, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "Rank": 2, "CommandName": "Add-PnPWebhookSubscription", "Id": 212 }, { - "Rank": 3, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", + "Rank": 3, "CommandName": "Add-PnPWebhookSubscription", "Id": 213 }, { - "Rank": 1, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", + "Rank": 1, "CommandName": "Add-PnPWebPartToWebPartPage", "Id": 214 }, { - "Rank": 2, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", + "Rank": 2, "CommandName": "Add-PnPWebPartToWebPartPage", "Id": 215 }, { - "Rank": 1, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", + "Rank": 1, "CommandName": "Add-PnPWebPartToWikiPage", "Id": 216 }, { - "Rank": 2, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", + "Rank": 2, "CommandName": "Add-PnPWebPartToWikiPage", "Id": 217 }, { - "Rank": 1, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "Rank": 1, "CommandName": "Add-PnPWikiPage", "Id": 218 }, { - "Rank": 1, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "Rank": 1, "CommandName": "Clear-PnPAzureADGroupMember", "Id": 219 }, { - "Rank": 1, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "Rank": 1, "CommandName": "Clear-PnPAzureADGroupOwner", "Id": 220 }, { - "Rank": 1, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "Rank": 1, "CommandName": "Clear-PnPDefaultColumnValues", "Id": 221 }, { - "Rank": 2, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "Rank": 2, "CommandName": "Clear-PnPDefaultColumnValues", "Id": 222 }, { - "Rank": 1, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1, "CommandName": "Clear-PnPListItemAsRecord", "Id": 223 }, { - "Rank": 1, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupMember", "Id": 224 }, { - "Rank": 1, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Id": 225 }, { - "Rank": 1, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1, "CommandName": "Clear-PnpRecycleBinItem", "Id": 226 }, { - "Rank": 2, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "Rank": 2, "CommandName": "Clear-PnpRecycleBinItem", "Id": 227 }, { - "Rank": 3, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "Rank": 3, "CommandName": "Clear-PnpRecycleBinItem", "Id": 228 }, { - "Rank": 1, "Command": "Clear-PnPTenantAppCatalogUrl", + "Rank": 1, "CommandName": "Clear-PnPTenantAppCatalogUrl", "Id": 229 }, { - "Rank": 1, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 230 }, { - "Rank": 2, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Rank": 2, "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 231 }, { - "Rank": 1, "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", "Id": 232 }, { - "Rank": 1, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "Rank": 1, "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 233 }, { - "Rank": 2, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "Rank": 2, "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 234 }, { - "Rank": 1, "Command": "Convert-PnPSiteTemplate -Path template.xml", + "Rank": 1, "CommandName": "Convert-PnPSiteTemplate", "Id": 235 }, { - "Rank": 2, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "Rank": 2, "CommandName": "Convert-PnPSiteTemplate", "Id": 236 }, { - "Rank": 3, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "Rank": 3, "CommandName": "Convert-PnPSiteTemplate", "Id": 237 }, { - "Rank": 1, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "Rank": 1, "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 238 }, { - "Rank": 2, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "Rank": 2, "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 239 }, { - "Rank": 1, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "Rank": 1, "CommandName": "ConvertTo-PnPPage", "Id": 240 }, { - "Rank": 2, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "Rank": 2, "CommandName": "ConvertTo-PnPPage", "Id": 241 }, { - "Rank": 3, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "Rank": 3, "CommandName": "ConvertTo-PnPPage", "Id": 242 }, { - "Rank": 4, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "Rank": 4, "CommandName": "ConvertTo-PnPPage", "Id": 243 }, { - "Rank": 5, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 5, "CommandName": "ConvertTo-PnPPage", "Id": 244 }, { - "Rank": 6, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "Rank": 6, "CommandName": "ConvertTo-PnPPage", "Id": 245 }, { - "Rank": 7, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "Rank": 7, "CommandName": "ConvertTo-PnPPage", "Id": 246 }, { - "Rank": 8, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "Rank": 8, "CommandName": "ConvertTo-PnPPage", "Id": 247 }, { - "Rank": 9, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 9, "CommandName": "ConvertTo-PnPPage", "Id": 248 }, { - "Rank": 10, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "Rank": 10, "CommandName": "ConvertTo-PnPPage", "Id": 249 }, { - "Rank": 11, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "Rank": 11, "CommandName": "ConvertTo-PnPPage", "Id": 250 }, { - "Rank": 12, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 12, "CommandName": "ConvertTo-PnPPage", "Id": 251 }, { - "Rank": 13, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 13, "CommandName": "ConvertTo-PnPPage", "Id": 252 }, { - "Rank": 14, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "Rank": 14, "CommandName": "ConvertTo-PnPPage", "Id": 253 }, { - "Rank": 1, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 1, "CommandName": "Copy-PnPFile", "Id": 254 }, { - "Rank": 2, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Rank": 2, "CommandName": "Copy-PnPFile", "Id": 255 }, { - "Rank": 3, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Rank": 3, "CommandName": "Copy-PnPFile", "Id": 256 }, { - "Rank": 4, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 4, "CommandName": "Copy-PnPFile", "Id": 257 }, { - "Rank": 5, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Rank": 5, "CommandName": "Copy-PnPFile", "Id": 258 }, { - "Rank": 6, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Rank": 6, "CommandName": "Copy-PnPFile", "Id": 259 }, { - "Rank": 7, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Rank": 7, "CommandName": "Copy-PnPFile", "Id": 260 }, { - "Rank": 8, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 8, "CommandName": "Copy-PnPFile", "Id": 261 }, { - "Rank": 9, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Rank": 9, "CommandName": "Copy-PnPFile", "Id": 262 }, { - "Rank": 10, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Rank": 10, "CommandName": "Copy-PnPFile", "Id": 263 }, { - "Rank": 1, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 1, "CommandName": "Copy-PnPFolder", "Id": 264 }, { - "Rank": 2, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Rank": 2, "CommandName": "Copy-PnPFolder", "Id": 265 }, { - "Rank": 3, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Rank": 3, "CommandName": "Copy-PnPFolder", "Id": 266 }, { - "Rank": 4, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 4, "CommandName": "Copy-PnPFolder", "Id": 267 }, { - "Rank": 5, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Rank": 5, "CommandName": "Copy-PnPFolder", "Id": 268 }, { - "Rank": 6, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Rank": 6, "CommandName": "Copy-PnPFolder", "Id": 269 }, { - "Rank": 7, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Rank": 7, "CommandName": "Copy-PnPFolder", "Id": 270 }, { - "Rank": 8, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 8, "CommandName": "Copy-PnPFolder", "Id": 271 }, { - "Rank": 9, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Rank": 9, "CommandName": "Copy-PnPFolder", "Id": 272 }, { - "Rank": 10, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Rank": 10, "CommandName": "Copy-PnPFolder", "Id": 273 }, { - "Rank": 1, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "Rank": 1, "CommandName": "Copy-PnPItemProxy", "Id": 274 }, { - "Rank": 1, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "Rank": 1, "CommandName": "Copy-PnPList", "Id": 275 }, { - "Rank": 2, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", + "Rank": 2, "CommandName": "Copy-PnPList", "Id": 276 }, { - "Rank": 3, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "Rank": 3, "CommandName": "Copy-PnPList", "Id": 277 }, { - "Rank": 4, "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", "Id": 278 }, { - "Rank": 1, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "Rank": 1, "CommandName": "Copy-PnPTeamsTeam", "Id": 279 }, { - "Rank": 2, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "Rank": 2, "CommandName": "Copy-PnPTeamsTeam", "Id": 280 }, { - "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", + "Rank": 3, "CommandName": "Copy-PnPTeamsTeam", "Id": 281 }, { - "Rank": 4, "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", "Id": 282 }, { - "Rank": 1, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Disable-PnPFeature", "Id": 283 }, { - "Rank": 2, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2, "CommandName": "Disable-PnPFeature", "Id": 284 }, { - "Rank": 3, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3, "CommandName": "Disable-PnPFeature", "Id": 285 }, { - "Rank": 1, "Command": "Disable-PnPPageScheduling", + "Rank": 1, "CommandName": "Disable-PnPPageScheduling", "Id": 286 }, { - "Rank": 1, "Command": "Disable-PnPPowerShellTelemetry", + "Rank": 1, "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 287 }, { - "Rank": 2, "Command": "Disable-PnPPowerShellTelemetry -Force", + "Rank": 2, "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 288 }, { - "Rank": 1, "Command": "Disable-PnPSharingForNonOwnersOfSite", + "Rank": 1, "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Id": 289 }, { - "Rank": 1, "Command": "Disable-PnPSiteClassification", + "Rank": 1, "CommandName": "Disable-PnPSiteClassification", "Id": 290 }, { - "Rank": 1, "Command": "Disconnect-PnPOnline", + "Rank": 1, "CommandName": "Disconnect-PnPOnline", "Id": 291 }, { - "Rank": 1, "Command": "Enable-PnPCommSite", + "Rank": 1, "CommandName": "Enable-PnPCommSite", "Id": 292 }, { - "Rank": 2, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "Rank": 2, "CommandName": "Enable-PnPCommSite", "Id": 293 }, { - "Rank": 1, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Enable-PnPFeature", "Id": 294 }, { - "Rank": 2, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2, "CommandName": "Enable-PnPFeature", "Id": 295 }, { - "Rank": 3, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3, "CommandName": "Enable-PnPFeature", "Id": 296 }, { - "Rank": 1, "Command": "Enable-PnPPageScheduling", + "Rank": 1, "CommandName": "Enable-PnPPageScheduling", "Id": 297 }, { - "Rank": 1, "Command": "Enable-PnPPowerShellTelemetry", + "Rank": 1, "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 298 }, { - "Rank": 2, "Command": "Enable-PnPPowerShellTelemetry -Force", + "Rank": 2, "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 299 }, { - "Rank": 1, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "Rank": 1, "CommandName": "Enable-PnPSiteClassification", "Id": 300 }, { - "Rank": 2, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 2, "CommandName": "Enable-PnPSiteClassification", "Id": 301 }, { - "Rank": 1, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "Rank": 1, "CommandName": "Export-PnPListToSiteTemplate", "Id": 302 }, { - "Rank": 2, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "Rank": 2, "CommandName": "Export-PnPListToSiteTemplate", "Id": 303 }, { - "Rank": 1, "Command": "Export-PnPPage -Identity Home.aspx", + "Rank": 1, "CommandName": "Export-PnPPage", "Id": 304 }, { - "Rank": 1, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "Rank": 1, "CommandName": "Export-PnPPageMapping", "Id": 305 }, { - "Rank": 2, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "Rank": 2, "CommandName": "Export-PnPPageMapping", "Id": 306 }, { - "Rank": 3, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "Rank": 3, "CommandName": "Export-PnPPageMapping", "Id": 307 }, { - "Rank": 1, "Command": "Export-PnPTaxonomy", + "Rank": 1, "CommandName": "Export-PnPTaxonomy", "Id": 308 }, { - "Rank": 2, "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "Rank": 2, "CommandName": "Export-PnPTaxonomy", "Id": 309 }, { - "Rank": 3, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", + "Rank": 3, "CommandName": "Export-PnPTaxonomy", "Id": 310 }, { - "Rank": 4, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "Rank": 4, "CommandName": "Export-PnPTaxonomy", "Id": 311 }, { - "Rank": 1, "Command": "Export-PnPTermGroupToXml", + "Rank": 1, "CommandName": "Export-PnPTermGroupToXml", "Id": 312 }, { - "Rank": 2, "Command": "Export-PnPTermGroupToXml -Out output.xml", + "Rank": 2, "CommandName": "Export-PnPTermGroupToXml", "Id": 313 }, { - "Rank": 3, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "Rank": 3, "CommandName": "Export-PnPTermGroupToXml", "Id": 314 }, { - "Rank": 1, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Rank": 1, "CommandName": "Export-PnPUserInfo", "Id": 315 }, { - "Rank": 2, "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", "Id": 316 }, { - "Rank": 1, "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "Rank": 1, "CommandName": "Export-PnPUserProfile", "Id": 317 }, { - "Rank": 2, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "Rank": 2, "CommandName": "Export-PnPUserProfile", "Id": 318 }, { - "Rank": 1, "Command": "Find-PnPFile -Match *.master", + "Rank": 1, "CommandName": "Find-PnPFile", "Id": 319 }, { - "Rank": 2, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "Rank": 2, "CommandName": "Find-PnPFile", "Id": 320 }, { - "Rank": 3, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "Rank": 3, "CommandName": "Find-PnPFile", "Id": 321 }, { - "Rank": 1, "Command": "Get-PnPAccessToken", + "Rank": 1, "CommandName": "Get-PnPAccessToken", "Id": 322 }, { - "Rank": 2, "Command": "Get-PnPAccessToken -Decoded", + "Rank": 2, "CommandName": "Get-PnPAccessToken", "Id": 323 }, { - "Rank": 3, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "Rank": 3, "CommandName": "Get-PnPAccessToken", "Id": 324 }, { - "Rank": 4, "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "Rank": 4, "CommandName": "Get-PnPAccessToken", "Id": 325 }, { - "Rank": 5, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "Rank": 5, "CommandName": "Get-PnPAccessToken", "Id": 326 }, { - "Rank": 1, "Command": "Get-PnPAlert", + "Rank": 1, "CommandName": "Get-PnPAlert", "Id": 327 }, { - "Rank": 2, "Command": "Get-PnPAlert -List \"Demo List\"", + "Rank": 2, "CommandName": "Get-PnPAlert", "Id": 328 }, { - "Rank": 3, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Rank": 3, "CommandName": "Get-PnPAlert", "Id": 329 }, { - "Rank": 4, "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "Rank": 4, "CommandName": "Get-PnPAlert", "Id": 330 }, { - "Rank": 5, "Command": "Get-PnPAlert -AllUsers", + "Rank": 5, "CommandName": "Get-PnPAlert", "Id": 331 }, { - "Rank": 6, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "Rank": 6, "CommandName": "Get-PnPAlert", "Id": 332 }, { - "Rank": 1, "Command": "Get-PnPApp", + "Rank": 1, "CommandName": "Get-PnPApp", "Id": 333 }, { - "Rank": 2, "Command": "Get-PnPApp -Scope Site", + "Rank": 2, "CommandName": "Get-PnPApp", "Id": 334 }, { - "Rank": 3, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 3, "CommandName": "Get-PnPApp", "Id": 335 }, { - "Rank": 1, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "Rank": 1, "CommandName": "Get-PnPAppErrors", "Id": 336 }, { - "Rank": 2, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "Rank": 2, "CommandName": "Get-PnPAppErrors", "Id": 337 }, { - "Rank": 1, "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "Rank": 1, "CommandName": "Get-PnPAppInfo", "Id": 338 }, { - "Rank": 2, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 2, "CommandName": "Get-PnPAppInfo", "Id": 339 }, { - "Rank": 3, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "Rank": 3, "CommandName": "Get-PnPAppInfo", "Id": 340 }, { - "Rank": 1, "Command": "Get-PnPApplicationCustomizer", + "Rank": 1, "CommandName": "Get-PnPApplicationCustomizer", "Id": 341 }, { - "Rank": 2, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2, "CommandName": "Get-PnPApplicationCustomizer", "Id": 342 }, { - "Rank": 3, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "Rank": 3, "CommandName": "Get-PnPApplicationCustomizer", "Id": 343 }, { - "Rank": 1, "Command": "Get-PnPAuditing", + "Rank": 1, "CommandName": "Get-PnPAuditing", "Id": 344 }, { - "Rank": 1, "Command": "Get-PnPAuthenticationRealm", + "Rank": 1, "CommandName": "Get-PnPAuthenticationRealm", "Id": 345 }, { - "Rank": 2, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "Rank": 2, "CommandName": "Get-PnPAuthenticationRealm", "Id": 346 }, { - "Rank": 1, "Command": "Get-PnPAvailableLanguage", + "Rank": 1, "CommandName": "Get-PnPAvailableLanguage", "Id": 347 }, { - "Rank": 1, "Command": "Get-PnPAvailableSensitivityLabel", + "Rank": 1, "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 348 }, { - "Rank": 2, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "Rank": 2, "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 349 }, { - "Rank": 3, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "Rank": 3, "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 350 }, { - "Rank": 1, "Command": "Get-PnPAvailableSiteClassification", + "Rank": 1, "CommandName": "Get-PnPAvailableSiteClassification", "Id": 351 }, { - "Rank": 1, "Command": "Get-PnPAzureACSPrincipal", + "Rank": 1, "CommandName": "Get-PnPAzureACSPrincipal", "Id": 352 }, { - "Rank": 2, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "Rank": 2, "CommandName": "Get-PnPAzureACSPrincipal", "Id": 353 }, { - "Rank": 3, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "Rank": 3, "CommandName": "Get-PnPAzureACSPrincipal", "Id": 354 }, { - "Rank": 4, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "Rank": 4, "CommandName": "Get-PnPAzureACSPrincipal", "Id": 355 }, { - "Rank": 1, "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 356 }, { - "Rank": 2, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 357 }, { - "Rank": 3, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 358 }, { - "Rank": 1, "Command": "Get-PnPAzureADActivityReportSignIn", + "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 359 }, { - "Rank": 2, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 360 }, { - "Rank": 3, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 361 }, { - "Rank": 1, "Command": "Get-PnPAzureADApp", + "Rank": 1, "CommandName": "Get-PnPAzureADApp", "Id": 362 }, { - "Rank": 2, "Command": "Get-PnPAzureADApp -Identity MyApp", + "Rank": 2, "CommandName": "Get-PnPAzureADApp", "Id": 363 }, { - "Rank": 3, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3, "CommandName": "Get-PnPAzureADApp", "Id": 364 }, { - "Rank": 4, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "Rank": 4, "CommandName": "Get-PnPAzureADApp", "Id": 365 }, { - "Rank": 1, "Command": "Get-PnPAzureADAppPermission", + "Rank": 1, "CommandName": "Get-PnPAzureADAppPermission", "Id": 366 }, { - "Rank": 2, "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "Rank": 2, "CommandName": "Get-PnPAzureADAppPermission", "Id": 367 }, { - "Rank": 3, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3, "CommandName": "Get-PnPAzureADAppPermission", "Id": 368 }, { - "Rank": 1, "Command": "Get-PnPAzureADAppSitePermission", + "Rank": 1, "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 369 }, { - "Rank": 2, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "Rank": 2, "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 370 }, { - "Rank": 3, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "Rank": 3, "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 371 }, { - "Rank": 4, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "Rank": 4, "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 372 }, { - "Rank": 5, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "Rank": 5, "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 373 }, { - "Rank": 1, "Command": "Get-PnPAzureADGroup", + "Rank": 1, "CommandName": "Get-PnPAzureADGroup", "Id": 374 }, { - "Rank": 2, "Command": "Get-PnPAzureADGroup -Identity $groupId", + "Rank": 2, "CommandName": "Get-PnPAzureADGroup", "Id": 375 }, { - "Rank": 3, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "Rank": 3, "CommandName": "Get-PnPAzureADGroup", "Id": 376 }, { - "Rank": 4, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "Rank": 4, "CommandName": "Get-PnPAzureADGroup", "Id": 377 }, { - "Rank": 5, "Command": "Get-PnPAzureADGroup -Identity $group", + "Rank": 5, "CommandName": "Get-PnPAzureADGroup", "Id": 378 }, { - "Rank": 1, "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "Rank": 1, "CommandName": "Get-PnPAzureADGroupMember", "Id": 379 }, { - "Rank": 2, "Command": "Get-PnPAzureADGroupMember -Identity $group", + "Rank": 2, "CommandName": "Get-PnPAzureADGroupMember", "Id": 380 }, { - "Rank": 1, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "Rank": 1, "CommandName": "Get-PnPAzureADGroupOwner", "Id": 381 }, { - "Rank": 2, "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "Rank": 2, "CommandName": "Get-PnPAzureADGroupOwner", "Id": 382 }, { - "Rank": 1, "Command": "Get-PnPAzureADServicePrincipal", + "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 383 }, { - "Rank": 2, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 384 }, { - "Rank": 3, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "Rank": 3, "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 385 }, { - "Rank": 4, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "Rank": 4, "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 386 }, { - "Rank": 5, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "Rank": 5, "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 387 }, { - "Rank": 1, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 388 }, { - "Rank": 2, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 389 }, { - "Rank": 1, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 390 }, { - "Rank": 2, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 391 }, { - "Rank": 1, "Command": "Get-PnPAzureADUser", + "Rank": 1, "CommandName": "Get-PnPAzureADUser", "Id": 392 }, { - "Rank": 2, "Command": "Get-PnPAzureADUser -EndIndex 50", + "Rank": 2, "CommandName": "Get-PnPAzureADUser", "Id": 393 }, { - "Rank": 3, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 3, "CommandName": "Get-PnPAzureADUser", "Id": 394 }, { - "Rank": 4, "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "Rank": 4, "CommandName": "Get-PnPAzureADUser", "Id": 395 }, { - "Rank": 5, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "Rank": 5, "CommandName": "Get-PnPAzureADUser", "Id": 396 }, { - "Rank": 6, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "Rank": 6, "CommandName": "Get-PnPAzureADUser", "Id": 397 }, { - "Rank": 7, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "Rank": 7, "CommandName": "Get-PnPAzureADUser", "Id": 398 }, { - "Rank": 8, "Command": "Get-PnPAzureADUser -Delta", + "Rank": 8, "CommandName": "Get-PnPAzureADUser", "Id": 399 }, { - "Rank": 9, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "Rank": 9, "CommandName": "Get-PnPAzureADUser", "Id": 400 }, { - "Rank": 10, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "Rank": 10, "CommandName": "Get-PnPAzureADUser", "Id": 401 }, { - "Rank": 1, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "Rank": 1, "CommandName": "Get-PnPAzureCertificate", "Id": 402 }, { - "Rank": 2, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "Rank": 2, "CommandName": "Get-PnPAzureCertificate", "Id": 403 }, { - "Rank": 3, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "Rank": 3, "CommandName": "Get-PnPAzureCertificate", "Id": 404 }, { - "Rank": 1, "Command": "Get-PnPBrowserIdleSignout", + "Rank": 1, "CommandName": "Get-PnPBrowserIdleSignout", "Id": 405 }, { - "Rank": 1, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "Rank": 1, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 406 }, { - "Rank": 2, "Command": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 2, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 407 }, { - "Rank": 1, "Command": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 1, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 408 }, { - "Rank": 2, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "Rank": 2, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 409 }, { - "Rank": 3, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "Rank": 3, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 410 }, { - "Rank": 4, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 4, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 411 }, { - "Rank": 5, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "Rank": 5, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 412 }, { - "Rank": 1, "Command": "Get-PnPChangeLog", + "Rank": 1, "CommandName": "Get-PnPChangeLog", "Id": 413 }, { - "Rank": 2, "Command": "Get-PnPChangeLog -Nightly", + "Rank": 2, "CommandName": "Get-PnPChangeLog", "Id": 414 }, { - "Rank": 1, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "Rank": 1, "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 415 }, { - "Rank": 2, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "Rank": 2, "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 416 }, { - "Rank": 1, "Command": "Get-PnPContentType", + "Rank": 1, "CommandName": "Get-PnPContentType", "Id": 417 }, { - "Rank": 2, "Command": "Get-PnPContentType -InSiteHierarchy", + "Rank": 2, "CommandName": "Get-PnPContentType", "Id": 418 }, { - "Rank": 3, "Command": "Get-PnPContentType -Identity \"Project Document\"", + "Rank": 3, "CommandName": "Get-PnPContentType", "Id": 419 }, { - "Rank": 4, "Command": "Get-PnPContentType -List \"Documents\"", + "Rank": 4, "CommandName": "Get-PnPContentType", "Id": 420 }, { - "Rank": 1, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "Rank": 1, "CommandName": "Get-PnPContentTypePublishingStatus", "Id": 421 }, { - "Rank": 1, "Command": "Get-PnPCustomAction", + "Rank": 1, "CommandName": "Get-PnPCustomAction", "Id": 422 }, { - "Rank": 2, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2, "CommandName": "Get-PnPCustomAction", "Id": 423 }, { - "Rank": 3, "Command": "Get-PnPCustomAction -Scope web", + "Rank": 3, "CommandName": "Get-PnPCustomAction", "Id": 424 }, { - "Rank": 1, "Command": "Get-PnPDeletedMicrosoft365Group", + "Rank": 1, "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 425 }, { - "Rank": 2, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 2, "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 426 }, { - "Rank": 1, "Command": "Get-PnPDeletedTeam", + "Rank": 1, "CommandName": "Get-PnPDeletedTeam", "Id": 427 }, { - "Rank": 1, "Command": "Get-PnPDiagnostics", + "Rank": 1, "CommandName": "Get-PnPDiagnostics", "Id": 428 }, { - "Rank": 1, "Command": "Get-PnPDisableSpacesActivation", + "Rank": 1, "CommandName": "Get-PnPDisableSpacesActivation", "Id": 429 }, { - "Rank": 1, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "Rank": 1, "CommandName": "Get-PnPDocumentSetTemplate", "Id": 430 }, { - "Rank": 2, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "Rank": 2, "CommandName": "Get-PnPDocumentSetTemplate", "Id": 431 }, { - "Rank": 1, "Command": "Get-PnPEventReceiver", + "Rank": 1, "CommandName": "Get-PnPEventReceiver", "Id": 432 }, { - "Rank": 2, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 2, "CommandName": "Get-PnPEventReceiver", "Id": 433 }, { - "Rank": 3, "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "Rank": 3, "CommandName": "Get-PnPEventReceiver", "Id": 434 }, { - "Rank": 4, "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "Rank": 4, "CommandName": "Get-PnPEventReceiver", "Id": 435 }, { - "Rank": 5, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 5, "CommandName": "Get-PnPEventReceiver", "Id": 436 }, { - "Rank": 6, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "Rank": 6, "CommandName": "Get-PnPEventReceiver", "Id": 437 }, { - "Rank": 7, "Command": "Get-PnPEventReceiver -Scope Site", + "Rank": 7, "CommandName": "Get-PnPEventReceiver", "Id": 438 }, { - "Rank": 8, "Command": "Get-PnPEventReceiver -Scope Web", + "Rank": 8, "CommandName": "Get-PnPEventReceiver", "Id": 439 }, { - "Rank": 9, "Command": "Get-PnPEventReceiver -Scope All", + "Rank": 9, "CommandName": "Get-PnPEventReceiver", "Id": 440 }, { - "Rank": 1, "Command": "Get-PnPException", + "Rank": 1, "CommandName": "Get-PnPException", "Id": 441 }, { - "Rank": 2, "Command": "Get-PnPException -All", + "Rank": 2, "CommandName": "Get-PnPException", "Id": 442 }, { - "Rank": 1, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "Rank": 1, "CommandName": "Get-PnPExternalUser", "Id": 443 }, { - "Rank": 2, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "Rank": 2, "CommandName": "Get-PnPExternalUser", "Id": 444 }, { - "Rank": 1, "Command": "Get-PnPFeature", + "Rank": 1, "CommandName": "Get-PnPFeature", "Id": 445 }, { - "Rank": 2, "Command": "Get-PnPFeature -Scope Site", + "Rank": 2, "CommandName": "Get-PnPFeature", "Id": 446 }, { - "Rank": 3, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 3, "CommandName": "Get-PnPFeature", "Id": 447 }, { - "Rank": 4, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "Rank": 4, "CommandName": "Get-PnPFeature", "Id": 448 }, { - "Rank": 1, "Command": "Get-PnPField", + "Rank": 1, "CommandName": "Get-PnPField", "Id": 449 }, { - "Rank": 2, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Rank": 2, "CommandName": "Get-PnPField", "Id": 450 }, { - "Rank": 3, "Command": "Get-PnPField -Group \"Custom Columns\"", + "Rank": 3, "CommandName": "Get-PnPField", "Id": 451 }, { - "Rank": 1, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "Rank": 1, "CommandName": "Get-PnPFile", "Id": 452 }, { - "Rank": 2, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "Rank": 2, "CommandName": "Get-PnPFile", "Id": 453 }, { - "Rank": 3, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "Rank": 3, "CommandName": "Get-PnPFile", "Id": 454 }, { - "Rank": 4, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "Rank": 4, "CommandName": "Get-PnPFile", "Id": 455 }, { - "Rank": 5, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "Rank": 5, "CommandName": "Get-PnPFile", "Id": 456 }, { - "Rank": 6, "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", + "Rank": 6, "CommandName": "Get-PnPFile", "Id": 457 }, { - "Rank": 7, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "Rank": 7, "CommandName": "Get-PnPFile", "Id": 458 }, { - "Rank": 1, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, "CommandName": "Get-PnPFileSharingLink", "Id": 459 }, { - "Rank": 1, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "Rank": 1, "CommandName": "Get-PnPFileVersion", "Id": 460 }, { - "Rank": 2, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "Rank": 2, "CommandName": "Get-PnPFileVersion", "Id": 461 }, { - "Rank": 1, "Command": "Get-PnPFlow -AsAdmin", + "Rank": 1, "CommandName": "Get-PnPFlow", "Id": 462 }, { - "Rank": 2, "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "Rank": 2, "CommandName": "Get-PnPFlow", "Id": 463 }, { - "Rank": 3, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "Rank": 3, "CommandName": "Get-PnPFlow", "Id": 464 }, { - "Rank": 1, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "Rank": 1, "CommandName": "Get-PnPFlowOwner", "Id": 465 }, { - "Rank": 1, "Command": "Get-PnPFolder", + "Rank": 1, "CommandName": "Get-PnPFolder", "Id": 466 }, { - "Rank": 2, "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "Rank": 2, "CommandName": "Get-PnPFolder", "Id": 467 }, { - "Rank": 3, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPFolder", "Id": 468 }, { - "Rank": 4, "Command": "Get-PnPFolder -List \"Shared Documents\"", + "Rank": 4, "CommandName": "Get-PnPFolder", "Id": 469 }, { - "Rank": 1, "Command": "Get-PnPFolderFile", + "Rank": 1, "CommandName": "Get-PnPFolderFile", "Id": 470 }, { - "Rank": 2, "Command": "Get-PnPFolderFile -Recurse", + "Rank": 2, "CommandName": "Get-PnPFolderFile", "Id": 471 }, { - "Rank": 3, "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPFolderFile", "Id": 472 }, { - "Rank": 4, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Rank": 4, "CommandName": "Get-PnPFolderFile", "Id": 473 }, { - "Rank": 5, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 5, "CommandName": "Get-PnPFolderFile", "Id": 474 }, { - "Rank": 1, "Command": "Get-PnPFolderFolder", + "Rank": 1, "CommandName": "Get-PnPFolderFolder", "Id": 475 }, { - "Rank": 2, "Command": "Get-PnPFolderFolder -Recurse", + "Rank": 2, "CommandName": "Get-PnPFolderFolder", "Id": 476 }, { - "Rank": 3, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPFolderFolder", "Id": 477 }, { - "Rank": 4, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "Rank": 4, "CommandName": "Get-PnPFolderFolder", "Id": 478 }, { - "Rank": 5, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "Rank": 5, "CommandName": "Get-PnPFolderFolder", "Id": 479 }, { - "Rank": 6, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 6, "CommandName": "Get-PnPFolderFolder", "Id": 480 }, { - "Rank": 1, "Command": "Get-PnPFolderItem", + "Rank": 1, "CommandName": "Get-PnPFolderItem", "Id": 481 }, { - "Rank": 2, "Command": "Get-PnPFolderItem -Recurse", + "Rank": 2, "CommandName": "Get-PnPFolderItem", "Id": 482 }, { - "Rank": 3, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPFolderItem", "Id": 483 }, { - "Rank": 4, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Rank": 4, "CommandName": "Get-PnPFolderItem", "Id": 484 }, { - "Rank": 5, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "Rank": 5, "CommandName": "Get-PnPFolderItem", "Id": 485 }, { - "Rank": 6, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 6, "CommandName": "Get-PnPFolderItem", "Id": 486 }, { - "Rank": 1, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, "CommandName": "Get-PnPFolderSharingLink", "Id": 487 }, { - "Rank": 1, "Command": "Get-PnPFolderStorageMetric", + "Rank": 1, "CommandName": "Get-PnPFolderStorageMetric", "Id": 488 }, { - "Rank": 2, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "Rank": 2, "CommandName": "Get-PnPFolderStorageMetric", "Id": 489 }, { - "Rank": 3, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPFolderStorageMetric", "Id": 490 }, { - "Rank": 1, "Command": "Get-PnPFooter", + "Rank": 1, "CommandName": "Get-PnPFooter", "Id": 491 }, { - "Rank": 1, "Command": "Get-PnPGraphAccessToken", + "Rank": 1, "CommandName": "Get-PnPGraphAccessToken", "Id": 492 }, { - "Rank": 2, "Command": "Get-PnPGraphAccessToken -Decoded", + "Rank": 2, "CommandName": "Get-PnPGraphAccessToken", "Id": 493 }, { - "Rank": 1, "Command": "Get-PnPGraphSubscription", + "Rank": 1, "CommandName": "Get-PnPGraphSubscription", "Id": 494 }, { - "Rank": 2, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 2, "CommandName": "Get-PnPGraphSubscription", "Id": 495 }, { - "Rank": 1, "Command": "Get-PnPGroup", + "Rank": 1, "CommandName": "Get-PnPGroup", "Id": 496 }, { - "Rank": 2, "Command": "Get-PnPGroup -Identity 'My Site Users'", + "Rank": 2, "CommandName": "Get-PnPGroup", "Id": 497 }, { - "Rank": 3, "Command": "Get-PnPGroup -AssociatedMemberGroup", + "Rank": 3, "CommandName": "Get-PnPGroup", "Id": 498 }, { - "Rank": 1, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "Rank": 1, "CommandName": "Get-PnPGroupMember", "Id": 499 }, { - "Rank": 2, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "Rank": 2, "CommandName": "Get-PnPGroupMember", "Id": 500 }, { - "Rank": 1, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "Rank": 1, "CommandName": "Get-PnPGroupPermissions", "Id": 501 }, { - "Rank": 1, "Command": "Get-PnPHideDefaultThemes", + "Rank": 1, "CommandName": "Get-PnPHideDefaultThemes", "Id": 502 }, { - "Rank": 1, "Command": "Get-PnPHomePage", + "Rank": 1, "CommandName": "Get-PnPHomePage", "Id": 503 }, { - "Rank": 1, "Command": "Get-PnPHomeSite", + "Rank": 1, "CommandName": "Get-PnPHomeSite", "Id": 504 }, { - "Rank": 2, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "Rank": 2, "CommandName": "Get-PnPHomeSite", "Id": 505 }, { - "Rank": 3, "Command": "Get-PnPHomeSite -Detailed", + "Rank": 3, "CommandName": "Get-PnPHomeSite", "Id": 506 }, { - "Rank": 1, "Command": "Get-PnPHubSite", + "Rank": 1, "CommandName": "Get-PnPHubSite", "Id": 507 }, { - "Rank": 2, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Rank": 2, "CommandName": "Get-PnPHubSite", "Id": 508 }, { - "Rank": 3, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "Rank": 3, "CommandName": "Get-PnPHubSite", "Id": 509 }, { - "Rank": 1, "Command": "Get-PnPHubSiteChild", + "Rank": 1, "CommandName": "Get-PnPHubSiteChild", "Id": 510 }, { - "Rank": 2, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Rank": 2, "CommandName": "Get-PnPHubSiteChild", "Id": 511 }, { - "Rank": 1, "Command": "Get-PnPInPlaceRecordsManagement", + "Rank": 1, "CommandName": "Get-PnPInPlaceRecordsManagement", "Id": 512 }, { - "Rank": 1, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "Rank": 1, "CommandName": "Get-PnPIsSiteAliasAvailable", "Id": 513 }, { - "Rank": 1, "Command": "Get-PnPJavaScriptLink", + "Rank": 1, "CommandName": "Get-PnPJavaScriptLink", "Id": 514 }, { - "Rank": 2, "Command": "Get-PnPJavaScriptLink -Scope All", + "Rank": 2, "CommandName": "Get-PnPJavaScriptLink", "Id": 515 }, { - "Rank": 3, "Command": "Get-PnPJavaScriptLink -Scope Web", + "Rank": 3, "CommandName": "Get-PnPJavaScriptLink", "Id": 516 }, { - "Rank": 4, "Command": "Get-PnPJavaScriptLink -Scope Site", + "Rank": 4, "CommandName": "Get-PnPJavaScriptLink", "Id": 517 }, { - "Rank": 5, "Command": "Get-PnPJavaScriptLink -Name Test", + "Rank": 5, "CommandName": "Get-PnPJavaScriptLink", "Id": 518 }, { - "Rank": 1, "Command": "Get-PnPKnowledgeHubSite", + "Rank": 1, "CommandName": "Get-PnPKnowledgeHubSite", "Id": 519 }, { - "Rank": 1, "Command": "Get-PnPLabel", + "Rank": 1, "CommandName": "Get-PnPLabel", "Id": 520 }, { - "Rank": 2, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "Rank": 2, "CommandName": "Get-PnPLabel", "Id": 521 }, { - "Rank": 1, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "Rank": 1, "CommandName": "Get-PnPLargeListOperationStatus", "Id": 522 }, { - "Rank": 1, "Command": "Get-PnPList", + "Rank": 1, "CommandName": "Get-PnPList", "Id": 523 }, { - "Rank": 2, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 2, "CommandName": "Get-PnPList", "Id": 524 }, { - "Rank": 3, "Command": "Get-PnPList -Identity Lists/Announcements", + "Rank": 3, "CommandName": "Get-PnPList", "Id": 525 }, { - "Rank": 4, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "Rank": 4, "CommandName": "Get-PnPList", "Id": 526 }, { - "Rank": 5, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "Rank": 5, "CommandName": "Get-PnPList", "Id": 527 }, { - "Rank": 1, "Command": "Get-PnPListDesign", + "Rank": 1, "CommandName": "Get-PnPListDesign", "Id": 528 }, { - "Rank": 2, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2, "CommandName": "Get-PnPListDesign", "Id": 529 }, { - "Rank": 3, "Command": "Get-PnPListDesign -Identity ListEvent", + "Rank": 3, "CommandName": "Get-PnPListDesign", "Id": 530 }, { - "Rank": 1, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "Rank": 1, "CommandName": "Get-PnPListInformationRightsManagement", "Id": 531 }, { - "Rank": 1, "Command": "Get-PnPListItem -List Tasks", + "Rank": 1, "CommandName": "Get-PnPListItem", "Id": 532 }, { - "Rank": 2, "Command": "Get-PnPListItem -List Tasks -Id 1", + "Rank": 2, "CommandName": "Get-PnPListItem", "Id": 533 }, { - "Rank": 3, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "Rank": 3, "CommandName": "Get-PnPListItem", "Id": 534 }, { - "Rank": 4, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "Rank": 4, "CommandName": "Get-PnPListItem", "Id": 535 }, { - "Rank": 5, "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "Rank": 5, "CommandName": "Get-PnPListItem", "Id": 536 }, { - "Rank": 6, "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "Rank": 6, "CommandName": "Get-PnPListItem", "Id": 537 }, { - "Rank": 7, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", + "Rank": 7, "CommandName": "Get-PnPListItem", "Id": 538 }, { - "Rank": 8, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "Rank": 8, "CommandName": "Get-PnPListItem", "Id": 539 }, { - "Rank": 9, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "Rank": 9, "CommandName": "Get-PnPListItem", "Id": 540 }, { - "Rank": 1, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", + "Rank": 1, "CommandName": "Get-PnPListItemAttachment", "Id": 541 }, { - "Rank": 2, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "Rank": 2, "CommandName": "Get-PnPListItemAttachment", "Id": 542 }, { - "Rank": 1, "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "Rank": 1, "CommandName": "Get-PnPListItemComment", "Id": 543 }, { - "Rank": 1, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "Rank": 1, "CommandName": "Get-PnPListItemPermission", "Id": 544 }, { - "Rank": 1, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "Rank": 1, "CommandName": "Get-PnPListItemVersion", "Id": 545 }, { - "Rank": 1, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "Rank": 1, "CommandName": "Get-PnPListPermissions", "Id": 546 }, { - "Rank": 2, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "Rank": 2, "CommandName": "Get-PnPListPermissions", "Id": 547 }, { - "Rank": 1, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "Rank": 1, "CommandName": "Get-PnPListRecordDeclaration", "Id": 548 }, { - "Rank": 1, "Command": "Get-PnPMasterPage", + "Rank": 1, "CommandName": "Get-PnPMasterPage", "Id": 549 }, { - "Rank": 1, "Command": "Get-PnPMessageCenterAnnouncement", + "Rank": 1, "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 550 }, { - "Rank": 2, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "Rank": 2, "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 551 }, { - "Rank": 1, "Command": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 552 }, { - "Rank": 2, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 553 }, { - "Rank": 1, "Command": "Get-PnPMicrosoft365Group", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365Group", "Id": 554 }, { - "Rank": 2, "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365Group", "Id": 555 }, { - "Rank": 3, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365Group", "Id": 556 }, { - "Rank": 4, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "Rank": 4, "CommandName": "Get-PnPMicrosoft365Group", "Id": 557 }, { - "Rank": 5, "Command": "Get-PnPMicrosoft365Group -Identity $group", + "Rank": 5, "CommandName": "Get-PnPMicrosoft365Group", "Id": 558 }, { - "Rank": 6, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "Rank": 6, "CommandName": "Get-PnPMicrosoft365Group", "Id": 559 }, { - "Rank": 1, "Command": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 560 }, { - "Rank": 2, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 561 }, { - "Rank": 3, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 562 }, { - "Rank": 1, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 563 }, { - "Rank": 2, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 564 }, { - "Rank": 3, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 565 }, { - "Rank": 1, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 566 }, { - "Rank": 2, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 567 }, { - "Rank": 1, "Command": "Get-PnPMicrosoft365GroupSettings", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 568 }, { - "Rank": 2, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 569 }, { - "Rank": 1, "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 570 }, { - "Rank": 2, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 571 }, { - "Rank": 1, "Command": "Get-PnPMicrosoft365GroupTeam", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 572 }, { - "Rank": 2, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 573 }, { - "Rank": 3, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 574 }, { - "Rank": 1, "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 575 }, { - "Rank": 2, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 576 }, { - "Rank": 3, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 577 }, { - "Rank": 1, "Command": "Get-PnPNavigationNode", + "Rank": 1, "CommandName": "Get-PnPNavigationNode", "Id": 578 }, { - "Rank": 2, "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "Rank": 2, "CommandName": "Get-PnPNavigationNode", "Id": 579 }, { - "Rank": 3, "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "Rank": 3, "CommandName": "Get-PnPNavigationNode", "Id": 580 }, { - "Rank": 1, "Command": "Get-PnPOrgAssetsLibrary", + "Rank": 1, "CommandName": "Get-PnPOrgAssetsLibrary", "Id": 581 }, { - "Rank": 1, "Command": "Get-PnPOrgNewsSite", + "Rank": 1, "CommandName": "Get-PnPOrgNewsSite", "Id": 582 }, { - "Rank": 1, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "Rank": 1, "CommandName": "Get-PnPPage", "Id": 583 }, { - "Rank": 2, "Command": "Get-PnPPage \"MyPage\"", + "Rank": 2, "CommandName": "Get-PnPPage", "Id": 584 }, { - "Rank": 3, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "Rank": 3, "CommandName": "Get-PnPPage", "Id": 585 }, { - "Rank": 4, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "Rank": 4, "CommandName": "Get-PnPPage", "Id": 586 }, { - "Rank": 1, "Command": "Get-PnPPageComponent -Page Home", + "Rank": 1, "CommandName": "Get-PnPPageComponent", "Id": 587 }, { - "Rank": 2, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 2, "CommandName": "Get-PnPPageComponent", "Id": 588 }, { - "Rank": 3, "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "Rank": 3, "CommandName": "Get-PnPPageComponent", "Id": 589 }, { - "Rank": 1, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "Rank": 1, "CommandName": "Get-PnPPlannerBucket", "Id": 590 }, { - "Rank": 1, "Command": "Get-PnPPlannerConfiguration", + "Rank": 1, "CommandName": "Get-PnPPlannerConfiguration", "Id": 591 }, { - "Rank": 1, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "Rank": 1, "CommandName": "Get-PnPPlannerPlan", "Id": 592 }, { - "Rank": 2, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "Rank": 2, "CommandName": "Get-PnPPlannerPlan", "Id": 593 }, { - "Rank": 3, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "Rank": 3, "CommandName": "Get-PnPPlannerPlan", "Id": 594 }, { - "Rank": 1, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Rank": 1, "CommandName": "Get-PnPPlannerRosterMember", "Id": 595 }, { - "Rank": 1, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "Rank": 1, "CommandName": "Get-PnPPlannerRosterPlan", "Id": 596 }, { - "Rank": 2, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 2, "CommandName": "Get-PnPPlannerRosterPlan", "Id": 597 }, { - "Rank": 1, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "Rank": 1, "CommandName": "Get-PnPPlannerTask", "Id": 598 }, { - "Rank": 2, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Rank": 2, "CommandName": "Get-PnPPlannerTask", "Id": 599 }, { - "Rank": 3, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Rank": 3, "CommandName": "Get-PnPPlannerTask", "Id": 600 }, { - "Rank": 1, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Get-PnPPlannerUserPolicy", "Id": 601 }, { - "Rank": 1, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "Rank": 1, "CommandName": "Get-PnPPowerPlatformConnector", "Id": 602 }, { - "Rank": 1, "Command": "Get-PnPPowerPlatformEnvironment", + "Rank": 1, "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 603 }, { - "Rank": 2, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "Rank": 2, "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 604 }, { - "Rank": 3, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "Rank": 3, "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 605 }, { - "Rank": 1, "Command": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1, "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Id": 606 }, { - "Rank": 1, "Command": "Get-PnPPropertyBag", + "Rank": 1, "CommandName": "Get-PnPPropertyBag", "Id": 607 }, { - "Rank": 2, "Command": "Get-PnPPropertyBag -Key MyKey", + "Rank": 2, "CommandName": "Get-PnPPropertyBag", "Id": 608 }, { - "Rank": 3, "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "Rank": 3, "CommandName": "Get-PnPPropertyBag", "Id": 609 }, { - "Rank": 4, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "Rank": 4, "CommandName": "Get-PnPPropertyBag", "Id": 610 }, { - "Rank": 5, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "Rank": 5, "CommandName": "Get-PnPPropertyBag", "Id": 611 }, { - "Rank": 1, "Command": "Get-PnPPublishingImageRendition", + "Rank": 1, "CommandName": "Get-PnPPublishingImageRendition", "Id": 612 }, { - "Rank": 2, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "Rank": 2, "CommandName": "Get-PnPPublishingImageRendition", "Id": 613 }, { - "Rank": 3, "Command": "Get-PnPPublishingImageRendition -Identity 2", + "Rank": 3, "CommandName": "Get-PnPPublishingImageRendition", "Id": 614 }, { - "Rank": 1, "Command": "Get-PnPRecycleBinItem", + "Rank": 1, "CommandName": "Get-PnPRecycleBinItem", "Id": 615 }, { - "Rank": 2, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "Rank": 2, "CommandName": "Get-PnPRecycleBinItem", "Id": 616 }, { - "Rank": 3, "Command": "Get-PnPRecycleBinItem -FirstStage", + "Rank": 3, "CommandName": "Get-PnPRecycleBinItem", "Id": 617 }, { - "Rank": 4, "Command": "Get-PnPRecycleBinItem -SecondStage", + "Rank": 4, "CommandName": "Get-PnPRecycleBinItem", "Id": 618 }, { - "Rank": 5, "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "Rank": 5, "CommandName": "Get-PnPRecycleBinItem", "Id": 619 }, { - "Rank": 1, "Command": "Get-PnPRequestAccessEmails", + "Rank": 1, "CommandName": "Get-PnPRequestAccessEmails", "Id": 620 }, { - "Rank": 1, "Command": "Get-PnPRetentionLabel", + "Rank": 1, "CommandName": "Get-PnPRetentionLabel", "Id": 621 }, { - "Rank": 2, "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "Rank": 2, "CommandName": "Get-PnPRetentionLabel", "Id": 622 }, { - "Rank": 1, "Command": "Get-PnPRoleDefinition", + "Rank": 1, "CommandName": "Get-PnPRoleDefinition", "Id": 623 }, { - "Rank": 2, "Command": "Get-PnPRoleDefinition -Identity Read", + "Rank": 2, "CommandName": "Get-PnPRoleDefinition", "Id": 624 }, { - "Rank": 3, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "Rank": 3, "CommandName": "Get-PnPRoleDefinition", "Id": 625 }, { - "Rank": 1, "Command": "Get-PnPSearchConfiguration", + "Rank": 1, "CommandName": "Get-PnPSearchConfiguration", "Id": 626 }, { - "Rank": 2, "Command": "Get-PnPSearchConfiguration -Scope Site", + "Rank": 2, "CommandName": "Get-PnPSearchConfiguration", "Id": 627 }, { - "Rank": 3, "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "Rank": 3, "CommandName": "Get-PnPSearchConfiguration", "Id": 628 }, { - "Rank": 4, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4, "CommandName": "Get-PnPSearchConfiguration", "Id": 629 }, { - "Rank": 5, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "Rank": 5, "CommandName": "Get-PnPSearchConfiguration", "Id": 630 }, { - "Rank": 6, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "Rank": 6, "CommandName": "Get-PnPSearchConfiguration", "Id": 631 }, { - "Rank": 7, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "Rank": 7, "CommandName": "Get-PnPSearchConfiguration", "Id": 632 }, { - "Rank": 8, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "Rank": 8, "CommandName": "Get-PnPSearchConfiguration", "Id": 633 }, { - "Rank": 1, "Command": "Get-PnPSearchCrawlLog", + "Rank": 1, "CommandName": "Get-PnPSearchCrawlLog", "Id": 634 }, { - "Rank": 2, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "Rank": 2, "CommandName": "Get-PnPSearchCrawlLog", "Id": 635 }, { - "Rank": 3, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "Rank": 3, "CommandName": "Get-PnPSearchCrawlLog", "Id": 636 }, { - "Rank": 4, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "Rank": 4, "CommandName": "Get-PnPSearchCrawlLog", "Id": 637 }, { - "Rank": 5, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "Rank": 5, "CommandName": "Get-PnPSearchCrawlLog", "Id": 638 }, { - "Rank": 6, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "Rank": 6, "CommandName": "Get-PnPSearchCrawlLog", "Id": 639 }, { - "Rank": 7, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "Rank": 7, "CommandName": "Get-PnPSearchCrawlLog", "Id": 640 }, { - "Rank": 1, "Command": "Get-PnPSearchSettings", + "Rank": 1, "CommandName": "Get-PnPSearchSettings", "Id": 641 }, { - "Rank": 1, "Command": "Get-PnPServiceCurrentHealth", + "Rank": 1, "CommandName": "Get-PnPServiceCurrentHealth", "Id": 642 }, { - "Rank": 2, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "Rank": 2, "CommandName": "Get-PnPServiceCurrentHealth", "Id": 643 }, { - "Rank": 1, "Command": "Get-PnPServiceHealthIssue", + "Rank": 1, "CommandName": "Get-PnPServiceHealthIssue", "Id": 644 }, { - "Rank": 2, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "Rank": 2, "CommandName": "Get-PnPServiceHealthIssue", "Id": 645 }, { - "Rank": 1, "Command": "Get-PnPSharePointAddIn", + "Rank": 1, "CommandName": "Get-PnPSharePointAddIn", "Id": 646 }, { - "Rank": 2, "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "Rank": 2, "CommandName": "Get-PnPSharePointAddIn", "Id": 647 }, { - "Rank": 1, "Command": "Get-PnPSharingForNonOwnersOfSite", + "Rank": 1, "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Id": 648 }, { - "Rank": 1, "Command": "Get-PnPSite", + "Rank": 1, "CommandName": "Get-PnPSite", "Id": 649 }, { - "Rank": 2, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "Rank": 2, "CommandName": "Get-PnPSite", "Id": 650 }, { - "Rank": 1, "Command": "Get-PnPSiteClosure", + "Rank": 1, "CommandName": "Get-PnPSiteClosure", "Id": 651 }, { - "Rank": 1, "Command": "Get-PnPSiteCollectionAdmin", + "Rank": 1, "CommandName": "Get-PnPSiteCollectionAdmin", "Id": 652 }, { - "Rank": 1, "Command": "Get-PnPSiteCollectionAppCatalog", + "Rank": 1, "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 653 }, { - "Rank": 2, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "Rank": 2, "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 654 }, { - "Rank": 3, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "Rank": 3, "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 655 }, { - "Rank": 1, "Command": "Get-PnPSiteCollectionTermStore", + "Rank": 1, "CommandName": "Get-PnPSiteCollectionTermStore", "Id": 656 }, { - "Rank": 1, "Command": "Get-PnPSiteDesign", + "Rank": 1, "CommandName": "Get-PnPSiteDesign", "Id": 657 }, { - "Rank": 2, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2, "CommandName": "Get-PnPSiteDesign", "Id": 658 }, { - "Rank": 1, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Get-PnPSiteDesignRights", "Id": 659 }, { - "Rank": 1, "Command": "Get-PnPSiteDesignRun", + "Rank": 1, "CommandName": "Get-PnPSiteDesignRun", "Id": 660 }, { - "Rank": 2, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "Rank": 2, "CommandName": "Get-PnPSiteDesignRun", "Id": 661 }, { - "Rank": 1, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "Rank": 1, "CommandName": "Get-PnPSiteDesignTask", "Id": 662 }, { - "Rank": 2, "Command": "Get-PnPSiteDesignTask", + "Rank": 2, "CommandName": "Get-PnPSiteDesignTask", "Id": 663 }, { - "Rank": 3, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Rank": 3, "CommandName": "Get-PnPSiteDesignTask", "Id": 664 }, { - "Rank": 1, "Command": "Get-PnPSiteGroup", + "Rank": 1, "CommandName": "Get-PnPSiteGroup", "Id": 665 }, { - "Rank": 2, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Rank": 2, "CommandName": "Get-PnPSiteGroup", "Id": 666 }, { - "Rank": 3, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "Rank": 3, "CommandName": "Get-PnPSiteGroup", "Id": 667 }, { - "Rank": 4, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Rank": 4, "CommandName": "Get-PnPSiteGroup", "Id": 668 }, { - "Rank": 1, "Command": "Get-PnPSitePolicy", + "Rank": 1, "CommandName": "Get-PnPSitePolicy", "Id": 669 }, { - "Rank": 2, "Command": "Get-PnPSitePolicy -AllAvailable", + "Rank": 2, "CommandName": "Get-PnPSitePolicy", "Id": 670 }, { - "Rank": 3, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "Rank": 3, "CommandName": "Get-PnPSitePolicy", "Id": 671 }, { - "Rank": 1, "Command": "Get-PnPSiteScript", + "Rank": 1, "CommandName": "Get-PnPSiteScript", "Id": 672 }, { - "Rank": 2, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2, "CommandName": "Get-PnPSiteScript", "Id": 673 }, { - "Rank": 1, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "Rank": 1, "CommandName": "Get-PnPSiteScriptFromList", "Id": 674 }, { - "Rank": 2, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "Rank": 2, "CommandName": "Get-PnPSiteScriptFromList", "Id": 675 }, { - "Rank": 3, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPSiteScriptFromList", "Id": 676 }, { - "Rank": 1, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "Rank": 1, "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 677 }, { - "Rank": 2, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "Rank": 2, "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 678 }, { - "Rank": 3, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "Rank": 3, "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 679 }, { - "Rank": 4, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "Rank": 4, "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 680 }, { - "Rank": 5, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "Rank": 5, "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 681 }, { - "Rank": 6, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "Rank": 6, "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 682 }, { - "Rank": 1, "Command": "Get-PnPSiteSearchQueryResults", + "Rank": 1, "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 683 }, { - "Rank": 2, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "Rank": 2, "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 684 }, { - "Rank": 3, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "Rank": 3, "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 685 }, { - "Rank": 4, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "Rank": 4, "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 686 }, { - "Rank": 5, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "Rank": 5, "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 687 }, { - "Rank": 6, "Command": "Get-PnPSiteSearchQueryResults -All", + "Rank": 6, "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 688 }, { - "Rank": 1, "Command": "Get-PnPSiteSensitivityLabel", + "Rank": 1, "CommandName": "Get-PnPSiteSensitivityLabel", "Id": 689 }, { - "Rank": 1, "Command": "Get-PnPSiteTemplate -Out template.pnp", + "Rank": 1, "CommandName": "Get-PnPSiteTemplate", "Id": 690 }, { - "Rank": 2, "Command": "Get-PnPSiteTemplate -Out template.xml", + "Rank": 2, "CommandName": "Get-PnPSiteTemplate", "Id": 691 }, { - "Rank": 3, "Command": "Get-PnPSiteTemplate -Out template.md", + "Rank": 3, "CommandName": "Get-PnPSiteTemplate", "Id": 692 }, { - "Rank": 4, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "Rank": 4, "CommandName": "Get-PnPSiteTemplate", "Id": 693 }, { - "Rank": 5, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "Rank": 5, "CommandName": "Get-PnPSiteTemplate", "Id": 694 }, { - "Rank": 6, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "Rank": 6, "CommandName": "Get-PnPSiteTemplate", "Id": 695 }, { - "Rank": 7, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "Rank": 7, "CommandName": "Get-PnPSiteTemplate", "Id": 696 }, { - "Rank": 8, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "Rank": 8, "CommandName": "Get-PnPSiteTemplate", "Id": 697 }, { - "Rank": 9, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "Rank": 9, "CommandName": "Get-PnPSiteTemplate", "Id": 698 }, { - "Rank": 10, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "Rank": 10, "CommandName": "Get-PnPSiteTemplate", "Id": 699 }, { - "Rank": 11, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "Rank": 11, "CommandName": "Get-PnPSiteTemplate", "Id": 700 }, { - "Rank": 12, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "Rank": 12, "CommandName": "Get-PnPSiteTemplate", "Id": 701 }, { - "Rank": 13, "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", "Id": 702 }, { - "Rank": 14, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "Rank": 14, "CommandName": "Get-PnPSiteTemplate", "Id": 703 }, { - "Rank": 1, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Rank": 1, "CommandName": "Get-PnPSiteUserInvitations", "Id": 704 }, { - "Rank": 1, "Command": "Get-PnPSiteVersionPolicy", + "Rank": 1, "CommandName": "Get-PnPSiteVersionPolicy", "Id": 705 }, { - "Rank": 1, "Command": "Get-PnPStorageEntity", + "Rank": 1, "CommandName": "Get-PnPStorageEntity", "Id": 706 }, { - "Rank": 2, "Command": "Get-PnPStorageEntity -Key MyKey", + "Rank": 2, "CommandName": "Get-PnPStorageEntity", "Id": 707 }, { - "Rank": 3, "Command": "Get-PnPStorageEntity -Scope Site", + "Rank": 3, "CommandName": "Get-PnPStorageEntity", "Id": 708 }, { - "Rank": 4, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "Rank": 4, "CommandName": "Get-PnPStorageEntity", "Id": 709 }, { - "Rank": 1, "Command": "Get-PnPStoredCredential -Name O365", + "Rank": 1, "CommandName": "Get-PnPStoredCredential", "Id": 710 }, { - "Rank": 1, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Id": 711 }, { - "Rank": 1, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Id": 712 }, { - "Rank": 1, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "Rank": 1, "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Id": 713 }, { - "Rank": 1, "Command": "Get-PnPSubWeb", + "Rank": 1, "CommandName": "Get-PnPSubWeb", "Id": 714 }, { - "Rank": 2, "Command": "Get-PnPSubWeb -Recurse", + "Rank": 2, "CommandName": "Get-PnPSubWeb", "Id": 715 }, { - "Rank": 3, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "Rank": 3, "CommandName": "Get-PnPSubWeb", "Id": 716 }, { - "Rank": 4, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "Rank": 4, "CommandName": "Get-PnPSubWeb", "Id": 717 }, { - "Rank": 5, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "Rank": 5, "CommandName": "Get-PnPSubWeb", "Id": 718 }, { - "Rank": 1, "Command": "Get-PnPSyntexModel", + "Rank": 1, "CommandName": "Get-PnPSyntexModel", "Id": 719 }, { - "Rank": 2, "Command": "Get-PnPSyntexModel -Identity 1", + "Rank": 2, "CommandName": "Get-PnPSyntexModel", "Id": 720 }, { - "Rank": 3, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "Rank": 3, "CommandName": "Get-PnPSyntexModel", "Id": 721 }, { - "Rank": 1, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "Rank": 1, "CommandName": "Get-PnPSyntexModelPublication", "Id": 722 }, { - "Rank": 1, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "Rank": 1, "CommandName": "Get-PnPTaxonomyItem", "Id": 723 }, { - "Rank": 1, "Command": "Get-PnPTeamsApp", + "Rank": 1, "CommandName": "Get-PnPTeamsApp", "Id": 724 }, { - "Rank": 2, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "Rank": 2, "CommandName": "Get-PnPTeamsApp", "Id": 725 }, { - "Rank": 3, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "Rank": 3, "CommandName": "Get-PnPTeamsApp", "Id": 726 }, { - "Rank": 1, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "Rank": 1, "CommandName": "Get-PnPTeamsChannel", "Id": 727 }, { - "Rank": 2, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "Rank": 2, "CommandName": "Get-PnPTeamsChannel", "Id": 728 }, { - "Rank": 3, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Rank": 3, "CommandName": "Get-PnPTeamsChannel", "Id": 729 }, { - "Rank": 1, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "Rank": 1, "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 730 }, { - "Rank": 2, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Rank": 2, "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 731 }, { - "Rank": 1, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessage", "Id": 732 }, { - "Rank": 2, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessage", "Id": 733 }, { - "Rank": 1, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 734 }, { - "Rank": 2, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 735 }, { - "Rank": 1, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "Rank": 1, "CommandName": "Get-PnPTeamsChannelUser", "Id": 736 }, { - "Rank": 2, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "Rank": 2, "CommandName": "Get-PnPTeamsChannelUser", "Id": 737 }, { - "Rank": 3, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", + "Rank": 3, "CommandName": "Get-PnPTeamsChannelUser", "Id": 738 }, { - "Rank": 4, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 4, "CommandName": "Get-PnPTeamsChannelUser", "Id": 739 }, { - "Rank": 1, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "Rank": 1, "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 740 }, { - "Rank": 2, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "Rank": 2, "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 741 }, { - "Rank": 1, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "Rank": 1, "CommandName": "Get-PnPTeamsTab", "Id": 742 }, { - "Rank": 2, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "Rank": 2, "CommandName": "Get-PnPTeamsTab", "Id": 743 }, { - "Rank": 3, "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", "Id": 744 }, { - "Rank": 4, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "Rank": 4, "CommandName": "Get-PnPTeamsTab", "Id": 745 }, { - "Rank": 5, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "Rank": 5, "CommandName": "Get-PnPTeamsTab", "Id": 746 }, { - "Rank": 1, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Rank": 1, "CommandName": "Get-PnPTeamsTag", "Id": 747 }, { - "Rank": 2, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Rank": 2, "CommandName": "Get-PnPTeamsTag", "Id": 748 }, { - "Rank": 1, "Command": "Get-PnPTeamsTeam", + "Rank": 1, "CommandName": "Get-PnPTeamsTeam", "Id": 749 }, { - "Rank": 2, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "Rank": 2, "CommandName": "Get-PnPTeamsTeam", "Id": 750 }, { - "Rank": 3, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "Rank": 3, "CommandName": "Get-PnPTeamsTeam", "Id": 751 }, { - "Rank": 4, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "Rank": 4, "CommandName": "Get-PnPTeamsTeam", "Id": 752 }, { - "Rank": 5, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "Rank": 5, "CommandName": "Get-PnPTeamsTeam", "Id": 753 }, { - "Rank": 1, "Command": "Get-PnPTeamsUser -Team MyTeam", + "Rank": 1, "CommandName": "Get-PnPTeamsUser", "Id": 754 }, { - "Rank": 2, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "Rank": 2, "CommandName": "Get-PnPTeamsUser", "Id": 755 }, { - "Rank": 3, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "Rank": 3, "CommandName": "Get-PnPTeamsUser", "Id": 756 }, { - "Rank": 4, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "Rank": 4, "CommandName": "Get-PnPTeamsUser", "Id": 757 }, { - "Rank": 1, "Command": "Get-PnPTemporarilyDisableAppBar", + "Rank": 1, "CommandName": "Get-PnPTemporarilyDisableAppBar", "Id": 758 }, { - "Rank": 1, "Command": "Get-PnPTenant", + "Rank": 1, "CommandName": "Get-PnPTenant", "Id": 759 }, { - "Rank": 1, "Command": "Get-PnPTenantAppCatalogUrl", + "Rank": 1, "CommandName": "Get-PnPTenantAppCatalogUrl", "Id": 760 }, { - "Rank": 1, "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "Rank": 1, "CommandName": "Get-PnPTenantCdnEnabled", "Id": 761 }, { - "Rank": 1, "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "Rank": 1, "CommandName": "Get-PnPTenantCdnOrigin", "Id": 762 }, { - "Rank": 1, "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "Rank": 1, "CommandName": "Get-PnPTenantCdnPolicies", "Id": 763 }, { - "Rank": 1, "Command": "Get-PnPTenantDeletedSite", + "Rank": 1, "CommandName": "Get-PnPTenantDeletedSite", "Id": 764 }, { - "Rank": 2, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 2, "CommandName": "Get-PnPTenantDeletedSite", "Id": 765 }, { - "Rank": 3, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "Rank": 3, "CommandName": "Get-PnPTenantDeletedSite", "Id": 766 }, { - "Rank": 4, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "Rank": 4, "CommandName": "Get-PnPTenantDeletedSite", "Id": 767 }, { - "Rank": 1, "Command": "Get-PnPTenantId", + "Rank": 1, "CommandName": "Get-PnPTenantId", "Id": 768 }, { - "Rank": 2, "Command": "Get-PnPTenantId contoso", + "Rank": 2, "CommandName": "Get-PnPTenantId", "Id": 769 }, { - "Rank": 3, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "Rank": 3, "CommandName": "Get-PnPTenantId", "Id": 770 }, { - "Rank": 4, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "Rank": 4, "CommandName": "Get-PnPTenantId", "Id": 771 }, { - "Rank": 1, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "Rank": 1, "CommandName": "Get-PnPTenantInfo", "Id": 772 }, { - "Rank": 2, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "Rank": 2, "CommandName": "Get-PnPTenantInfo", "Id": 773 }, { - "Rank": 3, "Command": "Get-PnPTenantInfo", + "Rank": 3, "CommandName": "Get-PnPTenantInfo", "Id": 774 }, { - "Rank": 4, "Command": "Get-PnPTenantInfo -CurrentTenant", + "Rank": 4, "CommandName": "Get-PnPTenantInfo", "Id": 775 }, { - "Rank": 1, "Command": "Get-PnPTenantInstance", + "Rank": 1, "CommandName": "Get-PnPTenantInstance", "Id": 776 }, { - "Rank": 1, "Command": "Get-PnPTenantRecycleBinItem", + "Rank": 1, "CommandName": "Get-PnPTenantRecycleBinItem", "Id": 777 }, { - "Rank": 1, "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "Rank": 1, "CommandName": "Get-PnPTenantSequence", "Id": 778 }, { - "Rank": 2, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "Rank": 2, "CommandName": "Get-PnPTenantSequence", "Id": 779 }, { - "Rank": 1, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "Rank": 1, "CommandName": "Get-PnPTenantSequenceSite", "Id": 780 }, { - "Rank": 2, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "Rank": 2, "CommandName": "Get-PnPTenantSequenceSite", "Id": 781 }, { - "Rank": 1, "Command": "Get-PnPTenantSite", + "Rank": 1, "CommandName": "Get-PnPTenantSite", "Id": 782 }, { - "Rank": 2, "Command": "Get-PnPTenantSite -Detailed", + "Rank": 2, "CommandName": "Get-PnPTenantSite", "Id": 783 }, { - "Rank": 3, "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "Rank": 3, "CommandName": "Get-PnPTenantSite", "Id": 784 }, { - "Rank": 4, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "Rank": 4, "CommandName": "Get-PnPTenantSite", "Id": 785 }, { - "Rank": 5, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "Rank": 5, "CommandName": "Get-PnPTenantSite", "Id": 786 }, { - "Rank": 6, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "Rank": 6, "CommandName": "Get-PnPTenantSite", "Id": 787 }, { - "Rank": 7, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "Rank": 7, "CommandName": "Get-PnPTenantSite", "Id": 788 }, { - "Rank": 8, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "Rank": 8, "CommandName": "Get-PnPTenantSite", "Id": 789 }, { - "Rank": 9, "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "Rank": 9, "CommandName": "Get-PnPTenantSite", "Id": 790 }, { - "Rank": 1, "Command": "Get-PnPTenantSyncClientRestriction", + "Rank": 1, "CommandName": "Get-PnPTenantSyncClientRestriction", "Id": 791 }, { - "Rank": 1, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "Rank": 1, "CommandName": "Get-PnPTenantTemplate", "Id": 792 }, { - "Rank": 2, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "Rank": 2, "CommandName": "Get-PnPTenantTemplate", "Id": 793 }, { - "Rank": 3, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "Rank": 3, "CommandName": "Get-PnPTenantTemplate", "Id": 794 }, { - "Rank": 1, "Command": "Get-PnPTenantTheme", + "Rank": 1, "CommandName": "Get-PnPTenantTheme", "Id": 795 }, { - "Rank": 2, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Rank": 2, "CommandName": "Get-PnPTenantTheme", "Id": 796 }, { - "Rank": 3, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "Rank": 3, "CommandName": "Get-PnPTenantTheme", "Id": 797 }, { - "Rank": 1, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 1, "CommandName": "Get-PnPTerm", "Id": 798 }, { - "Rank": 2, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, "CommandName": "Get-PnPTerm", "Id": 799 }, { - "Rank": 3, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 3, "CommandName": "Get-PnPTerm", "Id": 800 }, { - "Rank": 4, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "Rank": 4, "CommandName": "Get-PnPTerm", "Id": 801 }, { - "Rank": 5, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "Rank": 5, "CommandName": "Get-PnPTerm", "Id": 802 }, { - "Rank": 1, "Command": "Get-PnPTermGroup", + "Rank": 1, "CommandName": "Get-PnPTermGroup", "Id": 803 }, { - "Rank": 2, "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "Rank": 2, "CommandName": "Get-PnPTermGroup", "Id": 804 }, { - "Rank": 3, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "Rank": 3, "CommandName": "Get-PnPTermGroup", "Id": 805 }, { - "Rank": 1, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "Rank": 1, "CommandName": "Get-PnPTermLabel", "Id": 806 }, { - "Rank": 2, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "Rank": 2, "CommandName": "Get-PnPTermLabel", "Id": 807 }, { - "Rank": 3, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 3, "CommandName": "Get-PnPTermLabel", "Id": 808 }, { - "Rank": 1, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "Rank": 1, "CommandName": "Get-PnPTermSet", "Id": 809 }, { - "Rank": 2, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, "CommandName": "Get-PnPTermSet", "Id": 810 }, { - "Rank": 3, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "Rank": 3, "CommandName": "Get-PnPTermSet", "Id": 811 }, { - "Rank": 1, "Command": "Get-PnPTheme", + "Rank": 1, "CommandName": "Get-PnPTheme", "Id": 812 }, { - "Rank": 2, "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "Rank": 2, "CommandName": "Get-PnPTheme", "Id": 813 }, { - "Rank": 1, "Command": "Get-PnPTimeZoneId", + "Rank": 1, "CommandName": "Get-PnPTimeZoneId", "Id": 814 }, { - "Rank": 2, "Command": "Get-PnPTimeZoneId -Match Stockholm", + "Rank": 2, "CommandName": "Get-PnPTimeZoneId", "Id": 815 }, { - "Rank": 1, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "Rank": 1, "CommandName": "Get-PnPUnfurlLink", "Id": 816 }, { - "Rank": 1, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "Rank": 1, "CommandName": "Get-PnPUnifiedAuditLog", "Id": 817 }, { - "Rank": 1, "Command": "Get-PnPUPABulkImportStatus", + "Rank": 1, "CommandName": "Get-PnPUPABulkImportStatus", "Id": 818 }, { - "Rank": 2, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "Rank": 2, "CommandName": "Get-PnPUPABulkImportStatus", "Id": 819 }, { - "Rank": 3, "Command": "Get-PnPUPABulkImportStatus -JobId ", + "Rank": 3, "CommandName": "Get-PnPUPABulkImportStatus", "Id": 820 }, { - "Rank": 4, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "Rank": 4, "CommandName": "Get-PnPUPABulkImportStatus", "Id": 821 }, { - "Rank": 1, "Command": "Get-PnPUser", + "Rank": 1, "CommandName": "Get-PnPUser", "Id": 822 }, { - "Rank": 2, "Command": "Get-PnPUser -Identity 23", + "Rank": 2, "CommandName": "Get-PnPUser", "Id": 823 }, { - "Rank": 3, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "Rank": 3, "CommandName": "Get-PnPUser", "Id": 824 }, { - "Rank": 4, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "Rank": 4, "CommandName": "Get-PnPUser", "Id": 825 }, { - "Rank": 5, "Command": "Get-PnPUser -WithRightsAssigned", + "Rank": 5, "CommandName": "Get-PnPUser", "Id": 826 }, { - "Rank": 6, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "Rank": 6, "CommandName": "Get-PnPUser", "Id": 827 }, { - "Rank": 7, "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "Rank": 7, "CommandName": "Get-PnPUser", "Id": 828 }, { - "Rank": 1, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "Rank": 1, "CommandName": "Get-PnPUserOneDriveQuota", "Id": 829 }, { - "Rank": 1, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "Rank": 1, "CommandName": "Get-PnPUserProfileProperty", "Id": 830 }, { - "Rank": 2, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "Rank": 2, "CommandName": "Get-PnPUserProfileProperty", "Id": 831 }, { - "Rank": 3, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "Rank": 3, "CommandName": "Get-PnPUserProfileProperty", "Id": 832 }, { - "Rank": 1, "Command": "Get-PnPView -List \"Demo List\"", + "Rank": 1, "CommandName": "Get-PnPView", "Id": 833 }, { - "Rank": 2, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "Rank": 2, "CommandName": "Get-PnPView", "Id": 834 }, { - "Rank": 3, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "Rank": 3, "CommandName": "Get-PnPView", "Id": 835 }, { - "Rank": 1, "Command": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 1, "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 836 }, { - "Rank": 2, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Rank": 2, "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 837 }, { - "Rank": 1, "Command": "Get-PnPWeb", + "Rank": 1, "CommandName": "Get-PnPWeb", "Id": 838 }, { - "Rank": 1, "Command": "Get-PnPWebHeader", + "Rank": 1, "CommandName": "Get-PnPWebHeader", "Id": 839 }, { - "Rank": 1, "Command": "Get-PnPWebhookSubscriptions -List MyList", + "Rank": 1, "CommandName": "Get-PnPWebhookSubscriptions", "Id": 840 }, { - "Rank": 1, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "Rank": 1, "CommandName": "Get-PnPWebPart", "Id": 841 }, { - "Rank": 2, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 2, "CommandName": "Get-PnPWebPart", "Id": 842 }, { - "Rank": 1, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "Rank": 1, "CommandName": "Get-PnPWebPartProperty", "Id": 843 }, { - "Rank": 2, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "Rank": 2, "CommandName": "Get-PnPWebPartProperty", "Id": 844 }, { - "Rank": 1, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1, "CommandName": "Get-PnPWebPartXml", "Id": 845 }, { - "Rank": 1, "Command": "Get-PnPWebTemplates", + "Rank": 1, "CommandName": "Get-PnPWebTemplates", "Id": 846 }, { - "Rank": 2, "Command": "Get-PnPWebTemplates -LCID 1033", + "Rank": 2, "CommandName": "Get-PnPWebTemplates", "Id": 847 }, { - "Rank": 3, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "Rank": 3, "CommandName": "Get-PnPWebTemplates", "Id": 848 }, { - "Rank": 1, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "Rank": 1, "CommandName": "Get-PnPWikiPageContent", "Id": 849 }, { - "Rank": 1, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", + "Rank": 1, "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 850 }, { - "Rank": 2, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", + "Rank": 2, "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 851 }, { - "Rank": 1, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, "CommandName": "Grant-PnPHubSiteRights", "Id": 852 }, { - "Rank": 1, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, "CommandName": "Grant-PnPSiteDesignRights", "Id": 853 }, { - "Rank": 1, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Rank": 1, "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Id": 854 }, { - "Rank": 1, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "Rank": 1, "CommandName": "Import-PnPTaxonomy", "Id": 855 }, { - "Rank": 2, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "Rank": 2, "CommandName": "Import-PnPTaxonomy", "Id": 856 }, { - "Rank": 3, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "Rank": 3, "CommandName": "Import-PnPTaxonomy", "Id": 857 }, { - "Rank": 1, "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "Rank": 1, "CommandName": "Import-PnPTermGroupFromXml", "Id": 858 }, { - "Rank": 2, "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "Rank": 2, "CommandName": "Import-PnPTermGroupFromXml", "Id": 859 }, { - "Rank": 1, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "Rank": 1, "CommandName": "Import-PnPTermSet", "Id": 860 }, { - "Rank": 2, "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", "Id": 861 }, { - "Rank": 3, "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", "Id": 862 }, { - "Rank": 1, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Install-PnPApp", "Id": 863 }, { - "Rank": 2, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Install-PnPApp", "Id": 864 }, { - "Rank": 1, "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", + "Rank": 1, "CommandName": "Invoke-PnPGraphMethod", "Id": 865 }, { - "Rank": 2, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "Rank": 2, "CommandName": "Invoke-PnPGraphMethod", "Id": 866 }, { - "Rank": 3, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "Rank": 3, "CommandName": "Invoke-PnPGraphMethod", "Id": 867 }, { - "Rank": 4, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "Rank": 4, "CommandName": "Invoke-PnPGraphMethod", "Id": 868 }, { - "Rank": 5, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "Rank": 5, "CommandName": "Invoke-PnPGraphMethod", "Id": 869 }, { - "Rank": 6, "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", "Id": 870 }, { - "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\"", + "Rank": 7, "CommandName": "Invoke-PnPGraphMethod", "Id": 871 }, { - "Rank": 1, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Invoke-PnPListDesign", "Id": 872 }, { - "Rank": 2, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Rank": 2, "CommandName": "Invoke-PnPListDesign", "Id": 873 }, { - "Rank": 1, "Command": "Invoke-PnPQuery -RetryCount 5", + "Rank": 1, "CommandName": "Invoke-PnPQuery", "Id": 874 }, { - "Rank": 1, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Invoke-PnPSiteDesign", "Id": 875 }, { - "Rank": 2, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Rank": 2, "CommandName": "Invoke-PnPSiteDesign", "Id": 876 }, { - "Rank": 1, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "Rank": 1, "CommandName": "Invoke-PnPSiteScript", "Id": 877 }, { - "Rank": 1, "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", "Id": 878 }, { - "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", + "Rank": 2, "CommandName": "Invoke-PnPSiteSwap", "Id": 879 }, { - "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", + "Rank": 3, "CommandName": "Invoke-PnPSiteSwap", "Id": 880 }, { - "Rank": 1, "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "Rank": 1, "CommandName": "Invoke-PnPSiteTemplate", "Id": 881 }, { - "Rank": 2, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "Rank": 2, "CommandName": "Invoke-PnPSiteTemplate", "Id": 882 }, { - "Rank": 3, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Rank": 3, "CommandName": "Invoke-PnPSiteTemplate", "Id": 883 }, { - "Rank": 4, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "Rank": 4, "CommandName": "Invoke-PnPSiteTemplate", "Id": 884 }, { - "Rank": 5, "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "Rank": 5, "CommandName": "Invoke-PnPSiteTemplate", "Id": 885 }, { - "Rank": 6, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "Rank": 6, "CommandName": "Invoke-PnPSiteTemplate", "Id": 886 }, { - "Rank": 7, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "Rank": 7, "CommandName": "Invoke-PnPSiteTemplate", "Id": 887 }, { - "Rank": 8, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "Rank": 8, "CommandName": "Invoke-PnPSiteTemplate", "Id": 888 }, { - "Rank": 1, "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "Rank": 1, "CommandName": "Invoke-PnPSPRestMethod", "Id": 889 }, { - "Rank": 1, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "Rank": 1, "CommandName": "Invoke-PnPTenantTemplate", "Id": 890 }, { - "Rank": 2, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "Rank": 2, "CommandName": "Invoke-PnPTenantTemplate", "Id": 891 }, { - "Rank": 3, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Rank": 3, "CommandName": "Invoke-PnPTenantTemplate", "Id": 892 }, { - "Rank": 1, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "Rank": 1, "CommandName": "Invoke-PnPWebAction", "Id": 893 }, { - "Rank": 2, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "Rank": 2, "CommandName": "Invoke-PnPWebAction", "Id": 894 }, { - "Rank": 1, "Command": "Measure-PnPList \"Documents\"", + "Rank": 1, "CommandName": "Measure-PnPList", "Id": 895 }, { - "Rank": 2, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "Rank": 2, "CommandName": "Measure-PnPList", "Id": 896 }, { - "Rank": 1, "Command": "Measure-PnPWeb", + "Rank": 1, "CommandName": "Measure-PnPWeb", "Id": 897 }, { - "Rank": 2, "Command": "Measure-PnPWeb $web -Recursive", + "Rank": 2, "CommandName": "Measure-PnPWeb", "Id": 898 }, { - "Rank": 1, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "Rank": 1, "CommandName": "Move-PnPFile", "Id": 899 }, { - "Rank": 2, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "Rank": 2, "CommandName": "Move-PnPFile", "Id": 900 }, { - "Rank": 3, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Rank": 3, "CommandName": "Move-PnPFile", "Id": 901 }, { - "Rank": 4, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Rank": 4, "CommandName": "Move-PnPFile", "Id": 902 }, { - "Rank": 1, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "Rank": 1, "CommandName": "Move-PnPFolder", "Id": 903 }, { - "Rank": 2, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "Rank": 2, "CommandName": "Move-PnPFolder", "Id": 904 }, { - "Rank": 1, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "Rank": 1, "CommandName": "Move-PnPListItemToRecycleBin", "Id": 905 }, { - "Rank": 1, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "Rank": 1, "CommandName": "Move-PnPPageComponent", "Id": 906 }, { - "Rank": 2, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "Rank": 2, "CommandName": "Move-PnPPageComponent", "Id": 907 }, { - "Rank": 3, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "Rank": 3, "CommandName": "Move-PnPPageComponent", "Id": 908 }, { - "Rank": 4, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "Rank": 4, "CommandName": "Move-PnPPageComponent", "Id": 909 }, { - "Rank": 1, "Command": "Move-PnPRecycleBinItem", + "Rank": 1, "CommandName": "Move-PnpRecycleBinItem", "Id": 910 }, { - "Rank": 2, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "Rank": 2, "CommandName": "Move-PnpRecycleBinItem", "Id": 911 }, { - "Rank": 3, "Command": "Move-PnPRecycleBinItem -Force", + "Rank": 3, "CommandName": "Move-PnpRecycleBinItem", "Id": 912 }, { - "Rank": 1, "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", "Id": 913 }, { - "Rank": 2, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "Rank": 2, "CommandName": "Move-PnPTerm", "Id": 914 }, { - "Rank": 3, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "Rank": 3, "CommandName": "Move-PnPTerm", "Id": 915 }, { - "Rank": 1, "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", "Id": 916 }, { - "Rank": 2, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "Rank": 2, "CommandName": "Move-PnPTermSet", "Id": 917 }, { - "Rank": 1, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "Rank": 1, "CommandName": "New-PnPAzureADGroup", "Id": 918 }, { - "Rank": 2, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "Rank": 2, "CommandName": "New-PnPAzureADGroup", "Id": 919 }, { - "Rank": 3, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "Rank": 3, "CommandName": "New-PnPAzureADGroup", "Id": 920 }, { - "Rank": 1, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "Rank": 1, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 921 }, { - "Rank": 2, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "Rank": 2, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 922 }, { - "Rank": 3, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "Rank": 3, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 923 }, { - "Rank": 1, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "Rank": 1, "CommandName": "New-PnPAzureCertificate", "Id": 924 }, { - "Rank": 2, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "Rank": 2, "CommandName": "New-PnPAzureCertificate", "Id": 925 }, { - "Rank": 3, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "Rank": 3, "CommandName": "New-PnPAzureCertificate", "Id": 926 }, { - "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()", + "Rank": 1, "CommandName": "New-PnPGraphSubscription", "Id": 927 }, { - "Rank": 2, "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", "Id": 928 }, { - "Rank": 1, "Command": "New-PnPGroup -Title \"My Site Users\"", + "Rank": 1, "CommandName": "New-PnPGroup", "Id": 929 }, { - "Rank": 1, "Command": "New-PnPList -Title Announcements -Template Announcements", + "Rank": 1, "CommandName": "New-PnPList", "Id": 930 }, { - "Rank": 2, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "Rank": 2, "CommandName": "New-PnPList", "Id": 931 }, { - "Rank": 3, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "Rank": 3, "CommandName": "New-PnPList", "Id": 932 }, { - "Rank": 1, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "Rank": 1, "CommandName": "New-PnPMicrosoft365Group", "Id": 933 }, { - "Rank": 2, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "Rank": 2, "CommandName": "New-PnPMicrosoft365Group", "Id": 934 }, { - "Rank": 3, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "Rank": 3, "CommandName": "New-PnPMicrosoft365Group", "Id": 935 }, { - "Rank": 4, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "Rank": 4, "CommandName": "New-PnPMicrosoft365Group", "Id": 936 }, { - "Rank": 5, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Rank": 5, "CommandName": "New-PnPMicrosoft365Group", "Id": 937 }, { - "Rank": 6, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Rank": 6, "CommandName": "New-PnPMicrosoft365Group", "Id": 938 }, { - "Rank": 7, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", + "Rank": 7, "CommandName": "New-PnPMicrosoft365Group", "Id": 939 }, { - "Rank": 1, "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", "Id": 940 }, { - "Rank": 2, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", + "Rank": 2, "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 941 }, { - "Rank": 1, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "Rank": 1, "CommandName": "New-PnPPersonalSite", "Id": 942 }, { - "Rank": 1, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "Rank": 1, "CommandName": "New-PnPPlannerPlan", "Id": 943 }, { - "Rank": 1, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "Rank": 1, "CommandName": "New-PnPSdnProvider", "Id": 944 }, { - "Rank": 1, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Rank": 1, "CommandName": "New-PnPSite", "Id": 945 }, { - "Rank": 2, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "Rank": 2, "CommandName": "New-PnPSite", "Id": 946 }, { - "Rank": 3, "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", "Id": 947 }, { - "Rank": 4, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Rank": 4, "CommandName": "New-PnPSite", "Id": 948 }, { - "Rank": 5, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Rank": 5, "CommandName": "New-PnPSite", "Id": 949 }, { - "Rank": 6, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Rank": 6, "CommandName": "New-PnPSite", "Id": 950 }, { - "Rank": 7, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "Rank": 7, "CommandName": "New-PnPSite", "Id": 951 }, { - "Rank": 8, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "Rank": 8, "CommandName": "New-PnPSite", "Id": 952 }, { - "Rank": 9, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "Rank": 9, "CommandName": "New-PnPSite", "Id": 953 }, { - "Rank": 10, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "Rank": 10, "CommandName": "New-PnPSite", "Id": 954 }, { - "Rank": 11, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Rank": 11, "CommandName": "New-PnPSite", "Id": 955 }, { - "Rank": 12, "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", "Id": 956 }, { - "Rank": 13, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Rank": 13, "CommandName": "New-PnPSite", "Id": 957 }, { - "Rank": 14, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Rank": 14, "CommandName": "New-PnPSite", "Id": 958 }, { - "Rank": 15, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Rank": 15, "CommandName": "New-PnPSite", "Id": 959 }, { - "Rank": 16, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "Rank": 16, "CommandName": "New-PnPSite", "Id": 960 }, { - "Rank": 1, "Command": "New-PnPSiteCollectionTermStore", + "Rank": 1, "CommandName": "New-PnPSiteCollectionTermStore", "Id": 961 }, { - "Rank": 1, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "Rank": 1, "CommandName": "New-PnPSiteGroup", "Id": 962 }, { - "Rank": 2, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "Rank": 2, "CommandName": "New-PnPSiteGroup", "Id": 963 }, { - "Rank": 1, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "Rank": 1, "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 964 }, { - "Rank": 2, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "Rank": 2, "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 965 }, { - "Rank": 3, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "Rank": 3, "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 966 }, { - "Rank": 4, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "Rank": 4, "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 967 }, { - "Rank": 5, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", + "Rank": 5, "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 968 }, { - "Rank": 6, "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", "Id": 969 }, { - "Rank": 7, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "Rank": 7, "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 970 }, { - "Rank": 8, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "Rank": 8, "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 971 }, { - "Rank": 1, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "Rank": 1, "CommandName": "New-PnPTeamsApp", "Id": 972 }, { - "Rank": 1, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "Rank": 1, "CommandName": "New-PnPTeamsTeam", "Id": 973 }, { - "Rank": 2, "Command": "New-PnPTeamsTeam -GroupId $groupId", + "Rank": 2, "CommandName": "New-PnPTeamsTeam", "Id": 974 }, { - "Rank": 3, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "Rank": 3, "CommandName": "New-PnPTeamsTeam", "Id": 975 }, { - "Rank": 4, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Rank": 4, "CommandName": "New-PnPTeamsTeam", "Id": 976 }, { - "Rank": 5, "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", "Id": 977 }, { - "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\"", + "Rank": 6, "CommandName": "New-PnPTeamsTeam", "Id": 978 }, { - "Rank": 1, "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", "Id": 979 }, { - "Rank": 2, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "Rank": 2, "CommandName": "New-PnPTenantSite", "Id": 980 }, { - "Rank": 1, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "Rank": 1, "CommandName": "New-PnPTerm", "Id": 981 }, { - "Rank": 2, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 2, "CommandName": "New-PnPTerm", "Id": 982 }, { - "Rank": 1, "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "Rank": 1, "CommandName": "New-PnPTermGroup", "Id": 983 }, { - "Rank": 1, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "Rank": 1, "CommandName": "New-PnPTermLabel", "Id": 984 }, { - "Rank": 1, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "Rank": 1, "CommandName": "New-PnPTermSet", "Id": 985 }, { - "Rank": 1, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "Rank": 1, "CommandName": "New-PnPUPABulkImportJob", "Id": 986 }, { - "Rank": 2, "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", "Id": 987 }, { - "Rank": 1, "Command": "New-PnPUser -LoginName user@company.com", + "Rank": 1, "CommandName": "New-PnPUser", "Id": 988 }, { - "Rank": 1, "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", + "Rank": 1, "CommandName": "New-PnPWeb", "Id": 989 }, { - "Rank": 1, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 1, "CommandName": "Publish-PnPApp", "Id": 990 }, { - "Rank": 2, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "Rank": 2, "CommandName": "Publish-PnPApp", "Id": 991 }, { - "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", + "Rank": 1, "CommandName": "Publish-PnPCompanyApp", "Id": 992 }, { - "Rank": 1, "Command": "Publish-PnPContentType -ContentType 0x0101", + "Rank": 1, "CommandName": "Publish-PnPContentType", "Id": 993 }, { - "Rank": 1, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Rank": 1, "CommandName": "Publish-PnPSyntexModel", "Id": 994 }, { - "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", + "Rank": 2, "CommandName": "Publish-PnPSyntexModel", "Id": 995 }, { - "Rank": 1, "Command": "Read-PnPSiteTemplate -Path template.pnp", + "Rank": 1, "CommandName": "Read-PnPSiteTemplate", "Id": 996 }, { - "Rank": 2, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "Rank": 2, "CommandName": "Read-PnPSiteTemplate", "Id": 997 }, { - "Rank": 3, "Command": "Read-PnPSiteTemplate -Xml $xml", + "Rank": 3, "CommandName": "Read-PnPSiteTemplate", "Id": 998 }, { - "Rank": 1, "Command": "Read-PnPTenantTemplate -Path template.pnp", + "Rank": 1, "CommandName": "Read-PnPTenantTemplate", "Id": 999 }, { - "Rank": 1, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "Rank": 1, "CommandName": "Register-PnPAppCatalogSite", "Id": 1000 }, { - "Rank": 1, "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", "Id": 1001 }, { - "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\")", + "Rank": 2, "CommandName": "Register-PnPAzureADApp", "Id": 1002 }, { - "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\")", + "Rank": 3, "CommandName": "Register-PnPAzureADApp", "Id": 1003 }, { - "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\")", + "Rank": 4, "CommandName": "Register-PnPAzureADApp", "Id": 1004 }, { - "Rank": 5, "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", "Id": 1005 }, { - "Rank": 6, "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", "Id": 1006 }, { - "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", + "Rank": 7, "CommandName": "Register-PnPAzureADApp", "Id": 1007 }, { - "Rank": 1, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Rank": 1, "CommandName": "Register-PnPHubSite", "Id": 1008 }, { - "Rank": 2, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "Rank": 2, "CommandName": "Register-PnPHubSite", "Id": 1009 }, { - "Rank": 1, "Command": "Register-PnPManagementShellAccess", + "Rank": 1, "CommandName": "Register-PnPManagementShellAccess", "Id": 1010 }, { - "Rank": 2, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "Rank": 2, "CommandName": "Register-PnPManagementShellAccess", "Id": 1011 }, { - "Rank": 3, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "Rank": 3, "CommandName": "Register-PnPManagementShellAccess", "Id": 1012 }, { - "Rank": 1, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "Rank": 1, "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1013 }, { - "Rank": 2, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "Rank": 2, "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1014 }, { - "Rank": 1, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "Rank": 1, "CommandName": "Remove-PnPAlert", "Id": 1015 }, { - "Rank": 2, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Rank": 2, "CommandName": "Remove-PnPAlert", "Id": 1016 }, { - "Rank": 1, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Remove-PnPApp", "Id": 1017 }, { - "Rank": 2, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Remove-PnPApp", "Id": 1018 }, { - "Rank": 1, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1, "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1019 }, { - "Rank": 2, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Rank": 2, "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1020 }, { - "Rank": 1, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "Rank": 1, "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1021 }, { - "Rank": 2, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Rank": 2, "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1022 }, { - "Rank": 1, "Command": "Remove-PnPAzureADApp -Identity MyApp", + "Rank": 1, "CommandName": "Remove-PnPAzureADApp", "Id": 1023 }, { - "Rank": 2, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 2, "CommandName": "Remove-PnPAzureADApp", "Id": 1024 }, { - "Rank": 1, "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "Rank": 1, "CommandName": "Remove-PnPAzureADGroup", "Id": 1025 }, { - "Rank": 2, "Command": "Remove-PnPAzureADGroup -Identity $group", + "Rank": 2, "CommandName": "Remove-PnPAzureADGroup", "Id": 1026 }, { - "Rank": 1, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPAzureADGroupMember", "Id": 1027 }, { - "Rank": 1, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPAzureADGroupOwner", "Id": 1028 }, { - "Rank": 1, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "Rank": 1, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1029 }, { - "Rank": 2, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "Rank": 2, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1030 }, { - "Rank": 3, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 3, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1031 }, { - "Rank": 4, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 4, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1032 }, { - "Rank": 1, "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "Rank": 1, "CommandName": "Remove-PnPContentType", "Id": 1033 }, { - "Rank": 2, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "Rank": 2, "CommandName": "Remove-PnPContentType", "Id": 1034 }, { - "Rank": 1, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Rank": 1, "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1035 }, { - "Rank": 2, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Rank": 2, "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1036 }, { - "Rank": 1, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "Rank": 1, "CommandName": "Remove-PnPContentTypeFromList", "Id": 1037 }, { - "Rank": 1, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1, "CommandName": "Remove-PnPCustomAction", "Id": 1038 }, { - "Rank": 2, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Rank": 2, "CommandName": "Remove-PnPCustomAction", "Id": 1039 }, { - "Rank": 3, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "Rank": 3, "CommandName": "Remove-PnPCustomAction", "Id": 1040 }, { - "Rank": 1, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 1, "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Id": 1041 }, { - "Rank": 1, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 1, "CommandName": "Remove-PnPEventReceiver", "Id": 1042 }, { - "Rank": 2, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 2, "CommandName": "Remove-PnPEventReceiver", "Id": 1043 }, { - "Rank": 3, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "Rank": 3, "CommandName": "Remove-PnPEventReceiver", "Id": 1044 }, { - "Rank": 4, "Command": "Remove-PnPEventReceiver -List ProjectList", + "Rank": 4, "CommandName": "Remove-PnPEventReceiver", "Id": 1045 }, { - "Rank": 5, "Command": "Remove-PnPEventReceiver", + "Rank": 5, "CommandName": "Remove-PnPEventReceiver", "Id": 1046 }, { - "Rank": 6, "Command": "Remove-PnPEventReceiver -Scope Site", + "Rank": 6, "CommandName": "Remove-PnPEventReceiver", "Id": 1047 }, { - "Rank": 7, "Command": "Remove-PnPEventReceiver -Scope Web", + "Rank": 7, "CommandName": "Remove-PnPEventReceiver", "Id": 1048 }, { - "Rank": 8, "Command": "Remove-PnPEventReceiver -Scope All", + "Rank": 8, "CommandName": "Remove-PnPEventReceiver", "Id": 1049 }, { - "Rank": 1, "Command": "Remove-PnPField -Identity \"Speakers\"", + "Rank": 1, "CommandName": "Remove-PnPField", "Id": 1050 }, { - "Rank": 2, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Rank": 2, "CommandName": "Remove-PnPField", "Id": 1051 }, { - "Rank": 1, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Rank": 1, "CommandName": "Remove-PnPFieldFromContentType", "Id": 1052 }, { - "Rank": 2, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "Rank": 2, "CommandName": "Remove-PnPFieldFromContentType", "Id": 1053 }, { - "Rank": 1, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "Rank": 1, "CommandName": "Remove-PnPFile", "Id": 1054 }, { - "Rank": 2, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "Rank": 2, "CommandName": "Remove-PnPFile", "Id": 1055 }, { - "Rank": 3, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "Rank": 3, "CommandName": "Remove-PnPFile", "Id": 1056 }, { - "Rank": 1, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "Rank": 1, "CommandName": "Remove-PnPFileFromSiteTemplate", "Id": 1057 }, { - "Rank": 1, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, "CommandName": "Remove-PnPFileSharingLink", "Id": 1058 }, { - "Rank": 2, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "Rank": 2, "CommandName": "Remove-PnPFileSharingLink", "Id": 1059 }, { - "Rank": 1, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Rank": 1, "CommandName": "Remove-PnPFileVersion", "Id": 1060 }, { - "Rank": 2, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Rank": 2, "CommandName": "Remove-PnPFileVersion", "Id": 1061 }, { - "Rank": 3, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "Rank": 3, "CommandName": "Remove-PnPFileVersion", "Id": 1062 }, { - "Rank": 1, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", + "Rank": 1, "CommandName": "Remove-PnPFlowOwner", "Id": 1063 }, { - "Rank": 2, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", + "Rank": 2, "CommandName": "Remove-PnPFlowOwner", "Id": 1064 }, { - "Rank": 3, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", + "Rank": 3, "CommandName": "Remove-PnPFlowOwner", "Id": 1065 }, { - "Rank": 4, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", + "Rank": 4, "CommandName": "Remove-PnPFlowOwner", "Id": 1066 }, { - "Rank": 1, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Rank": 1, "CommandName": "Remove-PnPFolder", "Id": 1067 }, { - "Rank": 2, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "Rank": 2, "CommandName": "Remove-PnPFolder", "Id": 1068 }, { - "Rank": 1, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, "CommandName": "Remove-PnPFolderSharingLink", "Id": 1069 }, { - "Rank": 2, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "Rank": 2, "CommandName": "Remove-PnPFolderSharingLink", "Id": 1070 }, { - "Rank": 1, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "Rank": 1, "CommandName": "Remove-PnPGraphSubscription", "Id": 1071 }, { - "Rank": 1, "Command": "Remove-PnPGroup -Identity \"My Users\"", + "Rank": 1, "CommandName": "Remove-PnPGroup", "Id": 1072 }, { - "Rank": 1, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Rank": 1, "CommandName": "Remove-PnPGroupMember", "Id": 1073 }, { - "Rank": 1, "Command": "Remove-PnPHomeSite", + "Rank": 1, "CommandName": "Remove-PnPHomeSite", "Id": 1074 }, { - "Rank": 1, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "Rank": 1, "CommandName": "Remove-PnPHubSiteAssociation", "Id": 1075 }, { - "Rank": 1, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "Rank": 1, "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1076 }, { - "Rank": 2, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "Rank": 2, "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1077 }, { - "Rank": 1, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "Rank": 1, "CommandName": "Remove-PnPIndexedProperty", "Id": 1078 }, { - "Rank": 1, "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "Rank": 1, "CommandName": "Remove-PnPJavaScriptLink", "Id": 1079 }, { - "Rank": 2, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "Rank": 2, "CommandName": "Remove-PnPJavaScriptLink", "Id": 1080 }, { - "Rank": 3, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "Rank": 3, "CommandName": "Remove-PnPJavaScriptLink", "Id": 1081 }, { - "Rank": 4, "Command": "Remove-PnPJavaScriptLink -Scope Site", + "Rank": 4, "CommandName": "Remove-PnPJavaScriptLink", "Id": 1082 }, { - "Rank": 5, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "Rank": 5, "CommandName": "Remove-PnPJavaScriptLink", "Id": 1083 }, { - "Rank": 1, "Command": "Remove-PnPKnowledgeHubSite", + "Rank": 1, "CommandName": "Remove-PnPKnowledgeHubSite", "Id": 1084 }, { - "Rank": 1, "Command": "Remove-PnPList -Identity Announcements", + "Rank": 1, "CommandName": "Remove-PnPList", "Id": 1085 }, { - "Rank": 2, "Command": "Remove-PnPList -Identity Announcements -Force", + "Rank": 2, "CommandName": "Remove-PnPList", "Id": 1086 }, { - "Rank": 3, "Command": "Remove-PnPList -Identity Announcements -Recycle", + "Rank": 3, "CommandName": "Remove-PnPList", "Id": 1087 }, { - "Rank": 4, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "Rank": 4, "CommandName": "Remove-PnPList", "Id": 1088 }, { - "Rank": 1, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Remove-PnPListDesign", "Id": 1089 }, { - "Rank": 1, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "Rank": 1, "CommandName": "Remove-PnPListItem", "Id": 1090 }, { - "Rank": 2, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "Rank": 2, "CommandName": "Remove-PnPListItem", "Id": 1091 }, { - "Rank": 3, "Command": "Remove-PnPListItem -List \"Demo List\"", + "Rank": 3, "CommandName": "Remove-PnPListItem", "Id": 1092 }, { - "Rank": 1, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "Rank": 1, "CommandName": "Remove-PnPListItemAttachment", "Id": 1093 }, { - "Rank": 2, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "Rank": 2, "CommandName": "Remove-PnPListItemAttachment", "Id": 1094 }, { - "Rank": 3, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "Rank": 3, "CommandName": "Remove-PnPListItemAttachment", "Id": 1095 }, { - "Rank": 4, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "Rank": 4, "CommandName": "Remove-PnPListItemAttachment", "Id": 1096 }, { - "Rank": 5, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "Rank": 5, "CommandName": "Remove-PnPListItemAttachment", "Id": 1097 }, { - "Rank": 1, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Rank": 1, "CommandName": "Remove-PnPListItemVersion", "Id": 1098 }, { - "Rank": 2, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Rank": 2, "CommandName": "Remove-PnPListItemVersion", "Id": 1099 }, { - "Rank": 1, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1100 }, { - "Rank": 2, "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "Rank": 2, "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1101 }, { - "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupMember", "Id": 1102 }, { - "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Id": 1103 }, { - "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1104 }, { - "Rank": 2, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "Rank": 2, "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1105 }, { - "Rank": 1, "Command": "Remove-PnPNavigationNode -Identity 1032", + "Rank": 1, "CommandName": "Remove-PnPNavigationNode", "Id": 1106 }, { - "Rank": 2, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "Rank": 2, "CommandName": "Remove-PnPNavigationNode", "Id": 1107 }, { - "Rank": 3, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "Rank": 3, "CommandName": "Remove-PnPNavigationNode", "Id": 1108 }, { - "Rank": 1, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "Rank": 1, "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1109 }, { - "Rank": 2, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "Rank": 2, "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1110 }, { - "Rank": 3, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "Rank": 3, "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1111 }, { - "Rank": 1, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "Rank": 1, "CommandName": "Remove-PnPOrgNewsSite", "Id": 1112 }, { - "Rank": 1, "Command": "Remove-PnPPage -Identity \"MyPage\"", + "Rank": 1, "CommandName": "Remove-PnPPage", "Id": 1113 }, { - "Rank": 2, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "Rank": 2, "CommandName": "Remove-PnPPage", "Id": 1114 }, { - "Rank": 3, "Command": "Remove-PnPPage $page", + "Rank": 3, "CommandName": "Remove-PnPPage", "Id": 1115 }, { - "Rank": 4, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "Rank": 4, "CommandName": "Remove-PnPPage", "Id": 1116 }, { - "Rank": 1, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1, "CommandName": "Remove-PnPPageComponent", "Id": 1117 }, { - "Rank": 1, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "Rank": 1, "CommandName": "Remove-PnPPlannerBucket", "Id": 1118 }, { - "Rank": 1, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "Rank": 1, "CommandName": "Remove-PnPPlannerPlan", "Id": 1119 }, { - "Rank": 1, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Rank": 1, "CommandName": "Remove-PnPPlannerRoster", "Id": 1120 }, { - "Rank": 1, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPPlannerRosterMember", "Id": 1121 }, { - "Rank": 1, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "Rank": 1, "CommandName": "Remove-PnPPlannerTask", "Id": 1122 }, { - "Rank": 1, "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "Rank": 1, "CommandName": "Remove-PnPPropertyBagValue", "Id": 1123 }, { - "Rank": 2, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "Rank": 2, "CommandName": "Remove-PnPPropertyBagValue", "Id": 1124 }, { - "Rank": 3, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "Rank": 3, "CommandName": "Remove-PnPPropertyBagValue", "Id": 1125 }, { - "Rank": 1, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Rank": 1, "CommandName": "Remove-PnPPublishingImageRendition", "Id": 1126 }, { - "Rank": 1, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "Rank": 1, "CommandName": "Remove-PnPRoleDefinition", "Id": 1127 }, { - "Rank": 1, "Command": "Remove-PnPSdnProvider -Confirm:false", + "Rank": 1, "CommandName": "Remove-PnPSdnProvider", "Id": 1128 }, { - "Rank": 1, "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "Rank": 1, "CommandName": "Remove-PnPSearchConfiguration", "Id": 1129 }, { - "Rank": 2, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "Rank": 2, "CommandName": "Remove-PnPSearchConfiguration", "Id": 1130 }, { - "Rank": 3, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Rank": 3, "CommandName": "Remove-PnPSearchConfiguration", "Id": 1131 }, { - "Rank": 4, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4, "CommandName": "Remove-PnPSearchConfiguration", "Id": 1132 }, { - "Rank": 1, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1133 }, { - "Rank": 2, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 2, "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1134 }, { - "Rank": 1, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Id": 1135 }, { - "Rank": 1, "Command": "Remove-PnPSiteCollectionTermStore", + "Rank": 1, "CommandName": "Remove-PnPSiteCollectionTermStore", "Id": 1136 }, { - "Rank": 1, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Remove-PnPSiteDesign", "Id": 1137 }, { - "Rank": 1, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Remove-PnPSiteDesignTask", "Id": 1138 }, { - "Rank": 1, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1, "CommandName": "Remove-PnPSiteGroup", "Id": 1139 }, { - "Rank": 2, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "Rank": 2, "CommandName": "Remove-PnPSiteGroup", "Id": 1140 }, { - "Rank": 1, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Remove-PnPSiteScript", "Id": 1141 }, { - "Rank": 1, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Rank": 1, "CommandName": "Remove-PnPSiteUserInvitations", "Id": 1142 }, { - "Rank": 1, "Command": "Remove-PnPStorageEntity -Key MyKey", + "Rank": 1, "CommandName": "Remove-PnPStorageEntity", "Id": 1143 }, { - "Rank": 2, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "Rank": 2, "CommandName": "Remove-PnPStorageEntity", "Id": 1144 }, { - "Rank": 1, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "Rank": 1, "CommandName": "Remove-PnPStoredCredential", "Id": 1145 }, { - "Rank": 1, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "Rank": 1, "CommandName": "Remove-PnPTaxonomyItem", "Id": 1146 }, { - "Rank": 2, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "Rank": 2, "CommandName": "Remove-PnPTaxonomyItem", "Id": 1147 }, { - "Rank": 1, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "Rank": 1, "CommandName": "Remove-PnPTeamsApp", "Id": 1148 }, { - "Rank": 2, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "Rank": 2, "CommandName": "Remove-PnPTeamsApp", "Id": 1149 }, { - "Rank": 1, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "Rank": 1, "CommandName": "Remove-PnPTeamsChannel", "Id": 1150 }, { - "Rank": 1, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "Rank": 1, "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1151 }, { - "Rank": 2, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 2, "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1152 }, { - "Rank": 3, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "Rank": 3, "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1153 }, { - "Rank": 1, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "Rank": 1, "CommandName": "Remove-PnPTeamsTab", "Id": 1154 }, { - "Rank": 2, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "Rank": 2, "CommandName": "Remove-PnPTeamsTab", "Id": 1155 }, { - "Rank": 3, "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", "Id": 1156 }, { - "Rank": 1, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Rank": 1, "CommandName": "Remove-PnPTeamsTag", "Id": 1157 }, { - "Rank": 1, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Rank": 1, "CommandName": "Remove-PnPTeamsTeam", "Id": 1158 }, { - "Rank": 2, "Command": "Remove-PnPTeamsTeam -Identity testteam", + "Rank": 2, "CommandName": "Remove-PnPTeamsTeam", "Id": 1159 }, { - "Rank": 1, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "Rank": 1, "CommandName": "Remove-PnPTeamsUser", "Id": 1160 }, { - "Rank": 2, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 2, "CommandName": "Remove-PnPTeamsUser", "Id": 1161 }, { - "Rank": 1, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Rank": 1, "CommandName": "Remove-PnPTenantCdnOrigin", "Id": 1162 }, { - "Rank": 1, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1163 }, { - "Rank": 2, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Rank": 2, "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1164 }, { - "Rank": 1, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Remove-PnPTenantSite", "Id": 1165 }, { - "Rank": 2, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "Rank": 2, "CommandName": "Remove-PnPTenantSite", "Id": 1166 }, { - "Rank": 3, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "Rank": 3, "CommandName": "Remove-PnPTenantSite", "Id": 1167 }, { - "Rank": 1, "Command": "Remove-PnPTenantSyncClientRestriction", + "Rank": 1, "CommandName": "Remove-PnPTenantSyncClientRestriction", "Id": 1168 }, { - "Rank": 1, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Rank": 1, "CommandName": "Remove-PnPTenantTheme", "Id": 1169 }, { - "Rank": 1, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Rank": 1, "CommandName": "Remove-PnPTerm", "Id": 1170 }, { - "Rank": 2, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, "CommandName": "Remove-PnPTerm", "Id": 1171 }, { - "Rank": 1, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Rank": 1, "CommandName": "Remove-PnPTermGroup", "Id": 1172 }, { - "Rank": 2, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "Rank": 2, "CommandName": "Remove-PnPTermGroup", "Id": 1173 }, { - "Rank": 3, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "Rank": 3, "CommandName": "Remove-PnPTermGroup", "Id": 1174 }, { - "Rank": 1, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", + "Rank": 1, "CommandName": "Remove-PnPTermLabel", "Id": 1175 }, { - "Rank": 2, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, "CommandName": "Remove-PnPTermLabel", "Id": 1176 }, { - "Rank": 1, "Command": "Remove-PnPUser -Identity 23", + "Rank": 1, "CommandName": "Remove-PnPUser", "Id": 1177 }, { - "Rank": 2, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "Rank": 2, "CommandName": "Remove-PnPUser", "Id": 1178 }, { - "Rank": 3, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "Rank": 3, "CommandName": "Remove-PnPUser", "Id": 1179 }, { - "Rank": 1, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Rank": 1, "CommandName": "Remove-PnPUserInfo", "Id": 1180 }, { - "Rank": 1, "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "Rank": 1, "CommandName": "Remove-PnPUserProfile", "Id": 1181 }, { - "Rank": 1, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "Rank": 1, "CommandName": "Remove-PnPView", "Id": 1182 }, { - "Rank": 1, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Rank": 1, "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Id": 1183 }, { - "Rank": 1, "Command": "Remove-PnPWeb -Identity projectA", + "Rank": 1, "CommandName": "Remove-PnPWeb", "Id": 1184 }, { - "Rank": 2, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "Rank": 2, "CommandName": "Remove-PnPWeb", "Id": 1185 }, { - "Rank": 1, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "Rank": 1, "CommandName": "Remove-PnPWebhookSubscription", "Id": 1186 }, { - "Rank": 1, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1, "CommandName": "Remove-PnPWebPart", "Id": 1187 }, { - "Rank": 2, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "Rank": 2, "CommandName": "Remove-PnPWebPart", "Id": 1188 }, { - "Rank": 1, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "Rank": 1, "CommandName": "Remove-PnPWikiPage", "Id": 1189 }, { - "Rank": 1, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "Rank": 1, "CommandName": "Rename-PnPFile", "Id": 1190 }, { - "Rank": 2, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "Rank": 2, "CommandName": "Rename-PnPFile", "Id": 1191 }, { - "Rank": 3, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "Rank": 3, "CommandName": "Rename-PnPFile", "Id": 1192 }, { - "Rank": 1, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "Rank": 1, "CommandName": "Rename-PnPFolder", "Id": 1193 }, { - "Rank": 1, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1, "CommandName": "Repair-PnPSite", "Id": 1194 }, { - "Rank": 2, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Rank": 2, "CommandName": "Repair-PnPSite", "Id": 1195 }, { - "Rank": 1, "Command": "Request-PnPAccessToken", + "Rank": 1, "CommandName": "Request-PnPAccessToken", "Id": 1196 }, { - "Rank": 2, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "Rank": 2, "CommandName": "Request-PnPAccessToken", "Id": 1197 }, { - "Rank": 3, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "Rank": 3, "CommandName": "Request-PnPAccessToken", "Id": 1198 }, { - "Rank": 4, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "Rank": 4, "CommandName": "Request-PnPAccessToken", "Id": 1199 }, { - "Rank": 1, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "Rank": 1, "CommandName": "Request-PnPPersonalSite", "Id": 1200 }, { - "Rank": 2, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "Rank": 2, "CommandName": "Request-PnPPersonalSite", "Id": 1201 }, { - "Rank": 1, "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "Rank": 1, "CommandName": "Request-PnPReIndexList", "Id": 1202 }, { - "Rank": 1, "Command": "Request-PnPReIndexWeb", + "Rank": 1, "CommandName": "Request-PnPReIndexWeb", "Id": 1203 }, { - "Rank": 1, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "Rank": 1, "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1204 }, { - "Rank": 2, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "Rank": 2, "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1205 }, { - "Rank": 3, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "Rank": 3, "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1206 }, { - "Rank": 1, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "Rank": 1, "CommandName": "Reset-PnPFileVersion", "Id": 1207 }, { - "Rank": 2, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "Rank": 2, "CommandName": "Reset-PnPFileVersion", "Id": 1208 }, { - "Rank": 1, "Command": "Reset-PnPLabel -List \"Demo List\"", + "Rank": 1, "CommandName": "Reset-PnPLabel", "Id": 1209 }, { - "Rank": 2, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "Rank": 2, "CommandName": "Reset-PnPLabel", "Id": 1210 }, { - "Rank": 1, "Command": "Reset-PnPMicrosoft365GroupExpiration", + "Rank": 1, "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Id": 1211 }, { - "Rank": 1, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "Rank": 1, "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Id": 1212 }, { - "Rank": 1, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "Rank": 1, "CommandName": "Resolve-PnPFolder", "Id": 1213 }, { - "Rank": 1, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 1, "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Id": 1214 }, { - "Rank": 1, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Rank": 1, "CommandName": "Restore-PnPFileVersion", "Id": 1215 }, { - "Rank": 2, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "Rank": 2, "CommandName": "Restore-PnPFileVersion", "Id": 1216 }, { - "Rank": 3, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Rank": 3, "CommandName": "Restore-PnPFileVersion", "Id": 1217 }, { - "Rank": 1, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Rank": 1, "CommandName": "Restore-PnPListItemVersion", "Id": 1218 }, { - "Rank": 2, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Rank": 2, "CommandName": "Restore-PnPListItemVersion", "Id": 1219 }, { - "Rank": 1, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1, "CommandName": "Restore-PnPRecycleBinItem", "Id": 1220 }, { - "Rank": 1, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1221 }, { - "Rank": 2, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Rank": 2, "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1222 }, { - "Rank": 1, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Restore-PnPTenantSite", "Id": 1223 }, { - "Rank": 2, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Rank": 2, "CommandName": "Restore-PnPTenantSite", "Id": 1224 }, { - "Rank": 3, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "Rank": 3, "CommandName": "Restore-PnPTenantSite", "Id": 1225 }, { - "Rank": 1, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "Rank": 1, "CommandName": "Revoke-PnPAzureADAppSitePermission", "Id": 1226 }, { - "Rank": 1, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, "CommandName": "Revoke-PnPHubSiteRights", "Id": 1227 }, { - "Rank": 1, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, "CommandName": "Revoke-PnPSiteDesignRights", "Id": 1228 }, { - "Rank": 1, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Rank": 1, "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Id": 1229 }, { - "Rank": 1, "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "Rank": 1, "CommandName": "Revoke-PnPUserSession", "Id": 1230 }, { - "Rank": 1, "Command": "Save-PnPPageConversionLog", + "Rank": 1, "CommandName": "Save-PnPPageConversionLog", "Id": 1231 }, { - "Rank": 1, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "Rank": 1, "CommandName": "Save-PnPSiteTemplate", "Id": 1232 }, { - "Rank": 1, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "Rank": 1, "CommandName": "Save-PnPTenantTemplate", "Id": 1233 }, { - "Rank": 1, "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", "Id": 1234 }, { - "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", + "Rank": 2, "CommandName": "Send-PnPMail", "Id": 1235 }, { - "Rank": 3, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "Rank": 3, "CommandName": "Send-PnPMail", "Id": 1236 }, { - "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", + "Rank": 4, "CommandName": "Send-PnPMail", "Id": 1237 }, { - "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", + "Rank": 5, "CommandName": "Send-PnPMail", "Id": 1238 }, { - "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\"", + "Rank": 6, "CommandName": "Send-PnPMail", "Id": 1239 }, { - "Rank": 1, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "Rank": 1, "CommandName": "Set-PnPAdaptiveScopeProperty", "Id": 1240 }, { - "Rank": 1, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1, "CommandName": "Set-PnPApplicationCustomizer", "Id": 1241 }, { - "Rank": 2, "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", "Id": 1242 }, { - "Rank": 1, "Command": "Set-PnPAppSideLoading -On", + "Rank": 1, "CommandName": "Set-PnPAppSideLoading", "Id": 1243 }, { - "Rank": 2, "Command": "Set-PnPAppSideLoading -Off", + "Rank": 2, "CommandName": "Set-PnPAppSideLoading", "Id": 1244 }, { - "Rank": 1, "Command": "Set-PnPAuditing -EnableAll", + "Rank": 1, "CommandName": "Set-PnPAuditing", "Id": 1245 }, { - "Rank": 2, "Command": "Set-PnPAuditing -DisableAll", + "Rank": 2, "CommandName": "Set-PnPAuditing", "Id": 1246 }, { - "Rank": 3, "Command": "Set-PnPAuditing -RetentionTime 7", + "Rank": 3, "CommandName": "Set-PnPAuditing", "Id": 1247 }, { - "Rank": 4, "Command": "Set-PnPAuditing -TrimAuditLog", + "Rank": 4, "CommandName": "Set-PnPAuditing", "Id": 1248 }, { - "Rank": 5, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "Rank": 5, "CommandName": "Set-PnPAuditing", "Id": 1249 }, { - "Rank": 1, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "Rank": 1, "CommandName": "Set-PnPAvailablePageLayouts", "Id": 1250 }, { - "Rank": 1, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "Rank": 1, "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1251 }, { - "Rank": 2, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "Rank": 2, "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1252 }, { - "Rank": 1, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "Rank": 1, "CommandName": "Set-PnPAzureADGroup", "Id": 1253 }, { - "Rank": 2, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Rank": 2, "CommandName": "Set-PnPAzureADGroup", "Id": 1254 }, { - "Rank": 3, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "Rank": 3, "CommandName": "Set-PnPAzureADGroup", "Id": 1255 }, { - "Rank": 1, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "Rank": 1, "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1256 }, { - "Rank": 2, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "Rank": 2, "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1257 }, { - "Rank": 3, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "Rank": 3, "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1258 }, { - "Rank": 1, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "Rank": 1, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1259 }, { - "Rank": 2, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "Rank": 2, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1260 }, { - "Rank": 1, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "Rank": 1, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1261 }, { - "Rank": 2, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "Rank": 2, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1262 }, { - "Rank": 3, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "Rank": 3, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1263 }, { - "Rank": 4, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "Rank": 4, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1264 }, { - "Rank": 1, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Rank": 1, "CommandName": "Set-PnPContentType", "Id": 1265 }, { - "Rank": 2, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "Rank": 2, "CommandName": "Set-PnPContentType", "Id": 1266 }, { - "Rank": 3, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Rank": 3, "CommandName": "Set-PnPContentType", "Id": 1267 }, { - "Rank": 4, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Rank": 4, "CommandName": "Set-PnPContentType", "Id": 1268 }, { - "Rank": 5, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Rank": 5, "CommandName": "Set-PnPContentType", "Id": 1269 }, { - "Rank": 1, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "Rank": 1, "CommandName": "Set-PnPDefaultColumnValues", "Id": 1270 }, { - "Rank": 2, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "Rank": 2, "CommandName": "Set-PnPDefaultColumnValues", "Id": 1271 }, { - "Rank": 3, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "Rank": 3, "CommandName": "Set-PnPDefaultColumnValues", "Id": 1272 }, { - "Rank": 4, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "Rank": 4, "CommandName": "Set-PnPDefaultColumnValues", "Id": 1273 }, { - "Rank": 1, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "Rank": 1, "CommandName": "Set-PnPDefaultContentTypeToList", "Id": 1274 }, { - "Rank": 1, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "Rank": 1, "CommandName": "Set-PnPDefaultPageLayout", "Id": 1275 }, { - "Rank": 2, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "Rank": 2, "CommandName": "Set-PnPDefaultPageLayout", "Id": 1276 }, { - "Rank": 3, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "Rank": 3, "CommandName": "Set-PnPDefaultPageLayout", "Id": 1277 }, { - "Rank": 1, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "Rank": 1, "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1278 }, { - "Rank": 2, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Rank": 2, "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1279 }, { - "Rank": 3, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Rank": 3, "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1280 }, { - "Rank": 1, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "Rank": 1, "CommandName": "Set-PnPDocumentSetField", "Id": 1281 }, { - "Rank": 2, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "Rank": 2, "CommandName": "Set-PnPDocumentSetField", "Id": 1282 }, { - "Rank": 1, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "Rank": 1, "CommandName": "Set-PnPField", "Id": 1283 }, { - "Rank": 2, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "Rank": 2, "CommandName": "Set-PnPField", "Id": 1284 }, { - "Rank": 3, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "Rank": 3, "CommandName": "Set-PnPField", "Id": 1285 }, { - "Rank": 1, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "Rank": 1, "CommandName": "Set-PnPFileCheckedIn", "Id": 1286 }, { - "Rank": 2, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "Rank": 2, "CommandName": "Set-PnPFileCheckedIn", "Id": 1287 }, { - "Rank": 1, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "Rank": 1, "CommandName": "Set-PnPFileCheckedOut", "Id": 1288 }, { - "Rank": 1, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1, "CommandName": "Set-PnPFolderPermission", "Id": 1289 }, { - "Rank": 2, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2, "CommandName": "Set-PnPFolderPermission", "Id": 1290 }, { - "Rank": 3, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Rank": 3, "CommandName": "Set-PnPFolderPermission", "Id": 1291 }, { - "Rank": 1, "Command": "Set-PnPFooter -Enabled:$true", + "Rank": 1, "CommandName": "Set-PnPFooter", "Id": 1292 }, { - "Rank": 2, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "Rank": 2, "CommandName": "Set-PnPFooter", "Id": 1293 }, { - "Rank": 3, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "Rank": 3, "CommandName": "Set-PnPFooter", "Id": 1294 }, { - "Rank": 4, "Command": "Set-PnPFooter -LogoUrl \"\"", + "Rank": 4, "CommandName": "Set-PnPFooter", "Id": 1295 }, { - "Rank": 1, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "Rank": 1, "CommandName": "Set-PnPGraphSubscription", "Id": 1296 }, { - "Rank": 1, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "Rank": 1, "CommandName": "Set-PnPGroup", "Id": 1297 }, { - "Rank": 2, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "Rank": 2, "CommandName": "Set-PnPGroup", "Id": 1298 }, { - "Rank": 1, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "Rank": 1, "CommandName": "Set-PnPGroupPermissions", "Id": 1299 }, { - "Rank": 2, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "Rank": 2, "CommandName": "Set-PnPGroupPermissions", "Id": 1300 }, { - "Rank": 3, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "Rank": 3, "CommandName": "Set-PnPGroupPermissions", "Id": 1301 }, { - "Rank": 4, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "Rank": 4, "CommandName": "Set-PnPGroupPermissions", "Id": 1302 }, { - "Rank": 5, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "Rank": 5, "CommandName": "Set-PnPGroupPermissions", "Id": 1303 }, { - "Rank": 1, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "Rank": 1, "CommandName": "Set-PnPHideDefaultThemes", "Id": 1304 }, { - "Rank": 2, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "Rank": 2, "CommandName": "Set-PnPHideDefaultThemes", "Id": 1305 }, { - "Rank": 1, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "Rank": 1, "CommandName": "Set-PnPHomePage", "Id": 1306 }, { - "Rank": 2, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "Rank": 2, "CommandName": "Set-PnPHomePage", "Id": 1307 }, { - "Rank": 1, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "Rank": 1, "CommandName": "Set-PnPHomeSite", "Id": 1308 }, { - "Rank": 2, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "Rank": 2, "CommandName": "Set-PnPHomeSite", "Id": 1309 }, { - "Rank": 1, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "Rank": 1, "CommandName": "Set-PnPHubSite", "Id": 1310 }, { - "Rank": 2, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "Rank": 2, "CommandName": "Set-PnPHubSite", "Id": 1311 }, { - "Rank": 3, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "Rank": 3, "CommandName": "Set-PnPHubSite", "Id": 1312 }, { - "Rank": 4, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", + "Rank": 4, "CommandName": "Set-PnPHubSite", "Id": 1313 }, { - "Rank": 5, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "Rank": 5, "CommandName": "Set-PnPHubSite", "Id": 1314 }, { - "Rank": 6, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "Rank": 6, "CommandName": "Set-PnPHubSite", "Id": 1315 }, { - "Rank": 1, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "Rank": 1, "CommandName": "Set-PnPImageListItemColumn", "Id": 1316 }, { - "Rank": 2, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "Rank": 2, "CommandName": "Set-PnPImageListItemColumn", "Id": 1317 }, { - "Rank": 1, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "Rank": 1, "CommandName": "Set-PnPIndexedProperties", "Id": 1318 }, { - "Rank": 1, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "Rank": 1, "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1319 }, { - "Rank": 2, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "Rank": 2, "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1320 }, { - "Rank": 1, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "Rank": 1, "CommandName": "Set-PnPKnowledgeHubSite", "Id": 1321 }, { - "Rank": 1, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "Rank": 1, "CommandName": "Set-PnPLabel", "Id": 1322 }, { - "Rank": 2, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "Rank": 2, "CommandName": "Set-PnPLabel", "Id": 1323 }, { - "Rank": 1, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "Rank": 1, "CommandName": "Set-PnPList", "Id": 1324 }, { - "Rank": 2, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "Rank": 2, "CommandName": "Set-PnPList", "Id": 1325 }, { - "Rank": 3, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "Rank": 3, "CommandName": "Set-PnPList", "Id": 1326 }, { - "Rank": 4, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "Rank": 4, "CommandName": "Set-PnPList", "Id": 1327 }, { - "Rank": 5, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "Rank": 5, "CommandName": "Set-PnPList", "Id": 1328 }, { - "Rank": 6, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "Rank": 6, "CommandName": "Set-PnPList", "Id": 1329 }, { - "Rank": 7, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "Rank": 7, "CommandName": "Set-PnPList", "Id": 1330 }, { - "Rank": 8, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "Rank": 8, "CommandName": "Set-PnPList", "Id": 1331 }, { - "Rank": 9, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "Rank": 9, "CommandName": "Set-PnPList", "Id": 1332 }, { - "Rank": 10, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "Rank": 10, "CommandName": "Set-PnPList", "Id": 1333 }, { - "Rank": 11, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "Rank": 11, "CommandName": "Set-PnPList", "Id": 1334 }, { - "Rank": 1, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "Rank": 1, "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1335 }, { - "Rank": 2, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "Rank": 2, "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1336 }, { - "Rank": 1, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 1, "CommandName": "Set-PnPListItem", "Id": 1337 }, { - "Rank": 2, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 2, "CommandName": "Set-PnPListItem", "Id": 1338 }, { - "Rank": 3, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 3, "CommandName": "Set-PnPListItem", "Id": 1339 }, { - "Rank": 4, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "Rank": 4, "CommandName": "Set-PnPListItem", "Id": 1340 }, { - "Rank": 5, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "Rank": 5, "CommandName": "Set-PnPListItem", "Id": 1341 }, { - "Rank": 1, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1, "CommandName": "Set-PnPListItemAsRecord", "Id": 1342 }, { - "Rank": 2, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "Rank": 2, "CommandName": "Set-PnPListItemAsRecord", "Id": 1343 }, { - "Rank": 1, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1, "CommandName": "Set-PnPListItemPermission", "Id": 1344 }, { - "Rank": 2, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2, "CommandName": "Set-PnPListItemPermission", "Id": 1345 }, { - "Rank": 3, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Rank": 3, "CommandName": "Set-PnPListItemPermission", "Id": 1346 }, { - "Rank": 4, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "Rank": 4, "CommandName": "Set-PnPListItemPermission", "Id": 1347 }, { - "Rank": 5, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "Rank": 5, "CommandName": "Set-PnPListItemPermission", "Id": 1348 }, { - "Rank": 1, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1, "CommandName": "Set-PnPListPermission", "Id": 1349 }, { - "Rank": 2, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2, "CommandName": "Set-PnPListPermission", "Id": 1350 }, { - "Rank": 1, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "Rank": 1, "CommandName": "Set-PnPListRecordDeclaration", "Id": 1351 }, { - "Rank": 2, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "Rank": 2, "CommandName": "Set-PnPListRecordDeclaration", "Id": 1352 }, { - "Rank": 1, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Rank": 1, "CommandName": "Set-PnPMasterPage", "Id": 1353 }, { - "Rank": 2, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Rank": 2, "CommandName": "Set-PnPMasterPage", "Id": 1354 }, { - "Rank": 3, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Rank": 3, "CommandName": "Set-PnPMasterPage", "Id": 1355 }, { - "Rank": 4, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Rank": 4, "CommandName": "Set-PnPMasterPage", "Id": 1356 }, { - "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1357 }, { - "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1358 }, { - "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1359 }, { - "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1360 }, { - "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1361 }, { - "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1362 }, { - "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1363 }, { - "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1364 }, { - "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1365 }, { - "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1366 }, { - "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1367 }, { - "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1368 }, { - "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1369 }, { - "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1370 }, { - "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1371 }, { - "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1372 }, { - "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1373 }, { - "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1374 }, { - "Rank": 1, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "Rank": 1, "CommandName": "Set-PnPMicrosoft365Group", "Id": 1375 }, { - "Rank": 2, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Rank": 2, "CommandName": "Set-PnPMicrosoft365Group", "Id": 1376 }, { - "Rank": 3, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "Rank": 3, "CommandName": "Set-PnPMicrosoft365Group", "Id": 1377 }, { - "Rank": 4, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "Rank": 4, "CommandName": "Set-PnPMicrosoft365Group", "Id": 1378 }, { - "Rank": 5, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "Rank": 5, "CommandName": "Set-PnPMicrosoft365Group", "Id": 1379 }, { - "Rank": 6, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Rank": 6, "CommandName": "Set-PnPMicrosoft365Group", "Id": 1380 }, { - "Rank": 1, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "Rank": 1, "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1381 }, { - "Rank": 2, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "Rank": 2, "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1382 }, { - "Rank": 1, "Command": "Set-PnPMinimalDownloadStrategy -Off", + "Rank": 1, "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1383 }, { - "Rank": 2, "Command": "Set-PnPMinimalDownloadStrategy -On", + "Rank": 2, "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1384 }, { - "Rank": 1, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "Rank": 1, "CommandName": "Set-PnPPage", "Id": 1385 }, { - "Rank": 2, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "Rank": 2, "CommandName": "Set-PnPPage", "Id": 1386 }, { - "Rank": 3, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "Rank": 3, "CommandName": "Set-PnPPage", "Id": 1387 }, { - "Rank": 4, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "Rank": 4, "CommandName": "Set-PnPPage", "Id": 1388 }, { - "Rank": 5, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "Rank": 5, "CommandName": "Set-PnPPage", "Id": 1389 }, { - "Rank": 6, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", + "Rank": 6, "CommandName": "Set-PnPPage", "Id": 1390 }, { - "Rank": 7, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "Rank": 7, "CommandName": "Set-PnPPage", "Id": 1391 }, { - "Rank": 8, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "Rank": 8, "CommandName": "Set-PnPPage", "Id": 1392 }, { - "Rank": 9, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "Rank": 9, "CommandName": "Set-PnPPage", "Id": 1393 }, { - "Rank": 10, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Rank": 10, "CommandName": "Set-PnPPage", "Id": 1394 }, { - "Rank": 11, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "Rank": 11, "CommandName": "Set-PnPPage", "Id": 1395 }, { - "Rank": 1, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "Rank": 1, "CommandName": "Set-PnPPageTextPart", "Id": 1396 }, { - "Rank": 1, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "Rank": 1, "CommandName": "Set-PnPPageWebPart", "Id": 1397 }, { - "Rank": 2, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "Rank": 2, "CommandName": "Set-PnPPageWebPart", "Id": 1398 }, { - "Rank": 1, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "Rank": 1, "CommandName": "Set-PnPPlannerBucket", "Id": 1399 }, { - "Rank": 1, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Rank": 1, "CommandName": "Set-PnPPlannerConfiguration", "Id": 1400 }, { - "Rank": 2, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "Rank": 2, "CommandName": "Set-PnPPlannerConfiguration", "Id": 1401 }, { - "Rank": 1, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "Rank": 1, "CommandName": "Set-PnPPlannerPlan", "Id": 1402 }, { - "Rank": 1, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "Rank": 1, "CommandName": "Set-PnPPlannerTask", "Id": 1403 }, { - "Rank": 2, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "Rank": 2, "CommandName": "Set-PnPPlannerTask", "Id": 1404 }, { - "Rank": 3, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Rank": 3, "CommandName": "Set-PnPPlannerTask", "Id": 1405 }, { - "Rank": 1, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Set-PnPPlannerUserPolicy", "Id": 1406 }, { - "Rank": 1, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "Rank": 1, "CommandName": "Set-PnPPropertyBagValue", "Id": 1407 }, { - "Rank": 2, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "Rank": 2, "CommandName": "Set-PnPPropertyBagValue", "Id": 1408 }, { - "Rank": 3, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "Rank": 3, "CommandName": "Set-PnPPropertyBagValue", "Id": 1409 }, { - "Rank": 1, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "Rank": 1, "CommandName": "Set-PnPRequestAccessEmails", "Id": 1410 }, { - "Rank": 2, "Command": "Set-PnPRequestAccessEmails -Disabled", + "Rank": 2, "CommandName": "Set-PnPRequestAccessEmails", "Id": 1411 }, { - "Rank": 3, "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "Rank": 3, "CommandName": "Set-PnPRequestAccessEmails", "Id": 1412 }, { - "Rank": 1, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "Rank": 1, "CommandName": "Set-PnPRoleDefinition", "Id": 1413 }, { - "Rank": 2, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "Rank": 2, "CommandName": "Set-PnPRoleDefinition", "Id": 1414 }, { - "Rank": 3, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "Rank": 3, "CommandName": "Set-PnPRoleDefinition", "Id": 1415 }, { - "Rank": 4, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "Rank": 4, "CommandName": "Set-PnPRoleDefinition", "Id": 1416 }, { - "Rank": 1, "Command": "Set-PnPSearchConfiguration -Configuration $config", + "Rank": 1, "CommandName": "Set-PnPSearchConfiguration", "Id": 1417 }, { - "Rank": 2, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "Rank": 2, "CommandName": "Set-PnPSearchConfiguration", "Id": 1418 }, { - "Rank": 3, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Rank": 3, "CommandName": "Set-PnPSearchConfiguration", "Id": 1419 }, { - "Rank": 4, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4, "CommandName": "Set-PnPSearchConfiguration", "Id": 1420 }, { - "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", + "Rank": 1, "CommandName": "Set-PnPSearchExternalItem", "Id": 1421 }, { - "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\"", + "Rank": 2, "CommandName": "Set-PnPSearchExternalItem", "Id": 1422 }, { - "Rank": 1, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Rank": 1, "CommandName": "Set-PnPSearchSettings", "Id": 1423 }, { - "Rank": 2, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "Rank": 2, "CommandName": "Set-PnPSearchSettings", "Id": 1424 }, { - "Rank": 3, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "Rank": 3, "CommandName": "Set-PnPSearchSettings", "Id": 1425 }, { - "Rank": 4, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "Rank": 4, "CommandName": "Set-PnPSearchSettings", "Id": 1426 }, { - "Rank": 5, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "Rank": 5, "CommandName": "Set-PnPSearchSettings", "Id": 1427 }, { - "Rank": 6, "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "Rank": 6, "CommandName": "Set-PnPSearchSettings", "Id": 1428 }, { - "Rank": 7, "Command": "Set-PnPSearchSettings -SearchScope Hub", + "Rank": 7, "CommandName": "Set-PnPSearchSettings", "Id": 1429 }, { - "Rank": 1, "Command": "Set-PnPSite -Classification \"HBI\"", + "Rank": 1, "CommandName": "Set-PnPSite", "Id": 1430 }, { - "Rank": 2, "Command": "Set-PnPSite -Classification $null", + "Rank": 2, "CommandName": "Set-PnPSite", "Id": 1431 }, { - "Rank": 3, "Command": "Set-PnPSite -DisableFlows", + "Rank": 3, "CommandName": "Set-PnPSite", "Id": 1432 }, { - "Rank": 4, "Command": "Set-PnPSite -DisableFlows:$false", + "Rank": 4, "CommandName": "Set-PnPSite", "Id": 1433 }, { - "Rank": 5, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "Rank": 5, "CommandName": "Set-PnPSite", "Id": 1434 }, { - "Rank": 6, "Command": "Set-PnPSite -NoScriptSite $false", + "Rank": 6, "CommandName": "Set-PnPSite", "Id": 1435 }, { - "Rank": 7, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "Rank": 7, "CommandName": "Set-PnPSite", "Id": 1436 }, { - "Rank": 8, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "Rank": 8, "CommandName": "Set-PnPSite", "Id": 1437 }, { - "Rank": 9, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "Rank": 9, "CommandName": "Set-PnPSite", "Id": 1438 }, { - "Rank": 10, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "Rank": 10, "CommandName": "Set-PnPSite", "Id": 1439 }, { - "Rank": 11, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "Rank": 11, "CommandName": "Set-PnPSite", "Id": 1440 }, { - "Rank": 12, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "Rank": 12, "CommandName": "Set-PnPSite", "Id": 1441 }, { - "Rank": 13, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "Rank": 13, "CommandName": "Set-PnPSite", "Id": 1442 }, { - "Rank": 14, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "Rank": 14, "CommandName": "Set-PnPSite", "Id": 1443 }, { - "Rank": 15, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "Rank": 15, "CommandName": "Set-PnPSite", "Id": 1444 }, { - "Rank": 16, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "Rank": 16, "CommandName": "Set-PnPSite", "Id": 1445 }, { - "Rank": 17, "Command": "Set-PnPSite -CancelVPForExistingLibs", + "Rank": 17, "CommandName": "Set-PnPSite", "Id": 1446 }, { - "Rank": 1, "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "Rank": 1, "CommandName": "Set-PnPSiteClassification", "Id": 1447 }, { - "Rank": 1, "Command": "Set-PnPSiteClosure -State Open", + "Rank": 1, "CommandName": "Set-PnPSiteClosure", "Id": 1448 }, { - "Rank": 2, "Command": "Set-PnPSiteClosure -State Closed", + "Rank": 2, "CommandName": "Set-PnPSiteClosure", "Id": 1449 }, { - "Rank": 1, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "Rank": 1, "CommandName": "Set-PnPSiteDesign", "Id": 1450 }, { - "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\"", + "Rank": 2, "CommandName": "Set-PnPSiteDesign", "Id": 1451 }, { - "Rank": 1, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "Rank": 1, "CommandName": "Set-PnPSiteGroup", "Id": 1452 }, { - "Rank": 2, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "Rank": 2, "CommandName": "Set-PnPSiteGroup", "Id": 1453 }, { - "Rank": 1, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "Rank": 1, "CommandName": "Set-PnPSitePolicy", "Id": 1454 }, { - "Rank": 1, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Rank": 1, "CommandName": "Set-PnPSiteScript", "Id": 1455 }, { - "Rank": 1, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Rank": 1, "CommandName": "Set-PnPSiteScriptPackage", "Id": 1456 }, { - "Rank": 1, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "Rank": 1, "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1457 }, { - "Rank": 2, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "Rank": 2, "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1458 }, { - "Rank": 1, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "Rank": 1, "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1459 }, { - "Rank": 2, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "Rank": 2, "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1460 }, { - "Rank": 3, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Rank": 3, "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1461 }, { - "Rank": 4, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Rank": 4, "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1462 }, { - "Rank": 5, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Rank": 5, "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1463 }, { - "Rank": 6, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Rank": 6, "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1464 }, { - "Rank": 1, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Rank": 1, "CommandName": "Set-PnPStorageEntity", "Id": 1465 }, { - "Rank": 2, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Rank": 2, "CommandName": "Set-PnPStorageEntity", "Id": 1466 }, { - "Rank": 1, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1467 }, { - "Rank": 2, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1468 }, { - "Rank": 1, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1469 }, { - "Rank": 2, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1470 }, { - "Rank": 1, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "Rank": 1, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1471 }, { - "Rank": 2, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "Rank": 2, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1472 }, { - "Rank": 1, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "Rank": 1, "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1473 }, { - "Rank": 2, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "Rank": 2, "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1474 }, { - "Rank": 3, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "Rank": 3, "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1475 }, { - "Rank": 1, "Command": "Set-PnPTeamifyPromptHidden", + "Rank": 1, "CommandName": "Set-PnPTeamifyPromptHidden", "Id": 1476 }, { - "Rank": 1, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "Rank": 1, "CommandName": "Set-PnPTeamsChannel", "Id": 1477 }, { - "Rank": 2, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "Rank": 2, "CommandName": "Set-PnPTeamsChannel", "Id": 1478 }, { - "Rank": 1, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", + "Rank": 1, "CommandName": "Set-PnpTeamsChannelUser", "Id": 1479 }, { - "Rank": 2, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "Rank": 2, "CommandName": "Set-PnpTeamsChannelUser", "Id": 1480 }, { - "Rank": 1, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "Rank": 1, "CommandName": "Set-PnPTeamsTab", "Id": 1481 }, { - "Rank": 1, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "Rank": 1, "CommandName": "Set-PnPTeamsTag", "Id": 1482 }, { - "Rank": 1, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "Rank": 1, "CommandName": "Set-PnPTeamsTeam", "Id": 1483 }, { - "Rank": 2, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "Rank": 2, "CommandName": "Set-PnPTeamsTeam", "Id": 1484 }, { - "Rank": 3, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "Rank": 3, "CommandName": "Set-PnPTeamsTeam", "Id": 1485 }, { - "Rank": 4, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "Rank": 4, "CommandName": "Set-PnPTeamsTeam", "Id": 1486 }, { - "Rank": 1, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "Rank": 1, "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1487 }, { - "Rank": 2, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "Rank": 2, "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1488 }, { - "Rank": 3, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "Rank": 3, "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1489 }, { - "Rank": 1, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "Rank": 1, "CommandName": "Set-PnPTeamsTeamPicture", "Id": 1490 }, { - "Rank": 1, "Command": "Set-PnPTemporarilyDisableAppBar $true", + "Rank": 1, "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1491 }, { - "Rank": 2, "Command": "Set-PnPTemporarilyDisableAppBar $false", + "Rank": 2, "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1492 }, { - "Rank": 1, "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", "Id": 1493 }, { - "Rank": 2, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "Rank": 2, "CommandName": "Set-PnPTenant", "Id": 1494 }, { - "Rank": 3, "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "Rank": 3, "CommandName": "Set-PnPTenant", "Id": 1495 }, { - "Rank": 4, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "Rank": 4, "CommandName": "Set-PnPTenant", "Id": 1496 }, { - "Rank": 1, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "Rank": 1, "CommandName": "Set-PnPTenantAppCatalogUrl", "Id": 1497 }, { - "Rank": 1, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "Rank": 1, "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1498 }, { - "Rank": 2, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "Rank": 2, "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1499 }, { - "Rank": 3, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "Rank": 3, "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1500 }, { - "Rank": 1, "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", "Id": 1501 }, { - "Rank": 2, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "Rank": 2, "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1502 }, { - "Rank": 1, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "Rank": 1, "CommandName": "Set-PnPTenantSite", "Id": 1503 }, { - "Rank": 2, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "Rank": 2, "CommandName": "Set-PnPTenantSite", "Id": 1504 }, { - "Rank": 3, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 3, "CommandName": "Set-PnPTenantSite", "Id": 1505 }, { - "Rank": 4, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 4, "CommandName": "Set-PnPTenantSite", "Id": 1506 }, { - "Rank": 5, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "Rank": 5, "CommandName": "Set-PnPTenantSite", "Id": 1507 }, { - "Rank": 1, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "Rank": 1, "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1508 }, { - "Rank": 2, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "Rank": 2, "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1509 }, { - "Rank": 1, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "Rank": 1, "CommandName": "Set-PnPTerm", "Id": 1510 }, { - "Rank": 2, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 2, "CommandName": "Set-PnPTerm", "Id": 1511 }, { - "Rank": 3, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 3, "CommandName": "Set-PnPTerm", "Id": 1512 }, { - "Rank": 4, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "Rank": 4, "CommandName": "Set-PnPTerm", "Id": 1513 }, { - "Rank": 1, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "Rank": 1, "CommandName": "Set-PnPTermGroup", "Id": 1514 }, { - "Rank": 1, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "Rank": 1, "CommandName": "Set-PnPTermSet", "Id": 1515 }, { - "Rank": 2, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "Rank": 2, "CommandName": "Set-PnPTermSet", "Id": 1516 }, { - "Rank": 3, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "Rank": 3, "CommandName": "Set-PnPTermSet", "Id": 1517 }, { - "Rank": 1, "Command": "Set-PnPTheme", + "Rank": 1, "CommandName": "Set-PnPTheme", "Id": 1518 }, { - "Rank": 2, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "Rank": 2, "CommandName": "Set-PnPTheme", "Id": 1519 }, { - "Rank": 3, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "Rank": 3, "CommandName": "Set-PnPTheme", "Id": 1520 }, { - "Rank": 4, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "Rank": 4, "CommandName": "Set-PnPTheme", "Id": 1521 }, { - "Rank": 1, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "Rank": 1, "CommandName": "Set-PnPTraceLog", "Id": 1522 }, { - "Rank": 2, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "Rank": 2, "CommandName": "Set-PnPTraceLog", "Id": 1523 }, { - "Rank": 3, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "Rank": 3, "CommandName": "Set-PnPTraceLog", "Id": 1524 }, { - "Rank": 4, "Command": "Set-PnPTraceLog -Off", + "Rank": 4, "CommandName": "Set-PnPTraceLog", "Id": 1525 }, { - "Rank": 1, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "Rank": 1, "CommandName": "Set-PnPUserOneDriveQuota", "Id": 1526 }, { - "Rank": 1, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "Rank": 1, "CommandName": "Set-PnPUserProfileProperty", "Id": 1527 }, { - "Rank": 2, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "Rank": 2, "CommandName": "Set-PnPUserProfileProperty", "Id": 1528 }, { - "Rank": 1, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "Rank": 1, "CommandName": "Set-PnPView", "Id": 1529 }, { - "Rank": 2, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "Rank": 2, "CommandName": "Set-PnPView", "Id": 1530 }, { - "Rank": 3, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "Rank": 3, "CommandName": "Set-PnPView", "Id": 1531 }, { - "Rank": 4, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "Rank": 4, "CommandName": "Set-PnPView", "Id": 1532 }, { - "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", + "Rank": 1, "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1533 }, { - "Rank": 2, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "Rank": 2, "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1534 }, { - "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", + "Rank": 3, "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1535 }, { - "Rank": 4, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "Rank": 4, "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1536 }, { - "Rank": 1, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "Rank": 1, "CommandName": "Set-PnPWeb", "Id": 1537 }, { - "Rank": 2, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "Rank": 2, "CommandName": "Set-PnPWeb", "Id": 1538 }, { - "Rank": 3, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "Rank": 3, "CommandName": "Set-PnPWeb", "Id": 1539 }, { - "Rank": 4, "Command": "Set-PnPWeb -NoCrawl:$true", + "Rank": 4, "CommandName": "Set-PnPWeb", "Id": 1540 }, { - "Rank": 1, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "Rank": 1, "CommandName": "Set-PnPWebHeader", "Id": 1541 }, { - "Rank": 2, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "Rank": 2, "CommandName": "Set-PnPWebHeader", "Id": 1542 }, { - "Rank": 3, "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "Rank": 3, "CommandName": "Set-PnPWebHeader", "Id": 1543 }, { - "Rank": 1, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Rank": 1, "CommandName": "Set-PnPWebhookSubscription", "Id": 1544 }, { - "Rank": 2, "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", "Id": 1545 }, { - "Rank": 1, "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", "Id": 1546 }, { - "Rank": 1, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Rank": 1, "CommandName": "Set-PnPWebPermission", "Id": 1547 }, { - "Rank": 2, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "Rank": 2, "CommandName": "Set-PnPWebPermission", "Id": 1548 }, { - "Rank": 3, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Rank": 3, "CommandName": "Set-PnPWebPermission", "Id": 1549 }, { - "Rank": 4, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "Rank": 4, "CommandName": "Set-PnPWebPermission", "Id": 1550 }, { - "Rank": 1, "Command": "Set-PnPWebTheme -Theme MyTheme", + "Rank": 1, "CommandName": "Set-PnPWebTheme", "Id": 1551 }, { - "Rank": 2, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "Rank": 2, "CommandName": "Set-PnPWebTheme", "Id": 1552 }, { - "Rank": 1, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "Rank": 1, "CommandName": "Set-PnPWikiPageContent", "Id": 1553 }, { - "Rank": 1, "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "Rank": 1, "CommandName": "Submit-PnPSearchQuery", "Id": 1554 }, { - "Rank": 2, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "Rank": 2, "CommandName": "Submit-PnPSearchQuery", "Id": 1555 }, { - "Rank": 3, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "Rank": 3, "CommandName": "Submit-PnPSearchQuery", "Id": 1556 }, { - "Rank": 4, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "Rank": 4, "CommandName": "Submit-PnPSearchQuery", "Id": 1557 }, { - "Rank": 5, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "Rank": 5, "CommandName": "Submit-PnPSearchQuery", "Id": 1558 }, { - "Rank": 1, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "Rank": 1, "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1559 }, { - "Rank": 2, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "Rank": 2, "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1560 }, { - "Rank": 1, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Sync-PnPAppToTeams", "Id": 1561 }, { - "Rank": 1, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "Rank": 1, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1562 }, { - "Rank": 2, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "Rank": 2, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1563 }, { - "Rank": 3, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "Rank": 3, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1564 }, { - "Rank": 1, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "Rank": 1, "CommandName": "Test-PnPListItemIsRecord", "Id": 1565 }, { - "Rank": 1, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "Rank": 1, "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Id": 1566 }, { - "Rank": 1, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1, "CommandName": "Test-PnPSite", "Id": 1567 }, { - "Rank": 2, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Rank": 2, "CommandName": "Test-PnPSite", "Id": 1568 }, { - "Rank": 1, "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "Rank": 1, "CommandName": "Test-PnPTenantTemplate", "Id": 1569 }, { - "Rank": 1, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "Rank": 1, "CommandName": "Undo-PnPFileCheckedOut", "Id": 1570 }, { - "Rank": 1, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Uninstall-PnPApp", "Id": 1571 }, { - "Rank": 2, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Uninstall-PnPApp", "Id": 1572 }, { - "Rank": 1, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Unpublish-PnPApp", "Id": 1573 }, { - "Rank": 2, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Unpublish-PnPApp", "Id": 1574 }, { - "Rank": 1, "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "Rank": 1, "CommandName": "Unpublish-PnPContentType", "Id": 1575 }, { - "Rank": 1, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Rank": 1, "CommandName": "Unpublish-PnPSyntexModel", "Id": 1576 }, { - "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", + "Rank": 2, "CommandName": "Unpublish-PnPSyntexModel", "Id": 1577 }, { - "Rank": 1, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Rank": 1, "CommandName": "Unregister-PnPHubSite", "Id": 1578 }, { - "Rank": 1, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Update-PnPApp", "Id": 1579 }, { - "Rank": 2, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Update-PnPApp", "Id": 1580 }, { - "Rank": 1, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Rank": 1, "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1581 }, { - "Rank": 2, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "Rank": 2, "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1582 }, { - "Rank": 3, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 3, "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1583 }, { - "Rank": 1, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "Rank": 1, "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1584 }, { - "Rank": 2, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Rank": 2, "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1585 }, { - "Rank": 3, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "Rank": 3, "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1586 }, { - "Rank": 1, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "Rank": 1, "CommandName": "Update-PnPTeamsApp", "Id": 1587 }, { - "Rank": 1, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 1, "CommandName": "Update-PnPTeamsUser", "Id": 1588 }, { - "Rank": 2, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Rank": 2, "CommandName": "Update-PnPTeamsUser", "Id": 1589 }, { - "Rank": 3, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "Rank": 3, "CommandName": "Update-PnPTeamsUser", "Id": 1590 }, { - "Rank": 1, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "Rank": 1, "CommandName": "Update-PnPUserType", "Id": 1591 } diff --git a/version.txt b/version.txt index 89d12e8cd..d5a2be8f8 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.98 \ No newline at end of file +2.2.99 \ No newline at end of file From 8ea3991709941609cecf16d5ddf4af0c59b9d34b Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Mon, 16 Oct 2023 02:40:08 +0000 Subject: [PATCH 084/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9546 ++++++++--------- version.txt | 2 +- 3 files changed, 4775 insertions(+), 4775 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 8453016d9..b5645d85a 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -83dbc123ba0b28e6825009564bf737455aabb6eb \ No newline at end of file +a160cbfadd631e98b3792bca268486d5e42291b6 \ 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 7a0331b79..58f39fbd4 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9548 +1,9548 @@ [ { - "Command": "Add-PnPAlert -List \"Demo List\"", - "Rank": 1, "CommandName": "Add-PnPAlert", - "Id": 1 + "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)", - "Rank": 2, "CommandName": "Add-PnPAlert", - "Id": 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)", + "Rank": 2 }, { - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3, "CommandName": "Add-PnPAlert", - "Id": 3 + "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))", - "Rank": 4, "CommandName": "Add-PnPAlert", - "Id": 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))", + "Rank": 4 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg", - "Rank": 1, "CommandName": "Add-PnPApp", - "Id": 5 + "Id": 5, + "Command": "Add-PnPApp -Path ./myapp.sppkg", + "Rank": 1 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Rank": 2, "CommandName": "Add-PnPApp", - "Id": 6 + "Id": 6, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "Rank": 2 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "Rank": 3, "CommandName": "Add-PnPApp", - "Id": 7 + "Id": 7, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "Rank": 3 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "Rank": 4, "CommandName": "Add-PnPApp", - "Id": 8 + "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`\"}", - "Rank": 1, "CommandName": "Add-PnPApplicationCustomizer", - "Id": 9 + "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\"", - "Rank": 1, "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 10 + "Id": 10, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "Rank": 1 }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Rank": 2, "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 11 + "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\"", - "Rank": 1, "CommandName": "Add-PnPAzureADGroupMember", - "Id": 12 + "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", - "Rank": 2, "CommandName": "Add-PnPAzureADGroupMember", - "Id": 13 + "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\"", - "Rank": 3, "CommandName": "Add-PnPAzureADGroupMember", - "Id": 14 + "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\"", - "Rank": 1, "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 15 + "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", - "Rank": 2, "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 16 + "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\"", - "Rank": 3, "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 17 + "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", - "Rank": 1, "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 18 + "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\"", - "Rank": 2, "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 19 + "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", - "Rank": 1, "CommandName": "Add-PnPContentType", - "Id": 20 + "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\"", - "Rank": 2, "CommandName": "Add-PnPContentType", - "Id": 21 + "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\"", - "Rank": 3, "CommandName": "Add-PnPContentType", - "Id": 22 + "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\"", - "Rank": 4, "CommandName": "Add-PnPContentType", - "Id": 23 + "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", - "Rank": 5, "CommandName": "Add-PnPContentType", - "Id": 24 + "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\"", - "Rank": 1, "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 25 + "Id": 25, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "Rank": 1 }, { - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "Rank": 2, "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 26 + "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\"", - "Rank": 1, "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 27 + "Id": 27, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Rank": 1 }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2, "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 28 + "Id": 28, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Rank": 2 }, { - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "Rank": 1, "CommandName": "Add-PnPContentTypeToList", - "Id": 29 + "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`\"}\"", - "Rank": 1, "CommandName": "Add-PnPCustomAction", - "Id": 30 + "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'", - "Rank": 1, "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 31 + "Id": 31, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "Rank": 1 }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "Rank": 2, "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 32 + "Id": 32, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "Rank": 2 }, { - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "Rank": 1, "CommandName": "Add-PnPDocumentSet", - "Id": 33 + "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", - "Rank": 1, "CommandName": "Add-PnPEventReceiver", - "Id": 34 + "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", - "Rank": 2, "CommandName": "Add-PnPEventReceiver", - "Id": 35 + "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", - "Rank": 3, "CommandName": "Add-PnPEventReceiver", - "Id": 36 + "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", - "Rank": 4, "CommandName": "Add-PnPEventReceiver", - "Id": 37 + "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]\"", - "Rank": 1, "CommandName": "Add-PnPField", - "Id": 38 + "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\"", - "Rank": 2, "CommandName": "Add-PnPField", - "Id": 39 + "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\"", - "Rank": 3, "CommandName": "Add-PnPField", - "Id": 40 + "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\"", - "Rank": 4, "CommandName": "Add-PnPField", - "Id": 41 + "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\"", - "Rank": 5, "CommandName": "Add-PnPField", - "Id": 42 + "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()\"", - "Rank": 6, "CommandName": "Add-PnPField", - "Id": 43 + "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\"", - "Rank": 1, "CommandName": "Add-PnPFieldToContentType", - "Id": 44 + "Id": 44, + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Rank": 1 }, { - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "Rank": 1, "CommandName": "Add-PnPFile", - "Id": 45 + "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\"", - "Rank": 2, "CommandName": "Add-PnPFile", - "Id": 46 + "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=\"1/1/2016\"}", - "Rank": 3, "CommandName": "Add-PnPFile", - "Id": 47 + "Id": 47, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 3 }, { - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "Rank": 4, "CommandName": "Add-PnPFile", - "Id": 48 + "Id": 48, + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", + "Rank": 4 }, { - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 5, "CommandName": "Add-PnPFile", - "Id": 49 + "Id": 49, + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 5 }, { - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "Rank": 6, "CommandName": "Add-PnPFile", - "Id": 50 + "Id": 50, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", + "Rank": 6 }, { - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "Rank": 7, "CommandName": "Add-PnPFile", - "Id": 51 + "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\" }'", - "Rank": 8, "CommandName": "Add-PnPFile", - "Id": 52 + "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\"", - "Rank": 1, "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 53 + "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!\"", - "Rank": 2, "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 54 + "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)", - "Rank": 3, "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 55 + "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\"", - "Rank": 1, "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 56 + "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", - "Rank": 2, "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 57 + "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", - "Rank": 1, "CommandName": "Add-PnPFileSharingInvite", - "Id": 58 + "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", - "Rank": 2, "CommandName": "Add-PnPFileSharingInvite", - "Id": 59 + "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)", - "Rank": 3, "CommandName": "Add-PnPFileSharingInvite", - "Id": 60 + "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\"", - "Rank": 1, "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 61 + "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\"", - "Rank": 2, "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 62 + "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", - "Rank": 3, "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 63 + "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", - "Rank": 4, "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 64 + "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\"", - "Rank": 5, "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 65 + "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\"", - "Rank": 1, "CommandName": "Add-PnPFileUserSharingLink", - "Id": 66 + "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\"", - "Rank": 2, "CommandName": "Add-PnPFileUserSharingLink", - "Id": 67 + "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", - "Rank": 1, "CommandName": "Add-PnPFlowOwner", - "Id": 68 + "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", - "Rank": 2, "CommandName": "Add-PnPFlowOwner", - "Id": 69 + "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", - "Rank": 3, "CommandName": "Add-PnPFlowOwner", - "Id": 70 + "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", - "Rank": 4, "CommandName": "Add-PnPFlowOwner", - "Id": 71 + "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", - "Rank": 1, "CommandName": "Add-PnPFolder", - "Id": 72 + "Id": 72, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Rank": 1 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Rank": 2, "CommandName": "Add-PnPFolder", - "Id": 73 + "Id": 73, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "Rank": 2 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Rank": 3, "CommandName": "Add-PnPFolder", - "Id": 74 + "Id": 74, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "Rank": 3 }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 75 + "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!\"", - "Rank": 2, "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 76 + "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)", - "Rank": 3, "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 77 + "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\"", - "Rank": 1, "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 78 + "Id": 78, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1 }, { - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Rank": 2, "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 79 + "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", - "Rank": 1, "CommandName": "Add-PnPFolderSharingInvite", - "Id": 80 + "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", - "Rank": 2, "CommandName": "Add-PnPFolderSharingInvite", - "Id": 81 + "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)", - "Rank": 3, "CommandName": "Add-PnPFolderSharingInvite", - "Id": 82 + "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\"", - "Rank": 1, "CommandName": "Add-PnPFolderUserSharingLink", - "Id": 83 + "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\"", - "Rank": 2, "CommandName": "Add-PnPFolderUserSharingLink", - "Id": 84 + "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'", - "Rank": 1, "CommandName": "Add-PnPGroupMember", - "Id": 85 + "Id": 85, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Rank": 1 }, { - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Rank": 2, "CommandName": "Add-PnPGroupMember", - "Id": 86 + "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", - "Rank": 1, "CommandName": "Add-PnPHtmlPublishingPageLayout", - "Id": 87 + "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\"", - "Rank": 1, "CommandName": "Add-PnPHubSiteAssociation", - "Id": 88 + "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", - "Rank": 1, "CommandName": "Add-PnPHubToHubAssociation", - "Id": 89 + "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\"", - "Rank": 2, "CommandName": "Add-PnPHubToHubAssociation", - "Id": 90 + "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\"", - "Rank": 3, "CommandName": "Add-PnPHubToHubAssociation", - "Id": 91 + "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 '' -Sequence 9999 -Scope Site", - "Rank": 1, "CommandName": "Add-PnPJavaScriptBlock", - "Id": 92 + "Id": 92, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "Rank": 1 }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Rank": 2, "CommandName": "Add-PnPJavaScriptBlock", - "Id": 93 + "Id": 93, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "Rank": 2 }, { - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "Rank": 1, "CommandName": "Add-PnPJavaScriptLink", - "Id": 94 + "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", - "Rank": 2, "CommandName": "Add-PnPJavaScriptLink", - "Id": 95 + "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\"", - "Rank": 1, "CommandName": "Add-PnPListDesign", - "Id": 96 + "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\"", - "Rank": 2, "CommandName": "Add-PnPListDesign", - "Id": 97 + "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'", - "Rank": 1, "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 98 + "Id": 98, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "Rank": 1 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Rank": 2, "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 99 + "Id": 99, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "Rank": 2 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Rank": 3, "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 100 + "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\"}", - "Rank": 1, "CommandName": "Add-PnPListItem", - "Id": 101 + "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\"}", - "Rank": 2, "CommandName": "Add-PnPListItem", - "Id": 102 + "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\"}", - "Rank": 3, "CommandName": "Add-PnPListItem", - "Id": 103 + "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\"", - "Rank": 4, "CommandName": "Add-PnPListItem", - "Id": 104 + "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\"", - "Rank": 5, "CommandName": "Add-PnPListItem", - "Id": 105 + "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", - "Rank": 1, "CommandName": "Add-PnPListItemAttachment", - "Id": 106 + "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\" }'", - "Rank": 2, "CommandName": "Add-PnPListItemAttachment", - "Id": 107 + "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", - "Rank": 3, "CommandName": "Add-PnPListItemAttachment", - "Id": 108 + "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\"", - "Rank": 1, "CommandName": "Add-PnPListItemComment", - "Id": 109 + "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\"", - "Rank": 1, "CommandName": "Add-PnPMasterPage", - "Id": 110 + "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\"", - "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 111 + "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", - "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 112 + "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\"", - "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 113 + "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", - "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 114 + "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\"", - "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 115 + "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\"", - "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 116 + "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", - "Rank": 3, "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 117 + "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\"", - "Rank": 1, "CommandName": "Add-PnPNavigationNode", - "Id": 118 + "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", - "Rank": 2, "CommandName": "Add-PnPNavigationNode", - "Id": 119 + "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", - "Rank": 3, "CommandName": "Add-PnPNavigationNode", - "Id": 120 + "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", - "Rank": 4, "CommandName": "Add-PnPNavigationNode", - "Id": 121 + "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/\"", - "Rank": 5, "CommandName": "Add-PnPNavigationNode", - "Id": 122 + "Id": 122, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "Rank": 5 }, { - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Rank": 6, "CommandName": "Add-PnPNavigationNode", - "Id": 123 + "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", - "Rank": 7, "CommandName": "Add-PnPNavigationNode", - "Id": 124 + "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", - "Rank": 8, "CommandName": "Add-PnPNavigationNode", - "Id": 125 + "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\"", - "Rank": 1, "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 126 + "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\"", - "Rank": 2, "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 127 + "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", - "Rank": 3, "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 128 + "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\"", - "Rank": 1, "CommandName": "Add-PnPOrgNewsSite", - "Id": 129 + "Id": 129, + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "Rank": 1 }, { - "Command": "Add-PnPPage -Name \"NewPage\"", - "Rank": 1, "CommandName": "Add-PnPPage", - "Id": 130 + "Id": 130, + "Command": "Add-PnPPage -Name \"NewPage\"", + "Rank": 1 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Rank": 2, "CommandName": "Add-PnPPage", - "Id": 131 + "Id": 131, + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "Rank": 2 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Rank": 3, "CommandName": "Add-PnPPage", - "Id": 132 + "Id": 132, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "Rank": 3 }, { - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Rank": 4, "CommandName": "Add-PnPPage", - "Id": 133 + "Id": 133, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "Rank": 4 }, { - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Rank": 5, "CommandName": "Add-PnPPage", - "Id": 134 + "Id": 134, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "Rank": 5 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Rank": 6, "CommandName": "Add-PnPPage", - "Id": 135 + "Id": 135, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "Rank": 6 }, { - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7, "CommandName": "Add-PnPPage", - "Id": 136 + "Id": 136, + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "Rank": 7 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Rank": 8, "CommandName": "Add-PnPPage", - "Id": 137 + "Id": 137, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "Rank": 8 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, "CommandName": "Add-PnPPage", - "Id": 138 + "Id": 138, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Rank": 9 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, "CommandName": "Add-PnPPage", - "Id": 139 + "Id": 139, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Rank": 10 }, { - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Rank": 1, "CommandName": "Add-PnPPageImageWebPart", - "Id": 140 + "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\"", - "Rank": 2, "CommandName": "Add-PnPPageImageWebPart", - "Id": 141 + "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", - "Rank": 1, "CommandName": "Add-PnPPageSection", - "Id": 142 + "Id": 142, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "Rank": 1 }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Rank": 2, "CommandName": "Add-PnPPageSection", - "Id": 143 + "Id": 143, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "Rank": 2 }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Rank": 1, "CommandName": "Add-PnPPageTextPart", - "Id": 144 + "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\"", - "Rank": 2, "CommandName": "Add-PnPPageTextPart", - "Id": 145 + "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\"", - "Rank": 3, "CommandName": "Add-PnPPageTextPart", - "Id": 146 + "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", - "Rank": 1, "CommandName": "Add-PnPPageWebPart", - "Id": 147 + "Id": 147, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "Rank": 1 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Rank": 2, "CommandName": "Add-PnPPageWebPart", - "Id": 148 + "Id": 148, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "Rank": 2 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Rank": 3, "CommandName": "Add-PnPPageWebPart", - "Id": 149 + "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\"", - "Rank": 1, "CommandName": "Add-PnPPlannerBucket", - "Id": 150 + "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\"", - "Rank": 2, "CommandName": "Add-PnPPlannerBucket", - "Id": 151 + "Id": 151, + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "Rank": 2 }, { - "Command": "Add-PnPPlannerRoster", - "Rank": 1, "CommandName": "Add-PnPPlannerRoster", - "Id": 152 + "Id": 152, + "Command": "Add-PnPPlannerRoster", + "Rank": 1 }, { - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, "CommandName": "Add-PnPPlannerRosterMember", - "Id": 153 + "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\"", - "Rank": 1, "CommandName": "Add-PnPPlannerTask", - "Id": 154 + "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\"", - "Rank": 2, "CommandName": "Add-PnPPlannerTask", - "Id": 155 + "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\"", - "Rank": 3, "CommandName": "Add-PnPPlannerTask", - "Id": 156 + "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", - "Rank": 1, "CommandName": "Add-PnPPublishingImageRendition", - "Id": 157 + "Id": 157, + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Rank": 1 }, { - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Rank": 1, "CommandName": "Add-PnPPublishingPage", - "Id": 158 + "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'", - "Rank": 2, "CommandName": "Add-PnPPublishingPage", - "Id": 159 + "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", - "Rank": 1, "CommandName": "Add-PnPPublishingPageLayout", - "Id": 160 + "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\"", - "Rank": 1, "CommandName": "Add-PnPRoleDefinition", - "Id": 161 + "Id": 161, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "Rank": 1 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Rank": 2, "CommandName": "Add-PnPRoleDefinition", - "Id": 162 + "Id": 162, + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "Rank": 2 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Rank": 3, "CommandName": "Add-PnPRoleDefinition", - "Id": 163 + "Id": 163, + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "Rank": 3 }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 164 + "Id": 164, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 165 + "Id": 165, + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 2 }, { - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Rank": 3, "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 166 + "Id": 166, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "Rank": 3 }, { - "Command": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1, "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 167 + "Id": 167, + "Command": "Add-PnPSiteCollectionAppCatalog", + "Rank": 1 }, { - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 2, "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 168 + "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", - "Rank": 1, "CommandName": "Add-PnPSiteDesign", - "Id": 169 + "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", - "Rank": 2, "CommandName": "Add-PnPSiteDesign", - "Id": 170 + "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\"", - "Rank": 3, "CommandName": "Add-PnPSiteDesign", - "Id": 171 + "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", - "Rank": 1, "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 172 + "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)", - "Rank": 2, "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 173 + "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", - "Rank": 3, "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 174 + "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", - "Rank": 1, "CommandName": "Add-PnPSiteDesignTask", - "Id": 175 + "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\"", - "Rank": 2, "CommandName": "Add-PnPSiteDesignTask", - "Id": 176 + "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", - "Rank": 1, "CommandName": "Add-PnPSiteScript", - "Id": 177 + "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\"", - "Rank": 1, "CommandName": "Add-PnPSiteScriptPackage", - "Id": 178 + "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", - "Rank": 1, "CommandName": "Add-PnPSiteTemplate", - "Id": 179 + "Id": 179, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "Rank": 1 }, { - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Rank": 1, "CommandName": "Add-PnPStoredCredential", - "Id": 180 + "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)", - "Rank": 2, "CommandName": "Add-PnPStoredCredential", - "Id": 181 + "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\"", - "Rank": 3, "CommandName": "Add-PnPStoredCredential", - "Id": 182 + "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\"", - "Rank": 1, "CommandName": "Add-PnPTaxonomyField", - "Id": 183 + "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\"", - "Rank": 2, "CommandName": "Add-PnPTaxonomyField", - "Id": 184 + "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", - "Rank": 1, "CommandName": "Add-PnPTeamsChannel", - "Id": 185 + "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\"", - "Rank": 2, "CommandName": "Add-PnPTeamsChannel", - "Id": 186 + "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", - "Rank": 3, "CommandName": "Add-PnPTeamsChannel", - "Id": 187 + "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", - "Rank": 4, "CommandName": "Add-PnPTeamsChannel", - "Id": 188 + "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", - "Rank": 1, "CommandName": "Add-PnpTeamsChannelUser", - "Id": 189 + "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", - "Rank": 2, "CommandName": "Add-PnpTeamsChannelUser", - "Id": 190 + "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\"", - "Rank": 1, "CommandName": "Add-PnPTeamsTab", - "Id": 191 + "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\"", - "Rank": 2, "CommandName": "Add-PnPTeamsTab", - "Id": 192 + "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\"", - "Rank": 3, "CommandName": "Add-PnPTeamsTab", - "Id": 193 + "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", - "Rank": 4, "CommandName": "Add-PnPTeamsTab", - "Id": 194 + "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", - "Rank": 1, "CommandName": "Add-PnPTeamsTeam", - "Id": 195 + "Id": 195, + "Command": "Add-PnPTeamsTeam", + "Rank": 1 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1, "CommandName": "Add-PnPTeamsUser", - "Id": 196 + "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", - "Rank": 2, "CommandName": "Add-PnPTeamsUser", - "Id": 197 + "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", - "Rank": 3, "CommandName": "Add-PnPTeamsUser", - "Id": 198 + "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", - "Rank": 4, "CommandName": "Add-PnPTeamsUser", - "Id": 199 + "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", - "Rank": 1, "CommandName": "Add-PnPTenantCdnOrigin", - "Id": 200 + "Id": 200, + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Rank": 1 }, { - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Rank": 1, "CommandName": "Add-PnPTenantSequence", - "Id": 201 + "Id": 201, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "Rank": 1 }, { - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Rank": 1, "CommandName": "Add-PnPTenantSequenceSite", - "Id": 202 + "Id": 202, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "Rank": 1 }, { - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Rank": 1, "CommandName": "Add-PnPTenantSequenceSubSite", - "Id": 203 + "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\"}", - "Rank": 1, "CommandName": "Add-PnPTermToTerm", - "Id": 204 + "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\"", - "Rank": 1, "CommandName": "Add-PnPView", - "Id": 205 + "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", - "Rank": 2, "CommandName": "Add-PnPView", - "Id": 206 + "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 \"\"", - "Rank": 3, "CommandName": "Add-PnPView", - "Id": 207 + "Id": 207, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "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\"", - "Rank": 1, "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Id": 208 + "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\"", - "Rank": 2, "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Id": 209 + "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\"", - "Rank": 3, "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Id": 210 + "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", - "Rank": 1, "CommandName": "Add-PnPWebhookSubscription", - "Id": 211 + "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\"", - "Rank": 2, "CommandName": "Add-PnPWebhookSubscription", - "Id": 212 + "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!\"", - "Rank": 3, "CommandName": "Add-PnPWebhookSubscription", - "Id": 213 + "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", - "Rank": 1, "CommandName": "Add-PnPWebPartToWebPartPage", - "Id": 214 + "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", - "Rank": 2, "CommandName": "Add-PnPWebPartToWebPartPage", - "Id": 215 + "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", - "Rank": 1, "CommandName": "Add-PnPWebPartToWikiPage", - "Id": 216 + "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", - "Rank": 2, "CommandName": "Add-PnPWebPartToWikiPage", - "Id": 217 + "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'", - "Rank": 1, "CommandName": "Add-PnPWikiPage", - "Id": 218 + "Id": 218, + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "Rank": 1 }, { - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Rank": 1, "CommandName": "Clear-PnPAzureADGroupMember", - "Id": 219 + "Id": 219, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "Rank": 1 }, { - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Rank": 1, "CommandName": "Clear-PnPAzureADGroupOwner", - "Id": 220 + "Id": 220, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "Rank": 1 }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Rank": 1, "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 221 + "Id": 221, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "Rank": 1 }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Rank": 2, "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 222 + "Id": 222, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "Rank": 2 }, { - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, "CommandName": "Clear-PnPListItemAsRecord", - "Id": 223 + "Id": 223, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1 }, { - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Id": 224 + "Id": 224, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "Rank": 1 }, { - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Id": 225 + "Id": 225, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "Rank": 1 }, { - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, "CommandName": "Clear-PnpRecycleBinItem", - "Id": 226 + "Id": 226, + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1 }, { - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Rank": 2, "CommandName": "Clear-PnpRecycleBinItem", - "Id": 227 + "Id": 227, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "Rank": 2 }, { - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Rank": 3, "CommandName": "Clear-PnpRecycleBinItem", - "Id": 228 + "Id": 228, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "Rank": 3 }, { - "Command": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1, "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Id": 229 + "Id": 229, + "Command": "Clear-PnPTenantAppCatalogUrl", + "Rank": 1 }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 230 + "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", - "Rank": 2, "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 231 + "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\"", - "Rank": 1, "CommandName": "Connect-PnPOnline", - "Id": 232 + "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-PnPFolderToSiteTemplate -Out template.pnp", - "Rank": 1, "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 233 + "Id": 233, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "Rank": 1 }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Rank": 2, "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 234 + "Id": 234, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "Rank": 2 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Rank": 1, "CommandName": "Convert-PnPSiteTemplate", - "Id": 235 + "Id": 235, + "Command": "Convert-PnPSiteTemplate -Path template.xml", + "Rank": 1 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Rank": 2, "CommandName": "Convert-PnPSiteTemplate", - "Id": 236 + "Id": 236, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "Rank": 2 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Rank": 3, "CommandName": "Convert-PnPSiteTemplate", - "Id": 237 + "Id": 237, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "Rank": 3 }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Rank": 1, "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 238 + "Id": 238, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "Rank": 1 }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Rank": 2, "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 239 + "Id": 239, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "Rank": 2 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Rank": 1, "CommandName": "ConvertTo-PnPPage", - "Id": 240 + "Id": 240, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "Rank": 1 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Rank": 2, "CommandName": "ConvertTo-PnPPage", - "Id": 241 + "Id": 241, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "Rank": 2 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Rank": 3, "CommandName": "ConvertTo-PnPPage", - "Id": 242 + "Id": 242, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "Rank": 3 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Rank": 4, "CommandName": "ConvertTo-PnPPage", - "Id": 243 + "Id": 243, + "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\"", - "Rank": 5, "CommandName": "ConvertTo-PnPPage", - "Id": 244 + "Id": 244, + "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", - "Rank": 6, "CommandName": "ConvertTo-PnPPage", - "Id": 245 + "Id": 245, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "Rank": 6 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Rank": 7, "CommandName": "ConvertTo-PnPPage", - "Id": 246 + "Id": 246, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "Rank": 7 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Rank": 8, "CommandName": "ConvertTo-PnPPage", - "Id": 247 + "Id": 247, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "Rank": 8 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 9, "CommandName": "ConvertTo-PnPPage", - "Id": 248 + "Id": 248, + "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", - "Rank": 10, "CommandName": "ConvertTo-PnPPage", - "Id": 249 + "Id": 249, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "Rank": 10 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Rank": 11, "CommandName": "ConvertTo-PnPPage", - "Id": 250 + "Id": 250, + "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\"", - "Rank": 12, "CommandName": "ConvertTo-PnPPage", - "Id": 251 + "Id": 251, + "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\"", - "Rank": 13, "CommandName": "ConvertTo-PnPPage", - "Id": 252 + "Id": 252, + "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", - "Rank": 14, "CommandName": "ConvertTo-PnPPage", - "Id": 253 + "Id": 253, + "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", - "Rank": 1, "CommandName": "Copy-PnPFile", - "Id": 254 + "Id": 254, + "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\"", - "Rank": 2, "CommandName": "Copy-PnPFile", - "Id": 255 + "Id": 255, + "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", - "Rank": 3, "CommandName": "Copy-PnPFile", - "Id": 256 + "Id": 256, + "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", - "Rank": 4, "CommandName": "Copy-PnPFile", - "Id": 257 + "Id": 257, + "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\"", - "Rank": 5, "CommandName": "Copy-PnPFile", - "Id": 258 + "Id": 258, + "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\"", - "Rank": 6, "CommandName": "Copy-PnPFile", - "Id": 259 + "Id": 259, + "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\"", - "Rank": 7, "CommandName": "Copy-PnPFile", - "Id": 260 + "Id": 260, + "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", - "Rank": 8, "CommandName": "Copy-PnPFile", - "Id": 261 + "Id": 261, + "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", - "Rank": 9, "CommandName": "Copy-PnPFile", - "Id": 262 + "Id": 262, + "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\"", - "Rank": 10, "CommandName": "Copy-PnPFile", - "Id": 263 + "Id": 263, + "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", - "Rank": 1, "CommandName": "Copy-PnPFolder", - "Id": 264 + "Id": 264, + "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\"", - "Rank": 2, "CommandName": "Copy-PnPFolder", - "Id": 265 + "Id": 265, + "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", - "Rank": 3, "CommandName": "Copy-PnPFolder", - "Id": 266 + "Id": 266, + "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", - "Rank": 4, "CommandName": "Copy-PnPFolder", - "Id": 267 + "Id": 267, + "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\"", - "Rank": 5, "CommandName": "Copy-PnPFolder", - "Id": 268 + "Id": 268, + "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\"", - "Rank": 6, "CommandName": "Copy-PnPFolder", - "Id": 269 + "Id": 269, + "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\"", - "Rank": 7, "CommandName": "Copy-PnPFolder", - "Id": 270 + "Id": 270, + "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", - "Rank": 8, "CommandName": "Copy-PnPFolder", - "Id": 271 + "Id": 271, + "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", - "Rank": 9, "CommandName": "Copy-PnPFolder", - "Id": 272 + "Id": 272, + "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\"", - "Rank": 10, "CommandName": "Copy-PnPFolder", - "Id": 273 + "Id": 273, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Rank": 10 }, { - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Rank": 1, "CommandName": "Copy-PnPItemProxy", - "Id": 274 + "Id": 274, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "Rank": 1 }, { - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Rank": 1, "CommandName": "Copy-PnPList", - "Id": 275 + "Id": 275, + "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", - "Rank": 2, "CommandName": "Copy-PnPList", - "Id": 276 + "Id": 276, + "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\"", - "Rank": 3, "CommandName": "Copy-PnPList", - "Id": 277 + "Id": 277, + "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\\", - "Rank": 4, "CommandName": "Copy-PnPList", - "Id": 278 + "Id": 278, + "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", - "Rank": 1, "CommandName": "Copy-PnPTeamsTeam", - "Id": 279 + "Id": 279, + "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\"", - "Rank": 2, "CommandName": "Copy-PnPTeamsTeam", - "Id": 280 + "Id": 280, + "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", - "Rank": 3, "CommandName": "Copy-PnPTeamsTeam", - "Id": 281 + "Id": 281, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", + "Rank": 3 }, { - "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", - "Id": 282 + "Id": 282, + "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", - "Rank": 1, "CommandName": "Disable-PnPFeature", - "Id": 283 + "Id": 283, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, "CommandName": "Disable-PnPFeature", - "Id": 284 + "Id": 284, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, "CommandName": "Disable-PnPFeature", - "Id": 285 + "Id": 285, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3 }, { - "Command": "Disable-PnPPageScheduling", - "Rank": 1, "CommandName": "Disable-PnPPageScheduling", - "Id": 286 + "Id": 286, + "Command": "Disable-PnPPageScheduling", + "Rank": 1 }, { - "Command": "Disable-PnPPowerShellTelemetry", - "Rank": 1, "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 287 + "Id": 287, + "Command": "Disable-PnPPowerShellTelemetry", + "Rank": 1 }, { - "Command": "Disable-PnPPowerShellTelemetry -Force", - "Rank": 2, "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 288 + "Id": 288, + "Command": "Disable-PnPPowerShellTelemetry -Force", + "Rank": 2 }, { - "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1, "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 289 + "Id": 289, + "Command": "Disable-PnPSharingForNonOwnersOfSite", + "Rank": 1 }, { - "Command": "Disable-PnPSiteClassification", - "Rank": 1, "CommandName": "Disable-PnPSiteClassification", - "Id": 290 + "Id": 290, + "Command": "Disable-PnPSiteClassification", + "Rank": 1 }, { - "Command": "Disconnect-PnPOnline", - "Rank": 1, "CommandName": "Disconnect-PnPOnline", - "Id": 291 + "Id": 291, + "Command": "Disconnect-PnPOnline", + "Rank": 1 }, { - "Command": "Enable-PnPCommSite", - "Rank": 1, "CommandName": "Enable-PnPCommSite", - "Id": 292 + "Id": 292, + "Command": "Enable-PnPCommSite", + "Rank": 1 }, { - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Rank": 2, "CommandName": "Enable-PnPCommSite", - "Id": 293 + "Id": 293, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "Rank": 2 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "CommandName": "Enable-PnPFeature", - "Id": 294 + "Id": 294, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, "CommandName": "Enable-PnPFeature", - "Id": 295 + "Id": 295, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, "CommandName": "Enable-PnPFeature", - "Id": 296 + "Id": 296, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3 }, { - "Command": "Enable-PnPPageScheduling", - "Rank": 1, "CommandName": "Enable-PnPPageScheduling", - "Id": 297 + "Id": 297, + "Command": "Enable-PnPPageScheduling", + "Rank": 1 }, { - "Command": "Enable-PnPPowerShellTelemetry", - "Rank": 1, "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 298 + "Id": 298, + "Command": "Enable-PnPPowerShellTelemetry", + "Rank": 1 }, { - "Command": "Enable-PnPPowerShellTelemetry -Force", - "Rank": 2, "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 299 + "Id": 299, + "Command": "Enable-PnPPowerShellTelemetry -Force", + "Rank": 2 }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Rank": 1, "CommandName": "Enable-PnPSiteClassification", - "Id": 300 + "Id": 300, + "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", - "Rank": 2, "CommandName": "Enable-PnPSiteClassification", - "Id": 301 + "Id": 301, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 2 }, { - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Rank": 1, "CommandName": "Export-PnPListToSiteTemplate", - "Id": 302 + "Id": 302, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "Rank": 1 }, { - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Rank": 2, "CommandName": "Export-PnPListToSiteTemplate", - "Id": 303 + "Id": 303, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "Rank": 2 }, { - "Command": "Export-PnPPage -Identity Home.aspx", - "Rank": 1, "CommandName": "Export-PnPPage", - "Id": 304 + "Id": 304, + "Command": "Export-PnPPage -Identity Home.aspx", + "Rank": 1 }, { - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Rank": 1, "CommandName": "Export-PnPPageMapping", - "Id": 305 + "Id": 305, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "Rank": 1 }, { - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Rank": 2, "CommandName": "Export-PnPPageMapping", - "Id": 306 + "Id": 306, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "Rank": 2 }, { - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Rank": 3, "CommandName": "Export-PnPPageMapping", - "Id": 307 + "Id": 307, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "Rank": 3 }, { - "Command": "Export-PnPTaxonomy", - "Rank": 1, "CommandName": "Export-PnPTaxonomy", - "Id": 308 + "Id": 308, + "Command": "Export-PnPTaxonomy", + "Rank": 1 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Rank": 2, "CommandName": "Export-PnPTaxonomy", - "Id": 309 + "Id": 309, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "Rank": 2 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Rank": 3, "CommandName": "Export-PnPTaxonomy", - "Id": 310 + "Id": 310, + "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", - "Rank": 4, "CommandName": "Export-PnPTaxonomy", - "Id": 311 + "Id": 311, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "Rank": 4 }, { - "Command": "Export-PnPTermGroupToXml", - "Rank": 1, "CommandName": "Export-PnPTermGroupToXml", - "Id": 312 + "Id": 312, + "Command": "Export-PnPTermGroupToXml", + "Rank": 1 }, { - "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Rank": 2, "CommandName": "Export-PnPTermGroupToXml", - "Id": 313 + "Id": 313, + "Command": "Export-PnPTermGroupToXml -Out output.xml", + "Rank": 2 }, { - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Rank": 3, "CommandName": "Export-PnPTermGroupToXml", - "Id": 314 + "Id": 314, + "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\"", - "Rank": 1, "CommandName": "Export-PnPUserInfo", - "Id": 315 + "Id": 315, + "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", - "Rank": 2, "CommandName": "Export-PnPUserInfo", - "Id": 316 + "Id": 316, + "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", - "Rank": 1, "CommandName": "Export-PnPUserProfile", - "Id": 317 + "Id": 317, + "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "Rank": 1 }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2, "CommandName": "Export-PnPUserProfile", - "Id": 318 + "Id": 318, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "Rank": 2 }, { - "Command": "Find-PnPFile -Match *.master", - "Rank": 1, "CommandName": "Find-PnPFile", - "Id": 319 + "Id": 319, + "Command": "Find-PnPFile -Match *.master", + "Rank": 1 }, { - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Rank": 2, "CommandName": "Find-PnPFile", - "Id": 320 + "Id": 320, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "Rank": 2 }, { - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Rank": 3, "CommandName": "Find-PnPFile", - "Id": 321 + "Id": 321, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "Rank": 3 }, { - "Command": "Get-PnPAccessToken", - "Rank": 1, "CommandName": "Get-PnPAccessToken", - "Id": 322 + "Id": 322, + "Command": "Get-PnPAccessToken", + "Rank": 1 }, { - "Command": "Get-PnPAccessToken -Decoded", - "Rank": 2, "CommandName": "Get-PnPAccessToken", - "Id": 323 + "Id": 323, + "Command": "Get-PnPAccessToken -Decoded", + "Rank": 2 }, { - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Rank": 3, "CommandName": "Get-PnPAccessToken", - "Id": 324 + "Id": 324, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "Rank": 3 }, { - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Rank": 4, "CommandName": "Get-PnPAccessToken", - "Id": 325 + "Id": 325, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "Rank": 4 }, { - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Rank": 5, "CommandName": "Get-PnPAccessToken", - "Id": 326 + "Id": 326, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "Rank": 5 }, { - "Command": "Get-PnPAlert", - "Rank": 1, "CommandName": "Get-PnPAlert", - "Id": 327 + "Id": 327, + "Command": "Get-PnPAlert", + "Rank": 1 }, { - "Command": "Get-PnPAlert -List \"Demo List\"", - "Rank": 2, "CommandName": "Get-PnPAlert", - "Id": 328 + "Id": 328, + "Command": "Get-PnPAlert -List \"Demo List\"", + "Rank": 2 }, { - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3, "CommandName": "Get-PnPAlert", - "Id": 329 + "Id": 329, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Rank": 3 }, { - "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Rank": 4, "CommandName": "Get-PnPAlert", - "Id": 330 + "Id": 330, + "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "Rank": 4 }, { - "Command": "Get-PnPAlert -AllUsers", - "Rank": 5, "CommandName": "Get-PnPAlert", - "Id": 331 + "Id": 331, + "Command": "Get-PnPAlert -AllUsers", + "Rank": 5 }, { - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Rank": 6, "CommandName": "Get-PnPAlert", - "Id": 332 + "Id": 332, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "Rank": 6 }, { - "Command": "Get-PnPApp", - "Rank": 1, "CommandName": "Get-PnPApp", - "Id": 333 + "Id": 333, + "Command": "Get-PnPApp", + "Rank": 1 }, { - "Command": "Get-PnPApp -Scope Site", - "Rank": 2, "CommandName": "Get-PnPApp", - "Id": 334 + "Id": 334, + "Command": "Get-PnPApp -Scope Site", + "Rank": 2 }, { - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 3, "CommandName": "Get-PnPApp", - "Id": 335 + "Id": 335, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 3 }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Rank": 1, "CommandName": "Get-PnPAppErrors", - "Id": 336 + "Id": 336, + "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()", - "Rank": 2, "CommandName": "Get-PnPAppErrors", - "Id": 337 + "Id": 337, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "Rank": 2 }, { - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Rank": 1, "CommandName": "Get-PnPAppInfo", - "Id": 338 + "Id": 338, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "Rank": 1 }, { - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 2, "CommandName": "Get-PnPAppInfo", - "Id": 339 + "Id": 339, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 2 }, { - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Rank": 3, "CommandName": "Get-PnPAppInfo", - "Id": 340 + "Id": 340, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "Rank": 3 }, { - "Command": "Get-PnPApplicationCustomizer", - "Rank": 1, "CommandName": "Get-PnPApplicationCustomizer", - "Id": 341 + "Id": 341, + "Command": "Get-PnPApplicationCustomizer", + "Rank": 1 }, { - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, "CommandName": "Get-PnPApplicationCustomizer", - "Id": 342 + "Id": 342, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2 }, { - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Rank": 3, "CommandName": "Get-PnPApplicationCustomizer", - "Id": 343 + "Id": 343, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "Rank": 3 }, { - "Command": "Get-PnPAuditing", - "Rank": 1, "CommandName": "Get-PnPAuditing", - "Id": 344 + "Id": 344, + "Command": "Get-PnPAuditing", + "Rank": 1 }, { - "Command": "Get-PnPAuthenticationRealm", - "Rank": 1, "CommandName": "Get-PnPAuthenticationRealm", - "Id": 345 + "Id": 345, + "Command": "Get-PnPAuthenticationRealm", + "Rank": 1 }, { - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Rank": 2, "CommandName": "Get-PnPAuthenticationRealm", - "Id": 346 + "Id": 346, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "Rank": 2 }, { - "Command": "Get-PnPAvailableLanguage", - "Rank": 1, "CommandName": "Get-PnPAvailableLanguage", - "Id": 347 + "Id": 347, + "Command": "Get-PnPAvailableLanguage", + "Rank": 1 }, { - "Command": "Get-PnPAvailableSensitivityLabel", - "Rank": 1, "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 348 + "Id": 348, + "Command": "Get-PnPAvailableSensitivityLabel", + "Rank": 1 }, { - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Rank": 2, "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 349 + "Id": 349, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "Rank": 2 }, { - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Rank": 3, "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 350 + "Id": 350, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "Rank": 3 }, { - "Command": "Get-PnPAvailableSiteClassification", - "Rank": 1, "CommandName": "Get-PnPAvailableSiteClassification", - "Id": 351 + "Id": 351, + "Command": "Get-PnPAvailableSiteClassification", + "Rank": 1 }, { - "Command": "Get-PnPAzureACSPrincipal", - "Rank": 1, "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 352 + "Id": 352, + "Command": "Get-PnPAzureACSPrincipal", + "Rank": 1 }, { - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Rank": 2, "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 353 + "Id": 353, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "Rank": 2 }, { - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Rank": 3, "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 354 + "Id": 354, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "Rank": 3 }, { - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Rank": 4, "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 355 + "Id": 355, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "Rank": 4 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 356 + "Id": 356, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 1 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 357 + "Id": 357, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "Rank": 2 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 358 + "Id": 358, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "Rank": 3 }, { - "Command": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 359 + "Id": 359, + "Command": "Get-PnPAzureADActivityReportSignIn", + "Rank": 1 }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 360 + "Id": 360, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "Rank": 2 }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 361 + "Id": 361, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "Rank": 3 }, { - "Command": "Get-PnPAzureADApp", - "Rank": 1, "CommandName": "Get-PnPAzureADApp", - "Id": 362 + "Id": 362, + "Command": "Get-PnPAzureADApp", + "Rank": 1 }, { - "Command": "Get-PnPAzureADApp -Identity MyApp", - "Rank": 2, "CommandName": "Get-PnPAzureADApp", - "Id": 363 + "Id": 363, + "Command": "Get-PnPAzureADApp -Identity MyApp", + "Rank": 2 }, { - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, "CommandName": "Get-PnPAzureADApp", - "Id": 364 + "Id": 364, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3 }, { - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Rank": 4, "CommandName": "Get-PnPAzureADApp", - "Id": 365 + "Id": 365, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "Rank": 4 }, { - "Command": "Get-PnPAzureADAppPermission", - "Rank": 1, "CommandName": "Get-PnPAzureADAppPermission", - "Id": 366 + "Id": 366, + "Command": "Get-PnPAzureADAppPermission", + "Rank": 1 }, { - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Rank": 2, "CommandName": "Get-PnPAzureADAppPermission", - "Id": 367 + "Id": 367, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "Rank": 2 }, { - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, "CommandName": "Get-PnPAzureADAppPermission", - "Id": 368 + "Id": 368, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3 }, { - "Command": "Get-PnPAzureADAppSitePermission", - "Rank": 1, "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 369 + "Id": 369, + "Command": "Get-PnPAzureADAppSitePermission", + "Rank": 1 }, { - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2, "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 370 + "Id": 370, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "Rank": 2 }, { - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Rank": 3, "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 371 + "Id": 371, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "Rank": 3 }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Rank": 4, "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 372 + "Id": 372, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "Rank": 4 }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Rank": 5, "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 373 + "Id": 373, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "Rank": 5 }, { - "Command": "Get-PnPAzureADGroup", - "Rank": 1, "CommandName": "Get-PnPAzureADGroup", - "Id": 374 + "Id": 374, + "Command": "Get-PnPAzureADGroup", + "Rank": 1 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Rank": 2, "CommandName": "Get-PnPAzureADGroup", - "Id": 375 + "Id": 375, + "Command": "Get-PnPAzureADGroup -Identity $groupId", + "Rank": 2 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Rank": 3, "CommandName": "Get-PnPAzureADGroup", - "Id": 376 + "Id": 376, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "Rank": 3 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Rank": 4, "CommandName": "Get-PnPAzureADGroup", - "Id": 377 + "Id": 377, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "Rank": 4 }, { - "Command": "Get-PnPAzureADGroup -Identity $group", - "Rank": 5, "CommandName": "Get-PnPAzureADGroup", - "Id": 378 + "Id": 378, + "Command": "Get-PnPAzureADGroup -Identity $group", + "Rank": 5 }, { - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Rank": 1, "CommandName": "Get-PnPAzureADGroupMember", - "Id": 379 + "Id": 379, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "Rank": 1 }, { - "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Rank": 2, "CommandName": "Get-PnPAzureADGroupMember", - "Id": 380 + "Id": 380, + "Command": "Get-PnPAzureADGroupMember -Identity $group", + "Rank": 2 }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Rank": 1, "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 381 + "Id": 381, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "Rank": 1 }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Rank": 2, "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 382 + "Id": 382, + "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "Rank": 2 }, { - "Command": "Get-PnPAzureADServicePrincipal", - "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 383 + "Id": 383, + "Command": "Get-PnPAzureADServicePrincipal", + "Rank": 1 }, { - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 384 + "Id": 384, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "Rank": 2 }, { - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Rank": 3, "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 385 + "Id": 385, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "Rank": 3 }, { - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Rank": 4, "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 386 + "Id": 386, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "Rank": 4 }, { - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 387 + "Id": 387, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "Rank": 5 }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 388 + "Id": 388, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1 }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 389 + "Id": 389, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 2 }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 390 + "Id": 390, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1 }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 391 + "Id": 391, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "Rank": 2 }, { - "Command": "Get-PnPAzureADUser", - "Rank": 1, "CommandName": "Get-PnPAzureADUser", - "Id": 392 + "Id": 392, + "Command": "Get-PnPAzureADUser", + "Rank": 1 }, { - "Command": "Get-PnPAzureADUser -EndIndex 50", - "Rank": 2, "CommandName": "Get-PnPAzureADUser", - "Id": 393 + "Id": 393, + "Command": "Get-PnPAzureADUser -EndIndex 50", + "Rank": 2 }, { - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 3, "CommandName": "Get-PnPAzureADUser", - "Id": 394 + "Id": 394, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 3 }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Rank": 4, "CommandName": "Get-PnPAzureADUser", - "Id": 395 + "Id": 395, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "Rank": 4 }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Rank": 5, "CommandName": "Get-PnPAzureADUser", - "Id": 396 + "Id": 396, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "Rank": 5 }, { - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Rank": 6, "CommandName": "Get-PnPAzureADUser", - "Id": 397 + "Id": 397, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "Rank": 6 }, { - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Rank": 7, "CommandName": "Get-PnPAzureADUser", - "Id": 398 + "Id": 398, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "Rank": 7 }, { - "Command": "Get-PnPAzureADUser -Delta", - "Rank": 8, "CommandName": "Get-PnPAzureADUser", - "Id": 399 + "Id": 399, + "Command": "Get-PnPAzureADUser -Delta", + "Rank": 8 }, { - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Rank": 9, "CommandName": "Get-PnPAzureADUser", - "Id": 400 + "Id": 400, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "Rank": 9 }, { - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Rank": 10, "CommandName": "Get-PnPAzureADUser", - "Id": 401 + "Id": 401, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "Rank": 10 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Rank": 1, "CommandName": "Get-PnPAzureCertificate", - "Id": 402 + "Id": 402, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "Rank": 1 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Rank": 2, "CommandName": "Get-PnPAzureCertificate", - "Id": 403 + "Id": 403, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "Rank": 2 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Rank": 3, "CommandName": "Get-PnPAzureCertificate", - "Id": 404 + "Id": 404, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "Rank": 3 }, { - "Command": "Get-PnPBrowserIdleSignout", - "Rank": 1, "CommandName": "Get-PnPBrowserIdleSignout", - "Id": 405 + "Id": 405, + "Command": "Get-PnPBrowserIdleSignout", + "Rank": 1 }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Rank": 1, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 406 + "Id": 406, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "Rank": 1 }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 407 + "Id": 407, + "Command": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 2 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 408 + "Id": 408, + "Command": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 1 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Rank": 2, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 409 + "Id": 409, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "Rank": 2 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Rank": 3, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 410 + "Id": 410, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "Rank": 3 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 411 + "Id": 411, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 4 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Rank": 5, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 412 + "Id": 412, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "Rank": 5 }, { - "Command": "Get-PnPChangeLog", - "Rank": 1, "CommandName": "Get-PnPChangeLog", - "Id": 413 + "Id": 413, + "Command": "Get-PnPChangeLog", + "Rank": 1 }, { - "Command": "Get-PnPChangeLog -Nightly", - "Rank": 2, "CommandName": "Get-PnPChangeLog", - "Id": 414 + "Id": 414, + "Command": "Get-PnPChangeLog -Nightly", + "Rank": 2 }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Rank": 1, "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 415 + "Id": 415, + "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'", - "Rank": 2, "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 416 + "Id": 416, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "Rank": 2 }, { - "Command": "Get-PnPContentType", - "Rank": 1, "CommandName": "Get-PnPContentType", - "Id": 417 + "Id": 417, + "Command": "Get-PnPContentType", + "Rank": 1 }, { - "Command": "Get-PnPContentType -InSiteHierarchy", - "Rank": 2, "CommandName": "Get-PnPContentType", - "Id": 418 + "Id": 418, + "Command": "Get-PnPContentType -InSiteHierarchy", + "Rank": 2 }, { - "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Rank": 3, "CommandName": "Get-PnPContentType", - "Id": 419 + "Id": 419, + "Command": "Get-PnPContentType -Identity \"Project Document\"", + "Rank": 3 }, { - "Command": "Get-PnPContentType -List \"Documents\"", - "Rank": 4, "CommandName": "Get-PnPContentType", - "Id": 420 + "Id": 420, + "Command": "Get-PnPContentType -List \"Documents\"", + "Rank": 4 }, { - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Rank": 1, "CommandName": "Get-PnPContentTypePublishingStatus", - "Id": 421 + "Id": 421, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "Rank": 1 }, { - "Command": "Get-PnPCustomAction", - "Rank": 1, "CommandName": "Get-PnPCustomAction", - "Id": 422 + "Id": 422, + "Command": "Get-PnPCustomAction", + "Rank": 1 }, { - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, "CommandName": "Get-PnPCustomAction", - "Id": 423 + "Id": 423, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2 }, { - "Command": "Get-PnPCustomAction -Scope web", - "Rank": 3, "CommandName": "Get-PnPCustomAction", - "Id": 424 + "Id": 424, + "Command": "Get-PnPCustomAction -Scope web", + "Rank": 3 }, { - "Command": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1, "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 425 + "Id": 425, + "Command": "Get-PnPDeletedMicrosoft365Group", + "Rank": 1 }, { - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 2, "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 426 + "Id": 426, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 2 }, { - "Command": "Get-PnPDeletedTeam", - "Rank": 1, "CommandName": "Get-PnPDeletedTeam", - "Id": 427 + "Id": 427, + "Command": "Get-PnPDeletedTeam", + "Rank": 1 }, { - "Command": "Get-PnPDiagnostics", - "Rank": 1, "CommandName": "Get-PnPDiagnostics", - "Id": 428 + "Id": 428, + "Command": "Get-PnPDiagnostics", + "Rank": 1 }, { - "Command": "Get-PnPDisableSpacesActivation", - "Rank": 1, "CommandName": "Get-PnPDisableSpacesActivation", - "Id": 429 + "Id": 429, + "Command": "Get-PnPDisableSpacesActivation", + "Rank": 1 }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Rank": 1, "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 430 + "Id": 430, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "Rank": 1 }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Rank": 2, "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 431 + "Id": 431, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "Rank": 2 }, { - "Command": "Get-PnPEventReceiver", - "Rank": 1, "CommandName": "Get-PnPEventReceiver", - "Id": 432 + "Id": 432, + "Command": "Get-PnPEventReceiver", + "Rank": 1 }, { - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, "CommandName": "Get-PnPEventReceiver", - "Id": 433 + "Id": 433, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 2 }, { - "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Rank": 3, "CommandName": "Get-PnPEventReceiver", - "Id": 434 + "Id": 434, + "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "Rank": 3 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Rank": 4, "CommandName": "Get-PnPEventReceiver", - "Id": 435 + "Id": 435, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "Rank": 4 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 5, "CommandName": "Get-PnPEventReceiver", - "Id": 436 + "Id": 436, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 5 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Rank": 6, "CommandName": "Get-PnPEventReceiver", - "Id": 437 + "Id": 437, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "Rank": 6 }, { - "Command": "Get-PnPEventReceiver -Scope Site", - "Rank": 7, "CommandName": "Get-PnPEventReceiver", - "Id": 438 + "Id": 438, + "Command": "Get-PnPEventReceiver -Scope Site", + "Rank": 7 }, { - "Command": "Get-PnPEventReceiver -Scope Web", - "Rank": 8, "CommandName": "Get-PnPEventReceiver", - "Id": 439 + "Id": 439, + "Command": "Get-PnPEventReceiver -Scope Web", + "Rank": 8 }, { - "Command": "Get-PnPEventReceiver -Scope All", - "Rank": 9, "CommandName": "Get-PnPEventReceiver", - "Id": 440 + "Id": 440, + "Command": "Get-PnPEventReceiver -Scope All", + "Rank": 9 }, { - "Command": "Get-PnPException", - "Rank": 1, "CommandName": "Get-PnPException", - "Id": 441 + "Id": 441, + "Command": "Get-PnPException", + "Rank": 1 }, { - "Command": "Get-PnPException -All", - "Rank": 2, "CommandName": "Get-PnPException", - "Id": 442 + "Id": 442, + "Command": "Get-PnPException -All", + "Rank": 2 }, { - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Rank": 1, "CommandName": "Get-PnPExternalUser", - "Id": 443 + "Id": 443, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "Rank": 1 }, { - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Rank": 2, "CommandName": "Get-PnPExternalUser", - "Id": 444 + "Id": 444, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "Rank": 2 }, { - "Command": "Get-PnPFeature", - "Rank": 1, "CommandName": "Get-PnPFeature", - "Id": 445 + "Id": 445, + "Command": "Get-PnPFeature", + "Rank": 1 }, { - "Command": "Get-PnPFeature -Scope Site", - "Rank": 2, "CommandName": "Get-PnPFeature", - "Id": 446 + "Id": 446, + "Command": "Get-PnPFeature -Scope Site", + "Rank": 2 }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 3, "CommandName": "Get-PnPFeature", - "Id": 447 + "Id": 447, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 3 }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Rank": 4, "CommandName": "Get-PnPFeature", - "Id": 448 + "Id": 448, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "Rank": 4 }, { - "Command": "Get-PnPField", - "Rank": 1, "CommandName": "Get-PnPField", - "Id": 449 + "Id": 449, + "Command": "Get-PnPField", + "Rank": 1 }, { - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, "CommandName": "Get-PnPField", - "Id": 450 + "Id": 450, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Rank": 2 }, { - "Command": "Get-PnPField -Group \"Custom Columns\"", - "Rank": 3, "CommandName": "Get-PnPField", - "Id": 451 + "Id": 451, + "Command": "Get-PnPField -Group \"Custom Columns\"", + "Rank": 3 }, { - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Rank": 1, "CommandName": "Get-PnPFile", - "Id": 452 + "Id": 452, + "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", - "Rank": 2, "CommandName": "Get-PnPFile", - "Id": 453 + "Id": 453, + "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", - "Rank": 3, "CommandName": "Get-PnPFile", - "Id": 454 + "Id": 454, + "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", - "Rank": 4, "CommandName": "Get-PnPFile", - "Id": 455 + "Id": 455, + "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", - "Rank": 5, "CommandName": "Get-PnPFile", - "Id": 456 + "Id": 456, + "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", - "Rank": 6, "CommandName": "Get-PnPFile", - "Id": 457 + "Id": 457, + "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", - "Rank": 7, "CommandName": "Get-PnPFile", - "Id": 458 + "Id": 458, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "Rank": 7 }, { - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, "CommandName": "Get-PnPFileSharingLink", - "Id": 459 + "Id": 459, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1 }, { - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Rank": 1, "CommandName": "Get-PnPFileVersion", - "Id": 460 + "Id": 460, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "Rank": 1 }, { - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Rank": 2, "CommandName": "Get-PnPFileVersion", - "Id": 461 + "Id": 461, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "Rank": 2 }, { - "Command": "Get-PnPFlow -AsAdmin", - "Rank": 1, "CommandName": "Get-PnPFlow", - "Id": 462 + "Id": 462, + "Command": "Get-PnPFlow -AsAdmin", + "Rank": 1 }, { - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "Rank": 2, "CommandName": "Get-PnPFlow", - "Id": 463 + "Id": 463, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "Rank": 2 }, { - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Rank": 3, "CommandName": "Get-PnPFlow", - "Id": 464 + "Id": 464, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "Rank": 3 }, { - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "Rank": 1, "CommandName": "Get-PnPFlowOwner", - "Id": 465 + "Id": 465, + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "Rank": 1 }, { - "Command": "Get-PnPFolder", - "Rank": 1, "CommandName": "Get-PnPFolder", - "Id": 466 + "Id": 466, + "Command": "Get-PnPFolder", + "Rank": 1 }, { - "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Rank": 2, "CommandName": "Get-PnPFolder", - "Id": 467 + "Id": 467, + "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "Rank": 2 }, { - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Rank": 3, "CommandName": "Get-PnPFolder", - "Id": 468 + "Id": 468, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Rank": 4, "CommandName": "Get-PnPFolder", - "Id": 469 + "Id": 469, + "Command": "Get-PnPFolder -List \"Shared Documents\"", + "Rank": 4 }, { - "Command": "Get-PnPFolderFile", - "Rank": 1, "CommandName": "Get-PnPFolderFile", - "Id": 470 + "Id": 470, + "Command": "Get-PnPFolderFile", + "Rank": 1 }, { - "Command": "Get-PnPFolderFile -Recurse", - "Rank": 2, "CommandName": "Get-PnPFolderFile", - "Id": 471 + "Id": 471, + "Command": "Get-PnPFolderFile -Recurse", + "Rank": 2 }, { - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "Rank": 3, "CommandName": "Get-PnPFolderFile", - "Id": 472 + "Id": 472, + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4, "CommandName": "Get-PnPFolderFile", - "Id": 473 + "Id": 473, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Rank": 4 }, { - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 5, "CommandName": "Get-PnPFolderFile", - "Id": 474 + "Id": 474, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 5 }, { - "Command": "Get-PnPFolderFolder", - "Rank": 1, "CommandName": "Get-PnPFolderFolder", - "Id": 475 + "Id": 475, + "Command": "Get-PnPFolderFolder", + "Rank": 1 }, { - "Command": "Get-PnPFolderFolder -Recurse", - "Rank": 2, "CommandName": "Get-PnPFolderFolder", - "Id": 476 + "Id": 476, + "Command": "Get-PnPFolderFolder -Recurse", + "Rank": 2 }, { - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "Rank": 3, "CommandName": "Get-PnPFolderFolder", - "Id": 477 + "Id": 477, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "Rank": 4, "CommandName": "Get-PnPFolderFolder", - "Id": 478 + "Id": 478, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "Rank": 4 }, { - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "Rank": 5, "CommandName": "Get-PnPFolderFolder", - "Id": 479 + "Id": 479, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "Rank": 5 }, { - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6, "CommandName": "Get-PnPFolderFolder", - "Id": 480 + "Id": 480, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 6 }, { - "Command": "Get-PnPFolderItem", - "Rank": 1, "CommandName": "Get-PnPFolderItem", - "Id": 481 + "Id": 481, + "Command": "Get-PnPFolderItem", + "Rank": 1 }, { - "Command": "Get-PnPFolderItem -Recurse", - "Rank": 2, "CommandName": "Get-PnPFolderItem", - "Id": 482 + "Id": 482, + "Command": "Get-PnPFolderItem -Recurse", + "Rank": 2 }, { - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "Rank": 3, "CommandName": "Get-PnPFolderItem", - "Id": 483 + "Id": 483, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4, "CommandName": "Get-PnPFolderItem", - "Id": 484 + "Id": 484, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Rank": 4 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Rank": 5, "CommandName": "Get-PnPFolderItem", - "Id": 485 + "Id": 485, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "Rank": 5 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6, "CommandName": "Get-PnPFolderItem", - "Id": 486 + "Id": 486, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 6 }, { - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, "CommandName": "Get-PnPFolderSharingLink", - "Id": 487 + "Id": 487, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1 }, { - "Command": "Get-PnPFolderStorageMetric", - "Rank": 1, "CommandName": "Get-PnPFolderStorageMetric", - "Id": 488 + "Id": 488, + "Command": "Get-PnPFolderStorageMetric", + "Rank": 1 }, { - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Rank": 2, "CommandName": "Get-PnPFolderStorageMetric", - "Id": 489 + "Id": 489, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "Rank": 2 }, { - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Rank": 3, "CommandName": "Get-PnPFolderStorageMetric", - "Id": 490 + "Id": 490, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFooter", - "Rank": 1, "CommandName": "Get-PnPFooter", - "Id": 491 + "Id": 491, + "Command": "Get-PnPFooter", + "Rank": 1 }, { - "Command": "Get-PnPGraphAccessToken", - "Rank": 1, "CommandName": "Get-PnPGraphAccessToken", - "Id": 492 + "Id": 492, + "Command": "Get-PnPGraphAccessToken", + "Rank": 1 }, { - "Command": "Get-PnPGraphAccessToken -Decoded", - "Rank": 2, "CommandName": "Get-PnPGraphAccessToken", - "Id": 493 + "Id": 493, + "Command": "Get-PnPGraphAccessToken -Decoded", + "Rank": 2 }, { - "Command": "Get-PnPGraphSubscription", - "Rank": 1, "CommandName": "Get-PnPGraphSubscription", - "Id": 494 + "Id": 494, + "Command": "Get-PnPGraphSubscription", + "Rank": 1 }, { - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 2, "CommandName": "Get-PnPGraphSubscription", - "Id": 495 + "Id": 495, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 2 }, { - "Command": "Get-PnPGroup", - "Rank": 1, "CommandName": "Get-PnPGroup", - "Id": 496 + "Id": 496, + "Command": "Get-PnPGroup", + "Rank": 1 }, { - "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Rank": 2, "CommandName": "Get-PnPGroup", - "Id": 497 + "Id": 497, + "Command": "Get-PnPGroup -Identity 'My Site Users'", + "Rank": 2 }, { - "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Rank": 3, "CommandName": "Get-PnPGroup", - "Id": 498 + "Id": 498, + "Command": "Get-PnPGroup -AssociatedMemberGroup", + "Rank": 3 }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Rank": 1, "CommandName": "Get-PnPGroupMember", - "Id": 499 + "Id": 499, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "Rank": 1 }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Rank": 2, "CommandName": "Get-PnPGroupMember", - "Id": 500 + "Id": 500, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "Rank": 2 }, { - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Rank": 1, "CommandName": "Get-PnPGroupPermissions", - "Id": 501 + "Id": 501, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "Rank": 1 }, { - "Command": "Get-PnPHideDefaultThemes", - "Rank": 1, "CommandName": "Get-PnPHideDefaultThemes", - "Id": 502 + "Id": 502, + "Command": "Get-PnPHideDefaultThemes", + "Rank": 1 }, { - "Command": "Get-PnPHomePage", - "Rank": 1, "CommandName": "Get-PnPHomePage", - "Id": 503 + "Id": 503, + "Command": "Get-PnPHomePage", + "Rank": 1 }, { - "Command": "Get-PnPHomeSite", - "Rank": 1, "CommandName": "Get-PnPHomeSite", - "Id": 504 + "Id": 504, + "Command": "Get-PnPHomeSite", + "Rank": 1 }, { - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Rank": 2, "CommandName": "Get-PnPHomeSite", - "Id": 505 + "Id": 505, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "Rank": 2 }, { - "Command": "Get-PnPHomeSite -Detailed", - "Rank": 3, "CommandName": "Get-PnPHomeSite", - "Id": 506 + "Id": 506, + "Command": "Get-PnPHomeSite -Detailed", + "Rank": 3 }, { - "Command": "Get-PnPHubSite", - "Rank": 1, "CommandName": "Get-PnPHubSite", - "Id": 507 + "Id": 507, + "Command": "Get-PnPHubSite", + "Rank": 1 }, { - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, "CommandName": "Get-PnPHubSite", - "Id": 508 + "Id": 508, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Rank": 2 }, { - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Rank": 3, "CommandName": "Get-PnPHubSite", - "Id": 509 + "Id": 509, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "Rank": 3 }, { - "Command": "Get-PnPHubSiteChild", - "Rank": 1, "CommandName": "Get-PnPHubSiteChild", - "Id": 510 + "Id": 510, + "Command": "Get-PnPHubSiteChild", + "Rank": 1 }, { - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, "CommandName": "Get-PnPHubSiteChild", - "Id": 511 + "Id": 511, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Rank": 2 }, { - "Command": "Get-PnPInPlaceRecordsManagement", - "Rank": 1, "CommandName": "Get-PnPInPlaceRecordsManagement", - "Id": 512 + "Id": 512, + "Command": "Get-PnPInPlaceRecordsManagement", + "Rank": 1 }, { - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Rank": 1, "CommandName": "Get-PnPIsSiteAliasAvailable", - "Id": 513 + "Id": 513, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "Rank": 1 }, { - "Command": "Get-PnPJavaScriptLink", - "Rank": 1, "CommandName": "Get-PnPJavaScriptLink", - "Id": 514 + "Id": 514, + "Command": "Get-PnPJavaScriptLink", + "Rank": 1 }, { - "Command": "Get-PnPJavaScriptLink -Scope All", - "Rank": 2, "CommandName": "Get-PnPJavaScriptLink", - "Id": 515 + "Id": 515, + "Command": "Get-PnPJavaScriptLink -Scope All", + "Rank": 2 }, { - "Command": "Get-PnPJavaScriptLink -Scope Web", - "Rank": 3, "CommandName": "Get-PnPJavaScriptLink", - "Id": 516 + "Id": 516, + "Command": "Get-PnPJavaScriptLink -Scope Web", + "Rank": 3 }, { - "Command": "Get-PnPJavaScriptLink -Scope Site", - "Rank": 4, "CommandName": "Get-PnPJavaScriptLink", - "Id": 517 + "Id": 517, + "Command": "Get-PnPJavaScriptLink -Scope Site", + "Rank": 4 }, { - "Command": "Get-PnPJavaScriptLink -Name Test", - "Rank": 5, "CommandName": "Get-PnPJavaScriptLink", - "Id": 518 + "Id": 518, + "Command": "Get-PnPJavaScriptLink -Name Test", + "Rank": 5 }, { - "Command": "Get-PnPKnowledgeHubSite", - "Rank": 1, "CommandName": "Get-PnPKnowledgeHubSite", - "Id": 519 + "Id": 519, + "Command": "Get-PnPKnowledgeHubSite", + "Rank": 1 }, { - "Command": "Get-PnPLabel", - "Rank": 1, "CommandName": "Get-PnPLabel", - "Id": 520 + "Id": 520, + "Command": "Get-PnPLabel", + "Rank": 1 }, { - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Rank": 2, "CommandName": "Get-PnPLabel", - "Id": 521 + "Id": 521, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "Rank": 2 }, { - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Rank": 1, "CommandName": "Get-PnPLargeListOperationStatus", - "Id": 522 + "Id": 522, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "Rank": 1 }, { - "Command": "Get-PnPList", - "Rank": 1, "CommandName": "Get-PnPList", - "Id": 523 + "Id": 523, + "Command": "Get-PnPList", + "Rank": 1 }, { - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 2, "CommandName": "Get-PnPList", - "Id": 524 + "Id": 524, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 2 }, { - "Command": "Get-PnPList -Identity Lists/Announcements", - "Rank": 3, "CommandName": "Get-PnPList", - "Id": 525 + "Id": 525, + "Command": "Get-PnPList -Identity Lists/Announcements", + "Rank": 3 }, { - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Rank": 4, "CommandName": "Get-PnPList", - "Id": 526 + "Id": 526, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "Rank": 4 }, { - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Rank": 5, "CommandName": "Get-PnPList", - "Id": 527 + "Id": 527, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "Rank": 5 }, { - "Command": "Get-PnPListDesign", - "Rank": 1, "CommandName": "Get-PnPListDesign", - "Id": 528 + "Id": 528, + "Command": "Get-PnPListDesign", + "Rank": 1 }, { - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, "CommandName": "Get-PnPListDesign", - "Id": 529 + "Id": 529, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2 }, { - "Command": "Get-PnPListDesign -Identity ListEvent", - "Rank": 3, "CommandName": "Get-PnPListDesign", - "Id": 530 + "Id": 530, + "Command": "Get-PnPListDesign -Identity ListEvent", + "Rank": 3 }, { - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Rank": 1, "CommandName": "Get-PnPListInformationRightsManagement", - "Id": 531 + "Id": 531, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "Rank": 1 }, { - "Command": "Get-PnPListItem -List Tasks", - "Rank": 1, "CommandName": "Get-PnPListItem", - "Id": 532 + "Id": 532, + "Command": "Get-PnPListItem -List Tasks", + "Rank": 1 }, { - "Command": "Get-PnPListItem -List Tasks -Id 1", - "Rank": 2, "CommandName": "Get-PnPListItem", - "Id": 533 + "Id": 533, + "Command": "Get-PnPListItem -List Tasks -Id 1", + "Rank": 2 }, { - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Rank": 3, "CommandName": "Get-PnPListItem", - "Id": 534 + "Id": 534, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "Rank": 3 }, { - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Rank": 4, "CommandName": "Get-PnPListItem", - "Id": 535 + "Id": 535, + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "Rank": 4 }, { - "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Rank": 5, "CommandName": "Get-PnPListItem", - "Id": 536 + "Id": 536, + "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "Rank": 5 }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Rank": 6, "CommandName": "Get-PnPListItem", - "Id": 537 + "Id": 537, + "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) }", - "Rank": 7, "CommandName": "Get-PnPListItem", - "Id": 538 + "Id": 538, + "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\"", - "Rank": 8, "CommandName": "Get-PnPListItem", - "Id": 539 + "Id": 539, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "Rank": 8 }, { - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Rank": 9, "CommandName": "Get-PnPListItem", - "Id": 540 + "Id": 540, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "Rank": 9 }, { - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "Rank": 1, "CommandName": "Get-PnPListItemAttachment", - "Id": 541 + "Id": 541, + "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", - "Rank": 2, "CommandName": "Get-PnPListItemAttachment", - "Id": 542 + "Id": 542, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "Rank": 2 }, { - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Rank": 1, "CommandName": "Get-PnPListItemComment", - "Id": 543 + "Id": 543, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "Rank": 1 }, { - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Rank": 1, "CommandName": "Get-PnPListItemPermission", - "Id": 544 + "Id": 544, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "Rank": 1 }, { - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Rank": 1, "CommandName": "Get-PnPListItemVersion", - "Id": 545 + "Id": 545, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "Rank": 1 }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Rank": 1, "CommandName": "Get-PnPListPermissions", - "Id": 546 + "Id": 546, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "Rank": 1 }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Rank": 2, "CommandName": "Get-PnPListPermissions", - "Id": 547 + "Id": 547, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "Rank": 2 }, { - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Rank": 1, "CommandName": "Get-PnPListRecordDeclaration", - "Id": 548 + "Id": 548, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "Rank": 1 }, { - "Command": "Get-PnPMasterPage", - "Rank": 1, "CommandName": "Get-PnPMasterPage", - "Id": 549 + "Id": 549, + "Command": "Get-PnPMasterPage", + "Rank": 1 }, { - "Command": "Get-PnPMessageCenterAnnouncement", - "Rank": 1, "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 550 + "Id": 550, + "Command": "Get-PnPMessageCenterAnnouncement", + "Rank": 1 }, { - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Rank": 2, "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 551 + "Id": 551, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 552 + "Id": 552, + "Command": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Rank": 2, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 553 + "Id": 553, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365Group", - "Rank": 1, "CommandName": "Get-PnPMicrosoft365Group", - "Id": 554 + "Id": 554, + "Command": "Get-PnPMicrosoft365Group", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Rank": 2, "CommandName": "Get-PnPMicrosoft365Group", - "Id": 555 + "Id": 555, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Rank": 3, "CommandName": "Get-PnPMicrosoft365Group", - "Id": 556 + "Id": 556, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Rank": 4, "CommandName": "Get-PnPMicrosoft365Group", - "Id": 557 + "Id": 557, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "Rank": 4 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Rank": 5, "CommandName": "Get-PnPMicrosoft365Group", - "Id": 558 + "Id": 558, + "Command": "Get-PnPMicrosoft365Group -Identity $group", + "Rank": 5 }, { - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Rank": 6, "CommandName": "Get-PnPMicrosoft365Group", - "Id": 559 + "Id": 559, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "Rank": 6 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 560 + "Id": 560, + "Command": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 561 + "Id": 561, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 562 + "Id": 562, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 563 + "Id": 563, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 564 + "Id": 564, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 565 + "Id": 565, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 566 + "Id": 566, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 567 + "Id": 567, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 568 + "Id": 568, + "Command": "Get-PnPMicrosoft365GroupSettings", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 569 + "Id": 569, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 570 + "Id": 570, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 571 + "Id": 571, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 572 + "Id": 572, + "Command": "Get-PnPMicrosoft365GroupTeam", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 573 + "Id": 573, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 574 + "Id": 574, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 575 + "Id": 575, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 576 + "Id": 576, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 577 + "Id": 577, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3 }, { - "Command": "Get-PnPNavigationNode", - "Rank": 1, "CommandName": "Get-PnPNavigationNode", - "Id": 578 + "Id": 578, + "Command": "Get-PnPNavigationNode", + "Rank": 1 }, { - "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Rank": 2, "CommandName": "Get-PnPNavigationNode", - "Id": 579 + "Id": 579, + "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "Rank": 2 }, { - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Rank": 3, "CommandName": "Get-PnPNavigationNode", - "Id": 580 + "Id": 580, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "Rank": 3 }, { - "Command": "Get-PnPOrgAssetsLibrary", - "Rank": 1, "CommandName": "Get-PnPOrgAssetsLibrary", - "Id": 581 + "Id": 581, + "Command": "Get-PnPOrgAssetsLibrary", + "Rank": 1 }, { - "Command": "Get-PnPOrgNewsSite", - "Rank": 1, "CommandName": "Get-PnPOrgNewsSite", - "Id": 582 + "Id": 582, + "Command": "Get-PnPOrgNewsSite", + "Rank": 1 }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Rank": 1, "CommandName": "Get-PnPPage", - "Id": 583 + "Id": 583, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "Rank": 1 }, { - "Command": "Get-PnPPage \"MyPage\"", - "Rank": 2, "CommandName": "Get-PnPPage", - "Id": 584 + "Id": 584, + "Command": "Get-PnPPage \"MyPage\"", + "Rank": 2 }, { - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Rank": 3, "CommandName": "Get-PnPPage", - "Id": 585 + "Id": 585, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "Rank": 3 }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Rank": 4, "CommandName": "Get-PnPPage", - "Id": 586 + "Id": 586, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "Rank": 4 }, { - "Command": "Get-PnPPageComponent -Page Home", - "Rank": 1, "CommandName": "Get-PnPPageComponent", - "Id": 587 + "Id": 587, + "Command": "Get-PnPPageComponent -Page Home", + "Rank": 1 }, { - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2, "CommandName": "Get-PnPPageComponent", - "Id": 588 + "Id": 588, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 2 }, { - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Rank": 3, "CommandName": "Get-PnPPageComponent", - "Id": 589 + "Id": 589, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "Rank": 3 }, { - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, "CommandName": "Get-PnPPlannerBucket", - "Id": 590 + "Id": 590, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerConfiguration", - "Rank": 1, "CommandName": "Get-PnPPlannerConfiguration", - "Id": 591 + "Id": 591, + "Command": "Get-PnPPlannerConfiguration", + "Rank": 1 }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Rank": 1, "CommandName": "Get-PnPPlannerPlan", - "Id": 592 + "Id": 592, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Rank": 2, "CommandName": "Get-PnPPlannerPlan", - "Id": 593 + "Id": 593, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "Rank": 2 }, { - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Rank": 3, "CommandName": "Get-PnPPlannerPlan", - "Id": 594 + "Id": 594, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "Rank": 3 }, { - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, "CommandName": "Get-PnPPlannerRosterMember", - "Id": 595 + "Id": 595, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Rank": 1, "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 596 + "Id": 596, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 2, "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 597 + "Id": 597, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 2 }, { - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, "CommandName": "Get-PnPPlannerTask", - "Id": 598 + "Id": 598, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 2, "CommandName": "Get-PnPPlannerTask", - "Id": 599 + "Id": 599, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Rank": 2 }, { - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 3, "CommandName": "Get-PnPPlannerTask", - "Id": 600 + "Id": 600, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Rank": 3 }, { - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, "CommandName": "Get-PnPPlannerUserPolicy", - "Id": 601 + "Id": 601, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "Rank": 1, "CommandName": "Get-PnPPowerPlatformConnector", - "Id": 602 + "Id": 602, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "Rank": 1 }, { - "Command": "Get-PnPPowerPlatformEnvironment", - "Rank": 1, "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 603 + "Id": 603, + "Command": "Get-PnPPowerPlatformEnvironment", + "Rank": 1 }, { - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Rank": 2, "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 604 + "Id": 604, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "Rank": 2 }, { - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Rank": 3, "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 605 + "Id": 605, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "Rank": 3 }, { - "Command": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1, "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Id": 606 + "Id": 606, + "Command": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1 }, { - "Command": "Get-PnPPropertyBag", - "Rank": 1, "CommandName": "Get-PnPPropertyBag", - "Id": 607 + "Id": 607, + "Command": "Get-PnPPropertyBag", + "Rank": 1 }, { - "Command": "Get-PnPPropertyBag -Key MyKey", - "Rank": 2, "CommandName": "Get-PnPPropertyBag", - "Id": 608 + "Id": 608, + "Command": "Get-PnPPropertyBag -Key MyKey", + "Rank": 2 }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Rank": 3, "CommandName": "Get-PnPPropertyBag", - "Id": 609 + "Id": 609, + "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "Rank": 3 }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Rank": 4, "CommandName": "Get-PnPPropertyBag", - "Id": 610 + "Id": 610, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "Rank": 4 }, { - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Rank": 5, "CommandName": "Get-PnPPropertyBag", - "Id": 611 + "Id": 611, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "Rank": 5 }, { - "Command": "Get-PnPPublishingImageRendition", - "Rank": 1, "CommandName": "Get-PnPPublishingImageRendition", - "Id": 612 + "Id": 612, + "Command": "Get-PnPPublishingImageRendition", + "Rank": 1 }, { - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Rank": 2, "CommandName": "Get-PnPPublishingImageRendition", - "Id": 613 + "Id": 613, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "Rank": 2 }, { - "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Rank": 3, "CommandName": "Get-PnPPublishingImageRendition", - "Id": 614 + "Id": 614, + "Command": "Get-PnPPublishingImageRendition -Identity 2", + "Rank": 3 }, { - "Command": "Get-PnPRecycleBinItem", - "Rank": 1, "CommandName": "Get-PnPRecycleBinItem", - "Id": 615 + "Id": 615, + "Command": "Get-PnPRecycleBinItem", + "Rank": 1 }, { - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Rank": 2, "CommandName": "Get-PnPRecycleBinItem", - "Id": 616 + "Id": 616, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "Rank": 2 }, { - "Command": "Get-PnPRecycleBinItem -FirstStage", - "Rank": 3, "CommandName": "Get-PnPRecycleBinItem", - "Id": 617 + "Id": 617, + "Command": "Get-PnPRecycleBinItem -FirstStage", + "Rank": 3 }, { - "Command": "Get-PnPRecycleBinItem -SecondStage", - "Rank": 4, "CommandName": "Get-PnPRecycleBinItem", - "Id": 618 + "Id": 618, + "Command": "Get-PnPRecycleBinItem -SecondStage", + "Rank": 4 }, { - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Rank": 5, "CommandName": "Get-PnPRecycleBinItem", - "Id": 619 + "Id": 619, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "Rank": 5 }, { - "Command": "Get-PnPRequestAccessEmails", - "Rank": 1, "CommandName": "Get-PnPRequestAccessEmails", - "Id": 620 + "Id": 620, + "Command": "Get-PnPRequestAccessEmails", + "Rank": 1 }, { - "Command": "Get-PnPRetentionLabel", - "Rank": 1, "CommandName": "Get-PnPRetentionLabel", - "Id": 621 + "Id": 621, + "Command": "Get-PnPRetentionLabel", + "Rank": 1 }, { - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", - "Rank": 2, "CommandName": "Get-PnPRetentionLabel", - "Id": 622 + "Id": 622, + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "Rank": 2 }, { - "Command": "Get-PnPRoleDefinition", - "Rank": 1, "CommandName": "Get-PnPRoleDefinition", - "Id": 623 + "Id": 623, + "Command": "Get-PnPRoleDefinition", + "Rank": 1 }, { - "Command": "Get-PnPRoleDefinition -Identity Read", - "Rank": 2, "CommandName": "Get-PnPRoleDefinition", - "Id": 624 + "Id": 624, + "Command": "Get-PnPRoleDefinition -Identity Read", + "Rank": 2 }, { - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Rank": 3, "CommandName": "Get-PnPRoleDefinition", - "Id": 625 + "Id": 625, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "Rank": 3 }, { - "Command": "Get-PnPSearchConfiguration", - "Rank": 1, "CommandName": "Get-PnPSearchConfiguration", - "Id": 626 + "Id": 626, + "Command": "Get-PnPSearchConfiguration", + "Rank": 1 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site", - "Rank": 2, "CommandName": "Get-PnPSearchConfiguration", - "Id": 627 + "Id": 627, + "Command": "Get-PnPSearchConfiguration -Scope Site", + "Rank": 2 }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Rank": 3, "CommandName": "Get-PnPSearchConfiguration", - "Id": 628 + "Id": 628, + "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "Rank": 3 }, { - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, "CommandName": "Get-PnPSearchConfiguration", - "Id": 629 + "Id": 629, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Rank": 5, "CommandName": "Get-PnPSearchConfiguration", - "Id": 630 + "Id": 630, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "Rank": 5 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Rank": 6, "CommandName": "Get-PnPSearchConfiguration", - "Id": 631 + "Id": 631, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "Rank": 6 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Rank": 7, "CommandName": "Get-PnPSearchConfiguration", - "Id": 632 + "Id": 632, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "Rank": 7 }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Rank": 8, "CommandName": "Get-PnPSearchConfiguration", - "Id": 633 + "Id": 633, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "Rank": 8 }, { - "Command": "Get-PnPSearchCrawlLog", - "Rank": 1, "CommandName": "Get-PnPSearchCrawlLog", - "Id": 634 + "Id": 634, + "Command": "Get-PnPSearchCrawlLog", + "Rank": 1 }, { - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Rank": 2, "CommandName": "Get-PnPSearchCrawlLog", - "Id": 635 + "Id": 635, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "Rank": 2 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Rank": 3, "CommandName": "Get-PnPSearchCrawlLog", - "Id": 636 + "Id": 636, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "Rank": 3 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Rank": 4, "CommandName": "Get-PnPSearchCrawlLog", - "Id": 637 + "Id": 637, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "Rank": 4 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Rank": 5, "CommandName": "Get-PnPSearchCrawlLog", - "Id": 638 + "Id": 638, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "Rank": 5 }, { - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Rank": 6, "CommandName": "Get-PnPSearchCrawlLog", - "Id": 639 + "Id": 639, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "Rank": 6 }, { - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Rank": 7, "CommandName": "Get-PnPSearchCrawlLog", - "Id": 640 + "Id": 640, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "Rank": 7 }, { - "Command": "Get-PnPSearchSettings", - "Rank": 1, "CommandName": "Get-PnPSearchSettings", - "Id": 641 + "Id": 641, + "Command": "Get-PnPSearchSettings", + "Rank": 1 }, { - "Command": "Get-PnPServiceCurrentHealth", - "Rank": 1, "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 642 + "Id": 642, + "Command": "Get-PnPServiceCurrentHealth", + "Rank": 1 }, { - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Rank": 2, "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 643 + "Id": 643, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "Rank": 2 }, { - "Command": "Get-PnPServiceHealthIssue", - "Rank": 1, "CommandName": "Get-PnPServiceHealthIssue", - "Id": 644 + "Id": 644, + "Command": "Get-PnPServiceHealthIssue", + "Rank": 1 }, { - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Rank": 2, "CommandName": "Get-PnPServiceHealthIssue", - "Id": 645 + "Id": 645, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "Rank": 2 }, { - "Command": "Get-PnPSharePointAddIn", - "Rank": 1, "CommandName": "Get-PnPSharePointAddIn", - "Id": 646 + "Id": 646, + "Command": "Get-PnPSharePointAddIn", + "Rank": 1 }, { - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Rank": 2, "CommandName": "Get-PnPSharePointAddIn", - "Id": 647 + "Id": 647, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "Rank": 2 }, { - "Command": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1, "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Id": 648 + "Id": 648, + "Command": "Get-PnPSharingForNonOwnersOfSite", + "Rank": 1 }, { - "Command": "Get-PnPSite", - "Rank": 1, "CommandName": "Get-PnPSite", - "Id": 649 + "Id": 649, + "Command": "Get-PnPSite", + "Rank": 1 }, { - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Rank": 2, "CommandName": "Get-PnPSite", - "Id": 650 + "Id": 650, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "Rank": 2 }, { - "Command": "Get-PnPSiteClosure", - "Rank": 1, "CommandName": "Get-PnPSiteClosure", - "Id": 651 + "Id": 651, + "Command": "Get-PnPSiteClosure", + "Rank": 1 }, { - "Command": "Get-PnPSiteCollectionAdmin", - "Rank": 1, "CommandName": "Get-PnPSiteCollectionAdmin", - "Id": 652 + "Id": 652, + "Command": "Get-PnPSiteCollectionAdmin", + "Rank": 1 }, { - "Command": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1, "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 653 + "Id": 653, + "Command": "Get-PnPSiteCollectionAppCatalog", + "Rank": 1 }, { - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Rank": 2, "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 654 + "Id": 654, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "Rank": 2 }, { - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Rank": 3, "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 655 + "Id": 655, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "Rank": 3 }, { - "Command": "Get-PnPSiteCollectionTermStore", - "Rank": 1, "CommandName": "Get-PnPSiteCollectionTermStore", - "Id": 656 + "Id": 656, + "Command": "Get-PnPSiteCollectionTermStore", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesign", - "Rank": 1, "CommandName": "Get-PnPSiteDesign", - "Id": 657 + "Id": 657, + "Command": "Get-PnPSiteDesign", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, "CommandName": "Get-PnPSiteDesign", - "Id": 658 + "Id": 658, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2 }, { - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "CommandName": "Get-PnPSiteDesignRights", - "Id": 659 + "Id": 659, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesignRun", - "Rank": 1, "CommandName": "Get-PnPSiteDesignRun", - "Id": 660 + "Id": 660, + "Command": "Get-PnPSiteDesignRun", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Rank": 2, "CommandName": "Get-PnPSiteDesignRun", - "Id": 661 + "Id": 661, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "Rank": 2 }, { - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1, "CommandName": "Get-PnPSiteDesignTask", - "Id": 662 + "Id": 662, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesignTask", - "Rank": 2, "CommandName": "Get-PnPSiteDesignTask", - "Id": 663 + "Id": 663, + "Command": "Get-PnPSiteDesignTask", + "Rank": 2 }, { - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 3, "CommandName": "Get-PnPSiteDesignTask", - "Id": 664 + "Id": 664, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteGroup", - "Rank": 1, "CommandName": "Get-PnPSiteGroup", - "Id": 665 + "Id": 665, + "Command": "Get-PnPSiteGroup", + "Rank": 1 }, { - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 2, "CommandName": "Get-PnPSiteGroup", - "Id": 666 + "Id": 666, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Rank": 2 }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Rank": 3, "CommandName": "Get-PnPSiteGroup", - "Id": 667 + "Id": 667, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 4, "CommandName": "Get-PnPSiteGroup", - "Id": 668 + "Id": 668, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Rank": 4 }, { - "Command": "Get-PnPSitePolicy", - "Rank": 1, "CommandName": "Get-PnPSitePolicy", - "Id": 669 + "Id": 669, + "Command": "Get-PnPSitePolicy", + "Rank": 1 }, { - "Command": "Get-PnPSitePolicy -AllAvailable", - "Rank": 2, "CommandName": "Get-PnPSitePolicy", - "Id": 670 + "Id": 670, + "Command": "Get-PnPSitePolicy -AllAvailable", + "Rank": 2 }, { - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 3, "CommandName": "Get-PnPSitePolicy", - "Id": 671 + "Id": 671, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteScript", - "Rank": 1, "CommandName": "Get-PnPSiteScript", - "Id": 672 + "Id": 672, + "Command": "Get-PnPSiteScript", + "Rank": 1 }, { - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, "CommandName": "Get-PnPSiteScript", - "Id": 673 + "Id": 673, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2 }, { - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Rank": 1, "CommandName": "Get-PnPSiteScriptFromList", - "Id": 674 + "Id": 674, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "Rank": 1 }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Rank": 2, "CommandName": "Get-PnPSiteScriptFromList", - "Id": 675 + "Id": 675, + "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\"", - "Rank": 3, "CommandName": "Get-PnPSiteScriptFromList", - "Id": 676 + "Id": 676, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Rank": 1, "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 677 + "Id": 677, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "Rank": 1 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Rank": 2, "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 678 + "Id": 678, + "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\"", - "Rank": 3, "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 679 + "Id": 679, + "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", - "Rank": 4, "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 680 + "Id": 680, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "Rank": 4 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Rank": 5, "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 681 + "Id": 681, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "Rank": 5 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "Rank": 6, "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 682 + "Id": 682, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "Rank": 6 }, { - "Command": "Get-PnPSiteSearchQueryResults", - "Rank": 1, "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 683 + "Id": 683, + "Command": "Get-PnPSiteSearchQueryResults", + "Rank": 1 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Rank": 2, "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 684 + "Id": 684, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "Rank": 2 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Rank": 3, "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 685 + "Id": 685, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Rank": 4, "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 686 + "Id": 686, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "Rank": 4 }, { - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Rank": 5, "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 687 + "Id": 687, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "Rank": 5 }, { - "Command": "Get-PnPSiteSearchQueryResults -All", - "Rank": 6, "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 688 + "Id": 688, + "Command": "Get-PnPSiteSearchQueryResults -All", + "Rank": 6 }, { - "Command": "Get-PnPSiteSensitivityLabel", - "Rank": 1, "CommandName": "Get-PnPSiteSensitivityLabel", - "Id": 689 + "Id": 689, + "Command": "Get-PnPSiteSensitivityLabel", + "Rank": 1 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Rank": 1, "CommandName": "Get-PnPSiteTemplate", - "Id": 690 + "Id": 690, + "Command": "Get-PnPSiteTemplate -Out template.pnp", + "Rank": 1 }, { - "Command": "Get-PnPSiteTemplate -Out template.xml", - "Rank": 2, "CommandName": "Get-PnPSiteTemplate", - "Id": 691 + "Id": 691, + "Command": "Get-PnPSiteTemplate -Out template.xml", + "Rank": 2 }, { - "Command": "Get-PnPSiteTemplate -Out template.md", - "Rank": 3, "CommandName": "Get-PnPSiteTemplate", - "Id": 692 + "Id": 692, + "Command": "Get-PnPSiteTemplate -Out template.md", + "Rank": 3 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Rank": 4, "CommandName": "Get-PnPSiteTemplate", - "Id": 693 + "Id": 693, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "Rank": 4 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Rank": 5, "CommandName": "Get-PnPSiteTemplate", - "Id": 694 + "Id": 694, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "Rank": 5 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Rank": 6, "CommandName": "Get-PnPSiteTemplate", - "Id": 695 + "Id": 695, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "Rank": 6 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Rank": 7, "CommandName": "Get-PnPSiteTemplate", - "Id": 696 + "Id": 696, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "Rank": 7 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Rank": 8, "CommandName": "Get-PnPSiteTemplate", - "Id": 697 + "Id": 697, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "Rank": 8 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Rank": 9, "CommandName": "Get-PnPSiteTemplate", - "Id": 698 + "Id": 698, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "Rank": 9 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Rank": 10, "CommandName": "Get-PnPSiteTemplate", - "Id": 699 + "Id": 699, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "Rank": 10 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Rank": 11, "CommandName": "Get-PnPSiteTemplate", - "Id": 700 + "Id": 700, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "Rank": 11 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Rank": 12, "CommandName": "Get-PnPSiteTemplate", - "Id": 701 + "Id": 701, + "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\"", - "Rank": 13, "CommandName": "Get-PnPSiteTemplate", - "Id": 702 + "Id": 702, + "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", - "Rank": 14, "CommandName": "Get-PnPSiteTemplate", - "Id": 703 + "Id": 703, + "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", - "Rank": 1, "CommandName": "Get-PnPSiteUserInvitations", - "Id": 704 + "Id": 704, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Rank": 1 }, { - "Command": "Get-PnPSiteVersionPolicy", - "Rank": 1, "CommandName": "Get-PnPSiteVersionPolicy", - "Id": 705 + "Id": 705, + "Command": "Get-PnPSiteVersionPolicy", + "Rank": 1 }, { - "Command": "Get-PnPStorageEntity", - "Rank": 1, "CommandName": "Get-PnPStorageEntity", - "Id": 706 + "Id": 706, + "Command": "Get-PnPStorageEntity", + "Rank": 1 }, { - "Command": "Get-PnPStorageEntity -Key MyKey", - "Rank": 2, "CommandName": "Get-PnPStorageEntity", - "Id": 707 + "Id": 707, + "Command": "Get-PnPStorageEntity -Key MyKey", + "Rank": 2 }, { - "Command": "Get-PnPStorageEntity -Scope Site", - "Rank": 3, "CommandName": "Get-PnPStorageEntity", - "Id": 708 + "Id": 708, + "Command": "Get-PnPStorageEntity -Scope Site", + "Rank": 3 }, { - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 4, "CommandName": "Get-PnPStorageEntity", - "Id": 709 + "Id": 709, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "Rank": 4 }, { - "Command": "Get-PnPStoredCredential -Name O365", - "Rank": 1, "CommandName": "Get-PnPStoredCredential", - "Id": 710 + "Id": 710, + "Command": "Get-PnPStoredCredential -Name O365", + "Rank": 1 }, { - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Id": 711 + "Id": 711, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 1 }, { - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Id": 712 + "Id": 712, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 1 }, { - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Rank": 1, "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Id": 713 + "Id": 713, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "Rank": 1 }, { - "Command": "Get-PnPSubWeb", - "Rank": 1, "CommandName": "Get-PnPSubWeb", - "Id": 714 + "Id": 714, + "Command": "Get-PnPSubWeb", + "Rank": 1 }, { - "Command": "Get-PnPSubWeb -Recurse", - "Rank": 2, "CommandName": "Get-PnPSubWeb", - "Id": 715 + "Id": 715, + "Command": "Get-PnPSubWeb -Recurse", + "Rank": 2 }, { - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Rank": 3, "CommandName": "Get-PnPSubWeb", - "Id": 716 + "Id": 716, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "Rank": 3 }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Rank": 4, "CommandName": "Get-PnPSubWeb", - "Id": 717 + "Id": 717, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "Rank": 4 }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Rank": 5, "CommandName": "Get-PnPSubWeb", - "Id": 718 + "Id": 718, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "Rank": 5 }, { - "Command": "Get-PnPSyntexModel", - "Rank": 1, "CommandName": "Get-PnPSyntexModel", - "Id": 719 + "Id": 719, + "Command": "Get-PnPSyntexModel", + "Rank": 1 }, { - "Command": "Get-PnPSyntexModel -Identity 1", - "Rank": 2, "CommandName": "Get-PnPSyntexModel", - "Id": 720 + "Id": 720, + "Command": "Get-PnPSyntexModel -Identity 1", + "Rank": 2 }, { - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Rank": 3, "CommandName": "Get-PnPSyntexModel", - "Id": 721 + "Id": 721, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "Rank": 3 }, { - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Rank": 1, "CommandName": "Get-PnPSyntexModelPublication", - "Id": 722 + "Id": 722, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "Rank": 1 }, { - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Rank": 1, "CommandName": "Get-PnPTaxonomyItem", - "Id": 723 + "Id": 723, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "Rank": 1 }, { - "Command": "Get-PnPTeamsApp", - "Rank": 1, "CommandName": "Get-PnPTeamsApp", - "Id": 724 + "Id": 724, + "Command": "Get-PnPTeamsApp", + "Rank": 1 }, { - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Rank": 2, "CommandName": "Get-PnPTeamsApp", - "Id": 725 + "Id": 725, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "Rank": 2 }, { - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Rank": 3, "CommandName": "Get-PnPTeamsApp", - "Id": 726 + "Id": 726, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "Rank": 3 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Rank": 1, "CommandName": "Get-PnPTeamsChannel", - "Id": 727 + "Id": 727, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "Rank": 1 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Rank": 2, "CommandName": "Get-PnPTeamsChannel", - "Id": 728 + "Id": 728, + "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\"", - "Rank": 3, "CommandName": "Get-PnPTeamsChannel", - "Id": 729 + "Id": 729, + "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\"", - "Rank": 1, "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 730 + "Id": 730, + "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\"", - "Rank": 2, "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 731 + "Id": 731, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Rank": 2 }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 732 + "Id": 732, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "Rank": 1 }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 733 + "Id": 733, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "Rank": 2 }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 734 + "Id": 734, + "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", - "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 735 + "Id": 735, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "Rank": 2 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 1, "CommandName": "Get-PnPTeamsChannelUser", - "Id": 736 + "Id": 736, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "Rank": 1 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Rank": 2, "CommandName": "Get-PnPTeamsChannelUser", - "Id": 737 + "Id": 737, + "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", - "Rank": 3, "CommandName": "Get-PnPTeamsChannelUser", - "Id": 738 + "Id": 738, + "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", - "Rank": 4, "CommandName": "Get-PnPTeamsChannelUser", - "Id": 739 + "Id": 739, + "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", - "Rank": 1, "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 740 + "Id": 740, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "Rank": 1 }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Rank": 2, "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 741 + "Id": 741, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "Rank": 2 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Rank": 1, "CommandName": "Get-PnPTeamsTab", - "Id": 742 + "Id": 742, + "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\"", - "Rank": 2, "CommandName": "Get-PnPTeamsTab", - "Id": 743 + "Id": 743, + "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", - "Rank": 3, "CommandName": "Get-PnPTeamsTab", - "Id": 744 + "Id": 744, + "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\"", - "Rank": 4, "CommandName": "Get-PnPTeamsTab", - "Id": 745 + "Id": 745, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "Rank": 4 }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Rank": 5, "CommandName": "Get-PnPTeamsTab", - "Id": 746 + "Id": 746, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "Rank": 5 }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, "CommandName": "Get-PnPTeamsTag", - "Id": 747 + "Id": 747, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Rank": 1 }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 2, "CommandName": "Get-PnPTeamsTag", - "Id": 748 + "Id": 748, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Rank": 2 }, { - "Command": "Get-PnPTeamsTeam", - "Rank": 1, "CommandName": "Get-PnPTeamsTeam", - "Id": 749 + "Id": 749, + "Command": "Get-PnPTeamsTeam", + "Rank": 1 }, { - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Rank": 2, "CommandName": "Get-PnPTeamsTeam", - "Id": 750 + "Id": 750, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "Rank": 2 }, { - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Rank": 3, "CommandName": "Get-PnPTeamsTeam", - "Id": 751 + "Id": 751, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "Rank": 3 }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Rank": 4, "CommandName": "Get-PnPTeamsTeam", - "Id": 752 + "Id": 752, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "Rank": 4 }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, "CommandName": "Get-PnPTeamsTeam", - "Id": 753 + "Id": 753, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "Rank": 5 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam", - "Rank": 1, "CommandName": "Get-PnPTeamsUser", - "Id": 754 + "Id": 754, + "Command": "Get-PnPTeamsUser -Team MyTeam", + "Rank": 1 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Rank": 2, "CommandName": "Get-PnPTeamsUser", - "Id": 755 + "Id": 755, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "Rank": 2 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Rank": 3, "CommandName": "Get-PnPTeamsUser", - "Id": 756 + "Id": 756, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "Rank": 3 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Rank": 4, "CommandName": "Get-PnPTeamsUser", - "Id": 757 + "Id": 757, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "Rank": 4 }, { - "Command": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1, "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Id": 758 + "Id": 758, + "Command": "Get-PnPTemporarilyDisableAppBar", + "Rank": 1 }, { - "Command": "Get-PnPTenant", - "Rank": 1, "CommandName": "Get-PnPTenant", - "Id": 759 + "Id": 759, + "Command": "Get-PnPTenant", + "Rank": 1 }, { - "Command": "Get-PnPTenantAppCatalogUrl", - "Rank": 1, "CommandName": "Get-PnPTenantAppCatalogUrl", - "Id": 760 + "Id": 760, + "Command": "Get-PnPTenantAppCatalogUrl", + "Rank": 1 }, { - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Rank": 1, "CommandName": "Get-PnPTenantCdnEnabled", - "Id": 761 + "Id": 761, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "Rank": 1 }, { - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Rank": 1, "CommandName": "Get-PnPTenantCdnOrigin", - "Id": 762 + "Id": 762, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "Rank": 1 }, { - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Rank": 1, "CommandName": "Get-PnPTenantCdnPolicies", - "Id": 763 + "Id": 763, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "Rank": 1 }, { - "Command": "Get-PnPTenantDeletedSite", - "Rank": 1, "CommandName": "Get-PnPTenantDeletedSite", - "Id": 764 + "Id": 764, + "Command": "Get-PnPTenantDeletedSite", + "Rank": 1 }, { - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 2, "CommandName": "Get-PnPTenantDeletedSite", - "Id": 765 + "Id": 765, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 2 }, { - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Rank": 3, "CommandName": "Get-PnPTenantDeletedSite", - "Id": 766 + "Id": 766, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "Rank": 3 }, { - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Rank": 4, "CommandName": "Get-PnPTenantDeletedSite", - "Id": 767 + "Id": 767, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "Rank": 4 }, { - "Command": "Get-PnPTenantId", - "Rank": 1, "CommandName": "Get-PnPTenantId", - "Id": 768 + "Id": 768, + "Command": "Get-PnPTenantId", + "Rank": 1 }, { - "Command": "Get-PnPTenantId contoso", - "Rank": 2, "CommandName": "Get-PnPTenantId", - "Id": 769 + "Id": 769, + "Command": "Get-PnPTenantId contoso", + "Rank": 2 }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Rank": 3, "CommandName": "Get-PnPTenantId", - "Id": 770 + "Id": 770, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "Rank": 3 }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Rank": 4, "CommandName": "Get-PnPTenantId", - "Id": 771 + "Id": 771, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "Rank": 4 }, { - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "Rank": 1, "CommandName": "Get-PnPTenantInfo", - "Id": 772 + "Id": 772, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "Rank": 1 }, { - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "Rank": 2, "CommandName": "Get-PnPTenantInfo", - "Id": 773 + "Id": 773, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "Rank": 2 }, { - "Command": "Get-PnPTenantInfo", - "Rank": 3, "CommandName": "Get-PnPTenantInfo", - "Id": 774 + "Id": 774, + "Command": "Get-PnPTenantInfo", + "Rank": 3 }, { - "Command": "Get-PnPTenantInfo -CurrentTenant", - "Rank": 4, "CommandName": "Get-PnPTenantInfo", - "Id": 775 + "Id": 775, + "Command": "Get-PnPTenantInfo -CurrentTenant", + "Rank": 4 }, { - "Command": "Get-PnPTenantInstance", - "Rank": 1, "CommandName": "Get-PnPTenantInstance", - "Id": 776 + "Id": 776, + "Command": "Get-PnPTenantInstance", + "Rank": 1 }, { - "Command": "Get-PnPTenantRecycleBinItem", - "Rank": 1, "CommandName": "Get-PnPTenantRecycleBinItem", - "Id": 777 + "Id": 777, + "Command": "Get-PnPTenantRecycleBinItem", + "Rank": 1 }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Rank": 1, "CommandName": "Get-PnPTenantSequence", - "Id": 778 + "Id": 778, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "Rank": 1 }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Rank": 2, "CommandName": "Get-PnPTenantSequence", - "Id": 779 + "Id": 779, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "Rank": 2 }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Rank": 1, "CommandName": "Get-PnPTenantSequenceSite", - "Id": 780 + "Id": 780, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "Rank": 1 }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Rank": 2, "CommandName": "Get-PnPTenantSequenceSite", - "Id": 781 + "Id": 781, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "Rank": 2 }, { - "Command": "Get-PnPTenantSite", - "Rank": 1, "CommandName": "Get-PnPTenantSite", - "Id": 782 + "Id": 782, + "Command": "Get-PnPTenantSite", + "Rank": 1 }, { - "Command": "Get-PnPTenantSite -Detailed", - "Rank": 2, "CommandName": "Get-PnPTenantSite", - "Id": 783 + "Id": 783, + "Command": "Get-PnPTenantSite -Detailed", + "Rank": 2 }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Rank": 3, "CommandName": "Get-PnPTenantSite", - "Id": 784 + "Id": 784, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "Rank": 3 }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Rank": 4, "CommandName": "Get-PnPTenantSite", - "Id": 785 + "Id": 785, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "Rank": 4 }, { - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Rank": 5, "CommandName": "Get-PnPTenantSite", - "Id": 786 + "Id": 786, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "Rank": 5 }, { - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Rank": 6, "CommandName": "Get-PnPTenantSite", - "Id": 787 + "Id": 787, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "Rank": 6 }, { - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Rank": 7, "CommandName": "Get-PnPTenantSite", - "Id": 788 + "Id": 788, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "Rank": 7 }, { - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Rank": 8, "CommandName": "Get-PnPTenantSite", - "Id": 789 + "Id": 789, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "Rank": 8 }, { - "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Rank": 9, "CommandName": "Get-PnPTenantSite", - "Id": 790 + "Id": 790, + "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "Rank": 9 }, { - "Command": "Get-PnPTenantSyncClientRestriction", - "Rank": 1, "CommandName": "Get-PnPTenantSyncClientRestriction", - "Id": 791 + "Id": 791, + "Command": "Get-PnPTenantSyncClientRestriction", + "Rank": 1 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Rank": 1, "CommandName": "Get-PnPTenantTemplate", - "Id": 792 + "Id": 792, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "Rank": 1 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Rank": 2, "CommandName": "Get-PnPTenantTemplate", - "Id": 793 + "Id": 793, + "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", - "Rank": 3, "CommandName": "Get-PnPTenantTemplate", - "Id": 794 + "Id": 794, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "Rank": 3 }, { - "Command": "Get-PnPTenantTheme", - "Rank": 1, "CommandName": "Get-PnPTenantTheme", - "Id": 795 + "Id": 795, + "Command": "Get-PnPTenantTheme", + "Rank": 1 }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 2, "CommandName": "Get-PnPTenantTheme", - "Id": 796 + "Id": 796, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Rank": 2 }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Rank": 3, "CommandName": "Get-PnPTenantTheme", - "Id": 797 + "Id": 797, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "Rank": 3 }, { - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 1, "CommandName": "Get-PnPTerm", - "Id": 798 + "Id": 798, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 1 }, { - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, "CommandName": "Get-PnPTerm", - "Id": 799 + "Id": 799, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2 }, { - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, "CommandName": "Get-PnPTerm", - "Id": 800 + "Id": 800, + "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", - "Rank": 4, "CommandName": "Get-PnPTerm", - "Id": 801 + "Id": 801, + "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", - "Rank": 5, "CommandName": "Get-PnPTerm", - "Id": 802 + "Id": 802, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "Rank": 5 }, { - "Command": "Get-PnPTermGroup", - "Rank": 1, "CommandName": "Get-PnPTermGroup", - "Id": 803 + "Id": 803, + "Command": "Get-PnPTermGroup", + "Rank": 1 }, { - "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Rank": 2, "CommandName": "Get-PnPTermGroup", - "Id": 804 + "Id": 804, + "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "Rank": 2 }, { - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Rank": 3, "CommandName": "Get-PnPTermGroup", - "Id": 805 + "Id": 805, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "Rank": 3 }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Rank": 1, "CommandName": "Get-PnPTermLabel", - "Id": 806 + "Id": 806, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "Rank": 1 }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Rank": 2, "CommandName": "Get-PnPTermLabel", - "Id": 807 + "Id": 807, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "Rank": 2 }, { - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, "CommandName": "Get-PnPTermLabel", - "Id": 808 + "Id": 808, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 3 }, { - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Rank": 1, "CommandName": "Get-PnPTermSet", - "Id": 809 + "Id": 809, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "Rank": 1 }, { - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, "CommandName": "Get-PnPTermSet", - "Id": 810 + "Id": 810, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2 }, { - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Rank": 3, "CommandName": "Get-PnPTermSet", - "Id": 811 + "Id": 811, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "Rank": 3 }, { - "Command": "Get-PnPTheme", - "Rank": 1, "CommandName": "Get-PnPTheme", - "Id": 812 + "Id": 812, + "Command": "Get-PnPTheme", + "Rank": 1 }, { - "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Rank": 2, "CommandName": "Get-PnPTheme", - "Id": 813 + "Id": 813, + "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "Rank": 2 }, { - "Command": "Get-PnPTimeZoneId", - "Rank": 1, "CommandName": "Get-PnPTimeZoneId", - "Id": 814 + "Id": 814, + "Command": "Get-PnPTimeZoneId", + "Rank": 1 }, { - "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Rank": 2, "CommandName": "Get-PnPTimeZoneId", - "Id": 815 + "Id": 815, + "Command": "Get-PnPTimeZoneId -Match Stockholm", + "Rank": 2 }, { - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Rank": 1, "CommandName": "Get-PnPUnfurlLink", - "Id": 816 + "Id": 816, + "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)", - "Rank": 1, "CommandName": "Get-PnPUnifiedAuditLog", - "Id": 817 + "Id": 817, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "Rank": 1 }, { - "Command": "Get-PnPUPABulkImportStatus", - "Rank": 1, "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 818 + "Id": 818, + "Command": "Get-PnPUPABulkImportStatus", + "Rank": 1 }, { - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Rank": 2, "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 819 + "Id": 819, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "Rank": 2 }, { - "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Rank": 3, "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 820 + "Id": 820, + "Command": "Get-PnPUPABulkImportStatus -JobId ", + "Rank": 3 }, { - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Rank": 4, "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 821 + "Id": 821, + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "Rank": 4 }, { - "Command": "Get-PnPUser", - "Rank": 1, "CommandName": "Get-PnPUser", - "Id": 822 + "Id": 822, + "Command": "Get-PnPUser", + "Rank": 1 }, { - "Command": "Get-PnPUser -Identity 23", - "Rank": 2, "CommandName": "Get-PnPUser", - "Id": 823 + "Id": 823, + "Command": "Get-PnPUser -Identity 23", + "Rank": 2 }, { - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Rank": 3, "CommandName": "Get-PnPUser", - "Id": 824 + "Id": 824, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "Rank": 3 }, { - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Rank": 4, "CommandName": "Get-PnPUser", - "Id": 825 + "Id": 825, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "Rank": 4 }, { - "Command": "Get-PnPUser -WithRightsAssigned", - "Rank": 5, "CommandName": "Get-PnPUser", - "Id": 826 + "Id": 826, + "Command": "Get-PnPUser -WithRightsAssigned", + "Rank": 5 }, { - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Rank": 6, "CommandName": "Get-PnPUser", - "Id": 827 + "Id": 827, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "Rank": 6 }, { - "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Rank": 7, "CommandName": "Get-PnPUser", - "Id": 828 + "Id": 828, + "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "Rank": 7 }, { - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Rank": 1, "CommandName": "Get-PnPUserOneDriveQuota", - "Id": 829 + "Id": 829, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "Rank": 1 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Rank": 1, "CommandName": "Get-PnPUserProfileProperty", - "Id": 830 + "Id": 830, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "Rank": 1 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Rank": 2, "CommandName": "Get-PnPUserProfileProperty", - "Id": 831 + "Id": 831, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "Rank": 2 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Rank": 3, "CommandName": "Get-PnPUserProfileProperty", - "Id": 832 + "Id": 832, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "Rank": 3 }, { - "Command": "Get-PnPView -List \"Demo List\"", - "Rank": 1, "CommandName": "Get-PnPView", - "Id": 833 + "Id": 833, + "Command": "Get-PnPView -List \"Demo List\"", + "Rank": 1 }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Rank": 2, "CommandName": "Get-PnPView", - "Id": 834 + "Id": 834, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "Rank": 2 }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Rank": 3, "CommandName": "Get-PnPView", - "Id": 835 + "Id": 835, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "Rank": 3 }, { - "Command": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1, "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 836 + "Id": 836, + "Command": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 1 }, { - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 2, "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 837 + "Id": 837, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Rank": 2 }, { - "Command": "Get-PnPWeb", - "Rank": 1, "CommandName": "Get-PnPWeb", - "Id": 838 + "Id": 838, + "Command": "Get-PnPWeb", + "Rank": 1 }, { - "Command": "Get-PnPWebHeader", - "Rank": 1, "CommandName": "Get-PnPWebHeader", - "Id": 839 + "Id": 839, + "Command": "Get-PnPWebHeader", + "Rank": 1 }, { - "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Rank": 1, "CommandName": "Get-PnPWebhookSubscriptions", - "Id": 840 + "Id": 840, + "Command": "Get-PnPWebhookSubscriptions -List MyList", + "Rank": 1 }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Rank": 1, "CommandName": "Get-PnPWebPart", - "Id": 841 + "Id": 841, + "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", - "Rank": 2, "CommandName": "Get-PnPWebPart", - "Id": 842 + "Id": 842, + "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", - "Rank": 1, "CommandName": "Get-PnPWebPartProperty", - "Id": 843 + "Id": 843, + "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\"", - "Rank": 2, "CommandName": "Get-PnPWebPartProperty", - "Id": 844 + "Id": 844, + "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", - "Rank": 1, "CommandName": "Get-PnPWebPartXml", - "Id": 845 + "Id": 845, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1 }, { - "Command": "Get-PnPWebTemplates", - "Rank": 1, "CommandName": "Get-PnPWebTemplates", - "Id": 846 + "Id": 846, + "Command": "Get-PnPWebTemplates", + "Rank": 1 }, { - "Command": "Get-PnPWebTemplates -LCID 1033", - "Rank": 2, "CommandName": "Get-PnPWebTemplates", - "Id": 847 + "Id": 847, + "Command": "Get-PnPWebTemplates -LCID 1033", + "Rank": 2 }, { - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Rank": 3, "CommandName": "Get-PnPWebTemplates", - "Id": 848 + "Id": 848, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "Rank": 3 }, { - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Rank": 1, "CommandName": "Get-PnPWikiPageContent", - "Id": 849 + "Id": 849, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "Rank": 1 }, { - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Rank": 1, "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 850 + "Id": 850, + "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 Write -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2, "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 851 + "Id": 851, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -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\"", - "Rank": 1, "CommandName": "Grant-PnPHubSiteRights", - "Id": 852 + "Id": 852, + "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\"", - "Rank": 1, "CommandName": "Grant-PnPSiteDesignRights", - "Id": 853 + "Id": 853, + "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\"", - "Rank": 1, "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Id": 854 + "Id": 854, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Rank": 1 }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Rank": 1, "CommandName": "Import-PnPTaxonomy", - "Id": 855 + "Id": 855, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "Rank": 1 }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Rank": 2, "CommandName": "Import-PnPTaxonomy", - "Id": 856 + "Id": 856, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "Rank": 2 }, { - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Rank": 3, "CommandName": "Import-PnPTaxonomy", - "Id": 857 + "Id": 857, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "Rank": 3 }, { - "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Rank": 1, "CommandName": "Import-PnPTermGroupFromXml", - "Id": 858 + "Id": 858, + "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "Rank": 1 }, { - "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Rank": 2, "CommandName": "Import-PnPTermGroupFromXml", - "Id": 859 + "Id": 859, + "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "Rank": 2 }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Rank": 1, "CommandName": "Import-PnPTermSet", - "Id": 860 + "Id": 860, + "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}'", - "Rank": 2, "CommandName": "Import-PnPTermSet", - "Id": 861 + "Id": 861, + "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'", - "Rank": 3, "CommandName": "Import-PnPTermSet", - "Id": 862 + "Id": 862, + "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", - "Rank": 1, "CommandName": "Install-PnPApp", - "Id": 863 + "Id": 863, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "CommandName": "Install-PnPApp", - "Id": 864 + "Id": 864, + "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'", - "Rank": 1, "CommandName": "Invoke-PnPGraphMethod", - "Id": 865 + "Id": 865, + "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", - "Rank": 2, "CommandName": "Invoke-PnPGraphMethod", - "Id": 866 + "Id": 866, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "Rank": 2 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Rank": 3, "CommandName": "Invoke-PnPGraphMethod", - "Id": 867 + "Id": 867, + "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", - "Rank": 4, "CommandName": "Invoke-PnPGraphMethod", - "Id": 868 + "Id": 868, + "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\"", - "Rank": 5, "CommandName": "Invoke-PnPGraphMethod", - "Id": 869 + "Id": 869, + "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", - "Rank": 6, "CommandName": "Invoke-PnPGraphMethod", - "Id": 870 + "Id": 870, + "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\"", - "Rank": 7, "CommandName": "Invoke-PnPGraphMethod", - "Id": 871 + "Id": 871, + "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", - "Rank": 1, "CommandName": "Invoke-PnPListDesign", - "Id": 872 + "Id": 872, + "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\"", - "Rank": 2, "CommandName": "Invoke-PnPListDesign", - "Id": 873 + "Id": 873, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Rank": 2 }, { - "Command": "Invoke-PnPQuery -RetryCount 5", - "Rank": 1, "CommandName": "Invoke-PnPQuery", - "Id": 874 + "Id": 874, + "Command": "Invoke-PnPQuery -RetryCount 5", + "Rank": 1 }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "CommandName": "Invoke-PnPSiteDesign", - "Id": 875 + "Id": 875, + "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\"", - "Rank": 2, "CommandName": "Invoke-PnPSiteDesign", - "Id": 876 + "Id": 876, + "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", - "Rank": 1, "CommandName": "Invoke-PnPSiteScript", - "Id": 877 + "Id": 877, + "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", - "Rank": 1, "CommandName": "Invoke-PnPSiteSwap", - "Id": 878 + "Id": 878, + "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", - "Rank": 2, "CommandName": "Invoke-PnPSiteSwap", - "Id": 879 + "Id": 879, + "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", - "Rank": 3, "CommandName": "Invoke-PnPSiteSwap", - "Id": 880 + "Id": 880, + "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", - "Rank": 1, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 881 + "Id": 881, + "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "Rank": 1 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Rank": 2, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 882 + "Id": 882, + "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\"}", - "Rank": 3, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 883 + "Id": 883, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Rank": 3 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Rank": 4, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 884 + "Id": 884, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "Rank": 4 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Rank": 5, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 885 + "Id": 885, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "Rank": 5 }, { - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Rank": 6, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 886 + "Id": 886, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "Rank": 6 }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Rank": 7, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 887 + "Id": 887, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "Rank": 7 }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Rank": 8, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 888 + "Id": 888, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "Rank": 8 }, { - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Rank": 1, "CommandName": "Invoke-PnPSPRestMethod", - "Id": 889 + "Id": 889, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "Rank": 1 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Rank": 1, "CommandName": "Invoke-PnPTenantTemplate", - "Id": 890 + "Id": 890, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "Rank": 1 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Rank": 2, "CommandName": "Invoke-PnPTenantTemplate", - "Id": 891 + "Id": 891, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "Rank": 2 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3, "CommandName": "Invoke-PnPTenantTemplate", - "Id": 892 + "Id": 892, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Rank": 3 }, { - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Rank": 1, "CommandName": "Invoke-PnPWebAction", - "Id": 893 + "Id": 893, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "Rank": 1 }, { - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Rank": 2, "CommandName": "Invoke-PnPWebAction", - "Id": 894 + "Id": 894, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "Rank": 2 }, { - "Command": "Measure-PnPList \"Documents\"", - "Rank": 1, "CommandName": "Measure-PnPList", - "Id": 895 + "Id": 895, + "Command": "Measure-PnPList \"Documents\"", + "Rank": 1 }, { - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Rank": 2, "CommandName": "Measure-PnPList", - "Id": 896 + "Id": 896, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "Rank": 2 }, { - "Command": "Measure-PnPWeb", - "Rank": 1, "CommandName": "Measure-PnPWeb", - "Id": 897 + "Id": 897, + "Command": "Measure-PnPWeb", + "Rank": 1 }, { - "Command": "Measure-PnPWeb $web -Recursive", - "Rank": 2, "CommandName": "Measure-PnPWeb", - "Id": 898 + "Id": 898, + "Command": "Measure-PnPWeb $web -Recursive", + "Rank": 2 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Rank": 1, "CommandName": "Move-PnPFile", - "Id": 899 + "Id": 899, + "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", - "Rank": 2, "CommandName": "Move-PnPFile", - "Id": 900 + "Id": 900, + "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", - "Rank": 3, "CommandName": "Move-PnPFile", - "Id": 901 + "Id": 901, + "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", - "Rank": 4, "CommandName": "Move-PnPFile", - "Id": 902 + "Id": 902, + "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'", - "Rank": 1, "CommandName": "Move-PnPFolder", - "Id": 903 + "Id": 903, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "Rank": 1 }, { - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Rank": 2, "CommandName": "Move-PnPFolder", - "Id": 904 + "Id": 904, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "Rank": 2 }, { - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, "CommandName": "Move-PnPListItemToRecycleBin", - "Id": 905 + "Id": 905, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "Rank": 1 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Rank": 1, "CommandName": "Move-PnPPageComponent", - "Id": 906 + "Id": 906, + "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", - "Rank": 2, "CommandName": "Move-PnPPageComponent", - "Id": 907 + "Id": 907, + "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", - "Rank": 3, "CommandName": "Move-PnPPageComponent", - "Id": 908 + "Id": 908, + "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", - "Rank": 4, "CommandName": "Move-PnPPageComponent", - "Id": 909 + "Id": 909, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "Rank": 4 }, { - "Command": "Move-PnPRecycleBinItem", - "Rank": 1, "CommandName": "Move-PnpRecycleBinItem", - "Id": 910 + "Id": 910, + "Command": "Move-PnPRecycleBinItem", + "Rank": 1 }, { - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Rank": 2, "CommandName": "Move-PnpRecycleBinItem", - "Id": 911 + "Id": 911, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "Rank": 2 }, { - "Command": "Move-PnPRecycleBinItem -Force", - "Rank": 3, "CommandName": "Move-PnpRecycleBinItem", - "Id": 912 + "Id": 912, + "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", - "Rank": 1, "CommandName": "Move-PnPTerm", - "Id": 913 + "Id": 913, + "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\"", - "Rank": 2, "CommandName": "Move-PnPTerm", - "Id": 914 + "Id": 914, + "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", - "Rank": 3, "CommandName": "Move-PnPTerm", - "Id": 915 + "Id": 915, + "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", - "Rank": 1, "CommandName": "Move-PnPTermSet", - "Id": 916 + "Id": 916, + "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\"", - "Rank": 2, "CommandName": "Move-PnPTermSet", - "Id": 917 + "Id": 917, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "Rank": 2 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, "CommandName": "New-PnPAzureADGroup", - "Id": 918 + "Id": 918, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "Rank": 1 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Rank": 2, "CommandName": "New-PnPAzureADGroup", - "Id": 919 + "Id": 919, + "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", - "Rank": 3, "CommandName": "New-PnPAzureADGroup", - "Id": 920 + "Id": 920, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "Rank": 3 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Rank": 1, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 921 + "Id": 921, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "Rank": 1 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Rank": 2, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 922 + "Id": 922, + "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", - "Rank": 3, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 923 + "Id": 923, + "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", - "Rank": 1, "CommandName": "New-PnPAzureCertificate", - "Id": 924 + "Id": 924, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "Rank": 1 }, { - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Rank": 2, "CommandName": "New-PnPAzureCertificate", - "Id": 925 + "Id": 925, + "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)", - "Rank": 3, "CommandName": "New-PnPAzureCertificate", - "Id": 926 + "Id": 926, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "Rank": 3 }, { - "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", - "Id": 927 + "Id": 927, + "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()", - "Rank": 2, "CommandName": "New-PnPGraphSubscription", - "Id": 928 + "Id": 928, + "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\"", - "Rank": 1, "CommandName": "New-PnPGroup", - "Id": 929 + "Id": 929, + "Command": "New-PnPGroup -Title \"My Site Users\"", + "Rank": 1 }, { - "Command": "New-PnPList -Title Announcements -Template Announcements", - "Rank": 1, "CommandName": "New-PnPList", - "Id": 930 + "Id": 930, + "Command": "New-PnPList -Title Announcements -Template Announcements", + "Rank": 1 }, { - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Rank": 2, "CommandName": "New-PnPList", - "Id": 931 + "Id": 931, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "Rank": 2 }, { - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Rank": 3, "CommandName": "New-PnPList", - "Id": 932 + "Id": 932, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "Rank": 3 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, "CommandName": "New-PnPMicrosoft365Group", - "Id": 933 + "Id": 933, + "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\"", - "Rank": 2, "CommandName": "New-PnPMicrosoft365Group", - "Id": 934 + "Id": 934, + "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", - "Rank": 3, "CommandName": "New-PnPMicrosoft365Group", - "Id": 935 + "Id": 935, + "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", - "Rank": 4, "CommandName": "New-PnPMicrosoft365Group", - "Id": 936 + "Id": 936, + "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", - "Rank": 5, "CommandName": "New-PnPMicrosoft365Group", - "Id": 937 + "Id": 937, + "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\"", - "Rank": 6, "CommandName": "New-PnPMicrosoft365Group", - "Id": 938 + "Id": 938, + "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\"\")\"", - "Rank": 7, "CommandName": "New-PnPMicrosoft365Group", - "Id": 939 + "Id": 939, + "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\"}", - "Rank": 1, "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 940 + "Id": 940, + "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\"}", - "Rank": 2, "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 941 + "Id": 941, + "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')", - "Rank": 1, "CommandName": "New-PnPPersonalSite", - "Id": 942 + "Id": 942, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "Rank": 1 }, { - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Rank": 1, "CommandName": "New-PnPPlannerPlan", - "Id": 943 + "Id": 943, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "Rank": 1 }, { - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Rank": 1, "CommandName": "New-PnPSdnProvider", - "Id": 944 + "Id": 944, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "Rank": 1 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 1, "CommandName": "New-PnPSite", - "Id": 945 + "Id": 945, + "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", - "Rank": 2, "CommandName": "New-PnPSite", - "Id": 946 + "Id": 946, + "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", - "Rank": 3, "CommandName": "New-PnPSite", - "Id": 947 + "Id": 947, + "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\"", - "Rank": 4, "CommandName": "New-PnPSite", - "Id": 948 + "Id": 948, + "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", - "Rank": 5, "CommandName": "New-PnPSite", - "Id": 949 + "Id": 949, + "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", - "Rank": 6, "CommandName": "New-PnPSite", - "Id": 950 + "Id": 950, + "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", - "Rank": 7, "CommandName": "New-PnPSite", - "Id": 951 + "Id": 951, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "Rank": 7 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Rank": 8, "CommandName": "New-PnPSite", - "Id": 952 + "Id": 952, + "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", - "Rank": 9, "CommandName": "New-PnPSite", - "Id": 953 + "Id": 953, + "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", - "Rank": 10, "CommandName": "New-PnPSite", - "Id": 954 + "Id": 954, + "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", - "Rank": 11, "CommandName": "New-PnPSite", - "Id": 955 + "Id": 955, + "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", - "Rank": 12, "CommandName": "New-PnPSite", - "Id": 956 + "Id": 956, + "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\"", - "Rank": 13, "CommandName": "New-PnPSite", - "Id": 957 + "Id": 957, + "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", - "Rank": 14, "CommandName": "New-PnPSite", - "Id": 958 + "Id": 958, + "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", - "Rank": 15, "CommandName": "New-PnPSite", - "Id": 959 + "Id": 959, + "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\"", - "Rank": 16, "CommandName": "New-PnPSite", - "Id": 960 + "Id": 960, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "Rank": 16 }, { - "Command": "New-PnPSiteCollectionTermStore", - "Rank": 1, "CommandName": "New-PnPSiteCollectionTermStore", - "Id": 961 + "Id": 961, + "Command": "New-PnPSiteCollectionTermStore", + "Rank": 1 }, { - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Rank": 1, "CommandName": "New-PnPSiteGroup", - "Id": 962 + "Id": 962, + "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\"", - "Rank": 2, "CommandName": "New-PnPSiteGroup", - "Id": 963 + "Id": 963, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "Rank": 2 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Rank": 1, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 964 + "Id": 964, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "Rank": 1 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Rank": 2, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 965 + "Id": 965, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "Rank": 2 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Rank": 3, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 966 + "Id": 966, + "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\"", - "Rank": 4, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 967 + "Id": 967, + "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\"", - "Rank": 5, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 968 + "Id": 968, + "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\"}", - "Rank": 6, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 969 + "Id": 969, + "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", - "Rank": 7, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 970 + "Id": 970, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "Rank": 7 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Rank": 8, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 971 + "Id": 971, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "Rank": 8 }, { - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Rank": 1, "CommandName": "New-PnPTeamsApp", - "Id": 972 + "Id": 972, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "Rank": 1 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Rank": 1, "CommandName": "New-PnPTeamsTeam", - "Id": 973 + "Id": 973, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "Rank": 1 }, { - "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Rank": 2, "CommandName": "New-PnPTeamsTeam", - "Id": 974 + "Id": 974, + "Command": "New-PnPTeamsTeam -GroupId $groupId", + "Rank": 2 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Rank": 3, "CommandName": "New-PnPTeamsTeam", - "Id": 975 + "Id": 975, + "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", - "Rank": 4, "CommandName": "New-PnPTeamsTeam", - "Id": 976 + "Id": 976, + "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\"", - "Rank": 5, "CommandName": "New-PnPTeamsTeam", - "Id": 977 + "Id": 977, + "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\"", - "Rank": 6, "CommandName": "New-PnPTeamsTeam", - "Id": 978 + "Id": 978, + "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", - "Rank": 1, "CommandName": "New-PnPTenantSite", - "Id": 979 + "Id": 979, + "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", - "Rank": 2, "CommandName": "New-PnPTenantSite", - "Id": 980 + "Id": 980, + "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\"", - "Rank": 1, "CommandName": "New-PnPTerm", - "Id": 981 + "Id": 981, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "Rank": 1 }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2, "CommandName": "New-PnPTerm", - "Id": 982 + "Id": 982, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 2 }, { - "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Rank": 1, "CommandName": "New-PnPTermGroup", - "Id": 983 + "Id": 983, + "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "Rank": 1 }, { - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Rank": 1, "CommandName": "New-PnPTermLabel", - "Id": 984 + "Id": 984, + "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\"", - "Rank": 1, "CommandName": "New-PnPTermSet", - "Id": 985 + "Id": 985, + "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\"}", - "Rank": 1, "CommandName": "New-PnPUPABulkImportJob", - "Id": 986 + "Id": 986, + "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", - "Rank": 2, "CommandName": "New-PnPUPABulkImportJob", - "Id": 987 + "Id": 987, + "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", - "Rank": 1, "CommandName": "New-PnPUser", - "Id": 988 + "Id": 988, + "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\"", - "Rank": 1, "CommandName": "New-PnPWeb", - "Id": 989 + "Id": 989, + "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", - "Rank": 1, "CommandName": "Publish-PnPApp", - "Id": 990 + "Id": 990, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 1 }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Rank": 2, "CommandName": "Publish-PnPApp", - "Id": 991 + "Id": 991, + "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", - "Rank": 1, "CommandName": "Publish-PnPCompanyApp", - "Id": 992 + "Id": 992, + "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", - "Rank": 1, "CommandName": "Publish-PnPContentType", - "Id": 993 + "Id": 993, + "Command": "Publish-PnPContentType -ContentType 0x0101", + "Rank": 1 }, { - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, "CommandName": "Publish-PnPSyntexModel", - "Id": 994 + "Id": 994, + "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", - "Rank": 2, "CommandName": "Publish-PnPSyntexModel", - "Id": 995 + "Id": 995, + "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", - "Rank": 1, "CommandName": "Read-PnPSiteTemplate", - "Id": 996 + "Id": 996, + "Command": "Read-PnPSiteTemplate -Path template.pnp", + "Rank": 1 }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Rank": 2, "CommandName": "Read-PnPSiteTemplate", - "Id": 997 + "Id": 997, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "Rank": 2 }, { - "Command": "Read-PnPSiteTemplate -Xml $xml", - "Rank": 3, "CommandName": "Read-PnPSiteTemplate", - "Id": 998 + "Id": 998, + "Command": "Read-PnPSiteTemplate -Xml $xml", + "Rank": 3 }, { - "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Rank": 1, "CommandName": "Read-PnPTenantTemplate", - "Id": 999 + "Id": 999, + "Command": "Read-PnPTenantTemplate -Path template.pnp", + "Rank": 1 }, { - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Rank": 1, "CommandName": "Register-PnPAppCatalogSite", - "Id": 1000 + "Id": 1000, + "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\")", - "Rank": 1, "CommandName": "Register-PnPAzureADApp", - "Id": 1001 + "Id": 1001, + "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\")", - "Rank": 2, "CommandName": "Register-PnPAzureADApp", - "Id": 1002 + "Id": 1002, + "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\")", - "Rank": 3, "CommandName": "Register-PnPAzureADApp", - "Id": 1003 + "Id": 1003, + "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\")", - "Rank": 4, "CommandName": "Register-PnPAzureADApp", - "Id": 1004 + "Id": 1004, + "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)", - "Rank": 5, "CommandName": "Register-PnPAzureADApp", - "Id": 1005 + "Id": 1005, + "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)", - "Rank": 6, "CommandName": "Register-PnPAzureADApp", - "Id": 1006 + "Id": 1006, + "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", - "Rank": 7, "CommandName": "Register-PnPAzureADApp", - "Id": 1007 + "Id": 1007, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\") -LogoFilePath c:\\logo.png", + "Rank": 7 }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1, "CommandName": "Register-PnPHubSite", - "Id": 1008 + "Id": 1008, + "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\"", - "Rank": 2, "CommandName": "Register-PnPHubSite", - "Id": 1009 + "Id": 1009, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "Rank": 2 }, { - "Command": "Register-PnPManagementShellAccess", - "Rank": 1, "CommandName": "Register-PnPManagementShellAccess", - "Id": 1010 + "Id": 1010, + "Command": "Register-PnPManagementShellAccess", + "Rank": 1 }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Rank": 2, "CommandName": "Register-PnPManagementShellAccess", - "Id": 1011 + "Id": 1011, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "Rank": 2 }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Rank": 3, "CommandName": "Register-PnPManagementShellAccess", - "Id": 1012 + "Id": 1012, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "Rank": 3 }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Rank": 1, "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1013 + "Id": 1013, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "Rank": 1 }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Rank": 2, "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1014 + "Id": 1014, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "Rank": 2 }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Rank": 1, "CommandName": "Remove-PnPAlert", - "Id": 1015 + "Id": 1015, + "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\"", - "Rank": 2, "CommandName": "Remove-PnPAlert", - "Id": 1016 + "Id": 1016, + "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", - "Rank": 1, "CommandName": "Remove-PnPApp", - "Id": 1017 + "Id": 1017, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "CommandName": "Remove-PnPApp", - "Id": 1018 + "Id": 1018, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2 }, { - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1019 + "Id": 1019, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1 }, { - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1020 + "Id": 1020, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Rank": 2 }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Rank": 1, "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1021 + "Id": 1021, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "Rank": 1 }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 2, "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1022 + "Id": 1022, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Rank": 2 }, { - "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Rank": 1, "CommandName": "Remove-PnPAzureADApp", - "Id": 1023 + "Id": 1023, + "Command": "Remove-PnPAzureADApp -Identity MyApp", + "Rank": 1 }, { - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 2, "CommandName": "Remove-PnPAzureADApp", - "Id": 1024 + "Id": 1024, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 2 }, { - "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Rank": 1, "CommandName": "Remove-PnPAzureADGroup", - "Id": 1025 + "Id": 1025, + "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "Rank": 1 }, { - "Command": "Remove-PnPAzureADGroup -Identity $group", - "Rank": 2, "CommandName": "Remove-PnPAzureADGroup", - "Id": 1026 + "Id": 1026, + "Command": "Remove-PnPAzureADGroup -Identity $group", + "Rank": 2 }, { - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, "CommandName": "Remove-PnPAzureADGroupMember", - "Id": 1027 + "Id": 1027, + "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\"", - "Rank": 1, "CommandName": "Remove-PnPAzureADGroupOwner", - "Id": 1028 + "Id": 1028, + "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\"", - "Rank": 1, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1029 + "Id": 1029, + "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\"", - "Rank": 2, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1030 + "Id": 1030, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "Rank": 2 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 3, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1031 + "Id": 1031, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 3 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 4, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1032 + "Id": 1032, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 4 }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Rank": 1, "CommandName": "Remove-PnPContentType", - "Id": 1033 + "Id": 1033, + "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "Rank": 1 }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Rank": 2, "CommandName": "Remove-PnPContentType", - "Id": 1034 + "Id": 1034, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1, "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1035 + "Id": 1035, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Rank": 1 }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2, "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1036 + "Id": 1036, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Rank": 2 }, { - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Rank": 1, "CommandName": "Remove-PnPContentTypeFromList", - "Id": 1037 + "Id": 1037, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "Rank": 1 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, "CommandName": "Remove-PnPCustomAction", - "Id": 1038 + "Id": 1038, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, "CommandName": "Remove-PnPCustomAction", - "Id": 1039 + "Id": 1039, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Rank": 2 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Rank": 3, "CommandName": "Remove-PnPCustomAction", - "Id": 1040 + "Id": 1040, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "Rank": 3 }, { - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Id": 1041 + "Id": 1041, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 1 }, { - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 1, "CommandName": "Remove-PnPEventReceiver", - "Id": 1042 + "Id": 1042, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 1 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, "CommandName": "Remove-PnPEventReceiver", - "Id": 1043 + "Id": 1043, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 2 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Rank": 3, "CommandName": "Remove-PnPEventReceiver", - "Id": 1044 + "Id": 1044, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "Rank": 3 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList", - "Rank": 4, "CommandName": "Remove-PnPEventReceiver", - "Id": 1045 + "Id": 1045, + "Command": "Remove-PnPEventReceiver -List ProjectList", + "Rank": 4 }, { - "Command": "Remove-PnPEventReceiver", - "Rank": 5, "CommandName": "Remove-PnPEventReceiver", - "Id": 1046 + "Id": 1046, + "Command": "Remove-PnPEventReceiver", + "Rank": 5 }, { - "Command": "Remove-PnPEventReceiver -Scope Site", - "Rank": 6, "CommandName": "Remove-PnPEventReceiver", - "Id": 1047 + "Id": 1047, + "Command": "Remove-PnPEventReceiver -Scope Site", + "Rank": 6 }, { - "Command": "Remove-PnPEventReceiver -Scope Web", - "Rank": 7, "CommandName": "Remove-PnPEventReceiver", - "Id": 1048 + "Id": 1048, + "Command": "Remove-PnPEventReceiver -Scope Web", + "Rank": 7 }, { - "Command": "Remove-PnPEventReceiver -Scope All", - "Rank": 8, "CommandName": "Remove-PnPEventReceiver", - "Id": 1049 + "Id": 1049, + "Command": "Remove-PnPEventReceiver -Scope All", + "Rank": 8 }, { - "Command": "Remove-PnPField -Identity \"Speakers\"", - "Rank": 1, "CommandName": "Remove-PnPField", - "Id": 1050 + "Id": 1050, + "Command": "Remove-PnPField -Identity \"Speakers\"", + "Rank": 1 }, { - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, "CommandName": "Remove-PnPField", - "Id": 1051 + "Id": 1051, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Rank": 2 }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1, "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1052 + "Id": 1052, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Rank": 1 }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Rank": 2, "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1053 + "Id": 1053, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "Rank": 2 }, { - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Rank": 1, "CommandName": "Remove-PnPFile", - "Id": 1054 + "Id": 1054, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "Rank": 1 }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Rank": 2, "CommandName": "Remove-PnPFile", - "Id": 1055 + "Id": 1055, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "Rank": 2 }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Rank": 3, "CommandName": "Remove-PnPFile", - "Id": 1056 + "Id": 1056, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "Rank": 3 }, { - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Rank": 1, "CommandName": "Remove-PnPFileFromSiteTemplate", - "Id": 1057 + "Id": 1057, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "Rank": 1 }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, "CommandName": "Remove-PnPFileSharingLink", - "Id": 1058 + "Id": 1058, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1 }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Rank": 2, "CommandName": "Remove-PnPFileSharingLink", - "Id": 1059 + "Id": 1059, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, "CommandName": "Remove-PnPFileVersion", - "Id": 1060 + "Id": 1060, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Rank": 1 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 2, "CommandName": "Remove-PnPFileVersion", - "Id": 1061 + "Id": 1061, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Rank": 2 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Rank": 3, "CommandName": "Remove-PnPFileVersion", - "Id": 1062 + "Id": 1062, + "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", - "Rank": 1, "CommandName": "Remove-PnPFlowOwner", - "Id": 1063 + "Id": 1063, + "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", - "Rank": 2, "CommandName": "Remove-PnPFlowOwner", - "Id": 1064 + "Id": 1064, + "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", - "Rank": 3, "CommandName": "Remove-PnPFlowOwner", - "Id": 1065 + "Id": 1065, + "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", - "Rank": 4, "CommandName": "Remove-PnPFlowOwner", - "Id": 1066 + "Id": 1066, + "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", - "Rank": 1, "CommandName": "Remove-PnPFolder", - "Id": 1067 + "Id": 1067, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Rank": 1 }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Rank": 2, "CommandName": "Remove-PnPFolder", - "Id": 1068 + "Id": 1068, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "Rank": 2 }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1069 + "Id": 1069, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1 }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Rank": 2, "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1070 + "Id": 1070, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Rank": 1, "CommandName": "Remove-PnPGraphSubscription", - "Id": 1071 + "Id": 1071, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "Rank": 1 }, { - "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Rank": 1, "CommandName": "Remove-PnPGroup", - "Id": 1072 + "Id": 1072, + "Command": "Remove-PnPGroup -Identity \"My Users\"", + "Rank": 1 }, { - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1, "CommandName": "Remove-PnPGroupMember", - "Id": 1073 + "Id": 1073, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Rank": 1 }, { - "Command": "Remove-PnPHomeSite", - "Rank": 1, "CommandName": "Remove-PnPHomeSite", - "Id": 1074 + "Id": 1074, + "Command": "Remove-PnPHomeSite", + "Rank": 1 }, { - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, "CommandName": "Remove-PnPHubSiteAssociation", - "Id": 1075 + "Id": 1075, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "Rank": 1 }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Rank": 1, "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1076 + "Id": 1076, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "Rank": 1 }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Rank": 2, "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1077 + "Id": 1077, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "Rank": 2 }, { - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Rank": 1, "CommandName": "Remove-PnPIndexedProperty", - "Id": 1078 + "Id": 1078, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "Rank": 1 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Rank": 1, "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1079 + "Id": 1079, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "Rank": 1 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Rank": 2, "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1080 + "Id": 1080, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "Rank": 2 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Rank": 3, "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1081 + "Id": 1081, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "Rank": 3 }, { - "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Rank": 4, "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1082 + "Id": 1082, + "Command": "Remove-PnPJavaScriptLink -Scope Site", + "Rank": 4 }, { - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Rank": 5, "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1083 + "Id": 1083, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "Rank": 5 }, { - "Command": "Remove-PnPKnowledgeHubSite", - "Rank": 1, "CommandName": "Remove-PnPKnowledgeHubSite", - "Id": 1084 + "Id": 1084, + "Command": "Remove-PnPKnowledgeHubSite", + "Rank": 1 }, { - "Command": "Remove-PnPList -Identity Announcements", - "Rank": 1, "CommandName": "Remove-PnPList", - "Id": 1085 + "Id": 1085, + "Command": "Remove-PnPList -Identity Announcements", + "Rank": 1 }, { - "Command": "Remove-PnPList -Identity Announcements -Force", - "Rank": 2, "CommandName": "Remove-PnPList", - "Id": 1086 + "Id": 1086, + "Command": "Remove-PnPList -Identity Announcements -Force", + "Rank": 2 }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Rank": 3, "CommandName": "Remove-PnPList", - "Id": 1087 + "Id": 1087, + "Command": "Remove-PnPList -Identity Announcements -Recycle", + "Rank": 3 }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Rank": 4, "CommandName": "Remove-PnPList", - "Id": 1088 + "Id": 1088, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "Rank": 4 }, { - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "CommandName": "Remove-PnPListDesign", - "Id": 1089 + "Id": 1089, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1 }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, "CommandName": "Remove-PnPListItem", - "Id": 1090 + "Id": 1090, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "Rank": 1 }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Rank": 2, "CommandName": "Remove-PnPListItem", - "Id": 1091 + "Id": 1091, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "Rank": 2 }, { - "Command": "Remove-PnPListItem -List \"Demo List\"", - "Rank": 3, "CommandName": "Remove-PnPListItem", - "Id": 1092 + "Id": 1092, + "Command": "Remove-PnPListItem -List \"Demo List\"", + "Rank": 3 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Rank": 1, "CommandName": "Remove-PnPListItemAttachment", - "Id": 1093 + "Id": 1093, + "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", - "Rank": 2, "CommandName": "Remove-PnPListItemAttachment", - "Id": 1094 + "Id": 1094, + "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", - "Rank": 3, "CommandName": "Remove-PnPListItemAttachment", - "Id": 1095 + "Id": 1095, + "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", - "Rank": 4, "CommandName": "Remove-PnPListItemAttachment", - "Id": 1096 + "Id": 1096, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "Rank": 4 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Rank": 5, "CommandName": "Remove-PnPListItemAttachment", - "Id": 1097 + "Id": 1097, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "Rank": 5 }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, "CommandName": "Remove-PnPListItemVersion", - "Id": 1098 + "Id": 1098, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Rank": 1 }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, "CommandName": "Remove-PnPListItemVersion", - "Id": 1099 + "Id": 1099, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Rank": 2 }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Rank": 1, "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1100 + "Id": 1100, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "Rank": 1 }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Rank": 2, "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1101 + "Id": 1101, + "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "Rank": 2 }, { - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Id": 1102 + "Id": 1102, + "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\"", - "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Id": 1103 + "Id": 1103, + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1104 + "Id": 1104, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "Rank": 1 }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Rank": 2, "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1105 + "Id": 1105, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "Rank": 2 }, { - "Command": "Remove-PnPNavigationNode -Identity 1032", - "Rank": 1, "CommandName": "Remove-PnPNavigationNode", - "Id": 1106 + "Id": 1106, + "Command": "Remove-PnPNavigationNode -Identity 1032", + "Rank": 1 }, { - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Rank": 2, "CommandName": "Remove-PnPNavigationNode", - "Id": 1107 + "Id": 1107, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "Rank": 2 }, { - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Rank": 3, "CommandName": "Remove-PnPNavigationNode", - "Id": 1108 + "Id": 1108, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "Rank": 3 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Rank": 1, "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1109 + "Id": 1109, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "Rank": 1 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Rank": 2, "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1110 + "Id": 1110, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "Rank": 2 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Rank": 3, "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1111 + "Id": 1111, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "Rank": 3 }, { - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, "CommandName": "Remove-PnPOrgNewsSite", - "Id": 1112 + "Id": 1112, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "Rank": 1 }, { - "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Rank": 1, "CommandName": "Remove-PnPPage", - "Id": 1113 + "Id": 1113, + "Command": "Remove-PnPPage -Identity \"MyPage\"", + "Rank": 1 }, { - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Rank": 2, "CommandName": "Remove-PnPPage", - "Id": 1114 + "Id": 1114, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "Rank": 2 }, { - "Command": "Remove-PnPPage $page", - "Rank": 3, "CommandName": "Remove-PnPPage", - "Id": 1115 + "Id": 1115, + "Command": "Remove-PnPPage $page", + "Rank": 3 }, { - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Rank": 4, "CommandName": "Remove-PnPPage", - "Id": 1116 + "Id": 1116, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "Rank": 4 }, { - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, "CommandName": "Remove-PnPPageComponent", - "Id": 1117 + "Id": 1117, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1 }, { - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Rank": 1, "CommandName": "Remove-PnPPlannerBucket", - "Id": 1118 + "Id": 1118, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "Rank": 1 }, { - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Rank": 1, "CommandName": "Remove-PnPPlannerPlan", - "Id": 1119 + "Id": 1119, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "Rank": 1 }, { - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, "CommandName": "Remove-PnPPlannerRoster", - "Id": 1120 + "Id": 1120, + "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\"", - "Rank": 1, "CommandName": "Remove-PnPPlannerRosterMember", - "Id": 1121 + "Id": 1121, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Rank": 1, "CommandName": "Remove-PnPPlannerTask", - "Id": 1122 + "Id": 1122, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "Rank": 1 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Rank": 1, "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1123 + "Id": 1123, + "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "Rank": 1 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Rank": 2, "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1124 + "Id": 1124, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "Rank": 2 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Rank": 3, "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1125 + "Id": 1125, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "Rank": 3 }, { - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1, "CommandName": "Remove-PnPPublishingImageRendition", - "Id": 1126 + "Id": 1126, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Rank": 1 }, { - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Rank": 1, "CommandName": "Remove-PnPRoleDefinition", - "Id": 1127 + "Id": 1127, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "Rank": 1 }, { - "Command": "Remove-PnPSdnProvider -Confirm:false", - "Rank": 1, "CommandName": "Remove-PnPSdnProvider", - "Id": 1128 + "Id": 1128, + "Command": "Remove-PnPSdnProvider -Confirm:false", + "Rank": 1 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Rank": 1, "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1129 + "Id": 1129, + "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "Rank": 1 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1130 + "Id": 1130, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "Rank": 2 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1131 + "Id": 1131, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Rank": 3 }, { - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1132 + "Id": 1132, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4 }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1133 + "Id": 1133, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1134 + "Id": 1134, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 2 }, { - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Id": 1135 + "Id": 1135, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Rank": 1 }, { - "Command": "Remove-PnPSiteCollectionTermStore", - "Rank": 1, "CommandName": "Remove-PnPSiteCollectionTermStore", - "Id": 1136 + "Id": 1136, + "Command": "Remove-PnPSiteCollectionTermStore", + "Rank": 1 }, { - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "CommandName": "Remove-PnPSiteDesign", - "Id": 1137 + "Id": 1137, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1 }, { - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "CommandName": "Remove-PnPSiteDesignTask", - "Id": 1138 + "Id": 1138, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1 }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, "CommandName": "Remove-PnPSiteGroup", - "Id": 1139 + "Id": 1139, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1 }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Rank": 2, "CommandName": "Remove-PnPSiteGroup", - "Id": 1140 + "Id": 1140, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "Rank": 2 }, { - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "CommandName": "Remove-PnPSiteScript", - "Id": 1141 + "Id": 1141, + "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", - "Rank": 1, "CommandName": "Remove-PnPSiteUserInvitations", - "Id": 1142 + "Id": 1142, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Rank": 1 }, { - "Command": "Remove-PnPStorageEntity -Key MyKey", - "Rank": 1, "CommandName": "Remove-PnPStorageEntity", - "Id": 1143 + "Id": 1143, + "Command": "Remove-PnPStorageEntity -Key MyKey", + "Rank": 1 }, { - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 2, "CommandName": "Remove-PnPStorageEntity", - "Id": 1144 + "Id": 1144, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "Rank": 2 }, { - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Rank": 1, "CommandName": "Remove-PnPStoredCredential", - "Id": 1145 + "Id": 1145, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "Rank": 1 }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Rank": 1, "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1146 + "Id": 1146, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "Rank": 1 }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Rank": 2, "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1147 + "Id": 1147, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Rank": 1, "CommandName": "Remove-PnPTeamsApp", - "Id": 1148 + "Id": 1148, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "Rank": 1 }, { - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Rank": 2, "CommandName": "Remove-PnPTeamsApp", - "Id": 1149 + "Id": 1149, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "Rank": 2 }, { - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Rank": 1, "CommandName": "Remove-PnPTeamsChannel", - "Id": 1150 + "Id": 1150, + "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==", - "Rank": 1, "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1151 + "Id": 1151, + "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", - "Rank": 2, "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1152 + "Id": 1152, + "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", - "Rank": 3, "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1153 + "Id": 1153, + "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", - "Rank": 1, "CommandName": "Remove-PnPTeamsTab", - "Id": 1154 + "Id": 1154, + "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", - "Rank": 2, "CommandName": "Remove-PnPTeamsTab", - "Id": 1155 + "Id": 1155, + "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", - "Rank": 3, "CommandName": "Remove-PnPTeamsTab", - "Id": 1156 + "Id": 1156, + "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==\"", - "Rank": 1, "CommandName": "Remove-PnPTeamsTag", - "Id": 1157 + "Id": 1157, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Rank": 1 }, { - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, "CommandName": "Remove-PnPTeamsTeam", - "Id": 1158 + "Id": 1158, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Rank": 1 }, { - "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Rank": 2, "CommandName": "Remove-PnPTeamsTeam", - "Id": 1159 + "Id": 1159, + "Command": "Remove-PnPTeamsTeam -Identity testteam", + "Rank": 2 }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Rank": 1, "CommandName": "Remove-PnPTeamsUser", - "Id": 1160 + "Id": 1160, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "Rank": 1 }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 2, "CommandName": "Remove-PnPTeamsUser", - "Id": 1161 + "Id": 1161, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 2 }, { - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1, "CommandName": "Remove-PnPTenantCdnOrigin", - "Id": 1162 + "Id": 1162, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Rank": 1 }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1163 + "Id": 1163, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1 }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1164 + "Id": 1164, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "CommandName": "Remove-PnPTenantSite", - "Id": 1165 + "Id": 1165, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Rank": 2, "CommandName": "Remove-PnPTenantSite", - "Id": 1166 + "Id": 1166, + "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", - "Rank": 3, "CommandName": "Remove-PnPTenantSite", - "Id": 1167 + "Id": 1167, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "Rank": 3 }, { - "Command": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1, "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Id": 1168 + "Id": 1168, + "Command": "Remove-PnPTenantSyncClientRestriction", + "Rank": 1 }, { - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 1, "CommandName": "Remove-PnPTenantTheme", - "Id": 1169 + "Id": 1169, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Rank": 1 }, { - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, "CommandName": "Remove-PnPTerm", - "Id": 1170 + "Id": 1170, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Rank": 1 }, { - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, "CommandName": "Remove-PnPTerm", - "Id": 1171 + "Id": 1171, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2 }, { - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, "CommandName": "Remove-PnPTermGroup", - "Id": 1172 + "Id": 1172, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Rank": 1 }, { - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Rank": 2, "CommandName": "Remove-PnPTermGroup", - "Id": 1173 + "Id": 1173, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "Rank": 2 }, { - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Rank": 3, "CommandName": "Remove-PnPTermGroup", - "Id": 1174 + "Id": 1174, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "Rank": 3 }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Rank": 1, "CommandName": "Remove-PnPTermLabel", - "Id": 1175 + "Id": 1175, + "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\"", - "Rank": 2, "CommandName": "Remove-PnPTermLabel", - "Id": 1176 + "Id": 1176, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2 }, { - "Command": "Remove-PnPUser -Identity 23", - "Rank": 1, "CommandName": "Remove-PnPUser", - "Id": 1177 + "Id": 1177, + "Command": "Remove-PnPUser -Identity 23", + "Rank": 1 }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Rank": 2, "CommandName": "Remove-PnPUser", - "Id": 1178 + "Id": 1178, + "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", - "Rank": 3, "CommandName": "Remove-PnPUser", - "Id": 1179 + "Id": 1179, + "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\"", - "Rank": 1, "CommandName": "Remove-PnPUserInfo", - "Id": 1180 + "Id": 1180, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Rank": 1 }, { - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Rank": 1, "CommandName": "Remove-PnPUserProfile", - "Id": 1181 + "Id": 1181, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "Rank": 1 }, { - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Rank": 1, "CommandName": "Remove-PnPView", - "Id": 1182 + "Id": 1182, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "Rank": 1 }, { - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 1, "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Id": 1183 + "Id": 1183, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Rank": 1 }, { - "Command": "Remove-PnPWeb -Identity projectA", - "Rank": 1, "CommandName": "Remove-PnPWeb", - "Id": 1184 + "Id": 1184, + "Command": "Remove-PnPWeb -Identity projectA", + "Rank": 1 }, { - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Rank": 2, "CommandName": "Remove-PnPWeb", - "Id": 1185 + "Id": 1185, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "Rank": 2 }, { - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Rank": 1, "CommandName": "Remove-PnPWebhookSubscription", - "Id": 1186 + "Id": 1186, + "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", - "Rank": 1, "CommandName": "Remove-PnPWebPart", - "Id": 1187 + "Id": 1187, + "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", - "Rank": 2, "CommandName": "Remove-PnPWebPart", - "Id": 1188 + "Id": 1188, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "Rank": 2 }, { - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Rank": 1, "CommandName": "Remove-PnPWikiPage", - "Id": 1189 + "Id": 1189, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "Rank": 1 }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Rank": 1, "CommandName": "Rename-PnPFile", - "Id": 1190 + "Id": 1190, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "Rank": 1 }, { - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Rank": 2, "CommandName": "Rename-PnPFile", - "Id": 1191 + "Id": 1191, + "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", - "Rank": 3, "CommandName": "Rename-PnPFile", - "Id": 1192 + "Id": 1192, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "Rank": 3 }, { - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Rank": 1, "CommandName": "Rename-PnPFolder", - "Id": 1193 + "Id": 1193, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "Rank": 1 }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, "CommandName": "Repair-PnPSite", - "Id": 1194 + "Id": 1194, + "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\"", - "Rank": 2, "CommandName": "Repair-PnPSite", - "Id": 1195 + "Id": 1195, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Rank": 2 }, { - "Command": "Request-PnPAccessToken", - "Rank": 1, "CommandName": "Request-PnPAccessToken", - "Id": 1196 + "Id": 1196, + "Command": "Request-PnPAccessToken", + "Rank": 1 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Rank": 2, "CommandName": "Request-PnPAccessToken", - "Id": 1197 + "Id": 1197, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "Rank": 2 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Rank": 3, "CommandName": "Request-PnPAccessToken", - "Id": 1198 + "Id": 1198, + "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", - "Rank": 4, "CommandName": "Request-PnPAccessToken", - "Id": 1199 + "Id": 1199, + "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\")", - "Rank": 1, "CommandName": "Request-PnPPersonalSite", - "Id": 1200 + "Id": 1200, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "Rank": 1 }, { - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Rank": 2, "CommandName": "Request-PnPPersonalSite", - "Id": 1201 + "Id": 1201, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "Rank": 2 }, { - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Rank": 1, "CommandName": "Request-PnPReIndexList", - "Id": 1202 + "Id": 1202, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "Rank": 1 }, { - "Command": "Request-PnPReIndexWeb", - "Rank": 1, "CommandName": "Request-PnPReIndexWeb", - "Id": 1203 + "Id": 1203, + "Command": "Request-PnPReIndexWeb", + "Rank": 1 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Rank": 1, "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1204 + "Id": 1204, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "Rank": 1 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Rank": 2, "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1205 + "Id": 1205, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "Rank": 2 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Rank": 3, "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1206 + "Id": 1206, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "Rank": 3 }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Rank": 1, "CommandName": "Reset-PnPFileVersion", - "Id": 1207 + "Id": 1207, + "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\"", - "Rank": 2, "CommandName": "Reset-PnPFileVersion", - "Id": 1208 + "Id": 1208, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "Rank": 2 }, { - "Command": "Reset-PnPLabel -List \"Demo List\"", - "Rank": 1, "CommandName": "Reset-PnPLabel", - "Id": 1209 + "Id": 1209, + "Command": "Reset-PnPLabel -List \"Demo List\"", + "Rank": 1 }, { - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Rank": 2, "CommandName": "Reset-PnPLabel", - "Id": 1210 + "Id": 1210, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "Rank": 2 }, { - "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1, "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1211 + "Id": 1211, + "Command": "Reset-PnPMicrosoft365GroupExpiration", + "Rank": 1 }, { - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Rank": 1, "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Id": 1212 + "Id": 1212, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "Rank": 1 }, { - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Rank": 1, "CommandName": "Resolve-PnPFolder", - "Id": 1213 + "Id": 1213, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "Rank": 1 }, { - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Id": 1214 + "Id": 1214, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 1 }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, "CommandName": "Restore-PnPFileVersion", - "Id": 1215 + "Id": 1215, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Rank": 1 }, { - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Rank": 2, "CommandName": "Restore-PnPFileVersion", - "Id": 1216 + "Id": 1216, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "Rank": 2 }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 3, "CommandName": "Restore-PnPFileVersion", - "Id": 1217 + "Id": 1217, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Rank": 3 }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, "CommandName": "Restore-PnPListItemVersion", - "Id": 1218 + "Id": 1218, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Rank": 1 }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, "CommandName": "Restore-PnPListItemVersion", - "Id": 1219 + "Id": 1219, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Rank": 2 }, { - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, "CommandName": "Restore-PnPRecycleBinItem", - "Id": 1220 + "Id": 1220, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1 }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1221 + "Id": 1221, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1 }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2, "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1222 + "Id": 1222, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Rank": 2 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "CommandName": "Restore-PnPTenantSite", - "Id": 1223 + "Id": 1223, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, "CommandName": "Restore-PnPTenantSite", - "Id": 1224 + "Id": 1224, + "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", - "Rank": 3, "CommandName": "Restore-PnPTenantSite", - "Id": 1225 + "Id": 1225, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "Rank": 3 }, { - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Rank": 1, "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Id": 1226 + "Id": 1226, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "Rank": 1 }, { - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, "CommandName": "Revoke-PnPHubSiteRights", - "Id": 1227 + "Id": 1227, + "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\"", - "Rank": 1, "CommandName": "Revoke-PnPSiteDesignRights", - "Id": 1228 + "Id": 1228, + "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\"", - "Rank": 1, "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Id": 1229 + "Id": 1229, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Rank": 1 }, { - "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Rank": 1, "CommandName": "Revoke-PnPUserSession", - "Id": 1230 + "Id": 1230, + "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "Rank": 1 }, { - "Command": "Save-PnPPageConversionLog", - "Rank": 1, "CommandName": "Save-PnPPageConversionLog", - "Id": 1231 + "Id": 1231, + "Command": "Save-PnPPageConversionLog", + "Rank": 1 }, { - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Rank": 1, "CommandName": "Save-PnPSiteTemplate", - "Id": 1232 + "Id": 1232, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "Rank": 1 }, { - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Rank": 1, "CommandName": "Save-PnPTenantTemplate", - "Id": 1233 + "Id": 1233, + "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\"", - "Rank": 1, "CommandName": "Send-PnPMail", - "Id": 1234 + "Id": 1234, + "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", - "Rank": 2, "CommandName": "Send-PnPMail", - "Id": 1235 + "Id": 1235, + "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\"", - "Rank": 3, "CommandName": "Send-PnPMail", - "Id": 1236 + "Id": 1236, + "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", - "Rank": 4, "CommandName": "Send-PnPMail", - "Id": 1237 + "Id": 1237, + "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", - "Rank": 5, "CommandName": "Send-PnPMail", - "Id": 1238 + "Id": 1238, + "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\"", - "Rank": 6, "CommandName": "Send-PnPMail", - "Id": 1239 + "Id": 1239, + "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", - "Rank": 1, "CommandName": "Set-PnPAdaptiveScopeProperty", - "Id": 1240 + "Id": 1240, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "Rank": 1 }, { - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1241 + "Id": 1241, + "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`\"}\"", - "Rank": 2, "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1242 + "Id": 1242, + "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", - "Rank": 1, "CommandName": "Set-PnPAppSideLoading", - "Id": 1243 + "Id": 1243, + "Command": "Set-PnPAppSideLoading -On", + "Rank": 1 }, { - "Command": "Set-PnPAppSideLoading -Off", - "Rank": 2, "CommandName": "Set-PnPAppSideLoading", - "Id": 1244 + "Id": 1244, + "Command": "Set-PnPAppSideLoading -Off", + "Rank": 2 }, { - "Command": "Set-PnPAuditing -EnableAll", - "Rank": 1, "CommandName": "Set-PnPAuditing", - "Id": 1245 + "Id": 1245, + "Command": "Set-PnPAuditing -EnableAll", + "Rank": 1 }, { - "Command": "Set-PnPAuditing -DisableAll", - "Rank": 2, "CommandName": "Set-PnPAuditing", - "Id": 1246 + "Id": 1246, + "Command": "Set-PnPAuditing -DisableAll", + "Rank": 2 }, { - "Command": "Set-PnPAuditing -RetentionTime 7", - "Rank": 3, "CommandName": "Set-PnPAuditing", - "Id": 1247 + "Id": 1247, + "Command": "Set-PnPAuditing -RetentionTime 7", + "Rank": 3 }, { - "Command": "Set-PnPAuditing -TrimAuditLog", - "Rank": 4, "CommandName": "Set-PnPAuditing", - "Id": 1248 + "Id": 1248, + "Command": "Set-PnPAuditing -TrimAuditLog", + "Rank": 4 }, { - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Rank": 5, "CommandName": "Set-PnPAuditing", - "Id": 1249 + "Id": 1249, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "Rank": 5 }, { - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Rank": 1, "CommandName": "Set-PnPAvailablePageLayouts", - "Id": 1250 + "Id": 1250, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "Rank": 1 }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Rank": 1, "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1251 + "Id": 1251, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "Rank": 1 }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Rank": 2, "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1252 + "Id": 1252, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "Rank": 2 }, { - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, "CommandName": "Set-PnPAzureADGroup", - "Id": 1253 + "Id": 1253, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "Rank": 1 }, { - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, "CommandName": "Set-PnPAzureADGroup", - "Id": 1254 + "Id": 1254, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Rank": 2 }, { - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Rank": 3, "CommandName": "Set-PnPAzureADGroup", - "Id": 1255 + "Id": 1255, + "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\"", - "Rank": 1, "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1256 + "Id": 1256, + "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)", - "Rank": 2, "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1257 + "Id": 1257, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "Rank": 2 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Rank": 3, "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1258 + "Id": 1258, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "Rank": 3 }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Rank": 1, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1259 + "Id": 1259, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "Rank": 1 }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Rank": 2, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1260 + "Id": 1260, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "Rank": 2 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Rank": 1, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1261 + "Id": 1261, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "Rank": 1 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Rank": 2, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1262 + "Id": 1262, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "Rank": 2 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Rank": 3, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1263 + "Id": 1263, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "Rank": 3 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Rank": 4, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1264 + "Id": 1264, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "Rank": 4 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 1, "CommandName": "Set-PnPContentType", - "Id": 1265 + "Id": 1265, + "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", - "Rank": 2, "CommandName": "Set-PnPContentType", - "Id": 1266 + "Id": 1266, + "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\"", - "Rank": 3, "CommandName": "Set-PnPContentType", - "Id": 1267 + "Id": 1267, + "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\" }'", - "Rank": 4, "CommandName": "Set-PnPContentType", - "Id": 1268 + "Id": 1268, + "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\" }'", - "Rank": 5, "CommandName": "Set-PnPContentType", - "Id": 1269 + "Id": 1269, + "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\"", - "Rank": 1, "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1270 + "Id": 1270, + "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\"", - "Rank": 2, "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1271 + "Id": 1271, + "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\"", - "Rank": 3, "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1272 + "Id": 1272, + "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\"", - "Rank": 4, "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1273 + "Id": 1273, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "Rank": 4 }, { - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Rank": 1, "CommandName": "Set-PnPDefaultContentTypeToList", - "Id": 1274 + "Id": 1274, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "Rank": 1 }, { - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Rank": 1, "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1275 + "Id": 1275, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "Rank": 1 }, { - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Rank": 2, "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1276 + "Id": 1276, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "Rank": 2 }, { - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Rank": 3, "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1277 + "Id": 1277, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "Rank": 3 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Rank": 1, "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1278 + "Id": 1278, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "Rank": 1 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 2, "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1279 + "Id": 1279, + "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\"", - "Rank": 3, "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1280 + "Id": 1280, + "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", - "Rank": 1, "CommandName": "Set-PnPDocumentSetField", - "Id": 1281 + "Id": 1281, + "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", - "Rank": 2, "CommandName": "Set-PnPDocumentSetField", - "Id": 1282 + "Id": 1282, + "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\"}", - "Rank": 1, "CommandName": "Set-PnPField", - "Id": 1283 + "Id": 1283, + "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", - "Rank": 2, "CommandName": "Set-PnPField", - "Id": 1284 + "Id": 1284, + "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\"}", - "Rank": 3, "CommandName": "Set-PnPField", - "Id": 1285 + "Id": 1285, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "Rank": 3 }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Rank": 1, "CommandName": "Set-PnPFileCheckedIn", - "Id": 1286 + "Id": 1286, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "Rank": 1 }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Rank": 2, "CommandName": "Set-PnPFileCheckedIn", - "Id": 1287 + "Id": 1287, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "Rank": 2 }, { - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Rank": 1, "CommandName": "Set-PnPFileCheckedOut", - "Id": 1288 + "Id": 1288, + "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'", - "Rank": 1, "CommandName": "Set-PnPFolderPermission", - "Id": 1289 + "Id": 1289, + "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'", - "Rank": 2, "CommandName": "Set-PnPFolderPermission", - "Id": 1290 + "Id": 1290, + "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", - "Rank": 3, "CommandName": "Set-PnPFolderPermission", - "Id": 1291 + "Id": 1291, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Rank": 3 }, { - "Command": "Set-PnPFooter -Enabled:$true", - "Rank": 1, "CommandName": "Set-PnPFooter", - "Id": 1292 + "Id": 1292, + "Command": "Set-PnPFooter -Enabled:$true", + "Rank": 1 }, { - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Rank": 2, "CommandName": "Set-PnPFooter", - "Id": 1293 + "Id": 1293, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "Rank": 2 }, { - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Rank": 3, "CommandName": "Set-PnPFooter", - "Id": 1294 + "Id": 1294, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "Rank": 3 }, { - "Command": "Set-PnPFooter -LogoUrl \"\"", - "Rank": 4, "CommandName": "Set-PnPFooter", - "Id": 1295 + "Id": 1295, + "Command": "Set-PnPFooter -LogoUrl \"\"", + "Rank": 4 }, { - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Rank": 1, "CommandName": "Set-PnPGraphSubscription", - "Id": 1296 + "Id": 1296, + "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", - "Rank": 1, "CommandName": "Set-PnPGroup", - "Id": 1297 + "Id": 1297, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "Rank": 1 }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Rank": 2, "CommandName": "Set-PnPGroup", - "Id": 1298 + "Id": 1298, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "Rank": 2 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Rank": 1, "CommandName": "Set-PnPGroupPermissions", - "Id": 1299 + "Id": 1299, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "Rank": 1 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Rank": 2, "CommandName": "Set-PnPGroupPermissions", - "Id": 1300 + "Id": 1300, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "Rank": 2 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Rank": 3, "CommandName": "Set-PnPGroupPermissions", - "Id": 1301 + "Id": 1301, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "Rank": 3 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Rank": 4, "CommandName": "Set-PnPGroupPermissions", - "Id": 1302 + "Id": 1302, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "Rank": 4 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Rank": 5, "CommandName": "Set-PnPGroupPermissions", - "Id": 1303 + "Id": 1303, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "Rank": 5 }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Rank": 1, "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1304 + "Id": 1304, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "Rank": 1 }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Rank": 2, "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1305 + "Id": 1305, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "Rank": 2 }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Rank": 1, "CommandName": "Set-PnPHomePage", - "Id": 1306 + "Id": 1306, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "Rank": 1 }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Rank": 2, "CommandName": "Set-PnPHomePage", - "Id": 1307 + "Id": 1307, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "Rank": 2 }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Rank": 1, "CommandName": "Set-PnPHomeSite", - "Id": 1308 + "Id": 1308, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "Rank": 1 }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Rank": 2, "CommandName": "Set-PnPHomeSite", - "Id": 1309 + "Id": 1309, + "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\"", - "Rank": 1, "CommandName": "Set-PnPHubSite", - "Id": 1310 + "Id": 1310, + "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\"", - "Rank": 2, "CommandName": "Set-PnPHubSite", - "Id": 1311 + "Id": 1311, + "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", - "Rank": 3, "CommandName": "Set-PnPHubSite", - "Id": 1312 + "Id": 1312, + "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\"", - "Rank": 4, "CommandName": "Set-PnPHubSite", - "Id": 1313 + "Id": 1313, + "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", - "Rank": 5, "CommandName": "Set-PnPHubSite", - "Id": 1314 + "Id": 1314, + "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", - "Rank": 6, "CommandName": "Set-PnPHubSite", - "Id": 1315 + "Id": 1315, + "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\"", - "Rank": 1, "CommandName": "Set-PnPImageListItemColumn", - "Id": 1316 + "Id": 1316, + "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", - "Rank": 2, "CommandName": "Set-PnPImageListItemColumn", - "Id": 1317 + "Id": 1317, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "Rank": 2 }, { - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Rank": 1, "CommandName": "Set-PnPIndexedProperties", - "Id": 1318 + "Id": 1318, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "Rank": 1 }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Rank": 1, "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1319 + "Id": 1319, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "Rank": 1 }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Rank": 2, "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1320 + "Id": 1320, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "Rank": 2 }, { - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Rank": 1, "CommandName": "Set-PnPKnowledgeHubSite", - "Id": 1321 + "Id": 1321, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "Rank": 1 }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Rank": 1, "CommandName": "Set-PnPLabel", - "Id": 1322 + "Id": 1322, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "Rank": 1 }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Rank": 2, "CommandName": "Set-PnPLabel", - "Id": 1323 + "Id": 1323, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "Rank": 2 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Rank": 1, "CommandName": "Set-PnPList", - "Id": 1324 + "Id": 1324, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "Rank": 1 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Rank": 2, "CommandName": "Set-PnPList", - "Id": 1325 + "Id": 1325, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "Rank": 2 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Rank": 3, "CommandName": "Set-PnPList", - "Id": 1326 + "Id": 1326, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "Rank": 3 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Rank": 4, "CommandName": "Set-PnPList", - "Id": 1327 + "Id": 1327, + "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", - "Rank": 5, "CommandName": "Set-PnPList", - "Id": 1328 + "Id": 1328, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "Rank": 5 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Rank": 6, "CommandName": "Set-PnPList", - "Id": 1329 + "Id": 1329, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "Rank": 6 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Rank": 7, "CommandName": "Set-PnPList", - "Id": 1330 + "Id": 1330, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "Rank": 7 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Rank": 8, "CommandName": "Set-PnPList", - "Id": 1331 + "Id": 1331, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "Rank": 8 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Rank": 9, "CommandName": "Set-PnPList", - "Id": 1332 + "Id": 1332, + "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", - "Rank": 10, "CommandName": "Set-PnPList", - "Id": 1333 + "Id": 1333, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "Rank": 10 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Rank": 11, "CommandName": "Set-PnPList", - "Id": 1334 + "Id": 1334, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "Rank": 11 }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Rank": 1, "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1335 + "Id": 1335, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "Rank": 1 }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Rank": 2, "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1336 + "Id": 1336, + "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\"}", - "Rank": 1, "CommandName": "Set-PnPListItem", - "Id": 1337 + "Id": 1337, + "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\"}", - "Rank": 2, "CommandName": "Set-PnPListItem", - "Id": 1338 + "Id": 1338, + "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\"}", - "Rank": 3, "CommandName": "Set-PnPListItem", - "Id": 1339 + "Id": 1339, + "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\"", - "Rank": 4, "CommandName": "Set-PnPListItem", - "Id": 1340 + "Id": 1340, + "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", - "Rank": 5, "CommandName": "Set-PnPListItem", - "Id": 1341 + "Id": 1341, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "Rank": 5 }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, "CommandName": "Set-PnPListItemAsRecord", - "Id": 1342 + "Id": 1342, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1 }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Rank": 2, "CommandName": "Set-PnPListItemAsRecord", - "Id": 1343 + "Id": 1343, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "Rank": 2 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, "CommandName": "Set-PnPListItemPermission", - "Id": 1344 + "Id": 1344, + "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'", - "Rank": 2, "CommandName": "Set-PnPListItemPermission", - "Id": 1345 + "Id": 1345, + "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", - "Rank": 3, "CommandName": "Set-PnPListItemPermission", - "Id": 1346 + "Id": 1346, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Rank": 3 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Rank": 4, "CommandName": "Set-PnPListItemPermission", - "Id": 1347 + "Id": 1347, + "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\"", - "Rank": 5, "CommandName": "Set-PnPListItemPermission", - "Id": 1348 + "Id": 1348, + "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'", - "Rank": 1, "CommandName": "Set-PnPListPermission", - "Id": 1349 + "Id": 1349, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1 }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, "CommandName": "Set-PnPListPermission", - "Id": 1350 + "Id": 1350, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2 }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Rank": 1, "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1351 + "Id": 1351, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "Rank": 1 }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Rank": 2, "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1352 + "Id": 1352, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "Rank": 2 }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 1, "CommandName": "Set-PnPMasterPage", - "Id": 1353 + "Id": 1353, + "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", - "Rank": 2, "CommandName": "Set-PnPMasterPage", - "Id": 1354 + "Id": 1354, + "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", - "Rank": 3, "CommandName": "Set-PnPMasterPage", - "Id": 1355 + "Id": 1355, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Rank": 3 }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 4, "CommandName": "Set-PnPMasterPage", - "Id": 1356 + "Id": 1356, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Rank": 4 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1357 + "Id": 1357, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1358 + "Id": 1358, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1359 + "Id": 1359, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1360 + "Id": 1360, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1361 + "Id": 1361, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1362 + "Id": 1362, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1363 + "Id": 1363, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1364 + "Id": 1364, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1365 + "Id": 1365, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1366 + "Id": 1366, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1367 + "Id": 1367, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1368 + "Id": 1368, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1369 + "Id": 1369, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1370 + "Id": 1370, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1371 + "Id": 1371, + "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1372 + "Id": 1372, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1373 + "Id": 1373, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1374 + "Id": 1374, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1375 + "Id": 1375, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "Rank": 1 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1376 + "Id": 1376, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Rank": 2 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Rank": 3, "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1377 + "Id": 1377, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "Rank": 3 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Rank": 4, "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1378 + "Id": 1378, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "Rank": 4 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Rank": 5, "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1379 + "Id": 1379, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "Rank": 5 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6, "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1380 + "Id": 1380, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Rank": 6 }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Rank": 1, "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1381 + "Id": 1381, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "Rank": 1 }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Rank": 2, "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1382 + "Id": 1382, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "Rank": 2 }, { - "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Rank": 1, "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1383 + "Id": 1383, + "Command": "Set-PnPMinimalDownloadStrategy -Off", + "Rank": 1 }, { - "Command": "Set-PnPMinimalDownloadStrategy -On", - "Rank": 2, "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1384 + "Id": 1384, + "Command": "Set-PnPMinimalDownloadStrategy -On", + "Rank": 2 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Rank": 1, "CommandName": "Set-PnPPage", - "Id": 1385 + "Id": 1385, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "Rank": 1 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Rank": 2, "CommandName": "Set-PnPPage", - "Id": 1386 + "Id": 1386, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "Rank": 2 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Rank": 3, "CommandName": "Set-PnPPage", - "Id": 1387 + "Id": 1387, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "Rank": 3 }, { - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Rank": 4, "CommandName": "Set-PnPPage", - "Id": 1388 + "Id": 1388, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "Rank": 4 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Rank": 5, "CommandName": "Set-PnPPage", - "Id": 1389 + "Id": 1389, + "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", - "Rank": 6, "CommandName": "Set-PnPPage", - "Id": 1390 + "Id": 1390, + "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)", - "Rank": 7, "CommandName": "Set-PnPPage", - "Id": 1391 + "Id": 1391, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "Rank": 7 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "Rank": 8, "CommandName": "Set-PnPPage", - "Id": 1392 + "Id": 1392, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "Rank": 8 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, "CommandName": "Set-PnPPage", - "Id": 1393 + "Id": 1393, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "Rank": 9 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, "CommandName": "Set-PnPPage", - "Id": 1394 + "Id": 1394, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Rank": 10 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "Rank": 11, "CommandName": "Set-PnPPage", - "Id": 1395 + "Id": 1395, + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "Rank": 11 }, { - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Rank": 1, "CommandName": "Set-PnPPageTextPart", - "Id": 1396 + "Id": 1396, + "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`\"\"", - "Rank": 1, "CommandName": "Set-PnPPageWebPart", - "Id": 1397 + "Id": 1397, + "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", - "Rank": 2, "CommandName": "Set-PnPPageWebPart", - "Id": 1398 + "Id": 1398, + "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\"", - "Rank": 1, "CommandName": "Set-PnPPlannerBucket", - "Id": 1399 + "Id": 1399, + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "Rank": 1 }, { - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Rank": 1, "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1400 + "Id": 1400, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Rank": 1 }, { - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Rank": 2, "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1401 + "Id": 1401, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "Rank": 2 }, { - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Rank": 1, "CommandName": "Set-PnPPlannerPlan", - "Id": 1402 + "Id": 1402, + "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", - "Rank": 1, "CommandName": "Set-PnPPlannerTask", - "Id": 1403 + "Id": 1403, + "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\"", - "Rank": 2, "CommandName": "Set-PnPPlannerTask", - "Id": 1404 + "Id": 1404, + "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\"", - "Rank": 3, "CommandName": "Set-PnPPlannerTask", - "Id": 1405 + "Id": 1405, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Rank": 3 }, { - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, "CommandName": "Set-PnPPlannerUserPolicy", - "Id": 1406 + "Id": 1406, + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Rank": 1, "CommandName": "Set-PnPPropertyBagValue", - "Id": 1407 + "Id": 1407, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "Rank": 1 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Rank": 2, "CommandName": "Set-PnPPropertyBagValue", - "Id": 1408 + "Id": 1408, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "Rank": 2 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Rank": 3, "CommandName": "Set-PnPPropertyBagValue", - "Id": 1409 + "Id": 1409, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "Rank": 3 }, { - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Rank": 1, "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1410 + "Id": 1410, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "Rank": 1 }, { - "Command": "Set-PnPRequestAccessEmails -Disabled", - "Rank": 2, "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1411 + "Id": 1411, + "Command": "Set-PnPRequestAccessEmails -Disabled", + "Rank": 2 }, { - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Rank": 3, "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1412 + "Id": 1412, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "Rank": 3 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Rank": 1, "CommandName": "Set-PnPRoleDefinition", - "Id": 1413 + "Id": 1413, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "Rank": 1 }, { - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Rank": 2, "CommandName": "Set-PnPRoleDefinition", - "Id": 1414 + "Id": 1414, + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "Rank": 2 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Rank": 3, "CommandName": "Set-PnPRoleDefinition", - "Id": 1415 + "Id": 1415, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "Rank": 3 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Rank": 4, "CommandName": "Set-PnPRoleDefinition", - "Id": 1416 + "Id": 1416, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "Rank": 4 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Rank": 1, "CommandName": "Set-PnPSearchConfiguration", - "Id": 1417 + "Id": 1417, + "Command": "Set-PnPSearchConfiguration -Configuration $config", + "Rank": 1 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, "CommandName": "Set-PnPSearchConfiguration", - "Id": 1418 + "Id": 1418, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "Rank": 2 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, "CommandName": "Set-PnPSearchConfiguration", - "Id": 1419 + "Id": 1419, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Rank": 3 }, { - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, "CommandName": "Set-PnPSearchConfiguration", - "Id": 1420 + "Id": 1420, + "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", - "Rank": 1, "CommandName": "Set-PnPSearchExternalItem", - "Id": 1421 + "Id": 1421, + "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\"", - "Rank": 2, "CommandName": "Set-PnPSearchExternalItem", - "Id": 1422 + "Id": 1422, + "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", - "Rank": 1, "CommandName": "Set-PnPSearchSettings", - "Id": 1423 + "Id": 1423, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Rank": 1 }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Rank": 2, "CommandName": "Set-PnPSearchSettings", - "Id": 1424 + "Id": 1424, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "Rank": 2 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Rank": 3, "CommandName": "Set-PnPSearchSettings", - "Id": 1425 + "Id": 1425, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "Rank": 3 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Rank": 4, "CommandName": "Set-PnPSearchSettings", - "Id": 1426 + "Id": 1426, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "Rank": 4 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Rank": 5, "CommandName": "Set-PnPSearchSettings", - "Id": 1427 + "Id": 1427, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "Rank": 5 }, { - "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Rank": 6, "CommandName": "Set-PnPSearchSettings", - "Id": 1428 + "Id": 1428, + "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "Rank": 6 }, { - "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Rank": 7, "CommandName": "Set-PnPSearchSettings", - "Id": 1429 + "Id": 1429, + "Command": "Set-PnPSearchSettings -SearchScope Hub", + "Rank": 7 }, { - "Command": "Set-PnPSite -Classification \"HBI\"", - "Rank": 1, "CommandName": "Set-PnPSite", - "Id": 1430 + "Id": 1430, + "Command": "Set-PnPSite -Classification \"HBI\"", + "Rank": 1 }, { - "Command": "Set-PnPSite -Classification $null", - "Rank": 2, "CommandName": "Set-PnPSite", - "Id": 1431 + "Id": 1431, + "Command": "Set-PnPSite -Classification $null", + "Rank": 2 }, { - "Command": "Set-PnPSite -DisableFlows", - "Rank": 3, "CommandName": "Set-PnPSite", - "Id": 1432 + "Id": 1432, + "Command": "Set-PnPSite -DisableFlows", + "Rank": 3 }, { - "Command": "Set-PnPSite -DisableFlows:$false", - "Rank": 4, "CommandName": "Set-PnPSite", - "Id": 1433 + "Id": 1433, + "Command": "Set-PnPSite -DisableFlows:$false", + "Rank": 4 }, { - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Rank": 5, "CommandName": "Set-PnPSite", - "Id": 1434 + "Id": 1434, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "Rank": 5 }, { - "Command": "Set-PnPSite -NoScriptSite $false", - "Rank": 6, "CommandName": "Set-PnPSite", - "Id": 1435 + "Id": 1435, + "Command": "Set-PnPSite -NoScriptSite $false", + "Rank": 6 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "Rank": 7, "CommandName": "Set-PnPSite", - "Id": 1436 + "Id": 1436, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "Rank": 7 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "Rank": 8, "CommandName": "Set-PnPSite", - "Id": 1437 + "Id": 1437, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "Rank": 8 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "Rank": 9, "CommandName": "Set-PnPSite", - "Id": 1438 + "Id": 1438, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "Rank": 9 }, { - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "Rank": 10, "CommandName": "Set-PnPSite", - "Id": 1439 + "Id": 1439, + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "Rank": 10 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "Rank": 11, "CommandName": "Set-PnPSite", - "Id": 1440 + "Id": 1440, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "Rank": 11 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "Rank": 12, "CommandName": "Set-PnPSite", - "Id": 1441 + "Id": 1441, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "Rank": 12 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "Rank": 13, "CommandName": "Set-PnPSite", - "Id": 1442 + "Id": 1442, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "Rank": 13 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "Rank": 14, "CommandName": "Set-PnPSite", - "Id": 1443 + "Id": 1443, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "Rank": 14 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "Rank": 15, "CommandName": "Set-PnPSite", - "Id": 1444 + "Id": 1444, + "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", - "Rank": 16, "CommandName": "Set-PnPSite", - "Id": 1445 + "Id": 1445, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "Rank": 16 }, { - "Command": "Set-PnPSite -CancelVPForExistingLibs", - "Rank": 17, "CommandName": "Set-PnPSite", - "Id": 1446 + "Id": 1446, + "Command": "Set-PnPSite -CancelVPForExistingLibs", + "Rank": 17 }, { - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Rank": 1, "CommandName": "Set-PnPSiteClassification", - "Id": 1447 + "Id": 1447, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteClosure -State Open", - "Rank": 1, "CommandName": "Set-PnPSiteClosure", - "Id": 1448 + "Id": 1448, + "Command": "Set-PnPSiteClosure -State Open", + "Rank": 1 }, { - "Command": "Set-PnPSiteClosure -State Closed", - "Rank": 2, "CommandName": "Set-PnPSiteClosure", - "Id": 1449 + "Id": 1449, + "Command": "Set-PnPSiteClosure -State Closed", + "Rank": 2 }, { - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Rank": 1, "CommandName": "Set-PnPSiteDesign", - "Id": 1450 + "Id": 1450, + "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\"", - "Rank": 2, "CommandName": "Set-PnPSiteDesign", - "Id": 1451 + "Id": 1451, + "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\"", - "Rank": 1, "CommandName": "Set-PnPSiteGroup", - "Id": 1452 + "Id": 1452, + "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", - "Rank": 2, "CommandName": "Set-PnPSiteGroup", - "Id": 1453 + "Id": 1453, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "Rank": 2 }, { - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 1, "CommandName": "Set-PnPSitePolicy", - "Id": 1454 + "Id": 1454, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1, "CommandName": "Set-PnPSiteScript", - "Id": 1455 + "Id": 1455, + "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\"", - "Rank": 1, "CommandName": "Set-PnPSiteScriptPackage", - "Id": 1456 + "Id": 1456, + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Rank": 1, "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1457 + "Id": 1457, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Rank": 2, "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1458 + "Id": 1458, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "Rank": 2 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 1, "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1459 + "Id": 1459, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 2, "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1460 + "Id": 1460, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "Rank": 2 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 3, "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1461 + "Id": 1461, + "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\"", - "Rank": 4, "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1462 + "Id": 1462, + "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\"}", - "Rank": 5, "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1463 + "Id": 1463, + "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\"}", - "Rank": 6, "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1464 + "Id": 1464, + "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\"", - "Rank": 1, "CommandName": "Set-PnPStorageEntity", - "Id": 1465 + "Id": 1465, + "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\"", - "Rank": 2, "CommandName": "Set-PnPStorageEntity", - "Id": 1466 + "Id": 1466, + "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/\"", - "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1467 + "Id": 1467, + "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/\"", - "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1468 + "Id": 1468, + "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\"", - "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1469 + "Id": 1469, + "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\"", - "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1470 + "Id": 1470, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 2 }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Rank": 1, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1471 + "Id": 1471, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "Rank": 1 }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Rank": 2, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1472 + "Id": 1472, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "Rank": 2 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Rank": 1, "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1473 + "Id": 1473, + "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'", - "Rank": 2, "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1474 + "Id": 1474, + "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\"}", - "Rank": 3, "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1475 + "Id": 1475, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "Rank": 3 }, { - "Command": "Set-PnPTeamifyPromptHidden", - "Rank": 1, "CommandName": "Set-PnPTeamifyPromptHidden", - "Id": 1476 + "Id": 1476, + "Command": "Set-PnPTeamifyPromptHidden", + "Rank": 1 }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Rank": 1, "CommandName": "Set-PnPTeamsChannel", - "Id": 1477 + "Id": 1477, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "Rank": 1 }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Rank": 2, "CommandName": "Set-PnPTeamsChannel", - "Id": 1478 + "Id": 1478, + "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", - "Rank": 1, "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1479 + "Id": 1479, + "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", - "Rank": 2, "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1480 + "Id": 1480, + "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\"", - "Rank": 1, "CommandName": "Set-PnPTeamsTab", - "Id": 1481 + "Id": 1481, + "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\"", - "Rank": 1, "CommandName": "Set-PnPTeamsTag", - "Id": 1482 + "Id": 1482, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "Rank": 1 }, { - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Rank": 1, "CommandName": "Set-PnPTeamsTeam", - "Id": 1483 + "Id": 1483, + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "Rank": 1 }, { - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Rank": 2, "CommandName": "Set-PnPTeamsTeam", - "Id": 1484 + "Id": 1484, + "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", - "Rank": 3, "CommandName": "Set-PnPTeamsTeam", - "Id": 1485 + "Id": 1485, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "Rank": 3 }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Rank": 4, "CommandName": "Set-PnPTeamsTeam", - "Id": 1486 + "Id": 1486, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "Rank": 4 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Rank": 1, "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1487 + "Id": 1487, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "Rank": 1 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Rank": 2, "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1488 + "Id": 1488, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "Rank": 2 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Rank": 3, "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1489 + "Id": 1489, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "Rank": 3 }, { - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Rank": 1, "CommandName": "Set-PnPTeamsTeamPicture", - "Id": 1490 + "Id": 1490, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "Rank": 1 }, { - "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Rank": 1, "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1491 + "Id": 1491, + "Command": "Set-PnPTemporarilyDisableAppBar $true", + "Rank": 1 }, { - "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Rank": 2, "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1492 + "Id": 1492, + "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\"", - "Rank": 1, "CommandName": "Set-PnPTenant", - "Id": 1493 + "Id": 1493, + "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", - "Rank": 2, "CommandName": "Set-PnPTenant", - "Id": 1494 + "Id": 1494, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "Rank": 2 }, { - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Rank": 3, "CommandName": "Set-PnPTenant", - "Id": 1495 + "Id": 1495, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "Rank": 3 }, { - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Rank": 4, "CommandName": "Set-PnPTenant", - "Id": 1496 + "Id": 1496, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "Rank": 4 }, { - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Rank": 1, "CommandName": "Set-PnPTenantAppCatalogUrl", - "Id": 1497 + "Id": 1497, + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "Rank": 1 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Rank": 1, "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1498 + "Id": 1498, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "Rank": 1 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Rank": 2, "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1499 + "Id": 1499, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "Rank": 2 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Rank": 3, "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1500 + "Id": 1500, + "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\"", - "Rank": 1, "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1501 + "Id": 1501, + "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\"", - "Rank": 2, "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1502 + "Id": 1502, + "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", - "Rank": 1, "CommandName": "Set-PnPTenantSite", - "Id": 1503 + "Id": 1503, + "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", - "Rank": 2, "CommandName": "Set-PnPTenantSite", - "Id": 1504 + "Id": 1504, + "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\"", - "Rank": 3, "CommandName": "Set-PnPTenantSite", - "Id": 1505 + "Id": 1505, + "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\")", - "Rank": 4, "CommandName": "Set-PnPTenantSite", - "Id": 1506 + "Id": 1506, + "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", - "Rank": 5, "CommandName": "Set-PnPTenantSite", - "Id": 1507 + "Id": 1507, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "Rank": 5 }, { - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Rank": 1, "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1508 + "Id": 1508, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "Rank": 1 }, { - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Rank": 2, "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1509 + "Id": 1509, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "Rank": 2 }, { - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Rank": 1, "CommandName": "Set-PnPTerm", - "Id": 1510 + "Id": 1510, + "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\"}", - "Rank": 2, "CommandName": "Set-PnPTerm", - "Id": 1511 + "Id": 1511, + "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\"}", - "Rank": 3, "CommandName": "Set-PnPTerm", - "Id": 1512 + "Id": 1512, + "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", - "Rank": 4, "CommandName": "Set-PnPTerm", - "Id": 1513 + "Id": 1513, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "Rank": 4 }, { - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Rank": 1, "CommandName": "Set-PnPTermGroup", - "Id": 1514 + "Id": 1514, + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "Rank": 1 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Rank": 1, "CommandName": "Set-PnPTermSet", - "Id": 1515 + "Id": 1515, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "Rank": 1 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Rank": 2, "CommandName": "Set-PnPTermSet", - "Id": 1516 + "Id": 1516, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "Rank": 2 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Rank": 3, "CommandName": "Set-PnPTermSet", - "Id": 1517 + "Id": 1517, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "Rank": 3 }, { - "Command": "Set-PnPTheme", - "Rank": 1, "CommandName": "Set-PnPTheme", - "Id": 1518 + "Id": 1518, + "Command": "Set-PnPTheme", + "Rank": 1 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Rank": 2, "CommandName": "Set-PnPTheme", - "Id": 1519 + "Id": 1519, + "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'", - "Rank": 3, "CommandName": "Set-PnPTheme", - "Id": 1520 + "Id": 1520, + "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", - "Rank": 4, "CommandName": "Set-PnPTheme", - "Id": 1521 + "Id": 1521, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "Rank": 4 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Rank": 1, "CommandName": "Set-PnPTraceLog", - "Id": 1522 + "Id": 1522, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "Rank": 1 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Rank": 2, "CommandName": "Set-PnPTraceLog", - "Id": 1523 + "Id": 1523, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "Rank": 2 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Rank": 3, "CommandName": "Set-PnPTraceLog", - "Id": 1524 + "Id": 1524, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "Rank": 3 }, { - "Command": "Set-PnPTraceLog -Off", - "Rank": 4, "CommandName": "Set-PnPTraceLog", - "Id": 1525 + "Id": 1525, + "Command": "Set-PnPTraceLog -Off", + "Rank": 4 }, { - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Rank": 1, "CommandName": "Set-PnPUserOneDriveQuota", - "Id": 1526 + "Id": 1526, + "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'", - "Rank": 1, "CommandName": "Set-PnPUserProfileProperty", - "Id": 1527 + "Id": 1527, + "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'", - "Rank": 2, "CommandName": "Set-PnPUserProfileProperty", - "Id": 1528 + "Id": 1528, + "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\"}", - "Rank": 1, "CommandName": "Set-PnPView", - "Id": 1529 + "Id": 1529, + "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\"", - "Rank": 2, "CommandName": "Set-PnPView", - "Id": 1530 + "Id": 1530, + "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 \"\"", - "Rank": 3, "CommandName": "Set-PnPView", - "Id": 1531 + "Id": 1531, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "Rank": 3 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Rank": 4, "CommandName": "Set-PnPView", - "Id": 1532 + "Id": 1532, + "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", - "Rank": 1, "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1533 + "Id": 1533, + "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\"", - "Rank": 2, "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1534 + "Id": 1534, + "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", - "Rank": 3, "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1535 + "Id": 1535, + "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", - "Rank": 4, "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1536 + "Id": 1536, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "Rank": 4 }, { - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Rank": 1, "CommandName": "Set-PnPWeb", - "Id": 1537 + "Id": 1537, + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "Rank": 1 }, { - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Rank": 2, "CommandName": "Set-PnPWeb", - "Id": 1538 + "Id": 1538, + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "Rank": 2 }, { - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Rank": 3, "CommandName": "Set-PnPWeb", - "Id": 1539 + "Id": 1539, + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "Rank": 3 }, { - "Command": "Set-PnPWeb -NoCrawl:$true", - "Rank": 4, "CommandName": "Set-PnPWeb", - "Id": 1540 + "Id": 1540, + "Command": "Set-PnPWeb -NoCrawl:$true", + "Rank": 4 }, { - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Rank": 1, "CommandName": "Set-PnPWebHeader", - "Id": 1541 + "Id": 1541, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "Rank": 1 }, { - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Rank": 2, "CommandName": "Set-PnPWebHeader", - "Id": 1542 + "Id": 1542, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "Rank": 2 }, { - "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Rank": 3, "CommandName": "Set-PnPWebHeader", - "Id": 1543 + "Id": 1543, + "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", - "Rank": 1, "CommandName": "Set-PnPWebhookSubscription", - "Id": 1544 + "Id": 1544, + "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\"", - "Rank": 2, "CommandName": "Set-PnPWebhookSubscription", - "Id": 1545 + "Id": 1545, + "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\"", - "Rank": 1, "CommandName": "Set-PnPWebPartProperty", - "Id": 1546 + "Id": 1546, + "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\"", - "Rank": 1, "CommandName": "Set-PnPWebPermission", - "Id": 1547 + "Id": 1547, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Rank": 1 }, { - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Rank": 2, "CommandName": "Set-PnPWebPermission", - "Id": 1548 + "Id": 1548, + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "Rank": 2 }, { - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 3, "CommandName": "Set-PnPWebPermission", - "Id": 1549 + "Id": 1549, + "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\"", - "Rank": 4, "CommandName": "Set-PnPWebPermission", - "Id": 1550 + "Id": 1550, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "Rank": 4 }, { - "Command": "Set-PnPWebTheme -Theme MyTheme", - "Rank": 1, "CommandName": "Set-PnPWebTheme", - "Id": 1551 + "Id": 1551, + "Command": "Set-PnPWebTheme -Theme MyTheme", + "Rank": 1 }, { - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Rank": 2, "CommandName": "Set-PnPWebTheme", - "Id": 1552 + "Id": 1552, + "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", - "Rank": 1, "CommandName": "Set-PnPWikiPageContent", - "Id": 1553 + "Id": 1553, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "Rank": 1 }, { - "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Rank": 1, "CommandName": "Submit-PnPSearchQuery", - "Id": 1554 + "Id": 1554, + "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "Rank": 1 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Rank": 2, "CommandName": "Submit-PnPSearchQuery", - "Id": 1555 + "Id": 1555, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "Rank": 2 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Rank": 3, "CommandName": "Submit-PnPSearchQuery", - "Id": 1556 + "Id": 1556, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "Rank": 3 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Rank": 4, "CommandName": "Submit-PnPSearchQuery", - "Id": 1557 + "Id": 1557, + "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", - "Rank": 5, "CommandName": "Submit-PnPSearchQuery", - "Id": 1558 + "Id": 1558, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "Rank": 5 }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Rank": 1, "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1559 + "Id": 1559, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "Rank": 1 }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Rank": 2, "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1560 + "Id": 1560, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "Rank": 2 }, { - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "CommandName": "Sync-PnPAppToTeams", - "Id": 1561 + "Id": 1561, + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Rank": 1, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1562 + "Id": 1562, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "Rank": 1 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Rank": 2, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1563 + "Id": 1563, + "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", - "Rank": 3, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1564 + "Id": 1564, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "Rank": 3 }, { - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Rank": 1, "CommandName": "Test-PnPListItemIsRecord", - "Id": 1565 + "Id": 1565, + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "Rank": 1 }, { - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Rank": 1, "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Id": 1566 + "Id": 1566, + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "Rank": 1 }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, "CommandName": "Test-PnPSite", - "Id": 1567 + "Id": 1567, + "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\"", - "Rank": 2, "CommandName": "Test-PnPSite", - "Id": 1568 + "Id": 1568, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Rank": 2 }, { - "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Rank": 1, "CommandName": "Test-PnPTenantTemplate", - "Id": 1569 + "Id": 1569, + "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "Rank": 1 }, { - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Rank": 1, "CommandName": "Undo-PnPFileCheckedOut", - "Id": 1570 + "Id": 1570, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "Rank": 1 }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "CommandName": "Uninstall-PnPApp", - "Id": 1571 + "Id": 1571, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "CommandName": "Uninstall-PnPApp", - "Id": 1572 + "Id": 1572, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2 }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "CommandName": "Unpublish-PnPApp", - "Id": 1573 + "Id": 1573, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "CommandName": "Unpublish-PnPApp", - "Id": 1574 + "Id": 1574, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2 }, { - "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Rank": 1, "CommandName": "Unpublish-PnPContentType", - "Id": 1575 + "Id": 1575, + "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "Rank": 1 }, { - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1576 + "Id": 1576, + "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", - "Rank": 2, "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1577 + "Id": 1577, + "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\"", - "Rank": 1, "CommandName": "Unregister-PnPHubSite", - "Id": 1578 + "Id": 1578, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Rank": 1 }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "CommandName": "Update-PnPApp", - "Id": 1579 + "Id": 1579, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "CommandName": "Update-PnPApp", - "Id": 1580 + "Id": 1580, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2 }, { - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 1, "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1581 + "Id": 1581, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Rank": 1 }, { - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Rank": 2, "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1582 + "Id": 1582, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "Rank": 2 }, { - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 3, "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1583 + "Id": 1583, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 3 }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Rank": 1, "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1584 + "Id": 1584, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "Rank": 1 }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2, "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1585 + "Id": 1585, + "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\"", - "Rank": 3, "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1586 + "Id": 1586, + "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", - "Rank": 1, "CommandName": "Update-PnPTeamsApp", - "Id": 1587 + "Id": 1587, + "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", - "Rank": 1, "CommandName": "Update-PnPTeamsUser", - "Id": 1588 + "Id": 1588, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 1 }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2, "CommandName": "Update-PnPTeamsUser", - "Id": 1589 + "Id": 1589, + "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", - "Rank": 3, "CommandName": "Update-PnPTeamsUser", - "Id": 1590 + "Id": 1590, + "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", - "Rank": 1, "CommandName": "Update-PnPUserType", - "Id": 1591 + "Id": 1591, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "Rank": 1 } ] diff --git a/version.txt b/version.txt index d5a2be8f8..9279c1af5 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.99 \ No newline at end of file +2.2.100 \ No newline at end of file From 65cd5a02d80a9d763f1c420cfacfe5de3cefb059 Mon Sep 17 00:00:00 2001 From: Dave Paylor Date: Mon, 16 Oct 2023 19:04:39 +1000 Subject: [PATCH 085/146] Update Set-PnPTenantSite.md (#3501) Added -DisableSharingForNonOwners to documentation --- documentation/Set-PnPTenantSite.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/documentation/Set-PnPTenantSite.md b/documentation/Set-PnPTenantSite.md index c164e7b66..ff9df2d55 100644 --- a/documentation/Set-PnPTenantSite.md +++ b/documentation/Set-PnPTenantSite.md @@ -284,6 +284,20 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -DisableSharingForNonOwners +Specifies whether non-owners should be prevented from inviting new users to the site. Setting this will also disable Access Request Emails. + +```yaml +Type: SwitchParameter +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DisableCompanyWideSharingLinks Determines whether company-wide sharing links are disabled in collection. From 4def3ac71e571488b375a642c4cef41375bb1e31 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Mon, 16 Oct 2023 12:05:44 +0300 Subject: [PATCH 086/146] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05f458d2e..dfee25249 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -78,6 +78,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Contributors +- Dave Paylor [paylord] - [smsdaniel] - Jim Duncan [sparkitect] - Jonathan Smith [jonathan-m-smith] From 86c0b976e3659777121e37b1148c76bf34fb6dd8 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Tue, 17 Oct 2023 02:39:44 +0000 Subject: [PATCH 087/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9546 ++++++++--------- version.txt | 2 +- 3 files changed, 4775 insertions(+), 4775 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index b5645d85a..1e77a6ad7 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -a160cbfadd631e98b3792bca268486d5e42291b6 \ No newline at end of file +913274835a0b289a0d9fe64e34bd9c50004bad2a \ 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 58f39fbd4..087e460f1 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9548 +1,9548 @@ [ { - "CommandName": "Add-PnPAlert", - "Id": 1, "Command": "Add-PnPAlert -List \"Demo List\"", - "Rank": 1 + "CommandName": "Add-PnPAlert", + "Rank": 1, + "Id": 1 }, { - "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, + "Id": 2 }, { - "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, + "Id": 3 }, { - "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, + "Id": 4 }, { - "CommandName": "Add-PnPApp", - "Id": 5, "Command": "Add-PnPApp -Path ./myapp.sppkg", - "Rank": 1 + "CommandName": "Add-PnPApp", + "Rank": 1, + "Id": 5 }, { - "CommandName": "Add-PnPApp", - "Id": 6, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Rank": 2 + "CommandName": "Add-PnPApp", + "Rank": 2, + "Id": 6 }, { - "CommandName": "Add-PnPApp", - "Id": 7, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "Rank": 3 + "CommandName": "Add-PnPApp", + "Rank": 3, + "Id": 7 }, { - "CommandName": "Add-PnPApp", - "Id": 8, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "Rank": 4 + "CommandName": "Add-PnPApp", + "Rank": 4, + "Id": 8 }, { - "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, + "Id": 9 }, { - "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 10, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "Rank": 1 + "CommandName": "Add-PnPAvailableSiteClassification", + "Rank": 1, + "Id": 10 }, { - "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 11, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Rank": 2 + "CommandName": "Add-PnPAvailableSiteClassification", + "Rank": 2, + "Id": 11 }, { - "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, + "Id": 12 }, { - "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, + "Id": 13 }, { - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 14, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3 + "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 3, + "Id": 14 }, { - "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, + "Id": 15 }, { - "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, + "Id": 16 }, { - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 17, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3 + "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 3, + "Id": 17 }, { - "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, + "Id": 18 }, { - "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, + "Id": 19 }, { - "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, + "Id": 20 }, { - "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, + "Id": 21 }, { - "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, + "Id": 22 }, { - "CommandName": "Add-PnPContentType", - "Id": 23, "Command": "Add-PnPContentType -Name \"Project Item\"", - "Rank": 4 + "CommandName": "Add-PnPContentType", + "Rank": 4, + "Id": 23 }, { - "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, + "Id": 24 }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 25, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "Rank": 1 + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Rank": 1, + "Id": 25 }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 26, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "Rank": 2 + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Rank": 2, + "Id": 26 }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 27, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1 + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Rank": 1, + "Id": 27 }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 28, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2 + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Rank": 2, + "Id": 28 }, { - "CommandName": "Add-PnPContentTypeToList", - "Id": 29, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "Rank": 1 + "CommandName": "Add-PnPContentTypeToList", + "Rank": 1, + "Id": 29 }, { - "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, + "Id": 30 }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 31, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "Rank": 1 + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Rank": 1, + "Id": 31 }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 32, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "Rank": 2 + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Rank": 2, + "Id": 32 }, { - "CommandName": "Add-PnPDocumentSet", - "Id": 33, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "Rank": 1 + "CommandName": "Add-PnPDocumentSet", + "Rank": 1, + "Id": 33 }, { - "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, + "Id": 34 }, { - "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, + "Id": 35 }, { - "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, + "Id": 36 }, { - "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, + "Id": 37 }, { - "CommandName": "Add-PnPField", - "Id": 38, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "Rank": 1 + "CommandName": "Add-PnPField", + "Rank": 1, + "Id": 38 }, { - "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, + "Id": 39 }, { - "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, + "Id": 40 }, { - "CommandName": "Add-PnPField", - "Id": 41, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "Rank": 4 + "CommandName": "Add-PnPField", + "Rank": 4, + "Id": 41 }, { - "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, + "Id": 42 }, { - "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, + "Id": 43 }, { - "CommandName": "Add-PnPFieldToContentType", - "Id": 44, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1 + "CommandName": "Add-PnPFieldToContentType", + "Rank": 1, + "Id": 44 }, { - "CommandName": "Add-PnPFile", - "Id": 45, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "Rank": 1 + "CommandName": "Add-PnPFile", + "Rank": 1, + "Id": 45 }, { - "CommandName": "Add-PnPFile", - "Id": 46, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "Rank": 2 + "CommandName": "Add-PnPFile", + "Rank": 2, + "Id": 46 }, { - "CommandName": "Add-PnPFile", - "Id": 47, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 3 + "CommandName": "Add-PnPFile", + "Rank": 3, + "Id": 47 }, { - "CommandName": "Add-PnPFile", - "Id": 48, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "Rank": 4 + "CommandName": "Add-PnPFile", + "Rank": 4, + "Id": 48 }, { - "CommandName": "Add-PnPFile", - "Id": 49, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 5 + "CommandName": "Add-PnPFile", + "Rank": 5, + "Id": 49 }, { - "CommandName": "Add-PnPFile", - "Id": 50, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "Rank": 6 + "CommandName": "Add-PnPFile", + "Rank": 6, + "Id": 50 }, { - "CommandName": "Add-PnPFile", - "Id": 51, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "Rank": 7 + "CommandName": "Add-PnPFile", + "Rank": 7, + "Id": 51 }, { - "CommandName": "Add-PnPFile", - "Id": 52, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 8 + "CommandName": "Add-PnPFile", + "Rank": 8, + "Id": 52 }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 53, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 1, + "Id": 53 }, { - "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, + "Id": 54 }, { - "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, + "Id": 55 }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 56, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Rank": 1, + "Id": 56 }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 57, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "Rank": 2 + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Rank": 2, + "Id": 57 }, { - "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, + "Id": 58 }, { - "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, + "Id": 59 }, { - "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, + "Id": 60 }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 61, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "Rank": 1 + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 1, + "Id": 61 }, { - "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, + "Id": 62 }, { - "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, + "Id": 63 }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 64, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "Rank": 4 + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 4, + "Id": 64 }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 65, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "Rank": 5 + "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 5, + "Id": 65 }, { - "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, + "Id": 66 }, { - "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, + "Id": 67 }, { - "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, + "Id": 68 }, { - "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, + "Id": 69 }, { - "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, + "Id": 70 }, { - "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, + "Id": 71 }, { - "CommandName": "Add-PnPFolder", - "Id": 72, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1 + "CommandName": "Add-PnPFolder", + "Rank": 1, + "Id": 72 }, { - "CommandName": "Add-PnPFolder", - "Id": 73, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Rank": 2 + "CommandName": "Add-PnPFolder", + "Rank": 2, + "Id": 73 }, { - "CommandName": "Add-PnPFolder", - "Id": 74, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Rank": 3 + "CommandName": "Add-PnPFolder", + "Rank": 3, + "Id": 74 }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 75, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Rank": 1, + "Id": 75 }, { - "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, + "Id": 76 }, { - "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, + "Id": 77 }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 78, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Rank": 1, + "Id": 78 }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 79, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Rank": 2 + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Rank": 2, + "Id": 79 }, { - "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, + "Id": 80 }, { - "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, + "Id": 81 }, { - "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, + "Id": 82 }, { - "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, + "Id": 83 }, { - "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, + "Id": 84 }, { - "CommandName": "Add-PnPGroupMember", - "Id": 85, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1 + "CommandName": "Add-PnPGroupMember", + "Rank": 1, + "Id": 85 }, { - "CommandName": "Add-PnPGroupMember", - "Id": 86, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Rank": 2 + "CommandName": "Add-PnPGroupMember", + "Rank": 2, + "Id": 86 }, { - "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, + "Id": 87 }, { - "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, + "Id": 88 }, { - "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, + "Id": 89 }, { - "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, + "Id": 90 }, { - "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, + "Id": 91 }, { - "CommandName": "Add-PnPJavaScriptBlock", - "Id": 92, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "Rank": 1 + "CommandName": "Add-PnPJavaScriptBlock", + "Rank": 1, + "Id": 92 }, { - "CommandName": "Add-PnPJavaScriptBlock", - "Id": 93, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Rank": 2 + "CommandName": "Add-PnPJavaScriptBlock", + "Rank": 2, + "Id": 93 }, { - "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, + "Id": 94 }, { - "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, + "Id": 95 }, { - "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, + "Id": 96 }, { - "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, + "Id": 97 }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 98, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Rank": 1 + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 1, + "Id": 98 }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 99, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Rank": 2 + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 2, + "Id": 99 }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 100, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Rank": 3 + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 3, + "Id": 100 }, { - "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, + "Id": 101 }, { - "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, + "Id": 102 }, { - "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, + "Id": 103 }, { - "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, + "Id": 104 }, { - "CommandName": "Add-PnPListItem", - "Id": 105, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "Rank": 5 + "CommandName": "Add-PnPListItem", + "Rank": 5, + "Id": 105 }, { - "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, + "Id": 106 }, { - "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, + "Id": 107 }, { - "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, + "Id": 108 }, { - "CommandName": "Add-PnPListItemComment", - "Id": 109, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "Rank": 1 + "CommandName": "Add-PnPListItemComment", + "Rank": 1, + "Id": 109 }, { - "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, + "Id": 110 }, { - "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, + "Id": 111 }, { - "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, + "Id": 112 }, { - "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, + "Id": 113 }, { - "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, + "Id": 114 }, { - "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, + "Id": 115 }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 116, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "Rank": 2 + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 2, + "Id": 116 }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 117, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Rank": 3 + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 3, + "Id": 117 }, { - "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, + "Id": 118 }, { - "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, + "Id": 119 }, { - "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, + "Id": 120 }, { - "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, + "Id": 121 }, { - "CommandName": "Add-PnPNavigationNode", - "Id": 122, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "Rank": 5 + "CommandName": "Add-PnPNavigationNode", + "Rank": 5, + "Id": 122 }, { - "CommandName": "Add-PnPNavigationNode", - "Id": 123, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Rank": 6 + "CommandName": "Add-PnPNavigationNode", + "Rank": 6, + "Id": 123 }, { - "CommandName": "Add-PnPNavigationNode", - "Id": 124, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Rank": 7 + "CommandName": "Add-PnPNavigationNode", + "Rank": 7, + "Id": 124 }, { - "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, + "Id": 125 }, { - "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 126, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "Rank": 1 + "CommandName": "Add-PnPOrgAssetsLibrary", + "Rank": 1, + "Id": 126 }, { - "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, + "Id": 127 }, { - "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, + "Id": 128 }, { - "CommandName": "Add-PnPOrgNewsSite", - "Id": 129, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "Rank": 1 + "CommandName": "Add-PnPOrgNewsSite", + "Rank": 1, + "Id": 129 }, { - "CommandName": "Add-PnPPage", - "Id": 130, "Command": "Add-PnPPage -Name \"NewPage\"", - "Rank": 1 + "CommandName": "Add-PnPPage", + "Rank": 1, + "Id": 130 }, { - "CommandName": "Add-PnPPage", - "Id": 131, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Rank": 2 + "CommandName": "Add-PnPPage", + "Rank": 2, + "Id": 131 }, { - "CommandName": "Add-PnPPage", - "Id": 132, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Rank": 3 + "CommandName": "Add-PnPPage", + "Rank": 3, + "Id": 132 }, { - "CommandName": "Add-PnPPage", - "Id": 133, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Rank": 4 + "CommandName": "Add-PnPPage", + "Rank": 4, + "Id": 133 }, { - "CommandName": "Add-PnPPage", - "Id": 134, "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Rank": 5 + "CommandName": "Add-PnPPage", + "Rank": 5, + "Id": 134 }, { - "CommandName": "Add-PnPPage", - "Id": 135, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Rank": 6 + "CommandName": "Add-PnPPage", + "Rank": 6, + "Id": 135 }, { - "CommandName": "Add-PnPPage", - "Id": 136, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7 + "CommandName": "Add-PnPPage", + "Rank": 7, + "Id": 136 }, { - "CommandName": "Add-PnPPage", - "Id": 137, "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Rank": 8 + "CommandName": "Add-PnPPage", + "Rank": 8, + "Id": 137 }, { - "CommandName": "Add-PnPPage", - "Id": 138, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9 + "CommandName": "Add-PnPPage", + "Rank": 9, + "Id": 138 }, { - "CommandName": "Add-PnPPage", - "Id": 139, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10 + "CommandName": "Add-PnPPage", + "Rank": 10, + "Id": 139 }, { - "CommandName": "Add-PnPPageImageWebPart", - "Id": 140, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Rank": 1 + "CommandName": "Add-PnPPageImageWebPart", + "Rank": 1, + "Id": 140 }, { - "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, + "Id": 141 }, { - "CommandName": "Add-PnPPageSection", - "Id": 142, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Rank": 1 + "CommandName": "Add-PnPPageSection", + "Rank": 1, + "Id": 142 }, { - "CommandName": "Add-PnPPageSection", - "Id": 143, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Rank": 2 + "CommandName": "Add-PnPPageSection", + "Rank": 2, + "Id": 143 }, { - "CommandName": "Add-PnPPageTextPart", - "Id": 144, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Rank": 1 + "CommandName": "Add-PnPPageTextPart", + "Rank": 1, + "Id": 144 }, { - "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, + "Id": 145 }, { - "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, + "Id": 146 }, { - "CommandName": "Add-PnPPageWebPart", - "Id": 147, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "Rank": 1 + "CommandName": "Add-PnPPageWebPart", + "Rank": 1, + "Id": 147 }, { - "CommandName": "Add-PnPPageWebPart", - "Id": 148, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Rank": 2 + "CommandName": "Add-PnPPageWebPart", + "Rank": 2, + "Id": 148 }, { - "CommandName": "Add-PnPPageWebPart", - "Id": 149, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Rank": 3 + "CommandName": "Add-PnPPageWebPart", + "Rank": 3, + "Id": 149 }, { - "CommandName": "Add-PnPPlannerBucket", - "Id": 150, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "Rank": 1 + "CommandName": "Add-PnPPlannerBucket", + "Rank": 1, + "Id": 150 }, { - "CommandName": "Add-PnPPlannerBucket", - "Id": 151, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Rank": 2 + "CommandName": "Add-PnPPlannerBucket", + "Rank": 2, + "Id": 151 }, { - "CommandName": "Add-PnPPlannerRoster", - "Id": 152, "Command": "Add-PnPPlannerRoster", - "Rank": 1 + "CommandName": "Add-PnPPlannerRoster", + "Rank": 1, + "Id": 152 }, { - "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, + "Id": 153 }, { - "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, + "Id": 154 }, { - "CommandName": "Add-PnPPlannerTask", - "Id": 155, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 2 + "CommandName": "Add-PnPPlannerTask", + "Rank": 2, + "Id": 155 }, { - "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, + "Id": 156 }, { - "CommandName": "Add-PnPPublishingImageRendition", - "Id": 157, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1 + "CommandName": "Add-PnPPublishingImageRendition", + "Rank": 1, + "Id": 157 }, { - "CommandName": "Add-PnPPublishingPage", - "Id": 158, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Rank": 1 + "CommandName": "Add-PnPPublishingPage", + "Rank": 1, + "Id": 158 }, { - "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, + "Id": 159 }, { - "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, + "Id": 160 }, { - "CommandName": "Add-PnPRoleDefinition", - "Id": 161, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "Rank": 1 + "CommandName": "Add-PnPRoleDefinition", + "Rank": 1, + "Id": 161 }, { - "CommandName": "Add-PnPRoleDefinition", - "Id": 162, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Rank": 2 + "CommandName": "Add-PnPRoleDefinition", + "Rank": 2, + "Id": 162 }, { - "CommandName": "Add-PnPRoleDefinition", - "Id": 163, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Rank": 3 + "CommandName": "Add-PnPRoleDefinition", + "Rank": 3, + "Id": 163 }, { - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 164, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 1, + "Id": 164 }, { - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 165, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2 + "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 2, + "Id": 165 }, { - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 166, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Rank": 3 + "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 3, + "Id": 166 }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 167, "Command": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1 + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Rank": 1, + "Id": 167 }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 168, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 2 + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Rank": 2, + "Id": 168 }, { - "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, + "Id": 169 }, { - "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, + "Id": 170 }, { - "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, + "Id": 171 }, { - "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, + "Id": 172 }, { - "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, + "Id": 173 }, { - "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, + "Id": 174 }, { - "CommandName": "Add-PnPSiteDesignTask", - "Id": 175, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1 + "CommandName": "Add-PnPSiteDesignTask", + "Rank": 1, + "Id": 175 }, { - "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, + "Id": 176 }, { - "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, + "Id": 177 }, { - "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, + "Id": 178 }, { - "CommandName": "Add-PnPSiteTemplate", - "Id": 179, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "Rank": 1 + "CommandName": "Add-PnPSiteTemplate", + "Rank": 1, + "Id": 179 }, { - "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, + "Id": 180 }, { - "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, + "Id": 181 }, { - "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, + "Id": 182 }, { - "CommandName": "Add-PnPTaxonomyField", - "Id": 183, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Rank": 1 + "CommandName": "Add-PnPTaxonomyField", + "Rank": 1, + "Id": 183 }, { - "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, + "Id": 184 }, { - "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, + "Id": 185 }, { - "CommandName": "Add-PnPTeamsChannel", - "Id": 186, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "Rank": 2 + "CommandName": "Add-PnPTeamsChannel", + "Rank": 2, + "Id": 186 }, { - "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, + "Id": 187 }, { - "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, + "Id": 188 }, { - "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, + "Id": 189 }, { - "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, + "Id": 190 }, { - "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, + "Id": 191 }, { - "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, + "Id": 192 }, { - "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, + "Id": 193 }, { - "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, + "Id": 194 }, { - "CommandName": "Add-PnPTeamsTeam", - "Id": 195, "Command": "Add-PnPTeamsTeam", - "Rank": 1 + "CommandName": "Add-PnPTeamsTeam", + "Rank": 1, + "Id": 195 }, { - "CommandName": "Add-PnPTeamsUser", - "Id": 196, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1 + "CommandName": "Add-PnPTeamsUser", + "Rank": 1, + "Id": 196 }, { - "CommandName": "Add-PnPTeamsUser", - "Id": 197, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2 + "CommandName": "Add-PnPTeamsUser", + "Rank": 2, + "Id": 197 }, { - "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, + "Id": 198 }, { - "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, + "Id": 199 }, { - "CommandName": "Add-PnPTenantCdnOrigin", - "Id": 200, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1 + "CommandName": "Add-PnPTenantCdnOrigin", + "Rank": 1, + "Id": 200 }, { - "CommandName": "Add-PnPTenantSequence", - "Id": 201, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Rank": 1 + "CommandName": "Add-PnPTenantSequence", + "Rank": 1, + "Id": 201 }, { - "CommandName": "Add-PnPTenantSequenceSite", - "Id": 202, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Rank": 1 + "CommandName": "Add-PnPTenantSequenceSite", + "Rank": 1, + "Id": 202 }, { - "CommandName": "Add-PnPTenantSequenceSubSite", - "Id": 203, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Rank": 1 + "CommandName": "Add-PnPTenantSequenceSubSite", + "Rank": 1, + "Id": 203 }, { - "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, + "Id": 204 }, { - "CommandName": "Add-PnPView", - "Id": 205, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "Rank": 1 + "CommandName": "Add-PnPView", + "Rank": 1, + "Id": 205 }, { - "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, + "Id": 206 }, { - "CommandName": "Add-PnPView", - "Id": 207, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "Rank": 3 + "CommandName": "Add-PnPView", + "Rank": 3, + "Id": 207 }, { - "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, + "Id": 208 }, { - "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, + "Id": 209 }, { - "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, + "Id": 210 }, { - "CommandName": "Add-PnPWebhookSubscription", - "Id": 211, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1 + "CommandName": "Add-PnPWebhookSubscription", + "Rank": 1, + "Id": 211 }, { - "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, + "Id": 212 }, { - "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, + "Id": 213 }, { - "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, + "Id": 214 }, { - "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, + "Id": 215 }, { - "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, + "Id": 216 }, { - "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, + "Id": 217 }, { - "CommandName": "Add-PnPWikiPage", - "Id": 218, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "Rank": 1 + "CommandName": "Add-PnPWikiPage", + "Rank": 1, + "Id": 218 }, { - "CommandName": "Clear-PnPAzureADGroupMember", - "Id": 219, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Rank": 1 + "CommandName": "Clear-PnPAzureADGroupMember", + "Rank": 1, + "Id": 219 }, { - "CommandName": "Clear-PnPAzureADGroupOwner", - "Id": 220, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Rank": 1 + "CommandName": "Clear-PnPAzureADGroupOwner", + "Rank": 1, + "Id": 220 }, { - "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 221, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Rank": 1 + "CommandName": "Clear-PnPDefaultColumnValues", + "Rank": 1, + "Id": 221 }, { - "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 222, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Rank": 2 + "CommandName": "Clear-PnPDefaultColumnValues", + "Rank": 2, + "Id": 222 }, { - "CommandName": "Clear-PnPListItemAsRecord", - "Id": 223, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1 + "CommandName": "Clear-PnPListItemAsRecord", + "Rank": 1, + "Id": 223 }, { - "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Id": 224, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Rank": 1 + "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Rank": 1, + "Id": 224 }, { - "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Id": 225, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Rank": 1 + "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Rank": 1, + "Id": 225 }, { - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 226, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1 + "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 1, + "Id": 226 }, { - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 227, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Rank": 2 + "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 2, + "Id": 227 }, { - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 228, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Rank": 3 + "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 3, + "Id": 228 }, { - "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Id": 229, "Command": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1 + "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Rank": 1, + "Id": 229 }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 230, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Rank": 1, + "Id": 230 }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 231, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2 + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Rank": 2, + "Id": 231 }, { - "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, + "Id": 232 }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 233, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Rank": 1 + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Rank": 1, + "Id": 233 }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 234, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Rank": 2 + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Rank": 2, + "Id": 234 }, { - "CommandName": "Convert-PnPSiteTemplate", - "Id": 235, "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Rank": 1 + "CommandName": "Convert-PnPSiteTemplate", + "Rank": 1, + "Id": 235 }, { - "CommandName": "Convert-PnPSiteTemplate", - "Id": 236, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Rank": 2 + "CommandName": "Convert-PnPSiteTemplate", + "Rank": 2, + "Id": 236 }, { - "CommandName": "Convert-PnPSiteTemplate", - "Id": 237, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Rank": 3 + "CommandName": "Convert-PnPSiteTemplate", + "Rank": 3, + "Id": 237 }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 238, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Rank": 1 + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Rank": 1, + "Id": 238 }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 239, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Rank": 2 + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Rank": 2, + "Id": 239 }, { - "CommandName": "ConvertTo-PnPPage", - "Id": 240, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Rank": 1 + "CommandName": "ConvertTo-PnPPage", + "Rank": 1, + "Id": 240 }, { - "CommandName": "ConvertTo-PnPPage", - "Id": 241, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Rank": 2 + "CommandName": "ConvertTo-PnPPage", + "Rank": 2, + "Id": 241 }, { - "CommandName": "ConvertTo-PnPPage", - "Id": 242, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Rank": 3 + "CommandName": "ConvertTo-PnPPage", + "Rank": 3, + "Id": 242 }, { - "CommandName": "ConvertTo-PnPPage", - "Id": 243, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Rank": 4 + "CommandName": "ConvertTo-PnPPage", + "Rank": 4, + "Id": 243 }, { - "CommandName": "ConvertTo-PnPPage", - "Id": 244, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 5 + "CommandName": "ConvertTo-PnPPage", + "Rank": 5, + "Id": 244 }, { - "CommandName": "ConvertTo-PnPPage", - "Id": 245, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "Rank": 6 + "CommandName": "ConvertTo-PnPPage", + "Rank": 6, + "Id": 245 }, { - "CommandName": "ConvertTo-PnPPage", - "Id": 246, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Rank": 7 + "CommandName": "ConvertTo-PnPPage", + "Rank": 7, + "Id": 246 }, { - "CommandName": "ConvertTo-PnPPage", - "Id": 247, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Rank": 8 + "CommandName": "ConvertTo-PnPPage", + "Rank": 8, + "Id": 247 }, { - "CommandName": "ConvertTo-PnPPage", - "Id": 248, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 9 + "CommandName": "ConvertTo-PnPPage", + "Rank": 9, + "Id": 248 }, { - "CommandName": "ConvertTo-PnPPage", - "Id": 249, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "Rank": 10 + "CommandName": "ConvertTo-PnPPage", + "Rank": 10, + "Id": 249 }, { - "CommandName": "ConvertTo-PnPPage", - "Id": 250, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Rank": 11 + "CommandName": "ConvertTo-PnPPage", + "Rank": 11, + "Id": 250 }, { - "CommandName": "ConvertTo-PnPPage", - "Id": 251, "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, + "Id": 251 }, { - "CommandName": "ConvertTo-PnPPage", - "Id": 252, "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, + "Id": 252 }, { - "CommandName": "ConvertTo-PnPPage", - "Id": 253, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "Rank": 14 + "CommandName": "ConvertTo-PnPPage", + "Rank": 14, + "Id": 253 }, { - "CommandName": "Copy-PnPFile", - "Id": 254, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1 + "CommandName": "Copy-PnPFile", + "Rank": 1, + "Id": 254 }, { - "CommandName": "Copy-PnPFile", - "Id": 255, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2 + "CommandName": "Copy-PnPFile", + "Rank": 2, + "Id": 255 }, { - "CommandName": "Copy-PnPFile", - "Id": 256, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3 + "CommandName": "Copy-PnPFile", + "Rank": 3, + "Id": 256 }, { - "CommandName": "Copy-PnPFile", - "Id": 257, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4 + "CommandName": "Copy-PnPFile", + "Rank": 4, + "Id": 257 }, { - "CommandName": "Copy-PnPFile", - "Id": 258, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5 + "CommandName": "Copy-PnPFile", + "Rank": 5, + "Id": 258 }, { - "CommandName": "Copy-PnPFile", - "Id": 259, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6 + "CommandName": "Copy-PnPFile", + "Rank": 6, + "Id": 259 }, { - "CommandName": "Copy-PnPFile", - "Id": 260, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7 + "CommandName": "Copy-PnPFile", + "Rank": 7, + "Id": 260 }, { - "CommandName": "Copy-PnPFile", - "Id": 261, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8 + "CommandName": "Copy-PnPFile", + "Rank": 8, + "Id": 261 }, { - "CommandName": "Copy-PnPFile", - "Id": 262, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9 + "CommandName": "Copy-PnPFile", + "Rank": 9, + "Id": 262 }, { - "CommandName": "Copy-PnPFile", - "Id": 263, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10 + "CommandName": "Copy-PnPFile", + "Rank": 10, + "Id": 263 }, { - "CommandName": "Copy-PnPFolder", - "Id": 264, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1 + "CommandName": "Copy-PnPFolder", + "Rank": 1, + "Id": 264 }, { - "CommandName": "Copy-PnPFolder", - "Id": 265, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2 + "CommandName": "Copy-PnPFolder", + "Rank": 2, + "Id": 265 }, { - "CommandName": "Copy-PnPFolder", - "Id": 266, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3 + "CommandName": "Copy-PnPFolder", + "Rank": 3, + "Id": 266 }, { - "CommandName": "Copy-PnPFolder", - "Id": 267, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4 + "CommandName": "Copy-PnPFolder", + "Rank": 4, + "Id": 267 }, { - "CommandName": "Copy-PnPFolder", - "Id": 268, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5 + "CommandName": "Copy-PnPFolder", + "Rank": 5, + "Id": 268 }, { - "CommandName": "Copy-PnPFolder", - "Id": 269, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6 + "CommandName": "Copy-PnPFolder", + "Rank": 6, + "Id": 269 }, { - "CommandName": "Copy-PnPFolder", - "Id": 270, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7 + "CommandName": "Copy-PnPFolder", + "Rank": 7, + "Id": 270 }, { - "CommandName": "Copy-PnPFolder", - "Id": 271, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8 + "CommandName": "Copy-PnPFolder", + "Rank": 8, + "Id": 271 }, { - "CommandName": "Copy-PnPFolder", - "Id": 272, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9 + "CommandName": "Copy-PnPFolder", + "Rank": 9, + "Id": 272 }, { - "CommandName": "Copy-PnPFolder", - "Id": 273, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10 + "CommandName": "Copy-PnPFolder", + "Rank": 10, + "Id": 273 }, { - "CommandName": "Copy-PnPItemProxy", - "Id": 274, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Rank": 1 + "CommandName": "Copy-PnPItemProxy", + "Rank": 1, + "Id": 274 }, { - "CommandName": "Copy-PnPList", - "Id": 275, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Rank": 1 + "CommandName": "Copy-PnPList", + "Rank": 1, + "Id": 275 }, { - "CommandName": "Copy-PnPList", - "Id": 276, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "Rank": 2 + "CommandName": "Copy-PnPList", + "Rank": 2, + "Id": 276 }, { - "CommandName": "Copy-PnPList", - "Id": 277, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "Rank": 3 + "CommandName": "Copy-PnPList", + "Rank": 3, + "Id": 277 }, { - "CommandName": "Copy-PnPList", - "Id": 278, "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", - "Rank": 4 + "CommandName": "Copy-PnPList", + "Rank": 4, + "Id": 278 }, { - "CommandName": "Copy-PnPTeamsTeam", - "Id": 279, "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, + "Id": 279 }, { - "CommandName": "Copy-PnPTeamsTeam", - "Id": 280, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "Rank": 2 + "CommandName": "Copy-PnPTeamsTeam", + "Rank": 2, + "Id": 280 }, { - "CommandName": "Copy-PnPTeamsTeam", - "Id": 281, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", - "Rank": 3 + "CommandName": "Copy-PnPTeamsTeam", + "Rank": 3, + "Id": 281 }, { - "CommandName": "Copy-PnPTeamsTeam", - "Id": 282, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", - "Rank": 4 + "CommandName": "Copy-PnPTeamsTeam", + "Rank": 4, + "Id": 282 }, { - "CommandName": "Disable-PnPFeature", - "Id": 283, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Disable-PnPFeature", + "Rank": 1, + "Id": 283 }, { - "CommandName": "Disable-PnPFeature", - "Id": 284, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2 + "CommandName": "Disable-PnPFeature", + "Rank": 2, + "Id": 284 }, { - "CommandName": "Disable-PnPFeature", - "Id": 285, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3 + "CommandName": "Disable-PnPFeature", + "Rank": 3, + "Id": 285 }, { - "CommandName": "Disable-PnPPageScheduling", - "Id": 286, "Command": "Disable-PnPPageScheduling", - "Rank": 1 + "CommandName": "Disable-PnPPageScheduling", + "Rank": 1, + "Id": 286 }, { - "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 287, "Command": "Disable-PnPPowerShellTelemetry", - "Rank": 1 + "CommandName": "Disable-PnPPowerShellTelemetry", + "Rank": 1, + "Id": 287 }, { - "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 288, "Command": "Disable-PnPPowerShellTelemetry -Force", - "Rank": 2 + "CommandName": "Disable-PnPPowerShellTelemetry", + "Rank": 2, + "Id": 288 }, { - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 289, "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1 + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Rank": 1, + "Id": 289 }, { - "CommandName": "Disable-PnPSiteClassification", - "Id": 290, "Command": "Disable-PnPSiteClassification", - "Rank": 1 + "CommandName": "Disable-PnPSiteClassification", + "Rank": 1, + "Id": 290 }, { - "CommandName": "Disconnect-PnPOnline", - "Id": 291, "Command": "Disconnect-PnPOnline", - "Rank": 1 + "CommandName": "Disconnect-PnPOnline", + "Rank": 1, + "Id": 291 }, { - "CommandName": "Enable-PnPCommSite", - "Id": 292, "Command": "Enable-PnPCommSite", - "Rank": 1 + "CommandName": "Enable-PnPCommSite", + "Rank": 1, + "Id": 292 }, { - "CommandName": "Enable-PnPCommSite", - "Id": 293, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Rank": 2 + "CommandName": "Enable-PnPCommSite", + "Rank": 2, + "Id": 293 }, { - "CommandName": "Enable-PnPFeature", - "Id": 294, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Enable-PnPFeature", + "Rank": 1, + "Id": 294 }, { - "CommandName": "Enable-PnPFeature", - "Id": 295, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2 + "CommandName": "Enable-PnPFeature", + "Rank": 2, + "Id": 295 }, { - "CommandName": "Enable-PnPFeature", - "Id": 296, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3 + "CommandName": "Enable-PnPFeature", + "Rank": 3, + "Id": 296 }, { - "CommandName": "Enable-PnPPageScheduling", - "Id": 297, "Command": "Enable-PnPPageScheduling", - "Rank": 1 + "CommandName": "Enable-PnPPageScheduling", + "Rank": 1, + "Id": 297 }, { - "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 298, "Command": "Enable-PnPPowerShellTelemetry", - "Rank": 1 + "CommandName": "Enable-PnPPowerShellTelemetry", + "Rank": 1, + "Id": 298 }, { - "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 299, "Command": "Enable-PnPPowerShellTelemetry -Force", - "Rank": 2 + "CommandName": "Enable-PnPPowerShellTelemetry", + "Rank": 2, + "Id": 299 }, { - "CommandName": "Enable-PnPSiteClassification", - "Id": 300, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Rank": 1 + "CommandName": "Enable-PnPSiteClassification", + "Rank": 1, + "Id": 300 }, { - "CommandName": "Enable-PnPSiteClassification", - "Id": 301, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 2 + "CommandName": "Enable-PnPSiteClassification", + "Rank": 2, + "Id": 301 }, { - "CommandName": "Export-PnPListToSiteTemplate", - "Id": 302, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Rank": 1 + "CommandName": "Export-PnPListToSiteTemplate", + "Rank": 1, + "Id": 302 }, { - "CommandName": "Export-PnPListToSiteTemplate", - "Id": 303, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Rank": 2 + "CommandName": "Export-PnPListToSiteTemplate", + "Rank": 2, + "Id": 303 }, { - "CommandName": "Export-PnPPage", - "Id": 304, "Command": "Export-PnPPage -Identity Home.aspx", - "Rank": 1 + "CommandName": "Export-PnPPage", + "Rank": 1, + "Id": 304 }, { - "CommandName": "Export-PnPPageMapping", - "Id": 305, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Rank": 1 + "CommandName": "Export-PnPPageMapping", + "Rank": 1, + "Id": 305 }, { - "CommandName": "Export-PnPPageMapping", - "Id": 306, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Rank": 2 + "CommandName": "Export-PnPPageMapping", + "Rank": 2, + "Id": 306 }, { - "CommandName": "Export-PnPPageMapping", - "Id": 307, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Rank": 3 + "CommandName": "Export-PnPPageMapping", + "Rank": 3, + "Id": 307 }, { - "CommandName": "Export-PnPTaxonomy", - "Id": 308, "Command": "Export-PnPTaxonomy", - "Rank": 1 + "CommandName": "Export-PnPTaxonomy", + "Rank": 1, + "Id": 308 }, { - "CommandName": "Export-PnPTaxonomy", - "Id": 309, "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Rank": 2 + "CommandName": "Export-PnPTaxonomy", + "Rank": 2, + "Id": 309 }, { - "CommandName": "Export-PnPTaxonomy", - "Id": 310, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Rank": 3 + "CommandName": "Export-PnPTaxonomy", + "Rank": 3, + "Id": 310 }, { - "CommandName": "Export-PnPTaxonomy", - "Id": 311, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "Rank": 4 + "CommandName": "Export-PnPTaxonomy", + "Rank": 4, + "Id": 311 }, { - "CommandName": "Export-PnPTermGroupToXml", - "Id": 312, "Command": "Export-PnPTermGroupToXml", - "Rank": 1 + "CommandName": "Export-PnPTermGroupToXml", + "Rank": 1, + "Id": 312 }, { - "CommandName": "Export-PnPTermGroupToXml", - "Id": 313, "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Rank": 2 + "CommandName": "Export-PnPTermGroupToXml", + "Rank": 2, + "Id": 313 }, { - "CommandName": "Export-PnPTermGroupToXml", - "Id": 314, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Rank": 3 + "CommandName": "Export-PnPTermGroupToXml", + "Rank": 3, + "Id": 314 }, { - "CommandName": "Export-PnPUserInfo", - "Id": 315, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1 + "CommandName": "Export-PnPUserInfo", + "Rank": 1, + "Id": 315 }, { - "CommandName": "Export-PnPUserInfo", - "Id": 316, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2 + "CommandName": "Export-PnPUserInfo", + "Rank": 2, + "Id": 316 }, { - "CommandName": "Export-PnPUserProfile", - "Id": 317, "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Rank": 1 + "CommandName": "Export-PnPUserProfile", + "Rank": 1, + "Id": 317 }, { - "CommandName": "Export-PnPUserProfile", - "Id": 318, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2 + "CommandName": "Export-PnPUserProfile", + "Rank": 2, + "Id": 318 }, { - "CommandName": "Find-PnPFile", - "Id": 319, "Command": "Find-PnPFile -Match *.master", - "Rank": 1 + "CommandName": "Find-PnPFile", + "Rank": 1, + "Id": 319 }, { - "CommandName": "Find-PnPFile", - "Id": 320, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Rank": 2 + "CommandName": "Find-PnPFile", + "Rank": 2, + "Id": 320 }, { - "CommandName": "Find-PnPFile", - "Id": 321, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Rank": 3 + "CommandName": "Find-PnPFile", + "Rank": 3, + "Id": 321 }, { - "CommandName": "Get-PnPAccessToken", - "Id": 322, "Command": "Get-PnPAccessToken", - "Rank": 1 + "CommandName": "Get-PnPAccessToken", + "Rank": 1, + "Id": 322 }, { - "CommandName": "Get-PnPAccessToken", - "Id": 323, "Command": "Get-PnPAccessToken -Decoded", - "Rank": 2 + "CommandName": "Get-PnPAccessToken", + "Rank": 2, + "Id": 323 }, { - "CommandName": "Get-PnPAccessToken", - "Id": 324, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Rank": 3 + "CommandName": "Get-PnPAccessToken", + "Rank": 3, + "Id": 324 }, { - "CommandName": "Get-PnPAccessToken", - "Id": 325, "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Rank": 4 + "CommandName": "Get-PnPAccessToken", + "Rank": 4, + "Id": 325 }, { - "CommandName": "Get-PnPAccessToken", - "Id": 326, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Rank": 5 + "CommandName": "Get-PnPAccessToken", + "Rank": 5, + "Id": 326 }, { - "CommandName": "Get-PnPAlert", - "Id": 327, "Command": "Get-PnPAlert", - "Rank": 1 + "CommandName": "Get-PnPAlert", + "Rank": 1, + "Id": 327 }, { - "CommandName": "Get-PnPAlert", - "Id": 328, "Command": "Get-PnPAlert -List \"Demo List\"", - "Rank": 2 + "CommandName": "Get-PnPAlert", + "Rank": 2, + "Id": 328 }, { - "CommandName": "Get-PnPAlert", - "Id": 329, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3 + "CommandName": "Get-PnPAlert", + "Rank": 3, + "Id": 329 }, { - "CommandName": "Get-PnPAlert", - "Id": 330, "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Rank": 4 + "CommandName": "Get-PnPAlert", + "Rank": 4, + "Id": 330 }, { - "CommandName": "Get-PnPAlert", - "Id": 331, "Command": "Get-PnPAlert -AllUsers", - "Rank": 5 + "CommandName": "Get-PnPAlert", + "Rank": 5, + "Id": 331 }, { - "CommandName": "Get-PnPAlert", - "Id": 332, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Rank": 6 + "CommandName": "Get-PnPAlert", + "Rank": 6, + "Id": 332 }, { - "CommandName": "Get-PnPApp", - "Id": 333, "Command": "Get-PnPApp", - "Rank": 1 + "CommandName": "Get-PnPApp", + "Rank": 1, + "Id": 333 }, { - "CommandName": "Get-PnPApp", - "Id": 334, "Command": "Get-PnPApp -Scope Site", - "Rank": 2 + "CommandName": "Get-PnPApp", + "Rank": 2, + "Id": 334 }, { - "CommandName": "Get-PnPApp", - "Id": 335, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 3 + "CommandName": "Get-PnPApp", + "Rank": 3, + "Id": 335 }, { - "CommandName": "Get-PnPAppErrors", - "Id": 336, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Rank": 1 + "CommandName": "Get-PnPAppErrors", + "Rank": 1, + "Id": 336 }, { - "CommandName": "Get-PnPAppErrors", - "Id": 337, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "Rank": 2 + "CommandName": "Get-PnPAppErrors", + "Rank": 2, + "Id": 337 }, { - "CommandName": "Get-PnPAppInfo", - "Id": 338, "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Rank": 1 + "CommandName": "Get-PnPAppInfo", + "Rank": 1, + "Id": 338 }, { - "CommandName": "Get-PnPAppInfo", - "Id": 339, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 2 + "CommandName": "Get-PnPAppInfo", + "Rank": 2, + "Id": 339 }, { - "CommandName": "Get-PnPAppInfo", - "Id": 340, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Rank": 3 + "CommandName": "Get-PnPAppInfo", + "Rank": 3, + "Id": 340 }, { - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 341, "Command": "Get-PnPApplicationCustomizer", - "Rank": 1 + "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 1, + "Id": 341 }, { - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 342, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2 + "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 2, + "Id": 342 }, { - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 343, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Rank": 3 + "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 3, + "Id": 343 }, { - "CommandName": "Get-PnPAuditing", - "Id": 344, "Command": "Get-PnPAuditing", - "Rank": 1 + "CommandName": "Get-PnPAuditing", + "Rank": 1, + "Id": 344 }, { - "CommandName": "Get-PnPAuthenticationRealm", - "Id": 345, "Command": "Get-PnPAuthenticationRealm", - "Rank": 1 + "CommandName": "Get-PnPAuthenticationRealm", + "Rank": 1, + "Id": 345 }, { - "CommandName": "Get-PnPAuthenticationRealm", - "Id": 346, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Rank": 2 + "CommandName": "Get-PnPAuthenticationRealm", + "Rank": 2, + "Id": 346 }, { - "CommandName": "Get-PnPAvailableLanguage", - "Id": 347, "Command": "Get-PnPAvailableLanguage", - "Rank": 1 + "CommandName": "Get-PnPAvailableLanguage", + "Rank": 1, + "Id": 347 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 348, "Command": "Get-PnPAvailableSensitivityLabel", - "Rank": 1 + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 1, + "Id": 348 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 349, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Rank": 2 + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 2, + "Id": 349 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 350, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Rank": 3 + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 3, + "Id": 350 }, { - "CommandName": "Get-PnPAvailableSiteClassification", - "Id": 351, "Command": "Get-PnPAvailableSiteClassification", - "Rank": 1 + "CommandName": "Get-PnPAvailableSiteClassification", + "Rank": 1, + "Id": 351 }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 352, "Command": "Get-PnPAzureACSPrincipal", - "Rank": 1 + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 1, + "Id": 352 }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 353, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Rank": 2 + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 2, + "Id": 353 }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 354, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Rank": 3 + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 3, + "Id": 354 }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 355, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Rank": 4 + "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 4, + "Id": 355 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 356, "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1 + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 1, + "Id": 356 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 357, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Rank": 2 + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 2, + "Id": 357 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 358, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Rank": 3 + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 3, + "Id": 358 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 359, "Command": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1 + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 1, + "Id": 359 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 360, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Rank": 2 + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 2, + "Id": 360 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 361, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Rank": 3 + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 3, + "Id": 361 }, { - "CommandName": "Get-PnPAzureADApp", - "Id": 362, "Command": "Get-PnPAzureADApp", - "Rank": 1 + "CommandName": "Get-PnPAzureADApp", + "Rank": 1, + "Id": 362 }, { - "CommandName": "Get-PnPAzureADApp", - "Id": 363, "Command": "Get-PnPAzureADApp -Identity MyApp", - "Rank": 2 + "CommandName": "Get-PnPAzureADApp", + "Rank": 2, + "Id": 363 }, { - "CommandName": "Get-PnPAzureADApp", - "Id": 364, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3 + "CommandName": "Get-PnPAzureADApp", + "Rank": 3, + "Id": 364 }, { - "CommandName": "Get-PnPAzureADApp", - "Id": 365, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Rank": 4 + "CommandName": "Get-PnPAzureADApp", + "Rank": 4, + "Id": 365 }, { - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 366, "Command": "Get-PnPAzureADAppPermission", - "Rank": 1 + "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 1, + "Id": 366 }, { - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 367, "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Rank": 2 + "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 2, + "Id": 367 }, { - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 368, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3 + "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 3, + "Id": 368 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 369, "Command": "Get-PnPAzureADAppSitePermission", - "Rank": 1 + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 1, + "Id": 369 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 370, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2 + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 2, + "Id": 370 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 371, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Rank": 3 + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 3, + "Id": 371 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 372, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Rank": 4 + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 4, + "Id": 372 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 373, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Rank": 5 + "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 5, + "Id": 373 }, { - "CommandName": "Get-PnPAzureADGroup", - "Id": 374, "Command": "Get-PnPAzureADGroup", - "Rank": 1 + "CommandName": "Get-PnPAzureADGroup", + "Rank": 1, + "Id": 374 }, { - "CommandName": "Get-PnPAzureADGroup", - "Id": 375, "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Rank": 2 + "CommandName": "Get-PnPAzureADGroup", + "Rank": 2, + "Id": 375 }, { - "CommandName": "Get-PnPAzureADGroup", - "Id": 376, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Rank": 3 + "CommandName": "Get-PnPAzureADGroup", + "Rank": 3, + "Id": 376 }, { - "CommandName": "Get-PnPAzureADGroup", - "Id": 377, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Rank": 4 + "CommandName": "Get-PnPAzureADGroup", + "Rank": 4, + "Id": 377 }, { - "CommandName": "Get-PnPAzureADGroup", - "Id": 378, "Command": "Get-PnPAzureADGroup -Identity $group", - "Rank": 5 + "CommandName": "Get-PnPAzureADGroup", + "Rank": 5, + "Id": 378 }, { - "CommandName": "Get-PnPAzureADGroupMember", - "Id": 379, "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Rank": 1 + "CommandName": "Get-PnPAzureADGroupMember", + "Rank": 1, + "Id": 379 }, { - "CommandName": "Get-PnPAzureADGroupMember", - "Id": 380, "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Rank": 2 + "CommandName": "Get-PnPAzureADGroupMember", + "Rank": 2, + "Id": 380 }, { - "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 381, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Rank": 1 + "CommandName": "Get-PnPAzureADGroupOwner", + "Rank": 1, + "Id": 381 }, { - "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 382, "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Rank": 2 + "CommandName": "Get-PnPAzureADGroupOwner", + "Rank": 2, + "Id": 382 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 383, "Command": "Get-PnPAzureADServicePrincipal", - "Rank": 1 + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 1, + "Id": 383 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 384, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Rank": 2 + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 2, + "Id": 384 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 385, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Rank": 3 + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 3, + "Id": 385 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 386, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Rank": 4 + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 4, + "Id": 386 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 387, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Rank": 5 + "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 5, + "Id": 387 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 388, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1 + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 1, + "Id": 388 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 389, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 2 + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 2, + "Id": 389 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 390, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1 + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Rank": 1, + "Id": 390 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 391, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Rank": 2 + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Rank": 2, + "Id": 391 }, { - "CommandName": "Get-PnPAzureADUser", - "Id": 392, "Command": "Get-PnPAzureADUser", - "Rank": 1 + "CommandName": "Get-PnPAzureADUser", + "Rank": 1, + "Id": 392 }, { - "CommandName": "Get-PnPAzureADUser", - "Id": 393, "Command": "Get-PnPAzureADUser -EndIndex 50", - "Rank": 2 + "CommandName": "Get-PnPAzureADUser", + "Rank": 2, + "Id": 393 }, { - "CommandName": "Get-PnPAzureADUser", - "Id": 394, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 3 + "CommandName": "Get-PnPAzureADUser", + "Rank": 3, + "Id": 394 }, { - "CommandName": "Get-PnPAzureADUser", - "Id": 395, "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Rank": 4 + "CommandName": "Get-PnPAzureADUser", + "Rank": 4, + "Id": 395 }, { - "CommandName": "Get-PnPAzureADUser", - "Id": 396, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Rank": 5 + "CommandName": "Get-PnPAzureADUser", + "Rank": 5, + "Id": 396 }, { - "CommandName": "Get-PnPAzureADUser", - "Id": 397, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Rank": 6 + "CommandName": "Get-PnPAzureADUser", + "Rank": 6, + "Id": 397 }, { - "CommandName": "Get-PnPAzureADUser", - "Id": 398, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Rank": 7 + "CommandName": "Get-PnPAzureADUser", + "Rank": 7, + "Id": 398 }, { - "CommandName": "Get-PnPAzureADUser", - "Id": 399, "Command": "Get-PnPAzureADUser -Delta", - "Rank": 8 + "CommandName": "Get-PnPAzureADUser", + "Rank": 8, + "Id": 399 }, { - "CommandName": "Get-PnPAzureADUser", - "Id": 400, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Rank": 9 + "CommandName": "Get-PnPAzureADUser", + "Rank": 9, + "Id": 400 }, { - "CommandName": "Get-PnPAzureADUser", - "Id": 401, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Rank": 10 + "CommandName": "Get-PnPAzureADUser", + "Rank": 10, + "Id": 401 }, { - "CommandName": "Get-PnPAzureCertificate", - "Id": 402, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Rank": 1 + "CommandName": "Get-PnPAzureCertificate", + "Rank": 1, + "Id": 402 }, { - "CommandName": "Get-PnPAzureCertificate", - "Id": 403, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Rank": 2 + "CommandName": "Get-PnPAzureCertificate", + "Rank": 2, + "Id": 403 }, { - "CommandName": "Get-PnPAzureCertificate", - "Id": 404, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Rank": 3 + "CommandName": "Get-PnPAzureCertificate", + "Rank": 3, + "Id": 404 }, { - "CommandName": "Get-PnPBrowserIdleSignout", - "Id": 405, "Command": "Get-PnPBrowserIdleSignout", - "Rank": 1 + "CommandName": "Get-PnPBrowserIdleSignout", + "Rank": 1, + "Id": 405 }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 406, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Rank": 1 + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 1, + "Id": 406 }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 407, "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2 + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 2, + "Id": 407 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 408, "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 1, + "Id": 408 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 409, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Rank": 2 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 2, + "Id": 409 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 410, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Rank": 3 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 3, + "Id": 410 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 411, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 4, + "Id": 411 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 412, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Rank": 5 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 5, + "Id": 412 }, { - "CommandName": "Get-PnPChangeLog", - "Id": 413, "Command": "Get-PnPChangeLog", - "Rank": 1 + "CommandName": "Get-PnPChangeLog", + "Rank": 1, + "Id": 413 }, { - "CommandName": "Get-PnPChangeLog", - "Id": 414, "Command": "Get-PnPChangeLog -Nightly", - "Rank": 2 + "CommandName": "Get-PnPChangeLog", + "Rank": 2, + "Id": 414 }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 415, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Rank": 1 + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Rank": 1, + "Id": 415 }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 416, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "Rank": 2 + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Rank": 2, + "Id": 416 }, { - "CommandName": "Get-PnPContentType", - "Id": 417, "Command": "Get-PnPContentType", - "Rank": 1 + "CommandName": "Get-PnPContentType", + "Rank": 1, + "Id": 417 }, { - "CommandName": "Get-PnPContentType", - "Id": 418, "Command": "Get-PnPContentType -InSiteHierarchy", - "Rank": 2 + "CommandName": "Get-PnPContentType", + "Rank": 2, + "Id": 418 }, { - "CommandName": "Get-PnPContentType", - "Id": 419, "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Rank": 3 + "CommandName": "Get-PnPContentType", + "Rank": 3, + "Id": 419 }, { - "CommandName": "Get-PnPContentType", - "Id": 420, "Command": "Get-PnPContentType -List \"Documents\"", - "Rank": 4 + "CommandName": "Get-PnPContentType", + "Rank": 4, + "Id": 420 }, { - "CommandName": "Get-PnPContentTypePublishingStatus", - "Id": 421, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Rank": 1 + "CommandName": "Get-PnPContentTypePublishingStatus", + "Rank": 1, + "Id": 421 }, { - "CommandName": "Get-PnPCustomAction", - "Id": 422, "Command": "Get-PnPCustomAction", - "Rank": 1 + "CommandName": "Get-PnPCustomAction", + "Rank": 1, + "Id": 422 }, { - "CommandName": "Get-PnPCustomAction", - "Id": 423, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2 + "CommandName": "Get-PnPCustomAction", + "Rank": 2, + "Id": 423 }, { - "CommandName": "Get-PnPCustomAction", - "Id": 424, "Command": "Get-PnPCustomAction -Scope web", - "Rank": 3 + "CommandName": "Get-PnPCustomAction", + "Rank": 3, + "Id": 424 }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 425, "Command": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1 + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Rank": 1, + "Id": 425 }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 426, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 2 + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Rank": 2, + "Id": 426 }, { - "CommandName": "Get-PnPDeletedTeam", - "Id": 427, "Command": "Get-PnPDeletedTeam", - "Rank": 1 + "CommandName": "Get-PnPDeletedTeam", + "Rank": 1, + "Id": 427 }, { - "CommandName": "Get-PnPDiagnostics", - "Id": 428, "Command": "Get-PnPDiagnostics", - "Rank": 1 + "CommandName": "Get-PnPDiagnostics", + "Rank": 1, + "Id": 428 }, { - "CommandName": "Get-PnPDisableSpacesActivation", - "Id": 429, "Command": "Get-PnPDisableSpacesActivation", - "Rank": 1 + "CommandName": "Get-PnPDisableSpacesActivation", + "Rank": 1, + "Id": 429 }, { - "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 430, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Rank": 1 + "CommandName": "Get-PnPDocumentSetTemplate", + "Rank": 1, + "Id": 430 }, { - "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 431, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Rank": 2 + "CommandName": "Get-PnPDocumentSetTemplate", + "Rank": 2, + "Id": 431 }, { - "CommandName": "Get-PnPEventReceiver", - "Id": 432, "Command": "Get-PnPEventReceiver", - "Rank": 1 + "CommandName": "Get-PnPEventReceiver", + "Rank": 1, + "Id": 432 }, { - "CommandName": "Get-PnPEventReceiver", - "Id": 433, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2 + "CommandName": "Get-PnPEventReceiver", + "Rank": 2, + "Id": 433 }, { - "CommandName": "Get-PnPEventReceiver", - "Id": 434, "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Rank": 3 + "CommandName": "Get-PnPEventReceiver", + "Rank": 3, + "Id": 434 }, { - "CommandName": "Get-PnPEventReceiver", - "Id": 435, "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Rank": 4 + "CommandName": "Get-PnPEventReceiver", + "Rank": 4, + "Id": 435 }, { - "CommandName": "Get-PnPEventReceiver", - "Id": 436, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 5 + "CommandName": "Get-PnPEventReceiver", + "Rank": 5, + "Id": 436 }, { - "CommandName": "Get-PnPEventReceiver", - "Id": 437, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Rank": 6 + "CommandName": "Get-PnPEventReceiver", + "Rank": 6, + "Id": 437 }, { - "CommandName": "Get-PnPEventReceiver", - "Id": 438, "Command": "Get-PnPEventReceiver -Scope Site", - "Rank": 7 + "CommandName": "Get-PnPEventReceiver", + "Rank": 7, + "Id": 438 }, { - "CommandName": "Get-PnPEventReceiver", - "Id": 439, "Command": "Get-PnPEventReceiver -Scope Web", - "Rank": 8 + "CommandName": "Get-PnPEventReceiver", + "Rank": 8, + "Id": 439 }, { - "CommandName": "Get-PnPEventReceiver", - "Id": 440, "Command": "Get-PnPEventReceiver -Scope All", - "Rank": 9 + "CommandName": "Get-PnPEventReceiver", + "Rank": 9, + "Id": 440 }, { - "CommandName": "Get-PnPException", - "Id": 441, "Command": "Get-PnPException", - "Rank": 1 + "CommandName": "Get-PnPException", + "Rank": 1, + "Id": 441 }, { - "CommandName": "Get-PnPException", - "Id": 442, "Command": "Get-PnPException -All", - "Rank": 2 + "CommandName": "Get-PnPException", + "Rank": 2, + "Id": 442 }, { - "CommandName": "Get-PnPExternalUser", - "Id": 443, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Rank": 1 + "CommandName": "Get-PnPExternalUser", + "Rank": 1, + "Id": 443 }, { - "CommandName": "Get-PnPExternalUser", - "Id": 444, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Rank": 2 + "CommandName": "Get-PnPExternalUser", + "Rank": 2, + "Id": 444 }, { - "CommandName": "Get-PnPFeature", - "Id": 445, "Command": "Get-PnPFeature", - "Rank": 1 + "CommandName": "Get-PnPFeature", + "Rank": 1, + "Id": 445 }, { - "CommandName": "Get-PnPFeature", - "Id": 446, "Command": "Get-PnPFeature -Scope Site", - "Rank": 2 + "CommandName": "Get-PnPFeature", + "Rank": 2, + "Id": 446 }, { - "CommandName": "Get-PnPFeature", - "Id": 447, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 3 + "CommandName": "Get-PnPFeature", + "Rank": 3, + "Id": 447 }, { - "CommandName": "Get-PnPFeature", - "Id": 448, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Rank": 4 + "CommandName": "Get-PnPFeature", + "Rank": 4, + "Id": 448 }, { - "CommandName": "Get-PnPField", - "Id": 449, "Command": "Get-PnPField", - "Rank": 1 + "CommandName": "Get-PnPField", + "Rank": 1, + "Id": 449 }, { - "CommandName": "Get-PnPField", - "Id": 450, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2 + "CommandName": "Get-PnPField", + "Rank": 2, + "Id": 450 }, { - "CommandName": "Get-PnPField", - "Id": 451, "Command": "Get-PnPField -Group \"Custom Columns\"", - "Rank": 3 + "CommandName": "Get-PnPField", + "Rank": 3, + "Id": 451 }, { - "CommandName": "Get-PnPFile", - "Id": 452, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Rank": 1 + "CommandName": "Get-PnPFile", + "Rank": 1, + "Id": 452 }, { - "CommandName": "Get-PnPFile", - "Id": 453, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "Rank": 2 + "CommandName": "Get-PnPFile", + "Rank": 2, + "Id": 453 }, { - "CommandName": "Get-PnPFile", - "Id": 454, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Rank": 3 + "CommandName": "Get-PnPFile", + "Rank": 3, + "Id": 454 }, { - "CommandName": "Get-PnPFile", - "Id": 455, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Rank": 4 + "CommandName": "Get-PnPFile", + "Rank": 4, + "Id": 455 }, { - "CommandName": "Get-PnPFile", - "Id": 456, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Rank": 5 + "CommandName": "Get-PnPFile", + "Rank": 5, + "Id": 456 }, { - "CommandName": "Get-PnPFile", - "Id": 457, "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, + "Id": 457 }, { - "CommandName": "Get-PnPFile", - "Id": 458, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Rank": 7 + "CommandName": "Get-PnPFile", + "Rank": 7, + "Id": 458 }, { - "CommandName": "Get-PnPFileSharingLink", - "Id": 459, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "CommandName": "Get-PnPFileSharingLink", + "Rank": 1, + "Id": 459 }, { - "CommandName": "Get-PnPFileVersion", - "Id": 460, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Rank": 1 + "CommandName": "Get-PnPFileVersion", + "Rank": 1, + "Id": 460 }, { - "CommandName": "Get-PnPFileVersion", - "Id": 461, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Rank": 2 + "CommandName": "Get-PnPFileVersion", + "Rank": 2, + "Id": 461 }, { - "CommandName": "Get-PnPFlow", - "Id": 462, "Command": "Get-PnPFlow -AsAdmin", - "Rank": 1 + "CommandName": "Get-PnPFlow", + "Rank": 1, + "Id": 462 }, { - "CommandName": "Get-PnPFlow", - "Id": 463, "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "Rank": 2 + "CommandName": "Get-PnPFlow", + "Rank": 2, + "Id": 463 }, { - "CommandName": "Get-PnPFlow", - "Id": 464, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Rank": 3 + "CommandName": "Get-PnPFlow", + "Rank": 3, + "Id": 464 }, { - "CommandName": "Get-PnPFlowOwner", - "Id": 465, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "Rank": 1 + "CommandName": "Get-PnPFlowOwner", + "Rank": 1, + "Id": 465 }, { - "CommandName": "Get-PnPFolder", - "Id": 466, "Command": "Get-PnPFolder", - "Rank": 1 + "CommandName": "Get-PnPFolder", + "Rank": 1, + "Id": 466 }, { - "CommandName": "Get-PnPFolder", - "Id": 467, "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Rank": 2 + "CommandName": "Get-PnPFolder", + "Rank": 2, + "Id": 467 }, { - "CommandName": "Get-PnPFolder", - "Id": 468, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Rank": 3 + "CommandName": "Get-PnPFolder", + "Rank": 3, + "Id": 468 }, { - "CommandName": "Get-PnPFolder", - "Id": 469, "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Rank": 4 + "CommandName": "Get-PnPFolder", + "Rank": 4, + "Id": 469 }, { - "CommandName": "Get-PnPFolderFile", - "Id": 470, "Command": "Get-PnPFolderFile", - "Rank": 1 + "CommandName": "Get-PnPFolderFile", + "Rank": 1, + "Id": 470 }, { - "CommandName": "Get-PnPFolderFile", - "Id": 471, "Command": "Get-PnPFolderFile -Recurse", - "Rank": 2 + "CommandName": "Get-PnPFolderFile", + "Rank": 2, + "Id": 471 }, { - "CommandName": "Get-PnPFolderFile", - "Id": 472, "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "Rank": 3 + "CommandName": "Get-PnPFolderFile", + "Rank": 3, + "Id": 472 }, { - "CommandName": "Get-PnPFolderFile", - "Id": 473, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4 + "CommandName": "Get-PnPFolderFile", + "Rank": 4, + "Id": 473 }, { - "CommandName": "Get-PnPFolderFile", - "Id": 474, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 5 + "CommandName": "Get-PnPFolderFile", + "Rank": 5, + "Id": 474 }, { - "CommandName": "Get-PnPFolderFolder", - "Id": 475, "Command": "Get-PnPFolderFolder", - "Rank": 1 + "CommandName": "Get-PnPFolderFolder", + "Rank": 1, + "Id": 475 }, { - "CommandName": "Get-PnPFolderFolder", - "Id": 476, "Command": "Get-PnPFolderFolder -Recurse", - "Rank": 2 + "CommandName": "Get-PnPFolderFolder", + "Rank": 2, + "Id": 476 }, { - "CommandName": "Get-PnPFolderFolder", - "Id": 477, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "Rank": 3 + "CommandName": "Get-PnPFolderFolder", + "Rank": 3, + "Id": 477 }, { - "CommandName": "Get-PnPFolderFolder", - "Id": 478, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "Rank": 4 + "CommandName": "Get-PnPFolderFolder", + "Rank": 4, + "Id": 478 }, { - "CommandName": "Get-PnPFolderFolder", - "Id": 479, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "Rank": 5 + "CommandName": "Get-PnPFolderFolder", + "Rank": 5, + "Id": 479 }, { - "CommandName": "Get-PnPFolderFolder", - "Id": 480, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6 + "CommandName": "Get-PnPFolderFolder", + "Rank": 6, + "Id": 480 }, { - "CommandName": "Get-PnPFolderItem", - "Id": 481, "Command": "Get-PnPFolderItem", - "Rank": 1 + "CommandName": "Get-PnPFolderItem", + "Rank": 1, + "Id": 481 }, { - "CommandName": "Get-PnPFolderItem", - "Id": 482, "Command": "Get-PnPFolderItem -Recurse", - "Rank": 2 + "CommandName": "Get-PnPFolderItem", + "Rank": 2, + "Id": 482 }, { - "CommandName": "Get-PnPFolderItem", - "Id": 483, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "Rank": 3 + "CommandName": "Get-PnPFolderItem", + "Rank": 3, + "Id": 483 }, { - "CommandName": "Get-PnPFolderItem", - "Id": 484, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4 + "CommandName": "Get-PnPFolderItem", + "Rank": 4, + "Id": 484 }, { - "CommandName": "Get-PnPFolderItem", - "Id": 485, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Rank": 5 + "CommandName": "Get-PnPFolderItem", + "Rank": 5, + "Id": 485 }, { - "CommandName": "Get-PnPFolderItem", - "Id": 486, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6 + "CommandName": "Get-PnPFolderItem", + "Rank": 6, + "Id": 486 }, { - "CommandName": "Get-PnPFolderSharingLink", - "Id": 487, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "CommandName": "Get-PnPFolderSharingLink", + "Rank": 1, + "Id": 487 }, { - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 488, "Command": "Get-PnPFolderStorageMetric", - "Rank": 1 + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 1, + "Id": 488 }, { - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 489, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Rank": 2 + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 2, + "Id": 489 }, { - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 490, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Rank": 3 + "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 3, + "Id": 490 }, { - "CommandName": "Get-PnPFooter", - "Id": 491, "Command": "Get-PnPFooter", - "Rank": 1 + "CommandName": "Get-PnPFooter", + "Rank": 1, + "Id": 491 }, { - "CommandName": "Get-PnPGraphAccessToken", - "Id": 492, "Command": "Get-PnPGraphAccessToken", - "Rank": 1 + "CommandName": "Get-PnPGraphAccessToken", + "Rank": 1, + "Id": 492 }, { - "CommandName": "Get-PnPGraphAccessToken", - "Id": 493, "Command": "Get-PnPGraphAccessToken -Decoded", - "Rank": 2 + "CommandName": "Get-PnPGraphAccessToken", + "Rank": 2, + "Id": 493 }, { - "CommandName": "Get-PnPGraphSubscription", - "Id": 494, "Command": "Get-PnPGraphSubscription", - "Rank": 1 + "CommandName": "Get-PnPGraphSubscription", + "Rank": 1, + "Id": 494 }, { - "CommandName": "Get-PnPGraphSubscription", - "Id": 495, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 2 + "CommandName": "Get-PnPGraphSubscription", + "Rank": 2, + "Id": 495 }, { - "CommandName": "Get-PnPGroup", - "Id": 496, "Command": "Get-PnPGroup", - "Rank": 1 + "CommandName": "Get-PnPGroup", + "Rank": 1, + "Id": 496 }, { - "CommandName": "Get-PnPGroup", - "Id": 497, "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Rank": 2 + "CommandName": "Get-PnPGroup", + "Rank": 2, + "Id": 497 }, { - "CommandName": "Get-PnPGroup", - "Id": 498, "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Rank": 3 + "CommandName": "Get-PnPGroup", + "Rank": 3, + "Id": 498 }, { - "CommandName": "Get-PnPGroupMember", - "Id": 499, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Rank": 1 + "CommandName": "Get-PnPGroupMember", + "Rank": 1, + "Id": 499 }, { - "CommandName": "Get-PnPGroupMember", - "Id": 500, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Rank": 2 + "CommandName": "Get-PnPGroupMember", + "Rank": 2, + "Id": 500 }, { - "CommandName": "Get-PnPGroupPermissions", - "Id": 501, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Rank": 1 + "CommandName": "Get-PnPGroupPermissions", + "Rank": 1, + "Id": 501 }, { - "CommandName": "Get-PnPHideDefaultThemes", - "Id": 502, "Command": "Get-PnPHideDefaultThemes", - "Rank": 1 + "CommandName": "Get-PnPHideDefaultThemes", + "Rank": 1, + "Id": 502 }, { - "CommandName": "Get-PnPHomePage", - "Id": 503, "Command": "Get-PnPHomePage", - "Rank": 1 + "CommandName": "Get-PnPHomePage", + "Rank": 1, + "Id": 503 }, { - "CommandName": "Get-PnPHomeSite", - "Id": 504, "Command": "Get-PnPHomeSite", - "Rank": 1 + "CommandName": "Get-PnPHomeSite", + "Rank": 1, + "Id": 504 }, { - "CommandName": "Get-PnPHomeSite", - "Id": 505, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Rank": 2 + "CommandName": "Get-PnPHomeSite", + "Rank": 2, + "Id": 505 }, { - "CommandName": "Get-PnPHomeSite", - "Id": 506, "Command": "Get-PnPHomeSite -Detailed", - "Rank": 3 + "CommandName": "Get-PnPHomeSite", + "Rank": 3, + "Id": 506 }, { - "CommandName": "Get-PnPHubSite", - "Id": 507, "Command": "Get-PnPHubSite", - "Rank": 1 + "CommandName": "Get-PnPHubSite", + "Rank": 1, + "Id": 507 }, { - "CommandName": "Get-PnPHubSite", - "Id": 508, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2 + "CommandName": "Get-PnPHubSite", + "Rank": 2, + "Id": 508 }, { - "CommandName": "Get-PnPHubSite", - "Id": 509, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Rank": 3 + "CommandName": "Get-PnPHubSite", + "Rank": 3, + "Id": 509 }, { - "CommandName": "Get-PnPHubSiteChild", - "Id": 510, "Command": "Get-PnPHubSiteChild", - "Rank": 1 + "CommandName": "Get-PnPHubSiteChild", + "Rank": 1, + "Id": 510 }, { - "CommandName": "Get-PnPHubSiteChild", - "Id": 511, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2 + "CommandName": "Get-PnPHubSiteChild", + "Rank": 2, + "Id": 511 }, { - "CommandName": "Get-PnPInPlaceRecordsManagement", - "Id": 512, "Command": "Get-PnPInPlaceRecordsManagement", - "Rank": 1 + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Rank": 1, + "Id": 512 }, { - "CommandName": "Get-PnPIsSiteAliasAvailable", - "Id": 513, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Rank": 1 + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Rank": 1, + "Id": 513 }, { - "CommandName": "Get-PnPJavaScriptLink", - "Id": 514, "Command": "Get-PnPJavaScriptLink", - "Rank": 1 + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 1, + "Id": 514 }, { - "CommandName": "Get-PnPJavaScriptLink", - "Id": 515, "Command": "Get-PnPJavaScriptLink -Scope All", - "Rank": 2 + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 2, + "Id": 515 }, { - "CommandName": "Get-PnPJavaScriptLink", - "Id": 516, "Command": "Get-PnPJavaScriptLink -Scope Web", - "Rank": 3 + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 3, + "Id": 516 }, { - "CommandName": "Get-PnPJavaScriptLink", - "Id": 517, "Command": "Get-PnPJavaScriptLink -Scope Site", - "Rank": 4 + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 4, + "Id": 517 }, { - "CommandName": "Get-PnPJavaScriptLink", - "Id": 518, "Command": "Get-PnPJavaScriptLink -Name Test", - "Rank": 5 + "CommandName": "Get-PnPJavaScriptLink", + "Rank": 5, + "Id": 518 }, { - "CommandName": "Get-PnPKnowledgeHubSite", - "Id": 519, "Command": "Get-PnPKnowledgeHubSite", - "Rank": 1 + "CommandName": "Get-PnPKnowledgeHubSite", + "Rank": 1, + "Id": 519 }, { - "CommandName": "Get-PnPLabel", - "Id": 520, "Command": "Get-PnPLabel", - "Rank": 1 + "CommandName": "Get-PnPLabel", + "Rank": 1, + "Id": 520 }, { - "CommandName": "Get-PnPLabel", - "Id": 521, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Rank": 2 + "CommandName": "Get-PnPLabel", + "Rank": 2, + "Id": 521 }, { - "CommandName": "Get-PnPLargeListOperationStatus", - "Id": 522, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Rank": 1 + "CommandName": "Get-PnPLargeListOperationStatus", + "Rank": 1, + "Id": 522 }, { - "CommandName": "Get-PnPList", - "Id": 523, "Command": "Get-PnPList", - "Rank": 1 + "CommandName": "Get-PnPList", + "Rank": 1, + "Id": 523 }, { - "CommandName": "Get-PnPList", - "Id": 524, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 2 + "CommandName": "Get-PnPList", + "Rank": 2, + "Id": 524 }, { - "CommandName": "Get-PnPList", - "Id": 525, "Command": "Get-PnPList -Identity Lists/Announcements", - "Rank": 3 + "CommandName": "Get-PnPList", + "Rank": 3, + "Id": 525 }, { - "CommandName": "Get-PnPList", - "Id": 526, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Rank": 4 + "CommandName": "Get-PnPList", + "Rank": 4, + "Id": 526 }, { - "CommandName": "Get-PnPList", - "Id": 527, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Rank": 5 + "CommandName": "Get-PnPList", + "Rank": 5, + "Id": 527 }, { - "CommandName": "Get-PnPListDesign", - "Id": 528, "Command": "Get-PnPListDesign", - "Rank": 1 + "CommandName": "Get-PnPListDesign", + "Rank": 1, + "Id": 528 }, { - "CommandName": "Get-PnPListDesign", - "Id": 529, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2 + "CommandName": "Get-PnPListDesign", + "Rank": 2, + "Id": 529 }, { - "CommandName": "Get-PnPListDesign", - "Id": 530, "Command": "Get-PnPListDesign -Identity ListEvent", - "Rank": 3 + "CommandName": "Get-PnPListDesign", + "Rank": 3, + "Id": 530 }, { - "CommandName": "Get-PnPListInformationRightsManagement", - "Id": 531, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Rank": 1 + "CommandName": "Get-PnPListInformationRightsManagement", + "Rank": 1, + "Id": 531 }, { - "CommandName": "Get-PnPListItem", - "Id": 532, "Command": "Get-PnPListItem -List Tasks", - "Rank": 1 + "CommandName": "Get-PnPListItem", + "Rank": 1, + "Id": 532 }, { - "CommandName": "Get-PnPListItem", - "Id": 533, "Command": "Get-PnPListItem -List Tasks -Id 1", - "Rank": 2 + "CommandName": "Get-PnPListItem", + "Rank": 2, + "Id": 533 }, { - "CommandName": "Get-PnPListItem", - "Id": 534, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Rank": 3 + "CommandName": "Get-PnPListItem", + "Rank": 3, + "Id": 534 }, { - "CommandName": "Get-PnPListItem", - "Id": 535, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Rank": 4 + "CommandName": "Get-PnPListItem", + "Rank": 4, + "Id": 535 }, { - "CommandName": "Get-PnPListItem", - "Id": 536, "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Rank": 5 + "CommandName": "Get-PnPListItem", + "Rank": 5, + "Id": 536 }, { - "CommandName": "Get-PnPListItem", - "Id": 537, "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Rank": 6 + "CommandName": "Get-PnPListItem", + "Rank": 6, + "Id": 537 }, { - "CommandName": "Get-PnPListItem", - "Id": 538, "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, + "Id": 538 }, { - "CommandName": "Get-PnPListItem", - "Id": 539, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Rank": 8 + "CommandName": "Get-PnPListItem", + "Rank": 8, + "Id": 539 }, { - "CommandName": "Get-PnPListItem", - "Id": 540, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Rank": 9 + "CommandName": "Get-PnPListItem", + "Rank": 9, + "Id": 540 }, { - "CommandName": "Get-PnPListItemAttachment", - "Id": 541, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "Rank": 1 + "CommandName": "Get-PnPListItemAttachment", + "Rank": 1, + "Id": 541 }, { - "CommandName": "Get-PnPListItemAttachment", - "Id": 542, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "Rank": 2 + "CommandName": "Get-PnPListItemAttachment", + "Rank": 2, + "Id": 542 }, { - "CommandName": "Get-PnPListItemComment", - "Id": 543, "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Rank": 1 + "CommandName": "Get-PnPListItemComment", + "Rank": 1, + "Id": 543 }, { - "CommandName": "Get-PnPListItemPermission", - "Id": 544, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Rank": 1 + "CommandName": "Get-PnPListItemPermission", + "Rank": 1, + "Id": 544 }, { - "CommandName": "Get-PnPListItemVersion", - "Id": 545, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Rank": 1 + "CommandName": "Get-PnPListItemVersion", + "Rank": 1, + "Id": 545 }, { - "CommandName": "Get-PnPListPermissions", - "Id": 546, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Rank": 1 + "CommandName": "Get-PnPListPermissions", + "Rank": 1, + "Id": 546 }, { - "CommandName": "Get-PnPListPermissions", - "Id": 547, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Rank": 2 + "CommandName": "Get-PnPListPermissions", + "Rank": 2, + "Id": 547 }, { - "CommandName": "Get-PnPListRecordDeclaration", - "Id": 548, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Rank": 1 + "CommandName": "Get-PnPListRecordDeclaration", + "Rank": 1, + "Id": 548 }, { - "CommandName": "Get-PnPMasterPage", - "Id": 549, "Command": "Get-PnPMasterPage", - "Rank": 1 + "CommandName": "Get-PnPMasterPage", + "Rank": 1, + "Id": 549 }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 550, "Command": "Get-PnPMessageCenterAnnouncement", - "Rank": 1 + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Rank": 1, + "Id": 550 }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 551, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Rank": 2 + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Rank": 2, + "Id": 551 }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 552, "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 1, + "Id": 552 }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 553, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 2, + "Id": 553 }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 554, "Command": "Get-PnPMicrosoft365Group", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 1, + "Id": 554 }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 555, "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 2, + "Id": 555 }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 556, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 3, + "Id": 556 }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 557, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Rank": 4 + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 4, + "Id": 557 }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 558, "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Rank": 5 + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 5, + "Id": 558 }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 559, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Rank": 6 + "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 6, + "Id": 559 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 560, "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 1, + "Id": 560 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 561, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 2, + "Id": 561 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 562, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 3, + "Id": 562 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 563, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 1, + "Id": 563 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 564, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 2, + "Id": 564 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 565, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 3, + "Id": 565 }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 566, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Rank": 1, + "Id": 566 }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 567, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Rank": 2, + "Id": 567 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 568, "Command": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Rank": 1, + "Id": 568 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 569, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Rank": 2, + "Id": 569 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 570, "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 1, + "Id": 570 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 571, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 2, + "Id": 571 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 572, "Command": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 1, + "Id": 572 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 573, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 2, + "Id": 573 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 574, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 3, + "Id": 574 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 575, "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1 + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 1, + "Id": 575 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 576, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Rank": 2 + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 2, + "Id": 576 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 577, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3 + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 3, + "Id": 577 }, { - "CommandName": "Get-PnPNavigationNode", - "Id": 578, "Command": "Get-PnPNavigationNode", - "Rank": 1 + "CommandName": "Get-PnPNavigationNode", + "Rank": 1, + "Id": 578 }, { - "CommandName": "Get-PnPNavigationNode", - "Id": 579, "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Rank": 2 + "CommandName": "Get-PnPNavigationNode", + "Rank": 2, + "Id": 579 }, { - "CommandName": "Get-PnPNavigationNode", - "Id": 580, "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Rank": 3 + "CommandName": "Get-PnPNavigationNode", + "Rank": 3, + "Id": 580 }, { - "CommandName": "Get-PnPOrgAssetsLibrary", - "Id": 581, "Command": "Get-PnPOrgAssetsLibrary", - "Rank": 1 + "CommandName": "Get-PnPOrgAssetsLibrary", + "Rank": 1, + "Id": 581 }, { - "CommandName": "Get-PnPOrgNewsSite", - "Id": 582, "Command": "Get-PnPOrgNewsSite", - "Rank": 1 + "CommandName": "Get-PnPOrgNewsSite", + "Rank": 1, + "Id": 582 }, { - "CommandName": "Get-PnPPage", - "Id": 583, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Rank": 1 + "CommandName": "Get-PnPPage", + "Rank": 1, + "Id": 583 }, { - "CommandName": "Get-PnPPage", - "Id": 584, "Command": "Get-PnPPage \"MyPage\"", - "Rank": 2 + "CommandName": "Get-PnPPage", + "Rank": 2, + "Id": 584 }, { - "CommandName": "Get-PnPPage", - "Id": 585, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Rank": 3 + "CommandName": "Get-PnPPage", + "Rank": 3, + "Id": 585 }, { - "CommandName": "Get-PnPPage", - "Id": 586, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Rank": 4 + "CommandName": "Get-PnPPage", + "Rank": 4, + "Id": 586 }, { - "CommandName": "Get-PnPPageComponent", - "Id": 587, "Command": "Get-PnPPageComponent -Page Home", - "Rank": 1 + "CommandName": "Get-PnPPageComponent", + "Rank": 1, + "Id": 587 }, { - "CommandName": "Get-PnPPageComponent", - "Id": 588, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2 + "CommandName": "Get-PnPPageComponent", + "Rank": 2, + "Id": 588 }, { - "CommandName": "Get-PnPPageComponent", - "Id": 589, "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Rank": 3 + "CommandName": "Get-PnPPageComponent", + "Rank": 3, + "Id": 589 }, { - "CommandName": "Get-PnPPlannerBucket", - "Id": 590, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1 + "CommandName": "Get-PnPPlannerBucket", + "Rank": 1, + "Id": 590 }, { - "CommandName": "Get-PnPPlannerConfiguration", - "Id": 591, "Command": "Get-PnPPlannerConfiguration", - "Rank": 1 + "CommandName": "Get-PnPPlannerConfiguration", + "Rank": 1, + "Id": 591 }, { - "CommandName": "Get-PnPPlannerPlan", - "Id": 592, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Rank": 1 + "CommandName": "Get-PnPPlannerPlan", + "Rank": 1, + "Id": 592 }, { - "CommandName": "Get-PnPPlannerPlan", - "Id": 593, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Rank": 2 + "CommandName": "Get-PnPPlannerPlan", + "Rank": 2, + "Id": 593 }, { - "CommandName": "Get-PnPPlannerPlan", - "Id": 594, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Rank": 3 + "CommandName": "Get-PnPPlannerPlan", + "Rank": 3, + "Id": 594 }, { - "CommandName": "Get-PnPPlannerRosterMember", - "Id": 595, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1 + "CommandName": "Get-PnPPlannerRosterMember", + "Rank": 1, + "Id": 595 }, { - "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 596, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Rank": 1 + "CommandName": "Get-PnPPlannerRosterPlan", + "Rank": 1, + "Id": 596 }, { - "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 597, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 2 + "CommandName": "Get-PnPPlannerRosterPlan", + "Rank": 2, + "Id": 597 }, { - "CommandName": "Get-PnPPlannerTask", - "Id": 598, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1 + "CommandName": "Get-PnPPlannerTask", + "Rank": 1, + "Id": 598 }, { - "CommandName": "Get-PnPPlannerTask", - "Id": 599, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 2 + "CommandName": "Get-PnPPlannerTask", + "Rank": 2, + "Id": 599 }, { - "CommandName": "Get-PnPPlannerTask", - "Id": 600, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 3 + "CommandName": "Get-PnPPlannerTask", + "Rank": 3, + "Id": 600 }, { - "CommandName": "Get-PnPPlannerUserPolicy", - "Id": 601, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Get-PnPPlannerUserPolicy", + "Rank": 1, + "Id": 601 }, { - "CommandName": "Get-PnPPowerPlatformConnector", - "Id": 602, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "Rank": 1 + "CommandName": "Get-PnPPowerPlatformConnector", + "Rank": 1, + "Id": 602 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 603, "Command": "Get-PnPPowerPlatformEnvironment", - "Rank": 1 + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 1, + "Id": 603 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 604, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Rank": 2 + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 2, + "Id": 604 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 605, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Rank": 3 + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 3, + "Id": 605 }, { - "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Id": 606, "Command": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1 + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1, + "Id": 606 }, { - "CommandName": "Get-PnPPropertyBag", - "Id": 607, "Command": "Get-PnPPropertyBag", - "Rank": 1 + "CommandName": "Get-PnPPropertyBag", + "Rank": 1, + "Id": 607 }, { - "CommandName": "Get-PnPPropertyBag", - "Id": 608, "Command": "Get-PnPPropertyBag -Key MyKey", - "Rank": 2 + "CommandName": "Get-PnPPropertyBag", + "Rank": 2, + "Id": 608 }, { - "CommandName": "Get-PnPPropertyBag", - "Id": 609, "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Rank": 3 + "CommandName": "Get-PnPPropertyBag", + "Rank": 3, + "Id": 609 }, { - "CommandName": "Get-PnPPropertyBag", - "Id": 610, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Rank": 4 + "CommandName": "Get-PnPPropertyBag", + "Rank": 4, + "Id": 610 }, { - "CommandName": "Get-PnPPropertyBag", - "Id": 611, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Rank": 5 + "CommandName": "Get-PnPPropertyBag", + "Rank": 5, + "Id": 611 }, { - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 612, "Command": "Get-PnPPublishingImageRendition", - "Rank": 1 + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 1, + "Id": 612 }, { - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 613, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Rank": 2 + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 2, + "Id": 613 }, { - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 614, "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Rank": 3 + "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 3, + "Id": 614 }, { - "CommandName": "Get-PnPRecycleBinItem", - "Id": 615, "Command": "Get-PnPRecycleBinItem", - "Rank": 1 + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 1, + "Id": 615 }, { - "CommandName": "Get-PnPRecycleBinItem", - "Id": 616, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Rank": 2 + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 2, + "Id": 616 }, { - "CommandName": "Get-PnPRecycleBinItem", - "Id": 617, "Command": "Get-PnPRecycleBinItem -FirstStage", - "Rank": 3 + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 3, + "Id": 617 }, { - "CommandName": "Get-PnPRecycleBinItem", - "Id": 618, "Command": "Get-PnPRecycleBinItem -SecondStage", - "Rank": 4 + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 4, + "Id": 618 }, { - "CommandName": "Get-PnPRecycleBinItem", - "Id": 619, "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Rank": 5 + "CommandName": "Get-PnPRecycleBinItem", + "Rank": 5, + "Id": 619 }, { - "CommandName": "Get-PnPRequestAccessEmails", - "Id": 620, "Command": "Get-PnPRequestAccessEmails", - "Rank": 1 + "CommandName": "Get-PnPRequestAccessEmails", + "Rank": 1, + "Id": 620 }, { - "CommandName": "Get-PnPRetentionLabel", - "Id": 621, "Command": "Get-PnPRetentionLabel", - "Rank": 1 + "CommandName": "Get-PnPRetentionLabel", + "Rank": 1, + "Id": 621 }, { - "CommandName": "Get-PnPRetentionLabel", - "Id": 622, "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", - "Rank": 2 + "CommandName": "Get-PnPRetentionLabel", + "Rank": 2, + "Id": 622 }, { - "CommandName": "Get-PnPRoleDefinition", - "Id": 623, "Command": "Get-PnPRoleDefinition", - "Rank": 1 + "CommandName": "Get-PnPRoleDefinition", + "Rank": 1, + "Id": 623 }, { - "CommandName": "Get-PnPRoleDefinition", - "Id": 624, "Command": "Get-PnPRoleDefinition -Identity Read", - "Rank": 2 + "CommandName": "Get-PnPRoleDefinition", + "Rank": 2, + "Id": 624 }, { - "CommandName": "Get-PnPRoleDefinition", - "Id": 625, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Rank": 3 + "CommandName": "Get-PnPRoleDefinition", + "Rank": 3, + "Id": 625 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Id": 626, "Command": "Get-PnPSearchConfiguration", - "Rank": 1 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 1, + "Id": 626 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Id": 627, "Command": "Get-PnPSearchConfiguration -Scope Site", - "Rank": 2 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 2, + "Id": 627 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Id": 628, "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Rank": 3 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 3, + "Id": 628 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Id": 629, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 4, + "Id": 629 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Id": 630, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Rank": 5 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 5, + "Id": 630 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Id": 631, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Rank": 6 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 6, + "Id": 631 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Id": 632, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Rank": 7 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 7, + "Id": 632 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Id": 633, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Rank": 8 + "CommandName": "Get-PnPSearchConfiguration", + "Rank": 8, + "Id": 633 }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 634, "Command": "Get-PnPSearchCrawlLog", - "Rank": 1 + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 1, + "Id": 634 }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 635, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Rank": 2 + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 2, + "Id": 635 }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 636, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Rank": 3 + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 3, + "Id": 636 }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 637, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Rank": 4 + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 4, + "Id": 637 }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 638, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Rank": 5 + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 5, + "Id": 638 }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 639, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Rank": 6 + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 6, + "Id": 639 }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 640, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Rank": 7 + "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 7, + "Id": 640 }, { - "CommandName": "Get-PnPSearchSettings", - "Id": 641, "Command": "Get-PnPSearchSettings", - "Rank": 1 + "CommandName": "Get-PnPSearchSettings", + "Rank": 1, + "Id": 641 }, { - "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 642, "Command": "Get-PnPServiceCurrentHealth", - "Rank": 1 + "CommandName": "Get-PnPServiceCurrentHealth", + "Rank": 1, + "Id": 642 }, { - "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 643, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Rank": 2 + "CommandName": "Get-PnPServiceCurrentHealth", + "Rank": 2, + "Id": 643 }, { - "CommandName": "Get-PnPServiceHealthIssue", - "Id": 644, "Command": "Get-PnPServiceHealthIssue", - "Rank": 1 + "CommandName": "Get-PnPServiceHealthIssue", + "Rank": 1, + "Id": 644 }, { - "CommandName": "Get-PnPServiceHealthIssue", - "Id": 645, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Rank": 2 + "CommandName": "Get-PnPServiceHealthIssue", + "Rank": 2, + "Id": 645 }, { - "CommandName": "Get-PnPSharePointAddIn", - "Id": 646, "Command": "Get-PnPSharePointAddIn", - "Rank": 1 + "CommandName": "Get-PnPSharePointAddIn", + "Rank": 1, + "Id": 646 }, { - "CommandName": "Get-PnPSharePointAddIn", - "Id": 647, "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Rank": 2 + "CommandName": "Get-PnPSharePointAddIn", + "Rank": 2, + "Id": 647 }, { - "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Id": 648, "Command": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1 + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Rank": 1, + "Id": 648 }, { - "CommandName": "Get-PnPSite", - "Id": 649, "Command": "Get-PnPSite", - "Rank": 1 + "CommandName": "Get-PnPSite", + "Rank": 1, + "Id": 649 }, { - "CommandName": "Get-PnPSite", - "Id": 650, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Rank": 2 + "CommandName": "Get-PnPSite", + "Rank": 2, + "Id": 650 }, { - "CommandName": "Get-PnPSiteClosure", - "Id": 651, "Command": "Get-PnPSiteClosure", - "Rank": 1 + "CommandName": "Get-PnPSiteClosure", + "Rank": 1, + "Id": 651 }, { - "CommandName": "Get-PnPSiteCollectionAdmin", - "Id": 652, "Command": "Get-PnPSiteCollectionAdmin", - "Rank": 1 + "CommandName": "Get-PnPSiteCollectionAdmin", + "Rank": 1, + "Id": 652 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 653, "Command": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1 + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 1, + "Id": 653 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 654, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Rank": 2 + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 2, + "Id": 654 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 655, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Rank": 3 + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 3, + "Id": 655 }, { - "CommandName": "Get-PnPSiteCollectionTermStore", - "Id": 656, "Command": "Get-PnPSiteCollectionTermStore", - "Rank": 1 + "CommandName": "Get-PnPSiteCollectionTermStore", + "Rank": 1, + "Id": 656 }, { - "CommandName": "Get-PnPSiteDesign", - "Id": 657, "Command": "Get-PnPSiteDesign", - "Rank": 1 + "CommandName": "Get-PnPSiteDesign", + "Rank": 1, + "Id": 657 }, { - "CommandName": "Get-PnPSiteDesign", - "Id": 658, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2 + "CommandName": "Get-PnPSiteDesign", + "Rank": 2, + "Id": 658 }, { - "CommandName": "Get-PnPSiteDesignRights", - "Id": 659, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "CommandName": "Get-PnPSiteDesignRights", + "Rank": 1, + "Id": 659 }, { - "CommandName": "Get-PnPSiteDesignRun", - "Id": 660, "Command": "Get-PnPSiteDesignRun", - "Rank": 1 + "CommandName": "Get-PnPSiteDesignRun", + "Rank": 1, + "Id": 660 }, { - "CommandName": "Get-PnPSiteDesignRun", - "Id": 661, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Rank": 2 + "CommandName": "Get-PnPSiteDesignRun", + "Rank": 2, + "Id": 661 }, { - "CommandName": "Get-PnPSiteDesignTask", - "Id": 662, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1 + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 1, + "Id": 662 }, { - "CommandName": "Get-PnPSiteDesignTask", - "Id": 663, "Command": "Get-PnPSiteDesignTask", - "Rank": 2 + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 2, + "Id": 663 }, { - "CommandName": "Get-PnPSiteDesignTask", - "Id": 664, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 3 + "CommandName": "Get-PnPSiteDesignTask", + "Rank": 3, + "Id": 664 }, { - "CommandName": "Get-PnPSiteGroup", - "Id": 665, "Command": "Get-PnPSiteGroup", - "Rank": 1 + "CommandName": "Get-PnPSiteGroup", + "Rank": 1, + "Id": 665 }, { - "CommandName": "Get-PnPSiteGroup", - "Id": 666, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 2 + "CommandName": "Get-PnPSiteGroup", + "Rank": 2, + "Id": 666 }, { - "CommandName": "Get-PnPSiteGroup", - "Id": 667, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Rank": 3 + "CommandName": "Get-PnPSiteGroup", + "Rank": 3, + "Id": 667 }, { - "CommandName": "Get-PnPSiteGroup", - "Id": 668, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 4 + "CommandName": "Get-PnPSiteGroup", + "Rank": 4, + "Id": 668 }, { - "CommandName": "Get-PnPSitePolicy", - "Id": 669, "Command": "Get-PnPSitePolicy", - "Rank": 1 + "CommandName": "Get-PnPSitePolicy", + "Rank": 1, + "Id": 669 }, { - "CommandName": "Get-PnPSitePolicy", - "Id": 670, "Command": "Get-PnPSitePolicy -AllAvailable", - "Rank": 2 + "CommandName": "Get-PnPSitePolicy", + "Rank": 2, + "Id": 670 }, { - "CommandName": "Get-PnPSitePolicy", - "Id": 671, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 3 + "CommandName": "Get-PnPSitePolicy", + "Rank": 3, + "Id": 671 }, { - "CommandName": "Get-PnPSiteScript", - "Id": 672, "Command": "Get-PnPSiteScript", - "Rank": 1 + "CommandName": "Get-PnPSiteScript", + "Rank": 1, + "Id": 672 }, { - "CommandName": "Get-PnPSiteScript", - "Id": 673, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2 + "CommandName": "Get-PnPSiteScript", + "Rank": 2, + "Id": 673 }, { - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 674, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Rank": 1 + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 1, + "Id": 674 }, { - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 675, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Rank": 2 + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 2, + "Id": 675 }, { - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 676, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Rank": 3 + "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 3, + "Id": 676 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 677, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Rank": 1 + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 1, + "Id": 677 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 678, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Rank": 2 + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 2, + "Id": 678 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 679, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "Rank": 3 + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 3, + "Id": 679 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 680, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Rank": 4 + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 4, + "Id": 680 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 681, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Rank": 5 + "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 5, + "Id": 681 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 682, "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, + "Id": 682 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 683, "Command": "Get-PnPSiteSearchQueryResults", - "Rank": 1 + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 1, + "Id": 683 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 684, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Rank": 2 + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 2, + "Id": 684 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 685, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Rank": 3 + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 3, + "Id": 685 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 686, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Rank": 4 + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 4, + "Id": 686 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 687, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Rank": 5 + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 5, + "Id": 687 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 688, "Command": "Get-PnPSiteSearchQueryResults -All", - "Rank": 6 + "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 6, + "Id": 688 }, { - "CommandName": "Get-PnPSiteSensitivityLabel", - "Id": 689, "Command": "Get-PnPSiteSensitivityLabel", - "Rank": 1 + "CommandName": "Get-PnPSiteSensitivityLabel", + "Rank": 1, + "Id": 689 }, { - "CommandName": "Get-PnPSiteTemplate", - "Id": 690, "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Rank": 1 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 1, + "Id": 690 }, { - "CommandName": "Get-PnPSiteTemplate", - "Id": 691, "Command": "Get-PnPSiteTemplate -Out template.xml", - "Rank": 2 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 2, + "Id": 691 }, { - "CommandName": "Get-PnPSiteTemplate", - "Id": 692, "Command": "Get-PnPSiteTemplate -Out template.md", - "Rank": 3 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 3, + "Id": 692 }, { - "CommandName": "Get-PnPSiteTemplate", - "Id": 693, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Rank": 4 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 4, + "Id": 693 }, { - "CommandName": "Get-PnPSiteTemplate", - "Id": 694, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Rank": 5 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 5, + "Id": 694 }, { - "CommandName": "Get-PnPSiteTemplate", - "Id": 695, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Rank": 6 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 6, + "Id": 695 }, { - "CommandName": "Get-PnPSiteTemplate", - "Id": 696, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Rank": 7 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 7, + "Id": 696 }, { - "CommandName": "Get-PnPSiteTemplate", - "Id": 697, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Rank": 8 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 8, + "Id": 697 }, { - "CommandName": "Get-PnPSiteTemplate", - "Id": 698, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Rank": 9 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 9, + "Id": 698 }, { - "CommandName": "Get-PnPSiteTemplate", - "Id": 699, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Rank": 10 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 10, + "Id": 699 }, { - "CommandName": "Get-PnPSiteTemplate", - "Id": 700, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Rank": 11 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 11, + "Id": 700 }, { - "CommandName": "Get-PnPSiteTemplate", - "Id": 701, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Rank": 12 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 12, + "Id": 701 }, { - "CommandName": "Get-PnPSiteTemplate", - "Id": 702, "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, + "Id": 702 }, { - "CommandName": "Get-PnPSiteTemplate", - "Id": 703, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Rank": 14 + "CommandName": "Get-PnPSiteTemplate", + "Rank": 14, + "Id": 703 }, { - "CommandName": "Get-PnPSiteUserInvitations", - "Id": 704, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1 + "CommandName": "Get-PnPSiteUserInvitations", + "Rank": 1, + "Id": 704 }, { - "CommandName": "Get-PnPSiteVersionPolicy", - "Id": 705, "Command": "Get-PnPSiteVersionPolicy", - "Rank": 1 + "CommandName": "Get-PnPSiteVersionPolicy", + "Rank": 1, + "Id": 705 }, { - "CommandName": "Get-PnPStorageEntity", - "Id": 706, "Command": "Get-PnPStorageEntity", - "Rank": 1 + "CommandName": "Get-PnPStorageEntity", + "Rank": 1, + "Id": 706 }, { - "CommandName": "Get-PnPStorageEntity", - "Id": 707, "Command": "Get-PnPStorageEntity -Key MyKey", - "Rank": 2 + "CommandName": "Get-PnPStorageEntity", + "Rank": 2, + "Id": 707 }, { - "CommandName": "Get-PnPStorageEntity", - "Id": 708, "Command": "Get-PnPStorageEntity -Scope Site", - "Rank": 3 + "CommandName": "Get-PnPStorageEntity", + "Rank": 3, + "Id": 708 }, { - "CommandName": "Get-PnPStorageEntity", - "Id": 709, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 4 + "CommandName": "Get-PnPStorageEntity", + "Rank": 4, + "Id": 709 }, { - "CommandName": "Get-PnPStoredCredential", - "Id": 710, "Command": "Get-PnPStoredCredential -Name O365", - "Rank": 1 + "CommandName": "Get-PnPStoredCredential", + "Rank": 1, + "Id": 710 }, { - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Id": 711, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1 + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Rank": 1, + "Id": 711 }, { - "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Id": 712, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1 + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Rank": 1, + "Id": 712 }, { - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Id": 713, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Rank": 1 + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Rank": 1, + "Id": 713 }, { - "CommandName": "Get-PnPSubWeb", - "Id": 714, "Command": "Get-PnPSubWeb", - "Rank": 1 + "CommandName": "Get-PnPSubWeb", + "Rank": 1, + "Id": 714 }, { - "CommandName": "Get-PnPSubWeb", - "Id": 715, "Command": "Get-PnPSubWeb -Recurse", - "Rank": 2 + "CommandName": "Get-PnPSubWeb", + "Rank": 2, + "Id": 715 }, { - "CommandName": "Get-PnPSubWeb", - "Id": 716, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Rank": 3 + "CommandName": "Get-PnPSubWeb", + "Rank": 3, + "Id": 716 }, { - "CommandName": "Get-PnPSubWeb", - "Id": 717, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Rank": 4 + "CommandName": "Get-PnPSubWeb", + "Rank": 4, + "Id": 717 }, { - "CommandName": "Get-PnPSubWeb", - "Id": 718, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Rank": 5 + "CommandName": "Get-PnPSubWeb", + "Rank": 5, + "Id": 718 }, { - "CommandName": "Get-PnPSyntexModel", - "Id": 719, "Command": "Get-PnPSyntexModel", - "Rank": 1 + "CommandName": "Get-PnPSyntexModel", + "Rank": 1, + "Id": 719 }, { - "CommandName": "Get-PnPSyntexModel", - "Id": 720, "Command": "Get-PnPSyntexModel -Identity 1", - "Rank": 2 + "CommandName": "Get-PnPSyntexModel", + "Rank": 2, + "Id": 720 }, { - "CommandName": "Get-PnPSyntexModel", - "Id": 721, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Rank": 3 + "CommandName": "Get-PnPSyntexModel", + "Rank": 3, + "Id": 721 }, { - "CommandName": "Get-PnPSyntexModelPublication", - "Id": 722, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Rank": 1 + "CommandName": "Get-PnPSyntexModelPublication", + "Rank": 1, + "Id": 722 }, { - "CommandName": "Get-PnPTaxonomyItem", - "Id": 723, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Rank": 1 + "CommandName": "Get-PnPTaxonomyItem", + "Rank": 1, + "Id": 723 }, { - "CommandName": "Get-PnPTeamsApp", - "Id": 724, "Command": "Get-PnPTeamsApp", - "Rank": 1 + "CommandName": "Get-PnPTeamsApp", + "Rank": 1, + "Id": 724 }, { - "CommandName": "Get-PnPTeamsApp", - "Id": 725, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Rank": 2 + "CommandName": "Get-PnPTeamsApp", + "Rank": 2, + "Id": 725 }, { - "CommandName": "Get-PnPTeamsApp", - "Id": 726, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Rank": 3 + "CommandName": "Get-PnPTeamsApp", + "Rank": 3, + "Id": 726 }, { - "CommandName": "Get-PnPTeamsChannel", - "Id": 727, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannel", + "Rank": 1, + "Id": 727 }, { - "CommandName": "Get-PnPTeamsChannel", - "Id": 728, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannel", + "Rank": 2, + "Id": 728 }, { - "CommandName": "Get-PnPTeamsChannel", - "Id": 729, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 3 + "CommandName": "Get-PnPTeamsChannel", + "Rank": 3, + "Id": 729 }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 730, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Rank": 1, + "Id": 730 }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 731, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Rank": 2, + "Id": 731 }, { - "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 732, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannelMessage", + "Rank": 1, + "Id": 732 }, { - "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 733, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannelMessage", + "Rank": 2, + "Id": 733 }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 734, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Rank": 1, + "Id": 734 }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 735, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Rank": 2, + "Id": 735 }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 736, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 1 + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 1, + "Id": 736 }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 737, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Rank": 2 + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 2, + "Id": 737 }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 738, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Rank": 3 + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 3, + "Id": 738 }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 739, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4 + "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 4, + "Id": 739 }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 740, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Rank": 1 + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Rank": 1, + "Id": 740 }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 741, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Rank": 2 + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Rank": 2, + "Id": 741 }, { - "CommandName": "Get-PnPTeamsTab", - "Id": 742, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Rank": 1 + "CommandName": "Get-PnPTeamsTab", + "Rank": 1, + "Id": 742 }, { - "CommandName": "Get-PnPTeamsTab", - "Id": 743, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "Rank": 2 + "CommandName": "Get-PnPTeamsTab", + "Rank": 2, + "Id": 743 }, { - "CommandName": "Get-PnPTeamsTab", - "Id": 744, "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, + "Id": 744 }, { - "CommandName": "Get-PnPTeamsTab", - "Id": 745, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 4 + "CommandName": "Get-PnPTeamsTab", + "Rank": 4, + "Id": 745 }, { - "CommandName": "Get-PnPTeamsTab", - "Id": 746, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Rank": 5 + "CommandName": "Get-PnPTeamsTab", + "Rank": 5, + "Id": 746 }, { - "CommandName": "Get-PnPTeamsTag", - "Id": 747, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1 + "CommandName": "Get-PnPTeamsTag", + "Rank": 1, + "Id": 747 }, { - "CommandName": "Get-PnPTeamsTag", - "Id": 748, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 2 + "CommandName": "Get-PnPTeamsTag", + "Rank": 2, + "Id": 748 }, { - "CommandName": "Get-PnPTeamsTeam", - "Id": 749, "Command": "Get-PnPTeamsTeam", - "Rank": 1 + "CommandName": "Get-PnPTeamsTeam", + "Rank": 1, + "Id": 749 }, { - "CommandName": "Get-PnPTeamsTeam", - "Id": 750, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Rank": 2 + "CommandName": "Get-PnPTeamsTeam", + "Rank": 2, + "Id": 750 }, { - "CommandName": "Get-PnPTeamsTeam", - "Id": 751, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Rank": 3 + "CommandName": "Get-PnPTeamsTeam", + "Rank": 3, + "Id": 751 }, { - "CommandName": "Get-PnPTeamsTeam", - "Id": 752, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Rank": 4 + "CommandName": "Get-PnPTeamsTeam", + "Rank": 4, + "Id": 752 }, { - "CommandName": "Get-PnPTeamsTeam", - "Id": 753, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Rank": 5 + "CommandName": "Get-PnPTeamsTeam", + "Rank": 5, + "Id": 753 }, { - "CommandName": "Get-PnPTeamsUser", - "Id": 754, "Command": "Get-PnPTeamsUser -Team MyTeam", - "Rank": 1 + "CommandName": "Get-PnPTeamsUser", + "Rank": 1, + "Id": 754 }, { - "CommandName": "Get-PnPTeamsUser", - "Id": 755, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Rank": 2 + "CommandName": "Get-PnPTeamsUser", + "Rank": 2, + "Id": 755 }, { - "CommandName": "Get-PnPTeamsUser", - "Id": 756, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Rank": 3 + "CommandName": "Get-PnPTeamsUser", + "Rank": 3, + "Id": 756 }, { - "CommandName": "Get-PnPTeamsUser", - "Id": 757, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Rank": 4 + "CommandName": "Get-PnPTeamsUser", + "Rank": 4, + "Id": 757 }, { - "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Id": 758, "Command": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1 + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Rank": 1, + "Id": 758 }, { - "CommandName": "Get-PnPTenant", - "Id": 759, "Command": "Get-PnPTenant", - "Rank": 1 + "CommandName": "Get-PnPTenant", + "Rank": 1, + "Id": 759 }, { - "CommandName": "Get-PnPTenantAppCatalogUrl", - "Id": 760, "Command": "Get-PnPTenantAppCatalogUrl", - "Rank": 1 + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Rank": 1, + "Id": 760 }, { - "CommandName": "Get-PnPTenantCdnEnabled", - "Id": 761, "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Rank": 1 + "CommandName": "Get-PnPTenantCdnEnabled", + "Rank": 1, + "Id": 761 }, { - "CommandName": "Get-PnPTenantCdnOrigin", - "Id": 762, "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Rank": 1 + "CommandName": "Get-PnPTenantCdnOrigin", + "Rank": 1, + "Id": 762 }, { - "CommandName": "Get-PnPTenantCdnPolicies", - "Id": 763, "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Rank": 1 + "CommandName": "Get-PnPTenantCdnPolicies", + "Rank": 1, + "Id": 763 }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 764, "Command": "Get-PnPTenantDeletedSite", - "Rank": 1 + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 1, + "Id": 764 }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 765, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 2 + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 2, + "Id": 765 }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 766, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Rank": 3 + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 3, + "Id": 766 }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 767, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Rank": 4 + "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 4, + "Id": 767 }, { - "CommandName": "Get-PnPTenantId", - "Id": 768, "Command": "Get-PnPTenantId", - "Rank": 1 + "CommandName": "Get-PnPTenantId", + "Rank": 1, + "Id": 768 }, { - "CommandName": "Get-PnPTenantId", - "Id": 769, "Command": "Get-PnPTenantId contoso", - "Rank": 2 + "CommandName": "Get-PnPTenantId", + "Rank": 2, + "Id": 769 }, { - "CommandName": "Get-PnPTenantId", - "Id": 770, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Rank": 3 + "CommandName": "Get-PnPTenantId", + "Rank": 3, + "Id": 770 }, { - "CommandName": "Get-PnPTenantId", - "Id": 771, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Rank": 4 + "CommandName": "Get-PnPTenantId", + "Rank": 4, + "Id": 771 }, { - "CommandName": "Get-PnPTenantInfo", - "Id": 772, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "Rank": 1 + "CommandName": "Get-PnPTenantInfo", + "Rank": 1, + "Id": 772 }, { - "CommandName": "Get-PnPTenantInfo", - "Id": 773, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "Rank": 2 + "CommandName": "Get-PnPTenantInfo", + "Rank": 2, + "Id": 773 }, { - "CommandName": "Get-PnPTenantInfo", - "Id": 774, "Command": "Get-PnPTenantInfo", - "Rank": 3 + "CommandName": "Get-PnPTenantInfo", + "Rank": 3, + "Id": 774 }, { - "CommandName": "Get-PnPTenantInfo", - "Id": 775, "Command": "Get-PnPTenantInfo -CurrentTenant", - "Rank": 4 + "CommandName": "Get-PnPTenantInfo", + "Rank": 4, + "Id": 775 }, { - "CommandName": "Get-PnPTenantInstance", - "Id": 776, "Command": "Get-PnPTenantInstance", - "Rank": 1 + "CommandName": "Get-PnPTenantInstance", + "Rank": 1, + "Id": 776 }, { - "CommandName": "Get-PnPTenantRecycleBinItem", - "Id": 777, "Command": "Get-PnPTenantRecycleBinItem", - "Rank": 1 + "CommandName": "Get-PnPTenantRecycleBinItem", + "Rank": 1, + "Id": 777 }, { - "CommandName": "Get-PnPTenantSequence", - "Id": 778, "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Rank": 1 + "CommandName": "Get-PnPTenantSequence", + "Rank": 1, + "Id": 778 }, { - "CommandName": "Get-PnPTenantSequence", - "Id": 779, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Rank": 2 + "CommandName": "Get-PnPTenantSequence", + "Rank": 2, + "Id": 779 }, { - "CommandName": "Get-PnPTenantSequenceSite", - "Id": 780, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Rank": 1 + "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 1, + "Id": 780 }, { - "CommandName": "Get-PnPTenantSequenceSite", - "Id": 781, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Rank": 2 + "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 2, + "Id": 781 }, { - "CommandName": "Get-PnPTenantSite", - "Id": 782, "Command": "Get-PnPTenantSite", - "Rank": 1 + "CommandName": "Get-PnPTenantSite", + "Rank": 1, + "Id": 782 }, { - "CommandName": "Get-PnPTenantSite", - "Id": 783, "Command": "Get-PnPTenantSite -Detailed", - "Rank": 2 + "CommandName": "Get-PnPTenantSite", + "Rank": 2, + "Id": 783 }, { - "CommandName": "Get-PnPTenantSite", - "Id": 784, "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Rank": 3 + "CommandName": "Get-PnPTenantSite", + "Rank": 3, + "Id": 784 }, { - "CommandName": "Get-PnPTenantSite", - "Id": 785, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Rank": 4 + "CommandName": "Get-PnPTenantSite", + "Rank": 4, + "Id": 785 }, { - "CommandName": "Get-PnPTenantSite", - "Id": 786, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Rank": 5 + "CommandName": "Get-PnPTenantSite", + "Rank": 5, + "Id": 786 }, { - "CommandName": "Get-PnPTenantSite", - "Id": 787, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Rank": 6 + "CommandName": "Get-PnPTenantSite", + "Rank": 6, + "Id": 787 }, { - "CommandName": "Get-PnPTenantSite", - "Id": 788, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Rank": 7 + "CommandName": "Get-PnPTenantSite", + "Rank": 7, + "Id": 788 }, { - "CommandName": "Get-PnPTenantSite", - "Id": 789, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Rank": 8 + "CommandName": "Get-PnPTenantSite", + "Rank": 8, + "Id": 789 }, { - "CommandName": "Get-PnPTenantSite", - "Id": 790, "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Rank": 9 + "CommandName": "Get-PnPTenantSite", + "Rank": 9, + "Id": 790 }, { - "CommandName": "Get-PnPTenantSyncClientRestriction", - "Id": 791, "Command": "Get-PnPTenantSyncClientRestriction", - "Rank": 1 + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Rank": 1, + "Id": 791 }, { - "CommandName": "Get-PnPTenantTemplate", - "Id": 792, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Rank": 1 + "CommandName": "Get-PnPTenantTemplate", + "Rank": 1, + "Id": 792 }, { - "CommandName": "Get-PnPTenantTemplate", - "Id": 793, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Rank": 2 + "CommandName": "Get-PnPTenantTemplate", + "Rank": 2, + "Id": 793 }, { - "CommandName": "Get-PnPTenantTemplate", - "Id": 794, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "Rank": 3 + "CommandName": "Get-PnPTenantTemplate", + "Rank": 3, + "Id": 794 }, { - "CommandName": "Get-PnPTenantTheme", - "Id": 795, "Command": "Get-PnPTenantTheme", - "Rank": 1 + "CommandName": "Get-PnPTenantTheme", + "Rank": 1, + "Id": 795 }, { - "CommandName": "Get-PnPTenantTheme", - "Id": 796, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 2 + "CommandName": "Get-PnPTenantTheme", + "Rank": 2, + "Id": 796 }, { - "CommandName": "Get-PnPTenantTheme", - "Id": 797, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Rank": 3 + "CommandName": "Get-PnPTenantTheme", + "Rank": 3, + "Id": 797 }, { - "CommandName": "Get-PnPTerm", - "Id": 798, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 1 + "CommandName": "Get-PnPTerm", + "Rank": 1, + "Id": 798 }, { - "CommandName": "Get-PnPTerm", - "Id": 799, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "CommandName": "Get-PnPTerm", + "Rank": 2, + "Id": 799 }, { - "CommandName": "Get-PnPTerm", - "Id": 800, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3 + "CommandName": "Get-PnPTerm", + "Rank": 3, + "Id": 800 }, { - "CommandName": "Get-PnPTerm", - "Id": 801, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Rank": 4 + "CommandName": "Get-PnPTerm", + "Rank": 4, + "Id": 801 }, { - "CommandName": "Get-PnPTerm", - "Id": 802, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Rank": 5 + "CommandName": "Get-PnPTerm", + "Rank": 5, + "Id": 802 }, { - "CommandName": "Get-PnPTermGroup", - "Id": 803, "Command": "Get-PnPTermGroup", - "Rank": 1 + "CommandName": "Get-PnPTermGroup", + "Rank": 1, + "Id": 803 }, { - "CommandName": "Get-PnPTermGroup", - "Id": 804, "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Rank": 2 + "CommandName": "Get-PnPTermGroup", + "Rank": 2, + "Id": 804 }, { - "CommandName": "Get-PnPTermGroup", - "Id": 805, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Rank": 3 + "CommandName": "Get-PnPTermGroup", + "Rank": 3, + "Id": 805 }, { - "CommandName": "Get-PnPTermLabel", - "Id": 806, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Rank": 1 + "CommandName": "Get-PnPTermLabel", + "Rank": 1, + "Id": 806 }, { - "CommandName": "Get-PnPTermLabel", - "Id": 807, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Rank": 2 + "CommandName": "Get-PnPTermLabel", + "Rank": 2, + "Id": 807 }, { - "CommandName": "Get-PnPTermLabel", - "Id": 808, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3 + "CommandName": "Get-PnPTermLabel", + "Rank": 3, + "Id": 808 }, { - "CommandName": "Get-PnPTermSet", - "Id": 809, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Rank": 1 + "CommandName": "Get-PnPTermSet", + "Rank": 1, + "Id": 809 }, { - "CommandName": "Get-PnPTermSet", - "Id": 810, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "CommandName": "Get-PnPTermSet", + "Rank": 2, + "Id": 810 }, { - "CommandName": "Get-PnPTermSet", - "Id": 811, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Rank": 3 + "CommandName": "Get-PnPTermSet", + "Rank": 3, + "Id": 811 }, { - "CommandName": "Get-PnPTheme", - "Id": 812, "Command": "Get-PnPTheme", - "Rank": 1 + "CommandName": "Get-PnPTheme", + "Rank": 1, + "Id": 812 }, { - "CommandName": "Get-PnPTheme", - "Id": 813, "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Rank": 2 + "CommandName": "Get-PnPTheme", + "Rank": 2, + "Id": 813 }, { - "CommandName": "Get-PnPTimeZoneId", - "Id": 814, "Command": "Get-PnPTimeZoneId", - "Rank": 1 + "CommandName": "Get-PnPTimeZoneId", + "Rank": 1, + "Id": 814 }, { - "CommandName": "Get-PnPTimeZoneId", - "Id": 815, "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Rank": 2 + "CommandName": "Get-PnPTimeZoneId", + "Rank": 2, + "Id": 815 }, { - "CommandName": "Get-PnPUnfurlLink", - "Id": 816, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Rank": 1 + "CommandName": "Get-PnPUnfurlLink", + "Rank": 1, + "Id": 816 }, { - "CommandName": "Get-PnPUnifiedAuditLog", - "Id": 817, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Rank": 1 + "CommandName": "Get-PnPUnifiedAuditLog", + "Rank": 1, + "Id": 817 }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 818, "Command": "Get-PnPUPABulkImportStatus", - "Rank": 1 + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 1, + "Id": 818 }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 819, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Rank": 2 + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 2, + "Id": 819 }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 820, "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Rank": 3 + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 3, + "Id": 820 }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 821, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Rank": 4 + "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 4, + "Id": 821 }, { - "CommandName": "Get-PnPUser", - "Id": 822, "Command": "Get-PnPUser", - "Rank": 1 + "CommandName": "Get-PnPUser", + "Rank": 1, + "Id": 822 }, { - "CommandName": "Get-PnPUser", - "Id": 823, "Command": "Get-PnPUser -Identity 23", - "Rank": 2 + "CommandName": "Get-PnPUser", + "Rank": 2, + "Id": 823 }, { - "CommandName": "Get-PnPUser", - "Id": 824, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Rank": 3 + "CommandName": "Get-PnPUser", + "Rank": 3, + "Id": 824 }, { - "CommandName": "Get-PnPUser", - "Id": 825, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Rank": 4 + "CommandName": "Get-PnPUser", + "Rank": 4, + "Id": 825 }, { - "CommandName": "Get-PnPUser", - "Id": 826, "Command": "Get-PnPUser -WithRightsAssigned", - "Rank": 5 + "CommandName": "Get-PnPUser", + "Rank": 5, + "Id": 826 }, { - "CommandName": "Get-PnPUser", - "Id": 827, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Rank": 6 + "CommandName": "Get-PnPUser", + "Rank": 6, + "Id": 827 }, { - "CommandName": "Get-PnPUser", - "Id": 828, "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Rank": 7 + "CommandName": "Get-PnPUser", + "Rank": 7, + "Id": 828 }, { - "CommandName": "Get-PnPUserOneDriveQuota", - "Id": 829, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Rank": 1 + "CommandName": "Get-PnPUserOneDriveQuota", + "Rank": 1, + "Id": 829 }, { - "CommandName": "Get-PnPUserProfileProperty", - "Id": 830, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Rank": 1 + "CommandName": "Get-PnPUserProfileProperty", + "Rank": 1, + "Id": 830 }, { - "CommandName": "Get-PnPUserProfileProperty", - "Id": 831, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Rank": 2 + "CommandName": "Get-PnPUserProfileProperty", + "Rank": 2, + "Id": 831 }, { - "CommandName": "Get-PnPUserProfileProperty", - "Id": 832, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Rank": 3 + "CommandName": "Get-PnPUserProfileProperty", + "Rank": 3, + "Id": 832 }, { - "CommandName": "Get-PnPView", - "Id": 833, "Command": "Get-PnPView -List \"Demo List\"", - "Rank": 1 + "CommandName": "Get-PnPView", + "Rank": 1, + "Id": 833 }, { - "CommandName": "Get-PnPView", - "Id": 834, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Rank": 2 + "CommandName": "Get-PnPView", + "Rank": 2, + "Id": 834 }, { - "CommandName": "Get-PnPView", - "Id": 835, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Rank": 3 + "CommandName": "Get-PnPView", + "Rank": 3, + "Id": 835 }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 836, "Command": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1 + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 1, + "Id": 836 }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 837, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 2 + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 2, + "Id": 837 }, { - "CommandName": "Get-PnPWeb", - "Id": 838, "Command": "Get-PnPWeb", - "Rank": 1 + "CommandName": "Get-PnPWeb", + "Rank": 1, + "Id": 838 }, { - "CommandName": "Get-PnPWebHeader", - "Id": 839, "Command": "Get-PnPWebHeader", - "Rank": 1 + "CommandName": "Get-PnPWebHeader", + "Rank": 1, + "Id": 839 }, { - "CommandName": "Get-PnPWebhookSubscriptions", - "Id": 840, "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Rank": 1 + "CommandName": "Get-PnPWebhookSubscriptions", + "Rank": 1, + "Id": 840 }, { - "CommandName": "Get-PnPWebPart", - "Id": 841, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Rank": 1 + "CommandName": "Get-PnPWebPart", + "Rank": 1, + "Id": 841 }, { - "CommandName": "Get-PnPWebPart", - "Id": 842, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2 + "CommandName": "Get-PnPWebPart", + "Rank": 2, + "Id": 842 }, { - "CommandName": "Get-PnPWebPartProperty", - "Id": 843, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Rank": 1 + "CommandName": "Get-PnPWebPartProperty", + "Rank": 1, + "Id": 843 }, { - "CommandName": "Get-PnPWebPartProperty", - "Id": 844, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "Rank": 2 + "CommandName": "Get-PnPWebPartProperty", + "Rank": 2, + "Id": 844 }, { - "CommandName": "Get-PnPWebPartXml", - "Id": 845, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1 + "CommandName": "Get-PnPWebPartXml", + "Rank": 1, + "Id": 845 }, { - "CommandName": "Get-PnPWebTemplates", - "Id": 846, "Command": "Get-PnPWebTemplates", - "Rank": 1 + "CommandName": "Get-PnPWebTemplates", + "Rank": 1, + "Id": 846 }, { - "CommandName": "Get-PnPWebTemplates", - "Id": 847, "Command": "Get-PnPWebTemplates -LCID 1033", - "Rank": 2 + "CommandName": "Get-PnPWebTemplates", + "Rank": 2, + "Id": 847 }, { - "CommandName": "Get-PnPWebTemplates", - "Id": 848, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Rank": 3 + "CommandName": "Get-PnPWebTemplates", + "Rank": 3, + "Id": 848 }, { - "CommandName": "Get-PnPWikiPageContent", - "Id": 849, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Rank": 1 + "CommandName": "Get-PnPWikiPageContent", + "Rank": 1, + "Id": 849 }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 850, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Rank": 1 + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Rank": 1, + "Id": 850 }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 851, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2 + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Rank": 2, + "Id": 851 }, { - "CommandName": "Grant-PnPHubSiteRights", - "Id": 852, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1 + "CommandName": "Grant-PnPHubSiteRights", + "Rank": 1, + "Id": 852 }, { - "CommandName": "Grant-PnPSiteDesignRights", - "Id": 853, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1 + "CommandName": "Grant-PnPSiteDesignRights", + "Rank": 1, + "Id": 853 }, { - "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Id": 854, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1 + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Rank": 1, + "Id": 854 }, { - "CommandName": "Import-PnPTaxonomy", - "Id": 855, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Rank": 1 + "CommandName": "Import-PnPTaxonomy", + "Rank": 1, + "Id": 855 }, { - "CommandName": "Import-PnPTaxonomy", - "Id": 856, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Rank": 2 + "CommandName": "Import-PnPTaxonomy", + "Rank": 2, + "Id": 856 }, { - "CommandName": "Import-PnPTaxonomy", - "Id": 857, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Rank": 3 + "CommandName": "Import-PnPTaxonomy", + "Rank": 3, + "Id": 857 }, { - "CommandName": "Import-PnPTermGroupFromXml", - "Id": 858, "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Rank": 1 + "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 1, + "Id": 858 }, { - "CommandName": "Import-PnPTermGroupFromXml", - "Id": 859, "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Rank": 2 + "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 2, + "Id": 859 }, { - "CommandName": "Import-PnPTermSet", - "Id": 860, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Rank": 1 + "CommandName": "Import-PnPTermSet", + "Rank": 1, + "Id": 860 }, { - "CommandName": "Import-PnPTermSet", - "Id": 861, "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, + "Id": 861 }, { - "CommandName": "Import-PnPTermSet", - "Id": 862, "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, + "Id": 862 }, { - "CommandName": "Install-PnPApp", - "Id": 863, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Install-PnPApp", + "Rank": 1, + "Id": 863 }, { - "CommandName": "Install-PnPApp", - "Id": 864, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "CommandName": "Install-PnPApp", + "Rank": 2, + "Id": 864 }, { - "CommandName": "Invoke-PnPGraphMethod", - "Id": 865, "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, + "Id": 865 }, { - "CommandName": "Invoke-PnPGraphMethod", - "Id": 866, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Rank": 2 + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 2, + "Id": 866 }, { - "CommandName": "Invoke-PnPGraphMethod", - "Id": 867, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Rank": 3 + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 3, + "Id": 867 }, { - "CommandName": "Invoke-PnPGraphMethod", - "Id": 868, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Rank": 4 + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 4, + "Id": 868 }, { - "CommandName": "Invoke-PnPGraphMethod", - "Id": 869, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Rank": 5 + "CommandName": "Invoke-PnPGraphMethod", + "Rank": 5, + "Id": 869 }, { - "CommandName": "Invoke-PnPGraphMethod", - "Id": 870, "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, + "Id": 870 }, { - "CommandName": "Invoke-PnPGraphMethod", - "Id": 871, "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, + "Id": 871 }, { - "CommandName": "Invoke-PnPListDesign", - "Id": 872, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "CommandName": "Invoke-PnPListDesign", + "Rank": 1, + "Id": 872 }, { - "CommandName": "Invoke-PnPListDesign", - "Id": 873, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2 + "CommandName": "Invoke-PnPListDesign", + "Rank": 2, + "Id": 873 }, { - "CommandName": "Invoke-PnPQuery", - "Id": 874, "Command": "Invoke-PnPQuery -RetryCount 5", - "Rank": 1 + "CommandName": "Invoke-PnPQuery", + "Rank": 1, + "Id": 874 }, { - "CommandName": "Invoke-PnPSiteDesign", - "Id": 875, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "CommandName": "Invoke-PnPSiteDesign", + "Rank": 1, + "Id": 875 }, { - "CommandName": "Invoke-PnPSiteDesign", - "Id": 876, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2 + "CommandName": "Invoke-PnPSiteDesign", + "Rank": 2, + "Id": 876 }, { - "CommandName": "Invoke-PnPSiteScript", - "Id": 877, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Rank": 1 + "CommandName": "Invoke-PnPSiteScript", + "Rank": 1, + "Id": 877 }, { - "CommandName": "Invoke-PnPSiteSwap", - "Id": 878, "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, + "Id": 878 }, { - "CommandName": "Invoke-PnPSiteSwap", - "Id": 879, "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, + "Id": 879 }, { - "CommandName": "Invoke-PnPSiteSwap", - "Id": 880, "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, + "Id": 880 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 881, "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Rank": 1 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 1, + "Id": 881 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 882, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Rank": 2 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 2, + "Id": 882 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 883, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 3, + "Id": 883 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 884, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Rank": 4 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 4, + "Id": 884 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 885, "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Rank": 5 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 5, + "Id": 885 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 886, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Rank": 6 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 6, + "Id": 886 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 887, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Rank": 7 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 7, + "Id": 887 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 888, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Rank": 8 + "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 8, + "Id": 888 }, { - "CommandName": "Invoke-PnPSPRestMethod", - "Id": 889, "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Rank": 1 + "CommandName": "Invoke-PnPSPRestMethod", + "Rank": 1, + "Id": 889 }, { - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 890, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Rank": 1 + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 1, + "Id": 890 }, { - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 891, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Rank": 2 + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 2, + "Id": 891 }, { - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 892, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3 + "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 3, + "Id": 892 }, { - "CommandName": "Invoke-PnPWebAction", - "Id": 893, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Rank": 1 + "CommandName": "Invoke-PnPWebAction", + "Rank": 1, + "Id": 893 }, { - "CommandName": "Invoke-PnPWebAction", - "Id": 894, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Rank": 2 + "CommandName": "Invoke-PnPWebAction", + "Rank": 2, + "Id": 894 }, { - "CommandName": "Measure-PnPList", - "Id": 895, "Command": "Measure-PnPList \"Documents\"", - "Rank": 1 + "CommandName": "Measure-PnPList", + "Rank": 1, + "Id": 895 }, { - "CommandName": "Measure-PnPList", - "Id": 896, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Rank": 2 + "CommandName": "Measure-PnPList", + "Rank": 2, + "Id": 896 }, { - "CommandName": "Measure-PnPWeb", - "Id": 897, "Command": "Measure-PnPWeb", - "Rank": 1 + "CommandName": "Measure-PnPWeb", + "Rank": 1, + "Id": 897 }, { - "CommandName": "Measure-PnPWeb", - "Id": 898, "Command": "Measure-PnPWeb $web -Recursive", - "Rank": 2 + "CommandName": "Measure-PnPWeb", + "Rank": 2, + "Id": 898 }, { - "CommandName": "Move-PnPFile", - "Id": 899, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Rank": 1 + "CommandName": "Move-PnPFile", + "Rank": 1, + "Id": 899 }, { - "CommandName": "Move-PnPFile", - "Id": 900, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Rank": 2 + "CommandName": "Move-PnPFile", + "Rank": 2, + "Id": 900 }, { - "CommandName": "Move-PnPFile", - "Id": 901, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 3 + "CommandName": "Move-PnPFile", + "Rank": 3, + "Id": 901 }, { - "CommandName": "Move-PnPFile", - "Id": 902, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 4 + "CommandName": "Move-PnPFile", + "Rank": 4, + "Id": 902 }, { - "CommandName": "Move-PnPFolder", - "Id": 903, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Rank": 1 + "CommandName": "Move-PnPFolder", + "Rank": 1, + "Id": 903 }, { - "CommandName": "Move-PnPFolder", - "Id": 904, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Rank": 2 + "CommandName": "Move-PnPFolder", + "Rank": 2, + "Id": 904 }, { - "CommandName": "Move-PnPListItemToRecycleBin", - "Id": 905, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1 + "CommandName": "Move-PnPListItemToRecycleBin", + "Rank": 1, + "Id": 905 }, { - "CommandName": "Move-PnPPageComponent", - "Id": 906, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Rank": 1 + "CommandName": "Move-PnPPageComponent", + "Rank": 1, + "Id": 906 }, { - "CommandName": "Move-PnPPageComponent", - "Id": 907, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Rank": 2 + "CommandName": "Move-PnPPageComponent", + "Rank": 2, + "Id": 907 }, { - "CommandName": "Move-PnPPageComponent", - "Id": 908, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Rank": 3 + "CommandName": "Move-PnPPageComponent", + "Rank": 3, + "Id": 908 }, { - "CommandName": "Move-PnPPageComponent", - "Id": 909, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "Rank": 4 + "CommandName": "Move-PnPPageComponent", + "Rank": 4, + "Id": 909 }, { - "CommandName": "Move-PnpRecycleBinItem", - "Id": 910, "Command": "Move-PnPRecycleBinItem", - "Rank": 1 + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 1, + "Id": 910 }, { - "CommandName": "Move-PnpRecycleBinItem", - "Id": 911, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Rank": 2 + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 2, + "Id": 911 }, { - "CommandName": "Move-PnpRecycleBinItem", - "Id": 912, "Command": "Move-PnPRecycleBinItem -Force", - "Rank": 3 + "CommandName": "Move-PnpRecycleBinItem", + "Rank": 3, + "Id": 912 }, { - "CommandName": "Move-PnPTerm", - "Id": 913, "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, + "Id": 913 }, { - "CommandName": "Move-PnPTerm", - "Id": 914, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Rank": 2 + "CommandName": "Move-PnPTerm", + "Rank": 2, + "Id": 914 }, { - "CommandName": "Move-PnPTerm", - "Id": 915, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Rank": 3 + "CommandName": "Move-PnPTerm", + "Rank": 3, + "Id": 915 }, { - "CommandName": "Move-PnPTermSet", - "Id": 916, "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, + "Id": 916 }, { - "CommandName": "Move-PnPTermSet", - "Id": 917, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Rank": 2 + "CommandName": "Move-PnPTermSet", + "Rank": 2, + "Id": 917 }, { - "CommandName": "New-PnPAzureADGroup", - "Id": 918, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1 + "CommandName": "New-PnPAzureADGroup", + "Rank": 1, + "Id": 918 }, { - "CommandName": "New-PnPAzureADGroup", - "Id": 919, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Rank": 2 + "CommandName": "New-PnPAzureADGroup", + "Rank": 2, + "Id": 919 }, { - "CommandName": "New-PnPAzureADGroup", - "Id": 920, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Rank": 3 + "CommandName": "New-PnPAzureADGroup", + "Rank": 3, + "Id": 920 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 921, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Rank": 1 + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 1, + "Id": 921 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 922, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Rank": 2 + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 2, + "Id": 922 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 923, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "Rank": 3 + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 3, + "Id": 923 }, { - "CommandName": "New-PnPAzureCertificate", - "Id": 924, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Rank": 1 + "CommandName": "New-PnPAzureCertificate", + "Rank": 1, + "Id": 924 }, { - "CommandName": "New-PnPAzureCertificate", - "Id": 925, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Rank": 2 + "CommandName": "New-PnPAzureCertificate", + "Rank": 2, + "Id": 925 }, { - "CommandName": "New-PnPAzureCertificate", - "Id": 926, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "Rank": 3 + "CommandName": "New-PnPAzureCertificate", + "Rank": 3, + "Id": 926 }, { - "CommandName": "New-PnPGraphSubscription", - "Id": 927, "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, + "Id": 927 }, { - "CommandName": "New-PnPGraphSubscription", - "Id": 928, "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, + "Id": 928 }, { - "CommandName": "New-PnPGroup", - "Id": 929, "Command": "New-PnPGroup -Title \"My Site Users\"", - "Rank": 1 + "CommandName": "New-PnPGroup", + "Rank": 1, + "Id": 929 }, { - "CommandName": "New-PnPList", - "Id": 930, "Command": "New-PnPList -Title Announcements -Template Announcements", - "Rank": 1 + "CommandName": "New-PnPList", + "Rank": 1, + "Id": 930 }, { - "CommandName": "New-PnPList", - "Id": 931, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Rank": 2 + "CommandName": "New-PnPList", + "Rank": 2, + "Id": 931 }, { - "CommandName": "New-PnPList", - "Id": 932, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Rank": 3 + "CommandName": "New-PnPList", + "Rank": 3, + "Id": 932 }, { - "CommandName": "New-PnPMicrosoft365Group", - "Id": 933, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1 + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 1, + "Id": 933 }, { - "CommandName": "New-PnPMicrosoft365Group", - "Id": 934, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "Rank": 2 + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 2, + "Id": 934 }, { - "CommandName": "New-PnPMicrosoft365Group", - "Id": 935, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Rank": 3 + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 3, + "Id": 935 }, { - "CommandName": "New-PnPMicrosoft365Group", - "Id": 936, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Rank": 4 + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 4, + "Id": 936 }, { - "CommandName": "New-PnPMicrosoft365Group", - "Id": 937, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Rank": 5 + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 5, + "Id": 937 }, { - "CommandName": "New-PnPMicrosoft365Group", - "Id": 938, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6 + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 6, + "Id": 938 }, { - "CommandName": "New-PnPMicrosoft365Group", - "Id": 939, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "Rank": 7 + "CommandName": "New-PnPMicrosoft365Group", + "Rank": 7, + "Id": 939 }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 940, "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, + "Id": 940 }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 941, "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, + "Id": 941 }, { - "CommandName": "New-PnPPersonalSite", - "Id": 942, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Rank": 1 + "CommandName": "New-PnPPersonalSite", + "Rank": 1, + "Id": 942 }, { - "CommandName": "New-PnPPlannerPlan", - "Id": 943, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Rank": 1 + "CommandName": "New-PnPPlannerPlan", + "Rank": 1, + "Id": 943 }, { - "CommandName": "New-PnPSdnProvider", - "Id": 944, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Rank": 1 + "CommandName": "New-PnPSdnProvider", + "Rank": 1, + "Id": 944 }, { - "CommandName": "New-PnPSite", - "Id": 945, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 1 + "CommandName": "New-PnPSite", + "Rank": 1, + "Id": 945 }, { - "CommandName": "New-PnPSite", - "Id": 946, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Rank": 2 + "CommandName": "New-PnPSite", + "Rank": 2, + "Id": 946 }, { - "CommandName": "New-PnPSite", - "Id": 947, "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, + "Id": 947 }, { - "CommandName": "New-PnPSite", - "Id": 948, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 4 + "CommandName": "New-PnPSite", + "Rank": 4, + "Id": 948 }, { - "CommandName": "New-PnPSite", - "Id": 949, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 5 + "CommandName": "New-PnPSite", + "Rank": 5, + "Id": 949 }, { - "CommandName": "New-PnPSite", - "Id": 950, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 6 + "CommandName": "New-PnPSite", + "Rank": 6, + "Id": 950 }, { - "CommandName": "New-PnPSite", - "Id": 951, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Rank": 7 + "CommandName": "New-PnPSite", + "Rank": 7, + "Id": 951 }, { - "CommandName": "New-PnPSite", - "Id": 952, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Rank": 8 + "CommandName": "New-PnPSite", + "Rank": 8, + "Id": 952 }, { - "CommandName": "New-PnPSite", - "Id": 953, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Rank": 9 + "CommandName": "New-PnPSite", + "Rank": 9, + "Id": 953 }, { - "CommandName": "New-PnPSite", - "Id": 954, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Rank": 10 + "CommandName": "New-PnPSite", + "Rank": 10, + "Id": 954 }, { - "CommandName": "New-PnPSite", - "Id": 955, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 11 + "CommandName": "New-PnPSite", + "Rank": 11, + "Id": 955 }, { - "CommandName": "New-PnPSite", - "Id": 956, "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, + "Id": 956 }, { - "CommandName": "New-PnPSite", - "Id": 957, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 13 + "CommandName": "New-PnPSite", + "Rank": 13, + "Id": 957 }, { - "CommandName": "New-PnPSite", - "Id": 958, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 14 + "CommandName": "New-PnPSite", + "Rank": 14, + "Id": 958 }, { - "CommandName": "New-PnPSite", - "Id": 959, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 15 + "CommandName": "New-PnPSite", + "Rank": 15, + "Id": 959 }, { - "CommandName": "New-PnPSite", - "Id": 960, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "Rank": 16 + "CommandName": "New-PnPSite", + "Rank": 16, + "Id": 960 }, { - "CommandName": "New-PnPSiteCollectionTermStore", - "Id": 961, "Command": "New-PnPSiteCollectionTermStore", - "Rank": 1 + "CommandName": "New-PnPSiteCollectionTermStore", + "Rank": 1, + "Id": 961 }, { - "CommandName": "New-PnPSiteGroup", - "Id": 962, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Rank": 1 + "CommandName": "New-PnPSiteGroup", + "Rank": 1, + "Id": 962 }, { - "CommandName": "New-PnPSiteGroup", - "Id": 963, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Rank": 2 + "CommandName": "New-PnPSiteGroup", + "Rank": 2, + "Id": 963 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 964, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Rank": 1 + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 1, + "Id": 964 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 965, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Rank": 2 + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 2, + "Id": 965 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 966, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Rank": 3 + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 3, + "Id": 966 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 967, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Rank": 4 + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 4, + "Id": 967 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 968, "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, + "Id": 968 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 969, "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, + "Id": 969 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 970, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Rank": 7 + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 7, + "Id": 970 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 971, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Rank": 8 + "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 8, + "Id": 971 }, { - "CommandName": "New-PnPTeamsApp", - "Id": 972, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Rank": 1 + "CommandName": "New-PnPTeamsApp", + "Rank": 1, + "Id": 972 }, { - "CommandName": "New-PnPTeamsTeam", - "Id": 973, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Rank": 1 + "CommandName": "New-PnPTeamsTeam", + "Rank": 1, + "Id": 973 }, { - "CommandName": "New-PnPTeamsTeam", - "Id": 974, "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Rank": 2 + "CommandName": "New-PnPTeamsTeam", + "Rank": 2, + "Id": 974 }, { - "CommandName": "New-PnPTeamsTeam", - "Id": 975, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Rank": 3 + "CommandName": "New-PnPTeamsTeam", + "Rank": 3, + "Id": 975 }, { - "CommandName": "New-PnPTeamsTeam", - "Id": 976, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Rank": 4 + "CommandName": "New-PnPTeamsTeam", + "Rank": 4, + "Id": 976 }, { - "CommandName": "New-PnPTeamsTeam", - "Id": 977, "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, + "Id": 977 }, { - "CommandName": "New-PnPTeamsTeam", - "Id": 978, "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, + "Id": 978 }, { - "CommandName": "New-PnPTenantSite", - "Id": 979, "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, + "Id": 979 }, { - "CommandName": "New-PnPTenantSite", - "Id": 980, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "Rank": 2 + "CommandName": "New-PnPTenantSite", + "Rank": 2, + "Id": 980 }, { - "CommandName": "New-PnPTerm", - "Id": 981, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Rank": 1 + "CommandName": "New-PnPTerm", + "Rank": 1, + "Id": 981 }, { - "CommandName": "New-PnPTerm", - "Id": 982, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2 + "CommandName": "New-PnPTerm", + "Rank": 2, + "Id": 982 }, { - "CommandName": "New-PnPTermGroup", - "Id": 983, "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Rank": 1 + "CommandName": "New-PnPTermGroup", + "Rank": 1, + "Id": 983 }, { - "CommandName": "New-PnPTermLabel", - "Id": 984, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Rank": 1 + "CommandName": "New-PnPTermLabel", + "Rank": 1, + "Id": 984 }, { - "CommandName": "New-PnPTermSet", - "Id": 985, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Rank": 1 + "CommandName": "New-PnPTermSet", + "Rank": 1, + "Id": 985 }, { - "CommandName": "New-PnPUPABulkImportJob", - "Id": 986, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "Rank": 1 + "CommandName": "New-PnPUPABulkImportJob", + "Rank": 1, + "Id": 986 }, { - "CommandName": "New-PnPUPABulkImportJob", - "Id": 987, "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, + "Id": 987 }, { - "CommandName": "New-PnPUser", - "Id": 988, "Command": "New-PnPUser -LoginName user@company.com", - "Rank": 1 + "CommandName": "New-PnPUser", + "Rank": 1, + "Id": 988 }, { - "CommandName": "New-PnPWeb", - "Id": 989, "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, + "Id": 989 }, { - "CommandName": "Publish-PnPApp", - "Id": 990, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 1 + "CommandName": "Publish-PnPApp", + "Rank": 1, + "Id": 990 }, { - "CommandName": "Publish-PnPApp", - "Id": 991, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Rank": 2 + "CommandName": "Publish-PnPApp", + "Rank": 2, + "Id": 991 }, { - "CommandName": "Publish-PnPCompanyApp", - "Id": 992, "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, + "Id": 992 }, { - "CommandName": "Publish-PnPContentType", - "Id": 993, "Command": "Publish-PnPContentType -ContentType 0x0101", - "Rank": 1 + "CommandName": "Publish-PnPContentType", + "Rank": 1, + "Id": 993 }, { - "CommandName": "Publish-PnPSyntexModel", - "Id": 994, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1 + "CommandName": "Publish-PnPSyntexModel", + "Rank": 1, + "Id": 994 }, { - "CommandName": "Publish-PnPSyntexModel", - "Id": 995, "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, + "Id": 995 }, { - "CommandName": "Read-PnPSiteTemplate", - "Id": 996, "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Rank": 1 + "CommandName": "Read-PnPSiteTemplate", + "Rank": 1, + "Id": 996 }, { - "CommandName": "Read-PnPSiteTemplate", - "Id": 997, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Rank": 2 + "CommandName": "Read-PnPSiteTemplate", + "Rank": 2, + "Id": 997 }, { - "CommandName": "Read-PnPSiteTemplate", - "Id": 998, "Command": "Read-PnPSiteTemplate -Xml $xml", - "Rank": 3 + "CommandName": "Read-PnPSiteTemplate", + "Rank": 3, + "Id": 998 }, { - "CommandName": "Read-PnPTenantTemplate", - "Id": 999, "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Rank": 1 + "CommandName": "Read-PnPTenantTemplate", + "Rank": 1, + "Id": 999 }, { - "CommandName": "Register-PnPAppCatalogSite", - "Id": 1000, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Rank": 1 + "CommandName": "Register-PnPAppCatalogSite", + "Rank": 1, + "Id": 1000 }, { - "CommandName": "Register-PnPAzureADApp", - "Id": 1001, "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, + "Id": 1001 }, { - "CommandName": "Register-PnPAzureADApp", - "Id": 1002, "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, + "Id": 1002 }, { - "CommandName": "Register-PnPAzureADApp", - "Id": 1003, "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, + "Id": 1003 }, { - "CommandName": "Register-PnPAzureADApp", - "Id": 1004, "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, + "Id": 1004 }, { - "CommandName": "Register-PnPAzureADApp", - "Id": 1005, "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, + "Id": 1005 }, { - "CommandName": "Register-PnPAzureADApp", - "Id": 1006, "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, + "Id": 1006 }, { - "CommandName": "Register-PnPAzureADApp", - "Id": 1007, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\") -LogoFilePath c:\\logo.png", - "Rank": 7 + "CommandName": "Register-PnPAzureADApp", + "Rank": 7, + "Id": 1007 }, { - "CommandName": "Register-PnPHubSite", - "Id": 1008, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1 + "CommandName": "Register-PnPHubSite", + "Rank": 1, + "Id": 1008 }, { - "CommandName": "Register-PnPHubSite", - "Id": 1009, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Rank": 2 + "CommandName": "Register-PnPHubSite", + "Rank": 2, + "Id": 1009 }, { - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1010, "Command": "Register-PnPManagementShellAccess", - "Rank": 1 + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 1, + "Id": 1010 }, { - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1011, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Rank": 2 + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 2, + "Id": 1011 }, { - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1012, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Rank": 3 + "CommandName": "Register-PnPManagementShellAccess", + "Rank": 3, + "Id": 1012 }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1013, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Rank": 1 + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Rank": 1, + "Id": 1013 }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1014, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Rank": 2 + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Rank": 2, + "Id": 1014 }, { - "CommandName": "Remove-PnPAlert", - "Id": 1015, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Rank": 1 + "CommandName": "Remove-PnPAlert", + "Rank": 1, + "Id": 1015 }, { - "CommandName": "Remove-PnPAlert", - "Id": 1016, "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, + "Id": 1016 }, { - "CommandName": "Remove-PnPApp", - "Id": 1017, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Remove-PnPApp", + "Rank": 1, + "Id": 1017 }, { - "CommandName": "Remove-PnPApp", - "Id": 1018, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "CommandName": "Remove-PnPApp", + "Rank": 2, + "Id": 1018 }, { - "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1019, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1 + "CommandName": "Remove-PnPApplicationCustomizer", + "Rank": 1, + "Id": 1019 }, { - "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1020, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2 + "CommandName": "Remove-PnPApplicationCustomizer", + "Rank": 2, + "Id": 1020 }, { - "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1021, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Rank": 1 + "CommandName": "Remove-PnPAvailableSiteClassification", + "Rank": 1, + "Id": 1021 }, { - "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1022, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 2 + "CommandName": "Remove-PnPAvailableSiteClassification", + "Rank": 2, + "Id": 1022 }, { - "CommandName": "Remove-PnPAzureADApp", - "Id": 1023, "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Rank": 1 + "CommandName": "Remove-PnPAzureADApp", + "Rank": 1, + "Id": 1023 }, { - "CommandName": "Remove-PnPAzureADApp", - "Id": 1024, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 2 + "CommandName": "Remove-PnPAzureADApp", + "Rank": 2, + "Id": 1024 }, { - "CommandName": "Remove-PnPAzureADGroup", - "Id": 1025, "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Rank": 1 + "CommandName": "Remove-PnPAzureADGroup", + "Rank": 1, + "Id": 1025 }, { - "CommandName": "Remove-PnPAzureADGroup", - "Id": 1026, "Command": "Remove-PnPAzureADGroup -Identity $group", - "Rank": 2 + "CommandName": "Remove-PnPAzureADGroup", + "Rank": 2, + "Id": 1026 }, { - "CommandName": "Remove-PnPAzureADGroupMember", - "Id": 1027, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Remove-PnPAzureADGroupMember", + "Rank": 1, + "Id": 1027 }, { - "CommandName": "Remove-PnPAzureADGroupOwner", - "Id": 1028, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Remove-PnPAzureADGroupOwner", + "Rank": 1, + "Id": 1028 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1029, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Rank": 1 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 1, + "Id": 1029 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1030, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Rank": 2 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 2, + "Id": 1030 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1031, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 3 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 3, + "Id": 1031 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1032, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 4 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 4, + "Id": 1032 }, { - "CommandName": "Remove-PnPContentType", - "Id": 1033, "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Rank": 1 + "CommandName": "Remove-PnPContentType", + "Rank": 1, + "Id": 1033 }, { - "CommandName": "Remove-PnPContentType", - "Id": 1034, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Rank": 2 + "CommandName": "Remove-PnPContentType", + "Rank": 2, + "Id": 1034 }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1035, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1 + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 1, + "Id": 1035 }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1036, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2 + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 2, + "Id": 1036 }, { - "CommandName": "Remove-PnPContentTypeFromList", - "Id": 1037, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Rank": 1 + "CommandName": "Remove-PnPContentTypeFromList", + "Rank": 1, + "Id": 1037 }, { - "CommandName": "Remove-PnPCustomAction", - "Id": 1038, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1 + "CommandName": "Remove-PnPCustomAction", + "Rank": 1, + "Id": 1038 }, { - "CommandName": "Remove-PnPCustomAction", - "Id": 1039, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2 + "CommandName": "Remove-PnPCustomAction", + "Rank": 2, + "Id": 1039 }, { - "CommandName": "Remove-PnPCustomAction", - "Id": 1040, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Rank": 3 + "CommandName": "Remove-PnPCustomAction", + "Rank": 3, + "Id": 1040 }, { - "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Id": 1041, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1 + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Rank": 1, + "Id": 1041 }, { - "CommandName": "Remove-PnPEventReceiver", - "Id": 1042, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 1 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 1, + "Id": 1042 }, { - "CommandName": "Remove-PnPEventReceiver", - "Id": 1043, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 2, + "Id": 1043 }, { - "CommandName": "Remove-PnPEventReceiver", - "Id": 1044, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Rank": 3 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 3, + "Id": 1044 }, { - "CommandName": "Remove-PnPEventReceiver", - "Id": 1045, "Command": "Remove-PnPEventReceiver -List ProjectList", - "Rank": 4 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 4, + "Id": 1045 }, { - "CommandName": "Remove-PnPEventReceiver", - "Id": 1046, "Command": "Remove-PnPEventReceiver", - "Rank": 5 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 5, + "Id": 1046 }, { - "CommandName": "Remove-PnPEventReceiver", - "Id": 1047, "Command": "Remove-PnPEventReceiver -Scope Site", - "Rank": 6 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 6, + "Id": 1047 }, { - "CommandName": "Remove-PnPEventReceiver", - "Id": 1048, "Command": "Remove-PnPEventReceiver -Scope Web", - "Rank": 7 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 7, + "Id": 1048 }, { - "CommandName": "Remove-PnPEventReceiver", - "Id": 1049, "Command": "Remove-PnPEventReceiver -Scope All", - "Rank": 8 + "CommandName": "Remove-PnPEventReceiver", + "Rank": 8, + "Id": 1049 }, { - "CommandName": "Remove-PnPField", - "Id": 1050, "Command": "Remove-PnPField -Identity \"Speakers\"", - "Rank": 1 + "CommandName": "Remove-PnPField", + "Rank": 1, + "Id": 1050 }, { - "CommandName": "Remove-PnPField", - "Id": 1051, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2 + "CommandName": "Remove-PnPField", + "Rank": 2, + "Id": 1051 }, { - "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1052, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1 + "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 1, + "Id": 1052 }, { - "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1053, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Rank": 2 + "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 2, + "Id": 1053 }, { - "CommandName": "Remove-PnPFile", - "Id": 1054, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Rank": 1 + "CommandName": "Remove-PnPFile", + "Rank": 1, + "Id": 1054 }, { - "CommandName": "Remove-PnPFile", - "Id": 1055, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Rank": 2 + "CommandName": "Remove-PnPFile", + "Rank": 2, + "Id": 1055 }, { - "CommandName": "Remove-PnPFile", - "Id": 1056, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Rank": 3 + "CommandName": "Remove-PnPFile", + "Rank": 3, + "Id": 1056 }, { - "CommandName": "Remove-PnPFileFromSiteTemplate", - "Id": 1057, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Rank": 1 + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Rank": 1, + "Id": 1057 }, { - "CommandName": "Remove-PnPFileSharingLink", - "Id": 1058, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "CommandName": "Remove-PnPFileSharingLink", + "Rank": 1, + "Id": 1058 }, { - "CommandName": "Remove-PnPFileSharingLink", - "Id": 1059, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Rank": 2 + "CommandName": "Remove-PnPFileSharingLink", + "Rank": 2, + "Id": 1059 }, { - "CommandName": "Remove-PnPFileVersion", - "Id": 1060, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1 + "CommandName": "Remove-PnPFileVersion", + "Rank": 1, + "Id": 1060 }, { - "CommandName": "Remove-PnPFileVersion", - "Id": 1061, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 2 + "CommandName": "Remove-PnPFileVersion", + "Rank": 2, + "Id": 1061 }, { - "CommandName": "Remove-PnPFileVersion", - "Id": 1062, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Rank": 3 + "CommandName": "Remove-PnPFileVersion", + "Rank": 3, + "Id": 1062 }, { - "CommandName": "Remove-PnPFlowOwner", - "Id": 1063, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "Rank": 1 + "CommandName": "Remove-PnPFlowOwner", + "Rank": 1, + "Id": 1063 }, { - "CommandName": "Remove-PnPFlowOwner", - "Id": 1064, "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, + "Id": 1064 }, { - "CommandName": "Remove-PnPFlowOwner", - "Id": 1065, "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, + "Id": 1065 }, { - "CommandName": "Remove-PnPFlowOwner", - "Id": 1066, "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, + "Id": 1066 }, { - "CommandName": "Remove-PnPFolder", - "Id": 1067, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1 + "CommandName": "Remove-PnPFolder", + "Rank": 1, + "Id": 1067 }, { - "CommandName": "Remove-PnPFolder", - "Id": 1068, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Rank": 2 + "CommandName": "Remove-PnPFolder", + "Rank": 2, + "Id": 1068 }, { - "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1069, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "CommandName": "Remove-PnPFolderSharingLink", + "Rank": 1, + "Id": 1069 }, { - "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1070, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Rank": 2 + "CommandName": "Remove-PnPFolderSharingLink", + "Rank": 2, + "Id": 1070 }, { - "CommandName": "Remove-PnPGraphSubscription", - "Id": 1071, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Rank": 1 + "CommandName": "Remove-PnPGraphSubscription", + "Rank": 1, + "Id": 1071 }, { - "CommandName": "Remove-PnPGroup", - "Id": 1072, "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Rank": 1 + "CommandName": "Remove-PnPGroup", + "Rank": 1, + "Id": 1072 }, { - "CommandName": "Remove-PnPGroupMember", - "Id": 1073, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1 + "CommandName": "Remove-PnPGroupMember", + "Rank": 1, + "Id": 1073 }, { - "CommandName": "Remove-PnPHomeSite", - "Id": 1074, "Command": "Remove-PnPHomeSite", - "Rank": 1 + "CommandName": "Remove-PnPHomeSite", + "Rank": 1, + "Id": 1074 }, { - "CommandName": "Remove-PnPHubSiteAssociation", - "Id": 1075, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1 + "CommandName": "Remove-PnPHubSiteAssociation", + "Rank": 1, + "Id": 1075 }, { - "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1076, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Rank": 1 + "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 1, + "Id": 1076 }, { - "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1077, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Rank": 2 + "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 2, + "Id": 1077 }, { - "CommandName": "Remove-PnPIndexedProperty", - "Id": 1078, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Rank": 1 + "CommandName": "Remove-PnPIndexedProperty", + "Rank": 1, + "Id": 1078 }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1079, "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Rank": 1 + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 1, + "Id": 1079 }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1080, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Rank": 2 + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 2, + "Id": 1080 }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1081, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Rank": 3 + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 3, + "Id": 1081 }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1082, "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Rank": 4 + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 4, + "Id": 1082 }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1083, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Rank": 5 + "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 5, + "Id": 1083 }, { - "CommandName": "Remove-PnPKnowledgeHubSite", - "Id": 1084, "Command": "Remove-PnPKnowledgeHubSite", - "Rank": 1 + "CommandName": "Remove-PnPKnowledgeHubSite", + "Rank": 1, + "Id": 1084 }, { - "CommandName": "Remove-PnPList", - "Id": 1085, "Command": "Remove-PnPList -Identity Announcements", - "Rank": 1 + "CommandName": "Remove-PnPList", + "Rank": 1, + "Id": 1085 }, { - "CommandName": "Remove-PnPList", - "Id": 1086, "Command": "Remove-PnPList -Identity Announcements -Force", - "Rank": 2 + "CommandName": "Remove-PnPList", + "Rank": 2, + "Id": 1086 }, { - "CommandName": "Remove-PnPList", - "Id": 1087, "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Rank": 3 + "CommandName": "Remove-PnPList", + "Rank": 3, + "Id": 1087 }, { - "CommandName": "Remove-PnPList", - "Id": 1088, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Rank": 4 + "CommandName": "Remove-PnPList", + "Rank": 4, + "Id": 1088 }, { - "CommandName": "Remove-PnPListDesign", - "Id": 1089, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "CommandName": "Remove-PnPListDesign", + "Rank": 1, + "Id": 1089 }, { - "CommandName": "Remove-PnPListItem", - "Id": 1090, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1 + "CommandName": "Remove-PnPListItem", + "Rank": 1, + "Id": 1090 }, { - "CommandName": "Remove-PnPListItem", - "Id": 1091, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Rank": 2 + "CommandName": "Remove-PnPListItem", + "Rank": 2, + "Id": 1091 }, { - "CommandName": "Remove-PnPListItem", - "Id": 1092, "Command": "Remove-PnPListItem -List \"Demo List\"", - "Rank": 3 + "CommandName": "Remove-PnPListItem", + "Rank": 3, + "Id": 1092 }, { - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1093, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Rank": 1 + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 1, + "Id": 1093 }, { - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1094, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Rank": 2 + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 2, + "Id": 1094 }, { - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1095, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Rank": 3 + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 3, + "Id": 1095 }, { - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1096, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Rank": 4 + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 4, + "Id": 1096 }, { - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1097, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Rank": 5 + "CommandName": "Remove-PnPListItemAttachment", + "Rank": 5, + "Id": 1097 }, { - "CommandName": "Remove-PnPListItemVersion", - "Id": 1098, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1 + "CommandName": "Remove-PnPListItemVersion", + "Rank": 1, + "Id": 1098 }, { - "CommandName": "Remove-PnPListItemVersion", - "Id": 1099, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2 + "CommandName": "Remove-PnPListItemVersion", + "Rank": 2, + "Id": 1099 }, { - "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1100, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Rank": 1 + "CommandName": "Remove-PnPMicrosoft365Group", + "Rank": 1, + "Id": 1100 }, { - "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1101, "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Rank": 2 + "CommandName": "Remove-PnPMicrosoft365Group", + "Rank": 2, + "Id": 1101 }, { - "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Id": 1102, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Rank": 1, + "Id": 1102 }, { - "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Id": 1103, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Rank": 1, + "Id": 1103 }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1104, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Rank": 1 + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 1, + "Id": 1104 }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1105, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Rank": 2 + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 2, + "Id": 1105 }, { - "CommandName": "Remove-PnPNavigationNode", - "Id": 1106, "Command": "Remove-PnPNavigationNode -Identity 1032", - "Rank": 1 + "CommandName": "Remove-PnPNavigationNode", + "Rank": 1, + "Id": 1106 }, { - "CommandName": "Remove-PnPNavigationNode", - "Id": 1107, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Rank": 2 + "CommandName": "Remove-PnPNavigationNode", + "Rank": 2, + "Id": 1107 }, { - "CommandName": "Remove-PnPNavigationNode", - "Id": 1108, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Rank": 3 + "CommandName": "Remove-PnPNavigationNode", + "Rank": 3, + "Id": 1108 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1109, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Rank": 1 + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 1, + "Id": 1109 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1110, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Rank": 2 + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 2, + "Id": 1110 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1111, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Rank": 3 + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 3, + "Id": 1111 }, { - "CommandName": "Remove-PnPOrgNewsSite", - "Id": 1112, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1 + "CommandName": "Remove-PnPOrgNewsSite", + "Rank": 1, + "Id": 1112 }, { - "CommandName": "Remove-PnPPage", - "Id": 1113, "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Rank": 1 + "CommandName": "Remove-PnPPage", + "Rank": 1, + "Id": 1113 }, { - "CommandName": "Remove-PnPPage", - "Id": 1114, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Rank": 2 + "CommandName": "Remove-PnPPage", + "Rank": 2, + "Id": 1114 }, { - "CommandName": "Remove-PnPPage", - "Id": 1115, "Command": "Remove-PnPPage $page", - "Rank": 3 + "CommandName": "Remove-PnPPage", + "Rank": 3, + "Id": 1115 }, { - "CommandName": "Remove-PnPPage", - "Id": 1116, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Rank": 4 + "CommandName": "Remove-PnPPage", + "Rank": 4, + "Id": 1116 }, { - "CommandName": "Remove-PnPPageComponent", - "Id": 1117, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1 + "CommandName": "Remove-PnPPageComponent", + "Rank": 1, + "Id": 1117 }, { - "CommandName": "Remove-PnPPlannerBucket", - "Id": 1118, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Rank": 1 + "CommandName": "Remove-PnPPlannerBucket", + "Rank": 1, + "Id": 1118 }, { - "CommandName": "Remove-PnPPlannerPlan", - "Id": 1119, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Rank": 1 + "CommandName": "Remove-PnPPlannerPlan", + "Rank": 1, + "Id": 1119 }, { - "CommandName": "Remove-PnPPlannerRoster", - "Id": 1120, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1 + "CommandName": "Remove-PnPPlannerRoster", + "Rank": 1, + "Id": 1120 }, { - "CommandName": "Remove-PnPPlannerRosterMember", - "Id": 1121, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Remove-PnPPlannerRosterMember", + "Rank": 1, + "Id": 1121 }, { - "CommandName": "Remove-PnPPlannerTask", - "Id": 1122, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Rank": 1 + "CommandName": "Remove-PnPPlannerTask", + "Rank": 1, + "Id": 1122 }, { - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1123, "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Rank": 1 + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 1, + "Id": 1123 }, { - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1124, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Rank": 2 + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 2, + "Id": 1124 }, { - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1125, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Rank": 3 + "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 3, + "Id": 1125 }, { - "CommandName": "Remove-PnPPublishingImageRendition", - "Id": 1126, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1 + "CommandName": "Remove-PnPPublishingImageRendition", + "Rank": 1, + "Id": 1126 }, { - "CommandName": "Remove-PnPRoleDefinition", - "Id": 1127, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Rank": 1 + "CommandName": "Remove-PnPRoleDefinition", + "Rank": 1, + "Id": 1127 }, { - "CommandName": "Remove-PnPSdnProvider", - "Id": 1128, "Command": "Remove-PnPSdnProvider -Confirm:false", - "Rank": 1 + "CommandName": "Remove-PnPSdnProvider", + "Rank": 1, + "Id": 1128 }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1129, "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Rank": 1 + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 1, + "Id": 1129 }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1130, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2 + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 2, + "Id": 1130 }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1131, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3 + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 3, + "Id": 1131 }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1132, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4 + "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 4, + "Id": 1132 }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1133, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Rank": 1, + "Id": 1133 }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1134, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2 + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Rank": 2, + "Id": 1134 }, { - "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Id": 1135, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 1 + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Rank": 1, + "Id": 1135 }, { - "CommandName": "Remove-PnPSiteCollectionTermStore", - "Id": 1136, "Command": "Remove-PnPSiteCollectionTermStore", - "Rank": 1 + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Rank": 1, + "Id": 1136 }, { - "CommandName": "Remove-PnPSiteDesign", - "Id": 1137, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "CommandName": "Remove-PnPSiteDesign", + "Rank": 1, + "Id": 1137 }, { - "CommandName": "Remove-PnPSiteDesignTask", - "Id": 1138, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "CommandName": "Remove-PnPSiteDesignTask", + "Rank": 1, + "Id": 1138 }, { - "CommandName": "Remove-PnPSiteGroup", - "Id": 1139, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1 + "CommandName": "Remove-PnPSiteGroup", + "Rank": 1, + "Id": 1139 }, { - "CommandName": "Remove-PnPSiteGroup", - "Id": 1140, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Rank": 2 + "CommandName": "Remove-PnPSiteGroup", + "Rank": 2, + "Id": 1140 }, { - "CommandName": "Remove-PnPSiteScript", - "Id": 1141, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "CommandName": "Remove-PnPSiteScript", + "Rank": 1, + "Id": 1141 }, { - "CommandName": "Remove-PnPSiteUserInvitations", - "Id": 1142, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1 + "CommandName": "Remove-PnPSiteUserInvitations", + "Rank": 1, + "Id": 1142 }, { - "CommandName": "Remove-PnPStorageEntity", - "Id": 1143, "Command": "Remove-PnPStorageEntity -Key MyKey", - "Rank": 1 + "CommandName": "Remove-PnPStorageEntity", + "Rank": 1, + "Id": 1143 }, { - "CommandName": "Remove-PnPStorageEntity", - "Id": 1144, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 2 + "CommandName": "Remove-PnPStorageEntity", + "Rank": 2, + "Id": 1144 }, { - "CommandName": "Remove-PnPStoredCredential", - "Id": 1145, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Rank": 1 + "CommandName": "Remove-PnPStoredCredential", + "Rank": 1, + "Id": 1145 }, { - "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1146, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Rank": 1 + "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 1, + "Id": 1146 }, { - "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1147, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Rank": 2 + "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 2, + "Id": 1147 }, { - "CommandName": "Remove-PnPTeamsApp", - "Id": 1148, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Rank": 1 + "CommandName": "Remove-PnPTeamsApp", + "Rank": 1, + "Id": 1148 }, { - "CommandName": "Remove-PnPTeamsApp", - "Id": 1149, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Rank": 2 + "CommandName": "Remove-PnPTeamsApp", + "Rank": 2, + "Id": 1149 }, { - "CommandName": "Remove-PnPTeamsChannel", - "Id": 1150, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Rank": 1 + "CommandName": "Remove-PnPTeamsChannel", + "Rank": 1, + "Id": 1150 }, { - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1151, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Rank": 1 + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 1, + "Id": 1151 }, { - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1152, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 2 + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 2, + "Id": 1152 }, { - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1153, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Rank": 3 + "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 3, + "Id": 1153 }, { - "CommandName": "Remove-PnPTeamsTab", - "Id": 1154, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Rank": 1 + "CommandName": "Remove-PnPTeamsTab", + "Rank": 1, + "Id": 1154 }, { - "CommandName": "Remove-PnPTeamsTab", - "Id": 1155, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Rank": 2 + "CommandName": "Remove-PnPTeamsTab", + "Rank": 2, + "Id": 1155 }, { - "CommandName": "Remove-PnPTeamsTab", - "Id": 1156, "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, + "Id": 1156 }, { - "CommandName": "Remove-PnPTeamsTag", - "Id": 1157, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 1 + "CommandName": "Remove-PnPTeamsTag", + "Rank": 1, + "Id": 1157 }, { - "CommandName": "Remove-PnPTeamsTeam", - "Id": 1158, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1 + "CommandName": "Remove-PnPTeamsTeam", + "Rank": 1, + "Id": 1158 }, { - "CommandName": "Remove-PnPTeamsTeam", - "Id": 1159, "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Rank": 2 + "CommandName": "Remove-PnPTeamsTeam", + "Rank": 2, + "Id": 1159 }, { - "CommandName": "Remove-PnPTeamsUser", - "Id": 1160, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Rank": 1 + "CommandName": "Remove-PnPTeamsUser", + "Rank": 1, + "Id": 1160 }, { - "CommandName": "Remove-PnPTeamsUser", - "Id": 1161, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 2 + "CommandName": "Remove-PnPTeamsUser", + "Rank": 2, + "Id": 1161 }, { - "CommandName": "Remove-PnPTenantCdnOrigin", - "Id": 1162, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1 + "CommandName": "Remove-PnPTenantCdnOrigin", + "Rank": 1, + "Id": 1162 }, { - "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1163, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 1, + "Id": 1163 }, { - "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1164, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2 + "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 2, + "Id": 1164 }, { - "CommandName": "Remove-PnPTenantSite", - "Id": 1165, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "CommandName": "Remove-PnPTenantSite", + "Rank": 1, + "Id": 1165 }, { - "CommandName": "Remove-PnPTenantSite", - "Id": 1166, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Rank": 2 + "CommandName": "Remove-PnPTenantSite", + "Rank": 2, + "Id": 1166 }, { - "CommandName": "Remove-PnPTenantSite", - "Id": 1167, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Rank": 3 + "CommandName": "Remove-PnPTenantSite", + "Rank": 3, + "Id": 1167 }, { - "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Id": 1168, "Command": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1 + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Rank": 1, + "Id": 1168 }, { - "CommandName": "Remove-PnPTenantTheme", - "Id": 1169, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 1 + "CommandName": "Remove-PnPTenantTheme", + "Rank": 1, + "Id": 1169 }, { - "CommandName": "Remove-PnPTerm", - "Id": 1170, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1 + "CommandName": "Remove-PnPTerm", + "Rank": 1, + "Id": 1170 }, { - "CommandName": "Remove-PnPTerm", - "Id": 1171, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "CommandName": "Remove-PnPTerm", + "Rank": 2, + "Id": 1171 }, { - "CommandName": "Remove-PnPTermGroup", - "Id": 1172, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1 + "CommandName": "Remove-PnPTermGroup", + "Rank": 1, + "Id": 1172 }, { - "CommandName": "Remove-PnPTermGroup", - "Id": 1173, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Rank": 2 + "CommandName": "Remove-PnPTermGroup", + "Rank": 2, + "Id": 1173 }, { - "CommandName": "Remove-PnPTermGroup", - "Id": 1174, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Rank": 3 + "CommandName": "Remove-PnPTermGroup", + "Rank": 3, + "Id": 1174 }, { - "CommandName": "Remove-PnPTermLabel", - "Id": 1175, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Rank": 1 + "CommandName": "Remove-PnPTermLabel", + "Rank": 1, + "Id": 1175 }, { - "CommandName": "Remove-PnPTermLabel", - "Id": 1176, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "CommandName": "Remove-PnPTermLabel", + "Rank": 2, + "Id": 1176 }, { - "CommandName": "Remove-PnPUser", - "Id": 1177, "Command": "Remove-PnPUser -Identity 23", - "Rank": 1 + "CommandName": "Remove-PnPUser", + "Rank": 1, + "Id": 1177 }, { - "CommandName": "Remove-PnPUser", - "Id": 1178, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Rank": 2 + "CommandName": "Remove-PnPUser", + "Rank": 2, + "Id": 1178 }, { - "CommandName": "Remove-PnPUser", - "Id": 1179, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Rank": 3 + "CommandName": "Remove-PnPUser", + "Rank": 3, + "Id": 1179 }, { - "CommandName": "Remove-PnPUserInfo", - "Id": 1180, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1 + "CommandName": "Remove-PnPUserInfo", + "Rank": 1, + "Id": 1180 }, { - "CommandName": "Remove-PnPUserProfile", - "Id": 1181, "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Rank": 1 + "CommandName": "Remove-PnPUserProfile", + "Rank": 1, + "Id": 1181 }, { - "CommandName": "Remove-PnPView", - "Id": 1182, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Rank": 1 + "CommandName": "Remove-PnPView", + "Rank": 1, + "Id": 1182 }, { - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Id": 1183, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 1 + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Rank": 1, + "Id": 1183 }, { - "CommandName": "Remove-PnPWeb", - "Id": 1184, "Command": "Remove-PnPWeb -Identity projectA", - "Rank": 1 + "CommandName": "Remove-PnPWeb", + "Rank": 1, + "Id": 1184 }, { - "CommandName": "Remove-PnPWeb", - "Id": 1185, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Rank": 2 + "CommandName": "Remove-PnPWeb", + "Rank": 2, + "Id": 1185 }, { - "CommandName": "Remove-PnPWebhookSubscription", - "Id": 1186, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Rank": 1 + "CommandName": "Remove-PnPWebhookSubscription", + "Rank": 1, + "Id": 1186 }, { - "CommandName": "Remove-PnPWebPart", - "Id": 1187, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1 + "CommandName": "Remove-PnPWebPart", + "Rank": 1, + "Id": 1187 }, { - "CommandName": "Remove-PnPWebPart", - "Id": 1188, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Rank": 2 + "CommandName": "Remove-PnPWebPart", + "Rank": 2, + "Id": 1188 }, { - "CommandName": "Remove-PnPWikiPage", - "Id": 1189, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Rank": 1 + "CommandName": "Remove-PnPWikiPage", + "Rank": 1, + "Id": 1189 }, { - "CommandName": "Rename-PnPFile", - "Id": 1190, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Rank": 1 + "CommandName": "Rename-PnPFile", + "Rank": 1, + "Id": 1190 }, { - "CommandName": "Rename-PnPFile", - "Id": 1191, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Rank": 2 + "CommandName": "Rename-PnPFile", + "Rank": 2, + "Id": 1191 }, { - "CommandName": "Rename-PnPFile", - "Id": 1192, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Rank": 3 + "CommandName": "Rename-PnPFile", + "Rank": 3, + "Id": 1192 }, { - "CommandName": "Rename-PnPFolder", - "Id": 1193, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Rank": 1 + "CommandName": "Rename-PnPFolder", + "Rank": 1, + "Id": 1193 }, { - "CommandName": "Repair-PnPSite", - "Id": 1194, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1 + "CommandName": "Repair-PnPSite", + "Rank": 1, + "Id": 1194 }, { - "CommandName": "Repair-PnPSite", - "Id": 1195, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2 + "CommandName": "Repair-PnPSite", + "Rank": 2, + "Id": 1195 }, { - "CommandName": "Request-PnPAccessToken", - "Id": 1196, "Command": "Request-PnPAccessToken", - "Rank": 1 + "CommandName": "Request-PnPAccessToken", + "Rank": 1, + "Id": 1196 }, { - "CommandName": "Request-PnPAccessToken", - "Id": 1197, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Rank": 2 + "CommandName": "Request-PnPAccessToken", + "Rank": 2, + "Id": 1197 }, { - "CommandName": "Request-PnPAccessToken", - "Id": 1198, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Rank": 3 + "CommandName": "Request-PnPAccessToken", + "Rank": 3, + "Id": 1198 }, { - "CommandName": "Request-PnPAccessToken", - "Id": 1199, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Rank": 4 + "CommandName": "Request-PnPAccessToken", + "Rank": 4, + "Id": 1199 }, { - "CommandName": "Request-PnPPersonalSite", - "Id": 1200, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Rank": 1 + "CommandName": "Request-PnPPersonalSite", + "Rank": 1, + "Id": 1200 }, { - "CommandName": "Request-PnPPersonalSite", - "Id": 1201, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Rank": 2 + "CommandName": "Request-PnPPersonalSite", + "Rank": 2, + "Id": 1201 }, { - "CommandName": "Request-PnPReIndexList", - "Id": 1202, "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Rank": 1 + "CommandName": "Request-PnPReIndexList", + "Rank": 1, + "Id": 1202 }, { - "CommandName": "Request-PnPReIndexWeb", - "Id": 1203, "Command": "Request-PnPReIndexWeb", - "Rank": 1 + "CommandName": "Request-PnPReIndexWeb", + "Rank": 1, + "Id": 1203 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1204, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Rank": 1 + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 1, + "Id": 1204 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1205, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Rank": 2 + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 2, + "Id": 1205 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1206, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Rank": 3 + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 3, + "Id": 1206 }, { - "CommandName": "Reset-PnPFileVersion", - "Id": 1207, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Rank": 1 + "CommandName": "Reset-PnPFileVersion", + "Rank": 1, + "Id": 1207 }, { - "CommandName": "Reset-PnPFileVersion", - "Id": 1208, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Rank": 2 + "CommandName": "Reset-PnPFileVersion", + "Rank": 2, + "Id": 1208 }, { - "CommandName": "Reset-PnPLabel", - "Id": 1209, "Command": "Reset-PnPLabel -List \"Demo List\"", - "Rank": 1 + "CommandName": "Reset-PnPLabel", + "Rank": 1, + "Id": 1209 }, { - "CommandName": "Reset-PnPLabel", - "Id": 1210, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Rank": 2 + "CommandName": "Reset-PnPLabel", + "Rank": 2, + "Id": 1210 }, { - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1211, "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1 + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Rank": 1, + "Id": 1211 }, { - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Id": 1212, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Rank": 1 + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Rank": 1, + "Id": 1212 }, { - "CommandName": "Resolve-PnPFolder", - "Id": 1213, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Rank": 1 + "CommandName": "Resolve-PnPFolder", + "Rank": 1, + "Id": 1213 }, { - "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Id": 1214, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1 + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Rank": 1, + "Id": 1214 }, { - "CommandName": "Restore-PnPFileVersion", - "Id": 1215, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1 + "CommandName": "Restore-PnPFileVersion", + "Rank": 1, + "Id": 1215 }, { - "CommandName": "Restore-PnPFileVersion", - "Id": 1216, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Rank": 2 + "CommandName": "Restore-PnPFileVersion", + "Rank": 2, + "Id": 1216 }, { - "CommandName": "Restore-PnPFileVersion", - "Id": 1217, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 3 + "CommandName": "Restore-PnPFileVersion", + "Rank": 3, + "Id": 1217 }, { - "CommandName": "Restore-PnPListItemVersion", - "Id": 1218, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1 + "CommandName": "Restore-PnPListItemVersion", + "Rank": 1, + "Id": 1218 }, { - "CommandName": "Restore-PnPListItemVersion", - "Id": 1219, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2 + "CommandName": "Restore-PnPListItemVersion", + "Rank": 2, + "Id": 1219 }, { - "CommandName": "Restore-PnPRecycleBinItem", - "Id": 1220, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1 + "CommandName": "Restore-PnPRecycleBinItem", + "Rank": 1, + "Id": 1220 }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1221, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 1, + "Id": 1221 }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1222, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2 + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 2, + "Id": 1222 }, { - "CommandName": "Restore-PnPTenantSite", - "Id": 1223, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "CommandName": "Restore-PnPTenantSite", + "Rank": 1, + "Id": 1223 }, { - "CommandName": "Restore-PnPTenantSite", - "Id": 1224, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2 + "CommandName": "Restore-PnPTenantSite", + "Rank": 2, + "Id": 1224 }, { - "CommandName": "Restore-PnPTenantSite", - "Id": 1225, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Rank": 3 + "CommandName": "Restore-PnPTenantSite", + "Rank": 3, + "Id": 1225 }, { - "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Id": 1226, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Rank": 1 + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Rank": 1, + "Id": 1226 }, { - "CommandName": "Revoke-PnPHubSiteRights", - "Id": 1227, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1 + "CommandName": "Revoke-PnPHubSiteRights", + "Rank": 1, + "Id": 1227 }, { - "CommandName": "Revoke-PnPSiteDesignRights", - "Id": 1228, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1 + "CommandName": "Revoke-PnPSiteDesignRights", + "Rank": 1, + "Id": 1228 }, { - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Id": 1229, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1 + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Rank": 1, + "Id": 1229 }, { - "CommandName": "Revoke-PnPUserSession", - "Id": 1230, "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Rank": 1 + "CommandName": "Revoke-PnPUserSession", + "Rank": 1, + "Id": 1230 }, { - "CommandName": "Save-PnPPageConversionLog", - "Id": 1231, "Command": "Save-PnPPageConversionLog", - "Rank": 1 + "CommandName": "Save-PnPPageConversionLog", + "Rank": 1, + "Id": 1231 }, { - "CommandName": "Save-PnPSiteTemplate", - "Id": 1232, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Rank": 1 + "CommandName": "Save-PnPSiteTemplate", + "Rank": 1, + "Id": 1232 }, { - "CommandName": "Save-PnPTenantTemplate", - "Id": 1233, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Rank": 1 + "CommandName": "Save-PnPTenantTemplate", + "Rank": 1, + "Id": 1233 }, { - "CommandName": "Send-PnPMail", - "Id": 1234, "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, + "Id": 1234 }, { - "CommandName": "Send-PnPMail", - "Id": 1235, "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, + "Id": 1235 }, { - "CommandName": "Send-PnPMail", - "Id": 1236, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Rank": 3 + "CommandName": "Send-PnPMail", + "Rank": 3, + "Id": 1236 }, { - "CommandName": "Send-PnPMail", - "Id": 1237, "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, + "Id": 1237 }, { - "CommandName": "Send-PnPMail", - "Id": 1238, "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, + "Id": 1238 }, { - "CommandName": "Send-PnPMail", - "Id": 1239, "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com -Port 587 -EnableSsl:$true -Username \"userxyz\" -Password \"password123\"", - "Rank": 6 + "CommandName": "Send-PnPMail", + "Rank": 6, + "Id": 1239 }, { - "CommandName": "Set-PnPAdaptiveScopeProperty", - "Id": 1240, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Rank": 1 + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Rank": 1, + "Id": 1240 }, { - "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1241, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1 + "CommandName": "Set-PnPApplicationCustomizer", + "Rank": 1, + "Id": 1241 }, { - "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1242, "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, + "Id": 1242 }, { - "CommandName": "Set-PnPAppSideLoading", - "Id": 1243, "Command": "Set-PnPAppSideLoading -On", - "Rank": 1 + "CommandName": "Set-PnPAppSideLoading", + "Rank": 1, + "Id": 1243 }, { - "CommandName": "Set-PnPAppSideLoading", - "Id": 1244, "Command": "Set-PnPAppSideLoading -Off", - "Rank": 2 + "CommandName": "Set-PnPAppSideLoading", + "Rank": 2, + "Id": 1244 }, { - "CommandName": "Set-PnPAuditing", - "Id": 1245, "Command": "Set-PnPAuditing -EnableAll", - "Rank": 1 + "CommandName": "Set-PnPAuditing", + "Rank": 1, + "Id": 1245 }, { - "CommandName": "Set-PnPAuditing", - "Id": 1246, "Command": "Set-PnPAuditing -DisableAll", - "Rank": 2 + "CommandName": "Set-PnPAuditing", + "Rank": 2, + "Id": 1246 }, { - "CommandName": "Set-PnPAuditing", - "Id": 1247, "Command": "Set-PnPAuditing -RetentionTime 7", - "Rank": 3 + "CommandName": "Set-PnPAuditing", + "Rank": 3, + "Id": 1247 }, { - "CommandName": "Set-PnPAuditing", - "Id": 1248, "Command": "Set-PnPAuditing -TrimAuditLog", - "Rank": 4 + "CommandName": "Set-PnPAuditing", + "Rank": 4, + "Id": 1248 }, { - "CommandName": "Set-PnPAuditing", - "Id": 1249, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Rank": 5 + "CommandName": "Set-PnPAuditing", + "Rank": 5, + "Id": 1249 }, { - "CommandName": "Set-PnPAvailablePageLayouts", - "Id": 1250, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Rank": 1 + "CommandName": "Set-PnPAvailablePageLayouts", + "Rank": 1, + "Id": 1250 }, { - "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1251, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Rank": 1 + "CommandName": "Set-PnPAzureADAppSitePermission", + "Rank": 1, + "Id": 1251 }, { - "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1252, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Rank": 2 + "CommandName": "Set-PnPAzureADAppSitePermission", + "Rank": 2, + "Id": 1252 }, { - "CommandName": "Set-PnPAzureADGroup", - "Id": 1253, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1 + "CommandName": "Set-PnPAzureADGroup", + "Rank": 1, + "Id": 1253 }, { - "CommandName": "Set-PnPAzureADGroup", - "Id": 1254, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2 + "CommandName": "Set-PnPAzureADGroup", + "Rank": 2, + "Id": 1254 }, { - "CommandName": "Set-PnPAzureADGroup", - "Id": 1255, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Rank": 3 + "CommandName": "Set-PnPAzureADGroup", + "Rank": 3, + "Id": 1255 }, { - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1256, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Rank": 1 + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 1, + "Id": 1256 }, { - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1257, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Rank": 2 + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 2, + "Id": 1257 }, { - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1258, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Rank": 3 + "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 3, + "Id": 1258 }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1259, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Rank": 1 + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 1, + "Id": 1259 }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1260, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Rank": 2 + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 2, + "Id": 1260 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1261, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Rank": 1 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 1, + "Id": 1261 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1262, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Rank": 2 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 2, + "Id": 1262 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1263, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Rank": 3 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 3, + "Id": 1263 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1264, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Rank": 4 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 4, + "Id": 1264 }, { - "CommandName": "Set-PnPContentType", - "Id": 1265, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 1 + "CommandName": "Set-PnPContentType", + "Rank": 1, + "Id": 1265 }, { - "CommandName": "Set-PnPContentType", - "Id": 1266, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Rank": 2 + "CommandName": "Set-PnPContentType", + "Rank": 2, + "Id": 1266 }, { - "CommandName": "Set-PnPContentType", - "Id": 1267, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 3 + "CommandName": "Set-PnPContentType", + "Rank": 3, + "Id": 1267 }, { - "CommandName": "Set-PnPContentType", - "Id": 1268, "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, + "Id": 1268 }, { - "CommandName": "Set-PnPContentType", - "Id": 1269, "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, + "Id": 1269 }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1270, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Rank": 1 + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 1, + "Id": 1270 }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1271, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Rank": 2 + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 2, + "Id": 1271 }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1272, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Rank": 3 + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 3, + "Id": 1272 }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1273, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Rank": 4 + "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 4, + "Id": 1273 }, { - "CommandName": "Set-PnPDefaultContentTypeToList", - "Id": 1274, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Rank": 1 + "CommandName": "Set-PnPDefaultContentTypeToList", + "Rank": 1, + "Id": 1274 }, { - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1275, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Rank": 1 + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 1, + "Id": 1275 }, { - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1276, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Rank": 2 + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 2, + "Id": 1276 }, { - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1277, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Rank": 3 + "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 3, + "Id": 1277 }, { - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1278, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Rank": 1 + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 1, + "Id": 1278 }, { - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1279, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 2 + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 2, + "Id": 1279 }, { - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1280, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 3 + "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 3, + "Id": 1280 }, { - "CommandName": "Set-PnPDocumentSetField", - "Id": 1281, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Rank": 1 + "CommandName": "Set-PnPDocumentSetField", + "Rank": 1, + "Id": 1281 }, { - "CommandName": "Set-PnPDocumentSetField", - "Id": 1282, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Rank": 2 + "CommandName": "Set-PnPDocumentSetField", + "Rank": 2, + "Id": 1282 }, { - "CommandName": "Set-PnPField", - "Id": 1283, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Rank": 1 + "CommandName": "Set-PnPField", + "Rank": 1, + "Id": 1283 }, { - "CommandName": "Set-PnPField", - "Id": 1284, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Rank": 2 + "CommandName": "Set-PnPField", + "Rank": 2, + "Id": 1284 }, { - "CommandName": "Set-PnPField", - "Id": 1285, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Rank": 3 + "CommandName": "Set-PnPField", + "Rank": 3, + "Id": 1285 }, { - "CommandName": "Set-PnPFileCheckedIn", - "Id": 1286, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Rank": 1 + "CommandName": "Set-PnPFileCheckedIn", + "Rank": 1, + "Id": 1286 }, { - "CommandName": "Set-PnPFileCheckedIn", - "Id": 1287, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Rank": 2 + "CommandName": "Set-PnPFileCheckedIn", + "Rank": 2, + "Id": 1287 }, { - "CommandName": "Set-PnPFileCheckedOut", - "Id": 1288, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Rank": 1 + "CommandName": "Set-PnPFileCheckedOut", + "Rank": 1, + "Id": 1288 }, { - "CommandName": "Set-PnPFolderPermission", - "Id": 1289, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1 + "CommandName": "Set-PnPFolderPermission", + "Rank": 1, + "Id": 1289 }, { - "CommandName": "Set-PnPFolderPermission", - "Id": 1290, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2 + "CommandName": "Set-PnPFolderPermission", + "Rank": 2, + "Id": 1290 }, { - "CommandName": "Set-PnPFolderPermission", - "Id": 1291, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3 + "CommandName": "Set-PnPFolderPermission", + "Rank": 3, + "Id": 1291 }, { - "CommandName": "Set-PnPFooter", - "Id": 1292, "Command": "Set-PnPFooter -Enabled:$true", - "Rank": 1 + "CommandName": "Set-PnPFooter", + "Rank": 1, + "Id": 1292 }, { - "CommandName": "Set-PnPFooter", - "Id": 1293, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Rank": 2 + "CommandName": "Set-PnPFooter", + "Rank": 2, + "Id": 1293 }, { - "CommandName": "Set-PnPFooter", - "Id": 1294, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Rank": 3 + "CommandName": "Set-PnPFooter", + "Rank": 3, + "Id": 1294 }, { - "CommandName": "Set-PnPFooter", - "Id": 1295, "Command": "Set-PnPFooter -LogoUrl \"\"", - "Rank": 4 + "CommandName": "Set-PnPFooter", + "Rank": 4, + "Id": 1295 }, { - "CommandName": "Set-PnPGraphSubscription", - "Id": 1296, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Rank": 1 + "CommandName": "Set-PnPGraphSubscription", + "Rank": 1, + "Id": 1296 }, { - "CommandName": "Set-PnPGroup", - "Id": 1297, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Rank": 1 + "CommandName": "Set-PnPGroup", + "Rank": 1, + "Id": 1297 }, { - "CommandName": "Set-PnPGroup", - "Id": 1298, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Rank": 2 + "CommandName": "Set-PnPGroup", + "Rank": 2, + "Id": 1298 }, { - "CommandName": "Set-PnPGroupPermissions", - "Id": 1299, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Rank": 1 + "CommandName": "Set-PnPGroupPermissions", + "Rank": 1, + "Id": 1299 }, { - "CommandName": "Set-PnPGroupPermissions", - "Id": 1300, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Rank": 2 + "CommandName": "Set-PnPGroupPermissions", + "Rank": 2, + "Id": 1300 }, { - "CommandName": "Set-PnPGroupPermissions", - "Id": 1301, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Rank": 3 + "CommandName": "Set-PnPGroupPermissions", + "Rank": 3, + "Id": 1301 }, { - "CommandName": "Set-PnPGroupPermissions", - "Id": 1302, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Rank": 4 + "CommandName": "Set-PnPGroupPermissions", + "Rank": 4, + "Id": 1302 }, { - "CommandName": "Set-PnPGroupPermissions", - "Id": 1303, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Rank": 5 + "CommandName": "Set-PnPGroupPermissions", + "Rank": 5, + "Id": 1303 }, { - "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1304, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Rank": 1 + "CommandName": "Set-PnPHideDefaultThemes", + "Rank": 1, + "Id": 1304 }, { - "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1305, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Rank": 2 + "CommandName": "Set-PnPHideDefaultThemes", + "Rank": 2, + "Id": 1305 }, { - "CommandName": "Set-PnPHomePage", - "Id": 1306, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Rank": 1 + "CommandName": "Set-PnPHomePage", + "Rank": 1, + "Id": 1306 }, { - "CommandName": "Set-PnPHomePage", - "Id": 1307, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Rank": 2 + "CommandName": "Set-PnPHomePage", + "Rank": 2, + "Id": 1307 }, { - "CommandName": "Set-PnPHomeSite", - "Id": 1308, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Rank": 1 + "CommandName": "Set-PnPHomeSite", + "Rank": 1, + "Id": 1308 }, { - "CommandName": "Set-PnPHomeSite", - "Id": 1309, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Rank": 2 + "CommandName": "Set-PnPHomeSite", + "Rank": 2, + "Id": 1309 }, { - "CommandName": "Set-PnPHubSite", - "Id": 1310, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Rank": 1 + "CommandName": "Set-PnPHubSite", + "Rank": 1, + "Id": 1310 }, { - "CommandName": "Set-PnPHubSite", - "Id": 1311, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Rank": 2 + "CommandName": "Set-PnPHubSite", + "Rank": 2, + "Id": 1311 }, { - "CommandName": "Set-PnPHubSite", - "Id": 1312, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Rank": 3 + "CommandName": "Set-PnPHubSite", + "Rank": 3, + "Id": 1312 }, { - "CommandName": "Set-PnPHubSite", - "Id": 1313, "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, + "Id": 1313 }, { - "CommandName": "Set-PnPHubSite", - "Id": 1314, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Rank": 5 + "CommandName": "Set-PnPHubSite", + "Rank": 5, + "Id": 1314 }, { - "CommandName": "Set-PnPHubSite", - "Id": 1315, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Rank": 6 + "CommandName": "Set-PnPHubSite", + "Rank": 6, + "Id": 1315 }, { - "CommandName": "Set-PnPImageListItemColumn", - "Id": 1316, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 1 + "CommandName": "Set-PnPImageListItemColumn", + "Rank": 1, + "Id": 1316 }, { - "CommandName": "Set-PnPImageListItemColumn", - "Id": 1317, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Rank": 2 + "CommandName": "Set-PnPImageListItemColumn", + "Rank": 2, + "Id": 1317 }, { - "CommandName": "Set-PnPIndexedProperties", - "Id": 1318, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Rank": 1 + "CommandName": "Set-PnPIndexedProperties", + "Rank": 1, + "Id": 1318 }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1319, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Rank": 1 + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 1, + "Id": 1319 }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1320, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Rank": 2 + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 2, + "Id": 1320 }, { - "CommandName": "Set-PnPKnowledgeHubSite", - "Id": 1321, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Rank": 1 + "CommandName": "Set-PnPKnowledgeHubSite", + "Rank": 1, + "Id": 1321 }, { - "CommandName": "Set-PnPLabel", - "Id": 1322, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Rank": 1 + "CommandName": "Set-PnPLabel", + "Rank": 1, + "Id": 1322 }, { - "CommandName": "Set-PnPLabel", - "Id": 1323, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Rank": 2 + "CommandName": "Set-PnPLabel", + "Rank": 2, + "Id": 1323 }, { - "CommandName": "Set-PnPList", - "Id": 1324, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Rank": 1 + "CommandName": "Set-PnPList", + "Rank": 1, + "Id": 1324 }, { - "CommandName": "Set-PnPList", - "Id": 1325, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Rank": 2 + "CommandName": "Set-PnPList", + "Rank": 2, + "Id": 1325 }, { - "CommandName": "Set-PnPList", - "Id": 1326, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Rank": 3 + "CommandName": "Set-PnPList", + "Rank": 3, + "Id": 1326 }, { - "CommandName": "Set-PnPList", - "Id": 1327, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Rank": 4 + "CommandName": "Set-PnPList", + "Rank": 4, + "Id": 1327 }, { - "CommandName": "Set-PnPList", - "Id": 1328, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Rank": 5 + "CommandName": "Set-PnPList", + "Rank": 5, + "Id": 1328 }, { - "CommandName": "Set-PnPList", - "Id": 1329, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Rank": 6 + "CommandName": "Set-PnPList", + "Rank": 6, + "Id": 1329 }, { - "CommandName": "Set-PnPList", - "Id": 1330, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Rank": 7 + "CommandName": "Set-PnPList", + "Rank": 7, + "Id": 1330 }, { - "CommandName": "Set-PnPList", - "Id": 1331, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Rank": 8 + "CommandName": "Set-PnPList", + "Rank": 8, + "Id": 1331 }, { - "CommandName": "Set-PnPList", - "Id": 1332, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Rank": 9 + "CommandName": "Set-PnPList", + "Rank": 9, + "Id": 1332 }, { - "CommandName": "Set-PnPList", - "Id": 1333, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Rank": 10 + "CommandName": "Set-PnPList", + "Rank": 10, + "Id": 1333 }, { - "CommandName": "Set-PnPList", - "Id": 1334, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Rank": 11 + "CommandName": "Set-PnPList", + "Rank": 11, + "Id": 1334 }, { - "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1335, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Rank": 1 + "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 1, + "Id": 1335 }, { - "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1336, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Rank": 2 + "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 2, + "Id": 1336 }, { - "CommandName": "Set-PnPListItem", - "Id": 1337, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1 + "CommandName": "Set-PnPListItem", + "Rank": 1, + "Id": 1337 }, { - "CommandName": "Set-PnPListItem", - "Id": 1338, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 2 + "CommandName": "Set-PnPListItem", + "Rank": 2, + "Id": 1338 }, { - "CommandName": "Set-PnPListItem", - "Id": 1339, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 3 + "CommandName": "Set-PnPListItem", + "Rank": 3, + "Id": 1339 }, { - "CommandName": "Set-PnPListItem", - "Id": 1340, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Rank": 4 + "CommandName": "Set-PnPListItem", + "Rank": 4, + "Id": 1340 }, { - "CommandName": "Set-PnPListItem", - "Id": 1341, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Rank": 5 + "CommandName": "Set-PnPListItem", + "Rank": 5, + "Id": 1341 }, { - "CommandName": "Set-PnPListItemAsRecord", - "Id": 1342, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1 + "CommandName": "Set-PnPListItemAsRecord", + "Rank": 1, + "Id": 1342 }, { - "CommandName": "Set-PnPListItemAsRecord", - "Id": 1343, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Rank": 2 + "CommandName": "Set-PnPListItemAsRecord", + "Rank": 2, + "Id": 1343 }, { - "CommandName": "Set-PnPListItemPermission", - "Id": 1344, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1 + "CommandName": "Set-PnPListItemPermission", + "Rank": 1, + "Id": 1344 }, { - "CommandName": "Set-PnPListItemPermission", - "Id": 1345, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2 + "CommandName": "Set-PnPListItemPermission", + "Rank": 2, + "Id": 1345 }, { - "CommandName": "Set-PnPListItemPermission", - "Id": 1346, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3 + "CommandName": "Set-PnPListItemPermission", + "Rank": 3, + "Id": 1346 }, { - "CommandName": "Set-PnPListItemPermission", - "Id": 1347, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Rank": 4 + "CommandName": "Set-PnPListItemPermission", + "Rank": 4, + "Id": 1347 }, { - "CommandName": "Set-PnPListItemPermission", - "Id": 1348, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Rank": 5 + "CommandName": "Set-PnPListItemPermission", + "Rank": 5, + "Id": 1348 }, { - "CommandName": "Set-PnPListPermission", - "Id": 1349, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1 + "CommandName": "Set-PnPListPermission", + "Rank": 1, + "Id": 1349 }, { - "CommandName": "Set-PnPListPermission", - "Id": 1350, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2 + "CommandName": "Set-PnPListPermission", + "Rank": 2, + "Id": 1350 }, { - "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1351, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Rank": 1 + "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 1, + "Id": 1351 }, { - "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1352, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Rank": 2 + "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 2, + "Id": 1352 }, { - "CommandName": "Set-PnPMasterPage", - "Id": 1353, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 1 + "CommandName": "Set-PnPMasterPage", + "Rank": 1, + "Id": 1353 }, { - "CommandName": "Set-PnPMasterPage", - "Id": 1354, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 2 + "CommandName": "Set-PnPMasterPage", + "Rank": 2, + "Id": 1354 }, { - "CommandName": "Set-PnPMasterPage", - "Id": 1355, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 3 + "CommandName": "Set-PnPMasterPage", + "Rank": 3, + "Id": 1355 }, { - "CommandName": "Set-PnPMasterPage", - "Id": 1356, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 4 + "CommandName": "Set-PnPMasterPage", + "Rank": 4, + "Id": 1356 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1357, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 1, + "Id": 1357 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1358, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 2, + "Id": 1358 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1359, "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3, + "Id": 1359 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1360, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 1, + "Id": 1360 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1361, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 2, + "Id": 1361 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1362, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3, + "Id": 1362 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1363, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 1, + "Id": 1363 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1364, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 2, + "Id": 1364 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1365, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3, + "Id": 1365 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1366, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 1, + "Id": 1366 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1367, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 2, + "Id": 1367 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1368, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3, + "Id": 1368 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1369, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 1, + "Id": 1369 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1370, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 2, + "Id": 1370 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1371, "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3, + "Id": 1371 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1372, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Rank": 1 + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 1, + "Id": 1372 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1373, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 2, + "Id": 1373 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1374, "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3 + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3, + "Id": 1374 }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1375, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1 + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 1, + "Id": 1375 }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1376, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2 + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 2, + "Id": 1376 }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1377, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Rank": 3 + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 3, + "Id": 1377 }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1378, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Rank": 4 + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 4, + "Id": 1378 }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1379, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Rank": 5 + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 5, + "Id": 1379 }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1380, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6 + "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 6, + "Id": 1380 }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1381, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Rank": 1 + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Rank": 1, + "Id": 1381 }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1382, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Rank": 2 + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Rank": 2, + "Id": 1382 }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1383, "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Rank": 1 + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 1, + "Id": 1383 }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1384, "Command": "Set-PnPMinimalDownloadStrategy -On", - "Rank": 2 + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 2, + "Id": 1384 }, { - "CommandName": "Set-PnPPage", - "Id": 1385, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Rank": 1 + "CommandName": "Set-PnPPage", + "Rank": 1, + "Id": 1385 }, { - "CommandName": "Set-PnPPage", - "Id": 1386, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Rank": 2 + "CommandName": "Set-PnPPage", + "Rank": 2, + "Id": 1386 }, { - "CommandName": "Set-PnPPage", - "Id": 1387, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Rank": 3 + "CommandName": "Set-PnPPage", + "Rank": 3, + "Id": 1387 }, { - "CommandName": "Set-PnPPage", - "Id": 1388, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Rank": 4 + "CommandName": "Set-PnPPage", + "Rank": 4, + "Id": 1388 }, { - "CommandName": "Set-PnPPage", - "Id": 1389, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Rank": 5 + "CommandName": "Set-PnPPage", + "Rank": 5, + "Id": 1389 }, { - "CommandName": "Set-PnPPage", - "Id": 1390, "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, + "Id": 1390 }, { - "CommandName": "Set-PnPPage", - "Id": 1391, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7 + "CommandName": "Set-PnPPage", + "Rank": 7, + "Id": 1391 }, { - "CommandName": "Set-PnPPage", - "Id": 1392, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "Rank": 8 + "CommandName": "Set-PnPPage", + "Rank": 8, + "Id": 1392 }, { - "CommandName": "Set-PnPPage", - "Id": 1393, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9 + "CommandName": "Set-PnPPage", + "Rank": 9, + "Id": 1393 }, { - "CommandName": "Set-PnPPage", - "Id": 1394, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10 + "CommandName": "Set-PnPPage", + "Rank": 10, + "Id": 1394 }, { - "CommandName": "Set-PnPPage", - "Id": 1395, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "Rank": 11 + "CommandName": "Set-PnPPage", + "Rank": 11, + "Id": 1395 }, { - "CommandName": "Set-PnPPageTextPart", - "Id": 1396, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Rank": 1 + "CommandName": "Set-PnPPageTextPart", + "Rank": 1, + "Id": 1396 }, { - "CommandName": "Set-PnPPageWebPart", - "Id": 1397, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Rank": 1 + "CommandName": "Set-PnPPageWebPart", + "Rank": 1, + "Id": 1397 }, { - "CommandName": "Set-PnPPageWebPart", - "Id": 1398, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Rank": 2 + "CommandName": "Set-PnPPageWebPart", + "Rank": 2, + "Id": 1398 }, { - "CommandName": "Set-PnPPlannerBucket", - "Id": 1399, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Rank": 1 + "CommandName": "Set-PnPPlannerBucket", + "Rank": 1, + "Id": 1399 }, { - "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1400, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Rank": 1 + "CommandName": "Set-PnPPlannerConfiguration", + "Rank": 1, + "Id": 1400 }, { - "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1401, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Rank": 2 + "CommandName": "Set-PnPPlannerConfiguration", + "Rank": 2, + "Id": 1401 }, { - "CommandName": "Set-PnPPlannerPlan", - "Id": 1402, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Rank": 1 + "CommandName": "Set-PnPPlannerPlan", + "Rank": 1, + "Id": 1402 }, { - "CommandName": "Set-PnPPlannerTask", - "Id": 1403, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Rank": 1 + "CommandName": "Set-PnPPlannerTask", + "Rank": 1, + "Id": 1403 }, { - "CommandName": "Set-PnPPlannerTask", - "Id": 1404, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Rank": 2 + "CommandName": "Set-PnPPlannerTask", + "Rank": 2, + "Id": 1404 }, { - "CommandName": "Set-PnPPlannerTask", - "Id": 1405, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Rank": 3 + "CommandName": "Set-PnPPlannerTask", + "Rank": 3, + "Id": 1405 }, { - "CommandName": "Set-PnPPlannerUserPolicy", - "Id": 1406, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "CommandName": "Set-PnPPlannerUserPolicy", + "Rank": 1, + "Id": 1406 }, { - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1407, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Rank": 1 + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 1, + "Id": 1407 }, { - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1408, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Rank": 2 + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 2, + "Id": 1408 }, { - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1409, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Rank": 3 + "CommandName": "Set-PnPPropertyBagValue", + "Rank": 3, + "Id": 1409 }, { - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1410, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Rank": 1 + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 1, + "Id": 1410 }, { - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1411, "Command": "Set-PnPRequestAccessEmails -Disabled", - "Rank": 2 + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 2, + "Id": 1411 }, { - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1412, "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Rank": 3 + "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 3, + "Id": 1412 }, { - "CommandName": "Set-PnPRoleDefinition", - "Id": 1413, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Rank": 1 + "CommandName": "Set-PnPRoleDefinition", + "Rank": 1, + "Id": 1413 }, { - "CommandName": "Set-PnPRoleDefinition", - "Id": 1414, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Rank": 2 + "CommandName": "Set-PnPRoleDefinition", + "Rank": 2, + "Id": 1414 }, { - "CommandName": "Set-PnPRoleDefinition", - "Id": 1415, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Rank": 3 + "CommandName": "Set-PnPRoleDefinition", + "Rank": 3, + "Id": 1415 }, { - "CommandName": "Set-PnPRoleDefinition", - "Id": 1416, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Rank": 4 + "CommandName": "Set-PnPRoleDefinition", + "Rank": 4, + "Id": 1416 }, { - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1417, "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Rank": 1 + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 1, + "Id": 1417 }, { - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1418, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2 + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 2, + "Id": 1418 }, { - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1419, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3 + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 3, + "Id": 1419 }, { - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1420, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4 + "CommandName": "Set-PnPSearchConfiguration", + "Rank": 4, + "Id": 1420 }, { - "CommandName": "Set-PnPSearchExternalItem", - "Id": 1421, "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, + "Id": 1421 }, { - "CommandName": "Set-PnPSearchExternalItem", - "Id": 1422, "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, + "Id": 1422 }, { - "CommandName": "Set-PnPSearchSettings", - "Id": 1423, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Rank": 1 + "CommandName": "Set-PnPSearchSettings", + "Rank": 1, + "Id": 1423 }, { - "CommandName": "Set-PnPSearchSettings", - "Id": 1424, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Rank": 2 + "CommandName": "Set-PnPSearchSettings", + "Rank": 2, + "Id": 1424 }, { - "CommandName": "Set-PnPSearchSettings", - "Id": 1425, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Rank": 3 + "CommandName": "Set-PnPSearchSettings", + "Rank": 3, + "Id": 1425 }, { - "CommandName": "Set-PnPSearchSettings", - "Id": 1426, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Rank": 4 + "CommandName": "Set-PnPSearchSettings", + "Rank": 4, + "Id": 1426 }, { - "CommandName": "Set-PnPSearchSettings", - "Id": 1427, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Rank": 5 + "CommandName": "Set-PnPSearchSettings", + "Rank": 5, + "Id": 1427 }, { - "CommandName": "Set-PnPSearchSettings", - "Id": 1428, "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Rank": 6 + "CommandName": "Set-PnPSearchSettings", + "Rank": 6, + "Id": 1428 }, { - "CommandName": "Set-PnPSearchSettings", - "Id": 1429, "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Rank": 7 + "CommandName": "Set-PnPSearchSettings", + "Rank": 7, + "Id": 1429 }, { - "CommandName": "Set-PnPSite", - "Id": 1430, "Command": "Set-PnPSite -Classification \"HBI\"", - "Rank": 1 + "CommandName": "Set-PnPSite", + "Rank": 1, + "Id": 1430 }, { - "CommandName": "Set-PnPSite", - "Id": 1431, "Command": "Set-PnPSite -Classification $null", - "Rank": 2 + "CommandName": "Set-PnPSite", + "Rank": 2, + "Id": 1431 }, { - "CommandName": "Set-PnPSite", - "Id": 1432, "Command": "Set-PnPSite -DisableFlows", - "Rank": 3 + "CommandName": "Set-PnPSite", + "Rank": 3, + "Id": 1432 }, { - "CommandName": "Set-PnPSite", - "Id": 1433, "Command": "Set-PnPSite -DisableFlows:$false", - "Rank": 4 + "CommandName": "Set-PnPSite", + "Rank": 4, + "Id": 1433 }, { - "CommandName": "Set-PnPSite", - "Id": 1434, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Rank": 5 + "CommandName": "Set-PnPSite", + "Rank": 5, + "Id": 1434 }, { - "CommandName": "Set-PnPSite", - "Id": 1435, "Command": "Set-PnPSite -NoScriptSite $false", - "Rank": 6 + "CommandName": "Set-PnPSite", + "Rank": 6, + "Id": 1435 }, { - "CommandName": "Set-PnPSite", - "Id": 1436, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "Rank": 7 + "CommandName": "Set-PnPSite", + "Rank": 7, + "Id": 1436 }, { - "CommandName": "Set-PnPSite", - "Id": 1437, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "Rank": 8 + "CommandName": "Set-PnPSite", + "Rank": 8, + "Id": 1437 }, { - "CommandName": "Set-PnPSite", - "Id": 1438, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "Rank": 9 + "CommandName": "Set-PnPSite", + "Rank": 9, + "Id": 1438 }, { - "CommandName": "Set-PnPSite", - "Id": 1439, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "Rank": 10 + "CommandName": "Set-PnPSite", + "Rank": 10, + "Id": 1439 }, { - "CommandName": "Set-PnPSite", - "Id": 1440, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "Rank": 11 + "CommandName": "Set-PnPSite", + "Rank": 11, + "Id": 1440 }, { - "CommandName": "Set-PnPSite", - "Id": 1441, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "Rank": 12 + "CommandName": "Set-PnPSite", + "Rank": 12, + "Id": 1441 }, { - "CommandName": "Set-PnPSite", - "Id": 1442, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "Rank": 13 + "CommandName": "Set-PnPSite", + "Rank": 13, + "Id": 1442 }, { - "CommandName": "Set-PnPSite", - "Id": 1443, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "Rank": 14 + "CommandName": "Set-PnPSite", + "Rank": 14, + "Id": 1443 }, { - "CommandName": "Set-PnPSite", - "Id": 1444, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "Rank": 15 + "CommandName": "Set-PnPSite", + "Rank": 15, + "Id": 1444 }, { - "CommandName": "Set-PnPSite", - "Id": 1445, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "Rank": 16 + "CommandName": "Set-PnPSite", + "Rank": 16, + "Id": 1445 }, { - "CommandName": "Set-PnPSite", - "Id": 1446, "Command": "Set-PnPSite -CancelVPForExistingLibs", - "Rank": 17 + "CommandName": "Set-PnPSite", + "Rank": 17, + "Id": 1446 }, { - "CommandName": "Set-PnPSiteClassification", - "Id": 1447, "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Rank": 1 + "CommandName": "Set-PnPSiteClassification", + "Rank": 1, + "Id": 1447 }, { - "CommandName": "Set-PnPSiteClosure", - "Id": 1448, "Command": "Set-PnPSiteClosure -State Open", - "Rank": 1 + "CommandName": "Set-PnPSiteClosure", + "Rank": 1, + "Id": 1448 }, { - "CommandName": "Set-PnPSiteClosure", - "Id": 1449, "Command": "Set-PnPSiteClosure -State Closed", - "Rank": 2 + "CommandName": "Set-PnPSiteClosure", + "Rank": 2, + "Id": 1449 }, { - "CommandName": "Set-PnPSiteDesign", - "Id": 1450, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Rank": 1 + "CommandName": "Set-PnPSiteDesign", + "Rank": 1, + "Id": 1450 }, { - "CommandName": "Set-PnPSiteDesign", - "Id": 1451, "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, + "Id": 1451 }, { - "CommandName": "Set-PnPSiteGroup", - "Id": 1452, "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, + "Id": 1452 }, { - "CommandName": "Set-PnPSiteGroup", - "Id": 1453, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Rank": 2 + "CommandName": "Set-PnPSiteGroup", + "Rank": 2, + "Id": 1453 }, { - "CommandName": "Set-PnPSitePolicy", - "Id": 1454, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 1 + "CommandName": "Set-PnPSitePolicy", + "Rank": 1, + "Id": 1454 }, { - "CommandName": "Set-PnPSiteScript", - "Id": 1455, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1 + "CommandName": "Set-PnPSiteScript", + "Rank": 1, + "Id": 1455 }, { - "CommandName": "Set-PnPSiteScriptPackage", - "Id": 1456, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1 + "CommandName": "Set-PnPSiteScriptPackage", + "Rank": 1, + "Id": 1456 }, { - "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1457, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Rank": 1 + "CommandName": "Set-PnPSiteSensitivityLabel", + "Rank": 1, + "Id": 1457 }, { - "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1458, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Rank": 2 + "CommandName": "Set-PnPSiteSensitivityLabel", + "Rank": 2, + "Id": 1458 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1459, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 1 + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 1, + "Id": 1459 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1460, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 2 + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 2, + "Id": 1460 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1461, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 3 + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 3, + "Id": 1461 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1462, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 4 + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 4, + "Id": 1462 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1463, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 5 + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 5, + "Id": 1463 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1464, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 6 + "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 6, + "Id": 1464 }, { - "CommandName": "Set-PnPStorageEntity", - "Id": 1465, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 1 + "CommandName": "Set-PnPStorageEntity", + "Rank": 1, + "Id": 1465 }, { - "CommandName": "Set-PnPStorageEntity", - "Id": 1466, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 2 + "CommandName": "Set-PnPStorageEntity", + "Rank": 2, + "Id": 1466 }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1467, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1 + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Rank": 1, + "Id": 1467 }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1468, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 2 + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Rank": 2, + "Id": 1468 }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1469, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1 + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Rank": 1, + "Id": 1469 }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1470, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 2 + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Rank": 2, + "Id": 1470 }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1471, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Rank": 1 + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 1, + "Id": 1471 }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1472, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Rank": 2 + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 2, + "Id": 1472 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1473, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Rank": 1 + "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 1, + "Id": 1473 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1474, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Rank": 2 + "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 2, + "Id": 1474 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1475, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Rank": 3 + "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 3, + "Id": 1475 }, { - "CommandName": "Set-PnPTeamifyPromptHidden", - "Id": 1476, "Command": "Set-PnPTeamifyPromptHidden", - "Rank": 1 + "CommandName": "Set-PnPTeamifyPromptHidden", + "Rank": 1, + "Id": 1476 }, { - "CommandName": "Set-PnPTeamsChannel", - "Id": 1477, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Rank": 1 + "CommandName": "Set-PnPTeamsChannel", + "Rank": 1, + "Id": 1477 }, { - "CommandName": "Set-PnPTeamsChannel", - "Id": 1478, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Rank": 2 + "CommandName": "Set-PnPTeamsChannel", + "Rank": 2, + "Id": 1478 }, { - "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1479, "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, + "Id": 1479 }, { - "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1480, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Rank": 2 + "CommandName": "Set-PnpTeamsChannelUser", + "Rank": 2, + "Id": 1480 }, { - "CommandName": "Set-PnPTeamsTab", - "Id": 1481, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Rank": 1 + "CommandName": "Set-PnPTeamsTab", + "Rank": 1, + "Id": 1481 }, { - "CommandName": "Set-PnPTeamsTag", - "Id": 1482, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Rank": 1 + "CommandName": "Set-PnPTeamsTag", + "Rank": 1, + "Id": 1482 }, { - "CommandName": "Set-PnPTeamsTeam", - "Id": 1483, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Rank": 1 + "CommandName": "Set-PnPTeamsTeam", + "Rank": 1, + "Id": 1483 }, { - "CommandName": "Set-PnPTeamsTeam", - "Id": 1484, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Rank": 2 + "CommandName": "Set-PnPTeamsTeam", + "Rank": 2, + "Id": 1484 }, { - "CommandName": "Set-PnPTeamsTeam", - "Id": 1485, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Rank": 3 + "CommandName": "Set-PnPTeamsTeam", + "Rank": 3, + "Id": 1485 }, { - "CommandName": "Set-PnPTeamsTeam", - "Id": 1486, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Rank": 4 + "CommandName": "Set-PnPTeamsTeam", + "Rank": 4, + "Id": 1486 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1487, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Rank": 1 + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 1, + "Id": 1487 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1488, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Rank": 2 + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 2, + "Id": 1488 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1489, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Rank": 3 + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 3, + "Id": 1489 }, { - "CommandName": "Set-PnPTeamsTeamPicture", - "Id": 1490, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Rank": 1 + "CommandName": "Set-PnPTeamsTeamPicture", + "Rank": 1, + "Id": 1490 }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1491, "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Rank": 1 + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Rank": 1, + "Id": 1491 }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1492, "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Rank": 2 + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Rank": 2, + "Id": 1492 }, { - "CommandName": "Set-PnPTenant", - "Id": 1493, "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, + "Id": 1493 }, { - "CommandName": "Set-PnPTenant", - "Id": 1494, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Rank": 2 + "CommandName": "Set-PnPTenant", + "Rank": 2, + "Id": 1494 }, { - "CommandName": "Set-PnPTenant", - "Id": 1495, "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Rank": 3 + "CommandName": "Set-PnPTenant", + "Rank": 3, + "Id": 1495 }, { - "CommandName": "Set-PnPTenant", - "Id": 1496, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Rank": 4 + "CommandName": "Set-PnPTenant", + "Rank": 4, + "Id": 1496 }, { - "CommandName": "Set-PnPTenantAppCatalogUrl", - "Id": 1497, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Rank": 1 + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Rank": 1, + "Id": 1497 }, { - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1498, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Rank": 1 + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 1, + "Id": 1498 }, { - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1499, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Rank": 2 + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 2, + "Id": 1499 }, { - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1500, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Rank": 3 + "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 3, + "Id": 1500 }, { - "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1501, "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, + "Id": 1501 }, { - "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1502, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Rank": 2 + "CommandName": "Set-PnPTenantCdnPolicy", + "Rank": 2, + "Id": 1502 }, { - "CommandName": "Set-PnPTenantSite", - "Id": 1503, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Rank": 1 + "CommandName": "Set-PnPTenantSite", + "Rank": 1, + "Id": 1503 }, { - "CommandName": "Set-PnPTenantSite", - "Id": 1504, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Rank": 2 + "CommandName": "Set-PnPTenantSite", + "Rank": 2, + "Id": 1504 }, { - "CommandName": "Set-PnPTenantSite", - "Id": 1505, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 3 + "CommandName": "Set-PnPTenantSite", + "Rank": 3, + "Id": 1505 }, { - "CommandName": "Set-PnPTenantSite", - "Id": 1506, "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, + "Id": 1506 }, { - "CommandName": "Set-PnPTenantSite", - "Id": 1507, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Rank": 5 + "CommandName": "Set-PnPTenantSite", + "Rank": 5, + "Id": 1507 }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1508, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Rank": 1 + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Rank": 1, + "Id": 1508 }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1509, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Rank": 2 + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Rank": 2, + "Id": 1509 }, { - "CommandName": "Set-PnPTerm", - "Id": 1510, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Rank": 1 + "CommandName": "Set-PnPTerm", + "Rank": 1, + "Id": 1510 }, { - "CommandName": "Set-PnPTerm", - "Id": 1511, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2 + "CommandName": "Set-PnPTerm", + "Rank": 2, + "Id": 1511 }, { - "CommandName": "Set-PnPTerm", - "Id": 1512, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 3 + "CommandName": "Set-PnPTerm", + "Rank": 3, + "Id": 1512 }, { - "CommandName": "Set-PnPTerm", - "Id": 1513, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "Rank": 4 + "CommandName": "Set-PnPTerm", + "Rank": 4, + "Id": 1513 }, { - "CommandName": "Set-PnPTermGroup", - "Id": 1514, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Rank": 1 + "CommandName": "Set-PnPTermGroup", + "Rank": 1, + "Id": 1514 }, { - "CommandName": "Set-PnPTermSet", - "Id": 1515, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Rank": 1 + "CommandName": "Set-PnPTermSet", + "Rank": 1, + "Id": 1515 }, { - "CommandName": "Set-PnPTermSet", - "Id": 1516, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Rank": 2 + "CommandName": "Set-PnPTermSet", + "Rank": 2, + "Id": 1516 }, { - "CommandName": "Set-PnPTermSet", - "Id": 1517, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Rank": 3 + "CommandName": "Set-PnPTermSet", + "Rank": 3, + "Id": 1517 }, { - "CommandName": "Set-PnPTheme", - "Id": 1518, "Command": "Set-PnPTheme", - "Rank": 1 + "CommandName": "Set-PnPTheme", + "Rank": 1, + "Id": 1518 }, { - "CommandName": "Set-PnPTheme", - "Id": 1519, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Rank": 2 + "CommandName": "Set-PnPTheme", + "Rank": 2, + "Id": 1519 }, { - "CommandName": "Set-PnPTheme", - "Id": 1520, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Rank": 3 + "CommandName": "Set-PnPTheme", + "Rank": 3, + "Id": 1520 }, { - "CommandName": "Set-PnPTheme", - "Id": 1521, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Rank": 4 + "CommandName": "Set-PnPTheme", + "Rank": 4, + "Id": 1521 }, { - "CommandName": "Set-PnPTraceLog", - "Id": 1522, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Rank": 1 + "CommandName": "Set-PnPTraceLog", + "Rank": 1, + "Id": 1522 }, { - "CommandName": "Set-PnPTraceLog", - "Id": 1523, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Rank": 2 + "CommandName": "Set-PnPTraceLog", + "Rank": 2, + "Id": 1523 }, { - "CommandName": "Set-PnPTraceLog", - "Id": 1524, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Rank": 3 + "CommandName": "Set-PnPTraceLog", + "Rank": 3, + "Id": 1524 }, { - "CommandName": "Set-PnPTraceLog", - "Id": 1525, "Command": "Set-PnPTraceLog -Off", - "Rank": 4 + "CommandName": "Set-PnPTraceLog", + "Rank": 4, + "Id": 1525 }, { - "CommandName": "Set-PnPUserOneDriveQuota", - "Id": 1526, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Rank": 1 + "CommandName": "Set-PnPUserOneDriveQuota", + "Rank": 1, + "Id": 1526 }, { - "CommandName": "Set-PnPUserProfileProperty", - "Id": 1527, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Rank": 1 + "CommandName": "Set-PnPUserProfileProperty", + "Rank": 1, + "Id": 1527 }, { - "CommandName": "Set-PnPUserProfileProperty", - "Id": 1528, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Rank": 2 + "CommandName": "Set-PnPUserProfileProperty", + "Rank": 2, + "Id": 1528 }, { - "CommandName": "Set-PnPView", - "Id": 1529, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "Rank": 1 + "CommandName": "Set-PnPView", + "Rank": 1, + "Id": 1529 }, { - "CommandName": "Set-PnPView", - "Id": 1530, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Rank": 2 + "CommandName": "Set-PnPView", + "Rank": 2, + "Id": 1530 }, { - "CommandName": "Set-PnPView", - "Id": 1531, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "Rank": 3 + "CommandName": "Set-PnPView", + "Rank": 3, + "Id": 1531 }, { - "CommandName": "Set-PnPView", - "Id": 1532, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Rank": 4 + "CommandName": "Set-PnPView", + "Rank": 4, + "Id": 1532 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1533, "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, + "Id": 1533 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1534, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Rank": 2 + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 2, + "Id": 1534 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1535, "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, + "Id": 1535 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1536, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Rank": 4 + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 4, + "Id": 1536 }, { - "CommandName": "Set-PnPWeb", - "Id": 1537, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Rank": 1 + "CommandName": "Set-PnPWeb", + "Rank": 1, + "Id": 1537 }, { - "CommandName": "Set-PnPWeb", - "Id": 1538, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Rank": 2 + "CommandName": "Set-PnPWeb", + "Rank": 2, + "Id": 1538 }, { - "CommandName": "Set-PnPWeb", - "Id": 1539, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Rank": 3 + "CommandName": "Set-PnPWeb", + "Rank": 3, + "Id": 1539 }, { - "CommandName": "Set-PnPWeb", - "Id": 1540, "Command": "Set-PnPWeb -NoCrawl:$true", - "Rank": 4 + "CommandName": "Set-PnPWeb", + "Rank": 4, + "Id": 1540 }, { - "CommandName": "Set-PnPWebHeader", - "Id": 1541, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Rank": 1 + "CommandName": "Set-PnPWebHeader", + "Rank": 1, + "Id": 1541 }, { - "CommandName": "Set-PnPWebHeader", - "Id": 1542, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Rank": 2 + "CommandName": "Set-PnPWebHeader", + "Rank": 2, + "Id": 1542 }, { - "CommandName": "Set-PnPWebHeader", - "Id": 1543, "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Rank": 3 + "CommandName": "Set-PnPWebHeader", + "Rank": 3, + "Id": 1543 }, { - "CommandName": "Set-PnPWebhookSubscription", - "Id": 1544, "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, + "Id": 1544 }, { - "CommandName": "Set-PnPWebhookSubscription", - "Id": 1545, "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, + "Id": 1545 }, { - "CommandName": "Set-PnPWebPartProperty", - "Id": 1546, "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, + "Id": 1546 }, { - "CommandName": "Set-PnPWebPermission", - "Id": 1547, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 1 + "CommandName": "Set-PnPWebPermission", + "Rank": 1, + "Id": 1547 }, { - "CommandName": "Set-PnPWebPermission", - "Id": 1548, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Rank": 2 + "CommandName": "Set-PnPWebPermission", + "Rank": 2, + "Id": 1548 }, { - "CommandName": "Set-PnPWebPermission", - "Id": 1549, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 3 + "CommandName": "Set-PnPWebPermission", + "Rank": 3, + "Id": 1549 }, { - "CommandName": "Set-PnPWebPermission", - "Id": 1550, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Rank": 4 + "CommandName": "Set-PnPWebPermission", + "Rank": 4, + "Id": 1550 }, { - "CommandName": "Set-PnPWebTheme", - "Id": 1551, "Command": "Set-PnPWebTheme -Theme MyTheme", - "Rank": 1 + "CommandName": "Set-PnPWebTheme", + "Rank": 1, + "Id": 1551 }, { - "CommandName": "Set-PnPWebTheme", - "Id": 1552, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Rank": 2 + "CommandName": "Set-PnPWebTheme", + "Rank": 2, + "Id": 1552 }, { - "CommandName": "Set-PnPWikiPageContent", - "Id": 1553, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Rank": 1 + "CommandName": "Set-PnPWikiPageContent", + "Rank": 1, + "Id": 1553 }, { - "CommandName": "Submit-PnPSearchQuery", - "Id": 1554, "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Rank": 1 + "CommandName": "Submit-PnPSearchQuery", + "Rank": 1, + "Id": 1554 }, { - "CommandName": "Submit-PnPSearchQuery", - "Id": 1555, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Rank": 2 + "CommandName": "Submit-PnPSearchQuery", + "Rank": 2, + "Id": 1555 }, { - "CommandName": "Submit-PnPSearchQuery", - "Id": 1556, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Rank": 3 + "CommandName": "Submit-PnPSearchQuery", + "Rank": 3, + "Id": 1556 }, { - "CommandName": "Submit-PnPSearchQuery", - "Id": 1557, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Rank": 4 + "CommandName": "Submit-PnPSearchQuery", + "Rank": 4, + "Id": 1557 }, { - "CommandName": "Submit-PnPSearchQuery", - "Id": 1558, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Rank": 5 + "CommandName": "Submit-PnPSearchQuery", + "Rank": 5, + "Id": 1558 }, { - "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1559, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Rank": 1 + "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 1, + "Id": 1559 }, { - "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1560, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Rank": 2 + "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 2, + "Id": 1560 }, { - "CommandName": "Sync-PnPAppToTeams", - "Id": 1561, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Sync-PnPAppToTeams", + "Rank": 1, + "Id": 1561 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1562, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Rank": 1 + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 1, + "Id": 1562 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1563, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Rank": 2 + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 2, + "Id": 1563 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1564, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Rank": 3 + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 3, + "Id": 1564 }, { - "CommandName": "Test-PnPListItemIsRecord", - "Id": 1565, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Rank": 1 + "CommandName": "Test-PnPListItemIsRecord", + "Rank": 1, + "Id": 1565 }, { - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Id": 1566, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Rank": 1 + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Rank": 1, + "Id": 1566 }, { - "CommandName": "Test-PnPSite", - "Id": 1567, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1 + "CommandName": "Test-PnPSite", + "Rank": 1, + "Id": 1567 }, { - "CommandName": "Test-PnPSite", - "Id": 1568, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2 + "CommandName": "Test-PnPSite", + "Rank": 2, + "Id": 1568 }, { - "CommandName": "Test-PnPTenantTemplate", - "Id": 1569, "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Rank": 1 + "CommandName": "Test-PnPTenantTemplate", + "Rank": 1, + "Id": 1569 }, { - "CommandName": "Undo-PnPFileCheckedOut", - "Id": 1570, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Rank": 1 + "CommandName": "Undo-PnPFileCheckedOut", + "Rank": 1, + "Id": 1570 }, { - "CommandName": "Uninstall-PnPApp", - "Id": 1571, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Uninstall-PnPApp", + "Rank": 1, + "Id": 1571 }, { - "CommandName": "Uninstall-PnPApp", - "Id": 1572, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "CommandName": "Uninstall-PnPApp", + "Rank": 2, + "Id": 1572 }, { - "CommandName": "Unpublish-PnPApp", - "Id": 1573, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Unpublish-PnPApp", + "Rank": 1, + "Id": 1573 }, { - "CommandName": "Unpublish-PnPApp", - "Id": 1574, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "CommandName": "Unpublish-PnPApp", + "Rank": 2, + "Id": 1574 }, { - "CommandName": "Unpublish-PnPContentType", - "Id": 1575, "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Rank": 1 + "CommandName": "Unpublish-PnPContentType", + "Rank": 1, + "Id": 1575 }, { - "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1576, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1 + "CommandName": "Unpublish-PnPSyntexModel", + "Rank": 1, + "Id": 1576 }, { - "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1577, "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, + "Id": 1577 }, { - "CommandName": "Unregister-PnPHubSite", - "Id": 1578, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1 + "CommandName": "Unregister-PnPHubSite", + "Rank": 1, + "Id": 1578 }, { - "CommandName": "Update-PnPApp", - "Id": 1579, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "CommandName": "Update-PnPApp", + "Rank": 1, + "Id": 1579 }, { - "CommandName": "Update-PnPApp", - "Id": 1580, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "CommandName": "Update-PnPApp", + "Rank": 2, + "Id": 1580 }, { - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1581, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 1 + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 1, + "Id": 1581 }, { - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1582, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Rank": 2 + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 2, + "Id": 1582 }, { - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1583, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 3 + "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 3, + "Id": 1583 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1584, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Rank": 1 + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 1, + "Id": 1584 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1585, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2 + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 2, + "Id": 1585 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1586, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "Rank": 3 + "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 3, + "Id": 1586 }, { - "CommandName": "Update-PnPTeamsApp", - "Id": 1587, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Rank": 1 + "CommandName": "Update-PnPTeamsApp", + "Rank": 1, + "Id": 1587 }, { - "CommandName": "Update-PnPTeamsUser", - "Id": 1588, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1 + "CommandName": "Update-PnPTeamsUser", + "Rank": 1, + "Id": 1588 }, { - "CommandName": "Update-PnPTeamsUser", - "Id": 1589, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2 + "CommandName": "Update-PnPTeamsUser", + "Rank": 2, + "Id": 1589 }, { - "CommandName": "Update-PnPTeamsUser", - "Id": 1590, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Rank": 3 + "CommandName": "Update-PnPTeamsUser", + "Rank": 3, + "Id": 1590 }, { - "CommandName": "Update-PnPUserType", - "Id": 1591, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Rank": 1 + "CommandName": "Update-PnPUserType", + "Rank": 1, + "Id": 1591 } ] diff --git a/version.txt b/version.txt index 9279c1af5..a9efa31a4 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.100 \ No newline at end of file +2.2.101 \ No newline at end of file From e7f1b44bed73994da9633bdbafd36c1ea00ded60 Mon Sep 17 00:00:00 2001 From: Reshmee Auckloo Date: Tue, 17 Oct 2023 12:30:18 +0100 Subject: [PATCH 088/146] Fixes #3504 Add message "Team Not found" if team is not returned (#3502) * Throw Error If Team Not found * Update GetTeamsTeam.cs --------- Co-authored-by: Gautam Sheth --- src/Commands/Teams/GetTeamsTeam.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/Commands/Teams/GetTeamsTeam.cs b/src/Commands/Teams/GetTeamsTeam.cs index 2462bb72f..007c01648 100644 --- a/src/Commands/Teams/GetTeamsTeam.cs +++ b/src/Commands/Teams/GetTeamsTeam.cs @@ -29,10 +29,14 @@ protected override void ExecuteCmdlet() if (ParameterSpecified(nameof(Identity))) { var groupId = Identity.GetGroupId(Connection, AccessToken); - if (groupId != null) + if(groupId == null) { - WriteObject(TeamsUtility.GetTeamAsync(AccessToken, Connection, groupId).GetAwaiter().GetResult()); + throw new PSArgumentException("Team not found", nameof(Identity)); } + else + { + WriteObject(TeamsUtility.GetTeamAsync(AccessToken, Connection, groupId).GetAwaiter().GetResult()); + } } else { @@ -40,4 +44,4 @@ protected override void ExecuteCmdlet() } } } -} \ No newline at end of file +} From 92e00b935a5c06b1258ebd0cc8d64b98d9fc10a1 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Tue, 17 Oct 2023 14:32:44 +0300 Subject: [PATCH 089/146] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dfee25249..197f2b61f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -71,6 +71,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Improved `Add-PnPFile` cmdlet. It will now automatically checkout the file if `-CheckinType` parameter is specified. [#3403](https://github.com/pnp/powershell/pull/3403) - Improved the error message thrown when using `-ValidateConnection` with `Connect-PnPOnline` and it failing due to i.e. an expired ClientSecret so the reason of the failed connect becomes more clear. [#3440](https://github.com/pnp/powershell/pull/3440) - If a cmdlet gets renamed and an alias gets added for it for backwards compatibility, a cmdlet page for the alias will automatically be created so it can still be found in the documentation [#3455](https://github.com/pnp/powershell/pull/3455) +- `Get-PnPTeamsTeam` cmdlet throws error message if the team isn't found when `-Identity` parameter is specified. [#3502](https://github.com/pnp/powershell/pull/3502) ### Removed From 00199020d73d19db7d32acbc80494a6a614a28ee Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Wed, 18 Oct 2023 02:38:04 +0000 Subject: [PATCH 090/146] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 3182 ++++++++--------- version.txt | 2 +- 3 files changed, 1593 insertions(+), 1593 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index b4a4f255f..3f23ebd9c 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -ac1da66d7edb9b44bb480715d1564f6735e52189 \ No newline at end of file +a800046d2841445f524885fe5dfd7c6beef30c59 \ 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 087e460f1..7a0331b79 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9548 +1,9548 @@ [ { "Command": "Add-PnPAlert -List \"Demo List\"", - "CommandName": "Add-PnPAlert", "Rank": 1, + "CommandName": "Add-PnPAlert", "Id": 1 }, { "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": 2, + "CommandName": "Add-PnPAlert", "Id": 2 }, { "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "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\" -Frequency Daily -Time ((Get-Date).AddDays(1))", - "CommandName": "Add-PnPAlert", "Rank": 4, + "CommandName": "Add-PnPAlert", "Id": 4 }, { "Command": "Add-PnPApp -Path ./myapp.sppkg", - "CommandName": "Add-PnPApp", "Rank": 1, + "CommandName": "Add-PnPApp", "Id": 5 }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "CommandName": "Add-PnPApp", "Rank": 2, + "CommandName": "Add-PnPApp", "Id": 6 }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "CommandName": "Add-PnPApp", "Rank": 3, + "CommandName": "Add-PnPApp", "Id": 7 }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "CommandName": "Add-PnPApp", "Rank": 4, + "CommandName": "Add-PnPApp", "Id": 8 }, { "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", - "CommandName": "Add-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Add-PnPApplicationCustomizer", "Id": 9 }, { "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Add-PnPAvailableSiteClassification", "Id": 10 }, { "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Add-PnPAvailableSiteClassification", "Id": 11 }, { "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "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\" -RemoveExisting", - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 2, + "CommandName": "Add-PnPAzureADGroupMember", "Id": 13 }, { "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 3, + "CommandName": "Add-PnPAzureADGroupMember", "Id": 14 }, { "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "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\" -RemoveExisting", - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 2, + "CommandName": "Add-PnPAzureADGroupOwner", "Id": 16 }, { "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 3, + "CommandName": "Add-PnPAzureADGroupOwner", "Id": 17 }, { "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 1, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Id": 18 }, { "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 2, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Id": 19 }, { "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "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 (Get-PnPContentType -Identity 0x0101) -DocumentTemplate \"/_cts/Project Document/template.docx\"", - "CommandName": "Add-PnPContentType", "Rank": 2, + "CommandName": "Add-PnPContentType", "Id": 21 }, { "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "CommandName": "Add-PnPContentType", "Rank": 3, + "CommandName": "Add-PnPContentType", "Id": 22 }, { "Command": "Add-PnPContentType -Name \"Project Item\"", - "CommandName": "Add-PnPContentType", "Rank": 4, + "CommandName": "Add-PnPContentType", "Id": 23 }, { "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "CommandName": "Add-PnPContentType", "Rank": 5, + "CommandName": "Add-PnPContentType", "Id": 24 }, { "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 1, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 25 }, { "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 2, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 26 }, { "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 1, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 27 }, { "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 2, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 28 }, { "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "CommandName": "Add-PnPContentTypeToList", "Rank": 1, + "CommandName": "Add-PnPContentTypeToList", "Id": 29 }, { "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", "Rank": 1, + "CommandName": "Add-PnPCustomAction", "Id": 30 }, { "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 31 }, { "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 2, + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 32 }, { "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "CommandName": "Add-PnPDocumentSet", "Rank": 1, + "CommandName": "Add-PnPDocumentSet", "Id": 33 }, { "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", - "CommandName": "Add-PnPEventReceiver", "Rank": 1, + "CommandName": "Add-PnPEventReceiver", "Id": 34 }, { "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "CommandName": "Add-PnPEventReceiver", "Rank": 2, + "CommandName": "Add-PnPEventReceiver", "Id": 35 }, { "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", - "CommandName": "Add-PnPEventReceiver", "Rank": 3, + "CommandName": "Add-PnPEventReceiver", "Id": 36 }, { "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", - "CommandName": "Add-PnPEventReceiver", "Rank": 4, + "CommandName": "Add-PnPEventReceiver", "Id": 37 }, { "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "CommandName": "Add-PnPField", "Rank": 1, + "CommandName": "Add-PnPField", "Id": 38 }, { "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", - "CommandName": "Add-PnPField", "Rank": 2, + "CommandName": "Add-PnPField", "Id": 39 }, { "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": 3, + "CommandName": "Add-PnPField", "Id": 40 }, { "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "CommandName": "Add-PnPField", "Rank": 4, + "CommandName": "Add-PnPField", "Id": 41 }, { "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "CommandName": "Add-PnPField", "Rank": 5, + "CommandName": "Add-PnPField", "Id": 42 }, { "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "CommandName": "Add-PnPField", "Rank": 6, + "CommandName": "Add-PnPField", "Id": 43 }, { "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Add-PnPFieldToContentType", "Rank": 1, + "CommandName": "Add-PnPFieldToContentType", "Id": 44 }, { "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "CommandName": "Add-PnPFile", "Rank": 1, + "CommandName": "Add-PnPFile", "Id": 45 }, { "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "CommandName": "Add-PnPFile", "Rank": 2, + "CommandName": "Add-PnPFile", "Id": 46 }, { "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", "Rank": 3, + "CommandName": "Add-PnPFile", "Id": 47 }, { "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", "Rank": 4, + "CommandName": "Add-PnPFile", "Id": 48 }, { "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", "Rank": 5, + "CommandName": "Add-PnPFile", "Id": 49 }, { "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "CommandName": "Add-PnPFile", "Rank": 6, + "CommandName": "Add-PnPFile", "Id": 50 }, { "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "CommandName": "Add-PnPFile", "Rank": 7, + "CommandName": "Add-PnPFile", "Id": 51 }, { "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "CommandName": "Add-PnPFile", "Rank": 8, + "CommandName": "Add-PnPFile", "Id": 52 }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 1, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 53 }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 2, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 54 }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 3, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 55 }, { "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 1, + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Id": 56 }, { "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 2, + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Id": 57 }, { "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "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 -SendInvitation -Role Owner", - "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 -ExpirationDate (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFileSharingInvite", "Rank": 3, + "CommandName": "Add-PnPFileSharingInvite", "Id": 60 }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 61 }, { "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 2, + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 62 }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 3, + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 63 }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 4, + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 64 }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 5, + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 65 }, { "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFileUserSharingLink", "Rank": 1, + "CommandName": "Add-PnPFileUserSharingLink", "Id": 66 }, { "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFileUserSharingLink", "Rank": 2, + "CommandName": "Add-PnPFileUserSharingLink", "Id": 67 }, { "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit", - "CommandName": "Add-PnPFlowOwner", "Rank": 1, + "CommandName": "Add-PnPFlowOwner", "Id": 68 }, { "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": 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 CanViewWithShare", - "CommandName": "Add-PnPFlowOwner", "Rank": 3, + "CommandName": "Add-PnPFlowOwner", "Id": 70 }, { "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", - "CommandName": "Add-PnPFlowOwner", "Rank": 4, + "CommandName": "Add-PnPFlowOwner", "Id": 71 }, { "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Add-PnPFolder", "Rank": 1, + "CommandName": "Add-PnPFolder", "Id": 72 }, { "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFolder", "Rank": 2, + "CommandName": "Add-PnPFolder", "Id": 73 }, { "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "CommandName": "Add-PnPFolder", "Rank": 3, + "CommandName": "Add-PnPFolder", "Id": 74 }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 1, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 75 }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 2, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 76 }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 3, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 77 }, { "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 1, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 78 }, { "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 2, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 79 }, { "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "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 -SendInvitation -Role Owner", - "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 -ExpirationDate (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFolderSharingInvite", "Rank": 3, + "CommandName": "Add-PnPFolderSharingInvite", "Id": 82 }, { "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 1, + "CommandName": "Add-PnPFolderUserSharingLink", "Id": 83 }, { "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 2, + "CommandName": "Add-PnPFolderUserSharingLink", "Id": 84 }, { "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Add-PnPGroupMember", "Rank": 1, + "CommandName": "Add-PnPGroupMember", "Id": 85 }, { "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "CommandName": "Add-PnPGroupMember", "Rank": 2, + "CommandName": "Add-PnPGroupMember", "Id": 86 }, { "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "CommandName": "Add-PnPHtmlPublishingPageLayout", "Rank": 1, + "CommandName": "Add-PnPHtmlPublishingPageLayout", "Id": 87 }, { "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "CommandName": "Add-PnPHubSiteAssociation", "Rank": 1, + "CommandName": "Add-PnPHubSiteAssociation", "Id": 88 }, { "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 1, + "CommandName": "Add-PnPHubToHubAssociation", "Id": 89 }, { "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 2, + "CommandName": "Add-PnPHubToHubAssociation", "Id": 90 }, { "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", "Rank": 3, + "CommandName": "Add-PnPHubToHubAssociation", "Id": 91 }, { "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 1, + "CommandName": "Add-PnPJavaScriptBlock", "Id": 92 }, { "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 2, + "CommandName": "Add-PnPJavaScriptBlock", "Id": 93 }, { "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Add-PnPJavaScriptLink", "Id": 94 }, { "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "CommandName": "Add-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Add-PnPJavaScriptLink", "Id": 95 }, { "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "CommandName": "Add-PnPListDesign", "Rank": 1, + "CommandName": "Add-PnPListDesign", "Id": 96 }, { "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", "Rank": 2, + "CommandName": "Add-PnPListDesign", "Id": 97 }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 98 }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 2, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 99 }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 3, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 100 }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Add-PnPListItem", "Rank": 1, + "CommandName": "Add-PnPListItem", "Id": 101 }, { "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Add-PnPListItem", "Rank": 2, + "CommandName": "Add-PnPListItem", "Id": 102 }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "CommandName": "Add-PnPListItem", "Rank": 3, + "CommandName": "Add-PnPListItem", "Id": 103 }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "CommandName": "Add-PnPListItem", "Rank": 4, + "CommandName": "Add-PnPListItem", "Id": 104 }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "CommandName": "Add-PnPListItem", "Rank": 5, + "CommandName": "Add-PnPListItem", "Id": 105 }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "CommandName": "Add-PnPListItemAttachment", "Rank": 1, + "CommandName": "Add-PnPListItemAttachment", "Id": 106 }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "CommandName": "Add-PnPListItemAttachment", "Rank": 2, + "CommandName": "Add-PnPListItemAttachment", "Id": 107 }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "CommandName": "Add-PnPListItemAttachment", "Rank": 3, + "CommandName": "Add-PnPListItemAttachment", "Id": 108 }, { "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "CommandName": "Add-PnPListItemComment", "Rank": 1, + "CommandName": "Add-PnPListItemComment", "Id": 109 }, { "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "CommandName": "Add-PnPMasterPage", "Rank": 1, + "CommandName": "Add-PnPMasterPage", "Id": 110 }, { "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "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\" -RemoveExisting", - "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupMember", "Id": 112 }, { "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "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\" -RemoveExisting", - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupOwner", "Id": 114 }, { "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 115 }, { "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 116 }, { "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 3, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 117 }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "CommandName": "Add-PnPNavigationNode", "Rank": 1, + "CommandName": "Add-PnPNavigationNode", "Id": 118 }, { "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", - "CommandName": "Add-PnPNavigationNode", "Rank": 2, + "CommandName": "Add-PnPNavigationNode", "Id": 119 }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "CommandName": "Add-PnPNavigationNode", "Rank": 3, + "CommandName": "Add-PnPNavigationNode", "Id": 120 }, { "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "CommandName": "Add-PnPNavigationNode", "Rank": 4, + "CommandName": "Add-PnPNavigationNode", "Id": 121 }, { "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "CommandName": "Add-PnPNavigationNode", "Rank": 5, + "CommandName": "Add-PnPNavigationNode", "Id": 122 }, { "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "CommandName": "Add-PnPNavigationNode", "Rank": 6, + "CommandName": "Add-PnPNavigationNode", "Id": 123 }, { "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "CommandName": "Add-PnPNavigationNode", "Rank": 7, + "CommandName": "Add-PnPNavigationNode", "Id": 124 }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "CommandName": "Add-PnPNavigationNode", "Rank": 8, + "CommandName": "Add-PnPNavigationNode", "Id": 125 }, { "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 126 }, { "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": 2, + "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 127 }, { "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 3, + "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 128 }, { "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "CommandName": "Add-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Add-PnPOrgNewsSite", "Id": 129 }, { "Command": "Add-PnPPage -Name \"NewPage\"", - "CommandName": "Add-PnPPage", "Rank": 1, + "CommandName": "Add-PnPPage", "Id": 130 }, { "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "CommandName": "Add-PnPPage", "Rank": 2, + "CommandName": "Add-PnPPage", "Id": 131 }, { "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "CommandName": "Add-PnPPage", "Rank": 3, + "CommandName": "Add-PnPPage", "Id": 132 }, { "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "CommandName": "Add-PnPPage", "Rank": 4, + "CommandName": "Add-PnPPage", "Id": 133 }, { "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "CommandName": "Add-PnPPage", "Rank": 5, + "CommandName": "Add-PnPPage", "Id": 134 }, { "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "CommandName": "Add-PnPPage", "Rank": 6, + "CommandName": "Add-PnPPage", "Id": 135 }, { "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Add-PnPPage", "Rank": 7, + "CommandName": "Add-PnPPage", "Id": 136 }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "CommandName": "Add-PnPPage", "Rank": 8, + "CommandName": "Add-PnPPage", "Id": 137 }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Add-PnPPage", "Rank": 9, + "CommandName": "Add-PnPPage", "Id": 138 }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Add-PnPPage", "Rank": 10, + "CommandName": "Add-PnPPage", "Id": 139 }, { "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "CommandName": "Add-PnPPageImageWebPart", "Rank": 1, + "CommandName": "Add-PnPPageImageWebPart", "Id": 140 }, { "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", "Rank": 2, + "CommandName": "Add-PnPPageImageWebPart", "Id": 141 }, { "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "CommandName": "Add-PnPPageSection", "Rank": 1, + "CommandName": "Add-PnPPageSection", "Id": 142 }, { "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "CommandName": "Add-PnPPageSection", "Rank": 2, + "CommandName": "Add-PnPPageSection", "Id": 143 }, { "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "CommandName": "Add-PnPPageTextPart", "Rank": 1, + "CommandName": "Add-PnPPageTextPart", "Id": 144 }, { "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "CommandName": "Add-PnPPageTextPart", "Rank": 2, + "CommandName": "Add-PnPPageTextPart", "Id": 145 }, { "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", - "CommandName": "Add-PnPPageTextPart", "Rank": 3, + "CommandName": "Add-PnPPageTextPart", "Id": 146 }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "CommandName": "Add-PnPPageWebPart", "Rank": 1, + "CommandName": "Add-PnPPageWebPart", "Id": 147 }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "CommandName": "Add-PnPPageWebPart", "Rank": 2, + "CommandName": "Add-PnPPageWebPart", "Id": 148 }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "CommandName": "Add-PnPPageWebPart", "Rank": 3, + "CommandName": "Add-PnPPageWebPart", "Id": 149 }, { "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "CommandName": "Add-PnPPlannerBucket", "Rank": 1, + "CommandName": "Add-PnPPlannerBucket", "Id": 150 }, { "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "CommandName": "Add-PnPPlannerBucket", "Rank": 2, + "CommandName": "Add-PnPPlannerBucket", "Id": 151 }, { "Command": "Add-PnPPlannerRoster", - "CommandName": "Add-PnPPlannerRoster", "Rank": 1, + "CommandName": "Add-PnPPlannerRoster", "Id": 152 }, { "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Add-PnPPlannerRosterMember", "Id": 153 }, { "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "CommandName": "Add-PnPPlannerTask", "Rank": 1, + "CommandName": "Add-PnPPlannerTask", "Id": 154 }, { "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "CommandName": "Add-PnPPlannerTask", "Rank": 2, + "CommandName": "Add-PnPPlannerTask", "Id": 155 }, { "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "CommandName": "Add-PnPPlannerTask", "Rank": 3, + "CommandName": "Add-PnPPlannerTask", "Id": 156 }, { "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Add-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Add-PnPPublishingImageRendition", "Id": 157 }, { "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "CommandName": "Add-PnPPublishingPage", "Rank": 1, + "CommandName": "Add-PnPPublishingPage", "Id": 158 }, { "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "CommandName": "Add-PnPPublishingPage", "Rank": 2, + "CommandName": "Add-PnPPublishingPage", "Id": 159 }, { "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "CommandName": "Add-PnPPublishingPageLayout", "Rank": 1, + "CommandName": "Add-PnPPublishingPageLayout", "Id": 160 }, { "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "CommandName": "Add-PnPRoleDefinition", "Rank": 1, + "CommandName": "Add-PnPRoleDefinition", "Id": 161 }, { "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "CommandName": "Add-PnPRoleDefinition", "Rank": 2, + "CommandName": "Add-PnPRoleDefinition", "Id": 162 }, { "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "CommandName": "Add-PnPRoleDefinition", "Rank": 3, + "CommandName": "Add-PnPRoleDefinition", "Id": 163 }, { "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 164 }, { "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 165 }, { "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 3, + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 166 }, { "Command": "Add-PnPSiteCollectionAppCatalog", - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 167 }, { "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 168 }, { "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": 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 -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png", - "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/my images/logo.png\"", - "CommandName": "Add-PnPSiteDesign", "Rank": 3, + "CommandName": "Add-PnPSiteDesign", "Id": 171 }, { "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 1, + "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 172 }, { "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 2, + "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 173 }, { "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", "Rank": 3, + "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 174 }, { "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Add-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Add-PnPSiteDesignTask", "Id": 175 }, { "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "CommandName": "Add-PnPSiteDesignTask", "Rank": 2, + "CommandName": "Add-PnPSiteDesignTask", "Id": 176 }, { "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "CommandName": "Add-PnPSiteScript", "Rank": 1, + "CommandName": "Add-PnPSiteScript", "Id": 177 }, { "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "CommandName": "Add-PnPSiteScriptPackage", "Rank": 1, + "CommandName": "Add-PnPSiteScriptPackage", "Id": 178 }, { "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "CommandName": "Add-PnPSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPSiteTemplate", "Id": 179 }, { "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "CommandName": "Add-PnPStoredCredential", "Rank": 1, + "CommandName": "Add-PnPStoredCredential", "Id": 180 }, { "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "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)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"", - "CommandName": "Add-PnPStoredCredential", "Rank": 3, + "CommandName": "Add-PnPStoredCredential", "Id": 182 }, { "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "CommandName": "Add-PnPTaxonomyField", "Rank": 1, + "CommandName": "Add-PnPTaxonomyField", "Id": 183 }, { "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "CommandName": "Add-PnPTaxonomyField", "Rank": 2, + "CommandName": "Add-PnPTaxonomyField", "Id": 184 }, { "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "CommandName": "Add-PnPTeamsChannel", "Rank": 1, + "CommandName": "Add-PnPTeamsChannel", "Id": 185 }, { "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "CommandName": "Add-PnPTeamsChannel", "Rank": 2, + "CommandName": "Add-PnPTeamsChannel", "Id": 186 }, { "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "CommandName": "Add-PnPTeamsChannel", "Rank": 3, + "CommandName": "Add-PnPTeamsChannel", "Id": 187 }, { "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "CommandName": "Add-PnPTeamsChannel", "Rank": 4, + "CommandName": "Add-PnPTeamsChannel", "Id": 188 }, { "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", - "CommandName": "Add-PnpTeamsChannelUser", "Rank": 1, + "CommandName": "Add-PnpTeamsChannelUser", "Id": 189 }, { "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "CommandName": "Add-PnpTeamsChannelUser", "Rank": 2, + "CommandName": "Add-PnpTeamsChannelUser", "Id": 190 }, { "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", - "CommandName": "Add-PnPTeamsTab", "Rank": 1, + "CommandName": "Add-PnPTeamsTab", "Id": 191 }, { "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": 2, + "CommandName": "Add-PnPTeamsTab", "Id": 192 }, { "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": 3, + "CommandName": "Add-PnPTeamsTab", "Id": 193 }, { "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", "Rank": 4, + "CommandName": "Add-PnPTeamsTab", "Id": 194 }, { "Command": "Add-PnPTeamsTeam", - "CommandName": "Add-PnPTeamsTeam", "Rank": 1, + "CommandName": "Add-PnPTeamsTeam", "Id": 195 }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Add-PnPTeamsUser", "Rank": 1, + "CommandName": "Add-PnPTeamsUser", "Id": 196 }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Add-PnPTeamsUser", "Rank": 2, + "CommandName": "Add-PnPTeamsUser", "Id": 197 }, { "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "CommandName": "Add-PnPTeamsUser", "Rank": 3, + "CommandName": "Add-PnPTeamsUser", "Id": 198 }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "CommandName": "Add-PnPTeamsUser", "Rank": 4, + "CommandName": "Add-PnPTeamsUser", "Id": 199 }, { "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Add-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Add-PnPTenantCdnOrigin", "Id": 200 }, { "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequence", "Rank": 1, + "CommandName": "Add-PnPTenantSequence", "Id": 201 }, { "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequenceSite", "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSite", "Id": 202 }, { "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "CommandName": "Add-PnPTenantSequenceSubSite", "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSubSite", "Id": 203 }, { "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "CommandName": "Add-PnPTermToTerm", "Rank": 1, + "CommandName": "Add-PnPTermToTerm", "Id": 204 }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "CommandName": "Add-PnPView", "Rank": 1, + "CommandName": "Add-PnPView", "Id": 205 }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "CommandName": "Add-PnPView", "Rank": 2, + "CommandName": "Add-PnPView", "Id": 206 }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "CommandName": "Add-PnPView", "Rank": 3, + "CommandName": "Add-PnPView", "Id": 207 }, { "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": 1, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Id": 208 }, { "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": 2, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Id": 209 }, { "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", "Rank": 3, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Id": 210 }, { "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "CommandName": "Add-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Add-PnPWebhookSubscription", "Id": 211 }, { "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "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\" -ClientState \"Hello State!\"", - "CommandName": "Add-PnPWebhookSubscription", "Rank": 3, + "CommandName": "Add-PnPWebhookSubscription", "Id": 213 }, { "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 1, + "CommandName": "Add-PnPWebPartToWebPartPage", "Id": 214 }, { "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 2, + "CommandName": "Add-PnPWebPartToWebPartPage", "Id": 215 }, { "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 1, + "CommandName": "Add-PnPWebPartToWikiPage", "Id": 216 }, { "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 2, + "CommandName": "Add-PnPWebPartToWikiPage", "Id": 217 }, { "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "CommandName": "Add-PnPWikiPage", "Rank": 1, + "CommandName": "Add-PnPWikiPage", "Id": 218 }, { "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupMember", "Id": 219 }, { "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupOwner", "Id": 220 }, { "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 1, + "CommandName": "Clear-PnPDefaultColumnValues", "Id": 221 }, { "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 2, + "CommandName": "Clear-PnPDefaultColumnValues", "Id": 222 }, { "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Clear-PnPListItemAsRecord", "Rank": 1, + "CommandName": "Clear-PnPListItemAsRecord", "Id": 223 }, { "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupMember", "Id": 224 }, { "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Id": 225 }, { "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 1, + "CommandName": "Clear-PnpRecycleBinItem", "Id": 226 }, { "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 2, + "CommandName": "Clear-PnpRecycleBinItem", "Id": 227 }, { "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 3, + "CommandName": "Clear-PnpRecycleBinItem", "Id": 228 }, { "Command": "Clear-PnPTenantAppCatalogUrl", - "CommandName": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Clear-PnPTenantAppCatalogUrl", "Id": 229 }, { "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 230 }, { "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 2, + "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 231 }, { "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", - "CommandName": "Connect-PnPOnline", "Rank": 1, + "CommandName": "Connect-PnPOnline", "Id": 232 }, { "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 1, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 233 }, { "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 2, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 234 }, { "Command": "Convert-PnPSiteTemplate -Path template.xml", - "CommandName": "Convert-PnPSiteTemplate", "Rank": 1, + "CommandName": "Convert-PnPSiteTemplate", "Id": 235 }, { "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "CommandName": "Convert-PnPSiteTemplate", "Rank": 2, + "CommandName": "Convert-PnPSiteTemplate", "Id": 236 }, { "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "CommandName": "Convert-PnPSiteTemplate", "Rank": 3, + "CommandName": "Convert-PnPSiteTemplate", "Id": 237 }, { "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 1, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 238 }, { "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 2, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 239 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", "Rank": 1, + "CommandName": "ConvertTo-PnPPage", "Id": 240 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "CommandName": "ConvertTo-PnPPage", "Rank": 2, + "CommandName": "ConvertTo-PnPPage", "Id": 241 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "CommandName": "ConvertTo-PnPPage", "Rank": 3, + "CommandName": "ConvertTo-PnPPage", "Id": 242 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "CommandName": "ConvertTo-PnPPage", "Rank": 4, + "CommandName": "ConvertTo-PnPPage", "Id": 243 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", "Rank": 5, + "CommandName": "ConvertTo-PnPPage", "Id": 244 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "CommandName": "ConvertTo-PnPPage", "Rank": 6, + "CommandName": "ConvertTo-PnPPage", "Id": 245 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", "Rank": 7, + "CommandName": "ConvertTo-PnPPage", "Id": 246 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", "Rank": 8, + "CommandName": "ConvertTo-PnPPage", "Id": 247 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", "Rank": 9, + "CommandName": "ConvertTo-PnPPage", "Id": 248 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "CommandName": "ConvertTo-PnPPage", "Rank": 10, + "CommandName": "ConvertTo-PnPPage", "Id": 249 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "CommandName": "ConvertTo-PnPPage", "Rank": 11, + "CommandName": "ConvertTo-PnPPage", "Id": 250 }, { "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", "Rank": 12, + "CommandName": "ConvertTo-PnPPage", "Id": 251 }, { "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", "Rank": 13, + "CommandName": "ConvertTo-PnPPage", "Id": 252 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "CommandName": "ConvertTo-PnPPage", "Rank": 14, + "CommandName": "ConvertTo-PnPPage", "Id": 253 }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", "Rank": 1, + "CommandName": "Copy-PnPFile", "Id": 254 }, { "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFile", "Rank": 2, + "CommandName": "Copy-PnPFile", "Id": 255 }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFile", "Rank": 3, + "CommandName": "Copy-PnPFile", "Id": 256 }, { "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", "Rank": 4, + "CommandName": "Copy-PnPFile", "Id": 257 }, { "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFile", "Rank": 5, + "CommandName": "Copy-PnPFile", "Id": 258 }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFile", "Rank": 6, + "CommandName": "Copy-PnPFile", "Id": 259 }, { "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFile", "Rank": 7, + "CommandName": "Copy-PnPFile", "Id": 260 }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", "Rank": 8, + "CommandName": "Copy-PnPFile", "Id": 261 }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", "Rank": 9, + "CommandName": "Copy-PnPFile", "Id": 262 }, { "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFile", "Rank": 10, + "CommandName": "Copy-PnPFile", "Id": 263 }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", "Rank": 1, + "CommandName": "Copy-PnPFolder", "Id": 264 }, { "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFolder", "Rank": 2, + "CommandName": "Copy-PnPFolder", "Id": 265 }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFolder", "Rank": 3, + "CommandName": "Copy-PnPFolder", "Id": 266 }, { "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", "Rank": 4, + "CommandName": "Copy-PnPFolder", "Id": 267 }, { "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFolder", "Rank": 5, + "CommandName": "Copy-PnPFolder", "Id": 268 }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFolder", "Rank": 6, + "CommandName": "Copy-PnPFolder", "Id": 269 }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFolder", "Rank": 7, + "CommandName": "Copy-PnPFolder", "Id": 270 }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", "Rank": 8, + "CommandName": "Copy-PnPFolder", "Id": 271 }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", "Rank": 9, + "CommandName": "Copy-PnPFolder", "Id": 272 }, { "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFolder", "Rank": 10, + "CommandName": "Copy-PnPFolder", "Id": 273 }, { "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "CommandName": "Copy-PnPItemProxy", "Rank": 1, + "CommandName": "Copy-PnPItemProxy", "Id": 274 }, { "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "CommandName": "Copy-PnPList", "Rank": 1, + "CommandName": "Copy-PnPList", "Id": 275 }, { "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "CommandName": "Copy-PnPList", "Rank": 2, + "CommandName": "Copy-PnPList", "Id": 276 }, { "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "CommandName": "Copy-PnPList", "Rank": 3, + "CommandName": "Copy-PnPList", "Id": 277 }, { "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", - "CommandName": "Copy-PnPList", "Rank": 4, + "CommandName": "Copy-PnPList", "Id": 278 }, { "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "CommandName": "Copy-PnPTeamsTeam", "Rank": 1, + "CommandName": "Copy-PnPTeamsTeam", "Id": 279 }, { "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "CommandName": "Copy-PnPTeamsTeam", "Rank": 2, + "CommandName": "Copy-PnPTeamsTeam", "Id": 280 }, { "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": 3, + "CommandName": "Copy-PnPTeamsTeam", "Id": 281 }, { "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", "Rank": 4, + "CommandName": "Copy-PnPTeamsTeam", "Id": 282 }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Disable-PnPFeature", "Rank": 1, + "CommandName": "Disable-PnPFeature", "Id": 283 }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Disable-PnPFeature", "Rank": 2, + "CommandName": "Disable-PnPFeature", "Id": 284 }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Disable-PnPFeature", "Rank": 3, + "CommandName": "Disable-PnPFeature", "Id": 285 }, { "Command": "Disable-PnPPageScheduling", - "CommandName": "Disable-PnPPageScheduling", "Rank": 1, + "CommandName": "Disable-PnPPageScheduling", "Id": 286 }, { "Command": "Disable-PnPPowerShellTelemetry", - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 1, + "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 287 }, { "Command": "Disable-PnPPowerShellTelemetry -Force", - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 2, + "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 288 }, { "Command": "Disable-PnPSharingForNonOwnersOfSite", - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Id": 289 }, { "Command": "Disable-PnPSiteClassification", - "CommandName": "Disable-PnPSiteClassification", "Rank": 1, + "CommandName": "Disable-PnPSiteClassification", "Id": 290 }, { "Command": "Disconnect-PnPOnline", - "CommandName": "Disconnect-PnPOnline", "Rank": 1, + "CommandName": "Disconnect-PnPOnline", "Id": 291 }, { "Command": "Enable-PnPCommSite", - "CommandName": "Enable-PnPCommSite", "Rank": 1, + "CommandName": "Enable-PnPCommSite", "Id": 292 }, { "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "CommandName": "Enable-PnPCommSite", "Rank": 2, + "CommandName": "Enable-PnPCommSite", "Id": 293 }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Enable-PnPFeature", "Rank": 1, + "CommandName": "Enable-PnPFeature", "Id": 294 }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Enable-PnPFeature", "Rank": 2, + "CommandName": "Enable-PnPFeature", "Id": 295 }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Enable-PnPFeature", "Rank": 3, + "CommandName": "Enable-PnPFeature", "Id": 296 }, { "Command": "Enable-PnPPageScheduling", - "CommandName": "Enable-PnPPageScheduling", "Rank": 1, + "CommandName": "Enable-PnPPageScheduling", "Id": 297 }, { "Command": "Enable-PnPPowerShellTelemetry", - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 1, + "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 298 }, { "Command": "Enable-PnPPowerShellTelemetry -Force", - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 2, + "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 299 }, { "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "CommandName": "Enable-PnPSiteClassification", "Rank": 1, + "CommandName": "Enable-PnPSiteClassification", "Id": 300 }, { "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Enable-PnPSiteClassification", "Rank": 2, + "CommandName": "Enable-PnPSiteClassification", "Id": 301 }, { "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 1, + "CommandName": "Export-PnPListToSiteTemplate", "Id": 302 }, { "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 2, + "CommandName": "Export-PnPListToSiteTemplate", "Id": 303 }, { "Command": "Export-PnPPage -Identity Home.aspx", - "CommandName": "Export-PnPPage", "Rank": 1, + "CommandName": "Export-PnPPage", "Id": 304 }, { "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", "Rank": 1, + "CommandName": "Export-PnPPageMapping", "Id": 305 }, { "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", "Rank": 2, + "CommandName": "Export-PnPPageMapping", "Id": 306 }, { "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", "Rank": 3, + "CommandName": "Export-PnPPageMapping", "Id": 307 }, { "Command": "Export-PnPTaxonomy", - "CommandName": "Export-PnPTaxonomy", "Rank": 1, + "CommandName": "Export-PnPTaxonomy", "Id": 308 }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "CommandName": "Export-PnPTaxonomy", "Rank": 2, + "CommandName": "Export-PnPTaxonomy", "Id": 309 }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "CommandName": "Export-PnPTaxonomy", "Rank": 3, + "CommandName": "Export-PnPTaxonomy", "Id": 310 }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "CommandName": "Export-PnPTaxonomy", "Rank": 4, + "CommandName": "Export-PnPTaxonomy", "Id": 311 }, { "Command": "Export-PnPTermGroupToXml", - "CommandName": "Export-PnPTermGroupToXml", "Rank": 1, + "CommandName": "Export-PnPTermGroupToXml", "Id": 312 }, { "Command": "Export-PnPTermGroupToXml -Out output.xml", - "CommandName": "Export-PnPTermGroupToXml", "Rank": 2, + "CommandName": "Export-PnPTermGroupToXml", "Id": 313 }, { "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "CommandName": "Export-PnPTermGroupToXml", "Rank": 3, + "CommandName": "Export-PnPTermGroupToXml", "Id": 314 }, { "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Export-PnPUserInfo", "Rank": 1, + "CommandName": "Export-PnPUserInfo", "Id": 315 }, { "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", - "CommandName": "Export-PnPUserInfo", "Rank": 2, + "CommandName": "Export-PnPUserInfo", "Id": 316 }, { "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Export-PnPUserProfile", "Rank": 1, + "CommandName": "Export-PnPUserProfile", "Id": 317 }, { "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "CommandName": "Export-PnPUserProfile", "Rank": 2, + "CommandName": "Export-PnPUserProfile", "Id": 318 }, { "Command": "Find-PnPFile -Match *.master", - "CommandName": "Find-PnPFile", "Rank": 1, + "CommandName": "Find-PnPFile", "Id": 319 }, { "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "CommandName": "Find-PnPFile", "Rank": 2, + "CommandName": "Find-PnPFile", "Id": 320 }, { "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "CommandName": "Find-PnPFile", "Rank": 3, + "CommandName": "Find-PnPFile", "Id": 321 }, { "Command": "Get-PnPAccessToken", - "CommandName": "Get-PnPAccessToken", "Rank": 1, + "CommandName": "Get-PnPAccessToken", "Id": 322 }, { "Command": "Get-PnPAccessToken -Decoded", - "CommandName": "Get-PnPAccessToken", "Rank": 2, + "CommandName": "Get-PnPAccessToken", "Id": 323 }, { "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "CommandName": "Get-PnPAccessToken", "Rank": 3, + "CommandName": "Get-PnPAccessToken", "Id": 324 }, { "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "CommandName": "Get-PnPAccessToken", "Rank": 4, + "CommandName": "Get-PnPAccessToken", "Id": 325 }, { "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "CommandName": "Get-PnPAccessToken", "Rank": 5, + "CommandName": "Get-PnPAccessToken", "Id": 326 }, { "Command": "Get-PnPAlert", - "CommandName": "Get-PnPAlert", "Rank": 1, + "CommandName": "Get-PnPAlert", "Id": 327 }, { "Command": "Get-PnPAlert -List \"Demo List\"", - "CommandName": "Get-PnPAlert", "Rank": 2, + "CommandName": "Get-PnPAlert", "Id": 328 }, { "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPAlert", "Rank": 3, + "CommandName": "Get-PnPAlert", "Id": 329 }, { "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "CommandName": "Get-PnPAlert", "Rank": 4, + "CommandName": "Get-PnPAlert", "Id": 330 }, { "Command": "Get-PnPAlert -AllUsers", - "CommandName": "Get-PnPAlert", "Rank": 5, + "CommandName": "Get-PnPAlert", "Id": 331 }, { "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "CommandName": "Get-PnPAlert", "Rank": 6, + "CommandName": "Get-PnPAlert", "Id": 332 }, { "Command": "Get-PnPApp", - "CommandName": "Get-PnPApp", "Rank": 1, + "CommandName": "Get-PnPApp", "Id": 333 }, { "Command": "Get-PnPApp -Scope Site", - "CommandName": "Get-PnPApp", "Rank": 2, + "CommandName": "Get-PnPApp", "Id": 334 }, { "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPApp", "Rank": 3, + "CommandName": "Get-PnPApp", "Id": 335 }, { "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "CommandName": "Get-PnPAppErrors", "Rank": 1, + "CommandName": "Get-PnPAppErrors", "Id": 336 }, { "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "CommandName": "Get-PnPAppErrors", "Rank": 2, + "CommandName": "Get-PnPAppErrors", "Id": 337 }, { "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "CommandName": "Get-PnPAppInfo", "Rank": 1, + "CommandName": "Get-PnPAppInfo", "Id": 338 }, { "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPAppInfo", "Rank": 2, + "CommandName": "Get-PnPAppInfo", "Id": 339 }, { "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "CommandName": "Get-PnPAppInfo", "Rank": 3, + "CommandName": "Get-PnPAppInfo", "Id": 340 }, { "Command": "Get-PnPApplicationCustomizer", - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Get-PnPApplicationCustomizer", "Id": 341 }, { "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Get-PnPApplicationCustomizer", "Id": 342 }, { "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 3, + "CommandName": "Get-PnPApplicationCustomizer", "Id": 343 }, { "Command": "Get-PnPAuditing", - "CommandName": "Get-PnPAuditing", "Rank": 1, + "CommandName": "Get-PnPAuditing", "Id": 344 }, { "Command": "Get-PnPAuthenticationRealm", - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 1, + "CommandName": "Get-PnPAuthenticationRealm", "Id": 345 }, { "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 2, + "CommandName": "Get-PnPAuthenticationRealm", "Id": 346 }, { "Command": "Get-PnPAvailableLanguage", - "CommandName": "Get-PnPAvailableLanguage", "Rank": 1, + "CommandName": "Get-PnPAvailableLanguage", "Id": 347 }, { "Command": "Get-PnPAvailableSensitivityLabel", - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 1, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 348 }, { "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 2, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 349 }, { "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 3, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 350 }, { "Command": "Get-PnPAvailableSiteClassification", - "CommandName": "Get-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Get-PnPAvailableSiteClassification", "Id": 351 }, { "Command": "Get-PnPAzureACSPrincipal", - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 1, + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 352 }, { "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 2, + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 353 }, { "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 3, + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 354 }, { "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 4, + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 355 }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 356 }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 357 }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 358 }, { "Command": "Get-PnPAzureADActivityReportSignIn", - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 359 }, { "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 360 }, { "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 361 }, { "Command": "Get-PnPAzureADApp", - "CommandName": "Get-PnPAzureADApp", "Rank": 1, + "CommandName": "Get-PnPAzureADApp", "Id": 362 }, { "Command": "Get-PnPAzureADApp -Identity MyApp", - "CommandName": "Get-PnPAzureADApp", "Rank": 2, + "CommandName": "Get-PnPAzureADApp", "Id": 363 }, { "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADApp", "Rank": 3, + "CommandName": "Get-PnPAzureADApp", "Id": 364 }, { "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADApp", "Rank": 4, + "CommandName": "Get-PnPAzureADApp", "Id": 365 }, { "Command": "Get-PnPAzureADAppPermission", - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 1, + "CommandName": "Get-PnPAzureADAppPermission", "Id": 366 }, { "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 2, + "CommandName": "Get-PnPAzureADAppPermission", "Id": 367 }, { "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 3, + "CommandName": "Get-PnPAzureADAppPermission", "Id": 368 }, { "Command": "Get-PnPAzureADAppSitePermission", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 369 }, { "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 370 }, { "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 3, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 371 }, { "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 4, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 372 }, { "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 5, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 373 }, { "Command": "Get-PnPAzureADGroup", - "CommandName": "Get-PnPAzureADGroup", "Rank": 1, + "CommandName": "Get-PnPAzureADGroup", "Id": 374 }, { "Command": "Get-PnPAzureADGroup -Identity $groupId", - "CommandName": "Get-PnPAzureADGroup", "Rank": 2, + "CommandName": "Get-PnPAzureADGroup", "Id": 375 }, { "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "CommandName": "Get-PnPAzureADGroup", "Rank": 3, + "CommandName": "Get-PnPAzureADGroup", "Id": 376 }, { "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPAzureADGroup", "Rank": 4, + "CommandName": "Get-PnPAzureADGroup", "Id": 377 }, { "Command": "Get-PnPAzureADGroup -Identity $group", - "CommandName": "Get-PnPAzureADGroup", "Rank": 5, + "CommandName": "Get-PnPAzureADGroup", "Id": 378 }, { "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Get-PnPAzureADGroupMember", "Id": 379 }, { "Command": "Get-PnPAzureADGroupMember -Identity $group", - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 2, + "CommandName": "Get-PnPAzureADGroupMember", "Id": 380 }, { "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Get-PnPAzureADGroupOwner", "Id": 381 }, { "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 2, + "CommandName": "Get-PnPAzureADGroupOwner", "Id": 382 }, { "Command": "Get-PnPAzureADServicePrincipal", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 383 }, { "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 384 }, { "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 3, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 385 }, { "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 4, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 386 }, { "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 5, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 387 }, { "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 388 }, { "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 389 }, { "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 390 }, { "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 391 }, { "Command": "Get-PnPAzureADUser", - "CommandName": "Get-PnPAzureADUser", "Rank": 1, + "CommandName": "Get-PnPAzureADUser", "Id": 392 }, { "Command": "Get-PnPAzureADUser -EndIndex 50", - "CommandName": "Get-PnPAzureADUser", "Rank": 2, + "CommandName": "Get-PnPAzureADUser", "Id": 393 }, { "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPAzureADUser", "Rank": 3, + "CommandName": "Get-PnPAzureADUser", "Id": 394 }, { "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "CommandName": "Get-PnPAzureADUser", "Rank": 4, + "CommandName": "Get-PnPAzureADUser", "Id": 395 }, { "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "CommandName": "Get-PnPAzureADUser", "Rank": 5, + "CommandName": "Get-PnPAzureADUser", "Id": 396 }, { "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "CommandName": "Get-PnPAzureADUser", "Rank": 6, + "CommandName": "Get-PnPAzureADUser", "Id": 397 }, { "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "CommandName": "Get-PnPAzureADUser", "Rank": 7, + "CommandName": "Get-PnPAzureADUser", "Id": 398 }, { "Command": "Get-PnPAzureADUser -Delta", - "CommandName": "Get-PnPAzureADUser", "Rank": 8, + "CommandName": "Get-PnPAzureADUser", "Id": 399 }, { "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "CommandName": "Get-PnPAzureADUser", "Rank": 9, + "CommandName": "Get-PnPAzureADUser", "Id": 400 }, { "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "CommandName": "Get-PnPAzureADUser", "Rank": 10, + "CommandName": "Get-PnPAzureADUser", "Id": 401 }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "CommandName": "Get-PnPAzureCertificate", "Rank": 1, + "CommandName": "Get-PnPAzureCertificate", "Id": 402 }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "CommandName": "Get-PnPAzureCertificate", "Rank": 2, + "CommandName": "Get-PnPAzureCertificate", "Id": 403 }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "CommandName": "Get-PnPAzureCertificate", "Rank": 3, + "CommandName": "Get-PnPAzureCertificate", "Id": 404 }, { "Command": "Get-PnPBrowserIdleSignout", - "CommandName": "Get-PnPBrowserIdleSignout", "Rank": 1, + "CommandName": "Get-PnPBrowserIdleSignout", "Id": 405 }, { "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 1, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 406 }, { "Command": "Get-PnPBuiltInDesignPackageVisibility", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 407 }, { "Command": "Get-PnPBuiltInSiteTemplateSettings", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 408 }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 2, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 409 }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 3, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 410 }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 4, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 411 }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 5, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 412 }, { "Command": "Get-PnPChangeLog", - "CommandName": "Get-PnPChangeLog", "Rank": 1, + "CommandName": "Get-PnPChangeLog", "Id": 413 }, { "Command": "Get-PnPChangeLog -Nightly", - "CommandName": "Get-PnPChangeLog", "Rank": 2, + "CommandName": "Get-PnPChangeLog", "Id": 414 }, { "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 1, + "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 415 }, { "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 2, + "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 416 }, { "Command": "Get-PnPContentType", - "CommandName": "Get-PnPContentType", "Rank": 1, + "CommandName": "Get-PnPContentType", "Id": 417 }, { "Command": "Get-PnPContentType -InSiteHierarchy", - "CommandName": "Get-PnPContentType", "Rank": 2, + "CommandName": "Get-PnPContentType", "Id": 418 }, { "Command": "Get-PnPContentType -Identity \"Project Document\"", - "CommandName": "Get-PnPContentType", "Rank": 3, + "CommandName": "Get-PnPContentType", "Id": 419 }, { "Command": "Get-PnPContentType -List \"Documents\"", - "CommandName": "Get-PnPContentType", "Rank": 4, + "CommandName": "Get-PnPContentType", "Id": 420 }, { "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "CommandName": "Get-PnPContentTypePublishingStatus", "Rank": 1, + "CommandName": "Get-PnPContentTypePublishingStatus", "Id": 421 }, { "Command": "Get-PnPCustomAction", - "CommandName": "Get-PnPCustomAction", "Rank": 1, + "CommandName": "Get-PnPCustomAction", "Id": 422 }, { "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPCustomAction", "Rank": 2, + "CommandName": "Get-PnPCustomAction", "Id": 423 }, { "Command": "Get-PnPCustomAction -Scope web", - "CommandName": "Get-PnPCustomAction", "Rank": 3, + "CommandName": "Get-PnPCustomAction", "Id": 424 }, { "Command": "Get-PnPDeletedMicrosoft365Group", - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 425 }, { "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 2, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 426 }, { "Command": "Get-PnPDeletedTeam", - "CommandName": "Get-PnPDeletedTeam", "Rank": 1, + "CommandName": "Get-PnPDeletedTeam", "Id": 427 }, { "Command": "Get-PnPDiagnostics", - "CommandName": "Get-PnPDiagnostics", "Rank": 1, + "CommandName": "Get-PnPDiagnostics", "Id": 428 }, { "Command": "Get-PnPDisableSpacesActivation", - "CommandName": "Get-PnPDisableSpacesActivation", "Rank": 1, + "CommandName": "Get-PnPDisableSpacesActivation", "Id": 429 }, { "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 1, + "CommandName": "Get-PnPDocumentSetTemplate", "Id": 430 }, { "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 2, + "CommandName": "Get-PnPDocumentSetTemplate", "Id": 431 }, { "Command": "Get-PnPEventReceiver", - "CommandName": "Get-PnPEventReceiver", "Rank": 1, + "CommandName": "Get-PnPEventReceiver", "Id": 432 }, { "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver", "Rank": 2, + "CommandName": "Get-PnPEventReceiver", "Id": 433 }, { "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver", "Rank": 3, + "CommandName": "Get-PnPEventReceiver", "Id": 434 }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "CommandName": "Get-PnPEventReceiver", "Rank": 4, + "CommandName": "Get-PnPEventReceiver", "Id": 435 }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver", "Rank": 5, + "CommandName": "Get-PnPEventReceiver", "Id": 436 }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver", "Rank": 6, + "CommandName": "Get-PnPEventReceiver", "Id": 437 }, { "Command": "Get-PnPEventReceiver -Scope Site", - "CommandName": "Get-PnPEventReceiver", "Rank": 7, + "CommandName": "Get-PnPEventReceiver", "Id": 438 }, { "Command": "Get-PnPEventReceiver -Scope Web", - "CommandName": "Get-PnPEventReceiver", "Rank": 8, + "CommandName": "Get-PnPEventReceiver", "Id": 439 }, { "Command": "Get-PnPEventReceiver -Scope All", - "CommandName": "Get-PnPEventReceiver", "Rank": 9, + "CommandName": "Get-PnPEventReceiver", "Id": 440 }, { "Command": "Get-PnPException", - "CommandName": "Get-PnPException", "Rank": 1, + "CommandName": "Get-PnPException", "Id": 441 }, { "Command": "Get-PnPException -All", - "CommandName": "Get-PnPException", "Rank": 2, + "CommandName": "Get-PnPException", "Id": 442 }, { "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "CommandName": "Get-PnPExternalUser", "Rank": 1, + "CommandName": "Get-PnPExternalUser", "Id": 443 }, { "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "CommandName": "Get-PnPExternalUser", "Rank": 2, + "CommandName": "Get-PnPExternalUser", "Id": 444 }, { "Command": "Get-PnPFeature", - "CommandName": "Get-PnPFeature", "Rank": 1, + "CommandName": "Get-PnPFeature", "Id": 445 }, { "Command": "Get-PnPFeature -Scope Site", - "CommandName": "Get-PnPFeature", "Rank": 2, + "CommandName": "Get-PnPFeature", "Id": 446 }, { "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPFeature", "Rank": 3, + "CommandName": "Get-PnPFeature", "Id": 447 }, { "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "CommandName": "Get-PnPFeature", "Rank": 4, + "CommandName": "Get-PnPFeature", "Id": 448 }, { "Command": "Get-PnPField", - "CommandName": "Get-PnPField", "Rank": 1, + "CommandName": "Get-PnPField", "Id": 449 }, { "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Get-PnPField", "Rank": 2, + "CommandName": "Get-PnPField", "Id": 450 }, { "Command": "Get-PnPField -Group \"Custom Columns\"", - "CommandName": "Get-PnPField", "Rank": 3, + "CommandName": "Get-PnPField", "Id": 451 }, { "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "CommandName": "Get-PnPFile", "Rank": 1, + "CommandName": "Get-PnPFile", "Id": 452 }, { "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "CommandName": "Get-PnPFile", "Rank": 2, + "CommandName": "Get-PnPFile", "Id": 453 }, { "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "CommandName": "Get-PnPFile", "Rank": 3, + "CommandName": "Get-PnPFile", "Id": 454 }, { "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "CommandName": "Get-PnPFile", "Rank": 4, + "CommandName": "Get-PnPFile", "Id": 455 }, { "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "CommandName": "Get-PnPFile", "Rank": 5, + "CommandName": "Get-PnPFile", "Id": 456 }, { "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "CommandName": "Get-PnPFile", "Rank": 6, + "CommandName": "Get-PnPFile", "Id": 457 }, { "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "CommandName": "Get-PnPFile", "Rank": 7, + "CommandName": "Get-PnPFile", "Id": 458 }, { "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Get-PnPFileSharingLink", "Rank": 1, + "CommandName": "Get-PnPFileSharingLink", "Id": 459 }, { "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "CommandName": "Get-PnPFileVersion", "Rank": 1, + "CommandName": "Get-PnPFileVersion", "Id": 460 }, { "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "CommandName": "Get-PnPFileVersion", "Rank": 2, + "CommandName": "Get-PnPFileVersion", "Id": 461 }, { "Command": "Get-PnPFlow -AsAdmin", - "CommandName": "Get-PnPFlow", "Rank": 1, + "CommandName": "Get-PnPFlow", "Id": 462 }, { "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "CommandName": "Get-PnPFlow", "Rank": 2, + "CommandName": "Get-PnPFlow", "Id": 463 }, { "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "CommandName": "Get-PnPFlow", "Rank": 3, + "CommandName": "Get-PnPFlow", "Id": 464 }, { "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "CommandName": "Get-PnPFlowOwner", "Rank": 1, + "CommandName": "Get-PnPFlowOwner", "Id": 465 }, { "Command": "Get-PnPFolder", - "CommandName": "Get-PnPFolder", "Rank": 1, + "CommandName": "Get-PnPFolder", "Id": 466 }, { "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "CommandName": "Get-PnPFolder", "Rank": 2, + "CommandName": "Get-PnPFolder", "Id": 467 }, { "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "CommandName": "Get-PnPFolder", "Rank": 3, + "CommandName": "Get-PnPFolder", "Id": 468 }, { "Command": "Get-PnPFolder -List \"Shared Documents\"", - "CommandName": "Get-PnPFolder", "Rank": 4, + "CommandName": "Get-PnPFolder", "Id": 469 }, { "Command": "Get-PnPFolderFile", - "CommandName": "Get-PnPFolderFile", "Rank": 1, + "CommandName": "Get-PnPFolderFile", "Id": 470 }, { "Command": "Get-PnPFolderFile -Recurse", - "CommandName": "Get-PnPFolderFile", "Rank": 2, + "CommandName": "Get-PnPFolderFile", "Id": 471 }, { "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderFile", "Rank": 3, + "CommandName": "Get-PnPFolderFile", "Id": 472 }, { "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderFile", "Rank": 4, + "CommandName": "Get-PnPFolderFile", "Id": 473 }, { "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderFile", "Rank": 5, + "CommandName": "Get-PnPFolderFile", "Id": 474 }, { "Command": "Get-PnPFolderFolder", - "CommandName": "Get-PnPFolderFolder", "Rank": 1, + "CommandName": "Get-PnPFolderFolder", "Id": 475 }, { "Command": "Get-PnPFolderFolder -Recurse", - "CommandName": "Get-PnPFolderFolder", "Rank": 2, + "CommandName": "Get-PnPFolderFolder", "Id": 476 }, { "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderFolder", "Rank": 3, + "CommandName": "Get-PnPFolderFolder", "Id": 477 }, { "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "CommandName": "Get-PnPFolderFolder", "Rank": 4, + "CommandName": "Get-PnPFolderFolder", "Id": 478 }, { "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "CommandName": "Get-PnPFolderFolder", "Rank": 5, + "CommandName": "Get-PnPFolderFolder", "Id": 479 }, { "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderFolder", "Rank": 6, + "CommandName": "Get-PnPFolderFolder", "Id": 480 }, { "Command": "Get-PnPFolderItem", - "CommandName": "Get-PnPFolderItem", "Rank": 1, + "CommandName": "Get-PnPFolderItem", "Id": 481 }, { "Command": "Get-PnPFolderItem -Recurse", - "CommandName": "Get-PnPFolderItem", "Rank": 2, + "CommandName": "Get-PnPFolderItem", "Id": 482 }, { "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderItem", "Rank": 3, + "CommandName": "Get-PnPFolderItem", "Id": 483 }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderItem", "Rank": 4, + "CommandName": "Get-PnPFolderItem", "Id": 484 }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "CommandName": "Get-PnPFolderItem", "Rank": 5, + "CommandName": "Get-PnPFolderItem", "Id": 485 }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderItem", "Rank": 6, + "CommandName": "Get-PnPFolderItem", "Id": 486 }, { "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Get-PnPFolderSharingLink", "Rank": 1, + "CommandName": "Get-PnPFolderSharingLink", "Id": 487 }, { "Command": "Get-PnPFolderStorageMetric", - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 1, + "CommandName": "Get-PnPFolderStorageMetric", "Id": 488 }, { "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 2, + "CommandName": "Get-PnPFolderStorageMetric", "Id": 489 }, { "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 3, + "CommandName": "Get-PnPFolderStorageMetric", "Id": 490 }, { "Command": "Get-PnPFooter", - "CommandName": "Get-PnPFooter", "Rank": 1, + "CommandName": "Get-PnPFooter", "Id": 491 }, { "Command": "Get-PnPGraphAccessToken", - "CommandName": "Get-PnPGraphAccessToken", "Rank": 1, + "CommandName": "Get-PnPGraphAccessToken", "Id": 492 }, { "Command": "Get-PnPGraphAccessToken -Decoded", - "CommandName": "Get-PnPGraphAccessToken", "Rank": 2, + "CommandName": "Get-PnPGraphAccessToken", "Id": 493 }, { "Command": "Get-PnPGraphSubscription", - "CommandName": "Get-PnPGraphSubscription", "Rank": 1, + "CommandName": "Get-PnPGraphSubscription", "Id": 494 }, { "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPGraphSubscription", "Rank": 2, + "CommandName": "Get-PnPGraphSubscription", "Id": 495 }, { "Command": "Get-PnPGroup", - "CommandName": "Get-PnPGroup", "Rank": 1, + "CommandName": "Get-PnPGroup", "Id": 496 }, { "Command": "Get-PnPGroup -Identity 'My Site Users'", - "CommandName": "Get-PnPGroup", "Rank": 2, + "CommandName": "Get-PnPGroup", "Id": 497 }, { "Command": "Get-PnPGroup -AssociatedMemberGroup", - "CommandName": "Get-PnPGroup", "Rank": 3, + "CommandName": "Get-PnPGroup", "Id": 498 }, { "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "CommandName": "Get-PnPGroupMember", "Rank": 1, + "CommandName": "Get-PnPGroupMember", "Id": 499 }, { "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "CommandName": "Get-PnPGroupMember", "Rank": 2, + "CommandName": "Get-PnPGroupMember", "Id": 500 }, { "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "CommandName": "Get-PnPGroupPermissions", "Rank": 1, + "CommandName": "Get-PnPGroupPermissions", "Id": 501 }, { "Command": "Get-PnPHideDefaultThemes", - "CommandName": "Get-PnPHideDefaultThemes", "Rank": 1, + "CommandName": "Get-PnPHideDefaultThemes", "Id": 502 }, { "Command": "Get-PnPHomePage", - "CommandName": "Get-PnPHomePage", "Rank": 1, + "CommandName": "Get-PnPHomePage", "Id": 503 }, { "Command": "Get-PnPHomeSite", - "CommandName": "Get-PnPHomeSite", "Rank": 1, + "CommandName": "Get-PnPHomeSite", "Id": 504 }, { "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "CommandName": "Get-PnPHomeSite", "Rank": 2, + "CommandName": "Get-PnPHomeSite", "Id": 505 }, { "Command": "Get-PnPHomeSite -Detailed", - "CommandName": "Get-PnPHomeSite", "Rank": 3, + "CommandName": "Get-PnPHomeSite", "Id": 506 }, { "Command": "Get-PnPHubSite", - "CommandName": "Get-PnPHubSite", "Rank": 1, + "CommandName": "Get-PnPHubSite", "Id": 507 }, { "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSite", "Rank": 2, + "CommandName": "Get-PnPHubSite", "Id": 508 }, { "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "CommandName": "Get-PnPHubSite", "Rank": 3, + "CommandName": "Get-PnPHubSite", "Id": 509 }, { "Command": "Get-PnPHubSiteChild", - "CommandName": "Get-PnPHubSiteChild", "Rank": 1, + "CommandName": "Get-PnPHubSiteChild", "Id": 510 }, { "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSiteChild", "Rank": 2, + "CommandName": "Get-PnPHubSiteChild", "Id": 511 }, { "Command": "Get-PnPInPlaceRecordsManagement", - "CommandName": "Get-PnPInPlaceRecordsManagement", "Rank": 1, + "CommandName": "Get-PnPInPlaceRecordsManagement", "Id": 512 }, { "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "CommandName": "Get-PnPIsSiteAliasAvailable", "Rank": 1, + "CommandName": "Get-PnPIsSiteAliasAvailable", "Id": 513 }, { "Command": "Get-PnPJavaScriptLink", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Get-PnPJavaScriptLink", "Id": 514 }, { "Command": "Get-PnPJavaScriptLink -Scope All", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Get-PnPJavaScriptLink", "Id": 515 }, { "Command": "Get-PnPJavaScriptLink -Scope Web", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 3, + "CommandName": "Get-PnPJavaScriptLink", "Id": 516 }, { "Command": "Get-PnPJavaScriptLink -Scope Site", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 4, + "CommandName": "Get-PnPJavaScriptLink", "Id": 517 }, { "Command": "Get-PnPJavaScriptLink -Name Test", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 5, + "CommandName": "Get-PnPJavaScriptLink", "Id": 518 }, { "Command": "Get-PnPKnowledgeHubSite", - "CommandName": "Get-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Get-PnPKnowledgeHubSite", "Id": 519 }, { "Command": "Get-PnPLabel", - "CommandName": "Get-PnPLabel", "Rank": 1, + "CommandName": "Get-PnPLabel", "Id": 520 }, { "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "CommandName": "Get-PnPLabel", "Rank": 2, + "CommandName": "Get-PnPLabel", "Id": 521 }, { "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "CommandName": "Get-PnPLargeListOperationStatus", "Rank": 1, + "CommandName": "Get-PnPLargeListOperationStatus", "Id": 522 }, { "Command": "Get-PnPList", - "CommandName": "Get-PnPList", "Rank": 1, + "CommandName": "Get-PnPList", "Id": 523 }, { "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Get-PnPList", "Rank": 2, + "CommandName": "Get-PnPList", "Id": 524 }, { "Command": "Get-PnPList -Identity Lists/Announcements", - "CommandName": "Get-PnPList", "Rank": 3, + "CommandName": "Get-PnPList", "Id": 525 }, { "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "CommandName": "Get-PnPList", "Rank": 4, + "CommandName": "Get-PnPList", "Id": 526 }, { "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "CommandName": "Get-PnPList", "Rank": 5, + "CommandName": "Get-PnPList", "Id": 527 }, { "Command": "Get-PnPListDesign", - "CommandName": "Get-PnPListDesign", "Rank": 1, + "CommandName": "Get-PnPListDesign", "Id": 528 }, { "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPListDesign", "Rank": 2, + "CommandName": "Get-PnPListDesign", "Id": 529 }, { "Command": "Get-PnPListDesign -Identity ListEvent", - "CommandName": "Get-PnPListDesign", "Rank": 3, + "CommandName": "Get-PnPListDesign", "Id": 530 }, { "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "CommandName": "Get-PnPListInformationRightsManagement", "Rank": 1, + "CommandName": "Get-PnPListInformationRightsManagement", "Id": 531 }, { "Command": "Get-PnPListItem -List Tasks", - "CommandName": "Get-PnPListItem", "Rank": 1, + "CommandName": "Get-PnPListItem", "Id": 532 }, { "Command": "Get-PnPListItem -List Tasks -Id 1", - "CommandName": "Get-PnPListItem", "Rank": 2, + "CommandName": "Get-PnPListItem", "Id": 533 }, { "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "CommandName": "Get-PnPListItem", "Rank": 3, + "CommandName": "Get-PnPListItem", "Id": 534 }, { "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "CommandName": "Get-PnPListItem", "Rank": 4, + "CommandName": "Get-PnPListItem", "Id": 535 }, { "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "CommandName": "Get-PnPListItem", "Rank": 5, + "CommandName": "Get-PnPListItem", "Id": 536 }, { "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "CommandName": "Get-PnPListItem", "Rank": 6, + "CommandName": "Get-PnPListItem", "Id": 537 }, { "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "CommandName": "Get-PnPListItem", "Rank": 7, + "CommandName": "Get-PnPListItem", "Id": 538 }, { "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "CommandName": "Get-PnPListItem", "Rank": 8, + "CommandName": "Get-PnPListItem", "Id": 539 }, { "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "CommandName": "Get-PnPListItem", "Rank": 9, + "CommandName": "Get-PnPListItem", "Id": 540 }, { "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "CommandName": "Get-PnPListItemAttachment", "Rank": 1, + "CommandName": "Get-PnPListItemAttachment", "Id": 541 }, { "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "CommandName": "Get-PnPListItemAttachment", "Rank": 2, + "CommandName": "Get-PnPListItemAttachment", "Id": 542 }, { "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "CommandName": "Get-PnPListItemComment", "Rank": 1, + "CommandName": "Get-PnPListItemComment", "Id": 543 }, { "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "CommandName": "Get-PnPListItemPermission", "Rank": 1, + "CommandName": "Get-PnPListItemPermission", "Id": 544 }, { "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "CommandName": "Get-PnPListItemVersion", "Rank": 1, + "CommandName": "Get-PnPListItemVersion", "Id": 545 }, { "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "CommandName": "Get-PnPListPermissions", "Rank": 1, + "CommandName": "Get-PnPListPermissions", "Id": 546 }, { "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "CommandName": "Get-PnPListPermissions", "Rank": 2, + "CommandName": "Get-PnPListPermissions", "Id": 547 }, { "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "CommandName": "Get-PnPListRecordDeclaration", "Rank": 1, + "CommandName": "Get-PnPListRecordDeclaration", "Id": 548 }, { "Command": "Get-PnPMasterPage", - "CommandName": "Get-PnPMasterPage", "Rank": 1, + "CommandName": "Get-PnPMasterPage", "Id": 549 }, { "Command": "Get-PnPMessageCenterAnnouncement", - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 1, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 550 }, { "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 2, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 551 }, { "Command": "Get-PnPMicrosoft365ExpiringGroup", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 552 }, { "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 553 }, { "Command": "Get-PnPMicrosoft365Group", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 554 }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 555 }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 556 }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 557 }, { "Command": "Get-PnPMicrosoft365Group -Identity $group", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 558 }, { "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 559 }, { "Command": "Get-PnPMicrosoft365GroupEndpoint", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 560 }, { "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 561 }, { "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 562 }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 563 }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 564 }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 565 }, { "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 566 }, { "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 567 }, { "Command": "Get-PnPMicrosoft365GroupSettings", - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 568 }, { "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 569 }, { "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 570 }, { "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 571 }, { "Command": "Get-PnPMicrosoft365GroupTeam", - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 572 }, { "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 573 }, { "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 574 }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 575 }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 576 }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 577 }, { "Command": "Get-PnPNavigationNode", - "CommandName": "Get-PnPNavigationNode", "Rank": 1, + "CommandName": "Get-PnPNavigationNode", "Id": 578 }, { "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "CommandName": "Get-PnPNavigationNode", "Rank": 2, + "CommandName": "Get-PnPNavigationNode", "Id": 579 }, { "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "CommandName": "Get-PnPNavigationNode", "Rank": 3, + "CommandName": "Get-PnPNavigationNode", "Id": 580 }, { "Command": "Get-PnPOrgAssetsLibrary", - "CommandName": "Get-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Get-PnPOrgAssetsLibrary", "Id": 581 }, { "Command": "Get-PnPOrgNewsSite", - "CommandName": "Get-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Get-PnPOrgNewsSite", "Id": 582 }, { "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "CommandName": "Get-PnPPage", "Rank": 1, + "CommandName": "Get-PnPPage", "Id": 583 }, { "Command": "Get-PnPPage \"MyPage\"", - "CommandName": "Get-PnPPage", "Rank": 2, + "CommandName": "Get-PnPPage", "Id": 584 }, { "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "CommandName": "Get-PnPPage", "Rank": 3, + "CommandName": "Get-PnPPage", "Id": 585 }, { "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "CommandName": "Get-PnPPage", "Rank": 4, + "CommandName": "Get-PnPPage", "Id": 586 }, { "Command": "Get-PnPPageComponent -Page Home", - "CommandName": "Get-PnPPageComponent", "Rank": 1, + "CommandName": "Get-PnPPageComponent", "Id": 587 }, { "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPPageComponent", "Rank": 2, + "CommandName": "Get-PnPPageComponent", "Id": 588 }, { "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "CommandName": "Get-PnPPageComponent", "Rank": 3, + "CommandName": "Get-PnPPageComponent", "Id": 589 }, { "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerBucket", "Rank": 1, + "CommandName": "Get-PnPPlannerBucket", "Id": 590 }, { "Command": "Get-PnPPlannerConfiguration", - "CommandName": "Get-PnPPlannerConfiguration", "Rank": 1, + "CommandName": "Get-PnPPlannerConfiguration", "Id": 591 }, { "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "CommandName": "Get-PnPPlannerPlan", "Rank": 1, + "CommandName": "Get-PnPPlannerPlan", "Id": 592 }, { "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "CommandName": "Get-PnPPlannerPlan", "Rank": 2, + "CommandName": "Get-PnPPlannerPlan", "Id": 593 }, { "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "CommandName": "Get-PnPPlannerPlan", "Rank": 3, + "CommandName": "Get-PnPPlannerPlan", "Id": 594 }, { "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Get-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Get-PnPPlannerRosterMember", "Id": 595 }, { "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 1, + "CommandName": "Get-PnPPlannerRosterPlan", "Id": 596 }, { "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 2, + "CommandName": "Get-PnPPlannerRosterPlan", "Id": 597 }, { "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerTask", "Rank": 1, + "CommandName": "Get-PnPPlannerTask", "Id": 598 }, { "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask", "Rank": 2, + "CommandName": "Get-PnPPlannerTask", "Id": 599 }, { "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask", "Rank": 3, + "CommandName": "Get-PnPPlannerTask", "Id": 600 }, { "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerUserPolicy", "Rank": 1, + "CommandName": "Get-PnPPlannerUserPolicy", "Id": 601 }, { "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "CommandName": "Get-PnPPowerPlatformConnector", "Rank": 1, + "CommandName": "Get-PnPPowerPlatformConnector", "Id": 602 }, { "Command": "Get-PnPPowerPlatformEnvironment", - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 1, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 603 }, { "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 2, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 604 }, { "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 3, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 605 }, { "Command": "Get-PnPPowerShellTelemetryEnabled", - "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, + "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Id": 606 }, { "Command": "Get-PnPPropertyBag", - "CommandName": "Get-PnPPropertyBag", "Rank": 1, + "CommandName": "Get-PnPPropertyBag", "Id": 607 }, { "Command": "Get-PnPPropertyBag -Key MyKey", - "CommandName": "Get-PnPPropertyBag", "Rank": 2, + "CommandName": "Get-PnPPropertyBag", "Id": 608 }, { "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "CommandName": "Get-PnPPropertyBag", "Rank": 3, + "CommandName": "Get-PnPPropertyBag", "Id": 609 }, { "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag", "Rank": 4, + "CommandName": "Get-PnPPropertyBag", "Id": 610 }, { "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag", "Rank": 5, + "CommandName": "Get-PnPPropertyBag", "Id": 611 }, { "Command": "Get-PnPPublishingImageRendition", - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Get-PnPPublishingImageRendition", "Id": 612 }, { "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 2, + "CommandName": "Get-PnPPublishingImageRendition", "Id": 613 }, { "Command": "Get-PnPPublishingImageRendition -Identity 2", - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 3, + "CommandName": "Get-PnPPublishingImageRendition", "Id": 614 }, { "Command": "Get-PnPRecycleBinItem", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 1, + "CommandName": "Get-PnPRecycleBinItem", "Id": 615 }, { "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 2, + "CommandName": "Get-PnPRecycleBinItem", "Id": 616 }, { "Command": "Get-PnPRecycleBinItem -FirstStage", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 3, + "CommandName": "Get-PnPRecycleBinItem", "Id": 617 }, { "Command": "Get-PnPRecycleBinItem -SecondStage", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 4, + "CommandName": "Get-PnPRecycleBinItem", "Id": 618 }, { "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 5, + "CommandName": "Get-PnPRecycleBinItem", "Id": 619 }, { "Command": "Get-PnPRequestAccessEmails", - "CommandName": "Get-PnPRequestAccessEmails", "Rank": 1, + "CommandName": "Get-PnPRequestAccessEmails", "Id": 620 }, { "Command": "Get-PnPRetentionLabel", - "CommandName": "Get-PnPRetentionLabel", "Rank": 1, + "CommandName": "Get-PnPRetentionLabel", "Id": 621 }, { "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", - "CommandName": "Get-PnPRetentionLabel", "Rank": 2, + "CommandName": "Get-PnPRetentionLabel", "Id": 622 }, { "Command": "Get-PnPRoleDefinition", - "CommandName": "Get-PnPRoleDefinition", "Rank": 1, + "CommandName": "Get-PnPRoleDefinition", "Id": 623 }, { "Command": "Get-PnPRoleDefinition -Identity Read", - "CommandName": "Get-PnPRoleDefinition", "Rank": 2, + "CommandName": "Get-PnPRoleDefinition", "Id": 624 }, { "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "CommandName": "Get-PnPRoleDefinition", "Rank": 3, + "CommandName": "Get-PnPRoleDefinition", "Id": 625 }, { "Command": "Get-PnPSearchConfiguration", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Get-PnPSearchConfiguration", "Id": 626 }, { "Command": "Get-PnPSearchConfiguration -Scope Site", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Get-PnPSearchConfiguration", "Id": 627 }, { "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Get-PnPSearchConfiguration", "Id": 628 }, { "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Get-PnPSearchConfiguration", "Id": 629 }, { "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 5, + "CommandName": "Get-PnPSearchConfiguration", "Id": 630 }, { "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 6, + "CommandName": "Get-PnPSearchConfiguration", "Id": 631 }, { "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 7, + "CommandName": "Get-PnPSearchConfiguration", "Id": 632 }, { "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 8, + "CommandName": "Get-PnPSearchConfiguration", "Id": 633 }, { "Command": "Get-PnPSearchCrawlLog", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 1, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 634 }, { "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 2, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 635 }, { "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 3, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 636 }, { "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 4, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 637 }, { "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 5, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 638 }, { "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 6, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 639 }, { "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 7, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 640 }, { "Command": "Get-PnPSearchSettings", - "CommandName": "Get-PnPSearchSettings", "Rank": 1, + "CommandName": "Get-PnPSearchSettings", "Id": 641 }, { "Command": "Get-PnPServiceCurrentHealth", - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 1, + "CommandName": "Get-PnPServiceCurrentHealth", "Id": 642 }, { "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 2, + "CommandName": "Get-PnPServiceCurrentHealth", "Id": 643 }, { "Command": "Get-PnPServiceHealthIssue", - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 1, + "CommandName": "Get-PnPServiceHealthIssue", "Id": 644 }, { "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 2, + "CommandName": "Get-PnPServiceHealthIssue", "Id": 645 }, { "Command": "Get-PnPSharePointAddIn", - "CommandName": "Get-PnPSharePointAddIn", "Rank": 1, + "CommandName": "Get-PnPSharePointAddIn", "Id": 646 }, { "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "CommandName": "Get-PnPSharePointAddIn", "Rank": 2, + "CommandName": "Get-PnPSharePointAddIn", "Id": 647 }, { "Command": "Get-PnPSharingForNonOwnersOfSite", - "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, + "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Id": 648 }, { "Command": "Get-PnPSite", - "CommandName": "Get-PnPSite", "Rank": 1, + "CommandName": "Get-PnPSite", "Id": 649 }, { "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "CommandName": "Get-PnPSite", "Rank": 2, + "CommandName": "Get-PnPSite", "Id": 650 }, { "Command": "Get-PnPSiteClosure", - "CommandName": "Get-PnPSiteClosure", "Rank": 1, + "CommandName": "Get-PnPSiteClosure", "Id": 651 }, { "Command": "Get-PnPSiteCollectionAdmin", - "CommandName": "Get-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAdmin", "Id": 652 }, { "Command": "Get-PnPSiteCollectionAppCatalog", - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 653 }, { "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 2, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 654 }, { "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 3, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 655 }, { "Command": "Get-PnPSiteCollectionTermStore", - "CommandName": "Get-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionTermStore", "Id": 656 }, { "Command": "Get-PnPSiteDesign", - "CommandName": "Get-PnPSiteDesign", "Rank": 1, + "CommandName": "Get-PnPSiteDesign", "Id": 657 }, { "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesign", "Rank": 2, + "CommandName": "Get-PnPSiteDesign", "Id": 658 }, { "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Get-PnPSiteDesignRights", "Id": 659 }, { "Command": "Get-PnPSiteDesignRun", - "CommandName": "Get-PnPSiteDesignRun", "Rank": 1, + "CommandName": "Get-PnPSiteDesignRun", "Id": 660 }, { "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignRun", "Rank": 2, + "CommandName": "Get-PnPSiteDesignRun", "Id": 661 }, { "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Get-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Get-PnPSiteDesignTask", "Id": 662 }, { "Command": "Get-PnPSiteDesignTask", - "CommandName": "Get-PnPSiteDesignTask", "Rank": 2, + "CommandName": "Get-PnPSiteDesignTask", "Id": 663 }, { "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignTask", "Rank": 3, + "CommandName": "Get-PnPSiteDesignTask", "Id": 664 }, { "Command": "Get-PnPSiteGroup", - "CommandName": "Get-PnPSiteGroup", "Rank": 1, + "CommandName": "Get-PnPSiteGroup", "Id": 665 }, { "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup", "Rank": 2, + "CommandName": "Get-PnPSiteGroup", "Id": 666 }, { "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "CommandName": "Get-PnPSiteGroup", "Rank": 3, + "CommandName": "Get-PnPSiteGroup", "Id": 667 }, { "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup", "Rank": 4, + "CommandName": "Get-PnPSiteGroup", "Id": 668 }, { "Command": "Get-PnPSitePolicy", - "CommandName": "Get-PnPSitePolicy", "Rank": 1, + "CommandName": "Get-PnPSitePolicy", "Id": 669 }, { "Command": "Get-PnPSitePolicy -AllAvailable", - "CommandName": "Get-PnPSitePolicy", "Rank": 2, + "CommandName": "Get-PnPSitePolicy", "Id": 670 }, { "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Get-PnPSitePolicy", "Rank": 3, + "CommandName": "Get-PnPSitePolicy", "Id": 671 }, { "Command": "Get-PnPSiteScript", - "CommandName": "Get-PnPSiteScript", "Rank": 1, + "CommandName": "Get-PnPSiteScript", "Id": 672 }, { "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteScript", "Rank": 2, + "CommandName": "Get-PnPSiteScript", "Id": 673 }, { "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromList", "Id": 674 }, { "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromList", "Id": 675 }, { "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromList", "Id": 676 }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 677 }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 678 }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 679 }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 4, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 680 }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 5, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 681 }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 6, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 682 }, { "Command": "Get-PnPSiteSearchQueryResults", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 1, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 683 }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 2, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 684 }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 3, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 685 }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 4, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 686 }, { "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 5, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 687 }, { "Command": "Get-PnPSiteSearchQueryResults -All", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 6, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 688 }, { "Command": "Get-PnPSiteSensitivityLabel", - "CommandName": "Get-PnPSiteSensitivityLabel", "Rank": 1, + "CommandName": "Get-PnPSiteSensitivityLabel", "Id": 689 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp", - "CommandName": "Get-PnPSiteTemplate", "Rank": 1, + "CommandName": "Get-PnPSiteTemplate", "Id": 690 }, { "Command": "Get-PnPSiteTemplate -Out template.xml", - "CommandName": "Get-PnPSiteTemplate", "Rank": 2, + "CommandName": "Get-PnPSiteTemplate", "Id": 691 }, { "Command": "Get-PnPSiteTemplate -Out template.md", - "CommandName": "Get-PnPSiteTemplate", "Rank": 3, + "CommandName": "Get-PnPSiteTemplate", "Id": 692 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "CommandName": "Get-PnPSiteTemplate", "Rank": 4, + "CommandName": "Get-PnPSiteTemplate", "Id": 693 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "CommandName": "Get-PnPSiteTemplate", "Rank": 5, + "CommandName": "Get-PnPSiteTemplate", "Id": 694 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "CommandName": "Get-PnPSiteTemplate", "Rank": 6, + "CommandName": "Get-PnPSiteTemplate", "Id": 695 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "CommandName": "Get-PnPSiteTemplate", "Rank": 7, + "CommandName": "Get-PnPSiteTemplate", "Id": 696 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "CommandName": "Get-PnPSiteTemplate", "Rank": 8, + "CommandName": "Get-PnPSiteTemplate", "Id": 697 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate", "Rank": 9, + "CommandName": "Get-PnPSiteTemplate", "Id": 698 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "CommandName": "Get-PnPSiteTemplate", "Rank": 10, + "CommandName": "Get-PnPSiteTemplate", "Id": 699 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "CommandName": "Get-PnPSiteTemplate", "Rank": 11, + "CommandName": "Get-PnPSiteTemplate", "Id": 700 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "CommandName": "Get-PnPSiteTemplate", "Rank": 12, + "CommandName": "Get-PnPSiteTemplate", "Id": 701 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", - "CommandName": "Get-PnPSiteTemplate", "Rank": 13, + "CommandName": "Get-PnPSiteTemplate", "Id": 702 }, { "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate", "Rank": 14, + "CommandName": "Get-PnPSiteTemplate", "Id": 703 }, { "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Get-PnPSiteUserInvitations", "Rank": 1, + "CommandName": "Get-PnPSiteUserInvitations", "Id": 704 }, { "Command": "Get-PnPSiteVersionPolicy", - "CommandName": "Get-PnPSiteVersionPolicy", "Rank": 1, + "CommandName": "Get-PnPSiteVersionPolicy", "Id": 705 }, { "Command": "Get-PnPStorageEntity", - "CommandName": "Get-PnPStorageEntity", "Rank": 1, + "CommandName": "Get-PnPStorageEntity", "Id": 706 }, { "Command": "Get-PnPStorageEntity -Key MyKey", - "CommandName": "Get-PnPStorageEntity", "Rank": 2, + "CommandName": "Get-PnPStorageEntity", "Id": 707 }, { "Command": "Get-PnPStorageEntity -Scope Site", - "CommandName": "Get-PnPStorageEntity", "Rank": 3, + "CommandName": "Get-PnPStorageEntity", "Id": 708 }, { "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Get-PnPStorageEntity", "Rank": 4, + "CommandName": "Get-PnPStorageEntity", "Id": 709 }, { "Command": "Get-PnPStoredCredential -Name O365", - "CommandName": "Get-PnPStoredCredential", "Rank": 1, + "CommandName": "Get-PnPStoredCredential", "Id": 710 }, { "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Id": 711 }, { "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Id": 712 }, { "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Rank": 1, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Id": 713 }, { "Command": "Get-PnPSubWeb", - "CommandName": "Get-PnPSubWeb", "Rank": 1, + "CommandName": "Get-PnPSubWeb", "Id": 714 }, { "Command": "Get-PnPSubWeb -Recurse", - "CommandName": "Get-PnPSubWeb", "Rank": 2, + "CommandName": "Get-PnPSubWeb", "Id": 715 }, { "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "CommandName": "Get-PnPSubWeb", "Rank": 3, + "CommandName": "Get-PnPSubWeb", "Id": 716 }, { "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "CommandName": "Get-PnPSubWeb", "Rank": 4, + "CommandName": "Get-PnPSubWeb", "Id": 717 }, { "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "CommandName": "Get-PnPSubWeb", "Rank": 5, + "CommandName": "Get-PnPSubWeb", "Id": 718 }, { "Command": "Get-PnPSyntexModel", - "CommandName": "Get-PnPSyntexModel", "Rank": 1, + "CommandName": "Get-PnPSyntexModel", "Id": 719 }, { "Command": "Get-PnPSyntexModel -Identity 1", - "CommandName": "Get-PnPSyntexModel", "Rank": 2, + "CommandName": "Get-PnPSyntexModel", "Id": 720 }, { "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModel", "Rank": 3, + "CommandName": "Get-PnPSyntexModel", "Id": 721 }, { "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModelPublication", "Rank": 1, + "CommandName": "Get-PnPSyntexModelPublication", "Id": 722 }, { "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "CommandName": "Get-PnPTaxonomyItem", "Rank": 1, + "CommandName": "Get-PnPTaxonomyItem", "Id": 723 }, { "Command": "Get-PnPTeamsApp", - "CommandName": "Get-PnPTeamsApp", "Rank": 1, + "CommandName": "Get-PnPTeamsApp", "Id": 724 }, { "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "CommandName": "Get-PnPTeamsApp", "Rank": 2, + "CommandName": "Get-PnPTeamsApp", "Id": 725 }, { "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "CommandName": "Get-PnPTeamsApp", "Rank": 3, + "CommandName": "Get-PnPTeamsApp", "Id": 726 }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "CommandName": "Get-PnPTeamsChannel", "Rank": 1, + "CommandName": "Get-PnPTeamsChannel", "Id": 727 }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannel", "Rank": 2, + "CommandName": "Get-PnPTeamsChannel", "Id": 728 }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannel", "Rank": 3, + "CommandName": "Get-PnPTeamsChannel", "Id": 729 }, { "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 730 }, { "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 731 }, { "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessage", "Id": 732 }, { "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessage", "Id": 733 }, { "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 734 }, { "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 735 }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelUser", "Id": 736 }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelUser", "Id": 737 }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 3, + "CommandName": "Get-PnPTeamsChannelUser", "Id": 738 }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 4, + "CommandName": "Get-PnPTeamsChannelUser", "Id": 739 }, { "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 1, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 740 }, { "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 2, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 741 }, { "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "CommandName": "Get-PnPTeamsTab", "Rank": 1, + "CommandName": "Get-PnPTeamsTab", "Id": 742 }, { "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "CommandName": "Get-PnPTeamsTab", "Rank": 2, + "CommandName": "Get-PnPTeamsTab", "Id": 743 }, { "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", - "CommandName": "Get-PnPTeamsTab", "Rank": 3, + "CommandName": "Get-PnPTeamsTab", "Id": 744 }, { "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsTab", "Rank": 4, + "CommandName": "Get-PnPTeamsTab", "Id": 745 }, { "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "CommandName": "Get-PnPTeamsTab", "Rank": 5, + "CommandName": "Get-PnPTeamsTab", "Id": 746 }, { "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Get-PnPTeamsTag", "Rank": 1, + "CommandName": "Get-PnPTeamsTag", "Id": 747 }, { "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Get-PnPTeamsTag", "Rank": 2, + "CommandName": "Get-PnPTeamsTag", "Id": 748 }, { "Command": "Get-PnPTeamsTeam", - "CommandName": "Get-PnPTeamsTeam", "Rank": 1, + "CommandName": "Get-PnPTeamsTeam", "Id": 749 }, { "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "CommandName": "Get-PnPTeamsTeam", "Rank": 2, + "CommandName": "Get-PnPTeamsTeam", "Id": 750 }, { "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "CommandName": "Get-PnPTeamsTeam", "Rank": 3, + "CommandName": "Get-PnPTeamsTeam", "Id": 751 }, { "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam", "Rank": 4, + "CommandName": "Get-PnPTeamsTeam", "Id": 752 }, { "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam", "Rank": 5, + "CommandName": "Get-PnPTeamsTeam", "Id": 753 }, { "Command": "Get-PnPTeamsUser -Team MyTeam", - "CommandName": "Get-PnPTeamsUser", "Rank": 1, + "CommandName": "Get-PnPTeamsUser", "Id": 754 }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "CommandName": "Get-PnPTeamsUser", "Rank": 2, + "CommandName": "Get-PnPTeamsUser", "Id": 755 }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "CommandName": "Get-PnPTeamsUser", "Rank": 3, + "CommandName": "Get-PnPTeamsUser", "Id": 756 }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "CommandName": "Get-PnPTeamsUser", "Rank": 4, + "CommandName": "Get-PnPTeamsUser", "Id": 757 }, { "Command": "Get-PnPTemporarilyDisableAppBar", - "CommandName": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, + "CommandName": "Get-PnPTemporarilyDisableAppBar", "Id": 758 }, { "Command": "Get-PnPTenant", - "CommandName": "Get-PnPTenant", "Rank": 1, + "CommandName": "Get-PnPTenant", "Id": 759 }, { "Command": "Get-PnPTenantAppCatalogUrl", - "CommandName": "Get-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Get-PnPTenantAppCatalogUrl", "Id": 760 }, { "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "CommandName": "Get-PnPTenantCdnEnabled", "Rank": 1, + "CommandName": "Get-PnPTenantCdnEnabled", "Id": 761 }, { "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "CommandName": "Get-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Get-PnPTenantCdnOrigin", "Id": 762 }, { "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "CommandName": "Get-PnPTenantCdnPolicies", "Rank": 1, + "CommandName": "Get-PnPTenantCdnPolicies", "Id": 763 }, { "Command": "Get-PnPTenantDeletedSite", - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 1, + "CommandName": "Get-PnPTenantDeletedSite", "Id": 764 }, { "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 2, + "CommandName": "Get-PnPTenantDeletedSite", "Id": 765 }, { "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 3, + "CommandName": "Get-PnPTenantDeletedSite", "Id": 766 }, { "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 4, + "CommandName": "Get-PnPTenantDeletedSite", "Id": 767 }, { "Command": "Get-PnPTenantId", - "CommandName": "Get-PnPTenantId", "Rank": 1, + "CommandName": "Get-PnPTenantId", "Id": 768 }, { "Command": "Get-PnPTenantId contoso", - "CommandName": "Get-PnPTenantId", "Rank": 2, + "CommandName": "Get-PnPTenantId", "Id": 769 }, { "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "CommandName": "Get-PnPTenantId", "Rank": 3, + "CommandName": "Get-PnPTenantId", "Id": 770 }, { "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "CommandName": "Get-PnPTenantId", "Rank": 4, + "CommandName": "Get-PnPTenantId", "Id": 771 }, { "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "CommandName": "Get-PnPTenantInfo", "Rank": 1, + "CommandName": "Get-PnPTenantInfo", "Id": 772 }, { "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "CommandName": "Get-PnPTenantInfo", "Rank": 2, + "CommandName": "Get-PnPTenantInfo", "Id": 773 }, { "Command": "Get-PnPTenantInfo", - "CommandName": "Get-PnPTenantInfo", "Rank": 3, + "CommandName": "Get-PnPTenantInfo", "Id": 774 }, { "Command": "Get-PnPTenantInfo -CurrentTenant", - "CommandName": "Get-PnPTenantInfo", "Rank": 4, + "CommandName": "Get-PnPTenantInfo", "Id": 775 }, { "Command": "Get-PnPTenantInstance", - "CommandName": "Get-PnPTenantInstance", "Rank": 1, + "CommandName": "Get-PnPTenantInstance", "Id": 776 }, { "Command": "Get-PnPTenantRecycleBinItem", - "CommandName": "Get-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Get-PnPTenantRecycleBinItem", "Id": 777 }, { "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "CommandName": "Get-PnPTenantSequence", "Rank": 1, + "CommandName": "Get-PnPTenantSequence", "Id": 778 }, { "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "CommandName": "Get-PnPTenantSequence", "Rank": 2, + "CommandName": "Get-PnPTenantSequence", "Id": 779 }, { "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 1, + "CommandName": "Get-PnPTenantSequenceSite", "Id": 780 }, { "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 2, + "CommandName": "Get-PnPTenantSequenceSite", "Id": 781 }, { "Command": "Get-PnPTenantSite", - "CommandName": "Get-PnPTenantSite", "Rank": 1, + "CommandName": "Get-PnPTenantSite", "Id": 782 }, { "Command": "Get-PnPTenantSite -Detailed", - "CommandName": "Get-PnPTenantSite", "Rank": 2, + "CommandName": "Get-PnPTenantSite", "Id": 783 }, { "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "CommandName": "Get-PnPTenantSite", "Rank": 3, + "CommandName": "Get-PnPTenantSite", "Id": 784 }, { "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "CommandName": "Get-PnPTenantSite", "Rank": 4, + "CommandName": "Get-PnPTenantSite", "Id": 785 }, { "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "CommandName": "Get-PnPTenantSite", "Rank": 5, + "CommandName": "Get-PnPTenantSite", "Id": 786 }, { "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "CommandName": "Get-PnPTenantSite", "Rank": 6, + "CommandName": "Get-PnPTenantSite", "Id": 787 }, { "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "CommandName": "Get-PnPTenantSite", "Rank": 7, + "CommandName": "Get-PnPTenantSite", "Id": 788 }, { "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "CommandName": "Get-PnPTenantSite", "Rank": 8, + "CommandName": "Get-PnPTenantSite", "Id": 789 }, { "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "CommandName": "Get-PnPTenantSite", "Rank": 9, + "CommandName": "Get-PnPTenantSite", "Id": 790 }, { "Command": "Get-PnPTenantSyncClientRestriction", - "CommandName": "Get-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Get-PnPTenantSyncClientRestriction", "Id": 791 }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "CommandName": "Get-PnPTenantTemplate", "Rank": 1, + "CommandName": "Get-PnPTenantTemplate", "Id": 792 }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "CommandName": "Get-PnPTenantTemplate", "Rank": 2, + "CommandName": "Get-PnPTenantTemplate", "Id": 793 }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "CommandName": "Get-PnPTenantTemplate", "Rank": 3, + "CommandName": "Get-PnPTenantTemplate", "Id": 794 }, { "Command": "Get-PnPTenantTheme", - "CommandName": "Get-PnPTenantTheme", "Rank": 1, + "CommandName": "Get-PnPTenantTheme", "Id": 795 }, { "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Get-PnPTenantTheme", "Rank": 2, + "CommandName": "Get-PnPTenantTheme", "Id": 796 }, { "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "CommandName": "Get-PnPTenantTheme", "Rank": 3, + "CommandName": "Get-PnPTenantTheme", "Id": 797 }, { "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", "Rank": 1, + "CommandName": "Get-PnPTerm", "Id": 798 }, { "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", "Rank": 2, + "CommandName": "Get-PnPTerm", "Id": 799 }, { "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", "Rank": 3, + "CommandName": "Get-PnPTerm", "Id": 800 }, { "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "CommandName": "Get-PnPTerm", "Rank": 4, + "CommandName": "Get-PnPTerm", "Id": 801 }, { "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "CommandName": "Get-PnPTerm", "Rank": 5, + "CommandName": "Get-PnPTerm", "Id": 802 }, { "Command": "Get-PnPTermGroup", - "CommandName": "Get-PnPTermGroup", "Rank": 1, + "CommandName": "Get-PnPTermGroup", "Id": 803 }, { "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "CommandName": "Get-PnPTermGroup", "Rank": 2, + "CommandName": "Get-PnPTermGroup", "Id": 804 }, { "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "CommandName": "Get-PnPTermGroup", "Rank": 3, + "CommandName": "Get-PnPTermGroup", "Id": 805 }, { "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "CommandName": "Get-PnPTermLabel", "Rank": 1, + "CommandName": "Get-PnPTermLabel", "Id": 806 }, { "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "CommandName": "Get-PnPTermLabel", "Rank": 2, + "CommandName": "Get-PnPTermLabel", "Id": 807 }, { "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermLabel", "Rank": 3, + "CommandName": "Get-PnPTermLabel", "Id": 808 }, { "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet", "Rank": 1, + "CommandName": "Get-PnPTermSet", "Id": 809 }, { "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet", "Rank": 2, + "CommandName": "Get-PnPTermSet", "Id": 810 }, { "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "CommandName": "Get-PnPTermSet", "Rank": 3, + "CommandName": "Get-PnPTermSet", "Id": 811 }, { "Command": "Get-PnPTheme", - "CommandName": "Get-PnPTheme", "Rank": 1, + "CommandName": "Get-PnPTheme", "Id": 812 }, { "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "CommandName": "Get-PnPTheme", "Rank": 2, + "CommandName": "Get-PnPTheme", "Id": 813 }, { "Command": "Get-PnPTimeZoneId", - "CommandName": "Get-PnPTimeZoneId", "Rank": 1, + "CommandName": "Get-PnPTimeZoneId", "Id": 814 }, { "Command": "Get-PnPTimeZoneId -Match Stockholm", - "CommandName": "Get-PnPTimeZoneId", "Rank": 2, + "CommandName": "Get-PnPTimeZoneId", "Id": 815 }, { "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "CommandName": "Get-PnPUnfurlLink", "Rank": 1, + "CommandName": "Get-PnPUnfurlLink", "Id": 816 }, { "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "CommandName": "Get-PnPUnifiedAuditLog", "Rank": 1, + "CommandName": "Get-PnPUnifiedAuditLog", "Id": 817 }, { "Command": "Get-PnPUPABulkImportStatus", - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 1, + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 818 }, { "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 2, + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 819 }, { "Command": "Get-PnPUPABulkImportStatus -JobId ", - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 3, + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 820 }, { "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 4, + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 821 }, { "Command": "Get-PnPUser", - "CommandName": "Get-PnPUser", "Rank": 1, + "CommandName": "Get-PnPUser", "Id": 822 }, { "Command": "Get-PnPUser -Identity 23", - "CommandName": "Get-PnPUser", "Rank": 2, + "CommandName": "Get-PnPUser", "Id": 823 }, { "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser", "Rank": 3, + "CommandName": "Get-PnPUser", "Id": 824 }, { "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser", "Rank": 4, + "CommandName": "Get-PnPUser", "Id": 825 }, { "Command": "Get-PnPUser -WithRightsAssigned", - "CommandName": "Get-PnPUser", "Rank": 5, + "CommandName": "Get-PnPUser", "Id": 826 }, { "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "CommandName": "Get-PnPUser", "Rank": 6, + "CommandName": "Get-PnPUser", "Id": 827 }, { "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "CommandName": "Get-PnPUser", "Rank": 7, + "CommandName": "Get-PnPUser", "Id": 828 }, { "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "CommandName": "Get-PnPUserOneDriveQuota", "Rank": 1, + "CommandName": "Get-PnPUserOneDriveQuota", "Id": 829 }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "CommandName": "Get-PnPUserProfileProperty", "Rank": 1, + "CommandName": "Get-PnPUserProfileProperty", "Id": 830 }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "CommandName": "Get-PnPUserProfileProperty", "Rank": 2, + "CommandName": "Get-PnPUserProfileProperty", "Id": 831 }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "CommandName": "Get-PnPUserProfileProperty", "Rank": 3, + "CommandName": "Get-PnPUserProfileProperty", "Id": 832 }, { "Command": "Get-PnPView -List \"Demo List\"", - "CommandName": "Get-PnPView", "Rank": 1, + "CommandName": "Get-PnPView", "Id": 833 }, { "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "CommandName": "Get-PnPView", "Rank": 2, + "CommandName": "Get-PnPView", "Id": 834 }, { "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "CommandName": "Get-PnPView", "Rank": 3, + "CommandName": "Get-PnPView", "Id": 835 }, { "Command": "Get-PnPVivaConnectionsDashboardACE", - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 836 }, { "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 2, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 837 }, { "Command": "Get-PnPWeb", - "CommandName": "Get-PnPWeb", "Rank": 1, + "CommandName": "Get-PnPWeb", "Id": 838 }, { "Command": "Get-PnPWebHeader", - "CommandName": "Get-PnPWebHeader", "Rank": 1, + "CommandName": "Get-PnPWebHeader", "Id": 839 }, { "Command": "Get-PnPWebhookSubscriptions -List MyList", - "CommandName": "Get-PnPWebhookSubscriptions", "Rank": 1, + "CommandName": "Get-PnPWebhookSubscriptions", "Id": 840 }, { "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "CommandName": "Get-PnPWebPart", "Rank": 1, + "CommandName": "Get-PnPWebPart", "Id": 841 }, { "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPart", "Rank": 2, + "CommandName": "Get-PnPWebPart", "Id": 842 }, { "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "CommandName": "Get-PnPWebPartProperty", "Rank": 1, + "CommandName": "Get-PnPWebPartProperty", "Id": 843 }, { "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "CommandName": "Get-PnPWebPartProperty", "Rank": 2, + "CommandName": "Get-PnPWebPartProperty", "Id": 844 }, { "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPartXml", "Rank": 1, + "CommandName": "Get-PnPWebPartXml", "Id": 845 }, { "Command": "Get-PnPWebTemplates", - "CommandName": "Get-PnPWebTemplates", "Rank": 1, + "CommandName": "Get-PnPWebTemplates", "Id": 846 }, { "Command": "Get-PnPWebTemplates -LCID 1033", - "CommandName": "Get-PnPWebTemplates", "Rank": 2, + "CommandName": "Get-PnPWebTemplates", "Id": 847 }, { "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "CommandName": "Get-PnPWebTemplates", "Rank": 3, + "CommandName": "Get-PnPWebTemplates", "Id": 848 }, { "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "CommandName": "Get-PnPWikiPageContent", "Rank": 1, + "CommandName": "Get-PnPWikiPageContent", "Id": 849 }, { "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 850 }, { "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 851 }, { "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Grant-PnPHubSiteRights", "Rank": 1, + "CommandName": "Grant-PnPHubSiteRights", "Id": 852 }, { "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Grant-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Grant-PnPSiteDesignRights", "Id": 853 }, { "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Rank": 1, + "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Id": 854 }, { "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "CommandName": "Import-PnPTaxonomy", "Rank": 1, + "CommandName": "Import-PnPTaxonomy", "Id": 855 }, { "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "CommandName": "Import-PnPTaxonomy", "Rank": 2, + "CommandName": "Import-PnPTaxonomy", "Id": 856 }, { "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "CommandName": "Import-PnPTaxonomy", "Rank": 3, + "CommandName": "Import-PnPTaxonomy", "Id": 857 }, { "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 1, + "CommandName": "Import-PnPTermGroupFromXml", "Id": 858 }, { "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 2, + "CommandName": "Import-PnPTermGroupFromXml", "Id": 859 }, { "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "CommandName": "Import-PnPTermSet", "Rank": 1, + "CommandName": "Import-PnPTermSet", "Id": 860 }, { "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", - "CommandName": "Import-PnPTermSet", "Rank": 2, + "CommandName": "Import-PnPTermSet", "Id": 861 }, { "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", - "CommandName": "Import-PnPTermSet", "Rank": 3, + "CommandName": "Import-PnPTermSet", "Id": 862 }, { "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Install-PnPApp", "Rank": 1, + "CommandName": "Install-PnPApp", "Id": 863 }, { "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Install-PnPApp", "Rank": 2, + "CommandName": "Install-PnPApp", "Id": 864 }, { "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 1, + "CommandName": "Invoke-PnPGraphMethod", "Id": 865 }, { "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 2, + "CommandName": "Invoke-PnPGraphMethod", "Id": 866 }, { "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 3, + "CommandName": "Invoke-PnPGraphMethod", "Id": 867 }, { "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 4, + "CommandName": "Invoke-PnPGraphMethod", "Id": 868 }, { "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 5, + "CommandName": "Invoke-PnPGraphMethod", "Id": 869 }, { "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 6, + "CommandName": "Invoke-PnPGraphMethod", "Id": 870 }, { "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", "Rank": 7, + "CommandName": "Invoke-PnPGraphMethod", "Id": 871 }, { "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPListDesign", "Rank": 1, + "CommandName": "Invoke-PnPListDesign", "Id": 872 }, { "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "CommandName": "Invoke-PnPListDesign", "Rank": 2, + "CommandName": "Invoke-PnPListDesign", "Id": 873 }, { "Command": "Invoke-PnPQuery -RetryCount 5", - "CommandName": "Invoke-PnPQuery", "Rank": 1, + "CommandName": "Invoke-PnPQuery", "Id": 874 }, { "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPSiteDesign", "Rank": 1, + "CommandName": "Invoke-PnPSiteDesign", "Id": 875 }, { "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "CommandName": "Invoke-PnPSiteDesign", "Rank": 2, + "CommandName": "Invoke-PnPSiteDesign", "Id": 876 }, { "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "CommandName": "Invoke-PnPSiteScript", "Rank": 1, + "CommandName": "Invoke-PnPSiteScript", "Id": 877 }, { "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", "Rank": 1, + "CommandName": "Invoke-PnPSiteSwap", "Id": 878 }, { "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", "Rank": 2, + "CommandName": "Invoke-PnPSiteSwap", "Id": 879 }, { "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", "Rank": 3, + "CommandName": "Invoke-PnPSiteSwap", "Id": 880 }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 1, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 881 }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 2, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 882 }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 3, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 883 }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 4, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 884 }, { "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 5, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 885 }, { "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 6, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 886 }, { "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 7, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 887 }, { "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 8, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 888 }, { "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "CommandName": "Invoke-PnPSPRestMethod", "Rank": 1, + "CommandName": "Invoke-PnPSPRestMethod", "Id": 889 }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 1, + "CommandName": "Invoke-PnPTenantTemplate", "Id": 890 }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 2, + "CommandName": "Invoke-PnPTenantTemplate", "Id": 891 }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 3, + "CommandName": "Invoke-PnPTenantTemplate", "Id": 892 }, { "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction", "Rank": 1, + "CommandName": "Invoke-PnPWebAction", "Id": 893 }, { "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction", "Rank": 2, + "CommandName": "Invoke-PnPWebAction", "Id": 894 }, { "Command": "Measure-PnPList \"Documents\"", - "CommandName": "Measure-PnPList", "Rank": 1, + "CommandName": "Measure-PnPList", "Id": 895 }, { "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "CommandName": "Measure-PnPList", "Rank": 2, + "CommandName": "Measure-PnPList", "Id": 896 }, { "Command": "Measure-PnPWeb", - "CommandName": "Measure-PnPWeb", "Rank": 1, + "CommandName": "Measure-PnPWeb", "Id": 897 }, { "Command": "Measure-PnPWeb $web -Recursive", - "CommandName": "Measure-PnPWeb", "Rank": 2, + "CommandName": "Measure-PnPWeb", "Id": 898 }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "CommandName": "Move-PnPFile", "Rank": 1, + "CommandName": "Move-PnPFile", "Id": 899 }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "CommandName": "Move-PnPFile", "Rank": 2, + "CommandName": "Move-PnPFile", "Id": 900 }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "CommandName": "Move-PnPFile", "Rank": 3, + "CommandName": "Move-PnPFile", "Id": 901 }, { "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "CommandName": "Move-PnPFile", "Rank": 4, + "CommandName": "Move-PnPFile", "Id": 902 }, { "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "CommandName": "Move-PnPFolder", "Rank": 1, + "CommandName": "Move-PnPFolder", "Id": 903 }, { "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "CommandName": "Move-PnPFolder", "Rank": 2, + "CommandName": "Move-PnPFolder", "Id": 904 }, { "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Move-PnPListItemToRecycleBin", "Rank": 1, + "CommandName": "Move-PnPListItemToRecycleBin", "Id": 905 }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "CommandName": "Move-PnPPageComponent", "Rank": 1, + "CommandName": "Move-PnPPageComponent", "Id": 906 }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "CommandName": "Move-PnPPageComponent", "Rank": 2, + "CommandName": "Move-PnPPageComponent", "Id": 907 }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "CommandName": "Move-PnPPageComponent", "Rank": 3, + "CommandName": "Move-PnPPageComponent", "Id": 908 }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "CommandName": "Move-PnPPageComponent", "Rank": 4, + "CommandName": "Move-PnPPageComponent", "Id": 909 }, { "Command": "Move-PnPRecycleBinItem", - "CommandName": "Move-PnpRecycleBinItem", "Rank": 1, + "CommandName": "Move-PnpRecycleBinItem", "Id": 910 }, { "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "CommandName": "Move-PnpRecycleBinItem", "Rank": 2, + "CommandName": "Move-PnpRecycleBinItem", "Id": 911 }, { "Command": "Move-PnPRecycleBinItem -Force", - "CommandName": "Move-PnpRecycleBinItem", "Rank": 3, + "CommandName": "Move-PnpRecycleBinItem", "Id": 912 }, { "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", - "CommandName": "Move-PnPTerm", "Rank": 1, + "CommandName": "Move-PnPTerm", "Id": 913 }, { "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "CommandName": "Move-PnPTerm", "Rank": 2, + "CommandName": "Move-PnPTerm", "Id": 914 }, { "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "CommandName": "Move-PnPTerm", "Rank": 3, + "CommandName": "Move-PnPTerm", "Id": 915 }, { "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", - "CommandName": "Move-PnPTermSet", "Rank": 1, + "CommandName": "Move-PnPTermSet", "Id": 916 }, { "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "CommandName": "Move-PnPTermSet", "Rank": 2, + "CommandName": "Move-PnPTermSet", "Id": 917 }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPAzureADGroup", "Rank": 1, + "CommandName": "New-PnPAzureADGroup", "Id": 918 }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "CommandName": "New-PnPAzureADGroup", "Rank": 2, + "CommandName": "New-PnPAzureADGroup", "Id": 919 }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "CommandName": "New-PnPAzureADGroup", "Rank": 3, + "CommandName": "New-PnPAzureADGroup", "Id": 920 }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 1, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 921 }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 2, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 922 }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 3, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 923 }, { "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "CommandName": "New-PnPAzureCertificate", "Rank": 1, + "CommandName": "New-PnPAzureCertificate", "Id": 924 }, { "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "CommandName": "New-PnPAzureCertificate", "Rank": 2, + "CommandName": "New-PnPAzureCertificate", "Id": 925 }, { "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "CommandName": "New-PnPAzureCertificate", "Rank": 3, + "CommandName": "New-PnPAzureCertificate", "Id": 926 }, { "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", "Rank": 1, + "CommandName": "New-PnPGraphSubscription", "Id": 927 }, { "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", - "CommandName": "New-PnPGraphSubscription", "Rank": 2, + "CommandName": "New-PnPGraphSubscription", "Id": 928 }, { "Command": "New-PnPGroup -Title \"My Site Users\"", - "CommandName": "New-PnPGroup", "Rank": 1, + "CommandName": "New-PnPGroup", "Id": 929 }, { "Command": "New-PnPList -Title Announcements -Template Announcements", - "CommandName": "New-PnPList", "Rank": 1, + "CommandName": "New-PnPList", "Id": 930 }, { "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "CommandName": "New-PnPList", "Rank": 2, + "CommandName": "New-PnPList", "Id": 931 }, { "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "CommandName": "New-PnPList", "Rank": 3, + "CommandName": "New-PnPList", "Id": 932 }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "New-PnPMicrosoft365Group", "Id": 933 }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "New-PnPMicrosoft365Group", "Id": 934 }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "New-PnPMicrosoft365Group", "Id": 935 }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "New-PnPMicrosoft365Group", "Id": 936 }, { "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "New-PnPMicrosoft365Group", "Id": 937 }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "New-PnPMicrosoft365Group", "Id": 938 }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 7, + "CommandName": "New-PnPMicrosoft365Group", "Id": 939 }, { "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 940 }, { "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 941 }, { "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "CommandName": "New-PnPPersonalSite", "Rank": 1, + "CommandName": "New-PnPPersonalSite", "Id": 942 }, { "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "CommandName": "New-PnPPlannerPlan", "Rank": 1, + "CommandName": "New-PnPPlannerPlan", "Id": 943 }, { "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "CommandName": "New-PnPSdnProvider", "Rank": 1, + "CommandName": "New-PnPSdnProvider", "Id": 944 }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite", "Rank": 1, + "CommandName": "New-PnPSite", "Id": 945 }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "CommandName": "New-PnPSite", "Rank": 2, + "CommandName": "New-PnPSite", "Id": 946 }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "CommandName": "New-PnPSite", "Rank": 3, + "CommandName": "New-PnPSite", "Id": 947 }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "CommandName": "New-PnPSite", "Rank": 4, + "CommandName": "New-PnPSite", "Id": 948 }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite", "Rank": 5, + "CommandName": "New-PnPSite", "Id": 949 }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "CommandName": "New-PnPSite", "Rank": 6, + "CommandName": "New-PnPSite", "Id": 950 }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "CommandName": "New-PnPSite", "Rank": 7, + "CommandName": "New-PnPSite", "Id": 951 }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "CommandName": "New-PnPSite", "Rank": 8, + "CommandName": "New-PnPSite", "Id": 952 }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "CommandName": "New-PnPSite", "Rank": 9, + "CommandName": "New-PnPSite", "Id": 953 }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "CommandName": "New-PnPSite", "Rank": 10, + "CommandName": "New-PnPSite", "Id": 954 }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite", "Rank": 11, + "CommandName": "New-PnPSite", "Id": 955 }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "CommandName": "New-PnPSite", "Rank": 12, + "CommandName": "New-PnPSite", "Id": 956 }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "CommandName": "New-PnPSite", "Rank": 13, + "CommandName": "New-PnPSite", "Id": 957 }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite", "Rank": 14, + "CommandName": "New-PnPSite", "Id": 958 }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "CommandName": "New-PnPSite", "Rank": 15, + "CommandName": "New-PnPSite", "Id": 959 }, { "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "CommandName": "New-PnPSite", "Rank": 16, + "CommandName": "New-PnPSite", "Id": 960 }, { "Command": "New-PnPSiteCollectionTermStore", - "CommandName": "New-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "New-PnPSiteCollectionTermStore", "Id": 961 }, { "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "CommandName": "New-PnPSiteGroup", "Rank": 1, + "CommandName": "New-PnPSiteGroup", "Id": 962 }, { "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "CommandName": "New-PnPSiteGroup", "Rank": 2, + "CommandName": "New-PnPSiteGroup", "Id": 963 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 1, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 964 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 2, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 965 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 3, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 966 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 4, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 967 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 5, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 968 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 6, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 969 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 7, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 970 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 8, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 971 }, { "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "CommandName": "New-PnPTeamsApp", "Rank": 1, + "CommandName": "New-PnPTeamsApp", "Id": 972 }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "CommandName": "New-PnPTeamsTeam", "Rank": 1, + "CommandName": "New-PnPTeamsTeam", "Id": 973 }, { "Command": "New-PnPTeamsTeam -GroupId $groupId", - "CommandName": "New-PnPTeamsTeam", "Rank": 2, + "CommandName": "New-PnPTeamsTeam", "Id": 974 }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "CommandName": "New-PnPTeamsTeam", "Rank": 3, + "CommandName": "New-PnPTeamsTeam", "Id": 975 }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "CommandName": "New-PnPTeamsTeam", "Rank": 4, + "CommandName": "New-PnPTeamsTeam", "Id": 976 }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", - "CommandName": "New-PnPTeamsTeam", "Rank": 5, + "CommandName": "New-PnPTeamsTeam", "Id": 977 }, { "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", "Rank": 6, + "CommandName": "New-PnPTeamsTeam", "Id": 978 }, { "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", - "CommandName": "New-PnPTenantSite", "Rank": 1, + "CommandName": "New-PnPTenantSite", "Id": 979 }, { "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "CommandName": "New-PnPTenantSite", "Rank": 2, + "CommandName": "New-PnPTenantSite", "Id": 980 }, { "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "CommandName": "New-PnPTerm", "Rank": 1, + "CommandName": "New-PnPTerm", "Id": 981 }, { "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "New-PnPTerm", "Rank": 2, + "CommandName": "New-PnPTerm", "Id": 982 }, { "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "CommandName": "New-PnPTermGroup", "Rank": 1, + "CommandName": "New-PnPTermGroup", "Id": 983 }, { "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "CommandName": "New-PnPTermLabel", "Rank": 1, + "CommandName": "New-PnPTermLabel", "Id": 984 }, { "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "CommandName": "New-PnPTermSet", "Rank": 1, + "CommandName": "New-PnPTermSet", "Id": 985 }, { "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "CommandName": "New-PnPUPABulkImportJob", "Rank": 1, + "CommandName": "New-PnPUPABulkImportJob", "Id": 986 }, { "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", - "CommandName": "New-PnPUPABulkImportJob", "Rank": 2, + "CommandName": "New-PnPUPABulkImportJob", "Id": 987 }, { "Command": "New-PnPUser -LoginName user@company.com", - "CommandName": "New-PnPUser", "Rank": 1, + "CommandName": "New-PnPUser", "Id": 988 }, { "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "CommandName": "New-PnPWeb", "Rank": 1, + "CommandName": "New-PnPWeb", "Id": 989 }, { "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Publish-PnPApp", "Rank": 1, + "CommandName": "Publish-PnPApp", "Id": 990 }, { "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "CommandName": "Publish-PnPApp", "Rank": 2, + "CommandName": "Publish-PnPApp", "Id": 991 }, { "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", "Rank": 1, + "CommandName": "Publish-PnPCompanyApp", "Id": 992 }, { "Command": "Publish-PnPContentType -ContentType 0x0101", - "CommandName": "Publish-PnPContentType", "Rank": 1, + "CommandName": "Publish-PnPContentType", "Id": 993 }, { "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Publish-PnPSyntexModel", "Rank": 1, + "CommandName": "Publish-PnPSyntexModel", "Id": 994 }, { "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", "Rank": 2, + "CommandName": "Publish-PnPSyntexModel", "Id": 995 }, { "Command": "Read-PnPSiteTemplate -Path template.pnp", - "CommandName": "Read-PnPSiteTemplate", "Rank": 1, + "CommandName": "Read-PnPSiteTemplate", "Id": 996 }, { "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "CommandName": "Read-PnPSiteTemplate", "Rank": 2, + "CommandName": "Read-PnPSiteTemplate", "Id": 997 }, { "Command": "Read-PnPSiteTemplate -Xml $xml", - "CommandName": "Read-PnPSiteTemplate", "Rank": 3, + "CommandName": "Read-PnPSiteTemplate", "Id": 998 }, { "Command": "Read-PnPTenantTemplate -Path template.pnp", - "CommandName": "Read-PnPTenantTemplate", "Rank": 1, + "CommandName": "Read-PnPTenantTemplate", "Id": 999 }, { "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "CommandName": "Register-PnPAppCatalogSite", "Rank": 1, + "CommandName": "Register-PnPAppCatalogSite", "Id": 1000 }, { "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", "Rank": 1, + "CommandName": "Register-PnPAzureADApp", "Id": 1001 }, { "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", "Rank": 2, + "CommandName": "Register-PnPAzureADApp", "Id": 1002 }, { "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", "Rank": 3, + "CommandName": "Register-PnPAzureADApp", "Id": 1003 }, { "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", "Rank": 4, + "CommandName": "Register-PnPAzureADApp", "Id": 1004 }, { "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "CommandName": "Register-PnPAzureADApp", "Rank": 5, + "CommandName": "Register-PnPAzureADApp", "Id": 1005 }, { "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "CommandName": "Register-PnPAzureADApp", "Rank": 6, + "CommandName": "Register-PnPAzureADApp", "Id": 1006 }, { "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", "Rank": 7, + "CommandName": "Register-PnPAzureADApp", "Id": 1007 }, { "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Register-PnPHubSite", "Rank": 1, + "CommandName": "Register-PnPHubSite", "Id": 1008 }, { "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "CommandName": "Register-PnPHubSite", "Rank": 2, + "CommandName": "Register-PnPHubSite", "Id": 1009 }, { "Command": "Register-PnPManagementShellAccess", - "CommandName": "Register-PnPManagementShellAccess", "Rank": 1, + "CommandName": "Register-PnPManagementShellAccess", "Id": 1010 }, { "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "CommandName": "Register-PnPManagementShellAccess", "Rank": 2, + "CommandName": "Register-PnPManagementShellAccess", "Id": 1011 }, { "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "CommandName": "Register-PnPManagementShellAccess", "Rank": 3, + "CommandName": "Register-PnPManagementShellAccess", "Id": 1012 }, { "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 1, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1013 }, { "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 2, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1014 }, { "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "CommandName": "Remove-PnPAlert", "Rank": 1, + "CommandName": "Remove-PnPAlert", "Id": 1015 }, { "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAlert", "Rank": 2, + "CommandName": "Remove-PnPAlert", "Id": 1016 }, { "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Remove-PnPApp", "Rank": 1, + "CommandName": "Remove-PnPApp", "Id": 1017 }, { "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Remove-PnPApp", "Rank": 2, + "CommandName": "Remove-PnPApp", "Id": 1018 }, { "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1019 }, { "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1020 }, { "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1021 }, { "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1022 }, { "Command": "Remove-PnPAzureADApp -Identity MyApp", - "CommandName": "Remove-PnPAzureADApp", "Rank": 1, + "CommandName": "Remove-PnPAzureADApp", "Id": 1023 }, { "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Remove-PnPAzureADApp", "Rank": 2, + "CommandName": "Remove-PnPAzureADApp", "Id": 1024 }, { "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "CommandName": "Remove-PnPAzureADGroup", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroup", "Id": 1025 }, { "Command": "Remove-PnPAzureADGroup -Identity $group", - "CommandName": "Remove-PnPAzureADGroup", "Rank": 2, + "CommandName": "Remove-PnPAzureADGroup", "Id": 1026 }, { "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupMember", "Id": 1027 }, { "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupOwner", "Id": 1028 }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1029 }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1030 }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 3, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1031 }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 4, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1032 }, { "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "CommandName": "Remove-PnPContentType", "Rank": 1, + "CommandName": "Remove-PnPContentType", "Id": 1033 }, { "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "CommandName": "Remove-PnPContentType", "Rank": 2, + "CommandName": "Remove-PnPContentType", "Id": 1034 }, { "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1035 }, { "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 2, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1036 }, { "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPContentTypeFromList", "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromList", "Id": 1037 }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPCustomAction", "Rank": 1, + "CommandName": "Remove-PnPCustomAction", "Id": 1038 }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPCustomAction", "Rank": 2, + "CommandName": "Remove-PnPCustomAction", "Id": 1039 }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "CommandName": "Remove-PnPCustomAction", "Rank": 3, + "CommandName": "Remove-PnPCustomAction", "Id": 1040 }, { "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Id": 1041 }, { "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver", "Rank": 1, + "CommandName": "Remove-PnPEventReceiver", "Id": 1042 }, { "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver", "Rank": 2, + "CommandName": "Remove-PnPEventReceiver", "Id": 1043 }, { "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "CommandName": "Remove-PnPEventReceiver", "Rank": 3, + "CommandName": "Remove-PnPEventReceiver", "Id": 1044 }, { "Command": "Remove-PnPEventReceiver -List ProjectList", - "CommandName": "Remove-PnPEventReceiver", "Rank": 4, + "CommandName": "Remove-PnPEventReceiver", "Id": 1045 }, { "Command": "Remove-PnPEventReceiver", - "CommandName": "Remove-PnPEventReceiver", "Rank": 5, + "CommandName": "Remove-PnPEventReceiver", "Id": 1046 }, { "Command": "Remove-PnPEventReceiver -Scope Site", - "CommandName": "Remove-PnPEventReceiver", "Rank": 6, + "CommandName": "Remove-PnPEventReceiver", "Id": 1047 }, { "Command": "Remove-PnPEventReceiver -Scope Web", - "CommandName": "Remove-PnPEventReceiver", "Rank": 7, + "CommandName": "Remove-PnPEventReceiver", "Id": 1048 }, { "Command": "Remove-PnPEventReceiver -Scope All", - "CommandName": "Remove-PnPEventReceiver", "Rank": 8, + "CommandName": "Remove-PnPEventReceiver", "Id": 1049 }, { "Command": "Remove-PnPField -Identity \"Speakers\"", - "CommandName": "Remove-PnPField", "Rank": 1, + "CommandName": "Remove-PnPField", "Id": 1050 }, { "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Remove-PnPField", "Rank": 2, + "CommandName": "Remove-PnPField", "Id": 1051 }, { "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 1, + "CommandName": "Remove-PnPFieldFromContentType", "Id": 1052 }, { "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 2, + "CommandName": "Remove-PnPFieldFromContentType", "Id": 1053 }, { "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile", "Rank": 1, + "CommandName": "Remove-PnPFile", "Id": 1054 }, { "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile", "Rank": 2, + "CommandName": "Remove-PnPFile", "Id": 1055 }, { "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "CommandName": "Remove-PnPFile", "Rank": 3, + "CommandName": "Remove-PnPFile", "Id": 1056 }, { "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "CommandName": "Remove-PnPFileFromSiteTemplate", "Rank": 1, + "CommandName": "Remove-PnPFileFromSiteTemplate", "Id": 1057 }, { "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Remove-PnPFileSharingLink", "Rank": 1, + "CommandName": "Remove-PnPFileSharingLink", "Id": 1058 }, { "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "CommandName": "Remove-PnPFileSharingLink", "Rank": 2, + "CommandName": "Remove-PnPFileSharingLink", "Id": 1059 }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Remove-PnPFileVersion", "Rank": 1, + "CommandName": "Remove-PnPFileVersion", "Id": 1060 }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Remove-PnPFileVersion", "Rank": 2, + "CommandName": "Remove-PnPFileVersion", "Id": 1061 }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "CommandName": "Remove-PnPFileVersion", "Rank": 3, + "CommandName": "Remove-PnPFileVersion", "Id": 1062 }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "CommandName": "Remove-PnPFlowOwner", "Rank": 1, + "CommandName": "Remove-PnPFlowOwner", "Id": 1063 }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "CommandName": "Remove-PnPFlowOwner", "Rank": 2, + "CommandName": "Remove-PnPFlowOwner", "Id": 1064 }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", - "CommandName": "Remove-PnPFlowOwner", "Rank": 3, + "CommandName": "Remove-PnPFlowOwner", "Id": 1065 }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "CommandName": "Remove-PnPFlowOwner", "Rank": 4, + "CommandName": "Remove-PnPFlowOwner", "Id": 1066 }, { "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Remove-PnPFolder", "Rank": 1, + "CommandName": "Remove-PnPFolder", "Id": 1067 }, { "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "CommandName": "Remove-PnPFolder", "Rank": 2, + "CommandName": "Remove-PnPFolder", "Id": 1068 }, { "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 1, + "CommandName": "Remove-PnPFolderSharingLink", "Id": 1069 }, { "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 2, + "CommandName": "Remove-PnPFolderSharingLink", "Id": 1070 }, { "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "CommandName": "Remove-PnPGraphSubscription", "Rank": 1, + "CommandName": "Remove-PnPGraphSubscription", "Id": 1071 }, { "Command": "Remove-PnPGroup -Identity \"My Users\"", - "CommandName": "Remove-PnPGroup", "Rank": 1, + "CommandName": "Remove-PnPGroup", "Id": 1072 }, { "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Remove-PnPGroupMember", "Rank": 1, + "CommandName": "Remove-PnPGroupMember", "Id": 1073 }, { "Command": "Remove-PnPHomeSite", - "CommandName": "Remove-PnPHomeSite", "Rank": 1, + "CommandName": "Remove-PnPHomeSite", "Id": 1074 }, { "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPHubSiteAssociation", "Rank": 1, + "CommandName": "Remove-PnPHubSiteAssociation", "Id": 1075 }, { "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 1, + "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1076 }, { "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 2, + "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1077 }, { "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "CommandName": "Remove-PnPIndexedProperty", "Rank": 1, + "CommandName": "Remove-PnPIndexedProperty", "Id": 1078 }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1079 }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1080 }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 3, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1081 }, { "Command": "Remove-PnPJavaScriptLink -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 4, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1082 }, { "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 5, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1083 }, { "Command": "Remove-PnPKnowledgeHubSite", - "CommandName": "Remove-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Remove-PnPKnowledgeHubSite", "Id": 1084 }, { "Command": "Remove-PnPList -Identity Announcements", - "CommandName": "Remove-PnPList", "Rank": 1, + "CommandName": "Remove-PnPList", "Id": 1085 }, { "Command": "Remove-PnPList -Identity Announcements -Force", - "CommandName": "Remove-PnPList", "Rank": 2, + "CommandName": "Remove-PnPList", "Id": 1086 }, { "Command": "Remove-PnPList -Identity Announcements -Recycle", - "CommandName": "Remove-PnPList", "Rank": 3, + "CommandName": "Remove-PnPList", "Id": 1087 }, { "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "CommandName": "Remove-PnPList", "Rank": 4, + "CommandName": "Remove-PnPList", "Id": 1088 }, { "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPListDesign", "Rank": 1, + "CommandName": "Remove-PnPListDesign", "Id": 1089 }, { "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Remove-PnPListItem", "Rank": 1, + "CommandName": "Remove-PnPListItem", "Id": 1090 }, { "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "CommandName": "Remove-PnPListItem", "Rank": 2, + "CommandName": "Remove-PnPListItem", "Id": 1091 }, { "Command": "Remove-PnPListItem -List \"Demo List\"", - "CommandName": "Remove-PnPListItem", "Rank": 3, + "CommandName": "Remove-PnPListItem", "Id": 1092 }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 1, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1093 }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 2, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1094 }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 3, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1095 }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 4, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1096 }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 5, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1097 }, { "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Remove-PnPListItemVersion", "Rank": 1, + "CommandName": "Remove-PnPListItemVersion", "Id": 1098 }, { "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Remove-PnPListItemVersion", "Rank": 2, + "CommandName": "Remove-PnPListItemVersion", "Id": 1099 }, { "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1100 }, { "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1101 }, { "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupMember", "Id": 1102 }, { "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Id": 1103 }, { "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1104 }, { "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1105 }, { "Command": "Remove-PnPNavigationNode -Identity 1032", - "CommandName": "Remove-PnPNavigationNode", "Rank": 1, + "CommandName": "Remove-PnPNavigationNode", "Id": 1106 }, { "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "CommandName": "Remove-PnPNavigationNode", "Rank": 2, + "CommandName": "Remove-PnPNavigationNode", "Id": 1107 }, { "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "CommandName": "Remove-PnPNavigationNode", "Rank": 3, + "CommandName": "Remove-PnPNavigationNode", "Id": 1108 }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1109 }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 2, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1110 }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 3, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1111 }, { "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Remove-PnPOrgNewsSite", "Id": 1112 }, { "Command": "Remove-PnPPage -Identity \"MyPage\"", - "CommandName": "Remove-PnPPage", "Rank": 1, + "CommandName": "Remove-PnPPage", "Id": 1113 }, { "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "CommandName": "Remove-PnPPage", "Rank": 2, + "CommandName": "Remove-PnPPage", "Id": 1114 }, { "Command": "Remove-PnPPage $page", - "CommandName": "Remove-PnPPage", "Rank": 3, + "CommandName": "Remove-PnPPage", "Id": 1115 }, { "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "CommandName": "Remove-PnPPage", "Rank": 4, + "CommandName": "Remove-PnPPage", "Id": 1116 }, { "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPPageComponent", "Rank": 1, + "CommandName": "Remove-PnPPageComponent", "Id": 1117 }, { "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "CommandName": "Remove-PnPPlannerBucket", "Rank": 1, + "CommandName": "Remove-PnPPlannerBucket", "Id": 1118 }, { "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "CommandName": "Remove-PnPPlannerPlan", "Rank": 1, + "CommandName": "Remove-PnPPlannerPlan", "Id": 1119 }, { "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Remove-PnPPlannerRoster", "Rank": 1, + "CommandName": "Remove-PnPPlannerRoster", "Id": 1120 }, { "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Remove-PnPPlannerRosterMember", "Id": 1121 }, { "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "CommandName": "Remove-PnPPlannerTask", "Rank": 1, + "CommandName": "Remove-PnPPlannerTask", "Id": 1122 }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 1, + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1123 }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 2, + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1124 }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 3, + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1125 }, { "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Remove-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Remove-PnPPublishingImageRendition", "Id": 1126 }, { "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "CommandName": "Remove-PnPRoleDefinition", "Rank": 1, + "CommandName": "Remove-PnPRoleDefinition", "Id": 1127 }, { "Command": "Remove-PnPSdnProvider -Confirm:false", - "CommandName": "Remove-PnPSdnProvider", "Rank": 1, + "CommandName": "Remove-PnPSdnProvider", "Id": 1128 }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1129 }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1130 }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1131 }, { "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1132 }, { "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1133 }, { "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 2, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1134 }, { "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Id": 1135 }, { "Command": "Remove-PnPSiteCollectionTermStore", - "CommandName": "Remove-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionTermStore", "Id": 1136 }, { "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesign", "Rank": 1, + "CommandName": "Remove-PnPSiteDesign", "Id": 1137 }, { "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Remove-PnPSiteDesignTask", "Id": 1138 }, { "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Remove-PnPSiteGroup", "Rank": 1, + "CommandName": "Remove-PnPSiteGroup", "Id": 1139 }, { "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "CommandName": "Remove-PnPSiteGroup", "Rank": 2, + "CommandName": "Remove-PnPSiteGroup", "Id": 1140 }, { "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteScript", "Rank": 1, + "CommandName": "Remove-PnPSiteScript", "Id": 1141 }, { "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Remove-PnPSiteUserInvitations", "Rank": 1, + "CommandName": "Remove-PnPSiteUserInvitations", "Id": 1142 }, { "Command": "Remove-PnPStorageEntity -Key MyKey", - "CommandName": "Remove-PnPStorageEntity", "Rank": 1, + "CommandName": "Remove-PnPStorageEntity", "Id": 1143 }, { "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Remove-PnPStorageEntity", "Rank": 2, + "CommandName": "Remove-PnPStorageEntity", "Id": 1144 }, { "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "CommandName": "Remove-PnPStoredCredential", "Rank": 1, + "CommandName": "Remove-PnPStoredCredential", "Id": 1145 }, { "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 1, + "CommandName": "Remove-PnPTaxonomyItem", "Id": 1146 }, { "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 2, + "CommandName": "Remove-PnPTaxonomyItem", "Id": 1147 }, { "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "CommandName": "Remove-PnPTeamsApp", "Rank": 1, + "CommandName": "Remove-PnPTeamsApp", "Id": 1148 }, { "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "CommandName": "Remove-PnPTeamsApp", "Rank": 2, + "CommandName": "Remove-PnPTeamsApp", "Id": 1149 }, { "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "CommandName": "Remove-PnPTeamsChannel", "Rank": 1, + "CommandName": "Remove-PnPTeamsChannel", "Id": 1150 }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 1, + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1151 }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 2, + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1152 }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 3, + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1153 }, { "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "CommandName": "Remove-PnPTeamsTab", "Rank": 1, + "CommandName": "Remove-PnPTeamsTab", "Id": 1154 }, { "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "CommandName": "Remove-PnPTeamsTab", "Rank": 2, + "CommandName": "Remove-PnPTeamsTab", "Id": 1155 }, { "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", - "CommandName": "Remove-PnPTeamsTab", "Rank": 3, + "CommandName": "Remove-PnPTeamsTab", "Id": 1156 }, { "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Remove-PnPTeamsTag", "Rank": 1, + "CommandName": "Remove-PnPTeamsTag", "Id": 1157 }, { "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Remove-PnPTeamsTeam", "Rank": 1, + "CommandName": "Remove-PnPTeamsTeam", "Id": 1158 }, { "Command": "Remove-PnPTeamsTeam -Identity testteam", - "CommandName": "Remove-PnPTeamsTeam", "Rank": 2, + "CommandName": "Remove-PnPTeamsTeam", "Id": 1159 }, { "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "CommandName": "Remove-PnPTeamsUser", "Rank": 1, + "CommandName": "Remove-PnPTeamsUser", "Id": 1160 }, { "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Remove-PnPTeamsUser", "Rank": 2, + "CommandName": "Remove-PnPTeamsUser", "Id": 1161 }, { "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Remove-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Remove-PnPTenantCdnOrigin", "Id": 1162 }, { "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 1, + "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1163 }, { "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 2, + "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1164 }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantSite", "Rank": 1, + "CommandName": "Remove-PnPTenantSite", "Id": 1165 }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "CommandName": "Remove-PnPTenantSite", "Rank": 2, + "CommandName": "Remove-PnPTenantSite", "Id": 1166 }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "CommandName": "Remove-PnPTenantSite", "Rank": 3, + "CommandName": "Remove-PnPTenantSite", "Id": 1167 }, { "Command": "Remove-PnPTenantSyncClientRestriction", - "CommandName": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Remove-PnPTenantSyncClientRestriction", "Id": 1168 }, { "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Remove-PnPTenantTheme", "Rank": 1, + "CommandName": "Remove-PnPTenantTheme", "Id": 1169 }, { "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTerm", "Rank": 1, + "CommandName": "Remove-PnPTerm", "Id": 1170 }, { "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTerm", "Rank": 2, + "CommandName": "Remove-PnPTerm", "Id": 1171 }, { "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTermGroup", "Rank": 1, + "CommandName": "Remove-PnPTermGroup", "Id": 1172 }, { "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "CommandName": "Remove-PnPTermGroup", "Rank": 2, + "CommandName": "Remove-PnPTermGroup", "Id": 1173 }, { "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "CommandName": "Remove-PnPTermGroup", "Rank": 3, + "CommandName": "Remove-PnPTermGroup", "Id": 1174 }, { "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "CommandName": "Remove-PnPTermLabel", "Rank": 1, + "CommandName": "Remove-PnPTermLabel", "Id": 1175 }, { "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTermLabel", "Rank": 2, + "CommandName": "Remove-PnPTermLabel", "Id": 1176 }, { "Command": "Remove-PnPUser -Identity 23", - "CommandName": "Remove-PnPUser", "Rank": 1, + "CommandName": "Remove-PnPUser", "Id": 1177 }, { "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "CommandName": "Remove-PnPUser", "Rank": 2, + "CommandName": "Remove-PnPUser", "Id": 1178 }, { "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "CommandName": "Remove-PnPUser", "Rank": 3, + "CommandName": "Remove-PnPUser", "Id": 1179 }, { "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Remove-PnPUserInfo", "Rank": 1, + "CommandName": "Remove-PnPUserInfo", "Id": 1180 }, { "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Remove-PnPUserProfile", "Rank": 1, + "CommandName": "Remove-PnPUserProfile", "Id": 1181 }, { "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "CommandName": "Remove-PnPView", "Rank": 1, + "CommandName": "Remove-PnPView", "Id": 1182 }, { "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Id": 1183 }, { "Command": "Remove-PnPWeb -Identity projectA", - "CommandName": "Remove-PnPWeb", "Rank": 1, + "CommandName": "Remove-PnPWeb", "Id": 1184 }, { "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "CommandName": "Remove-PnPWeb", "Rank": 2, + "CommandName": "Remove-PnPWeb", "Id": 1185 }, { "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "CommandName": "Remove-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Remove-PnPWebhookSubscription", "Id": 1186 }, { "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPWebPart", "Rank": 1, + "CommandName": "Remove-PnPWebPart", "Id": 1187 }, { "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "CommandName": "Remove-PnPWebPart", "Rank": 2, + "CommandName": "Remove-PnPWebPart", "Id": 1188 }, { "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "CommandName": "Remove-PnPWikiPage", "Rank": 1, + "CommandName": "Remove-PnPWikiPage", "Id": 1189 }, { "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile", "Rank": 1, + "CommandName": "Rename-PnPFile", "Id": 1190 }, { "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile", "Rank": 2, + "CommandName": "Rename-PnPFile", "Id": 1191 }, { "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "CommandName": "Rename-PnPFile", "Rank": 3, + "CommandName": "Rename-PnPFile", "Id": 1192 }, { "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "CommandName": "Rename-PnPFolder", "Rank": 1, + "CommandName": "Rename-PnPFolder", "Id": 1193 }, { "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Repair-PnPSite", "Rank": 1, + "CommandName": "Repair-PnPSite", "Id": 1194 }, { "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "CommandName": "Repair-PnPSite", "Rank": 2, + "CommandName": "Repair-PnPSite", "Id": 1195 }, { "Command": "Request-PnPAccessToken", - "CommandName": "Request-PnPAccessToken", "Rank": 1, + "CommandName": "Request-PnPAccessToken", "Id": 1196 }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "CommandName": "Request-PnPAccessToken", "Rank": 2, + "CommandName": "Request-PnPAccessToken", "Id": 1197 }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "CommandName": "Request-PnPAccessToken", "Rank": 3, + "CommandName": "Request-PnPAccessToken", "Id": 1198 }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "CommandName": "Request-PnPAccessToken", "Rank": 4, + "CommandName": "Request-PnPAccessToken", "Id": 1199 }, { "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "CommandName": "Request-PnPPersonalSite", "Rank": 1, + "CommandName": "Request-PnPPersonalSite", "Id": 1200 }, { "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "CommandName": "Request-PnPPersonalSite", "Rank": 2, + "CommandName": "Request-PnPPersonalSite", "Id": 1201 }, { "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "CommandName": "Request-PnPReIndexList", "Rank": 1, + "CommandName": "Request-PnPReIndexList", "Id": 1202 }, { "Command": "Request-PnPReIndexWeb", - "CommandName": "Request-PnPReIndexWeb", "Rank": 1, + "CommandName": "Request-PnPReIndexWeb", "Id": 1203 }, { "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 1, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1204 }, { "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 2, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1205 }, { "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 3, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1206 }, { "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "CommandName": "Reset-PnPFileVersion", "Rank": 1, + "CommandName": "Reset-PnPFileVersion", "Id": 1207 }, { "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "CommandName": "Reset-PnPFileVersion", "Rank": 2, + "CommandName": "Reset-PnPFileVersion", "Id": 1208 }, { "Command": "Reset-PnPLabel -List \"Demo List\"", - "CommandName": "Reset-PnPLabel", "Rank": 1, + "CommandName": "Reset-PnPLabel", "Id": 1209 }, { "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "CommandName": "Reset-PnPLabel", "Rank": 2, + "CommandName": "Reset-PnPLabel", "Id": 1210 }, { "Command": "Reset-PnPMicrosoft365GroupExpiration", - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Id": 1211 }, { "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Rank": 1, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Id": 1212 }, { "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "CommandName": "Resolve-PnPFolder", "Rank": 1, + "CommandName": "Resolve-PnPFolder", "Id": 1213 }, { "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Id": 1214 }, { "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion", "Rank": 1, + "CommandName": "Restore-PnPFileVersion", "Id": 1215 }, { "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion", "Rank": 2, + "CommandName": "Restore-PnPFileVersion", "Id": 1216 }, { "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Restore-PnPFileVersion", "Rank": 3, + "CommandName": "Restore-PnPFileVersion", "Id": 1217 }, { "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Restore-PnPListItemVersion", "Rank": 1, + "CommandName": "Restore-PnPListItemVersion", "Id": 1218 }, { "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Restore-PnPListItemVersion", "Rank": 2, + "CommandName": "Restore-PnPListItemVersion", "Id": 1219 }, { "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Restore-PnPRecycleBinItem", "Rank": 1, + "CommandName": "Restore-PnPRecycleBinItem", "Id": 1220 }, { "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1221 }, { "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 2, + "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1222 }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantSite", "Rank": 1, + "CommandName": "Restore-PnPTenantSite", "Id": 1223 }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Restore-PnPTenantSite", "Rank": 2, + "CommandName": "Restore-PnPTenantSite", "Id": 1224 }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "CommandName": "Restore-PnPTenantSite", "Rank": 3, + "CommandName": "Restore-PnPTenantSite", "Id": 1225 }, { "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "CommandName": "Revoke-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Revoke-PnPAzureADAppSitePermission", "Id": 1226 }, { "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Revoke-PnPHubSiteRights", "Rank": 1, + "CommandName": "Revoke-PnPHubSiteRights", "Id": 1227 }, { "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Revoke-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Revoke-PnPSiteDesignRights", "Id": 1228 }, { "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Rank": 1, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Id": 1229 }, { "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "CommandName": "Revoke-PnPUserSession", "Rank": 1, + "CommandName": "Revoke-PnPUserSession", "Id": 1230 }, { "Command": "Save-PnPPageConversionLog", - "CommandName": "Save-PnPPageConversionLog", "Rank": 1, + "CommandName": "Save-PnPPageConversionLog", "Id": 1231 }, { "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "CommandName": "Save-PnPSiteTemplate", "Rank": 1, + "CommandName": "Save-PnPSiteTemplate", "Id": 1232 }, { "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "CommandName": "Save-PnPTenantTemplate", "Rank": 1, + "CommandName": "Save-PnPTenantTemplate", "Id": 1233 }, { "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "CommandName": "Send-PnPMail", "Rank": 1, + "CommandName": "Send-PnPMail", "Id": 1234 }, { "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", "Rank": 2, + "CommandName": "Send-PnPMail", "Id": 1235 }, { "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "CommandName": "Send-PnPMail", "Rank": 3, + "CommandName": "Send-PnPMail", "Id": 1236 }, { "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", "Rank": 4, + "CommandName": "Send-PnPMail", "Id": 1237 }, { "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", "Rank": 5, + "CommandName": "Send-PnPMail", "Id": 1238 }, { "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", "Rank": 6, + "CommandName": "Send-PnPMail", "Id": 1239 }, { "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "CommandName": "Set-PnPAdaptiveScopeProperty", "Rank": 1, + "CommandName": "Set-PnPAdaptiveScopeProperty", "Id": 1240 }, { "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Set-PnPApplicationCustomizer", "Id": 1241 }, { "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Set-PnPApplicationCustomizer", "Id": 1242 }, { "Command": "Set-PnPAppSideLoading -On", - "CommandName": "Set-PnPAppSideLoading", "Rank": 1, + "CommandName": "Set-PnPAppSideLoading", "Id": 1243 }, { "Command": "Set-PnPAppSideLoading -Off", - "CommandName": "Set-PnPAppSideLoading", "Rank": 2, + "CommandName": "Set-PnPAppSideLoading", "Id": 1244 }, { "Command": "Set-PnPAuditing -EnableAll", - "CommandName": "Set-PnPAuditing", "Rank": 1, + "CommandName": "Set-PnPAuditing", "Id": 1245 }, { "Command": "Set-PnPAuditing -DisableAll", - "CommandName": "Set-PnPAuditing", "Rank": 2, + "CommandName": "Set-PnPAuditing", "Id": 1246 }, { "Command": "Set-PnPAuditing -RetentionTime 7", - "CommandName": "Set-PnPAuditing", "Rank": 3, + "CommandName": "Set-PnPAuditing", "Id": 1247 }, { "Command": "Set-PnPAuditing -TrimAuditLog", - "CommandName": "Set-PnPAuditing", "Rank": 4, + "CommandName": "Set-PnPAuditing", "Id": 1248 }, { "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "CommandName": "Set-PnPAuditing", "Rank": 5, + "CommandName": "Set-PnPAuditing", "Id": 1249 }, { "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "CommandName": "Set-PnPAvailablePageLayouts", "Rank": 1, + "CommandName": "Set-PnPAvailablePageLayouts", "Id": 1250 }, { "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1251 }, { "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1252 }, { "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup", "Rank": 1, + "CommandName": "Set-PnPAzureADGroup", "Id": 1253 }, { "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup", "Rank": 2, + "CommandName": "Set-PnPAzureADGroup", "Id": 1254 }, { "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPAzureADGroup", "Rank": 3, + "CommandName": "Set-PnPAzureADGroup", "Id": 1255 }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 1, + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1256 }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 2, + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1257 }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 3, + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1258 }, { "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 1, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1259 }, { "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 2, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1260 }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 1, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1261 }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 2, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1262 }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 3, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1263 }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 4, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1264 }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType", "Rank": 1, + "CommandName": "Set-PnPContentType", "Id": 1265 }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "CommandName": "Set-PnPContentType", "Rank": 2, + "CommandName": "Set-PnPContentType", "Id": 1266 }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType", "Rank": 3, + "CommandName": "Set-PnPContentType", "Id": 1267 }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "CommandName": "Set-PnPContentType", "Rank": 4, + "CommandName": "Set-PnPContentType", "Id": 1268 }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "CommandName": "Set-PnPContentType", "Rank": 5, + "CommandName": "Set-PnPContentType", "Id": 1269 }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 1, + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1270 }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 2, + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1271 }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 3, + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1272 }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 4, + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1273 }, { "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "CommandName": "Set-PnPDefaultContentTypeToList", "Rank": 1, + "CommandName": "Set-PnPDefaultContentTypeToList", "Id": 1274 }, { "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 1, + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1275 }, { "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 2, + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1276 }, { "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 3, + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1277 }, { "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 1, + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1278 }, { "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 2, + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1279 }, { "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 3, + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1280 }, { "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "CommandName": "Set-PnPDocumentSetField", "Rank": 1, + "CommandName": "Set-PnPDocumentSetField", "Id": 1281 }, { "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "CommandName": "Set-PnPDocumentSetField", "Rank": 2, + "CommandName": "Set-PnPDocumentSetField", "Id": 1282 }, { "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "CommandName": "Set-PnPField", "Rank": 1, + "CommandName": "Set-PnPField", "Id": 1283 }, { "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "CommandName": "Set-PnPField", "Rank": 2, + "CommandName": "Set-PnPField", "Id": 1284 }, { "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "CommandName": "Set-PnPField", "Rank": 3, + "CommandName": "Set-PnPField", "Id": 1285 }, { "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedIn", "Rank": 1, + "CommandName": "Set-PnPFileCheckedIn", "Id": 1286 }, { "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "CommandName": "Set-PnPFileCheckedIn", "Rank": 2, + "CommandName": "Set-PnPFileCheckedIn", "Id": 1287 }, { "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedOut", "Rank": 1, + "CommandName": "Set-PnPFileCheckedOut", "Id": 1288 }, { "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission", "Rank": 1, + "CommandName": "Set-PnPFolderPermission", "Id": 1289 }, { "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission", "Rank": 2, + "CommandName": "Set-PnPFolderPermission", "Id": 1290 }, { "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "CommandName": "Set-PnPFolderPermission", "Rank": 3, + "CommandName": "Set-PnPFolderPermission", "Id": 1291 }, { "Command": "Set-PnPFooter -Enabled:$true", - "CommandName": "Set-PnPFooter", "Rank": 1, + "CommandName": "Set-PnPFooter", "Id": 1292 }, { "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "CommandName": "Set-PnPFooter", "Rank": 2, + "CommandName": "Set-PnPFooter", "Id": 1293 }, { "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "CommandName": "Set-PnPFooter", "Rank": 3, + "CommandName": "Set-PnPFooter", "Id": 1294 }, { "Command": "Set-PnPFooter -LogoUrl \"\"", - "CommandName": "Set-PnPFooter", "Rank": 4, + "CommandName": "Set-PnPFooter", "Id": 1295 }, { "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "CommandName": "Set-PnPGraphSubscription", "Rank": 1, + "CommandName": "Set-PnPGraphSubscription", "Id": 1296 }, { "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "CommandName": "Set-PnPGroup", "Rank": 1, + "CommandName": "Set-PnPGroup", "Id": 1297 }, { "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "CommandName": "Set-PnPGroup", "Rank": 2, + "CommandName": "Set-PnPGroup", "Id": 1298 }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "CommandName": "Set-PnPGroupPermissions", "Rank": 1, + "CommandName": "Set-PnPGroupPermissions", "Id": 1299 }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "CommandName": "Set-PnPGroupPermissions", "Rank": 2, + "CommandName": "Set-PnPGroupPermissions", "Id": 1300 }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions", "Rank": 3, + "CommandName": "Set-PnPGroupPermissions", "Id": 1301 }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions", "Rank": 4, + "CommandName": "Set-PnPGroupPermissions", "Id": 1302 }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "CommandName": "Set-PnPGroupPermissions", "Rank": 5, + "CommandName": "Set-PnPGroupPermissions", "Id": 1303 }, { "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 1, + "CommandName": "Set-PnPHideDefaultThemes", "Id": 1304 }, { "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 2, + "CommandName": "Set-PnPHideDefaultThemes", "Id": 1305 }, { "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "CommandName": "Set-PnPHomePage", "Rank": 1, + "CommandName": "Set-PnPHomePage", "Id": 1306 }, { "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "CommandName": "Set-PnPHomePage", "Rank": 2, + "CommandName": "Set-PnPHomePage", "Id": 1307 }, { "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "CommandName": "Set-PnPHomeSite", "Rank": 1, + "CommandName": "Set-PnPHomeSite", "Id": 1308 }, { "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "CommandName": "Set-PnPHomeSite", "Rank": 2, + "CommandName": "Set-PnPHomeSite", "Id": 1309 }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "CommandName": "Set-PnPHubSite", "Rank": 1, + "CommandName": "Set-PnPHubSite", "Id": 1310 }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "CommandName": "Set-PnPHubSite", "Rank": 2, + "CommandName": "Set-PnPHubSite", "Id": 1311 }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "CommandName": "Set-PnPHubSite", "Rank": 3, + "CommandName": "Set-PnPHubSite", "Id": 1312 }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "CommandName": "Set-PnPHubSite", "Rank": 4, + "CommandName": "Set-PnPHubSite", "Id": 1313 }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "CommandName": "Set-PnPHubSite", "Rank": 5, + "CommandName": "Set-PnPHubSite", "Id": 1314 }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "CommandName": "Set-PnPHubSite", "Rank": 6, + "CommandName": "Set-PnPHubSite", "Id": 1315 }, { "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "CommandName": "Set-PnPImageListItemColumn", "Rank": 1, + "CommandName": "Set-PnPImageListItemColumn", "Id": 1316 }, { "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "CommandName": "Set-PnPImageListItemColumn", "Rank": 2, + "CommandName": "Set-PnPImageListItemColumn", "Id": 1317 }, { "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "CommandName": "Set-PnPIndexedProperties", "Rank": 1, + "CommandName": "Set-PnPIndexedProperties", "Id": 1318 }, { "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 1, + "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1319 }, { "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 2, + "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1320 }, { "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "CommandName": "Set-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Set-PnPKnowledgeHubSite", "Id": 1321 }, { "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "CommandName": "Set-PnPLabel", "Rank": 1, + "CommandName": "Set-PnPLabel", "Id": 1322 }, { "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "CommandName": "Set-PnPLabel", "Rank": 2, + "CommandName": "Set-PnPLabel", "Id": 1323 }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "CommandName": "Set-PnPList", "Rank": 1, + "CommandName": "Set-PnPList", "Id": 1324 }, { "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "CommandName": "Set-PnPList", "Rank": 2, + "CommandName": "Set-PnPList", "Id": 1325 }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "CommandName": "Set-PnPList", "Rank": 3, + "CommandName": "Set-PnPList", "Id": 1326 }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "CommandName": "Set-PnPList", "Rank": 4, + "CommandName": "Set-PnPList", "Id": 1327 }, { "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "CommandName": "Set-PnPList", "Rank": 5, + "CommandName": "Set-PnPList", "Id": 1328 }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "CommandName": "Set-PnPList", "Rank": 6, + "CommandName": "Set-PnPList", "Id": 1329 }, { "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "CommandName": "Set-PnPList", "Rank": 7, + "CommandName": "Set-PnPList", "Id": 1330 }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPList", "Rank": 8, + "CommandName": "Set-PnPList", "Id": 1331 }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "CommandName": "Set-PnPList", "Rank": 9, + "CommandName": "Set-PnPList", "Id": 1332 }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "CommandName": "Set-PnPList", "Rank": 10, + "CommandName": "Set-PnPList", "Id": 1333 }, { "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "CommandName": "Set-PnPList", "Rank": 11, + "CommandName": "Set-PnPList", "Id": 1334 }, { "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 1, + "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1335 }, { "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 2, + "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1336 }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", "Rank": 1, + "CommandName": "Set-PnPListItem", "Id": 1337 }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", "Rank": 2, + "CommandName": "Set-PnPListItem", "Id": 1338 }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", "Rank": 3, + "CommandName": "Set-PnPListItem", "Id": 1339 }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "CommandName": "Set-PnPListItem", "Rank": 4, + "CommandName": "Set-PnPListItem", "Id": 1340 }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "CommandName": "Set-PnPListItem", "Rank": 5, + "CommandName": "Set-PnPListItem", "Id": 1341 }, { "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Set-PnPListItemAsRecord", "Rank": 1, + "CommandName": "Set-PnPListItemAsRecord", "Id": 1342 }, { "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "CommandName": "Set-PnPListItemAsRecord", "Rank": 2, + "CommandName": "Set-PnPListItemAsRecord", "Id": 1343 }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission", "Rank": 1, + "CommandName": "Set-PnPListItemPermission", "Id": 1344 }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission", "Rank": 2, + "CommandName": "Set-PnPListItemPermission", "Id": 1345 }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "CommandName": "Set-PnPListItemPermission", "Rank": 3, + "CommandName": "Set-PnPListItemPermission", "Id": 1346 }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "CommandName": "Set-PnPListItemPermission", "Rank": 4, + "CommandName": "Set-PnPListItemPermission", "Id": 1347 }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "CommandName": "Set-PnPListItemPermission", "Rank": 5, + "CommandName": "Set-PnPListItemPermission", "Id": 1348 }, { "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListPermission", "Rank": 1, + "CommandName": "Set-PnPListPermission", "Id": 1349 }, { "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListPermission", "Rank": 2, + "CommandName": "Set-PnPListPermission", "Id": 1350 }, { "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 1, + "CommandName": "Set-PnPListRecordDeclaration", "Id": 1351 }, { "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 2, + "CommandName": "Set-PnPListRecordDeclaration", "Id": 1352 }, { "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", "Rank": 1, + "CommandName": "Set-PnPMasterPage", "Id": 1353 }, { "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", "Rank": 2, + "CommandName": "Set-PnPMasterPage", "Id": 1354 }, { "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", "Rank": 3, + "CommandName": "Set-PnPMasterPage", "Id": 1355 }, { "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", "Rank": 4, + "CommandName": "Set-PnPMasterPage", "Id": 1356 }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1357 }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1358 }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1359 }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1360 }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1361 }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1362 }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1363 }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1364 }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1365 }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1366 }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1367 }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1368 }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1369 }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1370 }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1371 }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1372 }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1373 }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1374 }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1375 }, { "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1376 }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1377 }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1378 }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1379 }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1380 }, { "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1381 }, { "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1382 }, { "Command": "Set-PnPMinimalDownloadStrategy -Off", - "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 1, + "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1383 }, { "Command": "Set-PnPMinimalDownloadStrategy -On", - "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 2, + "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1384 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "CommandName": "Set-PnPPage", "Rank": 1, + "CommandName": "Set-PnPPage", "Id": 1385 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "CommandName": "Set-PnPPage", "Rank": 2, + "CommandName": "Set-PnPPage", "Id": 1386 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "CommandName": "Set-PnPPage", "Rank": 3, + "CommandName": "Set-PnPPage", "Id": 1387 }, { "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "CommandName": "Set-PnPPage", "Rank": 4, + "CommandName": "Set-PnPPage", "Id": 1388 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "CommandName": "Set-PnPPage", "Rank": 5, + "CommandName": "Set-PnPPage", "Id": 1389 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "CommandName": "Set-PnPPage", "Rank": 6, + "CommandName": "Set-PnPPage", "Id": 1390 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Set-PnPPage", "Rank": 7, + "CommandName": "Set-PnPPage", "Id": 1391 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "CommandName": "Set-PnPPage", "Rank": 8, + "CommandName": "Set-PnPPage", "Id": 1392 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Set-PnPPage", "Rank": 9, + "CommandName": "Set-PnPPage", "Id": 1393 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Set-PnPPage", "Rank": 10, + "CommandName": "Set-PnPPage", "Id": 1394 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "CommandName": "Set-PnPPage", "Rank": 11, + "CommandName": "Set-PnPPage", "Id": 1395 }, { "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "CommandName": "Set-PnPPageTextPart", "Rank": 1, + "CommandName": "Set-PnPPageTextPart", "Id": 1396 }, { "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "CommandName": "Set-PnPPageWebPart", "Rank": 1, + "CommandName": "Set-PnPPageWebPart", "Id": 1397 }, { "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "CommandName": "Set-PnPPageWebPart", "Rank": 2, + "CommandName": "Set-PnPPageWebPart", "Id": 1398 }, { "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "CommandName": "Set-PnPPlannerBucket", "Rank": 1, + "CommandName": "Set-PnPPlannerBucket", "Id": 1399 }, { "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 1, + "CommandName": "Set-PnPPlannerConfiguration", "Id": 1400 }, { "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 2, + "CommandName": "Set-PnPPlannerConfiguration", "Id": 1401 }, { "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "CommandName": "Set-PnPPlannerPlan", "Rank": 1, + "CommandName": "Set-PnPPlannerPlan", "Id": 1402 }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "CommandName": "Set-PnPPlannerTask", "Rank": 1, + "CommandName": "Set-PnPPlannerTask", "Id": 1403 }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "CommandName": "Set-PnPPlannerTask", "Rank": 2, + "CommandName": "Set-PnPPlannerTask", "Id": 1404 }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "CommandName": "Set-PnPPlannerTask", "Rank": 3, + "CommandName": "Set-PnPPlannerTask", "Id": 1405 }, { "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPPlannerUserPolicy", "Rank": 1, + "CommandName": "Set-PnPPlannerUserPolicy", "Id": 1406 }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "CommandName": "Set-PnPPropertyBagValue", "Rank": 1, + "CommandName": "Set-PnPPropertyBagValue", "Id": 1407 }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "CommandName": "Set-PnPPropertyBagValue", "Rank": 2, + "CommandName": "Set-PnPPropertyBagValue", "Id": 1408 }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "CommandName": "Set-PnPPropertyBagValue", "Rank": 3, + "CommandName": "Set-PnPPropertyBagValue", "Id": 1409 }, { "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 1, + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1410 }, { "Command": "Set-PnPRequestAccessEmails -Disabled", - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 2, + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1411 }, { "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 3, + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1412 }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "CommandName": "Set-PnPRoleDefinition", "Rank": 1, + "CommandName": "Set-PnPRoleDefinition", "Id": 1413 }, { "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "CommandName": "Set-PnPRoleDefinition", "Rank": 2, + "CommandName": "Set-PnPRoleDefinition", "Id": 1414 }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "CommandName": "Set-PnPRoleDefinition", "Rank": 3, + "CommandName": "Set-PnPRoleDefinition", "Id": 1415 }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "CommandName": "Set-PnPRoleDefinition", "Rank": 4, + "CommandName": "Set-PnPRoleDefinition", "Id": 1416 }, { "Command": "Set-PnPSearchConfiguration -Configuration $config", - "CommandName": "Set-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Set-PnPSearchConfiguration", "Id": 1417 }, { "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Set-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Set-PnPSearchConfiguration", "Id": 1418 }, { "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Set-PnPSearchConfiguration", "Id": 1419 }, { "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Set-PnPSearchConfiguration", "Id": 1420 }, { "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", "Rank": 1, + "CommandName": "Set-PnPSearchExternalItem", "Id": 1421 }, { "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", "Rank": 2, + "CommandName": "Set-PnPSearchExternalItem", "Id": 1422 }, { "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "CommandName": "Set-PnPSearchSettings", "Rank": 1, + "CommandName": "Set-PnPSearchSettings", "Id": 1423 }, { "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "CommandName": "Set-PnPSearchSettings", "Rank": 2, + "CommandName": "Set-PnPSearchSettings", "Id": 1424 }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "CommandName": "Set-PnPSearchSettings", "Rank": 3, + "CommandName": "Set-PnPSearchSettings", "Id": 1425 }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "CommandName": "Set-PnPSearchSettings", "Rank": 4, + "CommandName": "Set-PnPSearchSettings", "Id": 1426 }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "CommandName": "Set-PnPSearchSettings", "Rank": 5, + "CommandName": "Set-PnPSearchSettings", "Id": 1427 }, { "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "CommandName": "Set-PnPSearchSettings", "Rank": 6, + "CommandName": "Set-PnPSearchSettings", "Id": 1428 }, { "Command": "Set-PnPSearchSettings -SearchScope Hub", - "CommandName": "Set-PnPSearchSettings", "Rank": 7, + "CommandName": "Set-PnPSearchSettings", "Id": 1429 }, { "Command": "Set-PnPSite -Classification \"HBI\"", - "CommandName": "Set-PnPSite", "Rank": 1, + "CommandName": "Set-PnPSite", "Id": 1430 }, { "Command": "Set-PnPSite -Classification $null", - "CommandName": "Set-PnPSite", "Rank": 2, + "CommandName": "Set-PnPSite", "Id": 1431 }, { "Command": "Set-PnPSite -DisableFlows", - "CommandName": "Set-PnPSite", "Rank": 3, + "CommandName": "Set-PnPSite", "Id": 1432 }, { "Command": "Set-PnPSite -DisableFlows:$false", - "CommandName": "Set-PnPSite", "Rank": 4, + "CommandName": "Set-PnPSite", "Id": 1433 }, { "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "CommandName": "Set-PnPSite", "Rank": 5, + "CommandName": "Set-PnPSite", "Id": 1434 }, { "Command": "Set-PnPSite -NoScriptSite $false", - "CommandName": "Set-PnPSite", "Rank": 6, + "CommandName": "Set-PnPSite", "Id": 1435 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPSite", "Rank": 7, + "CommandName": "Set-PnPSite", "Id": 1436 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "CommandName": "Set-PnPSite", "Rank": 8, + "CommandName": "Set-PnPSite", "Id": 1437 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "CommandName": "Set-PnPSite", "Rank": 9, + "CommandName": "Set-PnPSite", "Id": 1438 }, { "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "CommandName": "Set-PnPSite", "Rank": 10, + "CommandName": "Set-PnPSite", "Id": 1439 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "CommandName": "Set-PnPSite", "Rank": 11, + "CommandName": "Set-PnPSite", "Id": 1440 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "CommandName": "Set-PnPSite", "Rank": 12, + "CommandName": "Set-PnPSite", "Id": 1441 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "CommandName": "Set-PnPSite", "Rank": 13, + "CommandName": "Set-PnPSite", "Id": 1442 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", "Rank": 14, + "CommandName": "Set-PnPSite", "Id": 1443 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", "Rank": 15, + "CommandName": "Set-PnPSite", "Id": 1444 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", "Rank": 16, + "CommandName": "Set-PnPSite", "Id": 1445 }, { "Command": "Set-PnPSite -CancelVPForExistingLibs", - "CommandName": "Set-PnPSite", "Rank": 17, + "CommandName": "Set-PnPSite", "Id": 1446 }, { "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "CommandName": "Set-PnPSiteClassification", "Rank": 1, + "CommandName": "Set-PnPSiteClassification", "Id": 1447 }, { "Command": "Set-PnPSiteClosure -State Open", - "CommandName": "Set-PnPSiteClosure", "Rank": 1, + "CommandName": "Set-PnPSiteClosure", "Id": 1448 }, { "Command": "Set-PnPSiteClosure -State Closed", - "CommandName": "Set-PnPSiteClosure", "Rank": 2, + "CommandName": "Set-PnPSiteClosure", "Id": 1449 }, { "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "CommandName": "Set-PnPSiteDesign", "Rank": 1, + "CommandName": "Set-PnPSiteDesign", "Id": 1450 }, { "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", "Rank": 2, + "CommandName": "Set-PnPSiteDesign", "Id": 1451 }, { "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "CommandName": "Set-PnPSiteGroup", "Rank": 1, + "CommandName": "Set-PnPSiteGroup", "Id": 1452 }, { "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "CommandName": "Set-PnPSiteGroup", "Rank": 2, + "CommandName": "Set-PnPSiteGroup", "Id": 1453 }, { "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Set-PnPSitePolicy", "Rank": 1, + "CommandName": "Set-PnPSitePolicy", "Id": 1454 }, { "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScript", "Rank": 1, + "CommandName": "Set-PnPSiteScript", "Id": 1455 }, { "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScriptPackage", "Rank": 1, + "CommandName": "Set-PnPSiteScriptPackage", "Id": 1456 }, { "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 1, + "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1457 }, { "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 2, + "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1458 }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 1, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1459 }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 2, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1460 }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 3, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1461 }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 4, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1462 }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 5, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1463 }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 6, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1464 }, { "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity", "Rank": 1, + "CommandName": "Set-PnPStorageEntity", "Id": 1465 }, { "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity", "Rank": 2, + "CommandName": "Set-PnPStorageEntity", "Id": 1466 }, { "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1467 }, { "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1468 }, { "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1469 }, { "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1470 }, { "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 1, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1471 }, { "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 2, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1472 }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 1, + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1473 }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 2, + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1474 }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 3, + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1475 }, { "Command": "Set-PnPTeamifyPromptHidden", - "CommandName": "Set-PnPTeamifyPromptHidden", "Rank": 1, + "CommandName": "Set-PnPTeamifyPromptHidden", "Id": 1476 }, { "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "CommandName": "Set-PnPTeamsChannel", "Rank": 1, + "CommandName": "Set-PnPTeamsChannel", "Id": 1477 }, { "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "CommandName": "Set-PnPTeamsChannel", "Rank": 2, + "CommandName": "Set-PnPTeamsChannel", "Id": 1478 }, { "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 1, + "CommandName": "Set-PnpTeamsChannelUser", "Id": 1479 }, { "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 2, + "CommandName": "Set-PnpTeamsChannelUser", "Id": 1480 }, { "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "CommandName": "Set-PnPTeamsTab", "Rank": 1, + "CommandName": "Set-PnPTeamsTab", "Id": 1481 }, { "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "CommandName": "Set-PnPTeamsTag", "Rank": 1, + "CommandName": "Set-PnPTeamsTag", "Id": 1482 }, { "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "CommandName": "Set-PnPTeamsTeam", "Rank": 1, + "CommandName": "Set-PnPTeamsTeam", "Id": 1483 }, { "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "CommandName": "Set-PnPTeamsTeam", "Rank": 2, + "CommandName": "Set-PnPTeamsTeam", "Id": 1484 }, { "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "CommandName": "Set-PnPTeamsTeam", "Rank": 3, + "CommandName": "Set-PnPTeamsTeam", "Id": 1485 }, { "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "CommandName": "Set-PnPTeamsTeam", "Rank": 4, + "CommandName": "Set-PnPTeamsTeam", "Id": 1486 }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 1, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1487 }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 2, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1488 }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 3, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1489 }, { "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "CommandName": "Set-PnPTeamsTeamPicture", "Rank": 1, + "CommandName": "Set-PnPTeamsTeamPicture", "Id": 1490 }, { "Command": "Set-PnPTemporarilyDisableAppBar $true", - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 1, + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1491 }, { "Command": "Set-PnPTemporarilyDisableAppBar $false", - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 2, + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1492 }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", - "CommandName": "Set-PnPTenant", "Rank": 1, + "CommandName": "Set-PnPTenant", "Id": 1493 }, { "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "CommandName": "Set-PnPTenant", "Rank": 2, + "CommandName": "Set-PnPTenant", "Id": 1494 }, { "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "CommandName": "Set-PnPTenant", "Rank": 3, + "CommandName": "Set-PnPTenant", "Id": 1495 }, { "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "CommandName": "Set-PnPTenant", "Rank": 4, + "CommandName": "Set-PnPTenant", "Id": 1496 }, { "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "CommandName": "Set-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Set-PnPTenantAppCatalogUrl", "Id": 1497 }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 1, + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1498 }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 2, + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1499 }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 3, + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1500 }, { "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", - "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 1, + "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1501 }, { "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 2, + "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1502 }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "CommandName": "Set-PnPTenantSite", "Rank": 1, + "CommandName": "Set-PnPTenantSite", "Id": 1503 }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "CommandName": "Set-PnPTenantSite", "Rank": 2, + "CommandName": "Set-PnPTenantSite", "Id": 1504 }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPTenantSite", "Rank": 3, + "CommandName": "Set-PnPTenantSite", "Id": 1505 }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Set-PnPTenantSite", "Rank": 4, + "CommandName": "Set-PnPTenantSite", "Id": 1506 }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "CommandName": "Set-PnPTenantSite", "Rank": 5, + "CommandName": "Set-PnPTenantSite", "Id": 1507 }, { "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1508 }, { "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 2, + "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1509 }, { "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "CommandName": "Set-PnPTerm", "Rank": 1, + "CommandName": "Set-PnPTerm", "Id": 1510 }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm", "Rank": 2, + "CommandName": "Set-PnPTerm", "Id": 1511 }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm", "Rank": 3, + "CommandName": "Set-PnPTerm", "Id": 1512 }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "CommandName": "Set-PnPTerm", "Rank": 4, + "CommandName": "Set-PnPTerm", "Id": 1513 }, { "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "CommandName": "Set-PnPTermGroup", "Rank": 1, + "CommandName": "Set-PnPTermGroup", "Id": 1514 }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "CommandName": "Set-PnPTermSet", "Rank": 1, + "CommandName": "Set-PnPTermSet", "Id": 1515 }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "CommandName": "Set-PnPTermSet", "Rank": 2, + "CommandName": "Set-PnPTermSet", "Id": 1516 }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "CommandName": "Set-PnPTermSet", "Rank": 3, + "CommandName": "Set-PnPTermSet", "Id": 1517 }, { "Command": "Set-PnPTheme", - "CommandName": "Set-PnPTheme", "Rank": 1, + "CommandName": "Set-PnPTheme", "Id": 1518 }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "CommandName": "Set-PnPTheme", "Rank": 2, + "CommandName": "Set-PnPTheme", "Id": 1519 }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "CommandName": "Set-PnPTheme", "Rank": 3, + "CommandName": "Set-PnPTheme", "Id": 1520 }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "CommandName": "Set-PnPTheme", "Rank": 4, + "CommandName": "Set-PnPTheme", "Id": 1521 }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "CommandName": "Set-PnPTraceLog", "Rank": 1, + "CommandName": "Set-PnPTraceLog", "Id": 1522 }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "CommandName": "Set-PnPTraceLog", "Rank": 2, + "CommandName": "Set-PnPTraceLog", "Id": 1523 }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "CommandName": "Set-PnPTraceLog", "Rank": 3, + "CommandName": "Set-PnPTraceLog", "Id": 1524 }, { "Command": "Set-PnPTraceLog -Off", - "CommandName": "Set-PnPTraceLog", "Rank": 4, + "CommandName": "Set-PnPTraceLog", "Id": 1525 }, { "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "CommandName": "Set-PnPUserOneDriveQuota", "Rank": 1, + "CommandName": "Set-PnPUserOneDriveQuota", "Id": 1526 }, { "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "CommandName": "Set-PnPUserProfileProperty", "Rank": 1, + "CommandName": "Set-PnPUserProfileProperty", "Id": 1527 }, { "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "CommandName": "Set-PnPUserProfileProperty", "Rank": 2, + "CommandName": "Set-PnPUserProfileProperty", "Id": 1528 }, { "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "CommandName": "Set-PnPView", "Rank": 1, + "CommandName": "Set-PnPView", "Id": 1529 }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "CommandName": "Set-PnPView", "Rank": 2, + "CommandName": "Set-PnPView", "Id": 1530 }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "CommandName": "Set-PnPView", "Rank": 3, + "CommandName": "Set-PnPView", "Id": 1531 }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "CommandName": "Set-PnPView", "Rank": 4, + "CommandName": "Set-PnPView", "Id": 1532 }, { "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", "Rank": 1, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1533 }, { "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 2, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1534 }, { "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", "Rank": 3, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1535 }, { "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 4, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1536 }, { "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "CommandName": "Set-PnPWeb", "Rank": 1, + "CommandName": "Set-PnPWeb", "Id": 1537 }, { "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "CommandName": "Set-PnPWeb", "Rank": 2, + "CommandName": "Set-PnPWeb", "Id": 1538 }, { "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "CommandName": "Set-PnPWeb", "Rank": 3, + "CommandName": "Set-PnPWeb", "Id": 1539 }, { "Command": "Set-PnPWeb -NoCrawl:$true", - "CommandName": "Set-PnPWeb", "Rank": 4, + "CommandName": "Set-PnPWeb", "Id": 1540 }, { "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "CommandName": "Set-PnPWebHeader", "Rank": 1, + "CommandName": "Set-PnPWebHeader", "Id": 1541 }, { "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "CommandName": "Set-PnPWebHeader", "Rank": 2, + "CommandName": "Set-PnPWebHeader", "Id": 1542 }, { "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "CommandName": "Set-PnPWebHeader", "Rank": 3, + "CommandName": "Set-PnPWebHeader", "Id": 1543 }, { "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "CommandName": "Set-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Set-PnPWebhookSubscription", "Id": 1544 }, { "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", "Rank": 2, + "CommandName": "Set-PnPWebhookSubscription", "Id": 1545 }, { "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", - "CommandName": "Set-PnPWebPartProperty", "Rank": 1, + "CommandName": "Set-PnPWebPartProperty", "Id": 1546 }, { "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", "Rank": 1, + "CommandName": "Set-PnPWebPermission", "Id": 1547 }, { "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", "Rank": 2, + "CommandName": "Set-PnPWebPermission", "Id": 1548 }, { "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", "Rank": 3, + "CommandName": "Set-PnPWebPermission", "Id": 1549 }, { "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "CommandName": "Set-PnPWebPermission", "Rank": 4, + "CommandName": "Set-PnPWebPermission", "Id": 1550 }, { "Command": "Set-PnPWebTheme -Theme MyTheme", - "CommandName": "Set-PnPWebTheme", "Rank": 1, + "CommandName": "Set-PnPWebTheme", "Id": 1551 }, { "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "CommandName": "Set-PnPWebTheme", "Rank": 2, + "CommandName": "Set-PnPWebTheme", "Id": 1552 }, { "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "CommandName": "Set-PnPWikiPageContent", "Rank": 1, + "CommandName": "Set-PnPWikiPageContent", "Id": 1553 }, { "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "CommandName": "Submit-PnPSearchQuery", "Rank": 1, + "CommandName": "Submit-PnPSearchQuery", "Id": 1554 }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "CommandName": "Submit-PnPSearchQuery", "Rank": 2, + "CommandName": "Submit-PnPSearchQuery", "Id": 1555 }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "CommandName": "Submit-PnPSearchQuery", "Rank": 3, + "CommandName": "Submit-PnPSearchQuery", "Id": 1556 }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "CommandName": "Submit-PnPSearchQuery", "Rank": 4, + "CommandName": "Submit-PnPSearchQuery", "Id": 1557 }, { "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "CommandName": "Submit-PnPSearchQuery", "Rank": 5, + "CommandName": "Submit-PnPSearchQuery", "Id": 1558 }, { "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 1, + "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1559 }, { "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 2, + "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1560 }, { "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Sync-PnPAppToTeams", "Rank": 1, + "CommandName": "Sync-PnPAppToTeams", "Id": 1561 }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 1, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1562 }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 2, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1563 }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 3, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1564 }, { "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "CommandName": "Test-PnPListItemIsRecord", "Rank": 1, + "CommandName": "Test-PnPListItemIsRecord", "Id": 1565 }, { "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Rank": 1, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Id": 1566 }, { "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Test-PnPSite", "Rank": 1, + "CommandName": "Test-PnPSite", "Id": 1567 }, { "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "CommandName": "Test-PnPSite", "Rank": 2, + "CommandName": "Test-PnPSite", "Id": 1568 }, { "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "CommandName": "Test-PnPTenantTemplate", "Rank": 1, + "CommandName": "Test-PnPTenantTemplate", "Id": 1569 }, { "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "CommandName": "Undo-PnPFileCheckedOut", "Rank": 1, + "CommandName": "Undo-PnPFileCheckedOut", "Id": 1570 }, { "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Uninstall-PnPApp", "Rank": 1, + "CommandName": "Uninstall-PnPApp", "Id": 1571 }, { "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Uninstall-PnPApp", "Rank": 2, + "CommandName": "Uninstall-PnPApp", "Id": 1572 }, { "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Unpublish-PnPApp", "Rank": 1, + "CommandName": "Unpublish-PnPApp", "Id": 1573 }, { "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Unpublish-PnPApp", "Rank": 2, + "CommandName": "Unpublish-PnPApp", "Id": 1574 }, { "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "CommandName": "Unpublish-PnPContentType", "Rank": 1, + "CommandName": "Unpublish-PnPContentType", "Id": 1575 }, { "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Unpublish-PnPSyntexModel", "Rank": 1, + "CommandName": "Unpublish-PnPSyntexModel", "Id": 1576 }, { "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", "Rank": 2, + "CommandName": "Unpublish-PnPSyntexModel", "Id": 1577 }, { "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Unregister-PnPHubSite", "Rank": 1, + "CommandName": "Unregister-PnPHubSite", "Id": 1578 }, { "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Update-PnPApp", "Rank": 1, + "CommandName": "Update-PnPApp", "Id": 1579 }, { "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Update-PnPApp", "Rank": 2, + "CommandName": "Update-PnPApp", "Id": 1580 }, { "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1581 }, { "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1582 }, { "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 3, + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1583 }, { "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 1, + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1584 }, { "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 2, + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1585 }, { "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 3, + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1586 }, { "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "CommandName": "Update-PnPTeamsApp", "Rank": 1, + "CommandName": "Update-PnPTeamsApp", "Id": 1587 }, { "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Update-PnPTeamsUser", "Rank": 1, + "CommandName": "Update-PnPTeamsUser", "Id": 1588 }, { "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Update-PnPTeamsUser", "Rank": 2, + "CommandName": "Update-PnPTeamsUser", "Id": 1589 }, { "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "CommandName": "Update-PnPTeamsUser", "Rank": 3, + "CommandName": "Update-PnPTeamsUser", "Id": 1590 }, { "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "CommandName": "Update-PnPUserType", "Rank": 1, + "CommandName": "Update-PnPUserType", "Id": 1591 } ] diff --git a/version.txt b/version.txt index a9efa31a4..fafc82a47 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.101 \ No newline at end of file +2.2.102 \ No newline at end of file From 7d73867368cd594d1f95e206cf463776ef96660d Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Thu, 19 Oct 2023 02:37:41 +0000 Subject: [PATCH 091/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9546 ++++++++--------- version.txt | 2 +- 3 files changed, 4775 insertions(+), 4775 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 1e77a6ad7..110181b8d 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -913274835a0b289a0d9fe64e34bd9c50004bad2a \ No newline at end of file +9dcd79b68301ac1aa22bb6bc79b9575622b18e57 \ 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 7a0331b79..55a1833c6 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9548 +1,9548 @@ [ { - "Command": "Add-PnPAlert -List \"Demo List\"", - "Rank": 1, + "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)", - "Rank": 2, + "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\"", - "Rank": 3, + "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))", - "Rank": 4, + "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", - "Rank": 1, + "Id": 5, "CommandName": "Add-PnPApp", - "Id": 5 + "Command": "Add-PnPApp -Path ./myapp.sppkg", + "Rank": 1 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Rank": 2, + "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", - "Rank": 3, + "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", - "Rank": 4, + "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`\"}", - "Rank": 1, + "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\"", - "Rank": 1, + "Id": 10, "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 10 + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "Rank": 1 }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Rank": 2, + "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\"", - "Rank": 1, + "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", - "Rank": 2, + "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\"", - "Rank": 3, + "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\"", - "Rank": 1, + "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", - "Rank": 2, + "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\"", - "Rank": 3, + "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", - "Rank": 1, + "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\"", - "Rank": 2, + "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", - "Rank": 1, + "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\"", - "Rank": 2, + "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\"", - "Rank": 3, + "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\"", - "Rank": 4, + "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", - "Rank": 5, + "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\"", - "Rank": 1, + "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", - "Rank": 2, + "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\"", - "Rank": 1, + "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", - "Rank": 2, + "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", - "Rank": 1, + "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`\"}\"", - "Rank": 1, + "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'", - "Rank": 1, + "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 '' -Fields 'Title','Choice' -IncludeSecurity", - "Rank": 2, + "Id": 32, "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 32 + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "Rank": 2 }, { - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "Rank": 1, + "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", - "Rank": 1, + "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", - "Rank": 2, + "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", - "Rank": 3, + "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", - "Rank": 4, + "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]\"", - "Rank": 1, + "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\"", - "Rank": 2, + "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\"", - "Rank": 3, + "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\"", - "Rank": 4, + "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\"", - "Rank": 5, + "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()\"", - "Rank": 6, + "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\"", - "Rank": 1, + "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\"", - "Rank": 1, + "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\"", - "Rank": 2, + "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=\"1/1/2016\"}", - "Rank": 3, + "Id": 47, "CommandName": "Add-PnPFile", - "Id": 47 + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 3 }, { - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "Rank": 4, + "Id": 48, "CommandName": "Add-PnPFile", - "Id": 48 + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", + "Rank": 4 }, { - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 5, + "Id": 49, "CommandName": "Add-PnPFile", - "Id": 49 + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 5 }, { - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "Rank": 6, + "Id": 50, "CommandName": "Add-PnPFile", - "Id": 50 + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", + "Rank": 6 }, { - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "Rank": 7, + "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\" }'", - "Rank": 8, + "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\"", - "Rank": 1, + "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!\"", - "Rank": 2, + "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)", - "Rank": 3, + "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\"", - "Rank": 1, + "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", - "Rank": 2, + "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", - "Rank": 1, + "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", - "Rank": 2, + "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)", - "Rank": 3, + "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\"", - "Rank": 1, + "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\"", - "Rank": 2, + "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", - "Rank": 3, + "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", - "Rank": 4, + "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\"", - "Rank": 5, + "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\"", - "Rank": 1, + "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\"", - "Rank": 2, + "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", - "Rank": 1, + "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", - "Rank": 2, + "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", - "Rank": 3, + "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", - "Rank": 4, + "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", - "Rank": 1, + "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\"", - "Rank": 2, + "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\"", - "Rank": 3, + "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\"", - "Rank": 1, + "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!\"", - "Rank": 2, + "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)", - "Rank": 3, + "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\"", - "Rank": 1, + "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", - "Rank": 2, + "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", - "Rank": 1, + "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", - "Rank": 2, + "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)", - "Rank": 3, + "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\"", - "Rank": 1, + "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\"", - "Rank": 2, + "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'", - "Rank": 1, + "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", - "Rank": 2, + "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", - "Rank": 1, + "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\"", - "Rank": 1, + "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", - "Rank": 1, + "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\"", - "Rank": 2, + "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\"", - "Rank": 3, + "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 '' -Sequence 9999 -Scope Site", - "Rank": 1, + "Id": 92, "CommandName": "Add-PnPJavaScriptBlock", - "Id": 92 + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "Rank": 1 }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Rank": 2, + "Id": 93, "CommandName": "Add-PnPJavaScriptBlock", - "Id": 93 + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "Rank": 2 }, { - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "Rank": 1, + "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", - "Rank": 2, + "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\"", - "Rank": 1, + "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\"", - "Rank": 2, + "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'", - "Rank": 1, + "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", - "Rank": 2, + "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", - "Rank": 3, + "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\"}", - "Rank": 1, + "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\"}", - "Rank": 2, + "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\"}", - "Rank": 3, + "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\"", - "Rank": 4, + "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\"", - "Rank": 5, + "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", - "Rank": 1, + "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\" }'", - "Rank": 2, + "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", - "Rank": 3, + "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\"", - "Rank": 1, + "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\"", - "Rank": 1, + "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\"", - "Rank": 1, + "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", - "Rank": 2, + "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\"", - "Rank": 1, + "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", - "Rank": 2, + "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\"", - "Rank": 1, + "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\"", - "Rank": 2, + "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", - "Rank": 3, + "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\"", - "Rank": 1, + "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", - "Rank": 2, + "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", - "Rank": 3, + "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", - "Rank": 4, + "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/\"", - "Rank": 5, + "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/\"", - "Rank": 6, + "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", - "Rank": 7, + "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", - "Rank": 8, + "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\"", - "Rank": 1, + "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\"", - "Rank": 2, + "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", - "Rank": 3, + "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\"", - "Rank": 1, + "Id": 129, "CommandName": "Add-PnPOrgNewsSite", - "Id": 129 + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "Rank": 1 }, { - "Command": "Add-PnPPage -Name \"NewPage\"", - "Rank": 1, + "Id": 130, "CommandName": "Add-PnPPage", - "Id": 130 + "Command": "Add-PnPPage -Name \"NewPage\"", + "Rank": 1 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Rank": 2, + "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\"", - "Rank": 3, + "Id": 132, "CommandName": "Add-PnPPage", - "Id": 132 + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "Rank": 3 }, { - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Rank": 4, + "Id": 133, "CommandName": "Add-PnPPage", - "Id": 133 + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "Rank": 4 }, { - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Rank": 5, + "Id": 134, "CommandName": "Add-PnPPage", - "Id": 134 + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "Rank": 5 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Rank": 6, + "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)", - "Rank": 7, + "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", - "Rank": 8, + "Id": 137, "CommandName": "Add-PnPPage", - "Id": 137 + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "Rank": 8 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, + "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", - "Rank": 10, + "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\"", - "Rank": 1, + "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\"", - "Rank": 2, + "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", - "Rank": 1, + "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", - "Rank": 2, + "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!\"", - "Rank": 1, + "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\"", - "Rank": 2, + "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\"", - "Rank": 3, + "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", - "Rank": 1, + "Id": 147, "CommandName": "Add-PnPPageWebPart", - "Id": 147 + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "Rank": 1 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Rank": 2, + "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", - "Rank": 3, + "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\"", - "Rank": 1, + "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\"", - "Rank": 2, + "Id": 151, "CommandName": "Add-PnPPlannerBucket", - "Id": 151 + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "Rank": 2 }, { - "Command": "Add-PnPPlannerRoster", - "Rank": 1, + "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\"", - "Rank": 1, + "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\"", - "Rank": 1, + "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\"", - "Rank": 2, + "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\"", - "Rank": 3, + "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", - "Rank": 1, + "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'", - "Rank": 1, + "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'", - "Rank": 2, + "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", - "Rank": 1, + "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\"", - "Rank": 1, + "Id": 161, "CommandName": "Add-PnPRoleDefinition", - "Id": 161 + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "Rank": 1 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Rank": 2, + "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", - "Rank": 3, + "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\"", - "Rank": 1, + "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\")", - "Rank": 2, + "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\"", - "Rank": 3, + "Id": 166, "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 166 + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "Rank": 3 }, { - "Command": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1, + "Id": 167, "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 167 + "Command": "Add-PnPSiteCollectionAppCatalog", + "Rank": 1 }, { - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 2, + "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", - "Rank": 1, + "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", - "Rank": 2, + "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\"", - "Rank": 3, + "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", - "Rank": 1, + "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)", - "Rank": 2, + "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", - "Rank": 3, + "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", - "Rank": 1, + "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\"", - "Rank": 2, + "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", - "Rank": 1, + "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\"", - "Rank": 1, + "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", - "Rank": 1, + "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", - "Rank": 1, + "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)", - "Rank": 2, + "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\"", - "Rank": 3, + "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\"", - "Rank": 1, + "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\"", - "Rank": 2, + "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", - "Rank": 1, + "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\"", - "Rank": 2, + "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", - "Rank": 3, + "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", - "Rank": 4, + "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", - "Rank": 1, + "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", - "Rank": 2, + "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\"", - "Rank": 1, + "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\"", - "Rank": 2, + "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\"", - "Rank": 3, + "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", - "Rank": 4, + "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", - "Rank": 1, + "Id": 195, "CommandName": "Add-PnPTeamsTeam", - "Id": 195 + "Command": "Add-PnPTeamsTeam", + "Rank": 1 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1, + "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", - "Rank": 2, + "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", - "Rank": 3, + "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", - "Rank": 4, + "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", - "Rank": 1, + "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", - "Rank": 1, + "Id": 201, "CommandName": "Add-PnPTenantSequence", - "Id": 201 + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "Rank": 1 }, { - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Rank": 1, + "Id": 202, "CommandName": "Add-PnPTenantSequenceSite", - "Id": 202 + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "Rank": 1 }, { - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Rank": 1, + "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\"}", - "Rank": 1, + "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\"", - "Rank": 1, + "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", - "Rank": 2, + "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 \"\"", - "Rank": 3, + "Id": 207, "CommandName": "Add-PnPView", - "Id": 207 + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "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\"", - "Rank": 1, + "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\"", - "Rank": 2, + "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\"", - "Rank": 3, + "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", - "Rank": 1, + "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\"", - "Rank": 2, + "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!\"", - "Rank": 3, + "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", - "Rank": 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", - "Rank": 2, + "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", - "Rank": 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", - "Rank": 2, + "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'", - "Rank": 1, + "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\"", - "Rank": 1, + "Id": 219, "CommandName": "Clear-PnPAzureADGroupMember", - "Id": 219 + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "Rank": 1 }, { - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Rank": 1, + "Id": 220, "CommandName": "Clear-PnPAzureADGroupOwner", - "Id": 220 + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "Rank": 1 }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Rank": 1, + "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", - "Rank": 2, + "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", - "Rank": 1, + "Id": 223, "CommandName": "Clear-PnPListItemAsRecord", - "Id": 223 + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1 }, { - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Rank": 1, + "Id": 224, "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Id": 224 + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "Rank": 1 }, { - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Rank": 1, + "Id": 225, "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Id": 225 + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "Rank": 1 }, { - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, + "Id": 226, "CommandName": "Clear-PnpRecycleBinItem", - "Id": 226 + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1 }, { - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Rank": 2, + "Id": 227, "CommandName": "Clear-PnpRecycleBinItem", - "Id": 227 + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "Rank": 2 }, { - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Rank": 3, + "Id": 228, "CommandName": "Clear-PnpRecycleBinItem", - "Id": 228 + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "Rank": 3 }, { - "Command": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1, + "Id": 229, "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Id": 229 + "Command": "Clear-PnPTenantAppCatalogUrl", + "Rank": 1 }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, + "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", - "Rank": 2, + "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\"", - "Rank": 1, + "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-PnPFolderToSiteTemplate -Out template.pnp", - "Rank": 1, + "Id": 233, "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 233 + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "Rank": 1 }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Rank": 2, + "Id": 234, "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 234 + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "Rank": 2 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Rank": 1, + "Id": 235, "CommandName": "Convert-PnPSiteTemplate", - "Id": 235 + "Command": "Convert-PnPSiteTemplate -Path template.xml", + "Rank": 1 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Rank": 2, + "Id": 236, "CommandName": "Convert-PnPSiteTemplate", - "Id": 236 + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "Rank": 2 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Rank": 3, + "Id": 237, "CommandName": "Convert-PnPSiteTemplate", - "Id": 237 + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "Rank": 3 }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Rank": 1, + "Id": 238, "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 238 + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "Rank": 1 }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Rank": 2, + "Id": 239, "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 239 + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "Rank": 2 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Rank": 1, + "Id": 240, "CommandName": "ConvertTo-PnPPage", - "Id": 240 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "Rank": 1 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Rank": 2, + "Id": 241, "CommandName": "ConvertTo-PnPPage", - "Id": 241 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "Rank": 2 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Rank": 3, + "Id": 242, "CommandName": "ConvertTo-PnPPage", - "Id": 242 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "Rank": 3 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Rank": 4, + "Id": 243, "CommandName": "ConvertTo-PnPPage", - "Id": 243 + "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\"", - "Rank": 5, + "Id": 244, "CommandName": "ConvertTo-PnPPage", - "Id": 244 + "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", - "Rank": 6, + "Id": 245, "CommandName": "ConvertTo-PnPPage", - "Id": 245 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "Rank": 6 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Rank": 7, + "Id": 246, "CommandName": "ConvertTo-PnPPage", - "Id": 246 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "Rank": 7 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Rank": 8, + "Id": 247, "CommandName": "ConvertTo-PnPPage", - "Id": 247 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "Rank": 8 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 9, + "Id": 248, "CommandName": "ConvertTo-PnPPage", - "Id": 248 + "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", - "Rank": 10, + "Id": 249, "CommandName": "ConvertTo-PnPPage", - "Id": 249 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "Rank": 10 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Rank": 11, + "Id": 250, "CommandName": "ConvertTo-PnPPage", - "Id": 250 + "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\"", - "Rank": 12, + "Id": 251, "CommandName": "ConvertTo-PnPPage", - "Id": 251 + "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\"", - "Rank": 13, + "Id": 252, "CommandName": "ConvertTo-PnPPage", - "Id": 252 + "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", - "Rank": 14, + "Id": 253, "CommandName": "ConvertTo-PnPPage", - "Id": 253 + "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", - "Rank": 1, + "Id": 254, "CommandName": "Copy-PnPFile", - "Id": 254 + "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\"", - "Rank": 2, + "Id": 255, "CommandName": "Copy-PnPFile", - "Id": 255 + "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", - "Rank": 3, + "Id": 256, "CommandName": "Copy-PnPFile", - "Id": 256 + "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", - "Rank": 4, + "Id": 257, "CommandName": "Copy-PnPFile", - "Id": 257 + "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\"", - "Rank": 5, + "Id": 258, "CommandName": "Copy-PnPFile", - "Id": 258 + "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\"", - "Rank": 6, + "Id": 259, "CommandName": "Copy-PnPFile", - "Id": 259 + "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\"", - "Rank": 7, + "Id": 260, "CommandName": "Copy-PnPFile", - "Id": 260 + "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", - "Rank": 8, + "Id": 261, "CommandName": "Copy-PnPFile", - "Id": 261 + "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", - "Rank": 9, + "Id": 262, "CommandName": "Copy-PnPFile", - "Id": 262 + "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\"", - "Rank": 10, + "Id": 263, "CommandName": "Copy-PnPFile", - "Id": 263 + "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", - "Rank": 1, + "Id": 264, "CommandName": "Copy-PnPFolder", - "Id": 264 + "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\"", - "Rank": 2, + "Id": 265, "CommandName": "Copy-PnPFolder", - "Id": 265 + "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", - "Rank": 3, + "Id": 266, "CommandName": "Copy-PnPFolder", - "Id": 266 + "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", - "Rank": 4, + "Id": 267, "CommandName": "Copy-PnPFolder", - "Id": 267 + "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\"", - "Rank": 5, + "Id": 268, "CommandName": "Copy-PnPFolder", - "Id": 268 + "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\"", - "Rank": 6, + "Id": 269, "CommandName": "Copy-PnPFolder", - "Id": 269 + "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\"", - "Rank": 7, + "Id": 270, "CommandName": "Copy-PnPFolder", - "Id": 270 + "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", - "Rank": 8, + "Id": 271, "CommandName": "Copy-PnPFolder", - "Id": 271 + "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", - "Rank": 9, + "Id": 272, "CommandName": "Copy-PnPFolder", - "Id": 272 + "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\"", - "Rank": 10, + "Id": 273, "CommandName": "Copy-PnPFolder", - "Id": 273 + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Rank": 10 }, { - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Rank": 1, + "Id": 274, "CommandName": "Copy-PnPItemProxy", - "Id": 274 + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "Rank": 1 }, { - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Rank": 1, + "Id": 275, "CommandName": "Copy-PnPList", - "Id": 275 + "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", - "Rank": 2, + "Id": 276, "CommandName": "Copy-PnPList", - "Id": 276 + "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\"", - "Rank": 3, + "Id": 277, "CommandName": "Copy-PnPList", - "Id": 277 + "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\\", - "Rank": 4, + "Id": 278, "CommandName": "Copy-PnPList", - "Id": 278 + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", + "Rank": 4 }, { - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "Rank": 1, + "Id": 279, "CommandName": "Copy-PnPTeamsTeam", - "Id": 279 + "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\"", - "Rank": 2, + "Id": 280, "CommandName": "Copy-PnPTeamsTeam", - "Id": 280 + "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", - "Rank": 3, + "Id": 281, "CommandName": "Copy-PnPTeamsTeam", - "Id": 281 + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", + "Rank": 3 }, { - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", - "Rank": 4, + "Id": 282, "CommandName": "Copy-PnPTeamsTeam", - "Id": 282 + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", + "Rank": 4 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, + "Id": 283, "CommandName": "Disable-PnPFeature", - "Id": 283 + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, + "Id": 284, "CommandName": "Disable-PnPFeature", - "Id": 284 + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, + "Id": 285, "CommandName": "Disable-PnPFeature", - "Id": 285 + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3 }, { - "Command": "Disable-PnPPageScheduling", - "Rank": 1, + "Id": 286, "CommandName": "Disable-PnPPageScheduling", - "Id": 286 + "Command": "Disable-PnPPageScheduling", + "Rank": 1 }, { - "Command": "Disable-PnPPowerShellTelemetry", - "Rank": 1, + "Id": 287, "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 287 + "Command": "Disable-PnPPowerShellTelemetry", + "Rank": 1 }, { - "Command": "Disable-PnPPowerShellTelemetry -Force", - "Rank": 2, + "Id": 288, "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 288 + "Command": "Disable-PnPPowerShellTelemetry -Force", + "Rank": 2 }, { - "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1, + "Id": 289, "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 289 + "Command": "Disable-PnPSharingForNonOwnersOfSite", + "Rank": 1 }, { - "Command": "Disable-PnPSiteClassification", - "Rank": 1, + "Id": 290, "CommandName": "Disable-PnPSiteClassification", - "Id": 290 + "Command": "Disable-PnPSiteClassification", + "Rank": 1 }, { - "Command": "Disconnect-PnPOnline", - "Rank": 1, + "Id": 291, "CommandName": "Disconnect-PnPOnline", - "Id": 291 + "Command": "Disconnect-PnPOnline", + "Rank": 1 }, { - "Command": "Enable-PnPCommSite", - "Rank": 1, + "Id": 292, "CommandName": "Enable-PnPCommSite", - "Id": 292 + "Command": "Enable-PnPCommSite", + "Rank": 1 }, { - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Rank": 2, + "Id": 293, "CommandName": "Enable-PnPCommSite", - "Id": 293 + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "Rank": 2 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, + "Id": 294, "CommandName": "Enable-PnPFeature", - "Id": 294 + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, + "Id": 295, "CommandName": "Enable-PnPFeature", - "Id": 295 + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, + "Id": 296, "CommandName": "Enable-PnPFeature", - "Id": 296 + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3 }, { - "Command": "Enable-PnPPageScheduling", - "Rank": 1, + "Id": 297, "CommandName": "Enable-PnPPageScheduling", - "Id": 297 + "Command": "Enable-PnPPageScheduling", + "Rank": 1 }, { - "Command": "Enable-PnPPowerShellTelemetry", - "Rank": 1, + "Id": 298, "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 298 + "Command": "Enable-PnPPowerShellTelemetry", + "Rank": 1 }, { - "Command": "Enable-PnPPowerShellTelemetry -Force", - "Rank": 2, + "Id": 299, "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 299 + "Command": "Enable-PnPPowerShellTelemetry -Force", + "Rank": 2 }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Rank": 1, + "Id": 300, "CommandName": "Enable-PnPSiteClassification", - "Id": 300 + "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", - "Rank": 2, + "Id": 301, "CommandName": "Enable-PnPSiteClassification", - "Id": 301 + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 2 }, { - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Rank": 1, + "Id": 302, "CommandName": "Export-PnPListToSiteTemplate", - "Id": 302 + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "Rank": 1 }, { - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Rank": 2, + "Id": 303, "CommandName": "Export-PnPListToSiteTemplate", - "Id": 303 + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "Rank": 2 }, { - "Command": "Export-PnPPage -Identity Home.aspx", - "Rank": 1, + "Id": 304, "CommandName": "Export-PnPPage", - "Id": 304 + "Command": "Export-PnPPage -Identity Home.aspx", + "Rank": 1 }, { - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Rank": 1, + "Id": 305, "CommandName": "Export-PnPPageMapping", - "Id": 305 + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "Rank": 1 }, { - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Rank": 2, + "Id": 306, "CommandName": "Export-PnPPageMapping", - "Id": 306 + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "Rank": 2 }, { - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Rank": 3, + "Id": 307, "CommandName": "Export-PnPPageMapping", - "Id": 307 + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "Rank": 3 }, { - "Command": "Export-PnPTaxonomy", - "Rank": 1, + "Id": 308, "CommandName": "Export-PnPTaxonomy", - "Id": 308 + "Command": "Export-PnPTaxonomy", + "Rank": 1 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Rank": 2, + "Id": 309, "CommandName": "Export-PnPTaxonomy", - "Id": 309 + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "Rank": 2 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Rank": 3, + "Id": 310, "CommandName": "Export-PnPTaxonomy", - "Id": 310 + "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", - "Rank": 4, + "Id": 311, "CommandName": "Export-PnPTaxonomy", - "Id": 311 + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "Rank": 4 }, { - "Command": "Export-PnPTermGroupToXml", - "Rank": 1, + "Id": 312, "CommandName": "Export-PnPTermGroupToXml", - "Id": 312 + "Command": "Export-PnPTermGroupToXml", + "Rank": 1 }, { - "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Rank": 2, + "Id": 313, "CommandName": "Export-PnPTermGroupToXml", - "Id": 313 + "Command": "Export-PnPTermGroupToXml -Out output.xml", + "Rank": 2 }, { - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Rank": 3, + "Id": 314, "CommandName": "Export-PnPTermGroupToXml", - "Id": 314 + "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\"", - "Rank": 1, + "Id": 315, "CommandName": "Export-PnPUserInfo", - "Id": 315 + "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", - "Rank": 2, + "Id": 316, "CommandName": "Export-PnPUserInfo", - "Id": 316 + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", + "Rank": 2 }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Rank": 1, + "Id": 317, "CommandName": "Export-PnPUserProfile", - "Id": 317 + "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "Rank": 1 }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2, + "Id": 318, "CommandName": "Export-PnPUserProfile", - "Id": 318 + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "Rank": 2 }, { - "Command": "Find-PnPFile -Match *.master", - "Rank": 1, + "Id": 319, "CommandName": "Find-PnPFile", - "Id": 319 + "Command": "Find-PnPFile -Match *.master", + "Rank": 1 }, { - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Rank": 2, + "Id": 320, "CommandName": "Find-PnPFile", - "Id": 320 + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "Rank": 2 }, { - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Rank": 3, + "Id": 321, "CommandName": "Find-PnPFile", - "Id": 321 + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "Rank": 3 }, { - "Command": "Get-PnPAccessToken", - "Rank": 1, + "Id": 322, "CommandName": "Get-PnPAccessToken", - "Id": 322 + "Command": "Get-PnPAccessToken", + "Rank": 1 }, { - "Command": "Get-PnPAccessToken -Decoded", - "Rank": 2, + "Id": 323, "CommandName": "Get-PnPAccessToken", - "Id": 323 + "Command": "Get-PnPAccessToken -Decoded", + "Rank": 2 }, { - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Rank": 3, + "Id": 324, "CommandName": "Get-PnPAccessToken", - "Id": 324 + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "Rank": 3 }, { - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Rank": 4, + "Id": 325, "CommandName": "Get-PnPAccessToken", - "Id": 325 + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "Rank": 4 }, { - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Rank": 5, + "Id": 326, "CommandName": "Get-PnPAccessToken", - "Id": 326 + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "Rank": 5 }, { - "Command": "Get-PnPAlert", - "Rank": 1, + "Id": 327, "CommandName": "Get-PnPAlert", - "Id": 327 + "Command": "Get-PnPAlert", + "Rank": 1 }, { - "Command": "Get-PnPAlert -List \"Demo List\"", - "Rank": 2, + "Id": 328, "CommandName": "Get-PnPAlert", - "Id": 328 + "Command": "Get-PnPAlert -List \"Demo List\"", + "Rank": 2 }, { - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3, + "Id": 329, "CommandName": "Get-PnPAlert", - "Id": 329 + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Rank": 3 }, { - "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Rank": 4, + "Id": 330, "CommandName": "Get-PnPAlert", - "Id": 330 + "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "Rank": 4 }, { - "Command": "Get-PnPAlert -AllUsers", - "Rank": 5, + "Id": 331, "CommandName": "Get-PnPAlert", - "Id": 331 + "Command": "Get-PnPAlert -AllUsers", + "Rank": 5 }, { - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Rank": 6, + "Id": 332, "CommandName": "Get-PnPAlert", - "Id": 332 + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "Rank": 6 }, { - "Command": "Get-PnPApp", - "Rank": 1, + "Id": 333, "CommandName": "Get-PnPApp", - "Id": 333 + "Command": "Get-PnPApp", + "Rank": 1 }, { - "Command": "Get-PnPApp -Scope Site", - "Rank": 2, + "Id": 334, "CommandName": "Get-PnPApp", - "Id": 334 + "Command": "Get-PnPApp -Scope Site", + "Rank": 2 }, { - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 3, + "Id": 335, "CommandName": "Get-PnPApp", - "Id": 335 + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 3 }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Rank": 1, + "Id": 336, "CommandName": "Get-PnPAppErrors", - "Id": 336 + "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()", - "Rank": 2, + "Id": 337, "CommandName": "Get-PnPAppErrors", - "Id": 337 + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "Rank": 2 }, { - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Rank": 1, + "Id": 338, "CommandName": "Get-PnPAppInfo", - "Id": 338 + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "Rank": 1 }, { - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 2, + "Id": 339, "CommandName": "Get-PnPAppInfo", - "Id": 339 + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 2 }, { - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Rank": 3, + "Id": 340, "CommandName": "Get-PnPAppInfo", - "Id": 340 + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "Rank": 3 }, { - "Command": "Get-PnPApplicationCustomizer", - "Rank": 1, + "Id": 341, "CommandName": "Get-PnPApplicationCustomizer", - "Id": 341 + "Command": "Get-PnPApplicationCustomizer", + "Rank": 1 }, { - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, + "Id": 342, "CommandName": "Get-PnPApplicationCustomizer", - "Id": 342 + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2 }, { - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Rank": 3, + "Id": 343, "CommandName": "Get-PnPApplicationCustomizer", - "Id": 343 + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "Rank": 3 }, { - "Command": "Get-PnPAuditing", - "Rank": 1, + "Id": 344, "CommandName": "Get-PnPAuditing", - "Id": 344 + "Command": "Get-PnPAuditing", + "Rank": 1 }, { - "Command": "Get-PnPAuthenticationRealm", - "Rank": 1, + "Id": 345, "CommandName": "Get-PnPAuthenticationRealm", - "Id": 345 + "Command": "Get-PnPAuthenticationRealm", + "Rank": 1 }, { - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Rank": 2, + "Id": 346, "CommandName": "Get-PnPAuthenticationRealm", - "Id": 346 + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "Rank": 2 }, { - "Command": "Get-PnPAvailableLanguage", - "Rank": 1, + "Id": 347, "CommandName": "Get-PnPAvailableLanguage", - "Id": 347 + "Command": "Get-PnPAvailableLanguage", + "Rank": 1 }, { - "Command": "Get-PnPAvailableSensitivityLabel", - "Rank": 1, + "Id": 348, "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 348 + "Command": "Get-PnPAvailableSensitivityLabel", + "Rank": 1 }, { - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Rank": 2, + "Id": 349, "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 349 + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "Rank": 2 }, { - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Rank": 3, + "Id": 350, "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 350 + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "Rank": 3 }, { - "Command": "Get-PnPAvailableSiteClassification", - "Rank": 1, + "Id": 351, "CommandName": "Get-PnPAvailableSiteClassification", - "Id": 351 + "Command": "Get-PnPAvailableSiteClassification", + "Rank": 1 }, { - "Command": "Get-PnPAzureACSPrincipal", - "Rank": 1, + "Id": 352, "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 352 + "Command": "Get-PnPAzureACSPrincipal", + "Rank": 1 }, { - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Rank": 2, + "Id": 353, "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 353 + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "Rank": 2 }, { - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Rank": 3, + "Id": 354, "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 354 + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "Rank": 3 }, { - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Rank": 4, + "Id": 355, "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 355 + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "Rank": 4 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1, + "Id": 356, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 356 + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 1 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Rank": 2, + "Id": 357, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 357 + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "Rank": 2 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Rank": 3, + "Id": 358, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 358 + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "Rank": 3 }, { - "Command": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1, + "Id": 359, "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 359 + "Command": "Get-PnPAzureADActivityReportSignIn", + "Rank": 1 }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Rank": 2, + "Id": 360, "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 360 + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "Rank": 2 }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Rank": 3, + "Id": 361, "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 361 + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "Rank": 3 }, { - "Command": "Get-PnPAzureADApp", - "Rank": 1, + "Id": 362, "CommandName": "Get-PnPAzureADApp", - "Id": 362 + "Command": "Get-PnPAzureADApp", + "Rank": 1 }, { - "Command": "Get-PnPAzureADApp -Identity MyApp", - "Rank": 2, + "Id": 363, "CommandName": "Get-PnPAzureADApp", - "Id": 363 + "Command": "Get-PnPAzureADApp -Identity MyApp", + "Rank": 2 }, { - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, + "Id": 364, "CommandName": "Get-PnPAzureADApp", - "Id": 364 + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3 }, { - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Rank": 4, + "Id": 365, "CommandName": "Get-PnPAzureADApp", - "Id": 365 + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "Rank": 4 }, { - "Command": "Get-PnPAzureADAppPermission", - "Rank": 1, + "Id": 366, "CommandName": "Get-PnPAzureADAppPermission", - "Id": 366 + "Command": "Get-PnPAzureADAppPermission", + "Rank": 1 }, { - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Rank": 2, + "Id": 367, "CommandName": "Get-PnPAzureADAppPermission", - "Id": 367 + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "Rank": 2 }, { - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, + "Id": 368, "CommandName": "Get-PnPAzureADAppPermission", - "Id": 368 + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3 }, { - "Command": "Get-PnPAzureADAppSitePermission", - "Rank": 1, + "Id": 369, "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 369 + "Command": "Get-PnPAzureADAppSitePermission", + "Rank": 1 }, { - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2, + "Id": 370, "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 370 + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "Rank": 2 }, { - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Rank": 3, + "Id": 371, "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 371 + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "Rank": 3 }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Rank": 4, + "Id": 372, "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 372 + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "Rank": 4 }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Rank": 5, + "Id": 373, "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 373 + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "Rank": 5 }, { - "Command": "Get-PnPAzureADGroup", - "Rank": 1, + "Id": 374, "CommandName": "Get-PnPAzureADGroup", - "Id": 374 + "Command": "Get-PnPAzureADGroup", + "Rank": 1 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Rank": 2, + "Id": 375, "CommandName": "Get-PnPAzureADGroup", - "Id": 375 + "Command": "Get-PnPAzureADGroup -Identity $groupId", + "Rank": 2 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Rank": 3, + "Id": 376, "CommandName": "Get-PnPAzureADGroup", - "Id": 376 + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "Rank": 3 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Rank": 4, + "Id": 377, "CommandName": "Get-PnPAzureADGroup", - "Id": 377 + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "Rank": 4 }, { - "Command": "Get-PnPAzureADGroup -Identity $group", - "Rank": 5, + "Id": 378, "CommandName": "Get-PnPAzureADGroup", - "Id": 378 + "Command": "Get-PnPAzureADGroup -Identity $group", + "Rank": 5 }, { - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Rank": 1, + "Id": 379, "CommandName": "Get-PnPAzureADGroupMember", - "Id": 379 + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "Rank": 1 }, { - "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Rank": 2, + "Id": 380, "CommandName": "Get-PnPAzureADGroupMember", - "Id": 380 + "Command": "Get-PnPAzureADGroupMember -Identity $group", + "Rank": 2 }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Rank": 1, + "Id": 381, "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 381 + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "Rank": 1 }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Rank": 2, + "Id": 382, "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 382 + "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "Rank": 2 }, { - "Command": "Get-PnPAzureADServicePrincipal", - "Rank": 1, + "Id": 383, "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 383 + "Command": "Get-PnPAzureADServicePrincipal", + "Rank": 1 }, { - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Rank": 2, + "Id": 384, "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 384 + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "Rank": 2 }, { - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Rank": 3, + "Id": 385, "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 385 + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "Rank": 3 }, { - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Rank": 4, + "Id": 386, "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 386 + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "Rank": 4 }, { - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, + "Id": 387, "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 387 + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "Rank": 5 }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, + "Id": 388, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 388 + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1 }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 2, + "Id": 389, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 389 + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 2 }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, + "Id": 390, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 390 + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1 }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Rank": 2, + "Id": 391, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 391 + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "Rank": 2 }, { - "Command": "Get-PnPAzureADUser", - "Rank": 1, + "Id": 392, "CommandName": "Get-PnPAzureADUser", - "Id": 392 + "Command": "Get-PnPAzureADUser", + "Rank": 1 }, { - "Command": "Get-PnPAzureADUser -EndIndex 50", - "Rank": 2, + "Id": 393, "CommandName": "Get-PnPAzureADUser", - "Id": 393 + "Command": "Get-PnPAzureADUser -EndIndex 50", + "Rank": 2 }, { - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 3, + "Id": 394, "CommandName": "Get-PnPAzureADUser", - "Id": 394 + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 3 }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Rank": 4, + "Id": 395, "CommandName": "Get-PnPAzureADUser", - "Id": 395 + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "Rank": 4 }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Rank": 5, + "Id": 396, "CommandName": "Get-PnPAzureADUser", - "Id": 396 + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "Rank": 5 }, { - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Rank": 6, + "Id": 397, "CommandName": "Get-PnPAzureADUser", - "Id": 397 + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "Rank": 6 }, { - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Rank": 7, + "Id": 398, "CommandName": "Get-PnPAzureADUser", - "Id": 398 + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "Rank": 7 }, { - "Command": "Get-PnPAzureADUser -Delta", - "Rank": 8, + "Id": 399, "CommandName": "Get-PnPAzureADUser", - "Id": 399 + "Command": "Get-PnPAzureADUser -Delta", + "Rank": 8 }, { - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Rank": 9, + "Id": 400, "CommandName": "Get-PnPAzureADUser", - "Id": 400 + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "Rank": 9 }, { - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Rank": 10, + "Id": 401, "CommandName": "Get-PnPAzureADUser", - "Id": 401 + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "Rank": 10 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Rank": 1, + "Id": 402, "CommandName": "Get-PnPAzureCertificate", - "Id": 402 + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "Rank": 1 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Rank": 2, + "Id": 403, "CommandName": "Get-PnPAzureCertificate", - "Id": 403 + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "Rank": 2 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Rank": 3, + "Id": 404, "CommandName": "Get-PnPAzureCertificate", - "Id": 404 + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "Rank": 3 }, { - "Command": "Get-PnPBrowserIdleSignout", - "Rank": 1, + "Id": 405, "CommandName": "Get-PnPBrowserIdleSignout", - "Id": 405 + "Command": "Get-PnPBrowserIdleSignout", + "Rank": 1 }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Rank": 1, + "Id": 406, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 406 + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "Rank": 1 }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2, + "Id": 407, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 407 + "Command": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 2 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1, + "Id": 408, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 408 + "Command": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 1 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Rank": 2, + "Id": 409, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 409 + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "Rank": 2 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Rank": 3, + "Id": 410, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 410 + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "Rank": 3 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4, + "Id": 411, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 411 + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 4 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Rank": 5, + "Id": 412, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 412 + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "Rank": 5 }, { - "Command": "Get-PnPChangeLog", - "Rank": 1, + "Id": 413, "CommandName": "Get-PnPChangeLog", - "Id": 413 + "Command": "Get-PnPChangeLog", + "Rank": 1 }, { - "Command": "Get-PnPChangeLog -Nightly", - "Rank": 2, + "Id": 414, "CommandName": "Get-PnPChangeLog", - "Id": 414 + "Command": "Get-PnPChangeLog -Nightly", + "Rank": 2 }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Rank": 1, + "Id": 415, "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 415 + "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'", - "Rank": 2, + "Id": 416, "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 416 + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "Rank": 2 }, { - "Command": "Get-PnPContentType", - "Rank": 1, + "Id": 417, "CommandName": "Get-PnPContentType", - "Id": 417 + "Command": "Get-PnPContentType", + "Rank": 1 }, { - "Command": "Get-PnPContentType -InSiteHierarchy", - "Rank": 2, + "Id": 418, "CommandName": "Get-PnPContentType", - "Id": 418 + "Command": "Get-PnPContentType -InSiteHierarchy", + "Rank": 2 }, { - "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Rank": 3, + "Id": 419, "CommandName": "Get-PnPContentType", - "Id": 419 + "Command": "Get-PnPContentType -Identity \"Project Document\"", + "Rank": 3 }, { - "Command": "Get-PnPContentType -List \"Documents\"", - "Rank": 4, + "Id": 420, "CommandName": "Get-PnPContentType", - "Id": 420 + "Command": "Get-PnPContentType -List \"Documents\"", + "Rank": 4 }, { - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Rank": 1, + "Id": 421, "CommandName": "Get-PnPContentTypePublishingStatus", - "Id": 421 + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "Rank": 1 }, { - "Command": "Get-PnPCustomAction", - "Rank": 1, + "Id": 422, "CommandName": "Get-PnPCustomAction", - "Id": 422 + "Command": "Get-PnPCustomAction", + "Rank": 1 }, { - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, + "Id": 423, "CommandName": "Get-PnPCustomAction", - "Id": 423 + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2 }, { - "Command": "Get-PnPCustomAction -Scope web", - "Rank": 3, + "Id": 424, "CommandName": "Get-PnPCustomAction", - "Id": 424 + "Command": "Get-PnPCustomAction -Scope web", + "Rank": 3 }, { - "Command": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1, + "Id": 425, "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 425 + "Command": "Get-PnPDeletedMicrosoft365Group", + "Rank": 1 }, { - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 2, + "Id": 426, "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 426 + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 2 }, { - "Command": "Get-PnPDeletedTeam", - "Rank": 1, + "Id": 427, "CommandName": "Get-PnPDeletedTeam", - "Id": 427 + "Command": "Get-PnPDeletedTeam", + "Rank": 1 }, { - "Command": "Get-PnPDiagnostics", - "Rank": 1, + "Id": 428, "CommandName": "Get-PnPDiagnostics", - "Id": 428 + "Command": "Get-PnPDiagnostics", + "Rank": 1 }, { - "Command": "Get-PnPDisableSpacesActivation", - "Rank": 1, + "Id": 429, "CommandName": "Get-PnPDisableSpacesActivation", - "Id": 429 + "Command": "Get-PnPDisableSpacesActivation", + "Rank": 1 }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Rank": 1, + "Id": 430, "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 430 + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "Rank": 1 }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Rank": 2, + "Id": 431, "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 431 + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "Rank": 2 }, { - "Command": "Get-PnPEventReceiver", - "Rank": 1, + "Id": 432, "CommandName": "Get-PnPEventReceiver", - "Id": 432 + "Command": "Get-PnPEventReceiver", + "Rank": 1 }, { - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, + "Id": 433, "CommandName": "Get-PnPEventReceiver", - "Id": 433 + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 2 }, { - "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Rank": 3, + "Id": 434, "CommandName": "Get-PnPEventReceiver", - "Id": 434 + "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "Rank": 3 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Rank": 4, + "Id": 435, "CommandName": "Get-PnPEventReceiver", - "Id": 435 + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "Rank": 4 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 5, + "Id": 436, "CommandName": "Get-PnPEventReceiver", - "Id": 436 + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 5 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Rank": 6, + "Id": 437, "CommandName": "Get-PnPEventReceiver", - "Id": 437 + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "Rank": 6 }, { - "Command": "Get-PnPEventReceiver -Scope Site", - "Rank": 7, + "Id": 438, "CommandName": "Get-PnPEventReceiver", - "Id": 438 + "Command": "Get-PnPEventReceiver -Scope Site", + "Rank": 7 }, { - "Command": "Get-PnPEventReceiver -Scope Web", - "Rank": 8, + "Id": 439, "CommandName": "Get-PnPEventReceiver", - "Id": 439 + "Command": "Get-PnPEventReceiver -Scope Web", + "Rank": 8 }, { - "Command": "Get-PnPEventReceiver -Scope All", - "Rank": 9, + "Id": 440, "CommandName": "Get-PnPEventReceiver", - "Id": 440 + "Command": "Get-PnPEventReceiver -Scope All", + "Rank": 9 }, { - "Command": "Get-PnPException", - "Rank": 1, + "Id": 441, "CommandName": "Get-PnPException", - "Id": 441 + "Command": "Get-PnPException", + "Rank": 1 }, { - "Command": "Get-PnPException -All", - "Rank": 2, + "Id": 442, "CommandName": "Get-PnPException", - "Id": 442 + "Command": "Get-PnPException -All", + "Rank": 2 }, { - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Rank": 1, + "Id": 443, "CommandName": "Get-PnPExternalUser", - "Id": 443 + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "Rank": 1 }, { - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Rank": 2, + "Id": 444, "CommandName": "Get-PnPExternalUser", - "Id": 444 + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "Rank": 2 }, { - "Command": "Get-PnPFeature", - "Rank": 1, + "Id": 445, "CommandName": "Get-PnPFeature", - "Id": 445 + "Command": "Get-PnPFeature", + "Rank": 1 }, { - "Command": "Get-PnPFeature -Scope Site", - "Rank": 2, + "Id": 446, "CommandName": "Get-PnPFeature", - "Id": 446 + "Command": "Get-PnPFeature -Scope Site", + "Rank": 2 }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 3, + "Id": 447, "CommandName": "Get-PnPFeature", - "Id": 447 + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 3 }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Rank": 4, + "Id": 448, "CommandName": "Get-PnPFeature", - "Id": 448 + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "Rank": 4 }, { - "Command": "Get-PnPField", - "Rank": 1, + "Id": 449, "CommandName": "Get-PnPField", - "Id": 449 + "Command": "Get-PnPField", + "Rank": 1 }, { - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, + "Id": 450, "CommandName": "Get-PnPField", - "Id": 450 + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Rank": 2 }, { - "Command": "Get-PnPField -Group \"Custom Columns\"", - "Rank": 3, + "Id": 451, "CommandName": "Get-PnPField", - "Id": 451 + "Command": "Get-PnPField -Group \"Custom Columns\"", + "Rank": 3 }, { - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Rank": 1, + "Id": 452, "CommandName": "Get-PnPFile", - "Id": 452 + "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", - "Rank": 2, + "Id": 453, "CommandName": "Get-PnPFile", - "Id": 453 + "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", - "Rank": 3, + "Id": 454, "CommandName": "Get-PnPFile", - "Id": 454 + "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", - "Rank": 4, + "Id": 455, "CommandName": "Get-PnPFile", - "Id": 455 + "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", - "Rank": 5, + "Id": 456, "CommandName": "Get-PnPFile", - "Id": 456 + "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", - "Rank": 6, + "Id": 457, "CommandName": "Get-PnPFile", - "Id": 457 + "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", - "Rank": 7, + "Id": 458, "CommandName": "Get-PnPFile", - "Id": 458 + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "Rank": 7 }, { - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, + "Id": 459, "CommandName": "Get-PnPFileSharingLink", - "Id": 459 + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1 }, { - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Rank": 1, + "Id": 460, "CommandName": "Get-PnPFileVersion", - "Id": 460 + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "Rank": 1 }, { - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Rank": 2, + "Id": 461, "CommandName": "Get-PnPFileVersion", - "Id": 461 + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "Rank": 2 }, { - "Command": "Get-PnPFlow -AsAdmin", - "Rank": 1, + "Id": 462, "CommandName": "Get-PnPFlow", - "Id": 462 + "Command": "Get-PnPFlow -AsAdmin", + "Rank": 1 }, { - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "Rank": 2, + "Id": 463, "CommandName": "Get-PnPFlow", - "Id": 463 + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "Rank": 2 }, { - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Rank": 3, + "Id": 464, "CommandName": "Get-PnPFlow", - "Id": 464 + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "Rank": 3 }, { - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "Rank": 1, + "Id": 465, "CommandName": "Get-PnPFlowOwner", - "Id": 465 + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "Rank": 1 }, { - "Command": "Get-PnPFolder", - "Rank": 1, + "Id": 466, "CommandName": "Get-PnPFolder", - "Id": 466 + "Command": "Get-PnPFolder", + "Rank": 1 }, { - "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Rank": 2, + "Id": 467, "CommandName": "Get-PnPFolder", - "Id": 467 + "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "Rank": 2 }, { - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Rank": 3, + "Id": 468, "CommandName": "Get-PnPFolder", - "Id": 468 + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Rank": 4, + "Id": 469, "CommandName": "Get-PnPFolder", - "Id": 469 + "Command": "Get-PnPFolder -List \"Shared Documents\"", + "Rank": 4 }, { - "Command": "Get-PnPFolderFile", - "Rank": 1, + "Id": 470, "CommandName": "Get-PnPFolderFile", - "Id": 470 + "Command": "Get-PnPFolderFile", + "Rank": 1 }, { - "Command": "Get-PnPFolderFile -Recurse", - "Rank": 2, + "Id": 471, "CommandName": "Get-PnPFolderFile", - "Id": 471 + "Command": "Get-PnPFolderFile -Recurse", + "Rank": 2 }, { - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "Rank": 3, + "Id": 472, "CommandName": "Get-PnPFolderFile", - "Id": 472 + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4, + "Id": 473, "CommandName": "Get-PnPFolderFile", - "Id": 473 + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Rank": 4 }, { - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 5, + "Id": 474, "CommandName": "Get-PnPFolderFile", - "Id": 474 + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 5 }, { - "Command": "Get-PnPFolderFolder", - "Rank": 1, + "Id": 475, "CommandName": "Get-PnPFolderFolder", - "Id": 475 + "Command": "Get-PnPFolderFolder", + "Rank": 1 }, { - "Command": "Get-PnPFolderFolder -Recurse", - "Rank": 2, + "Id": 476, "CommandName": "Get-PnPFolderFolder", - "Id": 476 + "Command": "Get-PnPFolderFolder -Recurse", + "Rank": 2 }, { - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "Rank": 3, + "Id": 477, "CommandName": "Get-PnPFolderFolder", - "Id": 477 + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "Rank": 4, + "Id": 478, "CommandName": "Get-PnPFolderFolder", - "Id": 478 + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "Rank": 4 }, { - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "Rank": 5, + "Id": 479, "CommandName": "Get-PnPFolderFolder", - "Id": 479 + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "Rank": 5 }, { - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6, + "Id": 480, "CommandName": "Get-PnPFolderFolder", - "Id": 480 + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 6 }, { - "Command": "Get-PnPFolderItem", - "Rank": 1, + "Id": 481, "CommandName": "Get-PnPFolderItem", - "Id": 481 + "Command": "Get-PnPFolderItem", + "Rank": 1 }, { - "Command": "Get-PnPFolderItem -Recurse", - "Rank": 2, + "Id": 482, "CommandName": "Get-PnPFolderItem", - "Id": 482 + "Command": "Get-PnPFolderItem -Recurse", + "Rank": 2 }, { - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "Rank": 3, + "Id": 483, "CommandName": "Get-PnPFolderItem", - "Id": 483 + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4, + "Id": 484, "CommandName": "Get-PnPFolderItem", - "Id": 484 + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Rank": 4 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Rank": 5, + "Id": 485, "CommandName": "Get-PnPFolderItem", - "Id": 485 + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "Rank": 5 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6, + "Id": 486, "CommandName": "Get-PnPFolderItem", - "Id": 486 + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 6 }, { - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, + "Id": 487, "CommandName": "Get-PnPFolderSharingLink", - "Id": 487 + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1 }, { - "Command": "Get-PnPFolderStorageMetric", - "Rank": 1, + "Id": 488, "CommandName": "Get-PnPFolderStorageMetric", - "Id": 488 + "Command": "Get-PnPFolderStorageMetric", + "Rank": 1 }, { - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Rank": 2, + "Id": 489, "CommandName": "Get-PnPFolderStorageMetric", - "Id": 489 + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "Rank": 2 }, { - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Rank": 3, + "Id": 490, "CommandName": "Get-PnPFolderStorageMetric", - "Id": 490 + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFooter", - "Rank": 1, + "Id": 491, "CommandName": "Get-PnPFooter", - "Id": 491 + "Command": "Get-PnPFooter", + "Rank": 1 }, { - "Command": "Get-PnPGraphAccessToken", - "Rank": 1, + "Id": 492, "CommandName": "Get-PnPGraphAccessToken", - "Id": 492 + "Command": "Get-PnPGraphAccessToken", + "Rank": 1 }, { - "Command": "Get-PnPGraphAccessToken -Decoded", - "Rank": 2, + "Id": 493, "CommandName": "Get-PnPGraphAccessToken", - "Id": 493 + "Command": "Get-PnPGraphAccessToken -Decoded", + "Rank": 2 }, { - "Command": "Get-PnPGraphSubscription", - "Rank": 1, + "Id": 494, "CommandName": "Get-PnPGraphSubscription", - "Id": 494 + "Command": "Get-PnPGraphSubscription", + "Rank": 1 }, { - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 2, + "Id": 495, "CommandName": "Get-PnPGraphSubscription", - "Id": 495 + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 2 }, { - "Command": "Get-PnPGroup", - "Rank": 1, + "Id": 496, "CommandName": "Get-PnPGroup", - "Id": 496 + "Command": "Get-PnPGroup", + "Rank": 1 }, { - "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Rank": 2, + "Id": 497, "CommandName": "Get-PnPGroup", - "Id": 497 + "Command": "Get-PnPGroup -Identity 'My Site Users'", + "Rank": 2 }, { - "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Rank": 3, + "Id": 498, "CommandName": "Get-PnPGroup", - "Id": 498 + "Command": "Get-PnPGroup -AssociatedMemberGroup", + "Rank": 3 }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Rank": 1, + "Id": 499, "CommandName": "Get-PnPGroupMember", - "Id": 499 + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "Rank": 1 }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Rank": 2, + "Id": 500, "CommandName": "Get-PnPGroupMember", - "Id": 500 + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "Rank": 2 }, { - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Rank": 1, + "Id": 501, "CommandName": "Get-PnPGroupPermissions", - "Id": 501 + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "Rank": 1 }, { - "Command": "Get-PnPHideDefaultThemes", - "Rank": 1, + "Id": 502, "CommandName": "Get-PnPHideDefaultThemes", - "Id": 502 + "Command": "Get-PnPHideDefaultThemes", + "Rank": 1 }, { - "Command": "Get-PnPHomePage", - "Rank": 1, + "Id": 503, "CommandName": "Get-PnPHomePage", - "Id": 503 + "Command": "Get-PnPHomePage", + "Rank": 1 }, { - "Command": "Get-PnPHomeSite", - "Rank": 1, + "Id": 504, "CommandName": "Get-PnPHomeSite", - "Id": 504 + "Command": "Get-PnPHomeSite", + "Rank": 1 }, { - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Rank": 2, + "Id": 505, "CommandName": "Get-PnPHomeSite", - "Id": 505 + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "Rank": 2 }, { - "Command": "Get-PnPHomeSite -Detailed", - "Rank": 3, + "Id": 506, "CommandName": "Get-PnPHomeSite", - "Id": 506 + "Command": "Get-PnPHomeSite -Detailed", + "Rank": 3 }, { - "Command": "Get-PnPHubSite", - "Rank": 1, + "Id": 507, "CommandName": "Get-PnPHubSite", - "Id": 507 + "Command": "Get-PnPHubSite", + "Rank": 1 }, { - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, + "Id": 508, "CommandName": "Get-PnPHubSite", - "Id": 508 + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Rank": 2 }, { - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Rank": 3, + "Id": 509, "CommandName": "Get-PnPHubSite", - "Id": 509 + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "Rank": 3 }, { - "Command": "Get-PnPHubSiteChild", - "Rank": 1, + "Id": 510, "CommandName": "Get-PnPHubSiteChild", - "Id": 510 + "Command": "Get-PnPHubSiteChild", + "Rank": 1 }, { - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, + "Id": 511, "CommandName": "Get-PnPHubSiteChild", - "Id": 511 + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Rank": 2 }, { - "Command": "Get-PnPInPlaceRecordsManagement", - "Rank": 1, + "Id": 512, "CommandName": "Get-PnPInPlaceRecordsManagement", - "Id": 512 + "Command": "Get-PnPInPlaceRecordsManagement", + "Rank": 1 }, { - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Rank": 1, + "Id": 513, "CommandName": "Get-PnPIsSiteAliasAvailable", - "Id": 513 + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "Rank": 1 }, { - "Command": "Get-PnPJavaScriptLink", - "Rank": 1, + "Id": 514, "CommandName": "Get-PnPJavaScriptLink", - "Id": 514 + "Command": "Get-PnPJavaScriptLink", + "Rank": 1 }, { - "Command": "Get-PnPJavaScriptLink -Scope All", - "Rank": 2, + "Id": 515, "CommandName": "Get-PnPJavaScriptLink", - "Id": 515 + "Command": "Get-PnPJavaScriptLink -Scope All", + "Rank": 2 }, { - "Command": "Get-PnPJavaScriptLink -Scope Web", - "Rank": 3, + "Id": 516, "CommandName": "Get-PnPJavaScriptLink", - "Id": 516 + "Command": "Get-PnPJavaScriptLink -Scope Web", + "Rank": 3 }, { - "Command": "Get-PnPJavaScriptLink -Scope Site", - "Rank": 4, + "Id": 517, "CommandName": "Get-PnPJavaScriptLink", - "Id": 517 + "Command": "Get-PnPJavaScriptLink -Scope Site", + "Rank": 4 }, { - "Command": "Get-PnPJavaScriptLink -Name Test", - "Rank": 5, + "Id": 518, "CommandName": "Get-PnPJavaScriptLink", - "Id": 518 + "Command": "Get-PnPJavaScriptLink -Name Test", + "Rank": 5 }, { - "Command": "Get-PnPKnowledgeHubSite", - "Rank": 1, + "Id": 519, "CommandName": "Get-PnPKnowledgeHubSite", - "Id": 519 + "Command": "Get-PnPKnowledgeHubSite", + "Rank": 1 }, { - "Command": "Get-PnPLabel", - "Rank": 1, + "Id": 520, "CommandName": "Get-PnPLabel", - "Id": 520 + "Command": "Get-PnPLabel", + "Rank": 1 }, { - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Rank": 2, + "Id": 521, "CommandName": "Get-PnPLabel", - "Id": 521 + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "Rank": 2 }, { - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Rank": 1, + "Id": 522, "CommandName": "Get-PnPLargeListOperationStatus", - "Id": 522 + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "Rank": 1 }, { - "Command": "Get-PnPList", - "Rank": 1, + "Id": 523, "CommandName": "Get-PnPList", - "Id": 523 + "Command": "Get-PnPList", + "Rank": 1 }, { - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 2, + "Id": 524, "CommandName": "Get-PnPList", - "Id": 524 + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 2 }, { - "Command": "Get-PnPList -Identity Lists/Announcements", - "Rank": 3, + "Id": 525, "CommandName": "Get-PnPList", - "Id": 525 + "Command": "Get-PnPList -Identity Lists/Announcements", + "Rank": 3 }, { - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Rank": 4, + "Id": 526, "CommandName": "Get-PnPList", - "Id": 526 + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "Rank": 4 }, { - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Rank": 5, + "Id": 527, "CommandName": "Get-PnPList", - "Id": 527 + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "Rank": 5 }, { - "Command": "Get-PnPListDesign", - "Rank": 1, + "Id": 528, "CommandName": "Get-PnPListDesign", - "Id": 528 + "Command": "Get-PnPListDesign", + "Rank": 1 }, { - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, + "Id": 529, "CommandName": "Get-PnPListDesign", - "Id": 529 + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2 }, { - "Command": "Get-PnPListDesign -Identity ListEvent", - "Rank": 3, + "Id": 530, "CommandName": "Get-PnPListDesign", - "Id": 530 + "Command": "Get-PnPListDesign -Identity ListEvent", + "Rank": 3 }, { - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Rank": 1, + "Id": 531, "CommandName": "Get-PnPListInformationRightsManagement", - "Id": 531 + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "Rank": 1 }, { - "Command": "Get-PnPListItem -List Tasks", - "Rank": 1, + "Id": 532, "CommandName": "Get-PnPListItem", - "Id": 532 + "Command": "Get-PnPListItem -List Tasks", + "Rank": 1 }, { - "Command": "Get-PnPListItem -List Tasks -Id 1", - "Rank": 2, + "Id": 533, "CommandName": "Get-PnPListItem", - "Id": 533 + "Command": "Get-PnPListItem -List Tasks -Id 1", + "Rank": 2 }, { - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Rank": 3, + "Id": 534, "CommandName": "Get-PnPListItem", - "Id": 534 + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "Rank": 3 }, { - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Rank": 4, + "Id": 535, "CommandName": "Get-PnPListItem", - "Id": 535 + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "Rank": 4 }, { - "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Rank": 5, + "Id": 536, "CommandName": "Get-PnPListItem", - "Id": 536 + "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "Rank": 5 }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Rank": 6, + "Id": 537, "CommandName": "Get-PnPListItem", - "Id": 537 + "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) }", - "Rank": 7, + "Id": 538, "CommandName": "Get-PnPListItem", - "Id": 538 + "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\"", - "Rank": 8, + "Id": 539, "CommandName": "Get-PnPListItem", - "Id": 539 + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "Rank": 8 }, { - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Rank": 9, + "Id": 540, "CommandName": "Get-PnPListItem", - "Id": 540 + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "Rank": 9 }, { - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "Rank": 1, + "Id": 541, "CommandName": "Get-PnPListItemAttachment", - "Id": 541 + "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", - "Rank": 2, + "Id": 542, "CommandName": "Get-PnPListItemAttachment", - "Id": 542 + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "Rank": 2 }, { - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Rank": 1, + "Id": 543, "CommandName": "Get-PnPListItemComment", - "Id": 543 + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "Rank": 1 }, { - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Rank": 1, + "Id": 544, "CommandName": "Get-PnPListItemPermission", - "Id": 544 + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "Rank": 1 }, { - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Rank": 1, + "Id": 545, "CommandName": "Get-PnPListItemVersion", - "Id": 545 + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "Rank": 1 }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Rank": 1, + "Id": 546, "CommandName": "Get-PnPListPermissions", - "Id": 546 + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "Rank": 1 }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Rank": 2, + "Id": 547, "CommandName": "Get-PnPListPermissions", - "Id": 547 + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "Rank": 2 }, { - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Rank": 1, + "Id": 548, "CommandName": "Get-PnPListRecordDeclaration", - "Id": 548 + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "Rank": 1 }, { - "Command": "Get-PnPMasterPage", - "Rank": 1, + "Id": 549, "CommandName": "Get-PnPMasterPage", - "Id": 549 + "Command": "Get-PnPMasterPage", + "Rank": 1 }, { - "Command": "Get-PnPMessageCenterAnnouncement", - "Rank": 1, + "Id": 550, "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 550 + "Command": "Get-PnPMessageCenterAnnouncement", + "Rank": 1 }, { - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Rank": 2, + "Id": 551, "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 551 + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1, + "Id": 552, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 552 + "Command": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Rank": 2, + "Id": 553, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 553 + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365Group", - "Rank": 1, + "Id": 554, "CommandName": "Get-PnPMicrosoft365Group", - "Id": 554 + "Command": "Get-PnPMicrosoft365Group", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Rank": 2, + "Id": 555, "CommandName": "Get-PnPMicrosoft365Group", - "Id": 555 + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Rank": 3, + "Id": 556, "CommandName": "Get-PnPMicrosoft365Group", - "Id": 556 + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Rank": 4, + "Id": 557, "CommandName": "Get-PnPMicrosoft365Group", - "Id": 557 + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "Rank": 4 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Rank": 5, + "Id": 558, "CommandName": "Get-PnPMicrosoft365Group", - "Id": 558 + "Command": "Get-PnPMicrosoft365Group -Identity $group", + "Rank": 5 }, { - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Rank": 6, + "Id": 559, "CommandName": "Get-PnPMicrosoft365Group", - "Id": 559 + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "Rank": 6 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1, + "Id": 560, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 560 + "Command": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Rank": 2, + "Id": 561, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 561 + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, + "Id": 562, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 562 + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Rank": 1, + "Id": 563, "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 563 + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Rank": 2, + "Id": 564, "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 564 + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Rank": 3, + "Id": 565, "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 565 + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Rank": 1, + "Id": 566, "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 566 + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Rank": 2, + "Id": 567, "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 567 + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1, + "Id": 568, "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 568 + "Command": "Get-PnPMicrosoft365GroupSettings", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Rank": 2, + "Id": 569, "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 569 + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1, + "Id": 570, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 570 + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Rank": 2, + "Id": 571, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 571 + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1, + "Id": 572, "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 572 + "Command": "Get-PnPMicrosoft365GroupTeam", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Rank": 2, + "Id": 573, "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 573 + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, + "Id": 574, "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 574 + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1, + "Id": 575, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 575 + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Rank": 2, + "Id": 576, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 576 + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, + "Id": 577, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 577 + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3 }, { - "Command": "Get-PnPNavigationNode", - "Rank": 1, + "Id": 578, "CommandName": "Get-PnPNavigationNode", - "Id": 578 + "Command": "Get-PnPNavigationNode", + "Rank": 1 }, { - "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Rank": 2, + "Id": 579, "CommandName": "Get-PnPNavigationNode", - "Id": 579 + "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "Rank": 2 }, { - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Rank": 3, + "Id": 580, "CommandName": "Get-PnPNavigationNode", - "Id": 580 + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "Rank": 3 }, { - "Command": "Get-PnPOrgAssetsLibrary", - "Rank": 1, + "Id": 581, "CommandName": "Get-PnPOrgAssetsLibrary", - "Id": 581 + "Command": "Get-PnPOrgAssetsLibrary", + "Rank": 1 }, { - "Command": "Get-PnPOrgNewsSite", - "Rank": 1, + "Id": 582, "CommandName": "Get-PnPOrgNewsSite", - "Id": 582 + "Command": "Get-PnPOrgNewsSite", + "Rank": 1 }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Rank": 1, + "Id": 583, "CommandName": "Get-PnPPage", - "Id": 583 + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "Rank": 1 }, { - "Command": "Get-PnPPage \"MyPage\"", - "Rank": 2, + "Id": 584, "CommandName": "Get-PnPPage", - "Id": 584 + "Command": "Get-PnPPage \"MyPage\"", + "Rank": 2 }, { - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Rank": 3, + "Id": 585, "CommandName": "Get-PnPPage", - "Id": 585 + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "Rank": 3 }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Rank": 4, + "Id": 586, "CommandName": "Get-PnPPage", - "Id": 586 + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "Rank": 4 }, { - "Command": "Get-PnPPageComponent -Page Home", - "Rank": 1, + "Id": 587, "CommandName": "Get-PnPPageComponent", - "Id": 587 + "Command": "Get-PnPPageComponent -Page Home", + "Rank": 1 }, { - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2, + "Id": 588, "CommandName": "Get-PnPPageComponent", - "Id": 588 + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 2 }, { - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Rank": 3, + "Id": 589, "CommandName": "Get-PnPPageComponent", - "Id": 589 + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "Rank": 3 }, { - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, + "Id": 590, "CommandName": "Get-PnPPlannerBucket", - "Id": 590 + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerConfiguration", - "Rank": 1, + "Id": 591, "CommandName": "Get-PnPPlannerConfiguration", - "Id": 591 + "Command": "Get-PnPPlannerConfiguration", + "Rank": 1 }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Rank": 1, + "Id": 592, "CommandName": "Get-PnPPlannerPlan", - "Id": 592 + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Rank": 2, + "Id": 593, "CommandName": "Get-PnPPlannerPlan", - "Id": 593 + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "Rank": 2 }, { - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Rank": 3, + "Id": 594, "CommandName": "Get-PnPPlannerPlan", - "Id": 594 + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "Rank": 3 }, { - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, + "Id": 595, "CommandName": "Get-PnPPlannerRosterMember", - "Id": 595 + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Rank": 1, + "Id": 596, "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 596 + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 2, + "Id": 597, "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 597 + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 2 }, { - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, + "Id": 598, "CommandName": "Get-PnPPlannerTask", - "Id": 598 + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 2, + "Id": 599, "CommandName": "Get-PnPPlannerTask", - "Id": 599 + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Rank": 2 }, { - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 3, + "Id": 600, "CommandName": "Get-PnPPlannerTask", - "Id": 600 + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Rank": 3 }, { - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, + "Id": 601, "CommandName": "Get-PnPPlannerUserPolicy", - "Id": 601 + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "Rank": 1, + "Id": 602, "CommandName": "Get-PnPPowerPlatformConnector", - "Id": 602 + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "Rank": 1 }, { - "Command": "Get-PnPPowerPlatformEnvironment", - "Rank": 1, + "Id": 603, "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 603 + "Command": "Get-PnPPowerPlatformEnvironment", + "Rank": 1 }, { - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Rank": 2, + "Id": 604, "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 604 + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "Rank": 2 }, { - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Rank": 3, + "Id": 605, "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 605 + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "Rank": 3 }, { - "Command": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1, + "Id": 606, "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Id": 606 + "Command": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1 }, { - "Command": "Get-PnPPropertyBag", - "Rank": 1, + "Id": 607, "CommandName": "Get-PnPPropertyBag", - "Id": 607 + "Command": "Get-PnPPropertyBag", + "Rank": 1 }, { - "Command": "Get-PnPPropertyBag -Key MyKey", - "Rank": 2, + "Id": 608, "CommandName": "Get-PnPPropertyBag", - "Id": 608 + "Command": "Get-PnPPropertyBag -Key MyKey", + "Rank": 2 }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Rank": 3, + "Id": 609, "CommandName": "Get-PnPPropertyBag", - "Id": 609 + "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "Rank": 3 }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Rank": 4, + "Id": 610, "CommandName": "Get-PnPPropertyBag", - "Id": 610 + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "Rank": 4 }, { - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Rank": 5, + "Id": 611, "CommandName": "Get-PnPPropertyBag", - "Id": 611 + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "Rank": 5 }, { - "Command": "Get-PnPPublishingImageRendition", - "Rank": 1, + "Id": 612, "CommandName": "Get-PnPPublishingImageRendition", - "Id": 612 + "Command": "Get-PnPPublishingImageRendition", + "Rank": 1 }, { - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Rank": 2, + "Id": 613, "CommandName": "Get-PnPPublishingImageRendition", - "Id": 613 + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "Rank": 2 }, { - "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Rank": 3, + "Id": 614, "CommandName": "Get-PnPPublishingImageRendition", - "Id": 614 + "Command": "Get-PnPPublishingImageRendition -Identity 2", + "Rank": 3 }, { - "Command": "Get-PnPRecycleBinItem", - "Rank": 1, + "Id": 615, "CommandName": "Get-PnPRecycleBinItem", - "Id": 615 + "Command": "Get-PnPRecycleBinItem", + "Rank": 1 }, { - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Rank": 2, + "Id": 616, "CommandName": "Get-PnPRecycleBinItem", - "Id": 616 + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "Rank": 2 }, { - "Command": "Get-PnPRecycleBinItem -FirstStage", - "Rank": 3, + "Id": 617, "CommandName": "Get-PnPRecycleBinItem", - "Id": 617 + "Command": "Get-PnPRecycleBinItem -FirstStage", + "Rank": 3 }, { - "Command": "Get-PnPRecycleBinItem -SecondStage", - "Rank": 4, + "Id": 618, "CommandName": "Get-PnPRecycleBinItem", - "Id": 618 + "Command": "Get-PnPRecycleBinItem -SecondStage", + "Rank": 4 }, { - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Rank": 5, + "Id": 619, "CommandName": "Get-PnPRecycleBinItem", - "Id": 619 + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "Rank": 5 }, { - "Command": "Get-PnPRequestAccessEmails", - "Rank": 1, + "Id": 620, "CommandName": "Get-PnPRequestAccessEmails", - "Id": 620 + "Command": "Get-PnPRequestAccessEmails", + "Rank": 1 }, { - "Command": "Get-PnPRetentionLabel", - "Rank": 1, + "Id": 621, "CommandName": "Get-PnPRetentionLabel", - "Id": 621 + "Command": "Get-PnPRetentionLabel", + "Rank": 1 }, { - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", - "Rank": 2, + "Id": 622, "CommandName": "Get-PnPRetentionLabel", - "Id": 622 + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "Rank": 2 }, { - "Command": "Get-PnPRoleDefinition", - "Rank": 1, + "Id": 623, "CommandName": "Get-PnPRoleDefinition", - "Id": 623 + "Command": "Get-PnPRoleDefinition", + "Rank": 1 }, { - "Command": "Get-PnPRoleDefinition -Identity Read", - "Rank": 2, + "Id": 624, "CommandName": "Get-PnPRoleDefinition", - "Id": 624 + "Command": "Get-PnPRoleDefinition -Identity Read", + "Rank": 2 }, { - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Rank": 3, + "Id": 625, "CommandName": "Get-PnPRoleDefinition", - "Id": 625 + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "Rank": 3 }, { - "Command": "Get-PnPSearchConfiguration", - "Rank": 1, + "Id": 626, "CommandName": "Get-PnPSearchConfiguration", - "Id": 626 + "Command": "Get-PnPSearchConfiguration", + "Rank": 1 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site", - "Rank": 2, + "Id": 627, "CommandName": "Get-PnPSearchConfiguration", - "Id": 627 + "Command": "Get-PnPSearchConfiguration -Scope Site", + "Rank": 2 }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Rank": 3, + "Id": 628, "CommandName": "Get-PnPSearchConfiguration", - "Id": 628 + "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "Rank": 3 }, { - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, + "Id": 629, "CommandName": "Get-PnPSearchConfiguration", - "Id": 629 + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Rank": 5, + "Id": 630, "CommandName": "Get-PnPSearchConfiguration", - "Id": 630 + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "Rank": 5 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Rank": 6, + "Id": 631, "CommandName": "Get-PnPSearchConfiguration", - "Id": 631 + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "Rank": 6 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Rank": 7, + "Id": 632, "CommandName": "Get-PnPSearchConfiguration", - "Id": 632 + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "Rank": 7 }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Rank": 8, + "Id": 633, "CommandName": "Get-PnPSearchConfiguration", - "Id": 633 + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "Rank": 8 }, { - "Command": "Get-PnPSearchCrawlLog", - "Rank": 1, + "Id": 634, "CommandName": "Get-PnPSearchCrawlLog", - "Id": 634 + "Command": "Get-PnPSearchCrawlLog", + "Rank": 1 }, { - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Rank": 2, + "Id": 635, "CommandName": "Get-PnPSearchCrawlLog", - "Id": 635 + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "Rank": 2 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Rank": 3, + "Id": 636, "CommandName": "Get-PnPSearchCrawlLog", - "Id": 636 + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "Rank": 3 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Rank": 4, + "Id": 637, "CommandName": "Get-PnPSearchCrawlLog", - "Id": 637 + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "Rank": 4 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Rank": 5, + "Id": 638, "CommandName": "Get-PnPSearchCrawlLog", - "Id": 638 + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "Rank": 5 }, { - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Rank": 6, + "Id": 639, "CommandName": "Get-PnPSearchCrawlLog", - "Id": 639 + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "Rank": 6 }, { - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Rank": 7, + "Id": 640, "CommandName": "Get-PnPSearchCrawlLog", - "Id": 640 + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "Rank": 7 }, { - "Command": "Get-PnPSearchSettings", - "Rank": 1, + "Id": 641, "CommandName": "Get-PnPSearchSettings", - "Id": 641 + "Command": "Get-PnPSearchSettings", + "Rank": 1 }, { - "Command": "Get-PnPServiceCurrentHealth", - "Rank": 1, + "Id": 642, "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 642 + "Command": "Get-PnPServiceCurrentHealth", + "Rank": 1 }, { - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Rank": 2, + "Id": 643, "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 643 + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "Rank": 2 }, { - "Command": "Get-PnPServiceHealthIssue", - "Rank": 1, + "Id": 644, "CommandName": "Get-PnPServiceHealthIssue", - "Id": 644 + "Command": "Get-PnPServiceHealthIssue", + "Rank": 1 }, { - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Rank": 2, + "Id": 645, "CommandName": "Get-PnPServiceHealthIssue", - "Id": 645 + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "Rank": 2 }, { - "Command": "Get-PnPSharePointAddIn", - "Rank": 1, + "Id": 646, "CommandName": "Get-PnPSharePointAddIn", - "Id": 646 + "Command": "Get-PnPSharePointAddIn", + "Rank": 1 }, { - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Rank": 2, + "Id": 647, "CommandName": "Get-PnPSharePointAddIn", - "Id": 647 + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "Rank": 2 }, { - "Command": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1, + "Id": 648, "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Id": 648 + "Command": "Get-PnPSharingForNonOwnersOfSite", + "Rank": 1 }, { - "Command": "Get-PnPSite", - "Rank": 1, + "Id": 649, "CommandName": "Get-PnPSite", - "Id": 649 + "Command": "Get-PnPSite", + "Rank": 1 }, { - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Rank": 2, + "Id": 650, "CommandName": "Get-PnPSite", - "Id": 650 + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "Rank": 2 }, { - "Command": "Get-PnPSiteClosure", - "Rank": 1, + "Id": 651, "CommandName": "Get-PnPSiteClosure", - "Id": 651 + "Command": "Get-PnPSiteClosure", + "Rank": 1 }, { - "Command": "Get-PnPSiteCollectionAdmin", - "Rank": 1, + "Id": 652, "CommandName": "Get-PnPSiteCollectionAdmin", - "Id": 652 + "Command": "Get-PnPSiteCollectionAdmin", + "Rank": 1 }, { - "Command": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1, + "Id": 653, "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 653 + "Command": "Get-PnPSiteCollectionAppCatalog", + "Rank": 1 }, { - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Rank": 2, + "Id": 654, "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 654 + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "Rank": 2 }, { - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Rank": 3, + "Id": 655, "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 655 + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "Rank": 3 }, { - "Command": "Get-PnPSiteCollectionTermStore", - "Rank": 1, + "Id": 656, "CommandName": "Get-PnPSiteCollectionTermStore", - "Id": 656 + "Command": "Get-PnPSiteCollectionTermStore", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesign", - "Rank": 1, + "Id": 657, "CommandName": "Get-PnPSiteDesign", - "Id": 657 + "Command": "Get-PnPSiteDesign", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, + "Id": 658, "CommandName": "Get-PnPSiteDesign", - "Id": 658 + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2 }, { - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, + "Id": 659, "CommandName": "Get-PnPSiteDesignRights", - "Id": 659 + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesignRun", - "Rank": 1, + "Id": 660, "CommandName": "Get-PnPSiteDesignRun", - "Id": 660 + "Command": "Get-PnPSiteDesignRun", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Rank": 2, + "Id": 661, "CommandName": "Get-PnPSiteDesignRun", - "Id": 661 + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "Rank": 2 }, { - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1, + "Id": 662, "CommandName": "Get-PnPSiteDesignTask", - "Id": 662 + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesignTask", - "Rank": 2, + "Id": 663, "CommandName": "Get-PnPSiteDesignTask", - "Id": 663 + "Command": "Get-PnPSiteDesignTask", + "Rank": 2 }, { - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 3, + "Id": 664, "CommandName": "Get-PnPSiteDesignTask", - "Id": 664 + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteGroup", - "Rank": 1, + "Id": 665, "CommandName": "Get-PnPSiteGroup", - "Id": 665 + "Command": "Get-PnPSiteGroup", + "Rank": 1 }, { - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 2, + "Id": 666, "CommandName": "Get-PnPSiteGroup", - "Id": 666 + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Rank": 2 }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Rank": 3, + "Id": 667, "CommandName": "Get-PnPSiteGroup", - "Id": 667 + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 4, + "Id": 668, "CommandName": "Get-PnPSiteGroup", - "Id": 668 + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Rank": 4 }, { - "Command": "Get-PnPSitePolicy", - "Rank": 1, + "Id": 669, "CommandName": "Get-PnPSitePolicy", - "Id": 669 + "Command": "Get-PnPSitePolicy", + "Rank": 1 }, { - "Command": "Get-PnPSitePolicy -AllAvailable", - "Rank": 2, + "Id": 670, "CommandName": "Get-PnPSitePolicy", - "Id": 670 + "Command": "Get-PnPSitePolicy -AllAvailable", + "Rank": 2 }, { - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 3, + "Id": 671, "CommandName": "Get-PnPSitePolicy", - "Id": 671 + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteScript", - "Rank": 1, + "Id": 672, "CommandName": "Get-PnPSiteScript", - "Id": 672 + "Command": "Get-PnPSiteScript", + "Rank": 1 }, { - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, + "Id": 673, "CommandName": "Get-PnPSiteScript", - "Id": 673 + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2 }, { - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Rank": 1, + "Id": 674, "CommandName": "Get-PnPSiteScriptFromList", - "Id": 674 + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "Rank": 1 }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Rank": 2, + "Id": 675, "CommandName": "Get-PnPSiteScriptFromList", - "Id": 675 + "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\"", - "Rank": 3, + "Id": 676, "CommandName": "Get-PnPSiteScriptFromList", - "Id": 676 + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Rank": 1, + "Id": 677, "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 677 + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "Rank": 1 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Rank": 2, + "Id": 678, "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 678 + "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\"", - "Rank": 3, + "Id": 679, "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 679 + "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", - "Rank": 4, + "Id": 680, "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 680 + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "Rank": 4 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Rank": 5, + "Id": 681, "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 681 + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "Rank": 5 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "Rank": 6, + "Id": 682, "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 682 + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "Rank": 6 }, { - "Command": "Get-PnPSiteSearchQueryResults", - "Rank": 1, + "Id": 683, "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 683 + "Command": "Get-PnPSiteSearchQueryResults", + "Rank": 1 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Rank": 2, + "Id": 684, "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 684 + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "Rank": 2 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Rank": 3, + "Id": 685, "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 685 + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Rank": 4, + "Id": 686, "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 686 + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "Rank": 4 }, { - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Rank": 5, + "Id": 687, "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 687 + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "Rank": 5 }, { - "Command": "Get-PnPSiteSearchQueryResults -All", - "Rank": 6, + "Id": 688, "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 688 + "Command": "Get-PnPSiteSearchQueryResults -All", + "Rank": 6 }, { - "Command": "Get-PnPSiteSensitivityLabel", - "Rank": 1, + "Id": 689, "CommandName": "Get-PnPSiteSensitivityLabel", - "Id": 689 + "Command": "Get-PnPSiteSensitivityLabel", + "Rank": 1 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Rank": 1, + "Id": 690, "CommandName": "Get-PnPSiteTemplate", - "Id": 690 + "Command": "Get-PnPSiteTemplate -Out template.pnp", + "Rank": 1 }, { - "Command": "Get-PnPSiteTemplate -Out template.xml", - "Rank": 2, + "Id": 691, "CommandName": "Get-PnPSiteTemplate", - "Id": 691 + "Command": "Get-PnPSiteTemplate -Out template.xml", + "Rank": 2 }, { - "Command": "Get-PnPSiteTemplate -Out template.md", - "Rank": 3, + "Id": 692, "CommandName": "Get-PnPSiteTemplate", - "Id": 692 + "Command": "Get-PnPSiteTemplate -Out template.md", + "Rank": 3 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Rank": 4, + "Id": 693, "CommandName": "Get-PnPSiteTemplate", - "Id": 693 + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "Rank": 4 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Rank": 5, + "Id": 694, "CommandName": "Get-PnPSiteTemplate", - "Id": 694 + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "Rank": 5 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Rank": 6, + "Id": 695, "CommandName": "Get-PnPSiteTemplate", - "Id": 695 + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "Rank": 6 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Rank": 7, + "Id": 696, "CommandName": "Get-PnPSiteTemplate", - "Id": 696 + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "Rank": 7 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Rank": 8, + "Id": 697, "CommandName": "Get-PnPSiteTemplate", - "Id": 697 + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "Rank": 8 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Rank": 9, + "Id": 698, "CommandName": "Get-PnPSiteTemplate", - "Id": 698 + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "Rank": 9 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Rank": 10, + "Id": 699, "CommandName": "Get-PnPSiteTemplate", - "Id": 699 + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "Rank": 10 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Rank": 11, + "Id": 700, "CommandName": "Get-PnPSiteTemplate", - "Id": 700 + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "Rank": 11 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Rank": 12, + "Id": 701, "CommandName": "Get-PnPSiteTemplate", - "Id": 701 + "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\"", - "Rank": 13, + "Id": 702, "CommandName": "Get-PnPSiteTemplate", - "Id": 702 + "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", - "Rank": 14, + "Id": 703, "CommandName": "Get-PnPSiteTemplate", - "Id": 703 + "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", - "Rank": 1, + "Id": 704, "CommandName": "Get-PnPSiteUserInvitations", - "Id": 704 + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Rank": 1 }, { - "Command": "Get-PnPSiteVersionPolicy", - "Rank": 1, + "Id": 705, "CommandName": "Get-PnPSiteVersionPolicy", - "Id": 705 + "Command": "Get-PnPSiteVersionPolicy", + "Rank": 1 }, { - "Command": "Get-PnPStorageEntity", - "Rank": 1, + "Id": 706, "CommandName": "Get-PnPStorageEntity", - "Id": 706 + "Command": "Get-PnPStorageEntity", + "Rank": 1 }, { - "Command": "Get-PnPStorageEntity -Key MyKey", - "Rank": 2, + "Id": 707, "CommandName": "Get-PnPStorageEntity", - "Id": 707 + "Command": "Get-PnPStorageEntity -Key MyKey", + "Rank": 2 }, { - "Command": "Get-PnPStorageEntity -Scope Site", - "Rank": 3, + "Id": 708, "CommandName": "Get-PnPStorageEntity", - "Id": 708 + "Command": "Get-PnPStorageEntity -Scope Site", + "Rank": 3 }, { - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 4, + "Id": 709, "CommandName": "Get-PnPStorageEntity", - "Id": 709 + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "Rank": 4 }, { - "Command": "Get-PnPStoredCredential -Name O365", - "Rank": 1, + "Id": 710, "CommandName": "Get-PnPStoredCredential", - "Id": 710 + "Command": "Get-PnPStoredCredential -Name O365", + "Rank": 1 }, { - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1, + "Id": 711, "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Id": 711 + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 1 }, { - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1, + "Id": 712, "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Id": 712 + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 1 }, { - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Rank": 1, + "Id": 713, "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Id": 713 + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "Rank": 1 }, { - "Command": "Get-PnPSubWeb", - "Rank": 1, + "Id": 714, "CommandName": "Get-PnPSubWeb", - "Id": 714 + "Command": "Get-PnPSubWeb", + "Rank": 1 }, { - "Command": "Get-PnPSubWeb -Recurse", - "Rank": 2, + "Id": 715, "CommandName": "Get-PnPSubWeb", - "Id": 715 + "Command": "Get-PnPSubWeb -Recurse", + "Rank": 2 }, { - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Rank": 3, + "Id": 716, "CommandName": "Get-PnPSubWeb", - "Id": 716 + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "Rank": 3 }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Rank": 4, + "Id": 717, "CommandName": "Get-PnPSubWeb", - "Id": 717 + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "Rank": 4 }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Rank": 5, + "Id": 718, "CommandName": "Get-PnPSubWeb", - "Id": 718 + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "Rank": 5 }, { - "Command": "Get-PnPSyntexModel", - "Rank": 1, + "Id": 719, "CommandName": "Get-PnPSyntexModel", - "Id": 719 + "Command": "Get-PnPSyntexModel", + "Rank": 1 }, { - "Command": "Get-PnPSyntexModel -Identity 1", - "Rank": 2, + "Id": 720, "CommandName": "Get-PnPSyntexModel", - "Id": 720 + "Command": "Get-PnPSyntexModel -Identity 1", + "Rank": 2 }, { - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Rank": 3, + "Id": 721, "CommandName": "Get-PnPSyntexModel", - "Id": 721 + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "Rank": 3 }, { - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Rank": 1, + "Id": 722, "CommandName": "Get-PnPSyntexModelPublication", - "Id": 722 + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "Rank": 1 }, { - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Rank": 1, + "Id": 723, "CommandName": "Get-PnPTaxonomyItem", - "Id": 723 + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "Rank": 1 }, { - "Command": "Get-PnPTeamsApp", - "Rank": 1, + "Id": 724, "CommandName": "Get-PnPTeamsApp", - "Id": 724 + "Command": "Get-PnPTeamsApp", + "Rank": 1 }, { - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Rank": 2, + "Id": 725, "CommandName": "Get-PnPTeamsApp", - "Id": 725 + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "Rank": 2 }, { - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Rank": 3, + "Id": 726, "CommandName": "Get-PnPTeamsApp", - "Id": 726 + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "Rank": 3 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Rank": 1, + "Id": 727, "CommandName": "Get-PnPTeamsChannel", - "Id": 727 + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "Rank": 1 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Rank": 2, + "Id": 728, "CommandName": "Get-PnPTeamsChannel", - "Id": 728 + "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\"", - "Rank": 3, + "Id": 729, "CommandName": "Get-PnPTeamsChannel", - "Id": 729 + "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\"", - "Rank": 1, + "Id": 730, "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 730 + "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\"", - "Rank": 2, + "Id": 731, "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 731 + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Rank": 2 }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Rank": 1, + "Id": 732, "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 732 + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "Rank": 1 }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Rank": 2, + "Id": 733, "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 733 + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "Rank": 2 }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Rank": 1, + "Id": 734, "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 734 + "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", - "Rank": 2, + "Id": 735, "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 735 + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "Rank": 2 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 1, + "Id": 736, "CommandName": "Get-PnPTeamsChannelUser", - "Id": 736 + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "Rank": 1 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Rank": 2, + "Id": 737, "CommandName": "Get-PnPTeamsChannelUser", - "Id": 737 + "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", - "Rank": 3, + "Id": 738, "CommandName": "Get-PnPTeamsChannelUser", - "Id": 738 + "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", - "Rank": 4, + "Id": 739, "CommandName": "Get-PnPTeamsChannelUser", - "Id": 739 + "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", - "Rank": 1, + "Id": 740, "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 740 + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "Rank": 1 }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Rank": 2, + "Id": 741, "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 741 + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "Rank": 2 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Rank": 1, + "Id": 742, "CommandName": "Get-PnPTeamsTab", - "Id": 742 + "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\"", - "Rank": 2, + "Id": 743, "CommandName": "Get-PnPTeamsTab", - "Id": 743 + "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", - "Rank": 3, + "Id": 744, "CommandName": "Get-PnPTeamsTab", - "Id": 744 + "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\"", - "Rank": 4, + "Id": 745, "CommandName": "Get-PnPTeamsTab", - "Id": 745 + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "Rank": 4 }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Rank": 5, + "Id": 746, "CommandName": "Get-PnPTeamsTab", - "Id": 746 + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "Rank": 5 }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, + "Id": 747, "CommandName": "Get-PnPTeamsTag", - "Id": 747 + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Rank": 1 }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 2, + "Id": 748, "CommandName": "Get-PnPTeamsTag", - "Id": 748 + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Rank": 2 }, { - "Command": "Get-PnPTeamsTeam", - "Rank": 1, + "Id": 749, "CommandName": "Get-PnPTeamsTeam", - "Id": 749 + "Command": "Get-PnPTeamsTeam", + "Rank": 1 }, { - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Rank": 2, + "Id": 750, "CommandName": "Get-PnPTeamsTeam", - "Id": 750 + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "Rank": 2 }, { - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Rank": 3, + "Id": 751, "CommandName": "Get-PnPTeamsTeam", - "Id": 751 + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "Rank": 3 }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Rank": 4, + "Id": 752, "CommandName": "Get-PnPTeamsTeam", - "Id": 752 + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "Rank": 4 }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, + "Id": 753, "CommandName": "Get-PnPTeamsTeam", - "Id": 753 + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "Rank": 5 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam", - "Rank": 1, + "Id": 754, "CommandName": "Get-PnPTeamsUser", - "Id": 754 + "Command": "Get-PnPTeamsUser -Team MyTeam", + "Rank": 1 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Rank": 2, + "Id": 755, "CommandName": "Get-PnPTeamsUser", - "Id": 755 + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "Rank": 2 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Rank": 3, + "Id": 756, "CommandName": "Get-PnPTeamsUser", - "Id": 756 + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "Rank": 3 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Rank": 4, + "Id": 757, "CommandName": "Get-PnPTeamsUser", - "Id": 757 + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "Rank": 4 }, { - "Command": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1, + "Id": 758, "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Id": 758 + "Command": "Get-PnPTemporarilyDisableAppBar", + "Rank": 1 }, { - "Command": "Get-PnPTenant", - "Rank": 1, + "Id": 759, "CommandName": "Get-PnPTenant", - "Id": 759 + "Command": "Get-PnPTenant", + "Rank": 1 }, { - "Command": "Get-PnPTenantAppCatalogUrl", - "Rank": 1, + "Id": 760, "CommandName": "Get-PnPTenantAppCatalogUrl", - "Id": 760 + "Command": "Get-PnPTenantAppCatalogUrl", + "Rank": 1 }, { - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Rank": 1, + "Id": 761, "CommandName": "Get-PnPTenantCdnEnabled", - "Id": 761 + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "Rank": 1 }, { - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Rank": 1, + "Id": 762, "CommandName": "Get-PnPTenantCdnOrigin", - "Id": 762 + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "Rank": 1 }, { - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Rank": 1, + "Id": 763, "CommandName": "Get-PnPTenantCdnPolicies", - "Id": 763 + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "Rank": 1 }, { - "Command": "Get-PnPTenantDeletedSite", - "Rank": 1, + "Id": 764, "CommandName": "Get-PnPTenantDeletedSite", - "Id": 764 + "Command": "Get-PnPTenantDeletedSite", + "Rank": 1 }, { - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 2, + "Id": 765, "CommandName": "Get-PnPTenantDeletedSite", - "Id": 765 + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 2 }, { - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Rank": 3, + "Id": 766, "CommandName": "Get-PnPTenantDeletedSite", - "Id": 766 + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "Rank": 3 }, { - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Rank": 4, + "Id": 767, "CommandName": "Get-PnPTenantDeletedSite", - "Id": 767 + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "Rank": 4 }, { - "Command": "Get-PnPTenantId", - "Rank": 1, + "Id": 768, "CommandName": "Get-PnPTenantId", - "Id": 768 + "Command": "Get-PnPTenantId", + "Rank": 1 }, { - "Command": "Get-PnPTenantId contoso", - "Rank": 2, + "Id": 769, "CommandName": "Get-PnPTenantId", - "Id": 769 + "Command": "Get-PnPTenantId contoso", + "Rank": 2 }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Rank": 3, + "Id": 770, "CommandName": "Get-PnPTenantId", - "Id": 770 + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "Rank": 3 }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Rank": 4, + "Id": 771, "CommandName": "Get-PnPTenantId", - "Id": 771 + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "Rank": 4 }, { - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "Rank": 1, + "Id": 772, "CommandName": "Get-PnPTenantInfo", - "Id": 772 + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "Rank": 1 }, { - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "Rank": 2, + "Id": 773, "CommandName": "Get-PnPTenantInfo", - "Id": 773 + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "Rank": 2 }, { - "Command": "Get-PnPTenantInfo", - "Rank": 3, + "Id": 774, "CommandName": "Get-PnPTenantInfo", - "Id": 774 + "Command": "Get-PnPTenantInfo", + "Rank": 3 }, { - "Command": "Get-PnPTenantInfo -CurrentTenant", - "Rank": 4, + "Id": 775, "CommandName": "Get-PnPTenantInfo", - "Id": 775 + "Command": "Get-PnPTenantInfo -CurrentTenant", + "Rank": 4 }, { - "Command": "Get-PnPTenantInstance", - "Rank": 1, + "Id": 776, "CommandName": "Get-PnPTenantInstance", - "Id": 776 + "Command": "Get-PnPTenantInstance", + "Rank": 1 }, { - "Command": "Get-PnPTenantRecycleBinItem", - "Rank": 1, + "Id": 777, "CommandName": "Get-PnPTenantRecycleBinItem", - "Id": 777 + "Command": "Get-PnPTenantRecycleBinItem", + "Rank": 1 }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Rank": 1, + "Id": 778, "CommandName": "Get-PnPTenantSequence", - "Id": 778 + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "Rank": 1 }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Rank": 2, + "Id": 779, "CommandName": "Get-PnPTenantSequence", - "Id": 779 + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "Rank": 2 }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Rank": 1, + "Id": 780, "CommandName": "Get-PnPTenantSequenceSite", - "Id": 780 + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "Rank": 1 }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Rank": 2, + "Id": 781, "CommandName": "Get-PnPTenantSequenceSite", - "Id": 781 + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "Rank": 2 }, { - "Command": "Get-PnPTenantSite", - "Rank": 1, + "Id": 782, "CommandName": "Get-PnPTenantSite", - "Id": 782 + "Command": "Get-PnPTenantSite", + "Rank": 1 }, { - "Command": "Get-PnPTenantSite -Detailed", - "Rank": 2, + "Id": 783, "CommandName": "Get-PnPTenantSite", - "Id": 783 + "Command": "Get-PnPTenantSite -Detailed", + "Rank": 2 }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Rank": 3, + "Id": 784, "CommandName": "Get-PnPTenantSite", - "Id": 784 + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "Rank": 3 }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Rank": 4, + "Id": 785, "CommandName": "Get-PnPTenantSite", - "Id": 785 + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "Rank": 4 }, { - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Rank": 5, + "Id": 786, "CommandName": "Get-PnPTenantSite", - "Id": 786 + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "Rank": 5 }, { - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Rank": 6, + "Id": 787, "CommandName": "Get-PnPTenantSite", - "Id": 787 + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "Rank": 6 }, { - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Rank": 7, + "Id": 788, "CommandName": "Get-PnPTenantSite", - "Id": 788 + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "Rank": 7 }, { - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Rank": 8, + "Id": 789, "CommandName": "Get-PnPTenantSite", - "Id": 789 + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "Rank": 8 }, { - "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Rank": 9, + "Id": 790, "CommandName": "Get-PnPTenantSite", - "Id": 790 + "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "Rank": 9 }, { - "Command": "Get-PnPTenantSyncClientRestriction", - "Rank": 1, + "Id": 791, "CommandName": "Get-PnPTenantSyncClientRestriction", - "Id": 791 + "Command": "Get-PnPTenantSyncClientRestriction", + "Rank": 1 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Rank": 1, + "Id": 792, "CommandName": "Get-PnPTenantTemplate", - "Id": 792 + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "Rank": 1 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Rank": 2, + "Id": 793, "CommandName": "Get-PnPTenantTemplate", - "Id": 793 + "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", - "Rank": 3, + "Id": 794, "CommandName": "Get-PnPTenantTemplate", - "Id": 794 + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "Rank": 3 }, { - "Command": "Get-PnPTenantTheme", - "Rank": 1, + "Id": 795, "CommandName": "Get-PnPTenantTheme", - "Id": 795 + "Command": "Get-PnPTenantTheme", + "Rank": 1 }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 2, + "Id": 796, "CommandName": "Get-PnPTenantTheme", - "Id": 796 + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Rank": 2 }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Rank": 3, + "Id": 797, "CommandName": "Get-PnPTenantTheme", - "Id": 797 + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "Rank": 3 }, { - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 1, + "Id": 798, "CommandName": "Get-PnPTerm", - "Id": 798 + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 1 }, { - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, + "Id": 799, "CommandName": "Get-PnPTerm", - "Id": 799 + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2 }, { - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, + "Id": 800, "CommandName": "Get-PnPTerm", - "Id": 800 + "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", - "Rank": 4, + "Id": 801, "CommandName": "Get-PnPTerm", - "Id": 801 + "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", - "Rank": 5, + "Id": 802, "CommandName": "Get-PnPTerm", - "Id": 802 + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "Rank": 5 }, { - "Command": "Get-PnPTermGroup", - "Rank": 1, + "Id": 803, "CommandName": "Get-PnPTermGroup", - "Id": 803 + "Command": "Get-PnPTermGroup", + "Rank": 1 }, { - "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Rank": 2, + "Id": 804, "CommandName": "Get-PnPTermGroup", - "Id": 804 + "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "Rank": 2 }, { - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Rank": 3, + "Id": 805, "CommandName": "Get-PnPTermGroup", - "Id": 805 + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "Rank": 3 }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Rank": 1, + "Id": 806, "CommandName": "Get-PnPTermLabel", - "Id": 806 + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "Rank": 1 }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Rank": 2, + "Id": 807, "CommandName": "Get-PnPTermLabel", - "Id": 807 + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "Rank": 2 }, { - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, + "Id": 808, "CommandName": "Get-PnPTermLabel", - "Id": 808 + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 3 }, { - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Rank": 1, + "Id": 809, "CommandName": "Get-PnPTermSet", - "Id": 809 + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "Rank": 1 }, { - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, + "Id": 810, "CommandName": "Get-PnPTermSet", - "Id": 810 + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2 }, { - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Rank": 3, + "Id": 811, "CommandName": "Get-PnPTermSet", - "Id": 811 + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "Rank": 3 }, { - "Command": "Get-PnPTheme", - "Rank": 1, + "Id": 812, "CommandName": "Get-PnPTheme", - "Id": 812 + "Command": "Get-PnPTheme", + "Rank": 1 }, { - "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Rank": 2, + "Id": 813, "CommandName": "Get-PnPTheme", - "Id": 813 + "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "Rank": 2 }, { - "Command": "Get-PnPTimeZoneId", - "Rank": 1, + "Id": 814, "CommandName": "Get-PnPTimeZoneId", - "Id": 814 + "Command": "Get-PnPTimeZoneId", + "Rank": 1 }, { - "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Rank": 2, + "Id": 815, "CommandName": "Get-PnPTimeZoneId", - "Id": 815 + "Command": "Get-PnPTimeZoneId -Match Stockholm", + "Rank": 2 }, { - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Rank": 1, + "Id": 816, "CommandName": "Get-PnPUnfurlLink", - "Id": 816 + "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)", - "Rank": 1, + "Id": 817, "CommandName": "Get-PnPUnifiedAuditLog", - "Id": 817 + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "Rank": 1 }, { - "Command": "Get-PnPUPABulkImportStatus", - "Rank": 1, + "Id": 818, "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 818 + "Command": "Get-PnPUPABulkImportStatus", + "Rank": 1 }, { - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Rank": 2, + "Id": 819, "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 819 + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "Rank": 2 }, { - "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Rank": 3, + "Id": 820, "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 820 + "Command": "Get-PnPUPABulkImportStatus -JobId ", + "Rank": 3 }, { - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Rank": 4, + "Id": 821, "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 821 + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "Rank": 4 }, { - "Command": "Get-PnPUser", - "Rank": 1, + "Id": 822, "CommandName": "Get-PnPUser", - "Id": 822 + "Command": "Get-PnPUser", + "Rank": 1 }, { - "Command": "Get-PnPUser -Identity 23", - "Rank": 2, + "Id": 823, "CommandName": "Get-PnPUser", - "Id": 823 + "Command": "Get-PnPUser -Identity 23", + "Rank": 2 }, { - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Rank": 3, + "Id": 824, "CommandName": "Get-PnPUser", - "Id": 824 + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "Rank": 3 }, { - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Rank": 4, + "Id": 825, "CommandName": "Get-PnPUser", - "Id": 825 + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "Rank": 4 }, { - "Command": "Get-PnPUser -WithRightsAssigned", - "Rank": 5, + "Id": 826, "CommandName": "Get-PnPUser", - "Id": 826 + "Command": "Get-PnPUser -WithRightsAssigned", + "Rank": 5 }, { - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Rank": 6, + "Id": 827, "CommandName": "Get-PnPUser", - "Id": 827 + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "Rank": 6 }, { - "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Rank": 7, + "Id": 828, "CommandName": "Get-PnPUser", - "Id": 828 + "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "Rank": 7 }, { - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Rank": 1, + "Id": 829, "CommandName": "Get-PnPUserOneDriveQuota", - "Id": 829 + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "Rank": 1 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Rank": 1, + "Id": 830, "CommandName": "Get-PnPUserProfileProperty", - "Id": 830 + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "Rank": 1 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Rank": 2, + "Id": 831, "CommandName": "Get-PnPUserProfileProperty", - "Id": 831 + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "Rank": 2 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Rank": 3, + "Id": 832, "CommandName": "Get-PnPUserProfileProperty", - "Id": 832 + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "Rank": 3 }, { - "Command": "Get-PnPView -List \"Demo List\"", - "Rank": 1, + "Id": 833, "CommandName": "Get-PnPView", - "Id": 833 + "Command": "Get-PnPView -List \"Demo List\"", + "Rank": 1 }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Rank": 2, + "Id": 834, "CommandName": "Get-PnPView", - "Id": 834 + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "Rank": 2 }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Rank": 3, + "Id": 835, "CommandName": "Get-PnPView", - "Id": 835 + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "Rank": 3 }, { - "Command": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1, + "Id": 836, "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 836 + "Command": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 1 }, { - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 2, + "Id": 837, "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 837 + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Rank": 2 }, { - "Command": "Get-PnPWeb", - "Rank": 1, + "Id": 838, "CommandName": "Get-PnPWeb", - "Id": 838 + "Command": "Get-PnPWeb", + "Rank": 1 }, { - "Command": "Get-PnPWebHeader", - "Rank": 1, + "Id": 839, "CommandName": "Get-PnPWebHeader", - "Id": 839 + "Command": "Get-PnPWebHeader", + "Rank": 1 }, { - "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Rank": 1, + "Id": 840, "CommandName": "Get-PnPWebhookSubscriptions", - "Id": 840 + "Command": "Get-PnPWebhookSubscriptions -List MyList", + "Rank": 1 }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Rank": 1, + "Id": 841, "CommandName": "Get-PnPWebPart", - "Id": 841 + "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", - "Rank": 2, + "Id": 842, "CommandName": "Get-PnPWebPart", - "Id": 842 + "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", - "Rank": 1, + "Id": 843, "CommandName": "Get-PnPWebPartProperty", - "Id": 843 + "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\"", - "Rank": 2, + "Id": 844, "CommandName": "Get-PnPWebPartProperty", - "Id": 844 + "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", - "Rank": 1, + "Id": 845, "CommandName": "Get-PnPWebPartXml", - "Id": 845 + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1 }, { - "Command": "Get-PnPWebTemplates", - "Rank": 1, + "Id": 846, "CommandName": "Get-PnPWebTemplates", - "Id": 846 + "Command": "Get-PnPWebTemplates", + "Rank": 1 }, { - "Command": "Get-PnPWebTemplates -LCID 1033", - "Rank": 2, + "Id": 847, "CommandName": "Get-PnPWebTemplates", - "Id": 847 + "Command": "Get-PnPWebTemplates -LCID 1033", + "Rank": 2 }, { - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Rank": 3, + "Id": 848, "CommandName": "Get-PnPWebTemplates", - "Id": 848 + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "Rank": 3 }, { - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Rank": 1, + "Id": 849, "CommandName": "Get-PnPWikiPageContent", - "Id": 849 + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "Rank": 1 }, { - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Rank": 1, + "Id": 850, "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 850 + "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 Write -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2, + "Id": 851, "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 851 + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -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\"", - "Rank": 1, + "Id": 852, "CommandName": "Grant-PnPHubSiteRights", - "Id": 852 + "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\"", - "Rank": 1, + "Id": 853, "CommandName": "Grant-PnPSiteDesignRights", - "Id": 853 + "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\"", - "Rank": 1, + "Id": 854, "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Id": 854 + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Rank": 1 }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Rank": 1, + "Id": 855, "CommandName": "Import-PnPTaxonomy", - "Id": 855 + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "Rank": 1 }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Rank": 2, + "Id": 856, "CommandName": "Import-PnPTaxonomy", - "Id": 856 + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "Rank": 2 }, { - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Rank": 3, + "Id": 857, "CommandName": "Import-PnPTaxonomy", - "Id": 857 + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "Rank": 3 }, { - "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Rank": 1, + "Id": 858, "CommandName": "Import-PnPTermGroupFromXml", - "Id": 858 + "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "Rank": 1 }, { - "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Rank": 2, + "Id": 859, "CommandName": "Import-PnPTermGroupFromXml", - "Id": 859 + "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "Rank": 2 }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Rank": 1, + "Id": 860, "CommandName": "Import-PnPTermSet", - "Id": 860 + "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}'", - "Rank": 2, + "Id": 861, "CommandName": "Import-PnPTermSet", - "Id": 861 + "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'", - "Rank": 3, + "Id": 862, "CommandName": "Import-PnPTermSet", - "Id": 862 + "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", - "Rank": 1, + "Id": 863, "CommandName": "Install-PnPApp", - "Id": 863 + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, + "Id": 864, "CommandName": "Install-PnPApp", - "Id": 864 + "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'", - "Rank": 1, + "Id": 865, "CommandName": "Invoke-PnPGraphMethod", - "Id": 865 + "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", - "Rank": 2, + "Id": 866, "CommandName": "Invoke-PnPGraphMethod", - "Id": 866 + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "Rank": 2 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Rank": 3, + "Id": 867, "CommandName": "Invoke-PnPGraphMethod", - "Id": 867 + "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", - "Rank": 4, + "Id": 868, "CommandName": "Invoke-PnPGraphMethod", - "Id": 868 + "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\"", - "Rank": 5, + "Id": 869, "CommandName": "Invoke-PnPGraphMethod", - "Id": 869 + "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", - "Rank": 6, + "Id": 870, "CommandName": "Invoke-PnPGraphMethod", - "Id": 870 + "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\"", - "Rank": 7, + "Id": 871, "CommandName": "Invoke-PnPGraphMethod", - "Id": 871 + "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", - "Rank": 1, + "Id": 872, "CommandName": "Invoke-PnPListDesign", - "Id": 872 + "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\"", - "Rank": 2, + "Id": 873, "CommandName": "Invoke-PnPListDesign", - "Id": 873 + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Rank": 2 }, { - "Command": "Invoke-PnPQuery -RetryCount 5", - "Rank": 1, + "Id": 874, "CommandName": "Invoke-PnPQuery", - "Id": 874 + "Command": "Invoke-PnPQuery -RetryCount 5", + "Rank": 1 }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, + "Id": 875, "CommandName": "Invoke-PnPSiteDesign", - "Id": 875 + "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\"", - "Rank": 2, + "Id": 876, "CommandName": "Invoke-PnPSiteDesign", - "Id": 876 + "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", - "Rank": 1, + "Id": 877, "CommandName": "Invoke-PnPSiteScript", - "Id": 877 + "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", - "Rank": 1, + "Id": 878, "CommandName": "Invoke-PnPSiteSwap", - "Id": 878 + "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", - "Rank": 2, + "Id": 879, "CommandName": "Invoke-PnPSiteSwap", - "Id": 879 + "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", - "Rank": 3, + "Id": 880, "CommandName": "Invoke-PnPSiteSwap", - "Id": 880 + "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", - "Rank": 1, + "Id": 881, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 881 + "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "Rank": 1 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Rank": 2, + "Id": 882, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 882 + "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\"}", - "Rank": 3, + "Id": 883, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 883 + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Rank": 3 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Rank": 4, + "Id": 884, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 884 + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "Rank": 4 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Rank": 5, + "Id": 885, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 885 + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "Rank": 5 }, { - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Rank": 6, + "Id": 886, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 886 + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "Rank": 6 }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Rank": 7, + "Id": 887, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 887 + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "Rank": 7 }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Rank": 8, + "Id": 888, "CommandName": "Invoke-PnPSiteTemplate", - "Id": 888 + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "Rank": 8 }, { - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Rank": 1, + "Id": 889, "CommandName": "Invoke-PnPSPRestMethod", - "Id": 889 + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "Rank": 1 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Rank": 1, + "Id": 890, "CommandName": "Invoke-PnPTenantTemplate", - "Id": 890 + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "Rank": 1 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Rank": 2, + "Id": 891, "CommandName": "Invoke-PnPTenantTemplate", - "Id": 891 + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "Rank": 2 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3, + "Id": 892, "CommandName": "Invoke-PnPTenantTemplate", - "Id": 892 + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Rank": 3 }, { - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Rank": 1, + "Id": 893, "CommandName": "Invoke-PnPWebAction", - "Id": 893 + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "Rank": 1 }, { - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Rank": 2, + "Id": 894, "CommandName": "Invoke-PnPWebAction", - "Id": 894 + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "Rank": 2 }, { - "Command": "Measure-PnPList \"Documents\"", - "Rank": 1, + "Id": 895, "CommandName": "Measure-PnPList", - "Id": 895 + "Command": "Measure-PnPList \"Documents\"", + "Rank": 1 }, { - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Rank": 2, + "Id": 896, "CommandName": "Measure-PnPList", - "Id": 896 + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "Rank": 2 }, { - "Command": "Measure-PnPWeb", - "Rank": 1, + "Id": 897, "CommandName": "Measure-PnPWeb", - "Id": 897 + "Command": "Measure-PnPWeb", + "Rank": 1 }, { - "Command": "Measure-PnPWeb $web -Recursive", - "Rank": 2, + "Id": 898, "CommandName": "Measure-PnPWeb", - "Id": 898 + "Command": "Measure-PnPWeb $web -Recursive", + "Rank": 2 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Rank": 1, + "Id": 899, "CommandName": "Move-PnPFile", - "Id": 899 + "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", - "Rank": 2, + "Id": 900, "CommandName": "Move-PnPFile", - "Id": 900 + "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", - "Rank": 3, + "Id": 901, "CommandName": "Move-PnPFile", - "Id": 901 + "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", - "Rank": 4, + "Id": 902, "CommandName": "Move-PnPFile", - "Id": 902 + "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'", - "Rank": 1, + "Id": 903, "CommandName": "Move-PnPFolder", - "Id": 903 + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "Rank": 1 }, { - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Rank": 2, + "Id": 904, "CommandName": "Move-PnPFolder", - "Id": 904 + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "Rank": 2 }, { - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, + "Id": 905, "CommandName": "Move-PnPListItemToRecycleBin", - "Id": 905 + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "Rank": 1 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Rank": 1, + "Id": 906, "CommandName": "Move-PnPPageComponent", - "Id": 906 + "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", - "Rank": 2, + "Id": 907, "CommandName": "Move-PnPPageComponent", - "Id": 907 + "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", - "Rank": 3, + "Id": 908, "CommandName": "Move-PnPPageComponent", - "Id": 908 + "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", - "Rank": 4, + "Id": 909, "CommandName": "Move-PnPPageComponent", - "Id": 909 + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "Rank": 4 }, { - "Command": "Move-PnPRecycleBinItem", - "Rank": 1, + "Id": 910, "CommandName": "Move-PnpRecycleBinItem", - "Id": 910 + "Command": "Move-PnPRecycleBinItem", + "Rank": 1 }, { - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Rank": 2, + "Id": 911, "CommandName": "Move-PnpRecycleBinItem", - "Id": 911 + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "Rank": 2 }, { - "Command": "Move-PnPRecycleBinItem -Force", - "Rank": 3, + "Id": 912, "CommandName": "Move-PnpRecycleBinItem", - "Id": 912 + "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", - "Rank": 1, + "Id": 913, "CommandName": "Move-PnPTerm", - "Id": 913 + "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\"", - "Rank": 2, + "Id": 914, "CommandName": "Move-PnPTerm", - "Id": 914 + "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", - "Rank": 3, + "Id": 915, "CommandName": "Move-PnPTerm", - "Id": 915 + "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", - "Rank": 1, + "Id": 916, "CommandName": "Move-PnPTermSet", - "Id": 916 + "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\"", - "Rank": 2, + "Id": 917, "CommandName": "Move-PnPTermSet", - "Id": 917 + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "Rank": 2 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, + "Id": 918, "CommandName": "New-PnPAzureADGroup", - "Id": 918 + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "Rank": 1 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Rank": 2, + "Id": 919, "CommandName": "New-PnPAzureADGroup", - "Id": 919 + "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", - "Rank": 3, + "Id": 920, "CommandName": "New-PnPAzureADGroup", - "Id": 920 + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "Rank": 3 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Rank": 1, + "Id": 921, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 921 + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "Rank": 1 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Rank": 2, + "Id": 922, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 922 + "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", - "Rank": 3, + "Id": 923, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 923 + "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", - "Rank": 1, + "Id": 924, "CommandName": "New-PnPAzureCertificate", - "Id": 924 + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "Rank": 1 }, { - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Rank": 2, + "Id": 925, "CommandName": "New-PnPAzureCertificate", - "Id": 925 + "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)", - "Rank": 3, + "Id": 926, "CommandName": "New-PnPAzureCertificate", - "Id": 926 + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "Rank": 3 }, { - "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, + "Id": 927, "CommandName": "New-PnPGraphSubscription", - "Id": 927 + "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()", - "Rank": 2, + "Id": 928, "CommandName": "New-PnPGraphSubscription", - "Id": 928 + "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\"", - "Rank": 1, + "Id": 929, "CommandName": "New-PnPGroup", - "Id": 929 + "Command": "New-PnPGroup -Title \"My Site Users\"", + "Rank": 1 }, { - "Command": "New-PnPList -Title Announcements -Template Announcements", - "Rank": 1, + "Id": 930, "CommandName": "New-PnPList", - "Id": 930 + "Command": "New-PnPList -Title Announcements -Template Announcements", + "Rank": 1 }, { - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Rank": 2, + "Id": 931, "CommandName": "New-PnPList", - "Id": 931 + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "Rank": 2 }, { - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Rank": 3, + "Id": 932, "CommandName": "New-PnPList", - "Id": 932 + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "Rank": 3 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, + "Id": 933, "CommandName": "New-PnPMicrosoft365Group", - "Id": 933 + "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\"", - "Rank": 2, + "Id": 934, "CommandName": "New-PnPMicrosoft365Group", - "Id": 934 + "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", - "Rank": 3, + "Id": 935, "CommandName": "New-PnPMicrosoft365Group", - "Id": 935 + "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", - "Rank": 4, + "Id": 936, "CommandName": "New-PnPMicrosoft365Group", - "Id": 936 + "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", - "Rank": 5, + "Id": 937, "CommandName": "New-PnPMicrosoft365Group", - "Id": 937 + "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\"", - "Rank": 6, + "Id": 938, "CommandName": "New-PnPMicrosoft365Group", - "Id": 938 + "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\"\")\"", - "Rank": 7, + "Id": 939, "CommandName": "New-PnPMicrosoft365Group", - "Id": 939 + "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\"}", - "Rank": 1, + "Id": 940, "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 940 + "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\"}", - "Rank": 2, + "Id": 941, "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 941 + "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')", - "Rank": 1, + "Id": 942, "CommandName": "New-PnPPersonalSite", - "Id": 942 + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "Rank": 1 }, { - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Rank": 1, + "Id": 943, "CommandName": "New-PnPPlannerPlan", - "Id": 943 + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "Rank": 1 }, { - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Rank": 1, + "Id": 944, "CommandName": "New-PnPSdnProvider", - "Id": 944 + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "Rank": 1 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 1, + "Id": 945, "CommandName": "New-PnPSite", - "Id": 945 + "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", - "Rank": 2, + "Id": 946, "CommandName": "New-PnPSite", - "Id": 946 + "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", - "Rank": 3, + "Id": 947, "CommandName": "New-PnPSite", - "Id": 947 + "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\"", - "Rank": 4, + "Id": 948, "CommandName": "New-PnPSite", - "Id": 948 + "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", - "Rank": 5, + "Id": 949, "CommandName": "New-PnPSite", - "Id": 949 + "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", - "Rank": 6, + "Id": 950, "CommandName": "New-PnPSite", - "Id": 950 + "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", - "Rank": 7, + "Id": 951, "CommandName": "New-PnPSite", - "Id": 951 + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "Rank": 7 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Rank": 8, + "Id": 952, "CommandName": "New-PnPSite", - "Id": 952 + "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", - "Rank": 9, + "Id": 953, "CommandName": "New-PnPSite", - "Id": 953 + "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", - "Rank": 10, + "Id": 954, "CommandName": "New-PnPSite", - "Id": 954 + "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", - "Rank": 11, + "Id": 955, "CommandName": "New-PnPSite", - "Id": 955 + "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", - "Rank": 12, + "Id": 956, "CommandName": "New-PnPSite", - "Id": 956 + "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\"", - "Rank": 13, + "Id": 957, "CommandName": "New-PnPSite", - "Id": 957 + "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", - "Rank": 14, + "Id": 958, "CommandName": "New-PnPSite", - "Id": 958 + "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", - "Rank": 15, + "Id": 959, "CommandName": "New-PnPSite", - "Id": 959 + "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\"", - "Rank": 16, + "Id": 960, "CommandName": "New-PnPSite", - "Id": 960 + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "Rank": 16 }, { - "Command": "New-PnPSiteCollectionTermStore", - "Rank": 1, + "Id": 961, "CommandName": "New-PnPSiteCollectionTermStore", - "Id": 961 + "Command": "New-PnPSiteCollectionTermStore", + "Rank": 1 }, { - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Rank": 1, + "Id": 962, "CommandName": "New-PnPSiteGroup", - "Id": 962 + "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\"", - "Rank": 2, + "Id": 963, "CommandName": "New-PnPSiteGroup", - "Id": 963 + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "Rank": 2 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Rank": 1, + "Id": 964, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 964 + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "Rank": 1 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Rank": 2, + "Id": 965, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 965 + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "Rank": 2 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Rank": 3, + "Id": 966, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 966 + "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\"", - "Rank": 4, + "Id": 967, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 967 + "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\"", - "Rank": 5, + "Id": 968, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 968 + "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\"}", - "Rank": 6, + "Id": 969, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 969 + "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", - "Rank": 7, + "Id": 970, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 970 + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "Rank": 7 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Rank": 8, + "Id": 971, "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 971 + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "Rank": 8 }, { - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Rank": 1, + "Id": 972, "CommandName": "New-PnPTeamsApp", - "Id": 972 + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "Rank": 1 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Rank": 1, + "Id": 973, "CommandName": "New-PnPTeamsTeam", - "Id": 973 + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "Rank": 1 }, { - "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Rank": 2, + "Id": 974, "CommandName": "New-PnPTeamsTeam", - "Id": 974 + "Command": "New-PnPTeamsTeam -GroupId $groupId", + "Rank": 2 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Rank": 3, + "Id": 975, "CommandName": "New-PnPTeamsTeam", - "Id": 975 + "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", - "Rank": 4, + "Id": 976, "CommandName": "New-PnPTeamsTeam", - "Id": 976 + "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\"", - "Rank": 5, + "Id": 977, "CommandName": "New-PnPTeamsTeam", - "Id": 977 + "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\"", - "Rank": 6, + "Id": 978, "CommandName": "New-PnPTeamsTeam", - "Id": 978 + "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", - "Rank": 1, + "Id": 979, "CommandName": "New-PnPTenantSite", - "Id": 979 + "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", - "Rank": 2, + "Id": 980, "CommandName": "New-PnPTenantSite", - "Id": 980 + "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\"", - "Rank": 1, + "Id": 981, "CommandName": "New-PnPTerm", - "Id": 981 + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "Rank": 1 }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2, + "Id": 982, "CommandName": "New-PnPTerm", - "Id": 982 + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 2 }, { - "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Rank": 1, + "Id": 983, "CommandName": "New-PnPTermGroup", - "Id": 983 + "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "Rank": 1 }, { - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Rank": 1, + "Id": 984, "CommandName": "New-PnPTermLabel", - "Id": 984 + "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\"", - "Rank": 1, + "Id": 985, "CommandName": "New-PnPTermSet", - "Id": 985 + "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\"}", - "Rank": 1, + "Id": 986, "CommandName": "New-PnPUPABulkImportJob", - "Id": 986 + "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", - "Rank": 2, + "Id": 987, "CommandName": "New-PnPUPABulkImportJob", - "Id": 987 + "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", - "Rank": 1, + "Id": 988, "CommandName": "New-PnPUser", - "Id": 988 + "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\"", - "Rank": 1, + "Id": 989, "CommandName": "New-PnPWeb", - "Id": 989 + "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", - "Rank": 1, + "Id": 990, "CommandName": "Publish-PnPApp", - "Id": 990 + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 1 }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Rank": 2, + "Id": 991, "CommandName": "Publish-PnPApp", - "Id": 991 + "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", - "Rank": 1, + "Id": 992, "CommandName": "Publish-PnPCompanyApp", - "Id": 992 + "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", - "Rank": 1, + "Id": 993, "CommandName": "Publish-PnPContentType", - "Id": 993 + "Command": "Publish-PnPContentType -ContentType 0x0101", + "Rank": 1 }, { - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, + "Id": 994, "CommandName": "Publish-PnPSyntexModel", - "Id": 994 + "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", - "Rank": 2, + "Id": 995, "CommandName": "Publish-PnPSyntexModel", - "Id": 995 + "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", - "Rank": 1, + "Id": 996, "CommandName": "Read-PnPSiteTemplate", - "Id": 996 + "Command": "Read-PnPSiteTemplate -Path template.pnp", + "Rank": 1 }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Rank": 2, + "Id": 997, "CommandName": "Read-PnPSiteTemplate", - "Id": 997 + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "Rank": 2 }, { - "Command": "Read-PnPSiteTemplate -Xml $xml", - "Rank": 3, + "Id": 998, "CommandName": "Read-PnPSiteTemplate", - "Id": 998 + "Command": "Read-PnPSiteTemplate -Xml $xml", + "Rank": 3 }, { - "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Rank": 1, + "Id": 999, "CommandName": "Read-PnPTenantTemplate", - "Id": 999 + "Command": "Read-PnPTenantTemplate -Path template.pnp", + "Rank": 1 }, { - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Rank": 1, + "Id": 1000, "CommandName": "Register-PnPAppCatalogSite", - "Id": 1000 + "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\")", - "Rank": 1, + "Id": 1001, "CommandName": "Register-PnPAzureADApp", - "Id": 1001 + "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\")", - "Rank": 2, + "Id": 1002, "CommandName": "Register-PnPAzureADApp", - "Id": 1002 + "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\")", - "Rank": 3, + "Id": 1003, "CommandName": "Register-PnPAzureADApp", - "Id": 1003 + "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\")", - "Rank": 4, + "Id": 1004, "CommandName": "Register-PnPAzureADApp", - "Id": 1004 + "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)", - "Rank": 5, + "Id": 1005, "CommandName": "Register-PnPAzureADApp", - "Id": 1005 + "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)", - "Rank": 6, + "Id": 1006, "CommandName": "Register-PnPAzureADApp", - "Id": 1006 + "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", - "Rank": 7, + "Id": 1007, "CommandName": "Register-PnPAzureADApp", - "Id": 1007 + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\") -LogoFilePath c:\\logo.png", + "Rank": 7 }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1, + "Id": 1008, "CommandName": "Register-PnPHubSite", - "Id": 1008 + "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\"", - "Rank": 2, + "Id": 1009, "CommandName": "Register-PnPHubSite", - "Id": 1009 + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "Rank": 2 }, { - "Command": "Register-PnPManagementShellAccess", - "Rank": 1, + "Id": 1010, "CommandName": "Register-PnPManagementShellAccess", - "Id": 1010 + "Command": "Register-PnPManagementShellAccess", + "Rank": 1 }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Rank": 2, + "Id": 1011, "CommandName": "Register-PnPManagementShellAccess", - "Id": 1011 + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "Rank": 2 }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Rank": 3, + "Id": 1012, "CommandName": "Register-PnPManagementShellAccess", - "Id": 1012 + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "Rank": 3 }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Rank": 1, + "Id": 1013, "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1013 + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "Rank": 1 }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Rank": 2, + "Id": 1014, "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1014 + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "Rank": 2 }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Rank": 1, + "Id": 1015, "CommandName": "Remove-PnPAlert", - "Id": 1015 + "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\"", - "Rank": 2, + "Id": 1016, "CommandName": "Remove-PnPAlert", - "Id": 1016 + "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", - "Rank": 1, + "Id": 1017, "CommandName": "Remove-PnPApp", - "Id": 1017 + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, + "Id": 1018, "CommandName": "Remove-PnPApp", - "Id": 1018 + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2 }, { - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, + "Id": 1019, "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1019 + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1 }, { - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, + "Id": 1020, "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1020 + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Rank": 2 }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Rank": 1, + "Id": 1021, "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1021 + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "Rank": 1 }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 2, + "Id": 1022, "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1022 + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Rank": 2 }, { - "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Rank": 1, + "Id": 1023, "CommandName": "Remove-PnPAzureADApp", - "Id": 1023 + "Command": "Remove-PnPAzureADApp -Identity MyApp", + "Rank": 1 }, { - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 2, + "Id": 1024, "CommandName": "Remove-PnPAzureADApp", - "Id": 1024 + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 2 }, { - "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Rank": 1, + "Id": 1025, "CommandName": "Remove-PnPAzureADGroup", - "Id": 1025 + "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "Rank": 1 }, { - "Command": "Remove-PnPAzureADGroup -Identity $group", - "Rank": 2, + "Id": 1026, "CommandName": "Remove-PnPAzureADGroup", - "Id": 1026 + "Command": "Remove-PnPAzureADGroup -Identity $group", + "Rank": 2 }, { - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, + "Id": 1027, "CommandName": "Remove-PnPAzureADGroupMember", - "Id": 1027 + "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\"", - "Rank": 1, + "Id": 1028, "CommandName": "Remove-PnPAzureADGroupOwner", - "Id": 1028 + "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\"", - "Rank": 1, + "Id": 1029, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1029 + "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\"", - "Rank": 2, + "Id": 1030, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1030 + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "Rank": 2 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 3, + "Id": 1031, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1031 + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 3 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 4, + "Id": 1032, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1032 + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 4 }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Rank": 1, + "Id": 1033, "CommandName": "Remove-PnPContentType", - "Id": 1033 + "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "Rank": 1 }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Rank": 2, + "Id": 1034, "CommandName": "Remove-PnPContentType", - "Id": 1034 + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1, + "Id": 1035, "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1035 + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Rank": 1 }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2, + "Id": 1036, "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1036 + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Rank": 2 }, { - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Rank": 1, + "Id": 1037, "CommandName": "Remove-PnPContentTypeFromList", - "Id": 1037 + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "Rank": 1 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, + "Id": 1038, "CommandName": "Remove-PnPCustomAction", - "Id": 1038 + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, + "Id": 1039, "CommandName": "Remove-PnPCustomAction", - "Id": 1039 + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Rank": 2 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Rank": 3, + "Id": 1040, "CommandName": "Remove-PnPCustomAction", - "Id": 1040 + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "Rank": 3 }, { - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, + "Id": 1041, "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Id": 1041 + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 1 }, { - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 1, + "Id": 1042, "CommandName": "Remove-PnPEventReceiver", - "Id": 1042 + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 1 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, + "Id": 1043, "CommandName": "Remove-PnPEventReceiver", - "Id": 1043 + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 2 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Rank": 3, + "Id": 1044, "CommandName": "Remove-PnPEventReceiver", - "Id": 1044 + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "Rank": 3 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList", - "Rank": 4, + "Id": 1045, "CommandName": "Remove-PnPEventReceiver", - "Id": 1045 + "Command": "Remove-PnPEventReceiver -List ProjectList", + "Rank": 4 }, { - "Command": "Remove-PnPEventReceiver", - "Rank": 5, + "Id": 1046, "CommandName": "Remove-PnPEventReceiver", - "Id": 1046 + "Command": "Remove-PnPEventReceiver", + "Rank": 5 }, { - "Command": "Remove-PnPEventReceiver -Scope Site", - "Rank": 6, + "Id": 1047, "CommandName": "Remove-PnPEventReceiver", - "Id": 1047 + "Command": "Remove-PnPEventReceiver -Scope Site", + "Rank": 6 }, { - "Command": "Remove-PnPEventReceiver -Scope Web", - "Rank": 7, + "Id": 1048, "CommandName": "Remove-PnPEventReceiver", - "Id": 1048 + "Command": "Remove-PnPEventReceiver -Scope Web", + "Rank": 7 }, { - "Command": "Remove-PnPEventReceiver -Scope All", - "Rank": 8, + "Id": 1049, "CommandName": "Remove-PnPEventReceiver", - "Id": 1049 + "Command": "Remove-PnPEventReceiver -Scope All", + "Rank": 8 }, { - "Command": "Remove-PnPField -Identity \"Speakers\"", - "Rank": 1, + "Id": 1050, "CommandName": "Remove-PnPField", - "Id": 1050 + "Command": "Remove-PnPField -Identity \"Speakers\"", + "Rank": 1 }, { - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, + "Id": 1051, "CommandName": "Remove-PnPField", - "Id": 1051 + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Rank": 2 }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1, + "Id": 1052, "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1052 + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Rank": 1 }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Rank": 2, + "Id": 1053, "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1053 + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "Rank": 2 }, { - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Rank": 1, + "Id": 1054, "CommandName": "Remove-PnPFile", - "Id": 1054 + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "Rank": 1 }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Rank": 2, + "Id": 1055, "CommandName": "Remove-PnPFile", - "Id": 1055 + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "Rank": 2 }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Rank": 3, + "Id": 1056, "CommandName": "Remove-PnPFile", - "Id": 1056 + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "Rank": 3 }, { - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Rank": 1, + "Id": 1057, "CommandName": "Remove-PnPFileFromSiteTemplate", - "Id": 1057 + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "Rank": 1 }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, + "Id": 1058, "CommandName": "Remove-PnPFileSharingLink", - "Id": 1058 + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1 }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Rank": 2, + "Id": 1059, "CommandName": "Remove-PnPFileSharingLink", - "Id": 1059 + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, + "Id": 1060, "CommandName": "Remove-PnPFileVersion", - "Id": 1060 + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Rank": 1 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 2, + "Id": 1061, "CommandName": "Remove-PnPFileVersion", - "Id": 1061 + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Rank": 2 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Rank": 3, + "Id": 1062, "CommandName": "Remove-PnPFileVersion", - "Id": 1062 + "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", - "Rank": 1, + "Id": 1063, "CommandName": "Remove-PnPFlowOwner", - "Id": 1063 + "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", - "Rank": 2, + "Id": 1064, "CommandName": "Remove-PnPFlowOwner", - "Id": 1064 + "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", - "Rank": 3, + "Id": 1065, "CommandName": "Remove-PnPFlowOwner", - "Id": 1065 + "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", - "Rank": 4, + "Id": 1066, "CommandName": "Remove-PnPFlowOwner", - "Id": 1066 + "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", - "Rank": 1, + "Id": 1067, "CommandName": "Remove-PnPFolder", - "Id": 1067 + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Rank": 1 }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Rank": 2, + "Id": 1068, "CommandName": "Remove-PnPFolder", - "Id": 1068 + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "Rank": 2 }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, + "Id": 1069, "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1069 + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1 }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Rank": 2, + "Id": 1070, "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1070 + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Rank": 1, + "Id": 1071, "CommandName": "Remove-PnPGraphSubscription", - "Id": 1071 + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "Rank": 1 }, { - "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Rank": 1, + "Id": 1072, "CommandName": "Remove-PnPGroup", - "Id": 1072 + "Command": "Remove-PnPGroup -Identity \"My Users\"", + "Rank": 1 }, { - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1, + "Id": 1073, "CommandName": "Remove-PnPGroupMember", - "Id": 1073 + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Rank": 1 }, { - "Command": "Remove-PnPHomeSite", - "Rank": 1, + "Id": 1074, "CommandName": "Remove-PnPHomeSite", - "Id": 1074 + "Command": "Remove-PnPHomeSite", + "Rank": 1 }, { - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, + "Id": 1075, "CommandName": "Remove-PnPHubSiteAssociation", - "Id": 1075 + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "Rank": 1 }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Rank": 1, + "Id": 1076, "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1076 + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "Rank": 1 }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Rank": 2, + "Id": 1077, "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1077 + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "Rank": 2 }, { - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Rank": 1, + "Id": 1078, "CommandName": "Remove-PnPIndexedProperty", - "Id": 1078 + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "Rank": 1 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Rank": 1, + "Id": 1079, "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1079 + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "Rank": 1 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Rank": 2, + "Id": 1080, "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1080 + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "Rank": 2 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Rank": 3, + "Id": 1081, "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1081 + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "Rank": 3 }, { - "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Rank": 4, + "Id": 1082, "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1082 + "Command": "Remove-PnPJavaScriptLink -Scope Site", + "Rank": 4 }, { - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Rank": 5, + "Id": 1083, "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1083 + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "Rank": 5 }, { - "Command": "Remove-PnPKnowledgeHubSite", - "Rank": 1, + "Id": 1084, "CommandName": "Remove-PnPKnowledgeHubSite", - "Id": 1084 + "Command": "Remove-PnPKnowledgeHubSite", + "Rank": 1 }, { - "Command": "Remove-PnPList -Identity Announcements", - "Rank": 1, + "Id": 1085, "CommandName": "Remove-PnPList", - "Id": 1085 + "Command": "Remove-PnPList -Identity Announcements", + "Rank": 1 }, { - "Command": "Remove-PnPList -Identity Announcements -Force", - "Rank": 2, + "Id": 1086, "CommandName": "Remove-PnPList", - "Id": 1086 + "Command": "Remove-PnPList -Identity Announcements -Force", + "Rank": 2 }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Rank": 3, + "Id": 1087, "CommandName": "Remove-PnPList", - "Id": 1087 + "Command": "Remove-PnPList -Identity Announcements -Recycle", + "Rank": 3 }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Rank": 4, + "Id": 1088, "CommandName": "Remove-PnPList", - "Id": 1088 + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "Rank": 4 }, { - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, + "Id": 1089, "CommandName": "Remove-PnPListDesign", - "Id": 1089 + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1 }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, + "Id": 1090, "CommandName": "Remove-PnPListItem", - "Id": 1090 + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "Rank": 1 }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Rank": 2, + "Id": 1091, "CommandName": "Remove-PnPListItem", - "Id": 1091 + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "Rank": 2 }, { - "Command": "Remove-PnPListItem -List \"Demo List\"", - "Rank": 3, + "Id": 1092, "CommandName": "Remove-PnPListItem", - "Id": 1092 + "Command": "Remove-PnPListItem -List \"Demo List\"", + "Rank": 3 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Rank": 1, + "Id": 1093, "CommandName": "Remove-PnPListItemAttachment", - "Id": 1093 + "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", - "Rank": 2, + "Id": 1094, "CommandName": "Remove-PnPListItemAttachment", - "Id": 1094 + "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", - "Rank": 3, + "Id": 1095, "CommandName": "Remove-PnPListItemAttachment", - "Id": 1095 + "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", - "Rank": 4, + "Id": 1096, "CommandName": "Remove-PnPListItemAttachment", - "Id": 1096 + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "Rank": 4 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Rank": 5, + "Id": 1097, "CommandName": "Remove-PnPListItemAttachment", - "Id": 1097 + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "Rank": 5 }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, + "Id": 1098, "CommandName": "Remove-PnPListItemVersion", - "Id": 1098 + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Rank": 1 }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, + "Id": 1099, "CommandName": "Remove-PnPListItemVersion", - "Id": 1099 + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Rank": 2 }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Rank": 1, + "Id": 1100, "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1100 + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "Rank": 1 }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Rank": 2, + "Id": 1101, "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1101 + "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "Rank": 2 }, { - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, + "Id": 1102, "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Id": 1102 + "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\"", - "Rank": 1, + "Id": 1103, "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Id": 1103 + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Rank": 1, + "Id": 1104, "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1104 + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "Rank": 1 }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Rank": 2, + "Id": 1105, "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1105 + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "Rank": 2 }, { - "Command": "Remove-PnPNavigationNode -Identity 1032", - "Rank": 1, + "Id": 1106, "CommandName": "Remove-PnPNavigationNode", - "Id": 1106 + "Command": "Remove-PnPNavigationNode -Identity 1032", + "Rank": 1 }, { - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Rank": 2, + "Id": 1107, "CommandName": "Remove-PnPNavigationNode", - "Id": 1107 + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "Rank": 2 }, { - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Rank": 3, + "Id": 1108, "CommandName": "Remove-PnPNavigationNode", - "Id": 1108 + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "Rank": 3 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Rank": 1, + "Id": 1109, "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1109 + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "Rank": 1 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Rank": 2, + "Id": 1110, "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1110 + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "Rank": 2 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Rank": 3, + "Id": 1111, "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1111 + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "Rank": 3 }, { - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, + "Id": 1112, "CommandName": "Remove-PnPOrgNewsSite", - "Id": 1112 + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "Rank": 1 }, { - "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Rank": 1, + "Id": 1113, "CommandName": "Remove-PnPPage", - "Id": 1113 + "Command": "Remove-PnPPage -Identity \"MyPage\"", + "Rank": 1 }, { - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Rank": 2, + "Id": 1114, "CommandName": "Remove-PnPPage", - "Id": 1114 + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "Rank": 2 }, { - "Command": "Remove-PnPPage $page", - "Rank": 3, + "Id": 1115, "CommandName": "Remove-PnPPage", - "Id": 1115 + "Command": "Remove-PnPPage $page", + "Rank": 3 }, { - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Rank": 4, + "Id": 1116, "CommandName": "Remove-PnPPage", - "Id": 1116 + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "Rank": 4 }, { - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, + "Id": 1117, "CommandName": "Remove-PnPPageComponent", - "Id": 1117 + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1 }, { - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Rank": 1, + "Id": 1118, "CommandName": "Remove-PnPPlannerBucket", - "Id": 1118 + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "Rank": 1 }, { - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Rank": 1, + "Id": 1119, "CommandName": "Remove-PnPPlannerPlan", - "Id": 1119 + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "Rank": 1 }, { - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, + "Id": 1120, "CommandName": "Remove-PnPPlannerRoster", - "Id": 1120 + "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\"", - "Rank": 1, + "Id": 1121, "CommandName": "Remove-PnPPlannerRosterMember", - "Id": 1121 + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Rank": 1, + "Id": 1122, "CommandName": "Remove-PnPPlannerTask", - "Id": 1122 + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "Rank": 1 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Rank": 1, + "Id": 1123, "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1123 + "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "Rank": 1 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Rank": 2, + "Id": 1124, "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1124 + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "Rank": 2 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Rank": 3, + "Id": 1125, "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1125 + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "Rank": 3 }, { - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1, + "Id": 1126, "CommandName": "Remove-PnPPublishingImageRendition", - "Id": 1126 + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Rank": 1 }, { - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Rank": 1, + "Id": 1127, "CommandName": "Remove-PnPRoleDefinition", - "Id": 1127 + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "Rank": 1 }, { - "Command": "Remove-PnPSdnProvider -Confirm:false", - "Rank": 1, + "Id": 1128, "CommandName": "Remove-PnPSdnProvider", - "Id": 1128 + "Command": "Remove-PnPSdnProvider -Confirm:false", + "Rank": 1 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Rank": 1, + "Id": 1129, "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1129 + "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "Rank": 1 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, + "Id": 1130, "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1130 + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "Rank": 2 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, + "Id": 1131, "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1131 + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Rank": 3 }, { - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, + "Id": 1132, "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1132 + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4 }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, + "Id": 1133, "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1133 + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, + "Id": 1134, "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1134 + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 2 }, { - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 1, + "Id": 1135, "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Id": 1135 + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Rank": 1 }, { - "Command": "Remove-PnPSiteCollectionTermStore", - "Rank": 1, + "Id": 1136, "CommandName": "Remove-PnPSiteCollectionTermStore", - "Id": 1136 + "Command": "Remove-PnPSiteCollectionTermStore", + "Rank": 1 }, { - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, + "Id": 1137, "CommandName": "Remove-PnPSiteDesign", - "Id": 1137 + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1 }, { - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, + "Id": 1138, "CommandName": "Remove-PnPSiteDesignTask", - "Id": 1138 + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1 }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, + "Id": 1139, "CommandName": "Remove-PnPSiteGroup", - "Id": 1139 + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1 }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Rank": 2, + "Id": 1140, "CommandName": "Remove-PnPSiteGroup", - "Id": 1140 + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "Rank": 2 }, { - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, + "Id": 1141, "CommandName": "Remove-PnPSiteScript", - "Id": 1141 + "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", - "Rank": 1, + "Id": 1142, "CommandName": "Remove-PnPSiteUserInvitations", - "Id": 1142 + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Rank": 1 }, { - "Command": "Remove-PnPStorageEntity -Key MyKey", - "Rank": 1, + "Id": 1143, "CommandName": "Remove-PnPStorageEntity", - "Id": 1143 + "Command": "Remove-PnPStorageEntity -Key MyKey", + "Rank": 1 }, { - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 2, + "Id": 1144, "CommandName": "Remove-PnPStorageEntity", - "Id": 1144 + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "Rank": 2 }, { - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Rank": 1, + "Id": 1145, "CommandName": "Remove-PnPStoredCredential", - "Id": 1145 + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "Rank": 1 }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Rank": 1, + "Id": 1146, "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1146 + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "Rank": 1 }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Rank": 2, + "Id": 1147, "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1147 + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Rank": 1, + "Id": 1148, "CommandName": "Remove-PnPTeamsApp", - "Id": 1148 + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "Rank": 1 }, { - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Rank": 2, + "Id": 1149, "CommandName": "Remove-PnPTeamsApp", - "Id": 1149 + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "Rank": 2 }, { - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Rank": 1, + "Id": 1150, "CommandName": "Remove-PnPTeamsChannel", - "Id": 1150 + "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==", - "Rank": 1, + "Id": 1151, "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1151 + "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", - "Rank": 2, + "Id": 1152, "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1152 + "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", - "Rank": 3, + "Id": 1153, "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1153 + "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", - "Rank": 1, + "Id": 1154, "CommandName": "Remove-PnPTeamsTab", - "Id": 1154 + "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", - "Rank": 2, + "Id": 1155, "CommandName": "Remove-PnPTeamsTab", - "Id": 1155 + "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", - "Rank": 3, + "Id": 1156, "CommandName": "Remove-PnPTeamsTab", - "Id": 1156 + "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==\"", - "Rank": 1, + "Id": 1157, "CommandName": "Remove-PnPTeamsTag", - "Id": 1157 + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Rank": 1 }, { - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, + "Id": 1158, "CommandName": "Remove-PnPTeamsTeam", - "Id": 1158 + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Rank": 1 }, { - "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Rank": 2, + "Id": 1159, "CommandName": "Remove-PnPTeamsTeam", - "Id": 1159 + "Command": "Remove-PnPTeamsTeam -Identity testteam", + "Rank": 2 }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Rank": 1, + "Id": 1160, "CommandName": "Remove-PnPTeamsUser", - "Id": 1160 + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "Rank": 1 }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 2, + "Id": 1161, "CommandName": "Remove-PnPTeamsUser", - "Id": 1161 + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 2 }, { - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1, + "Id": 1162, "CommandName": "Remove-PnPTenantCdnOrigin", - "Id": 1162 + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Rank": 1 }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, + "Id": 1163, "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1163 + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1 }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, + "Id": 1164, "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1164 + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, + "Id": 1165, "CommandName": "Remove-PnPTenantSite", - "Id": 1165 + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Rank": 2, + "Id": 1166, "CommandName": "Remove-PnPTenantSite", - "Id": 1166 + "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", - "Rank": 3, + "Id": 1167, "CommandName": "Remove-PnPTenantSite", - "Id": 1167 + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "Rank": 3 }, { - "Command": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1, + "Id": 1168, "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Id": 1168 + "Command": "Remove-PnPTenantSyncClientRestriction", + "Rank": 1 }, { - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 1, + "Id": 1169, "CommandName": "Remove-PnPTenantTheme", - "Id": 1169 + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Rank": 1 }, { - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, + "Id": 1170, "CommandName": "Remove-PnPTerm", - "Id": 1170 + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Rank": 1 }, { - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, + "Id": 1171, "CommandName": "Remove-PnPTerm", - "Id": 1171 + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2 }, { - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, + "Id": 1172, "CommandName": "Remove-PnPTermGroup", - "Id": 1172 + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Rank": 1 }, { - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Rank": 2, + "Id": 1173, "CommandName": "Remove-PnPTermGroup", - "Id": 1173 + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "Rank": 2 }, { - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Rank": 3, + "Id": 1174, "CommandName": "Remove-PnPTermGroup", - "Id": 1174 + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "Rank": 3 }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Rank": 1, + "Id": 1175, "CommandName": "Remove-PnPTermLabel", - "Id": 1175 + "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\"", - "Rank": 2, + "Id": 1176, "CommandName": "Remove-PnPTermLabel", - "Id": 1176 + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2 }, { - "Command": "Remove-PnPUser -Identity 23", - "Rank": 1, + "Id": 1177, "CommandName": "Remove-PnPUser", - "Id": 1177 + "Command": "Remove-PnPUser -Identity 23", + "Rank": 1 }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Rank": 2, + "Id": 1178, "CommandName": "Remove-PnPUser", - "Id": 1178 + "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", - "Rank": 3, + "Id": 1179, "CommandName": "Remove-PnPUser", - "Id": 1179 + "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\"", - "Rank": 1, + "Id": 1180, "CommandName": "Remove-PnPUserInfo", - "Id": 1180 + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Rank": 1 }, { - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Rank": 1, + "Id": 1181, "CommandName": "Remove-PnPUserProfile", - "Id": 1181 + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "Rank": 1 }, { - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Rank": 1, + "Id": 1182, "CommandName": "Remove-PnPView", - "Id": 1182 + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "Rank": 1 }, { - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 1, + "Id": 1183, "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Id": 1183 + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Rank": 1 }, { - "Command": "Remove-PnPWeb -Identity projectA", - "Rank": 1, + "Id": 1184, "CommandName": "Remove-PnPWeb", - "Id": 1184 + "Command": "Remove-PnPWeb -Identity projectA", + "Rank": 1 }, { - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Rank": 2, + "Id": 1185, "CommandName": "Remove-PnPWeb", - "Id": 1185 + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "Rank": 2 }, { - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Rank": 1, + "Id": 1186, "CommandName": "Remove-PnPWebhookSubscription", - "Id": 1186 + "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", - "Rank": 1, + "Id": 1187, "CommandName": "Remove-PnPWebPart", - "Id": 1187 + "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", - "Rank": 2, + "Id": 1188, "CommandName": "Remove-PnPWebPart", - "Id": 1188 + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "Rank": 2 }, { - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Rank": 1, + "Id": 1189, "CommandName": "Remove-PnPWikiPage", - "Id": 1189 + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "Rank": 1 }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Rank": 1, + "Id": 1190, "CommandName": "Rename-PnPFile", - "Id": 1190 + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "Rank": 1 }, { - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Rank": 2, + "Id": 1191, "CommandName": "Rename-PnPFile", - "Id": 1191 + "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", - "Rank": 3, + "Id": 1192, "CommandName": "Rename-PnPFile", - "Id": 1192 + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "Rank": 3 }, { - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Rank": 1, + "Id": 1193, "CommandName": "Rename-PnPFolder", - "Id": 1193 + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "Rank": 1 }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, + "Id": 1194, "CommandName": "Repair-PnPSite", - "Id": 1194 + "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\"", - "Rank": 2, + "Id": 1195, "CommandName": "Repair-PnPSite", - "Id": 1195 + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Rank": 2 }, { - "Command": "Request-PnPAccessToken", - "Rank": 1, + "Id": 1196, "CommandName": "Request-PnPAccessToken", - "Id": 1196 + "Command": "Request-PnPAccessToken", + "Rank": 1 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Rank": 2, + "Id": 1197, "CommandName": "Request-PnPAccessToken", - "Id": 1197 + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "Rank": 2 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Rank": 3, + "Id": 1198, "CommandName": "Request-PnPAccessToken", - "Id": 1198 + "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", - "Rank": 4, + "Id": 1199, "CommandName": "Request-PnPAccessToken", - "Id": 1199 + "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\")", - "Rank": 1, + "Id": 1200, "CommandName": "Request-PnPPersonalSite", - "Id": 1200 + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "Rank": 1 }, { - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Rank": 2, + "Id": 1201, "CommandName": "Request-PnPPersonalSite", - "Id": 1201 + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "Rank": 2 }, { - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Rank": 1, + "Id": 1202, "CommandName": "Request-PnPReIndexList", - "Id": 1202 + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "Rank": 1 }, { - "Command": "Request-PnPReIndexWeb", - "Rank": 1, + "Id": 1203, "CommandName": "Request-PnPReIndexWeb", - "Id": 1203 + "Command": "Request-PnPReIndexWeb", + "Rank": 1 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Rank": 1, + "Id": 1204, "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1204 + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "Rank": 1 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Rank": 2, + "Id": 1205, "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1205 + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "Rank": 2 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Rank": 3, + "Id": 1206, "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1206 + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "Rank": 3 }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Rank": 1, + "Id": 1207, "CommandName": "Reset-PnPFileVersion", - "Id": 1207 + "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\"", - "Rank": 2, + "Id": 1208, "CommandName": "Reset-PnPFileVersion", - "Id": 1208 + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "Rank": 2 }, { - "Command": "Reset-PnPLabel -List \"Demo List\"", - "Rank": 1, + "Id": 1209, "CommandName": "Reset-PnPLabel", - "Id": 1209 + "Command": "Reset-PnPLabel -List \"Demo List\"", + "Rank": 1 }, { - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Rank": 2, + "Id": 1210, "CommandName": "Reset-PnPLabel", - "Id": 1210 + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "Rank": 2 }, { - "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1, + "Id": 1211, "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1211 + "Command": "Reset-PnPMicrosoft365GroupExpiration", + "Rank": 1 }, { - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Rank": 1, + "Id": 1212, "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Id": 1212 + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "Rank": 1 }, { - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Rank": 1, + "Id": 1213, "CommandName": "Resolve-PnPFolder", - "Id": 1213 + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "Rank": 1 }, { - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, + "Id": 1214, "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Id": 1214 + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 1 }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, + "Id": 1215, "CommandName": "Restore-PnPFileVersion", - "Id": 1215 + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Rank": 1 }, { - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Rank": 2, + "Id": 1216, "CommandName": "Restore-PnPFileVersion", - "Id": 1216 + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "Rank": 2 }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 3, + "Id": 1217, "CommandName": "Restore-PnPFileVersion", - "Id": 1217 + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Rank": 3 }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, + "Id": 1218, "CommandName": "Restore-PnPListItemVersion", - "Id": 1218 + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Rank": 1 }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, + "Id": 1219, "CommandName": "Restore-PnPListItemVersion", - "Id": 1219 + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Rank": 2 }, { - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, + "Id": 1220, "CommandName": "Restore-PnPRecycleBinItem", - "Id": 1220 + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1 }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, + "Id": 1221, "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1221 + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1 }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2, + "Id": 1222, "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1222 + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Rank": 2 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, + "Id": 1223, "CommandName": "Restore-PnPTenantSite", - "Id": 1223 + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, + "Id": 1224, "CommandName": "Restore-PnPTenantSite", - "Id": 1224 + "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", - "Rank": 3, + "Id": 1225, "CommandName": "Restore-PnPTenantSite", - "Id": 1225 + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "Rank": 3 }, { - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Rank": 1, + "Id": 1226, "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Id": 1226 + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "Rank": 1 }, { - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, + "Id": 1227, "CommandName": "Revoke-PnPHubSiteRights", - "Id": 1227 + "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\"", - "Rank": 1, + "Id": 1228, "CommandName": "Revoke-PnPSiteDesignRights", - "Id": 1228 + "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\"", - "Rank": 1, + "Id": 1229, "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Id": 1229 + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Rank": 1 }, { - "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Rank": 1, + "Id": 1230, "CommandName": "Revoke-PnPUserSession", - "Id": 1230 + "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "Rank": 1 }, { - "Command": "Save-PnPPageConversionLog", - "Rank": 1, + "Id": 1231, "CommandName": "Save-PnPPageConversionLog", - "Id": 1231 + "Command": "Save-PnPPageConversionLog", + "Rank": 1 }, { - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Rank": 1, + "Id": 1232, "CommandName": "Save-PnPSiteTemplate", - "Id": 1232 + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "Rank": 1 }, { - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Rank": 1, + "Id": 1233, "CommandName": "Save-PnPTenantTemplate", - "Id": 1233 + "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\"", - "Rank": 1, + "Id": 1234, "CommandName": "Send-PnPMail", - "Id": 1234 + "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", - "Rank": 2, + "Id": 1235, "CommandName": "Send-PnPMail", - "Id": 1235 + "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\"", - "Rank": 3, + "Id": 1236, "CommandName": "Send-PnPMail", - "Id": 1236 + "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", - "Rank": 4, + "Id": 1237, "CommandName": "Send-PnPMail", - "Id": 1237 + "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", - "Rank": 5, + "Id": 1238, "CommandName": "Send-PnPMail", - "Id": 1238 + "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\"", - "Rank": 6, + "Id": 1239, "CommandName": "Send-PnPMail", - "Id": 1239 + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com -Port 587 -EnableSsl:$true -Username \"userxyz\" -Password \"password123\"", + "Rank": 6 }, { - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Rank": 1, + "Id": 1240, "CommandName": "Set-PnPAdaptiveScopeProperty", - "Id": 1240 + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "Rank": 1 }, { - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, + "Id": 1241, "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1241 + "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`\"}\"", - "Rank": 2, + "Id": 1242, "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1242 + "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", - "Rank": 1, + "Id": 1243, "CommandName": "Set-PnPAppSideLoading", - "Id": 1243 + "Command": "Set-PnPAppSideLoading -On", + "Rank": 1 }, { - "Command": "Set-PnPAppSideLoading -Off", - "Rank": 2, + "Id": 1244, "CommandName": "Set-PnPAppSideLoading", - "Id": 1244 + "Command": "Set-PnPAppSideLoading -Off", + "Rank": 2 }, { - "Command": "Set-PnPAuditing -EnableAll", - "Rank": 1, + "Id": 1245, "CommandName": "Set-PnPAuditing", - "Id": 1245 + "Command": "Set-PnPAuditing -EnableAll", + "Rank": 1 }, { - "Command": "Set-PnPAuditing -DisableAll", - "Rank": 2, + "Id": 1246, "CommandName": "Set-PnPAuditing", - "Id": 1246 + "Command": "Set-PnPAuditing -DisableAll", + "Rank": 2 }, { - "Command": "Set-PnPAuditing -RetentionTime 7", - "Rank": 3, + "Id": 1247, "CommandName": "Set-PnPAuditing", - "Id": 1247 + "Command": "Set-PnPAuditing -RetentionTime 7", + "Rank": 3 }, { - "Command": "Set-PnPAuditing -TrimAuditLog", - "Rank": 4, + "Id": 1248, "CommandName": "Set-PnPAuditing", - "Id": 1248 + "Command": "Set-PnPAuditing -TrimAuditLog", + "Rank": 4 }, { - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Rank": 5, + "Id": 1249, "CommandName": "Set-PnPAuditing", - "Id": 1249 + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "Rank": 5 }, { - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Rank": 1, + "Id": 1250, "CommandName": "Set-PnPAvailablePageLayouts", - "Id": 1250 + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "Rank": 1 }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Rank": 1, + "Id": 1251, "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1251 + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "Rank": 1 }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Rank": 2, + "Id": 1252, "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1252 + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "Rank": 2 }, { - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, + "Id": 1253, "CommandName": "Set-PnPAzureADGroup", - "Id": 1253 + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "Rank": 1 }, { - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, + "Id": 1254, "CommandName": "Set-PnPAzureADGroup", - "Id": 1254 + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Rank": 2 }, { - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Rank": 3, + "Id": 1255, "CommandName": "Set-PnPAzureADGroup", - "Id": 1255 + "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\"", - "Rank": 1, + "Id": 1256, "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1256 + "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)", - "Rank": 2, + "Id": 1257, "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1257 + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "Rank": 2 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Rank": 3, + "Id": 1258, "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1258 + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "Rank": 3 }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Rank": 1, + "Id": 1259, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1259 + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "Rank": 1 }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Rank": 2, + "Id": 1260, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1260 + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "Rank": 2 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Rank": 1, + "Id": 1261, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1261 + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "Rank": 1 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Rank": 2, + "Id": 1262, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1262 + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "Rank": 2 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Rank": 3, + "Id": 1263, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1263 + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "Rank": 3 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Rank": 4, + "Id": 1264, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1264 + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "Rank": 4 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 1, + "Id": 1265, "CommandName": "Set-PnPContentType", - "Id": 1265 + "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", - "Rank": 2, + "Id": 1266, "CommandName": "Set-PnPContentType", - "Id": 1266 + "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\"", - "Rank": 3, + "Id": 1267, "CommandName": "Set-PnPContentType", - "Id": 1267 + "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\" }'", - "Rank": 4, + "Id": 1268, "CommandName": "Set-PnPContentType", - "Id": 1268 + "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\" }'", - "Rank": 5, + "Id": 1269, "CommandName": "Set-PnPContentType", - "Id": 1269 + "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\"", - "Rank": 1, + "Id": 1270, "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1270 + "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\"", - "Rank": 2, + "Id": 1271, "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1271 + "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\"", - "Rank": 3, + "Id": 1272, "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1272 + "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\"", - "Rank": 4, + "Id": 1273, "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1273 + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "Rank": 4 }, { - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Rank": 1, + "Id": 1274, "CommandName": "Set-PnPDefaultContentTypeToList", - "Id": 1274 + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "Rank": 1 }, { - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Rank": 1, + "Id": 1275, "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1275 + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "Rank": 1 }, { - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Rank": 2, + "Id": 1276, "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1276 + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "Rank": 2 }, { - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Rank": 3, + "Id": 1277, "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1277 + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "Rank": 3 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Rank": 1, + "Id": 1278, "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1278 + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "Rank": 1 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 2, + "Id": 1279, "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1279 + "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\"", - "Rank": 3, + "Id": 1280, "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1280 + "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", - "Rank": 1, + "Id": 1281, "CommandName": "Set-PnPDocumentSetField", - "Id": 1281 + "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", - "Rank": 2, + "Id": 1282, "CommandName": "Set-PnPDocumentSetField", - "Id": 1282 + "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\"}", - "Rank": 1, + "Id": 1283, "CommandName": "Set-PnPField", - "Id": 1283 + "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", - "Rank": 2, + "Id": 1284, "CommandName": "Set-PnPField", - "Id": 1284 + "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\"}", - "Rank": 3, + "Id": 1285, "CommandName": "Set-PnPField", - "Id": 1285 + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "Rank": 3 }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Rank": 1, + "Id": 1286, "CommandName": "Set-PnPFileCheckedIn", - "Id": 1286 + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "Rank": 1 }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Rank": 2, + "Id": 1287, "CommandName": "Set-PnPFileCheckedIn", - "Id": 1287 + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "Rank": 2 }, { - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Rank": 1, + "Id": 1288, "CommandName": "Set-PnPFileCheckedOut", - "Id": 1288 + "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'", - "Rank": 1, + "Id": 1289, "CommandName": "Set-PnPFolderPermission", - "Id": 1289 + "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'", - "Rank": 2, + "Id": 1290, "CommandName": "Set-PnPFolderPermission", - "Id": 1290 + "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", - "Rank": 3, + "Id": 1291, "CommandName": "Set-PnPFolderPermission", - "Id": 1291 + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Rank": 3 }, { - "Command": "Set-PnPFooter -Enabled:$true", - "Rank": 1, + "Id": 1292, "CommandName": "Set-PnPFooter", - "Id": 1292 + "Command": "Set-PnPFooter -Enabled:$true", + "Rank": 1 }, { - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Rank": 2, + "Id": 1293, "CommandName": "Set-PnPFooter", - "Id": 1293 + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "Rank": 2 }, { - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Rank": 3, + "Id": 1294, "CommandName": "Set-PnPFooter", - "Id": 1294 + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "Rank": 3 }, { - "Command": "Set-PnPFooter -LogoUrl \"\"", - "Rank": 4, + "Id": 1295, "CommandName": "Set-PnPFooter", - "Id": 1295 + "Command": "Set-PnPFooter -LogoUrl \"\"", + "Rank": 4 }, { - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Rank": 1, + "Id": 1296, "CommandName": "Set-PnPGraphSubscription", - "Id": 1296 + "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", - "Rank": 1, + "Id": 1297, "CommandName": "Set-PnPGroup", - "Id": 1297 + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "Rank": 1 }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Rank": 2, + "Id": 1298, "CommandName": "Set-PnPGroup", - "Id": 1298 + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "Rank": 2 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Rank": 1, + "Id": 1299, "CommandName": "Set-PnPGroupPermissions", - "Id": 1299 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "Rank": 1 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Rank": 2, + "Id": 1300, "CommandName": "Set-PnPGroupPermissions", - "Id": 1300 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "Rank": 2 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Rank": 3, + "Id": 1301, "CommandName": "Set-PnPGroupPermissions", - "Id": 1301 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "Rank": 3 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Rank": 4, + "Id": 1302, "CommandName": "Set-PnPGroupPermissions", - "Id": 1302 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "Rank": 4 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Rank": 5, + "Id": 1303, "CommandName": "Set-PnPGroupPermissions", - "Id": 1303 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "Rank": 5 }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Rank": 1, + "Id": 1304, "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1304 + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "Rank": 1 }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Rank": 2, + "Id": 1305, "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1305 + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "Rank": 2 }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Rank": 1, + "Id": 1306, "CommandName": "Set-PnPHomePage", - "Id": 1306 + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "Rank": 1 }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Rank": 2, + "Id": 1307, "CommandName": "Set-PnPHomePage", - "Id": 1307 + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "Rank": 2 }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Rank": 1, + "Id": 1308, "CommandName": "Set-PnPHomeSite", - "Id": 1308 + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "Rank": 1 }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Rank": 2, + "Id": 1309, "CommandName": "Set-PnPHomeSite", - "Id": 1309 + "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\"", - "Rank": 1, + "Id": 1310, "CommandName": "Set-PnPHubSite", - "Id": 1310 + "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\"", - "Rank": 2, + "Id": 1311, "CommandName": "Set-PnPHubSite", - "Id": 1311 + "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", - "Rank": 3, + "Id": 1312, "CommandName": "Set-PnPHubSite", - "Id": 1312 + "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\"", - "Rank": 4, + "Id": 1313, "CommandName": "Set-PnPHubSite", - "Id": 1313 + "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", - "Rank": 5, + "Id": 1314, "CommandName": "Set-PnPHubSite", - "Id": 1314 + "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", - "Rank": 6, + "Id": 1315, "CommandName": "Set-PnPHubSite", - "Id": 1315 + "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\"", - "Rank": 1, + "Id": 1316, "CommandName": "Set-PnPImageListItemColumn", - "Id": 1316 + "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", - "Rank": 2, + "Id": 1317, "CommandName": "Set-PnPImageListItemColumn", - "Id": 1317 + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "Rank": 2 }, { - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Rank": 1, + "Id": 1318, "CommandName": "Set-PnPIndexedProperties", - "Id": 1318 + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "Rank": 1 }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Rank": 1, + "Id": 1319, "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1319 + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "Rank": 1 }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Rank": 2, + "Id": 1320, "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1320 + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "Rank": 2 }, { - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Rank": 1, + "Id": 1321, "CommandName": "Set-PnPKnowledgeHubSite", - "Id": 1321 + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "Rank": 1 }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Rank": 1, + "Id": 1322, "CommandName": "Set-PnPLabel", - "Id": 1322 + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "Rank": 1 }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Rank": 2, + "Id": 1323, "CommandName": "Set-PnPLabel", - "Id": 1323 + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "Rank": 2 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Rank": 1, + "Id": 1324, "CommandName": "Set-PnPList", - "Id": 1324 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "Rank": 1 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Rank": 2, + "Id": 1325, "CommandName": "Set-PnPList", - "Id": 1325 + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "Rank": 2 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Rank": 3, + "Id": 1326, "CommandName": "Set-PnPList", - "Id": 1326 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "Rank": 3 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Rank": 4, + "Id": 1327, "CommandName": "Set-PnPList", - "Id": 1327 + "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", - "Rank": 5, + "Id": 1328, "CommandName": "Set-PnPList", - "Id": 1328 + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "Rank": 5 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Rank": 6, + "Id": 1329, "CommandName": "Set-PnPList", - "Id": 1329 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "Rank": 6 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Rank": 7, + "Id": 1330, "CommandName": "Set-PnPList", - "Id": 1330 + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "Rank": 7 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Rank": 8, + "Id": 1331, "CommandName": "Set-PnPList", - "Id": 1331 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "Rank": 8 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Rank": 9, + "Id": 1332, "CommandName": "Set-PnPList", - "Id": 1332 + "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", - "Rank": 10, + "Id": 1333, "CommandName": "Set-PnPList", - "Id": 1333 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "Rank": 10 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Rank": 11, + "Id": 1334, "CommandName": "Set-PnPList", - "Id": 1334 + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "Rank": 11 }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Rank": 1, + "Id": 1335, "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1335 + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "Rank": 1 }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Rank": 2, + "Id": 1336, "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1336 + "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\"}", - "Rank": 1, + "Id": 1337, "CommandName": "Set-PnPListItem", - "Id": 1337 + "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\"}", - "Rank": 2, + "Id": 1338, "CommandName": "Set-PnPListItem", - "Id": 1338 + "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\"}", - "Rank": 3, + "Id": 1339, "CommandName": "Set-PnPListItem", - "Id": 1339 + "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\"", - "Rank": 4, + "Id": 1340, "CommandName": "Set-PnPListItem", - "Id": 1340 + "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", - "Rank": 5, + "Id": 1341, "CommandName": "Set-PnPListItem", - "Id": 1341 + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "Rank": 5 }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, + "Id": 1342, "CommandName": "Set-PnPListItemAsRecord", - "Id": 1342 + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1 }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Rank": 2, + "Id": 1343, "CommandName": "Set-PnPListItemAsRecord", - "Id": 1343 + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "Rank": 2 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, + "Id": 1344, "CommandName": "Set-PnPListItemPermission", - "Id": 1344 + "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'", - "Rank": 2, + "Id": 1345, "CommandName": "Set-PnPListItemPermission", - "Id": 1345 + "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", - "Rank": 3, + "Id": 1346, "CommandName": "Set-PnPListItemPermission", - "Id": 1346 + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Rank": 3 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Rank": 4, + "Id": 1347, "CommandName": "Set-PnPListItemPermission", - "Id": 1347 + "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\"", - "Rank": 5, + "Id": 1348, "CommandName": "Set-PnPListItemPermission", - "Id": 1348 + "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'", - "Rank": 1, + "Id": 1349, "CommandName": "Set-PnPListPermission", - "Id": 1349 + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1 }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, + "Id": 1350, "CommandName": "Set-PnPListPermission", - "Id": 1350 + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2 }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Rank": 1, + "Id": 1351, "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1351 + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "Rank": 1 }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Rank": 2, + "Id": 1352, "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1352 + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "Rank": 2 }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 1, + "Id": 1353, "CommandName": "Set-PnPMasterPage", - "Id": 1353 + "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", - "Rank": 2, + "Id": 1354, "CommandName": "Set-PnPMasterPage", - "Id": 1354 + "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", - "Rank": 3, + "Id": 1355, "CommandName": "Set-PnPMasterPage", - "Id": 1355 + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Rank": 3 }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 4, + "Id": 1356, "CommandName": "Set-PnPMasterPage", - "Id": 1356 + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Rank": 4 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Rank": 1, + "Id": 1357, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1357 + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, + "Id": 1358, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1358 + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3, + "Id": 1359, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1359 + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Rank": 1, + "Id": 1360, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1360 + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, + "Id": 1361, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1361 + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3, + "Id": 1362, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1362 + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Rank": 1, + "Id": 1363, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1363 + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, + "Id": 1364, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1364 + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3, + "Id": 1365, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1365 + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Rank": 1, + "Id": 1366, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1366 + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, + "Id": 1367, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1367 + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3, + "Id": 1368, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1368 + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Rank": 1, + "Id": 1369, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1369 + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, + "Id": 1370, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1370 + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3, + "Id": 1371, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1371 + "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Rank": 1, + "Id": 1372, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1372 + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, + "Id": 1373, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1373 + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3, + "Id": 1374, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1374 + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, + "Id": 1375, "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1375 + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "Rank": 1 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, + "Id": 1376, "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1376 + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Rank": 2 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Rank": 3, + "Id": 1377, "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1377 + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "Rank": 3 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Rank": 4, + "Id": 1378, "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1378 + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "Rank": 4 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Rank": 5, + "Id": 1379, "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1379 + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "Rank": 5 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6, + "Id": 1380, "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1380 + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Rank": 6 }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Rank": 1, + "Id": 1381, "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1381 + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "Rank": 1 }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Rank": 2, + "Id": 1382, "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1382 + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "Rank": 2 }, { - "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Rank": 1, + "Id": 1383, "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1383 + "Command": "Set-PnPMinimalDownloadStrategy -Off", + "Rank": 1 }, { - "Command": "Set-PnPMinimalDownloadStrategy -On", - "Rank": 2, + "Id": 1384, "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1384 + "Command": "Set-PnPMinimalDownloadStrategy -On", + "Rank": 2 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Rank": 1, + "Id": 1385, "CommandName": "Set-PnPPage", - "Id": 1385 + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "Rank": 1 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Rank": 2, + "Id": 1386, "CommandName": "Set-PnPPage", - "Id": 1386 + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "Rank": 2 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Rank": 3, + "Id": 1387, "CommandName": "Set-PnPPage", - "Id": 1387 + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "Rank": 3 }, { - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Rank": 4, + "Id": 1388, "CommandName": "Set-PnPPage", - "Id": 1388 + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "Rank": 4 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Rank": 5, + "Id": 1389, "CommandName": "Set-PnPPage", - "Id": 1389 + "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", - "Rank": 6, + "Id": 1390, "CommandName": "Set-PnPPage", - "Id": 1390 + "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)", - "Rank": 7, + "Id": 1391, "CommandName": "Set-PnPPage", - "Id": 1391 + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "Rank": 7 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "Rank": 8, + "Id": 1392, "CommandName": "Set-PnPPage", - "Id": 1392 + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "Rank": 8 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, + "Id": 1393, "CommandName": "Set-PnPPage", - "Id": 1393 + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "Rank": 9 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, + "Id": 1394, "CommandName": "Set-PnPPage", - "Id": 1394 + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Rank": 10 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "Rank": 11, + "Id": 1395, "CommandName": "Set-PnPPage", - "Id": 1395 + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "Rank": 11 }, { - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Rank": 1, + "Id": 1396, "CommandName": "Set-PnPPageTextPart", - "Id": 1396 + "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`\"\"", - "Rank": 1, + "Id": 1397, "CommandName": "Set-PnPPageWebPart", - "Id": 1397 + "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", - "Rank": 2, + "Id": 1398, "CommandName": "Set-PnPPageWebPart", - "Id": 1398 + "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\"", - "Rank": 1, + "Id": 1399, "CommandName": "Set-PnPPlannerBucket", - "Id": 1399 + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "Rank": 1 }, { - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Rank": 1, + "Id": 1400, "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1400 + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Rank": 1 }, { - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Rank": 2, + "Id": 1401, "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1401 + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "Rank": 2 }, { - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Rank": 1, + "Id": 1402, "CommandName": "Set-PnPPlannerPlan", - "Id": 1402 + "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", - "Rank": 1, + "Id": 1403, "CommandName": "Set-PnPPlannerTask", - "Id": 1403 + "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\"", - "Rank": 2, + "Id": 1404, "CommandName": "Set-PnPPlannerTask", - "Id": 1404 + "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\"", - "Rank": 3, + "Id": 1405, "CommandName": "Set-PnPPlannerTask", - "Id": 1405 + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Rank": 3 }, { - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, + "Id": 1406, "CommandName": "Set-PnPPlannerUserPolicy", - "Id": 1406 + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Rank": 1, + "Id": 1407, "CommandName": "Set-PnPPropertyBagValue", - "Id": 1407 + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "Rank": 1 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Rank": 2, + "Id": 1408, "CommandName": "Set-PnPPropertyBagValue", - "Id": 1408 + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "Rank": 2 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Rank": 3, + "Id": 1409, "CommandName": "Set-PnPPropertyBagValue", - "Id": 1409 + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "Rank": 3 }, { - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Rank": 1, + "Id": 1410, "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1410 + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "Rank": 1 }, { - "Command": "Set-PnPRequestAccessEmails -Disabled", - "Rank": 2, + "Id": 1411, "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1411 + "Command": "Set-PnPRequestAccessEmails -Disabled", + "Rank": 2 }, { - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Rank": 3, + "Id": 1412, "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1412 + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "Rank": 3 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Rank": 1, + "Id": 1413, "CommandName": "Set-PnPRoleDefinition", - "Id": 1413 + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "Rank": 1 }, { - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Rank": 2, + "Id": 1414, "CommandName": "Set-PnPRoleDefinition", - "Id": 1414 + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "Rank": 2 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Rank": 3, + "Id": 1415, "CommandName": "Set-PnPRoleDefinition", - "Id": 1415 + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "Rank": 3 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Rank": 4, + "Id": 1416, "CommandName": "Set-PnPRoleDefinition", - "Id": 1416 + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "Rank": 4 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Rank": 1, + "Id": 1417, "CommandName": "Set-PnPSearchConfiguration", - "Id": 1417 + "Command": "Set-PnPSearchConfiguration -Configuration $config", + "Rank": 1 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, + "Id": 1418, "CommandName": "Set-PnPSearchConfiguration", - "Id": 1418 + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "Rank": 2 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, + "Id": 1419, "CommandName": "Set-PnPSearchConfiguration", - "Id": 1419 + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Rank": 3 }, { - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, + "Id": 1420, "CommandName": "Set-PnPSearchConfiguration", - "Id": 1420 + "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", - "Rank": 1, + "Id": 1421, "CommandName": "Set-PnPSearchExternalItem", - "Id": 1421 + "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\"", - "Rank": 2, + "Id": 1422, "CommandName": "Set-PnPSearchExternalItem", - "Id": 1422 + "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", - "Rank": 1, + "Id": 1423, "CommandName": "Set-PnPSearchSettings", - "Id": 1423 + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Rank": 1 }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Rank": 2, + "Id": 1424, "CommandName": "Set-PnPSearchSettings", - "Id": 1424 + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "Rank": 2 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Rank": 3, + "Id": 1425, "CommandName": "Set-PnPSearchSettings", - "Id": 1425 + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "Rank": 3 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Rank": 4, + "Id": 1426, "CommandName": "Set-PnPSearchSettings", - "Id": 1426 + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "Rank": 4 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Rank": 5, + "Id": 1427, "CommandName": "Set-PnPSearchSettings", - "Id": 1427 + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "Rank": 5 }, { - "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Rank": 6, + "Id": 1428, "CommandName": "Set-PnPSearchSettings", - "Id": 1428 + "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "Rank": 6 }, { - "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Rank": 7, + "Id": 1429, "CommandName": "Set-PnPSearchSettings", - "Id": 1429 + "Command": "Set-PnPSearchSettings -SearchScope Hub", + "Rank": 7 }, { - "Command": "Set-PnPSite -Classification \"HBI\"", - "Rank": 1, + "Id": 1430, "CommandName": "Set-PnPSite", - "Id": 1430 + "Command": "Set-PnPSite -Classification \"HBI\"", + "Rank": 1 }, { - "Command": "Set-PnPSite -Classification $null", - "Rank": 2, + "Id": 1431, "CommandName": "Set-PnPSite", - "Id": 1431 + "Command": "Set-PnPSite -Classification $null", + "Rank": 2 }, { - "Command": "Set-PnPSite -DisableFlows", - "Rank": 3, + "Id": 1432, "CommandName": "Set-PnPSite", - "Id": 1432 + "Command": "Set-PnPSite -DisableFlows", + "Rank": 3 }, { - "Command": "Set-PnPSite -DisableFlows:$false", - "Rank": 4, + "Id": 1433, "CommandName": "Set-PnPSite", - "Id": 1433 + "Command": "Set-PnPSite -DisableFlows:$false", + "Rank": 4 }, { - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Rank": 5, + "Id": 1434, "CommandName": "Set-PnPSite", - "Id": 1434 + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "Rank": 5 }, { - "Command": "Set-PnPSite -NoScriptSite $false", - "Rank": 6, + "Id": 1435, "CommandName": "Set-PnPSite", - "Id": 1435 + "Command": "Set-PnPSite -NoScriptSite $false", + "Rank": 6 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "Rank": 7, + "Id": 1436, "CommandName": "Set-PnPSite", - "Id": 1436 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "Rank": 7 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "Rank": 8, + "Id": 1437, "CommandName": "Set-PnPSite", - "Id": 1437 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "Rank": 8 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "Rank": 9, + "Id": 1438, "CommandName": "Set-PnPSite", - "Id": 1438 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "Rank": 9 }, { - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "Rank": 10, + "Id": 1439, "CommandName": "Set-PnPSite", - "Id": 1439 + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "Rank": 10 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "Rank": 11, + "Id": 1440, "CommandName": "Set-PnPSite", - "Id": 1440 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "Rank": 11 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "Rank": 12, + "Id": 1441, "CommandName": "Set-PnPSite", - "Id": 1441 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "Rank": 12 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "Rank": 13, + "Id": 1442, "CommandName": "Set-PnPSite", - "Id": 1442 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "Rank": 13 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "Rank": 14, + "Id": 1443, "CommandName": "Set-PnPSite", - "Id": 1443 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "Rank": 14 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "Rank": 15, + "Id": 1444, "CommandName": "Set-PnPSite", - "Id": 1444 + "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", - "Rank": 16, + "Id": 1445, "CommandName": "Set-PnPSite", - "Id": 1445 + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "Rank": 16 }, { - "Command": "Set-PnPSite -CancelVPForExistingLibs", - "Rank": 17, + "Id": 1446, "CommandName": "Set-PnPSite", - "Id": 1446 + "Command": "Set-PnPSite -CancelVPForExistingLibs", + "Rank": 17 }, { - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Rank": 1, + "Id": 1447, "CommandName": "Set-PnPSiteClassification", - "Id": 1447 + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteClosure -State Open", - "Rank": 1, + "Id": 1448, "CommandName": "Set-PnPSiteClosure", - "Id": 1448 + "Command": "Set-PnPSiteClosure -State Open", + "Rank": 1 }, { - "Command": "Set-PnPSiteClosure -State Closed", - "Rank": 2, + "Id": 1449, "CommandName": "Set-PnPSiteClosure", - "Id": 1449 + "Command": "Set-PnPSiteClosure -State Closed", + "Rank": 2 }, { - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Rank": 1, + "Id": 1450, "CommandName": "Set-PnPSiteDesign", - "Id": 1450 + "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\"", - "Rank": 2, + "Id": 1451, "CommandName": "Set-PnPSiteDesign", - "Id": 1451 + "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\"", - "Rank": 1, + "Id": 1452, "CommandName": "Set-PnPSiteGroup", - "Id": 1452 + "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", - "Rank": 2, + "Id": 1453, "CommandName": "Set-PnPSiteGroup", - "Id": 1453 + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "Rank": 2 }, { - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 1, + "Id": 1454, "CommandName": "Set-PnPSitePolicy", - "Id": 1454 + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1, + "Id": 1455, "CommandName": "Set-PnPSiteScript", - "Id": 1455 + "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\"", - "Rank": 1, + "Id": 1456, "CommandName": "Set-PnPSiteScriptPackage", - "Id": 1456 + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Rank": 1, + "Id": 1457, "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1457 + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Rank": 2, + "Id": 1458, "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1458 + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "Rank": 2 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 1, + "Id": 1459, "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1459 + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 2, + "Id": 1460, "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1460 + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "Rank": 2 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 3, + "Id": 1461, "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1461 + "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\"", - "Rank": 4, + "Id": 1462, "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1462 + "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\"}", - "Rank": 5, + "Id": 1463, "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1463 + "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\"}", - "Rank": 6, + "Id": 1464, "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1464 + "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\"", - "Rank": 1, + "Id": 1465, "CommandName": "Set-PnPStorageEntity", - "Id": 1465 + "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\"", - "Rank": 2, + "Id": 1466, "CommandName": "Set-PnPStorageEntity", - "Id": 1466 + "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/\"", - "Rank": 1, + "Id": 1467, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1467 + "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/\"", - "Rank": 2, + "Id": 1468, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1468 + "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\"", - "Rank": 1, + "Id": 1469, "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1469 + "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\"", - "Rank": 2, + "Id": 1470, "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1470 + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 2 }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Rank": 1, + "Id": 1471, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1471 + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "Rank": 1 }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Rank": 2, + "Id": 1472, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1472 + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "Rank": 2 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Rank": 1, + "Id": 1473, "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1473 + "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'", - "Rank": 2, + "Id": 1474, "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1474 + "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\"}", - "Rank": 3, + "Id": 1475, "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1475 + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "Rank": 3 }, { - "Command": "Set-PnPTeamifyPromptHidden", - "Rank": 1, + "Id": 1476, "CommandName": "Set-PnPTeamifyPromptHidden", - "Id": 1476 + "Command": "Set-PnPTeamifyPromptHidden", + "Rank": 1 }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Rank": 1, + "Id": 1477, "CommandName": "Set-PnPTeamsChannel", - "Id": 1477 + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "Rank": 1 }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Rank": 2, + "Id": 1478, "CommandName": "Set-PnPTeamsChannel", - "Id": 1478 + "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", - "Rank": 1, + "Id": 1479, "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1479 + "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", - "Rank": 2, + "Id": 1480, "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1480 + "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\"", - "Rank": 1, + "Id": 1481, "CommandName": "Set-PnPTeamsTab", - "Id": 1481 + "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\"", - "Rank": 1, + "Id": 1482, "CommandName": "Set-PnPTeamsTag", - "Id": 1482 + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "Rank": 1 }, { - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Rank": 1, + "Id": 1483, "CommandName": "Set-PnPTeamsTeam", - "Id": 1483 + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "Rank": 1 }, { - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Rank": 2, + "Id": 1484, "CommandName": "Set-PnPTeamsTeam", - "Id": 1484 + "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", - "Rank": 3, + "Id": 1485, "CommandName": "Set-PnPTeamsTeam", - "Id": 1485 + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "Rank": 3 }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Rank": 4, + "Id": 1486, "CommandName": "Set-PnPTeamsTeam", - "Id": 1486 + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "Rank": 4 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Rank": 1, + "Id": 1487, "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1487 + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "Rank": 1 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Rank": 2, + "Id": 1488, "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1488 + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "Rank": 2 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Rank": 3, + "Id": 1489, "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1489 + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "Rank": 3 }, { - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Rank": 1, + "Id": 1490, "CommandName": "Set-PnPTeamsTeamPicture", - "Id": 1490 + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "Rank": 1 }, { - "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Rank": 1, + "Id": 1491, "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1491 + "Command": "Set-PnPTemporarilyDisableAppBar $true", + "Rank": 1 }, { - "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Rank": 2, + "Id": 1492, "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1492 + "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\"", - "Rank": 1, + "Id": 1493, "CommandName": "Set-PnPTenant", - "Id": 1493 + "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", - "Rank": 2, + "Id": 1494, "CommandName": "Set-PnPTenant", - "Id": 1494 + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "Rank": 2 }, { - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Rank": 3, + "Id": 1495, "CommandName": "Set-PnPTenant", - "Id": 1495 + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "Rank": 3 }, { - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Rank": 4, + "Id": 1496, "CommandName": "Set-PnPTenant", - "Id": 1496 + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "Rank": 4 }, { - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Rank": 1, + "Id": 1497, "CommandName": "Set-PnPTenantAppCatalogUrl", - "Id": 1497 + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "Rank": 1 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Rank": 1, + "Id": 1498, "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1498 + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "Rank": 1 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Rank": 2, + "Id": 1499, "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1499 + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "Rank": 2 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Rank": 3, + "Id": 1500, "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1500 + "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\"", - "Rank": 1, + "Id": 1501, "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1501 + "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\"", - "Rank": 2, + "Id": 1502, "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1502 + "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", - "Rank": 1, + "Id": 1503, "CommandName": "Set-PnPTenantSite", - "Id": 1503 + "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", - "Rank": 2, + "Id": 1504, "CommandName": "Set-PnPTenantSite", - "Id": 1504 + "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\"", - "Rank": 3, + "Id": 1505, "CommandName": "Set-PnPTenantSite", - "Id": 1505 + "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\")", - "Rank": 4, + "Id": 1506, "CommandName": "Set-PnPTenantSite", - "Id": 1506 + "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", - "Rank": 5, + "Id": 1507, "CommandName": "Set-PnPTenantSite", - "Id": 1507 + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "Rank": 5 }, { - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Rank": 1, + "Id": 1508, "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1508 + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "Rank": 1 }, { - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Rank": 2, + "Id": 1509, "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1509 + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "Rank": 2 }, { - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Rank": 1, + "Id": 1510, "CommandName": "Set-PnPTerm", - "Id": 1510 + "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\"}", - "Rank": 2, + "Id": 1511, "CommandName": "Set-PnPTerm", - "Id": 1511 + "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\"}", - "Rank": 3, + "Id": 1512, "CommandName": "Set-PnPTerm", - "Id": 1512 + "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", - "Rank": 4, + "Id": 1513, "CommandName": "Set-PnPTerm", - "Id": 1513 + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "Rank": 4 }, { - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Rank": 1, + "Id": 1514, "CommandName": "Set-PnPTermGroup", - "Id": 1514 + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "Rank": 1 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Rank": 1, + "Id": 1515, "CommandName": "Set-PnPTermSet", - "Id": 1515 + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "Rank": 1 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Rank": 2, + "Id": 1516, "CommandName": "Set-PnPTermSet", - "Id": 1516 + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "Rank": 2 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Rank": 3, + "Id": 1517, "CommandName": "Set-PnPTermSet", - "Id": 1517 + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "Rank": 3 }, { - "Command": "Set-PnPTheme", - "Rank": 1, + "Id": 1518, "CommandName": "Set-PnPTheme", - "Id": 1518 + "Command": "Set-PnPTheme", + "Rank": 1 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Rank": 2, + "Id": 1519, "CommandName": "Set-PnPTheme", - "Id": 1519 + "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'", - "Rank": 3, + "Id": 1520, "CommandName": "Set-PnPTheme", - "Id": 1520 + "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", - "Rank": 4, + "Id": 1521, "CommandName": "Set-PnPTheme", - "Id": 1521 + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "Rank": 4 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Rank": 1, + "Id": 1522, "CommandName": "Set-PnPTraceLog", - "Id": 1522 + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "Rank": 1 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Rank": 2, + "Id": 1523, "CommandName": "Set-PnPTraceLog", - "Id": 1523 + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "Rank": 2 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Rank": 3, + "Id": 1524, "CommandName": "Set-PnPTraceLog", - "Id": 1524 + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "Rank": 3 }, { - "Command": "Set-PnPTraceLog -Off", - "Rank": 4, + "Id": 1525, "CommandName": "Set-PnPTraceLog", - "Id": 1525 + "Command": "Set-PnPTraceLog -Off", + "Rank": 4 }, { - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Rank": 1, + "Id": 1526, "CommandName": "Set-PnPUserOneDriveQuota", - "Id": 1526 + "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'", - "Rank": 1, + "Id": 1527, "CommandName": "Set-PnPUserProfileProperty", - "Id": 1527 + "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'", - "Rank": 2, + "Id": 1528, "CommandName": "Set-PnPUserProfileProperty", - "Id": 1528 + "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\"}", - "Rank": 1, + "Id": 1529, "CommandName": "Set-PnPView", - "Id": 1529 + "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\"", - "Rank": 2, + "Id": 1530, "CommandName": "Set-PnPView", - "Id": 1530 + "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 \"\"", - "Rank": 3, + "Id": 1531, "CommandName": "Set-PnPView", - "Id": 1531 + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "Rank": 3 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Rank": 4, + "Id": 1532, "CommandName": "Set-PnPView", - "Id": 1532 + "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", - "Rank": 1, + "Id": 1533, "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1533 + "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\"", - "Rank": 2, + "Id": 1534, "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1534 + "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", - "Rank": 3, + "Id": 1535, "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1535 + "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", - "Rank": 4, + "Id": 1536, "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1536 + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "Rank": 4 }, { - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Rank": 1, + "Id": 1537, "CommandName": "Set-PnPWeb", - "Id": 1537 + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "Rank": 1 }, { - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Rank": 2, + "Id": 1538, "CommandName": "Set-PnPWeb", - "Id": 1538 + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "Rank": 2 }, { - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Rank": 3, + "Id": 1539, "CommandName": "Set-PnPWeb", - "Id": 1539 + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "Rank": 3 }, { - "Command": "Set-PnPWeb -NoCrawl:$true", - "Rank": 4, + "Id": 1540, "CommandName": "Set-PnPWeb", - "Id": 1540 + "Command": "Set-PnPWeb -NoCrawl:$true", + "Rank": 4 }, { - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Rank": 1, + "Id": 1541, "CommandName": "Set-PnPWebHeader", - "Id": 1541 + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "Rank": 1 }, { - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Rank": 2, + "Id": 1542, "CommandName": "Set-PnPWebHeader", - "Id": 1542 + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "Rank": 2 }, { - "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Rank": 3, + "Id": 1543, "CommandName": "Set-PnPWebHeader", - "Id": 1543 + "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", - "Rank": 1, + "Id": 1544, "CommandName": "Set-PnPWebhookSubscription", - "Id": 1544 + "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\"", - "Rank": 2, + "Id": 1545, "CommandName": "Set-PnPWebhookSubscription", - "Id": 1545 + "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\"", - "Rank": 1, + "Id": 1546, "CommandName": "Set-PnPWebPartProperty", - "Id": 1546 + "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\"", - "Rank": 1, + "Id": 1547, "CommandName": "Set-PnPWebPermission", - "Id": 1547 + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Rank": 1 }, { - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Rank": 2, + "Id": 1548, "CommandName": "Set-PnPWebPermission", - "Id": 1548 + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "Rank": 2 }, { - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 3, + "Id": 1549, "CommandName": "Set-PnPWebPermission", - "Id": 1549 + "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\"", - "Rank": 4, + "Id": 1550, "CommandName": "Set-PnPWebPermission", - "Id": 1550 + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "Rank": 4 }, { - "Command": "Set-PnPWebTheme -Theme MyTheme", - "Rank": 1, + "Id": 1551, "CommandName": "Set-PnPWebTheme", - "Id": 1551 + "Command": "Set-PnPWebTheme -Theme MyTheme", + "Rank": 1 }, { - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Rank": 2, + "Id": 1552, "CommandName": "Set-PnPWebTheme", - "Id": 1552 + "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", - "Rank": 1, + "Id": 1553, "CommandName": "Set-PnPWikiPageContent", - "Id": 1553 + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "Rank": 1 }, { - "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Rank": 1, + "Id": 1554, "CommandName": "Submit-PnPSearchQuery", - "Id": 1554 + "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "Rank": 1 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Rank": 2, + "Id": 1555, "CommandName": "Submit-PnPSearchQuery", - "Id": 1555 + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "Rank": 2 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Rank": 3, + "Id": 1556, "CommandName": "Submit-PnPSearchQuery", - "Id": 1556 + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "Rank": 3 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Rank": 4, + "Id": 1557, "CommandName": "Submit-PnPSearchQuery", - "Id": 1557 + "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", - "Rank": 5, + "Id": 1558, "CommandName": "Submit-PnPSearchQuery", - "Id": 1558 + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "Rank": 5 }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Rank": 1, + "Id": 1559, "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1559 + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "Rank": 1 }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Rank": 2, + "Id": 1560, "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1560 + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "Rank": 2 }, { - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, + "Id": 1561, "CommandName": "Sync-PnPAppToTeams", - "Id": 1561 + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Rank": 1, + "Id": 1562, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1562 + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "Rank": 1 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Rank": 2, + "Id": 1563, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1563 + "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", - "Rank": 3, + "Id": 1564, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1564 + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "Rank": 3 }, { - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Rank": 1, + "Id": 1565, "CommandName": "Test-PnPListItemIsRecord", - "Id": 1565 + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "Rank": 1 }, { - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Rank": 1, + "Id": 1566, "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Id": 1566 + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "Rank": 1 }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, + "Id": 1567, "CommandName": "Test-PnPSite", - "Id": 1567 + "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\"", - "Rank": 2, + "Id": 1568, "CommandName": "Test-PnPSite", - "Id": 1568 + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Rank": 2 }, { - "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Rank": 1, + "Id": 1569, "CommandName": "Test-PnPTenantTemplate", - "Id": 1569 + "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "Rank": 1 }, { - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Rank": 1, + "Id": 1570, "CommandName": "Undo-PnPFileCheckedOut", - "Id": 1570 + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "Rank": 1 }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, + "Id": 1571, "CommandName": "Uninstall-PnPApp", - "Id": 1571 + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, + "Id": 1572, "CommandName": "Uninstall-PnPApp", - "Id": 1572 + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2 }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, + "Id": 1573, "CommandName": "Unpublish-PnPApp", - "Id": 1573 + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, + "Id": 1574, "CommandName": "Unpublish-PnPApp", - "Id": 1574 + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2 }, { - "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Rank": 1, + "Id": 1575, "CommandName": "Unpublish-PnPContentType", - "Id": 1575 + "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "Rank": 1 }, { - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, + "Id": 1576, "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1576 + "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", - "Rank": 2, + "Id": 1577, "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1577 + "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\"", - "Rank": 1, + "Id": 1578, "CommandName": "Unregister-PnPHubSite", - "Id": 1578 + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Rank": 1 }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, + "Id": 1579, "CommandName": "Update-PnPApp", - "Id": 1579 + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, + "Id": 1580, "CommandName": "Update-PnPApp", - "Id": 1580 + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2 }, { - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 1, + "Id": 1581, "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1581 + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Rank": 1 }, { - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Rank": 2, + "Id": 1582, "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1582 + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "Rank": 2 }, { - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 3, + "Id": 1583, "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1583 + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 3 }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Rank": 1, + "Id": 1584, "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1584 + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "Rank": 1 }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2, + "Id": 1585, "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1585 + "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\"", - "Rank": 3, + "Id": 1586, "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1586 + "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", - "Rank": 1, + "Id": 1587, "CommandName": "Update-PnPTeamsApp", - "Id": 1587 + "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", - "Rank": 1, + "Id": 1588, "CommandName": "Update-PnPTeamsUser", - "Id": 1588 + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 1 }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2, + "Id": 1589, "CommandName": "Update-PnPTeamsUser", - "Id": 1589 + "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", - "Rank": 3, + "Id": 1590, "CommandName": "Update-PnPTeamsUser", - "Id": 1590 + "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", - "Rank": 1, + "Id": 1591, "CommandName": "Update-PnPUserType", - "Id": 1591 + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "Rank": 1 } ] diff --git a/version.txt b/version.txt index fafc82a47..c4d6f4ec7 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.102 \ No newline at end of file +2.2.103 \ No newline at end of file From 3e9996a6491068bacf342b58051c06fe16a2d6c7 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Fri, 20 Oct 2023 02:36:45 +0000 Subject: [PATCH 092/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9546 ++++++++--------- version.txt | 2 +- 3 files changed, 4775 insertions(+), 4775 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 110181b8d..f9e50eff3 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -9dcd79b68301ac1aa22bb6bc79b9575622b18e57 \ No newline at end of file +14b67a9b0d4fce4c26e854588c0e2961c71fb3ff \ 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 55a1833c6..7a0331b79 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9548 +1,9548 @@ [ { - "Id": 1, - "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -List \"Demo List\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPAlert", + "Id": 1 }, { - "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)", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPAlert", + "Id": 2 }, { - "Id": 3, - "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPAlert", + "Id": 3 }, { - "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))", - "Rank": 4 + "Rank": 4, + "CommandName": "Add-PnPAlert", + "Id": 4 }, { - "Id": 5, - "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPApp", + "Id": 5 }, { - "Id": 6, - "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPApp", + "Id": 6 }, { - "Id": 7, - "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPApp", + "Id": 7 }, { - "Id": 8, - "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "Rank": 4 + "Rank": 4, + "CommandName": "Add-PnPApp", + "Id": 8 }, { - "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`\"}", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPApplicationCustomizer", + "Id": 9 }, { - "Id": 10, - "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 10 }, { - "Id": 11, - "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 11 }, { - "Id": 12, - "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 12 }, { - "Id": 13, - "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 13 }, { - "Id": 14, - "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 14 }, { - "Id": 15, - "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 15 }, { - "Id": 16, - "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 16 }, { - "Id": 17, - "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 17 }, { - "Id": 18, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Id": 18 }, { - "Id": 19, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Id": 19 }, { - "Id": 20, - "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPContentType", + "Id": 20 }, { - "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\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPContentType", + "Id": 21 }, { - "Id": 22, - "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPContentType", + "Id": 22 }, { - "Id": 23, - "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Add-PnPContentType", + "Id": 23 }, { - "Id": 24, - "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "Rank": 5 + "Rank": 5, + "CommandName": "Add-PnPContentType", + "Id": 24 }, { - "Id": 25, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 25 }, { - "Id": 26, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 26 }, { - "Id": 27, - "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 27 }, { - "Id": 28, - "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 28 }, { - "Id": 29, - "CommandName": "Add-PnPContentTypeToList", "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPContentTypeToList", + "Id": 29 }, { - "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`\"}\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPCustomAction", + "Id": 30 }, { - "Id": 31, - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 31 }, { - "Id": 32, - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 32 }, { - "Id": 33, - "CommandName": "Add-PnPDocumentSet", "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPDocumentSet", + "Id": 33 }, { - "Id": 34, - "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPEventReceiver", + "Id": 34 }, { - "Id": 35, - "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPEventReceiver", + "Id": 35 }, { - "Id": 36, - "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPEventReceiver", + "Id": 36 }, { - "Id": 37, - "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", - "Rank": 4 + "Rank": 4, + "CommandName": "Add-PnPEventReceiver", + "Id": 37 }, { - "Id": 38, - "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPField", + "Id": 38 }, { - "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\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPField", + "Id": 39 }, { - "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\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPField", + "Id": 40 }, { - "Id": 41, - "CommandName": "Add-PnPField", "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Add-PnPField", + "Id": 41 }, { - "Id": 42, - "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Add-PnPField", + "Id": 42 }, { - "Id": 43, - "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "Rank": 6 + "Rank": 6, + "CommandName": "Add-PnPField", + "Id": 43 }, { - "Id": 44, - "CommandName": "Add-PnPFieldToContentType", "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPFieldToContentType", + "Id": 44 }, { - "Id": 45, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPFile", + "Id": 45 }, { - "Id": 46, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPFile", + "Id": 46 }, { - "Id": 47, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPFile", + "Id": 47 }, { - "Id": 48, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "Rank": 4 + "Rank": 4, + "CommandName": "Add-PnPFile", + "Id": 48 }, { - "Id": 49, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 5 + "Rank": 5, + "CommandName": "Add-PnPFile", + "Id": 49 }, { - "Id": 50, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "Rank": 6 + "Rank": 6, + "CommandName": "Add-PnPFile", + "Id": 50 }, { - "Id": 51, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "Rank": 7 + "Rank": 7, + "CommandName": "Add-PnPFile", + "Id": 51 }, { - "Id": 52, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 8 + "Rank": 8, + "CommandName": "Add-PnPFile", + "Id": 52 }, { - "Id": 53, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 53 }, { - "Id": 54, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 54 }, { - "Id": 55, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 55 }, { - "Id": 56, - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 56 }, { - "Id": 57, - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 57 }, { - "Id": 58, - "CommandName": "Add-PnPFileSharingInvite", "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPFileSharingInvite", + "Id": 58 }, { - "Id": 59, - "CommandName": "Add-PnPFileSharingInvite", "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPFileSharingInvite", + "Id": 59 }, { - "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)", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPFileSharingInvite", + "Id": 60 }, { - "Id": 61, - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 61 }, { - "Id": 62, - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 62 }, { - "Id": 63, - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 63 }, { - "Id": 64, - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "Rank": 4 + "Rank": 4, + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 64 }, { - "Id": 65, - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 65 }, { - "Id": 66, - "CommandName": "Add-PnPFileUserSharingLink", "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPFileUserSharingLink", + "Id": 66 }, { - "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\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPFileUserSharingLink", + "Id": 67 }, { - "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", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPFlowOwner", + "Id": 68 }, { - "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", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPFlowOwner", + "Id": 69 }, { - "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", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPFlowOwner", + "Id": 70 }, { - "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", - "Rank": 4 + "Rank": 4, + "CommandName": "Add-PnPFlowOwner", + "Id": 71 }, { - "Id": 72, - "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPFolder", + "Id": 72 }, { - "Id": 73, - "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPFolder", + "Id": 73 }, { - "Id": 74, - "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPFolder", + "Id": 74 }, { - "Id": 75, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 75 }, { - "Id": 76, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 76 }, { - "Id": 77, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 77 }, { - "Id": 78, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 78 }, { - "Id": 79, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 79 }, { - "Id": 80, - "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPFolderSharingInvite", + "Id": 80 }, { - "Id": 81, - "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPFolderSharingInvite", + "Id": 81 }, { - "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)", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPFolderSharingInvite", + "Id": 82 }, { - "Id": 83, - "CommandName": "Add-PnPFolderUserSharingLink", "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPFolderUserSharingLink", + "Id": 83 }, { - "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\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPFolderUserSharingLink", + "Id": 84 }, { - "Id": 85, - "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPGroupMember", + "Id": 85 }, { - "Id": 86, - "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPGroupMember", + "Id": 86 }, { - "Id": 87, - "CommandName": "Add-PnPHtmlPublishingPageLayout", "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPHtmlPublishingPageLayout", + "Id": 87 }, { - "Id": 88, - "CommandName": "Add-PnPHubSiteAssociation", "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPHubSiteAssociation", + "Id": 88 }, { - "Id": 89, - "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 89 }, { - "Id": 90, - "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 90 }, { - "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\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 91 }, { - "Id": 92, - "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 92 }, { - "Id": 93, - "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 93 }, { - "Id": 94, - "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPJavaScriptLink", + "Id": 94 }, { - "Id": 95, - "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPJavaScriptLink", + "Id": 95 }, { - "Id": 96, - "CommandName": "Add-PnPListDesign", "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPListDesign", + "Id": 96 }, { - "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\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPListDesign", + "Id": 97 }, { - "Id": 98, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 98 }, { - "Id": 99, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 99 }, { - "Id": 100, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 100 }, { - "Id": 101, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPListItem", + "Id": 101 }, { - "Id": 102, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPListItem", + "Id": 102 }, { - "Id": 103, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPListItem", + "Id": 103 }, { - "Id": 104, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Add-PnPListItem", + "Id": 104 }, { - "Id": 105, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Add-PnPListItem", + "Id": 105 }, { - "Id": 106, - "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPListItemAttachment", + "Id": 106 }, { - "Id": 107, - "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPListItemAttachment", + "Id": 107 }, { - "Id": 108, - "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPListItemAttachment", + "Id": 108 }, { - "Id": 109, - "CommandName": "Add-PnPListItemComment", "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPListItemComment", + "Id": 109 }, { - "Id": 110, - "CommandName": "Add-PnPMasterPage", "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPMasterPage", + "Id": 110 }, { - "Id": 111, - "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 111 }, { - "Id": 112, - "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 112 }, { - "Id": 113, - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 113 }, { - "Id": 114, - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 114 }, { - "Id": 115, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 115 }, { - "Id": 116, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 116 }, { - "Id": 117, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 117 }, { - "Id": 118, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPNavigationNode", + "Id": 118 }, { - "Id": 119, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPNavigationNode", + "Id": 119 }, { - "Id": 120, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPNavigationNode", + "Id": 120 }, { - "Id": 121, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "Rank": 4 + "Rank": 4, + "CommandName": "Add-PnPNavigationNode", + "Id": 121 }, { - "Id": 122, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Add-PnPNavigationNode", + "Id": 122 }, { - "Id": 123, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Rank": 6 + "Rank": 6, + "CommandName": "Add-PnPNavigationNode", + "Id": 123 }, { - "Id": 124, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Rank": 7 + "Rank": 7, + "CommandName": "Add-PnPNavigationNode", + "Id": 124 }, { - "Id": 125, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "Rank": 8 + "Rank": 8, + "CommandName": "Add-PnPNavigationNode", + "Id": 125 }, { - "Id": 126, - "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 126 }, { - "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\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 127 }, { - "Id": 128, - "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 128 }, { - "Id": 129, - "CommandName": "Add-PnPOrgNewsSite", "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPOrgNewsSite", + "Id": 129 }, { - "Id": 130, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPPage", + "Id": 130 }, { - "Id": 131, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPPage", + "Id": 131 }, { - "Id": 132, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPPage", + "Id": 132 }, { - "Id": 133, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Rank": 4 + "Rank": 4, + "CommandName": "Add-PnPPage", + "Id": 133 }, { - "Id": 134, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Add-PnPPage", + "Id": 134 }, { - "Id": 135, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Rank": 6 + "Rank": 6, + "CommandName": "Add-PnPPage", + "Id": 135 }, { - "Id": 136, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7 + "Rank": 7, + "CommandName": "Add-PnPPage", + "Id": 136 }, { - "Id": 137, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Rank": 8 + "Rank": 8, + "CommandName": "Add-PnPPage", + "Id": 137 }, { - "Id": 138, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9 + "Rank": 9, + "CommandName": "Add-PnPPage", + "Id": 138 }, { - "Id": 139, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10 + "Rank": 10, + "CommandName": "Add-PnPPage", + "Id": 139 }, { - "Id": 140, - "CommandName": "Add-PnPPageImageWebPart", "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPPageImageWebPart", + "Id": 140 }, { - "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\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPPageImageWebPart", + "Id": 141 }, { - "Id": 142, - "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPPageSection", + "Id": 142 }, { - "Id": 143, - "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPPageSection", + "Id": 143 }, { - "Id": 144, - "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPPageTextPart", + "Id": 144 }, { - "Id": 145, - "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPPageTextPart", + "Id": 145 }, { - "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\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPPageTextPart", + "Id": 146 }, { - "Id": 147, - "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPPageWebPart", + "Id": 147 }, { - "Id": 148, - "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPPageWebPart", + "Id": 148 }, { - "Id": 149, - "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPPageWebPart", + "Id": 149 }, { - "Id": 150, - "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPPlannerBucket", + "Id": 150 }, { - "Id": 151, - "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPPlannerBucket", + "Id": 151 }, { - "Id": 152, - "CommandName": "Add-PnPPlannerRoster", "Command": "Add-PnPPlannerRoster", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPPlannerRoster", + "Id": 152 }, { - "Id": 153, - "CommandName": "Add-PnPPlannerRosterMember", "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPPlannerRosterMember", + "Id": 153 }, { - "Id": 154, - "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPPlannerTask", + "Id": 154 }, { - "Id": 155, - "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPPlannerTask", + "Id": 155 }, { - "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\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPPlannerTask", + "Id": 156 }, { - "Id": 157, - "CommandName": "Add-PnPPublishingImageRendition", "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPPublishingImageRendition", + "Id": 157 }, { - "Id": 158, - "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPPublishingPage", + "Id": 158 }, { - "Id": 159, - "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPPublishingPage", + "Id": 159 }, { - "Id": 160, - "CommandName": "Add-PnPPublishingPageLayout", "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPPublishingPageLayout", + "Id": 160 }, { - "Id": 161, - "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPRoleDefinition", + "Id": 161 }, { - "Id": 162, - "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPRoleDefinition", + "Id": 162 }, { - "Id": 163, - "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPRoleDefinition", + "Id": 163 }, { - "Id": 164, - "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 164 }, { - "Id": 165, - "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 165 }, { - "Id": 166, - "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 166 }, { - "Id": 167, - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 167 }, { - "Id": 168, - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 168 }, { - "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", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPSiteDesign", + "Id": 169 }, { - "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", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPSiteDesign", + "Id": 170 }, { - "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\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPSiteDesign", + "Id": 171 }, { - "Id": 172, - "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPSiteDesignFromWeb", + "Id": 172 }, { - "Id": 173, - "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPSiteDesignFromWeb", + "Id": 173 }, { - "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", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPSiteDesignFromWeb", + "Id": 174 }, { - "Id": 175, - "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPSiteDesignTask", + "Id": 175 }, { - "Id": 176, - "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPSiteDesignTask", + "Id": 176 }, { - "Id": 177, - "CommandName": "Add-PnPSiteScript", "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPSiteScript", + "Id": 177 }, { - "Id": 178, - "CommandName": "Add-PnPSiteScriptPackage", "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPSiteScriptPackage", + "Id": 178 }, { - "Id": 179, - "CommandName": "Add-PnPSiteTemplate", "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPSiteTemplate", + "Id": 179 }, { - "Id": 180, - "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPStoredCredential", + "Id": 180 }, { - "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)", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPStoredCredential", + "Id": 181 }, { - "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\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPStoredCredential", + "Id": 182 }, { - "Id": 183, - "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPTaxonomyField", + "Id": 183 }, { - "Id": 184, - "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPTaxonomyField", + "Id": 184 }, { - "Id": 185, - "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPTeamsChannel", + "Id": 185 }, { - "Id": 186, - "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPTeamsChannel", + "Id": 186 }, { - "Id": 187, - "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPTeamsChannel", + "Id": 187 }, { - "Id": 188, - "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "Rank": 4 + "Rank": 4, + "CommandName": "Add-PnPTeamsChannel", + "Id": 188 }, { - "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", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnpTeamsChannelUser", + "Id": 189 }, { - "Id": 190, - "CommandName": "Add-PnpTeamsChannelUser", "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnpTeamsChannelUser", + "Id": 190 }, { - "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\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPTeamsTab", + "Id": 191 }, { - "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\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPTeamsTab", + "Id": 192 }, { - "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\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPTeamsTab", + "Id": 193 }, { - "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", - "Rank": 4 + "Rank": 4, + "CommandName": "Add-PnPTeamsTab", + "Id": 194 }, { - "Id": 195, - "CommandName": "Add-PnPTeamsTeam", "Command": "Add-PnPTeamsTeam", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPTeamsTeam", + "Id": 195 }, { - "Id": 196, - "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPTeamsUser", + "Id": 196 }, { - "Id": 197, - "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPTeamsUser", + "Id": 197 }, { - "Id": 198, - "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPTeamsUser", + "Id": 198 }, { - "Id": 199, - "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "Rank": 4 + "Rank": 4, + "CommandName": "Add-PnPTeamsUser", + "Id": 199 }, { - "Id": 200, - "CommandName": "Add-PnPTenantCdnOrigin", "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPTenantCdnOrigin", + "Id": 200 }, { - "Id": 201, - "CommandName": "Add-PnPTenantSequence", "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPTenantSequence", + "Id": 201 }, { - "Id": 202, - "CommandName": "Add-PnPTenantSequenceSite", "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSite", + "Id": 202 }, { - "Id": 203, - "CommandName": "Add-PnPTenantSequenceSubSite", "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSubSite", + "Id": 203 }, { - "Id": 204, - "CommandName": "Add-PnPTermToTerm", "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPTermToTerm", + "Id": 204 }, { - "Id": 205, - "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPView", + "Id": 205 }, { - "Id": 206, - "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPView", + "Id": 206 }, { - "Id": 207, - "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPView", + "Id": 207 }, { - "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\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Id": 208 }, { - "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\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Id": 209 }, { - "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\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", + "Id": 210 }, { - "Id": 211, - "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPWebhookSubscription", + "Id": 211 }, { - "Id": 212, - "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPWebhookSubscription", + "Id": 212 }, { - "Id": 213, - "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Add-PnPWebhookSubscription", + "Id": 213 }, { - "Id": 214, - "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPWebPartToWebPartPage", + "Id": 214 }, { - "Id": 215, - "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPWebPartToWebPartPage", + "Id": 215 }, { - "Id": 216, - "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPWebPartToWikiPage", + "Id": 216 }, { - "Id": 217, - "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "Rank": 2 + "Rank": 2, + "CommandName": "Add-PnPWebPartToWikiPage", + "Id": 217 }, { - "Id": 218, - "CommandName": "Add-PnPWikiPage", "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "Rank": 1 + "Rank": 1, + "CommandName": "Add-PnPWikiPage", + "Id": 218 }, { - "Id": 219, - "CommandName": "Clear-PnPAzureADGroupMember", "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupMember", + "Id": 219 }, { - "Id": 220, - "CommandName": "Clear-PnPAzureADGroupOwner", "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupOwner", + "Id": 220 }, { - "Id": 221, - "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Rank": 1 + "Rank": 1, + "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 221 }, { - "Id": 222, - "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Rank": 2 + "Rank": 2, + "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 222 }, { - "Id": 223, - "CommandName": "Clear-PnPListItemAsRecord", "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1 + "Rank": 1, + "CommandName": "Clear-PnPListItemAsRecord", + "Id": 223 }, { - "Id": 224, - "CommandName": "Clear-PnPMicrosoft365GroupMember", "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Id": 224 }, { - "Id": 225, - "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Id": 225 }, { - "Id": 226, - "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1 + "Rank": 1, + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 226 }, { - "Id": 227, - "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Rank": 2 + "Rank": 2, + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 227 }, { - "Id": 228, - "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Rank": 3 + "Rank": 3, + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 228 }, { - "Id": 229, - "CommandName": "Clear-PnPTenantAppCatalogUrl", "Command": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1 + "Rank": 1, + "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Id": 229 }, { - "Id": 230, - "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 230 }, { - "Id": 231, - "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2 + "Rank": 2, + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 231 }, { - "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\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Connect-PnPOnline", + "Id": 232 }, { - "Id": 233, - "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Rank": 1 + "Rank": 1, + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 233 }, { - "Id": 234, - "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Rank": 2 + "Rank": 2, + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 234 }, { - "Id": 235, - "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Rank": 1 + "Rank": 1, + "CommandName": "Convert-PnPSiteTemplate", + "Id": 235 }, { - "Id": 236, - "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Rank": 2 + "Rank": 2, + "CommandName": "Convert-PnPSiteTemplate", + "Id": 236 }, { - "Id": 237, - "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Rank": 3 + "Rank": 3, + "CommandName": "Convert-PnPSiteTemplate", + "Id": 237 }, { - "Id": 238, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Rank": 1 + "Rank": 1, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 238 }, { - "Id": 239, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Rank": 2 + "Rank": 2, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 239 }, { - "Id": 240, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Rank": 1 + "Rank": 1, + "CommandName": "ConvertTo-PnPPage", + "Id": 240 }, { - "Id": 241, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Rank": 2 + "Rank": 2, + "CommandName": "ConvertTo-PnPPage", + "Id": 241 }, { - "Id": 242, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Rank": 3 + "Rank": 3, + "CommandName": "ConvertTo-PnPPage", + "Id": 242 }, { - "Id": 243, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Rank": 4 + "Rank": 4, + "CommandName": "ConvertTo-PnPPage", + "Id": 243 }, { - "Id": 244, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 5 + "Rank": 5, + "CommandName": "ConvertTo-PnPPage", + "Id": 244 }, { - "Id": 245, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "Rank": 6 + "Rank": 6, + "CommandName": "ConvertTo-PnPPage", + "Id": 245 }, { - "Id": 246, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Rank": 7 + "Rank": 7, + "CommandName": "ConvertTo-PnPPage", + "Id": 246 }, { - "Id": 247, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Rank": 8 + "Rank": 8, + "CommandName": "ConvertTo-PnPPage", + "Id": 247 }, { - "Id": 248, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 9 + "Rank": 9, + "CommandName": "ConvertTo-PnPPage", + "Id": 248 }, { - "Id": 249, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "Rank": 10 + "Rank": 10, + "CommandName": "ConvertTo-PnPPage", + "Id": 249 }, { - "Id": 250, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Rank": 11 + "Rank": 11, + "CommandName": "ConvertTo-PnPPage", + "Id": 250 }, { - "Id": 251, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 12 + "Rank": 12, + "CommandName": "ConvertTo-PnPPage", + "Id": 251 }, { - "Id": 252, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 13 + "Rank": 13, + "CommandName": "ConvertTo-PnPPage", + "Id": 252 }, { - "Id": 253, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "Rank": 14 + "Rank": 14, + "CommandName": "ConvertTo-PnPPage", + "Id": 253 }, { - "Id": 254, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1 + "Rank": 1, + "CommandName": "Copy-PnPFile", + "Id": 254 }, { - "Id": 255, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Copy-PnPFile", + "Id": 255 }, { - "Id": 256, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3 + "Rank": 3, + "CommandName": "Copy-PnPFile", + "Id": 256 }, { - "Id": 257, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4 + "Rank": 4, + "CommandName": "Copy-PnPFile", + "Id": 257 }, { - "Id": 258, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Copy-PnPFile", + "Id": 258 }, { - "Id": 259, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6 + "Rank": 6, + "CommandName": "Copy-PnPFile", + "Id": 259 }, { - "Id": 260, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7 + "Rank": 7, + "CommandName": "Copy-PnPFile", + "Id": 260 }, { - "Id": 261, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8 + "Rank": 8, + "CommandName": "Copy-PnPFile", + "Id": 261 }, { - "Id": 262, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9 + "Rank": 9, + "CommandName": "Copy-PnPFile", + "Id": 262 }, { - "Id": 263, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10 + "Rank": 10, + "CommandName": "Copy-PnPFile", + "Id": 263 }, { - "Id": 264, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1 + "Rank": 1, + "CommandName": "Copy-PnPFolder", + "Id": 264 }, { - "Id": 265, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Copy-PnPFolder", + "Id": 265 }, { - "Id": 266, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3 + "Rank": 3, + "CommandName": "Copy-PnPFolder", + "Id": 266 }, { - "Id": 267, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4 + "Rank": 4, + "CommandName": "Copy-PnPFolder", + "Id": 267 }, { - "Id": 268, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Copy-PnPFolder", + "Id": 268 }, { - "Id": 269, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6 + "Rank": 6, + "CommandName": "Copy-PnPFolder", + "Id": 269 }, { - "Id": 270, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7 + "Rank": 7, + "CommandName": "Copy-PnPFolder", + "Id": 270 }, { - "Id": 271, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8 + "Rank": 8, + "CommandName": "Copy-PnPFolder", + "Id": 271 }, { - "Id": 272, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9 + "Rank": 9, + "CommandName": "Copy-PnPFolder", + "Id": 272 }, { - "Id": 273, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10 + "Rank": 10, + "CommandName": "Copy-PnPFolder", + "Id": 273 }, { - "Id": 274, - "CommandName": "Copy-PnPItemProxy", "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Copy-PnPItemProxy", + "Id": 274 }, { - "Id": 275, - "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Copy-PnPList", + "Id": 275 }, { - "Id": 276, - "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "Rank": 2 + "Rank": 2, + "CommandName": "Copy-PnPList", + "Id": 276 }, { - "Id": 277, - "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Copy-PnPList", + "Id": 277 }, { - "Id": 278, - "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", - "Rank": 4 + "Rank": 4, + "CommandName": "Copy-PnPList", + "Id": 278 }, { - "Id": 279, - "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "Rank": 1 + "Rank": 1, + "CommandName": "Copy-PnPTeamsTeam", + "Id": 279 }, { - "Id": 280, - "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Copy-PnPTeamsTeam", + "Id": 280 }, { - "Id": 281, - "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", - "Rank": 3 + "Rank": 3, + "CommandName": "Copy-PnPTeamsTeam", + "Id": 281 }, { - "Id": 282, - "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", - "Rank": 4 + "Rank": 4, + "CommandName": "Copy-PnPTeamsTeam", + "Id": 282 }, { - "Id": 283, - "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Rank": 1, + "CommandName": "Disable-PnPFeature", + "Id": 283 }, { - "Id": 284, - "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2 + "Rank": 2, + "CommandName": "Disable-PnPFeature", + "Id": 284 }, { - "Id": 285, - "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3 + "Rank": 3, + "CommandName": "Disable-PnPFeature", + "Id": 285 }, { - "Id": 286, - "CommandName": "Disable-PnPPageScheduling", "Command": "Disable-PnPPageScheduling", - "Rank": 1 + "Rank": 1, + "CommandName": "Disable-PnPPageScheduling", + "Id": 286 }, { - "Id": 287, - "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry", - "Rank": 1 + "Rank": 1, + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 287 }, { - "Id": 288, - "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry -Force", - "Rank": 2 + "Rank": 2, + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 288 }, { - "Id": 289, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1 + "Rank": 1, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 289 }, { - "Id": 290, - "CommandName": "Disable-PnPSiteClassification", "Command": "Disable-PnPSiteClassification", - "Rank": 1 + "Rank": 1, + "CommandName": "Disable-PnPSiteClassification", + "Id": 290 }, { - "Id": 291, - "CommandName": "Disconnect-PnPOnline", "Command": "Disconnect-PnPOnline", - "Rank": 1 + "Rank": 1, + "CommandName": "Disconnect-PnPOnline", + "Id": 291 }, { - "Id": 292, - "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite", - "Rank": 1 + "Rank": 1, + "CommandName": "Enable-PnPCommSite", + "Id": 292 }, { - "Id": 293, - "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Rank": 2 + "Rank": 2, + "CommandName": "Enable-PnPCommSite", + "Id": 293 }, { - "Id": 294, - "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Rank": 1, + "CommandName": "Enable-PnPFeature", + "Id": 294 }, { - "Id": 295, - "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2 + "Rank": 2, + "CommandName": "Enable-PnPFeature", + "Id": 295 }, { - "Id": 296, - "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3 + "Rank": 3, + "CommandName": "Enable-PnPFeature", + "Id": 296 }, { - "Id": 297, - "CommandName": "Enable-PnPPageScheduling", "Command": "Enable-PnPPageScheduling", - "Rank": 1 + "Rank": 1, + "CommandName": "Enable-PnPPageScheduling", + "Id": 297 }, { - "Id": 298, - "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry", - "Rank": 1 + "Rank": 1, + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 298 }, { - "Id": 299, - "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry -Force", - "Rank": 2 + "Rank": 2, + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 299 }, { - "Id": 300, - "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Enable-PnPSiteClassification", + "Id": 300 }, { - "Id": 301, - "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 2 + "Rank": 2, + "CommandName": "Enable-PnPSiteClassification", + "Id": 301 }, { - "Id": 302, - "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 302 }, { - "Id": 303, - "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 303 }, { - "Id": 304, - "CommandName": "Export-PnPPage", "Command": "Export-PnPPage -Identity Home.aspx", - "Rank": 1 + "Rank": 1, + "CommandName": "Export-PnPPage", + "Id": 304 }, { - "Id": 305, - "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Rank": 1 + "Rank": 1, + "CommandName": "Export-PnPPageMapping", + "Id": 305 }, { - "Id": 306, - "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Rank": 2 + "Rank": 2, + "CommandName": "Export-PnPPageMapping", + "Id": 306 }, { - "Id": 307, - "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Rank": 3 + "Rank": 3, + "CommandName": "Export-PnPPageMapping", + "Id": 307 }, { - "Id": 308, - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy", - "Rank": 1 + "Rank": 1, + "CommandName": "Export-PnPTaxonomy", + "Id": 308 }, { - "Id": 309, - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Rank": 2 + "Rank": 2, + "CommandName": "Export-PnPTaxonomy", + "Id": 309 }, { - "Id": 310, - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Rank": 3 + "Rank": 3, + "CommandName": "Export-PnPTaxonomy", + "Id": 310 }, { - "Id": 311, - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "Rank": 4 + "Rank": 4, + "CommandName": "Export-PnPTaxonomy", + "Id": 311 }, { - "Id": 312, - "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml", - "Rank": 1 + "Rank": 1, + "CommandName": "Export-PnPTermGroupToXml", + "Id": 312 }, { - "Id": 313, - "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Rank": 2 + "Rank": 2, + "CommandName": "Export-PnPTermGroupToXml", + "Id": 313 }, { - "Id": 314, - "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Export-PnPTermGroupToXml", + "Id": 314 }, { - "Id": 315, - "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Export-PnPUserInfo", + "Id": 315 }, { - "Id": 316, - "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2 + "Rank": 2, + "CommandName": "Export-PnPUserInfo", + "Id": 316 }, { - "Id": 317, - "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Rank": 1 + "Rank": 1, + "CommandName": "Export-PnPUserProfile", + "Id": 317 }, { - "Id": 318, - "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2 + "Rank": 2, + "CommandName": "Export-PnPUserProfile", + "Id": 318 }, { - "Id": 319, - "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Match *.master", - "Rank": 1 + "Rank": 1, + "CommandName": "Find-PnPFile", + "Id": 319 }, { - "Id": 320, - "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Rank": 2 + "Rank": 2, + "CommandName": "Find-PnPFile", + "Id": 320 }, { - "Id": 321, - "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Rank": 3 + "Rank": 3, + "CommandName": "Find-PnPFile", + "Id": 321 }, { - "Id": 322, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAccessToken", + "Id": 322 }, { - "Id": 323, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -Decoded", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAccessToken", + "Id": 323 }, { - "Id": 324, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPAccessToken", + "Id": 324 }, { - "Id": 325, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPAccessToken", + "Id": 325 }, { - "Id": 326, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPAccessToken", + "Id": 326 }, { - "Id": 327, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAlert", + "Id": 327 }, { - "Id": 328, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAlert", + "Id": 328 }, { - "Id": 329, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPAlert", + "Id": 329 }, { - "Id": 330, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPAlert", + "Id": 330 }, { - "Id": 331, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -AllUsers", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPAlert", + "Id": 331 }, { - "Id": 332, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPAlert", + "Id": 332 }, { - "Id": 333, - "CommandName": "Get-PnPApp", "Command": "Get-PnPApp", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPApp", + "Id": 333 }, { - "Id": 334, - "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Scope Site", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPApp", + "Id": 334 }, { - "Id": 335, - "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPApp", + "Id": 335 }, { - "Id": 336, - "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAppErrors", + "Id": 336 }, { - "Id": 337, - "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAppErrors", + "Id": 337 }, { - "Id": 338, - "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAppInfo", + "Id": 338 }, { - "Id": 339, - "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAppInfo", + "Id": 339 }, { - "Id": 340, - "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPAppInfo", + "Id": 340 }, { - "Id": 341, - "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 341 }, { - "Id": 342, - "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 342 }, { - "Id": 343, - "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 343 }, { - "Id": 344, - "CommandName": "Get-PnPAuditing", "Command": "Get-PnPAuditing", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAuditing", + "Id": 344 }, { - "Id": 345, - "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 345 }, { - "Id": 346, - "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 346 }, { - "Id": 347, - "CommandName": "Get-PnPAvailableLanguage", "Command": "Get-PnPAvailableLanguage", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAvailableLanguage", + "Id": 347 }, { - "Id": 348, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 348 }, { - "Id": 349, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 349 }, { - "Id": 350, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 350 }, { - "Id": 351, - "CommandName": "Get-PnPAvailableSiteClassification", "Command": "Get-PnPAvailableSiteClassification", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAvailableSiteClassification", + "Id": 351 }, { - "Id": 352, - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 352 }, { - "Id": 353, - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 353 }, { - "Id": 354, - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 354 }, { - "Id": 355, - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 355 }, { - "Id": 356, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 356 }, { - "Id": 357, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 357 }, { - "Id": 358, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 358 }, { - "Id": 359, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 359 }, { - "Id": 360, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 360 }, { - "Id": 361, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 361 }, { - "Id": 362, - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAzureADApp", + "Id": 362 }, { - "Id": 363, - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity MyApp", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAzureADApp", + "Id": 363 }, { - "Id": 364, - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPAzureADApp", + "Id": 364 }, { - "Id": 365, - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPAzureADApp", + "Id": 365 }, { - "Id": 366, - "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 366 }, { - "Id": 367, - "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 367 }, { - "Id": 368, - "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 368 }, { - "Id": 369, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 369 }, { - "Id": 370, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 370 }, { - "Id": 371, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 371 }, { - "Id": 372, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 372 }, { - "Id": 373, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 373 }, { - "Id": 374, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAzureADGroup", + "Id": 374 }, { - "Id": 375, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAzureADGroup", + "Id": 375 }, { - "Id": 376, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPAzureADGroup", + "Id": 376 }, { - "Id": 377, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPAzureADGroup", + "Id": 377 }, { - "Id": 378, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $group", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPAzureADGroup", + "Id": 378 }, { - "Id": 379, - "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 379 }, { - "Id": 380, - "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 380 }, { - "Id": 381, - "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 381 }, { - "Id": 382, - "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 382 }, { - "Id": 383, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 383 }, { - "Id": 384, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 384 }, { - "Id": 385, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 385 }, { - "Id": 386, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 386 }, { - "Id": 387, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 387 }, { - "Id": 388, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 388 }, { - "Id": 389, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 389 }, { - "Id": 390, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 390 }, { - "Id": 391, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 391 }, { - "Id": 392, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAzureADUser", + "Id": 392 }, { - "Id": 393, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -EndIndex 50", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAzureADUser", + "Id": 393 }, { - "Id": 394, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPAzureADUser", + "Id": 394 }, { - "Id": 395, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPAzureADUser", + "Id": 395 }, { - "Id": 396, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPAzureADUser", + "Id": 396 }, { - "Id": 397, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPAzureADUser", + "Id": 397 }, { - "Id": 398, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Rank": 7 + "Rank": 7, + "CommandName": "Get-PnPAzureADUser", + "Id": 398 }, { - "Id": 399, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta", - "Rank": 8 + "Rank": 8, + "CommandName": "Get-PnPAzureADUser", + "Id": 399 }, { - "Id": 400, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Rank": 9 + "Rank": 9, + "CommandName": "Get-PnPAzureADUser", + "Id": 400 }, { - "Id": 401, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Rank": 10 + "Rank": 10, + "CommandName": "Get-PnPAzureADUser", + "Id": 401 }, { - "Id": 402, - "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPAzureCertificate", + "Id": 402 }, { - "Id": 403, - "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPAzureCertificate", + "Id": 403 }, { - "Id": 404, - "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPAzureCertificate", + "Id": 404 }, { - "Id": 405, - "CommandName": "Get-PnPBrowserIdleSignout", "Command": "Get-PnPBrowserIdleSignout", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPBrowserIdleSignout", + "Id": 405 }, { - "Id": 406, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 406 }, { - "Id": 407, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 407 }, { - "Id": 408, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 408 }, { - "Id": 409, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 409 }, { - "Id": 410, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 410 }, { - "Id": 411, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 411 }, { - "Id": 412, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 412 }, { - "Id": 413, - "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPChangeLog", + "Id": 413 }, { - "Id": 414, - "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog -Nightly", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPChangeLog", + "Id": 414 }, { - "Id": 415, - "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 415 }, { - "Id": 416, - "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 416 }, { - "Id": 417, - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPContentType", + "Id": 417 }, { - "Id": 418, - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -InSiteHierarchy", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPContentType", + "Id": 418 }, { - "Id": 419, - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPContentType", + "Id": 419 }, { - "Id": 420, - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -List \"Documents\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPContentType", + "Id": 420 }, { - "Id": 421, - "CommandName": "Get-PnPContentTypePublishingStatus", "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPContentTypePublishingStatus", + "Id": 421 }, { - "Id": 422, - "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPCustomAction", + "Id": 422 }, { - "Id": 423, - "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPCustomAction", + "Id": 423 }, { - "Id": 424, - "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Scope web", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPCustomAction", + "Id": 424 }, { - "Id": 425, - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 425 }, { - "Id": 426, - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 426 }, { - "Id": 427, - "CommandName": "Get-PnPDeletedTeam", "Command": "Get-PnPDeletedTeam", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPDeletedTeam", + "Id": 427 }, { - "Id": 428, - "CommandName": "Get-PnPDiagnostics", "Command": "Get-PnPDiagnostics", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPDiagnostics", + "Id": 428 }, { - "Id": 429, - "CommandName": "Get-PnPDisableSpacesActivation", "Command": "Get-PnPDisableSpacesActivation", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPDisableSpacesActivation", + "Id": 429 }, { - "Id": 430, - "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 430 }, { - "Id": 431, - "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 431 }, { - "Id": 432, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPEventReceiver", + "Id": 432 }, { - "Id": 433, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPEventReceiver", + "Id": 433 }, { - "Id": 434, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPEventReceiver", + "Id": 434 }, { - "Id": 435, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPEventReceiver", + "Id": 435 }, { - "Id": 436, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPEventReceiver", + "Id": 436 }, { - "Id": 437, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPEventReceiver", + "Id": 437 }, { - "Id": 438, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Site", - "Rank": 7 + "Rank": 7, + "CommandName": "Get-PnPEventReceiver", + "Id": 438 }, { - "Id": 439, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Web", - "Rank": 8 + "Rank": 8, + "CommandName": "Get-PnPEventReceiver", + "Id": 439 }, { - "Id": 440, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope All", - "Rank": 9 + "Rank": 9, + "CommandName": "Get-PnPEventReceiver", + "Id": 440 }, { - "Id": 441, - "CommandName": "Get-PnPException", "Command": "Get-PnPException", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPException", + "Id": 441 }, { - "Id": 442, - "CommandName": "Get-PnPException", "Command": "Get-PnPException -All", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPException", + "Id": 442 }, { - "Id": 443, - "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPExternalUser", + "Id": 443 }, { - "Id": 444, - "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPExternalUser", + "Id": 444 }, { - "Id": 445, - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPFeature", + "Id": 445 }, { - "Id": 446, - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Scope Site", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPFeature", + "Id": 446 }, { - "Id": 447, - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPFeature", + "Id": 447 }, { - "Id": 448, - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPFeature", + "Id": 448 }, { - "Id": 449, - "CommandName": "Get-PnPField", "Command": "Get-PnPField", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPField", + "Id": 449 }, { - "Id": 450, - "CommandName": "Get-PnPField", "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPField", + "Id": 450 }, { - "Id": 451, - "CommandName": "Get-PnPField", "Command": "Get-PnPField -Group \"Custom Columns\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPField", + "Id": 451 }, { - "Id": 452, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPFile", + "Id": 452 }, { - "Id": 453, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPFile", + "Id": 453 }, { - "Id": 454, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPFile", + "Id": 454 }, { - "Id": 455, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPFile", + "Id": 455 }, { - "Id": 456, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPFile", + "Id": 456 }, { - "Id": 457, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPFile", + "Id": 457 }, { - "Id": 458, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Rank": 7 + "Rank": 7, + "CommandName": "Get-PnPFile", + "Id": 458 }, { - "Id": 459, - "CommandName": "Get-PnPFileSharingLink", "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPFileSharingLink", + "Id": 459 }, { - "Id": 460, - "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPFileVersion", + "Id": 460 }, { - "Id": 461, - "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPFileVersion", + "Id": 461 }, { - "Id": 462, - "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -AsAdmin", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPFlow", + "Id": 462 }, { - "Id": 463, - "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPFlow", + "Id": 463 }, { - "Id": 464, - "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPFlow", + "Id": 464 }, { - "Id": 465, - "CommandName": "Get-PnPFlowOwner", "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPFlowOwner", + "Id": 465 }, { - "Id": 466, - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPFolder", + "Id": 466 }, { - "Id": 467, - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPFolder", + "Id": 467 }, { - "Id": 468, - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPFolder", + "Id": 468 }, { - "Id": 469, - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPFolder", + "Id": 469 }, { - "Id": 470, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPFolderFile", + "Id": 470 }, { - "Id": 471, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -Recurse", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPFolderFile", + "Id": 471 }, { - "Id": 472, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPFolderFile", + "Id": 472 }, { - "Id": 473, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPFolderFile", + "Id": 473 }, { - "Id": 474, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPFolderFile", + "Id": 474 }, { - "Id": 475, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPFolderFolder", + "Id": 475 }, { - "Id": 476, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Recurse", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPFolderFolder", + "Id": 476 }, { - "Id": 477, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPFolderFolder", + "Id": 477 }, { - "Id": 478, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPFolderFolder", + "Id": 478 }, { - "Id": 479, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPFolderFolder", + "Id": 479 }, { - "Id": 480, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPFolderFolder", + "Id": 480 }, { - "Id": 481, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPFolderItem", + "Id": 481 }, { - "Id": 482, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Recurse", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPFolderItem", + "Id": 482 }, { - "Id": 483, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPFolderItem", + "Id": 483 }, { - "Id": 484, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPFolderItem", + "Id": 484 }, { - "Id": 485, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPFolderItem", + "Id": 485 }, { - "Id": 486, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPFolderItem", + "Id": 486 }, { - "Id": 487, - "CommandName": "Get-PnPFolderSharingLink", "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPFolderSharingLink", + "Id": 487 }, { - "Id": 488, - "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 488 }, { - "Id": 489, - "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 489 }, { - "Id": 490, - "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 490 }, { - "Id": 491, - "CommandName": "Get-PnPFooter", "Command": "Get-PnPFooter", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPFooter", + "Id": 491 }, { - "Id": 492, - "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPGraphAccessToken", + "Id": 492 }, { - "Id": 493, - "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken -Decoded", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPGraphAccessToken", + "Id": 493 }, { - "Id": 494, - "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPGraphSubscription", + "Id": 494 }, { - "Id": 495, - "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPGraphSubscription", + "Id": 495 }, { - "Id": 496, - "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPGroup", + "Id": 496 }, { - "Id": 497, - "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPGroup", + "Id": 497 }, { - "Id": 498, - "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPGroup", + "Id": 498 }, { - "Id": 499, - "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPGroupMember", + "Id": 499 }, { - "Id": 500, - "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPGroupMember", + "Id": 500 }, { - "Id": 501, - "CommandName": "Get-PnPGroupPermissions", "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPGroupPermissions", + "Id": 501 }, { - "Id": 502, - "CommandName": "Get-PnPHideDefaultThemes", "Command": "Get-PnPHideDefaultThemes", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPHideDefaultThemes", + "Id": 502 }, { - "Id": 503, - "CommandName": "Get-PnPHomePage", "Command": "Get-PnPHomePage", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPHomePage", + "Id": 503 }, { - "Id": 504, - "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPHomeSite", + "Id": 504 }, { - "Id": 505, - "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPHomeSite", + "Id": 505 }, { - "Id": 506, - "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -Detailed", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPHomeSite", + "Id": 506 }, { - "Id": 507, - "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPHubSite", + "Id": 507 }, { - "Id": 508, - "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPHubSite", + "Id": 508 }, { - "Id": 509, - "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPHubSite", + "Id": 509 }, { - "Id": 510, - "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPHubSiteChild", + "Id": 510 }, { - "Id": 511, - "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPHubSiteChild", + "Id": 511 }, { - "Id": 512, - "CommandName": "Get-PnPInPlaceRecordsManagement", "Command": "Get-PnPInPlaceRecordsManagement", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Id": 512 }, { - "Id": 513, - "CommandName": "Get-PnPIsSiteAliasAvailable", "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Id": 513 }, { - "Id": 514, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 514 }, { - "Id": 515, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope All", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 515 }, { - "Id": 516, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Web", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 516 }, { - "Id": 517, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Site", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 517 }, { - "Id": 518, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Name Test", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPJavaScriptLink", + "Id": 518 }, { - "Id": 519, - "CommandName": "Get-PnPKnowledgeHubSite", "Command": "Get-PnPKnowledgeHubSite", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPKnowledgeHubSite", + "Id": 519 }, { - "Id": 520, - "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPLabel", + "Id": 520 }, { - "Id": 521, - "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPLabel", + "Id": 521 }, { - "Id": 522, - "CommandName": "Get-PnPLargeListOperationStatus", "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPLargeListOperationStatus", + "Id": 522 }, { - "Id": 523, - "CommandName": "Get-PnPList", "Command": "Get-PnPList", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPList", + "Id": 523 }, { - "Id": 524, - "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPList", + "Id": 524 }, { - "Id": 525, - "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity Lists/Announcements", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPList", + "Id": 525 }, { - "Id": 526, - "CommandName": "Get-PnPList", "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPList", + "Id": 526 }, { - "Id": 527, - "CommandName": "Get-PnPList", "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPList", + "Id": 527 }, { - "Id": 528, - "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPListDesign", + "Id": 528 }, { - "Id": 529, - "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPListDesign", + "Id": 529 }, { - "Id": 530, - "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity ListEvent", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPListDesign", + "Id": 530 }, { - "Id": 531, - "CommandName": "Get-PnPListInformationRightsManagement", "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPListInformationRightsManagement", + "Id": 531 }, { - "Id": 532, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPListItem", + "Id": 532 }, { - "Id": 533, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPListItem", + "Id": 533 }, { - "Id": 534, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPListItem", + "Id": 534 }, { - "Id": 535, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPListItem", + "Id": 535 }, { - "Id": 536, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPListItem", + "Id": 536 }, { - "Id": 537, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPListItem", + "Id": 537 }, { - "Id": 538, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "Rank": 7 + "Rank": 7, + "CommandName": "Get-PnPListItem", + "Id": 538 }, { - "Id": 539, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Rank": 8 + "Rank": 8, + "CommandName": "Get-PnPListItem", + "Id": 539 }, { - "Id": 540, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Rank": 9 + "Rank": 9, + "CommandName": "Get-PnPListItem", + "Id": 540 }, { - "Id": 541, - "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPListItemAttachment", + "Id": 541 }, { - "Id": 542, - "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPListItemAttachment", + "Id": 542 }, { - "Id": 543, - "CommandName": "Get-PnPListItemComment", "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPListItemComment", + "Id": 543 }, { - "Id": 544, - "CommandName": "Get-PnPListItemPermission", "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPListItemPermission", + "Id": 544 }, { - "Id": 545, - "CommandName": "Get-PnPListItemVersion", "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPListItemVersion", + "Id": 545 }, { - "Id": 546, - "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPListPermissions", + "Id": 546 }, { - "Id": 547, - "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPListPermissions", + "Id": 547 }, { - "Id": 548, - "CommandName": "Get-PnPListRecordDeclaration", "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPListRecordDeclaration", + "Id": 548 }, { - "Id": 549, - "CommandName": "Get-PnPMasterPage", "Command": "Get-PnPMasterPage", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPMasterPage", + "Id": 549 }, { - "Id": 550, - "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 550 }, { - "Id": 551, - "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 551 }, { - "Id": 552, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 552 }, { - "Id": 553, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 553 }, { - "Id": 554, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 554 }, { - "Id": 555, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 555 }, { - "Id": 556, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 556 }, { - "Id": 557, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 557 }, { - "Id": 558, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 558 }, { - "Id": 559, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 559 }, { - "Id": 560, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 560 }, { - "Id": 561, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 561 }, { - "Id": 562, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 562 }, { - "Id": 563, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 563 }, { - "Id": 564, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 564 }, { - "Id": 565, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 565 }, { - "Id": 566, - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 566 }, { - "Id": 567, - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 567 }, { - "Id": 568, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 568 }, { - "Id": 569, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 569 }, { - "Id": 570, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 570 }, { - "Id": 571, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 571 }, { - "Id": 572, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 572 }, { - "Id": 573, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 573 }, { - "Id": 574, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 574 }, { - "Id": 575, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 575 }, { - "Id": 576, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 576 }, { - "Id": 577, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 577 }, { - "Id": 578, - "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPNavigationNode", + "Id": 578 }, { - "Id": 579, - "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPNavigationNode", + "Id": 579 }, { - "Id": 580, - "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPNavigationNode", + "Id": 580 }, { - "Id": 581, - "CommandName": "Get-PnPOrgAssetsLibrary", "Command": "Get-PnPOrgAssetsLibrary", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPOrgAssetsLibrary", + "Id": 581 }, { - "Id": 582, - "CommandName": "Get-PnPOrgNewsSite", "Command": "Get-PnPOrgNewsSite", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPOrgNewsSite", + "Id": 582 }, { - "Id": 583, - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPPage", + "Id": 583 }, { - "Id": 584, - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"MyPage\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPPage", + "Id": 584 }, { - "Id": 585, - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPPage", + "Id": 585 }, { - "Id": 586, - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPPage", + "Id": 586 }, { - "Id": 587, - "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPPageComponent", + "Id": 587 }, { - "Id": 588, - "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPPageComponent", + "Id": 588 }, { - "Id": 589, - "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPPageComponent", + "Id": 589 }, { - "Id": 590, - "CommandName": "Get-PnPPlannerBucket", "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPPlannerBucket", + "Id": 590 }, { - "Id": 591, - "CommandName": "Get-PnPPlannerConfiguration", "Command": "Get-PnPPlannerConfiguration", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPPlannerConfiguration", + "Id": 591 }, { - "Id": 592, - "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPPlannerPlan", + "Id": 592 }, { - "Id": 593, - "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPPlannerPlan", + "Id": 593 }, { - "Id": 594, - "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPPlannerPlan", + "Id": 594 }, { - "Id": 595, - "CommandName": "Get-PnPPlannerRosterMember", "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPPlannerRosterMember", + "Id": 595 }, { - "Id": 596, - "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 596 }, { - "Id": 597, - "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 597 }, { - "Id": 598, - "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPPlannerTask", + "Id": 598 }, { - "Id": 599, - "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPPlannerTask", + "Id": 599 }, { - "Id": 600, - "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPPlannerTask", + "Id": 600 }, { - "Id": 601, - "CommandName": "Get-PnPPlannerUserPolicy", "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPPlannerUserPolicy", + "Id": 601 }, { - "Id": 602, - "CommandName": "Get-PnPPowerPlatformConnector", "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPPowerPlatformConnector", + "Id": 602 }, { - "Id": 603, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 603 }, { - "Id": 604, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 604 }, { - "Id": 605, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 605 }, { - "Id": 606, - "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Command": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Id": 606 }, { - "Id": 607, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPPropertyBag", + "Id": 607 }, { - "Id": 608, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Key MyKey", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPPropertyBag", + "Id": 608 }, { - "Id": 609, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPPropertyBag", + "Id": 609 }, { - "Id": 610, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPPropertyBag", + "Id": 610 }, { - "Id": 611, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPPropertyBag", + "Id": 611 }, { - "Id": 612, - "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 612 }, { - "Id": 613, - "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 613 }, { - "Id": 614, - "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 614 }, { - "Id": 615, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 615 }, { - "Id": 616, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 616 }, { - "Id": 617, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -FirstStage", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 617 }, { - "Id": 618, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -SecondStage", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 618 }, { - "Id": 619, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPRecycleBinItem", + "Id": 619 }, { - "Id": 620, - "CommandName": "Get-PnPRequestAccessEmails", "Command": "Get-PnPRequestAccessEmails", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPRequestAccessEmails", + "Id": 620 }, { - "Id": 621, - "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPRetentionLabel", + "Id": 621 }, { - "Id": 622, - "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPRetentionLabel", + "Id": 622 }, { - "Id": 623, - "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPRoleDefinition", + "Id": 623 }, { - "Id": 624, - "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition -Identity Read", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPRoleDefinition", + "Id": 624 }, { - "Id": 625, - "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPRoleDefinition", + "Id": 625 }, { - "Id": 626, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 626 }, { - "Id": 627, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 627 }, { - "Id": 628, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 628 }, { - "Id": 629, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 629 }, { - "Id": 630, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 630 }, { - "Id": 631, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 631 }, { - "Id": 632, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Rank": 7 + "Rank": 7, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 632 }, { - "Id": 633, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Rank": 8 + "Rank": 8, + "CommandName": "Get-PnPSearchConfiguration", + "Id": 633 }, { - "Id": 634, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 634 }, { - "Id": 635, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 635 }, { - "Id": 636, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 636 }, { - "Id": 637, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 637 }, { - "Id": 638, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 638 }, { - "Id": 639, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 639 }, { - "Id": 640, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Rank": 7 + "Rank": 7, + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 640 }, { - "Id": 641, - "CommandName": "Get-PnPSearchSettings", "Command": "Get-PnPSearchSettings", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSearchSettings", + "Id": 641 }, { - "Id": 642, - "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 642 }, { - "Id": 643, - "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 643 }, { - "Id": 644, - "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 644 }, { - "Id": 645, - "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 645 }, { - "Id": 646, - "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSharePointAddIn", + "Id": 646 }, { - "Id": 647, - "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSharePointAddIn", + "Id": 647 }, { - "Id": 648, - "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Command": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Id": 648 }, { - "Id": 649, - "CommandName": "Get-PnPSite", "Command": "Get-PnPSite", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSite", + "Id": 649 }, { - "Id": 650, - "CommandName": "Get-PnPSite", "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSite", + "Id": 650 }, { - "Id": 651, - "CommandName": "Get-PnPSiteClosure", "Command": "Get-PnPSiteClosure", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteClosure", + "Id": 651 }, { - "Id": 652, - "CommandName": "Get-PnPSiteCollectionAdmin", "Command": "Get-PnPSiteCollectionAdmin", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAdmin", + "Id": 652 }, { - "Id": 653, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 653 }, { - "Id": 654, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 654 }, { - "Id": 655, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 655 }, { - "Id": 656, - "CommandName": "Get-PnPSiteCollectionTermStore", "Command": "Get-PnPSiteCollectionTermStore", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteCollectionTermStore", + "Id": 656 }, { - "Id": 657, - "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteDesign", + "Id": 657 }, { - "Id": 658, - "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSiteDesign", + "Id": 658 }, { - "Id": 659, - "CommandName": "Get-PnPSiteDesignRights", "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteDesignRights", + "Id": 659 }, { - "Id": 660, - "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteDesignRun", + "Id": 660 }, { - "Id": 661, - "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSiteDesignRun", + "Id": 661 }, { - "Id": 662, - "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteDesignTask", + "Id": 662 }, { - "Id": 663, - "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSiteDesignTask", + "Id": 663 }, { - "Id": 664, - "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPSiteDesignTask", + "Id": 664 }, { - "Id": 665, - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteGroup", + "Id": 665 }, { - "Id": 666, - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSiteGroup", + "Id": 666 }, { - "Id": 667, - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPSiteGroup", + "Id": 667 }, { - "Id": 668, - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPSiteGroup", + "Id": 668 }, { - "Id": 669, - "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSitePolicy", + "Id": 669 }, { - "Id": 670, - "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -AllAvailable", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSitePolicy", + "Id": 670 }, { - "Id": 671, - "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPSitePolicy", + "Id": 671 }, { - "Id": 672, - "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteScript", + "Id": 672 }, { - "Id": 673, - "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSiteScript", + "Id": 673 }, { - "Id": 674, - "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 674 }, { - "Id": 675, - "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 675 }, { - "Id": 676, - "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 676 }, { - "Id": 677, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 677 }, { - "Id": 678, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 678 }, { - "Id": 679, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 679 }, { - "Id": 680, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 680 }, { - "Id": 681, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 681 }, { - "Id": 682, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 682 }, { - "Id": 683, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 683 }, { - "Id": 684, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 684 }, { - "Id": 685, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 685 }, { - "Id": 686, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 686 }, { - "Id": 687, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 687 }, { - "Id": 688, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -All", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 688 }, { - "Id": 689, - "CommandName": "Get-PnPSiteSensitivityLabel", "Command": "Get-PnPSiteSensitivityLabel", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteSensitivityLabel", + "Id": 689 }, { - "Id": 690, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteTemplate", + "Id": 690 }, { - "Id": 691, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSiteTemplate", + "Id": 691 }, { - "Id": 692, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.md", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPSiteTemplate", + "Id": 692 }, { - "Id": 693, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPSiteTemplate", + "Id": 693 }, { - "Id": 694, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPSiteTemplate", + "Id": 694 }, { - "Id": 695, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPSiteTemplate", + "Id": 695 }, { - "Id": 696, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Rank": 7 + "Rank": 7, + "CommandName": "Get-PnPSiteTemplate", + "Id": 696 }, { - "Id": 697, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Rank": 8 + "Rank": 8, + "CommandName": "Get-PnPSiteTemplate", + "Id": 697 }, { - "Id": 698, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Rank": 9 + "Rank": 9, + "CommandName": "Get-PnPSiteTemplate", + "Id": 698 }, { - "Id": 699, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Rank": 10 + "Rank": 10, + "CommandName": "Get-PnPSiteTemplate", + "Id": 699 }, { - "Id": 700, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Rank": 11 + "Rank": 11, + "CommandName": "Get-PnPSiteTemplate", + "Id": 700 }, { - "Id": 701, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Rank": 12 + "Rank": 12, + "CommandName": "Get-PnPSiteTemplate", + "Id": 701 }, { - "Id": 702, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", - "Rank": 13 + "Rank": 13, + "CommandName": "Get-PnPSiteTemplate", + "Id": 702 }, { - "Id": 703, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Rank": 14 + "Rank": 14, + "CommandName": "Get-PnPSiteTemplate", + "Id": 703 }, { - "Id": 704, - "CommandName": "Get-PnPSiteUserInvitations", "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteUserInvitations", + "Id": 704 }, { - "Id": 705, - "CommandName": "Get-PnPSiteVersionPolicy", "Command": "Get-PnPSiteVersionPolicy", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSiteVersionPolicy", + "Id": 705 }, { - "Id": 706, - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPStorageEntity", + "Id": 706 }, { - "Id": 707, - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPStorageEntity", + "Id": 707 }, { - "Id": 708, - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Scope Site", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPStorageEntity", + "Id": 708 }, { - "Id": 709, - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPStorageEntity", + "Id": 709 }, { - "Id": 710, - "CommandName": "Get-PnPStoredCredential", "Command": "Get-PnPStoredCredential -Name O365", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPStoredCredential", + "Id": 710 }, { - "Id": 711, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Id": 711 }, { - "Id": 712, - "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Id": 712 }, { - "Id": 713, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Id": 713 }, { - "Id": 714, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSubWeb", + "Id": 714 }, { - "Id": 715, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSubWeb", + "Id": 715 }, { - "Id": 716, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPSubWeb", + "Id": 716 }, { - "Id": 717, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPSubWeb", + "Id": 717 }, { - "Id": 718, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPSubWeb", + "Id": 718 }, { - "Id": 719, - "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSyntexModel", + "Id": 719 }, { - "Id": 720, - "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity 1", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPSyntexModel", + "Id": 720 }, { - "Id": 721, - "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPSyntexModel", + "Id": 721 }, { - "Id": 722, - "CommandName": "Get-PnPSyntexModelPublication", "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPSyntexModelPublication", + "Id": 722 }, { - "Id": 723, - "CommandName": "Get-PnPTaxonomyItem", "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTaxonomyItem", + "Id": 723 }, { - "Id": 724, - "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTeamsApp", + "Id": 724 }, { - "Id": 725, - "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTeamsApp", + "Id": 725 }, { - "Id": 726, - "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTeamsApp", + "Id": 726 }, { - "Id": 727, - "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTeamsChannel", + "Id": 727 }, { - "Id": 728, - "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTeamsChannel", + "Id": 728 }, { - "Id": 729, - "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTeamsChannel", + "Id": 729 }, { - "Id": 730, - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 730 }, { - "Id": 731, - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 731 }, { - "Id": 732, - "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 732 }, { - "Id": 733, - "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 733 }, { - "Id": 734, - "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 734 }, { - "Id": 735, - "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 735 }, { - "Id": 736, - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 736 }, { - "Id": 737, - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 737 }, { - "Id": 738, - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 738 }, { - "Id": 739, - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 739 }, { - "Id": 740, - "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 740 }, { - "Id": 741, - "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 741 }, { - "Id": 742, - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTeamsTab", + "Id": 742 }, { - "Id": 743, - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTeamsTab", + "Id": 743 }, { - "Id": 744, - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTeamsTab", + "Id": 744 }, { - "Id": 745, - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPTeamsTab", + "Id": 745 }, { - "Id": 746, - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPTeamsTab", + "Id": 746 }, { - "Id": 747, - "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTeamsTag", + "Id": 747 }, { - "Id": 748, - "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTeamsTag", + "Id": 748 }, { - "Id": 749, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTeamsTeam", + "Id": 749 }, { - "Id": 750, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTeamsTeam", + "Id": 750 }, { - "Id": 751, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTeamsTeam", + "Id": 751 }, { - "Id": 752, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPTeamsTeam", + "Id": 752 }, { - "Id": 753, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPTeamsTeam", + "Id": 753 }, { - "Id": 754, - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTeamsUser", + "Id": 754 }, { - "Id": 755, - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTeamsUser", + "Id": 755 }, { - "Id": 756, - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTeamsUser", + "Id": 756 }, { - "Id": 757, - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPTeamsUser", + "Id": 757 }, { - "Id": 758, - "CommandName": "Get-PnPTemporarilyDisableAppBar", "Command": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Id": 758 }, { - "Id": 759, - "CommandName": "Get-PnPTenant", "Command": "Get-PnPTenant", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenant", + "Id": 759 }, { - "Id": 760, - "CommandName": "Get-PnPTenantAppCatalogUrl", "Command": "Get-PnPTenantAppCatalogUrl", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Id": 760 }, { - "Id": 761, - "CommandName": "Get-PnPTenantCdnEnabled", "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantCdnEnabled", + "Id": 761 }, { - "Id": 762, - "CommandName": "Get-PnPTenantCdnOrigin", "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantCdnOrigin", + "Id": 762 }, { - "Id": 763, - "CommandName": "Get-PnPTenantCdnPolicies", "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantCdnPolicies", + "Id": 763 }, { - "Id": 764, - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 764 }, { - "Id": 765, - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 765 }, { - "Id": 766, - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 766 }, { - "Id": 767, - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 767 }, { - "Id": 768, - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantId", + "Id": 768 }, { - "Id": 769, - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId contoso", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTenantId", + "Id": 769 }, { - "Id": 770, - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTenantId", + "Id": 770 }, { - "Id": 771, - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPTenantId", + "Id": 771 }, { - "Id": 772, - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantInfo", + "Id": 772 }, { - "Id": 773, - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTenantInfo", + "Id": 773 }, { - "Id": 774, - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTenantInfo", + "Id": 774 }, { - "Id": 775, - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -CurrentTenant", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPTenantInfo", + "Id": 775 }, { - "Id": 776, - "CommandName": "Get-PnPTenantInstance", "Command": "Get-PnPTenantInstance", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantInstance", + "Id": 776 }, { - "Id": 777, - "CommandName": "Get-PnPTenantRecycleBinItem", "Command": "Get-PnPTenantRecycleBinItem", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantRecycleBinItem", + "Id": 777 }, { - "Id": 778, - "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantSequence", + "Id": 778 }, { - "Id": 779, - "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTenantSequence", + "Id": 779 }, { - "Id": 780, - "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 780 }, { - "Id": 781, - "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 781 }, { - "Id": 782, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantSite", + "Id": 782 }, { - "Id": 783, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Detailed", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTenantSite", + "Id": 783 }, { - "Id": 784, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTenantSite", + "Id": 784 }, { - "Id": 785, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPTenantSite", + "Id": 785 }, { - "Id": 786, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPTenantSite", + "Id": 786 }, { - "Id": 787, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPTenantSite", + "Id": 787 }, { - "Id": 788, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Rank": 7 + "Rank": 7, + "CommandName": "Get-PnPTenantSite", + "Id": 788 }, { - "Id": 789, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Rank": 8 + "Rank": 8, + "CommandName": "Get-PnPTenantSite", + "Id": 789 }, { - "Id": 790, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Rank": 9 + "Rank": 9, + "CommandName": "Get-PnPTenantSite", + "Id": 790 }, { - "Id": 791, - "CommandName": "Get-PnPTenantSyncClientRestriction", "Command": "Get-PnPTenantSyncClientRestriction", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Id": 791 }, { - "Id": 792, - "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantTemplate", + "Id": 792 }, { - "Id": 793, - "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTenantTemplate", + "Id": 793 }, { - "Id": 794, - "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTenantTemplate", + "Id": 794 }, { - "Id": 795, - "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTenantTheme", + "Id": 795 }, { - "Id": 796, - "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTenantTheme", + "Id": 796 }, { - "Id": 797, - "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTenantTheme", + "Id": 797 }, { - "Id": 798, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTerm", + "Id": 798 }, { - "Id": 799, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTerm", + "Id": 799 }, { - "Id": 800, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTerm", + "Id": 800 }, { - "Id": 801, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPTerm", + "Id": 801 }, { - "Id": 802, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPTerm", + "Id": 802 }, { - "Id": 803, - "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTermGroup", + "Id": 803 }, { - "Id": 804, - "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTermGroup", + "Id": 804 }, { - "Id": 805, - "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTermGroup", + "Id": 805 }, { - "Id": 806, - "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTermLabel", + "Id": 806 }, { - "Id": 807, - "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTermLabel", + "Id": 807 }, { - "Id": 808, - "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTermLabel", + "Id": 808 }, { - "Id": 809, - "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTermSet", + "Id": 809 }, { - "Id": 810, - "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTermSet", + "Id": 810 }, { - "Id": 811, - "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPTermSet", + "Id": 811 }, { - "Id": 812, - "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTheme", + "Id": 812 }, { - "Id": 813, - "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTheme", + "Id": 813 }, { - "Id": 814, - "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPTimeZoneId", + "Id": 814 }, { - "Id": 815, - "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPTimeZoneId", + "Id": 815 }, { - "Id": 816, - "CommandName": "Get-PnPUnfurlLink", "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPUnfurlLink", + "Id": 816 }, { - "Id": 817, - "CommandName": "Get-PnPUnifiedAuditLog", "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPUnifiedAuditLog", + "Id": 817 }, { - "Id": 818, - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 818 }, { - "Id": 819, - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 819 }, { - "Id": 820, - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 820 }, { - "Id": 821, - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 821 }, { - "Id": 822, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPUser", + "Id": 822 }, { - "Id": 823, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity 23", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPUser", + "Id": 823 }, { - "Id": 824, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPUser", + "Id": 824 }, { - "Id": 825, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Get-PnPUser", + "Id": 825 }, { - "Id": 826, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned", - "Rank": 5 + "Rank": 5, + "CommandName": "Get-PnPUser", + "Id": 826 }, { - "Id": 827, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Rank": 6 + "Rank": 6, + "CommandName": "Get-PnPUser", + "Id": 827 }, { - "Id": 828, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Rank": 7 + "Rank": 7, + "CommandName": "Get-PnPUser", + "Id": 828 }, { - "Id": 829, - "CommandName": "Get-PnPUserOneDriveQuota", "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPUserOneDriveQuota", + "Id": 829 }, { - "Id": 830, - "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPUserProfileProperty", + "Id": 830 }, { - "Id": 831, - "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPUserProfileProperty", + "Id": 831 }, { - "Id": 832, - "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPUserProfileProperty", + "Id": 832 }, { - "Id": 833, - "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPView", + "Id": 833 }, { - "Id": 834, - "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPView", + "Id": 834 }, { - "Id": 835, - "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPView", + "Id": 835 }, { - "Id": 836, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 836 }, { - "Id": 837, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 837 }, { - "Id": 838, - "CommandName": "Get-PnPWeb", "Command": "Get-PnPWeb", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPWeb", + "Id": 838 }, { - "Id": 839, - "CommandName": "Get-PnPWebHeader", "Command": "Get-PnPWebHeader", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPWebHeader", + "Id": 839 }, { - "Id": 840, - "CommandName": "Get-PnPWebhookSubscriptions", "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPWebhookSubscriptions", + "Id": 840 }, { - "Id": 841, - "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPWebPart", + "Id": 841 }, { - "Id": 842, - "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPWebPart", + "Id": 842 }, { - "Id": 843, - "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPWebPartProperty", + "Id": 843 }, { - "Id": 844, - "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPWebPartProperty", + "Id": 844 }, { - "Id": 845, - "CommandName": "Get-PnPWebPartXml", "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPWebPartXml", + "Id": 845 }, { - "Id": 846, - "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPWebTemplates", + "Id": 846 }, { - "Id": 847, - "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -LCID 1033", - "Rank": 2 + "Rank": 2, + "CommandName": "Get-PnPWebTemplates", + "Id": 847 }, { - "Id": 848, - "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Rank": 3 + "Rank": 3, + "CommandName": "Get-PnPWebTemplates", + "Id": 848 }, { - "Id": 849, - "CommandName": "Get-PnPWikiPageContent", "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Rank": 1 + "Rank": 1, + "CommandName": "Get-PnPWikiPageContent", + "Id": 849 }, { - "Id": 850, - "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Rank": 1 + "Rank": 1, + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 850 }, { - "Id": 851, - "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2 + "Rank": 2, + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 851 }, { - "Id": 852, - "CommandName": "Grant-PnPHubSiteRights", "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Grant-PnPHubSiteRights", + "Id": 852 }, { - "Id": 853, - "CommandName": "Grant-PnPSiteDesignRights", "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Grant-PnPSiteDesignRights", + "Id": 853 }, { - "Id": 854, - "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Id": 854 }, { - "Id": 855, - "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Rank": 1 + "Rank": 1, + "CommandName": "Import-PnPTaxonomy", + "Id": 855 }, { - "Id": 856, - "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Rank": 2 + "Rank": 2, + "CommandName": "Import-PnPTaxonomy", + "Id": 856 }, { - "Id": 857, - "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Rank": 3 + "Rank": 3, + "CommandName": "Import-PnPTaxonomy", + "Id": 857 }, { - "Id": 858, - "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Rank": 1 + "Rank": 1, + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 858 }, { - "Id": 859, - "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Rank": 2 + "Rank": 2, + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 859 }, { - "Id": 860, - "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Rank": 1 + "Rank": 1, + "CommandName": "Import-PnPTermSet", + "Id": 860 }, { - "Id": 861, - "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", - "Rank": 2 + "Rank": 2, + "CommandName": "Import-PnPTermSet", + "Id": 861 }, { - "Id": 862, - "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", - "Rank": 3 + "Rank": 3, + "CommandName": "Import-PnPTermSet", + "Id": 862 }, { - "Id": 863, - "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Rank": 1, + "CommandName": "Install-PnPApp", + "Id": 863 }, { - "Id": 864, - "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "Rank": 2, + "CommandName": "Install-PnPApp", + "Id": 864 }, { - "Id": 865, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "Rank": 1 + "Rank": 1, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 865 }, { - "Id": 866, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Rank": 2 + "Rank": 2, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 866 }, { - "Id": 867, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Rank": 3 + "Rank": 3, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 867 }, { - "Id": 868, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Rank": 4 + "Rank": 4, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 868 }, { - "Id": 869, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 869 }, { - "Id": 870, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", - "Rank": 6 + "Rank": 6, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 870 }, { - "Id": 871, - "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\"", - "Rank": 7 + "Rank": 7, + "CommandName": "Invoke-PnPGraphMethod", + "Id": 871 }, { - "Id": 872, - "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "Rank": 1, + "CommandName": "Invoke-PnPListDesign", + "Id": 872 }, { - "Id": 873, - "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Invoke-PnPListDesign", + "Id": 873 }, { - "Id": 874, - "CommandName": "Invoke-PnPQuery", "Command": "Invoke-PnPQuery -RetryCount 5", - "Rank": 1 + "Rank": 1, + "CommandName": "Invoke-PnPQuery", + "Id": 874 }, { - "Id": 875, - "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "Rank": 1, + "CommandName": "Invoke-PnPSiteDesign", + "Id": 875 }, { - "Id": 876, - "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Invoke-PnPSiteDesign", + "Id": 876 }, { - "Id": 877, - "CommandName": "Invoke-PnPSiteScript", "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Rank": 1 + "Rank": 1, + "CommandName": "Invoke-PnPSiteScript", + "Id": 877 }, { - "Id": 878, - "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", - "Rank": 1 + "Rank": 1, + "CommandName": "Invoke-PnPSiteSwap", + "Id": 878 }, { - "Id": 879, - "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", - "Rank": 2 + "Rank": 2, + "CommandName": "Invoke-PnPSiteSwap", + "Id": 879 }, { - "Id": 880, - "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", - "Rank": 3 + "Rank": 3, + "CommandName": "Invoke-PnPSiteSwap", + "Id": 880 }, { - "Id": 881, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Rank": 1 + "Rank": 1, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 881 }, { - "Id": 882, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Rank": 2 + "Rank": 2, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 882 }, { - "Id": 883, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3 + "Rank": 3, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 883 }, { - "Id": 884, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Rank": 4 + "Rank": 4, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 884 }, { - "Id": 885, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Rank": 5 + "Rank": 5, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 885 }, { - "Id": 886, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Rank": 6 + "Rank": 6, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 886 }, { - "Id": 887, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Rank": 7 + "Rank": 7, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 887 }, { - "Id": 888, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Rank": 8 + "Rank": 8, + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 888 }, { - "Id": 889, - "CommandName": "Invoke-PnPSPRestMethod", "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Rank": 1 + "Rank": 1, + "CommandName": "Invoke-PnPSPRestMethod", + "Id": 889 }, { - "Id": 890, - "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Rank": 1 + "Rank": 1, + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 890 }, { - "Id": 891, - "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 891 }, { - "Id": 892, - "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3 + "Rank": 3, + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 892 }, { - "Id": 893, - "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Rank": 1 + "Rank": 1, + "CommandName": "Invoke-PnPWebAction", + "Id": 893 }, { - "Id": 894, - "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Rank": 2 + "Rank": 2, + "CommandName": "Invoke-PnPWebAction", + "Id": 894 }, { - "Id": 895, - "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Measure-PnPList", + "Id": 895 }, { - "Id": 896, - "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Rank": 2 + "Rank": 2, + "CommandName": "Measure-PnPList", + "Id": 896 }, { - "Id": 897, - "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb", - "Rank": 1 + "Rank": 1, + "CommandName": "Measure-PnPWeb", + "Id": 897 }, { - "Id": 898, - "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb $web -Recursive", - "Rank": 2 + "Rank": 2, + "CommandName": "Measure-PnPWeb", + "Id": 898 }, { - "Id": 899, - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Move-PnPFile", + "Id": 899 }, { - "Id": 900, - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Rank": 2 + "Rank": 2, + "CommandName": "Move-PnPFile", + "Id": 900 }, { - "Id": 901, - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 3 + "Rank": 3, + "CommandName": "Move-PnPFile", + "Id": 901 }, { - "Id": 902, - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 4 + "Rank": 4, + "CommandName": "Move-PnPFile", + "Id": 902 }, { - "Id": 903, - "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Rank": 1 + "Rank": 1, + "CommandName": "Move-PnPFolder", + "Id": 903 }, { - "Id": 904, - "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Rank": 2 + "Rank": 2, + "CommandName": "Move-PnPFolder", + "Id": 904 }, { - "Id": 905, - "CommandName": "Move-PnPListItemToRecycleBin", "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1 + "Rank": 1, + "CommandName": "Move-PnPListItemToRecycleBin", + "Id": 905 }, { - "Id": 906, - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Rank": 1 + "Rank": 1, + "CommandName": "Move-PnPPageComponent", + "Id": 906 }, { - "Id": 907, - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Rank": 2 + "Rank": 2, + "CommandName": "Move-PnPPageComponent", + "Id": 907 }, { - "Id": 908, - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Rank": 3 + "Rank": 3, + "CommandName": "Move-PnPPageComponent", + "Id": 908 }, { - "Id": 909, - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "Rank": 4 + "Rank": 4, + "CommandName": "Move-PnPPageComponent", + "Id": 909 }, { - "Id": 910, - "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem", - "Rank": 1 + "Rank": 1, + "CommandName": "Move-PnpRecycleBinItem", + "Id": 910 }, { - "Id": 911, - "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Rank": 2 + "Rank": 2, + "CommandName": "Move-PnpRecycleBinItem", + "Id": 911 }, { - "Id": 912, - "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Force", - "Rank": 3 + "Rank": 3, + "CommandName": "Move-PnpRecycleBinItem", + "Id": 912 }, { - "Id": 913, - "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", - "Rank": 1 + "Rank": 1, + "CommandName": "Move-PnPTerm", + "Id": 913 }, { - "Id": 914, - "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Move-PnPTerm", + "Id": 914 }, { - "Id": 915, - "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Rank": 3 + "Rank": 3, + "CommandName": "Move-PnPTerm", + "Id": 915 }, { - "Id": 916, - "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", - "Rank": 1 + "Rank": 1, + "CommandName": "Move-PnPTermSet", + "Id": 916 }, { - "Id": 917, - "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Move-PnPTermSet", + "Id": 917 }, { - "Id": 918, - "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPAzureADGroup", + "Id": 918 }, { - "Id": 919, - "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Rank": 2 + "Rank": 2, + "CommandName": "New-PnPAzureADGroup", + "Id": 919 }, { - "Id": 920, - "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Rank": 3 + "Rank": 3, + "CommandName": "New-PnPAzureADGroup", + "Id": 920 }, { - "Id": 921, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 921 }, { - "Id": 922, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Rank": 2 + "Rank": 2, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 922 }, { - "Id": 923, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "Rank": 3 + "Rank": 3, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 923 }, { - "Id": 924, - "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPAzureCertificate", + "Id": 924 }, { - "Id": 925, - "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Rank": 2 + "Rank": 2, + "CommandName": "New-PnPAzureCertificate", + "Id": 925 }, { - "Id": 926, - "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "Rank": 3 + "Rank": 3, + "CommandName": "New-PnPAzureCertificate", + "Id": 926 }, { - "Id": 927, - "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()", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPGraphSubscription", + "Id": 927 }, { - "Id": 928, - "CommandName": "New-PnPGraphSubscription", "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", - "Rank": 2 + "Rank": 2, + "CommandName": "New-PnPGraphSubscription", + "Id": 928 }, { - "Id": 929, - "CommandName": "New-PnPGroup", "Command": "New-PnPGroup -Title \"My Site Users\"", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPGroup", + "Id": 929 }, { - "Id": 930, - "CommandName": "New-PnPList", "Command": "New-PnPList -Title Announcements -Template Announcements", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPList", + "Id": 930 }, { - "Id": 931, - "CommandName": "New-PnPList", "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Rank": 2 + "Rank": 2, + "CommandName": "New-PnPList", + "Id": 931 }, { - "Id": 932, - "CommandName": "New-PnPList", "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Rank": 3 + "Rank": 3, + "CommandName": "New-PnPList", + "Id": 932 }, { - "Id": 933, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 933 }, { - "Id": 934, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "Rank": 2 + "Rank": 2, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 934 }, { - "Id": 935, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Rank": 3 + "Rank": 3, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 935 }, { - "Id": 936, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Rank": 4 + "Rank": 4, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 936 }, { - "Id": 937, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Rank": 5 + "Rank": 5, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 937 }, { - "Id": 938, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6 + "Rank": 6, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 938 }, { - "Id": 939, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "Rank": 7 + "Rank": 7, + "CommandName": "New-PnPMicrosoft365Group", + "Id": 939 }, { - "Id": 940, - "CommandName": "New-PnPMicrosoft365GroupSettings", "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Id": 940 }, { - "Id": 941, - "CommandName": "New-PnPMicrosoft365GroupSettings", "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "Rank": 2 + "Rank": 2, + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Id": 941 }, { - "Id": 942, - "CommandName": "New-PnPPersonalSite", "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPPersonalSite", + "Id": 942 }, { - "Id": 943, - "CommandName": "New-PnPPlannerPlan", "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPPlannerPlan", + "Id": 943 }, { - "Id": 944, - "CommandName": "New-PnPSdnProvider", "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPSdnProvider", + "Id": 944 }, { - "Id": 945, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPSite", + "Id": 945 }, { - "Id": 946, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Rank": 2 + "Rank": 2, + "CommandName": "New-PnPSite", + "Id": 946 }, { - "Id": 947, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Rank": 3 + "Rank": 3, + "CommandName": "New-PnPSite", + "Id": 947 }, { - "Id": 948, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 4 + "Rank": 4, + "CommandName": "New-PnPSite", + "Id": 948 }, { - "Id": 949, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 5 + "Rank": 5, + "CommandName": "New-PnPSite", + "Id": 949 }, { - "Id": 950, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 6 + "Rank": 6, + "CommandName": "New-PnPSite", + "Id": 950 }, { - "Id": 951, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Rank": 7 + "Rank": 7, + "CommandName": "New-PnPSite", + "Id": 951 }, { - "Id": 952, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Rank": 8 + "Rank": 8, + "CommandName": "New-PnPSite", + "Id": 952 }, { - "Id": 953, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Rank": 9 + "Rank": 9, + "CommandName": "New-PnPSite", + "Id": 953 }, { - "Id": 954, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Rank": 10 + "Rank": 10, + "CommandName": "New-PnPSite", + "Id": 954 }, { - "Id": 955, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 11 + "Rank": 11, + "CommandName": "New-PnPSite", + "Id": 955 }, { - "Id": 956, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Rank": 12 + "Rank": 12, + "CommandName": "New-PnPSite", + "Id": 956 }, { - "Id": 957, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 13 + "Rank": 13, + "CommandName": "New-PnPSite", + "Id": 957 }, { - "Id": 958, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 14 + "Rank": 14, + "CommandName": "New-PnPSite", + "Id": 958 }, { - "Id": 959, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 15 + "Rank": 15, + "CommandName": "New-PnPSite", + "Id": 959 }, { - "Id": 960, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "Rank": 16 + "Rank": 16, + "CommandName": "New-PnPSite", + "Id": 960 }, { - "Id": 961, - "CommandName": "New-PnPSiteCollectionTermStore", "Command": "New-PnPSiteCollectionTermStore", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPSiteCollectionTermStore", + "Id": 961 }, { - "Id": 962, - "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPSiteGroup", + "Id": 962 }, { - "Id": 963, - "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Rank": 2 + "Rank": 2, + "CommandName": "New-PnPSiteGroup", + "Id": 963 }, { - "Id": 964, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 964 }, { - "Id": 965, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Rank": 2 + "Rank": 2, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 965 }, { - "Id": 966, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Rank": 3 + "Rank": 3, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 966 }, { - "Id": 967, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Rank": 4 + "Rank": 4, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 967 }, { - "Id": 968, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "Rank": 5 + "Rank": 5, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 968 }, { - "Id": 969, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 6 + "Rank": 6, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 969 }, { - "Id": 970, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Rank": 7 + "Rank": 7, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 970 }, { - "Id": 971, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Rank": 8 + "Rank": 8, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 971 }, { - "Id": 972, - "CommandName": "New-PnPTeamsApp", "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPTeamsApp", + "Id": 972 }, { - "Id": 973, - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPTeamsTeam", + "Id": 973 }, { - "Id": 974, - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Rank": 2 + "Rank": 2, + "CommandName": "New-PnPTeamsTeam", + "Id": 974 }, { - "Id": 975, - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Rank": 3 + "Rank": 3, + "CommandName": "New-PnPTeamsTeam", + "Id": 975 }, { - "Id": 976, - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Rank": 4 + "Rank": 4, + "CommandName": "New-PnPTeamsTeam", + "Id": 976 }, { - "Id": 977, - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", - "Rank": 5 + "Rank": 5, + "CommandName": "New-PnPTeamsTeam", + "Id": 977 }, { - "Id": 978, - "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\"", - "Rank": 6 + "Rank": 6, + "CommandName": "New-PnPTeamsTeam", + "Id": 978 }, { - "Id": 979, - "CommandName": "New-PnPTenantSite", "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPTenantSite", + "Id": 979 }, { - "Id": 980, - "CommandName": "New-PnPTenantSite", "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "Rank": 2 + "Rank": 2, + "CommandName": "New-PnPTenantSite", + "Id": 980 }, { - "Id": 981, - "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPTerm", + "Id": 981 }, { - "Id": 982, - "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2 + "Rank": 2, + "CommandName": "New-PnPTerm", + "Id": 982 }, { - "Id": 983, - "CommandName": "New-PnPTermGroup", "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPTermGroup", + "Id": 983 }, { - "Id": 984, - "CommandName": "New-PnPTermLabel", "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPTermLabel", + "Id": 984 }, { - "Id": 985, - "CommandName": "New-PnPTermSet", "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPTermSet", + "Id": 985 }, { - "Id": 986, - "CommandName": "New-PnPUPABulkImportJob", "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPUPABulkImportJob", + "Id": 986 }, { - "Id": 987, - "CommandName": "New-PnPUPABulkImportJob", "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", - "Rank": 2 + "Rank": 2, + "CommandName": "New-PnPUPABulkImportJob", + "Id": 987 }, { - "Id": 988, - "CommandName": "New-PnPUser", "Command": "New-PnPUser -LoginName user@company.com", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPUser", + "Id": 988 }, { - "Id": 989, - "CommandName": "New-PnPWeb", "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "Rank": 1 + "Rank": 1, + "CommandName": "New-PnPWeb", + "Id": 989 }, { - "Id": 990, - "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 1 + "Rank": 1, + "CommandName": "Publish-PnPApp", + "Id": 990 }, { - "Id": 991, - "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Rank": 2 + "Rank": 2, + "CommandName": "Publish-PnPApp", + "Id": 991 }, { - "Id": 992, - "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", - "Rank": 1 + "Rank": 1, + "CommandName": "Publish-PnPCompanyApp", + "Id": 992 }, { - "Id": 993, - "CommandName": "Publish-PnPContentType", "Command": "Publish-PnPContentType -ContentType 0x0101", - "Rank": 1 + "Rank": 1, + "CommandName": "Publish-PnPContentType", + "Id": 993 }, { - "Id": 994, - "CommandName": "Publish-PnPSyntexModel", "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Publish-PnPSyntexModel", + "Id": 994 }, { - "Id": 995, - "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", - "Rank": 2 + "Rank": 2, + "CommandName": "Publish-PnPSyntexModel", + "Id": 995 }, { - "Id": 996, - "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Rank": 1 + "Rank": 1, + "CommandName": "Read-PnPSiteTemplate", + "Id": 996 }, { - "Id": 997, - "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Rank": 2 + "Rank": 2, + "CommandName": "Read-PnPSiteTemplate", + "Id": 997 }, { - "Id": 998, - "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Xml $xml", - "Rank": 3 + "Rank": 3, + "CommandName": "Read-PnPSiteTemplate", + "Id": 998 }, { - "Id": 999, - "CommandName": "Read-PnPTenantTemplate", "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Rank": 1 + "Rank": 1, + "CommandName": "Read-PnPTenantTemplate", + "Id": 999 }, { - "Id": 1000, - "CommandName": "Register-PnPAppCatalogSite", "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Rank": 1 + "Rank": 1, + "CommandName": "Register-PnPAppCatalogSite", + "Id": 1000 }, { - "Id": 1001, - "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\")", - "Rank": 1 + "Rank": 1, + "CommandName": "Register-PnPAzureADApp", + "Id": 1001 }, { - "Id": 1002, - "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\")", - "Rank": 2 + "Rank": 2, + "CommandName": "Register-PnPAzureADApp", + "Id": 1002 }, { - "Id": 1003, - "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\")", - "Rank": 3 + "Rank": 3, + "CommandName": "Register-PnPAzureADApp", + "Id": 1003 }, { - "Id": 1004, - "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\")", - "Rank": 4 + "Rank": 4, + "CommandName": "Register-PnPAzureADApp", + "Id": 1004 }, { - "Id": 1005, - "CommandName": "Register-PnPAzureADApp", "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "Rank": 5 + "Rank": 5, + "CommandName": "Register-PnPAzureADApp", + "Id": 1005 }, { - "Id": 1006, - "CommandName": "Register-PnPAzureADApp", "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "Rank": 6 + "Rank": 6, + "CommandName": "Register-PnPAzureADApp", + "Id": 1006 }, { - "Id": 1007, - "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", - "Rank": 7 + "Rank": 7, + "CommandName": "Register-PnPAzureADApp", + "Id": 1007 }, { - "Id": 1008, - "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Register-PnPHubSite", + "Id": 1008 }, { - "Id": 1009, - "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Register-PnPHubSite", + "Id": 1009 }, { - "Id": 1010, - "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess", - "Rank": 1 + "Rank": 1, + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1010 }, { - "Id": 1011, - "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Rank": 2 + "Rank": 2, + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1011 }, { - "Id": 1012, - "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Rank": 3 + "Rank": 3, + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1012 }, { - "Id": 1013, - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1013 }, { - "Id": 1014, - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1014 }, { - "Id": 1015, - "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPAlert", + "Id": 1015 }, { - "Id": 1016, - "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPAlert", + "Id": 1016 }, { - "Id": 1017, - "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPApp", + "Id": 1017 }, { - "Id": 1018, - "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPApp", + "Id": 1018 }, { - "Id": 1019, - "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1019 }, { - "Id": 1020, - "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1020 }, { - "Id": 1021, - "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1021 }, { - "Id": 1022, - "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1022 }, { - "Id": 1023, - "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPAzureADApp", + "Id": 1023 }, { - "Id": 1024, - "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPAzureADApp", + "Id": 1024 }, { - "Id": 1025, - "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPAzureADGroup", + "Id": 1025 }, { - "Id": 1026, - "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $group", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPAzureADGroup", + "Id": 1026 }, { - "Id": 1027, - "CommandName": "Remove-PnPAzureADGroupMember", "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupMember", + "Id": 1027 }, { - "Id": 1028, - "CommandName": "Remove-PnPAzureADGroupOwner", "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupOwner", + "Id": 1028 }, { - "Id": 1029, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1029 }, { - "Id": 1030, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1030 }, { - "Id": 1031, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1031 }, { - "Id": 1032, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1032 }, { - "Id": 1033, - "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPContentType", + "Id": 1033 }, { - "Id": 1034, - "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPContentType", + "Id": 1034 }, { - "Id": 1035, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1035 }, { - "Id": 1036, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1036 }, { - "Id": 1037, - "CommandName": "Remove-PnPContentTypeFromList", "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromList", + "Id": 1037 }, { - "Id": 1038, - "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPCustomAction", + "Id": 1038 }, { - "Id": 1039, - "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPCustomAction", + "Id": 1039 }, { - "Id": 1040, - "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPCustomAction", + "Id": 1040 }, { - "Id": 1041, - "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Id": 1041 }, { - "Id": 1042, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1042 }, { - "Id": 1043, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1043 }, { - "Id": 1044, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1044 }, { - "Id": 1045, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList", - "Rank": 4 + "Rank": 4, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1045 }, { - "Id": 1046, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver", - "Rank": 5 + "Rank": 5, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1046 }, { - "Id": 1047, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Site", - "Rank": 6 + "Rank": 6, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1047 }, { - "Id": 1048, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Web", - "Rank": 7 + "Rank": 7, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1048 }, { - "Id": 1049, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope All", - "Rank": 8 + "Rank": 8, + "CommandName": "Remove-PnPEventReceiver", + "Id": 1049 }, { - "Id": 1050, - "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -Identity \"Speakers\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPField", + "Id": 1050 }, { - "Id": 1051, - "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPField", + "Id": 1051 }, { - "Id": 1052, - "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1052 }, { - "Id": 1053, - "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1053 }, { - "Id": 1054, - "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPFile", + "Id": 1054 }, { - "Id": 1055, - "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPFile", + "Id": 1055 }, { - "Id": 1056, - "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPFile", + "Id": 1056 }, { - "Id": 1057, - "CommandName": "Remove-PnPFileFromSiteTemplate", "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Id": 1057 }, { - "Id": 1058, - "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1058 }, { - "Id": 1059, - "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1059 }, { - "Id": 1060, - "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPFileVersion", + "Id": 1060 }, { - "Id": 1061, - "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPFileVersion", + "Id": 1061 }, { - "Id": 1062, - "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPFileVersion", + "Id": 1062 }, { - "Id": 1063, - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPFlowOwner", + "Id": 1063 }, { - "Id": 1064, - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPFlowOwner", + "Id": 1064 }, { - "Id": 1065, - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPFlowOwner", + "Id": 1065 }, { - "Id": 1066, - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "Rank": 4 + "Rank": 4, + "CommandName": "Remove-PnPFlowOwner", + "Id": 1066 }, { - "Id": 1067, - "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPFolder", + "Id": 1067 }, { - "Id": 1068, - "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPFolder", + "Id": 1068 }, { - "Id": 1069, - "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1069 }, { - "Id": 1070, - "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1070 }, { - "Id": 1071, - "CommandName": "Remove-PnPGraphSubscription", "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPGraphSubscription", + "Id": 1071 }, { - "Id": 1072, - "CommandName": "Remove-PnPGroup", "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPGroup", + "Id": 1072 }, { - "Id": 1073, - "CommandName": "Remove-PnPGroupMember", "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPGroupMember", + "Id": 1073 }, { - "Id": 1074, - "CommandName": "Remove-PnPHomeSite", "Command": "Remove-PnPHomeSite", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPHomeSite", + "Id": 1074 }, { - "Id": 1075, - "CommandName": "Remove-PnPHubSiteAssociation", "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPHubSiteAssociation", + "Id": 1075 }, { - "Id": 1076, - "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1076 }, { - "Id": 1077, - "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1077 }, { - "Id": 1078, - "CommandName": "Remove-PnPIndexedProperty", "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPIndexedProperty", + "Id": 1078 }, { - "Id": 1079, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1079 }, { - "Id": 1080, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1080 }, { - "Id": 1081, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1081 }, { - "Id": 1082, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Rank": 4 + "Rank": 4, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1082 }, { - "Id": 1083, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Rank": 5 + "Rank": 5, + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1083 }, { - "Id": 1084, - "CommandName": "Remove-PnPKnowledgeHubSite", "Command": "Remove-PnPKnowledgeHubSite", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPKnowledgeHubSite", + "Id": 1084 }, { - "Id": 1085, - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPList", + "Id": 1085 }, { - "Id": 1086, - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Force", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPList", + "Id": 1086 }, { - "Id": 1087, - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPList", + "Id": 1087 }, { - "Id": 1088, - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Rank": 4 + "Rank": 4, + "CommandName": "Remove-PnPList", + "Id": 1088 }, { - "Id": 1089, - "CommandName": "Remove-PnPListDesign", "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPListDesign", + "Id": 1089 }, { - "Id": 1090, - "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPListItem", + "Id": 1090 }, { - "Id": 1091, - "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPListItem", + "Id": 1091 }, { - "Id": 1092, - "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPListItem", + "Id": 1092 }, { - "Id": 1093, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1093 }, { - "Id": 1094, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1094 }, { - "Id": 1095, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1095 }, { - "Id": 1096, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Rank": 4 + "Rank": 4, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1096 }, { - "Id": 1097, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Rank": 5 + "Rank": 5, + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1097 }, { - "Id": 1098, - "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPListItemVersion", + "Id": 1098 }, { - "Id": 1099, - "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPListItemVersion", + "Id": 1099 }, { - "Id": 1100, - "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1100 }, { - "Id": 1101, - "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1101 }, { - "Id": 1102, - "CommandName": "Remove-PnPMicrosoft365GroupMember", "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Id": 1102 }, { - "Id": 1103, - "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Id": 1103 }, { - "Id": 1104, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1104 }, { - "Id": 1105, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1105 }, { - "Id": 1106, - "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Identity 1032", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPNavigationNode", + "Id": 1106 }, { - "Id": 1107, - "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPNavigationNode", + "Id": 1107 }, { - "Id": 1108, - "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPNavigationNode", + "Id": 1108 }, { - "Id": 1109, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1109 }, { - "Id": 1110, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1110 }, { - "Id": 1111, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1111 }, { - "Id": 1112, - "CommandName": "Remove-PnPOrgNewsSite", "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPOrgNewsSite", + "Id": 1112 }, { - "Id": 1113, - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPPage", + "Id": 1113 }, { - "Id": 1114, - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPPage", + "Id": 1114 }, { - "Id": 1115, - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage $page", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPPage", + "Id": 1115 }, { - "Id": 1116, - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Rank": 4 + "Rank": 4, + "CommandName": "Remove-PnPPage", + "Id": 1116 }, { - "Id": 1117, - "CommandName": "Remove-PnPPageComponent", "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPPageComponent", + "Id": 1117 }, { - "Id": 1118, - "CommandName": "Remove-PnPPlannerBucket", "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPPlannerBucket", + "Id": 1118 }, { - "Id": 1119, - "CommandName": "Remove-PnPPlannerPlan", "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPPlannerPlan", + "Id": 1119 }, { - "Id": 1120, - "CommandName": "Remove-PnPPlannerRoster", "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPPlannerRoster", + "Id": 1120 }, { - "Id": 1121, - "CommandName": "Remove-PnPPlannerRosterMember", "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPPlannerRosterMember", + "Id": 1121 }, { - "Id": 1122, - "CommandName": "Remove-PnPPlannerTask", "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPPlannerTask", + "Id": 1122 }, { - "Id": 1123, - "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1123 }, { - "Id": 1124, - "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1124 }, { - "Id": 1125, - "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1125 }, { - "Id": 1126, - "CommandName": "Remove-PnPPublishingImageRendition", "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPPublishingImageRendition", + "Id": 1126 }, { - "Id": 1127, - "CommandName": "Remove-PnPRoleDefinition", "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPRoleDefinition", + "Id": 1127 }, { - "Id": 1128, - "CommandName": "Remove-PnPSdnProvider", "Command": "Remove-PnPSdnProvider -Confirm:false", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPSdnProvider", + "Id": 1128 }, { - "Id": 1129, - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1129 }, { - "Id": 1130, - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1130 }, { - "Id": 1131, - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1131 }, { - "Id": 1132, - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4 + "Rank": 4, + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1132 }, { - "Id": 1133, - "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1133 }, { - "Id": 1134, - "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1134 }, { - "Id": 1135, - "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Id": 1135 }, { - "Id": 1136, - "CommandName": "Remove-PnPSiteCollectionTermStore", "Command": "Remove-PnPSiteCollectionTermStore", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Id": 1136 }, { - "Id": 1137, - "CommandName": "Remove-PnPSiteDesign", "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPSiteDesign", + "Id": 1137 }, { - "Id": 1138, - "CommandName": "Remove-PnPSiteDesignTask", "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPSiteDesignTask", + "Id": 1138 }, { - "Id": 1139, - "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPSiteGroup", + "Id": 1139 }, { - "Id": 1140, - "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPSiteGroup", + "Id": 1140 }, { - "Id": 1141, - "CommandName": "Remove-PnPSiteScript", "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPSiteScript", + "Id": 1141 }, { - "Id": 1142, - "CommandName": "Remove-PnPSiteUserInvitations", "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPSiteUserInvitations", + "Id": 1142 }, { - "Id": 1143, - "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPStorageEntity", + "Id": 1143 }, { - "Id": 1144, - "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPStorageEntity", + "Id": 1144 }, { - "Id": 1145, - "CommandName": "Remove-PnPStoredCredential", "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPStoredCredential", + "Id": 1145 }, { - "Id": 1146, - "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1146 }, { - "Id": 1147, - "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1147 }, { - "Id": 1148, - "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTeamsApp", + "Id": 1148 }, { - "Id": 1149, - "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPTeamsApp", + "Id": 1149 }, { - "Id": 1150, - "CommandName": "Remove-PnPTeamsChannel", "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTeamsChannel", + "Id": 1150 }, { - "Id": 1151, - "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1151 }, { - "Id": 1152, - "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1152 }, { - "Id": 1153, - "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1153 }, { - "Id": 1154, - "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTeamsTab", + "Id": 1154 }, { - "Id": 1155, - "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPTeamsTab", + "Id": 1155 }, { - "Id": 1156, - "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPTeamsTab", + "Id": 1156 }, { - "Id": 1157, - "CommandName": "Remove-PnPTeamsTag", "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTeamsTag", + "Id": 1157 }, { - "Id": 1158, - "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1158 }, { - "Id": 1159, - "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1159 }, { - "Id": 1160, - "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTeamsUser", + "Id": 1160 }, { - "Id": 1161, - "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPTeamsUser", + "Id": 1161 }, { - "Id": 1162, - "CommandName": "Remove-PnPTenantCdnOrigin", "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTenantCdnOrigin", + "Id": 1162 }, { - "Id": 1163, - "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1163 }, { - "Id": 1164, - "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1164 }, { - "Id": 1165, - "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTenantSite", + "Id": 1165 }, { - "Id": 1166, - "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPTenantSite", + "Id": 1166 }, { - "Id": 1167, - "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPTenantSite", + "Id": 1167 }, { - "Id": 1168, - "CommandName": "Remove-PnPTenantSyncClientRestriction", "Command": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Id": 1168 }, { - "Id": 1169, - "CommandName": "Remove-PnPTenantTheme", "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTenantTheme", + "Id": 1169 }, { - "Id": 1170, - "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTerm", + "Id": 1170 }, { - "Id": 1171, - "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPTerm", + "Id": 1171 }, { - "Id": 1172, - "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTermGroup", + "Id": 1172 }, { - "Id": 1173, - "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPTermGroup", + "Id": 1173 }, { - "Id": 1174, - "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPTermGroup", + "Id": 1174 }, { - "Id": 1175, - "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPTermLabel", + "Id": 1175 }, { - "Id": 1176, - "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPTermLabel", + "Id": 1176 }, { - "Id": 1177, - "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity 23", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPUser", + "Id": 1177 }, { - "Id": 1178, - "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPUser", + "Id": 1178 }, { - "Id": 1179, - "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Rank": 3 + "Rank": 3, + "CommandName": "Remove-PnPUser", + "Id": 1179 }, { - "Id": 1180, - "CommandName": "Remove-PnPUserInfo", "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPUserInfo", + "Id": 1180 }, { - "Id": 1181, - "CommandName": "Remove-PnPUserProfile", "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPUserProfile", + "Id": 1181 }, { - "Id": 1182, - "CommandName": "Remove-PnPView", "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPView", + "Id": 1182 }, { - "Id": 1183, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Id": 1183 }, { - "Id": 1184, - "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity projectA", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPWeb", + "Id": 1184 }, { - "Id": 1185, - "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPWeb", + "Id": 1185 }, { - "Id": 1186, - "CommandName": "Remove-PnPWebhookSubscription", "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPWebhookSubscription", + "Id": 1186 }, { - "Id": 1187, - "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPWebPart", + "Id": 1187 }, { - "Id": 1188, - "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Rank": 2 + "Rank": 2, + "CommandName": "Remove-PnPWebPart", + "Id": 1188 }, { - "Id": 1189, - "CommandName": "Remove-PnPWikiPage", "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Rank": 1 + "Rank": 1, + "CommandName": "Remove-PnPWikiPage", + "Id": 1189 }, { - "Id": 1190, - "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Rank": 1 + "Rank": 1, + "CommandName": "Rename-PnPFile", + "Id": 1190 }, { - "Id": 1191, - "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Rank": 2 + "Rank": 2, + "CommandName": "Rename-PnPFile", + "Id": 1191 }, { - "Id": 1192, - "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Rank": 3 + "Rank": 3, + "CommandName": "Rename-PnPFile", + "Id": 1192 }, { - "Id": 1193, - "CommandName": "Rename-PnPFolder", "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Rank": 1 + "Rank": 1, + "CommandName": "Rename-PnPFolder", + "Id": 1193 }, { - "Id": 1194, - "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Repair-PnPSite", + "Id": 1194 }, { - "Id": 1195, - "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Repair-PnPSite", + "Id": 1195 }, { - "Id": 1196, - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken", - "Rank": 1 + "Rank": 1, + "CommandName": "Request-PnPAccessToken", + "Id": 1196 }, { - "Id": 1197, - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Rank": 2 + "Rank": 2, + "CommandName": "Request-PnPAccessToken", + "Id": 1197 }, { - "Id": 1198, - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Rank": 3 + "Rank": 3, + "CommandName": "Request-PnPAccessToken", + "Id": 1198 }, { - "Id": 1199, - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Rank": 4 + "Rank": 4, + "CommandName": "Request-PnPAccessToken", + "Id": 1199 }, { - "Id": 1200, - "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Rank": 1 + "Rank": 1, + "CommandName": "Request-PnPPersonalSite", + "Id": 1200 }, { - "Id": 1201, - "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Request-PnPPersonalSite", + "Id": 1201 }, { - "Id": 1202, - "CommandName": "Request-PnPReIndexList", "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Request-PnPReIndexList", + "Id": 1202 }, { - "Id": 1203, - "CommandName": "Request-PnPReIndexWeb", "Command": "Request-PnPReIndexWeb", - "Rank": 1 + "Rank": 1, + "CommandName": "Request-PnPReIndexWeb", + "Id": 1203 }, { - "Id": 1204, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1204 }, { - "Id": 1205, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1205 }, { - "Id": 1206, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Rank": 3 + "Rank": 3, + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1206 }, { - "Id": 1207, - "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Reset-PnPFileVersion", + "Id": 1207 }, { - "Id": 1208, - "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Reset-PnPFileVersion", + "Id": 1208 }, { - "Id": 1209, - "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Reset-PnPLabel", + "Id": 1209 }, { - "Id": 1210, - "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Rank": 2 + "Rank": 2, + "CommandName": "Reset-PnPLabel", + "Id": 1210 }, { - "Id": 1211, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1 + "Rank": 1, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1211 }, { - "Id": 1212, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Rank": 1 + "Rank": 1, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Id": 1212 }, { - "Id": 1213, - "CommandName": "Resolve-PnPFolder", "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Resolve-PnPFolder", + "Id": 1213 }, { - "Id": 1214, - "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1 + "Rank": 1, + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Id": 1214 }, { - "Id": 1215, - "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1 + "Rank": 1, + "CommandName": "Restore-PnPFileVersion", + "Id": 1215 }, { - "Id": 1216, - "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Rank": 2 + "Rank": 2, + "CommandName": "Restore-PnPFileVersion", + "Id": 1216 }, { - "Id": 1217, - "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Restore-PnPFileVersion", + "Id": 1217 }, { - "Id": 1218, - "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1 + "Rank": 1, + "CommandName": "Restore-PnPListItemVersion", + "Id": 1218 }, { - "Id": 1219, - "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Restore-PnPListItemVersion", + "Id": 1219 }, { - "Id": 1220, - "CommandName": "Restore-PnPRecycleBinItem", "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1 + "Rank": 1, + "CommandName": "Restore-PnPRecycleBinItem", + "Id": 1220 }, { - "Id": 1221, - "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1221 }, { - "Id": 1222, - "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2 + "Rank": 2, + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1222 }, { - "Id": 1223, - "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Restore-PnPTenantSite", + "Id": 1223 }, { - "Id": 1224, - "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2 + "Rank": 2, + "CommandName": "Restore-PnPTenantSite", + "Id": 1224 }, { - "Id": 1225, - "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Rank": 3 + "Rank": 3, + "CommandName": "Restore-PnPTenantSite", + "Id": 1225 }, { - "Id": 1226, - "CommandName": "Revoke-PnPAzureADAppSitePermission", "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Rank": 1 + "Rank": 1, + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Id": 1226 }, { - "Id": 1227, - "CommandName": "Revoke-PnPHubSiteRights", "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Revoke-PnPHubSiteRights", + "Id": 1227 }, { - "Id": 1228, - "CommandName": "Revoke-PnPSiteDesignRights", "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Revoke-PnPSiteDesignRights", + "Id": 1228 }, { - "Id": 1229, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Id": 1229 }, { - "Id": 1230, - "CommandName": "Revoke-PnPUserSession", "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Rank": 1 + "Rank": 1, + "CommandName": "Revoke-PnPUserSession", + "Id": 1230 }, { - "Id": 1231, - "CommandName": "Save-PnPPageConversionLog", "Command": "Save-PnPPageConversionLog", - "Rank": 1 + "Rank": 1, + "CommandName": "Save-PnPPageConversionLog", + "Id": 1231 }, { - "Id": 1232, - "CommandName": "Save-PnPSiteTemplate", "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Rank": 1 + "Rank": 1, + "CommandName": "Save-PnPSiteTemplate", + "Id": 1232 }, { - "Id": 1233, - "CommandName": "Save-PnPTenantTemplate", "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Rank": 1 + "Rank": 1, + "CommandName": "Save-PnPTenantTemplate", + "Id": 1233 }, { - "Id": 1234, - "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Send-PnPMail", + "Id": 1234 }, { - "Id": 1235, - "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", - "Rank": 2 + "Rank": 2, + "CommandName": "Send-PnPMail", + "Id": 1235 }, { - "Id": 1236, - "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Send-PnPMail", + "Id": 1236 }, { - "Id": 1237, - "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", - "Rank": 4 + "Rank": 4, + "CommandName": "Send-PnPMail", + "Id": 1237 }, { - "Id": 1238, - "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", - "Rank": 5 + "Rank": 5, + "CommandName": "Send-PnPMail", + "Id": 1238 }, { - "Id": 1239, - "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\"", - "Rank": 6 + "Rank": 6, + "CommandName": "Send-PnPMail", + "Id": 1239 }, { - "Id": 1240, - "CommandName": "Set-PnPAdaptiveScopeProperty", "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Id": 1240 }, { - "Id": 1241, - "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1241 }, { - "Id": 1242, - "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1242 }, { - "Id": 1243, - "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -On", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPAppSideLoading", + "Id": 1243 }, { - "Id": 1244, - "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -Off", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPAppSideLoading", + "Id": 1244 }, { - "Id": 1245, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -EnableAll", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPAuditing", + "Id": 1245 }, { - "Id": 1246, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -DisableAll", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPAuditing", + "Id": 1246 }, { - "Id": 1247, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPAuditing", + "Id": 1247 }, { - "Id": 1248, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -TrimAuditLog", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPAuditing", + "Id": 1248 }, { - "Id": 1249, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Rank": 5 + "Rank": 5, + "CommandName": "Set-PnPAuditing", + "Id": 1249 }, { - "Id": 1250, - "CommandName": "Set-PnPAvailablePageLayouts", "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPAvailablePageLayouts", + "Id": 1250 }, { - "Id": 1251, - "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1251 }, { - "Id": 1252, - "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1252 }, { - "Id": 1253, - "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPAzureADGroup", + "Id": 1253 }, { - "Id": 1254, - "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPAzureADGroup", + "Id": 1254 }, { - "Id": 1255, - "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPAzureADGroup", + "Id": 1255 }, { - "Id": 1256, - "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1256 }, { - "Id": 1257, - "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1257 }, { - "Id": 1258, - "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1258 }, { - "Id": 1259, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1259 }, { - "Id": 1260, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1260 }, { - "Id": 1261, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1261 }, { - "Id": 1262, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1262 }, { - "Id": 1263, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1263 }, { - "Id": 1264, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1264 }, { - "Id": 1265, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPContentType", + "Id": 1265 }, { - "Id": 1266, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPContentType", + "Id": 1266 }, { - "Id": 1267, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPContentType", + "Id": 1267 }, { - "Id": 1268, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPContentType", + "Id": 1268 }, { - "Id": 1269, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Rank": 5 + "Rank": 5, + "CommandName": "Set-PnPContentType", + "Id": 1269 }, { - "Id": 1270, - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1270 }, { - "Id": 1271, - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1271 }, { - "Id": 1272, - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1272 }, { - "Id": 1273, - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1273 }, { - "Id": 1274, - "CommandName": "Set-PnPDefaultContentTypeToList", "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPDefaultContentTypeToList", + "Id": 1274 }, { - "Id": 1275, - "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1275 }, { - "Id": 1276, - "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1276 }, { - "Id": 1277, - "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1277 }, { - "Id": 1278, - "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1278 }, { - "Id": 1279, - "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1279 }, { - "Id": 1280, - "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1280 }, { - "Id": 1281, - "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPDocumentSetField", + "Id": 1281 }, { - "Id": 1282, - "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPDocumentSetField", + "Id": 1282 }, { - "Id": 1283, - "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPField", + "Id": 1283 }, { - "Id": 1284, - "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPField", + "Id": 1284 }, { - "Id": 1285, - "CommandName": "Set-PnPField", "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPField", + "Id": 1285 }, { - "Id": 1286, - "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1286 }, { - "Id": 1287, - "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1287 }, { - "Id": 1288, - "CommandName": "Set-PnPFileCheckedOut", "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPFileCheckedOut", + "Id": 1288 }, { - "Id": 1289, - "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPFolderPermission", + "Id": 1289 }, { - "Id": 1290, - "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPFolderPermission", + "Id": 1290 }, { - "Id": 1291, - "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPFolderPermission", + "Id": 1291 }, { - "Id": 1292, - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPFooter", + "Id": 1292 }, { - "Id": 1293, - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPFooter", + "Id": 1293 }, { - "Id": 1294, - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPFooter", + "Id": 1294 }, { - "Id": 1295, - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -LogoUrl \"\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPFooter", + "Id": 1295 }, { - "Id": 1296, - "CommandName": "Set-PnPGraphSubscription", "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPGraphSubscription", + "Id": 1296 }, { - "Id": 1297, - "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPGroup", + "Id": 1297 }, { - "Id": 1298, - "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPGroup", + "Id": 1298 }, { - "Id": 1299, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1299 }, { - "Id": 1300, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1300 }, { - "Id": 1301, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1301 }, { - "Id": 1302, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1302 }, { - "Id": 1303, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Rank": 5 + "Rank": 5, + "CommandName": "Set-PnPGroupPermissions", + "Id": 1303 }, { - "Id": 1304, - "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1304 }, { - "Id": 1305, - "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1305 }, { - "Id": 1306, - "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPHomePage", + "Id": 1306 }, { - "Id": 1307, - "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPHomePage", + "Id": 1307 }, { - "Id": 1308, - "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPHomeSite", + "Id": 1308 }, { - "Id": 1309, - "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPHomeSite", + "Id": 1309 }, { - "Id": 1310, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPHubSite", + "Id": 1310 }, { - "Id": 1311, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPHubSite", + "Id": 1311 }, { - "Id": 1312, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPHubSite", + "Id": 1312 }, { - "Id": 1313, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPHubSite", + "Id": 1313 }, { - "Id": 1314, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Rank": 5 + "Rank": 5, + "CommandName": "Set-PnPHubSite", + "Id": 1314 }, { - "Id": 1315, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Rank": 6 + "Rank": 6, + "CommandName": "Set-PnPHubSite", + "Id": 1315 }, { - "Id": 1316, - "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1316 }, { - "Id": 1317, - "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1317 }, { - "Id": 1318, - "CommandName": "Set-PnPIndexedProperties", "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPIndexedProperties", + "Id": 1318 }, { - "Id": 1319, - "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1319 }, { - "Id": 1320, - "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1320 }, { - "Id": 1321, - "CommandName": "Set-PnPKnowledgeHubSite", "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPKnowledgeHubSite", + "Id": 1321 }, { - "Id": 1322, - "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPLabel", + "Id": 1322 }, { - "Id": 1323, - "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPLabel", + "Id": 1323 }, { - "Id": 1324, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPList", + "Id": 1324 }, { - "Id": 1325, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPList", + "Id": 1325 }, { - "Id": 1326, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPList", + "Id": 1326 }, { - "Id": 1327, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPList", + "Id": 1327 }, { - "Id": 1328, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Rank": 5 + "Rank": 5, + "CommandName": "Set-PnPList", + "Id": 1328 }, { - "Id": 1329, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Rank": 6 + "Rank": 6, + "CommandName": "Set-PnPList", + "Id": 1329 }, { - "Id": 1330, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Rank": 7 + "Rank": 7, + "CommandName": "Set-PnPList", + "Id": 1330 }, { - "Id": 1331, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Rank": 8 + "Rank": 8, + "CommandName": "Set-PnPList", + "Id": 1331 }, { - "Id": 1332, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Rank": 9 + "Rank": 9, + "CommandName": "Set-PnPList", + "Id": 1332 }, { - "Id": 1333, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Rank": 10 + "Rank": 10, + "CommandName": "Set-PnPList", + "Id": 1333 }, { - "Id": 1334, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Rank": 11 + "Rank": 11, + "CommandName": "Set-PnPList", + "Id": 1334 }, { - "Id": 1335, - "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1335 }, { - "Id": 1336, - "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1336 }, { - "Id": 1337, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPListItem", + "Id": 1337 }, { - "Id": 1338, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPListItem", + "Id": 1338 }, { - "Id": 1339, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPListItem", + "Id": 1339 }, { - "Id": 1340, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPListItem", + "Id": 1340 }, { - "Id": 1341, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Rank": 5 + "Rank": 5, + "CommandName": "Set-PnPListItem", + "Id": 1341 }, { - "Id": 1342, - "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1342 }, { - "Id": 1343, - "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1343 }, { - "Id": 1344, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPListItemPermission", + "Id": 1344 }, { - "Id": 1345, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPListItemPermission", + "Id": 1345 }, { - "Id": 1346, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPListItemPermission", + "Id": 1346 }, { - "Id": 1347, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPListItemPermission", + "Id": 1347 }, { - "Id": 1348, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Rank": 5 + "Rank": 5, + "CommandName": "Set-PnPListItemPermission", + "Id": 1348 }, { - "Id": 1349, - "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPListPermission", + "Id": 1349 }, { - "Id": 1350, - "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPListPermission", + "Id": 1350 }, { - "Id": 1351, - "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1351 }, { - "Id": 1352, - "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1352 }, { - "Id": 1353, - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPMasterPage", + "Id": 1353 }, { - "Id": 1354, - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPMasterPage", + "Id": 1354 }, { - "Id": 1355, - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPMasterPage", + "Id": 1355 }, { - "Id": 1356, - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPMasterPage", + "Id": 1356 }, { - "Id": 1357, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1357 }, { - "Id": 1358, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1358 }, { - "Id": 1359, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1359 }, { - "Id": 1360, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1360 }, { - "Id": 1361, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1361 }, { - "Id": 1362, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1362 }, { - "Id": 1363, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1363 }, { - "Id": 1364, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1364 }, { - "Id": 1365, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1365 }, { - "Id": 1366, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1366 }, { - "Id": 1367, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1367 }, { - "Id": 1368, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1368 }, { - "Id": 1369, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1369 }, { - "Id": 1370, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1370 }, { - "Id": 1371, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1371 }, { - "Id": 1372, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1372 }, { - "Id": 1373, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1373 }, { - "Id": 1374, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1374 }, { - "Id": 1375, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1375 }, { - "Id": 1376, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1376 }, { - "Id": 1377, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1377 }, { - "Id": 1378, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1378 }, { - "Id": 1379, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Rank": 5 + "Rank": 5, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1379 }, { - "Id": 1380, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6 + "Rank": 6, + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1380 }, { - "Id": 1381, - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1381 }, { - "Id": 1382, - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1382 }, { - "Id": 1383, - "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1383 }, { - "Id": 1384, - "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -On", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1384 }, { - "Id": 1385, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPPage", + "Id": 1385 }, { - "Id": 1386, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPPage", + "Id": 1386 }, { - "Id": 1387, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPPage", + "Id": 1387 }, { - "Id": 1388, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPPage", + "Id": 1388 }, { - "Id": 1389, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Rank": 5 + "Rank": 5, + "CommandName": "Set-PnPPage", + "Id": 1389 }, { - "Id": 1390, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "Rank": 6 + "Rank": 6, + "CommandName": "Set-PnPPage", + "Id": 1390 }, { - "Id": 1391, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7 + "Rank": 7, + "CommandName": "Set-PnPPage", + "Id": 1391 }, { - "Id": 1392, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "Rank": 8 + "Rank": 8, + "CommandName": "Set-PnPPage", + "Id": 1392 }, { - "Id": 1393, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9 + "Rank": 9, + "CommandName": "Set-PnPPage", + "Id": 1393 }, { - "Id": 1394, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10 + "Rank": 10, + "CommandName": "Set-PnPPage", + "Id": 1394 }, { - "Id": 1395, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "Rank": 11 + "Rank": 11, + "CommandName": "Set-PnPPage", + "Id": 1395 }, { - "Id": 1396, - "CommandName": "Set-PnPPageTextPart", "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPPageTextPart", + "Id": 1396 }, { - "Id": 1397, - "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPPageWebPart", + "Id": 1397 }, { - "Id": 1398, - "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPPageWebPart", + "Id": 1398 }, { - "Id": 1399, - "CommandName": "Set-PnPPlannerBucket", "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPPlannerBucket", + "Id": 1399 }, { - "Id": 1400, - "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1400 }, { - "Id": 1401, - "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1401 }, { - "Id": 1402, - "CommandName": "Set-PnPPlannerPlan", "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPPlannerPlan", + "Id": 1402 }, { - "Id": 1403, - "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPPlannerTask", + "Id": 1403 }, { - "Id": 1404, - "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPPlannerTask", + "Id": 1404 }, { - "Id": 1405, - "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPPlannerTask", + "Id": 1405 }, { - "Id": 1406, - "CommandName": "Set-PnPPlannerUserPolicy", "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPPlannerUserPolicy", + "Id": 1406 }, { - "Id": 1407, - "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1407 }, { - "Id": 1408, - "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1408 }, { - "Id": 1409, - "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1409 }, { - "Id": 1410, - "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1410 }, { - "Id": 1411, - "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1411 }, { - "Id": 1412, - "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1412 }, { - "Id": 1413, - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPRoleDefinition", + "Id": 1413 }, { - "Id": 1414, - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPRoleDefinition", + "Id": 1414 }, { - "Id": 1415, - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPRoleDefinition", + "Id": 1415 }, { - "Id": 1416, - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPRoleDefinition", + "Id": 1416 }, { - "Id": 1417, - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1417 }, { - "Id": 1418, - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1418 }, { - "Id": 1419, - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1419 }, { - "Id": 1420, - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1420 }, { - "Id": 1421, - "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", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPSearchExternalItem", + "Id": 1421 }, { - "Id": 1422, - "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\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPSearchExternalItem", + "Id": 1422 }, { - "Id": 1423, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPSearchSettings", + "Id": 1423 }, { - "Id": 1424, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPSearchSettings", + "Id": 1424 }, { - "Id": 1425, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPSearchSettings", + "Id": 1425 }, { - "Id": 1426, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPSearchSettings", + "Id": 1426 }, { - "Id": 1427, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Rank": 5 + "Rank": 5, + "CommandName": "Set-PnPSearchSettings", + "Id": 1427 }, { - "Id": 1428, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Rank": 6 + "Rank": 6, + "CommandName": "Set-PnPSearchSettings", + "Id": 1428 }, { - "Id": 1429, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Rank": 7 + "Rank": 7, + "CommandName": "Set-PnPSearchSettings", + "Id": 1429 }, { - "Id": 1430, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification \"HBI\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPSite", + "Id": 1430 }, { - "Id": 1431, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification $null", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPSite", + "Id": 1431 }, { - "Id": 1432, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPSite", + "Id": 1432 }, { - "Id": 1433, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows:$false", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPSite", + "Id": 1433 }, { - "Id": 1434, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Rank": 5 + "Rank": 5, + "CommandName": "Set-PnPSite", + "Id": 1434 }, { - "Id": 1435, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -NoScriptSite $false", - "Rank": 6 + "Rank": 6, + "CommandName": "Set-PnPSite", + "Id": 1435 }, { - "Id": 1436, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "Rank": 7 + "Rank": 7, + "CommandName": "Set-PnPSite", + "Id": 1436 }, { - "Id": 1437, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "Rank": 8 + "Rank": 8, + "CommandName": "Set-PnPSite", + "Id": 1437 }, { - "Id": 1438, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "Rank": 9 + "Rank": 9, + "CommandName": "Set-PnPSite", + "Id": 1438 }, { - "Id": 1439, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "Rank": 10 + "Rank": 10, + "CommandName": "Set-PnPSite", + "Id": 1439 }, { - "Id": 1440, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "Rank": 11 + "Rank": 11, + "CommandName": "Set-PnPSite", + "Id": 1440 }, { - "Id": 1441, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "Rank": 12 + "Rank": 12, + "CommandName": "Set-PnPSite", + "Id": 1441 }, { - "Id": 1442, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "Rank": 13 + "Rank": 13, + "CommandName": "Set-PnPSite", + "Id": 1442 }, { - "Id": 1443, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "Rank": 14 + "Rank": 14, + "CommandName": "Set-PnPSite", + "Id": 1443 }, { - "Id": 1444, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "Rank": 15 + "Rank": 15, + "CommandName": "Set-PnPSite", + "Id": 1444 }, { - "Id": 1445, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "Rank": 16 + "Rank": 16, + "CommandName": "Set-PnPSite", + "Id": 1445 }, { - "Id": 1446, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -CancelVPForExistingLibs", - "Rank": 17 + "Rank": 17, + "CommandName": "Set-PnPSite", + "Id": 1446 }, { - "Id": 1447, - "CommandName": "Set-PnPSiteClassification", "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPSiteClassification", + "Id": 1447 }, { - "Id": 1448, - "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Open", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPSiteClosure", + "Id": 1448 }, { - "Id": 1449, - "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Closed", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPSiteClosure", + "Id": 1449 }, { - "Id": 1450, - "CommandName": "Set-PnPSiteDesign", "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPSiteDesign", + "Id": 1450 }, { - "Id": 1451, - "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\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPSiteDesign", + "Id": 1451 }, { - "Id": 1452, - "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPSiteGroup", + "Id": 1452 }, { - "Id": 1453, - "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPSiteGroup", + "Id": 1453 }, { - "Id": 1454, - "CommandName": "Set-PnPSitePolicy", "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPSitePolicy", + "Id": 1454 }, { - "Id": 1455, - "CommandName": "Set-PnPSiteScript", "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPSiteScript", + "Id": 1455 }, { - "Id": 1456, - "CommandName": "Set-PnPSiteScriptPackage", "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPSiteScriptPackage", + "Id": 1456 }, { - "Id": 1457, - "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1457 }, { - "Id": 1458, - "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1458 }, { - "Id": 1459, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1459 }, { - "Id": 1460, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1460 }, { - "Id": 1461, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1461 }, { - "Id": 1462, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1462 }, { - "Id": 1463, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 5 + "Rank": 5, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1463 }, { - "Id": 1464, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 6 + "Rank": 6, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1464 }, { - "Id": 1465, - "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPStorageEntity", + "Id": 1465 }, { - "Id": 1466, - "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPStorageEntity", + "Id": 1466 }, { - "Id": 1467, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1467 }, { - "Id": 1468, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1468 }, { - "Id": 1469, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1469 }, { - "Id": 1470, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1470 }, { - "Id": 1471, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1471 }, { - "Id": 1472, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1472 }, { - "Id": 1473, - "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1473 }, { - "Id": 1474, - "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1474 }, { - "Id": 1475, - "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1475 }, { - "Id": 1476, - "CommandName": "Set-PnPTeamifyPromptHidden", "Command": "Set-PnPTeamifyPromptHidden", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTeamifyPromptHidden", + "Id": 1476 }, { - "Id": 1477, - "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTeamsChannel", + "Id": 1477 }, { - "Id": 1478, - "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPTeamsChannel", + "Id": 1478 }, { - "Id": 1479, - "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1479 }, { - "Id": 1480, - "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1480 }, { - "Id": 1481, - "CommandName": "Set-PnPTeamsTab", "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTeamsTab", + "Id": 1481 }, { - "Id": 1482, - "CommandName": "Set-PnPTeamsTag", "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTeamsTag", + "Id": 1482 }, { - "Id": 1483, - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTeamsTeam", + "Id": 1483 }, { - "Id": 1484, - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPTeamsTeam", + "Id": 1484 }, { - "Id": 1485, - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPTeamsTeam", + "Id": 1485 }, { - "Id": 1486, - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPTeamsTeam", + "Id": 1486 }, { - "Id": 1487, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1487 }, { - "Id": 1488, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1488 }, { - "Id": 1489, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1489 }, { - "Id": 1490, - "CommandName": "Set-PnPTeamsTeamPicture", "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTeamsTeamPicture", + "Id": 1490 }, { - "Id": 1491, - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1491 }, { - "Id": 1492, - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1492 }, { - "Id": 1493, - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTenant", + "Id": 1493 }, { - "Id": 1494, - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPTenant", + "Id": 1494 }, { - "Id": 1495, - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPTenant", + "Id": 1495 }, { - "Id": 1496, - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPTenant", + "Id": 1496 }, { - "Id": 1497, - "CommandName": "Set-PnPTenantAppCatalogUrl", "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Id": 1497 }, { - "Id": 1498, - "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1498 }, { - "Id": 1499, - "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1499 }, { - "Id": 1500, - "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1500 }, { - "Id": 1501, - "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1501 }, { - "Id": 1502, - "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1502 }, { - "Id": 1503, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTenantSite", + "Id": 1503 }, { - "Id": 1504, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPTenantSite", + "Id": 1504 }, { - "Id": 1505, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPTenantSite", + "Id": 1505 }, { - "Id": 1506, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPTenantSite", + "Id": 1506 }, { - "Id": 1507, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Rank": 5 + "Rank": 5, + "CommandName": "Set-PnPTenantSite", + "Id": 1507 }, { - "Id": 1508, - "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1508 }, { - "Id": 1509, - "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1509 }, { - "Id": 1510, - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTerm", + "Id": 1510 }, { - "Id": 1511, - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPTerm", + "Id": 1511 }, { - "Id": 1512, - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPTerm", + "Id": 1512 }, { - "Id": 1513, - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPTerm", + "Id": 1513 }, { - "Id": 1514, - "CommandName": "Set-PnPTermGroup", "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTermGroup", + "Id": 1514 }, { - "Id": 1515, - "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTermSet", + "Id": 1515 }, { - "Id": 1516, - "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPTermSet", + "Id": 1516 }, { - "Id": 1517, - "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPTermSet", + "Id": 1517 }, { - "Id": 1518, - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTheme", + "Id": 1518 }, { - "Id": 1519, - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPTheme", + "Id": 1519 }, { - "Id": 1520, - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPTheme", + "Id": 1520 }, { - "Id": 1521, - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPTheme", + "Id": 1521 }, { - "Id": 1522, - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPTraceLog", + "Id": 1522 }, { - "Id": 1523, - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPTraceLog", + "Id": 1523 }, { - "Id": 1524, - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPTraceLog", + "Id": 1524 }, { - "Id": 1525, - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -Off", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPTraceLog", + "Id": 1525 }, { - "Id": 1526, - "CommandName": "Set-PnPUserOneDriveQuota", "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPUserOneDriveQuota", + "Id": 1526 }, { - "Id": 1527, - "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1527 }, { - "Id": 1528, - "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1528 }, { - "Id": 1529, - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPView", + "Id": 1529 }, { - "Id": 1530, - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPView", + "Id": 1530 }, { - "Id": 1531, - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPView", + "Id": 1531 }, { - "Id": 1532, - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPView", + "Id": 1532 }, { - "Id": 1533, - "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", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1533 }, { - "Id": 1534, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1534 }, { - "Id": 1535, - "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", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1535 }, { - "Id": 1536, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1536 }, { - "Id": 1537, - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPWeb", + "Id": 1537 }, { - "Id": 1538, - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPWeb", + "Id": 1538 }, { - "Id": 1539, - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPWeb", + "Id": 1539 }, { - "Id": 1540, - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -NoCrawl:$true", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPWeb", + "Id": 1540 }, { - "Id": 1541, - "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPWebHeader", + "Id": 1541 }, { - "Id": 1542, - "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPWebHeader", + "Id": 1542 }, { - "Id": 1543, - "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPWebHeader", + "Id": 1543 }, { - "Id": 1544, - "CommandName": "Set-PnPWebhookSubscription", "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPWebhookSubscription", + "Id": 1544 }, { - "Id": 1545, - "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\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPWebhookSubscription", + "Id": 1545 }, { - "Id": 1546, - "CommandName": "Set-PnPWebPartProperty", "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPWebPartProperty", + "Id": 1546 }, { - "Id": 1547, - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPWebPermission", + "Id": 1547 }, { - "Id": 1548, - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPWebPermission", + "Id": 1548 }, { - "Id": 1549, - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Set-PnPWebPermission", + "Id": 1549 }, { - "Id": 1550, - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Set-PnPWebPermission", + "Id": 1550 }, { - "Id": 1551, - "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme MyTheme", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPWebTheme", + "Id": 1551 }, { - "Id": 1552, - "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Rank": 2 + "Rank": 2, + "CommandName": "Set-PnPWebTheme", + "Id": 1552 }, { - "Id": 1553, - "CommandName": "Set-PnPWikiPageContent", "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Rank": 1 + "Rank": 1, + "CommandName": "Set-PnPWikiPageContent", + "Id": 1553 }, { - "Id": 1554, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1554 }, { - "Id": 1555, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Rank": 2 + "Rank": 2, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1555 }, { - "Id": 1556, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Rank": 3 + "Rank": 3, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1556 }, { - "Id": 1557, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Rank": 4 + "Rank": 4, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1557 }, { - "Id": 1558, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Rank": 5 + "Rank": 5, + "CommandName": "Submit-PnPSearchQuery", + "Id": 1558 }, { - "Id": 1559, - "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1559 }, { - "Id": 1560, - "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Rank": 2 + "Rank": 2, + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1560 }, { - "Id": 1561, - "CommandName": "Sync-PnPAppToTeams", "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Rank": 1, + "CommandName": "Sync-PnPAppToTeams", + "Id": 1561 }, { - "Id": 1562, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Rank": 1 + "Rank": 1, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1562 }, { - "Id": 1563, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1563 }, { - "Id": 1564, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Rank": 3 + "Rank": 3, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1564 }, { - "Id": 1565, - "CommandName": "Test-PnPListItemIsRecord", "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Rank": 1 + "Rank": 1, + "CommandName": "Test-PnPListItemIsRecord", + "Id": 1565 }, { - "Id": 1566, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Id": 1566 }, { - "Id": 1567, - "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Test-PnPSite", + "Id": 1567 }, { - "Id": 1568, - "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Test-PnPSite", + "Id": 1568 }, { - "Id": 1569, - "CommandName": "Test-PnPTenantTemplate", "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Rank": 1 + "Rank": 1, + "CommandName": "Test-PnPTenantTemplate", + "Id": 1569 }, { - "Id": 1570, - "CommandName": "Undo-PnPFileCheckedOut", "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Undo-PnPFileCheckedOut", + "Id": 1570 }, { - "Id": 1571, - "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Rank": 1, + "CommandName": "Uninstall-PnPApp", + "Id": 1571 }, { - "Id": 1572, - "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "Rank": 2, + "CommandName": "Uninstall-PnPApp", + "Id": 1572 }, { - "Id": 1573, - "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Rank": 1, + "CommandName": "Unpublish-PnPApp", + "Id": 1573 }, { - "Id": 1574, - "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "Rank": 2, + "CommandName": "Unpublish-PnPApp", + "Id": 1574 }, { - "Id": 1575, - "CommandName": "Unpublish-PnPContentType", "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Rank": 1 + "Rank": 1, + "CommandName": "Unpublish-PnPContentType", + "Id": 1575 }, { - "Id": 1576, - "CommandName": "Unpublish-PnPSyntexModel", "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1576 }, { - "Id": 1577, - "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", - "Rank": 2 + "Rank": 2, + "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1577 }, { - "Id": 1578, - "CommandName": "Unregister-PnPHubSite", "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Unregister-PnPHubSite", + "Id": 1578 }, { - "Id": 1579, - "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Rank": 1, + "CommandName": "Update-PnPApp", + "Id": 1579 }, { - "Id": 1580, - "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "Rank": 2, + "CommandName": "Update-PnPApp", + "Id": 1580 }, { - "Id": 1581, - "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 1 + "Rank": 1, + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1581 }, { - "Id": 1582, - "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Rank": 2 + "Rank": 2, + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1582 }, { - "Id": 1583, - "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 3 + "Rank": 3, + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1583 }, { - "Id": 1584, - "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Rank": 1 + "Rank": 1, + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1584 }, { - "Id": 1585, - "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2 + "Rank": 2, + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1585 }, { - "Id": 1586, - "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "Rank": 3 + "Rank": 3, + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1586 }, { - "Id": 1587, - "CommandName": "Update-PnPTeamsApp", "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Rank": 1 + "Rank": 1, + "CommandName": "Update-PnPTeamsApp", + "Id": 1587 }, { - "Id": 1588, - "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1 + "Rank": 1, + "CommandName": "Update-PnPTeamsUser", + "Id": 1588 }, { - "Id": 1589, - "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2 + "Rank": 2, + "CommandName": "Update-PnPTeamsUser", + "Id": 1589 }, { - "Id": 1590, - "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Rank": 3 + "Rank": 3, + "CommandName": "Update-PnPTeamsUser", + "Id": 1590 }, { - "Id": 1591, - "CommandName": "Update-PnPUserType", "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Rank": 1 + "Rank": 1, + "CommandName": "Update-PnPUserType", + "Id": 1591 } ] diff --git a/version.txt b/version.txt index c4d6f4ec7..27cec56b4 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.103 \ No newline at end of file +2.2.104 \ No newline at end of file From c71e968151b5a50731605ca7865cce57d649636e Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sat, 21 Oct 2023 02:38:22 +0000 Subject: [PATCH 093/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6364 ++++++++--------- version.txt | 2 +- 3 files changed, 3184 insertions(+), 3184 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index f9e50eff3..2138e3447 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -14b67a9b0d4fce4c26e854588c0e2961c71fb3ff \ No newline at end of file +0461268895704da5de2015201ef850556c35f75e \ 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 7a0331b79..c5374a21f 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9548 +1,9548 @@ [ { + "Id": 1, "Command": "Add-PnPAlert -List \"Demo List\"", "Rank": 1, - "CommandName": "Add-PnPAlert", - "Id": 1 + "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", - "Id": 2 + "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", - "Id": 3 + "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", - "Id": 4 + "CommandName": "Add-PnPAlert" }, { + "Id": 5, "Command": "Add-PnPApp -Path ./myapp.sppkg", "Rank": 1, - "CommandName": "Add-PnPApp", - "Id": 5 + "CommandName": "Add-PnPApp" }, { + "Id": 6, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Rank": 2, - "CommandName": "Add-PnPApp", - "Id": 6 + "CommandName": "Add-PnPApp" }, { + "Id": 7, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Rank": 3, - "CommandName": "Add-PnPApp", - "Id": 7 + "CommandName": "Add-PnPApp" }, { + "Id": 8, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Rank": 4, - "CommandName": "Add-PnPApp", - "Id": 8 + "CommandName": "Add-PnPApp" }, { + "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", - "Id": 9 + "CommandName": "Add-PnPApplicationCustomizer" }, { + "Id": 10, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Rank": 1, - "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 10 + "CommandName": "Add-PnPAvailableSiteClassification" }, { + "Id": 11, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Rank": 2, - "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 11 + "CommandName": "Add-PnPAvailableSiteClassification" }, { + "Id": 12, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 12 + "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", - "Id": 13 + "CommandName": "Add-PnPAzureADGroupMember" }, { + "Id": 14, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 14 + "CommandName": "Add-PnPAzureADGroupMember" }, { + "Id": 15, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 15 + "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", - "Id": 16 + "CommandName": "Add-PnPAzureADGroupOwner" }, { + "Id": 17, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 17 + "CommandName": "Add-PnPAzureADGroupOwner" }, { + "Id": 18, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "Rank": 1, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 18 + "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", - "Id": 19 + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { + "Id": 20, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "Rank": 1, - "CommandName": "Add-PnPContentType", - "Id": 20 + "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", - "Id": 21 + "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", - "Id": 22 + "CommandName": "Add-PnPContentType" }, { + "Id": 23, "Command": "Add-PnPContentType -Name \"Project Item\"", "Rank": 4, - "CommandName": "Add-PnPContentType", - "Id": 23 + "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", - "Id": 24 + "CommandName": "Add-PnPContentType" }, { + "Id": 25, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Rank": 1, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 25 + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { + "Id": 26, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Rank": 2, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 26 + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { + "Id": 27, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 27 + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { + "Id": 28, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 28 + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { + "Id": 29, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Rank": 1, - "CommandName": "Add-PnPContentTypeToList", - "Id": 29 + "CommandName": "Add-PnPContentTypeToList" }, { + "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", - "Id": 30 + "CommandName": "Add-PnPCustomAction" }, { + "Id": 31, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "Rank": 1, - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 31 + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { + "Id": 32, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "Rank": 2, - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 32 + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { + "Id": 33, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Rank": 1, - "CommandName": "Add-PnPDocumentSet", - "Id": 33 + "CommandName": "Add-PnPDocumentSet" }, { + "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", - "Id": 34 + "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", - "Id": 35 + "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", - "Id": 36 + "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", - "Id": 37 + "CommandName": "Add-PnPEventReceiver" }, { + "Id": 38, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Rank": 1, - "CommandName": "Add-PnPField", - "Id": 38 + "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", - "Id": 39 + "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", - "Id": 40 + "CommandName": "Add-PnPField" }, { + "Id": 41, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "Rank": 4, - "CommandName": "Add-PnPField", - "Id": 41 + "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", - "Id": 42 + "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", - "Id": 43 + "CommandName": "Add-PnPField" }, { + "Id": 44, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Add-PnPFieldToContentType", - "Id": 44 + "CommandName": "Add-PnPFieldToContentType" }, { + "Id": 45, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Rank": 1, - "CommandName": "Add-PnPFile", - "Id": 45 + "CommandName": "Add-PnPFile" }, { + "Id": 46, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Rank": 2, - "CommandName": "Add-PnPFile", - "Id": 46 + "CommandName": "Add-PnPFile" }, { + "Id": 47, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "Rank": 3, - "CommandName": "Add-PnPFile", - "Id": 47 + "CommandName": "Add-PnPFile" }, { + "Id": 48, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "Rank": 4, - "CommandName": "Add-PnPFile", - "Id": 48 + "CommandName": "Add-PnPFile" }, { + "Id": 49, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "Rank": 5, - "CommandName": "Add-PnPFile", - "Id": 49 + "CommandName": "Add-PnPFile" }, { + "Id": 50, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "Rank": 6, - "CommandName": "Add-PnPFile", - "Id": 50 + "CommandName": "Add-PnPFile" }, { + "Id": 51, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Rank": 7, - "CommandName": "Add-PnPFile", - "Id": 51 + "CommandName": "Add-PnPFile" }, { + "Id": 52, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Rank": 8, - "CommandName": "Add-PnPFile", - "Id": 52 + "CommandName": "Add-PnPFile" }, { + "Id": 53, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 53 + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { + "Id": 54, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 54 + "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", - "Id": 55 + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { + "Id": 56, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 56 + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { + "Id": 57, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "Rank": 2, - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 57 + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { + "Id": 58, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "CommandName": "Add-PnPFileSharingInvite", - "Id": 58 + "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", - "Id": 59 + "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", - "Id": 60 + "CommandName": "Add-PnPFileSharingInvite" }, { + "Id": 61, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Rank": 1, - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 61 + "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", - "Id": 62 + "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", - "Id": 63 + "CommandName": "Add-PnPFileToSiteTemplate" }, { + "Id": 64, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "Rank": 4, - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 64 + "CommandName": "Add-PnPFileToSiteTemplate" }, { + "Id": 65, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Rank": 5, - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 65 + "CommandName": "Add-PnPFileToSiteTemplate" }, { + "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", - "Id": 66 + "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", - "Id": 67 + "CommandName": "Add-PnPFileUserSharingLink" }, { + "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", - "Id": 68 + "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", - "Id": 69 + "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", - "Id": 70 + "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", - "Id": 71 + "CommandName": "Add-PnPFlowOwner" }, { + "Id": 72, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "CommandName": "Add-PnPFolder", - "Id": 72 + "CommandName": "Add-PnPFolder" }, { + "Id": 73, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Rank": 2, - "CommandName": "Add-PnPFolder", - "Id": 73 + "CommandName": "Add-PnPFolder" }, { + "Id": 74, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Rank": 3, - "CommandName": "Add-PnPFolder", - "Id": 74 + "CommandName": "Add-PnPFolder" }, { + "Id": 75, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 75 + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { + "Id": 76, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 76 + "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", - "Id": 77 + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { + "Id": 78, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 78 + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { + "Id": 79, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Rank": 2, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 79 + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { + "Id": 80, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "CommandName": "Add-PnPFolderSharingInvite", - "Id": 80 + "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", - "Id": 81 + "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", - "Id": 82 + "CommandName": "Add-PnPFolderSharingInvite" }, { + "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", - "Id": 83 + "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", - "Id": 84 + "CommandName": "Add-PnPFolderUserSharingLink" }, { + "Id": 85, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "CommandName": "Add-PnPGroupMember", - "Id": 85 + "CommandName": "Add-PnPGroupMember" }, { + "Id": 86, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Rank": 2, - "CommandName": "Add-PnPGroupMember", - "Id": 86 + "CommandName": "Add-PnPGroupMember" }, { + "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", - "Id": 87 + "CommandName": "Add-PnPHtmlPublishingPageLayout" }, { + "Id": 88, "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Rank": 1, - "CommandName": "Add-PnPHubSiteAssociation", - "Id": 88 + "CommandName": "Add-PnPHubSiteAssociation" }, { + "Id": 89, "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "Rank": 1, - "CommandName": "Add-PnPHubToHubAssociation", - "Id": 89 + "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", - "Id": 90 + "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", - "Id": 91 + "CommandName": "Add-PnPHubToHubAssociation" }, { + "Id": 92, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "Rank": 1, - "CommandName": "Add-PnPJavaScriptBlock", - "Id": 92 + "CommandName": "Add-PnPJavaScriptBlock" }, { + "Id": 93, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "Rank": 2, - "CommandName": "Add-PnPJavaScriptBlock", - "Id": 93 + "CommandName": "Add-PnPJavaScriptBlock" }, { + "Id": 94, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "Rank": 1, - "CommandName": "Add-PnPJavaScriptLink", - "Id": 94 + "CommandName": "Add-PnPJavaScriptLink" }, { + "Id": 95, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Rank": 2, - "CommandName": "Add-PnPJavaScriptLink", - "Id": 95 + "CommandName": "Add-PnPJavaScriptLink" }, { + "Id": 96, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "Rank": 1, - "CommandName": "Add-PnPListDesign", - "Id": 96 + "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", - "Id": 97 + "CommandName": "Add-PnPListDesign" }, { + "Id": 98, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Rank": 1, - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 98 + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { + "Id": 99, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "Rank": 2, - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 99 + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { + "Id": 100, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Rank": 3, - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 100 + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { + "Id": 101, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "CommandName": "Add-PnPListItem", - "Id": 101 + "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", - "Id": 102 + "CommandName": "Add-PnPListItem" }, { + "Id": 103, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "Rank": 3, - "CommandName": "Add-PnPListItem", - "Id": 103 + "CommandName": "Add-PnPListItem" }, { + "Id": 104, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "Rank": 4, - "CommandName": "Add-PnPListItem", - "Id": 104 + "CommandName": "Add-PnPListItem" }, { + "Id": 105, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Rank": 5, - "CommandName": "Add-PnPListItem", - "Id": 105 + "CommandName": "Add-PnPListItem" }, { + "Id": 106, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "Rank": 1, - "CommandName": "Add-PnPListItemAttachment", - "Id": 106 + "CommandName": "Add-PnPListItemAttachment" }, { + "Id": 107, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "Rank": 2, - "CommandName": "Add-PnPListItemAttachment", - "Id": 107 + "CommandName": "Add-PnPListItemAttachment" }, { + "Id": 108, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Rank": 3, - "CommandName": "Add-PnPListItemAttachment", - "Id": 108 + "CommandName": "Add-PnPListItemAttachment" }, { + "Id": 109, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Rank": 1, - "CommandName": "Add-PnPListItemComment", - "Id": 109 + "CommandName": "Add-PnPListItemComment" }, { + "Id": 110, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Rank": 1, - "CommandName": "Add-PnPMasterPage", - "Id": 110 + "CommandName": "Add-PnPMasterPage" }, { + "Id": 111, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 111 + "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", - "Id": 112 + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { + "Id": 113, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 113 + "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", - "Id": 114 + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { + "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", - "Id": 115 + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { + "Id": 116, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 116 + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { + "Id": 117, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Rank": 3, - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 117 + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { + "Id": 118, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "Rank": 1, - "CommandName": "Add-PnPNavigationNode", - "Id": 118 + "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", - "Id": 119 + "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", - "Id": 120 + "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", - "Id": 121 + "CommandName": "Add-PnPNavigationNode" }, { + "Id": 122, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Rank": 5, - "CommandName": "Add-PnPNavigationNode", - "Id": 122 + "CommandName": "Add-PnPNavigationNode" }, { + "Id": 123, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Rank": 6, - "CommandName": "Add-PnPNavigationNode", - "Id": 123 + "CommandName": "Add-PnPNavigationNode" }, { + "Id": 124, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Rank": 7, - "CommandName": "Add-PnPNavigationNode", - "Id": 124 + "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", - "Id": 125 + "CommandName": "Add-PnPNavigationNode" }, { + "Id": 126, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "Rank": 1, - "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 126 + "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", - "Id": 127 + "CommandName": "Add-PnPOrgAssetsLibrary" }, { + "Id": 128, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Rank": 3, - "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 128 + "CommandName": "Add-PnPOrgAssetsLibrary" }, { + "Id": 129, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Rank": 1, - "CommandName": "Add-PnPOrgNewsSite", - "Id": 129 + "CommandName": "Add-PnPOrgNewsSite" }, { + "Id": 130, "Command": "Add-PnPPage -Name \"NewPage\"", "Rank": 1, - "CommandName": "Add-PnPPage", - "Id": 130 + "CommandName": "Add-PnPPage" }, { + "Id": 131, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Rank": 2, - "CommandName": "Add-PnPPage", - "Id": 131 + "CommandName": "Add-PnPPage" }, { + "Id": 132, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Rank": 3, - "CommandName": "Add-PnPPage", - "Id": 132 + "CommandName": "Add-PnPPage" }, { + "Id": 133, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Rank": 4, - "CommandName": "Add-PnPPage", - "Id": 133 + "CommandName": "Add-PnPPage" }, { + "Id": 134, "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Rank": 5, - "CommandName": "Add-PnPPage", - "Id": 134 + "CommandName": "Add-PnPPage" }, { + "Id": 135, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Rank": 6, - "CommandName": "Add-PnPPage", - "Id": 135 + "CommandName": "Add-PnPPage" }, { + "Id": 136, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "CommandName": "Add-PnPPage", - "Id": 136 + "CommandName": "Add-PnPPage" }, { + "Id": 137, "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Rank": 8, - "CommandName": "Add-PnPPage", - "Id": 137 + "CommandName": "Add-PnPPage" }, { + "Id": 138, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "CommandName": "Add-PnPPage", - "Id": 138 + "CommandName": "Add-PnPPage" }, { + "Id": 139, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "CommandName": "Add-PnPPage", - "Id": 139 + "CommandName": "Add-PnPPage" }, { + "Id": 140, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "Rank": 1, - "CommandName": "Add-PnPPageImageWebPart", - "Id": 140 + "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", - "Id": 141 + "CommandName": "Add-PnPPageImageWebPart" }, { + "Id": 142, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Rank": 1, - "CommandName": "Add-PnPPageSection", - "Id": 142 + "CommandName": "Add-PnPPageSection" }, { + "Id": 143, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Rank": 2, - "CommandName": "Add-PnPPageSection", - "Id": 143 + "CommandName": "Add-PnPPageSection" }, { + "Id": 144, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Rank": 1, - "CommandName": "Add-PnPPageTextPart", - "Id": 144 + "CommandName": "Add-PnPPageTextPart" }, { + "Id": 145, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "Rank": 2, - "CommandName": "Add-PnPPageTextPart", - "Id": 145 + "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", - "Id": 146 + "CommandName": "Add-PnPPageTextPart" }, { + "Id": 147, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Rank": 1, - "CommandName": "Add-PnPPageWebPart", - "Id": 147 + "CommandName": "Add-PnPPageWebPart" }, { + "Id": 148, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Rank": 2, - "CommandName": "Add-PnPPageWebPart", - "Id": 148 + "CommandName": "Add-PnPPageWebPart" }, { + "Id": 149, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Rank": 3, - "CommandName": "Add-PnPPageWebPart", - "Id": 149 + "CommandName": "Add-PnPPageWebPart" }, { + "Id": 150, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Rank": 1, - "CommandName": "Add-PnPPlannerBucket", - "Id": 150 + "CommandName": "Add-PnPPlannerBucket" }, { + "Id": 151, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Rank": 2, - "CommandName": "Add-PnPPlannerBucket", - "Id": 151 + "CommandName": "Add-PnPPlannerBucket" }, { + "Id": 152, "Command": "Add-PnPPlannerRoster", "Rank": 1, - "CommandName": "Add-PnPPlannerRoster", - "Id": 152 + "CommandName": "Add-PnPPlannerRoster" }, { + "Id": 153, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPPlannerRosterMember", - "Id": 153 + "CommandName": "Add-PnPPlannerRosterMember" }, { + "Id": 154, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 1, - "CommandName": "Add-PnPPlannerTask", - "Id": 154 + "CommandName": "Add-PnPPlannerTask" }, { + "Id": 155, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 2, - "CommandName": "Add-PnPPlannerTask", - "Id": 155 + "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", - "Id": 156 + "CommandName": "Add-PnPPlannerTask" }, { + "Id": 157, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "CommandName": "Add-PnPPublishingImageRendition", - "Id": 157 + "CommandName": "Add-PnPPublishingImageRendition" }, { + "Id": 158, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "Rank": 1, - "CommandName": "Add-PnPPublishingPage", - "Id": 158 + "CommandName": "Add-PnPPublishingPage" }, { + "Id": 159, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Rank": 2, - "CommandName": "Add-PnPPublishingPage", - "Id": 159 + "CommandName": "Add-PnPPublishingPage" }, { + "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", - "Id": 160 + "CommandName": "Add-PnPPublishingPageLayout" }, { + "Id": 161, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Rank": 1, - "CommandName": "Add-PnPRoleDefinition", - "Id": 161 + "CommandName": "Add-PnPRoleDefinition" }, { + "Id": 162, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Rank": 2, - "CommandName": "Add-PnPRoleDefinition", - "Id": 162 + "CommandName": "Add-PnPRoleDefinition" }, { + "Id": 163, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Rank": 3, - "CommandName": "Add-PnPRoleDefinition", - "Id": 163 + "CommandName": "Add-PnPRoleDefinition" }, { + "Id": 164, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 164 + "CommandName": "Add-PnPSiteCollectionAdmin" }, { + "Id": 165, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 165 + "CommandName": "Add-PnPSiteCollectionAdmin" }, { + "Id": 166, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 166 + "CommandName": "Add-PnPSiteCollectionAdmin" }, { + "Id": 167, "Command": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 167 + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { + "Id": 168, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 168 + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { + "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", - "Id": 169 + "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", - "Id": 170 + "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", - "Id": 171 + "CommandName": "Add-PnPSiteDesign" }, { + "Id": 172, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "Rank": 1, - "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 172 + "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", - "Id": 173 + "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", - "Id": 174 + "CommandName": "Add-PnPSiteDesignFromWeb" }, { + "Id": 175, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "CommandName": "Add-PnPSiteDesignTask", - "Id": 175 + "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", - "Id": 176 + "CommandName": "Add-PnPSiteDesignTask" }, { + "Id": 177, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Rank": 1, - "CommandName": "Add-PnPSiteScript", - "Id": 177 + "CommandName": "Add-PnPSiteScript" }, { + "Id": 178, "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Rank": 1, - "CommandName": "Add-PnPSiteScriptPackage", - "Id": 178 + "CommandName": "Add-PnPSiteScriptPackage" }, { + "Id": 179, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Rank": 1, - "CommandName": "Add-PnPSiteTemplate", - "Id": 179 + "CommandName": "Add-PnPSiteTemplate" }, { + "Id": 180, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "Rank": 1, - "CommandName": "Add-PnPStoredCredential", - "Id": 180 + "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", - "Id": 181 + "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", - "Id": 182 + "CommandName": "Add-PnPStoredCredential" }, { + "Id": 183, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Rank": 1, - "CommandName": "Add-PnPTaxonomyField", - "Id": 183 + "CommandName": "Add-PnPTaxonomyField" }, { + "Id": 184, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Rank": 2, - "CommandName": "Add-PnPTaxonomyField", - "Id": 184 + "CommandName": "Add-PnPTaxonomyField" }, { + "Id": 185, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "Rank": 1, - "CommandName": "Add-PnPTeamsChannel", - "Id": 185 + "CommandName": "Add-PnPTeamsChannel" }, { + "Id": 186, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Rank": 2, - "CommandName": "Add-PnPTeamsChannel", - "Id": 186 + "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", - "Id": 187 + "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", - "Id": 188 + "CommandName": "Add-PnPTeamsChannel" }, { + "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", - "Id": 189 + "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", - "Id": 190 + "CommandName": "Add-PnpTeamsChannelUser" }, { + "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", - "Id": 191 + "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", - "Id": 192 + "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", - "Id": 193 + "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", - "Id": 194 + "CommandName": "Add-PnPTeamsTab" }, { + "Id": 195, "Command": "Add-PnPTeamsTeam", "Rank": 1, - "CommandName": "Add-PnPTeamsTeam", - "Id": 195 + "CommandName": "Add-PnPTeamsTeam" }, { + "Id": 196, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "CommandName": "Add-PnPTeamsUser", - "Id": 196 + "CommandName": "Add-PnPTeamsUser" }, { + "Id": 197, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "CommandName": "Add-PnPTeamsUser", - "Id": 197 + "CommandName": "Add-PnPTeamsUser" }, { + "Id": 198, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "Rank": 3, - "CommandName": "Add-PnPTeamsUser", - "Id": 198 + "CommandName": "Add-PnPTeamsUser" }, { + "Id": 199, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Rank": 4, - "CommandName": "Add-PnPTeamsUser", - "Id": 199 + "CommandName": "Add-PnPTeamsUser" }, { + "Id": 200, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "CommandName": "Add-PnPTenantCdnOrigin", - "Id": 200 + "CommandName": "Add-PnPTenantCdnOrigin" }, { + "Id": 201, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Rank": 1, - "CommandName": "Add-PnPTenantSequence", - "Id": 201 + "CommandName": "Add-PnPTenantSequence" }, { + "Id": 202, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSite", - "Id": 202 + "CommandName": "Add-PnPTenantSequenceSite" }, { + "Id": 203, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSubSite", - "Id": 203 + "CommandName": "Add-PnPTenantSequenceSubSite" }, { + "Id": 204, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Rank": 1, - "CommandName": "Add-PnPTermToTerm", - "Id": 204 + "CommandName": "Add-PnPTermToTerm" }, { + "Id": 205, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "Rank": 1, - "CommandName": "Add-PnPView", - "Id": 205 + "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", - "Id": 206 + "CommandName": "Add-PnPView" }, { + "Id": 207, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "Rank": 3, - "CommandName": "Add-PnPView", - "Id": 207 + "CommandName": "Add-PnPView" }, { + "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", - "Id": 208 + "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", - "Id": 209 + "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", - "Id": 210 + "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { + "Id": 211, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "CommandName": "Add-PnPWebhookSubscription", - "Id": 211 + "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", - "Id": 212 + "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", - "Id": 213 + "CommandName": "Add-PnPWebhookSubscription" }, { + "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", - "Id": 214 + "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", - "Id": 215 + "CommandName": "Add-PnPWebPartToWebPartPage" }, { + "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", - "Id": 216 + "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", - "Id": 217 + "CommandName": "Add-PnPWebPartToWikiPage" }, { + "Id": 218, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Rank": 1, - "CommandName": "Add-PnPWikiPage", - "Id": 218 + "CommandName": "Add-PnPWikiPage" }, { + "Id": 219, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupMember", - "Id": 219 + "CommandName": "Clear-PnPAzureADGroupMember" }, { + "Id": 220, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupOwner", - "Id": 220 + "CommandName": "Clear-PnPAzureADGroupOwner" }, { + "Id": 221, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Rank": 1, - "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 221 + "CommandName": "Clear-PnPDefaultColumnValues" }, { + "Id": 222, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Rank": 2, - "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 222 + "CommandName": "Clear-PnPDefaultColumnValues" }, { + "Id": 223, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Clear-PnPListItemAsRecord", - "Id": 223 + "CommandName": "Clear-PnPListItemAsRecord" }, { + "Id": 224, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Id": 224 + "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { + "Id": 225, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Id": 225 + "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { + "Id": 226, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 226 + "CommandName": "Clear-PnpRecycleBinItem" }, { + "Id": 227, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Rank": 2, - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 227 + "CommandName": "Clear-PnpRecycleBinItem" }, { + "Id": 228, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Rank": 3, - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 228 + "CommandName": "Clear-PnpRecycleBinItem" }, { + "Id": 229, "Command": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, - "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Id": 229 + "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { + "Id": 230, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 230 + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { + "Id": 231, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 231 + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { + "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", - "Id": 232 + "CommandName": "Connect-PnPOnline" }, { + "Id": 233, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Rank": 1, - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 233 + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { + "Id": 234, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Rank": 2, - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 234 + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { + "Id": 235, "Command": "Convert-PnPSiteTemplate -Path template.xml", "Rank": 1, - "CommandName": "Convert-PnPSiteTemplate", - "Id": 235 + "CommandName": "Convert-PnPSiteTemplate" }, { + "Id": 236, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Rank": 2, - "CommandName": "Convert-PnPSiteTemplate", - "Id": 236 + "CommandName": "Convert-PnPSiteTemplate" }, { + "Id": 237, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Rank": 3, - "CommandName": "Convert-PnPSiteTemplate", - "Id": 237 + "CommandName": "Convert-PnPSiteTemplate" }, { + "Id": 238, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Rank": 1, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 238 + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { + "Id": 239, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Rank": 2, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 239 + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { + "Id": 240, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Rank": 1, - "CommandName": "ConvertTo-PnPPage", - "Id": 240 + "CommandName": "ConvertTo-PnPPage" }, { + "Id": 241, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Rank": 2, - "CommandName": "ConvertTo-PnPPage", - "Id": 241 + "CommandName": "ConvertTo-PnPPage" }, { + "Id": 242, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Rank": 3, - "CommandName": "ConvertTo-PnPPage", - "Id": 242 + "CommandName": "ConvertTo-PnPPage" }, { + "Id": 243, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Rank": 4, - "CommandName": "ConvertTo-PnPPage", - "Id": 243 + "CommandName": "ConvertTo-PnPPage" }, { + "Id": 244, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 5, - "CommandName": "ConvertTo-PnPPage", - "Id": 244 + "CommandName": "ConvertTo-PnPPage" }, { + "Id": 245, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Rank": 6, - "CommandName": "ConvertTo-PnPPage", - "Id": 245 + "CommandName": "ConvertTo-PnPPage" }, { + "Id": 246, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Rank": 7, - "CommandName": "ConvertTo-PnPPage", - "Id": 246 + "CommandName": "ConvertTo-PnPPage" }, { + "Id": 247, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "Rank": 8, - "CommandName": "ConvertTo-PnPPage", - "Id": 247 + "CommandName": "ConvertTo-PnPPage" }, { + "Id": 248, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 9, - "CommandName": "ConvertTo-PnPPage", - "Id": 248 + "CommandName": "ConvertTo-PnPPage" }, { + "Id": 249, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Rank": 10, - "CommandName": "ConvertTo-PnPPage", - "Id": 249 + "CommandName": "ConvertTo-PnPPage" }, { + "Id": 250, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Rank": 11, - "CommandName": "ConvertTo-PnPPage", - "Id": 250 + "CommandName": "ConvertTo-PnPPage" }, { + "Id": 251, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 12, - "CommandName": "ConvertTo-PnPPage", - "Id": 251 + "CommandName": "ConvertTo-PnPPage" }, { + "Id": 252, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 13, - "CommandName": "ConvertTo-PnPPage", - "Id": 252 + "CommandName": "ConvertTo-PnPPage" }, { + "Id": 253, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Rank": 14, - "CommandName": "ConvertTo-PnPPage", - "Id": 253 + "CommandName": "ConvertTo-PnPPage" }, { + "Id": 254, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "CommandName": "Copy-PnPFile", - "Id": 254 + "CommandName": "Copy-PnPFile" }, { + "Id": 255, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "CommandName": "Copy-PnPFile", - "Id": 255 + "CommandName": "Copy-PnPFile" }, { + "Id": 256, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "CommandName": "Copy-PnPFile", - "Id": 256 + "CommandName": "Copy-PnPFile" }, { + "Id": 257, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "CommandName": "Copy-PnPFile", - "Id": 257 + "CommandName": "Copy-PnPFile" }, { + "Id": 258, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "CommandName": "Copy-PnPFile", - "Id": 258 + "CommandName": "Copy-PnPFile" }, { + "Id": 259, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "CommandName": "Copy-PnPFile", - "Id": 259 + "CommandName": "Copy-PnPFile" }, { + "Id": 260, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "CommandName": "Copy-PnPFile", - "Id": 260 + "CommandName": "Copy-PnPFile" }, { + "Id": 261, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "CommandName": "Copy-PnPFile", - "Id": 261 + "CommandName": "Copy-PnPFile" }, { + "Id": 262, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "CommandName": "Copy-PnPFile", - "Id": 262 + "CommandName": "Copy-PnPFile" }, { + "Id": 263, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "CommandName": "Copy-PnPFile", - "Id": 263 + "CommandName": "Copy-PnPFile" }, { + "Id": 264, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "CommandName": "Copy-PnPFolder", - "Id": 264 + "CommandName": "Copy-PnPFolder" }, { + "Id": 265, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "CommandName": "Copy-PnPFolder", - "Id": 265 + "CommandName": "Copy-PnPFolder" }, { + "Id": 266, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "CommandName": "Copy-PnPFolder", - "Id": 266 + "CommandName": "Copy-PnPFolder" }, { + "Id": 267, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "CommandName": "Copy-PnPFolder", - "Id": 267 + "CommandName": "Copy-PnPFolder" }, { + "Id": 268, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "CommandName": "Copy-PnPFolder", - "Id": 268 + "CommandName": "Copy-PnPFolder" }, { + "Id": 269, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "CommandName": "Copy-PnPFolder", - "Id": 269 + "CommandName": "Copy-PnPFolder" }, { + "Id": 270, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "CommandName": "Copy-PnPFolder", - "Id": 270 + "CommandName": "Copy-PnPFolder" }, { + "Id": 271, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "CommandName": "Copy-PnPFolder", - "Id": 271 + "CommandName": "Copy-PnPFolder" }, { + "Id": 272, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "CommandName": "Copy-PnPFolder", - "Id": 272 + "CommandName": "Copy-PnPFolder" }, { + "Id": 273, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "CommandName": "Copy-PnPFolder", - "Id": 273 + "CommandName": "Copy-PnPFolder" }, { + "Id": 274, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Rank": 1, - "CommandName": "Copy-PnPItemProxy", - "Id": 274 + "CommandName": "Copy-PnPItemProxy" }, { + "Id": 275, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Rank": 1, - "CommandName": "Copy-PnPList", - "Id": 275 + "CommandName": "Copy-PnPList" }, { + "Id": 276, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Rank": 2, - "CommandName": "Copy-PnPList", - "Id": 276 + "CommandName": "Copy-PnPList" }, { + "Id": 277, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Rank": 3, - "CommandName": "Copy-PnPList", - "Id": 277 + "CommandName": "Copy-PnPList" }, { + "Id": 278, "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "Rank": 4, - "CommandName": "Copy-PnPList", - "Id": 278 + "CommandName": "Copy-PnPList" }, { + "Id": 279, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Rank": 1, - "CommandName": "Copy-PnPTeamsTeam", - "Id": 279 + "CommandName": "Copy-PnPTeamsTeam" }, { + "Id": 280, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Rank": 2, - "CommandName": "Copy-PnPTeamsTeam", - "Id": 280 + "CommandName": "Copy-PnPTeamsTeam" }, { + "Id": 281, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "Rank": 3, - "CommandName": "Copy-PnPTeamsTeam", - "Id": 281 + "CommandName": "Copy-PnPTeamsTeam" }, { + "Id": 282, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "Rank": 4, - "CommandName": "Copy-PnPTeamsTeam", - "Id": 282 + "CommandName": "Copy-PnPTeamsTeam" }, { + "Id": 283, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Disable-PnPFeature", - "Id": 283 + "CommandName": "Disable-PnPFeature" }, { + "Id": 284, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "CommandName": "Disable-PnPFeature", - "Id": 284 + "CommandName": "Disable-PnPFeature" }, { + "Id": 285, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "CommandName": "Disable-PnPFeature", - "Id": 285 + "CommandName": "Disable-PnPFeature" }, { + "Id": 286, "Command": "Disable-PnPPageScheduling", "Rank": 1, - "CommandName": "Disable-PnPPageScheduling", - "Id": 286 + "CommandName": "Disable-PnPPageScheduling" }, { + "Id": 287, "Command": "Disable-PnPPowerShellTelemetry", "Rank": 1, - "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 287 + "CommandName": "Disable-PnPPowerShellTelemetry" }, { + "Id": 288, "Command": "Disable-PnPPowerShellTelemetry -Force", "Rank": 2, - "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 288 + "CommandName": "Disable-PnPPowerShellTelemetry" }, { + "Id": 289, "Command": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 289 + "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { + "Id": 290, "Command": "Disable-PnPSiteClassification", "Rank": 1, - "CommandName": "Disable-PnPSiteClassification", - "Id": 290 + "CommandName": "Disable-PnPSiteClassification" }, { + "Id": 291, "Command": "Disconnect-PnPOnline", "Rank": 1, - "CommandName": "Disconnect-PnPOnline", - "Id": 291 + "CommandName": "Disconnect-PnPOnline" }, { + "Id": 292, "Command": "Enable-PnPCommSite", "Rank": 1, - "CommandName": "Enable-PnPCommSite", - "Id": 292 + "CommandName": "Enable-PnPCommSite" }, { + "Id": 293, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Rank": 2, - "CommandName": "Enable-PnPCommSite", - "Id": 293 + "CommandName": "Enable-PnPCommSite" }, { + "Id": 294, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Enable-PnPFeature", - "Id": 294 + "CommandName": "Enable-PnPFeature" }, { + "Id": 295, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "CommandName": "Enable-PnPFeature", - "Id": 295 + "CommandName": "Enable-PnPFeature" }, { + "Id": 296, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "CommandName": "Enable-PnPFeature", - "Id": 296 + "CommandName": "Enable-PnPFeature" }, { + "Id": 297, "Command": "Enable-PnPPageScheduling", "Rank": 1, - "CommandName": "Enable-PnPPageScheduling", - "Id": 297 + "CommandName": "Enable-PnPPageScheduling" }, { + "Id": 298, "Command": "Enable-PnPPowerShellTelemetry", "Rank": 1, - "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 298 + "CommandName": "Enable-PnPPowerShellTelemetry" }, { + "Id": 299, "Command": "Enable-PnPPowerShellTelemetry -Force", "Rank": 2, - "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 299 + "CommandName": "Enable-PnPPowerShellTelemetry" }, { + "Id": 300, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Rank": 1, - "CommandName": "Enable-PnPSiteClassification", - "Id": 300 + "CommandName": "Enable-PnPSiteClassification" }, { + "Id": 301, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 2, - "CommandName": "Enable-PnPSiteClassification", - "Id": 301 + "CommandName": "Enable-PnPSiteClassification" }, { + "Id": 302, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Rank": 1, - "CommandName": "Export-PnPListToSiteTemplate", - "Id": 302 + "CommandName": "Export-PnPListToSiteTemplate" }, { + "Id": 303, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Rank": 2, - "CommandName": "Export-PnPListToSiteTemplate", - "Id": 303 + "CommandName": "Export-PnPListToSiteTemplate" }, { + "Id": 304, "Command": "Export-PnPPage -Identity Home.aspx", "Rank": 1, - "CommandName": "Export-PnPPage", - "Id": 304 + "CommandName": "Export-PnPPage" }, { + "Id": 305, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Rank": 1, - "CommandName": "Export-PnPPageMapping", - "Id": 305 + "CommandName": "Export-PnPPageMapping" }, { + "Id": 306, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Rank": 2, - "CommandName": "Export-PnPPageMapping", - "Id": 306 + "CommandName": "Export-PnPPageMapping" }, { + "Id": 307, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Rank": 3, - "CommandName": "Export-PnPPageMapping", - "Id": 307 + "CommandName": "Export-PnPPageMapping" }, { + "Id": 308, "Command": "Export-PnPTaxonomy", "Rank": 1, - "CommandName": "Export-PnPTaxonomy", - "Id": 308 + "CommandName": "Export-PnPTaxonomy" }, { + "Id": 309, "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Rank": 2, - "CommandName": "Export-PnPTaxonomy", - "Id": 309 + "CommandName": "Export-PnPTaxonomy" }, { + "Id": 310, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Rank": 3, - "CommandName": "Export-PnPTaxonomy", - "Id": 310 + "CommandName": "Export-PnPTaxonomy" }, { + "Id": 311, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Rank": 4, - "CommandName": "Export-PnPTaxonomy", - "Id": 311 + "CommandName": "Export-PnPTaxonomy" }, { + "Id": 312, "Command": "Export-PnPTermGroupToXml", "Rank": 1, - "CommandName": "Export-PnPTermGroupToXml", - "Id": 312 + "CommandName": "Export-PnPTermGroupToXml" }, { + "Id": 313, "Command": "Export-PnPTermGroupToXml -Out output.xml", "Rank": 2, - "CommandName": "Export-PnPTermGroupToXml", - "Id": 313 + "CommandName": "Export-PnPTermGroupToXml" }, { + "Id": 314, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Rank": 3, - "CommandName": "Export-PnPTermGroupToXml", - "Id": 314 + "CommandName": "Export-PnPTermGroupToXml" }, { + "Id": 315, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "CommandName": "Export-PnPUserInfo", - "Id": 315 + "CommandName": "Export-PnPUserInfo" }, { + "Id": 316, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2, - "CommandName": "Export-PnPUserInfo", - "Id": 316 + "CommandName": "Export-PnPUserInfo" }, { + "Id": 317, "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "CommandName": "Export-PnPUserProfile", - "Id": 317 + "CommandName": "Export-PnPUserProfile" }, { + "Id": 318, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2, - "CommandName": "Export-PnPUserProfile", - "Id": 318 + "CommandName": "Export-PnPUserProfile" }, { + "Id": 319, "Command": "Find-PnPFile -Match *.master", "Rank": 1, - "CommandName": "Find-PnPFile", - "Id": 319 + "CommandName": "Find-PnPFile" }, { + "Id": 320, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Rank": 2, - "CommandName": "Find-PnPFile", - "Id": 320 + "CommandName": "Find-PnPFile" }, { + "Id": 321, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Rank": 3, - "CommandName": "Find-PnPFile", - "Id": 321 + "CommandName": "Find-PnPFile" }, { + "Id": 322, "Command": "Get-PnPAccessToken", "Rank": 1, - "CommandName": "Get-PnPAccessToken", - "Id": 322 + "CommandName": "Get-PnPAccessToken" }, { + "Id": 323, "Command": "Get-PnPAccessToken -Decoded", "Rank": 2, - "CommandName": "Get-PnPAccessToken", - "Id": 323 + "CommandName": "Get-PnPAccessToken" }, { + "Id": 324, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Rank": 3, - "CommandName": "Get-PnPAccessToken", - "Id": 324 + "CommandName": "Get-PnPAccessToken" }, { + "Id": 325, "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Rank": 4, - "CommandName": "Get-PnPAccessToken", - "Id": 325 + "CommandName": "Get-PnPAccessToken" }, { + "Id": 326, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Rank": 5, - "CommandName": "Get-PnPAccessToken", - "Id": 326 + "CommandName": "Get-PnPAccessToken" }, { + "Id": 327, "Command": "Get-PnPAlert", "Rank": 1, - "CommandName": "Get-PnPAlert", - "Id": 327 + "CommandName": "Get-PnPAlert" }, { + "Id": 328, "Command": "Get-PnPAlert -List \"Demo List\"", "Rank": 2, - "CommandName": "Get-PnPAlert", - "Id": 328 + "CommandName": "Get-PnPAlert" }, { + "Id": 329, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Get-PnPAlert", - "Id": 329 + "CommandName": "Get-PnPAlert" }, { + "Id": 330, "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Rank": 4, - "CommandName": "Get-PnPAlert", - "Id": 330 + "CommandName": "Get-PnPAlert" }, { + "Id": 331, "Command": "Get-PnPAlert -AllUsers", "Rank": 5, - "CommandName": "Get-PnPAlert", - "Id": 331 + "CommandName": "Get-PnPAlert" }, { + "Id": 332, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Rank": 6, - "CommandName": "Get-PnPAlert", - "Id": 332 + "CommandName": "Get-PnPAlert" }, { + "Id": 333, "Command": "Get-PnPApp", "Rank": 1, - "CommandName": "Get-PnPApp", - "Id": 333 + "CommandName": "Get-PnPApp" }, { + "Id": 334, "Command": "Get-PnPApp -Scope Site", "Rank": 2, - "CommandName": "Get-PnPApp", - "Id": 334 + "CommandName": "Get-PnPApp" }, { + "Id": 335, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 3, - "CommandName": "Get-PnPApp", - "Id": 335 + "CommandName": "Get-PnPApp" }, { + "Id": 336, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Rank": 1, - "CommandName": "Get-PnPAppErrors", - "Id": 336 + "CommandName": "Get-PnPAppErrors" }, { + "Id": 337, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Rank": 2, - "CommandName": "Get-PnPAppErrors", - "Id": 337 + "CommandName": "Get-PnPAppErrors" }, { + "Id": 338, "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Rank": 1, - "CommandName": "Get-PnPAppInfo", - "Id": 338 + "CommandName": "Get-PnPAppInfo" }, { + "Id": 339, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 2, - "CommandName": "Get-PnPAppInfo", - "Id": 339 + "CommandName": "Get-PnPAppInfo" }, { + "Id": 340, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Rank": 3, - "CommandName": "Get-PnPAppInfo", - "Id": 340 + "CommandName": "Get-PnPAppInfo" }, { + "Id": 341, "Command": "Get-PnPApplicationCustomizer", "Rank": 1, - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 341 + "CommandName": "Get-PnPApplicationCustomizer" }, { + "Id": 342, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 342 + "CommandName": "Get-PnPApplicationCustomizer" }, { + "Id": 343, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Rank": 3, - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 343 + "CommandName": "Get-PnPApplicationCustomizer" }, { + "Id": 344, "Command": "Get-PnPAuditing", "Rank": 1, - "CommandName": "Get-PnPAuditing", - "Id": 344 + "CommandName": "Get-PnPAuditing" }, { + "Id": 345, "Command": "Get-PnPAuthenticationRealm", "Rank": 1, - "CommandName": "Get-PnPAuthenticationRealm", - "Id": 345 + "CommandName": "Get-PnPAuthenticationRealm" }, { + "Id": 346, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Rank": 2, - "CommandName": "Get-PnPAuthenticationRealm", - "Id": 346 + "CommandName": "Get-PnPAuthenticationRealm" }, { + "Id": 347, "Command": "Get-PnPAvailableLanguage", "Rank": 1, - "CommandName": "Get-PnPAvailableLanguage", - "Id": 347 + "CommandName": "Get-PnPAvailableLanguage" }, { + "Id": 348, "Command": "Get-PnPAvailableSensitivityLabel", "Rank": 1, - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 348 + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { + "Id": 349, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Rank": 2, - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 349 + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { + "Id": 350, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Rank": 3, - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 350 + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { + "Id": 351, "Command": "Get-PnPAvailableSiteClassification", "Rank": 1, - "CommandName": "Get-PnPAvailableSiteClassification", - "Id": 351 + "CommandName": "Get-PnPAvailableSiteClassification" }, { + "Id": 352, "Command": "Get-PnPAzureACSPrincipal", "Rank": 1, - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 352 + "CommandName": "Get-PnPAzureACSPrincipal" }, { + "Id": 353, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Rank": 2, - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 353 + "CommandName": "Get-PnPAzureACSPrincipal" }, { + "Id": 354, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Rank": 3, - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 354 + "CommandName": "Get-PnPAzureACSPrincipal" }, { + "Id": 355, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Rank": 4, - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 355 + "CommandName": "Get-PnPAzureACSPrincipal" }, { + "Id": 356, "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 356 + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { + "Id": 357, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 357 + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { + "Id": 358, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 358 + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { + "Id": 359, "Command": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 359 + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { + "Id": 360, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 360 + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { + "Id": 361, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 361 + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { + "Id": 362, "Command": "Get-PnPAzureADApp", "Rank": 1, - "CommandName": "Get-PnPAzureADApp", - "Id": 362 + "CommandName": "Get-PnPAzureADApp" }, { + "Id": 363, "Command": "Get-PnPAzureADApp -Identity MyApp", "Rank": 2, - "CommandName": "Get-PnPAzureADApp", - "Id": 363 + "CommandName": "Get-PnPAzureADApp" }, { + "Id": 364, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "CommandName": "Get-PnPAzureADApp", - "Id": 364 + "CommandName": "Get-PnPAzureADApp" }, { + "Id": 365, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Rank": 4, - "CommandName": "Get-PnPAzureADApp", - "Id": 365 + "CommandName": "Get-PnPAzureADApp" }, { + "Id": 366, "Command": "Get-PnPAzureADAppPermission", "Rank": 1, - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 366 + "CommandName": "Get-PnPAzureADAppPermission" }, { + "Id": 367, "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Rank": 2, - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 367 + "CommandName": "Get-PnPAzureADAppPermission" }, { + "Id": 368, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 368 + "CommandName": "Get-PnPAzureADAppPermission" }, { + "Id": 369, "Command": "Get-PnPAzureADAppSitePermission", "Rank": 1, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 369 + "CommandName": "Get-PnPAzureADAppSitePermission" }, { + "Id": 370, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 370 + "CommandName": "Get-PnPAzureADAppSitePermission" }, { + "Id": 371, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Rank": 3, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 371 + "CommandName": "Get-PnPAzureADAppSitePermission" }, { + "Id": 372, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Rank": 4, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 372 + "CommandName": "Get-PnPAzureADAppSitePermission" }, { + "Id": 373, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Rank": 5, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 373 + "CommandName": "Get-PnPAzureADAppSitePermission" }, { + "Id": 374, "Command": "Get-PnPAzureADGroup", "Rank": 1, - "CommandName": "Get-PnPAzureADGroup", - "Id": 374 + "CommandName": "Get-PnPAzureADGroup" }, { + "Id": 375, "Command": "Get-PnPAzureADGroup -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPAzureADGroup", - "Id": 375 + "CommandName": "Get-PnPAzureADGroup" }, { + "Id": 376, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Rank": 3, - "CommandName": "Get-PnPAzureADGroup", - "Id": 376 + "CommandName": "Get-PnPAzureADGroup" }, { + "Id": 377, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Rank": 4, - "CommandName": "Get-PnPAzureADGroup", - "Id": 377 + "CommandName": "Get-PnPAzureADGroup" }, { + "Id": 378, "Command": "Get-PnPAzureADGroup -Identity $group", "Rank": 5, - "CommandName": "Get-PnPAzureADGroup", - "Id": 378 + "CommandName": "Get-PnPAzureADGroup" }, { + "Id": 379, "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPAzureADGroupMember", - "Id": 379 + "CommandName": "Get-PnPAzureADGroupMember" }, { + "Id": 380, "Command": "Get-PnPAzureADGroupMember -Identity $group", "Rank": 2, - "CommandName": "Get-PnPAzureADGroupMember", - "Id": 380 + "CommandName": "Get-PnPAzureADGroupMember" }, { + "Id": 381, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 381 + "CommandName": "Get-PnPAzureADGroupOwner" }, { + "Id": 382, "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Rank": 2, - "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 382 + "CommandName": "Get-PnPAzureADGroupOwner" }, { + "Id": 383, "Command": "Get-PnPAzureADServicePrincipal", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 383 + "CommandName": "Get-PnPAzureADServicePrincipal" }, { + "Id": 384, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 384 + "CommandName": "Get-PnPAzureADServicePrincipal" }, { + "Id": 385, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Rank": 3, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 385 + "CommandName": "Get-PnPAzureADServicePrincipal" }, { + "Id": 386, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Rank": 4, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 386 + "CommandName": "Get-PnPAzureADServicePrincipal" }, { + "Id": 387, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 387 + "CommandName": "Get-PnPAzureADServicePrincipal" }, { + "Id": 388, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 388 + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { + "Id": 389, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 389 + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { + "Id": 390, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 390 + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { + "Id": 391, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 391 + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { + "Id": 392, "Command": "Get-PnPAzureADUser", "Rank": 1, - "CommandName": "Get-PnPAzureADUser", - "Id": 392 + "CommandName": "Get-PnPAzureADUser" }, { + "Id": 393, "Command": "Get-PnPAzureADUser -EndIndex 50", "Rank": 2, - "CommandName": "Get-PnPAzureADUser", - "Id": 393 + "CommandName": "Get-PnPAzureADUser" }, { + "Id": 394, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 3, - "CommandName": "Get-PnPAzureADUser", - "Id": 394 + "CommandName": "Get-PnPAzureADUser" }, { + "Id": 395, "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Rank": 4, - "CommandName": "Get-PnPAzureADUser", - "Id": 395 + "CommandName": "Get-PnPAzureADUser" }, { + "Id": 396, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Rank": 5, - "CommandName": "Get-PnPAzureADUser", - "Id": 396 + "CommandName": "Get-PnPAzureADUser" }, { + "Id": 397, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Rank": 6, - "CommandName": "Get-PnPAzureADUser", - "Id": 397 + "CommandName": "Get-PnPAzureADUser" }, { + "Id": 398, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Rank": 7, - "CommandName": "Get-PnPAzureADUser", - "Id": 398 + "CommandName": "Get-PnPAzureADUser" }, { + "Id": 399, "Command": "Get-PnPAzureADUser -Delta", "Rank": 8, - "CommandName": "Get-PnPAzureADUser", - "Id": 399 + "CommandName": "Get-PnPAzureADUser" }, { + "Id": 400, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Rank": 9, - "CommandName": "Get-PnPAzureADUser", - "Id": 400 + "CommandName": "Get-PnPAzureADUser" }, { + "Id": 401, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Rank": 10, - "CommandName": "Get-PnPAzureADUser", - "Id": 401 + "CommandName": "Get-PnPAzureADUser" }, { + "Id": 402, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Rank": 1, - "CommandName": "Get-PnPAzureCertificate", - "Id": 402 + "CommandName": "Get-PnPAzureCertificate" }, { + "Id": 403, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Rank": 2, - "CommandName": "Get-PnPAzureCertificate", - "Id": 403 + "CommandName": "Get-PnPAzureCertificate" }, { + "Id": 404, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Rank": 3, - "CommandName": "Get-PnPAzureCertificate", - "Id": 404 + "CommandName": "Get-PnPAzureCertificate" }, { + "Id": 405, "Command": "Get-PnPBrowserIdleSignout", "Rank": 1, - "CommandName": "Get-PnPBrowserIdleSignout", - "Id": 405 + "CommandName": "Get-PnPBrowserIdleSignout" }, { + "Id": 406, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Rank": 1, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 406 + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { + "Id": 407, "Command": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 407 + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { + "Id": 408, "Command": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 408 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { + "Id": 409, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Rank": 2, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 409 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { + "Id": 410, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Rank": 3, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 410 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { + "Id": 411, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 411 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { + "Id": 412, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Rank": 5, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 412 + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { + "Id": 413, "Command": "Get-PnPChangeLog", "Rank": 1, - "CommandName": "Get-PnPChangeLog", - "Id": 413 + "CommandName": "Get-PnPChangeLog" }, { + "Id": 414, "Command": "Get-PnPChangeLog -Nightly", "Rank": 2, - "CommandName": "Get-PnPChangeLog", - "Id": 414 + "CommandName": "Get-PnPChangeLog" }, { + "Id": 415, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Rank": 1, - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 415 + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { + "Id": 416, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Rank": 2, - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 416 + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { + "Id": 417, "Command": "Get-PnPContentType", "Rank": 1, - "CommandName": "Get-PnPContentType", - "Id": 417 + "CommandName": "Get-PnPContentType" }, { + "Id": 418, "Command": "Get-PnPContentType -InSiteHierarchy", "Rank": 2, - "CommandName": "Get-PnPContentType", - "Id": 418 + "CommandName": "Get-PnPContentType" }, { + "Id": 419, "Command": "Get-PnPContentType -Identity \"Project Document\"", "Rank": 3, - "CommandName": "Get-PnPContentType", - "Id": 419 + "CommandName": "Get-PnPContentType" }, { + "Id": 420, "Command": "Get-PnPContentType -List \"Documents\"", "Rank": 4, - "CommandName": "Get-PnPContentType", - "Id": 420 + "CommandName": "Get-PnPContentType" }, { + "Id": 421, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Rank": 1, - "CommandName": "Get-PnPContentTypePublishingStatus", - "Id": 421 + "CommandName": "Get-PnPContentTypePublishingStatus" }, { + "Id": 422, "Command": "Get-PnPCustomAction", "Rank": 1, - "CommandName": "Get-PnPCustomAction", - "Id": 422 + "CommandName": "Get-PnPCustomAction" }, { + "Id": 423, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "CommandName": "Get-PnPCustomAction", - "Id": 423 + "CommandName": "Get-PnPCustomAction" }, { + "Id": 424, "Command": "Get-PnPCustomAction -Scope web", "Rank": 3, - "CommandName": "Get-PnPCustomAction", - "Id": 424 + "CommandName": "Get-PnPCustomAction" }, { + "Id": 425, "Command": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 425 + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { + "Id": 426, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 2, - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 426 + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { + "Id": 427, "Command": "Get-PnPDeletedTeam", "Rank": 1, - "CommandName": "Get-PnPDeletedTeam", - "Id": 427 + "CommandName": "Get-PnPDeletedTeam" }, { + "Id": 428, "Command": "Get-PnPDiagnostics", "Rank": 1, - "CommandName": "Get-PnPDiagnostics", - "Id": 428 + "CommandName": "Get-PnPDiagnostics" }, { + "Id": 429, "Command": "Get-PnPDisableSpacesActivation", "Rank": 1, - "CommandName": "Get-PnPDisableSpacesActivation", - "Id": 429 + "CommandName": "Get-PnPDisableSpacesActivation" }, { + "Id": 430, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Rank": 1, - "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 430 + "CommandName": "Get-PnPDocumentSetTemplate" }, { + "Id": 431, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Rank": 2, - "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 431 + "CommandName": "Get-PnPDocumentSetTemplate" }, { + "Id": 432, "Command": "Get-PnPEventReceiver", "Rank": 1, - "CommandName": "Get-PnPEventReceiver", - "Id": 432 + "CommandName": "Get-PnPEventReceiver" }, { + "Id": 433, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "CommandName": "Get-PnPEventReceiver", - "Id": 433 + "CommandName": "Get-PnPEventReceiver" }, { + "Id": 434, "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Rank": 3, - "CommandName": "Get-PnPEventReceiver", - "Id": 434 + "CommandName": "Get-PnPEventReceiver" }, { + "Id": 435, "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Rank": 4, - "CommandName": "Get-PnPEventReceiver", - "Id": 435 + "CommandName": "Get-PnPEventReceiver" }, { + "Id": 436, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 5, - "CommandName": "Get-PnPEventReceiver", - "Id": 436 + "CommandName": "Get-PnPEventReceiver" }, { + "Id": 437, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Rank": 6, - "CommandName": "Get-PnPEventReceiver", - "Id": 437 + "CommandName": "Get-PnPEventReceiver" }, { + "Id": 438, "Command": "Get-PnPEventReceiver -Scope Site", "Rank": 7, - "CommandName": "Get-PnPEventReceiver", - "Id": 438 + "CommandName": "Get-PnPEventReceiver" }, { + "Id": 439, "Command": "Get-PnPEventReceiver -Scope Web", "Rank": 8, - "CommandName": "Get-PnPEventReceiver", - "Id": 439 + "CommandName": "Get-PnPEventReceiver" }, { + "Id": 440, "Command": "Get-PnPEventReceiver -Scope All", "Rank": 9, - "CommandName": "Get-PnPEventReceiver", - "Id": 440 + "CommandName": "Get-PnPEventReceiver" }, { + "Id": 441, "Command": "Get-PnPException", "Rank": 1, - "CommandName": "Get-PnPException", - "Id": 441 + "CommandName": "Get-PnPException" }, { + "Id": 442, "Command": "Get-PnPException -All", "Rank": 2, - "CommandName": "Get-PnPException", - "Id": 442 + "CommandName": "Get-PnPException" }, { + "Id": 443, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Rank": 1, - "CommandName": "Get-PnPExternalUser", - "Id": 443 + "CommandName": "Get-PnPExternalUser" }, { + "Id": 444, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Rank": 2, - "CommandName": "Get-PnPExternalUser", - "Id": 444 + "CommandName": "Get-PnPExternalUser" }, { + "Id": 445, "Command": "Get-PnPFeature", "Rank": 1, - "CommandName": "Get-PnPFeature", - "Id": 445 + "CommandName": "Get-PnPFeature" }, { + "Id": 446, "Command": "Get-PnPFeature -Scope Site", "Rank": 2, - "CommandName": "Get-PnPFeature", - "Id": 446 + "CommandName": "Get-PnPFeature" }, { + "Id": 447, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 3, - "CommandName": "Get-PnPFeature", - "Id": 447 + "CommandName": "Get-PnPFeature" }, { + "Id": 448, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Rank": 4, - "CommandName": "Get-PnPFeature", - "Id": 448 + "CommandName": "Get-PnPFeature" }, { + "Id": 449, "Command": "Get-PnPField", "Rank": 1, - "CommandName": "Get-PnPField", - "Id": 449 + "CommandName": "Get-PnPField" }, { + "Id": 450, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "CommandName": "Get-PnPField", - "Id": 450 + "CommandName": "Get-PnPField" }, { + "Id": 451, "Command": "Get-PnPField -Group \"Custom Columns\"", "Rank": 3, - "CommandName": "Get-PnPField", - "Id": 451 + "CommandName": "Get-PnPField" }, { + "Id": 452, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Rank": 1, - "CommandName": "Get-PnPFile", - "Id": 452 + "CommandName": "Get-PnPFile" }, { + "Id": 453, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Rank": 2, - "CommandName": "Get-PnPFile", - "Id": 453 + "CommandName": "Get-PnPFile" }, { + "Id": 454, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Rank": 3, - "CommandName": "Get-PnPFile", - "Id": 454 + "CommandName": "Get-PnPFile" }, { + "Id": 455, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Rank": 4, - "CommandName": "Get-PnPFile", - "Id": 455 + "CommandName": "Get-PnPFile" }, { + "Id": 456, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Rank": 5, - "CommandName": "Get-PnPFile", - "Id": 456 + "CommandName": "Get-PnPFile" }, { + "Id": 457, "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Rank": 6, - "CommandName": "Get-PnPFile", - "Id": 457 + "CommandName": "Get-PnPFile" }, { + "Id": 458, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Rank": 7, - "CommandName": "Get-PnPFile", - "Id": 458 + "CommandName": "Get-PnPFile" }, { + "Id": 459, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Get-PnPFileSharingLink", - "Id": 459 + "CommandName": "Get-PnPFileSharingLink" }, { + "Id": 460, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Rank": 1, - "CommandName": "Get-PnPFileVersion", - "Id": 460 + "CommandName": "Get-PnPFileVersion" }, { + "Id": 461, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Rank": 2, - "CommandName": "Get-PnPFileVersion", - "Id": 461 + "CommandName": "Get-PnPFileVersion" }, { + "Id": 462, "Command": "Get-PnPFlow -AsAdmin", "Rank": 1, - "CommandName": "Get-PnPFlow", - "Id": 462 + "CommandName": "Get-PnPFlow" }, { + "Id": 463, "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "Rank": 2, - "CommandName": "Get-PnPFlow", - "Id": 463 + "CommandName": "Get-PnPFlow" }, { + "Id": 464, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Rank": 3, - "CommandName": "Get-PnPFlow", - "Id": 464 + "CommandName": "Get-PnPFlow" }, { + "Id": 465, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Rank": 1, - "CommandName": "Get-PnPFlowOwner", - "Id": 465 + "CommandName": "Get-PnPFlowOwner" }, { + "Id": 466, "Command": "Get-PnPFolder", "Rank": 1, - "CommandName": "Get-PnPFolder", - "Id": 466 + "CommandName": "Get-PnPFolder" }, { + "Id": 467, "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Rank": 2, - "CommandName": "Get-PnPFolder", - "Id": 467 + "CommandName": "Get-PnPFolder" }, { + "Id": 468, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolder", - "Id": 468 + "CommandName": "Get-PnPFolder" }, { + "Id": 469, "Command": "Get-PnPFolder -List \"Shared Documents\"", "Rank": 4, - "CommandName": "Get-PnPFolder", - "Id": 469 + "CommandName": "Get-PnPFolder" }, { + "Id": 470, "Command": "Get-PnPFolderFile", "Rank": 1, - "CommandName": "Get-PnPFolderFile", - "Id": 470 + "CommandName": "Get-PnPFolderFile" }, { + "Id": 471, "Command": "Get-PnPFolderFile -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderFile", - "Id": 471 + "CommandName": "Get-PnPFolderFile" }, { + "Id": 472, "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderFile", - "Id": 472 + "CommandName": "Get-PnPFolderFile" }, { + "Id": 473, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, - "CommandName": "Get-PnPFolderFile", - "Id": 473 + "CommandName": "Get-PnPFolderFile" }, { + "Id": 474, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 5, - "CommandName": "Get-PnPFolderFile", - "Id": 474 + "CommandName": "Get-PnPFolderFile" }, { + "Id": 475, "Command": "Get-PnPFolderFolder", "Rank": 1, - "CommandName": "Get-PnPFolderFolder", - "Id": 475 + "CommandName": "Get-PnPFolderFolder" }, { + "Id": 476, "Command": "Get-PnPFolderFolder -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderFolder", - "Id": 476 + "CommandName": "Get-PnPFolderFolder" }, { + "Id": 477, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderFolder", - "Id": 477 + "CommandName": "Get-PnPFolderFolder" }, { + "Id": 478, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "Rank": 4, - "CommandName": "Get-PnPFolderFolder", - "Id": 478 + "CommandName": "Get-PnPFolderFolder" }, { + "Id": 479, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "Rank": 5, - "CommandName": "Get-PnPFolderFolder", - "Id": 479 + "CommandName": "Get-PnPFolderFolder" }, { + "Id": 480, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, - "CommandName": "Get-PnPFolderFolder", - "Id": 480 + "CommandName": "Get-PnPFolderFolder" }, { + "Id": 481, "Command": "Get-PnPFolderItem", "Rank": 1, - "CommandName": "Get-PnPFolderItem", - "Id": 481 + "CommandName": "Get-PnPFolderItem" }, { + "Id": 482, "Command": "Get-PnPFolderItem -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderItem", - "Id": 482 + "CommandName": "Get-PnPFolderItem" }, { + "Id": 483, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderItem", - "Id": 483 + "CommandName": "Get-PnPFolderItem" }, { + "Id": 484, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, - "CommandName": "Get-PnPFolderItem", - "Id": 484 + "CommandName": "Get-PnPFolderItem" }, { + "Id": 485, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Rank": 5, - "CommandName": "Get-PnPFolderItem", - "Id": 485 + "CommandName": "Get-PnPFolderItem" }, { + "Id": 486, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, - "CommandName": "Get-PnPFolderItem", - "Id": 486 + "CommandName": "Get-PnPFolderItem" }, { + "Id": 487, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Get-PnPFolderSharingLink", - "Id": 487 + "CommandName": "Get-PnPFolderSharingLink" }, { + "Id": 488, "Command": "Get-PnPFolderStorageMetric", "Rank": 1, - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 488 + "CommandName": "Get-PnPFolderStorageMetric" }, { + "Id": 489, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Rank": 2, - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 489 + "CommandName": "Get-PnPFolderStorageMetric" }, { + "Id": 490, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 490 + "CommandName": "Get-PnPFolderStorageMetric" }, { + "Id": 491, "Command": "Get-PnPFooter", "Rank": 1, - "CommandName": "Get-PnPFooter", - "Id": 491 + "CommandName": "Get-PnPFooter" }, { + "Id": 492, "Command": "Get-PnPGraphAccessToken", "Rank": 1, - "CommandName": "Get-PnPGraphAccessToken", - "Id": 492 + "CommandName": "Get-PnPGraphAccessToken" }, { + "Id": 493, "Command": "Get-PnPGraphAccessToken -Decoded", "Rank": 2, - "CommandName": "Get-PnPGraphAccessToken", - "Id": 493 + "CommandName": "Get-PnPGraphAccessToken" }, { + "Id": 494, "Command": "Get-PnPGraphSubscription", "Rank": 1, - "CommandName": "Get-PnPGraphSubscription", - "Id": 494 + "CommandName": "Get-PnPGraphSubscription" }, { + "Id": 495, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 2, - "CommandName": "Get-PnPGraphSubscription", - "Id": 495 + "CommandName": "Get-PnPGraphSubscription" }, { + "Id": 496, "Command": "Get-PnPGroup", "Rank": 1, - "CommandName": "Get-PnPGroup", - "Id": 496 + "CommandName": "Get-PnPGroup" }, { + "Id": 497, "Command": "Get-PnPGroup -Identity 'My Site Users'", "Rank": 2, - "CommandName": "Get-PnPGroup", - "Id": 497 + "CommandName": "Get-PnPGroup" }, { + "Id": 498, "Command": "Get-PnPGroup -AssociatedMemberGroup", "Rank": 3, - "CommandName": "Get-PnPGroup", - "Id": 498 + "CommandName": "Get-PnPGroup" }, { + "Id": 499, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Rank": 1, - "CommandName": "Get-PnPGroupMember", - "Id": 499 + "CommandName": "Get-PnPGroupMember" }, { + "Id": 500, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Rank": 2, - "CommandName": "Get-PnPGroupMember", - "Id": 500 + "CommandName": "Get-PnPGroupMember" }, { + "Id": 501, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Rank": 1, - "CommandName": "Get-PnPGroupPermissions", - "Id": 501 + "CommandName": "Get-PnPGroupPermissions" }, { + "Id": 502, "Command": "Get-PnPHideDefaultThemes", "Rank": 1, - "CommandName": "Get-PnPHideDefaultThemes", - "Id": 502 + "CommandName": "Get-PnPHideDefaultThemes" }, { + "Id": 503, "Command": "Get-PnPHomePage", "Rank": 1, - "CommandName": "Get-PnPHomePage", - "Id": 503 + "CommandName": "Get-PnPHomePage" }, { + "Id": 504, "Command": "Get-PnPHomeSite", "Rank": 1, - "CommandName": "Get-PnPHomeSite", - "Id": 504 + "CommandName": "Get-PnPHomeSite" }, { + "Id": 505, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Rank": 2, - "CommandName": "Get-PnPHomeSite", - "Id": 505 + "CommandName": "Get-PnPHomeSite" }, { + "Id": 506, "Command": "Get-PnPHomeSite -Detailed", "Rank": 3, - "CommandName": "Get-PnPHomeSite", - "Id": 506 + "CommandName": "Get-PnPHomeSite" }, { + "Id": 507, "Command": "Get-PnPHubSite", "Rank": 1, - "CommandName": "Get-PnPHubSite", - "Id": 507 + "CommandName": "Get-PnPHubSite" }, { + "Id": 508, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "CommandName": "Get-PnPHubSite", - "Id": 508 + "CommandName": "Get-PnPHubSite" }, { + "Id": 509, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Rank": 3, - "CommandName": "Get-PnPHubSite", - "Id": 509 + "CommandName": "Get-PnPHubSite" }, { + "Id": 510, "Command": "Get-PnPHubSiteChild", "Rank": 1, - "CommandName": "Get-PnPHubSiteChild", - "Id": 510 + "CommandName": "Get-PnPHubSiteChild" }, { + "Id": 511, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "CommandName": "Get-PnPHubSiteChild", - "Id": 511 + "CommandName": "Get-PnPHubSiteChild" }, { + "Id": 512, "Command": "Get-PnPInPlaceRecordsManagement", "Rank": 1, - "CommandName": "Get-PnPInPlaceRecordsManagement", - "Id": 512 + "CommandName": "Get-PnPInPlaceRecordsManagement" }, { + "Id": 513, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Rank": 1, - "CommandName": "Get-PnPIsSiteAliasAvailable", - "Id": 513 + "CommandName": "Get-PnPIsSiteAliasAvailable" }, { + "Id": 514, "Command": "Get-PnPJavaScriptLink", "Rank": 1, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 514 + "CommandName": "Get-PnPJavaScriptLink" }, { + "Id": 515, "Command": "Get-PnPJavaScriptLink -Scope All", "Rank": 2, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 515 + "CommandName": "Get-PnPJavaScriptLink" }, { + "Id": 516, "Command": "Get-PnPJavaScriptLink -Scope Web", "Rank": 3, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 516 + "CommandName": "Get-PnPJavaScriptLink" }, { + "Id": 517, "Command": "Get-PnPJavaScriptLink -Scope Site", "Rank": 4, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 517 + "CommandName": "Get-PnPJavaScriptLink" }, { + "Id": 518, "Command": "Get-PnPJavaScriptLink -Name Test", "Rank": 5, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 518 + "CommandName": "Get-PnPJavaScriptLink" }, { + "Id": 519, "Command": "Get-PnPKnowledgeHubSite", "Rank": 1, - "CommandName": "Get-PnPKnowledgeHubSite", - "Id": 519 + "CommandName": "Get-PnPKnowledgeHubSite" }, { + "Id": 520, "Command": "Get-PnPLabel", "Rank": 1, - "CommandName": "Get-PnPLabel", - "Id": 520 + "CommandName": "Get-PnPLabel" }, { + "Id": 521, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Rank": 2, - "CommandName": "Get-PnPLabel", - "Id": 521 + "CommandName": "Get-PnPLabel" }, { + "Id": 522, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Rank": 1, - "CommandName": "Get-PnPLargeListOperationStatus", - "Id": 522 + "CommandName": "Get-PnPLargeListOperationStatus" }, { + "Id": 523, "Command": "Get-PnPList", "Rank": 1, - "CommandName": "Get-PnPList", - "Id": 523 + "CommandName": "Get-PnPList" }, { + "Id": 524, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 2, - "CommandName": "Get-PnPList", - "Id": 524 + "CommandName": "Get-PnPList" }, { + "Id": 525, "Command": "Get-PnPList -Identity Lists/Announcements", "Rank": 3, - "CommandName": "Get-PnPList", - "Id": 525 + "CommandName": "Get-PnPList" }, { + "Id": 526, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Rank": 4, - "CommandName": "Get-PnPList", - "Id": 526 + "CommandName": "Get-PnPList" }, { + "Id": 527, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Rank": 5, - "CommandName": "Get-PnPList", - "Id": 527 + "CommandName": "Get-PnPList" }, { + "Id": 528, "Command": "Get-PnPListDesign", "Rank": 1, - "CommandName": "Get-PnPListDesign", - "Id": 528 + "CommandName": "Get-PnPListDesign" }, { + "Id": 529, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPListDesign", - "Id": 529 + "CommandName": "Get-PnPListDesign" }, { + "Id": 530, "Command": "Get-PnPListDesign -Identity ListEvent", "Rank": 3, - "CommandName": "Get-PnPListDesign", - "Id": 530 + "CommandName": "Get-PnPListDesign" }, { + "Id": 531, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Rank": 1, - "CommandName": "Get-PnPListInformationRightsManagement", - "Id": 531 + "CommandName": "Get-PnPListInformationRightsManagement" }, { + "Id": 532, "Command": "Get-PnPListItem -List Tasks", "Rank": 1, - "CommandName": "Get-PnPListItem", - "Id": 532 + "CommandName": "Get-PnPListItem" }, { + "Id": 533, "Command": "Get-PnPListItem -List Tasks -Id 1", "Rank": 2, - "CommandName": "Get-PnPListItem", - "Id": 533 + "CommandName": "Get-PnPListItem" }, { + "Id": 534, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Rank": 3, - "CommandName": "Get-PnPListItem", - "Id": 534 + "CommandName": "Get-PnPListItem" }, { + "Id": 535, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "Rank": 4, - "CommandName": "Get-PnPListItem", - "Id": 535 + "CommandName": "Get-PnPListItem" }, { + "Id": 536, "Command": "Get-PnPListItem -List Tasks -Query \"\"", "Rank": 5, - "CommandName": "Get-PnPListItem", - "Id": 536 + "CommandName": "Get-PnPListItem" }, { + "Id": 537, "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Rank": 6, - "CommandName": "Get-PnPListItem", - "Id": 537 + "CommandName": "Get-PnPListItem" }, { + "Id": 538, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Rank": 7, - "CommandName": "Get-PnPListItem", - "Id": 538 + "CommandName": "Get-PnPListItem" }, { + "Id": 539, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Rank": 8, - "CommandName": "Get-PnPListItem", - "Id": 539 + "CommandName": "Get-PnPListItem" }, { + "Id": 540, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Rank": 9, - "CommandName": "Get-PnPListItem", - "Id": 540 + "CommandName": "Get-PnPListItem" }, { + "Id": 541, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "Rank": 1, - "CommandName": "Get-PnPListItemAttachment", - "Id": 541 + "CommandName": "Get-PnPListItemAttachment" }, { + "Id": 542, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "Rank": 2, - "CommandName": "Get-PnPListItemAttachment", - "Id": 542 + "CommandName": "Get-PnPListItemAttachment" }, { + "Id": 543, "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemComment", - "Id": 543 + "CommandName": "Get-PnPListItemComment" }, { + "Id": 544, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemPermission", - "Id": 544 + "CommandName": "Get-PnPListItemPermission" }, { + "Id": 545, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemVersion", - "Id": 545 + "CommandName": "Get-PnPListItemVersion" }, { + "Id": 546, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Rank": 1, - "CommandName": "Get-PnPListPermissions", - "Id": 546 + "CommandName": "Get-PnPListPermissions" }, { + "Id": 547, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Rank": 2, - "CommandName": "Get-PnPListPermissions", - "Id": 547 + "CommandName": "Get-PnPListPermissions" }, { + "Id": 548, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Rank": 1, - "CommandName": "Get-PnPListRecordDeclaration", - "Id": 548 + "CommandName": "Get-PnPListRecordDeclaration" }, { + "Id": 549, "Command": "Get-PnPMasterPage", "Rank": 1, - "CommandName": "Get-PnPMasterPage", - "Id": 549 + "CommandName": "Get-PnPMasterPage" }, { + "Id": 550, "Command": "Get-PnPMessageCenterAnnouncement", "Rank": 1, - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 550 + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { + "Id": 551, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Rank": 2, - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 551 + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { + "Id": 552, "Command": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 552 + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { + "Id": 553, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 553 + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { + "Id": 554, "Command": "Get-PnPMicrosoft365Group", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 554 + "CommandName": "Get-PnPMicrosoft365Group" }, { + "Id": 555, "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 555 + "CommandName": "Get-PnPMicrosoft365Group" }, { + "Id": 556, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 556 + "CommandName": "Get-PnPMicrosoft365Group" }, { + "Id": 557, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Rank": 4, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 557 + "CommandName": "Get-PnPMicrosoft365Group" }, { + "Id": 558, "Command": "Get-PnPMicrosoft365Group -Identity $group", "Rank": 5, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 558 + "CommandName": "Get-PnPMicrosoft365Group" }, { + "Id": 559, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Rank": 6, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 559 + "CommandName": "Get-PnPMicrosoft365Group" }, { + "Id": 560, "Command": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 560 + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { + "Id": 561, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 561 + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { + "Id": 562, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 562 + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { + "Id": 563, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 563 + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { + "Id": 564, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 564 + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { + "Id": 565, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 565 + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { + "Id": 566, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 566 + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { + "Id": 567, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 567 + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { + "Id": 568, "Command": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 568 + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { + "Id": 569, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 569 + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { + "Id": 570, "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 570 + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { + "Id": 571, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 571 + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { + "Id": 572, "Command": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 572 + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { + "Id": 573, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 573 + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { + "Id": 574, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 574 + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { + "Id": 575, "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 575 + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { + "Id": 576, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 576 + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { + "Id": 577, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 577 + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { + "Id": 578, "Command": "Get-PnPNavigationNode", "Rank": 1, - "CommandName": "Get-PnPNavigationNode", - "Id": 578 + "CommandName": "Get-PnPNavigationNode" }, { + "Id": 579, "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Rank": 2, - "CommandName": "Get-PnPNavigationNode", - "Id": 579 + "CommandName": "Get-PnPNavigationNode" }, { + "Id": 580, "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Rank": 3, - "CommandName": "Get-PnPNavigationNode", - "Id": 580 + "CommandName": "Get-PnPNavigationNode" }, { + "Id": 581, "Command": "Get-PnPOrgAssetsLibrary", "Rank": 1, - "CommandName": "Get-PnPOrgAssetsLibrary", - "Id": 581 + "CommandName": "Get-PnPOrgAssetsLibrary" }, { + "Id": 582, "Command": "Get-PnPOrgNewsSite", "Rank": 1, - "CommandName": "Get-PnPOrgNewsSite", - "Id": 582 + "CommandName": "Get-PnPOrgNewsSite" }, { + "Id": 583, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Rank": 1, - "CommandName": "Get-PnPPage", - "Id": 583 + "CommandName": "Get-PnPPage" }, { + "Id": 584, "Command": "Get-PnPPage \"MyPage\"", "Rank": 2, - "CommandName": "Get-PnPPage", - "Id": 584 + "CommandName": "Get-PnPPage" }, { + "Id": 585, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Rank": 3, - "CommandName": "Get-PnPPage", - "Id": 585 + "CommandName": "Get-PnPPage" }, { + "Id": 586, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Rank": 4, - "CommandName": "Get-PnPPage", - "Id": 586 + "CommandName": "Get-PnPPage" }, { + "Id": 587, "Command": "Get-PnPPageComponent -Page Home", "Rank": 1, - "CommandName": "Get-PnPPageComponent", - "Id": 587 + "CommandName": "Get-PnPPageComponent" }, { + "Id": 588, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "CommandName": "Get-PnPPageComponent", - "Id": 588 + "CommandName": "Get-PnPPageComponent" }, { + "Id": 589, "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Rank": 3, - "CommandName": "Get-PnPPageComponent", - "Id": 589 + "CommandName": "Get-PnPPageComponent" }, { + "Id": 590, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "CommandName": "Get-PnPPlannerBucket", - "Id": 590 + "CommandName": "Get-PnPPlannerBucket" }, { + "Id": 591, "Command": "Get-PnPPlannerConfiguration", "Rank": 1, - "CommandName": "Get-PnPPlannerConfiguration", - "Id": 591 + "CommandName": "Get-PnPPlannerConfiguration" }, { + "Id": 592, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Rank": 1, - "CommandName": "Get-PnPPlannerPlan", - "Id": 592 + "CommandName": "Get-PnPPlannerPlan" }, { + "Id": 593, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Rank": 2, - "CommandName": "Get-PnPPlannerPlan", - "Id": 593 + "CommandName": "Get-PnPPlannerPlan" }, { + "Id": 594, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Rank": 3, - "CommandName": "Get-PnPPlannerPlan", - "Id": 594 + "CommandName": "Get-PnPPlannerPlan" }, { + "Id": 595, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "CommandName": "Get-PnPPlannerRosterMember", - "Id": 595 + "CommandName": "Get-PnPPlannerRosterMember" }, { + "Id": 596, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Rank": 1, - "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 596 + "CommandName": "Get-PnPPlannerRosterPlan" }, { + "Id": 597, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 2, - "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 597 + "CommandName": "Get-PnPPlannerRosterPlan" }, { + "Id": 598, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "CommandName": "Get-PnPPlannerTask", - "Id": 598 + "CommandName": "Get-PnPPlannerTask" }, { + "Id": 599, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 2, - "CommandName": "Get-PnPPlannerTask", - "Id": 599 + "CommandName": "Get-PnPPlannerTask" }, { + "Id": 600, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 3, - "CommandName": "Get-PnPPlannerTask", - "Id": 600 + "CommandName": "Get-PnPPlannerTask" }, { + "Id": 601, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Get-PnPPlannerUserPolicy", - "Id": 601 + "CommandName": "Get-PnPPlannerUserPolicy" }, { + "Id": 602, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "Rank": 1, - "CommandName": "Get-PnPPowerPlatformConnector", - "Id": 602 + "CommandName": "Get-PnPPowerPlatformConnector" }, { + "Id": 603, "Command": "Get-PnPPowerPlatformEnvironment", "Rank": 1, - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 603 + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { + "Id": 604, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Rank": 2, - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 604 + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { + "Id": 605, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Rank": 3, - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 605 + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { + "Id": 606, "Command": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, - "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Id": 606 + "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { + "Id": 607, "Command": "Get-PnPPropertyBag", "Rank": 1, - "CommandName": "Get-PnPPropertyBag", - "Id": 607 + "CommandName": "Get-PnPPropertyBag" }, { + "Id": 608, "Command": "Get-PnPPropertyBag -Key MyKey", "Rank": 2, - "CommandName": "Get-PnPPropertyBag", - "Id": 608 + "CommandName": "Get-PnPPropertyBag" }, { + "Id": 609, "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Rank": 3, - "CommandName": "Get-PnPPropertyBag", - "Id": 609 + "CommandName": "Get-PnPPropertyBag" }, { + "Id": 610, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Rank": 4, - "CommandName": "Get-PnPPropertyBag", - "Id": 610 + "CommandName": "Get-PnPPropertyBag" }, { + "Id": 611, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Rank": 5, - "CommandName": "Get-PnPPropertyBag", - "Id": 611 + "CommandName": "Get-PnPPropertyBag" }, { + "Id": 612, "Command": "Get-PnPPublishingImageRendition", "Rank": 1, - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 612 + "CommandName": "Get-PnPPublishingImageRendition" }, { + "Id": 613, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Rank": 2, - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 613 + "CommandName": "Get-PnPPublishingImageRendition" }, { + "Id": 614, "Command": "Get-PnPPublishingImageRendition -Identity 2", "Rank": 3, - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 614 + "CommandName": "Get-PnPPublishingImageRendition" }, { + "Id": 615, "Command": "Get-PnPRecycleBinItem", "Rank": 1, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 615 + "CommandName": "Get-PnPRecycleBinItem" }, { + "Id": 616, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Rank": 2, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 616 + "CommandName": "Get-PnPRecycleBinItem" }, { + "Id": 617, "Command": "Get-PnPRecycleBinItem -FirstStage", "Rank": 3, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 617 + "CommandName": "Get-PnPRecycleBinItem" }, { + "Id": 618, "Command": "Get-PnPRecycleBinItem -SecondStage", "Rank": 4, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 618 + "CommandName": "Get-PnPRecycleBinItem" }, { + "Id": 619, "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Rank": 5, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 619 + "CommandName": "Get-PnPRecycleBinItem" }, { + "Id": 620, "Command": "Get-PnPRequestAccessEmails", "Rank": 1, - "CommandName": "Get-PnPRequestAccessEmails", - "Id": 620 + "CommandName": "Get-PnPRequestAccessEmails" }, { + "Id": 621, "Command": "Get-PnPRetentionLabel", "Rank": 1, - "CommandName": "Get-PnPRetentionLabel", - "Id": 621 + "CommandName": "Get-PnPRetentionLabel" }, { + "Id": 622, "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "Rank": 2, - "CommandName": "Get-PnPRetentionLabel", - "Id": 622 + "CommandName": "Get-PnPRetentionLabel" }, { + "Id": 623, "Command": "Get-PnPRoleDefinition", "Rank": 1, - "CommandName": "Get-PnPRoleDefinition", - "Id": 623 + "CommandName": "Get-PnPRoleDefinition" }, { + "Id": 624, "Command": "Get-PnPRoleDefinition -Identity Read", "Rank": 2, - "CommandName": "Get-PnPRoleDefinition", - "Id": 624 + "CommandName": "Get-PnPRoleDefinition" }, { + "Id": 625, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Rank": 3, - "CommandName": "Get-PnPRoleDefinition", - "Id": 625 + "CommandName": "Get-PnPRoleDefinition" }, { + "Id": 626, "Command": "Get-PnPSearchConfiguration", "Rank": 1, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 626 + "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 627, "Command": "Get-PnPSearchConfiguration -Scope Site", "Rank": 2, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 627 + "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 628, "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Rank": 3, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 628 + "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 629, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 629 + "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 630, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Rank": 5, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 630 + "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 631, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Rank": 6, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 631 + "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 632, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Rank": 7, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 632 + "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 633, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Rank": 8, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 633 + "CommandName": "Get-PnPSearchConfiguration" }, { + "Id": 634, "Command": "Get-PnPSearchCrawlLog", "Rank": 1, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 634 + "CommandName": "Get-PnPSearchCrawlLog" }, { + "Id": 635, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Rank": 2, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 635 + "CommandName": "Get-PnPSearchCrawlLog" }, { + "Id": 636, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Rank": 3, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 636 + "CommandName": "Get-PnPSearchCrawlLog" }, { + "Id": 637, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Rank": 4, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 637 + "CommandName": "Get-PnPSearchCrawlLog" }, { + "Id": 638, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Rank": 5, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 638 + "CommandName": "Get-PnPSearchCrawlLog" }, { + "Id": 639, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Rank": 6, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 639 + "CommandName": "Get-PnPSearchCrawlLog" }, { + "Id": 640, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Rank": 7, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 640 + "CommandName": "Get-PnPSearchCrawlLog" }, { + "Id": 641, "Command": "Get-PnPSearchSettings", "Rank": 1, - "CommandName": "Get-PnPSearchSettings", - "Id": 641 + "CommandName": "Get-PnPSearchSettings" }, { + "Id": 642, "Command": "Get-PnPServiceCurrentHealth", "Rank": 1, - "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 642 + "CommandName": "Get-PnPServiceCurrentHealth" }, { + "Id": 643, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Rank": 2, - "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 643 + "CommandName": "Get-PnPServiceCurrentHealth" }, { + "Id": 644, "Command": "Get-PnPServiceHealthIssue", "Rank": 1, - "CommandName": "Get-PnPServiceHealthIssue", - "Id": 644 + "CommandName": "Get-PnPServiceHealthIssue" }, { + "Id": 645, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Rank": 2, - "CommandName": "Get-PnPServiceHealthIssue", - "Id": 645 + "CommandName": "Get-PnPServiceHealthIssue" }, { + "Id": 646, "Command": "Get-PnPSharePointAddIn", "Rank": 1, - "CommandName": "Get-PnPSharePointAddIn", - "Id": 646 + "CommandName": "Get-PnPSharePointAddIn" }, { + "Id": 647, "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Rank": 2, - "CommandName": "Get-PnPSharePointAddIn", - "Id": 647 + "CommandName": "Get-PnPSharePointAddIn" }, { + "Id": 648, "Command": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, - "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Id": 648 + "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { + "Id": 649, "Command": "Get-PnPSite", "Rank": 1, - "CommandName": "Get-PnPSite", - "Id": 649 + "CommandName": "Get-PnPSite" }, { + "Id": 650, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Rank": 2, - "CommandName": "Get-PnPSite", - "Id": 650 + "CommandName": "Get-PnPSite" }, { + "Id": 651, "Command": "Get-PnPSiteClosure", "Rank": 1, - "CommandName": "Get-PnPSiteClosure", - "Id": 651 + "CommandName": "Get-PnPSiteClosure" }, { + "Id": 652, "Command": "Get-PnPSiteCollectionAdmin", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAdmin", - "Id": 652 + "CommandName": "Get-PnPSiteCollectionAdmin" }, { + "Id": 653, "Command": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 653 + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { + "Id": 654, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Rank": 2, - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 654 + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { + "Id": 655, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Rank": 3, - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 655 + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { + "Id": 656, "Command": "Get-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionTermStore", - "Id": 656 + "CommandName": "Get-PnPSiteCollectionTermStore" }, { + "Id": 657, "Command": "Get-PnPSiteDesign", "Rank": 1, - "CommandName": "Get-PnPSiteDesign", - "Id": 657 + "CommandName": "Get-PnPSiteDesign" }, { + "Id": 658, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPSiteDesign", - "Id": 658 + "CommandName": "Get-PnPSiteDesign" }, { + "Id": 659, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Get-PnPSiteDesignRights", - "Id": 659 + "CommandName": "Get-PnPSiteDesignRights" }, { + "Id": 660, "Command": "Get-PnPSiteDesignRun", "Rank": 1, - "CommandName": "Get-PnPSiteDesignRun", - "Id": 660 + "CommandName": "Get-PnPSiteDesignRun" }, { + "Id": 661, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Rank": 2, - "CommandName": "Get-PnPSiteDesignRun", - "Id": 661 + "CommandName": "Get-PnPSiteDesignRun" }, { + "Id": 662, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "CommandName": "Get-PnPSiteDesignTask", - "Id": 662 + "CommandName": "Get-PnPSiteDesignTask" }, { + "Id": 663, "Command": "Get-PnPSiteDesignTask", "Rank": 2, - "CommandName": "Get-PnPSiteDesignTask", - "Id": 663 + "CommandName": "Get-PnPSiteDesignTask" }, { + "Id": 664, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 3, - "CommandName": "Get-PnPSiteDesignTask", - "Id": 664 + "CommandName": "Get-PnPSiteDesignTask" }, { + "Id": 665, "Command": "Get-PnPSiteGroup", "Rank": 1, - "CommandName": "Get-PnPSiteGroup", - "Id": 665 + "CommandName": "Get-PnPSiteGroup" }, { + "Id": 666, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 2, - "CommandName": "Get-PnPSiteGroup", - "Id": 666 + "CommandName": "Get-PnPSiteGroup" }, { + "Id": 667, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Rank": 3, - "CommandName": "Get-PnPSiteGroup", - "Id": 667 + "CommandName": "Get-PnPSiteGroup" }, { + "Id": 668, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 4, - "CommandName": "Get-PnPSiteGroup", - "Id": 668 + "CommandName": "Get-PnPSiteGroup" }, { + "Id": 669, "Command": "Get-PnPSitePolicy", "Rank": 1, - "CommandName": "Get-PnPSitePolicy", - "Id": 669 + "CommandName": "Get-PnPSitePolicy" }, { + "Id": 670, "Command": "Get-PnPSitePolicy -AllAvailable", "Rank": 2, - "CommandName": "Get-PnPSitePolicy", - "Id": 670 + "CommandName": "Get-PnPSitePolicy" }, { + "Id": 671, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 3, - "CommandName": "Get-PnPSitePolicy", - "Id": 671 + "CommandName": "Get-PnPSitePolicy" }, { + "Id": 672, "Command": "Get-PnPSiteScript", "Rank": 1, - "CommandName": "Get-PnPSiteScript", - "Id": 672 + "CommandName": "Get-PnPSiteScript" }, { + "Id": 673, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPSiteScript", - "Id": 673 + "CommandName": "Get-PnPSiteScript" }, { + "Id": 674, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 674 + "CommandName": "Get-PnPSiteScriptFromList" }, { + "Id": 675, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 675 + "CommandName": "Get-PnPSiteScriptFromList" }, { + "Id": 676, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 676 + "CommandName": "Get-PnPSiteScriptFromList" }, { + "Id": 677, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 677 + "CommandName": "Get-PnPSiteScriptFromWeb" }, { + "Id": 678, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 678 + "CommandName": "Get-PnPSiteScriptFromWeb" }, { + "Id": 679, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 679 + "CommandName": "Get-PnPSiteScriptFromWeb" }, { + "Id": 680, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Rank": 4, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 680 + "CommandName": "Get-PnPSiteScriptFromWeb" }, { + "Id": 681, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Rank": 5, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 681 + "CommandName": "Get-PnPSiteScriptFromWeb" }, { + "Id": 682, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Rank": 6, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 682 + "CommandName": "Get-PnPSiteScriptFromWeb" }, { + "Id": 683, "Command": "Get-PnPSiteSearchQueryResults", "Rank": 1, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 683 + "CommandName": "Get-PnPSiteSearchQueryResults" }, { + "Id": 684, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Rank": 2, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 684 + "CommandName": "Get-PnPSiteSearchQueryResults" }, { + "Id": 685, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Rank": 3, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 685 + "CommandName": "Get-PnPSiteSearchQueryResults" }, { + "Id": 686, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Rank": 4, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 686 + "CommandName": "Get-PnPSiteSearchQueryResults" }, { + "Id": 687, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Rank": 5, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 687 + "CommandName": "Get-PnPSiteSearchQueryResults" }, { + "Id": 688, "Command": "Get-PnPSiteSearchQueryResults -All", "Rank": 6, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 688 + "CommandName": "Get-PnPSiteSearchQueryResults" }, { + "Id": 689, "Command": "Get-PnPSiteSensitivityLabel", "Rank": 1, - "CommandName": "Get-PnPSiteSensitivityLabel", - "Id": 689 + "CommandName": "Get-PnPSiteSensitivityLabel" }, { + "Id": 690, "Command": "Get-PnPSiteTemplate -Out template.pnp", "Rank": 1, - "CommandName": "Get-PnPSiteTemplate", - "Id": 690 + "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 691, "Command": "Get-PnPSiteTemplate -Out template.xml", "Rank": 2, - "CommandName": "Get-PnPSiteTemplate", - "Id": 691 + "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 692, "Command": "Get-PnPSiteTemplate -Out template.md", "Rank": 3, - "CommandName": "Get-PnPSiteTemplate", - "Id": 692 + "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 693, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Rank": 4, - "CommandName": "Get-PnPSiteTemplate", - "Id": 693 + "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 694, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Rank": 5, - "CommandName": "Get-PnPSiteTemplate", - "Id": 694 + "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 695, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Rank": 6, - "CommandName": "Get-PnPSiteTemplate", - "Id": 695 + "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 696, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Rank": 7, - "CommandName": "Get-PnPSiteTemplate", - "Id": 696 + "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 697, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Rank": 8, - "CommandName": "Get-PnPSiteTemplate", - "Id": 697 + "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 698, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Rank": 9, - "CommandName": "Get-PnPSiteTemplate", - "Id": 698 + "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 699, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Rank": 10, - "CommandName": "Get-PnPSiteTemplate", - "Id": 699 + "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 700, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Rank": 11, - "CommandName": "Get-PnPSiteTemplate", - "Id": 700 + "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 701, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Rank": 12, - "CommandName": "Get-PnPSiteTemplate", - "Id": 701 + "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 702, "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", - "Id": 702 + "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 703, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Rank": 14, - "CommandName": "Get-PnPSiteTemplate", - "Id": 703 + "CommandName": "Get-PnPSiteTemplate" }, { + "Id": 704, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "CommandName": "Get-PnPSiteUserInvitations", - "Id": 704 + "CommandName": "Get-PnPSiteUserInvitations" }, { + "Id": 705, "Command": "Get-PnPSiteVersionPolicy", "Rank": 1, - "CommandName": "Get-PnPSiteVersionPolicy", - "Id": 705 + "CommandName": "Get-PnPSiteVersionPolicy" }, { + "Id": 706, "Command": "Get-PnPStorageEntity", "Rank": 1, - "CommandName": "Get-PnPStorageEntity", - "Id": 706 + "CommandName": "Get-PnPStorageEntity" }, { + "Id": 707, "Command": "Get-PnPStorageEntity -Key MyKey", "Rank": 2, - "CommandName": "Get-PnPStorageEntity", - "Id": 707 + "CommandName": "Get-PnPStorageEntity" }, { + "Id": 708, "Command": "Get-PnPStorageEntity -Scope Site", "Rank": 3, - "CommandName": "Get-PnPStorageEntity", - "Id": 708 + "CommandName": "Get-PnPStorageEntity" }, { + "Id": 709, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 4, - "CommandName": "Get-PnPStorageEntity", - "Id": 709 + "CommandName": "Get-PnPStorageEntity" }, { + "Id": 710, "Command": "Get-PnPStoredCredential -Name O365", "Rank": 1, - "CommandName": "Get-PnPStoredCredential", - "Id": 710 + "CommandName": "Get-PnPStoredCredential" }, { + "Id": 711, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Id": 711 + "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { + "Id": 712, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Id": 712 + "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { + "Id": 713, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Id": 713 + "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { + "Id": 714, "Command": "Get-PnPSubWeb", "Rank": 1, - "CommandName": "Get-PnPSubWeb", - "Id": 714 + "CommandName": "Get-PnPSubWeb" }, { + "Id": 715, "Command": "Get-PnPSubWeb -Recurse", "Rank": 2, - "CommandName": "Get-PnPSubWeb", - "Id": 715 + "CommandName": "Get-PnPSubWeb" }, { + "Id": 716, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Rank": 3, - "CommandName": "Get-PnPSubWeb", - "Id": 716 + "CommandName": "Get-PnPSubWeb" }, { + "Id": 717, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Rank": 4, - "CommandName": "Get-PnPSubWeb", - "Id": 717 + "CommandName": "Get-PnPSubWeb" }, { + "Id": 718, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Rank": 5, - "CommandName": "Get-PnPSubWeb", - "Id": 718 + "CommandName": "Get-PnPSubWeb" }, { + "Id": 719, "Command": "Get-PnPSyntexModel", "Rank": 1, - "CommandName": "Get-PnPSyntexModel", - "Id": 719 + "CommandName": "Get-PnPSyntexModel" }, { + "Id": 720, "Command": "Get-PnPSyntexModel -Identity 1", "Rank": 2, - "CommandName": "Get-PnPSyntexModel", - "Id": 720 + "CommandName": "Get-PnPSyntexModel" }, { + "Id": 721, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Rank": 3, - "CommandName": "Get-PnPSyntexModel", - "Id": 721 + "CommandName": "Get-PnPSyntexModel" }, { + "Id": 722, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Rank": 1, - "CommandName": "Get-PnPSyntexModelPublication", - "Id": 722 + "CommandName": "Get-PnPSyntexModelPublication" }, { + "Id": 723, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Rank": 1, - "CommandName": "Get-PnPTaxonomyItem", - "Id": 723 + "CommandName": "Get-PnPTaxonomyItem" }, { + "Id": 724, "Command": "Get-PnPTeamsApp", "Rank": 1, - "CommandName": "Get-PnPTeamsApp", - "Id": 724 + "CommandName": "Get-PnPTeamsApp" }, { + "Id": 725, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Rank": 2, - "CommandName": "Get-PnPTeamsApp", - "Id": 725 + "CommandName": "Get-PnPTeamsApp" }, { + "Id": 726, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Rank": 3, - "CommandName": "Get-PnPTeamsApp", - "Id": 726 + "CommandName": "Get-PnPTeamsApp" }, { + "Id": 727, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Rank": 1, - "CommandName": "Get-PnPTeamsChannel", - "Id": 727 + "CommandName": "Get-PnPTeamsChannel" }, { + "Id": 728, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Rank": 2, - "CommandName": "Get-PnPTeamsChannel", - "Id": 728 + "CommandName": "Get-PnPTeamsChannel" }, { + "Id": 729, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 3, - "CommandName": "Get-PnPTeamsChannel", - "Id": 729 + "CommandName": "Get-PnPTeamsChannel" }, { + "Id": 730, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 730 + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { + "Id": 731, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 731 + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { + "Id": 732, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 732 + "CommandName": "Get-PnPTeamsChannelMessage" }, { + "Id": 733, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 733 + "CommandName": "Get-PnPTeamsChannelMessage" }, { + "Id": 734, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 734 + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { + "Id": 735, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 735 + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { + "Id": 736, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 736 + "CommandName": "Get-PnPTeamsChannelUser" }, { + "Id": 737, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 737 + "CommandName": "Get-PnPTeamsChannelUser" }, { + "Id": 738, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Rank": 3, - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 738 + "CommandName": "Get-PnPTeamsChannelUser" }, { + "Id": 739, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 739 + "CommandName": "Get-PnPTeamsChannelUser" }, { + "Id": 740, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Rank": 1, - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 740 + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { + "Id": 741, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Rank": 2, - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 741 + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { + "Id": 742, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "Rank": 1, - "CommandName": "Get-PnPTeamsTab", - "Id": 742 + "CommandName": "Get-PnPTeamsTab" }, { + "Id": 743, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTab", - "Id": 743 + "CommandName": "Get-PnPTeamsTab" }, { + "Id": 744, "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", - "Id": 744 + "CommandName": "Get-PnPTeamsTab" }, { + "Id": 745, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Rank": 4, - "CommandName": "Get-PnPTeamsTab", - "Id": 745 + "CommandName": "Get-PnPTeamsTab" }, { + "Id": 746, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Rank": 5, - "CommandName": "Get-PnPTeamsTab", - "Id": 746 + "CommandName": "Get-PnPTeamsTab" }, { + "Id": 747, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "CommandName": "Get-PnPTeamsTag", - "Id": 747 + "CommandName": "Get-PnPTeamsTag" }, { + "Id": 748, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTag", - "Id": 748 + "CommandName": "Get-PnPTeamsTag" }, { + "Id": 749, "Command": "Get-PnPTeamsTeam", "Rank": 1, - "CommandName": "Get-PnPTeamsTeam", - "Id": 749 + "CommandName": "Get-PnPTeamsTeam" }, { + "Id": 750, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTeam", - "Id": 750 + "CommandName": "Get-PnPTeamsTeam" }, { + "Id": 751, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Rank": 3, - "CommandName": "Get-PnPTeamsTeam", - "Id": 751 + "CommandName": "Get-PnPTeamsTeam" }, { + "Id": 752, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Rank": 4, - "CommandName": "Get-PnPTeamsTeam", - "Id": 752 + "CommandName": "Get-PnPTeamsTeam" }, { + "Id": 753, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "CommandName": "Get-PnPTeamsTeam", - "Id": 753 + "CommandName": "Get-PnPTeamsTeam" }, { + "Id": 754, "Command": "Get-PnPTeamsUser -Team MyTeam", "Rank": 1, - "CommandName": "Get-PnPTeamsUser", - "Id": 754 + "CommandName": "Get-PnPTeamsUser" }, { + "Id": 755, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Rank": 2, - "CommandName": "Get-PnPTeamsUser", - "Id": 755 + "CommandName": "Get-PnPTeamsUser" }, { + "Id": 756, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Rank": 3, - "CommandName": "Get-PnPTeamsUser", - "Id": 756 + "CommandName": "Get-PnPTeamsUser" }, { + "Id": 757, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Rank": 4, - "CommandName": "Get-PnPTeamsUser", - "Id": 757 + "CommandName": "Get-PnPTeamsUser" }, { + "Id": 758, "Command": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, - "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Id": 758 + "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { + "Id": 759, "Command": "Get-PnPTenant", "Rank": 1, - "CommandName": "Get-PnPTenant", - "Id": 759 + "CommandName": "Get-PnPTenant" }, { + "Id": 760, "Command": "Get-PnPTenantAppCatalogUrl", "Rank": 1, - "CommandName": "Get-PnPTenantAppCatalogUrl", - "Id": 760 + "CommandName": "Get-PnPTenantAppCatalogUrl" }, { + "Id": 761, "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnEnabled", - "Id": 761 + "CommandName": "Get-PnPTenantCdnEnabled" }, { + "Id": 762, "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnOrigin", - "Id": 762 + "CommandName": "Get-PnPTenantCdnOrigin" }, { + "Id": 763, "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnPolicies", - "Id": 763 + "CommandName": "Get-PnPTenantCdnPolicies" }, { + "Id": 764, "Command": "Get-PnPTenantDeletedSite", "Rank": 1, - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 764 + "CommandName": "Get-PnPTenantDeletedSite" }, { + "Id": 765, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 2, - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 765 + "CommandName": "Get-PnPTenantDeletedSite" }, { + "Id": 766, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Rank": 3, - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 766 + "CommandName": "Get-PnPTenantDeletedSite" }, { + "Id": 767, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Rank": 4, - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 767 + "CommandName": "Get-PnPTenantDeletedSite" }, { + "Id": 768, "Command": "Get-PnPTenantId", "Rank": 1, - "CommandName": "Get-PnPTenantId", - "Id": 768 + "CommandName": "Get-PnPTenantId" }, { + "Id": 769, "Command": "Get-PnPTenantId contoso", "Rank": 2, - "CommandName": "Get-PnPTenantId", - "Id": 769 + "CommandName": "Get-PnPTenantId" }, { + "Id": 770, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Rank": 3, - "CommandName": "Get-PnPTenantId", - "Id": 770 + "CommandName": "Get-PnPTenantId" }, { + "Id": 771, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Rank": 4, - "CommandName": "Get-PnPTenantId", - "Id": 771 + "CommandName": "Get-PnPTenantId" }, { + "Id": 772, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Rank": 1, - "CommandName": "Get-PnPTenantInfo", - "Id": 772 + "CommandName": "Get-PnPTenantInfo" }, { + "Id": 773, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Rank": 2, - "CommandName": "Get-PnPTenantInfo", - "Id": 773 + "CommandName": "Get-PnPTenantInfo" }, { + "Id": 774, "Command": "Get-PnPTenantInfo", "Rank": 3, - "CommandName": "Get-PnPTenantInfo", - "Id": 774 + "CommandName": "Get-PnPTenantInfo" }, { + "Id": 775, "Command": "Get-PnPTenantInfo -CurrentTenant", "Rank": 4, - "CommandName": "Get-PnPTenantInfo", - "Id": 775 + "CommandName": "Get-PnPTenantInfo" }, { + "Id": 776, "Command": "Get-PnPTenantInstance", "Rank": 1, - "CommandName": "Get-PnPTenantInstance", - "Id": 776 + "CommandName": "Get-PnPTenantInstance" }, { + "Id": 777, "Command": "Get-PnPTenantRecycleBinItem", "Rank": 1, - "CommandName": "Get-PnPTenantRecycleBinItem", - "Id": 777 + "CommandName": "Get-PnPTenantRecycleBinItem" }, { + "Id": 778, "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Rank": 1, - "CommandName": "Get-PnPTenantSequence", - "Id": 778 + "CommandName": "Get-PnPTenantSequence" }, { + "Id": 779, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Rank": 2, - "CommandName": "Get-PnPTenantSequence", - "Id": 779 + "CommandName": "Get-PnPTenantSequence" }, { + "Id": 780, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Rank": 1, - "CommandName": "Get-PnPTenantSequenceSite", - "Id": 780 + "CommandName": "Get-PnPTenantSequenceSite" }, { + "Id": 781, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Rank": 2, - "CommandName": "Get-PnPTenantSequenceSite", - "Id": 781 + "CommandName": "Get-PnPTenantSequenceSite" }, { + "Id": 782, "Command": "Get-PnPTenantSite", "Rank": 1, - "CommandName": "Get-PnPTenantSite", - "Id": 782 + "CommandName": "Get-PnPTenantSite" }, { + "Id": 783, "Command": "Get-PnPTenantSite -Detailed", "Rank": 2, - "CommandName": "Get-PnPTenantSite", - "Id": 783 + "CommandName": "Get-PnPTenantSite" }, { + "Id": 784, "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Rank": 3, - "CommandName": "Get-PnPTenantSite", - "Id": 784 + "CommandName": "Get-PnPTenantSite" }, { + "Id": 785, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Rank": 4, - "CommandName": "Get-PnPTenantSite", - "Id": 785 + "CommandName": "Get-PnPTenantSite" }, { + "Id": 786, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Rank": 5, - "CommandName": "Get-PnPTenantSite", - "Id": 786 + "CommandName": "Get-PnPTenantSite" }, { + "Id": 787, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Rank": 6, - "CommandName": "Get-PnPTenantSite", - "Id": 787 + "CommandName": "Get-PnPTenantSite" }, { + "Id": 788, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Rank": 7, - "CommandName": "Get-PnPTenantSite", - "Id": 788 + "CommandName": "Get-PnPTenantSite" }, { + "Id": 789, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Rank": 8, - "CommandName": "Get-PnPTenantSite", - "Id": 789 + "CommandName": "Get-PnPTenantSite" }, { + "Id": 790, "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Rank": 9, - "CommandName": "Get-PnPTenantSite", - "Id": 790 + "CommandName": "Get-PnPTenantSite" }, { + "Id": 791, "Command": "Get-PnPTenantSyncClientRestriction", "Rank": 1, - "CommandName": "Get-PnPTenantSyncClientRestriction", - "Id": 791 + "CommandName": "Get-PnPTenantSyncClientRestriction" }, { + "Id": 792, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Rank": 1, - "CommandName": "Get-PnPTenantTemplate", - "Id": 792 + "CommandName": "Get-PnPTenantTemplate" }, { + "Id": 793, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "Rank": 2, - "CommandName": "Get-PnPTenantTemplate", - "Id": 793 + "CommandName": "Get-PnPTenantTemplate" }, { + "Id": 794, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Rank": 3, - "CommandName": "Get-PnPTenantTemplate", - "Id": 794 + "CommandName": "Get-PnPTenantTemplate" }, { + "Id": 795, "Command": "Get-PnPTenantTheme", "Rank": 1, - "CommandName": "Get-PnPTenantTheme", - "Id": 795 + "CommandName": "Get-PnPTenantTheme" }, { + "Id": 796, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 2, - "CommandName": "Get-PnPTenantTheme", - "Id": 796 + "CommandName": "Get-PnPTenantTheme" }, { + "Id": 797, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Rank": 3, - "CommandName": "Get-PnPTenantTheme", - "Id": 797 + "CommandName": "Get-PnPTenantTheme" }, { + "Id": 798, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "Get-PnPTerm", - "Id": 798 + "CommandName": "Get-PnPTerm" }, { + "Id": 799, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Get-PnPTerm", - "Id": 799 + "CommandName": "Get-PnPTerm" }, { + "Id": 800, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "CommandName": "Get-PnPTerm", - "Id": 800 + "CommandName": "Get-PnPTerm" }, { + "Id": 801, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Rank": 4, - "CommandName": "Get-PnPTerm", - "Id": 801 + "CommandName": "Get-PnPTerm" }, { + "Id": 802, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Rank": 5, - "CommandName": "Get-PnPTerm", - "Id": 802 + "CommandName": "Get-PnPTerm" }, { + "Id": 803, "Command": "Get-PnPTermGroup", "Rank": 1, - "CommandName": "Get-PnPTermGroup", - "Id": 803 + "CommandName": "Get-PnPTermGroup" }, { + "Id": 804, "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Rank": 2, - "CommandName": "Get-PnPTermGroup", - "Id": 804 + "CommandName": "Get-PnPTermGroup" }, { + "Id": 805, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Rank": 3, - "CommandName": "Get-PnPTermGroup", - "Id": 805 + "CommandName": "Get-PnPTermGroup" }, { + "Id": 806, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Rank": 1, - "CommandName": "Get-PnPTermLabel", - "Id": 806 + "CommandName": "Get-PnPTermLabel" }, { + "Id": 807, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Rank": 2, - "CommandName": "Get-PnPTermLabel", - "Id": 807 + "CommandName": "Get-PnPTermLabel" }, { + "Id": 808, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "CommandName": "Get-PnPTermLabel", - "Id": 808 + "CommandName": "Get-PnPTermLabel" }, { + "Id": 809, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "Get-PnPTermSet", - "Id": 809 + "CommandName": "Get-PnPTermSet" }, { + "Id": 810, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Get-PnPTermSet", - "Id": 810 + "CommandName": "Get-PnPTermSet" }, { + "Id": 811, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Rank": 3, - "CommandName": "Get-PnPTermSet", - "Id": 811 + "CommandName": "Get-PnPTermSet" }, { + "Id": 812, "Command": "Get-PnPTheme", "Rank": 1, - "CommandName": "Get-PnPTheme", - "Id": 812 + "CommandName": "Get-PnPTheme" }, { + "Id": 813, "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Rank": 2, - "CommandName": "Get-PnPTheme", - "Id": 813 + "CommandName": "Get-PnPTheme" }, { + "Id": 814, "Command": "Get-PnPTimeZoneId", "Rank": 1, - "CommandName": "Get-PnPTimeZoneId", - "Id": 814 + "CommandName": "Get-PnPTimeZoneId" }, { + "Id": 815, "Command": "Get-PnPTimeZoneId -Match Stockholm", "Rank": 2, - "CommandName": "Get-PnPTimeZoneId", - "Id": 815 + "CommandName": "Get-PnPTimeZoneId" }, { + "Id": 816, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Rank": 1, - "CommandName": "Get-PnPUnfurlLink", - "Id": 816 + "CommandName": "Get-PnPUnfurlLink" }, { + "Id": 817, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Rank": 1, - "CommandName": "Get-PnPUnifiedAuditLog", - "Id": 817 + "CommandName": "Get-PnPUnifiedAuditLog" }, { + "Id": 818, "Command": "Get-PnPUPABulkImportStatus", "Rank": 1, - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 818 + "CommandName": "Get-PnPUPABulkImportStatus" }, { + "Id": 819, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Rank": 2, - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 819 + "CommandName": "Get-PnPUPABulkImportStatus" }, { + "Id": 820, "Command": "Get-PnPUPABulkImportStatus -JobId ", "Rank": 3, - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 820 + "CommandName": "Get-PnPUPABulkImportStatus" }, { + "Id": 821, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "Rank": 4, - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 821 + "CommandName": "Get-PnPUPABulkImportStatus" }, { + "Id": 822, "Command": "Get-PnPUser", "Rank": 1, - "CommandName": "Get-PnPUser", - "Id": 822 + "CommandName": "Get-PnPUser" }, { + "Id": 823, "Command": "Get-PnPUser -Identity 23", "Rank": 2, - "CommandName": "Get-PnPUser", - "Id": 823 + "CommandName": "Get-PnPUser" }, { + "Id": 824, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Get-PnPUser", - "Id": 824 + "CommandName": "Get-PnPUser" }, { + "Id": 825, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Rank": 4, - "CommandName": "Get-PnPUser", - "Id": 825 + "CommandName": "Get-PnPUser" }, { + "Id": 826, "Command": "Get-PnPUser -WithRightsAssigned", "Rank": 5, - "CommandName": "Get-PnPUser", - "Id": 826 + "CommandName": "Get-PnPUser" }, { + "Id": 827, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Rank": 6, - "CommandName": "Get-PnPUser", - "Id": 827 + "CommandName": "Get-PnPUser" }, { + "Id": 828, "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Rank": 7, - "CommandName": "Get-PnPUser", - "Id": 828 + "CommandName": "Get-PnPUser" }, { + "Id": 829, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPUserOneDriveQuota", - "Id": 829 + "CommandName": "Get-PnPUserOneDriveQuota" }, { + "Id": 830, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPUserProfileProperty", - "Id": 830 + "CommandName": "Get-PnPUserProfileProperty" }, { + "Id": 831, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Rank": 2, - "CommandName": "Get-PnPUserProfileProperty", - "Id": 831 + "CommandName": "Get-PnPUserProfileProperty" }, { + "Id": 832, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Rank": 3, - "CommandName": "Get-PnPUserProfileProperty", - "Id": 832 + "CommandName": "Get-PnPUserProfileProperty" }, { + "Id": 833, "Command": "Get-PnPView -List \"Demo List\"", "Rank": 1, - "CommandName": "Get-PnPView", - "Id": 833 + "CommandName": "Get-PnPView" }, { + "Id": 834, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Rank": 2, - "CommandName": "Get-PnPView", - "Id": 834 + "CommandName": "Get-PnPView" }, { + "Id": 835, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Rank": 3, - "CommandName": "Get-PnPView", - "Id": 835 + "CommandName": "Get-PnPView" }, { + "Id": 836, "Command": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 836 + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { + "Id": 837, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 2, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 837 + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { + "Id": 838, "Command": "Get-PnPWeb", "Rank": 1, - "CommandName": "Get-PnPWeb", - "Id": 838 + "CommandName": "Get-PnPWeb" }, { + "Id": 839, "Command": "Get-PnPWebHeader", "Rank": 1, - "CommandName": "Get-PnPWebHeader", - "Id": 839 + "CommandName": "Get-PnPWebHeader" }, { + "Id": 840, "Command": "Get-PnPWebhookSubscriptions -List MyList", "Rank": 1, - "CommandName": "Get-PnPWebhookSubscriptions", - "Id": 840 + "CommandName": "Get-PnPWebhookSubscriptions" }, { + "Id": 841, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Rank": 1, - "CommandName": "Get-PnPWebPart", - "Id": 841 + "CommandName": "Get-PnPWebPart" }, { + "Id": 842, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "CommandName": "Get-PnPWebPart", - "Id": 842 + "CommandName": "Get-PnPWebPart" }, { + "Id": 843, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "Rank": 1, - "CommandName": "Get-PnPWebPartProperty", - "Id": 843 + "CommandName": "Get-PnPWebPartProperty" }, { + "Id": 844, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Rank": 2, - "CommandName": "Get-PnPWebPartProperty", - "Id": 844 + "CommandName": "Get-PnPWebPartProperty" }, { + "Id": 845, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Get-PnPWebPartXml", - "Id": 845 + "CommandName": "Get-PnPWebPartXml" }, { + "Id": 846, "Command": "Get-PnPWebTemplates", "Rank": 1, - "CommandName": "Get-PnPWebTemplates", - "Id": 846 + "CommandName": "Get-PnPWebTemplates" }, { + "Id": 847, "Command": "Get-PnPWebTemplates -LCID 1033", "Rank": 2, - "CommandName": "Get-PnPWebTemplates", - "Id": 847 + "CommandName": "Get-PnPWebTemplates" }, { + "Id": 848, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Rank": 3, - "CommandName": "Get-PnPWebTemplates", - "Id": 848 + "CommandName": "Get-PnPWebTemplates" }, { + "Id": 849, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Rank": 1, - "CommandName": "Get-PnPWikiPageContent", - "Id": 849 + "CommandName": "Get-PnPWikiPageContent" }, { + "Id": 850, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "Rank": 1, - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 850 + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { + "Id": 851, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 851 + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { + "Id": 852, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Grant-PnPHubSiteRights", - "Id": 852 + "CommandName": "Grant-PnPHubSiteRights" }, { + "Id": 853, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Grant-PnPSiteDesignRights", - "Id": 853 + "CommandName": "Grant-PnPSiteDesignRights" }, { + "Id": 854, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Id": 854 + "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { + "Id": 855, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Rank": 1, - "CommandName": "Import-PnPTaxonomy", - "Id": 855 + "CommandName": "Import-PnPTaxonomy" }, { + "Id": 856, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Rank": 2, - "CommandName": "Import-PnPTaxonomy", - "Id": 856 + "CommandName": "Import-PnPTaxonomy" }, { + "Id": 857, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Rank": 3, - "CommandName": "Import-PnPTaxonomy", - "Id": 857 + "CommandName": "Import-PnPTaxonomy" }, { + "Id": 858, "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Rank": 1, - "CommandName": "Import-PnPTermGroupFromXml", - "Id": 858 + "CommandName": "Import-PnPTermGroupFromXml" }, { + "Id": 859, "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Rank": 2, - "CommandName": "Import-PnPTermGroupFromXml", - "Id": 859 + "CommandName": "Import-PnPTermGroupFromXml" }, { + "Id": 860, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Rank": 1, - "CommandName": "Import-PnPTermSet", - "Id": 860 + "CommandName": "Import-PnPTermSet" }, { + "Id": 861, "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", - "Id": 861 + "CommandName": "Import-PnPTermSet" }, { + "Id": 862, "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", - "Id": 862 + "CommandName": "Import-PnPTermSet" }, { + "Id": 863, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Install-PnPApp", - "Id": 863 + "CommandName": "Install-PnPApp" }, { + "Id": 864, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Install-PnPApp", - "Id": 864 + "CommandName": "Install-PnPApp" }, { + "Id": 865, "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "Rank": 1, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 865 + "CommandName": "Invoke-PnPGraphMethod" }, { + "Id": 866, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Rank": 2, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 866 + "CommandName": "Invoke-PnPGraphMethod" }, { + "Id": 867, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Rank": 3, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 867 + "CommandName": "Invoke-PnPGraphMethod" }, { + "Id": 868, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Rank": 4, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 868 + "CommandName": "Invoke-PnPGraphMethod" }, { + "Id": 869, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Rank": 5, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 869 + "CommandName": "Invoke-PnPGraphMethod" }, { + "Id": 870, "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", - "Id": 870 + "CommandName": "Invoke-PnPGraphMethod" }, { + "Id": 871, "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", - "Id": 871 + "CommandName": "Invoke-PnPGraphMethod" }, { + "Id": 872, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Invoke-PnPListDesign", - "Id": 872 + "CommandName": "Invoke-PnPListDesign" }, { + "Id": 873, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "CommandName": "Invoke-PnPListDesign", - "Id": 873 + "CommandName": "Invoke-PnPListDesign" }, { + "Id": 874, "Command": "Invoke-PnPQuery -RetryCount 5", "Rank": 1, - "CommandName": "Invoke-PnPQuery", - "Id": 874 + "CommandName": "Invoke-PnPQuery" }, { + "Id": 875, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Invoke-PnPSiteDesign", - "Id": 875 + "CommandName": "Invoke-PnPSiteDesign" }, { + "Id": 876, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "CommandName": "Invoke-PnPSiteDesign", - "Id": 876 + "CommandName": "Invoke-PnPSiteDesign" }, { + "Id": 877, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Rank": 1, - "CommandName": "Invoke-PnPSiteScript", - "Id": 877 + "CommandName": "Invoke-PnPSiteScript" }, { + "Id": 878, "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", - "Id": 878 + "CommandName": "Invoke-PnPSiteSwap" }, { + "Id": 879, "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", - "Id": 879 + "CommandName": "Invoke-PnPSiteSwap" }, { + "Id": 880, "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", - "Id": 880 + "CommandName": "Invoke-PnPSiteSwap" }, { + "Id": 881, "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Rank": 1, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 881 + "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 882, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Rank": 2, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 882 + "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 883, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 883 + "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 884, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Rank": 4, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 884 + "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 885, "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Rank": 5, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 885 + "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 886, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Rank": 6, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 886 + "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 887, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Rank": 7, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 887 + "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 888, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Rank": 8, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 888 + "CommandName": "Invoke-PnPSiteTemplate" }, { + "Id": 889, "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Rank": 1, - "CommandName": "Invoke-PnPSPRestMethod", - "Id": 889 + "CommandName": "Invoke-PnPSPRestMethod" }, { + "Id": 890, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Rank": 1, - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 890 + "CommandName": "Invoke-PnPTenantTemplate" }, { + "Id": 891, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Rank": 2, - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 891 + "CommandName": "Invoke-PnPTenantTemplate" }, { + "Id": 892, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 892 + "CommandName": "Invoke-PnPTenantTemplate" }, { + "Id": 893, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Rank": 1, - "CommandName": "Invoke-PnPWebAction", - "Id": 893 + "CommandName": "Invoke-PnPWebAction" }, { + "Id": 894, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Rank": 2, - "CommandName": "Invoke-PnPWebAction", - "Id": 894 + "CommandName": "Invoke-PnPWebAction" }, { + "Id": 895, "Command": "Measure-PnPList \"Documents\"", "Rank": 1, - "CommandName": "Measure-PnPList", - "Id": 895 + "CommandName": "Measure-PnPList" }, { + "Id": 896, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Rank": 2, - "CommandName": "Measure-PnPList", - "Id": 896 + "CommandName": "Measure-PnPList" }, { + "Id": 897, "Command": "Measure-PnPWeb", "Rank": 1, - "CommandName": "Measure-PnPWeb", - "Id": 897 + "CommandName": "Measure-PnPWeb" }, { + "Id": 898, "Command": "Measure-PnPWeb $web -Recursive", "Rank": 2, - "CommandName": "Measure-PnPWeb", - "Id": 898 + "CommandName": "Measure-PnPWeb" }, { + "Id": 899, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Rank": 1, - "CommandName": "Move-PnPFile", - "Id": 899 + "CommandName": "Move-PnPFile" }, { + "Id": 900, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Rank": 2, - "CommandName": "Move-PnPFile", - "Id": 900 + "CommandName": "Move-PnPFile" }, { + "Id": 901, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 3, - "CommandName": "Move-PnPFile", - "Id": 901 + "CommandName": "Move-PnPFile" }, { + "Id": 902, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 4, - "CommandName": "Move-PnPFile", - "Id": 902 + "CommandName": "Move-PnPFile" }, { + "Id": 903, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Rank": 1, - "CommandName": "Move-PnPFolder", - "Id": 903 + "CommandName": "Move-PnPFolder" }, { + "Id": 904, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Rank": 2, - "CommandName": "Move-PnPFolder", - "Id": 904 + "CommandName": "Move-PnPFolder" }, { + "Id": 905, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "CommandName": "Move-PnPListItemToRecycleBin", - "Id": 905 + "CommandName": "Move-PnPListItemToRecycleBin" }, { + "Id": 906, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "Rank": 1, - "CommandName": "Move-PnPPageComponent", - "Id": 906 + "CommandName": "Move-PnPPageComponent" }, { + "Id": 907, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "Rank": 2, - "CommandName": "Move-PnPPageComponent", - "Id": 907 + "CommandName": "Move-PnPPageComponent" }, { + "Id": 908, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "Rank": 3, - "CommandName": "Move-PnPPageComponent", - "Id": 908 + "CommandName": "Move-PnPPageComponent" }, { + "Id": 909, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Rank": 4, - "CommandName": "Move-PnPPageComponent", - "Id": 909 + "CommandName": "Move-PnPPageComponent" }, { + "Id": 910, "Command": "Move-PnPRecycleBinItem", "Rank": 1, - "CommandName": "Move-PnpRecycleBinItem", - "Id": 910 + "CommandName": "Move-PnpRecycleBinItem" }, { + "Id": 911, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Rank": 2, - "CommandName": "Move-PnpRecycleBinItem", - "Id": 911 + "CommandName": "Move-PnpRecycleBinItem" }, { + "Id": 912, "Command": "Move-PnPRecycleBinItem -Force", "Rank": 3, - "CommandName": "Move-PnpRecycleBinItem", - "Id": 912 + "CommandName": "Move-PnpRecycleBinItem" }, { + "Id": 913, "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", - "Id": 913 + "CommandName": "Move-PnPTerm" }, { + "Id": 914, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Rank": 2, - "CommandName": "Move-PnPTerm", - "Id": 914 + "CommandName": "Move-PnPTerm" }, { + "Id": 915, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Rank": 3, - "CommandName": "Move-PnPTerm", - "Id": 915 + "CommandName": "Move-PnPTerm" }, { + "Id": 916, "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", - "Id": 916 + "CommandName": "Move-PnPTermSet" }, { + "Id": 917, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Rank": 2, - "CommandName": "Move-PnPTermSet", - "Id": 917 + "CommandName": "Move-PnPTermSet" }, { + "Id": 918, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "CommandName": "New-PnPAzureADGroup", - "Id": 918 + "CommandName": "New-PnPAzureADGroup" }, { + "Id": 919, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Rank": 2, - "CommandName": "New-PnPAzureADGroup", - "Id": 919 + "CommandName": "New-PnPAzureADGroup" }, { + "Id": 920, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Rank": 3, - "CommandName": "New-PnPAzureADGroup", - "Id": 920 + "CommandName": "New-PnPAzureADGroup" }, { + "Id": 921, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Rank": 1, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 921 + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { + "Id": 922, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Rank": 2, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 922 + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { + "Id": 923, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Rank": 3, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 923 + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { + "Id": 924, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Rank": 1, - "CommandName": "New-PnPAzureCertificate", - "Id": 924 + "CommandName": "New-PnPAzureCertificate" }, { + "Id": 925, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Rank": 2, - "CommandName": "New-PnPAzureCertificate", - "Id": 925 + "CommandName": "New-PnPAzureCertificate" }, { + "Id": 926, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "Rank": 3, - "CommandName": "New-PnPAzureCertificate", - "Id": 926 + "CommandName": "New-PnPAzureCertificate" }, { + "Id": 927, "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", - "Id": 927 + "CommandName": "New-PnPGraphSubscription" }, { + "Id": 928, "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", - "Id": 928 + "CommandName": "New-PnPGraphSubscription" }, { + "Id": 929, "Command": "New-PnPGroup -Title \"My Site Users\"", "Rank": 1, - "CommandName": "New-PnPGroup", - "Id": 929 + "CommandName": "New-PnPGroup" }, { + "Id": 930, "Command": "New-PnPList -Title Announcements -Template Announcements", "Rank": 1, - "CommandName": "New-PnPList", - "Id": 930 + "CommandName": "New-PnPList" }, { + "Id": 931, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Rank": 2, - "CommandName": "New-PnPList", - "Id": 931 + "CommandName": "New-PnPList" }, { + "Id": 932, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Rank": 3, - "CommandName": "New-PnPList", - "Id": 932 + "CommandName": "New-PnPList" }, { + "Id": 933, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 933 + "CommandName": "New-PnPMicrosoft365Group" }, { + "Id": 934, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "Rank": 2, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 934 + "CommandName": "New-PnPMicrosoft365Group" }, { + "Id": 935, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Rank": 3, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 935 + "CommandName": "New-PnPMicrosoft365Group" }, { + "Id": 936, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Rank": 4, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 936 + "CommandName": "New-PnPMicrosoft365Group" }, { + "Id": 937, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 5, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 937 + "CommandName": "New-PnPMicrosoft365Group" }, { + "Id": 938, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 938 + "CommandName": "New-PnPMicrosoft365Group" }, { + "Id": 939, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "Rank": 7, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 939 + "CommandName": "New-PnPMicrosoft365Group" }, { + "Id": 940, "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", - "Id": 940 + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { + "Id": 941, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Rank": 2, - "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 941 + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { + "Id": 942, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Rank": 1, - "CommandName": "New-PnPPersonalSite", - "Id": 942 + "CommandName": "New-PnPPersonalSite" }, { + "Id": 943, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Rank": 1, - "CommandName": "New-PnPPlannerPlan", - "Id": 943 + "CommandName": "New-PnPPlannerPlan" }, { + "Id": 944, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Rank": 1, - "CommandName": "New-PnPSdnProvider", - "Id": 944 + "CommandName": "New-PnPSdnProvider" }, { + "Id": 945, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 1, - "CommandName": "New-PnPSite", - "Id": 945 + "CommandName": "New-PnPSite" }, { + "Id": 946, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "Rank": 2, - "CommandName": "New-PnPSite", - "Id": 946 + "CommandName": "New-PnPSite" }, { + "Id": 947, "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", - "Id": 947 + "CommandName": "New-PnPSite" }, { + "Id": 948, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 4, - "CommandName": "New-PnPSite", - "Id": 948 + "CommandName": "New-PnPSite" }, { + "Id": 949, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 5, - "CommandName": "New-PnPSite", - "Id": 949 + "CommandName": "New-PnPSite" }, { + "Id": 950, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 6, - "CommandName": "New-PnPSite", - "Id": 950 + "CommandName": "New-PnPSite" }, { + "Id": 951, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Rank": 7, - "CommandName": "New-PnPSite", - "Id": 951 + "CommandName": "New-PnPSite" }, { + "Id": 952, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Rank": 8, - "CommandName": "New-PnPSite", - "Id": 952 + "CommandName": "New-PnPSite" }, { + "Id": 953, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Rank": 9, - "CommandName": "New-PnPSite", - "Id": 953 + "CommandName": "New-PnPSite" }, { + "Id": 954, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Rank": 10, - "CommandName": "New-PnPSite", - "Id": 954 + "CommandName": "New-PnPSite" }, { + "Id": 955, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 11, - "CommandName": "New-PnPSite", - "Id": 955 + "CommandName": "New-PnPSite" }, { + "Id": 956, "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", - "Id": 956 + "CommandName": "New-PnPSite" }, { + "Id": 957, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 13, - "CommandName": "New-PnPSite", - "Id": 957 + "CommandName": "New-PnPSite" }, { + "Id": 958, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 14, - "CommandName": "New-PnPSite", - "Id": 958 + "CommandName": "New-PnPSite" }, { + "Id": 959, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 15, - "CommandName": "New-PnPSite", - "Id": 959 + "CommandName": "New-PnPSite" }, { + "Id": 960, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Rank": 16, - "CommandName": "New-PnPSite", - "Id": 960 + "CommandName": "New-PnPSite" }, { + "Id": 961, "Command": "New-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "New-PnPSiteCollectionTermStore", - "Id": 961 + "CommandName": "New-PnPSiteCollectionTermStore" }, { + "Id": 962, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "Rank": 1, - "CommandName": "New-PnPSiteGroup", - "Id": 962 + "CommandName": "New-PnPSiteGroup" }, { + "Id": 963, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Rank": 2, - "CommandName": "New-PnPSiteGroup", - "Id": 963 + "CommandName": "New-PnPSiteGroup" }, { + "Id": 964, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Rank": 1, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 964 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 965, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Rank": 2, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 965 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 966, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Rank": 3, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 966 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 967, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "Rank": 4, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 967 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 968, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "Rank": 5, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 968 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 969, "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", - "Id": 969 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 970, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Rank": 7, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 970 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 971, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Rank": 8, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 971 + "CommandName": "New-PnPSiteTemplateFromFolder" }, { + "Id": 972, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Rank": 1, - "CommandName": "New-PnPTeamsApp", - "Id": 972 + "CommandName": "New-PnPTeamsApp" }, { + "Id": 973, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Rank": 1, - "CommandName": "New-PnPTeamsTeam", - "Id": 973 + "CommandName": "New-PnPTeamsTeam" }, { + "Id": 974, "Command": "New-PnPTeamsTeam -GroupId $groupId", "Rank": 2, - "CommandName": "New-PnPTeamsTeam", - "Id": 974 + "CommandName": "New-PnPTeamsTeam" }, { + "Id": 975, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "Rank": 3, - "CommandName": "New-PnPTeamsTeam", - "Id": 975 + "CommandName": "New-PnPTeamsTeam" }, { + "Id": 976, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 4, - "CommandName": "New-PnPTeamsTeam", - "Id": 976 + "CommandName": "New-PnPTeamsTeam" }, { + "Id": 977, "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", - "Id": 977 + "CommandName": "New-PnPTeamsTeam" }, { + "Id": 978, "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", - "Id": 978 + "CommandName": "New-PnPTeamsTeam" }, { + "Id": 979, "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", - "Id": 979 + "CommandName": "New-PnPTenantSite" }, { + "Id": 980, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Rank": 2, - "CommandName": "New-PnPTenantSite", - "Id": 980 + "CommandName": "New-PnPTenantSite" }, { + "Id": 981, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Rank": 1, - "CommandName": "New-PnPTerm", - "Id": 981 + "CommandName": "New-PnPTerm" }, { + "Id": 982, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "CommandName": "New-PnPTerm", - "Id": 982 + "CommandName": "New-PnPTerm" }, { + "Id": 983, "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Rank": 1, - "CommandName": "New-PnPTermGroup", - "Id": 983 + "CommandName": "New-PnPTermGroup" }, { + "Id": 984, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Rank": 1, - "CommandName": "New-PnPTermLabel", - "Id": 984 + "CommandName": "New-PnPTermLabel" }, { + "Id": 985, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "New-PnPTermSet", - "Id": 985 + "CommandName": "New-PnPTermSet" }, { + "Id": 986, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "Rank": 1, - "CommandName": "New-PnPUPABulkImportJob", - "Id": 986 + "CommandName": "New-PnPUPABulkImportJob" }, { + "Id": 987, "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", - "Id": 987 + "CommandName": "New-PnPUPABulkImportJob" }, { + "Id": 988, "Command": "New-PnPUser -LoginName user@company.com", "Rank": 1, - "CommandName": "New-PnPUser", - "Id": 988 + "CommandName": "New-PnPUser" }, { + "Id": 989, "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Rank": 1, - "CommandName": "New-PnPWeb", - "Id": 989 + "CommandName": "New-PnPWeb" }, { + "Id": 990, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 1, - "CommandName": "Publish-PnPApp", - "Id": 990 + "CommandName": "Publish-PnPApp" }, { + "Id": 991, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Rank": 2, - "CommandName": "Publish-PnPApp", - "Id": 991 + "CommandName": "Publish-PnPApp" }, { + "Id": 992, "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", - "Id": 992 + "CommandName": "Publish-PnPCompanyApp" }, { + "Id": 993, "Command": "Publish-PnPContentType -ContentType 0x0101", "Rank": 1, - "CommandName": "Publish-PnPContentType", - "Id": 993 + "CommandName": "Publish-PnPContentType" }, { + "Id": 994, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "CommandName": "Publish-PnPSyntexModel", - "Id": 994 + "CommandName": "Publish-PnPSyntexModel" }, { + "Id": 995, "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", - "Id": 995 + "CommandName": "Publish-PnPSyntexModel" }, { + "Id": 996, "Command": "Read-PnPSiteTemplate -Path template.pnp", "Rank": 1, - "CommandName": "Read-PnPSiteTemplate", - "Id": 996 + "CommandName": "Read-PnPSiteTemplate" }, { + "Id": 997, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Rank": 2, - "CommandName": "Read-PnPSiteTemplate", - "Id": 997 + "CommandName": "Read-PnPSiteTemplate" }, { + "Id": 998, "Command": "Read-PnPSiteTemplate -Xml $xml", "Rank": 3, - "CommandName": "Read-PnPSiteTemplate", - "Id": 998 + "CommandName": "Read-PnPSiteTemplate" }, { + "Id": 999, "Command": "Read-PnPTenantTemplate -Path template.pnp", "Rank": 1, - "CommandName": "Read-PnPTenantTemplate", - "Id": 999 + "CommandName": "Read-PnPTenantTemplate" }, { + "Id": 1000, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Rank": 1, - "CommandName": "Register-PnPAppCatalogSite", - "Id": 1000 + "CommandName": "Register-PnPAppCatalogSite" }, { + "Id": 1001, "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", - "Id": 1001 + "CommandName": "Register-PnPAzureADApp" }, { + "Id": 1002, "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", - "Id": 1002 + "CommandName": "Register-PnPAzureADApp" }, { + "Id": 1003, "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", - "Id": 1003 + "CommandName": "Register-PnPAzureADApp" }, { + "Id": 1004, "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", - "Id": 1004 + "CommandName": "Register-PnPAzureADApp" }, { + "Id": 1005, "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", - "Id": 1005 + "CommandName": "Register-PnPAzureADApp" }, { + "Id": 1006, "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", - "Id": 1006 + "CommandName": "Register-PnPAzureADApp" }, { + "Id": 1007, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\") -LogoFilePath c:\\logo.png", "Rank": 7, - "CommandName": "Register-PnPAzureADApp", - "Id": 1007 + "CommandName": "Register-PnPAzureADApp" }, { + "Id": 1008, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "CommandName": "Register-PnPHubSite", - "Id": 1008 + "CommandName": "Register-PnPHubSite" }, { + "Id": 1009, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Rank": 2, - "CommandName": "Register-PnPHubSite", - "Id": 1009 + "CommandName": "Register-PnPHubSite" }, { + "Id": 1010, "Command": "Register-PnPManagementShellAccess", "Rank": 1, - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1010 + "CommandName": "Register-PnPManagementShellAccess" }, { + "Id": 1011, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Rank": 2, - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1011 + "CommandName": "Register-PnPManagementShellAccess" }, { + "Id": 1012, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Rank": 3, - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1012 + "CommandName": "Register-PnPManagementShellAccess" }, { + "Id": 1013, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1013 + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { + "Id": 1014, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Rank": 2, - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1014 + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { + "Id": 1015, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Rank": 1, - "CommandName": "Remove-PnPAlert", - "Id": 1015 + "CommandName": "Remove-PnPAlert" }, { + "Id": 1016, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 2, - "CommandName": "Remove-PnPAlert", - "Id": 1016 + "CommandName": "Remove-PnPAlert" }, { + "Id": 1017, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Remove-PnPApp", - "Id": 1017 + "CommandName": "Remove-PnPApp" }, { + "Id": 1018, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPApp", - "Id": 1018 + "CommandName": "Remove-PnPApp" }, { + "Id": 1019, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1019 + "CommandName": "Remove-PnPApplicationCustomizer" }, { + "Id": 1020, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1020 + "CommandName": "Remove-PnPApplicationCustomizer" }, { + "Id": 1021, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Rank": 1, - "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1021 + "CommandName": "Remove-PnPAvailableSiteClassification" }, { + "Id": 1022, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 2, - "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1022 + "CommandName": "Remove-PnPAvailableSiteClassification" }, { + "Id": 1023, "Command": "Remove-PnPAzureADApp -Identity MyApp", "Rank": 1, - "CommandName": "Remove-PnPAzureADApp", - "Id": 1023 + "CommandName": "Remove-PnPAzureADApp" }, { + "Id": 1024, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 2, - "CommandName": "Remove-PnPAzureADApp", - "Id": 1024 + "CommandName": "Remove-PnPAzureADApp" }, { + "Id": 1025, "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroup", - "Id": 1025 + "CommandName": "Remove-PnPAzureADGroup" }, { + "Id": 1026, "Command": "Remove-PnPAzureADGroup -Identity $group", "Rank": 2, - "CommandName": "Remove-PnPAzureADGroup", - "Id": 1026 + "CommandName": "Remove-PnPAzureADGroup" }, { + "Id": 1027, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupMember", - "Id": 1027 + "CommandName": "Remove-PnPAzureADGroupMember" }, { + "Id": 1028, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupOwner", - "Id": 1028 + "CommandName": "Remove-PnPAzureADGroupOwner" }, { + "Id": 1029, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1029 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { + "Id": 1030, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Rank": 2, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1030 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { + "Id": 1031, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 3, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1031 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { + "Id": 1032, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 4, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1032 + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { + "Id": 1033, "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPContentType", - "Id": 1033 + "CommandName": "Remove-PnPContentType" }, { + "Id": 1034, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Rank": 2, - "CommandName": "Remove-PnPContentType", - "Id": 1034 + "CommandName": "Remove-PnPContentType" }, { + "Id": 1035, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1035 + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { + "Id": 1036, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1036 + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { + "Id": 1037, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromList", - "Id": 1037 + "CommandName": "Remove-PnPContentTypeFromList" }, { + "Id": 1038, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Remove-PnPCustomAction", - "Id": 1038 + "CommandName": "Remove-PnPCustomAction" }, { + "Id": 1039, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "CommandName": "Remove-PnPCustomAction", - "Id": 1039 + "CommandName": "Remove-PnPCustomAction" }, { + "Id": 1040, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Rank": 3, - "CommandName": "Remove-PnPCustomAction", - "Id": 1040 + "CommandName": "Remove-PnPCustomAction" }, { + "Id": 1041, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Id": 1041 + "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { + "Id": 1042, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 1, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1042 + "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1043, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1043 + "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1044, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Rank": 3, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1044 + "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1045, "Command": "Remove-PnPEventReceiver -List ProjectList", "Rank": 4, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1045 + "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1046, "Command": "Remove-PnPEventReceiver", "Rank": 5, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1046 + "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1047, "Command": "Remove-PnPEventReceiver -Scope Site", "Rank": 6, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1047 + "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1048, "Command": "Remove-PnPEventReceiver -Scope Web", "Rank": 7, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1048 + "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1049, "Command": "Remove-PnPEventReceiver -Scope All", "Rank": 8, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1049 + "CommandName": "Remove-PnPEventReceiver" }, { + "Id": 1050, "Command": "Remove-PnPField -Identity \"Speakers\"", "Rank": 1, - "CommandName": "Remove-PnPField", - "Id": 1050 + "CommandName": "Remove-PnPField" }, { + "Id": 1051, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "CommandName": "Remove-PnPField", - "Id": 1051 + "CommandName": "Remove-PnPField" }, { + "Id": 1052, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1052 + "CommandName": "Remove-PnPFieldFromContentType" }, { + "Id": 1053, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Rank": 2, - "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1053 + "CommandName": "Remove-PnPFieldFromContentType" }, { + "Id": 1054, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Rank": 1, - "CommandName": "Remove-PnPFile", - "Id": 1054 + "CommandName": "Remove-PnPFile" }, { + "Id": 1055, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Rank": 2, - "CommandName": "Remove-PnPFile", - "Id": 1055 + "CommandName": "Remove-PnPFile" }, { + "Id": 1056, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Rank": 3, - "CommandName": "Remove-PnPFile", - "Id": 1056 + "CommandName": "Remove-PnPFile" }, { + "Id": 1057, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Rank": 1, - "CommandName": "Remove-PnPFileFromSiteTemplate", - "Id": 1057 + "CommandName": "Remove-PnPFileFromSiteTemplate" }, { + "Id": 1058, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Remove-PnPFileSharingLink", - "Id": 1058 + "CommandName": "Remove-PnPFileSharingLink" }, { + "Id": 1059, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Rank": 2, - "CommandName": "Remove-PnPFileSharingLink", - "Id": 1059 + "CommandName": "Remove-PnPFileSharingLink" }, { + "Id": 1060, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "CommandName": "Remove-PnPFileVersion", - "Id": 1060 + "CommandName": "Remove-PnPFileVersion" }, { + "Id": 1061, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 2, - "CommandName": "Remove-PnPFileVersion", - "Id": 1061 + "CommandName": "Remove-PnPFileVersion" }, { + "Id": 1062, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Rank": 3, - "CommandName": "Remove-PnPFileVersion", - "Id": 1062 + "CommandName": "Remove-PnPFileVersion" }, { + "Id": 1063, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "Rank": 1, - "CommandName": "Remove-PnPFlowOwner", - "Id": 1063 + "CommandName": "Remove-PnPFlowOwner" }, { + "Id": 1064, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "Rank": 2, - "CommandName": "Remove-PnPFlowOwner", - "Id": 1064 + "CommandName": "Remove-PnPFlowOwner" }, { + "Id": 1065, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "Rank": 3, - "CommandName": "Remove-PnPFlowOwner", - "Id": 1065 + "CommandName": "Remove-PnPFlowOwner" }, { + "Id": 1066, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "Rank": 4, - "CommandName": "Remove-PnPFlowOwner", - "Id": 1066 + "CommandName": "Remove-PnPFlowOwner" }, { + "Id": 1067, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "CommandName": "Remove-PnPFolder", - "Id": 1067 + "CommandName": "Remove-PnPFolder" }, { + "Id": 1068, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Rank": 2, - "CommandName": "Remove-PnPFolder", - "Id": 1068 + "CommandName": "Remove-PnPFolder" }, { + "Id": 1069, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1069 + "CommandName": "Remove-PnPFolderSharingLink" }, { + "Id": 1070, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Rank": 2, - "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1070 + "CommandName": "Remove-PnPFolderSharingLink" }, { + "Id": 1071, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Rank": 1, - "CommandName": "Remove-PnPGraphSubscription", - "Id": 1071 + "CommandName": "Remove-PnPGraphSubscription" }, { + "Id": 1072, "Command": "Remove-PnPGroup -Identity \"My Users\"", "Rank": 1, - "CommandName": "Remove-PnPGroup", - "Id": 1072 + "CommandName": "Remove-PnPGroup" }, { + "Id": 1073, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "CommandName": "Remove-PnPGroupMember", - "Id": 1073 + "CommandName": "Remove-PnPGroupMember" }, { + "Id": 1074, "Command": "Remove-PnPHomeSite", "Rank": 1, - "CommandName": "Remove-PnPHomeSite", - "Id": 1074 + "CommandName": "Remove-PnPHomeSite" }, { + "Id": 1075, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "CommandName": "Remove-PnPHubSiteAssociation", - "Id": 1075 + "CommandName": "Remove-PnPHubSiteAssociation" }, { + "Id": 1076, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Rank": 1, - "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1076 + "CommandName": "Remove-PnPHubToHubAssociation" }, { + "Id": 1077, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Rank": 2, - "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1077 + "CommandName": "Remove-PnPHubToHubAssociation" }, { + "Id": 1078, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Rank": 1, - "CommandName": "Remove-PnPIndexedProperty", - "Id": 1078 + "CommandName": "Remove-PnPIndexedProperty" }, { + "Id": 1079, "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Rank": 1, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1079 + "CommandName": "Remove-PnPJavaScriptLink" }, { + "Id": 1080, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1080 + "CommandName": "Remove-PnPJavaScriptLink" }, { + "Id": 1081, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Rank": 3, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1081 + "CommandName": "Remove-PnPJavaScriptLink" }, { + "Id": 1082, "Command": "Remove-PnPJavaScriptLink -Scope Site", "Rank": 4, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1082 + "CommandName": "Remove-PnPJavaScriptLink" }, { + "Id": 1083, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Rank": 5, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1083 + "CommandName": "Remove-PnPJavaScriptLink" }, { + "Id": 1084, "Command": "Remove-PnPKnowledgeHubSite", "Rank": 1, - "CommandName": "Remove-PnPKnowledgeHubSite", - "Id": 1084 + "CommandName": "Remove-PnPKnowledgeHubSite" }, { + "Id": 1085, "Command": "Remove-PnPList -Identity Announcements", "Rank": 1, - "CommandName": "Remove-PnPList", - "Id": 1085 + "CommandName": "Remove-PnPList" }, { + "Id": 1086, "Command": "Remove-PnPList -Identity Announcements -Force", "Rank": 2, - "CommandName": "Remove-PnPList", - "Id": 1086 + "CommandName": "Remove-PnPList" }, { + "Id": 1087, "Command": "Remove-PnPList -Identity Announcements -Recycle", "Rank": 3, - "CommandName": "Remove-PnPList", - "Id": 1087 + "CommandName": "Remove-PnPList" }, { + "Id": 1088, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Rank": 4, - "CommandName": "Remove-PnPList", - "Id": 1088 + "CommandName": "Remove-PnPList" }, { + "Id": 1089, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPListDesign", - "Id": 1089 + "CommandName": "Remove-PnPListDesign" }, { + "Id": 1090, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "CommandName": "Remove-PnPListItem", - "Id": 1090 + "CommandName": "Remove-PnPListItem" }, { + "Id": 1091, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Rank": 2, - "CommandName": "Remove-PnPListItem", - "Id": 1091 + "CommandName": "Remove-PnPListItem" }, { + "Id": 1092, "Command": "Remove-PnPListItem -List \"Demo List\"", "Rank": 3, - "CommandName": "Remove-PnPListItem", - "Id": 1092 + "CommandName": "Remove-PnPListItem" }, { + "Id": 1093, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Rank": 1, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1093 + "CommandName": "Remove-PnPListItemAttachment" }, { + "Id": 1094, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "Rank": 2, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1094 + "CommandName": "Remove-PnPListItemAttachment" }, { + "Id": 1095, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Rank": 3, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1095 + "CommandName": "Remove-PnPListItemAttachment" }, { + "Id": 1096, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Rank": 4, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1096 + "CommandName": "Remove-PnPListItemAttachment" }, { + "Id": 1097, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Rank": 5, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1097 + "CommandName": "Remove-PnPListItemAttachment" }, { + "Id": 1098, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "CommandName": "Remove-PnPListItemVersion", - "Id": 1098 + "CommandName": "Remove-PnPListItemVersion" }, { + "Id": 1099, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "CommandName": "Remove-PnPListItemVersion", - "Id": 1099 + "CommandName": "Remove-PnPListItemVersion" }, { + "Id": 1100, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1100 + "CommandName": "Remove-PnPMicrosoft365Group" }, { + "Id": 1101, "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1101 + "CommandName": "Remove-PnPMicrosoft365Group" }, { + "Id": 1102, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Id": 1102 + "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { + "Id": 1103, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Id": 1103 + "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { + "Id": 1104, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1104 + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { + "Id": 1105, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1105 + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { + "Id": 1106, "Command": "Remove-PnPNavigationNode -Identity 1032", "Rank": 1, - "CommandName": "Remove-PnPNavigationNode", - "Id": 1106 + "CommandName": "Remove-PnPNavigationNode" }, { + "Id": 1107, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Rank": 2, - "CommandName": "Remove-PnPNavigationNode", - "Id": 1107 + "CommandName": "Remove-PnPNavigationNode" }, { + "Id": 1108, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Rank": 3, - "CommandName": "Remove-PnPNavigationNode", - "Id": 1108 + "CommandName": "Remove-PnPNavigationNode" }, { + "Id": 1109, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Rank": 1, - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1109 + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { + "Id": 1110, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Rank": 2, - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1110 + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { + "Id": 1111, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Rank": 3, - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1111 + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { + "Id": 1112, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "CommandName": "Remove-PnPOrgNewsSite", - "Id": 1112 + "CommandName": "Remove-PnPOrgNewsSite" }, { + "Id": 1113, "Command": "Remove-PnPPage -Identity \"MyPage\"", "Rank": 1, - "CommandName": "Remove-PnPPage", - "Id": 1113 + "CommandName": "Remove-PnPPage" }, { + "Id": 1114, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Rank": 2, - "CommandName": "Remove-PnPPage", - "Id": 1114 + "CommandName": "Remove-PnPPage" }, { + "Id": 1115, "Command": "Remove-PnPPage $page", "Rank": 3, - "CommandName": "Remove-PnPPage", - "Id": 1115 + "CommandName": "Remove-PnPPage" }, { + "Id": 1116, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Rank": 4, - "CommandName": "Remove-PnPPage", - "Id": 1116 + "CommandName": "Remove-PnPPage" }, { + "Id": 1117, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Remove-PnPPageComponent", - "Id": 1117 + "CommandName": "Remove-PnPPageComponent" }, { + "Id": 1118, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerBucket", - "Id": 1118 + "CommandName": "Remove-PnPPlannerBucket" }, { + "Id": 1119, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerPlan", - "Id": 1119 + "CommandName": "Remove-PnPPlannerPlan" }, { + "Id": 1120, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerRoster", - "Id": 1120 + "CommandName": "Remove-PnPPlannerRoster" }, { + "Id": 1121, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerRosterMember", - "Id": 1121 + "CommandName": "Remove-PnPPlannerRosterMember" }, { + "Id": 1122, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Rank": 1, - "CommandName": "Remove-PnPPlannerTask", - "Id": 1122 + "CommandName": "Remove-PnPPlannerTask" }, { + "Id": 1123, "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1123 + "CommandName": "Remove-PnPPropertyBagValue" }, { + "Id": 1124, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Rank": 2, - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1124 + "CommandName": "Remove-PnPPropertyBagValue" }, { + "Id": 1125, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Rank": 3, - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1125 + "CommandName": "Remove-PnPPropertyBagValue" }, { + "Id": 1126, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "CommandName": "Remove-PnPPublishingImageRendition", - "Id": 1126 + "CommandName": "Remove-PnPPublishingImageRendition" }, { + "Id": 1127, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Rank": 1, - "CommandName": "Remove-PnPRoleDefinition", - "Id": 1127 + "CommandName": "Remove-PnPRoleDefinition" }, { + "Id": 1128, "Command": "Remove-PnPSdnProvider -Confirm:false", "Rank": 1, - "CommandName": "Remove-PnPSdnProvider", - "Id": 1128 + "CommandName": "Remove-PnPSdnProvider" }, { + "Id": 1129, "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1129 + "CommandName": "Remove-PnPSearchConfiguration" }, { + "Id": 1130, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1130 + "CommandName": "Remove-PnPSearchConfiguration" }, { + "Id": 1131, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1131 + "CommandName": "Remove-PnPSearchConfiguration" }, { + "Id": 1132, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1132 + "CommandName": "Remove-PnPSearchConfiguration" }, { + "Id": 1133, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1133 + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { + "Id": 1134, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1134 + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { + "Id": 1135, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Id": 1135 + "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { + "Id": 1136, "Command": "Remove-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionTermStore", - "Id": 1136 + "CommandName": "Remove-PnPSiteCollectionTermStore" }, { + "Id": 1137, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteDesign", - "Id": 1137 + "CommandName": "Remove-PnPSiteDesign" }, { + "Id": 1138, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteDesignTask", - "Id": 1138 + "CommandName": "Remove-PnPSiteDesignTask" }, { + "Id": 1139, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Remove-PnPSiteGroup", - "Id": 1139 + "CommandName": "Remove-PnPSiteGroup" }, { + "Id": 1140, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Rank": 2, - "CommandName": "Remove-PnPSiteGroup", - "Id": 1140 + "CommandName": "Remove-PnPSiteGroup" }, { + "Id": 1141, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteScript", - "Id": 1141 + "CommandName": "Remove-PnPSiteScript" }, { + "Id": 1142, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "CommandName": "Remove-PnPSiteUserInvitations", - "Id": 1142 + "CommandName": "Remove-PnPSiteUserInvitations" }, { + "Id": 1143, "Command": "Remove-PnPStorageEntity -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPStorageEntity", - "Id": 1143 + "CommandName": "Remove-PnPStorageEntity" }, { + "Id": 1144, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPStorageEntity", - "Id": 1144 + "CommandName": "Remove-PnPStorageEntity" }, { + "Id": 1145, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Rank": 1, - "CommandName": "Remove-PnPStoredCredential", - "Id": 1145 + "CommandName": "Remove-PnPStoredCredential" }, { + "Id": 1146, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Rank": 1, - "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1146 + "CommandName": "Remove-PnPTaxonomyItem" }, { + "Id": 1147, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Rank": 2, - "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1147 + "CommandName": "Remove-PnPTaxonomyItem" }, { + "Id": 1148, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Rank": 1, - "CommandName": "Remove-PnPTeamsApp", - "Id": 1148 + "CommandName": "Remove-PnPTeamsApp" }, { + "Id": 1149, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Rank": 2, - "CommandName": "Remove-PnPTeamsApp", - "Id": 1149 + "CommandName": "Remove-PnPTeamsApp" }, { + "Id": 1150, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Rank": 1, - "CommandName": "Remove-PnPTeamsChannel", - "Id": 1150 + "CommandName": "Remove-PnPTeamsChannel" }, { + "Id": 1151, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Rank": 1, - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1151 + "CommandName": "Remove-PnPTeamsChannelUser" }, { + "Id": 1152, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 2, - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1152 + "CommandName": "Remove-PnPTeamsChannelUser" }, { + "Id": 1153, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Rank": 3, - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1153 + "CommandName": "Remove-PnPTeamsChannelUser" }, { + "Id": 1154, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "Rank": 1, - "CommandName": "Remove-PnPTeamsTab", - "Id": 1154 + "CommandName": "Remove-PnPTeamsTab" }, { + "Id": 1155, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "Rank": 2, - "CommandName": "Remove-PnPTeamsTab", - "Id": 1155 + "CommandName": "Remove-PnPTeamsTab" }, { + "Id": 1156, "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", - "Id": 1156 + "CommandName": "Remove-PnPTeamsTab" }, { + "Id": 1157, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 1, - "CommandName": "Remove-PnPTeamsTag", - "Id": 1157 + "CommandName": "Remove-PnPTeamsTag" }, { + "Id": 1158, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "CommandName": "Remove-PnPTeamsTeam", - "Id": 1158 + "CommandName": "Remove-PnPTeamsTeam" }, { + "Id": 1159, "Command": "Remove-PnPTeamsTeam -Identity testteam", "Rank": 2, - "CommandName": "Remove-PnPTeamsTeam", - "Id": 1159 + "CommandName": "Remove-PnPTeamsTeam" }, { + "Id": 1160, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Rank": 1, - "CommandName": "Remove-PnPTeamsUser", - "Id": 1160 + "CommandName": "Remove-PnPTeamsUser" }, { + "Id": 1161, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 2, - "CommandName": "Remove-PnPTeamsUser", - "Id": 1161 + "CommandName": "Remove-PnPTeamsUser" }, { + "Id": 1162, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "CommandName": "Remove-PnPTenantCdnOrigin", - "Id": 1162 + "CommandName": "Remove-PnPTenantCdnOrigin" }, { + "Id": 1163, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1163 + "CommandName": "Remove-PnPTenantDeletedSite" }, { + "Id": 1164, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1164 + "CommandName": "Remove-PnPTenantDeletedSite" }, { + "Id": 1165, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Remove-PnPTenantSite", - "Id": 1165 + "CommandName": "Remove-PnPTenantSite" }, { + "Id": 1166, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Rank": 2, - "CommandName": "Remove-PnPTenantSite", - "Id": 1166 + "CommandName": "Remove-PnPTenantSite" }, { + "Id": 1167, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Rank": 3, - "CommandName": "Remove-PnPTenantSite", - "Id": 1167 + "CommandName": "Remove-PnPTenantSite" }, { + "Id": 1168, "Command": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, - "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Id": 1168 + "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { + "Id": 1169, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 1, - "CommandName": "Remove-PnPTenantTheme", - "Id": 1169 + "CommandName": "Remove-PnPTenantTheme" }, { + "Id": 1170, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "CommandName": "Remove-PnPTerm", - "Id": 1170 + "CommandName": "Remove-PnPTerm" }, { + "Id": 1171, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTerm", - "Id": 1171 + "CommandName": "Remove-PnPTerm" }, { + "Id": 1172, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "CommandName": "Remove-PnPTermGroup", - "Id": 1172 + "CommandName": "Remove-PnPTermGroup" }, { + "Id": 1173, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTermGroup", - "Id": 1173 + "CommandName": "Remove-PnPTermGroup" }, { + "Id": 1174, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Rank": 3, - "CommandName": "Remove-PnPTermGroup", - "Id": 1174 + "CommandName": "Remove-PnPTermGroup" }, { + "Id": 1175, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "Rank": 1, - "CommandName": "Remove-PnPTermLabel", - "Id": 1175 + "CommandName": "Remove-PnPTermLabel" }, { + "Id": 1176, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTermLabel", - "Id": 1176 + "CommandName": "Remove-PnPTermLabel" }, { + "Id": 1177, "Command": "Remove-PnPUser -Identity 23", "Rank": 1, - "CommandName": "Remove-PnPUser", - "Id": 1177 + "CommandName": "Remove-PnPUser" }, { + "Id": 1178, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "Rank": 2, - "CommandName": "Remove-PnPUser", - "Id": 1178 + "CommandName": "Remove-PnPUser" }, { + "Id": 1179, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Rank": 3, - "CommandName": "Remove-PnPUser", - "Id": 1179 + "CommandName": "Remove-PnPUser" }, { + "Id": 1180, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "CommandName": "Remove-PnPUserInfo", - "Id": 1180 + "CommandName": "Remove-PnPUserInfo" }, { + "Id": 1181, "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "CommandName": "Remove-PnPUserProfile", - "Id": 1181 + "CommandName": "Remove-PnPUserProfile" }, { + "Id": 1182, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Rank": 1, - "CommandName": "Remove-PnPView", - "Id": 1182 + "CommandName": "Remove-PnPView" }, { + "Id": 1183, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 1, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Id": 1183 + "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { + "Id": 1184, "Command": "Remove-PnPWeb -Identity projectA", "Rank": 1, - "CommandName": "Remove-PnPWeb", - "Id": 1184 + "CommandName": "Remove-PnPWeb" }, { + "Id": 1185, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Rank": 2, - "CommandName": "Remove-PnPWeb", - "Id": 1185 + "CommandName": "Remove-PnPWeb" }, { + "Id": 1186, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Rank": 1, - "CommandName": "Remove-PnPWebhookSubscription", - "Id": 1186 + "CommandName": "Remove-PnPWebhookSubscription" }, { + "Id": 1187, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Remove-PnPWebPart", - "Id": 1187 + "CommandName": "Remove-PnPWebPart" }, { + "Id": 1188, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Rank": 2, - "CommandName": "Remove-PnPWebPart", - "Id": 1188 + "CommandName": "Remove-PnPWebPart" }, { + "Id": 1189, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Rank": 1, - "CommandName": "Remove-PnPWikiPage", - "Id": 1189 + "CommandName": "Remove-PnPWikiPage" }, { + "Id": 1190, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Rank": 1, - "CommandName": "Rename-PnPFile", - "Id": 1190 + "CommandName": "Rename-PnPFile" }, { + "Id": 1191, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Rank": 2, - "CommandName": "Rename-PnPFile", - "Id": 1191 + "CommandName": "Rename-PnPFile" }, { + "Id": 1192, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Rank": 3, - "CommandName": "Rename-PnPFile", - "Id": 1192 + "CommandName": "Rename-PnPFile" }, { + "Id": 1193, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Rank": 1, - "CommandName": "Rename-PnPFolder", - "Id": 1193 + "CommandName": "Rename-PnPFolder" }, { + "Id": 1194, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Repair-PnPSite", - "Id": 1194 + "CommandName": "Repair-PnPSite" }, { + "Id": 1195, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "CommandName": "Repair-PnPSite", - "Id": 1195 + "CommandName": "Repair-PnPSite" }, { + "Id": 1196, "Command": "Request-PnPAccessToken", "Rank": 1, - "CommandName": "Request-PnPAccessToken", - "Id": 1196 + "CommandName": "Request-PnPAccessToken" }, { + "Id": 1197, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Rank": 2, - "CommandName": "Request-PnPAccessToken", - "Id": 1197 + "CommandName": "Request-PnPAccessToken" }, { + "Id": 1198, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "Rank": 3, - "CommandName": "Request-PnPAccessToken", - "Id": 1198 + "CommandName": "Request-PnPAccessToken" }, { + "Id": 1199, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Rank": 4, - "CommandName": "Request-PnPAccessToken", - "Id": 1199 + "CommandName": "Request-PnPAccessToken" }, { + "Id": 1200, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Rank": 1, - "CommandName": "Request-PnPPersonalSite", - "Id": 1200 + "CommandName": "Request-PnPPersonalSite" }, { + "Id": 1201, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Rank": 2, - "CommandName": "Request-PnPPersonalSite", - "Id": 1201 + "CommandName": "Request-PnPPersonalSite" }, { + "Id": 1202, "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Rank": 1, - "CommandName": "Request-PnPReIndexList", - "Id": 1202 + "CommandName": "Request-PnPReIndexList" }, { + "Id": 1203, "Command": "Request-PnPReIndexWeb", "Rank": 1, - "CommandName": "Request-PnPReIndexWeb", - "Id": 1203 + "CommandName": "Request-PnPReIndexWeb" }, { + "Id": 1204, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Rank": 1, - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1204 + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { + "Id": 1205, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Rank": 2, - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1205 + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { + "Id": 1206, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Rank": 3, - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1206 + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { + "Id": 1207, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Rank": 1, - "CommandName": "Reset-PnPFileVersion", - "Id": 1207 + "CommandName": "Reset-PnPFileVersion" }, { + "Id": 1208, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Rank": 2, - "CommandName": "Reset-PnPFileVersion", - "Id": 1208 + "CommandName": "Reset-PnPFileVersion" }, { + "Id": 1209, "Command": "Reset-PnPLabel -List \"Demo List\"", "Rank": 1, - "CommandName": "Reset-PnPLabel", - "Id": 1209 + "CommandName": "Reset-PnPLabel" }, { + "Id": 1210, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Rank": 2, - "CommandName": "Reset-PnPLabel", - "Id": 1210 + "CommandName": "Reset-PnPLabel" }, { + "Id": 1211, "Command": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1211 + "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { + "Id": 1212, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Id": 1212 + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { + "Id": 1213, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Rank": 1, - "CommandName": "Resolve-PnPFolder", - "Id": 1213 + "CommandName": "Resolve-PnPFolder" }, { + "Id": 1214, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Id": 1214 + "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { + "Id": 1215, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "CommandName": "Restore-PnPFileVersion", - "Id": 1215 + "CommandName": "Restore-PnPFileVersion" }, { + "Id": 1216, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Rank": 2, - "CommandName": "Restore-PnPFileVersion", - "Id": 1216 + "CommandName": "Restore-PnPFileVersion" }, { + "Id": 1217, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 3, - "CommandName": "Restore-PnPFileVersion", - "Id": 1217 + "CommandName": "Restore-PnPFileVersion" }, { + "Id": 1218, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "CommandName": "Restore-PnPListItemVersion", - "Id": 1218 + "CommandName": "Restore-PnPListItemVersion" }, { + "Id": 1219, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "CommandName": "Restore-PnPListItemVersion", - "Id": 1219 + "CommandName": "Restore-PnPListItemVersion" }, { + "Id": 1220, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "CommandName": "Restore-PnPRecycleBinItem", - "Id": 1220 + "CommandName": "Restore-PnPRecycleBinItem" }, { + "Id": 1221, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1221 + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { + "Id": 1222, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1222 + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { + "Id": 1223, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Restore-PnPTenantSite", - "Id": 1223 + "CommandName": "Restore-PnPTenantSite" }, { + "Id": 1224, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "CommandName": "Restore-PnPTenantSite", - "Id": 1224 + "CommandName": "Restore-PnPTenantSite" }, { + "Id": 1225, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Rank": 3, - "CommandName": "Restore-PnPTenantSite", - "Id": 1225 + "CommandName": "Restore-PnPTenantSite" }, { + "Id": 1226, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Rank": 1, - "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Id": 1226 + "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { + "Id": 1227, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Revoke-PnPHubSiteRights", - "Id": 1227 + "CommandName": "Revoke-PnPHubSiteRights" }, { + "Id": 1228, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Revoke-PnPSiteDesignRights", - "Id": 1228 + "CommandName": "Revoke-PnPSiteDesignRights" }, { + "Id": 1229, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Id": 1229 + "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { + "Id": 1230, "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Rank": 1, - "CommandName": "Revoke-PnPUserSession", - "Id": 1230 + "CommandName": "Revoke-PnPUserSession" }, { + "Id": 1231, "Command": "Save-PnPPageConversionLog", "Rank": 1, - "CommandName": "Save-PnPPageConversionLog", - "Id": 1231 + "CommandName": "Save-PnPPageConversionLog" }, { + "Id": 1232, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Rank": 1, - "CommandName": "Save-PnPSiteTemplate", - "Id": 1232 + "CommandName": "Save-PnPSiteTemplate" }, { + "Id": 1233, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Rank": 1, - "CommandName": "Save-PnPTenantTemplate", - "Id": 1233 + "CommandName": "Save-PnPTenantTemplate" }, { + "Id": 1234, "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", - "Id": 1234 + "CommandName": "Send-PnPMail" }, { + "Id": 1235, "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", - "Id": 1235 + "CommandName": "Send-PnPMail" }, { + "Id": 1236, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Rank": 3, - "CommandName": "Send-PnPMail", - "Id": 1236 + "CommandName": "Send-PnPMail" }, { + "Id": 1237, "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", - "Id": 1237 + "CommandName": "Send-PnPMail" }, { + "Id": 1238, "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", - "Id": 1238 + "CommandName": "Send-PnPMail" }, { + "Id": 1239, "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com -Port 587 -EnableSsl:$true -Username \"userxyz\" -Password \"password123\"", "Rank": 6, - "CommandName": "Send-PnPMail", - "Id": 1239 + "CommandName": "Send-PnPMail" }, { + "Id": 1240, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Rank": 1, - "CommandName": "Set-PnPAdaptiveScopeProperty", - "Id": 1240 + "CommandName": "Set-PnPAdaptiveScopeProperty" }, { + "Id": 1241, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1241 + "CommandName": "Set-PnPApplicationCustomizer" }, { + "Id": 1242, "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", - "Id": 1242 + "CommandName": "Set-PnPApplicationCustomizer" }, { + "Id": 1243, "Command": "Set-PnPAppSideLoading -On", "Rank": 1, - "CommandName": "Set-PnPAppSideLoading", - "Id": 1243 + "CommandName": "Set-PnPAppSideLoading" }, { + "Id": 1244, "Command": "Set-PnPAppSideLoading -Off", "Rank": 2, - "CommandName": "Set-PnPAppSideLoading", - "Id": 1244 + "CommandName": "Set-PnPAppSideLoading" }, { + "Id": 1245, "Command": "Set-PnPAuditing -EnableAll", "Rank": 1, - "CommandName": "Set-PnPAuditing", - "Id": 1245 + "CommandName": "Set-PnPAuditing" }, { + "Id": 1246, "Command": "Set-PnPAuditing -DisableAll", "Rank": 2, - "CommandName": "Set-PnPAuditing", - "Id": 1246 + "CommandName": "Set-PnPAuditing" }, { + "Id": 1247, "Command": "Set-PnPAuditing -RetentionTime 7", "Rank": 3, - "CommandName": "Set-PnPAuditing", - "Id": 1247 + "CommandName": "Set-PnPAuditing" }, { + "Id": 1248, "Command": "Set-PnPAuditing -TrimAuditLog", "Rank": 4, - "CommandName": "Set-PnPAuditing", - "Id": 1248 + "CommandName": "Set-PnPAuditing" }, { + "Id": 1249, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Rank": 5, - "CommandName": "Set-PnPAuditing", - "Id": 1249 + "CommandName": "Set-PnPAuditing" }, { + "Id": 1250, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Rank": 1, - "CommandName": "Set-PnPAvailablePageLayouts", - "Id": 1250 + "CommandName": "Set-PnPAvailablePageLayouts" }, { + "Id": 1251, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Rank": 1, - "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1251 + "CommandName": "Set-PnPAzureADAppSitePermission" }, { + "Id": 1252, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Rank": 2, - "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1252 + "CommandName": "Set-PnPAzureADAppSitePermission" }, { + "Id": 1253, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "CommandName": "Set-PnPAzureADGroup", - "Id": 1253 + "CommandName": "Set-PnPAzureADGroup" }, { + "Id": 1254, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "CommandName": "Set-PnPAzureADGroup", - "Id": 1254 + "CommandName": "Set-PnPAzureADGroup" }, { + "Id": 1255, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Rank": 3, - "CommandName": "Set-PnPAzureADGroup", - "Id": 1255 + "CommandName": "Set-PnPAzureADGroup" }, { + "Id": 1256, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Rank": 1, - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1256 + "CommandName": "Set-PnPBrowserIdleSignout" }, { + "Id": 1257, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Rank": 2, - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1257 + "CommandName": "Set-PnPBrowserIdleSignout" }, { + "Id": 1258, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Rank": 3, - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1258 + "CommandName": "Set-PnPBrowserIdleSignout" }, { + "Id": 1259, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Rank": 1, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1259 + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { + "Id": 1260, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Rank": 2, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1260 + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { + "Id": 1261, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Rank": 1, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1261 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { + "Id": 1262, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Rank": 2, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1262 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { + "Id": 1263, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Rank": 3, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1263 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { + "Id": 1264, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Rank": 4, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1264 + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { + "Id": 1265, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 1, - "CommandName": "Set-PnPContentType", - "Id": 1265 + "CommandName": "Set-PnPContentType" }, { + "Id": 1266, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Rank": 2, - "CommandName": "Set-PnPContentType", - "Id": 1266 + "CommandName": "Set-PnPContentType" }, { + "Id": 1267, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 3, - "CommandName": "Set-PnPContentType", - "Id": 1267 + "CommandName": "Set-PnPContentType" }, { + "Id": 1268, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 4, - "CommandName": "Set-PnPContentType", - "Id": 1268 + "CommandName": "Set-PnPContentType" }, { + "Id": 1269, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 5, - "CommandName": "Set-PnPContentType", - "Id": 1269 + "CommandName": "Set-PnPContentType" }, { + "Id": 1270, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Rank": 1, - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1270 + "CommandName": "Set-PnPDefaultColumnValues" }, { + "Id": 1271, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Rank": 2, - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1271 + "CommandName": "Set-PnPDefaultColumnValues" }, { + "Id": 1272, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Rank": 3, - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1272 + "CommandName": "Set-PnPDefaultColumnValues" }, { + "Id": 1273, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Rank": 4, - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1273 + "CommandName": "Set-PnPDefaultColumnValues" }, { + "Id": 1274, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Rank": 1, - "CommandName": "Set-PnPDefaultContentTypeToList", - "Id": 1274 + "CommandName": "Set-PnPDefaultContentTypeToList" }, { + "Id": 1275, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Rank": 1, - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1275 + "CommandName": "Set-PnPDefaultPageLayout" }, { + "Id": 1276, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Rank": 2, - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1276 + "CommandName": "Set-PnPDefaultPageLayout" }, { + "Id": 1277, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Rank": 3, - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1277 + "CommandName": "Set-PnPDefaultPageLayout" }, { + "Id": 1278, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Rank": 1, - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1278 + "CommandName": "Set-PnPDisableSpacesActivation" }, { + "Id": 1279, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 2, - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1279 + "CommandName": "Set-PnPDisableSpacesActivation" }, { + "Id": 1280, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 3, - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1280 + "CommandName": "Set-PnPDisableSpacesActivation" }, { + "Id": 1281, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Rank": 1, - "CommandName": "Set-PnPDocumentSetField", - "Id": 1281 + "CommandName": "Set-PnPDocumentSetField" }, { + "Id": 1282, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Rank": 2, - "CommandName": "Set-PnPDocumentSetField", - "Id": 1282 + "CommandName": "Set-PnPDocumentSetField" }, { + "Id": 1283, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "Rank": 1, - "CommandName": "Set-PnPField", - "Id": 1283 + "CommandName": "Set-PnPField" }, { + "Id": 1284, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Rank": 2, - "CommandName": "Set-PnPField", - "Id": 1284 + "CommandName": "Set-PnPField" }, { + "Id": 1285, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Rank": 3, - "CommandName": "Set-PnPField", - "Id": 1285 + "CommandName": "Set-PnPField" }, { + "Id": 1286, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Set-PnPFileCheckedIn", - "Id": 1286 + "CommandName": "Set-PnPFileCheckedIn" }, { + "Id": 1287, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Rank": 2, - "CommandName": "Set-PnPFileCheckedIn", - "Id": 1287 + "CommandName": "Set-PnPFileCheckedIn" }, { + "Id": 1288, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Set-PnPFileCheckedOut", - "Id": 1288 + "CommandName": "Set-PnPFileCheckedOut" }, { + "Id": 1289, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPFolderPermission", - "Id": 1289 + "CommandName": "Set-PnPFolderPermission" }, { + "Id": 1290, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPFolderPermission", - "Id": 1290 + "CommandName": "Set-PnPFolderPermission" }, { + "Id": 1291, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "CommandName": "Set-PnPFolderPermission", - "Id": 1291 + "CommandName": "Set-PnPFolderPermission" }, { + "Id": 1292, "Command": "Set-PnPFooter -Enabled:$true", "Rank": 1, - "CommandName": "Set-PnPFooter", - "Id": 1292 + "CommandName": "Set-PnPFooter" }, { + "Id": 1293, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Rank": 2, - "CommandName": "Set-PnPFooter", - "Id": 1293 + "CommandName": "Set-PnPFooter" }, { + "Id": 1294, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Rank": 3, - "CommandName": "Set-PnPFooter", - "Id": 1294 + "CommandName": "Set-PnPFooter" }, { + "Id": 1295, "Command": "Set-PnPFooter -LogoUrl \"\"", "Rank": 4, - "CommandName": "Set-PnPFooter", - "Id": 1295 + "CommandName": "Set-PnPFooter" }, { + "Id": 1296, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Rank": 1, - "CommandName": "Set-PnPGraphSubscription", - "Id": 1296 + "CommandName": "Set-PnPGraphSubscription" }, { + "Id": 1297, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Rank": 1, - "CommandName": "Set-PnPGroup", - "Id": 1297 + "CommandName": "Set-PnPGroup" }, { + "Id": 1298, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Rank": 2, - "CommandName": "Set-PnPGroup", - "Id": 1298 + "CommandName": "Set-PnPGroup" }, { + "Id": 1299, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Rank": 1, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1299 + "CommandName": "Set-PnPGroupPermissions" }, { + "Id": 1300, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Rank": 2, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1300 + "CommandName": "Set-PnPGroupPermissions" }, { + "Id": 1301, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Rank": 3, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1301 + "CommandName": "Set-PnPGroupPermissions" }, { + "Id": 1302, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Rank": 4, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1302 + "CommandName": "Set-PnPGroupPermissions" }, { + "Id": 1303, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Rank": 5, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1303 + "CommandName": "Set-PnPGroupPermissions" }, { + "Id": 1304, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Rank": 1, - "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1304 + "CommandName": "Set-PnPHideDefaultThemes" }, { + "Id": 1305, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Rank": 2, - "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1305 + "CommandName": "Set-PnPHideDefaultThemes" }, { + "Id": 1306, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Rank": 1, - "CommandName": "Set-PnPHomePage", - "Id": 1306 + "CommandName": "Set-PnPHomePage" }, { + "Id": 1307, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Rank": 2, - "CommandName": "Set-PnPHomePage", - "Id": 1307 + "CommandName": "Set-PnPHomePage" }, { + "Id": 1308, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Rank": 1, - "CommandName": "Set-PnPHomeSite", - "Id": 1308 + "CommandName": "Set-PnPHomeSite" }, { + "Id": 1309, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Rank": 2, - "CommandName": "Set-PnPHomeSite", - "Id": 1309 + "CommandName": "Set-PnPHomeSite" }, { + "Id": 1310, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "Rank": 1, - "CommandName": "Set-PnPHubSite", - "Id": 1310 + "CommandName": "Set-PnPHubSite" }, { + "Id": 1311, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "Rank": 2, - "CommandName": "Set-PnPHubSite", - "Id": 1311 + "CommandName": "Set-PnPHubSite" }, { + "Id": 1312, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "Rank": 3, - "CommandName": "Set-PnPHubSite", - "Id": 1312 + "CommandName": "Set-PnPHubSite" }, { + "Id": 1313, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "Rank": 4, - "CommandName": "Set-PnPHubSite", - "Id": 1313 + "CommandName": "Set-PnPHubSite" }, { + "Id": 1314, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Rank": 5, - "CommandName": "Set-PnPHubSite", - "Id": 1314 + "CommandName": "Set-PnPHubSite" }, { + "Id": 1315, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Rank": 6, - "CommandName": "Set-PnPHubSite", - "Id": 1315 + "CommandName": "Set-PnPHubSite" }, { + "Id": 1316, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Rank": 1, - "CommandName": "Set-PnPImageListItemColumn", - "Id": 1316 + "CommandName": "Set-PnPImageListItemColumn" }, { + "Id": 1317, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Rank": 2, - "CommandName": "Set-PnPImageListItemColumn", - "Id": 1317 + "CommandName": "Set-PnPImageListItemColumn" }, { + "Id": 1318, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Rank": 1, - "CommandName": "Set-PnPIndexedProperties", - "Id": 1318 + "CommandName": "Set-PnPIndexedProperties" }, { + "Id": 1319, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Rank": 1, - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1319 + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { + "Id": 1320, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Rank": 2, - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1320 + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { + "Id": 1321, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Rank": 1, - "CommandName": "Set-PnPKnowledgeHubSite", - "Id": 1321 + "CommandName": "Set-PnPKnowledgeHubSite" }, { + "Id": 1322, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Rank": 1, - "CommandName": "Set-PnPLabel", - "Id": 1322 + "CommandName": "Set-PnPLabel" }, { + "Id": 1323, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Rank": 2, - "CommandName": "Set-PnPLabel", - "Id": 1323 + "CommandName": "Set-PnPLabel" }, { + "Id": 1324, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Rank": 1, - "CommandName": "Set-PnPList", - "Id": 1324 + "CommandName": "Set-PnPList" }, { + "Id": 1325, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Rank": 2, - "CommandName": "Set-PnPList", - "Id": 1325 + "CommandName": "Set-PnPList" }, { + "Id": 1326, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Rank": 3, - "CommandName": "Set-PnPList", - "Id": 1326 + "CommandName": "Set-PnPList" }, { + "Id": 1327, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Rank": 4, - "CommandName": "Set-PnPList", - "Id": 1327 + "CommandName": "Set-PnPList" }, { + "Id": 1328, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Rank": 5, - "CommandName": "Set-PnPList", - "Id": 1328 + "CommandName": "Set-PnPList" }, { + "Id": 1329, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Rank": 6, - "CommandName": "Set-PnPList", - "Id": 1329 + "CommandName": "Set-PnPList" }, { + "Id": 1330, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Rank": 7, - "CommandName": "Set-PnPList", - "Id": 1330 + "CommandName": "Set-PnPList" }, { + "Id": 1331, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "Rank": 8, - "CommandName": "Set-PnPList", - "Id": 1331 + "CommandName": "Set-PnPList" }, { + "Id": 1332, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "Rank": 9, - "CommandName": "Set-PnPList", - "Id": 1332 + "CommandName": "Set-PnPList" }, { + "Id": 1333, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "Rank": 10, - "CommandName": "Set-PnPList", - "Id": 1333 + "CommandName": "Set-PnPList" }, { + "Id": 1334, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "Rank": 11, - "CommandName": "Set-PnPList", - "Id": 1334 + "CommandName": "Set-PnPList" }, { + "Id": 1335, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "Rank": 1, - "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1335 + "CommandName": "Set-PnPListInformationRightsManagement" }, { + "Id": 1336, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "Rank": 2, - "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1336 + "CommandName": "Set-PnPListInformationRightsManagement" }, { + "Id": 1337, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "CommandName": "Set-PnPListItem", - "Id": 1337 + "CommandName": "Set-PnPListItem" }, { + "Id": 1338, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "CommandName": "Set-PnPListItem", - "Id": 1338 + "CommandName": "Set-PnPListItem" }, { + "Id": 1339, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 3, - "CommandName": "Set-PnPListItem", - "Id": 1339 + "CommandName": "Set-PnPListItem" }, { + "Id": 1340, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "Rank": 4, - "CommandName": "Set-PnPListItem", - "Id": 1340 + "CommandName": "Set-PnPListItem" }, { + "Id": 1341, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "Rank": 5, - "CommandName": "Set-PnPListItem", - "Id": 1341 + "CommandName": "Set-PnPListItem" }, { + "Id": 1342, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Set-PnPListItemAsRecord", - "Id": 1342 + "CommandName": "Set-PnPListItemAsRecord" }, { + "Id": 1343, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "Rank": 2, - "CommandName": "Set-PnPListItemAsRecord", - "Id": 1343 + "CommandName": "Set-PnPListItemAsRecord" }, { + "Id": 1344, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPListItemPermission", - "Id": 1344 + "CommandName": "Set-PnPListItemPermission" }, { + "Id": 1345, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPListItemPermission", - "Id": 1345 + "CommandName": "Set-PnPListItemPermission" }, { + "Id": 1346, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "CommandName": "Set-PnPListItemPermission", - "Id": 1346 + "CommandName": "Set-PnPListItemPermission" }, { + "Id": 1347, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "Rank": 4, - "CommandName": "Set-PnPListItemPermission", - "Id": 1347 + "CommandName": "Set-PnPListItemPermission" }, { + "Id": 1348, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "Rank": 5, - "CommandName": "Set-PnPListItemPermission", - "Id": 1348 + "CommandName": "Set-PnPListItemPermission" }, { + "Id": 1349, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPListPermission", - "Id": 1349 + "CommandName": "Set-PnPListPermission" }, { + "Id": 1350, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPListPermission", - "Id": 1350 + "CommandName": "Set-PnPListPermission" }, { + "Id": 1351, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "Rank": 1, - "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1351 + "CommandName": "Set-PnPListRecordDeclaration" }, { + "Id": 1352, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "Rank": 2, - "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1352 + "CommandName": "Set-PnPListRecordDeclaration" }, { + "Id": 1353, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 1, - "CommandName": "Set-PnPMasterPage", - "Id": 1353 + "CommandName": "Set-PnPMasterPage" }, { + "Id": 1354, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 2, - "CommandName": "Set-PnPMasterPage", - "Id": 1354 + "CommandName": "Set-PnPMasterPage" }, { + "Id": 1355, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 3, - "CommandName": "Set-PnPMasterPage", - "Id": 1355 + "CommandName": "Set-PnPMasterPage" }, { + "Id": 1356, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 4, - "CommandName": "Set-PnPMasterPage", - "Id": 1356 + "CommandName": "Set-PnPMasterPage" }, { + "Id": 1357, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1357 + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { + "Id": 1358, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1358 + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { + "Id": 1359, "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1359 + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { + "Id": 1360, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1360 + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { + "Id": 1361, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1361 + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { + "Id": 1362, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1362 + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { + "Id": 1363, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1363 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { + "Id": 1364, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1364 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { + "Id": 1365, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1365 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { + "Id": 1366, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1366 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { + "Id": 1367, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1367 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { + "Id": 1368, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1368 + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { + "Id": 1369, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1369 + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { + "Id": 1370, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1370 + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { + "Id": 1371, "Command": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1371 + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { + "Id": 1372, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1372 + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { + "Id": 1373, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1373 + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { + "Id": 1374, "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1374 + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { + "Id": 1375, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1375 + "CommandName": "Set-PnPMicrosoft365Group" }, { + "Id": 1376, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1376 + "CommandName": "Set-PnPMicrosoft365Group" }, { + "Id": 1377, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "Rank": 3, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1377 + "CommandName": "Set-PnPMicrosoft365Group" }, { + "Id": 1378, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "Rank": 4, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1378 + "CommandName": "Set-PnPMicrosoft365Group" }, { + "Id": 1379, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "Rank": 5, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1379 + "CommandName": "Set-PnPMicrosoft365Group" }, { + "Id": 1380, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1380 + "CommandName": "Set-PnPMicrosoft365Group" }, { + "Id": 1381, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "Rank": 1, - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1381 + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { + "Id": 1382, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "Rank": 2, - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1382 + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { + "Id": 1383, "Command": "Set-PnPMinimalDownloadStrategy -Off", "Rank": 1, - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1383 + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { + "Id": 1384, "Command": "Set-PnPMinimalDownloadStrategy -On", "Rank": 2, - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1384 + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { + "Id": 1385, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Rank": 1, - "CommandName": "Set-PnPPage", - "Id": 1385 + "CommandName": "Set-PnPPage" }, { + "Id": 1386, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Rank": 2, - "CommandName": "Set-PnPPage", - "Id": 1386 + "CommandName": "Set-PnPPage" }, { + "Id": 1387, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Rank": 3, - "CommandName": "Set-PnPPage", - "Id": 1387 + "CommandName": "Set-PnPPage" }, { + "Id": 1388, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Rank": 4, - "CommandName": "Set-PnPPage", - "Id": 1388 + "CommandName": "Set-PnPPage" }, { + "Id": 1389, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Rank": 5, - "CommandName": "Set-PnPPage", - "Id": 1389 + "CommandName": "Set-PnPPage" }, { + "Id": 1390, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "Rank": 6, - "CommandName": "Set-PnPPage", - "Id": 1390 + "CommandName": "Set-PnPPage" }, { + "Id": 1391, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "CommandName": "Set-PnPPage", - "Id": 1391 + "CommandName": "Set-PnPPage" }, { + "Id": 1392, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "Rank": 8, - "CommandName": "Set-PnPPage", - "Id": 1392 + "CommandName": "Set-PnPPage" }, { + "Id": 1393, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "CommandName": "Set-PnPPage", - "Id": 1393 + "CommandName": "Set-PnPPage" }, { + "Id": 1394, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "CommandName": "Set-PnPPage", - "Id": 1394 + "CommandName": "Set-PnPPage" }, { + "Id": 1395, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "Rank": 11, - "CommandName": "Set-PnPPage", - "Id": 1395 + "CommandName": "Set-PnPPage" }, { + "Id": 1396, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "Rank": 1, - "CommandName": "Set-PnPPageTextPart", - "Id": 1396 + "CommandName": "Set-PnPPageTextPart" }, { + "Id": 1397, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "Rank": 1, - "CommandName": "Set-PnPPageWebPart", - "Id": 1397 + "CommandName": "Set-PnPPageWebPart" }, { + "Id": 1398, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "Rank": 2, - "CommandName": "Set-PnPPageWebPart", - "Id": 1398 + "CommandName": "Set-PnPPageWebPart" }, { + "Id": 1399, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "Rank": 1, - "CommandName": "Set-PnPPlannerBucket", - "Id": 1399 + "CommandName": "Set-PnPPlannerBucket" }, { + "Id": 1400, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "Rank": 1, - "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1400 + "CommandName": "Set-PnPPlannerConfiguration" }, { + "Id": 1401, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "Rank": 2, - "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1401 + "CommandName": "Set-PnPPlannerConfiguration" }, { + "Id": 1402, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "Rank": 1, - "CommandName": "Set-PnPPlannerPlan", - "Id": 1402 + "CommandName": "Set-PnPPlannerPlan" }, { + "Id": 1403, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "Rank": 1, - "CommandName": "Set-PnPPlannerTask", - "Id": 1403 + "CommandName": "Set-PnPPlannerTask" }, { + "Id": 1404, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "Rank": 2, - "CommandName": "Set-PnPPlannerTask", - "Id": 1404 + "CommandName": "Set-PnPPlannerTask" }, { + "Id": 1405, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Rank": 3, - "CommandName": "Set-PnPPlannerTask", - "Id": 1405 + "CommandName": "Set-PnPPlannerTask" }, { + "Id": 1406, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Set-PnPPlannerUserPolicy", - "Id": 1406 + "CommandName": "Set-PnPPlannerUserPolicy" }, { + "Id": 1407, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Rank": 1, - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1407 + "CommandName": "Set-PnPPropertyBagValue" }, { + "Id": 1408, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Rank": 2, - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1408 + "CommandName": "Set-PnPPropertyBagValue" }, { + "Id": 1409, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "Rank": 3, - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1409 + "CommandName": "Set-PnPPropertyBagValue" }, { + "Id": 1410, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Rank": 1, - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1410 + "CommandName": "Set-PnPRequestAccessEmails" }, { + "Id": 1411, "Command": "Set-PnPRequestAccessEmails -Disabled", "Rank": 2, - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1411 + "CommandName": "Set-PnPRequestAccessEmails" }, { + "Id": 1412, "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "Rank": 3, - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1412 + "CommandName": "Set-PnPRequestAccessEmails" }, { + "Id": 1413, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Rank": 1, - "CommandName": "Set-PnPRoleDefinition", - "Id": 1413 + "CommandName": "Set-PnPRoleDefinition" }, { + "Id": 1414, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Rank": 2, - "CommandName": "Set-PnPRoleDefinition", - "Id": 1414 + "CommandName": "Set-PnPRoleDefinition" }, { + "Id": 1415, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Rank": 3, - "CommandName": "Set-PnPRoleDefinition", - "Id": 1415 + "CommandName": "Set-PnPRoleDefinition" }, { + "Id": 1416, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "Rank": 4, - "CommandName": "Set-PnPRoleDefinition", - "Id": 1416 + "CommandName": "Set-PnPRoleDefinition" }, { + "Id": 1417, "Command": "Set-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1417 + "CommandName": "Set-PnPSearchConfiguration" }, { + "Id": 1418, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1418 + "CommandName": "Set-PnPSearchConfiguration" }, { + "Id": 1419, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1419 + "CommandName": "Set-PnPSearchConfiguration" }, { + "Id": 1420, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1420 + "CommandName": "Set-PnPSearchConfiguration" }, { + "Id": 1421, "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", - "Id": 1421 + "CommandName": "Set-PnPSearchExternalItem" }, { + "Id": 1422, "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", - "Id": 1422 + "CommandName": "Set-PnPSearchExternalItem" }, { + "Id": 1423, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Rank": 1, - "CommandName": "Set-PnPSearchSettings", - "Id": 1423 + "CommandName": "Set-PnPSearchSettings" }, { + "Id": 1424, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Rank": 2, - "CommandName": "Set-PnPSearchSettings", - "Id": 1424 + "CommandName": "Set-PnPSearchSettings" }, { + "Id": 1425, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Rank": 3, - "CommandName": "Set-PnPSearchSettings", - "Id": 1425 + "CommandName": "Set-PnPSearchSettings" }, { + "Id": 1426, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Rank": 4, - "CommandName": "Set-PnPSearchSettings", - "Id": 1426 + "CommandName": "Set-PnPSearchSettings" }, { + "Id": 1427, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "Rank": 5, - "CommandName": "Set-PnPSearchSettings", - "Id": 1427 + "CommandName": "Set-PnPSearchSettings" }, { + "Id": 1428, "Command": "Set-PnPSearchSettings -SearchScope Tenant", "Rank": 6, - "CommandName": "Set-PnPSearchSettings", - "Id": 1428 + "CommandName": "Set-PnPSearchSettings" }, { + "Id": 1429, "Command": "Set-PnPSearchSettings -SearchScope Hub", "Rank": 7, - "CommandName": "Set-PnPSearchSettings", - "Id": 1429 + "CommandName": "Set-PnPSearchSettings" }, { + "Id": 1430, "Command": "Set-PnPSite -Classification \"HBI\"", "Rank": 1, - "CommandName": "Set-PnPSite", - "Id": 1430 + "CommandName": "Set-PnPSite" }, { + "Id": 1431, "Command": "Set-PnPSite -Classification $null", "Rank": 2, - "CommandName": "Set-PnPSite", - "Id": 1431 + "CommandName": "Set-PnPSite" }, { + "Id": 1432, "Command": "Set-PnPSite -DisableFlows", "Rank": 3, - "CommandName": "Set-PnPSite", - "Id": 1432 + "CommandName": "Set-PnPSite" }, { + "Id": 1433, "Command": "Set-PnPSite -DisableFlows:$false", "Rank": 4, - "CommandName": "Set-PnPSite", - "Id": 1433 + "CommandName": "Set-PnPSite" }, { + "Id": 1434, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "Rank": 5, - "CommandName": "Set-PnPSite", - "Id": 1434 + "CommandName": "Set-PnPSite" }, { + "Id": 1435, "Command": "Set-PnPSite -NoScriptSite $false", "Rank": 6, - "CommandName": "Set-PnPSite", - "Id": 1435 + "CommandName": "Set-PnPSite" }, { + "Id": 1436, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "Rank": 7, - "CommandName": "Set-PnPSite", - "Id": 1436 + "CommandName": "Set-PnPSite" }, { + "Id": 1437, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "Rank": 8, - "CommandName": "Set-PnPSite", - "Id": 1437 + "CommandName": "Set-PnPSite" }, { + "Id": 1438, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "Rank": 9, - "CommandName": "Set-PnPSite", - "Id": 1438 + "CommandName": "Set-PnPSite" }, { + "Id": 1439, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "Rank": 10, - "CommandName": "Set-PnPSite", - "Id": 1439 + "CommandName": "Set-PnPSite" }, { + "Id": 1440, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "Rank": 11, - "CommandName": "Set-PnPSite", - "Id": 1440 + "CommandName": "Set-PnPSite" }, { + "Id": 1441, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "Rank": 12, - "CommandName": "Set-PnPSite", - "Id": 1441 + "CommandName": "Set-PnPSite" }, { + "Id": 1442, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "Rank": 13, - "CommandName": "Set-PnPSite", - "Id": 1442 + "CommandName": "Set-PnPSite" }, { + "Id": 1443, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "Rank": 14, - "CommandName": "Set-PnPSite", - "Id": 1443 + "CommandName": "Set-PnPSite" }, { + "Id": 1444, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "Rank": 15, - "CommandName": "Set-PnPSite", - "Id": 1444 + "CommandName": "Set-PnPSite" }, { + "Id": 1445, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "Rank": 16, - "CommandName": "Set-PnPSite", - "Id": 1445 + "CommandName": "Set-PnPSite" }, { + "Id": 1446, "Command": "Set-PnPSite -CancelVPForExistingLibs", "Rank": 17, - "CommandName": "Set-PnPSite", - "Id": 1446 + "CommandName": "Set-PnPSite" }, { + "Id": 1447, "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "Rank": 1, - "CommandName": "Set-PnPSiteClassification", - "Id": 1447 + "CommandName": "Set-PnPSiteClassification" }, { + "Id": 1448, "Command": "Set-PnPSiteClosure -State Open", "Rank": 1, - "CommandName": "Set-PnPSiteClosure", - "Id": 1448 + "CommandName": "Set-PnPSiteClosure" }, { + "Id": 1449, "Command": "Set-PnPSiteClosure -State Closed", "Rank": 2, - "CommandName": "Set-PnPSiteClosure", - "Id": 1449 + "CommandName": "Set-PnPSiteClosure" }, { + "Id": 1450, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "Rank": 1, - "CommandName": "Set-PnPSiteDesign", - "Id": 1450 + "CommandName": "Set-PnPSiteDesign" }, { + "Id": 1451, "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", - "Id": 1451 + "CommandName": "Set-PnPSiteDesign" }, { + "Id": 1452, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "Rank": 1, - "CommandName": "Set-PnPSiteGroup", - "Id": 1452 + "CommandName": "Set-PnPSiteGroup" }, { + "Id": 1453, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "Rank": 2, - "CommandName": "Set-PnPSiteGroup", - "Id": 1453 + "CommandName": "Set-PnPSiteGroup" }, { + "Id": 1454, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 1, - "CommandName": "Set-PnPSitePolicy", - "Id": 1454 + "CommandName": "Set-PnPSitePolicy" }, { + "Id": 1455, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "CommandName": "Set-PnPSiteScript", - "Id": 1455 + "CommandName": "Set-PnPSiteScript" }, { + "Id": 1456, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "CommandName": "Set-PnPSiteScriptPackage", - "Id": 1456 + "CommandName": "Set-PnPSiteScriptPackage" }, { + "Id": 1457, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Rank": 1, - "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1457 + "CommandName": "Set-PnPSiteSensitivityLabel" }, { + "Id": 1458, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "Rank": 2, - "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1458 + "CommandName": "Set-PnPSiteSensitivityLabel" }, { + "Id": 1459, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "Rank": 1, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1459 + "CommandName": "Set-PnPSiteTemplateMetadata" }, { + "Id": 1460, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "Rank": 2, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1460 + "CommandName": "Set-PnPSiteTemplateMetadata" }, { + "Id": 1461, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 3, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1461 + "CommandName": "Set-PnPSiteTemplateMetadata" }, { + "Id": 1462, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 4, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1462 + "CommandName": "Set-PnPSiteTemplateMetadata" }, { + "Id": 1463, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 5, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1463 + "CommandName": "Set-PnPSiteTemplateMetadata" }, { + "Id": 1464, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 6, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1464 + "CommandName": "Set-PnPSiteTemplateMetadata" }, { + "Id": 1465, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 1, - "CommandName": "Set-PnPStorageEntity", - "Id": 1465 + "CommandName": "Set-PnPStorageEntity" }, { + "Id": 1466, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 2, - "CommandName": "Set-PnPStorageEntity", - "Id": 1466 + "CommandName": "Set-PnPStorageEntity" }, { + "Id": 1467, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1467 + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { + "Id": 1468, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1468 + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { + "Id": 1469, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1469 + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { + "Id": 1470, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1470 + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { + "Id": 1471, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "Rank": 1, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1471 + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { + "Id": 1472, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "Rank": 2, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1472 + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { + "Id": 1473, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "Rank": 1, - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1473 + "CommandName": "Set-PnPTaxonomyFieldValue" }, { + "Id": 1474, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "Rank": 2, - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1474 + "CommandName": "Set-PnPTaxonomyFieldValue" }, { + "Id": 1475, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "Rank": 3, - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1475 + "CommandName": "Set-PnPTaxonomyFieldValue" }, { + "Id": 1476, "Command": "Set-PnPTeamifyPromptHidden", "Rank": 1, - "CommandName": "Set-PnPTeamifyPromptHidden", - "Id": 1476 + "CommandName": "Set-PnPTeamifyPromptHidden" }, { + "Id": 1477, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Rank": 1, - "CommandName": "Set-PnPTeamsChannel", - "Id": 1477 + "CommandName": "Set-PnPTeamsChannel" }, { + "Id": 1478, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Rank": 2, - "CommandName": "Set-PnPTeamsChannel", - "Id": 1478 + "CommandName": "Set-PnPTeamsChannel" }, { + "Id": 1479, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Rank": 1, - "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1479 + "CommandName": "Set-PnpTeamsChannelUser" }, { + "Id": 1480, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Rank": 2, - "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1480 + "CommandName": "Set-PnpTeamsChannelUser" }, { + "Id": 1481, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTab", - "Id": 1481 + "CommandName": "Set-PnPTeamsTab" }, { + "Id": 1482, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTag", - "Id": 1482 + "CommandName": "Set-PnPTeamsTag" }, { + "Id": 1483, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Rank": 1, - "CommandName": "Set-PnPTeamsTeam", - "Id": 1483 + "CommandName": "Set-PnPTeamsTeam" }, { + "Id": 1484, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Rank": 2, - "CommandName": "Set-PnPTeamsTeam", - "Id": 1484 + "CommandName": "Set-PnPTeamsTeam" }, { + "Id": 1485, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Rank": 3, - "CommandName": "Set-PnPTeamsTeam", - "Id": 1485 + "CommandName": "Set-PnPTeamsTeam" }, { + "Id": 1486, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "Rank": 4, - "CommandName": "Set-PnPTeamsTeam", - "Id": 1486 + "CommandName": "Set-PnPTeamsTeam" }, { + "Id": 1487, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Rank": 1, - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1487 + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { + "Id": 1488, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Rank": 2, - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1488 + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { + "Id": 1489, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "Rank": 3, - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1489 + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { + "Id": 1490, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTeamPicture", - "Id": 1490 + "CommandName": "Set-PnPTeamsTeamPicture" }, { + "Id": 1491, "Command": "Set-PnPTemporarilyDisableAppBar $true", "Rank": 1, - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1491 + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { + "Id": 1492, "Command": "Set-PnPTemporarilyDisableAppBar $false", "Rank": 2, - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1492 + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { + "Id": 1493, "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", - "Id": 1493 + "CommandName": "Set-PnPTenant" }, { + "Id": 1494, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Rank": 2, - "CommandName": "Set-PnPTenant", - "Id": 1494 + "CommandName": "Set-PnPTenant" }, { + "Id": 1495, "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Rank": 3, - "CommandName": "Set-PnPTenant", - "Id": 1495 + "CommandName": "Set-PnPTenant" }, { + "Id": 1496, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Rank": 4, - "CommandName": "Set-PnPTenant", - "Id": 1496 + "CommandName": "Set-PnPTenant" }, { + "Id": 1497, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Rank": 1, - "CommandName": "Set-PnPTenantAppCatalogUrl", - "Id": 1497 + "CommandName": "Set-PnPTenantAppCatalogUrl" }, { + "Id": 1498, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "Rank": 1, - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1498 + "CommandName": "Set-PnPTenantCdnEnabled" }, { + "Id": 1499, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "Rank": 2, - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1499 + "CommandName": "Set-PnPTenantCdnEnabled" }, { + "Id": 1500, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "Rank": 3, - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1500 + "CommandName": "Set-PnPTenantCdnEnabled" }, { + "Id": 1501, "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", - "Id": 1501 + "CommandName": "Set-PnPTenantCdnPolicy" }, { + "Id": 1502, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Rank": 2, - "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1502 + "CommandName": "Set-PnPTenantCdnPolicy" }, { + "Id": 1503, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "Rank": 1, - "CommandName": "Set-PnPTenantSite", - "Id": 1503 + "CommandName": "Set-PnPTenantSite" }, { + "Id": 1504, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "Rank": 2, - "CommandName": "Set-PnPTenantSite", - "Id": 1504 + "CommandName": "Set-PnPTenantSite" }, { + "Id": 1505, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Set-PnPTenantSite", - "Id": 1505 + "CommandName": "Set-PnPTenantSite" }, { + "Id": 1506, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 4, - "CommandName": "Set-PnPTenantSite", - "Id": 1506 + "CommandName": "Set-PnPTenantSite" }, { + "Id": 1507, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "Rank": 5, - "CommandName": "Set-PnPTenantSite", - "Id": 1507 + "CommandName": "Set-PnPTenantSite" }, { + "Id": 1508, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Rank": 1, - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1508 + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { + "Id": 1509, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Rank": 2, - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1509 + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { + "Id": 1510, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "Rank": 1, - "CommandName": "Set-PnPTerm", - "Id": 1510 + "CommandName": "Set-PnPTerm" }, { + "Id": 1511, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "CommandName": "Set-PnPTerm", - "Id": 1511 + "CommandName": "Set-PnPTerm" }, { + "Id": 1512, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 3, - "CommandName": "Set-PnPTerm", - "Id": 1512 + "CommandName": "Set-PnPTerm" }, { + "Id": 1513, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "Rank": 4, - "CommandName": "Set-PnPTerm", - "Id": 1513 + "CommandName": "Set-PnPTerm" }, { + "Id": 1514, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "Rank": 1, - "CommandName": "Set-PnPTermGroup", - "Id": 1514 + "CommandName": "Set-PnPTermGroup" }, { + "Id": 1515, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "Rank": 1, - "CommandName": "Set-PnPTermSet", - "Id": 1515 + "CommandName": "Set-PnPTermSet" }, { + "Id": 1516, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "Rank": 2, - "CommandName": "Set-PnPTermSet", - "Id": 1516 + "CommandName": "Set-PnPTermSet" }, { + "Id": 1517, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "Rank": 3, - "CommandName": "Set-PnPTermSet", - "Id": 1517 + "CommandName": "Set-PnPTermSet" }, { + "Id": 1518, "Command": "Set-PnPTheme", "Rank": 1, - "CommandName": "Set-PnPTheme", - "Id": 1518 + "CommandName": "Set-PnPTheme" }, { + "Id": 1519, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Rank": 2, - "CommandName": "Set-PnPTheme", - "Id": 1519 + "CommandName": "Set-PnPTheme" }, { + "Id": 1520, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "Rank": 3, - "CommandName": "Set-PnPTheme", - "Id": 1520 + "CommandName": "Set-PnPTheme" }, { + "Id": 1521, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "Rank": 4, - "CommandName": "Set-PnPTheme", - "Id": 1521 + "CommandName": "Set-PnPTheme" }, { + "Id": 1522, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "Rank": 1, - "CommandName": "Set-PnPTraceLog", - "Id": 1522 + "CommandName": "Set-PnPTraceLog" }, { + "Id": 1523, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "Rank": 2, - "CommandName": "Set-PnPTraceLog", - "Id": 1523 + "CommandName": "Set-PnPTraceLog" }, { + "Id": 1524, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "Rank": 3, - "CommandName": "Set-PnPTraceLog", - "Id": 1524 + "CommandName": "Set-PnPTraceLog" }, { + "Id": 1525, "Command": "Set-PnPTraceLog -Off", "Rank": 4, - "CommandName": "Set-PnPTraceLog", - "Id": 1525 + "CommandName": "Set-PnPTraceLog" }, { + "Id": 1526, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "Rank": 1, - "CommandName": "Set-PnPUserOneDriveQuota", - "Id": 1526 + "CommandName": "Set-PnPUserOneDriveQuota" }, { + "Id": 1527, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "Rank": 1, - "CommandName": "Set-PnPUserProfileProperty", - "Id": 1527 + "CommandName": "Set-PnPUserProfileProperty" }, { + "Id": 1528, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "Rank": 2, - "CommandName": "Set-PnPUserProfileProperty", - "Id": 1528 + "CommandName": "Set-PnPUserProfileProperty" }, { + "Id": 1529, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "Rank": 1, - "CommandName": "Set-PnPView", - "Id": 1529 + "CommandName": "Set-PnPView" }, { + "Id": 1530, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "Rank": 2, - "CommandName": "Set-PnPView", - "Id": 1530 + "CommandName": "Set-PnPView" }, { + "Id": 1531, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "Rank": 3, - "CommandName": "Set-PnPView", - "Id": 1531 + "CommandName": "Set-PnPView" }, { + "Id": 1532, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "Rank": 4, - "CommandName": "Set-PnPView", - "Id": 1532 + "CommandName": "Set-PnPView" }, { + "Id": 1533, "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", - "Id": 1533 + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { + "Id": 1534, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "Rank": 2, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1534 + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { + "Id": 1535, "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", - "Id": 1535 + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { + "Id": 1536, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "Rank": 4, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1536 + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { + "Id": 1537, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Rank": 1, - "CommandName": "Set-PnPWeb", - "Id": 1537 + "CommandName": "Set-PnPWeb" }, { + "Id": 1538, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Rank": 2, - "CommandName": "Set-PnPWeb", - "Id": 1538 + "CommandName": "Set-PnPWeb" }, { + "Id": 1539, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "Rank": 3, - "CommandName": "Set-PnPWeb", - "Id": 1539 + "CommandName": "Set-PnPWeb" }, { + "Id": 1540, "Command": "Set-PnPWeb -NoCrawl:$true", "Rank": 4, - "CommandName": "Set-PnPWeb", - "Id": 1540 + "CommandName": "Set-PnPWeb" }, { + "Id": 1541, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "Rank": 1, - "CommandName": "Set-PnPWebHeader", - "Id": 1541 + "CommandName": "Set-PnPWebHeader" }, { + "Id": 1542, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "Rank": 2, - "CommandName": "Set-PnPWebHeader", - "Id": 1542 + "CommandName": "Set-PnPWebHeader" }, { + "Id": 1543, "Command": "Set-PnPWebHeader -LogoAlignment Middle", "Rank": 3, - "CommandName": "Set-PnPWebHeader", - "Id": 1543 + "CommandName": "Set-PnPWebHeader" }, { + "Id": 1544, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "CommandName": "Set-PnPWebhookSubscription", - "Id": 1544 + "CommandName": "Set-PnPWebhookSubscription" }, { + "Id": 1545, "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", - "Id": 1545 + "CommandName": "Set-PnPWebhookSubscription" }, { + "Id": 1546, "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", - "Id": 1546 + "CommandName": "Set-PnPWebPartProperty" }, { + "Id": 1547, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 1, - "CommandName": "Set-PnPWebPermission", - "Id": 1547 + "CommandName": "Set-PnPWebPermission" }, { + "Id": 1548, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Rank": 2, - "CommandName": "Set-PnPWebPermission", - "Id": 1548 + "CommandName": "Set-PnPWebPermission" }, { + "Id": 1549, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 3, - "CommandName": "Set-PnPWebPermission", - "Id": 1549 + "CommandName": "Set-PnPWebPermission" }, { + "Id": 1550, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Rank": 4, - "CommandName": "Set-PnPWebPermission", - "Id": 1550 + "CommandName": "Set-PnPWebPermission" }, { + "Id": 1551, "Command": "Set-PnPWebTheme -Theme MyTheme", "Rank": 1, - "CommandName": "Set-PnPWebTheme", - "Id": 1551 + "CommandName": "Set-PnPWebTheme" }, { + "Id": 1552, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Rank": 2, - "CommandName": "Set-PnPWebTheme", - "Id": 1552 + "CommandName": "Set-PnPWebTheme" }, { + "Id": 1553, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "Rank": 1, - "CommandName": "Set-PnPWikiPageContent", - "Id": 1553 + "CommandName": "Set-PnPWikiPageContent" }, { + "Id": 1554, "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Rank": 1, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1554 + "CommandName": "Submit-PnPSearchQuery" }, { + "Id": 1555, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Rank": 2, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1555 + "CommandName": "Submit-PnPSearchQuery" }, { + "Id": 1556, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "Rank": 3, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1556 + "CommandName": "Submit-PnPSearchQuery" }, { + "Id": 1557, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "Rank": 4, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1557 + "CommandName": "Submit-PnPSearchQuery" }, { + "Id": 1558, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "Rank": 5, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1558 + "CommandName": "Submit-PnPSearchQuery" }, { + "Id": 1559, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "Rank": 1, - "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1559 + "CommandName": "Submit-PnPTeamsChannelMessage" }, { + "Id": 1560, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "Rank": 2, - "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1560 + "CommandName": "Submit-PnPTeamsChannelMessage" }, { + "Id": 1561, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Sync-PnPAppToTeams", - "Id": 1561 + "CommandName": "Sync-PnPAppToTeams" }, { + "Id": 1562, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Rank": 1, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1562 + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { + "Id": 1563, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "Rank": 2, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1563 + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { + "Id": 1564, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "Rank": 3, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1564 + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { + "Id": 1565, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Test-PnPListItemIsRecord", - "Id": 1565 + "CommandName": "Test-PnPListItemIsRecord" }, { + "Id": 1566, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "Rank": 1, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Id": 1566 + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { + "Id": 1567, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Test-PnPSite", - "Id": 1567 + "CommandName": "Test-PnPSite" }, { + "Id": 1568, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "CommandName": "Test-PnPSite", - "Id": 1568 + "CommandName": "Test-PnPSite" }, { + "Id": 1569, "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Rank": 1, - "CommandName": "Test-PnPTenantTemplate", - "Id": 1569 + "CommandName": "Test-PnPTenantTemplate" }, { + "Id": 1570, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Undo-PnPFileCheckedOut", - "Id": 1570 + "CommandName": "Undo-PnPFileCheckedOut" }, { + "Id": 1571, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Uninstall-PnPApp", - "Id": 1571 + "CommandName": "Uninstall-PnPApp" }, { + "Id": 1572, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Uninstall-PnPApp", - "Id": 1572 + "CommandName": "Uninstall-PnPApp" }, { + "Id": 1573, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Unpublish-PnPApp", - "Id": 1573 + "CommandName": "Unpublish-PnPApp" }, { + "Id": 1574, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Unpublish-PnPApp", - "Id": 1574 + "CommandName": "Unpublish-PnPApp" }, { + "Id": 1575, "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Rank": 1, - "CommandName": "Unpublish-PnPContentType", - "Id": 1575 + "CommandName": "Unpublish-PnPContentType" }, { + "Id": 1576, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1576 + "CommandName": "Unpublish-PnPSyntexModel" }, { + "Id": 1577, "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", - "Id": 1577 + "CommandName": "Unpublish-PnPSyntexModel" }, { + "Id": 1578, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "CommandName": "Unregister-PnPHubSite", - "Id": 1578 + "CommandName": "Unregister-PnPHubSite" }, { + "Id": 1579, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Update-PnPApp", - "Id": 1579 + "CommandName": "Update-PnPApp" }, { + "Id": 1580, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Update-PnPApp", - "Id": 1580 + "CommandName": "Update-PnPApp" }, { + "Id": 1581, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 1, - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1581 + "CommandName": "Update-PnPAvailableSiteClassification" }, { + "Id": 1582, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Rank": 2, - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1582 + "CommandName": "Update-PnPAvailableSiteClassification" }, { + "Id": 1583, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 3, - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1583 + "CommandName": "Update-PnPAvailableSiteClassification" }, { + "Id": 1584, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "Rank": 1, - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1584 + "CommandName": "Update-PnPSiteDesignFromWeb" }, { + "Id": 1585, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2, - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1585 + "CommandName": "Update-PnPSiteDesignFromWeb" }, { + "Id": 1586, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "Rank": 3, - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1586 + "CommandName": "Update-PnPSiteDesignFromWeb" }, { + "Id": 1587, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "Rank": 1, - "CommandName": "Update-PnPTeamsApp", - "Id": 1587 + "CommandName": "Update-PnPTeamsApp" }, { + "Id": 1588, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "CommandName": "Update-PnPTeamsUser", - "Id": 1588 + "CommandName": "Update-PnPTeamsUser" }, { + "Id": 1589, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "CommandName": "Update-PnPTeamsUser", - "Id": 1589 + "CommandName": "Update-PnPTeamsUser" }, { + "Id": 1590, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "Rank": 3, - "CommandName": "Update-PnPTeamsUser", - "Id": 1590 + "CommandName": "Update-PnPTeamsUser" }, { + "Id": 1591, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Rank": 1, - "CommandName": "Update-PnPUserType", - "Id": 1591 + "CommandName": "Update-PnPUserType" } ] diff --git a/version.txt b/version.txt index 27cec56b4..af7d25c48 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.104 \ No newline at end of file +2.2.105 \ No newline at end of file From 9e27e53f01cc9a48cd777ccf246b7609e9dbecc9 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sun, 22 Oct 2023 02:39:35 +0000 Subject: [PATCH 094/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9546 ++++++++--------- version.txt | 2 +- 3 files changed, 4775 insertions(+), 4775 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 2138e3447..8fca1f5ee 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -0461268895704da5de2015201ef850556c35f75e \ No newline at end of file +d5e7d32680115f3a1f09da01a063cf974c5c20a7 \ 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 c5374a21f..db5b34b61 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9548 +1,9548 @@ [ { - "Id": 1, - "Command": "Add-PnPAlert -List \"Demo List\"", "Rank": 1, - "CommandName": "Add-PnPAlert" + "CommandName": "Add-PnPAlert", + "Command": "Add-PnPAlert -List \"Demo List\"", + "Id": 1 }, { - "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" + "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 }, { - "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" + "CommandName": "Add-PnPAlert", + "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Id": 3 }, { - "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" + "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 }, { - "Id": 5, - "Command": "Add-PnPApp -Path ./myapp.sppkg", "Rank": 1, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg", + "Id": 5 }, { - "Id": 6, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Rank": 2, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "Id": 6 }, { - "Id": 7, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Rank": 3, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "Id": 7 }, { - "Id": 8, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Rank": 4, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "Id": 8 }, { - "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" + "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 }, { - "Id": 10, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Rank": 1, - "CommandName": "Add-PnPAvailableSiteClassification" + "CommandName": "Add-PnPAvailableSiteClassification", + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "Id": 10 }, { - "Id": 11, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Rank": 2, - "CommandName": "Add-PnPAvailableSiteClassification" + "CommandName": "Add-PnPAvailableSiteClassification", + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "Id": 11 }, { - "Id": 12, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 12 }, { - "Id": 13, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Id": 13 }, { - "Id": 14, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Id": 14 }, { - "Id": 15, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 15 }, { - "Id": 16, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Id": 16 }, { - "Id": 17, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Id": 17 }, { - "Id": 18, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "Rank": 1, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole" + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", + "Id": 18 }, { - "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" + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", + "Id": 19 }, { - "Id": 20, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "Rank": 1, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", + "Id": 20 }, { - "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" + "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 }, { - "Id": 22, - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "Rank": 3, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", + "Id": 22 }, { - "Id": 23, - "Command": "Add-PnPContentType -Name \"Project Item\"", "Rank": 4, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Command": "Add-PnPContentType -Name \"Project Item\"", + "Id": 23 }, { - "Id": 24, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "Rank": 5, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", + "Id": 24 }, { - "Id": 25, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Rank": 1, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "Id": 25 }, { - "Id": 26, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Rank": 2, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "Id": 26 }, { - "Id": 27, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Id": 27 }, { - "Id": 28, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Id": 28 }, { - "Id": 29, - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Rank": 1, - "CommandName": "Add-PnPContentTypeToList" + "CommandName": "Add-PnPContentTypeToList", + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "Id": 29 }, { - "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" + "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 }, { - "Id": 31, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "Rank": 1, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "Id": 31 }, { - "Id": 32, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "Rank": 2, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "Id": 32 }, { - "Id": 33, - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Rank": 1, - "CommandName": "Add-PnPDocumentSet" + "CommandName": "Add-PnPDocumentSet", + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "Id": 33 }, { - "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" + "CommandName": "Add-PnPEventReceiver", + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", + "Id": 34 }, { - "Id": 35, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "Rank": 2, - "CommandName": "Add-PnPEventReceiver" + "CommandName": "Add-PnPEventReceiver", + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", + "Id": 35 }, { - "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" + "CommandName": "Add-PnPEventReceiver", + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", + "Id": 36 }, { - "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" + "CommandName": "Add-PnPEventReceiver", + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", + "Id": 37 }, { - "Id": 38, - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Rank": 1, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "Id": 38 }, { - "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" + "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 }, { - "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" + "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 }, { - "Id": 41, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "Rank": 4, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "Id": 41 }, { - "Id": 42, - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "Rank": 5, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", + "Id": 42 }, { - "Id": 43, - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Rank": 6, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "Id": 43 }, { - "Id": 44, - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Add-PnPFieldToContentType" + "CommandName": "Add-PnPFieldToContentType", + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Id": 44 }, { - "Id": 45, - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Rank": 1, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "Id": 45 }, { - "Id": 46, - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Rank": 2, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "Id": 46 }, { - "Id": 47, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "Rank": 3, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "Id": 47 }, { - "Id": 48, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "Rank": 4, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", + "Id": 48 }, { - "Id": 49, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "Rank": 5, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", + "Id": 49 }, { - "Id": 50, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "Rank": 6, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", + "Id": 50 }, { - "Id": 51, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Rank": 7, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "Id": 51 }, { - "Id": 52, - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Rank": 8, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "Id": 52 }, { - "Id": 53, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 53 }, { - "Id": 54, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", + "Id": 54 }, { - "Id": 55, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", + "Id": 55 }, { - "Id": 56, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 56 }, { - "Id": 57, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "Rank": 2, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "Id": 57 }, { - "Id": 58, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "CommandName": "Add-PnPFileSharingInvite" + "CommandName": "Add-PnPFileSharingInvite", + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "Id": 58 }, { - "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" + "CommandName": "Add-PnPFileSharingInvite", + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "Id": 59 }, { - "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" + "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 }, { - "Id": 61, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Rank": 1, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "Id": 61 }, { - "Id": 62, - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "Rank": 2, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", + "Id": 62 }, { - "Id": 63, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "Rank": 3, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", + "Id": 63 }, { - "Id": 64, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "Rank": 4, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "Id": 64 }, { - "Id": 65, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Rank": 5, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "Id": 65 }, { - "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" + "CommandName": "Add-PnPFileUserSharingLink", + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 66 }, { - "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" + "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 }, { - "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" + "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 }, { - "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" + "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 }, { - "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" + "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 }, { - "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" + "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 }, { - "Id": 72, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Id": 72 }, { - "Id": 73, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Rank": 2, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "Id": 73 }, { - "Id": 74, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Rank": 3, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "Id": 74 }, { - "Id": 75, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 75 }, { - "Id": 76, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", + "Id": 76 }, { - "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" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", + "Id": 77 }, { - "Id": 78, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 78 }, { - "Id": 79, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Rank": 2, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "Id": 79 }, { - "Id": 80, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "CommandName": "Add-PnPFolderSharingInvite" + "CommandName": "Add-PnPFolderSharingInvite", + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "Id": 80 }, { - "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" + "CommandName": "Add-PnPFolderSharingInvite", + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "Id": 81 }, { - "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" + "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 }, { - "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" + "CommandName": "Add-PnPFolderUserSharingLink", + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 83 }, { - "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" + "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 }, { - "Id": 85, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "CommandName": "Add-PnPGroupMember" + "CommandName": "Add-PnPGroupMember", + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Id": 85 }, { - "Id": 86, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Rank": 2, - "CommandName": "Add-PnPGroupMember" + "CommandName": "Add-PnPGroupMember", + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "Id": 86 }, { - "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" + "CommandName": "Add-PnPHtmlPublishingPageLayout", + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Id": 87 }, { - "Id": 88, - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Rank": 1, - "CommandName": "Add-PnPHubSiteAssociation" + "CommandName": "Add-PnPHubSiteAssociation", + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", + "Id": 88 }, { - "Id": 89, - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "Rank": 1, - "CommandName": "Add-PnPHubToHubAssociation" + "CommandName": "Add-PnPHubToHubAssociation", + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "Id": 89 }, { - "Id": 90, - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "Rank": 2, - "CommandName": "Add-PnPHubToHubAssociation" + "CommandName": "Add-PnPHubToHubAssociation", + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", + "Id": 90 }, { - "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" + "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 }, { - "Id": 92, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "Rank": 1, - "CommandName": "Add-PnPJavaScriptBlock" + "CommandName": "Add-PnPJavaScriptBlock", + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "Id": 92 }, { - "Id": 93, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "Rank": 2, - "CommandName": "Add-PnPJavaScriptBlock" + "CommandName": "Add-PnPJavaScriptBlock", + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "Id": 93 }, { - "Id": 94, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "Rank": 1, - "CommandName": "Add-PnPJavaScriptLink" + "CommandName": "Add-PnPJavaScriptLink", + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", + "Id": 94 }, { - "Id": 95, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Rank": 2, - "CommandName": "Add-PnPJavaScriptLink" + "CommandName": "Add-PnPJavaScriptLink", + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "Id": 95 }, { - "Id": 96, - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "Rank": 1, - "CommandName": "Add-PnPListDesign" + "CommandName": "Add-PnPListDesign", + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "Id": 96 }, { - "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" + "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 }, { - "Id": 98, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Rank": 1, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "Id": 98 }, { - "Id": 99, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "Rank": 2, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "Id": 99 }, { - "Id": 100, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Rank": 3, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "Id": 100 }, { - "Id": 101, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 101 }, { - "Id": 102, - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 102 }, { - "Id": 103, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "Rank": 3, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "Id": 103 }, { - "Id": 104, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "Rank": 4, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", + "Id": 104 }, { - "Id": 105, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Rank": 5, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "Id": 105 }, { - "Id": 106, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "Rank": 1, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", + "Id": 106 }, { - "Id": 107, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "Rank": 2, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", + "Id": 107 }, { - "Id": 108, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Rank": 3, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "Id": 108 }, { - "Id": 109, - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Rank": 1, - "CommandName": "Add-PnPListItemComment" + "CommandName": "Add-PnPListItemComment", + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "Id": 109 }, { - "Id": 110, - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Rank": 1, - "CommandName": "Add-PnPMasterPage" + "CommandName": "Add-PnPMasterPage", + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "Id": 110 }, { - "Id": 111, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 111 }, { - "Id": 112, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Id": 112 }, { - "Id": 113, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 113 }, { - "Id": 114, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Id": 114 }, { - "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" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", + "Id": 115 }, { - "Id": 116, - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "Id": 116 }, { - "Id": 117, - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Rank": 3, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "Id": 117 }, { - "Id": 118, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "Rank": 1, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "Id": 118 }, { - "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" + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", + "Id": 119 }, { - "Id": 120, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "Rank": 3, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "Id": 120 }, { - "Id": 121, - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "Rank": 4, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", + "Id": 121 }, { - "Id": 122, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Rank": 5, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "Id": 122 }, { - "Id": 123, - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Rank": 6, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "Id": 123 }, { - "Id": 124, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Rank": 7, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "Id": 124 }, { - "Id": 125, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Rank": 8, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "Id": 125 }, { - "Id": 126, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "Rank": 1, - "CommandName": "Add-PnPOrgAssetsLibrary" + "CommandName": "Add-PnPOrgAssetsLibrary", + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", + "Id": 126 }, { - "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" + "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 }, { - "Id": 128, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Rank": 3, - "CommandName": "Add-PnPOrgAssetsLibrary" + "CommandName": "Add-PnPOrgAssetsLibrary", + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "Id": 128 }, { - "Id": 129, - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Rank": 1, - "CommandName": "Add-PnPOrgNewsSite" + "CommandName": "Add-PnPOrgNewsSite", + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "Id": 129 }, { - "Id": 130, - "Command": "Add-PnPPage -Name \"NewPage\"", "Rank": 1, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\"", + "Id": 130 }, { - "Id": 131, - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Rank": 2, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "Id": 131 }, { - "Id": 132, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Rank": 3, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "Id": 132 }, { - "Id": 133, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Rank": 4, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "Id": 133 }, { - "Id": 134, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Rank": 5, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "Id": 134 }, { - "Id": 135, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Rank": 6, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "Id": 135 }, { - "Id": 136, - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "Id": 136 }, { - "Id": 137, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Rank": 8, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "Id": 137 }, { - "Id": 138, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Id": 138 }, { - "Id": 139, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Id": 139 }, { - "Id": 140, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "Rank": 1, - "CommandName": "Add-PnPPageImageWebPart" + "CommandName": "Add-PnPPageImageWebPart", + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", + "Id": 140 }, { - "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" + "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 }, { - "Id": 142, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Rank": 1, - "CommandName": "Add-PnPPageSection" + "CommandName": "Add-PnPPageSection", + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "Id": 142 }, { - "Id": 143, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Rank": 2, - "CommandName": "Add-PnPPageSection" + "CommandName": "Add-PnPPageSection", + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "Id": 143 }, { - "Id": 144, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Rank": 1, - "CommandName": "Add-PnPPageTextPart" + "CommandName": "Add-PnPPageTextPart", + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "Id": 144 }, { - "Id": 145, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "Rank": 2, - "CommandName": "Add-PnPPageTextPart" + "CommandName": "Add-PnPPageTextPart", + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", + "Id": 145 }, { - "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" + "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 }, { - "Id": 147, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Rank": 1, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "Id": 147 }, { - "Id": 148, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Rank": 2, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "Id": 148 }, { - "Id": 149, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Rank": 3, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "Id": 149 }, { - "Id": 150, - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Rank": 1, - "CommandName": "Add-PnPPlannerBucket" + "CommandName": "Add-PnPPlannerBucket", + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "Id": 150 }, { - "Id": 151, - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Rank": 2, - "CommandName": "Add-PnPPlannerBucket" + "CommandName": "Add-PnPPlannerBucket", + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "Id": 151 }, { - "Id": 152, - "Command": "Add-PnPPlannerRoster", "Rank": 1, - "CommandName": "Add-PnPPlannerRoster" + "CommandName": "Add-PnPPlannerRoster", + "Command": "Add-PnPPlannerRoster", + "Id": 152 }, { - "Id": 153, - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPPlannerRosterMember" + "CommandName": "Add-PnPPlannerRosterMember", + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 153 }, { - "Id": 154, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 1, - "CommandName": "Add-PnPPlannerTask" + "CommandName": "Add-PnPPlannerTask", + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Id": 154 }, { - "Id": 155, - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 2, - "CommandName": "Add-PnPPlannerTask" + "CommandName": "Add-PnPPlannerTask", + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Id": 155 }, { - "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" + "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 }, { - "Id": 157, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "CommandName": "Add-PnPPublishingImageRendition" + "CommandName": "Add-PnPPublishingImageRendition", + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Id": 157 }, { - "Id": 158, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "Rank": 1, - "CommandName": "Add-PnPPublishingPage" + "CommandName": "Add-PnPPublishingPage", + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", + "Id": 158 }, { - "Id": 159, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Rank": 2, - "CommandName": "Add-PnPPublishingPage" + "CommandName": "Add-PnPPublishingPage", + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "Id": 159 }, { - "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" + "CommandName": "Add-PnPPublishingPageLayout", + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Id": 160 }, { - "Id": 161, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Rank": 1, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "Id": 161 }, { - "Id": 162, - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Rank": 2, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "Id": 162 }, { - "Id": 163, - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Rank": 3, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "Id": 163 }, { - "Id": 164, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 164 }, { - "Id": 165, - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 165 }, { - "Id": 166, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "Id": 166 }, { - "Id": 167, - "Command": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Command": "Add-PnPSiteCollectionAppCatalog", + "Id": 167 }, { - "Id": 168, - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Id": 168 }, { - "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" + "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 }, { - "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" + "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 }, { - "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" + "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 }, { - "Id": 172, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "Rank": 1, - "CommandName": "Add-PnPSiteDesignFromWeb" + "CommandName": "Add-PnPSiteDesignFromWeb", + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", + "Id": 172 }, { - "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" + "CommandName": "Add-PnPSiteDesignFromWeb", + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Id": 173 }, { - "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" + "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 }, { - "Id": 175, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "CommandName": "Add-PnPSiteDesignTask" + "CommandName": "Add-PnPSiteDesignTask", + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "Id": 175 }, { - "Id": 176, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 2, - "CommandName": "Add-PnPSiteDesignTask" + "CommandName": "Add-PnPSiteDesignTask", + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Id": 176 }, { - "Id": 177, - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Rank": 1, - "CommandName": "Add-PnPSiteScript" + "CommandName": "Add-PnPSiteScript", + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "Id": 177 }, { - "Id": 178, - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Rank": 1, - "CommandName": "Add-PnPSiteScriptPackage" + "CommandName": "Add-PnPSiteScriptPackage", + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", + "Id": 178 }, { - "Id": 179, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Rank": 1, - "CommandName": "Add-PnPSiteTemplate" + "CommandName": "Add-PnPSiteTemplate", + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "Id": 179 }, { - "Id": 180, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "Rank": 1, - "CommandName": "Add-PnPStoredCredential" + "CommandName": "Add-PnPStoredCredential", + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", + "Id": 180 }, { - "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" + "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 }, { - "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" + "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 }, { - "Id": 183, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Rank": 1, - "CommandName": "Add-PnPTaxonomyField" + "CommandName": "Add-PnPTaxonomyField", + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "Id": 183 }, { - "Id": 184, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Rank": 2, - "CommandName": "Add-PnPTaxonomyField" + "CommandName": "Add-PnPTaxonomyField", + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "Id": 184 }, { - "Id": 185, - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "Rank": 1, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "Id": 185 }, { - "Id": 186, - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Rank": 2, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "Id": 186 }, { - "Id": 187, - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "Rank": 3, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "Id": 187 }, { - "Id": 188, - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Rank": 4, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", + "Id": 188 }, { - "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" + "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 }, { - "Id": 190, - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Rank": 2, - "CommandName": "Add-PnpTeamsChannelUser" + "CommandName": "Add-PnpTeamsChannelUser", + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", + "Id": 190 }, { - "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" + "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 }, { - "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" + "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 }, { - "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" + "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 }, { - "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" + "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 }, { - "Id": 195, - "Command": "Add-PnPTeamsTeam", "Rank": 1, - "CommandName": "Add-PnPTeamsTeam" + "CommandName": "Add-PnPTeamsTeam", + "Command": "Add-PnPTeamsTeam", + "Id": 195 }, { - "Id": 196, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 196 }, { - "Id": 197, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Id": 197 }, { - "Id": 198, - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "Rank": 3, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "Id": 198 }, { - "Id": 199, - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Rank": 4, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "Id": 199 }, { - "Id": 200, - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "CommandName": "Add-PnPTenantCdnOrigin" + "CommandName": "Add-PnPTenantCdnOrigin", + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Id": 200 }, { - "Id": 201, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Rank": 1, - "CommandName": "Add-PnPTenantSequence" + "CommandName": "Add-PnPTenantSequence", + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "Id": 201 }, { - "Id": 202, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSite" + "CommandName": "Add-PnPTenantSequenceSite", + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "Id": 202 }, { - "Id": 203, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSubSite" + "CommandName": "Add-PnPTenantSequenceSubSite", + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "Id": 203 }, { - "Id": 204, - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Rank": 1, - "CommandName": "Add-PnPTermToTerm" + "CommandName": "Add-PnPTermToTerm", + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "Id": 204 }, { - "Id": 205, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "Rank": 1, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", + "Id": 205 }, { - "Id": 206, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "Rank": 2, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", + "Id": 206 }, { - "Id": 207, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "Rank": 3, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "Id": 207 }, { - "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" + "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 }, { - "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" + "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 }, { - "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" + "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 }, { - "Id": 211, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "CommandName": "Add-PnPWebhookSubscription" + "CommandName": "Add-PnPWebhookSubscription", + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Id": 211 }, { - "Id": 212, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Rank": 2, - "CommandName": "Add-PnPWebhookSubscription" + "CommandName": "Add-PnPWebhookSubscription", + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "Id": 212 }, { - "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" + "CommandName": "Add-PnPWebhookSubscription", + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", + "Id": 213 }, { - "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" + "CommandName": "Add-PnPWebPartToWebPartPage", + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", + "Id": 214 }, { - "Id": 215, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Rank": 2, - "CommandName": "Add-PnPWebPartToWebPartPage" + "CommandName": "Add-PnPWebPartToWebPartPage", + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", + "Id": 215 }, { - "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" + "CommandName": "Add-PnPWebPartToWikiPage", + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", + "Id": 216 }, { - "Id": 217, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Rank": 2, - "CommandName": "Add-PnPWebPartToWikiPage" + "CommandName": "Add-PnPWebPartToWikiPage", + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", + "Id": 217 }, { - "Id": 218, - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Rank": 1, - "CommandName": "Add-PnPWikiPage" + "CommandName": "Add-PnPWikiPage", + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "Id": 218 }, { - "Id": 219, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupMember" + "CommandName": "Clear-PnPAzureADGroupMember", + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "Id": 219 }, { - "Id": 220, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupOwner" + "CommandName": "Clear-PnPAzureADGroupOwner", + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "Id": 220 }, { - "Id": 221, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Rank": 1, - "CommandName": "Clear-PnPDefaultColumnValues" + "CommandName": "Clear-PnPDefaultColumnValues", + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "Id": 221 }, { - "Id": 222, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Rank": 2, - "CommandName": "Clear-PnPDefaultColumnValues" + "CommandName": "Clear-PnPDefaultColumnValues", + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "Id": 222 }, { - "Id": 223, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Clear-PnPListItemAsRecord" + "CommandName": "Clear-PnPListItemAsRecord", + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Id": 223 }, { - "Id": 224, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupMember" + "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "Id": 224 }, { - "Id": 225, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupOwner" + "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "Id": 225 }, { - "Id": 226, - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Id": 226 }, { - "Id": 227, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Rank": 2, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "Id": 227 }, { - "Id": 228, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Rank": 3, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "Id": 228 }, { - "Id": 229, - "Command": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, - "CommandName": "Clear-PnPTenantAppCatalogUrl" + "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Command": "Clear-PnPTenantAppCatalogUrl", + "Id": 229 }, { - "Id": 230, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 230 }, { - "Id": 231, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Id": 231 }, { - "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" + "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 }, { - "Id": 233, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Rank": 1, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "Id": 233 }, { - "Id": 234, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Rank": 2, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "Id": 234 }, { - "Id": 235, - "Command": "Convert-PnPSiteTemplate -Path template.xml", "Rank": 1, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Command": "Convert-PnPSiteTemplate -Path template.xml", + "Id": 235 }, { - "Id": 236, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Rank": 2, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "Id": 236 }, { - "Id": 237, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Rank": 3, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "Id": 237 }, { - "Id": 238, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Rank": 1, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "Id": 238 }, { - "Id": 239, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Rank": 2, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "Id": 239 }, { - "Id": 240, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Rank": 1, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "Id": 240 }, { - "Id": 241, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Rank": 2, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "Id": 241 }, { - "Id": 242, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Rank": 3, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "Id": 242 }, { - "Id": 243, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Rank": 4, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "Id": 243 }, { - "Id": 244, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 5, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 244 }, { - "Id": 245, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Rank": 6, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "Id": 245 }, { - "Id": 246, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Rank": 7, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "Id": 246 }, { - "Id": 247, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "Rank": 8, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "Id": 247 }, { - "Id": 248, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 9, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 248 }, { - "Id": 249, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Rank": 10, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "Id": 249 }, { - "Id": 250, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Rank": 11, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "Id": 250 }, { - "Id": 251, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 12, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 251 }, { - "Id": 252, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 13, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 252 }, { - "Id": 253, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Rank": 14, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "Id": 253 }, { - "Id": 254, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 254 }, { - "Id": 255, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Id": 255 }, { - "Id": 256, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Id": 256 }, { - "Id": 257, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 257 }, { - "Id": 258, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Id": 258 }, { - "Id": 259, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Id": 259 }, { - "Id": 260, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Id": 260 }, { - "Id": 261, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 261 }, { - "Id": 262, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Id": 262 }, { - "Id": 263, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Id": 263 }, { - "Id": 264, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 264 }, { - "Id": 265, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Id": 265 }, { - "Id": 266, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Id": 266 }, { - "Id": 267, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 267 }, { - "Id": 268, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Id": 268 }, { - "Id": 269, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Id": 269 }, { - "Id": 270, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Id": 270 }, { - "Id": 271, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 271 }, { - "Id": 272, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Id": 272 }, { - "Id": 273, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Id": 273 }, { - "Id": 274, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Rank": 1, - "CommandName": "Copy-PnPItemProxy" + "CommandName": "Copy-PnPItemProxy", + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "Id": 274 }, { - "Id": 275, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Rank": 1, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "Id": 275 }, { - "Id": 276, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Rank": 2, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", + "Id": 276 }, { - "Id": 277, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Rank": 3, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "Id": 277 }, { - "Id": 278, - "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" + "CommandName": "Copy-PnPList", + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", + "Id": 278 }, { - "Id": 279, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Rank": 1, - "CommandName": "Copy-PnPTeamsTeam" + "CommandName": "Copy-PnPTeamsTeam", + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "Id": 279 }, { - "Id": 280, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Rank": 2, - "CommandName": "Copy-PnPTeamsTeam" + "CommandName": "Copy-PnPTeamsTeam", + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "Id": 280 }, { - "Id": 281, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "Rank": 3, - "CommandName": "Copy-PnPTeamsTeam" + "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": 281 }, { - "Id": 282, - "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" + "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": 282 }, { - "Id": 283, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 283 }, { - "Id": 284, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Id": 284 }, { - "Id": 285, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Id": 285 }, { - "Id": 286, - "Command": "Disable-PnPPageScheduling", "Rank": 1, - "CommandName": "Disable-PnPPageScheduling" + "CommandName": "Disable-PnPPageScheduling", + "Command": "Disable-PnPPageScheduling", + "Id": 286 }, { - "Id": 287, - "Command": "Disable-PnPPowerShellTelemetry", "Rank": 1, - "CommandName": "Disable-PnPPowerShellTelemetry" + "CommandName": "Disable-PnPPowerShellTelemetry", + "Command": "Disable-PnPPowerShellTelemetry", + "Id": 287 }, { - "Id": 288, - "Command": "Disable-PnPPowerShellTelemetry -Force", "Rank": 2, - "CommandName": "Disable-PnPPowerShellTelemetry" + "CommandName": "Disable-PnPPowerShellTelemetry", + "Command": "Disable-PnPPowerShellTelemetry -Force", + "Id": 288 }, { - "Id": 289, - "Command": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite" + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Command": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 289 }, { - "Id": 290, - "Command": "Disable-PnPSiteClassification", "Rank": 1, - "CommandName": "Disable-PnPSiteClassification" + "CommandName": "Disable-PnPSiteClassification", + "Command": "Disable-PnPSiteClassification", + "Id": 290 }, { - "Id": 291, - "Command": "Disconnect-PnPOnline", "Rank": 1, - "CommandName": "Disconnect-PnPOnline" + "CommandName": "Disconnect-PnPOnline", + "Command": "Disconnect-PnPOnline", + "Id": 291 }, { - "Id": 292, - "Command": "Enable-PnPCommSite", "Rank": 1, - "CommandName": "Enable-PnPCommSite" + "CommandName": "Enable-PnPCommSite", + "Command": "Enable-PnPCommSite", + "Id": 292 }, { - "Id": 293, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Rank": 2, - "CommandName": "Enable-PnPCommSite" + "CommandName": "Enable-PnPCommSite", + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "Id": 293 }, { - "Id": 294, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 294 }, { - "Id": 295, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Id": 295 }, { - "Id": 296, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Id": 296 }, { - "Id": 297, - "Command": "Enable-PnPPageScheduling", "Rank": 1, - "CommandName": "Enable-PnPPageScheduling" + "CommandName": "Enable-PnPPageScheduling", + "Command": "Enable-PnPPageScheduling", + "Id": 297 }, { - "Id": 298, - "Command": "Enable-PnPPowerShellTelemetry", "Rank": 1, - "CommandName": "Enable-PnPPowerShellTelemetry" + "CommandName": "Enable-PnPPowerShellTelemetry", + "Command": "Enable-PnPPowerShellTelemetry", + "Id": 298 }, { - "Id": 299, - "Command": "Enable-PnPPowerShellTelemetry -Force", "Rank": 2, - "CommandName": "Enable-PnPPowerShellTelemetry" + "CommandName": "Enable-PnPPowerShellTelemetry", + "Command": "Enable-PnPPowerShellTelemetry -Force", + "Id": 299 }, { - "Id": 300, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Rank": 1, - "CommandName": "Enable-PnPSiteClassification" + "CommandName": "Enable-PnPSiteClassification", + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "Id": 300 }, { - "Id": 301, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 2, - "CommandName": "Enable-PnPSiteClassification" + "CommandName": "Enable-PnPSiteClassification", + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Id": 301 }, { - "Id": 302, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Rank": 1, - "CommandName": "Export-PnPListToSiteTemplate" + "CommandName": "Export-PnPListToSiteTemplate", + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "Id": 302 }, { - "Id": 303, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Rank": 2, - "CommandName": "Export-PnPListToSiteTemplate" + "CommandName": "Export-PnPListToSiteTemplate", + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "Id": 303 }, { - "Id": 304, - "Command": "Export-PnPPage -Identity Home.aspx", "Rank": 1, - "CommandName": "Export-PnPPage" + "CommandName": "Export-PnPPage", + "Command": "Export-PnPPage -Identity Home.aspx", + "Id": 304 }, { - "Id": 305, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Rank": 1, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "Id": 305 }, { - "Id": 306, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Rank": 2, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "Id": 306 }, { - "Id": 307, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Rank": 3, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "Id": 307 }, { - "Id": 308, - "Command": "Export-PnPTaxonomy", "Rank": 1, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy", + "Id": 308 }, { - "Id": 309, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Rank": 2, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "Id": 309 }, { - "Id": 310, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Rank": 3, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", + "Id": 310 }, { - "Id": 311, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Rank": 4, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "Id": 311 }, { - "Id": 312, - "Command": "Export-PnPTermGroupToXml", "Rank": 1, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Command": "Export-PnPTermGroupToXml", + "Id": 312 }, { - "Id": 313, - "Command": "Export-PnPTermGroupToXml -Out output.xml", "Rank": 2, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Command": "Export-PnPTermGroupToXml -Out output.xml", + "Id": 313 }, { - "Id": 314, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Rank": 3, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "Id": 314 }, { - "Id": 315, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "CommandName": "Export-PnPUserInfo" + "CommandName": "Export-PnPUserInfo", + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Id": 315 }, { - "Id": 316, - "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" + "CommandName": "Export-PnPUserInfo", + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", + "Id": 316 }, { - "Id": 317, - "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "CommandName": "Export-PnPUserProfile" + "CommandName": "Export-PnPUserProfile", + "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "Id": 317 }, { - "Id": 318, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2, - "CommandName": "Export-PnPUserProfile" + "CommandName": "Export-PnPUserProfile", + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "Id": 318 }, { - "Id": 319, - "Command": "Find-PnPFile -Match *.master", "Rank": 1, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Command": "Find-PnPFile -Match *.master", + "Id": 319 }, { - "Id": 320, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Rank": 2, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "Id": 320 }, { - "Id": 321, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Rank": 3, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "Id": 321 }, { - "Id": 322, - "Command": "Get-PnPAccessToken", "Rank": 1, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken", + "Id": 322 }, { - "Id": 323, - "Command": "Get-PnPAccessToken -Decoded", "Rank": 2, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -Decoded", + "Id": 323 }, { - "Id": 324, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Rank": 3, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "Id": 324 }, { - "Id": 325, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Rank": 4, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "Id": 325 }, { - "Id": 326, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Rank": 5, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "Id": 326 }, { - "Id": 327, - "Command": "Get-PnPAlert", "Rank": 1, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert", + "Id": 327 }, { - "Id": 328, - "Command": "Get-PnPAlert -List \"Demo List\"", "Rank": 2, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -List \"Demo List\"", + "Id": 328 }, { - "Id": 329, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Id": 329 }, { - "Id": 330, - "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Rank": 4, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "Id": 330 }, { - "Id": 331, - "Command": "Get-PnPAlert -AllUsers", "Rank": 5, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -AllUsers", + "Id": 331 }, { - "Id": 332, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Rank": 6, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "Id": 332 }, { - "Id": 333, - "Command": "Get-PnPApp", "Rank": 1, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Command": "Get-PnPApp", + "Id": 333 }, { - "Id": 334, - "Command": "Get-PnPApp -Scope Site", "Rank": 2, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Command": "Get-PnPApp -Scope Site", + "Id": 334 }, { - "Id": 335, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 3, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 335 }, { - "Id": 336, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Rank": 1, - "CommandName": "Get-PnPAppErrors" + "CommandName": "Get-PnPAppErrors", + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "Id": 336 }, { - "Id": 337, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Rank": 2, - "CommandName": "Get-PnPAppErrors" + "CommandName": "Get-PnPAppErrors", + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "Id": 337 }, { - "Id": 338, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Rank": 1, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "Id": 338 }, { - "Id": 339, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 2, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 339 }, { - "Id": 340, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Rank": 3, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "Id": 340 }, { - "Id": 341, - "Command": "Get-PnPApplicationCustomizer", "Rank": 1, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Command": "Get-PnPApplicationCustomizer", + "Id": 341 }, { - "Id": 342, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 342 }, { - "Id": 343, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Rank": 3, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "Id": 343 }, { - "Id": 344, - "Command": "Get-PnPAuditing", "Rank": 1, - "CommandName": "Get-PnPAuditing" + "CommandName": "Get-PnPAuditing", + "Command": "Get-PnPAuditing", + "Id": 344 }, { - "Id": 345, - "Command": "Get-PnPAuthenticationRealm", "Rank": 1, - "CommandName": "Get-PnPAuthenticationRealm" + "CommandName": "Get-PnPAuthenticationRealm", + "Command": "Get-PnPAuthenticationRealm", + "Id": 345 }, { - "Id": 346, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Rank": 2, - "CommandName": "Get-PnPAuthenticationRealm" + "CommandName": "Get-PnPAuthenticationRealm", + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "Id": 346 }, { - "Id": 347, - "Command": "Get-PnPAvailableLanguage", "Rank": 1, - "CommandName": "Get-PnPAvailableLanguage" + "CommandName": "Get-PnPAvailableLanguage", + "Command": "Get-PnPAvailableLanguage", + "Id": 347 }, { - "Id": 348, - "Command": "Get-PnPAvailableSensitivityLabel", "Rank": 1, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Command": "Get-PnPAvailableSensitivityLabel", + "Id": 348 }, { - "Id": 349, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Rank": 2, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "Id": 349 }, { - "Id": 350, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Rank": 3, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "Id": 350 }, { - "Id": 351, - "Command": "Get-PnPAvailableSiteClassification", "Rank": 1, - "CommandName": "Get-PnPAvailableSiteClassification" + "CommandName": "Get-PnPAvailableSiteClassification", + "Command": "Get-PnPAvailableSiteClassification", + "Id": 351 }, { - "Id": 352, - "Command": "Get-PnPAzureACSPrincipal", "Rank": 1, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal", + "Id": 352 }, { - "Id": 353, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Rank": 2, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "Id": 353 }, { - "Id": 354, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Rank": 3, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "Id": 354 }, { - "Id": 355, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Rank": 4, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "Id": 355 }, { - "Id": 356, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 356 }, { - "Id": 357, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "Id": 357 }, { - "Id": 358, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "Id": 358 }, { - "Id": 359, - "Command": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Command": "Get-PnPAzureADActivityReportSignIn", + "Id": 359 }, { - "Id": 360, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "Id": 360 }, { - "Id": 361, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "Id": 361 }, { - "Id": 362, - "Command": "Get-PnPAzureADApp", "Rank": 1, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp", + "Id": 362 }, { - "Id": 363, - "Command": "Get-PnPAzureADApp -Identity MyApp", "Rank": 2, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp -Identity MyApp", + "Id": 363 }, { - "Id": 364, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 364 }, { - "Id": 365, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Rank": 4, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "Id": 365 }, { - "Id": 366, - "Command": "Get-PnPAzureADAppPermission", "Rank": 1, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Command": "Get-PnPAzureADAppPermission", + "Id": 366 }, { - "Id": 367, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Rank": 2, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "Id": 367 }, { - "Id": 368, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 368 }, { - "Id": 369, - "Command": "Get-PnPAzureADAppSitePermission", "Rank": 1, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission", + "Id": 369 }, { - "Id": 370, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "Id": 370 }, { - "Id": 371, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Rank": 3, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "Id": 371 }, { - "Id": 372, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Rank": 4, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "Id": 372 }, { - "Id": 373, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Rank": 5, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "Id": 373 }, { - "Id": 374, - "Command": "Get-PnPAzureADGroup", "Rank": 1, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup", + "Id": 374 }, { - "Id": 375, - "Command": "Get-PnPAzureADGroup -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $groupId", + "Id": 375 }, { - "Id": 376, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Rank": 3, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "Id": 376 }, { - "Id": 377, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Rank": 4, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "Id": 377 }, { - "Id": 378, - "Command": "Get-PnPAzureADGroup -Identity $group", "Rank": 5, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $group", + "Id": 378 }, { - "Id": 379, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPAzureADGroupMember" + "CommandName": "Get-PnPAzureADGroupMember", + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "Id": 379 }, { - "Id": 380, - "Command": "Get-PnPAzureADGroupMember -Identity $group", "Rank": 2, - "CommandName": "Get-PnPAzureADGroupMember" + "CommandName": "Get-PnPAzureADGroupMember", + "Command": "Get-PnPAzureADGroupMember -Identity $group", + "Id": 380 }, { - "Id": 381, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPAzureADGroupOwner" + "CommandName": "Get-PnPAzureADGroupOwner", + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "Id": 381 }, { - "Id": 382, - "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Rank": 2, - "CommandName": "Get-PnPAzureADGroupOwner" + "CommandName": "Get-PnPAzureADGroupOwner", + "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "Id": 382 }, { - "Id": 383, - "Command": "Get-PnPAzureADServicePrincipal", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal", + "Id": 383 }, { - "Id": 384, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "Id": 384 }, { - "Id": 385, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Rank": 3, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "Id": 385 }, { - "Id": 386, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Rank": 4, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "Id": 386 }, { - "Id": 387, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "Id": 387 }, { - "Id": 388, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 388 }, { - "Id": 389, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Id": 389 }, { - "Id": 390, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 390 }, { - "Id": 391, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "Id": 391 }, { - "Id": 392, - "Command": "Get-PnPAzureADUser", "Rank": 1, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser", + "Id": 392 }, { - "Id": 393, - "Command": "Get-PnPAzureADUser -EndIndex 50", "Rank": 2, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -EndIndex 50", + "Id": 393 }, { - "Id": 394, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 3, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Id": 394 }, { - "Id": 395, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Rank": 4, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "Id": 395 }, { - "Id": 396, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Rank": 5, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "Id": 396 }, { - "Id": 397, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Rank": 6, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "Id": 397 }, { - "Id": 398, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Rank": 7, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "Id": 398 }, { - "Id": 399, - "Command": "Get-PnPAzureADUser -Delta", "Rank": 8, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Delta", + "Id": 399 }, { - "Id": 400, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Rank": 9, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "Id": 400 }, { - "Id": 401, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Rank": 10, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "Id": 401 }, { - "Id": 402, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Rank": 1, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "Id": 402 }, { - "Id": 403, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Rank": 2, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "Id": 403 }, { - "Id": 404, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Rank": 3, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "Id": 404 }, { - "Id": 405, - "Command": "Get-PnPBrowserIdleSignout", "Rank": 1, - "CommandName": "Get-PnPBrowserIdleSignout" + "CommandName": "Get-PnPBrowserIdleSignout", + "Command": "Get-PnPBrowserIdleSignout", + "Id": 405 }, { - "Id": 406, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Rank": 1, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "Id": 406 }, { - "Id": 407, - "Command": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Command": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 407 }, { - "Id": 408, - "Command": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 408 }, { - "Id": 409, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Rank": 2, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "Id": 409 }, { - "Id": 410, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Rank": 3, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "Id": 410 }, { - "Id": 411, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "Id": 411 }, { - "Id": 412, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Rank": 5, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "Id": 412 }, { - "Id": 413, - "Command": "Get-PnPChangeLog", "Rank": 1, - "CommandName": "Get-PnPChangeLog" + "CommandName": "Get-PnPChangeLog", + "Command": "Get-PnPChangeLog", + "Id": 413 }, { - "Id": 414, - "Command": "Get-PnPChangeLog -Nightly", "Rank": 2, - "CommandName": "Get-PnPChangeLog" + "CommandName": "Get-PnPChangeLog", + "Command": "Get-PnPChangeLog -Nightly", + "Id": 414 }, { - "Id": 415, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Rank": 1, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "Id": 415 }, { - "Id": 416, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Rank": 2, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "Id": 416 }, { - "Id": 417, - "Command": "Get-PnPContentType", "Rank": 1, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType", + "Id": 417 }, { - "Id": 418, - "Command": "Get-PnPContentType -InSiteHierarchy", "Rank": 2, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -InSiteHierarchy", + "Id": 418 }, { - "Id": 419, - "Command": "Get-PnPContentType -Identity \"Project Document\"", "Rank": 3, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -Identity \"Project Document\"", + "Id": 419 }, { - "Id": 420, - "Command": "Get-PnPContentType -List \"Documents\"", "Rank": 4, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -List \"Documents\"", + "Id": 420 }, { - "Id": 421, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Rank": 1, - "CommandName": "Get-PnPContentTypePublishingStatus" + "CommandName": "Get-PnPContentTypePublishingStatus", + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "Id": 421 }, { - "Id": 422, - "Command": "Get-PnPCustomAction", "Rank": 1, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Command": "Get-PnPCustomAction", + "Id": 422 }, { - "Id": 423, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 423 }, { - "Id": 424, - "Command": "Get-PnPCustomAction -Scope web", "Rank": 3, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Command": "Get-PnPCustomAction -Scope web", + "Id": 424 }, { - "Id": 425, - "Command": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Command": "Get-PnPDeletedMicrosoft365Group", + "Id": 425 }, { - "Id": 426, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 2, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 426 }, { - "Id": 427, - "Command": "Get-PnPDeletedTeam", "Rank": 1, - "CommandName": "Get-PnPDeletedTeam" + "CommandName": "Get-PnPDeletedTeam", + "Command": "Get-PnPDeletedTeam", + "Id": 427 }, { - "Id": 428, - "Command": "Get-PnPDiagnostics", "Rank": 1, - "CommandName": "Get-PnPDiagnostics" + "CommandName": "Get-PnPDiagnostics", + "Command": "Get-PnPDiagnostics", + "Id": 428 }, { - "Id": 429, - "Command": "Get-PnPDisableSpacesActivation", "Rank": 1, - "CommandName": "Get-PnPDisableSpacesActivation" + "CommandName": "Get-PnPDisableSpacesActivation", + "Command": "Get-PnPDisableSpacesActivation", + "Id": 429 }, { - "Id": 430, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Rank": 1, - "CommandName": "Get-PnPDocumentSetTemplate" + "CommandName": "Get-PnPDocumentSetTemplate", + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "Id": 430 }, { - "Id": 431, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Rank": 2, - "CommandName": "Get-PnPDocumentSetTemplate" + "CommandName": "Get-PnPDocumentSetTemplate", + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "Id": 431 }, { - "Id": 432, - "Command": "Get-PnPEventReceiver", "Rank": 1, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver", + "Id": 432 }, { - "Id": 433, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 433 }, { - "Id": 434, - "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Rank": 3, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "Id": 434 }, { - "Id": 435, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Rank": 4, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "Id": 435 }, { - "Id": 436, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 5, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 436 }, { - "Id": 437, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Rank": 6, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "Id": 437 }, { - "Id": 438, - "Command": "Get-PnPEventReceiver -Scope Site", "Rank": 7, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Scope Site", + "Id": 438 }, { - "Id": 439, - "Command": "Get-PnPEventReceiver -Scope Web", "Rank": 8, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Scope Web", + "Id": 439 }, { - "Id": 440, - "Command": "Get-PnPEventReceiver -Scope All", "Rank": 9, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Scope All", + "Id": 440 }, { - "Id": 441, - "Command": "Get-PnPException", "Rank": 1, - "CommandName": "Get-PnPException" + "CommandName": "Get-PnPException", + "Command": "Get-PnPException", + "Id": 441 }, { - "Id": 442, - "Command": "Get-PnPException -All", "Rank": 2, - "CommandName": "Get-PnPException" + "CommandName": "Get-PnPException", + "Command": "Get-PnPException -All", + "Id": 442 }, { - "Id": 443, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Rank": 1, - "CommandName": "Get-PnPExternalUser" + "CommandName": "Get-PnPExternalUser", + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "Id": 443 }, { - "Id": 444, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Rank": 2, - "CommandName": "Get-PnPExternalUser" + "CommandName": "Get-PnPExternalUser", + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "Id": 444 }, { - "Id": 445, - "Command": "Get-PnPFeature", "Rank": 1, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature", + "Id": 445 }, { - "Id": 446, - "Command": "Get-PnPFeature -Scope Site", "Rank": 2, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature -Scope Site", + "Id": 446 }, { - "Id": 447, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 3, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 447 }, { - "Id": 448, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Rank": 4, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "Id": 448 }, { - "Id": 449, - "Command": "Get-PnPField", "Rank": 1, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Command": "Get-PnPField", + "Id": 449 }, { - "Id": 450, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Id": 450 }, { - "Id": 451, - "Command": "Get-PnPField -Group \"Custom Columns\"", "Rank": 3, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Command": "Get-PnPField -Group \"Custom Columns\"", + "Id": 451 }, { - "Id": 452, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Rank": 1, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "Id": 452 }, { - "Id": 453, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Rank": 2, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "Id": 453 }, { - "Id": 454, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Rank": 3, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "Id": 454 }, { - "Id": 455, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Rank": 4, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "Id": 455 }, { - "Id": 456, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Rank": 5, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "Id": 456 }, { - "Id": 457, - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Rank": 6, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", + "Id": 457 }, { - "Id": 458, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Rank": 7, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "Id": 458 }, { - "Id": 459, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Get-PnPFileSharingLink" + "CommandName": "Get-PnPFileSharingLink", + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 459 }, { - "Id": 460, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Rank": 1, - "CommandName": "Get-PnPFileVersion" + "CommandName": "Get-PnPFileVersion", + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "Id": 460 }, { - "Id": 461, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Rank": 2, - "CommandName": "Get-PnPFileVersion" + "CommandName": "Get-PnPFileVersion", + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "Id": 461 }, { - "Id": 462, - "Command": "Get-PnPFlow -AsAdmin", "Rank": 1, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Command": "Get-PnPFlow -AsAdmin", + "Id": 462 }, { - "Id": 463, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "Rank": 2, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "Id": 463 }, { - "Id": 464, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Rank": 3, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "Id": 464 }, { - "Id": 465, - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Rank": 1, - "CommandName": "Get-PnPFlowOwner" + "CommandName": "Get-PnPFlowOwner", + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "Id": 465 }, { - "Id": 466, - "Command": "Get-PnPFolder", "Rank": 1, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder", + "Id": 466 }, { - "Id": 467, - "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Rank": 2, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "Id": 467 }, { - "Id": 468, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "Id": 468 }, { - "Id": 469, - "Command": "Get-PnPFolder -List \"Shared Documents\"", "Rank": 4, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder -List \"Shared Documents\"", + "Id": 469 }, { - "Id": 470, - "Command": "Get-PnPFolderFile", "Rank": 1, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile", + "Id": 470 }, { - "Id": 471, - "Command": "Get-PnPFolderFile -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -Recurse", + "Id": 471 }, { - "Id": 472, - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", + "Id": 472 }, { - "Id": 473, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Id": 473 }, { - "Id": 474, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 5, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Id": 474 }, { - "Id": 475, - "Command": "Get-PnPFolderFolder", "Rank": 1, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder", + "Id": 475 }, { - "Id": 476, - "Command": "Get-PnPFolderFolder -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -Recurse", + "Id": 476 }, { - "Id": 477, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", + "Id": 477 }, { - "Id": 478, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "Rank": 4, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "Id": 478 }, { - "Id": 479, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "Rank": 5, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "Id": 479 }, { - "Id": 480, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Id": 480 }, { - "Id": 481, - "Command": "Get-PnPFolderItem", "Rank": 1, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem", + "Id": 481 }, { - "Id": 482, - "Command": "Get-PnPFolderItem -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -Recurse", + "Id": 482 }, { - "Id": 483, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "Id": 483 }, { - "Id": 484, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Id": 484 }, { - "Id": 485, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Rank": 5, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "Id": 485 }, { - "Id": 486, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Id": 486 }, { - "Id": 487, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Get-PnPFolderSharingLink" + "CommandName": "Get-PnPFolderSharingLink", + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 487 }, { - "Id": 488, - "Command": "Get-PnPFolderStorageMetric", "Rank": 1, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Command": "Get-PnPFolderStorageMetric", + "Id": 488 }, { - "Id": 489, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Rank": 2, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "Id": 489 }, { - "Id": 490, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "Id": 490 }, { - "Id": 491, - "Command": "Get-PnPFooter", "Rank": 1, - "CommandName": "Get-PnPFooter" + "CommandName": "Get-PnPFooter", + "Command": "Get-PnPFooter", + "Id": 491 }, { - "Id": 492, - "Command": "Get-PnPGraphAccessToken", "Rank": 1, - "CommandName": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPGraphAccessToken", + "Command": "Get-PnPGraphAccessToken", + "Id": 492 }, { - "Id": 493, - "Command": "Get-PnPGraphAccessToken -Decoded", "Rank": 2, - "CommandName": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPGraphAccessToken", + "Command": "Get-PnPGraphAccessToken -Decoded", + "Id": 493 }, { - "Id": 494, - "Command": "Get-PnPGraphSubscription", "Rank": 1, - "CommandName": "Get-PnPGraphSubscription" + "CommandName": "Get-PnPGraphSubscription", + "Command": "Get-PnPGraphSubscription", + "Id": 494 }, { - "Id": 495, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 2, - "CommandName": "Get-PnPGraphSubscription" + "CommandName": "Get-PnPGraphSubscription", + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Id": 495 }, { - "Id": 496, - "Command": "Get-PnPGroup", "Rank": 1, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Command": "Get-PnPGroup", + "Id": 496 }, { - "Id": 497, - "Command": "Get-PnPGroup -Identity 'My Site Users'", "Rank": 2, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Command": "Get-PnPGroup -Identity 'My Site Users'", + "Id": 497 }, { - "Id": 498, - "Command": "Get-PnPGroup -AssociatedMemberGroup", "Rank": 3, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Command": "Get-PnPGroup -AssociatedMemberGroup", + "Id": 498 }, { - "Id": 499, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Rank": 1, - "CommandName": "Get-PnPGroupMember" + "CommandName": "Get-PnPGroupMember", + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "Id": 499 }, { - "Id": 500, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Rank": 2, - "CommandName": "Get-PnPGroupMember" + "CommandName": "Get-PnPGroupMember", + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "Id": 500 }, { - "Id": 501, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Rank": 1, - "CommandName": "Get-PnPGroupPermissions" + "CommandName": "Get-PnPGroupPermissions", + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "Id": 501 }, { - "Id": 502, - "Command": "Get-PnPHideDefaultThemes", "Rank": 1, - "CommandName": "Get-PnPHideDefaultThemes" + "CommandName": "Get-PnPHideDefaultThemes", + "Command": "Get-PnPHideDefaultThemes", + "Id": 502 }, { - "Id": 503, - "Command": "Get-PnPHomePage", "Rank": 1, - "CommandName": "Get-PnPHomePage" + "CommandName": "Get-PnPHomePage", + "Command": "Get-PnPHomePage", + "Id": 503 }, { - "Id": 504, - "Command": "Get-PnPHomeSite", "Rank": 1, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Command": "Get-PnPHomeSite", + "Id": 504 }, { - "Id": 505, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Rank": 2, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "Id": 505 }, { - "Id": 506, - "Command": "Get-PnPHomeSite -Detailed", "Rank": 3, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Command": "Get-PnPHomeSite -Detailed", + "Id": 506 }, { - "Id": 507, - "Command": "Get-PnPHubSite", "Rank": 1, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Command": "Get-PnPHubSite", + "Id": 507 }, { - "Id": 508, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Id": 508 }, { - "Id": 509, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Rank": 3, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "Id": 509 }, { - "Id": 510, - "Command": "Get-PnPHubSiteChild", "Rank": 1, - "CommandName": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSiteChild", + "Command": "Get-PnPHubSiteChild", + "Id": 510 }, { - "Id": 511, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "CommandName": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSiteChild", + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Id": 511 }, { - "Id": 512, - "Command": "Get-PnPInPlaceRecordsManagement", "Rank": 1, - "CommandName": "Get-PnPInPlaceRecordsManagement" + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Command": "Get-PnPInPlaceRecordsManagement", + "Id": 512 }, { - "Id": 513, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Rank": 1, - "CommandName": "Get-PnPIsSiteAliasAvailable" + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "Id": 513 }, { - "Id": 514, - "Command": "Get-PnPJavaScriptLink", "Rank": 1, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink", + "Id": 514 }, { - "Id": 515, - "Command": "Get-PnPJavaScriptLink -Scope All", "Rank": 2, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Scope All", + "Id": 515 }, { - "Id": 516, - "Command": "Get-PnPJavaScriptLink -Scope Web", "Rank": 3, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Scope Web", + "Id": 516 }, { - "Id": 517, - "Command": "Get-PnPJavaScriptLink -Scope Site", "Rank": 4, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Scope Site", + "Id": 517 }, { - "Id": 518, - "Command": "Get-PnPJavaScriptLink -Name Test", "Rank": 5, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Name Test", + "Id": 518 }, { - "Id": 519, - "Command": "Get-PnPKnowledgeHubSite", "Rank": 1, - "CommandName": "Get-PnPKnowledgeHubSite" + "CommandName": "Get-PnPKnowledgeHubSite", + "Command": "Get-PnPKnowledgeHubSite", + "Id": 519 }, { - "Id": 520, - "Command": "Get-PnPLabel", "Rank": 1, - "CommandName": "Get-PnPLabel" + "CommandName": "Get-PnPLabel", + "Command": "Get-PnPLabel", + "Id": 520 }, { - "Id": 521, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Rank": 2, - "CommandName": "Get-PnPLabel" + "CommandName": "Get-PnPLabel", + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "Id": 521 }, { - "Id": 522, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Rank": 1, - "CommandName": "Get-PnPLargeListOperationStatus" + "CommandName": "Get-PnPLargeListOperationStatus", + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "Id": 522 }, { - "Id": 523, - "Command": "Get-PnPList", "Rank": 1, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Command": "Get-PnPList", + "Id": 523 }, { - "Id": 524, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 2, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 524 }, { - "Id": 525, - "Command": "Get-PnPList -Identity Lists/Announcements", "Rank": 3, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Command": "Get-PnPList -Identity Lists/Announcements", + "Id": 525 }, { - "Id": 526, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Rank": 4, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "Id": 526 }, { - "Id": 527, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Rank": 5, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "Id": 527 }, { - "Id": 528, - "Command": "Get-PnPListDesign", "Rank": 1, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Command": "Get-PnPListDesign", + "Id": 528 }, { - "Id": 529, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 529 }, { - "Id": 530, - "Command": "Get-PnPListDesign -Identity ListEvent", "Rank": 3, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Command": "Get-PnPListDesign -Identity ListEvent", + "Id": 530 }, { - "Id": 531, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Rank": 1, - "CommandName": "Get-PnPListInformationRightsManagement" + "CommandName": "Get-PnPListInformationRightsManagement", + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "Id": 531 }, { - "Id": 532, - "Command": "Get-PnPListItem -List Tasks", "Rank": 1, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks", + "Id": 532 }, { - "Id": 533, - "Command": "Get-PnPListItem -List Tasks -Id 1", "Rank": 2, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Id 1", + "Id": 533 }, { - "Id": 534, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Rank": 3, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "Id": 534 }, { - "Id": 535, - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "Rank": 4, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "Id": 535 }, { - "Id": 536, - "Command": "Get-PnPListItem -List Tasks -Query \"\"", "Rank": 5, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "Id": 536 }, { - "Id": 537, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Rank": 6, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "Id": 537 }, { - "Id": 538, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Rank": 7, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", + "Id": 538 }, { - "Id": 539, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Rank": 8, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "Id": 539 }, { - "Id": 540, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Rank": 9, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "Id": 540 }, { - "Id": 541, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "Rank": 1, - "CommandName": "Get-PnPListItemAttachment" + "CommandName": "Get-PnPListItemAttachment", + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", + "Id": 541 }, { - "Id": 542, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "Rank": 2, - "CommandName": "Get-PnPListItemAttachment" + "CommandName": "Get-PnPListItemAttachment", + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "Id": 542 }, { - "Id": 543, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemComment" + "CommandName": "Get-PnPListItemComment", + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "Id": 543 }, { - "Id": 544, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemPermission" + "CommandName": "Get-PnPListItemPermission", + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "Id": 544 }, { - "Id": 545, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemVersion" + "CommandName": "Get-PnPListItemVersion", + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "Id": 545 }, { - "Id": 546, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Rank": 1, - "CommandName": "Get-PnPListPermissions" + "CommandName": "Get-PnPListPermissions", + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "Id": 546 }, { - "Id": 547, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Rank": 2, - "CommandName": "Get-PnPListPermissions" + "CommandName": "Get-PnPListPermissions", + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "Id": 547 }, { - "Id": 548, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Rank": 1, - "CommandName": "Get-PnPListRecordDeclaration" + "CommandName": "Get-PnPListRecordDeclaration", + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "Id": 548 }, { - "Id": 549, - "Command": "Get-PnPMasterPage", "Rank": 1, - "CommandName": "Get-PnPMasterPage" + "CommandName": "Get-PnPMasterPage", + "Command": "Get-PnPMasterPage", + "Id": 549 }, { - "Id": 550, - "Command": "Get-PnPMessageCenterAnnouncement", "Rank": 1, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Command": "Get-PnPMessageCenterAnnouncement", + "Id": 550 }, { - "Id": 551, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Rank": 2, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "Id": 551 }, { - "Id": 552, - "Command": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Command": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 552 }, { - "Id": 553, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "Id": 553 }, { - "Id": 554, - "Command": "Get-PnPMicrosoft365Group", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group", + "Id": 554 }, { - "Id": 555, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "Id": 555 }, { - "Id": 556, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "Id": 556 }, { - "Id": 557, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Rank": 4, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "Id": 557 }, { - "Id": 558, - "Command": "Get-PnPMicrosoft365Group -Identity $group", "Rank": 5, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $group", + "Id": 558 }, { - "Id": 559, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Rank": 6, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "Id": 559 }, { - "Id": 560, - "Command": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Command": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 560 }, { - "Id": 561, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "Id": 561 }, { - "Id": 562, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 562 }, { - "Id": 563, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "Id": 563 }, { - "Id": 564, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "Id": 564 }, { - "Id": 565, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "Id": 565 }, { - "Id": 566, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "Id": 566 }, { - "Id": 567, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "Id": 567 }, { - "Id": 568, - "Command": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Command": "Get-PnPMicrosoft365GroupSettings", + "Id": 568 }, { - "Id": 569, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "Id": 569 }, { - "Id": 570, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 570 }, { - "Id": 571, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "Id": 571 }, { - "Id": 572, - "Command": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Command": "Get-PnPMicrosoft365GroupTeam", + "Id": 572 }, { - "Id": 573, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "Id": 573 }, { - "Id": 574, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 574 }, { - "Id": 575, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 575 }, { - "Id": 576, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "Id": 576 }, { - "Id": 577, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 577 }, { - "Id": 578, - "Command": "Get-PnPNavigationNode", "Rank": 1, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Command": "Get-PnPNavigationNode", + "Id": 578 }, { - "Id": 579, - "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Rank": 2, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "Id": 579 }, { - "Id": 580, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Rank": 3, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "Id": 580 }, { - "Id": 581, - "Command": "Get-PnPOrgAssetsLibrary", "Rank": 1, - "CommandName": "Get-PnPOrgAssetsLibrary" + "CommandName": "Get-PnPOrgAssetsLibrary", + "Command": "Get-PnPOrgAssetsLibrary", + "Id": 581 }, { - "Id": 582, - "Command": "Get-PnPOrgNewsSite", "Rank": 1, - "CommandName": "Get-PnPOrgNewsSite" + "CommandName": "Get-PnPOrgNewsSite", + "Command": "Get-PnPOrgNewsSite", + "Id": 582 }, { - "Id": 583, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Rank": 1, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "Id": 583 }, { - "Id": 584, - "Command": "Get-PnPPage \"MyPage\"", "Rank": 2, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage \"MyPage\"", + "Id": 584 }, { - "Id": 585, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Rank": 3, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "Id": 585 }, { - "Id": 586, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Rank": 4, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "Id": 586 }, { - "Id": 587, - "Command": "Get-PnPPageComponent -Page Home", "Rank": 1, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Command": "Get-PnPPageComponent -Page Home", + "Id": 587 }, { - "Id": 588, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 588 }, { - "Id": 589, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Rank": 3, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "Id": 589 }, { - "Id": 590, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "CommandName": "Get-PnPPlannerBucket" + "CommandName": "Get-PnPPlannerBucket", + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "Id": 590 }, { - "Id": 591, - "Command": "Get-PnPPlannerConfiguration", "Rank": 1, - "CommandName": "Get-PnPPlannerConfiguration" + "CommandName": "Get-PnPPlannerConfiguration", + "Command": "Get-PnPPlannerConfiguration", + "Id": 591 }, { - "Id": 592, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Rank": 1, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "Id": 592 }, { - "Id": 593, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Rank": 2, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "Id": 593 }, { - "Id": 594, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Rank": 3, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "Id": 594 }, { - "Id": 595, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "CommandName": "Get-PnPPlannerRosterMember" + "CommandName": "Get-PnPPlannerRosterMember", + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Id": 595 }, { - "Id": 596, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Rank": 1, - "CommandName": "Get-PnPPlannerRosterPlan" + "CommandName": "Get-PnPPlannerRosterPlan", + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "Id": 596 }, { - "Id": 597, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 2, - "CommandName": "Get-PnPPlannerRosterPlan" + "CommandName": "Get-PnPPlannerRosterPlan", + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 597 }, { - "Id": 598, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "Id": 598 }, { - "Id": 599, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 2, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Id": 599 }, { - "Id": 600, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 3, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Id": 600 }, { - "Id": 601, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Get-PnPPlannerUserPolicy" + "CommandName": "Get-PnPPlannerUserPolicy", + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Id": 601 }, { - "Id": 602, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "Rank": 1, - "CommandName": "Get-PnPPowerPlatformConnector" + "CommandName": "Get-PnPPowerPlatformConnector", + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "Id": 602 }, { - "Id": 603, - "Command": "Get-PnPPowerPlatformEnvironment", "Rank": 1, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Command": "Get-PnPPowerPlatformEnvironment", + "Id": 603 }, { - "Id": 604, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Rank": 2, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "Id": 604 }, { - "Id": 605, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Rank": 3, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "Id": 605 }, { - "Id": 606, - "Command": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, - "CommandName": "Get-PnPPowerShellTelemetryEnabled" + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Command": "Get-PnPPowerShellTelemetryEnabled", + "Id": 606 }, { - "Id": 607, - "Command": "Get-PnPPropertyBag", "Rank": 1, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag", + "Id": 607 }, { - "Id": 608, - "Command": "Get-PnPPropertyBag -Key MyKey", "Rank": 2, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Key MyKey", + "Id": 608 }, { - "Id": 609, - "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Rank": 3, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "Id": 609 }, { - "Id": 610, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Rank": 4, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "Id": 610 }, { - "Id": 611, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Rank": 5, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "Id": 611 }, { - "Id": 612, - "Command": "Get-PnPPublishingImageRendition", "Rank": 1, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Command": "Get-PnPPublishingImageRendition", + "Id": 612 }, { - "Id": 613, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Rank": 2, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "Id": 613 }, { - "Id": 614, - "Command": "Get-PnPPublishingImageRendition -Identity 2", "Rank": 3, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Command": "Get-PnPPublishingImageRendition -Identity 2", + "Id": 614 }, { - "Id": 615, - "Command": "Get-PnPRecycleBinItem", "Rank": 1, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem", + "Id": 615 }, { - "Id": 616, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Rank": 2, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "Id": 616 }, { - "Id": 617, - "Command": "Get-PnPRecycleBinItem -FirstStage", "Rank": 3, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -FirstStage", + "Id": 617 }, { - "Id": 618, - "Command": "Get-PnPRecycleBinItem -SecondStage", "Rank": 4, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -SecondStage", + "Id": 618 }, { - "Id": 619, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Rank": 5, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "Id": 619 }, { - "Id": 620, - "Command": "Get-PnPRequestAccessEmails", "Rank": 1, - "CommandName": "Get-PnPRequestAccessEmails" + "CommandName": "Get-PnPRequestAccessEmails", + "Command": "Get-PnPRequestAccessEmails", + "Id": 620 }, { - "Id": 621, - "Command": "Get-PnPRetentionLabel", "Rank": 1, - "CommandName": "Get-PnPRetentionLabel" + "CommandName": "Get-PnPRetentionLabel", + "Command": "Get-PnPRetentionLabel", + "Id": 621 }, { - "Id": 622, - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "Rank": 2, - "CommandName": "Get-PnPRetentionLabel" + "CommandName": "Get-PnPRetentionLabel", + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "Id": 622 }, { - "Id": 623, - "Command": "Get-PnPRoleDefinition", "Rank": 1, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Command": "Get-PnPRoleDefinition", + "Id": 623 }, { - "Id": 624, - "Command": "Get-PnPRoleDefinition -Identity Read", "Rank": 2, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Command": "Get-PnPRoleDefinition -Identity Read", + "Id": 624 }, { - "Id": 625, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Rank": 3, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "Id": 625 }, { - "Id": 626, - "Command": "Get-PnPSearchConfiguration", "Rank": 1, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration", + "Id": 626 }, { - "Id": 627, - "Command": "Get-PnPSearchConfiguration -Scope Site", "Rank": 2, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site", + "Id": 627 }, { - "Id": 628, - "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Rank": 3, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "Id": 628 }, { - "Id": 629, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 629 }, { - "Id": 630, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Rank": 5, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "Id": 630 }, { - "Id": 631, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Rank": 6, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "Id": 631 }, { - "Id": 632, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Rank": 7, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "Id": 632 }, { - "Id": 633, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Rank": 8, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "Id": 633 }, { - "Id": 634, - "Command": "Get-PnPSearchCrawlLog", "Rank": 1, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog", + "Id": 634 }, { - "Id": 635, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Rank": 2, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "Id": 635 }, { - "Id": 636, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Rank": 3, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "Id": 636 }, { - "Id": 637, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Rank": 4, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "Id": 637 }, { - "Id": 638, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Rank": 5, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "Id": 638 }, { - "Id": 639, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Rank": 6, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "Id": 639 }, { - "Id": 640, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Rank": 7, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "Id": 640 }, { - "Id": 641, - "Command": "Get-PnPSearchSettings", "Rank": 1, - "CommandName": "Get-PnPSearchSettings" + "CommandName": "Get-PnPSearchSettings", + "Command": "Get-PnPSearchSettings", + "Id": 641 }, { - "Id": 642, - "Command": "Get-PnPServiceCurrentHealth", "Rank": 1, - "CommandName": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPServiceCurrentHealth", + "Command": "Get-PnPServiceCurrentHealth", + "Id": 642 }, { - "Id": 643, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Rank": 2, - "CommandName": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPServiceCurrentHealth", + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "Id": 643 }, { - "Id": 644, - "Command": "Get-PnPServiceHealthIssue", "Rank": 1, - "CommandName": "Get-PnPServiceHealthIssue" + "CommandName": "Get-PnPServiceHealthIssue", + "Command": "Get-PnPServiceHealthIssue", + "Id": 644 }, { - "Id": 645, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Rank": 2, - "CommandName": "Get-PnPServiceHealthIssue" + "CommandName": "Get-PnPServiceHealthIssue", + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "Id": 645 }, { - "Id": 646, - "Command": "Get-PnPSharePointAddIn", "Rank": 1, - "CommandName": "Get-PnPSharePointAddIn" + "CommandName": "Get-PnPSharePointAddIn", + "Command": "Get-PnPSharePointAddIn", + "Id": 646 }, { - "Id": 647, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Rank": 2, - "CommandName": "Get-PnPSharePointAddIn" + "CommandName": "Get-PnPSharePointAddIn", + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "Id": 647 }, { - "Id": 648, - "Command": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, - "CommandName": "Get-PnPSharingForNonOwnersOfSite" + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Command": "Get-PnPSharingForNonOwnersOfSite", + "Id": 648 }, { - "Id": 649, - "Command": "Get-PnPSite", "Rank": 1, - "CommandName": "Get-PnPSite" + "CommandName": "Get-PnPSite", + "Command": "Get-PnPSite", + "Id": 649 }, { - "Id": 650, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Rank": 2, - "CommandName": "Get-PnPSite" + "CommandName": "Get-PnPSite", + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "Id": 650 }, { - "Id": 651, - "Command": "Get-PnPSiteClosure", "Rank": 1, - "CommandName": "Get-PnPSiteClosure" + "CommandName": "Get-PnPSiteClosure", + "Command": "Get-PnPSiteClosure", + "Id": 651 }, { - "Id": 652, - "Command": "Get-PnPSiteCollectionAdmin", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAdmin" + "CommandName": "Get-PnPSiteCollectionAdmin", + "Command": "Get-PnPSiteCollectionAdmin", + "Id": 652 }, { - "Id": 653, - "Command": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Command": "Get-PnPSiteCollectionAppCatalog", + "Id": 653 }, { - "Id": 654, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Rank": 2, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "Id": 654 }, { - "Id": 655, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Rank": 3, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "Id": 655 }, { - "Id": 656, - "Command": "Get-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionTermStore" + "CommandName": "Get-PnPSiteCollectionTermStore", + "Command": "Get-PnPSiteCollectionTermStore", + "Id": 656 }, { - "Id": 657, - "Command": "Get-PnPSiteDesign", "Rank": 1, - "CommandName": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteDesign", + "Command": "Get-PnPSiteDesign", + "Id": 657 }, { - "Id": 658, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteDesign", + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 658 }, { - "Id": 659, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Get-PnPSiteDesignRights" + "CommandName": "Get-PnPSiteDesignRights", + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 659 }, { - "Id": 660, - "Command": "Get-PnPSiteDesignRun", "Rank": 1, - "CommandName": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesignRun", + "Command": "Get-PnPSiteDesignRun", + "Id": 660 }, { - "Id": 661, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Rank": 2, - "CommandName": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesignRun", + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "Id": 661 }, { - "Id": 662, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "Id": 662 }, { - "Id": 663, - "Command": "Get-PnPSiteDesignTask", "Rank": 2, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Command": "Get-PnPSiteDesignTask", + "Id": 663 }, { - "Id": 664, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 3, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Id": 664 }, { - "Id": 665, - "Command": "Get-PnPSiteGroup", "Rank": 1, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup", + "Id": 665 }, { - "Id": 666, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 2, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Id": 666 }, { - "Id": 667, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Rank": 3, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "Id": 667 }, { - "Id": 668, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 4, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Id": 668 }, { - "Id": 669, - "Command": "Get-PnPSitePolicy", "Rank": 1, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Command": "Get-PnPSitePolicy", + "Id": 669 }, { - "Id": 670, - "Command": "Get-PnPSitePolicy -AllAvailable", "Rank": 2, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Command": "Get-PnPSitePolicy -AllAvailable", + "Id": 670 }, { - "Id": 671, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 3, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "Id": 671 }, { - "Id": 672, - "Command": "Get-PnPSiteScript", "Rank": 1, - "CommandName": "Get-PnPSiteScript" + "CommandName": "Get-PnPSiteScript", + "Command": "Get-PnPSiteScript", + "Id": 672 }, { - "Id": 673, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPSiteScript" + "CommandName": "Get-PnPSiteScript", + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 673 }, { - "Id": 674, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "Id": 674 }, { - "Id": 675, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "Id": 675 }, { - "Id": 676, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "Id": 676 }, { - "Id": 677, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "Id": 677 }, { - "Id": 678, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "Id": 678 }, { - "Id": 679, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "Id": 679 }, { - "Id": 680, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Rank": 4, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "Id": 680 }, { - "Id": 681, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Rank": 5, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "Id": 681 }, { - "Id": 682, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Rank": 6, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "Id": 682 }, { - "Id": 683, - "Command": "Get-PnPSiteSearchQueryResults", "Rank": 1, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults", + "Id": 683 }, { - "Id": 684, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Rank": 2, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "Id": 684 }, { - "Id": 685, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Rank": 3, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "Id": 685 }, { - "Id": 686, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Rank": 4, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "Id": 686 }, { - "Id": 687, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Rank": 5, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "Id": 687 }, { - "Id": 688, - "Command": "Get-PnPSiteSearchQueryResults -All", "Rank": 6, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -All", + "Id": 688 }, { - "Id": 689, - "Command": "Get-PnPSiteSensitivityLabel", "Rank": 1, - "CommandName": "Get-PnPSiteSensitivityLabel" + "CommandName": "Get-PnPSiteSensitivityLabel", + "Command": "Get-PnPSiteSensitivityLabel", + "Id": 689 }, { - "Id": 690, - "Command": "Get-PnPSiteTemplate -Out template.pnp", "Rank": 1, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp", + "Id": 690 }, { - "Id": 691, - "Command": "Get-PnPSiteTemplate -Out template.xml", "Rank": 2, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.xml", + "Id": 691 }, { - "Id": 692, - "Command": "Get-PnPSiteTemplate -Out template.md", "Rank": 3, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.md", + "Id": 692 }, { - "Id": 693, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Rank": 4, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "Id": 693 }, { - "Id": 694, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Rank": 5, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "Id": 694 }, { - "Id": 695, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Rank": 6, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "Id": 695 }, { - "Id": 696, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Rank": 7, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "Id": 696 }, { - "Id": 697, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Rank": 8, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "Id": 697 }, { - "Id": 698, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Rank": 9, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "Id": 698 }, { - "Id": 699, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Rank": 10, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "Id": 699 }, { - "Id": 700, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Rank": 11, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "Id": 700 }, { - "Id": 701, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Rank": 12, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "Id": 701 }, { - "Id": 702, - "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" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", + "Id": 702 }, { - "Id": 703, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Rank": 14, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "Id": 703 }, { - "Id": 704, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "CommandName": "Get-PnPSiteUserInvitations" + "CommandName": "Get-PnPSiteUserInvitations", + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Id": 704 }, { - "Id": 705, - "Command": "Get-PnPSiteVersionPolicy", "Rank": 1, - "CommandName": "Get-PnPSiteVersionPolicy" + "CommandName": "Get-PnPSiteVersionPolicy", + "Command": "Get-PnPSiteVersionPolicy", + "Id": 705 }, { - "Id": 706, - "Command": "Get-PnPStorageEntity", "Rank": 1, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity", + "Id": 706 }, { - "Id": 707, - "Command": "Get-PnPStorageEntity -Key MyKey", "Rank": 2, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity -Key MyKey", + "Id": 707 }, { - "Id": 708, - "Command": "Get-PnPStorageEntity -Scope Site", "Rank": 3, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity -Scope Site", + "Id": 708 }, { - "Id": 709, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 4, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "Id": 709 }, { - "Id": 710, - "Command": "Get-PnPStoredCredential -Name O365", "Rank": 1, - "CommandName": "Get-PnPStoredCredential" + "CommandName": "Get-PnPStoredCredential", + "Command": "Get-PnPStoredCredential -Name O365", + "Id": 710 }, { - "Id": 711, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState" + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 711 }, { - "Id": 712, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheWebState" + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 712 }, { - "Id": 713, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest" + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "Id": 713 }, { - "Id": 714, - "Command": "Get-PnPSubWeb", "Rank": 1, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb", + "Id": 714 }, { - "Id": 715, - "Command": "Get-PnPSubWeb -Recurse", "Rank": 2, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Recurse", + "Id": 715 }, { - "Id": 716, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Rank": 3, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "Id": 716 }, { - "Id": 717, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Rank": 4, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "Id": 717 }, { - "Id": 718, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Rank": 5, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "Id": 718 }, { - "Id": 719, - "Command": "Get-PnPSyntexModel", "Rank": 1, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Command": "Get-PnPSyntexModel", + "Id": 719 }, { - "Id": 720, - "Command": "Get-PnPSyntexModel -Identity 1", "Rank": 2, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Command": "Get-PnPSyntexModel -Identity 1", + "Id": 720 }, { - "Id": 721, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Rank": 3, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "Id": 721 }, { - "Id": 722, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Rank": 1, - "CommandName": "Get-PnPSyntexModelPublication" + "CommandName": "Get-PnPSyntexModelPublication", + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "Id": 722 }, { - "Id": 723, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Rank": 1, - "CommandName": "Get-PnPTaxonomyItem" + "CommandName": "Get-PnPTaxonomyItem", + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "Id": 723 }, { - "Id": 724, - "Command": "Get-PnPTeamsApp", "Rank": 1, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Command": "Get-PnPTeamsApp", + "Id": 724 }, { - "Id": 725, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Rank": 2, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "Id": 725 }, { - "Id": 726, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Rank": 3, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "Id": 726 }, { - "Id": 727, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Rank": 1, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "Id": 727 }, { - "Id": 728, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Rank": 2, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "Id": 728 }, { - "Id": 729, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 3, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Id": 729 }, { - "Id": 730, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "Id": 730 }, { - "Id": 731, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Id": 731 }, { - "Id": 732, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessage" + "CommandName": "Get-PnPTeamsChannelMessage", + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "Id": 732 }, { - "Id": 733, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessage" + "CommandName": "Get-PnPTeamsChannelMessage", + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "Id": 733 }, { - "Id": 734, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "Id": 734 }, { - "Id": 735, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "Id": 735 }, { - "Id": 736, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "Id": 736 }, { - "Id": 737, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "Id": 737 }, { - "Id": 738, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Rank": 3, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", + "Id": 738 }, { - "Id": 739, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Id": 739 }, { - "Id": 740, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Rank": 1, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "Id": 740 }, { - "Id": 741, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Rank": 2, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "Id": 741 }, { - "Id": 742, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "Rank": 1, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "Id": 742 }, { - "Id": 743, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "Id": 743 }, { - "Id": 744, - "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" + "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", + "Id": 744 }, { - "Id": 745, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Rank": 4, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "Id": 745 }, { - "Id": 746, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Rank": 5, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "Id": 746 }, { - "Id": 747, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "CommandName": "Get-PnPTeamsTag" + "CommandName": "Get-PnPTeamsTag", + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Id": 747 }, { - "Id": 748, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTag" + "CommandName": "Get-PnPTeamsTag", + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Id": 748 }, { - "Id": 749, - "Command": "Get-PnPTeamsTeam", "Rank": 1, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam", + "Id": 749 }, { - "Id": 750, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "Id": 750 }, { - "Id": 751, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Rank": 3, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "Id": 751 }, { - "Id": 752, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Rank": 4, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "Id": 752 }, { - "Id": 753, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "Id": 753 }, { - "Id": 754, - "Command": "Get-PnPTeamsUser -Team MyTeam", "Rank": 1, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam", + "Id": 754 }, { - "Id": 755, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Rank": 2, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "Id": 755 }, { - "Id": 756, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Rank": 3, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "Id": 756 }, { - "Id": 757, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Rank": 4, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "Id": 757 }, { - "Id": 758, - "Command": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, - "CommandName": "Get-PnPTemporarilyDisableAppBar" + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Command": "Get-PnPTemporarilyDisableAppBar", + "Id": 758 }, { - "Id": 759, - "Command": "Get-PnPTenant", "Rank": 1, - "CommandName": "Get-PnPTenant" + "CommandName": "Get-PnPTenant", + "Command": "Get-PnPTenant", + "Id": 759 }, { - "Id": 760, - "Command": "Get-PnPTenantAppCatalogUrl", "Rank": 1, - "CommandName": "Get-PnPTenantAppCatalogUrl" + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Command": "Get-PnPTenantAppCatalogUrl", + "Id": 760 }, { - "Id": 761, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnEnabled" + "CommandName": "Get-PnPTenantCdnEnabled", + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "Id": 761 }, { - "Id": 762, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnOrigin" + "CommandName": "Get-PnPTenantCdnOrigin", + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "Id": 762 }, { - "Id": 763, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnPolicies" + "CommandName": "Get-PnPTenantCdnPolicies", + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "Id": 763 }, { - "Id": 764, - "Command": "Get-PnPTenantDeletedSite", "Rank": 1, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite", + "Id": 764 }, { - "Id": 765, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 2, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 765 }, { - "Id": 766, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Rank": 3, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "Id": 766 }, { - "Id": 767, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Rank": 4, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "Id": 767 }, { - "Id": 768, - "Command": "Get-PnPTenantId", "Rank": 1, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId", + "Id": 768 }, { - "Id": 769, - "Command": "Get-PnPTenantId contoso", "Rank": 2, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId contoso", + "Id": 769 }, { - "Id": 770, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Rank": 3, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "Id": 770 }, { - "Id": 771, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Rank": 4, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "Id": 771 }, { - "Id": 772, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Rank": 1, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "Id": 772 }, { - "Id": 773, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Rank": 2, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "Id": 773 }, { - "Id": 774, - "Command": "Get-PnPTenantInfo", "Rank": 3, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo", + "Id": 774 }, { - "Id": 775, - "Command": "Get-PnPTenantInfo -CurrentTenant", "Rank": 4, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo -CurrentTenant", + "Id": 775 }, { - "Id": 776, - "Command": "Get-PnPTenantInstance", "Rank": 1, - "CommandName": "Get-PnPTenantInstance" + "CommandName": "Get-PnPTenantInstance", + "Command": "Get-PnPTenantInstance", + "Id": 776 }, { - "Id": 777, - "Command": "Get-PnPTenantRecycleBinItem", "Rank": 1, - "CommandName": "Get-PnPTenantRecycleBinItem" + "CommandName": "Get-PnPTenantRecycleBinItem", + "Command": "Get-PnPTenantRecycleBinItem", + "Id": 777 }, { - "Id": 778, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Rank": 1, - "CommandName": "Get-PnPTenantSequence" + "CommandName": "Get-PnPTenantSequence", + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "Id": 778 }, { - "Id": 779, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Rank": 2, - "CommandName": "Get-PnPTenantSequence" + "CommandName": "Get-PnPTenantSequence", + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "Id": 779 }, { - "Id": 780, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Rank": 1, - "CommandName": "Get-PnPTenantSequenceSite" + "CommandName": "Get-PnPTenantSequenceSite", + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "Id": 780 }, { - "Id": 781, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Rank": 2, - "CommandName": "Get-PnPTenantSequenceSite" + "CommandName": "Get-PnPTenantSequenceSite", + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "Id": 781 }, { - "Id": 782, - "Command": "Get-PnPTenantSite", "Rank": 1, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite", + "Id": 782 }, { - "Id": 783, - "Command": "Get-PnPTenantSite -Detailed", "Rank": 2, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Detailed", + "Id": 783 }, { - "Id": 784, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Rank": 3, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "Id": 784 }, { - "Id": 785, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Rank": 4, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "Id": 785 }, { - "Id": 786, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Rank": 5, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "Id": 786 }, { - "Id": 787, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Rank": 6, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "Id": 787 }, { - "Id": 788, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Rank": 7, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "Id": 788 }, { - "Id": 789, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Rank": 8, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "Id": 789 }, { - "Id": 790, - "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Rank": 9, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "Id": 790 }, { - "Id": 791, - "Command": "Get-PnPTenantSyncClientRestriction", "Rank": 1, - "CommandName": "Get-PnPTenantSyncClientRestriction" + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Command": "Get-PnPTenantSyncClientRestriction", + "Id": 791 }, { - "Id": 792, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Rank": 1, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "Id": 792 }, { - "Id": 793, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "Rank": 2, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "Id": 793 }, { - "Id": 794, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Rank": 3, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "Id": 794 }, { - "Id": 795, - "Command": "Get-PnPTenantTheme", "Rank": 1, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Command": "Get-PnPTenantTheme", + "Id": 795 }, { - "Id": 796, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 2, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Id": 796 }, { - "Id": 797, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Rank": 3, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "Id": 797 }, { - "Id": 798, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 798 }, { - "Id": 799, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 799 }, { - "Id": 800, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 800 }, { - "Id": 801, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Rank": 4, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "Id": 801 }, { - "Id": 802, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Rank": 5, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "Id": 802 }, { - "Id": 803, - "Command": "Get-PnPTermGroup", "Rank": 1, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Command": "Get-PnPTermGroup", + "Id": 803 }, { - "Id": 804, - "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Rank": 2, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "Id": 804 }, { - "Id": 805, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Rank": 3, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "Id": 805 }, { - "Id": 806, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Rank": 1, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "Id": 806 }, { - "Id": 807, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Rank": 2, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "Id": 807 }, { - "Id": 808, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 808 }, { - "Id": 809, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "Id": 809 }, { - "Id": 810, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "Id": 810 }, { - "Id": 811, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Rank": 3, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "Id": 811 }, { - "Id": 812, - "Command": "Get-PnPTheme", "Rank": 1, - "CommandName": "Get-PnPTheme" + "CommandName": "Get-PnPTheme", + "Command": "Get-PnPTheme", + "Id": 812 }, { - "Id": 813, - "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Rank": 2, - "CommandName": "Get-PnPTheme" + "CommandName": "Get-PnPTheme", + "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "Id": 813 }, { - "Id": 814, - "Command": "Get-PnPTimeZoneId", "Rank": 1, - "CommandName": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTimeZoneId", + "Command": "Get-PnPTimeZoneId", + "Id": 814 }, { - "Id": 815, - "Command": "Get-PnPTimeZoneId -Match Stockholm", "Rank": 2, - "CommandName": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTimeZoneId", + "Command": "Get-PnPTimeZoneId -Match Stockholm", + "Id": 815 }, { - "Id": 816, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Rank": 1, - "CommandName": "Get-PnPUnfurlLink" + "CommandName": "Get-PnPUnfurlLink", + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "Id": 816 }, { - "Id": 817, - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Rank": 1, - "CommandName": "Get-PnPUnifiedAuditLog" + "CommandName": "Get-PnPUnifiedAuditLog", + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "Id": 817 }, { - "Id": 818, - "Command": "Get-PnPUPABulkImportStatus", "Rank": 1, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus", + "Id": 818 }, { - "Id": 819, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Rank": 2, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "Id": 819 }, { - "Id": 820, - "Command": "Get-PnPUPABulkImportStatus -JobId ", "Rank": 3, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus -JobId ", + "Id": 820 }, { - "Id": 821, - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "Rank": 4, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "Id": 821 }, { - "Id": 822, - "Command": "Get-PnPUser", "Rank": 1, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser", + "Id": 822 }, { - "Id": 823, - "Command": "Get-PnPUser -Identity 23", "Rank": 2, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -Identity 23", + "Id": 823 }, { - "Id": 824, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "Id": 824 }, { - "Id": 825, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Rank": 4, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "Id": 825 }, { - "Id": 826, - "Command": "Get-PnPUser -WithRightsAssigned", "Rank": 5, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -WithRightsAssigned", + "Id": 826 }, { - "Id": 827, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Rank": 6, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "Id": 827 }, { - "Id": 828, - "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Rank": 7, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "Id": 828 }, { - "Id": 829, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPUserOneDriveQuota" + "CommandName": "Get-PnPUserOneDriveQuota", + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "Id": 829 }, { - "Id": 830, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "Id": 830 }, { - "Id": 831, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Rank": 2, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "Id": 831 }, { - "Id": 832, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Rank": 3, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "Id": 832 }, { - "Id": 833, - "Command": "Get-PnPView -List \"Demo List\"", "Rank": 1, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Command": "Get-PnPView -List \"Demo List\"", + "Id": 833 }, { - "Id": 834, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Rank": 2, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "Id": 834 }, { - "Id": 835, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Rank": 3, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "Id": 835 }, { - "Id": 836, - "Command": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Command": "Get-PnPVivaConnectionsDashboardACE", + "Id": 836 }, { - "Id": 837, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 2, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Id": 837 }, { - "Id": 838, - "Command": "Get-PnPWeb", "Rank": 1, - "CommandName": "Get-PnPWeb" + "CommandName": "Get-PnPWeb", + "Command": "Get-PnPWeb", + "Id": 838 }, { - "Id": 839, - "Command": "Get-PnPWebHeader", "Rank": 1, - "CommandName": "Get-PnPWebHeader" + "CommandName": "Get-PnPWebHeader", + "Command": "Get-PnPWebHeader", + "Id": 839 }, { - "Id": 840, - "Command": "Get-PnPWebhookSubscriptions -List MyList", "Rank": 1, - "CommandName": "Get-PnPWebhookSubscriptions" + "CommandName": "Get-PnPWebhookSubscriptions", + "Command": "Get-PnPWebhookSubscriptions -List MyList", + "Id": 840 }, { - "Id": 841, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Rank": 1, - "CommandName": "Get-PnPWebPart" + "CommandName": "Get-PnPWebPart", + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "Id": 841 }, { - "Id": 842, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "CommandName": "Get-PnPWebPart" + "CommandName": "Get-PnPWebPart", + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 842 }, { - "Id": 843, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "Rank": 1, - "CommandName": "Get-PnPWebPartProperty" + "CommandName": "Get-PnPWebPartProperty", + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "Id": 843 }, { - "Id": 844, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Rank": 2, - "CommandName": "Get-PnPWebPartProperty" + "CommandName": "Get-PnPWebPartProperty", + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "Id": 844 }, { - "Id": 845, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Get-PnPWebPartXml" + "CommandName": "Get-PnPWebPartXml", + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 845 }, { - "Id": 846, - "Command": "Get-PnPWebTemplates", "Rank": 1, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Command": "Get-PnPWebTemplates", + "Id": 846 }, { - "Id": 847, - "Command": "Get-PnPWebTemplates -LCID 1033", "Rank": 2, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Command": "Get-PnPWebTemplates -LCID 1033", + "Id": 847 }, { - "Id": 848, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Rank": 3, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "Id": 848 }, { - "Id": 849, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Rank": 1, - "CommandName": "Get-PnPWikiPageContent" + "CommandName": "Get-PnPWikiPageContent", + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "Id": 849 }, { - "Id": 850, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "Rank": 1, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", + "Id": 850 }, { - "Id": 851, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", + "Id": 851 }, { - "Id": 852, - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Grant-PnPHubSiteRights" + "CommandName": "Grant-PnPHubSiteRights", + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 852 }, { - "Id": 853, - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Grant-PnPSiteDesignRights" + "CommandName": "Grant-PnPSiteDesignRights", + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 853 }, { - "Id": 854, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "CommandName": "Grant-PnPTenantServicePrincipalPermission" + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Id": 854 }, { - "Id": 855, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Rank": 1, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "Id": 855 }, { - "Id": 856, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Rank": 2, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "Id": 856 }, { - "Id": 857, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Rank": 3, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "Id": 857 }, { - "Id": 858, - "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Rank": 1, - "CommandName": "Import-PnPTermGroupFromXml" + "CommandName": "Import-PnPTermGroupFromXml", + "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "Id": 858 }, { - "Id": 859, - "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Rank": 2, - "CommandName": "Import-PnPTermGroupFromXml" + "CommandName": "Import-PnPTermGroupFromXml", + "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "Id": 859 }, { - "Id": 860, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Rank": 1, - "CommandName": "Import-PnPTermSet" + "CommandName": "Import-PnPTermSet", + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "Id": 860 }, { - "Id": 861, - "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" + "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": 861 }, { - "Id": 862, - "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" + "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": 862 }, { - "Id": 863, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Install-PnPApp" + "CommandName": "Install-PnPApp", + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 863 }, { - "Id": 864, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Install-PnPApp" + "CommandName": "Install-PnPApp", + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 864 }, { - "Id": 865, - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "Rank": 1, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", + "Id": 865 }, { - "Id": 866, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Rank": 2, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "Id": 866 }, { - "Id": 867, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Rank": 3, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "Id": 867 }, { - "Id": 868, - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Rank": 4, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "Id": 868 }, { - "Id": 869, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Rank": 5, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "Id": 869 }, { - "Id": 870, - "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" + "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", + "Id": 870 }, { - "Id": 871, - "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" + "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": 871 }, { - "Id": 872, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Invoke-PnPListDesign" + "CommandName": "Invoke-PnPListDesign", + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 872 }, { - "Id": 873, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "CommandName": "Invoke-PnPListDesign" + "CommandName": "Invoke-PnPListDesign", + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Id": 873 }, { - "Id": 874, - "Command": "Invoke-PnPQuery -RetryCount 5", "Rank": 1, - "CommandName": "Invoke-PnPQuery" + "CommandName": "Invoke-PnPQuery", + "Command": "Invoke-PnPQuery -RetryCount 5", + "Id": 874 }, { - "Id": 875, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Invoke-PnPSiteDesign" + "CommandName": "Invoke-PnPSiteDesign", + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 875 }, { - "Id": 876, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "CommandName": "Invoke-PnPSiteDesign" + "CommandName": "Invoke-PnPSiteDesign", + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Id": 876 }, { - "Id": 877, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Rank": 1, - "CommandName": "Invoke-PnPSiteScript" + "CommandName": "Invoke-PnPSiteScript", + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "Id": 877 }, { - "Id": 878, - "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" + "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": 878 }, { - "Id": 879, - "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" + "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": 879 }, { - "Id": 880, - "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" + "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": 880 }, { - "Id": 881, - "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Rank": 1, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "Id": 881 }, { - "Id": 882, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Rank": 2, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "Id": 882 }, { - "Id": 883, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Id": 883 }, { - "Id": 884, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Rank": 4, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "Id": 884 }, { - "Id": 885, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Rank": 5, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "Id": 885 }, { - "Id": 886, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Rank": 6, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "Id": 886 }, { - "Id": 887, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Rank": 7, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "Id": 887 }, { - "Id": 888, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Rank": 8, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "Id": 888 }, { - "Id": 889, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Rank": 1, - "CommandName": "Invoke-PnPSPRestMethod" + "CommandName": "Invoke-PnPSPRestMethod", + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "Id": 889 }, { - "Id": 890, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Rank": 1, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "Id": 890 }, { - "Id": 891, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Rank": 2, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "Id": 891 }, { - "Id": 892, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Id": 892 }, { - "Id": 893, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Rank": 1, - "CommandName": "Invoke-PnPWebAction" + "CommandName": "Invoke-PnPWebAction", + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "Id": 893 }, { - "Id": 894, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Rank": 2, - "CommandName": "Invoke-PnPWebAction" + "CommandName": "Invoke-PnPWebAction", + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "Id": 894 }, { - "Id": 895, - "Command": "Measure-PnPList \"Documents\"", "Rank": 1, - "CommandName": "Measure-PnPList" + "CommandName": "Measure-PnPList", + "Command": "Measure-PnPList \"Documents\"", + "Id": 895 }, { - "Id": 896, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Rank": 2, - "CommandName": "Measure-PnPList" + "CommandName": "Measure-PnPList", + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "Id": 896 }, { - "Id": 897, - "Command": "Measure-PnPWeb", "Rank": 1, - "CommandName": "Measure-PnPWeb" + "CommandName": "Measure-PnPWeb", + "Command": "Measure-PnPWeb", + "Id": 897 }, { - "Id": 898, - "Command": "Measure-PnPWeb $web -Recursive", "Rank": 2, - "CommandName": "Measure-PnPWeb" + "CommandName": "Measure-PnPWeb", + "Command": "Measure-PnPWeb $web -Recursive", + "Id": 898 }, { - "Id": 899, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Rank": 1, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "Id": 899 }, { - "Id": 900, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Rank": 2, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "Id": 900 }, { - "Id": 901, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 3, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Id": 901 }, { - "Id": 902, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 4, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Id": 902 }, { - "Id": 903, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Rank": 1, - "CommandName": "Move-PnPFolder" + "CommandName": "Move-PnPFolder", + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "Id": 903 }, { - "Id": 904, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Rank": 2, - "CommandName": "Move-PnPFolder" + "CommandName": "Move-PnPFolder", + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "Id": 904 }, { - "Id": 905, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "CommandName": "Move-PnPListItemToRecycleBin" + "CommandName": "Move-PnPListItemToRecycleBin", + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "Id": 905 }, { - "Id": 906, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "Rank": 1, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "Id": 906 }, { - "Id": 907, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "Rank": 2, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "Id": 907 }, { - "Id": 908, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "Rank": 3, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "Id": 908 }, { - "Id": 909, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Rank": 4, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "Id": 909 }, { - "Id": 910, - "Command": "Move-PnPRecycleBinItem", "Rank": 1, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Command": "Move-PnPRecycleBinItem", + "Id": 910 }, { - "Id": 911, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Rank": 2, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "Id": 911 }, { - "Id": 912, - "Command": "Move-PnPRecycleBinItem -Force", "Rank": 3, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Command": "Move-PnPRecycleBinItem -Force", + "Id": 912 }, { - "Id": 913, - "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" + "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": 913 }, { - "Id": 914, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Rank": 2, - "CommandName": "Move-PnPTerm" + "CommandName": "Move-PnPTerm", + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "Id": 914 }, { - "Id": 915, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Rank": 3, - "CommandName": "Move-PnPTerm" + "CommandName": "Move-PnPTerm", + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "Id": 915 }, { - "Id": 916, - "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" + "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": 916 }, { - "Id": 917, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Rank": 2, - "CommandName": "Move-PnPTermSet" + "CommandName": "Move-PnPTermSet", + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "Id": 917 }, { - "Id": 918, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "Id": 918 }, { - "Id": 919, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Rank": 2, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "Id": 919 }, { - "Id": 920, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Rank": 3, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "Id": 920 }, { - "Id": 921, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Rank": 1, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "Id": 921 }, { - "Id": 922, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Rank": 2, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "Id": 922 }, { - "Id": 923, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Rank": 3, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "Id": 923 }, { - "Id": 924, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Rank": 1, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "Id": 924 }, { - "Id": 925, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Rank": 2, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "Id": 925 }, { - "Id": 926, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "Rank": 3, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "Id": 926 }, { - "Id": 927, - "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" + "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": 927 }, { - "Id": 928, - "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" + "CommandName": "New-PnPGraphSubscription", + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", + "Id": 928 }, { - "Id": 929, - "Command": "New-PnPGroup -Title \"My Site Users\"", "Rank": 1, - "CommandName": "New-PnPGroup" + "CommandName": "New-PnPGroup", + "Command": "New-PnPGroup -Title \"My Site Users\"", + "Id": 929 }, { - "Id": 930, - "Command": "New-PnPList -Title Announcements -Template Announcements", "Rank": 1, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Command": "New-PnPList -Title Announcements -Template Announcements", + "Id": 930 }, { - "Id": 931, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Rank": 2, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "Id": 931 }, { - "Id": 932, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Rank": 3, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "Id": 932 }, { - "Id": 933, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "Id": 933 }, { - "Id": 934, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "Rank": 2, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "Id": 934 }, { - "Id": 935, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Rank": 3, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "Id": 935 }, { - "Id": 936, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Rank": 4, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "Id": 936 }, { - "Id": 937, - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 5, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Id": 937 }, { - "Id": 938, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 938 }, { - "Id": 939, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "Rank": 7, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", + "Id": 939 }, { - "Id": 940, - "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" + "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": 940 }, { - "Id": 941, - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Rank": 2, - "CommandName": "New-PnPMicrosoft365GroupSettings" + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", + "Id": 941 }, { - "Id": 942, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Rank": 1, - "CommandName": "New-PnPPersonalSite" + "CommandName": "New-PnPPersonalSite", + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "Id": 942 }, { - "Id": 943, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Rank": 1, - "CommandName": "New-PnPPlannerPlan" + "CommandName": "New-PnPPlannerPlan", + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "Id": 943 }, { - "Id": 944, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Rank": 1, - "CommandName": "New-PnPSdnProvider" + "CommandName": "New-PnPSdnProvider", + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "Id": 944 }, { - "Id": 945, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 1, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Id": 945 }, { - "Id": 946, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "Rank": 2, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "Id": 946 }, { - "Id": 947, - "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" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "Id": 947 }, { - "Id": 948, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 4, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Id": 948 }, { - "Id": 949, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 5, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Id": 949 }, { - "Id": 950, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 6, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Id": 950 }, { - "Id": 951, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Rank": 7, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "Id": 951 }, { - "Id": 952, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Rank": 8, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "Id": 952 }, { - "Id": 953, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Rank": 9, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "Id": 953 }, { - "Id": 954, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Rank": 10, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "Id": 954 }, { - "Id": 955, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 11, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Id": 955 }, { - "Id": 956, - "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" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "Id": 956 }, { - "Id": 957, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 13, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Id": 957 }, { - "Id": 958, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 14, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Id": 958 }, { - "Id": 959, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 15, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Id": 959 }, { - "Id": 960, - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Rank": 16, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "Id": 960 }, { - "Id": 961, - "Command": "New-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "New-PnPSiteCollectionTermStore" + "CommandName": "New-PnPSiteCollectionTermStore", + "Command": "New-PnPSiteCollectionTermStore", + "Id": 961 }, { - "Id": 962, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "Rank": 1, - "CommandName": "New-PnPSiteGroup" + "CommandName": "New-PnPSiteGroup", + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "Id": 962 }, { - "Id": 963, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Rank": 2, - "CommandName": "New-PnPSiteGroup" + "CommandName": "New-PnPSiteGroup", + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "Id": 963 }, { - "Id": 964, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Rank": 1, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "Id": 964 }, { - "Id": 965, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Rank": 2, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "Id": 965 }, { - "Id": 966, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Rank": 3, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "Id": 966 }, { - "Id": 967, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "Rank": 4, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "Id": 967 }, { - "Id": 968, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "Rank": 5, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", + "Id": 968 }, { - "Id": 969, - "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" + "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": 969 }, { - "Id": 970, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Rank": 7, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "Id": 970 }, { - "Id": 971, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Rank": 8, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "Id": 971 }, { - "Id": 972, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Rank": 1, - "CommandName": "New-PnPTeamsApp" + "CommandName": "New-PnPTeamsApp", + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "Id": 972 }, { - "Id": 973, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Rank": 1, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "Id": 973 }, { - "Id": 974, - "Command": "New-PnPTeamsTeam -GroupId $groupId", "Rank": 2, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -GroupId $groupId", + "Id": 974 }, { - "Id": 975, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "Rank": 3, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "Id": 975 }, { - "Id": 976, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 4, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Id": 976 }, { - "Id": 977, - "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" + "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": 977 }, { - "Id": 978, - "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" + "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": 978 }, { - "Id": 979, - "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" + "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": 979 }, { - "Id": 980, - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Rank": 2, - "CommandName": "New-PnPTenantSite" + "CommandName": "New-PnPTenantSite", + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "Id": 980 }, { - "Id": 981, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Rank": 1, - "CommandName": "New-PnPTerm" + "CommandName": "New-PnPTerm", + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "Id": 981 }, { - "Id": 982, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "CommandName": "New-PnPTerm" + "CommandName": "New-PnPTerm", + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 982 }, { - "Id": 983, - "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Rank": 1, - "CommandName": "New-PnPTermGroup" + "CommandName": "New-PnPTermGroup", + "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "Id": 983 }, { - "Id": 984, - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Rank": 1, - "CommandName": "New-PnPTermLabel" + "CommandName": "New-PnPTermLabel", + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "Id": 984 }, { - "Id": 985, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "New-PnPTermSet" + "CommandName": "New-PnPTermSet", + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "Id": 985 }, { - "Id": 986, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "Rank": 1, - "CommandName": "New-PnPUPABulkImportJob" + "CommandName": "New-PnPUPABulkImportJob", + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "Id": 986 }, { - "Id": 987, - "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" + "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": 987 }, { - "Id": 988, - "Command": "New-PnPUser -LoginName user@company.com", "Rank": 1, - "CommandName": "New-PnPUser" + "CommandName": "New-PnPUser", + "Command": "New-PnPUser -LoginName user@company.com", + "Id": 988 }, { - "Id": 989, - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Rank": 1, - "CommandName": "New-PnPWeb" + "CommandName": "New-PnPWeb", + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", + "Id": 989 }, { - "Id": 990, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 1, - "CommandName": "Publish-PnPApp" + "CommandName": "Publish-PnPApp", + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 990 }, { - "Id": 991, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Rank": 2, - "CommandName": "Publish-PnPApp" + "CommandName": "Publish-PnPApp", + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "Id": 991 }, { - "Id": 992, - "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" + "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": 992 }, { - "Id": 993, - "Command": "Publish-PnPContentType -ContentType 0x0101", "Rank": 1, - "CommandName": "Publish-PnPContentType" + "CommandName": "Publish-PnPContentType", + "Command": "Publish-PnPContentType -ContentType 0x0101", + "Id": 993 }, { - "Id": 994, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "CommandName": "Publish-PnPSyntexModel" + "CommandName": "Publish-PnPSyntexModel", + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Id": 994 }, { - "Id": 995, - "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" + "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": 995 }, { - "Id": 996, - "Command": "Read-PnPSiteTemplate -Path template.pnp", "Rank": 1, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Command": "Read-PnPSiteTemplate -Path template.pnp", + "Id": 996 }, { - "Id": 997, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Rank": 2, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "Id": 997 }, { - "Id": 998, - "Command": "Read-PnPSiteTemplate -Xml $xml", "Rank": 3, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Command": "Read-PnPSiteTemplate -Xml $xml", + "Id": 998 }, { - "Id": 999, - "Command": "Read-PnPTenantTemplate -Path template.pnp", "Rank": 1, - "CommandName": "Read-PnPTenantTemplate" + "CommandName": "Read-PnPTenantTemplate", + "Command": "Read-PnPTenantTemplate -Path template.pnp", + "Id": 999 }, { - "Id": 1000, - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Rank": 1, - "CommandName": "Register-PnPAppCatalogSite" + "CommandName": "Register-PnPAppCatalogSite", + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "Id": 1000 }, { - "Id": 1001, - "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" + "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": 1001 }, { - "Id": 1002, - "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" + "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": 1002 }, { - "Id": 1003, - "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" + "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": 1003 }, { - "Id": 1004, - "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" + "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": 1004 }, { - "Id": 1005, - "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" + "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": 1005 }, { - "Id": 1006, - "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" + "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": 1006 }, { - "Id": 1007, - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\") -LogoFilePath c:\\logo.png", "Rank": 7, - "CommandName": "Register-PnPAzureADApp" + "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": 1007 }, { - "Id": 1008, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "CommandName": "Register-PnPHubSite" + "CommandName": "Register-PnPHubSite", + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Id": 1008 }, { - "Id": 1009, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Rank": 2, - "CommandName": "Register-PnPHubSite" + "CommandName": "Register-PnPHubSite", + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "Id": 1009 }, { - "Id": 1010, - "Command": "Register-PnPManagementShellAccess", "Rank": 1, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Command": "Register-PnPManagementShellAccess", + "Id": 1010 }, { - "Id": 1011, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Rank": 2, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "Id": 1011 }, { - "Id": 1012, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Rank": 3, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "Id": 1012 }, { - "Id": 1013, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "Id": 1013 }, { - "Id": 1014, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Rank": 2, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "Id": 1014 }, { - "Id": 1015, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Rank": 1, - "CommandName": "Remove-PnPAlert" + "CommandName": "Remove-PnPAlert", + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "Id": 1015 }, { - "Id": 1016, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 2, - "CommandName": "Remove-PnPAlert" + "CommandName": "Remove-PnPAlert", + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Id": 1016 }, { - "Id": 1017, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Remove-PnPApp" + "CommandName": "Remove-PnPApp", + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1017 }, { - "Id": 1018, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPApp" + "CommandName": "Remove-PnPApp", + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1018 }, { - "Id": 1019, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Remove-PnPApplicationCustomizer" + "CommandName": "Remove-PnPApplicationCustomizer", + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1019 }, { - "Id": 1020, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "CommandName": "Remove-PnPApplicationCustomizer" + "CommandName": "Remove-PnPApplicationCustomizer", + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Id": 1020 }, { - "Id": 1021, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Rank": 1, - "CommandName": "Remove-PnPAvailableSiteClassification" + "CommandName": "Remove-PnPAvailableSiteClassification", + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "Id": 1021 }, { - "Id": 1022, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 2, - "CommandName": "Remove-PnPAvailableSiteClassification" + "CommandName": "Remove-PnPAvailableSiteClassification", + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Id": 1022 }, { - "Id": 1023, - "Command": "Remove-PnPAzureADApp -Identity MyApp", "Rank": 1, - "CommandName": "Remove-PnPAzureADApp" + "CommandName": "Remove-PnPAzureADApp", + "Command": "Remove-PnPAzureADApp -Identity MyApp", + "Id": 1023 }, { - "Id": 1024, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 2, - "CommandName": "Remove-PnPAzureADApp" + "CommandName": "Remove-PnPAzureADApp", + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 1024 }, { - "Id": 1025, - "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroup" + "CommandName": "Remove-PnPAzureADGroup", + "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "Id": 1025 }, { - "Id": 1026, - "Command": "Remove-PnPAzureADGroup -Identity $group", "Rank": 2, - "CommandName": "Remove-PnPAzureADGroup" + "CommandName": "Remove-PnPAzureADGroup", + "Command": "Remove-PnPAzureADGroup -Identity $group", + "Id": 1026 }, { - "Id": 1027, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupMember" + "CommandName": "Remove-PnPAzureADGroupMember", + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1027 }, { - "Id": 1028, - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupOwner" + "CommandName": "Remove-PnPAzureADGroupOwner", + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1028 }, { - "Id": 1029, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "Id": 1029 }, { - "Id": 1030, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Rank": 2, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "Id": 1030 }, { - "Id": 1031, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 3, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 1031 }, { - "Id": 1032, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 4, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Id": 1032 }, { - "Id": 1033, - "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPContentType" + "CommandName": "Remove-PnPContentType", + "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "Id": 1033 }, { - "Id": 1034, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Rank": 2, - "CommandName": "Remove-PnPContentType" + "CommandName": "Remove-PnPContentType", + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "Id": 1034 }, { - "Id": 1035, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Id": 1035 }, { - "Id": 1036, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Id": 1036 }, { - "Id": 1037, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromList" + "CommandName": "Remove-PnPContentTypeFromList", + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "Id": 1037 }, { - "Id": 1038, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1038 }, { - "Id": 1039, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Id": 1039 }, { - "Id": 1040, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Rank": 3, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "Id": 1040 }, { - "Id": 1041, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "CommandName": "Remove-PnPDeletedMicrosoft365Group" + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 1041 }, { - "Id": 1042, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 1, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 1042 }, { - "Id": 1043, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 1043 }, { - "Id": 1044, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Rank": 3, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "Id": 1044 }, { - "Id": 1045, - "Command": "Remove-PnPEventReceiver -List ProjectList", "Rank": 4, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -List ProjectList", + "Id": 1045 }, { - "Id": 1046, - "Command": "Remove-PnPEventReceiver", "Rank": 5, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver", + "Id": 1046 }, { - "Id": 1047, - "Command": "Remove-PnPEventReceiver -Scope Site", "Rank": 6, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Scope Site", + "Id": 1047 }, { - "Id": 1048, - "Command": "Remove-PnPEventReceiver -Scope Web", "Rank": 7, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Scope Web", + "Id": 1048 }, { - "Id": 1049, - "Command": "Remove-PnPEventReceiver -Scope All", "Rank": 8, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Scope All", + "Id": 1049 }, { - "Id": 1050, - "Command": "Remove-PnPField -Identity \"Speakers\"", "Rank": 1, - "CommandName": "Remove-PnPField" + "CommandName": "Remove-PnPField", + "Command": "Remove-PnPField -Identity \"Speakers\"", + "Id": 1050 }, { - "Id": 1051, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "CommandName": "Remove-PnPField" + "CommandName": "Remove-PnPField", + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Id": 1051 }, { - "Id": 1052, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPFieldFromContentType" + "CommandName": "Remove-PnPFieldFromContentType", + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Id": 1052 }, { - "Id": 1053, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Rank": 2, - "CommandName": "Remove-PnPFieldFromContentType" + "CommandName": "Remove-PnPFieldFromContentType", + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "Id": 1053 }, { - "Id": 1054, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Rank": 1, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "Id": 1054 }, { - "Id": 1055, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Rank": 2, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "Id": 1055 }, { - "Id": 1056, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Rank": 3, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "Id": 1056 }, { - "Id": 1057, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Rank": 1, - "CommandName": "Remove-PnPFileFromSiteTemplate" + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "Id": 1057 }, { - "Id": 1058, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Remove-PnPFileSharingLink" + "CommandName": "Remove-PnPFileSharingLink", + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 1058 }, { - "Id": 1059, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Rank": 2, - "CommandName": "Remove-PnPFileSharingLink" + "CommandName": "Remove-PnPFileSharingLink", + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "Id": 1059 }, { - "Id": 1060, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Id": 1060 }, { - "Id": 1061, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 2, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Id": 1061 }, { - "Id": 1062, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Rank": 3, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "Id": 1062 }, { - "Id": 1063, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "Rank": 1, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", + "Id": 1063 }, { - "Id": 1064, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "Rank": 2, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", + "Id": 1064 }, { - "Id": 1065, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "Rank": 3, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", + "Id": 1065 }, { - "Id": 1066, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "Rank": 4, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", + "Id": 1066 }, { - "Id": 1067, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "CommandName": "Remove-PnPFolder" + "CommandName": "Remove-PnPFolder", + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Id": 1067 }, { - "Id": 1068, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Rank": 2, - "CommandName": "Remove-PnPFolder" + "CommandName": "Remove-PnPFolder", + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "Id": 1068 }, { - "Id": 1069, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Remove-PnPFolderSharingLink" + "CommandName": "Remove-PnPFolderSharingLink", + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 1069 }, { - "Id": 1070, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Rank": 2, - "CommandName": "Remove-PnPFolderSharingLink" + "CommandName": "Remove-PnPFolderSharingLink", + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "Id": 1070 }, { - "Id": 1071, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Rank": 1, - "CommandName": "Remove-PnPGraphSubscription" + "CommandName": "Remove-PnPGraphSubscription", + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "Id": 1071 }, { - "Id": 1072, - "Command": "Remove-PnPGroup -Identity \"My Users\"", "Rank": 1, - "CommandName": "Remove-PnPGroup" + "CommandName": "Remove-PnPGroup", + "Command": "Remove-PnPGroup -Identity \"My Users\"", + "Id": 1072 }, { - "Id": 1073, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "CommandName": "Remove-PnPGroupMember" + "CommandName": "Remove-PnPGroupMember", + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Id": 1073 }, { - "Id": 1074, - "Command": "Remove-PnPHomeSite", "Rank": 1, - "CommandName": "Remove-PnPHomeSite" + "CommandName": "Remove-PnPHomeSite", + "Command": "Remove-PnPHomeSite", + "Id": 1074 }, { - "Id": 1075, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "CommandName": "Remove-PnPHubSiteAssociation" + "CommandName": "Remove-PnPHubSiteAssociation", + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "Id": 1075 }, { - "Id": 1076, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Rank": 1, - "CommandName": "Remove-PnPHubToHubAssociation" + "CommandName": "Remove-PnPHubToHubAssociation", + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "Id": 1076 }, { - "Id": 1077, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Rank": 2, - "CommandName": "Remove-PnPHubToHubAssociation" + "CommandName": "Remove-PnPHubToHubAssociation", + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "Id": 1077 }, { - "Id": 1078, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Rank": 1, - "CommandName": "Remove-PnPIndexedProperty" + "CommandName": "Remove-PnPIndexedProperty", + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "Id": 1078 }, { - "Id": 1079, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Rank": 1, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "Id": 1079 }, { - "Id": 1080, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "Id": 1080 }, { - "Id": 1081, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Rank": 3, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "Id": 1081 }, { - "Id": 1082, - "Command": "Remove-PnPJavaScriptLink -Scope Site", "Rank": 4, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Scope Site", + "Id": 1082 }, { - "Id": 1083, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Rank": 5, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "Id": 1083 }, { - "Id": 1084, - "Command": "Remove-PnPKnowledgeHubSite", "Rank": 1, - "CommandName": "Remove-PnPKnowledgeHubSite" + "CommandName": "Remove-PnPKnowledgeHubSite", + "Command": "Remove-PnPKnowledgeHubSite", + "Id": 1084 }, { - "Id": 1085, - "Command": "Remove-PnPList -Identity Announcements", "Rank": 1, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements", + "Id": 1085 }, { - "Id": 1086, - "Command": "Remove-PnPList -Identity Announcements -Force", "Rank": 2, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements -Force", + "Id": 1086 }, { - "Id": 1087, - "Command": "Remove-PnPList -Identity Announcements -Recycle", "Rank": 3, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements -Recycle", + "Id": 1087 }, { - "Id": 1088, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Rank": 4, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "Id": 1088 }, { - "Id": 1089, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPListDesign" + "CommandName": "Remove-PnPListDesign", + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1089 }, { - "Id": 1090, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "Id": 1090 }, { - "Id": 1091, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Rank": 2, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "Id": 1091 }, { - "Id": 1092, - "Command": "Remove-PnPListItem -List \"Demo List\"", "Rank": 3, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Command": "Remove-PnPListItem -List \"Demo List\"", + "Id": 1092 }, { - "Id": 1093, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Rank": 1, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "Id": 1093 }, { - "Id": 1094, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "Rank": 2, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "Id": 1094 }, { - "Id": 1095, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Rank": 3, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "Id": 1095 }, { - "Id": 1096, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Rank": 4, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "Id": 1096 }, { - "Id": 1097, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Rank": 5, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "Id": 1097 }, { - "Id": 1098, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "CommandName": "Remove-PnPListItemVersion" + "CommandName": "Remove-PnPListItemVersion", + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Id": 1098 }, { - "Id": 1099, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "CommandName": "Remove-PnPListItemVersion" + "CommandName": "Remove-PnPListItemVersion", + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Id": 1099 }, { - "Id": 1100, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365Group" + "CommandName": "Remove-PnPMicrosoft365Group", + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "Id": 1100 }, { - "Id": 1101, - "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365Group" + "CommandName": "Remove-PnPMicrosoft365Group", + "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "Id": 1101 }, { - "Id": 1102, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupMember" + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1102 }, { - "Id": 1103, - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupOwner" + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1103 }, { - "Id": 1104, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "Id": 1104 }, { - "Id": 1105, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "Id": 1105 }, { - "Id": 1106, - "Command": "Remove-PnPNavigationNode -Identity 1032", "Rank": 1, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Command": "Remove-PnPNavigationNode -Identity 1032", + "Id": 1106 }, { - "Id": 1107, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Rank": 2, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "Id": 1107 }, { - "Id": 1108, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Rank": 3, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "Id": 1108 }, { - "Id": 1109, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Rank": 1, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "Id": 1109 }, { - "Id": 1110, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Rank": 2, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "Id": 1110 }, { - "Id": 1111, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Rank": 3, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "Id": 1111 }, { - "Id": 1112, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "CommandName": "Remove-PnPOrgNewsSite" + "CommandName": "Remove-PnPOrgNewsSite", + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "Id": 1112 }, { - "Id": 1113, - "Command": "Remove-PnPPage -Identity \"MyPage\"", "Rank": 1, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage -Identity \"MyPage\"", + "Id": 1113 }, { - "Id": 1114, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Rank": 2, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "Id": 1114 }, { - "Id": 1115, - "Command": "Remove-PnPPage $page", "Rank": 3, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage $page", + "Id": 1115 }, { - "Id": 1116, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Rank": 4, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "Id": 1116 }, { - "Id": 1117, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Remove-PnPPageComponent" + "CommandName": "Remove-PnPPageComponent", + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 1117 }, { - "Id": 1118, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerBucket" + "CommandName": "Remove-PnPPlannerBucket", + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "Id": 1118 }, { - "Id": 1119, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerPlan" + "CommandName": "Remove-PnPPlannerPlan", + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "Id": 1119 }, { - "Id": 1120, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerRoster" + "CommandName": "Remove-PnPPlannerRoster", + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Id": 1120 }, { - "Id": 1121, - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerRosterMember" + "CommandName": "Remove-PnPPlannerRosterMember", + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 1121 }, { - "Id": 1122, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Rank": 1, - "CommandName": "Remove-PnPPlannerTask" + "CommandName": "Remove-PnPPlannerTask", + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "Id": 1122 }, { - "Id": 1123, - "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "Id": 1123 }, { - "Id": 1124, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Rank": 2, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "Id": 1124 }, { - "Id": 1125, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Rank": 3, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "Id": 1125 }, { - "Id": 1126, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "CommandName": "Remove-PnPPublishingImageRendition" + "CommandName": "Remove-PnPPublishingImageRendition", + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Id": 1126 }, { - "Id": 1127, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Rank": 1, - "CommandName": "Remove-PnPRoleDefinition" + "CommandName": "Remove-PnPRoleDefinition", + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "Id": 1127 }, { - "Id": 1128, - "Command": "Remove-PnPSdnProvider -Confirm:false", "Rank": 1, - "CommandName": "Remove-PnPSdnProvider" + "CommandName": "Remove-PnPSdnProvider", + "Command": "Remove-PnPSdnProvider -Confirm:false", + "Id": 1128 }, { - "Id": 1129, - "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "Id": 1129 }, { - "Id": 1130, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "Id": 1130 }, { - "Id": 1131, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Id": 1131 }, { - "Id": 1132, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 1132 }, { - "Id": 1133, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 1133 }, { - "Id": 1134, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 1134 }, { - "Id": 1135, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAppCatalog" + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Id": 1135 }, { - "Id": 1136, - "Command": "Remove-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionTermStore" + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Command": "Remove-PnPSiteCollectionTermStore", + "Id": 1136 }, { - "Id": 1137, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteDesign" + "CommandName": "Remove-PnPSiteDesign", + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1137 }, { - "Id": 1138, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteDesignTask" + "CommandName": "Remove-PnPSiteDesignTask", + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1138 }, { - "Id": 1139, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Remove-PnPSiteGroup" + "CommandName": "Remove-PnPSiteGroup", + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1139 }, { - "Id": 1140, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Rank": 2, - "CommandName": "Remove-PnPSiteGroup" + "CommandName": "Remove-PnPSiteGroup", + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "Id": 1140 }, { - "Id": 1141, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteScript" + "CommandName": "Remove-PnPSiteScript", + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1141 }, { - "Id": 1142, - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "CommandName": "Remove-PnPSiteUserInvitations" + "CommandName": "Remove-PnPSiteUserInvitations", + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Id": 1142 }, { - "Id": 1143, - "Command": "Remove-PnPStorageEntity -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPStorageEntity" + "CommandName": "Remove-PnPStorageEntity", + "Command": "Remove-PnPStorageEntity -Key MyKey", + "Id": 1143 }, { - "Id": 1144, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPStorageEntity" + "CommandName": "Remove-PnPStorageEntity", + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "Id": 1144 }, { - "Id": 1145, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Rank": 1, - "CommandName": "Remove-PnPStoredCredential" + "CommandName": "Remove-PnPStoredCredential", + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "Id": 1145 }, { - "Id": 1146, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Rank": 1, - "CommandName": "Remove-PnPTaxonomyItem" + "CommandName": "Remove-PnPTaxonomyItem", + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "Id": 1146 }, { - "Id": 1147, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Rank": 2, - "CommandName": "Remove-PnPTaxonomyItem" + "CommandName": "Remove-PnPTaxonomyItem", + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "Id": 1147 }, { - "Id": 1148, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Rank": 1, - "CommandName": "Remove-PnPTeamsApp" + "CommandName": "Remove-PnPTeamsApp", + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "Id": 1148 }, { - "Id": 1149, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Rank": 2, - "CommandName": "Remove-PnPTeamsApp" + "CommandName": "Remove-PnPTeamsApp", + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "Id": 1149 }, { - "Id": 1150, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Rank": 1, - "CommandName": "Remove-PnPTeamsChannel" + "CommandName": "Remove-PnPTeamsChannel", + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "Id": 1150 }, { - "Id": 1151, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Rank": 1, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "Id": 1151 }, { - "Id": 1152, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 2, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Id": 1152 }, { - "Id": 1153, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Rank": 3, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "Id": 1153 }, { - "Id": 1154, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "Rank": 1, - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsTab", + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "Id": 1154 }, { - "Id": 1155, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "Rank": 2, - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsTab", + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "Id": 1155 }, { - "Id": 1156, - "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" + "CommandName": "Remove-PnPTeamsTab", + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", + "Id": 1156 }, { - "Id": 1157, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 1, - "CommandName": "Remove-PnPTeamsTag" + "CommandName": "Remove-PnPTeamsTag", + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Id": 1157 }, { - "Id": 1158, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "CommandName": "Remove-PnPTeamsTeam" + "CommandName": "Remove-PnPTeamsTeam", + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Id": 1158 }, { - "Id": 1159, - "Command": "Remove-PnPTeamsTeam -Identity testteam", "Rank": 2, - "CommandName": "Remove-PnPTeamsTeam" + "CommandName": "Remove-PnPTeamsTeam", + "Command": "Remove-PnPTeamsTeam -Identity testteam", + "Id": 1159 }, { - "Id": 1160, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Rank": 1, - "CommandName": "Remove-PnPTeamsUser" + "CommandName": "Remove-PnPTeamsUser", + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "Id": 1160 }, { - "Id": 1161, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 2, - "CommandName": "Remove-PnPTeamsUser" + "CommandName": "Remove-PnPTeamsUser", + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 1161 }, { - "Id": 1162, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "CommandName": "Remove-PnPTenantCdnOrigin" + "CommandName": "Remove-PnPTenantCdnOrigin", + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Id": 1162 }, { - "Id": 1163, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Remove-PnPTenantDeletedSite" + "CommandName": "Remove-PnPTenantDeletedSite", + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1163 }, { - "Id": 1164, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "CommandName": "Remove-PnPTenantDeletedSite" + "CommandName": "Remove-PnPTenantDeletedSite", + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Id": 1164 }, { - "Id": 1165, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1165 }, { - "Id": 1166, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Rank": 2, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "Id": 1166 }, { - "Id": 1167, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Rank": 3, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "Id": 1167 }, { - "Id": 1168, - "Command": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, - "CommandName": "Remove-PnPTenantSyncClientRestriction" + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Command": "Remove-PnPTenantSyncClientRestriction", + "Id": 1168 }, { - "Id": 1169, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 1, - "CommandName": "Remove-PnPTenantTheme" + "CommandName": "Remove-PnPTenantTheme", + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Id": 1169 }, { - "Id": 1170, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "CommandName": "Remove-PnPTerm" + "CommandName": "Remove-PnPTerm", + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Id": 1170 }, { - "Id": 1171, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTerm" + "CommandName": "Remove-PnPTerm", + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 1171 }, { - "Id": 1172, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Id": 1172 }, { - "Id": 1173, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "Id": 1173 }, { - "Id": 1174, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Rank": 3, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "Id": 1174 }, { - "Id": 1175, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "Rank": 1, - "CommandName": "Remove-PnPTermLabel" + "CommandName": "Remove-PnPTermLabel", + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", + "Id": 1175 }, { - "Id": 1176, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTermLabel" + "CommandName": "Remove-PnPTermLabel", + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 1176 }, { - "Id": 1177, - "Command": "Remove-PnPUser -Identity 23", "Rank": 1, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Command": "Remove-PnPUser -Identity 23", + "Id": 1177 }, { - "Id": 1178, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "Rank": 2, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "Id": 1178 }, { - "Id": 1179, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Rank": 3, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "Id": 1179 }, { - "Id": 1180, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "CommandName": "Remove-PnPUserInfo" + "CommandName": "Remove-PnPUserInfo", + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Id": 1180 }, { - "Id": 1181, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "CommandName": "Remove-PnPUserProfile" + "CommandName": "Remove-PnPUserProfile", + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "Id": 1181 }, { - "Id": 1182, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Rank": 1, - "CommandName": "Remove-PnPView" + "CommandName": "Remove-PnPView", + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "Id": 1182 }, { - "Id": 1183, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 1, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE" + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Id": 1183 }, { - "Id": 1184, - "Command": "Remove-PnPWeb -Identity projectA", "Rank": 1, - "CommandName": "Remove-PnPWeb" + "CommandName": "Remove-PnPWeb", + "Command": "Remove-PnPWeb -Identity projectA", + "Id": 1184 }, { - "Id": 1185, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Rank": 2, - "CommandName": "Remove-PnPWeb" + "CommandName": "Remove-PnPWeb", + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "Id": 1185 }, { - "Id": 1186, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Rank": 1, - "CommandName": "Remove-PnPWebhookSubscription" + "CommandName": "Remove-PnPWebhookSubscription", + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "Id": 1186 }, { - "Id": 1187, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Remove-PnPWebPart" + "CommandName": "Remove-PnPWebPart", + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 1187 }, { - "Id": 1188, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Rank": 2, - "CommandName": "Remove-PnPWebPart" + "CommandName": "Remove-PnPWebPart", + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "Id": 1188 }, { - "Id": 1189, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Rank": 1, - "CommandName": "Remove-PnPWikiPage" + "CommandName": "Remove-PnPWikiPage", + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "Id": 1189 }, { - "Id": 1190, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Rank": 1, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "Id": 1190 }, { - "Id": 1191, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Rank": 2, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "Id": 1191 }, { - "Id": 1192, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Rank": 3, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "Id": 1192 }, { - "Id": 1193, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Rank": 1, - "CommandName": "Rename-PnPFolder" + "CommandName": "Rename-PnPFolder", + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "Id": 1193 }, { - "Id": 1194, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Repair-PnPSite" + "CommandName": "Repair-PnPSite", + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1194 }, { - "Id": 1195, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "CommandName": "Repair-PnPSite" + "CommandName": "Repair-PnPSite", + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Id": 1195 }, { - "Id": 1196, - "Command": "Request-PnPAccessToken", "Rank": 1, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Command": "Request-PnPAccessToken", + "Id": 1196 }, { - "Id": 1197, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Rank": 2, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "Id": 1197 }, { - "Id": 1198, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "Rank": 3, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "Id": 1198 }, { - "Id": 1199, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Rank": 4, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "Id": 1199 }, { - "Id": 1200, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Rank": 1, - "CommandName": "Request-PnPPersonalSite" + "CommandName": "Request-PnPPersonalSite", + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "Id": 1200 }, { - "Id": 1201, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Rank": 2, - "CommandName": "Request-PnPPersonalSite" + "CommandName": "Request-PnPPersonalSite", + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "Id": 1201 }, { - "Id": 1202, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Rank": 1, - "CommandName": "Request-PnPReIndexList" + "CommandName": "Request-PnPReIndexList", + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "Id": 1202 }, { - "Id": 1203, - "Command": "Request-PnPReIndexWeb", "Rank": 1, - "CommandName": "Request-PnPReIndexWeb" + "CommandName": "Request-PnPReIndexWeb", + "Command": "Request-PnPReIndexWeb", + "Id": 1203 }, { - "Id": 1204, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Rank": 1, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "Id": 1204 }, { - "Id": 1205, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Rank": 2, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "Id": 1205 }, { - "Id": 1206, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Rank": 3, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "Id": 1206 }, { - "Id": 1207, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Rank": 1, - "CommandName": "Reset-PnPFileVersion" + "CommandName": "Reset-PnPFileVersion", + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "Id": 1207 }, { - "Id": 1208, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Rank": 2, - "CommandName": "Reset-PnPFileVersion" + "CommandName": "Reset-PnPFileVersion", + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "Id": 1208 }, { - "Id": 1209, - "Command": "Reset-PnPLabel -List \"Demo List\"", "Rank": 1, - "CommandName": "Reset-PnPLabel" + "CommandName": "Reset-PnPLabel", + "Command": "Reset-PnPLabel -List \"Demo List\"", + "Id": 1209 }, { - "Id": 1210, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Rank": 2, - "CommandName": "Reset-PnPLabel" + "CommandName": "Reset-PnPLabel", + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "Id": 1210 }, { - "Id": 1211, - "Command": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration" + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Command": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1211 }, { - "Id": 1212, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "Id": 1212 }, { - "Id": 1213, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Rank": 1, - "CommandName": "Resolve-PnPFolder" + "CommandName": "Resolve-PnPFolder", + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "Id": 1213 }, { - "Id": 1214, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "CommandName": "Restore-PnPDeletedMicrosoft365Group" + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 1214 }, { - "Id": 1215, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Id": 1215 }, { - "Id": 1216, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Rank": 2, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "Id": 1216 }, { - "Id": 1217, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 3, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Id": 1217 }, { - "Id": 1218, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "CommandName": "Restore-PnPListItemVersion" + "CommandName": "Restore-PnPListItemVersion", + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Id": 1218 }, { - "Id": 1219, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "CommandName": "Restore-PnPListItemVersion" + "CommandName": "Restore-PnPListItemVersion", + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Id": 1219 }, { - "Id": 1220, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "CommandName": "Restore-PnPRecycleBinItem" + "CommandName": "Restore-PnPRecycleBinItem", + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Id": 1220 }, { - "Id": 1221, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1221 }, { - "Id": 1222, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Id": 1222 }, { - "Id": 1223, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1223 }, { - "Id": 1224, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Id": 1224 }, { - "Id": 1225, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Rank": 3, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "Id": 1225 }, { - "Id": 1226, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Rank": 1, - "CommandName": "Revoke-PnPAzureADAppSitePermission" + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "Id": 1226 }, { - "Id": 1227, - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Revoke-PnPHubSiteRights" + "CommandName": "Revoke-PnPHubSiteRights", + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 1227 }, { - "Id": 1228, - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Revoke-PnPSiteDesignRights" + "CommandName": "Revoke-PnPSiteDesignRights", + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 1228 }, { - "Id": 1229, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission" + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Id": 1229 }, { - "Id": 1230, - "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Rank": 1, - "CommandName": "Revoke-PnPUserSession" + "CommandName": "Revoke-PnPUserSession", + "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "Id": 1230 }, { - "Id": 1231, - "Command": "Save-PnPPageConversionLog", "Rank": 1, - "CommandName": "Save-PnPPageConversionLog" + "CommandName": "Save-PnPPageConversionLog", + "Command": "Save-PnPPageConversionLog", + "Id": 1231 }, { - "Id": 1232, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Rank": 1, - "CommandName": "Save-PnPSiteTemplate" + "CommandName": "Save-PnPSiteTemplate", + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "Id": 1232 }, { - "Id": 1233, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Rank": 1, - "CommandName": "Save-PnPTenantTemplate" + "CommandName": "Save-PnPTenantTemplate", + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "Id": 1233 }, { - "Id": 1234, - "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" + "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": 1234 }, { - "Id": 1235, - "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" + "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": 1235 }, { - "Id": 1236, - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Rank": 3, - "CommandName": "Send-PnPMail" + "CommandName": "Send-PnPMail", + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "Id": 1236 }, { - "Id": 1237, - "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" + "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": 1237 }, { - "Id": 1238, - "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" + "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": 1238 }, { - "Id": 1239, - "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" + "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": 1239 }, { - "Id": 1240, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Rank": 1, - "CommandName": "Set-PnPAdaptiveScopeProperty" + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "Id": 1240 }, { - "Id": 1241, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Set-PnPApplicationCustomizer" + "CommandName": "Set-PnPApplicationCustomizer", + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1241 }, { - "Id": 1242, - "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" + "CommandName": "Set-PnPApplicationCustomizer", + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", + "Id": 1242 }, { - "Id": 1243, - "Command": "Set-PnPAppSideLoading -On", "Rank": 1, - "CommandName": "Set-PnPAppSideLoading" + "CommandName": "Set-PnPAppSideLoading", + "Command": "Set-PnPAppSideLoading -On", + "Id": 1243 }, { - "Id": 1244, - "Command": "Set-PnPAppSideLoading -Off", "Rank": 2, - "CommandName": "Set-PnPAppSideLoading" + "CommandName": "Set-PnPAppSideLoading", + "Command": "Set-PnPAppSideLoading -Off", + "Id": 1244 }, { - "Id": 1245, - "Command": "Set-PnPAuditing -EnableAll", "Rank": 1, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -EnableAll", + "Id": 1245 }, { - "Id": 1246, - "Command": "Set-PnPAuditing -DisableAll", "Rank": 2, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -DisableAll", + "Id": 1246 }, { - "Id": 1247, - "Command": "Set-PnPAuditing -RetentionTime 7", "Rank": 3, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -RetentionTime 7", + "Id": 1247 }, { - "Id": 1248, - "Command": "Set-PnPAuditing -TrimAuditLog", "Rank": 4, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -TrimAuditLog", + "Id": 1248 }, { - "Id": 1249, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Rank": 5, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "Id": 1249 }, { - "Id": 1250, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Rank": 1, - "CommandName": "Set-PnPAvailablePageLayouts" + "CommandName": "Set-PnPAvailablePageLayouts", + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "Id": 1250 }, { - "Id": 1251, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Rank": 1, - "CommandName": "Set-PnPAzureADAppSitePermission" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "Id": 1251 }, { - "Id": 1252, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Rank": 2, - "CommandName": "Set-PnPAzureADAppSitePermission" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "Id": 1252 }, { - "Id": 1253, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "Id": 1253 }, { - "Id": 1254, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Id": 1254 }, { - "Id": 1255, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Rank": 3, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "Id": 1255 }, { - "Id": 1256, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Rank": 1, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "Id": 1256 }, { - "Id": 1257, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Rank": 2, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "Id": 1257 }, { - "Id": 1258, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Rank": 3, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "Id": 1258 }, { - "Id": 1259, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Rank": 1, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "Id": 1259 }, { - "Id": 1260, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Rank": 2, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "Id": 1260 }, { - "Id": 1261, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Rank": 1, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "Id": 1261 }, { - "Id": 1262, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Rank": 2, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "Id": 1262 }, { - "Id": 1263, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Rank": 3, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "Id": 1263 }, { - "Id": 1264, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Rank": 4, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "Id": 1264 }, { - "Id": 1265, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 1, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Id": 1265 }, { - "Id": 1266, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Rank": 2, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "Id": 1266 }, { - "Id": 1267, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 3, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Id": 1267 }, { - "Id": 1268, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 4, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Id": 1268 }, { - "Id": 1269, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 5, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Id": 1269 }, { - "Id": 1270, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Rank": 1, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "Id": 1270 }, { - "Id": 1271, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Rank": 2, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "Id": 1271 }, { - "Id": 1272, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Rank": 3, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "Id": 1272 }, { - "Id": 1273, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Rank": 4, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "Id": 1273 }, { - "Id": 1274, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Rank": 1, - "CommandName": "Set-PnPDefaultContentTypeToList" + "CommandName": "Set-PnPDefaultContentTypeToList", + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "Id": 1274 }, { - "Id": 1275, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Rank": 1, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "Id": 1275 }, { - "Id": 1276, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Rank": 2, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "Id": 1276 }, { - "Id": 1277, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Rank": 3, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "Id": 1277 }, { - "Id": 1278, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Rank": 1, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "Id": 1278 }, { - "Id": 1279, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 2, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Id": 1279 }, { - "Id": 1280, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 3, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Id": 1280 }, { - "Id": 1281, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Rank": 1, - "CommandName": "Set-PnPDocumentSetField" + "CommandName": "Set-PnPDocumentSetField", + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "Id": 1281 }, { - "Id": 1282, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Rank": 2, - "CommandName": "Set-PnPDocumentSetField" + "CommandName": "Set-PnPDocumentSetField", + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "Id": 1282 }, { - "Id": 1283, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "Rank": 1, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "Id": 1283 }, { - "Id": 1284, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Rank": 2, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "Id": 1284 }, { - "Id": 1285, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Rank": 3, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "Id": 1285 }, { - "Id": 1286, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Set-PnPFileCheckedIn" + "CommandName": "Set-PnPFileCheckedIn", + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "Id": 1286 }, { - "Id": 1287, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Rank": 2, - "CommandName": "Set-PnPFileCheckedIn" + "CommandName": "Set-PnPFileCheckedIn", + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "Id": 1287 }, { - "Id": 1288, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Set-PnPFileCheckedOut" + "CommandName": "Set-PnPFileCheckedOut", + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "Id": 1288 }, { - "Id": 1289, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1289 }, { - "Id": 1290, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1290 }, { - "Id": 1291, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Id": 1291 }, { - "Id": 1292, - "Command": "Set-PnPFooter -Enabled:$true", "Rank": 1, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -Enabled:$true", + "Id": 1292 }, { - "Id": 1293, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Rank": 2, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "Id": 1293 }, { - "Id": 1294, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Rank": 3, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "Id": 1294 }, { - "Id": 1295, - "Command": "Set-PnPFooter -LogoUrl \"\"", "Rank": 4, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -LogoUrl \"\"", + "Id": 1295 }, { - "Id": 1296, - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Rank": 1, - "CommandName": "Set-PnPGraphSubscription" + "CommandName": "Set-PnPGraphSubscription", + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "Id": 1296 }, { - "Id": 1297, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Rank": 1, - "CommandName": "Set-PnPGroup" + "CommandName": "Set-PnPGroup", + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "Id": 1297 }, { - "Id": 1298, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Rank": 2, - "CommandName": "Set-PnPGroup" + "CommandName": "Set-PnPGroup", + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "Id": 1298 }, { - "Id": 1299, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Rank": 1, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "Id": 1299 }, { - "Id": 1300, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Rank": 2, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "Id": 1300 }, { - "Id": 1301, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Rank": 3, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "Id": 1301 }, { - "Id": 1302, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Rank": 4, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "Id": 1302 }, { - "Id": 1303, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Rank": 5, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "Id": 1303 }, { - "Id": 1304, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Rank": 1, - "CommandName": "Set-PnPHideDefaultThemes" + "CommandName": "Set-PnPHideDefaultThemes", + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "Id": 1304 }, { - "Id": 1305, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Rank": 2, - "CommandName": "Set-PnPHideDefaultThemes" + "CommandName": "Set-PnPHideDefaultThemes", + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "Id": 1305 }, { - "Id": 1306, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Rank": 1, - "CommandName": "Set-PnPHomePage" + "CommandName": "Set-PnPHomePage", + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "Id": 1306 }, { - "Id": 1307, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Rank": 2, - "CommandName": "Set-PnPHomePage" + "CommandName": "Set-PnPHomePage", + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "Id": 1307 }, { - "Id": 1308, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Rank": 1, - "CommandName": "Set-PnPHomeSite" + "CommandName": "Set-PnPHomeSite", + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "Id": 1308 }, { - "Id": 1309, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Rank": 2, - "CommandName": "Set-PnPHomeSite" + "CommandName": "Set-PnPHomeSite", + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "Id": 1309 }, { - "Id": 1310, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "Rank": 1, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "Id": 1310 }, { - "Id": 1311, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "Rank": 2, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "Id": 1311 }, { - "Id": 1312, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "Rank": 3, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "Id": 1312 }, { - "Id": 1313, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "Rank": 4, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", + "Id": 1313 }, { - "Id": 1314, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Rank": 5, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "Id": 1314 }, { - "Id": 1315, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Rank": 6, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "Id": 1315 }, { - "Id": 1316, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Rank": 1, - "CommandName": "Set-PnPImageListItemColumn" + "CommandName": "Set-PnPImageListItemColumn", + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "Id": 1316 }, { - "Id": 1317, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Rank": 2, - "CommandName": "Set-PnPImageListItemColumn" + "CommandName": "Set-PnPImageListItemColumn", + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "Id": 1317 }, { - "Id": 1318, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Rank": 1, - "CommandName": "Set-PnPIndexedProperties" + "CommandName": "Set-PnPIndexedProperties", + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "Id": 1318 }, { - "Id": 1319, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Rank": 1, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "Id": 1319 }, { - "Id": 1320, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Rank": 2, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "Id": 1320 }, { - "Id": 1321, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Rank": 1, - "CommandName": "Set-PnPKnowledgeHubSite" + "CommandName": "Set-PnPKnowledgeHubSite", + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "Id": 1321 }, { - "Id": 1322, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Rank": 1, - "CommandName": "Set-PnPLabel" + "CommandName": "Set-PnPLabel", + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "Id": 1322 }, { - "Id": 1323, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Rank": 2, - "CommandName": "Set-PnPLabel" + "CommandName": "Set-PnPLabel", + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "Id": 1323 }, { - "Id": 1324, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Rank": 1, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "Id": 1324 }, { - "Id": 1325, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Rank": 2, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "Id": 1325 }, { - "Id": 1326, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Rank": 3, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "Id": 1326 }, { - "Id": 1327, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Rank": 4, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "Id": 1327 }, { - "Id": 1328, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Rank": 5, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "Id": 1328 }, { - "Id": 1329, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Rank": 6, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "Id": 1329 }, { - "Id": 1330, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Rank": 7, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "Id": 1330 }, { - "Id": 1331, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "Rank": 8, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "Id": 1331 }, { - "Id": 1332, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "Rank": 9, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "Id": 1332 }, { - "Id": 1333, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "Rank": 10, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "Id": 1333 }, { - "Id": 1334, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "Rank": 11, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "Id": 1334 }, { - "Id": 1335, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "Rank": 1, - "CommandName": "Set-PnPListInformationRightsManagement" + "CommandName": "Set-PnPListInformationRightsManagement", + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "Id": 1335 }, { - "Id": 1336, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "Rank": 2, - "CommandName": "Set-PnPListInformationRightsManagement" + "CommandName": "Set-PnPListInformationRightsManagement", + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "Id": 1336 }, { - "Id": 1337, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1337 }, { - "Id": 1338, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1338 }, { - "Id": 1339, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 3, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1339 }, { - "Id": 1340, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "Rank": 4, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "Id": 1340 }, { - "Id": 1341, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "Rank": 5, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "Id": 1341 }, { - "Id": 1342, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Set-PnPListItemAsRecord" + "CommandName": "Set-PnPListItemAsRecord", + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Id": 1342 }, { - "Id": 1343, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "Rank": 2, - "CommandName": "Set-PnPListItemAsRecord" + "CommandName": "Set-PnPListItemAsRecord", + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "Id": 1343 }, { - "Id": 1344, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1344 }, { - "Id": 1345, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1345 }, { - "Id": 1346, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Id": 1346 }, { - "Id": 1347, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "Rank": 4, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "Id": 1347 }, { - "Id": 1348, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "Rank": 5, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "Id": 1348 }, { - "Id": 1349, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPListPermission" + "CommandName": "Set-PnPListPermission", + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1349 }, { - "Id": 1350, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPListPermission" + "CommandName": "Set-PnPListPermission", + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1350 }, { - "Id": 1351, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "Rank": 1, - "CommandName": "Set-PnPListRecordDeclaration" + "CommandName": "Set-PnPListRecordDeclaration", + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "Id": 1351 }, { - "Id": 1352, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "Rank": 2, - "CommandName": "Set-PnPListRecordDeclaration" + "CommandName": "Set-PnPListRecordDeclaration", + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "Id": 1352 }, { - "Id": 1353, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 1, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Id": 1353 }, { - "Id": 1354, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 2, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Id": 1354 }, { - "Id": 1355, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 3, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Id": 1355 }, { - "Id": 1356, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 4, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Id": 1356 }, { - "Id": 1357, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "Id": 1357 }, { - "Id": 1358, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "Id": 1358 }, { - "Id": 1359, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1359 }, { - "Id": 1360, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "Id": 1360 }, { - "Id": 1361, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "Id": 1361 }, { - "Id": 1362, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1362 }, { - "Id": 1363, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "Id": 1363 }, { - "Id": 1364, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "Id": 1364 }, { - "Id": 1365, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1365 }, { - "Id": 1366, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "Id": 1366 }, { - "Id": 1367, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "Id": 1367 }, { - "Id": 1368, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1368 }, { - "Id": 1369, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "Id": 1369 }, { - "Id": 1370, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "Id": 1370 }, { - "Id": 1371, - "Command": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1371 }, { - "Id": 1372, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "Id": 1372 }, { - "Id": 1373, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "Id": 1373 }, { - "Id": 1374, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1374 }, { - "Id": 1375, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "Id": 1375 }, { - "Id": 1376, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Id": 1376 }, { - "Id": 1377, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "Rank": 3, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "Id": 1377 }, { - "Id": 1378, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "Rank": 4, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "Id": 1378 }, { - "Id": 1379, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "Rank": 5, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "Id": 1379 }, { - "Id": 1380, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 1380 }, { - "Id": 1381, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "Rank": 1, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "Id": 1381 }, { - "Id": 1382, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "Rank": 2, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "Id": 1382 }, { - "Id": 1383, - "Command": "Set-PnPMinimalDownloadStrategy -Off", "Rank": 1, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Command": "Set-PnPMinimalDownloadStrategy -Off", + "Id": 1383 }, { - "Id": 1384, - "Command": "Set-PnPMinimalDownloadStrategy -On", "Rank": 2, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Command": "Set-PnPMinimalDownloadStrategy -On", + "Id": 1384 }, { - "Id": 1385, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Rank": 1, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "Id": 1385 }, { - "Id": 1386, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Rank": 2, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "Id": 1386 }, { - "Id": 1387, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Rank": 3, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "Id": 1387 }, { - "Id": 1388, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Rank": 4, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "Id": 1388 }, { - "Id": 1389, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Rank": 5, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "Id": 1389 }, { - "Id": 1390, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "Rank": 6, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", + "Id": 1390 }, { - "Id": 1391, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "Id": 1391 }, { - "Id": 1392, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "Rank": 8, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "Id": 1392 }, { - "Id": 1393, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "Id": 1393 }, { - "Id": 1394, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Id": 1394 }, { - "Id": 1395, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "Rank": 11, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "Id": 1395 }, { - "Id": 1396, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "Rank": 1, - "CommandName": "Set-PnPPageTextPart" + "CommandName": "Set-PnPPageTextPart", + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "Id": 1396 }, { - "Id": 1397, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "Rank": 1, - "CommandName": "Set-PnPPageWebPart" + "CommandName": "Set-PnPPageWebPart", + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "Id": 1397 }, { - "Id": 1398, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "Rank": 2, - "CommandName": "Set-PnPPageWebPart" + "CommandName": "Set-PnPPageWebPart", + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "Id": 1398 }, { - "Id": 1399, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "Rank": 1, - "CommandName": "Set-PnPPlannerBucket" + "CommandName": "Set-PnPPlannerBucket", + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "Id": 1399 }, { - "Id": 1400, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "Rank": 1, - "CommandName": "Set-PnPPlannerConfiguration" + "CommandName": "Set-PnPPlannerConfiguration", + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Id": 1400 }, { - "Id": 1401, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "Rank": 2, - "CommandName": "Set-PnPPlannerConfiguration" + "CommandName": "Set-PnPPlannerConfiguration", + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "Id": 1401 }, { - "Id": 1402, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "Rank": 1, - "CommandName": "Set-PnPPlannerPlan" + "CommandName": "Set-PnPPlannerPlan", + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "Id": 1402 }, { - "Id": 1403, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "Rank": 1, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "Id": 1403 }, { - "Id": 1404, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "Rank": 2, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "Id": 1404 }, { - "Id": 1405, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Rank": 3, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Id": 1405 }, { - "Id": 1406, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Set-PnPPlannerUserPolicy" + "CommandName": "Set-PnPPlannerUserPolicy", + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Id": 1406 }, { - "Id": 1407, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Rank": 1, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "Id": 1407 }, { - "Id": 1408, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Rank": 2, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "Id": 1408 }, { - "Id": 1409, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "Rank": 3, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "Id": 1409 }, { - "Id": 1410, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Rank": 1, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "Id": 1410 }, { - "Id": 1411, - "Command": "Set-PnPRequestAccessEmails -Disabled", "Rank": 2, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Disabled", + "Id": 1411 }, { - "Id": 1412, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "Rank": 3, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "Id": 1412 }, { - "Id": 1413, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Rank": 1, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "Id": 1413 }, { - "Id": 1414, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Rank": 2, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "Id": 1414 }, { - "Id": 1415, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Rank": 3, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "Id": 1415 }, { - "Id": 1416, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "Rank": 4, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "Id": 1416 }, { - "Id": 1417, - "Command": "Set-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config", + "Id": 1417 }, { - "Id": 1418, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "Id": 1418 }, { - "Id": 1419, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Id": 1419 }, { - "Id": 1420, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 1420 }, { - "Id": 1421, - "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" + "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": 1421 }, { - "Id": 1422, - "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" + "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": 1422 }, { - "Id": 1423, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Rank": 1, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Id": 1423 }, { - "Id": 1424, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Rank": 2, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "Id": 1424 }, { - "Id": 1425, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Rank": 3, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "Id": 1425 }, { - "Id": 1426, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Rank": 4, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "Id": 1426 }, { - "Id": 1427, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "Rank": 5, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "Id": 1427 }, { - "Id": 1428, - "Command": "Set-PnPSearchSettings -SearchScope Tenant", "Rank": 6, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "Id": 1428 }, { - "Id": 1429, - "Command": "Set-PnPSearchSettings -SearchScope Hub", "Rank": 7, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchScope Hub", + "Id": 1429 }, { - "Id": 1430, - "Command": "Set-PnPSite -Classification \"HBI\"", "Rank": 1, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -Classification \"HBI\"", + "Id": 1430 }, { - "Id": 1431, - "Command": "Set-PnPSite -Classification $null", "Rank": 2, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -Classification $null", + "Id": 1431 }, { - "Id": 1432, - "Command": "Set-PnPSite -DisableFlows", "Rank": 3, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -DisableFlows", + "Id": 1432 }, { - "Id": 1433, - "Command": "Set-PnPSite -DisableFlows:$false", "Rank": 4, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -DisableFlows:$false", + "Id": 1433 }, { - "Id": 1434, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "Rank": 5, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "Id": 1434 }, { - "Id": 1435, - "Command": "Set-PnPSite -NoScriptSite $false", "Rank": 6, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -NoScriptSite $false", + "Id": 1435 }, { - "Id": 1436, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "Rank": 7, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "Id": 1436 }, { - "Id": 1437, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "Rank": 8, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "Id": 1437 }, { - "Id": 1438, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "Rank": 9, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "Id": 1438 }, { - "Id": 1439, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "Rank": 10, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "Id": 1439 }, { - "Id": 1440, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "Rank": 11, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "Id": 1440 }, { - "Id": 1441, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "Rank": 12, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "Id": 1441 }, { - "Id": 1442, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "Rank": 13, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "Id": 1442 }, { - "Id": 1443, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "Rank": 14, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "Id": 1443 }, { - "Id": 1444, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "Rank": 15, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "Id": 1444 }, { - "Id": 1445, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "Rank": 16, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "Id": 1445 }, { - "Id": 1446, - "Command": "Set-PnPSite -CancelVPForExistingLibs", "Rank": 17, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -CancelVPForExistingLibs", + "Id": 1446 }, { - "Id": 1447, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "Rank": 1, - "CommandName": "Set-PnPSiteClassification" + "CommandName": "Set-PnPSiteClassification", + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "Id": 1447 }, { - "Id": 1448, - "Command": "Set-PnPSiteClosure -State Open", "Rank": 1, - "CommandName": "Set-PnPSiteClosure" + "CommandName": "Set-PnPSiteClosure", + "Command": "Set-PnPSiteClosure -State Open", + "Id": 1448 }, { - "Id": 1449, - "Command": "Set-PnPSiteClosure -State Closed", "Rank": 2, - "CommandName": "Set-PnPSiteClosure" + "CommandName": "Set-PnPSiteClosure", + "Command": "Set-PnPSiteClosure -State Closed", + "Id": 1449 }, { - "Id": 1450, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "Rank": 1, - "CommandName": "Set-PnPSiteDesign" + "CommandName": "Set-PnPSiteDesign", + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "Id": 1450 }, { - "Id": 1451, - "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" + "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": 1451 }, { - "Id": 1452, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "Rank": 1, - "CommandName": "Set-PnPSiteGroup" + "CommandName": "Set-PnPSiteGroup", + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "Id": 1452 }, { - "Id": 1453, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "Rank": 2, - "CommandName": "Set-PnPSiteGroup" + "CommandName": "Set-PnPSiteGroup", + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "Id": 1453 }, { - "Id": 1454, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 1, - "CommandName": "Set-PnPSitePolicy" + "CommandName": "Set-PnPSitePolicy", + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "Id": 1454 }, { - "Id": 1455, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "CommandName": "Set-PnPSiteScript" + "CommandName": "Set-PnPSiteScript", + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Id": 1455 }, { - "Id": 1456, - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "CommandName": "Set-PnPSiteScriptPackage" + "CommandName": "Set-PnPSiteScriptPackage", + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Id": 1456 }, { - "Id": 1457, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Rank": 1, - "CommandName": "Set-PnPSiteSensitivityLabel" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "Id": 1457 }, { - "Id": 1458, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "Rank": 2, - "CommandName": "Set-PnPSiteSensitivityLabel" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "Id": 1458 }, { - "Id": 1459, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "Rank": 1, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "Id": 1459 }, { - "Id": 1460, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "Rank": 2, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "Id": 1460 }, { - "Id": 1461, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 3, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Id": 1461 }, { - "Id": 1462, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 4, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Id": 1462 }, { - "Id": 1463, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 5, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1463 }, { - "Id": 1464, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 6, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1464 }, { - "Id": 1465, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 1, - "CommandName": "Set-PnPStorageEntity" + "CommandName": "Set-PnPStorageEntity", + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Id": 1465 }, { - "Id": 1466, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 2, - "CommandName": "Set-PnPStorageEntity" + "CommandName": "Set-PnPStorageEntity", + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Id": 1466 }, { - "Id": 1467, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 1467 }, { - "Id": 1468, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 1468 }, { - "Id": 1469, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 1469 }, { - "Id": 1470, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 1470 }, { - "Id": 1471, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "Rank": 1, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "Id": 1471 }, { - "Id": 1472, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "Rank": 2, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "Id": 1472 }, { - "Id": 1473, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "Rank": 1, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "Id": 1473 }, { - "Id": 1474, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "Rank": 2, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "Id": 1474 }, { - "Id": 1475, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "Rank": 3, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "Id": 1475 }, { - "Id": 1476, - "Command": "Set-PnPTeamifyPromptHidden", "Rank": 1, - "CommandName": "Set-PnPTeamifyPromptHidden" + "CommandName": "Set-PnPTeamifyPromptHidden", + "Command": "Set-PnPTeamifyPromptHidden", + "Id": 1476 }, { - "Id": 1477, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Rank": 1, - "CommandName": "Set-PnPTeamsChannel" + "CommandName": "Set-PnPTeamsChannel", + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "Id": 1477 }, { - "Id": 1478, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Rank": 2, - "CommandName": "Set-PnPTeamsChannel" + "CommandName": "Set-PnPTeamsChannel", + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "Id": 1478 }, { - "Id": 1479, - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Rank": 1, - "CommandName": "Set-PnpTeamsChannelUser" + "CommandName": "Set-PnpTeamsChannelUser", + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", + "Id": 1479 }, { - "Id": 1480, - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Rank": 2, - "CommandName": "Set-PnpTeamsChannelUser" + "CommandName": "Set-PnpTeamsChannelUser", + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "Id": 1480 }, { - "Id": 1481, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTab" + "CommandName": "Set-PnPTeamsTab", + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "Id": 1481 }, { - "Id": 1482, - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTag" + "CommandName": "Set-PnPTeamsTag", + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "Id": 1482 }, { - "Id": 1483, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Rank": 1, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "Id": 1483 }, { - "Id": 1484, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Rank": 2, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "Id": 1484 }, { - "Id": 1485, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Rank": 3, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "Id": 1485 }, { - "Id": 1486, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "Rank": 4, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "Id": 1486 }, { - "Id": 1487, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Rank": 1, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "Id": 1487 }, { - "Id": 1488, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Rank": 2, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "Id": 1488 }, { - "Id": 1489, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "Rank": 3, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "Id": 1489 }, { - "Id": 1490, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTeamPicture" + "CommandName": "Set-PnPTeamsTeamPicture", + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "Id": 1490 }, { - "Id": 1491, - "Command": "Set-PnPTemporarilyDisableAppBar $true", "Rank": 1, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Command": "Set-PnPTemporarilyDisableAppBar $true", + "Id": 1491 }, { - "Id": 1492, - "Command": "Set-PnPTemporarilyDisableAppBar $false", "Rank": 2, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Command": "Set-PnPTemporarilyDisableAppBar $false", + "Id": 1492 }, { - "Id": 1493, - "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" + "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", + "Id": 1493 }, { - "Id": 1494, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Rank": 2, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "Id": 1494 }, { - "Id": 1495, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Rank": 3, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "Id": 1495 }, { - "Id": 1496, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Rank": 4, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "Id": 1496 }, { - "Id": 1497, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Rank": 1, - "CommandName": "Set-PnPTenantAppCatalogUrl" + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "Id": 1497 }, { - "Id": 1498, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "Rank": 1, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "Id": 1498 }, { - "Id": 1499, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "Rank": 2, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "Id": 1499 }, { - "Id": 1500, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "Rank": 3, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "Id": 1500 }, { - "Id": 1501, - "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" + "CommandName": "Set-PnPTenantCdnPolicy", + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", + "Id": 1501 }, { - "Id": 1502, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Rank": 2, - "CommandName": "Set-PnPTenantCdnPolicy" + "CommandName": "Set-PnPTenantCdnPolicy", + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "Id": 1502 }, { - "Id": 1503, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "Rank": 1, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "Id": 1503 }, { - "Id": 1504, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "Rank": 2, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "Id": 1504 }, { - "Id": 1505, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 1505 }, { - "Id": 1506, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 4, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 1506 }, { - "Id": 1507, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "Rank": 5, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "Id": 1507 }, { - "Id": 1508, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Rank": 1, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "Id": 1508 }, { - "Id": 1509, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Rank": 2, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "Id": 1509 }, { - "Id": 1510, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "Rank": 1, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "Id": 1510 }, { - "Id": 1511, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1511 }, { - "Id": 1512, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 3, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1512 }, { - "Id": 1513, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "Rank": 4, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "Id": 1513 }, { - "Id": 1514, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "Rank": 1, - "CommandName": "Set-PnPTermGroup" + "CommandName": "Set-PnPTermGroup", + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "Id": 1514 }, { - "Id": 1515, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "Rank": 1, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "Id": 1515 }, { - "Id": 1516, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "Rank": 2, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "Id": 1516 }, { - "Id": 1517, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "Rank": 3, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "Id": 1517 }, { - "Id": 1518, - "Command": "Set-PnPTheme", "Rank": 1, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme", + "Id": 1518 }, { - "Id": 1519, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Rank": 2, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "Id": 1519 }, { - "Id": 1520, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "Rank": 3, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "Id": 1520 }, { - "Id": 1521, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "Rank": 4, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "Id": 1521 }, { - "Id": 1522, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "Rank": 1, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "Id": 1522 }, { - "Id": 1523, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "Rank": 2, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "Id": 1523 }, { - "Id": 1524, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "Rank": 3, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "Id": 1524 }, { - "Id": 1525, - "Command": "Set-PnPTraceLog -Off", "Rank": 4, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -Off", + "Id": 1525 }, { - "Id": 1526, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "Rank": 1, - "CommandName": "Set-PnPUserOneDriveQuota" + "CommandName": "Set-PnPUserOneDriveQuota", + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "Id": 1526 }, { - "Id": 1527, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "Rank": 1, - "CommandName": "Set-PnPUserProfileProperty" + "CommandName": "Set-PnPUserProfileProperty", + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "Id": 1527 }, { - "Id": 1528, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "Rank": 2, - "CommandName": "Set-PnPUserProfileProperty" + "CommandName": "Set-PnPUserProfileProperty", + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "Id": 1528 }, { - "Id": 1529, - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "Rank": 1, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "Id": 1529 }, { - "Id": 1530, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "Rank": 2, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "Id": 1530 }, { - "Id": 1531, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "Rank": 3, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "Id": 1531 }, { - "Id": 1532, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "Rank": 4, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "Id": 1532 }, { - "Id": 1533, - "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" + "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": 1533 }, { - "Id": 1534, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "Rank": 2, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "Id": 1534 }, { - "Id": 1535, - "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" + "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": 1535 }, { - "Id": 1536, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "Rank": 4, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "Id": 1536 }, { - "Id": 1537, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Rank": 1, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "Id": 1537 }, { - "Id": 1538, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Rank": 2, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "Id": 1538 }, { - "Id": 1539, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "Rank": 3, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "Id": 1539 }, { - "Id": 1540, - "Command": "Set-PnPWeb -NoCrawl:$true", "Rank": 4, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -NoCrawl:$true", + "Id": 1540 }, { - "Id": 1541, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "Rank": 1, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "Id": 1541 }, { - "Id": 1542, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "Rank": 2, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "Id": 1542 }, { - "Id": 1543, - "Command": "Set-PnPWebHeader -LogoAlignment Middle", "Rank": 3, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "Id": 1543 }, { - "Id": 1544, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "CommandName": "Set-PnPWebhookSubscription" + "CommandName": "Set-PnPWebhookSubscription", + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Id": 1544 }, { - "Id": 1545, - "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" + "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": 1545 }, { - "Id": 1546, - "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" + "CommandName": "Set-PnPWebPartProperty", + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", + "Id": 1546 }, { - "Id": 1547, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 1, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Id": 1547 }, { - "Id": 1548, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Rank": 2, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "Id": 1548 }, { - "Id": 1549, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 3, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Id": 1549 }, { - "Id": 1550, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Rank": 4, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "Id": 1550 }, { - "Id": 1551, - "Command": "Set-PnPWebTheme -Theme MyTheme", "Rank": 1, - "CommandName": "Set-PnPWebTheme" + "CommandName": "Set-PnPWebTheme", + "Command": "Set-PnPWebTheme -Theme MyTheme", + "Id": 1551 }, { - "Id": 1552, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Rank": 2, - "CommandName": "Set-PnPWebTheme" + "CommandName": "Set-PnPWebTheme", + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "Id": 1552 }, { - "Id": 1553, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "Rank": 1, - "CommandName": "Set-PnPWikiPageContent" + "CommandName": "Set-PnPWikiPageContent", + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "Id": 1553 }, { - "Id": 1554, - "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Rank": 1, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "Id": 1554 }, { - "Id": 1555, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Rank": 2, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "Id": 1555 }, { - "Id": 1556, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "Rank": 3, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "Id": 1556 }, { - "Id": 1557, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "Rank": 4, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "Id": 1557 }, { - "Id": 1558, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "Rank": 5, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "Id": 1558 }, { - "Id": 1559, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "Rank": 1, - "CommandName": "Submit-PnPTeamsChannelMessage" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "Id": 1559 }, { - "Id": 1560, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "Rank": 2, - "CommandName": "Submit-PnPTeamsChannelMessage" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "Id": 1560 }, { - "Id": 1561, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Sync-PnPAppToTeams" + "CommandName": "Sync-PnPAppToTeams", + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1561 }, { - "Id": 1562, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Rank": 1, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "Id": 1562 }, { - "Id": 1563, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "Rank": 2, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "Id": 1563 }, { - "Id": 1564, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "Rank": 3, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "Id": 1564 }, { - "Id": 1565, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Test-PnPListItemIsRecord" + "CommandName": "Test-PnPListItemIsRecord", + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "Id": 1565 }, { - "Id": 1566, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "Rank": 1, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "Id": 1566 }, { - "Id": 1567, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Test-PnPSite" + "CommandName": "Test-PnPSite", + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1567 }, { - "Id": 1568, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "CommandName": "Test-PnPSite" + "CommandName": "Test-PnPSite", + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Id": 1568 }, { - "Id": 1569, - "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Rank": 1, - "CommandName": "Test-PnPTenantTemplate" + "CommandName": "Test-PnPTenantTemplate", + "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "Id": 1569 }, { - "Id": 1570, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Undo-PnPFileCheckedOut" + "CommandName": "Undo-PnPFileCheckedOut", + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "Id": 1570 }, { - "Id": 1571, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Uninstall-PnPApp" + "CommandName": "Uninstall-PnPApp", + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1571 }, { - "Id": 1572, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Uninstall-PnPApp" + "CommandName": "Uninstall-PnPApp", + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1572 }, { - "Id": 1573, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Unpublish-PnPApp" + "CommandName": "Unpublish-PnPApp", + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1573 }, { - "Id": 1574, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Unpublish-PnPApp" + "CommandName": "Unpublish-PnPApp", + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1574 }, { - "Id": 1575, - "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Rank": 1, - "CommandName": "Unpublish-PnPContentType" + "CommandName": "Unpublish-PnPContentType", + "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "Id": 1575 }, { - "Id": 1576, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "CommandName": "Unpublish-PnPSyntexModel" + "CommandName": "Unpublish-PnPSyntexModel", + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Id": 1576 }, { - "Id": 1577, - "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" + "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": 1577 }, { - "Id": 1578, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "CommandName": "Unregister-PnPHubSite" + "CommandName": "Unregister-PnPHubSite", + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Id": 1578 }, { - "Id": 1579, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Update-PnPApp" + "CommandName": "Update-PnPApp", + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1579 }, { - "Id": 1580, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Update-PnPApp" + "CommandName": "Update-PnPApp", + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1580 }, { - "Id": 1581, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 1, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Id": 1581 }, { - "Id": 1582, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Rank": 2, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "Id": 1582 }, { - "Id": 1583, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 3, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Id": 1583 }, { - "Id": 1584, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "Rank": 1, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "Id": 1584 }, { - "Id": 1585, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Id": 1585 }, { - "Id": 1586, - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "Rank": 3, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "Id": 1586 }, { - "Id": 1587, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "Rank": 1, - "CommandName": "Update-PnPTeamsApp" + "CommandName": "Update-PnPTeamsApp", + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "Id": 1587 }, { - "Id": 1588, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 1588 }, { - "Id": 1589, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Id": 1589 }, { - "Id": 1590, - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "Rank": 3, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "Id": 1590 }, { - "Id": 1591, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Rank": 1, - "CommandName": "Update-PnPUserType" + "CommandName": "Update-PnPUserType", + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "Id": 1591 } ] diff --git a/version.txt b/version.txt index af7d25c48..f4432008f 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.105 \ No newline at end of file +2.2.106 \ No newline at end of file From 6912f4518d785fdd34480fd620aecb8ef4341916 Mon Sep 17 00:00:00 2001 From: "Antti K. Koskela" Date: Sun, 22 Oct 2023 20:23:27 +0300 Subject: [PATCH 095/146] Add an optional Retry-loop around executing the search query --- documentation/Submit-PnPSearchQuery.md | 20 ++++- src/Commands/Search/SubmitSearchQuery.cs | 99 ++++++++++++++++-------- 2 files changed, 83 insertions(+), 36 deletions(-) diff --git a/documentation/Submit-PnPSearchQuery.md b/documentation/Submit-PnPSearchQuery.md index ab4427a2d..f2255644f 100644 --- a/documentation/Submit-PnPSearchQuery.md +++ b/documentation/Submit-PnPSearchQuery.md @@ -22,7 +22,7 @@ Submit-PnPSearchQuery [-Query] [-StartRow ] [-MaxResults [-RankingModelId ] [-ClientType ] [-CollapseSpecification ] [-HiddenConstraints ] [-TimeZoneId ] [-EnablePhonetic ] [-EnableStemming ] [-EnableQueryRules ] [-SourceId ] [-ProcessBestBets ] - [-ProcessPersonalFavorites ] [-RelevantResults] [-Connection ] + [-ProcessPersonalFavorites ] [-RelevantResults] [-Connection ] [-RetryCount ] ``` @@ -34,7 +34,7 @@ Submit-PnPSearchQuery [-Query] [-All] [-TrimDuplicates ] [-Pro [-CollapseSpecification ] [-HiddenConstraints ] [-TimeZoneId ] [-EnablePhonetic ] [-EnableStemming ] [-EnableQueryRules ] [-SourceId ] [-ProcessBestBets ] [-ProcessPersonalFavorites ] [-RelevantResults] - [-Connection ] + [-Connection ] [-RetryCount ] ``` ## DESCRIPTION @@ -346,6 +346,20 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RetryCount +How many times to retry for a failed query. Default is 0 (no retries). Will wait 5 seconds between each retry. + +```yaml +Type: Int32 +Parameter Sets: (All) + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SelectProperties The list of properties to return in the search results, separated by a comma. I.e. ComplianceTag,InformationProtectionLabelId. @@ -430,8 +444,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` - - ## RELATED LINKS [Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) diff --git a/src/Commands/Search/SubmitSearchQuery.cs b/src/Commands/Search/SubmitSearchQuery.cs index bcbf002e5..3fdb70b0e 100644 --- a/src/Commands/Search/SubmitSearchQuery.cs +++ b/src/Commands/Search/SubmitSearchQuery.cs @@ -5,6 +5,8 @@ using Microsoft.SharePoint.Client.Search.Query; using System.Collections.Generic; using System.Linq; +using System.Threading; +using System.Reflection; namespace PnP.PowerShell.Commands.Search { @@ -85,6 +87,9 @@ public class SubmitSearchQuery : PnPWebCmdlet [Parameter(Mandatory = false, ParameterSetName = ParameterAttribute.AllParameterSets)] public SwitchParameter RelevantResults; + [Parameter(Mandatory = false, ParameterSetName = ParameterAttribute.AllParameterSets)] + public int RetryCount = 0; + internal IEnumerable Run() { int startRow = StartRow; @@ -121,53 +126,83 @@ internal IEnumerable Run() keywordQuery.QueryText += " IndexDocId>" + lastDocId; } - var searchExec = new SearchExecutor(ClientContext); - var results = searchExec.ExecuteQuery(keywordQuery); - ClientContext.ExecuteQueryRetry(); - - if (results.Value != null) + // We'll always try at least once, even if RetryCount is 0 (default) + for (var iterator = 0; iterator <= RetryCount; iterator++) { - if (finalResults == null) + try { - finalResults = (PnPResultTableCollection)results.Value; - foreach (ResultTable resultTable in results.Value) + var searchExec = new SearchExecutor(ClientContext); + var results = searchExec.ExecuteQuery(keywordQuery); + ClientContext.ExecuteQueryRetry(); + + if (results.Value != null) { - if (resultTable.TableType == "RelevantResults") + if (finalResults == null) { - currentCount = resultTable.RowCount; - if (currentCount > 0) + finalResults = (PnPResultTableCollection)results.Value; + foreach (ResultTable resultTable in results.Value) { - lastDocId = resultTable.ResultRows.Last()["DocId"].ToString(); + if (resultTable.TableType == "RelevantResults") + { + currentCount = resultTable.RowCount; + if (currentCount > 0) + { + lastDocId = resultTable.ResultRows.Last()["DocId"].ToString(); + } + } } } - } - } - else - { - // we're in paging mode - foreach (ResultTable resultTable in results.Value) - { - PnPResultTable pnpResultTable = (PnPResultTable)resultTable; - var existingTable = finalResults.SingleOrDefault(t => t.TableType == resultTable.TableType); - if (existingTable != null) - { - existingTable.ResultRows.AddRange(pnpResultTable.ResultRows); - } else { - finalResults.Add(pnpResultTable); - } - if (pnpResultTable.TableType == "RelevantResults") - { - currentCount = resultTable.RowCount; - if (currentCount > 0) + // we're in paging mode + foreach (ResultTable resultTable in results.Value) { - lastDocId = resultTable.ResultRows.Last()["DocId"].ToString(); + PnPResultTable pnpResultTable = (PnPResultTable)resultTable; + var existingTable = finalResults.SingleOrDefault(t => t.TableType == resultTable.TableType); + if (existingTable != null) + { + existingTable.ResultRows.AddRange(pnpResultTable.ResultRows); + } + else + { + finalResults.Add(pnpResultTable); + } + if (pnpResultTable.TableType == "RelevantResults") + { + currentCount = resultTable.RowCount; + if (currentCount > 0) + { + lastDocId = resultTable.ResultRows.Last()["DocId"].ToString(); + } + } } } } + + // If we were successful (and didn't end in the catch block), we don't want to retry -> break out of retry loop + break; } + // If we're not retrying, or if we're on the last retry, don't catch the exception + catch (Exception ex) when (RetryCount > 0 && iterator < RetryCount) + { + // use reflection to find if the Exception has a property called "ServerErrorTypeName" and if so, check if its value is "Microsoft.Office.Server.Search.Query.InternalQueryErrorException" + var serverErrorTypeNameProperty = ex.GetType().GetProperty("ServerErrorTypeName", BindingFlags.Instance | BindingFlags.Public); + if (serverErrorTypeNameProperty != null) + { + var serverErrorTypeName = serverErrorTypeNameProperty.GetValue(ex); + if (serverErrorTypeName != null && serverErrorTypeName.ToString().Equals("Microsoft.Office.Server.Search.Query.InternalQueryErrorException", StringComparison.InvariantCultureIgnoreCase)) + { + // This was a "Microsoft.Office.Server.Search.Query.InternalQueryErrorException" which is safe to retry as-is (it's often transient) + // It's the one that says "Search has encountered a problem that prevents results from being returned. If the issue persists, please contact your administrator." + // Swallow the exception and retry (with incremental backoff) + Thread.Sleep(4000 * (iterator+1)); + continue; + } + } + // Rethrow the exception if it wasn't one warranting a retry + throw; + } } startRow += rowLimit; } while (currentCount == rowLimit && All.IsPresent); From be00ac2cfd02b9ecaa0ea92ce6d4e601a098dcdd Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Sun, 22 Oct 2023 20:42:18 +0300 Subject: [PATCH 096/146] Feature #2683 : added support for containers (#3497) * Feature #2683 : added support for containers * Improved container image * Added gitlens * Improve image * Improve container process --------- Co-authored-by: Gautam Sheth --- .devcontainer/devcontainer.json | 34 +++++++++++++++++++++++++++++++++ build/postCreateCommand.sh | 5 +++++ 2 files changed, 39 insertions(+) create mode 100644 .devcontainer/devcontainer.json create mode 100644 build/postCreateCommand.sh diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..db3c43ddb --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,34 @@ +{ + "name": "PnP PowerShell", + "image": "mcr.microsoft.com/devcontainers/dotnet:0-6.0", + "features": { + "ghcr.io/devcontainers/features/git:1": { + "ppa": true, + "version": "os-provided" + }, + "ghcr.io/devcontainers/features/powershell:1": { + "version": "latest" + } + }, + "workspaceFolder": "/workspaces/powershell", + "postCreateCommand": "bash ./build/postCreateCommand.sh", + "customizations": { + "vscode": { + "settings": { + "terminal.integrated.defaultProfile.linux": "pwsh" + }, + "extensions": [ + "ms-vscode.powershell", + "ms-dotnettools.csdevkit", + "ms-vsliveshare.vsliveshare", + "shd101wyy.markdown-preview-enhanced", + "GitHub.copilot", + "GitHub.copilot-chat", + "eamodio.gitlens", + "github.vscode-pull-request-github" + ] + } + }, + "remoteUser": "root", + "shutdownAction": "stopCompose" +} diff --git a/build/postCreateCommand.sh b/build/postCreateCommand.sh new file mode 100644 index 000000000..872c694cd --- /dev/null +++ b/build/postCreateCommand.sh @@ -0,0 +1,5 @@ +# Build the project +/usr/bin/pwsh -c '/workspaces/powershell/build/Build-Debug.ps1' + +# Install optional modules +/usr/bin/pwsh -c 'Install-Module Microsoft.PowerShell.SecretStore,Microsoft.Powershell.SecretManagement -Force' \ No newline at end of file From bd1c77d6a899224fbd353ea960a4b8986cd91373 Mon Sep 17 00:00:00 2001 From: Giacomo Pozzoni Date: Sun, 22 Oct 2023 19:45:34 +0200 Subject: [PATCH 097/146] Allow to specify additional properties to include in Get-PnPSiteCollectionAdmin (#3521) Co-authored-by: Gautam Sheth --- src/Commands/Site/GetSiteCollectionAdmin.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Commands/Site/GetSiteCollectionAdmin.cs b/src/Commands/Site/GetSiteCollectionAdmin.cs index 08db650cb..7b6fc5143 100644 --- a/src/Commands/Site/GetSiteCollectionAdmin.cs +++ b/src/Commands/Site/GetSiteCollectionAdmin.cs @@ -9,12 +9,12 @@ namespace PnP.PowerShell.Commands.Site { [Cmdlet(VerbsCommon.Get, "PnPSiteCollectionAdmin")] [OutputType(typeof(User))] - public class GetSiteCollectionAdmin : PnPWebCmdlet + public class GetSiteCollectionAdmin : PnPWebRetrievalsCmdlet { protected override void ExecuteCmdlet() { - var retrievalExpressions = new Expression>[] - { + DefaultRetrievalExpressions = new Expression>[] + { u => u.Id, u => u.Title, u => u.LoginName, @@ -31,10 +31,10 @@ protected override void ExecuteCmdlet() g => g.Id, g => g.Title, g => g.LoginName) - }; + }; var siteCollectionAdminUsersQuery = CurrentWeb.SiteUsers.Where(u => u.IsSiteAdmin); - var siteCollectionAdminUsers = ClientContext.LoadQuery(siteCollectionAdminUsersQuery.Include(retrievalExpressions)); + var siteCollectionAdminUsers = ClientContext.LoadQuery(siteCollectionAdminUsersQuery.Include(RetrievalExpressions)); ClientContext.ExecuteQueryRetry(); WriteObject(siteCollectionAdminUsers, true); From f63fbb14779d49de4fce281bfbc7df0e5aa11ff9 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Sun, 22 Oct 2023 20:48:06 +0300 Subject: [PATCH 098/146] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 197f2b61f..93700c586 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/). - Added `RestrictedAccessControl`, `ClearRestrictedAccessControl`, `RemoveRestrictedAccessControlGroups`, `AddRestrictedAccessControlGroups` and `RestrictedAccessControlGroups` parameters to `Set-PnPTenantSite` cmdlet to handle restricted access control. [#3463](https://github.com/pnp/powershell/pull/3463) - Added `Get-PnPRetentionLabel` cmdlet to retrieve Purview retention labels. [#3459](https://github.com/pnp/powershell/pull/3459) - Added GCC support for `Get-PnPAzureADUser` , `Add-PnPFlowOwner` , `Remove-PnPFlowOwner`, `Sync-PnPSharePointUserProfilesFromAzureActiveDirectory`, `New-PnPAzureADUserTemporaryAccessPass` and `Get-PnPAvailableSensitivityLabel` cmdlets. [#3484](https://github.com/pnp/powershell/pull/3484) +- Added a devcontainer for easily building a minimal environment necessary to contribute to the project. [#3497](https://github.com/pnp/powershell/pull/3497) ### Fixed @@ -72,6 +73,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Improved the error message thrown when using `-ValidateConnection` with `Connect-PnPOnline` and it failing due to i.e. an expired ClientSecret so the reason of the failed connect becomes more clear. [#3440](https://github.com/pnp/powershell/pull/3440) - If a cmdlet gets renamed and an alias gets added for it for backwards compatibility, a cmdlet page for the alias will automatically be created so it can still be found in the documentation [#3455](https://github.com/pnp/powershell/pull/3455) - `Get-PnPTeamsTeam` cmdlet throws error message if the team isn't found when `-Identity` parameter is specified. [#3502](https://github.com/pnp/powershell/pull/3502) +- Improved `Get-PnPSiteCollectionAdmin ` cmdlet to allow retrieval of additional properties when `-Includes` parameter is specified. [#3521](https://github.com/pnp/powershell/pull/3521) ### Removed From 76e68ad817544034a62418d77999007807401b5f Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Sun, 22 Oct 2023 19:52:21 +0200 Subject: [PATCH 099/146] Changed GetContentType to inherit from PnPWebRetrievalsCmdlet (#3518) * Changed GetContentType to inherit from PnPWebRetrievalsCmdlet * Added PR reference * Adding extra spacing for readability and consistency * Updated documentation to include the -Includes parameter --------- Co-authored-by: Gautam Sheth --- CHANGELOG.md | 1 + documentation/Get-PnPContentType.md | 24 +++++++++++++++++++-- src/Commands/ContentTypes/GetContentType.cs | 20 +++++++++++------ 3 files changed, 37 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93700c586..316967037 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -72,6 +72,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Improved `Add-PnPFile` cmdlet. It will now automatically checkout the file if `-CheckinType` parameter is specified. [#3403](https://github.com/pnp/powershell/pull/3403) - Improved the error message thrown when using `-ValidateConnection` with `Connect-PnPOnline` and it failing due to i.e. an expired ClientSecret so the reason of the failed connect becomes more clear. [#3440](https://github.com/pnp/powershell/pull/3440) - If a cmdlet gets renamed and an alias gets added for it for backwards compatibility, a cmdlet page for the alias will automatically be created so it can still be found in the documentation [#3455](https://github.com/pnp/powershell/pull/3455) +- Changed `Get-PnPContentType` to now also support `-Includes` to allow retrieval of additional properties of the content type [#3518](https://github.com/pnp/powershell/pull/3518) - `Get-PnPTeamsTeam` cmdlet throws error message if the team isn't found when `-Identity` parameter is specified. [#3502](https://github.com/pnp/powershell/pull/3502) - Improved `Get-PnPSiteCollectionAdmin ` cmdlet to allow retrieval of additional properties when `-Includes` parameter is specified. [#3521](https://github.com/pnp/powershell/pull/3521) diff --git a/documentation/Get-PnPContentType.md b/documentation/Get-PnPContentType.md index 14a6dde96..5dc4eb4b6 100644 --- a/documentation/Get-PnPContentType.md +++ b/documentation/Get-PnPContentType.md @@ -15,8 +15,7 @@ Retrieves a content type ## SYNTAX ```powershell -Get-PnPContentType [[-Identity] ] [-List ] [-InSiteHierarchy] - [-Connection ] +Get-PnPContentType [-Identity ] [-List ] [-InSiteHierarchy] [-Includes ] [-Connection ] ``` ## DESCRIPTION @@ -53,6 +52,13 @@ Get-PnPContentType -List "Documents" This will get a listing of all available content types within the list "Documents" +### EXAMPLE 5 +```powershell +Get-PnPContentType -Includes "SchemaXml" +``` + +This will get a listing of all available content types with the SchemaXml also being returned in the results + ## PARAMETERS ### -Connection @@ -83,6 +89,20 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -Includes +List of properties to fetch about the ContentType(s) being returned + +```yaml +Type: String[] +Parameter Sets: (All) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InSiteHierarchy Search site hierarchy for content types diff --git a/src/Commands/ContentTypes/GetContentType.cs b/src/Commands/ContentTypes/GetContentType.cs index 0513312d1..95cf16d8f 100644 --- a/src/Commands/ContentTypes/GetContentType.cs +++ b/src/Commands/ContentTypes/GetContentType.cs @@ -1,27 +1,34 @@ using System.Linq; using System.Management.Automation; using Microsoft.SharePoint.Client; - +using System.Linq.Expressions; using PnP.PowerShell.Commands.Base; using PnP.PowerShell.Commands.Base.PipeBinds; using System; +using System.Collections.Generic; namespace PnP.PowerShell.Commands.ContentTypes { [Cmdlet(VerbsCommon.Get, "PnPContentType")] - public class GetContentType : PnPWebCmdlet + [OutputType(typeof(ContentType))] + [OutputType(typeof(IEnumerable))] + public class GetContentType : PnPWebRetrievalsCmdlet { [Parameter(Mandatory = false, Position = 0, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public ContentTypePipeBind Identity; + [Parameter(Mandatory = false, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public ListPipeBind List; + [Parameter(Mandatory = false, ValueFromPipeline = false)] public SwitchParameter InSiteHierarchy; protected override void ExecuteCmdlet() { + DefaultRetrievalExpressions = new Expression>[] {ct => ct.Id, ct => ct.Name, ct => ct.StringId, ct => ct.Group }; + if (List != null) { var list = List?.GetListOrThrow(nameof(List), CurrentWeb); @@ -36,12 +43,12 @@ protected override void ExecuteCmdlet() return; } + ct.EnsureProperties(RetrievalExpressions); WriteObject(ct, false); - } else { - var cts = ClientContext.LoadQuery(list.ContentTypes.Include(ct => ct.Id, ct => ct.Name, ct => ct.StringId, ct => ct.Group)); + var cts = ClientContext.LoadQuery(list.ContentTypes.IncludeWithDefaultProperties(RetrievalExpressions)); ClientContext.ExecuteQueryRetry(); WriteObject(cts, true); } @@ -55,11 +62,13 @@ protected override void ExecuteCmdlet() { return; } + + ct.EnsureProperties(RetrievalExpressions); WriteObject(ct, false); } else { - var cts = InSiteHierarchy ? ClientContext.LoadQuery(CurrentWeb.AvailableContentTypes) : ClientContext.LoadQuery(CurrentWeb.ContentTypes); + var cts = InSiteHierarchy ? ClientContext.LoadQuery(CurrentWeb.AvailableContentTypes.IncludeWithDefaultProperties(RetrievalExpressions)) : ClientContext.LoadQuery(CurrentWeb.ContentTypes.IncludeWithDefaultProperties(RetrievalExpressions)); ClientContext.ExecuteQueryRetry(); @@ -69,4 +78,3 @@ protected override void ExecuteCmdlet() } } } - From 773a4d366aceedb2be3c39f5d7b8d60930b350c0 Mon Sep 17 00:00:00 2001 From: "Antti K. Koskela" Date: Sun, 22 Oct 2023 19:59:19 +0200 Subject: [PATCH 100/146] Antti/update submitsearchquery docs (#3527) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update documentation for Submit-PnPSearchQuery * Changes sentence ending to be consistent 😅 * Document LCIDs used by -Culture switch * Update Submit-PnPSearchQuery.md --------- Co-authored-by: Gautam Sheth --- documentation/Submit-PnPSearchQuery.md | 27 ++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/documentation/Submit-PnPSearchQuery.md b/documentation/Submit-PnPSearchQuery.md index ab4427a2d..815c8d317 100644 --- a/documentation/Submit-PnPSearchQuery.md +++ b/documentation/Submit-PnPSearchQuery.md @@ -10,7 +10,7 @@ online version: https://pnp.github.io/powershell/cmdlets/Submit-PnPSearchQuery.h # Submit-PnPSearchQuery ## SYNOPSIS -Executes an arbitrary search query against the SharePoint search index +Executes an arbitrary search query against the SharePoint search index. ## SYNTAX @@ -48,35 +48,42 @@ Allows to run an arbitrary search query against the SharePoint search index. Submit-PnPSearchQuery -Query "finance" ``` -Returns the top 500 items with the term finance +Returns the top 500 items with the term finance. ### EXAMPLE 2 ```powershell Submit-PnPSearchQuery -Query "Title:Intranet*" -MaxResults 10 ``` -Returns the top 10 items indexed by SharePoint Search of which the title starts with the word Intranet +Returns the top 10 items indexed by SharePoint Search of which the title starts with the word Intranet. ### EXAMPLE 3 ```powershell Submit-PnPSearchQuery -Query "Title:Intranet*" -All ``` -Returns absolutely all items indexed by SharePoint Search of which the title starts with the word Intranet +Returns absolutely all items indexed by SharePoint Search of which the title starts with the word Intranet. ### EXAMPLE 4 ```powershell Submit-PnPSearchQuery -Query "Title:Intranet*" -Refiners "contentclass,FileType(filter=6/0/*)" ``` -Returns absolutely all items indexed by SharePoint Search of which the title starts with the word Intranet, and return refiners for contentclass and FileType managed properties +Returns absolutely all items indexed by SharePoint Search of which the title starts with the word Intranet, and return refiners for contentclass and FileType managed properties. ### EXAMPLE 5 ```powershell Submit-PnPSearchQuery -Query "contentclass:STS_ListItem_DocumentLibrary" -SelectProperties ComplianceTag,InformationProtectionLabelId -All ``` -Returns absolutely all items indexed by SharePoint Search which represent a document in a document library and instructs explicitly to return the managed properties InformationProtectionLabelId and ComplianceTag which will give insight into the sensitivity and retention labels assigned to the documents +Returns absolutely all items indexed by SharePoint Search which represent a document in a document library and instructs explicitly to return the managed properties InformationProtectionLabelId and ComplianceTag which will give insight into the sensitivity and retention labels assigned to the documents. + +### EXAMPLE 6 +```powershell +Submit-PnPSearchQuery -Query "contentclass:STS_ListItem_DocumentLibrary" -SortList @{"filename" = "ascending"} -All +``` + +Returns absolutely all items indexed by SharePoint Search which represent a document in a document library and sorts the items by file name in ascending order. ## PARAMETERS @@ -137,7 +144,7 @@ Accept wildcard characters: False ``` ### -Culture -The locale for the query. +The locale for the query. Uses LCID's as per this [documentation](https://learn.microsoft.com/previous-versions/office/sharepoint-csom/jj167546(v=office.15)). ```yaml Type: Int32 @@ -319,7 +326,7 @@ Accept wildcard characters: False ``` ### -Refiners -The list of refiners to be returned in a search result. +The list of refiners to be returned in a search result, separated by a comma. I.e. contentclass,ContentType(filter=7/0/*). ```yaml Type: String @@ -333,7 +340,7 @@ Accept wildcard characters: False ``` ### -RelevantResults -Specifies whether only relevant results are returned +Specifies whether only relevant results are returned. ```yaml Type: SwitchParameter @@ -361,7 +368,7 @@ Accept wildcard characters: False ``` ### -SortList -The list of properties by which the search results are ordered. +The list of properties by which the search results are ordered as a hashtable, i.e. each property needs to be a key and the associated value either "Ascending" or "Descending" based on the wanted sort order, or "FQLFormula" if you want to use a formula to define the sort order. ```yaml Type: Hashtable From 3e2b531fa775b9d3be3b4c42836667299984d8a2 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Sun, 22 Oct 2023 21:00:22 +0300 Subject: [PATCH 101/146] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 316967037..c9fa90172 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -82,6 +82,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Contributors +- Antti K. Koskela [koskila] - Dave Paylor [paylord] - [smsdaniel] - Jim Duncan [sparkitect] From b33b5fe3e09f9c4edc3340ced39845e3110395fa Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Sun, 22 Oct 2023 21:04:23 +0300 Subject: [PATCH 102/146] Fix #3503 : fix return type for field (#3510) Co-authored-by: Gautam Sheth --- documentation/Add-PnPField.md | 19 +--- src/Commands/Fields/AddField.cs | 168 +++++++++++++++++++++++++++++++- 2 files changed, 166 insertions(+), 21 deletions(-) diff --git a/documentation/Add-PnPField.md b/documentation/Add-PnPField.md index c68391868..6f1630d93 100644 --- a/documentation/Add-PnPField.md +++ b/documentation/Add-PnPField.md @@ -18,7 +18,7 @@ Add a field ```powershell Add-PnPField [-List ] -DisplayName -InternalName -Type [-Id ] [-Formula ] [-Choices ] [-AddToDefaultView] [-Required] [-Group ] [-ClientSideComponentId ] - [-ClientSideComponentProperties ] [-AddToAllContentTypes] [-ReturnType ] [-Connection ] + [-ClientSideComponentProperties ] [-AddToAllContentTypes] [-Connection ] ``` ### Add field reference to list @@ -30,7 +30,7 @@ Add-PnPField -List -Field [-Connection -InternalName -Type [-Id ] [-Formula ] [-Choices ] - [-ClientSideComponentId ] [-ClientSideComponentProperties ] [-ReturnType ] + [-ClientSideComponentId ] [-ClientSideComponentProperties ] [-Connection ] ``` @@ -304,21 +304,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ReturnType -The return type of the calculated field. Only valid when Type Calculated is chosen. - -```yaml -Type: FieldType -Parameter Sets: Add field to list, Add field to web -Accepted values: Integer, Text, DateTime, Boolean, Number, Currency - -Required: False -Position: Named -Default value: Text -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/Fields/AddField.cs b/src/Commands/Fields/AddField.cs index 68310cfc6..04452e6c6 100644 --- a/src/Commands/Fields/AddField.cs +++ b/src/Commands/Fields/AddField.cs @@ -167,7 +167,87 @@ protected override void ExecuteCmdlet() ClientContext.Load(f); ClientContext.ExecuteQueryRetry(); } - WriteObject(f); + f.EnsureProperty(f => f.FieldTypeKind); + switch (f.FieldTypeKind) + { + case FieldType.DateTime: + { + WriteObject(ClientContext.CastTo(f)); + break; + } + case FieldType.Choice: + { + WriteObject(ClientContext.CastTo(f)); + break; + } + case FieldType.Calculated: + { + var calculatedField = ClientContext.CastTo(f); + calculatedField.EnsureProperty(fc => fc.Formula); + WriteObject(calculatedField); + break; + } + case FieldType.Computed: + { + WriteObject(ClientContext.CastTo(f)); + break; + } + case FieldType.Geolocation: + { + WriteObject(ClientContext.CastTo(f)); + break; + + } + case FieldType.User: + { + WriteObject(ClientContext.CastTo(f)); + break; + } + case FieldType.Currency: + { + WriteObject(ClientContext.CastTo(f)); + break; + } + case FieldType.Guid: + { + WriteObject(ClientContext.CastTo(f)); + break; + } + case FieldType.URL: + { + WriteObject(ClientContext.CastTo(f)); + break; + } + case FieldType.Lookup: + { + WriteObject(ClientContext.CastTo(f)); + break; + } + case FieldType.MultiChoice: + { + WriteObject(ClientContext.CastTo(f)); + break; + } + case FieldType.Number: + { + WriteObject(ClientContext.CastTo(f)); + break; + } + case FieldType.Invalid: + { + if (f.TypeAsString.StartsWith("TaxonomyFieldType")) + { + WriteObject(ClientContext.CastTo(f)); + break; + } + goto default; + } + default: + { + WriteObject(f); + break; + } + } } else { @@ -207,7 +287,87 @@ protected override void ExecuteCmdlet() list.Update(); ClientContext.ExecuteQueryRetry(); } - WriteObject(field); + field.EnsureProperty(f => f.FieldTypeKind); + switch (field.FieldTypeKind) + { + case FieldType.DateTime: + { + WriteObject(ClientContext.CastTo(field)); + break; + } + case FieldType.Choice: + { + WriteObject(ClientContext.CastTo(field)); + break; + } + case FieldType.Calculated: + { + var calculatedField = ClientContext.CastTo(field); + calculatedField.EnsureProperty(fc => fc.Formula); + WriteObject(calculatedField); + break; + } + case FieldType.Computed: + { + WriteObject(ClientContext.CastTo(field)); + break; + } + case FieldType.Geolocation: + { + WriteObject(ClientContext.CastTo(field)); + break; + + } + case FieldType.User: + { + WriteObject(ClientContext.CastTo(field)); + break; + } + case FieldType.Currency: + { + WriteObject(ClientContext.CastTo(field)); + break; + } + case FieldType.Guid: + { + WriteObject(ClientContext.CastTo(field)); + break; + } + case FieldType.URL: + { + WriteObject(ClientContext.CastTo(field)); + break; + } + case FieldType.Lookup: + { + WriteObject(ClientContext.CastTo(field)); + break; + } + case FieldType.MultiChoice: + { + WriteObject(ClientContext.CastTo(field)); + break; + } + case FieldType.Number: + { + WriteObject(ClientContext.CastTo(field)); + break; + } + case FieldType.Invalid: + { + if (field.TypeAsString.StartsWith("TaxonomyFieldType")) + { + WriteObject(ClientContext.CastTo(field)); + break; + } + goto default; + } + default: + { + WriteObject(field); + break; + } + } } } else @@ -246,7 +406,7 @@ protected override void ExecuteCmdlet() f = CurrentWeb.CreateField(fieldCI); ((FieldCalculated)f).Formula = calculatedFieldParameters.Formula; - if(!string.IsNullOrEmpty(calculatedFieldParameters.ResultType) && Enum.TryParse(calculatedFieldParameters.ResultType, out FieldType resultType)) + if (!string.IsNullOrEmpty(calculatedFieldParameters.ResultType) && Enum.TryParse(calculatedFieldParameters.ResultType, out FieldType resultType)) { ((FieldCalculated)f).OutputType = resultType; } @@ -268,7 +428,7 @@ protected override void ExecuteCmdlet() f.Update(); ClientContext.Load(f); ClientContext.ExecuteQueryRetry(); - } + } switch (f.FieldTypeKind) { case FieldType.DateTime: From e6e7be6e06aad71e8a4536e00ada54b2ef04eff3 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Sun, 22 Oct 2023 21:08:03 +0300 Subject: [PATCH 103/146] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9fa90172..709f74b34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -82,6 +82,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Contributors +- Kunj Balkrishna Sangani [kunj-sangani] - Antti K. Koskela [koskila] - Dave Paylor [paylord] - [smsdaniel] From 396b2c6e0464929282bfe0be38577fe1e41ab217 Mon Sep 17 00:00:00 2001 From: "Antti K. Koskela" Date: Sun, 22 Oct 2023 21:42:06 +0300 Subject: [PATCH 104/146] Remove the logic to look into the exception specifics with Reflection and just simply always retry --- src/Commands/Search/SubmitSearchQuery.cs | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/src/Commands/Search/SubmitSearchQuery.cs b/src/Commands/Search/SubmitSearchQuery.cs index 3fdb70b0e..588160c37 100644 --- a/src/Commands/Search/SubmitSearchQuery.cs +++ b/src/Commands/Search/SubmitSearchQuery.cs @@ -6,7 +6,6 @@ using System.Collections.Generic; using System.Linq; using System.Threading; -using System.Reflection; namespace PnP.PowerShell.Commands.Search { @@ -184,24 +183,11 @@ internal IEnumerable Run() } // If we're not retrying, or if we're on the last retry, don't catch the exception catch (Exception ex) when (RetryCount > 0 && iterator < RetryCount) - { - // use reflection to find if the Exception has a property called "ServerErrorTypeName" and if so, check if its value is "Microsoft.Office.Server.Search.Query.InternalQueryErrorException" - var serverErrorTypeNameProperty = ex.GetType().GetProperty("ServerErrorTypeName", BindingFlags.Instance | BindingFlags.Public); - if (serverErrorTypeNameProperty != null) - { - var serverErrorTypeName = serverErrorTypeNameProperty.GetValue(ex); - if (serverErrorTypeName != null && serverErrorTypeName.ToString().Equals("Microsoft.Office.Server.Search.Query.InternalQueryErrorException", StringComparison.InvariantCultureIgnoreCase)) - { - // This was a "Microsoft.Office.Server.Search.Query.InternalQueryErrorException" which is safe to retry as-is (it's often transient) - // It's the one that says "Search has encountered a problem that prevents results from being returned. If the issue persists, please contact your administrator." - // Swallow the exception and retry (with incremental backoff) - Thread.Sleep(4000 * (iterator+1)); + { + // Swallow the exception and retry (with incremental backoff) + Thread.Sleep(4000 * (iterator+1)); - continue; - } - } - // Rethrow the exception if it wasn't one warranting a retry - throw; + continue; } } startRow += rowLimit; From 34560fa1b2194da593005b4eb3072635dd8c546f Mon Sep 17 00:00:00 2001 From: "Antti K. Koskela" Date: Sun, 22 Oct 2023 22:27:12 +0300 Subject: [PATCH 105/146] Update wait time to match documentation. --- src/Commands/Search/SubmitSearchQuery.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/Search/SubmitSearchQuery.cs b/src/Commands/Search/SubmitSearchQuery.cs index 588160c37..5c38bbe74 100644 --- a/src/Commands/Search/SubmitSearchQuery.cs +++ b/src/Commands/Search/SubmitSearchQuery.cs @@ -185,7 +185,7 @@ internal IEnumerable Run() catch (Exception ex) when (RetryCount > 0 && iterator < RetryCount) { // Swallow the exception and retry (with incremental backoff) - Thread.Sleep(4000 * (iterator+1)); + Thread.Sleep(5000 * (iterator+1)); continue; } From 0b2e48d1b5bbaa88d895951249bb849b268206c2 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Mon, 23 Oct 2023 02:39:04 +0000 Subject: [PATCH 106/146] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 5538 +++++++++-------- version.txt | 2 +- 3 files changed, 2777 insertions(+), 2765 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 3f23ebd9c..43cd32a8c 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -a800046d2841445f524885fe5dfd7c6beef30c59 \ No newline at end of file +ad8bfae6fe16da2a3238cd4ff1962827ff4ba59b \ 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 db5b34b61..a6ca3cbaf 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9548 +1,9560 @@ [ { - "Rank": 1, "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -List \"Demo List\"", + "Rank": 1, "Id": 1 }, { - "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)", + "Rank": 2, "Id": 2 }, { - "Rank": 3, "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Rank": 3, "Id": 3 }, { - "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))", + "Rank": 4, "Id": 4 }, { - "Rank": 1, "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg", + "Rank": 1, "Id": 5 }, { - "Rank": 2, "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "Rank": 2, "Id": 6 }, { - "Rank": 3, "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "Rank": 3, "Id": 7 }, { - "Rank": 4, "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "Rank": 4, "Id": 8 }, { - "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`\"}", + "Rank": 1, "Id": 9 }, { - "Rank": 1, "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "Rank": 1, "Id": 10 }, { - "Rank": 2, "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "Rank": 2, "Id": 11 }, { - "Rank": 1, "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "Id": 12 }, { - "Rank": 2, "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "Id": 13 }, { - "Rank": 3, "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Rank": 3, "Id": 14 }, { - "Rank": 1, "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "Id": 15 }, { - "Rank": 2, "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "Id": 16 }, { - "Rank": 3, "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Rank": 3, "Id": 17 }, { - "Rank": 1, "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", + "Rank": 1, "Id": 18 }, { - "Rank": 2, "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", + "Rank": 2, "Id": 19 }, { - "Rank": 1, "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", + "Rank": 1, "Id": 20 }, { - "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\"", + "Rank": 2, "Id": 21 }, { - "Rank": 3, "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", + "Rank": 3, "Id": 22 }, { - "Rank": 4, "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\"", + "Rank": 4, "Id": 23 }, { - "Rank": 5, "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", + "Rank": 5, "Id": 24 }, { - "Rank": 1, "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "Rank": 1, "Id": 25 }, { - "Rank": 2, "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "Rank": 2, "Id": 26 }, { - "Rank": 1, "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Rank": 1, "Id": 27 }, { - "Rank": 2, "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Rank": 2, "Id": 28 }, { - "Rank": 1, "CommandName": "Add-PnPContentTypeToList", "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "Rank": 1, "Id": 29 }, { - "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`\"}\"", + "Rank": 1, "Id": 30 }, { - "Rank": 1, "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "Rank": 1, "Id": 31 }, { - "Rank": 2, "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "Rank": 2, "Id": 32 }, { - "Rank": 1, "CommandName": "Add-PnPDocumentSet", "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "Rank": 1, "Id": 33 }, { - "Rank": 1, "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", + "Rank": 1, "Id": 34 }, { - "Rank": 2, "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", + "Rank": 2, "Id": 35 }, { - "Rank": 3, "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", + "Rank": 3, "Id": 36 }, { - "Rank": 4, "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", + "Rank": 4, "Id": 37 }, { - "Rank": 1, "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "Rank": 1, "Id": 38 }, { - "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\"", + "Rank": 2, "Id": 39 }, { - "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\"", + "Rank": 3, "Id": 40 }, { - "Rank": 4, "CommandName": "Add-PnPField", "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "Rank": 4, "Id": 41 }, { - "Rank": 5, "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", + "Rank": 5, "Id": 42 }, { - "Rank": 6, "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "Rank": 6, "Id": 43 }, { - "Rank": 1, "CommandName": "Add-PnPFieldToContentType", "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Rank": 1, "Id": 44 }, { - "Rank": 1, "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "Rank": 1, "Id": 45 }, { - "Rank": 2, "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "Rank": 2, "Id": 46 }, { - "Rank": 3, "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 3, "Id": 47 }, { - "Rank": 4, "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", + "Rank": 4, "Id": 48 }, { - "Rank": 5, "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 5, "Id": 49 }, { - "Rank": 6, "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", + "Rank": 6, "Id": 50 }, { - "Rank": 7, "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "Rank": 7, "Id": 51 }, { - "Rank": 8, "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "Rank": 8, "Id": 52 }, { - "Rank": 1, "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, "Id": 53 }, { - "Rank": 2, "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", + "Rank": 2, "Id": 54 }, { - "Rank": 3, "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", + "Rank": 3, "Id": 55 }, { - "Rank": 1, "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, "Id": 56 }, { - "Rank": 2, "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "Rank": 2, "Id": 57 }, { - "Rank": 1, "CommandName": "Add-PnPFileSharingInvite", "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "Rank": 1, "Id": 58 }, { - "Rank": 2, "CommandName": "Add-PnPFileSharingInvite", "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "Rank": 2, "Id": 59 }, { - "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)", + "Rank": 3, "Id": 60 }, { - "Rank": 1, "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "Rank": 1, "Id": 61 }, { - "Rank": 2, "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", + "Rank": 2, "Id": 62 }, { - "Rank": 3, "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", + "Rank": 3, "Id": 63 }, { - "Rank": 4, "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "Rank": 4, "Id": 64 }, { - "Rank": 5, "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "Rank": 5, "Id": 65 }, { - "Rank": 1, "CommandName": "Add-PnPFileUserSharingLink", "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "Id": 66 }, { - "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\"", + "Rank": 2, "Id": 67 }, { - "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", + "Rank": 1, "Id": 68 }, { - "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", + "Rank": 2, "Id": 69 }, { - "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", + "Rank": 3, "Id": 70 }, { - "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", + "Rank": 4, "Id": 71 }, { - "Rank": 1, "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Rank": 1, "Id": 72 }, { - "Rank": 2, "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "Rank": 2, "Id": 73 }, { - "Rank": 3, "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "Rank": 3, "Id": 74 }, { - "Rank": 1, "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, "Id": 75 }, { - "Rank": 2, "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", + "Rank": 2, "Id": 76 }, { - "Rank": 3, "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", + "Rank": 3, "Id": 77 }, { - "Rank": 1, "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, "Id": 78 }, { - "Rank": 2, "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "Rank": 2, "Id": 79 }, { - "Rank": 1, "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "Rank": 1, "Id": 80 }, { - "Rank": 2, "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "Rank": 2, "Id": 81 }, { - "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)", + "Rank": 3, "Id": 82 }, { - "Rank": 1, "CommandName": "Add-PnPFolderUserSharingLink", "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "Id": 83 }, { - "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\"", + "Rank": 2, "Id": 84 }, { - "Rank": 1, "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Rank": 1, "Id": 85 }, { - "Rank": 2, "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "Rank": 2, "Id": 86 }, { - "Rank": 1, "CommandName": "Add-PnPHtmlPublishingPageLayout", "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Rank": 1, "Id": 87 }, { - "Rank": 1, "CommandName": "Add-PnPHubSiteAssociation", "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", + "Rank": 1, "Id": 88 }, { - "Rank": 1, "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "Rank": 1, "Id": 89 }, { - "Rank": 2, "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", + "Rank": 2, "Id": 90 }, { - "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\"", + "Rank": 3, "Id": 91 }, { - "Rank": 1, "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "Rank": 1, "Id": 92 }, { - "Rank": 2, "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "Rank": 2, "Id": 93 }, { - "Rank": 1, "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", + "Rank": 1, "Id": 94 }, { - "Rank": 2, "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "Rank": 2, "Id": 95 }, { - "Rank": 1, "CommandName": "Add-PnPListDesign", "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "Rank": 1, "Id": 96 }, { - "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\"", + "Rank": 2, "Id": 97 }, { - "Rank": 1, "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "Rank": 1, "Id": 98 }, { - "Rank": 2, "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "Rank": 2, "Id": 99 }, { - "Rank": 3, "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "Rank": 3, "Id": 100 }, { - "Rank": 1, "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 1, "Id": 101 }, { - "Rank": 2, "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 2, "Id": 102 }, { - "Rank": 3, "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "Rank": 3, "Id": 103 }, { - "Rank": 4, "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", + "Rank": 4, "Id": 104 }, { - "Rank": 5, "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "Rank": 5, "Id": 105 }, { - "Rank": 1, "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", + "Rank": 1, "Id": 106 }, { - "Rank": 2, "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", + "Rank": 2, "Id": 107 }, { - "Rank": 3, "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "Rank": 3, "Id": 108 }, { - "Rank": 1, "CommandName": "Add-PnPListItemComment", "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "Rank": 1, "Id": 109 }, { - "Rank": 1, "CommandName": "Add-PnPMasterPage", "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "Rank": 1, "Id": 110 }, { - "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "Id": 111 }, { - "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "Id": 112 }, { - "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "Id": 113 }, { - "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "Id": 114 }, { - "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", + "Rank": 1, "Id": 115 }, { - "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "Rank": 2, "Id": 116 }, { - "Rank": 3, "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "Rank": 3, "Id": 117 }, { - "Rank": 1, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "Rank": 1, "Id": 118 }, { - "Rank": 2, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", + "Rank": 2, "Id": 119 }, { - "Rank": 3, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "Rank": 3, "Id": 120 }, { - "Rank": 4, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", + "Rank": 4, "Id": 121 }, { - "Rank": 5, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "Rank": 5, "Id": 122 }, { - "Rank": 6, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "Rank": 6, "Id": 123 }, { - "Rank": 7, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "Rank": 7, "Id": 124 }, { - "Rank": 8, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "Rank": 8, "Id": 125 }, { - "Rank": 1, "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", + "Rank": 1, "Id": 126 }, { - "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\"", + "Rank": 2, "Id": 127 }, { - "Rank": 3, "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "Rank": 3, "Id": 128 }, { - "Rank": 1, "CommandName": "Add-PnPOrgNewsSite", "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "Rank": 1, "Id": 129 }, { - "Rank": 1, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\"", + "Rank": 1, "Id": 130 }, { - "Rank": 2, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "Rank": 2, "Id": 131 }, { - "Rank": 3, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "Rank": 3, "Id": 132 }, { - "Rank": 4, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "Rank": 4, "Id": 133 }, { - "Rank": 5, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "Rank": 5, "Id": 134 }, { - "Rank": 6, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "Rank": 6, "Id": 135 }, { - "Rank": 7, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "Rank": 7, "Id": 136 }, { - "Rank": 8, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "Rank": 8, "Id": 137 }, { - "Rank": 9, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Rank": 9, "Id": 138 }, { - "Rank": 10, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Rank": 10, "Id": 139 }, { - "Rank": 1, "CommandName": "Add-PnPPageImageWebPart", "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", + "Rank": 1, "Id": 140 }, { - "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\"", + "Rank": 2, "Id": 141 }, { - "Rank": 1, "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "Rank": 1, "Id": 142 }, { - "Rank": 2, "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "Rank": 2, "Id": 143 }, { - "Rank": 1, "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "Rank": 1, "Id": 144 }, { - "Rank": 2, "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", + "Rank": 2, "Id": 145 }, { - "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\"", + "Rank": 3, "Id": 146 }, { - "Rank": 1, "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "Rank": 1, "Id": 147 }, { - "Rank": 2, "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "Rank": 2, "Id": 148 }, { - "Rank": 3, "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "Rank": 3, "Id": 149 }, { - "Rank": 1, "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "Rank": 1, "Id": 150 }, { - "Rank": 2, "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "Rank": 2, "Id": 151 }, { - "Rank": 1, "CommandName": "Add-PnPPlannerRoster", "Command": "Add-PnPPlannerRoster", + "Rank": 1, "Id": 152 }, { - "Rank": 1, "CommandName": "Add-PnPPlannerRosterMember", "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, "Id": 153 }, { - "Rank": 1, "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Rank": 1, "Id": 154 }, { - "Rank": 2, "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Rank": 2, "Id": 155 }, { - "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\"", + "Rank": 3, "Id": 156 }, { - "Rank": 1, "CommandName": "Add-PnPPublishingImageRendition", "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Rank": 1, "Id": 157 }, { - "Rank": 1, "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", + "Rank": 1, "Id": 158 }, { - "Rank": 2, "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "Rank": 2, "Id": 159 }, { - "Rank": 1, "CommandName": "Add-PnPPublishingPageLayout", "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Rank": 1, "Id": 160 }, { - "Rank": 1, "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "Rank": 1, "Id": 161 }, { - "Rank": 2, "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "Rank": 2, "Id": 162 }, { - "Rank": 3, "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "Rank": 3, "Id": 163 }, { - "Rank": 1, "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 1, "Id": 164 }, { - "Rank": 2, "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 2, "Id": 165 }, { - "Rank": 3, "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "Rank": 3, "Id": 166 }, { - "Rank": 1, "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog", + "Rank": 1, "Id": 167 }, { - "Rank": 2, "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Rank": 2, "Id": 168 }, { - "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", + "Rank": 1, "Id": 169 }, { - "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", + "Rank": 2, "Id": 170 }, { - "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\"", + "Rank": 3, "Id": 171 }, { - "Rank": 1, "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", + "Rank": 1, "Id": 172 }, { - "Rank": 2, "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Rank": 2, "Id": 173 }, { - "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", + "Rank": 3, "Id": 174 }, { - "Rank": 1, "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "Rank": 1, "Id": 175 }, { - "Rank": 2, "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Rank": 2, "Id": 176 }, { - "Rank": 1, "CommandName": "Add-PnPSiteScript", "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "Rank": 1, "Id": 177 }, { - "Rank": 1, "CommandName": "Add-PnPSiteScriptPackage", "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", + "Rank": 1, "Id": 178 }, { - "Rank": 1, "CommandName": "Add-PnPSiteTemplate", "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "Rank": 1, "Id": 179 }, { - "Rank": 1, "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", + "Rank": 1, "Id": 180 }, { - "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)", + "Rank": 2, "Id": 181 }, { - "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\"", + "Rank": 3, "Id": 182 }, { - "Rank": 1, "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "Rank": 1, "Id": 183 }, { - "Rank": 2, "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "Rank": 2, "Id": 184 }, { - "Rank": 1, "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "Rank": 1, "Id": 185 }, { - "Rank": 2, "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "Rank": 2, "Id": 186 }, { - "Rank": 3, "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "Rank": 3, "Id": 187 }, { - "Rank": 4, "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", + "Rank": 4, "Id": 188 }, { - "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", + "Rank": 1, "Id": 189 }, { - "Rank": 2, "CommandName": "Add-PnpTeamsChannelUser", "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", + "Rank": 2, "Id": 190 }, { - "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\"", + "Rank": 1, "Id": 191 }, { - "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\"", + "Rank": 2, "Id": 192 }, { - "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\"", + "Rank": 3, "Id": 193 }, { - "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", + "Rank": 4, "Id": 194 }, { - "Rank": 1, "CommandName": "Add-PnPTeamsTeam", "Command": "Add-PnPTeamsTeam", + "Rank": 1, "Id": 195 }, { - "Rank": 1, "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 1, "Id": 196 }, { - "Rank": 2, "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Rank": 2, "Id": 197 }, { - "Rank": 3, "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "Rank": 3, "Id": 198 }, { - "Rank": 4, "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "Rank": 4, "Id": 199 }, { - "Rank": 1, "CommandName": "Add-PnPTenantCdnOrigin", "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Rank": 1, "Id": 200 }, { - "Rank": 1, "CommandName": "Add-PnPTenantSequence", "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "Rank": 1, "Id": 201 }, { - "Rank": 1, "CommandName": "Add-PnPTenantSequenceSite", "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "Rank": 1, "Id": 202 }, { - "Rank": 1, "CommandName": "Add-PnPTenantSequenceSubSite", "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "Rank": 1, "Id": 203 }, { - "Rank": 1, "CommandName": "Add-PnPTermToTerm", "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "Rank": 1, "Id": 204 }, { - "Rank": 1, "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", + "Rank": 1, "Id": 205 }, { - "Rank": 2, "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", + "Rank": 2, "Id": 206 }, { - "Rank": 3, "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "Rank": 3, "Id": 207 }, { - "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\"", + "Rank": 1, "Id": 208 }, { - "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\"", + "Rank": 2, "Id": 209 }, { - "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\"", + "Rank": 3, "Id": 210 }, { - "Rank": 1, "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Rank": 1, "Id": 211 }, { - "Rank": 2, "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "Rank": 2, "Id": 212 }, { - "Rank": 3, "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", + "Rank": 3, "Id": 213 }, { - "Rank": 1, "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", + "Rank": 1, "Id": 214 }, { - "Rank": 2, "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", + "Rank": 2, "Id": 215 }, { - "Rank": 1, "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", + "Rank": 1, "Id": 216 }, { - "Rank": 2, "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", + "Rank": 2, "Id": 217 }, { - "Rank": 1, "CommandName": "Add-PnPWikiPage", "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "Rank": 1, "Id": 218 }, { - "Rank": 1, "CommandName": "Clear-PnPAzureADGroupMember", "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "Rank": 1, "Id": 219 }, { - "Rank": 1, "CommandName": "Clear-PnPAzureADGroupOwner", "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "Rank": 1, "Id": 220 }, { - "Rank": 1, "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "Rank": 1, "Id": 221 }, { - "Rank": 2, "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "Rank": 2, "Id": 222 }, { - "Rank": 1, "CommandName": "Clear-PnPListItemAsRecord", "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1, "Id": 223 }, { - "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupMember", "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "Rank": 1, "Id": 224 }, { - "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "Rank": 1, "Id": 225 }, { - "Rank": 1, "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1, "Id": 226 }, { - "Rank": 2, "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "Rank": 2, "Id": 227 }, { - "Rank": 3, "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "Rank": 3, "Id": 228 }, { - "Rank": 1, "CommandName": "Clear-PnPTenantAppCatalogUrl", "Command": "Clear-PnPTenantAppCatalogUrl", + "Rank": 1, "Id": 229 }, { - "Rank": 1, "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "Id": 230 }, { - "Rank": 2, "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Rank": 2, "Id": 231 }, { - "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\"", + "Rank": 1, "Id": 232 }, { - "Rank": 1, "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "Rank": 1, "Id": 233 }, { - "Rank": 2, "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "Rank": 2, "Id": 234 }, { - "Rank": 1, "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml", + "Rank": 1, "Id": 235 }, { - "Rank": 2, "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "Rank": 2, "Id": 236 }, { - "Rank": 3, "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "Rank": 3, "Id": 237 }, { - "Rank": 1, "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "Rank": 1, "Id": 238 }, { - "Rank": 2, "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "Rank": 2, "Id": 239 }, { - "Rank": 1, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "Rank": 1, "Id": 240 }, { - "Rank": 2, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "Rank": 2, "Id": 241 }, { - "Rank": 3, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "Rank": 3, "Id": 242 }, { - "Rank": 4, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "Rank": 4, "Id": 243 }, { - "Rank": 5, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 5, "Id": 244 }, { - "Rank": 6, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "Rank": 6, "Id": 245 }, { - "Rank": 7, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "Rank": 7, "Id": 246 }, { - "Rank": 8, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "Rank": 8, "Id": 247 }, { - "Rank": 9, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 9, "Id": 248 }, { - "Rank": 10, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "Rank": 10, "Id": 249 }, { - "Rank": 11, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "Rank": 11, "Id": 250 }, { - "Rank": 12, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 12, "Id": 251 }, { - "Rank": 13, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 13, "Id": 252 }, { - "Rank": 14, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "Rank": 14, "Id": 253 }, { - "Rank": 1, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 1, "Id": 254 }, { - "Rank": 2, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Rank": 2, "Id": 255 }, { - "Rank": 3, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Rank": 3, "Id": 256 }, { - "Rank": 4, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 4, "Id": 257 }, { - "Rank": 5, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Rank": 5, "Id": 258 }, { - "Rank": 6, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Rank": 6, "Id": 259 }, { - "Rank": 7, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Rank": 7, "Id": 260 }, { - "Rank": 8, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 8, "Id": 261 }, { - "Rank": 9, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Rank": 9, "Id": 262 }, { - "Rank": 10, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Rank": 10, "Id": 263 }, { - "Rank": 1, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 1, "Id": 264 }, { - "Rank": 2, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Rank": 2, "Id": 265 }, { - "Rank": 3, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Rank": 3, "Id": 266 }, { - "Rank": 4, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 4, "Id": 267 }, { - "Rank": 5, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Rank": 5, "Id": 268 }, { - "Rank": 6, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Rank": 6, "Id": 269 }, { - "Rank": 7, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Rank": 7, "Id": 270 }, { - "Rank": 8, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 8, "Id": 271 }, { - "Rank": 9, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Rank": 9, "Id": 272 }, { - "Rank": 10, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Rank": 10, "Id": 273 }, { - "Rank": 1, "CommandName": "Copy-PnPItemProxy", "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "Rank": 1, "Id": 274 }, { - "Rank": 1, "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "Rank": 1, "Id": 275 }, { - "Rank": 2, "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", + "Rank": 2, "Id": 276 }, { - "Rank": 3, "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "Rank": 3, "Id": 277 }, { - "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\\", + "Rank": 4, "Id": 278 }, { - "Rank": 1, "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "Rank": 1, "Id": 279 }, { - "Rank": 2, "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "Rank": 2, "Id": 280 }, { - "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", + "Rank": 3, "Id": 281 }, { - "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", + "Rank": 4, "Id": 282 }, { - "Rank": 1, "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "Id": 283 }, { - "Rank": 2, "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2, "Id": 284 }, { - "Rank": 3, "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3, "Id": 285 }, { - "Rank": 1, "CommandName": "Disable-PnPPageScheduling", "Command": "Disable-PnPPageScheduling", + "Rank": 1, "Id": 286 }, { - "Rank": 1, "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry", + "Rank": 1, "Id": 287 }, { - "Rank": 2, "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry -Force", + "Rank": 2, "Id": 288 }, { - "Rank": 1, "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Command": "Disable-PnPSharingForNonOwnersOfSite", + "Rank": 1, "Id": 289 }, { - "Rank": 1, "CommandName": "Disable-PnPSiteClassification", "Command": "Disable-PnPSiteClassification", + "Rank": 1, "Id": 290 }, { - "Rank": 1, "CommandName": "Disconnect-PnPOnline", "Command": "Disconnect-PnPOnline", + "Rank": 1, "Id": 291 }, { - "Rank": 1, "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite", + "Rank": 1, "Id": 292 }, { - "Rank": 2, "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "Rank": 2, "Id": 293 }, { - "Rank": 1, "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "Id": 294 }, { - "Rank": 2, "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2, "Id": 295 }, { - "Rank": 3, "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3, "Id": 296 }, { - "Rank": 1, "CommandName": "Enable-PnPPageScheduling", "Command": "Enable-PnPPageScheduling", + "Rank": 1, "Id": 297 }, { - "Rank": 1, "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry", + "Rank": 1, "Id": 298 }, { - "Rank": 2, "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry -Force", + "Rank": 2, "Id": 299 }, { - "Rank": 1, "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "Rank": 1, "Id": 300 }, { - "Rank": 2, "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 2, "Id": 301 }, { - "Rank": 1, "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "Rank": 1, "Id": 302 }, { - "Rank": 2, "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "Rank": 2, "Id": 303 }, { - "Rank": 1, "CommandName": "Export-PnPPage", "Command": "Export-PnPPage -Identity Home.aspx", + "Rank": 1, "Id": 304 }, { - "Rank": 1, "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "Rank": 1, "Id": 305 }, { - "Rank": 2, "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "Rank": 2, "Id": 306 }, { - "Rank": 3, "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "Rank": 3, "Id": 307 }, { - "Rank": 1, "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy", + "Rank": 1, "Id": 308 }, { - "Rank": 2, "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "Rank": 2, "Id": 309 }, { - "Rank": 3, "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", + "Rank": 3, "Id": 310 }, { - "Rank": 4, "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "Rank": 4, "Id": 311 }, { - "Rank": 1, "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml", + "Rank": 1, "Id": 312 }, { - "Rank": 2, "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out output.xml", + "Rank": 2, "Id": 313 }, { - "Rank": 3, "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "Rank": 3, "Id": 314 }, { - "Rank": 1, "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Rank": 1, "Id": 315 }, { - "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", + "Rank": 2, "Id": 316 }, { - "Rank": 1, "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "Rank": 1, "Id": 317 }, { - "Rank": 2, "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "Rank": 2, "Id": 318 }, { - "Rank": 1, "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Match *.master", + "Rank": 1, "Id": 319 }, { - "Rank": 2, "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "Rank": 2, "Id": 320 }, { - "Rank": 3, "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "Rank": 3, "Id": 321 }, { - "Rank": 1, "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken", + "Rank": 1, "Id": 322 }, { - "Rank": 2, "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -Decoded", + "Rank": 2, "Id": 323 }, { - "Rank": 3, "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "Rank": 3, "Id": 324 }, { - "Rank": 4, "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "Rank": 4, "Id": 325 }, { - "Rank": 5, "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "Rank": 5, "Id": 326 }, { - "Rank": 1, "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert", + "Rank": 1, "Id": 327 }, { - "Rank": 2, "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\"", + "Rank": 2, "Id": 328 }, { - "Rank": 3, "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Rank": 3, "Id": 329 }, { - "Rank": 4, "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "Rank": 4, "Id": 330 }, { - "Rank": 5, "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -AllUsers", + "Rank": 5, "Id": 331 }, { - "Rank": 6, "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "Rank": 6, "Id": 332 }, { - "Rank": 1, "CommandName": "Get-PnPApp", "Command": "Get-PnPApp", + "Rank": 1, "Id": 333 }, { - "Rank": 2, "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Scope Site", + "Rank": 2, "Id": 334 }, { - "Rank": 3, "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 3, "Id": 335 }, { - "Rank": 1, "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "Rank": 1, "Id": 336 }, { - "Rank": 2, "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "Rank": 2, "Id": 337 }, { - "Rank": 1, "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "Rank": 1, "Id": 338 }, { - "Rank": 2, "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 2, "Id": 339 }, { - "Rank": 3, "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "Rank": 3, "Id": 340 }, { - "Rank": 1, "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer", + "Rank": 1, "Id": 341 }, { - "Rank": 2, "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2, "Id": 342 }, { - "Rank": 3, "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "Rank": 3, "Id": 343 }, { - "Rank": 1, "CommandName": "Get-PnPAuditing", "Command": "Get-PnPAuditing", + "Rank": 1, "Id": 344 }, { - "Rank": 1, "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm", + "Rank": 1, "Id": 345 }, { - "Rank": 2, "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "Rank": 2, "Id": 346 }, { - "Rank": 1, "CommandName": "Get-PnPAvailableLanguage", "Command": "Get-PnPAvailableLanguage", + "Rank": 1, "Id": 347 }, { - "Rank": 1, "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel", + "Rank": 1, "Id": 348 }, { - "Rank": 2, "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "Rank": 2, "Id": 349 }, { - "Rank": 3, "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "Rank": 3, "Id": 350 }, { - "Rank": 1, "CommandName": "Get-PnPAvailableSiteClassification", "Command": "Get-PnPAvailableSiteClassification", + "Rank": 1, "Id": 351 }, { - "Rank": 1, "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal", + "Rank": 1, "Id": 352 }, { - "Rank": 2, "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "Rank": 2, "Id": 353 }, { - "Rank": 3, "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "Rank": 3, "Id": 354 }, { - "Rank": 4, "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "Rank": 4, "Id": 355 }, { - "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 1, "Id": 356 }, { - "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "Rank": 2, "Id": 357 }, { - "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "Rank": 3, "Id": 358 }, { - "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn", + "Rank": 1, "Id": 359 }, { - "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "Rank": 2, "Id": 360 }, { - "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "Rank": 3, "Id": 361 }, { - "Rank": 1, "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp", + "Rank": 1, "Id": 362 }, { - "Rank": 2, "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity MyApp", + "Rank": 2, "Id": 363 }, { - "Rank": 3, "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3, "Id": 364 }, { - "Rank": 4, "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "Rank": 4, "Id": 365 }, { - "Rank": 1, "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission", + "Rank": 1, "Id": 366 }, { - "Rank": 2, "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "Rank": 2, "Id": 367 }, { - "Rank": 3, "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3, "Id": 368 }, { - "Rank": 1, "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission", + "Rank": 1, "Id": 369 }, { - "Rank": 2, "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "Rank": 2, "Id": 370 }, { - "Rank": 3, "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "Rank": 3, "Id": 371 }, { - "Rank": 4, "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "Rank": 4, "Id": 372 }, { - "Rank": 5, "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "Rank": 5, "Id": 373 }, { - "Rank": 1, "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup", + "Rank": 1, "Id": 374 }, { - "Rank": 2, "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupId", + "Rank": 2, "Id": 375 }, { - "Rank": 3, "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "Rank": 3, "Id": 376 }, { - "Rank": 4, "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "Rank": 4, "Id": 377 }, { - "Rank": 5, "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $group", + "Rank": 5, "Id": 378 }, { - "Rank": 1, "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "Rank": 1, "Id": 379 }, { - "Rank": 2, "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $group", + "Rank": 2, "Id": 380 }, { - "Rank": 1, "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "Rank": 1, "Id": 381 }, { - "Rank": 2, "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "Rank": 2, "Id": 382 }, { - "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal", + "Rank": 1, "Id": 383 }, { - "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "Rank": 2, "Id": 384 }, { - "Rank": 3, "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "Rank": 3, "Id": 385 }, { - "Rank": 4, "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "Rank": 4, "Id": 386 }, { - "Rank": 5, "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "Rank": 5, "Id": 387 }, { - "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1, "Id": 388 }, { - "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 2, "Id": 389 }, { - "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1, "Id": 390 }, { - "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "Rank": 2, "Id": 391 }, { - "Rank": 1, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser", + "Rank": 1, "Id": 392 }, { - "Rank": 2, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -EndIndex 50", + "Rank": 2, "Id": 393 }, { - "Rank": 3, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 3, "Id": 394 }, { - "Rank": 4, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "Rank": 4, "Id": 395 }, { - "Rank": 5, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "Rank": 5, "Id": 396 }, { - "Rank": 6, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "Rank": 6, "Id": 397 }, { - "Rank": 7, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "Rank": 7, "Id": 398 }, { - "Rank": 8, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta", + "Rank": 8, "Id": 399 }, { - "Rank": 9, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "Rank": 9, "Id": 400 }, { - "Rank": 10, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "Rank": 10, "Id": 401 }, { - "Rank": 1, "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "Rank": 1, "Id": 402 }, { - "Rank": 2, "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "Rank": 2, "Id": 403 }, { - "Rank": 3, "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "Rank": 3, "Id": 404 }, { - "Rank": 1, "CommandName": "Get-PnPBrowserIdleSignout", "Command": "Get-PnPBrowserIdleSignout", + "Rank": 1, "Id": 405 }, { - "Rank": 1, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "Rank": 1, "Id": 406 }, { - "Rank": 2, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 2, "Id": 407 }, { - "Rank": 1, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 1, "Id": 408 }, { - "Rank": 2, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "Rank": 2, "Id": 409 }, { - "Rank": 3, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "Rank": 3, "Id": 410 }, { - "Rank": 4, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 4, "Id": 411 }, { - "Rank": 5, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "Rank": 5, "Id": 412 }, { - "Rank": 1, "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog", + "Rank": 1, "Id": 413 }, { - "Rank": 2, "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog -Nightly", + "Rank": 2, "Id": 414 }, { - "Rank": 1, "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "Rank": 1, "Id": 415 }, { - "Rank": 2, "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "Rank": 2, "Id": 416 }, { - "Rank": 1, "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType", + "Rank": 1, "Id": 417 }, { - "Rank": 2, "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -InSiteHierarchy", + "Rank": 2, "Id": 418 }, { - "Rank": 3, "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Identity \"Project Document\"", + "Rank": 3, "Id": 419 }, { - "Rank": 4, "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -List \"Documents\"", + "Rank": 4, "Id": 420 }, { - "Rank": 1, - "CommandName": "Get-PnPContentTypePublishingStatus", - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -Includes \"SchemaXml\"", + "Rank": 5, "Id": 421 }, { + "CommandName": "Get-PnPContentTypePublishingStatus", + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Rank": 1, + "Id": 422 + }, + { "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction", - "Id": 422 + "Rank": 1, + "Id": 423 }, { - "Rank": 2, "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 423 + "Rank": 2, + "Id": 424 }, { - "Rank": 3, "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Scope web", - "Id": 424 + "Rank": 3, + "Id": 425 }, { - "Rank": 1, "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group", - "Id": 425 + "Rank": 1, + "Id": 426 }, { - "Rank": 2, "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 426 + "Rank": 2, + "Id": 427 }, { - "Rank": 1, "CommandName": "Get-PnPDeletedTeam", "Command": "Get-PnPDeletedTeam", - "Id": 427 + "Rank": 1, + "Id": 428 }, { - "Rank": 1, "CommandName": "Get-PnPDiagnostics", "Command": "Get-PnPDiagnostics", - "Id": 428 + "Rank": 1, + "Id": 429 }, { - "Rank": 1, "CommandName": "Get-PnPDisableSpacesActivation", "Command": "Get-PnPDisableSpacesActivation", - "Id": 429 + "Rank": 1, + "Id": 430 }, { - "Rank": 1, "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Id": 430 + "Rank": 1, + "Id": 431 }, { - "Rank": 2, "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Id": 431 + "Rank": 2, + "Id": 432 }, { - "Rank": 1, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver", - "Id": 432 + "Rank": 1, + "Id": 433 }, { - "Rank": 2, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 433 + "Rank": 2, + "Id": 434 }, { - "Rank": 3, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Id": 434 + "Rank": 3, + "Id": 435 }, { - "Rank": 4, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Id": 435 + "Rank": 4, + "Id": 436 }, { - "Rank": 5, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 436 + "Rank": 5, + "Id": 437 }, { - "Rank": 6, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Id": 437 + "Rank": 6, + "Id": 438 }, { - "Rank": 7, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Site", - "Id": 438 + "Rank": 7, + "Id": 439 }, { - "Rank": 8, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Web", - "Id": 439 + "Rank": 8, + "Id": 440 }, { - "Rank": 9, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope All", - "Id": 440 + "Rank": 9, + "Id": 441 }, { - "Rank": 1, "CommandName": "Get-PnPException", "Command": "Get-PnPException", - "Id": 441 + "Rank": 1, + "Id": 442 }, { - "Rank": 2, "CommandName": "Get-PnPException", "Command": "Get-PnPException -All", - "Id": 442 + "Rank": 2, + "Id": 443 }, { - "Rank": 1, "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Id": 443 + "Rank": 1, + "Id": 444 }, { - "Rank": 2, "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Id": 444 + "Rank": 2, + "Id": 445 }, { - "Rank": 1, "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature", - "Id": 445 + "Rank": 1, + "Id": 446 }, { - "Rank": 2, "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Scope Site", - "Id": 446 + "Rank": 2, + "Id": 447 }, { - "Rank": 3, "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 447 + "Rank": 3, + "Id": 448 }, { - "Rank": 4, "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Id": 448 + "Rank": 4, + "Id": 449 }, { - "Rank": 1, "CommandName": "Get-PnPField", "Command": "Get-PnPField", - "Id": 449 + "Rank": 1, + "Id": 450 }, { - "Rank": 2, "CommandName": "Get-PnPField", "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Id": 450 + "Rank": 2, + "Id": 451 }, { - "Rank": 3, "CommandName": "Get-PnPField", "Command": "Get-PnPField -Group \"Custom Columns\"", - "Id": 451 + "Rank": 3, + "Id": 452 }, { - "Rank": 1, "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Id": 452 + "Rank": 1, + "Id": 453 }, { - "Rank": 2, "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "Id": 453 + "Rank": 2, + "Id": 454 }, { - "Rank": 3, "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Id": 454 + "Rank": 3, + "Id": 455 }, { - "Rank": 4, "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Id": 455 + "Rank": 4, + "Id": 456 }, { - "Rank": 5, "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Id": 456 + "Rank": 5, + "Id": 457 }, { - "Rank": 6, "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "Id": 457 + "Rank": 6, + "Id": 458 }, { - "Rank": 7, "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Id": 458 + "Rank": 7, + "Id": 459 }, { - "Rank": 1, "CommandName": "Get-PnPFileSharingLink", "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 459 + "Rank": 1, + "Id": 460 }, { - "Rank": 1, "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Id": 460 + "Rank": 1, + "Id": 461 }, { - "Rank": 2, "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Id": 461 + "Rank": 2, + "Id": 462 }, { - "Rank": 1, "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -AsAdmin", - "Id": 462 + "Rank": 1, + "Id": 463 }, { - "Rank": 2, "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "Id": 463 + "Rank": 2, + "Id": 464 }, { - "Rank": 3, "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Id": 464 + "Rank": 3, + "Id": 465 }, { - "Rank": 1, "CommandName": "Get-PnPFlowOwner", "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "Id": 465 - }, - { "Rank": 1, + "Id": 466 + }, + { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder", - "Id": 466 + "Rank": 1, + "Id": 467 }, { - "Rank": 2, "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Id": 467 + "Rank": 2, + "Id": 468 }, { - "Rank": 3, "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Id": 468 + "Rank": 3, + "Id": 469 }, { - "Rank": 4, "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Id": 469 + "Rank": 4, + "Id": 470 }, { - "Rank": 1, "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile", - "Id": 470 + "Rank": 1, + "Id": 471 }, { - "Rank": 2, "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -Recurse", - "Id": 471 + "Rank": 2, + "Id": 472 }, { - "Rank": 3, "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "Id": 472 + "Rank": 3, + "Id": 473 }, { - "Rank": 4, "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Id": 473 + "Rank": 4, + "Id": 474 }, { - "Rank": 5, "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Id": 474 + "Rank": 5, + "Id": 475 }, { - "Rank": 1, "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder", - "Id": 475 + "Rank": 1, + "Id": 476 }, { - "Rank": 2, "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Recurse", - "Id": 476 + "Rank": 2, + "Id": 477 }, { - "Rank": 3, "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "Id": 477 + "Rank": 3, + "Id": 478 }, { - "Rank": 4, "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "Id": 478 + "Rank": 4, + "Id": 479 }, { - "Rank": 5, "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "Id": 479 + "Rank": 5, + "Id": 480 }, { - "Rank": 6, "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Id": 480 + "Rank": 6, + "Id": 481 }, { - "Rank": 1, "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem", - "Id": 481 + "Rank": 1, + "Id": 482 }, { - "Rank": 2, "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Recurse", - "Id": 482 + "Rank": 2, + "Id": 483 }, { - "Rank": 3, "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "Id": 483 + "Rank": 3, + "Id": 484 }, { - "Rank": 4, "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Id": 484 + "Rank": 4, + "Id": 485 }, { - "Rank": 5, "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Id": 485 + "Rank": 5, + "Id": 486 }, { - "Rank": 6, "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Id": 486 + "Rank": 6, + "Id": 487 }, { - "Rank": 1, "CommandName": "Get-PnPFolderSharingLink", "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 487 + "Rank": 1, + "Id": 488 }, { - "Rank": 1, "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric", - "Id": 488 + "Rank": 1, + "Id": 489 }, { - "Rank": 2, "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Id": 489 + "Rank": 2, + "Id": 490 }, { - "Rank": 3, "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Id": 490 + "Rank": 3, + "Id": 491 }, { - "Rank": 1, "CommandName": "Get-PnPFooter", "Command": "Get-PnPFooter", - "Id": 491 + "Rank": 1, + "Id": 492 }, { - "Rank": 1, "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken", - "Id": 492 + "Rank": 1, + "Id": 493 }, { - "Rank": 2, "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken -Decoded", - "Id": 493 + "Rank": 2, + "Id": 494 }, { - "Rank": 1, "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription", - "Id": 494 + "Rank": 1, + "Id": 495 }, { - "Rank": 2, "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Id": 495 + "Rank": 2, + "Id": 496 }, { - "Rank": 1, "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup", - "Id": 496 + "Rank": 1, + "Id": 497 }, { - "Rank": 2, "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Id": 497 + "Rank": 2, + "Id": 498 }, { - "Rank": 3, "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Id": 498 + "Rank": 3, + "Id": 499 }, { - "Rank": 1, "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Id": 499 + "Rank": 1, + "Id": 500 }, { - "Rank": 2, "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Id": 500 + "Rank": 2, + "Id": 501 }, { - "Rank": 1, "CommandName": "Get-PnPGroupPermissions", "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Id": 501 + "Rank": 1, + "Id": 502 }, { - "Rank": 1, "CommandName": "Get-PnPHideDefaultThemes", "Command": "Get-PnPHideDefaultThemes", - "Id": 502 + "Rank": 1, + "Id": 503 }, { - "Rank": 1, "CommandName": "Get-PnPHomePage", "Command": "Get-PnPHomePage", - "Id": 503 + "Rank": 1, + "Id": 504 }, { - "Rank": 1, "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite", - "Id": 504 + "Rank": 1, + "Id": 505 }, { - "Rank": 2, "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Id": 505 + "Rank": 2, + "Id": 506 }, { - "Rank": 3, "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -Detailed", - "Id": 506 + "Rank": 3, + "Id": 507 }, { - "Rank": 1, "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite", - "Id": 507 + "Rank": 1, + "Id": 508 }, { - "Rank": 2, "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Id": 508 + "Rank": 2, + "Id": 509 }, { - "Rank": 3, "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Id": 509 + "Rank": 3, + "Id": 510 }, { - "Rank": 1, "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild", - "Id": 510 + "Rank": 1, + "Id": 511 }, { - "Rank": 2, "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Id": 511 + "Rank": 2, + "Id": 512 }, { - "Rank": 1, "CommandName": "Get-PnPInPlaceRecordsManagement", "Command": "Get-PnPInPlaceRecordsManagement", - "Id": 512 + "Rank": 1, + "Id": 513 }, { - "Rank": 1, "CommandName": "Get-PnPIsSiteAliasAvailable", "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Id": 513 + "Rank": 1, + "Id": 514 }, { - "Rank": 1, "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink", - "Id": 514 + "Rank": 1, + "Id": 515 }, { - "Rank": 2, "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope All", - "Id": 515 + "Rank": 2, + "Id": 516 }, { - "Rank": 3, "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Web", - "Id": 516 + "Rank": 3, + "Id": 517 }, { - "Rank": 4, "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Site", - "Id": 517 + "Rank": 4, + "Id": 518 }, { - "Rank": 5, "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Name Test", - "Id": 518 + "Rank": 5, + "Id": 519 }, { - "Rank": 1, "CommandName": "Get-PnPKnowledgeHubSite", "Command": "Get-PnPKnowledgeHubSite", - "Id": 519 + "Rank": 1, + "Id": 520 }, { - "Rank": 1, "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel", - "Id": 520 + "Rank": 1, + "Id": 521 }, { - "Rank": 2, "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Id": 521 + "Rank": 2, + "Id": 522 }, { - "Rank": 1, "CommandName": "Get-PnPLargeListOperationStatus", "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Id": 522 + "Rank": 1, + "Id": 523 }, { - "Rank": 1, "CommandName": "Get-PnPList", "Command": "Get-PnPList", - "Id": 523 + "Rank": 1, + "Id": 524 }, { - "Rank": 2, "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 524 + "Rank": 2, + "Id": 525 }, { - "Rank": 3, "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity Lists/Announcements", - "Id": 525 + "Rank": 3, + "Id": 526 }, { - "Rank": 4, "CommandName": "Get-PnPList", "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Id": 526 + "Rank": 4, + "Id": 527 }, { - "Rank": 5, "CommandName": "Get-PnPList", "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Id": 527 + "Rank": 5, + "Id": 528 }, { - "Rank": 1, "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign", - "Id": 528 + "Rank": 1, + "Id": 529 }, { - "Rank": 2, "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 529 + "Rank": 2, + "Id": 530 }, { - "Rank": 3, "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity ListEvent", - "Id": 530 + "Rank": 3, + "Id": 531 }, { - "Rank": 1, "CommandName": "Get-PnPListInformationRightsManagement", "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Id": 531 + "Rank": 1, + "Id": 532 }, { - "Rank": 1, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks", - "Id": 532 + "Rank": 1, + "Id": 533 }, { - "Rank": 2, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1", - "Id": 533 + "Rank": 2, + "Id": 534 }, { - "Rank": 3, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Id": 534 + "Rank": 3, + "Id": 535 }, { - "Rank": 4, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Id": 535 + "Rank": 4, + "Id": 536 }, { - "Rank": 5, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Id": 536 + "Rank": 5, + "Id": 537 }, { - "Rank": 6, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Id": 537 + "Rank": 6, + "Id": 538 }, { - "Rank": 7, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "Id": 538 + "Rank": 7, + "Id": 539 }, { - "Rank": 8, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Id": 539 + "Rank": 8, + "Id": 540 }, { - "Rank": 9, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Id": 540 + "Rank": 9, + "Id": 541 }, { - "Rank": 1, "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "Id": 541 + "Rank": 1, + "Id": 542 }, { - "Rank": 2, "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "Id": 542 + "Rank": 2, + "Id": 543 }, { - "Rank": 1, "CommandName": "Get-PnPListItemComment", "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Id": 543 + "Rank": 1, + "Id": 544 }, { - "Rank": 1, "CommandName": "Get-PnPListItemPermission", "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Id": 544 + "Rank": 1, + "Id": 545 }, { - "Rank": 1, "CommandName": "Get-PnPListItemVersion", "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Id": 545 + "Rank": 1, + "Id": 546 }, { - "Rank": 1, "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Id": 546 + "Rank": 1, + "Id": 547 }, { - "Rank": 2, "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Id": 547 + "Rank": 2, + "Id": 548 }, { - "Rank": 1, "CommandName": "Get-PnPListRecordDeclaration", "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Id": 548 + "Rank": 1, + "Id": 549 }, { - "Rank": 1, "CommandName": "Get-PnPMasterPage", "Command": "Get-PnPMasterPage", - "Id": 549 + "Rank": 1, + "Id": 550 }, { - "Rank": 1, "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement", - "Id": 550 + "Rank": 1, + "Id": 551 }, { - "Rank": 2, "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Id": 551 + "Rank": 2, + "Id": 552 }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 552 + "Rank": 1, + "Id": 553 }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Id": 553 + "Rank": 2, + "Id": 554 }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group", - "Id": 554 + "Rank": 1, + "Id": 555 }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Id": 555 + "Rank": 2, + "Id": 556 }, { - "Rank": 3, "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Id": 556 + "Rank": 3, + "Id": 557 }, { - "Rank": 4, "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Id": 557 + "Rank": 4, + "Id": 558 }, { - "Rank": 5, "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Id": 558 + "Rank": 5, + "Id": 559 }, { - "Rank": 6, "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Id": 559 + "Rank": 6, + "Id": 560 }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 560 + "Rank": 1, + "Id": 561 }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Id": 561 + "Rank": 2, + "Id": 562 }, { - "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 562 + "Rank": 3, + "Id": 563 }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Id": 563 + "Rank": 1, + "Id": 564 }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Id": 564 + "Rank": 2, + "Id": 565 }, { - "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Id": 565 + "Rank": 3, + "Id": 566 }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Id": 566 + "Rank": 1, + "Id": 567 }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Id": 567 + "Rank": 2, + "Id": 568 }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings", - "Id": 568 + "Rank": 1, + "Id": 569 }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Id": 569 + "Rank": 2, + "Id": 570 }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 570 + "Rank": 1, + "Id": 571 }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Id": 571 + "Rank": 2, + "Id": 572 }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam", - "Id": 572 + "Rank": 1, + "Id": 573 }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Id": 573 + "Rank": 2, + "Id": 574 }, { - "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 574 + "Rank": 3, + "Id": 575 }, { - "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 575 + "Rank": 1, + "Id": 576 }, { - "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Id": 576 + "Rank": 2, + "Id": 577 }, { - "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 577 + "Rank": 3, + "Id": 578 }, { - "Rank": 1, "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode", - "Id": 578 + "Rank": 1, + "Id": 579 }, { - "Rank": 2, "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Id": 579 + "Rank": 2, + "Id": 580 }, { - "Rank": 3, "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Id": 580 + "Rank": 3, + "Id": 581 }, { - "Rank": 1, "CommandName": "Get-PnPOrgAssetsLibrary", "Command": "Get-PnPOrgAssetsLibrary", - "Id": 581 + "Rank": 1, + "Id": 582 }, { - "Rank": 1, "CommandName": "Get-PnPOrgNewsSite", "Command": "Get-PnPOrgNewsSite", - "Id": 582 + "Rank": 1, + "Id": 583 }, { - "Rank": 1, "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Id": 583 + "Rank": 1, + "Id": 584 }, { - "Rank": 2, "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"MyPage\"", - "Id": 584 + "Rank": 2, + "Id": 585 }, { - "Rank": 3, "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Id": 585 + "Rank": 3, + "Id": 586 }, { - "Rank": 4, "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Id": 586 + "Rank": 4, + "Id": 587 }, { - "Rank": 1, "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home", - "Id": 587 + "Rank": 1, + "Id": 588 }, { - "Rank": 2, "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 588 + "Rank": 2, + "Id": 589 }, { - "Rank": 3, "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Id": 589 + "Rank": 3, + "Id": 590 }, { - "Rank": 1, "CommandName": "Get-PnPPlannerBucket", "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Id": 590 + "Rank": 1, + "Id": 591 }, { - "Rank": 1, "CommandName": "Get-PnPPlannerConfiguration", "Command": "Get-PnPPlannerConfiguration", - "Id": 591 + "Rank": 1, + "Id": 592 }, { - "Rank": 1, "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Id": 592 + "Rank": 1, + "Id": 593 }, { - "Rank": 2, "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Id": 593 + "Rank": 2, + "Id": 594 }, { - "Rank": 3, "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Id": 594 + "Rank": 3, + "Id": 595 }, { - "Rank": 1, "CommandName": "Get-PnPPlannerRosterMember", "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Id": 595 + "Rank": 1, + "Id": 596 }, { - "Rank": 1, "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Id": 596 + "Rank": 1, + "Id": 597 }, { - "Rank": 2, "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 597 + "Rank": 2, + "Id": 598 }, { - "Rank": 1, "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Id": 598 + "Rank": 1, + "Id": 599 }, { - "Rank": 2, "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Id": 599 + "Rank": 2, + "Id": 600 }, { - "Rank": 3, "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Id": 600 + "Rank": 3, + "Id": 601 }, { - "Rank": 1, "CommandName": "Get-PnPPlannerUserPolicy", "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Id": 601 + "Rank": 1, + "Id": 602 }, { - "Rank": 1, "CommandName": "Get-PnPPowerPlatformConnector", "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "Id": 602 + "Rank": 1, + "Id": 603 }, { - "Rank": 1, "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment", - "Id": 603 + "Rank": 1, + "Id": 604 }, { - "Rank": 2, "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Id": 604 + "Rank": 2, + "Id": 605 }, { - "Rank": 3, "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Id": 605 + "Rank": 3, + "Id": 606 }, { - "Rank": 1, "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Command": "Get-PnPPowerShellTelemetryEnabled", - "Id": 606 + "Rank": 1, + "Id": 607 }, { - "Rank": 1, "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag", - "Id": 607 + "Rank": 1, + "Id": 608 }, { - "Rank": 2, "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Key MyKey", - "Id": 608 + "Rank": 2, + "Id": 609 }, { - "Rank": 3, "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Id": 609 + "Rank": 3, + "Id": 610 }, { - "Rank": 4, "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Id": 610 + "Rank": 4, + "Id": 611 }, { - "Rank": 5, "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Id": 611 + "Rank": 5, + "Id": 612 }, { - "Rank": 1, "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition", - "Id": 612 + "Rank": 1, + "Id": 613 }, { - "Rank": 2, "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Id": 613 + "Rank": 2, + "Id": 614 }, { - "Rank": 3, "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Id": 614 + "Rank": 3, + "Id": 615 }, { - "Rank": 1, "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem", - "Id": 615 + "Rank": 1, + "Id": 616 }, { - "Rank": 2, "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Id": 616 + "Rank": 2, + "Id": 617 }, { - "Rank": 3, "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -FirstStage", - "Id": 617 + "Rank": 3, + "Id": 618 }, { - "Rank": 4, "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -SecondStage", - "Id": 618 + "Rank": 4, + "Id": 619 }, { - "Rank": 5, "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Id": 619 + "Rank": 5, + "Id": 620 }, { - "Rank": 1, "CommandName": "Get-PnPRequestAccessEmails", "Command": "Get-PnPRequestAccessEmails", - "Id": 620 + "Rank": 1, + "Id": 621 }, { - "Rank": 1, "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel", - "Id": 621 + "Rank": 1, + "Id": 622 }, { - "Rank": 2, "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", - "Id": 622 + "Rank": 2, + "Id": 623 }, { - "Rank": 1, "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition", - "Id": 623 + "Rank": 1, + "Id": 624 }, { - "Rank": 2, "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition -Identity Read", - "Id": 624 + "Rank": 2, + "Id": 625 }, { - "Rank": 3, "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Id": 625 + "Rank": 3, + "Id": 626 }, { - "Rank": 1, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration", - "Id": 626 + "Rank": 1, + "Id": 627 }, { - "Rank": 2, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site", - "Id": 627 + "Rank": 2, + "Id": 628 }, { - "Rank": 3, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Id": 628 + "Rank": 3, + "Id": 629 }, { - "Rank": 4, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 629 + "Rank": 4, + "Id": 630 }, { - "Rank": 5, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Id": 630 + "Rank": 5, + "Id": 631 }, { - "Rank": 6, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Id": 631 + "Rank": 6, + "Id": 632 }, { - "Rank": 7, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Id": 632 + "Rank": 7, + "Id": 633 }, { - "Rank": 8, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Id": 633 + "Rank": 8, + "Id": 634 }, { - "Rank": 1, "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog", - "Id": 634 + "Rank": 1, + "Id": 635 }, { - "Rank": 2, "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Id": 635 + "Rank": 2, + "Id": 636 }, { - "Rank": 3, "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Id": 636 + "Rank": 3, + "Id": 637 }, { - "Rank": 4, "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Id": 637 + "Rank": 4, + "Id": 638 }, { - "Rank": 5, "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Id": 638 + "Rank": 5, + "Id": 639 }, { - "Rank": 6, "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Id": 639 + "Rank": 6, + "Id": 640 }, { - "Rank": 7, "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Id": 640 + "Rank": 7, + "Id": 641 }, { - "Rank": 1, "CommandName": "Get-PnPSearchSettings", "Command": "Get-PnPSearchSettings", - "Id": 641 + "Rank": 1, + "Id": 642 }, { - "Rank": 1, "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth", - "Id": 642 + "Rank": 1, + "Id": 643 }, { - "Rank": 2, "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Id": 643 + "Rank": 2, + "Id": 644 }, { - "Rank": 1, "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue", - "Id": 644 + "Rank": 1, + "Id": 645 }, { - "Rank": 2, "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Id": 645 + "Rank": 2, + "Id": 646 }, { - "Rank": 1, "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn", - "Id": 646 + "Rank": 1, + "Id": 647 }, { - "Rank": 2, "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Id": 647 + "Rank": 2, + "Id": 648 }, { - "Rank": 1, "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Command": "Get-PnPSharingForNonOwnersOfSite", - "Id": 648 + "Rank": 1, + "Id": 649 }, { - "Rank": 1, "CommandName": "Get-PnPSite", "Command": "Get-PnPSite", - "Id": 649 + "Rank": 1, + "Id": 650 }, { - "Rank": 2, "CommandName": "Get-PnPSite", "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Id": 650 + "Rank": 2, + "Id": 651 }, { - "Rank": 1, "CommandName": "Get-PnPSiteClosure", "Command": "Get-PnPSiteClosure", - "Id": 651 + "Rank": 1, + "Id": 652 }, { - "Rank": 1, "CommandName": "Get-PnPSiteCollectionAdmin", "Command": "Get-PnPSiteCollectionAdmin", - "Id": 652 + "Rank": 1, + "Id": 653 }, { - "Rank": 1, "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog", - "Id": 653 + "Rank": 1, + "Id": 654 }, { - "Rank": 2, "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Id": 654 + "Rank": 2, + "Id": 655 }, { - "Rank": 3, "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Id": 655 + "Rank": 3, + "Id": 656 }, { - "Rank": 1, "CommandName": "Get-PnPSiteCollectionTermStore", "Command": "Get-PnPSiteCollectionTermStore", - "Id": 656 + "Rank": 1, + "Id": 657 }, { - "Rank": 1, "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign", - "Id": 657 + "Rank": 1, + "Id": 658 }, { - "Rank": 2, "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 658 + "Rank": 2, + "Id": 659 }, { - "Rank": 1, "CommandName": "Get-PnPSiteDesignRights", "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 659 + "Rank": 1, + "Id": 660 }, { - "Rank": 1, "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun", - "Id": 660 + "Rank": 1, + "Id": 661 }, { - "Rank": 2, "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Id": 661 + "Rank": 2, + "Id": 662 }, { - "Rank": 1, "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Id": 662 + "Rank": 1, + "Id": 663 }, { - "Rank": 2, "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask", - "Id": 663 + "Rank": 2, + "Id": 664 }, { - "Rank": 3, "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Id": 664 + "Rank": 3, + "Id": 665 }, { - "Rank": 1, "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup", - "Id": 665 + "Rank": 1, + "Id": 666 }, { - "Rank": 2, "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Id": 666 + "Rank": 2, + "Id": 667 }, { - "Rank": 3, "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Id": 667 + "Rank": 3, + "Id": 668 }, { - "Rank": 4, "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Id": 668 + "Rank": 4, + "Id": 669 }, { - "Rank": 1, "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy", - "Id": 669 + "Rank": 1, + "Id": 670 }, { - "Rank": 2, "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -AllAvailable", - "Id": 670 + "Rank": 2, + "Id": 671 }, { - "Rank": 3, "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Id": 671 + "Rank": 3, + "Id": 672 }, { - "Rank": 1, "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript", - "Id": 672 + "Rank": 1, + "Id": 673 }, { - "Rank": 2, "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 673 + "Rank": 2, + "Id": 674 }, { - "Rank": 1, "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Id": 674 + "Rank": 1, + "Id": 675 }, { - "Rank": 2, "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Id": 675 + "Rank": 2, + "Id": 676 }, { - "Rank": 3, "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Id": 676 + "Rank": 3, + "Id": 677 }, { - "Rank": 1, "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Id": 677 + "Rank": 1, + "Id": 678 }, { - "Rank": 2, "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Id": 678 + "Rank": 2, + "Id": 679 }, { - "Rank": 3, "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "Id": 679 + "Rank": 3, + "Id": 680 }, { - "Rank": 4, "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Id": 680 + "Rank": 4, + "Id": 681 }, { - "Rank": 5, "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Id": 681 + "Rank": 5, + "Id": 682 }, { - "Rank": 6, "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "Id": 682 + "Rank": 6, + "Id": 683 }, { - "Rank": 1, "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults", - "Id": 683 + "Rank": 1, + "Id": 684 }, { - "Rank": 2, "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Id": 684 + "Rank": 2, + "Id": 685 }, { - "Rank": 3, "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Id": 685 + "Rank": 3, + "Id": 686 }, { - "Rank": 4, "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Id": 686 + "Rank": 4, + "Id": 687 }, { - "Rank": 5, "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Id": 687 + "Rank": 5, + "Id": 688 }, { - "Rank": 6, "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -All", - "Id": 688 + "Rank": 6, + "Id": 689 }, { - "Rank": 1, "CommandName": "Get-PnPSiteSensitivityLabel", "Command": "Get-PnPSiteSensitivityLabel", - "Id": 689 + "Rank": 1, + "Id": 690 }, { - "Rank": 1, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Id": 690 + "Rank": 1, + "Id": 691 }, { - "Rank": 2, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml", - "Id": 691 + "Rank": 2, + "Id": 692 }, { - "Rank": 3, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.md", - "Id": 692 + "Rank": 3, + "Id": 693 }, { - "Rank": 4, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Id": 693 + "Rank": 4, + "Id": 694 }, { - "Rank": 5, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Id": 694 + "Rank": 5, + "Id": 695 }, { - "Rank": 6, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Id": 695 + "Rank": 6, + "Id": 696 }, { - "Rank": 7, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Id": 696 + "Rank": 7, + "Id": 697 }, { - "Rank": 8, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Id": 697 + "Rank": 8, + "Id": 698 }, { - "Rank": 9, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Id": 698 + "Rank": 9, + "Id": 699 }, { - "Rank": 10, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Id": 699 + "Rank": 10, + "Id": 700 }, { - "Rank": 11, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Id": 700 + "Rank": 11, + "Id": 701 }, { - "Rank": 12, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Id": 701 + "Rank": 12, + "Id": 702 }, { - "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\"", - "Id": 702 + "Rank": 13, + "Id": 703 }, { - "Rank": 14, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Id": 703 + "Rank": 14, + "Id": 704 }, { - "Rank": 1, "CommandName": "Get-PnPSiteUserInvitations", "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Id": 704 + "Rank": 1, + "Id": 705 }, { - "Rank": 1, "CommandName": "Get-PnPSiteVersionPolicy", "Command": "Get-PnPSiteVersionPolicy", - "Id": 705 + "Rank": 1, + "Id": 706 }, { - "Rank": 1, "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity", - "Id": 706 + "Rank": 1, + "Id": 707 }, { - "Rank": 2, "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey", - "Id": 707 + "Rank": 2, + "Id": 708 }, { - "Rank": 3, "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Scope Site", - "Id": 708 + "Rank": 3, + "Id": 709 }, { - "Rank": 4, "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Id": 709 + "Rank": 4, + "Id": 710 }, { - "Rank": 1, "CommandName": "Get-PnPStoredCredential", "Command": "Get-PnPStoredCredential -Name O365", - "Id": 710 + "Rank": 1, + "Id": 711 }, { - "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 711 + "Rank": 1, + "Id": 712 }, { - "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 712 + "Rank": 1, + "Id": 713 }, { - "Rank": 1, "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Id": 713 + "Rank": 1, + "Id": 714 }, { - "Rank": 1, "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb", - "Id": 714 + "Rank": 1, + "Id": 715 }, { - "Rank": 2, "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse", - "Id": 715 + "Rank": 2, + "Id": 716 }, { - "Rank": 3, "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Id": 716 + "Rank": 3, + "Id": 717 }, { - "Rank": 4, "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Id": 717 + "Rank": 4, + "Id": 718 }, { - "Rank": 5, "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Id": 718 + "Rank": 5, + "Id": 719 }, { - "Rank": 1, "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel", - "Id": 719 + "Rank": 1, + "Id": 720 }, { - "Rank": 2, "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity 1", - "Id": 720 + "Rank": 2, + "Id": 721 }, { - "Rank": 3, "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Id": 721 + "Rank": 3, + "Id": 722 }, { - "Rank": 1, "CommandName": "Get-PnPSyntexModelPublication", "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Id": 722 + "Rank": 1, + "Id": 723 }, { - "Rank": 1, "CommandName": "Get-PnPTaxonomyItem", "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Id": 723 + "Rank": 1, + "Id": 724 }, { - "Rank": 1, "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp", - "Id": 724 + "Rank": 1, + "Id": 725 }, { - "Rank": 2, "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Id": 725 + "Rank": 2, + "Id": 726 }, { - "Rank": 3, "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Id": 726 + "Rank": 3, + "Id": 727 }, { - "Rank": 1, "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Id": 727 + "Rank": 1, + "Id": 728 }, { - "Rank": 2, "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Id": 728 + "Rank": 2, + "Id": 729 }, { - "Rank": 3, "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Id": 729 + "Rank": 3, + "Id": 730 }, { - "Rank": 1, "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Id": 730 + "Rank": 1, + "Id": 731 }, { - "Rank": 2, "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Id": 731 + "Rank": 2, + "Id": 732 }, { - "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Id": 732 + "Rank": 1, + "Id": 733 }, { - "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Id": 733 + "Rank": 2, + "Id": 734 }, { - "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Id": 734 + "Rank": 1, + "Id": 735 }, { - "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Id": 735 + "Rank": 2, + "Id": 736 }, { - "Rank": 1, "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Id": 736 + "Rank": 1, + "Id": 737 }, { - "Rank": 2, "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Id": 737 + "Rank": 2, + "Id": 738 }, { - "Rank": 3, "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Id": 738 + "Rank": 3, + "Id": 739 }, { - "Rank": 4, "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Id": 739 + "Rank": 4, + "Id": 740 }, { - "Rank": 1, "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Id": 740 + "Rank": 1, + "Id": 741 }, { - "Rank": 2, "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Id": 741 + "Rank": 2, + "Id": 742 }, { - "Rank": 1, "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Id": 742 + "Rank": 1, + "Id": 743 }, { - "Rank": 2, "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "Id": 743 + "Rank": 2, + "Id": 744 }, { - "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", - "Id": 744 + "Rank": 3, + "Id": 745 }, { - "Rank": 4, "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Id": 745 + "Rank": 4, + "Id": 746 }, { - "Rank": 5, "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Id": 746 + "Rank": 5, + "Id": 747 }, { - "Rank": 1, "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Id": 747 + "Rank": 1, + "Id": 748 }, { - "Rank": 2, "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Id": 748 + "Rank": 2, + "Id": 749 }, { - "Rank": 1, "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam", - "Id": 749 + "Rank": 1, + "Id": 750 }, { - "Rank": 2, "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Id": 750 + "Rank": 2, + "Id": 751 }, { - "Rank": 3, "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Id": 751 + "Rank": 3, + "Id": 752 }, { - "Rank": 4, "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Id": 752 + "Rank": 4, + "Id": 753 }, { - "Rank": 5, "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Id": 753 + "Rank": 5, + "Id": 754 }, { - "Rank": 1, "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam", - "Id": 754 + "Rank": 1, + "Id": 755 }, { - "Rank": 2, "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Id": 755 + "Rank": 2, + "Id": 756 }, { - "Rank": 3, "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Id": 756 + "Rank": 3, + "Id": 757 }, { - "Rank": 4, "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Id": 757 + "Rank": 4, + "Id": 758 }, { - "Rank": 1, "CommandName": "Get-PnPTemporarilyDisableAppBar", "Command": "Get-PnPTemporarilyDisableAppBar", - "Id": 758 + "Rank": 1, + "Id": 759 }, { - "Rank": 1, "CommandName": "Get-PnPTenant", "Command": "Get-PnPTenant", - "Id": 759 + "Rank": 1, + "Id": 760 }, { - "Rank": 1, "CommandName": "Get-PnPTenantAppCatalogUrl", "Command": "Get-PnPTenantAppCatalogUrl", - "Id": 760 + "Rank": 1, + "Id": 761 }, { - "Rank": 1, "CommandName": "Get-PnPTenantCdnEnabled", "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Id": 761 + "Rank": 1, + "Id": 762 }, { - "Rank": 1, "CommandName": "Get-PnPTenantCdnOrigin", "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Id": 762 + "Rank": 1, + "Id": 763 }, { - "Rank": 1, "CommandName": "Get-PnPTenantCdnPolicies", "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Id": 763 + "Rank": 1, + "Id": 764 }, { - "Rank": 1, "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite", - "Id": 764 + "Rank": 1, + "Id": 765 }, { - "Rank": 2, "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 765 + "Rank": 2, + "Id": 766 }, { - "Rank": 3, "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Id": 766 + "Rank": 3, + "Id": 767 }, { - "Rank": 4, "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Id": 767 + "Rank": 4, + "Id": 768 }, { - "Rank": 1, "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId", - "Id": 768 + "Rank": 1, + "Id": 769 }, { - "Rank": 2, "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId contoso", - "Id": 769 + "Rank": 2, + "Id": 770 }, { - "Rank": 3, "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Id": 770 + "Rank": 3, + "Id": 771 }, { - "Rank": 4, "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Id": 771 + "Rank": 4, + "Id": 772 }, { - "Rank": 1, "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "Id": 772 + "Rank": 1, + "Id": 773 }, { - "Rank": 2, "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "Id": 773 + "Rank": 2, + "Id": 774 }, { - "Rank": 3, "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo", - "Id": 774 + "Rank": 3, + "Id": 775 }, { - "Rank": 4, "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -CurrentTenant", - "Id": 775 + "Rank": 4, + "Id": 776 }, { - "Rank": 1, "CommandName": "Get-PnPTenantInstance", "Command": "Get-PnPTenantInstance", - "Id": 776 + "Rank": 1, + "Id": 777 }, { - "Rank": 1, "CommandName": "Get-PnPTenantRecycleBinItem", "Command": "Get-PnPTenantRecycleBinItem", - "Id": 777 + "Rank": 1, + "Id": 778 }, { - "Rank": 1, "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Id": 778 + "Rank": 1, + "Id": 779 }, { - "Rank": 2, "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Id": 779 + "Rank": 2, + "Id": 780 }, { - "Rank": 1, "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Id": 780 + "Rank": 1, + "Id": 781 }, { - "Rank": 2, "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Id": 781 + "Rank": 2, + "Id": 782 }, { - "Rank": 1, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite", - "Id": 782 + "Rank": 1, + "Id": 783 }, { - "Rank": 2, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Detailed", - "Id": 783 + "Rank": 2, + "Id": 784 }, { - "Rank": 3, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Id": 784 + "Rank": 3, + "Id": 785 }, { - "Rank": 4, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Id": 785 + "Rank": 4, + "Id": 786 }, { - "Rank": 5, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Id": 786 + "Rank": 5, + "Id": 787 }, { - "Rank": 6, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Id": 787 + "Rank": 6, + "Id": 788 }, { - "Rank": 7, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Id": 788 + "Rank": 7, + "Id": 789 }, { - "Rank": 8, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Id": 789 + "Rank": 8, + "Id": 790 }, { - "Rank": 9, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Id": 790 + "Rank": 9, + "Id": 791 }, { - "Rank": 1, "CommandName": "Get-PnPTenantSyncClientRestriction", "Command": "Get-PnPTenantSyncClientRestriction", - "Id": 791 + "Rank": 1, + "Id": 792 }, { - "Rank": 1, "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Id": 792 + "Rank": 1, + "Id": 793 }, { - "Rank": 2, "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Id": 793 + "Rank": 2, + "Id": 794 }, { - "Rank": 3, "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "Id": 794 + "Rank": 3, + "Id": 795 }, { - "Rank": 1, "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme", - "Id": 795 + "Rank": 1, + "Id": 796 }, { - "Rank": 2, "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Id": 796 + "Rank": 2, + "Id": 797 }, { - "Rank": 3, "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Id": 797 + "Rank": 3, + "Id": 798 }, { - "Rank": 1, "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 798 + "Rank": 1, + "Id": 799 }, { - "Rank": 2, "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 799 + "Rank": 2, + "Id": 800 }, { - "Rank": 3, "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 800 + "Rank": 3, + "Id": 801 }, { - "Rank": 4, "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Id": 801 + "Rank": 4, + "Id": 802 }, { - "Rank": 5, "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Id": 802 + "Rank": 5, + "Id": 803 }, { - "Rank": 1, "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup", - "Id": 803 + "Rank": 1, + "Id": 804 }, { - "Rank": 2, "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Id": 804 + "Rank": 2, + "Id": 805 }, { - "Rank": 3, "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Id": 805 + "Rank": 3, + "Id": 806 }, { - "Rank": 1, "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Id": 806 + "Rank": 1, + "Id": 807 }, { - "Rank": 2, "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Id": 807 + "Rank": 2, + "Id": 808 }, { - "Rank": 3, "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 808 + "Rank": 3, + "Id": 809 }, { - "Rank": 1, "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Id": 809 + "Rank": 1, + "Id": 810 }, { - "Rank": 2, "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Id": 810 + "Rank": 2, + "Id": 811 }, { - "Rank": 3, "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Id": 811 + "Rank": 3, + "Id": 812 }, { - "Rank": 1, "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme", - "Id": 812 + "Rank": 1, + "Id": 813 }, { - "Rank": 2, "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Id": 813 + "Rank": 2, + "Id": 814 }, { - "Rank": 1, "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId", - "Id": 814 + "Rank": 1, + "Id": 815 }, { - "Rank": 2, "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Id": 815 + "Rank": 2, + "Id": 816 }, { - "Rank": 1, "CommandName": "Get-PnPUnfurlLink", "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Id": 816 + "Rank": 1, + "Id": 817 }, { - "Rank": 1, "CommandName": "Get-PnPUnifiedAuditLog", "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Id": 817 + "Rank": 1, + "Id": 818 }, { - "Rank": 1, "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus", - "Id": 818 + "Rank": 1, + "Id": 819 }, { - "Rank": 2, "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Id": 819 + "Rank": 2, + "Id": 820 }, { - "Rank": 3, "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Id": 820 + "Rank": 3, + "Id": 821 }, { - "Rank": 4, "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Id": 821 + "Rank": 4, + "Id": 822 }, { - "Rank": 1, "CommandName": "Get-PnPUser", "Command": "Get-PnPUser", - "Id": 822 + "Rank": 1, + "Id": 823 }, { - "Rank": 2, "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity 23", - "Id": 823 + "Rank": 2, + "Id": 824 }, { - "Rank": 3, "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Id": 824 + "Rank": 3, + "Id": 825 }, { - "Rank": 4, "CommandName": "Get-PnPUser", "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Id": 825 + "Rank": 4, + "Id": 826 }, { - "Rank": 5, "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned", - "Id": 826 + "Rank": 5, + "Id": 827 }, { - "Rank": 6, "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Id": 827 + "Rank": 6, + "Id": 828 }, { - "Rank": 7, "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Id": 828 + "Rank": 7, + "Id": 829 }, { - "Rank": 1, "CommandName": "Get-PnPUserOneDriveQuota", "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Id": 829 + "Rank": 1, + "Id": 830 }, { - "Rank": 1, "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Id": 830 + "Rank": 1, + "Id": 831 }, { - "Rank": 2, "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Id": 831 + "Rank": 2, + "Id": 832 }, { - "Rank": 3, "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Id": 832 + "Rank": 3, + "Id": 833 }, { - "Rank": 1, "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\"", - "Id": 833 + "Rank": 1, + "Id": 834 }, { - "Rank": 2, "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Id": 834 + "Rank": 2, + "Id": 835 }, { - "Rank": 3, "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Id": 835 + "Rank": 3, + "Id": 836 }, { - "Rank": 1, "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE", - "Id": 836 + "Rank": 1, + "Id": 837 }, { - "Rank": 2, "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Id": 837 + "Rank": 2, + "Id": 838 }, { - "Rank": 1, "CommandName": "Get-PnPWeb", "Command": "Get-PnPWeb", - "Id": 838 + "Rank": 1, + "Id": 839 }, { - "Rank": 1, "CommandName": "Get-PnPWebHeader", "Command": "Get-PnPWebHeader", - "Id": 839 + "Rank": 1, + "Id": 840 }, { - "Rank": 1, "CommandName": "Get-PnPWebhookSubscriptions", "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Id": 840 + "Rank": 1, + "Id": 841 }, { - "Rank": 1, "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Id": 841 + "Rank": 1, + "Id": 842 }, { - "Rank": 2, "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 842 + "Rank": 2, + "Id": 843 }, { - "Rank": 1, "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Id": 843 + "Rank": 1, + "Id": 844 }, { - "Rank": 2, "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "Id": 844 + "Rank": 2, + "Id": 845 }, { - "Rank": 1, "CommandName": "Get-PnPWebPartXml", "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 845 + "Rank": 1, + "Id": 846 }, { - "Rank": 1, "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates", - "Id": 846 + "Rank": 1, + "Id": 847 }, { - "Rank": 2, "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -LCID 1033", - "Id": 847 + "Rank": 2, + "Id": 848 }, { - "Rank": 3, "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Id": 848 + "Rank": 3, + "Id": 849 }, { - "Rank": 1, "CommandName": "Get-PnPWikiPageContent", "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Id": 849 + "Rank": 1, + "Id": 850 }, { - "Rank": 1, "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Id": 850 + "Rank": 1, + "Id": 851 }, { - "Rank": 2, "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "Id": 851 + "Rank": 2, + "Id": 852 }, { - "Rank": 1, "CommandName": "Grant-PnPHubSiteRights", "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 852 + "Rank": 1, + "Id": 853 }, { - "Rank": 1, "CommandName": "Grant-PnPSiteDesignRights", "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 853 + "Rank": 1, + "Id": 854 }, { - "Rank": 1, "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Id": 854 + "Rank": 1, + "Id": 855 }, { - "Rank": 1, "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Id": 855 + "Rank": 1, + "Id": 856 }, { - "Rank": 2, "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Id": 856 + "Rank": 2, + "Id": 857 }, { - "Rank": 3, "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Id": 857 + "Rank": 3, + "Id": 858 }, { - "Rank": 1, "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Id": 858 + "Rank": 1, + "Id": 859 }, { - "Rank": 2, "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Id": 859 + "Rank": 2, + "Id": 860 }, { - "Rank": 1, "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Id": 860 + "Rank": 1, + "Id": 861 }, { - "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}'", - "Id": 861 + "Rank": 2, + "Id": 862 }, { - "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'", - "Id": 862 + "Rank": 3, + "Id": 863 }, { - "Rank": 1, "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 863 + "Rank": 1, + "Id": 864 }, { - "Rank": 2, "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 864 + "Rank": 2, + "Id": 865 }, { - "Rank": 1, "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "Id": 865 + "Rank": 1, + "Id": 866 }, { - "Rank": 2, "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Id": 866 + "Rank": 2, + "Id": 867 }, { - "Rank": 3, "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Id": 867 + "Rank": 3, + "Id": 868 }, { - "Rank": 4, "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Id": 868 + "Rank": 4, + "Id": 869 }, { - "Rank": 5, "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Id": 869 + "Rank": 5, + "Id": 870 }, { - "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", - "Id": 870 + "Rank": 6, + "Id": 871 }, { - "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\"", - "Id": 871 + "Rank": 7, + "Id": 872 }, { - "Rank": 1, "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 872 + "Rank": 1, + "Id": 873 }, { - "Rank": 2, "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Id": 873 + "Rank": 2, + "Id": 874 }, { - "Rank": 1, "CommandName": "Invoke-PnPQuery", "Command": "Invoke-PnPQuery -RetryCount 5", - "Id": 874 + "Rank": 1, + "Id": 875 }, { - "Rank": 1, "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 875 + "Rank": 1, + "Id": 876 }, { - "Rank": 2, "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Id": 876 + "Rank": 2, + "Id": 877 }, { - "Rank": 1, "CommandName": "Invoke-PnPSiteScript", "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Id": 877 + "Rank": 1, + "Id": 878 }, { - "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": 878 + "Rank": 1, + "Id": 879 }, { - "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", - "Id": 879 + "Rank": 2, + "Id": 880 }, { - "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", - "Id": 880 + "Rank": 3, + "Id": 881 }, { - "Rank": 1, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Id": 881 + "Rank": 1, + "Id": 882 }, { - "Rank": 2, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Id": 882 + "Rank": 2, + "Id": 883 }, { - "Rank": 3, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Id": 883 + "Rank": 3, + "Id": 884 }, { - "Rank": 4, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Id": 884 + "Rank": 4, + "Id": 885 }, { - "Rank": 5, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Id": 885 + "Rank": 5, + "Id": 886 }, { - "Rank": 6, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Id": 886 + "Rank": 6, + "Id": 887 }, { - "Rank": 7, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Id": 887 + "Rank": 7, + "Id": 888 }, { - "Rank": 8, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Id": 888 + "Rank": 8, + "Id": 889 }, { - "Rank": 1, "CommandName": "Invoke-PnPSPRestMethod", "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Id": 889 + "Rank": 1, + "Id": 890 }, { - "Rank": 1, "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Id": 890 + "Rank": 1, + "Id": 891 }, { - "Rank": 2, "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Id": 891 + "Rank": 2, + "Id": 892 }, { - "Rank": 3, "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Id": 892 + "Rank": 3, + "Id": 893 }, { - "Rank": 1, "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Id": 893 + "Rank": 1, + "Id": 894 }, { - "Rank": 2, "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Id": 894 + "Rank": 2, + "Id": 895 }, { - "Rank": 1, "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\"", - "Id": 895 + "Rank": 1, + "Id": 896 }, { - "Rank": 2, "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Id": 896 + "Rank": 2, + "Id": 897 }, { - "Rank": 1, "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb", - "Id": 897 + "Rank": 1, + "Id": 898 }, { - "Rank": 2, "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb $web -Recursive", - "Id": 898 + "Rank": 2, + "Id": 899 }, { - "Rank": 1, "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Id": 899 + "Rank": 1, + "Id": 900 }, { - "Rank": 2, "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Id": 900 + "Rank": 2, + "Id": 901 }, { - "Rank": 3, "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Id": 901 + "Rank": 3, + "Id": 902 }, { - "Rank": 4, "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Id": 902 + "Rank": 4, + "Id": 903 }, { - "Rank": 1, "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Id": 903 + "Rank": 1, + "Id": 904 }, { - "Rank": 2, "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Id": 904 + "Rank": 2, + "Id": 905 }, { - "Rank": 1, "CommandName": "Move-PnPListItemToRecycleBin", "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Id": 905 + "Rank": 1, + "Id": 906 }, { - "Rank": 1, "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Id": 906 + "Rank": 1, + "Id": 907 }, { - "Rank": 2, "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Id": 907 + "Rank": 2, + "Id": 908 }, { - "Rank": 3, "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Id": 908 + "Rank": 3, + "Id": 909 }, { - "Rank": 4, "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "Id": 909 + "Rank": 4, + "Id": 910 }, { - "Rank": 1, "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem", - "Id": 910 + "Rank": 1, + "Id": 911 }, { - "Rank": 2, "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Id": 911 + "Rank": 2, + "Id": 912 }, { - "Rank": 3, "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Force", - "Id": 912 + "Rank": 3, + "Id": 913 }, { - "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", - "Id": 913 + "Rank": 1, + "Id": 914 }, { - "Rank": 2, "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Id": 914 + "Rank": 2, + "Id": 915 }, { - "Rank": 3, "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Id": 915 + "Rank": 3, + "Id": 916 }, { - "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", - "Id": 916 + "Rank": 1, + "Id": 917 }, { - "Rank": 2, "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Id": 917 + "Rank": 2, + "Id": 918 }, { - "Rank": 1, "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Id": 918 + "Rank": 1, + "Id": 919 }, { - "Rank": 2, "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Id": 919 + "Rank": 2, + "Id": 920 }, { - "Rank": 3, "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Id": 920 + "Rank": 3, + "Id": 921 }, { - "Rank": 1, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Id": 921 + "Rank": 1, + "Id": 922 }, { - "Rank": 2, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Id": 922 + "Rank": 2, + "Id": 923 }, { - "Rank": 3, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "Id": 923 + "Rank": 3, + "Id": 924 }, { - "Rank": 1, "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Id": 924 + "Rank": 1, + "Id": 925 }, { - "Rank": 2, "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Id": 925 + "Rank": 2, + "Id": 926 }, { - "Rank": 3, "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "Id": 926 + "Rank": 3, + "Id": 927 }, { - "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": 927 + "Rank": 1, + "Id": 928 }, { - "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()", - "Id": 928 + "Rank": 2, + "Id": 929 }, { - "Rank": 1, "CommandName": "New-PnPGroup", "Command": "New-PnPGroup -Title \"My Site Users\"", - "Id": 929 + "Rank": 1, + "Id": 930 }, { - "Rank": 1, "CommandName": "New-PnPList", "Command": "New-PnPList -Title Announcements -Template Announcements", - "Id": 930 + "Rank": 1, + "Id": 931 }, { - "Rank": 2, "CommandName": "New-PnPList", "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Id": 931 + "Rank": 2, + "Id": 932 }, { - "Rank": 3, "CommandName": "New-PnPList", "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Id": 932 + "Rank": 3, + "Id": 933 }, { - "Rank": 1, "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Id": 933 + "Rank": 1, + "Id": 934 }, { - "Rank": 2, "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "Id": 934 + "Rank": 2, + "Id": 935 }, { - "Rank": 3, "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Id": 935 + "Rank": 3, + "Id": 936 }, { - "Rank": 4, "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Id": 936 + "Rank": 4, + "Id": 937 }, { - "Rank": 5, "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Id": 937 + "Rank": 5, + "Id": 938 }, { - "Rank": 6, "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Id": 938 + "Rank": 6, + "Id": 939 }, { - "Rank": 7, "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "Id": 939 + "Rank": 7, + "Id": 940 }, { - "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\"}", - "Id": 940 + "Rank": 1, + "Id": 941 }, { - "Rank": 2, "CommandName": "New-PnPMicrosoft365GroupSettings", "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "Id": 941 + "Rank": 2, + "Id": 942 }, { - "Rank": 1, "CommandName": "New-PnPPersonalSite", "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Id": 942 + "Rank": 1, + "Id": 943 }, { - "Rank": 1, "CommandName": "New-PnPPlannerPlan", "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Id": 943 + "Rank": 1, + "Id": 944 }, { - "Rank": 1, "CommandName": "New-PnPSdnProvider", "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Id": 944 + "Rank": 1, + "Id": 945 }, { - "Rank": 1, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Id": 945 + "Rank": 1, + "Id": 946 }, { - "Rank": 2, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Id": 946 + "Rank": 2, + "Id": 947 }, { - "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", - "Id": 947 + "Rank": 3, + "Id": 948 }, { - "Rank": 4, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Id": 948 + "Rank": 4, + "Id": 949 }, { - "Rank": 5, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Id": 949 + "Rank": 5, + "Id": 950 }, { - "Rank": 6, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Id": 950 + "Rank": 6, + "Id": 951 }, { - "Rank": 7, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Id": 951 + "Rank": 7, + "Id": 952 }, { - "Rank": 8, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Id": 952 + "Rank": 8, + "Id": 953 }, { - "Rank": 9, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Id": 953 + "Rank": 9, + "Id": 954 }, { - "Rank": 10, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Id": 954 + "Rank": 10, + "Id": 955 }, { - "Rank": 11, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Id": 955 + "Rank": 11, + "Id": 956 }, { - "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", - "Id": 956 + "Rank": 12, + "Id": 957 }, { - "Rank": 13, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Id": 957 + "Rank": 13, + "Id": 958 }, { - "Rank": 14, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Id": 958 + "Rank": 14, + "Id": 959 }, { - "Rank": 15, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Id": 959 + "Rank": 15, + "Id": 960 }, { - "Rank": 16, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "Id": 960 + "Rank": 16, + "Id": 961 }, { - "Rank": 1, "CommandName": "New-PnPSiteCollectionTermStore", "Command": "New-PnPSiteCollectionTermStore", - "Id": 961 + "Rank": 1, + "Id": 962 }, { - "Rank": 1, "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Id": 962 + "Rank": 1, + "Id": 963 }, { - "Rank": 2, "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Id": 963 + "Rank": 2, + "Id": 964 }, { - "Rank": 1, "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Id": 964 + "Rank": 1, + "Id": 965 }, { - "Rank": 2, "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Id": 965 + "Rank": 2, + "Id": 966 }, { - "Rank": 3, "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Id": 966 + "Rank": 3, + "Id": 967 }, { - "Rank": 4, "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Id": 967 + "Rank": 4, + "Id": 968 }, { - "Rank": 5, "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "Id": 968 + "Rank": 5, + "Id": 969 }, { - "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\"}", - "Id": 969 + "Rank": 6, + "Id": 970 }, { - "Rank": 7, "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Id": 970 + "Rank": 7, + "Id": 971 }, { - "Rank": 8, "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Id": 971 + "Rank": 8, + "Id": 972 }, { - "Rank": 1, "CommandName": "New-PnPTeamsApp", "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Id": 972 + "Rank": 1, + "Id": 973 }, { - "Rank": 1, "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Id": 973 + "Rank": 1, + "Id": 974 }, { - "Rank": 2, "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Id": 974 + "Rank": 2, + "Id": 975 }, { - "Rank": 3, "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Id": 975 + "Rank": 3, + "Id": 976 }, { - "Rank": 4, "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Id": 976 + "Rank": 4, + "Id": 977 }, { - "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\"", - "Id": 977 + "Rank": 5, + "Id": 978 }, { - "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\"", - "Id": 978 + "Rank": 6, + "Id": 979 }, { - "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", - "Id": 979 + "Rank": 1, + "Id": 980 }, { - "Rank": 2, "CommandName": "New-PnPTenantSite", "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "Id": 980 + "Rank": 2, + "Id": 981 }, { - "Rank": 1, "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Id": 981 + "Rank": 1, + "Id": 982 }, { - "Rank": 2, "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 982 + "Rank": 2, + "Id": 983 }, { - "Rank": 1, "CommandName": "New-PnPTermGroup", "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Id": 983 + "Rank": 1, + "Id": 984 }, { - "Rank": 1, "CommandName": "New-PnPTermLabel", "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Id": 984 + "Rank": 1, + "Id": 985 }, { - "Rank": 1, "CommandName": "New-PnPTermSet", "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Id": 985 + "Rank": 1, + "Id": 986 }, { - "Rank": 1, "CommandName": "New-PnPUPABulkImportJob", "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "Id": 986 + "Rank": 1, + "Id": 987 }, { - "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", - "Id": 987 + "Rank": 2, + "Id": 988 }, { - "Rank": 1, "CommandName": "New-PnPUser", "Command": "New-PnPUser -LoginName user@company.com", - "Id": 988 + "Rank": 1, + "Id": 989 }, { - "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": 989 + "Rank": 1, + "Id": 990 }, { - "Rank": 1, "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 990 + "Rank": 1, + "Id": 991 }, { - "Rank": 2, "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Id": 991 + "Rank": 2, + "Id": 992 }, { - "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", - "Id": 992 + "Rank": 1, + "Id": 993 }, { - "Rank": 1, "CommandName": "Publish-PnPContentType", "Command": "Publish-PnPContentType -ContentType 0x0101", - "Id": 993 + "Rank": 1, + "Id": 994 }, { - "Rank": 1, "CommandName": "Publish-PnPSyntexModel", "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Id": 994 + "Rank": 1, + "Id": 995 }, { - "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", - "Id": 995 + "Rank": 2, + "Id": 996 }, { - "Rank": 1, "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Id": 996 + "Rank": 1, + "Id": 997 }, { - "Rank": 2, "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Id": 997 + "Rank": 2, + "Id": 998 }, { - "Rank": 3, "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Xml $xml", - "Id": 998 + "Rank": 3, + "Id": 999 }, { - "Rank": 1, "CommandName": "Read-PnPTenantTemplate", "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Id": 999 + "Rank": 1, + "Id": 1000 }, { - "Rank": 1, "CommandName": "Register-PnPAppCatalogSite", "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Id": 1000 + "Rank": 1, + "Id": 1001 }, { - "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": 1001 + "Rank": 1, + "Id": 1002 }, { - "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\")", - "Id": 1002 + "Rank": 2, + "Id": 1003 }, { - "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\")", - "Id": 1003 + "Rank": 3, + "Id": 1004 }, { - "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\")", - "Id": 1004 + "Rank": 4, + "Id": 1005 }, { - "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)", - "Id": 1005 + "Rank": 5, + "Id": 1006 }, { - "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)", - "Id": 1006 + "Rank": 6, + "Id": 1007 }, { - "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", - "Id": 1007 + "Rank": 7, + "Id": 1008 }, { - "Rank": 1, "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Id": 1008 + "Rank": 1, + "Id": 1009 }, { - "Rank": 2, "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Id": 1009 + "Rank": 2, + "Id": 1010 }, { - "Rank": 1, "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess", - "Id": 1010 + "Rank": 1, + "Id": 1011 }, { - "Rank": 2, "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Id": 1011 + "Rank": 2, + "Id": 1012 }, { - "Rank": 3, "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Id": 1012 + "Rank": 3, + "Id": 1013 }, { - "Rank": 1, "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Id": 1013 + "Rank": 1, + "Id": 1014 }, { - "Rank": 2, "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Id": 1014 + "Rank": 2, + "Id": 1015 }, { - "Rank": 1, "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Id": 1015 + "Rank": 1, + "Id": 1016 }, { - "Rank": 2, "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Id": 1016 + "Rank": 2, + "Id": 1017 }, { - "Rank": 1, "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1017 + "Rank": 1, + "Id": 1018 }, { - "Rank": 2, "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1018 + "Rank": 2, + "Id": 1019 }, { - "Rank": 1, "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1019 + "Rank": 1, + "Id": 1020 }, { - "Rank": 2, "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Id": 1020 + "Rank": 2, + "Id": 1021 }, { - "Rank": 1, "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Id": 1021 + "Rank": 1, + "Id": 1022 }, { - "Rank": 2, "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Id": 1022 + "Rank": 2, + "Id": 1023 }, { - "Rank": 1, "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Id": 1023 + "Rank": 1, + "Id": 1024 }, { - "Rank": 2, "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 1024 + "Rank": 2, + "Id": 1025 }, { - "Rank": 1, "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Id": 1025 + "Rank": 1, + "Id": 1026 }, { - "Rank": 2, "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $group", - "Id": 1026 + "Rank": 2, + "Id": 1027 }, { - "Rank": 1, "CommandName": "Remove-PnPAzureADGroupMember", "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1027 + "Rank": 1, + "Id": 1028 }, { - "Rank": 1, "CommandName": "Remove-PnPAzureADGroupOwner", "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1028 + "Rank": 1, + "Id": 1029 }, { - "Rank": 1, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Id": 1029 + "Rank": 1, + "Id": 1030 }, { - "Rank": 2, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Id": 1030 + "Rank": 2, + "Id": 1031 }, { - "Rank": 3, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 1031 + "Rank": 3, + "Id": 1032 }, { - "Rank": 4, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Id": 1032 + "Rank": 4, + "Id": 1033 }, { - "Rank": 1, "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Id": 1033 + "Rank": 1, + "Id": 1034 }, { - "Rank": 2, "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Id": 1034 + "Rank": 2, + "Id": 1035 }, { - "Rank": 1, "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Id": 1035 + "Rank": 1, + "Id": 1036 }, { - "Rank": 2, "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Id": 1036 + "Rank": 2, + "Id": 1037 }, { - "Rank": 1, "CommandName": "Remove-PnPContentTypeFromList", "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Id": 1037 + "Rank": 1, + "Id": 1038 }, { - "Rank": 1, "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1038 + "Rank": 1, + "Id": 1039 }, { - "Rank": 2, "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Id": 1039 + "Rank": 2, + "Id": 1040 }, { - "Rank": 3, "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Id": 1040 + "Rank": 3, + "Id": 1041 }, { - "Rank": 1, "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 1041 + "Rank": 1, + "Id": 1042 }, { - "Rank": 1, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 1042 + "Rank": 1, + "Id": 1043 }, { - "Rank": 2, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 1043 + "Rank": 2, + "Id": 1044 }, { - "Rank": 3, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Id": 1044 + "Rank": 3, + "Id": 1045 }, { - "Rank": 4, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList", - "Id": 1045 + "Rank": 4, + "Id": 1046 }, { - "Rank": 5, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver", - "Id": 1046 + "Rank": 5, + "Id": 1047 }, { - "Rank": 6, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Site", - "Id": 1047 + "Rank": 6, + "Id": 1048 }, { - "Rank": 7, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Web", - "Id": 1048 + "Rank": 7, + "Id": 1049 }, { - "Rank": 8, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope All", - "Id": 1049 + "Rank": 8, + "Id": 1050 }, { - "Rank": 1, "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -Identity \"Speakers\"", - "Id": 1050 + "Rank": 1, + "Id": 1051 }, { - "Rank": 2, "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Id": 1051 + "Rank": 2, + "Id": 1052 }, { - "Rank": 1, "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Id": 1052 + "Rank": 1, + "Id": 1053 }, { - "Rank": 2, "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Id": 1053 + "Rank": 2, + "Id": 1054 }, { - "Rank": 1, "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Id": 1054 + "Rank": 1, + "Id": 1055 }, { - "Rank": 2, "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Id": 1055 + "Rank": 2, + "Id": 1056 }, { - "Rank": 3, "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Id": 1056 + "Rank": 3, + "Id": 1057 }, { - "Rank": 1, "CommandName": "Remove-PnPFileFromSiteTemplate", "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Id": 1057 + "Rank": 1, + "Id": 1058 }, { - "Rank": 1, "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 1058 + "Rank": 1, + "Id": 1059 }, { - "Rank": 2, "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Id": 1059 + "Rank": 2, + "Id": 1060 }, { - "Rank": 1, "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Id": 1060 + "Rank": 1, + "Id": 1061 }, { - "Rank": 2, "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Id": 1061 + "Rank": 2, + "Id": 1062 }, { - "Rank": 3, "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Id": 1062 + "Rank": 3, + "Id": 1063 }, { - "Rank": 1, "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "Id": 1063 + "Rank": 1, + "Id": 1064 }, { - "Rank": 2, "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "Id": 1064 + "Rank": 2, + "Id": 1065 }, { - "Rank": 3, "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", - "Id": 1065 + "Rank": 3, + "Id": 1066 }, { - "Rank": 4, "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "Id": 1066 + "Rank": 4, + "Id": 1067 }, { - "Rank": 1, "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Id": 1067 + "Rank": 1, + "Id": 1068 }, { - "Rank": 2, "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Id": 1068 + "Rank": 2, + "Id": 1069 }, { - "Rank": 1, "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 1069 + "Rank": 1, + "Id": 1070 }, { - "Rank": 2, "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Id": 1070 + "Rank": 2, + "Id": 1071 }, { - "Rank": 1, "CommandName": "Remove-PnPGraphSubscription", "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Id": 1071 + "Rank": 1, + "Id": 1072 }, { - "Rank": 1, "CommandName": "Remove-PnPGroup", "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Id": 1072 + "Rank": 1, + "Id": 1073 }, { - "Rank": 1, "CommandName": "Remove-PnPGroupMember", "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Id": 1073 + "Rank": 1, + "Id": 1074 }, { - "Rank": 1, "CommandName": "Remove-PnPHomeSite", "Command": "Remove-PnPHomeSite", - "Id": 1074 + "Rank": 1, + "Id": 1075 }, { - "Rank": 1, "CommandName": "Remove-PnPHubSiteAssociation", "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Id": 1075 + "Rank": 1, + "Id": 1076 }, { - "Rank": 1, "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Id": 1076 + "Rank": 1, + "Id": 1077 }, { - "Rank": 2, "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Id": 1077 + "Rank": 2, + "Id": 1078 }, { - "Rank": 1, "CommandName": "Remove-PnPIndexedProperty", "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Id": 1078 + "Rank": 1, + "Id": 1079 }, { - "Rank": 1, "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Id": 1079 + "Rank": 1, + "Id": 1080 }, { - "Rank": 2, "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Id": 1080 + "Rank": 2, + "Id": 1081 }, { - "Rank": 3, "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Id": 1081 + "Rank": 3, + "Id": 1082 }, { - "Rank": 4, "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Id": 1082 + "Rank": 4, + "Id": 1083 }, { - "Rank": 5, "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Id": 1083 + "Rank": 5, + "Id": 1084 }, { - "Rank": 1, "CommandName": "Remove-PnPKnowledgeHubSite", "Command": "Remove-PnPKnowledgeHubSite", - "Id": 1084 + "Rank": 1, + "Id": 1085 }, { - "Rank": 1, "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements", - "Id": 1085 + "Rank": 1, + "Id": 1086 }, { - "Rank": 2, "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Force", - "Id": 1086 + "Rank": 2, + "Id": 1087 }, { - "Rank": 3, "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Id": 1087 + "Rank": 3, + "Id": 1088 }, { - "Rank": 4, "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Id": 1088 + "Rank": 4, + "Id": 1089 }, { - "Rank": 1, "CommandName": "Remove-PnPListDesign", "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1089 + "Rank": 1, + "Id": 1090 }, { - "Rank": 1, "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Id": 1090 + "Rank": 1, + "Id": 1091 }, { - "Rank": 2, "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Id": 1091 + "Rank": 2, + "Id": 1092 }, { - "Rank": 3, "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\"", - "Id": 1092 + "Rank": 3, + "Id": 1093 }, { - "Rank": 1, "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Id": 1093 + "Rank": 1, + "Id": 1094 }, { - "Rank": 2, "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Id": 1094 + "Rank": 2, + "Id": 1095 }, { - "Rank": 3, "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Id": 1095 + "Rank": 3, + "Id": 1096 }, { - "Rank": 4, "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Id": 1096 + "Rank": 4, + "Id": 1097 }, { - "Rank": 5, "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Id": 1097 + "Rank": 5, + "Id": 1098 }, { - "Rank": 1, "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Id": 1098 + "Rank": 1, + "Id": 1099 }, { - "Rank": 2, "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Id": 1099 + "Rank": 2, + "Id": 1100 }, { - "Rank": 1, "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Id": 1100 + "Rank": 1, + "Id": 1101 }, { - "Rank": 2, "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Id": 1101 + "Rank": 2, + "Id": 1102 }, { - "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupMember", "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1102 + "Rank": 1, + "Id": 1103 }, { - "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1103 + "Rank": 1, + "Id": 1104 }, { - "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Id": 1104 + "Rank": 1, + "Id": 1105 }, { - "Rank": 2, "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Id": 1105 + "Rank": 2, + "Id": 1106 }, { - "Rank": 1, "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Identity 1032", - "Id": 1106 + "Rank": 1, + "Id": 1107 }, { - "Rank": 2, "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Id": 1107 + "Rank": 2, + "Id": 1108 }, { - "Rank": 3, "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Id": 1108 + "Rank": 3, + "Id": 1109 }, { - "Rank": 1, "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Id": 1109 + "Rank": 1, + "Id": 1110 }, { - "Rank": 2, "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Id": 1110 + "Rank": 2, + "Id": 1111 }, { - "Rank": 3, "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Id": 1111 + "Rank": 3, + "Id": 1112 }, { - "Rank": 1, "CommandName": "Remove-PnPOrgNewsSite", "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Id": 1112 + "Rank": 1, + "Id": 1113 }, { - "Rank": 1, "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Id": 1113 + "Rank": 1, + "Id": 1114 }, { - "Rank": 2, "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Id": 1114 + "Rank": 2, + "Id": 1115 }, { - "Rank": 3, "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage $page", - "Id": 1115 + "Rank": 3, + "Id": 1116 }, { - "Rank": 4, "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Id": 1116 + "Rank": 4, + "Id": 1117 }, { - "Rank": 1, "CommandName": "Remove-PnPPageComponent", "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 1117 + "Rank": 1, + "Id": 1118 }, { - "Rank": 1, "CommandName": "Remove-PnPPlannerBucket", "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Id": 1118 + "Rank": 1, + "Id": 1119 }, { - "Rank": 1, "CommandName": "Remove-PnPPlannerPlan", "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Id": 1119 + "Rank": 1, + "Id": 1120 }, { - "Rank": 1, "CommandName": "Remove-PnPPlannerRoster", "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Id": 1120 + "Rank": 1, + "Id": 1121 }, { - "Rank": 1, "CommandName": "Remove-PnPPlannerRosterMember", "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 1121 + "Rank": 1, + "Id": 1122 }, { - "Rank": 1, "CommandName": "Remove-PnPPlannerTask", "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Id": 1122 + "Rank": 1, + "Id": 1123 }, { - "Rank": 1, "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Id": 1123 + "Rank": 1, + "Id": 1124 }, { - "Rank": 2, "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Id": 1124 + "Rank": 2, + "Id": 1125 }, { - "Rank": 3, "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Id": 1125 + "Rank": 3, + "Id": 1126 }, { - "Rank": 1, "CommandName": "Remove-PnPPublishingImageRendition", "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Id": 1126 + "Rank": 1, + "Id": 1127 }, { - "Rank": 1, "CommandName": "Remove-PnPRoleDefinition", "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Id": 1127 + "Rank": 1, + "Id": 1128 }, { - "Rank": 1, "CommandName": "Remove-PnPSdnProvider", "Command": "Remove-PnPSdnProvider -Confirm:false", - "Id": 1128 + "Rank": 1, + "Id": 1129 }, { - "Rank": 1, "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Id": 1129 + "Rank": 1, + "Id": 1130 }, { - "Rank": 2, "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Id": 1130 + "Rank": 2, + "Id": 1131 }, { - "Rank": 3, "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Id": 1131 + "Rank": 3, + "Id": 1132 }, { - "Rank": 4, "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 1132 + "Rank": 4, + "Id": 1133 }, { - "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 1133 + "Rank": 1, + "Id": 1134 }, { - "Rank": 2, "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 1134 + "Rank": 2, + "Id": 1135 }, { - "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Id": 1135 + "Rank": 1, + "Id": 1136 }, { - "Rank": 1, "CommandName": "Remove-PnPSiteCollectionTermStore", "Command": "Remove-PnPSiteCollectionTermStore", - "Id": 1136 + "Rank": 1, + "Id": 1137 }, { - "Rank": 1, "CommandName": "Remove-PnPSiteDesign", "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1137 + "Rank": 1, + "Id": 1138 }, { - "Rank": 1, "CommandName": "Remove-PnPSiteDesignTask", "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1138 + "Rank": 1, + "Id": 1139 }, { - "Rank": 1, "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1139 + "Rank": 1, + "Id": 1140 }, { - "Rank": 2, "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Id": 1140 + "Rank": 2, + "Id": 1141 }, { - "Rank": 1, "CommandName": "Remove-PnPSiteScript", "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1141 + "Rank": 1, + "Id": 1142 }, { - "Rank": 1, "CommandName": "Remove-PnPSiteUserInvitations", "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Id": 1142 + "Rank": 1, + "Id": 1143 }, { - "Rank": 1, "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey", - "Id": 1143 + "Rank": 1, + "Id": 1144 }, { - "Rank": 2, "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Id": 1144 + "Rank": 2, + "Id": 1145 }, { - "Rank": 1, "CommandName": "Remove-PnPStoredCredential", "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Id": 1145 + "Rank": 1, + "Id": 1146 }, { - "Rank": 1, "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Id": 1146 + "Rank": 1, + "Id": 1147 }, { - "Rank": 2, "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Id": 1147 + "Rank": 2, + "Id": 1148 }, { - "Rank": 1, "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Id": 1148 + "Rank": 1, + "Id": 1149 }, { - "Rank": 2, "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Id": 1149 + "Rank": 2, + "Id": 1150 }, { - "Rank": 1, "CommandName": "Remove-PnPTeamsChannel", "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Id": 1150 + "Rank": 1, + "Id": 1151 }, { - "Rank": 1, "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Id": 1151 + "Rank": 1, + "Id": 1152 }, { - "Rank": 2, "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Id": 1152 + "Rank": 2, + "Id": 1153 }, { - "Rank": 3, "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Id": 1153 + "Rank": 3, + "Id": 1154 }, { - "Rank": 1, "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Id": 1154 + "Rank": 1, + "Id": 1155 }, { - "Rank": 2, "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Id": 1155 + "Rank": 2, + "Id": 1156 }, { - "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", - "Id": 1156 + "Rank": 3, + "Id": 1157 }, { - "Rank": 1, "CommandName": "Remove-PnPTeamsTag", "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Id": 1157 + "Rank": 1, + "Id": 1158 }, { - "Rank": 1, "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Id": 1158 + "Rank": 1, + "Id": 1159 }, { - "Rank": 2, "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Id": 1159 + "Rank": 2, + "Id": 1160 }, { - "Rank": 1, "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Id": 1160 + "Rank": 1, + "Id": 1161 }, { - "Rank": 2, "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 1161 + "Rank": 2, + "Id": 1162 }, { - "Rank": 1, "CommandName": "Remove-PnPTenantCdnOrigin", "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Id": 1162 + "Rank": 1, + "Id": 1163 }, { - "Rank": 1, "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1163 + "Rank": 1, + "Id": 1164 }, { - "Rank": 2, "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Id": 1164 + "Rank": 2, + "Id": 1165 }, { - "Rank": 1, "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1165 + "Rank": 1, + "Id": 1166 }, { - "Rank": 2, "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Id": 1166 + "Rank": 2, + "Id": 1167 }, { - "Rank": 3, "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Id": 1167 + "Rank": 3, + "Id": 1168 }, { - "Rank": 1, "CommandName": "Remove-PnPTenantSyncClientRestriction", "Command": "Remove-PnPTenantSyncClientRestriction", - "Id": 1168 + "Rank": 1, + "Id": 1169 }, { - "Rank": 1, "CommandName": "Remove-PnPTenantTheme", "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Id": 1169 + "Rank": 1, + "Id": 1170 }, { - "Rank": 1, "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Id": 1170 + "Rank": 1, + "Id": 1171 }, { - "Rank": 2, "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 1171 + "Rank": 2, + "Id": 1172 }, { - "Rank": 1, "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Id": 1172 + "Rank": 1, + "Id": 1173 }, { - "Rank": 2, "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Id": 1173 + "Rank": 2, + "Id": 1174 }, { - "Rank": 3, "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Id": 1174 + "Rank": 3, + "Id": 1175 }, { - "Rank": 1, "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Id": 1175 + "Rank": 1, + "Id": 1176 }, { - "Rank": 2, "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 1176 + "Rank": 2, + "Id": 1177 }, { - "Rank": 1, "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity 23", - "Id": 1177 + "Rank": 1, + "Id": 1178 }, { - "Rank": 2, "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Id": 1178 + "Rank": 2, + "Id": 1179 }, { - "Rank": 3, "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Id": 1179 + "Rank": 3, + "Id": 1180 }, { - "Rank": 1, "CommandName": "Remove-PnPUserInfo", "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Id": 1180 + "Rank": 1, + "Id": 1181 }, { - "Rank": 1, "CommandName": "Remove-PnPUserProfile", "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Id": 1181 + "Rank": 1, + "Id": 1182 }, { - "Rank": 1, "CommandName": "Remove-PnPView", "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Id": 1182 + "Rank": 1, + "Id": 1183 }, { - "Rank": 1, "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Id": 1183 + "Rank": 1, + "Id": 1184 }, { - "Rank": 1, "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity projectA", - "Id": 1184 + "Rank": 1, + "Id": 1185 }, { - "Rank": 2, "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Id": 1185 + "Rank": 2, + "Id": 1186 }, { - "Rank": 1, "CommandName": "Remove-PnPWebhookSubscription", "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Id": 1186 + "Rank": 1, + "Id": 1187 }, { - "Rank": 1, "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 1187 + "Rank": 1, + "Id": 1188 }, { - "Rank": 2, "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Id": 1188 + "Rank": 2, + "Id": 1189 }, { - "Rank": 1, "CommandName": "Remove-PnPWikiPage", "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Id": 1189 + "Rank": 1, + "Id": 1190 }, { - "Rank": 1, "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Id": 1190 + "Rank": 1, + "Id": 1191 }, { - "Rank": 2, "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Id": 1191 + "Rank": 2, + "Id": 1192 }, { - "Rank": 3, "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Id": 1192 + "Rank": 3, + "Id": 1193 }, { - "Rank": 1, "CommandName": "Rename-PnPFolder", "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Id": 1193 + "Rank": 1, + "Id": 1194 }, { - "Rank": 1, "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1194 + "Rank": 1, + "Id": 1195 }, { - "Rank": 2, "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Id": 1195 + "Rank": 2, + "Id": 1196 }, { - "Rank": 1, "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken", - "Id": 1196 + "Rank": 1, + "Id": 1197 }, { - "Rank": 2, "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Id": 1197 + "Rank": 2, + "Id": 1198 }, { - "Rank": 3, "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Id": 1198 + "Rank": 3, + "Id": 1199 }, { - "Rank": 4, "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Id": 1199 + "Rank": 4, + "Id": 1200 }, { - "Rank": 1, "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Id": 1200 + "Rank": 1, + "Id": 1201 }, { - "Rank": 2, "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Id": 1201 + "Rank": 2, + "Id": 1202 }, { - "Rank": 1, "CommandName": "Request-PnPReIndexList", "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Id": 1202 + "Rank": 1, + "Id": 1203 }, { - "Rank": 1, "CommandName": "Request-PnPReIndexWeb", "Command": "Request-PnPReIndexWeb", - "Id": 1203 + "Rank": 1, + "Id": 1204 }, { - "Rank": 1, "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Id": 1204 + "Rank": 1, + "Id": 1205 }, { - "Rank": 2, "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Id": 1205 + "Rank": 2, + "Id": 1206 }, { - "Rank": 3, "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Id": 1206 + "Rank": 3, + "Id": 1207 }, { - "Rank": 1, "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Id": 1207 + "Rank": 1, + "Id": 1208 }, { - "Rank": 2, "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Id": 1208 + "Rank": 2, + "Id": 1209 }, { - "Rank": 1, "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\"", - "Id": 1209 + "Rank": 1, + "Id": 1210 }, { - "Rank": 2, "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Id": 1210 + "Rank": 2, + "Id": 1211 }, { - "Rank": 1, "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1211 + "Rank": 1, + "Id": 1212 }, { - "Rank": 1, "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Id": 1212 + "Rank": 1, + "Id": 1213 }, { - "Rank": 1, "CommandName": "Resolve-PnPFolder", "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Id": 1213 + "Rank": 1, + "Id": 1214 }, { - "Rank": 1, "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 1214 + "Rank": 1, + "Id": 1215 }, { - "Rank": 1, "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Id": 1215 + "Rank": 1, + "Id": 1216 }, { - "Rank": 2, "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Id": 1216 + "Rank": 2, + "Id": 1217 }, { - "Rank": 3, "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Id": 1217 + "Rank": 3, + "Id": 1218 }, { - "Rank": 1, "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Id": 1218 + "Rank": 1, + "Id": 1219 }, { - "Rank": 2, "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Id": 1219 + "Rank": 2, + "Id": 1220 }, { - "Rank": 1, "CommandName": "Restore-PnPRecycleBinItem", "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Id": 1220 + "Rank": 1, + "Id": 1221 }, { - "Rank": 1, "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1221 + "Rank": 1, + "Id": 1222 }, { - "Rank": 2, "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Id": 1222 + "Rank": 2, + "Id": 1223 }, { - "Rank": 1, "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1223 + "Rank": 1, + "Id": 1224 }, { - "Rank": 2, "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Id": 1224 + "Rank": 2, + "Id": 1225 }, { - "Rank": 3, "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Id": 1225 + "Rank": 3, + "Id": 1226 }, { - "Rank": 1, "CommandName": "Revoke-PnPAzureADAppSitePermission", "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Id": 1226 + "Rank": 1, + "Id": 1227 }, { - "Rank": 1, "CommandName": "Revoke-PnPHubSiteRights", "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 1227 + "Rank": 1, + "Id": 1228 }, { - "Rank": 1, "CommandName": "Revoke-PnPSiteDesignRights", "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 1228 + "Rank": 1, + "Id": 1229 }, { - "Rank": 1, "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Id": 1229 + "Rank": 1, + "Id": 1230 }, { - "Rank": 1, "CommandName": "Revoke-PnPUserSession", "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Id": 1230 + "Rank": 1, + "Id": 1231 }, { - "Rank": 1, "CommandName": "Save-PnPPageConversionLog", "Command": "Save-PnPPageConversionLog", - "Id": 1231 + "Rank": 1, + "Id": 1232 }, { - "Rank": 1, "CommandName": "Save-PnPSiteTemplate", "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Id": 1232 + "Rank": 1, + "Id": 1233 }, { - "Rank": 1, "CommandName": "Save-PnPTenantTemplate", "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Id": 1233 + "Rank": 1, + "Id": 1234 }, { - "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": 1234 + "Rank": 1, + "Id": 1235 }, { - "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", - "Id": 1235 + "Rank": 2, + "Id": 1236 }, { - "Rank": 3, "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Id": 1236 + "Rank": 3, + "Id": 1237 }, { - "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", - "Id": 1237 + "Rank": 4, + "Id": 1238 }, { - "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", - "Id": 1238 + "Rank": 5, + "Id": 1239 }, { - "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\"", - "Id": 1239 + "Rank": 6, + "Id": 1240 }, { - "Rank": 1, "CommandName": "Set-PnPAdaptiveScopeProperty", "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Id": 1240 + "Rank": 1, + "Id": 1241 }, { - "Rank": 1, "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1241 + "Rank": 1, + "Id": 1242 }, { - "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`\"}\"", - "Id": 1242 + "Rank": 2, + "Id": 1243 }, { - "Rank": 1, "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -On", - "Id": 1243 + "Rank": 1, + "Id": 1244 }, { - "Rank": 2, "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -Off", - "Id": 1244 + "Rank": 2, + "Id": 1245 }, { - "Rank": 1, "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -EnableAll", - "Id": 1245 + "Rank": 1, + "Id": 1246 }, { - "Rank": 2, "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -DisableAll", - "Id": 1246 + "Rank": 2, + "Id": 1247 }, { - "Rank": 3, "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7", - "Id": 1247 + "Rank": 3, + "Id": 1248 }, { - "Rank": 4, "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -TrimAuditLog", - "Id": 1248 + "Rank": 4, + "Id": 1249 }, { - "Rank": 5, "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Id": 1249 + "Rank": 5, + "Id": 1250 }, { - "Rank": 1, "CommandName": "Set-PnPAvailablePageLayouts", "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Id": 1250 + "Rank": 1, + "Id": 1251 }, { - "Rank": 1, "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Id": 1251 + "Rank": 1, + "Id": 1252 }, { - "Rank": 2, "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Id": 1252 + "Rank": 2, + "Id": 1253 }, { - "Rank": 1, "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Id": 1253 + "Rank": 1, + "Id": 1254 }, { - "Rank": 2, "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Id": 1254 + "Rank": 2, + "Id": 1255 }, { - "Rank": 3, "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Id": 1255 + "Rank": 3, + "Id": 1256 }, { - "Rank": 1, "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Id": 1256 + "Rank": 1, + "Id": 1257 }, { - "Rank": 2, "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Id": 1257 + "Rank": 2, + "Id": 1258 }, { - "Rank": 3, "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Id": 1258 + "Rank": 3, + "Id": 1259 }, { - "Rank": 1, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Id": 1259 + "Rank": 1, + "Id": 1260 }, { - "Rank": 2, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Id": 1260 + "Rank": 2, + "Id": 1261 }, { - "Rank": 1, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Id": 1261 + "Rank": 1, + "Id": 1262 }, { - "Rank": 2, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Id": 1262 + "Rank": 2, + "Id": 1263 }, { - "Rank": 3, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Id": 1263 + "Rank": 3, + "Id": 1264 }, { - "Rank": 4, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Id": 1264 + "Rank": 4, + "Id": 1265 }, { - "Rank": 1, "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Id": 1265 + "Rank": 1, + "Id": 1266 }, { - "Rank": 2, "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Id": 1266 + "Rank": 2, + "Id": 1267 }, { - "Rank": 3, "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Id": 1267 + "Rank": 3, + "Id": 1268 }, { - "Rank": 4, "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Id": 1268 + "Rank": 4, + "Id": 1269 }, { - "Rank": 5, "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Id": 1269 + "Rank": 5, + "Id": 1270 }, { - "Rank": 1, "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Id": 1270 + "Rank": 1, + "Id": 1271 }, { - "Rank": 2, "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Id": 1271 + "Rank": 2, + "Id": 1272 }, { - "Rank": 3, "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Id": 1272 + "Rank": 3, + "Id": 1273 }, { - "Rank": 4, "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Id": 1273 + "Rank": 4, + "Id": 1274 }, { - "Rank": 1, "CommandName": "Set-PnPDefaultContentTypeToList", "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Id": 1274 + "Rank": 1, + "Id": 1275 }, { - "Rank": 1, "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Id": 1275 + "Rank": 1, + "Id": 1276 }, { - "Rank": 2, "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Id": 1276 + "Rank": 2, + "Id": 1277 }, { - "Rank": 3, "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Id": 1277 + "Rank": 3, + "Id": 1278 }, { - "Rank": 1, "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Id": 1278 + "Rank": 1, + "Id": 1279 }, { - "Rank": 2, "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Id": 1279 + "Rank": 2, + "Id": 1280 }, { - "Rank": 3, "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Id": 1280 + "Rank": 3, + "Id": 1281 }, { - "Rank": 1, "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Id": 1281 + "Rank": 1, + "Id": 1282 }, { - "Rank": 2, "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Id": 1282 + "Rank": 2, + "Id": 1283 }, { - "Rank": 1, "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Id": 1283 + "Rank": 1, + "Id": 1284 }, { - "Rank": 2, "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Id": 1284 + "Rank": 2, + "Id": 1285 }, { - "Rank": 3, "CommandName": "Set-PnPField", "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Id": 1285 + "Rank": 3, + "Id": 1286 }, { - "Rank": 1, "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Id": 1286 + "Rank": 1, + "Id": 1287 }, { - "Rank": 2, "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Id": 1287 + "Rank": 2, + "Id": 1288 }, { - "Rank": 1, "CommandName": "Set-PnPFileCheckedOut", "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Id": 1288 + "Rank": 1, + "Id": 1289 }, { - "Rank": 1, "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1289 + "Rank": 1, + "Id": 1290 }, { - "Rank": 2, "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1290 + "Rank": 2, + "Id": 1291 }, { - "Rank": 3, "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Id": 1291 + "Rank": 3, + "Id": 1292 }, { - "Rank": 1, "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true", - "Id": 1292 + "Rank": 1, + "Id": 1293 }, { - "Rank": 2, "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Id": 1293 + "Rank": 2, + "Id": 1294 }, { - "Rank": 3, "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Id": 1294 + "Rank": 3, + "Id": 1295 }, { - "Rank": 4, "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -LogoUrl \"\"", - "Id": 1295 + "Rank": 4, + "Id": 1296 }, { - "Rank": 1, "CommandName": "Set-PnPGraphSubscription", "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Id": 1296 + "Rank": 1, + "Id": 1297 }, { - "Rank": 1, "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Id": 1297 + "Rank": 1, + "Id": 1298 }, { - "Rank": 2, "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Id": 1298 + "Rank": 2, + "Id": 1299 }, { - "Rank": 1, "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Id": 1299 + "Rank": 1, + "Id": 1300 }, { - "Rank": 2, "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Id": 1300 + "Rank": 2, + "Id": 1301 }, { - "Rank": 3, "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Id": 1301 + "Rank": 3, + "Id": 1302 }, { - "Rank": 4, "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Id": 1302 + "Rank": 4, + "Id": 1303 }, { - "Rank": 5, "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Id": 1303 + "Rank": 5, + "Id": 1304 }, { - "Rank": 1, "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Id": 1304 + "Rank": 1, + "Id": 1305 }, { - "Rank": 2, "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Id": 1305 + "Rank": 2, + "Id": 1306 }, { - "Rank": 1, "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Id": 1306 + "Rank": 1, + "Id": 1307 }, { - "Rank": 2, "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Id": 1307 + "Rank": 2, + "Id": 1308 }, { - "Rank": 1, "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Id": 1308 + "Rank": 1, + "Id": 1309 }, { - "Rank": 2, "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Id": 1309 + "Rank": 2, + "Id": 1310 }, { - "Rank": 1, "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Id": 1310 + "Rank": 1, + "Id": 1311 }, { - "Rank": 2, "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Id": 1311 + "Rank": 2, + "Id": 1312 }, { - "Rank": 3, "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Id": 1312 + "Rank": 3, + "Id": 1313 }, { - "Rank": 4, "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "Id": 1313 + "Rank": 4, + "Id": 1314 }, { - "Rank": 5, "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Id": 1314 + "Rank": 5, + "Id": 1315 }, { - "Rank": 6, "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Id": 1315 + "Rank": 6, + "Id": 1316 }, { - "Rank": 1, "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Id": 1316 + "Rank": 1, + "Id": 1317 }, { - "Rank": 2, "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Id": 1317 + "Rank": 2, + "Id": 1318 }, { - "Rank": 1, "CommandName": "Set-PnPIndexedProperties", "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Id": 1318 + "Rank": 1, + "Id": 1319 }, { - "Rank": 1, "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Id": 1319 + "Rank": 1, + "Id": 1320 }, { - "Rank": 2, "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Id": 1320 + "Rank": 2, + "Id": 1321 }, { - "Rank": 1, "CommandName": "Set-PnPKnowledgeHubSite", "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Id": 1321 + "Rank": 1, + "Id": 1322 }, { - "Rank": 1, "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Id": 1322 + "Rank": 1, + "Id": 1323 }, { - "Rank": 2, "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Id": 1323 + "Rank": 2, + "Id": 1324 }, { - "Rank": 1, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Id": 1324 + "Rank": 1, + "Id": 1325 }, { - "Rank": 2, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Id": 1325 + "Rank": 2, + "Id": 1326 }, { - "Rank": 3, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Id": 1326 + "Rank": 3, + "Id": 1327 }, { - "Rank": 4, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Id": 1327 + "Rank": 4, + "Id": 1328 }, { - "Rank": 5, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Id": 1328 + "Rank": 5, + "Id": 1329 }, { - "Rank": 6, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Id": 1329 + "Rank": 6, + "Id": 1330 }, { - "Rank": 7, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Id": 1330 + "Rank": 7, + "Id": 1331 }, { - "Rank": 8, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Id": 1331 + "Rank": 8, + "Id": 1332 }, { - "Rank": 9, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Id": 1332 + "Rank": 9, + "Id": 1333 }, { - "Rank": 10, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Id": 1333 + "Rank": 10, + "Id": 1334 }, { - "Rank": 11, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Id": 1334 + "Rank": 11, + "Id": 1335 }, { - "Rank": 1, "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Id": 1335 + "Rank": 1, + "Id": 1336 }, { - "Rank": 2, "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Id": 1336 + "Rank": 2, + "Id": 1337 }, { - "Rank": 1, "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1337 + "Rank": 1, + "Id": 1338 }, { - "Rank": 2, "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1338 + "Rank": 2, + "Id": 1339 }, { - "Rank": 3, "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1339 + "Rank": 3, + "Id": 1340 }, { - "Rank": 4, "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Id": 1340 + "Rank": 4, + "Id": 1341 }, { - "Rank": 5, "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Id": 1341 + "Rank": 5, + "Id": 1342 }, { - "Rank": 1, "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Id": 1342 + "Rank": 1, + "Id": 1343 }, { - "Rank": 2, "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Id": 1343 + "Rank": 2, + "Id": 1344 }, { - "Rank": 1, "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1344 + "Rank": 1, + "Id": 1345 }, { - "Rank": 2, "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1345 + "Rank": 2, + "Id": 1346 }, { - "Rank": 3, "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Id": 1346 + "Rank": 3, + "Id": 1347 }, { - "Rank": 4, "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Id": 1347 + "Rank": 4, + "Id": 1348 }, { - "Rank": 5, "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Id": 1348 + "Rank": 5, + "Id": 1349 }, { - "Rank": 1, "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1349 + "Rank": 1, + "Id": 1350 }, { - "Rank": 2, "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1350 + "Rank": 2, + "Id": 1351 }, { - "Rank": 1, "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Id": 1351 + "Rank": 1, + "Id": 1352 }, { - "Rank": 2, "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Id": 1352 + "Rank": 2, + "Id": 1353 }, { - "Rank": 1, "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Id": 1353 + "Rank": 1, + "Id": 1354 }, { - "Rank": 2, "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Id": 1354 + "Rank": 2, + "Id": 1355 }, { - "Rank": 3, "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Id": 1355 + "Rank": 3, + "Id": 1356 }, { - "Rank": 4, "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Id": 1356 + "Rank": 4, + "Id": 1357 }, { - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Id": 1357 + "Rank": 1, + "Id": 1358 }, { - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Id": 1358 + "Rank": 2, + "Id": 1359 }, { - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1359 + "Rank": 3, + "Id": 1360 }, { - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Id": 1360 + "Rank": 1, + "Id": 1361 }, { - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Id": 1361 + "Rank": 2, + "Id": 1362 }, { - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1362 + "Rank": 3, + "Id": 1363 }, { - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Id": 1363 + "Rank": 1, + "Id": 1364 }, { - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Id": 1364 + "Rank": 2, + "Id": 1365 }, { - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1365 + "Rank": 3, + "Id": 1366 }, { - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Id": 1366 + "Rank": 1, + "Id": 1367 }, { - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Id": 1367 + "Rank": 2, + "Id": 1368 }, { - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1368 + "Rank": 3, + "Id": 1369 }, { - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Id": 1369 + "Rank": 1, + "Id": 1370 }, { - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Id": 1370 + "Rank": 2, + "Id": 1371 }, { - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1371 + "Rank": 3, + "Id": 1372 }, { - "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Id": 1372 + "Rank": 1, + "Id": 1373 }, { - "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Id": 1373 + "Rank": 2, + "Id": 1374 }, { - "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1374 + "Rank": 3, + "Id": 1375 }, { - "Rank": 1, "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Id": 1375 + "Rank": 1, + "Id": 1376 }, { - "Rank": 2, "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Id": 1376 + "Rank": 2, + "Id": 1377 }, { - "Rank": 3, "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Id": 1377 + "Rank": 3, + "Id": 1378 }, { - "Rank": 4, "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Id": 1378 + "Rank": 4, + "Id": 1379 }, { - "Rank": 5, "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Id": 1379 + "Rank": 5, + "Id": 1380 }, { - "Rank": 6, "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Id": 1380 + "Rank": 6, + "Id": 1381 }, { - "Rank": 1, "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Id": 1381 + "Rank": 1, + "Id": 1382 }, { - "Rank": 2, "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Id": 1382 + "Rank": 2, + "Id": 1383 }, { - "Rank": 1, "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Id": 1383 + "Rank": 1, + "Id": 1384 }, { - "Rank": 2, "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -On", - "Id": 1384 + "Rank": 2, + "Id": 1385 }, { - "Rank": 1, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Id": 1385 + "Rank": 1, + "Id": 1386 }, { - "Rank": 2, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Id": 1386 + "Rank": 2, + "Id": 1387 }, { - "Rank": 3, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Id": 1387 + "Rank": 3, + "Id": 1388 }, { - "Rank": 4, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Id": 1388 + "Rank": 4, + "Id": 1389 }, { - "Rank": 5, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Id": 1389 + "Rank": 5, + "Id": 1390 }, { - "Rank": 6, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "Id": 1390 + "Rank": 6, + "Id": 1391 }, { - "Rank": 7, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Id": 1391 + "Rank": 7, + "Id": 1392 }, { - "Rank": 8, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "Id": 1392 + "Rank": 8, + "Id": 1393 }, { - "Rank": 9, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "Id": 1393 + "Rank": 9, + "Id": 1394 }, { - "Rank": 10, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Id": 1394 + "Rank": 10, + "Id": 1395 }, { - "Rank": 11, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "Id": 1395 + "Rank": 11, + "Id": 1396 }, { - "Rank": 1, "CommandName": "Set-PnPPageTextPart", "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Id": 1396 + "Rank": 1, + "Id": 1397 }, { - "Rank": 1, "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Id": 1397 + "Rank": 1, + "Id": 1398 }, { - "Rank": 2, "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Id": 1398 + "Rank": 2, + "Id": 1399 }, { - "Rank": 1, "CommandName": "Set-PnPPlannerBucket", "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Id": 1399 + "Rank": 1, + "Id": 1400 }, { - "Rank": 1, "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Id": 1400 + "Rank": 1, + "Id": 1401 }, { - "Rank": 2, "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Id": 1401 + "Rank": 2, + "Id": 1402 }, { - "Rank": 1, "CommandName": "Set-PnPPlannerPlan", "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Id": 1402 + "Rank": 1, + "Id": 1403 }, { - "Rank": 1, "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Id": 1403 + "Rank": 1, + "Id": 1404 }, { - "Rank": 2, "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Id": 1404 + "Rank": 2, + "Id": 1405 }, { - "Rank": 3, "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Id": 1405 + "Rank": 3, + "Id": 1406 }, { - "Rank": 1, "CommandName": "Set-PnPPlannerUserPolicy", "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Id": 1406 + "Rank": 1, + "Id": 1407 }, { - "Rank": 1, "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Id": 1407 + "Rank": 1, + "Id": 1408 }, { - "Rank": 2, "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Id": 1408 + "Rank": 2, + "Id": 1409 }, { - "Rank": 3, "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Id": 1409 + "Rank": 3, + "Id": 1410 }, { - "Rank": 1, "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Id": 1410 + "Rank": 1, + "Id": 1411 }, { - "Rank": 2, "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled", - "Id": 1411 + "Rank": 2, + "Id": 1412 }, { - "Rank": 3, "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Id": 1412 + "Rank": 3, + "Id": 1413 }, { - "Rank": 1, "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Id": 1413 + "Rank": 1, + "Id": 1414 }, { - "Rank": 2, "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Id": 1414 + "Rank": 2, + "Id": 1415 }, { - "Rank": 3, "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Id": 1415 + "Rank": 3, + "Id": 1416 }, { - "Rank": 4, "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Id": 1416 + "Rank": 4, + "Id": 1417 }, { - "Rank": 1, "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Id": 1417 + "Rank": 1, + "Id": 1418 }, { - "Rank": 2, "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Id": 1418 + "Rank": 2, + "Id": 1419 }, { - "Rank": 3, "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Id": 1419 + "Rank": 3, + "Id": 1420 }, { - "Rank": 4, "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 1420 + "Rank": 4, + "Id": 1421 }, { - "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", - "Id": 1421 + "Rank": 1, + "Id": 1422 }, { - "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\"", - "Id": 1422 + "Rank": 2, + "Id": 1423 }, { - "Rank": 1, "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Id": 1423 + "Rank": 1, + "Id": 1424 }, { - "Rank": 2, "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Id": 1424 + "Rank": 2, + "Id": 1425 }, { - "Rank": 3, "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Id": 1425 + "Rank": 3, + "Id": 1426 }, { - "Rank": 4, "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Id": 1426 + "Rank": 4, + "Id": 1427 }, { - "Rank": 5, "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Id": 1427 + "Rank": 5, + "Id": 1428 }, { - "Rank": 6, "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Id": 1428 + "Rank": 6, + "Id": 1429 }, { - "Rank": 7, "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Id": 1429 + "Rank": 7, + "Id": 1430 }, { - "Rank": 1, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification \"HBI\"", - "Id": 1430 + "Rank": 1, + "Id": 1431 }, { - "Rank": 2, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification $null", - "Id": 1431 + "Rank": 2, + "Id": 1432 }, { - "Rank": 3, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows", - "Id": 1432 + "Rank": 3, + "Id": 1433 }, { - "Rank": 4, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows:$false", - "Id": 1433 + "Rank": 4, + "Id": 1434 }, { - "Rank": 5, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Id": 1434 + "Rank": 5, + "Id": 1435 }, { - "Rank": 6, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -NoScriptSite $false", - "Id": 1435 + "Rank": 6, + "Id": 1436 }, { - "Rank": 7, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "Id": 1436 + "Rank": 7, + "Id": 1437 }, { - "Rank": 8, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "Id": 1437 + "Rank": 8, + "Id": 1438 }, { - "Rank": 9, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "Id": 1438 + "Rank": 9, + "Id": 1439 }, { - "Rank": 10, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "Id": 1439 + "Rank": 10, + "Id": 1440 }, { - "Rank": 11, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "Id": 1440 + "Rank": 11, + "Id": 1441 }, { - "Rank": 12, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "Id": 1441 + "Rank": 12, + "Id": 1442 }, { - "Rank": 13, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "Id": 1442 + "Rank": 13, + "Id": 1443 }, { - "Rank": 14, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "Id": 1443 + "Rank": 14, + "Id": 1444 }, { - "Rank": 15, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "Id": 1444 + "Rank": 15, + "Id": 1445 }, { - "Rank": 16, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "Id": 1445 + "Rank": 16, + "Id": 1446 }, { - "Rank": 17, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -CancelVPForExistingLibs", - "Id": 1446 + "Rank": 17, + "Id": 1447 }, { - "Rank": 1, "CommandName": "Set-PnPSiteClassification", "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Id": 1447 + "Rank": 1, + "Id": 1448 }, { - "Rank": 1, "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Open", - "Id": 1448 + "Rank": 1, + "Id": 1449 }, { - "Rank": 2, "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Closed", - "Id": 1449 + "Rank": 2, + "Id": 1450 }, { - "Rank": 1, "CommandName": "Set-PnPSiteDesign", "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Id": 1450 + "Rank": 1, + "Id": 1451 }, { - "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\"", - "Id": 1451 + "Rank": 2, + "Id": 1452 }, { - "Rank": 1, "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "Id": 1452 + "Rank": 1, + "Id": 1453 }, { - "Rank": 2, "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Id": 1453 + "Rank": 2, + "Id": 1454 }, { - "Rank": 1, "CommandName": "Set-PnPSitePolicy", "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Id": 1454 + "Rank": 1, + "Id": 1455 }, { - "Rank": 1, "CommandName": "Set-PnPSiteScript", "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Id": 1455 + "Rank": 1, + "Id": 1456 }, { - "Rank": 1, "CommandName": "Set-PnPSiteScriptPackage", "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Id": 1456 + "Rank": 1, + "Id": 1457 }, { - "Rank": 1, "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Id": 1457 + "Rank": 1, + "Id": 1458 }, { - "Rank": 2, "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Id": 1458 + "Rank": 2, + "Id": 1459 }, { - "Rank": 1, "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Id": 1459 + "Rank": 1, + "Id": 1460 }, { - "Rank": 2, "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Id": 1460 + "Rank": 2, + "Id": 1461 }, { - "Rank": 3, "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Id": 1461 + "Rank": 3, + "Id": 1462 }, { - "Rank": 4, "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Id": 1462 + "Rank": 4, + "Id": 1463 }, { - "Rank": 5, "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Id": 1463 + "Rank": 5, + "Id": 1464 }, { - "Rank": 6, "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Id": 1464 + "Rank": 6, + "Id": 1465 }, { - "Rank": 1, "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Id": 1465 + "Rank": 1, + "Id": 1466 }, { - "Rank": 2, "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Id": 1466 + "Rank": 2, + "Id": 1467 }, { - "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 1467 + "Rank": 1, + "Id": 1468 }, { - "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 1468 + "Rank": 2, + "Id": 1469 }, { - "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 1469 + "Rank": 1, + "Id": 1470 }, { - "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 1470 + "Rank": 2, + "Id": 1471 }, { - "Rank": 1, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Id": 1471 + "Rank": 1, + "Id": 1472 }, { - "Rank": 2, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Id": 1472 + "Rank": 2, + "Id": 1473 }, { - "Rank": 1, "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Id": 1473 + "Rank": 1, + "Id": 1474 }, { - "Rank": 2, "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Id": 1474 + "Rank": 2, + "Id": 1475 }, { - "Rank": 3, "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Id": 1475 + "Rank": 3, + "Id": 1476 }, { - "Rank": 1, "CommandName": "Set-PnPTeamifyPromptHidden", "Command": "Set-PnPTeamifyPromptHidden", - "Id": 1476 + "Rank": 1, + "Id": 1477 }, { - "Rank": 1, "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Id": 1477 + "Rank": 1, + "Id": 1478 }, { - "Rank": 2, "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Id": 1478 + "Rank": 2, + "Id": 1479 }, { - "Rank": 1, "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "Id": 1479 + "Rank": 1, + "Id": 1480 }, { - "Rank": 2, "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Id": 1480 + "Rank": 2, + "Id": 1481 }, { - "Rank": 1, "CommandName": "Set-PnPTeamsTab", "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Id": 1481 + "Rank": 1, + "Id": 1482 }, { - "Rank": 1, "CommandName": "Set-PnPTeamsTag", "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Id": 1482 + "Rank": 1, + "Id": 1483 }, { - "Rank": 1, "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Id": 1483 + "Rank": 1, + "Id": 1484 }, { - "Rank": 2, "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Id": 1484 + "Rank": 2, + "Id": 1485 }, { - "Rank": 3, "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Id": 1485 + "Rank": 3, + "Id": 1486 }, { - "Rank": 4, "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Id": 1486 + "Rank": 4, + "Id": 1487 }, { - "Rank": 1, "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Id": 1487 + "Rank": 1, + "Id": 1488 }, { - "Rank": 2, "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Id": 1488 + "Rank": 2, + "Id": 1489 }, { - "Rank": 3, "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Id": 1489 + "Rank": 3, + "Id": 1490 }, { - "Rank": 1, "CommandName": "Set-PnPTeamsTeamPicture", "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Id": 1490 + "Rank": 1, + "Id": 1491 }, { - "Rank": 1, "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Id": 1491 + "Rank": 1, + "Id": 1492 }, { - "Rank": 2, "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Id": 1492 + "Rank": 2, + "Id": 1493 }, { - "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\"", - "Id": 1493 + "Rank": 1, + "Id": 1494 }, { - "Rank": 2, "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Id": 1494 + "Rank": 2, + "Id": 1495 }, { - "Rank": 3, "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Id": 1495 + "Rank": 3, + "Id": 1496 }, { - "Rank": 4, "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Id": 1496 + "Rank": 4, + "Id": 1497 }, { - "Rank": 1, "CommandName": "Set-PnPTenantAppCatalogUrl", "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Id": 1497 + "Rank": 1, + "Id": 1498 }, { - "Rank": 1, "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Id": 1498 + "Rank": 1, + "Id": 1499 }, { - "Rank": 2, "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Id": 1499 + "Rank": 2, + "Id": 1500 }, { - "Rank": 3, "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Id": 1500 + "Rank": 3, + "Id": 1501 }, { - "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\"", - "Id": 1501 + "Rank": 1, + "Id": 1502 }, { - "Rank": 2, "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Id": 1502 + "Rank": 2, + "Id": 1503 }, { - "Rank": 1, "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Id": 1503 + "Rank": 1, + "Id": 1504 }, { - "Rank": 2, "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Id": 1504 + "Rank": 2, + "Id": 1505 }, { - "Rank": 3, "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 1505 + "Rank": 3, + "Id": 1506 }, { - "Rank": 4, "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 1506 + "Rank": 4, + "Id": 1507 }, { - "Rank": 5, "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Id": 1507 + "Rank": 5, + "Id": 1508 }, { - "Rank": 1, "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Id": 1508 + "Rank": 1, + "Id": 1509 }, { - "Rank": 2, "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Id": 1509 + "Rank": 2, + "Id": 1510 }, { - "Rank": 1, "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Id": 1510 + "Rank": 1, + "Id": 1511 }, { - "Rank": 2, "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1511 + "Rank": 2, + "Id": 1512 }, { - "Rank": 3, "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1512 + "Rank": 3, + "Id": 1513 }, { - "Rank": 4, "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "Id": 1513 + "Rank": 4, + "Id": 1514 }, { - "Rank": 1, "CommandName": "Set-PnPTermGroup", "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Id": 1514 + "Rank": 1, + "Id": 1515 }, { - "Rank": 1, "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Id": 1515 + "Rank": 1, + "Id": 1516 }, { - "Rank": 2, "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Id": 1516 + "Rank": 2, + "Id": 1517 }, { - "Rank": 3, "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Id": 1517 + "Rank": 3, + "Id": 1518 }, { - "Rank": 1, "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme", - "Id": 1518 + "Rank": 1, + "Id": 1519 }, { - "Rank": 2, "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Id": 1519 + "Rank": 2, + "Id": 1520 }, { - "Rank": 3, "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Id": 1520 + "Rank": 3, + "Id": 1521 }, { - "Rank": 4, "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Id": 1521 + "Rank": 4, + "Id": 1522 }, { - "Rank": 1, "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Id": 1522 + "Rank": 1, + "Id": 1523 }, { - "Rank": 2, "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Id": 1523 + "Rank": 2, + "Id": 1524 }, { - "Rank": 3, "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Id": 1524 + "Rank": 3, + "Id": 1525 }, { - "Rank": 4, "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -Off", - "Id": 1525 + "Rank": 4, + "Id": 1526 }, { - "Rank": 1, "CommandName": "Set-PnPUserOneDriveQuota", "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Id": 1526 + "Rank": 1, + "Id": 1527 }, { - "Rank": 1, "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Id": 1527 + "Rank": 1, + "Id": 1528 }, { - "Rank": 2, "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Id": 1528 + "Rank": 2, + "Id": 1529 }, { - "Rank": 1, "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "Id": 1529 + "Rank": 1, + "Id": 1530 }, { - "Rank": 2, "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Id": 1530 + "Rank": 2, + "Id": 1531 }, { - "Rank": 3, "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "Id": 1531 + "Rank": 3, + "Id": 1532 }, { - "Rank": 4, "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Id": 1532 + "Rank": 4, + "Id": 1533 }, { - "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", - "Id": 1533 + "Rank": 1, + "Id": 1534 }, { - "Rank": 2, "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Id": 1534 + "Rank": 2, + "Id": 1535 }, { - "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", - "Id": 1535 + "Rank": 3, + "Id": 1536 }, { - "Rank": 4, "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Id": 1536 + "Rank": 4, + "Id": 1537 }, { - "Rank": 1, "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Id": 1537 + "Rank": 1, + "Id": 1538 }, { - "Rank": 2, "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Id": 1538 + "Rank": 2, + "Id": 1539 }, { - "Rank": 3, "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Id": 1539 + "Rank": 3, + "Id": 1540 }, { - "Rank": 4, "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -NoCrawl:$true", - "Id": 1540 + "Rank": 4, + "Id": 1541 }, { - "Rank": 1, "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Id": 1541 + "Rank": 1, + "Id": 1542 }, { - "Rank": 2, "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Id": 1542 + "Rank": 2, + "Id": 1543 }, { - "Rank": 3, "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Id": 1543 + "Rank": 3, + "Id": 1544 }, { - "Rank": 1, "CommandName": "Set-PnPWebhookSubscription", "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Id": 1544 + "Rank": 1, + "Id": 1545 }, { - "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\"", - "Id": 1545 + "Rank": 2, + "Id": 1546 }, { - "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\"", - "Id": 1546 + "Rank": 1, + "Id": 1547 }, { - "Rank": 1, "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Id": 1547 + "Rank": 1, + "Id": 1548 }, { - "Rank": 2, "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Id": 1548 + "Rank": 2, + "Id": 1549 }, { - "Rank": 3, "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Id": 1549 + "Rank": 3, + "Id": 1550 }, { - "Rank": 4, "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Id": 1550 + "Rank": 4, + "Id": 1551 }, { - "Rank": 1, "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme MyTheme", - "Id": 1551 + "Rank": 1, + "Id": 1552 }, { - "Rank": 2, "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Id": 1552 + "Rank": 2, + "Id": 1553 }, { - "Rank": 1, "CommandName": "Set-PnPWikiPageContent", "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Id": 1553 + "Rank": 1, + "Id": 1554 }, { - "Rank": 1, "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Id": 1554 + "Rank": 1, + "Id": 1555 }, { - "Rank": 2, "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Id": 1555 + "Rank": 2, + "Id": 1556 }, { - "Rank": 3, "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Id": 1556 + "Rank": 3, + "Id": 1557 }, { - "Rank": 4, "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Id": 1557 + "Rank": 4, + "Id": 1558 }, { - "Rank": 5, "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Id": 1558 + "Rank": 5, + "Id": 1559 + }, + { + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", + "Rank": 6, + "Id": 1560 }, { - "Rank": 1, "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Id": 1559 + "Rank": 1, + "Id": 1561 }, { - "Rank": 2, "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Id": 1560 + "Rank": 2, + "Id": 1562 }, { - "Rank": 1, "CommandName": "Sync-PnPAppToTeams", "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1561 + "Rank": 1, + "Id": 1563 }, { - "Rank": 1, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Id": 1562 + "Rank": 1, + "Id": 1564 }, { - "Rank": 2, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Id": 1563 + "Rank": 2, + "Id": 1565 }, { - "Rank": 3, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Id": 1564 + "Rank": 3, + "Id": 1566 }, { - "Rank": 1, "CommandName": "Test-PnPListItemIsRecord", "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Id": 1565 + "Rank": 1, + "Id": 1567 }, { - "Rank": 1, "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Id": 1566 + "Rank": 1, + "Id": 1568 }, { - "Rank": 1, "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1567 + "Rank": 1, + "Id": 1569 }, { - "Rank": 2, "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Id": 1568 + "Rank": 2, + "Id": 1570 }, { - "Rank": 1, "CommandName": "Test-PnPTenantTemplate", "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Id": 1569 + "Rank": 1, + "Id": 1571 }, { - "Rank": 1, "CommandName": "Undo-PnPFileCheckedOut", "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Id": 1570 + "Rank": 1, + "Id": 1572 }, { - "Rank": 1, "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1571 + "Rank": 1, + "Id": 1573 }, { - "Rank": 2, "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1572 + "Rank": 2, + "Id": 1574 }, { - "Rank": 1, "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1573 + "Rank": 1, + "Id": 1575 }, { - "Rank": 2, "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1574 + "Rank": 2, + "Id": 1576 }, { - "Rank": 1, "CommandName": "Unpublish-PnPContentType", "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Id": 1575 + "Rank": 1, + "Id": 1577 }, { - "Rank": 1, "CommandName": "Unpublish-PnPSyntexModel", "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Id": 1576 + "Rank": 1, + "Id": 1578 }, { - "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", - "Id": 1577 + "Rank": 2, + "Id": 1579 }, { - "Rank": 1, "CommandName": "Unregister-PnPHubSite", "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Id": 1578 + "Rank": 1, + "Id": 1580 }, { - "Rank": 1, "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1579 + "Rank": 1, + "Id": 1581 }, { - "Rank": 2, "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1580 + "Rank": 2, + "Id": 1582 }, { - "Rank": 1, "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Id": 1581 + "Rank": 1, + "Id": 1583 }, { - "Rank": 2, "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Id": 1582 + "Rank": 2, + "Id": 1584 }, { - "Rank": 3, "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Id": 1583 + "Rank": 3, + "Id": 1585 }, { - "Rank": 1, "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Id": 1584 + "Rank": 1, + "Id": 1586 }, { - "Rank": 2, "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Id": 1585 + "Rank": 2, + "Id": 1587 }, { - "Rank": 3, "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "Id": 1586 + "Rank": 3, + "Id": 1588 }, { - "Rank": 1, "CommandName": "Update-PnPTeamsApp", "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Id": 1587 + "Rank": 1, + "Id": 1589 }, { - "Rank": 1, "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 1588 + "Rank": 1, + "Id": 1590 }, { - "Rank": 2, "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Id": 1589 + "Rank": 2, + "Id": 1591 }, { - "Rank": 3, "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Id": 1590 + "Rank": 3, + "Id": 1592 }, { - "Rank": 1, "CommandName": "Update-PnPUserType", "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Id": 1591 + "Rank": 1, + "Id": 1593 } ] diff --git a/version.txt b/version.txt index f4432008f..b6bf6400d 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.106 \ No newline at end of file +2.2.107 \ No newline at end of file From c518d30d3237fd3a3f1cfca85c29de520fff3a60 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Tue, 24 Oct 2023 02:37:01 +0000 Subject: [PATCH 107/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6372 ++++++++--------- version.txt | 2 +- 3 files changed, 3188 insertions(+), 3188 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 8fca1f5ee..bd1284328 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -d5e7d32680115f3a1f09da01a063cf974c5c20a7 \ No newline at end of file +96abd1d23c8386e471b10afa5cd2f107bffcc9ec \ 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 a6ca3cbaf..06824ec6b 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -2,9559 +2,9559 @@ { "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -List \"Demo List\"", - "Rank": 1, - "Id": 1 + "Id": 1, + "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)", - "Rank": 2, - "Id": 2 + "Id": 2, + "Rank": 2 }, { "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3, - "Id": 3 + "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\" -Frequency Daily -Time ((Get-Date).AddDays(1))", - "Rank": 4, - "Id": 4 + "Id": 4, + "Rank": 4 }, { "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg", - "Rank": 1, - "Id": 5 + "Id": 5, + "Rank": 1 }, { "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Rank": 2, - "Id": 6 + "Id": 6, + "Rank": 2 }, { "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "Rank": 3, - "Id": 7 + "Id": 7, + "Rank": 3 }, { "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "Rank": 4, - "Id": 8 + "Id": 8, + "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`\"}", - "Rank": 1, - "Id": 9 + "Id": 9, + "Rank": 1 }, { "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "Rank": 1, - "Id": 10 + "Id": 10, + "Rank": 1 }, { "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Rank": 2, - "Id": 11 + "Id": 11, + "Rank": 2 }, { "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 12 + "Id": 12, + "Rank": 1 }, { "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2, - "Id": 13 + "Id": 13, + "Rank": 2 }, { "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3, - "Id": 14 + "Id": 14, + "Rank": 3 }, { "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 15 + "Id": 15, + "Rank": 1 }, { "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2, - "Id": 16 + "Id": 16, + "Rank": 2 }, { "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3, - "Id": 17 + "Id": 17, + "Rank": 3 }, { "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "Rank": 1, - "Id": 18 + "Id": 18, + "Rank": 1 }, { "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", - "Rank": 2, - "Id": 19 + "Id": 19, + "Rank": 2 }, { "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "Rank": 1, - "Id": 20 + "Id": 20, + "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\"", - "Rank": 2, - "Id": 21 + "Id": 21, + "Rank": 2 }, { "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "Rank": 3, - "Id": 22 + "Id": 22, + "Rank": 3 }, { "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\"", - "Rank": 4, - "Id": 23 + "Id": 23, + "Rank": 4 }, { "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "Rank": 5, - "Id": 24 + "Id": 24, + "Rank": 5 }, { "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "Rank": 1, - "Id": 25 + "Id": 25, + "Rank": 1 }, { "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "Rank": 2, - "Id": 26 + "Id": 26, + "Rank": 2 }, { "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1, - "Id": 27 + "Id": 27, + "Rank": 1 }, { "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2, - "Id": 28 + "Id": 28, + "Rank": 2 }, { "CommandName": "Add-PnPContentTypeToList", "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "Rank": 1, - "Id": 29 + "Id": 29, + "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`\"}\"", - "Rank": 1, - "Id": 30 + "Id": 30, + "Rank": 1 }, { "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "Rank": 1, - "Id": 31 + "Id": 31, + "Rank": 1 }, { "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "Rank": 2, - "Id": 32 + "Id": 32, + "Rank": 2 }, { "CommandName": "Add-PnPDocumentSet", "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "Rank": 1, - "Id": 33 + "Id": 33, + "Rank": 1 }, { "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", - "Rank": 1, - "Id": 34 + "Id": 34, + "Rank": 1 }, { "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "Rank": 2, - "Id": 35 + "Id": 35, + "Rank": 2 }, { "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", - "Rank": 3, - "Id": 36 + "Id": 36, + "Rank": 3 }, { "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", - "Rank": 4, - "Id": 37 + "Id": 37, + "Rank": 4 }, { "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "Rank": 1, - "Id": 38 + "Id": 38, + "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\"", - "Rank": 2, - "Id": 39 + "Id": 39, + "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\"", - "Rank": 3, - "Id": 40 + "Id": 40, + "Rank": 3 }, { "CommandName": "Add-PnPField", "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "Rank": 4, - "Id": 41 + "Id": 41, + "Rank": 4 }, { "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "Rank": 5, - "Id": 42 + "Id": 42, + "Rank": 5 }, { "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "Rank": 6, - "Id": 43 + "Id": 43, + "Rank": 6 }, { "CommandName": "Add-PnPFieldToContentType", "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1, - "Id": 44 + "Id": 44, + "Rank": 1 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "Rank": 1, - "Id": 45 + "Id": 45, + "Rank": 1 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "Rank": 2, - "Id": 46 + "Id": 46, + "Rank": 2 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 3, - "Id": 47 + "Id": 47, + "Rank": 3 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "Rank": 4, - "Id": 48 + "Id": 48, + "Rank": 4 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 5, - "Id": 49 + "Id": 49, + "Rank": 5 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "Rank": 6, - "Id": 50 + "Id": 50, + "Rank": 6 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "Rank": 7, - "Id": 51 + "Id": 51, + "Rank": 7 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 8, - "Id": 52 + "Id": 52, + "Rank": 8 }, { "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, - "Id": 53 + "Id": 53, + "Rank": 1 }, { "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2, - "Id": 54 + "Id": 54, + "Rank": 2 }, { "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", - "Rank": 3, - "Id": 55 + "Id": 55, + "Rank": 3 }, { "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, - "Id": 56 + "Id": 56, + "Rank": 1 }, { "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "Rank": 2, - "Id": 57 + "Id": 57, + "Rank": 2 }, { "CommandName": "Add-PnPFileSharingInvite", "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Rank": 1, - "Id": 58 + "Id": 58, + "Rank": 1 }, { "CommandName": "Add-PnPFileSharingInvite", "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "Rank": 2, - "Id": 59 + "Id": 59, + "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)", - "Rank": 3, - "Id": 60 + "Id": 60, + "Rank": 3 }, { "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "Rank": 1, - "Id": 61 + "Id": 61, + "Rank": 1 }, { "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "Rank": 2, - "Id": 62 + "Id": 62, + "Rank": 2 }, { "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "Rank": 3, - "Id": 63 + "Id": 63, + "Rank": 3 }, { "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "Rank": 4, - "Id": 64 + "Id": 64, + "Rank": 4 }, { "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "Rank": 5, - "Id": 65 + "Id": 65, + "Rank": 5 }, { "CommandName": "Add-PnPFileUserSharingLink", "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 66 + "Id": 66, + "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\"", - "Rank": 2, - "Id": 67 + "Id": 67, + "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", - "Rank": 1, - "Id": 68 + "Id": 68, + "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", - "Rank": 2, - "Id": 69 + "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 CanViewWithShare", - "Rank": 3, - "Id": 70 + "Id": 70, + "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", - "Rank": 4, - "Id": 71 + "Id": 71, + "Rank": 4 }, { "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1, - "Id": 72 + "Id": 72, + "Rank": 1 }, { "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Rank": 2, - "Id": 73 + "Id": 73, + "Rank": 2 }, { "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Rank": 3, - "Id": 74 + "Id": 74, + "Rank": 3 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "Id": 75 + "Id": 75, + "Rank": 1 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2, - "Id": 76 + "Id": 76, + "Rank": 2 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", - "Rank": 3, - "Id": 77 + "Id": 77, + "Rank": 3 }, { "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "Id": 78 + "Id": 78, + "Rank": 1 }, { "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Rank": 2, - "Id": 79 + "Id": 79, + "Rank": 2 }, { "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Rank": 1, - "Id": 80 + "Id": 80, + "Rank": 1 }, { "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "Rank": 2, - "Id": 81 + "Id": 81, + "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)", - "Rank": 3, - "Id": 82 + "Id": 82, + "Rank": 3 }, { "CommandName": "Add-PnPFolderUserSharingLink", "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 83 + "Id": 83, + "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\"", - "Rank": 2, - "Id": 84 + "Id": 84, + "Rank": 2 }, { "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1, - "Id": 85 + "Id": 85, + "Rank": 1 }, { "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Rank": 2, - "Id": 86 + "Id": 86, + "Rank": 2 }, { "CommandName": "Add-PnPHtmlPublishingPageLayout", "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Rank": 1, - "Id": 87 + "Id": 87, + "Rank": 1 }, { "CommandName": "Add-PnPHubSiteAssociation", "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "Rank": 1, - "Id": 88 + "Id": 88, + "Rank": 1 }, { "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "Rank": 1, - "Id": 89 + "Id": 89, + "Rank": 1 }, { "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "Rank": 2, - "Id": 90 + "Id": 90, + "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\"", - "Rank": 3, - "Id": 91 + "Id": 91, + "Rank": 3 }, { "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "Rank": 1, - "Id": 92 + "Id": 92, + "Rank": 1 }, { "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Rank": 2, - "Id": 93 + "Id": 93, + "Rank": 2 }, { "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "Rank": 1, - "Id": 94 + "Id": 94, + "Rank": 1 }, { "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "Rank": 2, - "Id": 95 + "Id": 95, + "Rank": 2 }, { "CommandName": "Add-PnPListDesign", "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "Rank": 1, - "Id": 96 + "Id": 96, + "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\"", - "Rank": 2, - "Id": 97 + "Id": 97, + "Rank": 2 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Rank": 1, - "Id": 98 + "Id": 98, + "Rank": 1 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Rank": 2, - "Id": 99 + "Id": 99, + "Rank": 2 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Rank": 3, - "Id": 100 + "Id": 100, + "Rank": 3 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1, - "Id": 101 + "Id": 101, + "Rank": 1 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 2, - "Id": 102 + "Id": 102, + "Rank": 2 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "Rank": 3, - "Id": 103 + "Id": 103, + "Rank": 3 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "Rank": 4, - "Id": 104 + "Id": 104, + "Rank": 4 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "Rank": 5, - "Id": 105 + "Id": 105, + "Rank": 5 }, { "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "Rank": 1, - "Id": 106 + "Id": 106, + "Rank": 1 }, { "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 2, - "Id": 107 + "Id": 107, + "Rank": 2 }, { "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "Rank": 3, - "Id": 108 + "Id": 108, + "Rank": 3 }, { "CommandName": "Add-PnPListItemComment", "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "Rank": 1, - "Id": 109 + "Id": 109, + "Rank": 1 }, { "CommandName": "Add-PnPMasterPage", "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "Rank": 1, - "Id": 110 + "Id": 110, + "Rank": 1 }, { "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 111 + "Id": 111, + "Rank": 1 }, { "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2, - "Id": 112 + "Id": 112, + "Rank": 2 }, { "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 113 + "Id": 113, + "Rank": 1 }, { "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2, - "Id": 114 + "Id": 114, + "Rank": 2 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "Rank": 1, - "Id": 115 + "Id": 115, + "Rank": 1 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "Rank": 2, - "Id": 116 + "Id": 116, + "Rank": 2 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Rank": 3, - "Id": 117 + "Id": 117, + "Rank": 3 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "Rank": 1, - "Id": 118 + "Id": 118, + "Rank": 1 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", - "Rank": 2, - "Id": 119 + "Id": 119, + "Rank": 2 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "Rank": 3, - "Id": 120 + "Id": 120, + "Rank": 3 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "Rank": 4, - "Id": 121 + "Id": 121, + "Rank": 4 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "Rank": 5, - "Id": 122 + "Id": 122, + "Rank": 5 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Rank": 6, - "Id": 123 + "Id": 123, + "Rank": 6 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Rank": 7, - "Id": 124 + "Id": 124, + "Rank": 7 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "Rank": 8, - "Id": 125 + "Id": 125, + "Rank": 8 }, { "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "Rank": 1, - "Id": 126 + "Id": 126, + "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\"", - "Rank": 2, - "Id": 127 + "Id": 127, + "Rank": 2 }, { "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "Rank": 3, - "Id": 128 + "Id": 128, + "Rank": 3 }, { "CommandName": "Add-PnPOrgNewsSite", "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "Rank": 1, - "Id": 129 + "Id": 129, + "Rank": 1 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\"", - "Rank": 1, - "Id": 130 + "Id": 130, + "Rank": 1 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Rank": 2, - "Id": 131 + "Id": 131, + "Rank": 2 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Rank": 3, - "Id": 132 + "Id": 132, + "Rank": 3 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Rank": 4, - "Id": 133 + "Id": 133, + "Rank": 4 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Rank": 5, - "Id": 134 + "Id": 134, + "Rank": 5 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Rank": 6, - "Id": 135 + "Id": 135, + "Rank": 6 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7, - "Id": 136 + "Id": 136, + "Rank": 7 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Rank": 8, - "Id": 137 + "Id": 137, + "Rank": 8 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, - "Id": 138 + "Id": 138, + "Rank": 9 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, - "Id": 139 + "Id": 139, + "Rank": 10 }, { "CommandName": "Add-PnPPageImageWebPart", "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Rank": 1, - "Id": 140 + "Id": 140, + "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\"", - "Rank": 2, - "Id": 141 + "Id": 141, + "Rank": 2 }, { "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Rank": 1, - "Id": 142 + "Id": 142, + "Rank": 1 }, { "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Rank": 2, - "Id": 143 + "Id": 143, + "Rank": 2 }, { "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Rank": 1, - "Id": 144 + "Id": 144, + "Rank": 1 }, { "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 2, - "Id": 145 + "Id": 145, + "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\"", - "Rank": 3, - "Id": 146 + "Id": 146, + "Rank": 3 }, { "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "Rank": 1, - "Id": 147 + "Id": 147, + "Rank": 1 }, { "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Rank": 2, - "Id": 148 + "Id": 148, + "Rank": 2 }, { "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Rank": 3, - "Id": 149 + "Id": 149, + "Rank": 3 }, { "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "Rank": 1, - "Id": 150 + "Id": 150, + "Rank": 1 }, { "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Rank": 2, - "Id": 151 + "Id": 151, + "Rank": 2 }, { "CommandName": "Add-PnPPlannerRoster", "Command": "Add-PnPPlannerRoster", - "Rank": 1, - "Id": 152 + "Id": 152, + "Rank": 1 }, { "CommandName": "Add-PnPPlannerRosterMember", "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 153 + "Id": 153, + "Rank": 1 }, { "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 1, - "Id": 154 + "Id": 154, + "Rank": 1 }, { "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 2, - "Id": 155 + "Id": 155, + "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\"", - "Rank": 3, - "Id": 156 + "Id": 156, + "Rank": 3 }, { "CommandName": "Add-PnPPublishingImageRendition", "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1, - "Id": 157 + "Id": 157, + "Rank": 1 }, { "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Rank": 1, - "Id": 158 + "Id": 158, + "Rank": 1 }, { "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "Rank": 2, - "Id": 159 + "Id": 159, + "Rank": 2 }, { "CommandName": "Add-PnPPublishingPageLayout", "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Rank": 1, - "Id": 160 + "Id": 160, + "Rank": 1 }, { "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "Rank": 1, - "Id": 161 + "Id": 161, + "Rank": 1 }, { "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Rank": 2, - "Id": 162 + "Id": 162, + "Rank": 2 }, { "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Rank": 3, - "Id": 163 + "Id": 163, + "Rank": 3 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 164 + "Id": 164, + "Rank": 1 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, - "Id": 165 + "Id": 165, + "Rank": 2 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Rank": 3, - "Id": 166 + "Id": 166, + "Rank": 3 }, { "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1, - "Id": 167 + "Id": 167, + "Rank": 1 }, { "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 2, - "Id": 168 + "Id": 168, + "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", - "Rank": 1, - "Id": 169 + "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 -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png", - "Rank": 2, - "Id": 170 + "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/my images/logo.png\"", - "Rank": 3, - "Id": 171 + "Id": 171, + "Rank": 3 }, { "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "Rank": 1, - "Id": 172 + "Id": 172, + "Rank": 1 }, { "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2, - "Id": 173 + "Id": 173, + "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", - "Rank": 3, - "Id": 174 + "Id": 174, + "Rank": 3 }, { "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1, - "Id": 175 + "Id": 175, + "Rank": 1 }, { "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 2, - "Id": 176 + "Id": 176, + "Rank": 2 }, { "CommandName": "Add-PnPSiteScript", "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "Rank": 1, - "Id": 177 + "Id": 177, + "Rank": 1 }, { "CommandName": "Add-PnPSiteScriptPackage", "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "Rank": 1, - "Id": 178 + "Id": 178, + "Rank": 1 }, { "CommandName": "Add-PnPSiteTemplate", "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "Rank": 1, - "Id": 179 + "Id": 179, + "Rank": 1 }, { "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Rank": 1, - "Id": 180 + "Id": 180, + "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)", - "Rank": 2, - "Id": 181 + "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)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"", - "Rank": 3, - "Id": 182 + "Id": 182, + "Rank": 3 }, { "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Rank": 1, - "Id": 183 + "Id": 183, + "Rank": 1 }, { "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "Rank": 2, - "Id": 184 + "Id": 184, + "Rank": 2 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "Rank": 1, - "Id": 185 + "Id": 185, + "Rank": 1 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "Rank": 2, - "Id": 186 + "Id": 186, + "Rank": 2 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "Rank": 3, - "Id": 187 + "Id": 187, + "Rank": 3 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "Rank": 4, - "Id": 188 + "Id": 188, + "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", - "Rank": 1, - "Id": 189 + "Id": 189, + "Rank": 1 }, { "CommandName": "Add-PnpTeamsChannelUser", "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "Rank": 2, - "Id": 190 + "Id": 190, + "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\"", - "Rank": 1, - "Id": 191 + "Id": 191, + "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\"", - "Rank": 2, - "Id": 192 + "Id": 192, + "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\"", - "Rank": 3, - "Id": 193 + "Id": 193, + "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", - "Rank": 4, - "Id": 194 + "Id": 194, + "Rank": 4 }, { "CommandName": "Add-PnPTeamsTeam", "Command": "Add-PnPTeamsTeam", - "Rank": 1, - "Id": 195 + "Id": 195, + "Rank": 1 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1, - "Id": 196 + "Id": 196, + "Rank": 1 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2, - "Id": 197 + "Id": 197, + "Rank": 2 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "Rank": 3, - "Id": 198 + "Id": 198, + "Rank": 3 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "Rank": 4, - "Id": 199 + "Id": 199, + "Rank": 4 }, { "CommandName": "Add-PnPTenantCdnOrigin", "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1, - "Id": 200 + "Id": 200, + "Rank": 1 }, { "CommandName": "Add-PnPTenantSequence", "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Rank": 1, - "Id": 201 + "Id": 201, + "Rank": 1 }, { "CommandName": "Add-PnPTenantSequenceSite", "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Rank": 1, - "Id": 202 + "Id": 202, + "Rank": 1 }, { "CommandName": "Add-PnPTenantSequenceSubSite", "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Rank": 1, - "Id": 203 + "Id": 203, + "Rank": 1 }, { "CommandName": "Add-PnPTermToTerm", "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "Rank": 1, - "Id": 204 + "Id": 204, + "Rank": 1 }, { "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "Rank": 1, - "Id": 205 + "Id": 205, + "Rank": 1 }, { "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "Rank": 2, - "Id": 206 + "Id": 206, + "Rank": 2 }, { "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "Rank": 3, - "Id": 207 + "Id": 207, + "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\"", - "Rank": 1, - "Id": 208 + "Id": 208, + "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\"", - "Rank": 2, - "Id": 209 + "Id": 209, + "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\"", - "Rank": 3, - "Id": 210 + "Id": 210, + "Rank": 3 }, { "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1, - "Id": 211 + "Id": 211, + "Rank": 1 }, { "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Rank": 2, - "Id": 212 + "Id": 212, + "Rank": 2 }, { "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", - "Rank": 3, - "Id": 213 + "Id": 213, + "Rank": 3 }, { "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "Rank": 1, - "Id": 214 + "Id": 214, + "Rank": 1 }, { "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "Rank": 2, - "Id": 215 + "Id": 215, + "Rank": 2 }, { "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "Rank": 1, - "Id": 216 + "Id": 216, + "Rank": 1 }, { "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "Rank": 2, - "Id": 217 + "Id": 217, + "Rank": 2 }, { "CommandName": "Add-PnPWikiPage", "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "Rank": 1, - "Id": 218 + "Id": 218, + "Rank": 1 }, { "CommandName": "Clear-PnPAzureADGroupMember", "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Rank": 1, - "Id": 219 + "Id": 219, + "Rank": 1 }, { "CommandName": "Clear-PnPAzureADGroupOwner", "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Rank": 1, - "Id": 220 + "Id": 220, + "Rank": 1 }, { "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Rank": 1, - "Id": 221 + "Id": 221, + "Rank": 1 }, { "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Rank": 2, - "Id": 222 + "Id": 222, + "Rank": 2 }, { "CommandName": "Clear-PnPListItemAsRecord", "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, - "Id": 223 + "Id": 223, + "Rank": 1 }, { "CommandName": "Clear-PnPMicrosoft365GroupMember", "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Rank": 1, - "Id": 224 + "Id": 224, + "Rank": 1 }, { "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Rank": 1, - "Id": 225 + "Id": 225, + "Rank": 1 }, { "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, - "Id": 226 + "Id": 226, + "Rank": 1 }, { "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Rank": 2, - "Id": 227 + "Id": 227, + "Rank": 2 }, { "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Rank": 3, - "Id": 228 + "Id": 228, + "Rank": 3 }, { "CommandName": "Clear-PnPTenantAppCatalogUrl", "Command": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1, - "Id": 229 + "Id": 229, + "Rank": 1 }, { "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "Id": 230 + "Id": 230, + "Rank": 1 }, { "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2, - "Id": 231 + "Id": 231, + "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\"", - "Rank": 1, - "Id": 232 + "Id": 232, + "Rank": 1 }, { "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Rank": 1, - "Id": 233 + "Id": 233, + "Rank": 1 }, { "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Rank": 2, - "Id": 234 + "Id": 234, + "Rank": 2 }, { "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Rank": 1, - "Id": 235 + "Id": 235, + "Rank": 1 }, { "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Rank": 2, - "Id": 236 + "Id": 236, + "Rank": 2 }, { "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Rank": 3, - "Id": 237 + "Id": 237, + "Rank": 3 }, { "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Rank": 1, - "Id": 238 + "Id": 238, + "Rank": 1 }, { "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Rank": 2, - "Id": 239 + "Id": 239, + "Rank": 2 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Rank": 1, - "Id": 240 + "Id": 240, + "Rank": 1 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Rank": 2, - "Id": 241 + "Id": 241, + "Rank": 2 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Rank": 3, - "Id": 242 + "Id": 242, + "Rank": 3 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Rank": 4, - "Id": 243 + "Id": 243, + "Rank": 4 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 5, - "Id": 244 + "Id": 244, + "Rank": 5 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "Rank": 6, - "Id": 245 + "Id": 245, + "Rank": 6 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Rank": 7, - "Id": 246 + "Id": 246, + "Rank": 7 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Rank": 8, - "Id": 247 + "Id": 247, + "Rank": 8 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 9, - "Id": 248 + "Id": 248, + "Rank": 9 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "Rank": 10, - "Id": 249 + "Id": 249, + "Rank": 10 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Rank": 11, - "Id": 250 + "Id": 250, + "Rank": 11 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 12, - "Id": 251 + "Id": 251, + "Rank": 12 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 13, - "Id": 252 + "Id": 252, + "Rank": 13 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "Rank": 14, - "Id": 253 + "Id": 253, + "Rank": 14 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1, - "Id": 254 + "Id": 254, + "Rank": 1 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2, - "Id": 255 + "Id": 255, + "Rank": 2 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3, - "Id": 256 + "Id": 256, + "Rank": 3 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4, - "Id": 257 + "Id": 257, + "Rank": 4 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5, - "Id": 258 + "Id": 258, + "Rank": 5 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6, - "Id": 259 + "Id": 259, + "Rank": 6 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7, - "Id": 260 + "Id": 260, + "Rank": 7 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8, - "Id": 261 + "Id": 261, + "Rank": 8 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9, - "Id": 262 + "Id": 262, + "Rank": 9 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10, - "Id": 263 + "Id": 263, + "Rank": 10 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1, - "Id": 264 + "Id": 264, + "Rank": 1 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2, - "Id": 265 + "Id": 265, + "Rank": 2 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3, - "Id": 266 + "Id": 266, + "Rank": 3 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4, - "Id": 267 + "Id": 267, + "Rank": 4 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5, - "Id": 268 + "Id": 268, + "Rank": 5 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6, - "Id": 269 + "Id": 269, + "Rank": 6 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7, - "Id": 270 + "Id": 270, + "Rank": 7 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8, - "Id": 271 + "Id": 271, + "Rank": 8 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9, - "Id": 272 + "Id": 272, + "Rank": 9 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10, - "Id": 273 + "Id": 273, + "Rank": 10 }, { "CommandName": "Copy-PnPItemProxy", "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Rank": 1, - "Id": 274 + "Id": 274, + "Rank": 1 }, { "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Rank": 1, - "Id": 275 + "Id": 275, + "Rank": 1 }, { "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "Rank": 2, - "Id": 276 + "Id": 276, + "Rank": 2 }, { "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "Rank": 3, - "Id": 277 + "Id": 277, + "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\\", - "Rank": 4, - "Id": 278 + "Id": 278, + "Rank": 4 }, { "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "Rank": 1, - "Id": 279 + "Id": 279, + "Rank": 1 }, { "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "Rank": 2, - "Id": 280 + "Id": 280, + "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", - "Rank": 3, - "Id": 281 + "Id": 281, + "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", - "Rank": 4, - "Id": 282 + "Id": 282, + "Rank": 4 }, { "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 283 + "Id": 283, + "Rank": 1 }, { "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, - "Id": 284 + "Id": 284, + "Rank": 2 }, { "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, - "Id": 285 + "Id": 285, + "Rank": 3 }, { "CommandName": "Disable-PnPPageScheduling", "Command": "Disable-PnPPageScheduling", - "Rank": 1, - "Id": 286 + "Id": 286, + "Rank": 1 }, { "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry", - "Rank": 1, - "Id": 287 + "Id": 287, + "Rank": 1 }, { "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry -Force", - "Rank": 2, - "Id": 288 + "Id": 288, + "Rank": 2 }, { "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1, - "Id": 289 + "Id": 289, + "Rank": 1 }, { "CommandName": "Disable-PnPSiteClassification", "Command": "Disable-PnPSiteClassification", - "Rank": 1, - "Id": 290 + "Id": 290, + "Rank": 1 }, { "CommandName": "Disconnect-PnPOnline", "Command": "Disconnect-PnPOnline", - "Rank": 1, - "Id": 291 + "Id": 291, + "Rank": 1 }, { "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite", - "Rank": 1, - "Id": 292 + "Id": 292, + "Rank": 1 }, { "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Rank": 2, - "Id": 293 + "Id": 293, + "Rank": 2 }, { "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 294 + "Id": 294, + "Rank": 1 }, { "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, - "Id": 295 + "Id": 295, + "Rank": 2 }, { "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, - "Id": 296 + "Id": 296, + "Rank": 3 }, { "CommandName": "Enable-PnPPageScheduling", "Command": "Enable-PnPPageScheduling", - "Rank": 1, - "Id": 297 + "Id": 297, + "Rank": 1 }, { "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry", - "Rank": 1, - "Id": 298 + "Id": 298, + "Rank": 1 }, { "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry -Force", - "Rank": 2, - "Id": 299 + "Id": 299, + "Rank": 2 }, { "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Rank": 1, - "Id": 300 + "Id": 300, + "Rank": 1 }, { "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 2, - "Id": 301 + "Id": 301, + "Rank": 2 }, { "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Rank": 1, - "Id": 302 + "Id": 302, + "Rank": 1 }, { "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Rank": 2, - "Id": 303 + "Id": 303, + "Rank": 2 }, { "CommandName": "Export-PnPPage", "Command": "Export-PnPPage -Identity Home.aspx", - "Rank": 1, - "Id": 304 + "Id": 304, + "Rank": 1 }, { "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Rank": 1, - "Id": 305 + "Id": 305, + "Rank": 1 }, { "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Rank": 2, - "Id": 306 + "Id": 306, + "Rank": 2 }, { "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Rank": 3, - "Id": 307 + "Id": 307, + "Rank": 3 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy", - "Rank": 1, - "Id": 308 + "Id": 308, + "Rank": 1 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Rank": 2, - "Id": 309 + "Id": 309, + "Rank": 2 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Rank": 3, - "Id": 310 + "Id": 310, + "Rank": 3 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "Rank": 4, - "Id": 311 + "Id": 311, + "Rank": 4 }, { "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml", - "Rank": 1, - "Id": 312 + "Id": 312, + "Rank": 1 }, { "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Rank": 2, - "Id": 313 + "Id": 313, + "Rank": 2 }, { "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Rank": 3, - "Id": 314 + "Id": 314, + "Rank": 3 }, { "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1, - "Id": 315 + "Id": 315, + "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", - "Rank": 2, - "Id": 316 + "Id": 316, + "Rank": 2 }, { "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Rank": 1, - "Id": 317 + "Id": 317, + "Rank": 1 }, { "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2, - "Id": 318 + "Id": 318, + "Rank": 2 }, { "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Match *.master", - "Rank": 1, - "Id": 319 + "Id": 319, + "Rank": 1 }, { "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Rank": 2, - "Id": 320 + "Id": 320, + "Rank": 2 }, { "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Rank": 3, - "Id": 321 + "Id": 321, + "Rank": 3 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken", - "Rank": 1, - "Id": 322 + "Id": 322, + "Rank": 1 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -Decoded", - "Rank": 2, - "Id": 323 + "Id": 323, + "Rank": 2 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Rank": 3, - "Id": 324 + "Id": 324, + "Rank": 3 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Rank": 4, - "Id": 325 + "Id": 325, + "Rank": 4 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Rank": 5, - "Id": 326 + "Id": 326, + "Rank": 5 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert", - "Rank": 1, - "Id": 327 + "Id": 327, + "Rank": 1 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\"", - "Rank": 2, - "Id": 328 + "Id": 328, + "Rank": 2 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3, - "Id": 329 + "Id": 329, + "Rank": 3 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Rank": 4, - "Id": 330 + "Id": 330, + "Rank": 4 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -AllUsers", - "Rank": 5, - "Id": 331 + "Id": 331, + "Rank": 5 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Rank": 6, - "Id": 332 + "Id": 332, + "Rank": 6 }, { "CommandName": "Get-PnPApp", "Command": "Get-PnPApp", - "Rank": 1, - "Id": 333 + "Id": 333, + "Rank": 1 }, { "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Scope Site", - "Rank": 2, - "Id": 334 + "Id": 334, + "Rank": 2 }, { "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 3, - "Id": 335 + "Id": 335, + "Rank": 3 }, { "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Rank": 1, - "Id": 336 + "Id": 336, + "Rank": 1 }, { "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "Rank": 2, - "Id": 337 + "Id": 337, + "Rank": 2 }, { "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Rank": 1, - "Id": 338 + "Id": 338, + "Rank": 1 }, { "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 2, - "Id": 339 + "Id": 339, + "Rank": 2 }, { "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Rank": 3, - "Id": 340 + "Id": 340, + "Rank": 3 }, { "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer", - "Rank": 1, - "Id": 341 + "Id": 341, + "Rank": 1 }, { "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, - "Id": 342 + "Id": 342, + "Rank": 2 }, { "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Rank": 3, - "Id": 343 + "Id": 343, + "Rank": 3 }, { "CommandName": "Get-PnPAuditing", "Command": "Get-PnPAuditing", - "Rank": 1, - "Id": 344 + "Id": 344, + "Rank": 1 }, { "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm", - "Rank": 1, - "Id": 345 + "Id": 345, + "Rank": 1 }, { "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Rank": 2, - "Id": 346 + "Id": 346, + "Rank": 2 }, { "CommandName": "Get-PnPAvailableLanguage", "Command": "Get-PnPAvailableLanguage", - "Rank": 1, - "Id": 347 + "Id": 347, + "Rank": 1 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel", - "Rank": 1, - "Id": 348 + "Id": 348, + "Rank": 1 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Rank": 2, - "Id": 349 + "Id": 349, + "Rank": 2 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Rank": 3, - "Id": 350 + "Id": 350, + "Rank": 3 }, { "CommandName": "Get-PnPAvailableSiteClassification", "Command": "Get-PnPAvailableSiteClassification", - "Rank": 1, - "Id": 351 + "Id": 351, + "Rank": 1 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal", - "Rank": 1, - "Id": 352 + "Id": 352, + "Rank": 1 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Rank": 2, - "Id": 353 + "Id": 353, + "Rank": 2 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Rank": 3, - "Id": 354 + "Id": 354, + "Rank": 3 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Rank": 4, - "Id": 355 + "Id": 355, + "Rank": 4 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1, - "Id": 356 + "Id": 356, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Rank": 2, - "Id": 357 + "Id": 357, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Rank": 3, - "Id": 358 + "Id": 358, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1, - "Id": 359 + "Id": 359, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Rank": 2, - "Id": 360 + "Id": 360, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Rank": 3, - "Id": 361 + "Id": 361, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp", - "Rank": 1, - "Id": 362 + "Id": 362, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity MyApp", - "Rank": 2, - "Id": 363 + "Id": 363, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, - "Id": 364 + "Id": 364, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Rank": 4, - "Id": 365 + "Id": 365, + "Rank": 4 }, { "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission", - "Rank": 1, - "Id": 366 + "Id": 366, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Rank": 2, - "Id": 367 + "Id": 367, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, - "Id": 368 + "Id": 368, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission", - "Rank": 1, - "Id": 369 + "Id": 369, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2, - "Id": 370 + "Id": 370, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Rank": 3, - "Id": 371 + "Id": 371, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Rank": 4, - "Id": 372 + "Id": 372, + "Rank": 4 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Rank": 5, - "Id": 373 + "Id": 373, + "Rank": 5 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup", - "Rank": 1, - "Id": 374 + "Id": 374, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Rank": 2, - "Id": 375 + "Id": 375, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Rank": 3, - "Id": 376 + "Id": 376, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Rank": 4, - "Id": 377 + "Id": 377, + "Rank": 4 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $group", - "Rank": 5, - "Id": 378 + "Id": 378, + "Rank": 5 }, { "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Rank": 1, - "Id": 379 + "Id": 379, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Rank": 2, - "Id": 380 + "Id": 380, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Rank": 1, - "Id": 381 + "Id": 381, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Rank": 2, - "Id": 382 + "Id": 382, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal", - "Rank": 1, - "Id": 383 + "Id": 383, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Rank": 2, - "Id": 384 + "Id": 384, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Rank": 3, - "Id": 385 + "Id": 385, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Rank": 4, - "Id": 386 + "Id": 386, + "Rank": 4 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, - "Id": 387 + "Id": 387, + "Rank": 5 }, { "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, - "Id": 388 + "Id": 388, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 2, - "Id": 389 + "Id": 389, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, - "Id": 390 + "Id": 390, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Rank": 2, - "Id": 391 + "Id": 391, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser", - "Rank": 1, - "Id": 392 + "Id": 392, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -EndIndex 50", - "Rank": 2, - "Id": 393 + "Id": 393, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 3, - "Id": 394 + "Id": 394, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Rank": 4, - "Id": 395 + "Id": 395, + "Rank": 4 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Rank": 5, - "Id": 396 + "Id": 396, + "Rank": 5 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Rank": 6, - "Id": 397 + "Id": 397, + "Rank": 6 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Rank": 7, - "Id": 398 + "Id": 398, + "Rank": 7 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta", - "Rank": 8, - "Id": 399 + "Id": 399, + "Rank": 8 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Rank": 9, - "Id": 400 + "Id": 400, + "Rank": 9 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Rank": 10, - "Id": 401 + "Id": 401, + "Rank": 10 }, { "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Rank": 1, - "Id": 402 + "Id": 402, + "Rank": 1 }, { "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Rank": 2, - "Id": 403 + "Id": 403, + "Rank": 2 }, { "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Rank": 3, - "Id": 404 + "Id": 404, + "Rank": 3 }, { "CommandName": "Get-PnPBrowserIdleSignout", "Command": "Get-PnPBrowserIdleSignout", - "Rank": 1, - "Id": 405 + "Id": 405, + "Rank": 1 }, { "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Rank": 1, - "Id": 406 + "Id": 406, + "Rank": 1 }, { "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2, - "Id": 407 + "Id": 407, + "Rank": 2 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1, - "Id": 408 + "Id": 408, + "Rank": 1 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Rank": 2, - "Id": 409 + "Id": 409, + "Rank": 2 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Rank": 3, - "Id": 410 + "Id": 410, + "Rank": 3 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4, - "Id": 411 + "Id": 411, + "Rank": 4 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Rank": 5, - "Id": 412 + "Id": 412, + "Rank": 5 }, { "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog", - "Rank": 1, - "Id": 413 + "Id": 413, + "Rank": 1 }, { "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog -Nightly", - "Rank": 2, - "Id": 414 + "Id": 414, + "Rank": 2 }, { "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Rank": 1, - "Id": 415 + "Id": 415, + "Rank": 1 }, { "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "Rank": 2, - "Id": 416 + "Id": 416, + "Rank": 2 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType", - "Rank": 1, - "Id": 417 + "Id": 417, + "Rank": 1 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -InSiteHierarchy", - "Rank": 2, - "Id": 418 + "Id": 418, + "Rank": 2 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Rank": 3, - "Id": 419 + "Id": 419, + "Rank": 3 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -List \"Documents\"", - "Rank": 4, - "Id": 420 + "Id": 420, + "Rank": 4 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Includes \"SchemaXml\"", - "Rank": 5, - "Id": 421 + "Id": 421, + "Rank": 5 }, { "CommandName": "Get-PnPContentTypePublishingStatus", "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Rank": 1, - "Id": 422 + "Id": 422, + "Rank": 1 }, { "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction", - "Rank": 1, - "Id": 423 + "Id": 423, + "Rank": 1 }, { "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, - "Id": 424 + "Id": 424, + "Rank": 2 }, { "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Scope web", - "Rank": 3, - "Id": 425 + "Id": 425, + "Rank": 3 }, { "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1, - "Id": 426 + "Id": 426, + "Rank": 1 }, { "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 2, - "Id": 427 + "Id": 427, + "Rank": 2 }, { "CommandName": "Get-PnPDeletedTeam", "Command": "Get-PnPDeletedTeam", - "Rank": 1, - "Id": 428 + "Id": 428, + "Rank": 1 }, { "CommandName": "Get-PnPDiagnostics", "Command": "Get-PnPDiagnostics", - "Rank": 1, - "Id": 429 + "Id": 429, + "Rank": 1 }, { "CommandName": "Get-PnPDisableSpacesActivation", "Command": "Get-PnPDisableSpacesActivation", - "Rank": 1, - "Id": 430 + "Id": 430, + "Rank": 1 }, { "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Rank": 1, - "Id": 431 + "Id": 431, + "Rank": 1 }, { "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Rank": 2, - "Id": 432 + "Id": 432, + "Rank": 2 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver", - "Rank": 1, - "Id": 433 + "Id": 433, + "Rank": 1 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, - "Id": 434 + "Id": 434, + "Rank": 2 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Rank": 3, - "Id": 435 + "Id": 435, + "Rank": 3 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Rank": 4, - "Id": 436 + "Id": 436, + "Rank": 4 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 5, - "Id": 437 + "Id": 437, + "Rank": 5 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Rank": 6, - "Id": 438 + "Id": 438, + "Rank": 6 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Site", - "Rank": 7, - "Id": 439 + "Id": 439, + "Rank": 7 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Web", - "Rank": 8, - "Id": 440 + "Id": 440, + "Rank": 8 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope All", - "Rank": 9, - "Id": 441 + "Id": 441, + "Rank": 9 }, { "CommandName": "Get-PnPException", "Command": "Get-PnPException", - "Rank": 1, - "Id": 442 + "Id": 442, + "Rank": 1 }, { "CommandName": "Get-PnPException", "Command": "Get-PnPException -All", - "Rank": 2, - "Id": 443 + "Id": 443, + "Rank": 2 }, { "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Rank": 1, - "Id": 444 + "Id": 444, + "Rank": 1 }, { "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Rank": 2, - "Id": 445 + "Id": 445, + "Rank": 2 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature", - "Rank": 1, - "Id": 446 + "Id": 446, + "Rank": 1 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Scope Site", - "Rank": 2, - "Id": 447 + "Id": 447, + "Rank": 2 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 3, - "Id": 448 + "Id": 448, + "Rank": 3 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Rank": 4, - "Id": 449 + "Id": 449, + "Rank": 4 }, { "CommandName": "Get-PnPField", "Command": "Get-PnPField", - "Rank": 1, - "Id": 450 + "Id": 450, + "Rank": 1 }, { "CommandName": "Get-PnPField", "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, - "Id": 451 + "Id": 451, + "Rank": 2 }, { "CommandName": "Get-PnPField", "Command": "Get-PnPField -Group \"Custom Columns\"", - "Rank": 3, - "Id": 452 + "Id": 452, + "Rank": 3 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Rank": 1, - "Id": 453 + "Id": 453, + "Rank": 1 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "Rank": 2, - "Id": 454 + "Id": 454, + "Rank": 2 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Rank": 3, - "Id": 455 + "Id": 455, + "Rank": 3 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Rank": 4, - "Id": 456 + "Id": 456, + "Rank": 4 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Rank": 5, - "Id": 457 + "Id": 457, + "Rank": 5 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "Rank": 6, - "Id": 458 + "Id": 458, + "Rank": 6 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Rank": 7, - "Id": 459 + "Id": 459, + "Rank": 7 }, { "CommandName": "Get-PnPFileSharingLink", "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, - "Id": 460 + "Id": 460, + "Rank": 1 }, { "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Rank": 1, - "Id": 461 + "Id": 461, + "Rank": 1 }, { "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Rank": 2, - "Id": 462 + "Id": 462, + "Rank": 2 }, { "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -AsAdmin", - "Rank": 1, - "Id": 463 + "Id": 463, + "Rank": 1 }, { "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "Rank": 2, - "Id": 464 + "Id": 464, + "Rank": 2 }, { "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Rank": 3, - "Id": 465 + "Id": 465, + "Rank": 3 }, { "CommandName": "Get-PnPFlowOwner", "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "Rank": 1, - "Id": 466 + "Id": 466, + "Rank": 1 }, { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder", - "Rank": 1, - "Id": 467 + "Id": 467, + "Rank": 1 }, { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Rank": 2, - "Id": 468 + "Id": 468, + "Rank": 2 }, { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Rank": 3, - "Id": 469 + "Id": 469, + "Rank": 3 }, { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Rank": 4, - "Id": 470 + "Id": 470, + "Rank": 4 }, { "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile", - "Rank": 1, - "Id": 471 + "Id": 471, + "Rank": 1 }, { "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -Recurse", - "Rank": 2, - "Id": 472 + "Id": 472, + "Rank": 2 }, { "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "Rank": 3, - "Id": 473 + "Id": 473, + "Rank": 3 }, { "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4, - "Id": 474 + "Id": 474, + "Rank": 4 }, { "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 5, - "Id": 475 + "Id": 475, + "Rank": 5 }, { "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder", - "Rank": 1, - "Id": 476 + "Id": 476, + "Rank": 1 }, { "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Recurse", - "Rank": 2, - "Id": 477 + "Id": 477, + "Rank": 2 }, { "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "Rank": 3, - "Id": 478 + "Id": 478, + "Rank": 3 }, { "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "Rank": 4, - "Id": 479 + "Id": 479, + "Rank": 4 }, { "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "Rank": 5, - "Id": 480 + "Id": 480, + "Rank": 5 }, { "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6, - "Id": 481 + "Id": 481, + "Rank": 6 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem", - "Rank": 1, - "Id": 482 + "Id": 482, + "Rank": 1 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Recurse", - "Rank": 2, - "Id": 483 + "Id": 483, + "Rank": 2 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "Rank": 3, - "Id": 484 + "Id": 484, + "Rank": 3 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4, - "Id": 485 + "Id": 485, + "Rank": 4 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Rank": 5, - "Id": 486 + "Id": 486, + "Rank": 5 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6, - "Id": 487 + "Id": 487, + "Rank": 6 }, { "CommandName": "Get-PnPFolderSharingLink", "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "Id": 488 + "Id": 488, + "Rank": 1 }, { "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric", - "Rank": 1, - "Id": 489 + "Id": 489, + "Rank": 1 }, { "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Rank": 2, - "Id": 490 + "Id": 490, + "Rank": 2 }, { "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Rank": 3, - "Id": 491 + "Id": 491, + "Rank": 3 }, { "CommandName": "Get-PnPFooter", "Command": "Get-PnPFooter", - "Rank": 1, - "Id": 492 + "Id": 492, + "Rank": 1 }, { "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken", - "Rank": 1, - "Id": 493 + "Id": 493, + "Rank": 1 }, { "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken -Decoded", - "Rank": 2, - "Id": 494 + "Id": 494, + "Rank": 2 }, { "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription", - "Rank": 1, - "Id": 495 + "Id": 495, + "Rank": 1 }, { "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 2, - "Id": 496 + "Id": 496, + "Rank": 2 }, { "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup", - "Rank": 1, - "Id": 497 + "Id": 497, + "Rank": 1 }, { "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Rank": 2, - "Id": 498 + "Id": 498, + "Rank": 2 }, { "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Rank": 3, - "Id": 499 + "Id": 499, + "Rank": 3 }, { "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Rank": 1, - "Id": 500 + "Id": 500, + "Rank": 1 }, { "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Rank": 2, - "Id": 501 + "Id": 501, + "Rank": 2 }, { "CommandName": "Get-PnPGroupPermissions", "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Rank": 1, - "Id": 502 + "Id": 502, + "Rank": 1 }, { "CommandName": "Get-PnPHideDefaultThemes", "Command": "Get-PnPHideDefaultThemes", - "Rank": 1, - "Id": 503 + "Id": 503, + "Rank": 1 }, { "CommandName": "Get-PnPHomePage", "Command": "Get-PnPHomePage", - "Rank": 1, - "Id": 504 + "Id": 504, + "Rank": 1 }, { "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite", - "Rank": 1, - "Id": 505 + "Id": 505, + "Rank": 1 }, { "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Rank": 2, - "Id": 506 + "Id": 506, + "Rank": 2 }, { "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -Detailed", - "Rank": 3, - "Id": 507 + "Id": 507, + "Rank": 3 }, { "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite", - "Rank": 1, - "Id": 508 + "Id": 508, + "Rank": 1 }, { "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, - "Id": 509 + "Id": 509, + "Rank": 2 }, { "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Rank": 3, - "Id": 510 + "Id": 510, + "Rank": 3 }, { "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild", - "Rank": 1, - "Id": 511 + "Id": 511, + "Rank": 1 }, { "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, - "Id": 512 + "Id": 512, + "Rank": 2 }, { "CommandName": "Get-PnPInPlaceRecordsManagement", "Command": "Get-PnPInPlaceRecordsManagement", - "Rank": 1, - "Id": 513 + "Id": 513, + "Rank": 1 }, { "CommandName": "Get-PnPIsSiteAliasAvailable", "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Rank": 1, - "Id": 514 + "Id": 514, + "Rank": 1 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink", - "Rank": 1, - "Id": 515 + "Id": 515, + "Rank": 1 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope All", - "Rank": 2, - "Id": 516 + "Id": 516, + "Rank": 2 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Web", - "Rank": 3, - "Id": 517 + "Id": 517, + "Rank": 3 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Site", - "Rank": 4, - "Id": 518 + "Id": 518, + "Rank": 4 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Name Test", - "Rank": 5, - "Id": 519 + "Id": 519, + "Rank": 5 }, { "CommandName": "Get-PnPKnowledgeHubSite", "Command": "Get-PnPKnowledgeHubSite", - "Rank": 1, - "Id": 520 + "Id": 520, + "Rank": 1 }, { "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel", - "Rank": 1, - "Id": 521 + "Id": 521, + "Rank": 1 }, { "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Rank": 2, - "Id": 522 + "Id": 522, + "Rank": 2 }, { "CommandName": "Get-PnPLargeListOperationStatus", "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Rank": 1, - "Id": 523 + "Id": 523, + "Rank": 1 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList", - "Rank": 1, - "Id": 524 + "Id": 524, + "Rank": 1 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 2, - "Id": 525 + "Id": 525, + "Rank": 2 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity Lists/Announcements", - "Rank": 3, - "Id": 526 + "Id": 526, + "Rank": 3 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Rank": 4, - "Id": 527 + "Id": 527, + "Rank": 4 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Rank": 5, - "Id": 528 + "Id": 528, + "Rank": 5 }, { "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign", - "Rank": 1, - "Id": 529 + "Id": 529, + "Rank": 1 }, { "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, - "Id": 530 + "Id": 530, + "Rank": 2 }, { "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity ListEvent", - "Rank": 3, - "Id": 531 + "Id": 531, + "Rank": 3 }, { "CommandName": "Get-PnPListInformationRightsManagement", "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Rank": 1, - "Id": 532 + "Id": 532, + "Rank": 1 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks", - "Rank": 1, - "Id": 533 + "Id": 533, + "Rank": 1 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1", - "Rank": 2, - "Id": 534 + "Id": 534, + "Rank": 2 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Rank": 3, - "Id": 535 + "Id": 535, + "Rank": 3 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Rank": 4, - "Id": 536 + "Id": 536, + "Rank": 4 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Rank": 5, - "Id": 537 + "Id": 537, + "Rank": 5 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Rank": 6, - "Id": 538 + "Id": 538, + "Rank": 6 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "Rank": 7, - "Id": 539 + "Id": 539, + "Rank": 7 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Rank": 8, - "Id": 540 + "Id": 540, + "Rank": 8 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Rank": 9, - "Id": 541 + "Id": 541, + "Rank": 9 }, { "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "Rank": 1, - "Id": 542 + "Id": 542, + "Rank": 1 }, { "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "Rank": 2, - "Id": 543 + "Id": 543, + "Rank": 2 }, { "CommandName": "Get-PnPListItemComment", "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Rank": 1, - "Id": 544 + "Id": 544, + "Rank": 1 }, { "CommandName": "Get-PnPListItemPermission", "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Rank": 1, - "Id": 545 + "Id": 545, + "Rank": 1 }, { "CommandName": "Get-PnPListItemVersion", "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Rank": 1, - "Id": 546 + "Id": 546, + "Rank": 1 }, { "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Rank": 1, - "Id": 547 + "Id": 547, + "Rank": 1 }, { "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Rank": 2, - "Id": 548 + "Id": 548, + "Rank": 2 }, { "CommandName": "Get-PnPListRecordDeclaration", "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Rank": 1, - "Id": 549 + "Id": 549, + "Rank": 1 }, { "CommandName": "Get-PnPMasterPage", "Command": "Get-PnPMasterPage", - "Rank": 1, - "Id": 550 + "Id": 550, + "Rank": 1 }, { "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement", - "Rank": 1, - "Id": 551 + "Id": 551, + "Rank": 1 }, { "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Rank": 2, - "Id": 552 + "Id": 552, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1, - "Id": 553 + "Id": 553, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Rank": 2, - "Id": 554 + "Id": 554, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group", - "Rank": 1, - "Id": 555 + "Id": 555, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Rank": 2, - "Id": 556 + "Id": 556, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Rank": 3, - "Id": 557 + "Id": 557, + "Rank": 3 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Rank": 4, - "Id": 558 + "Id": 558, + "Rank": 4 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Rank": 5, - "Id": 559 + "Id": 559, + "Rank": 5 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Rank": 6, - "Id": 560 + "Id": 560, + "Rank": 6 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1, - "Id": 561 + "Id": 561, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Rank": 2, - "Id": 562 + "Id": 562, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, - "Id": 563 + "Id": 563, + "Rank": 3 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Rank": 1, - "Id": 564 + "Id": 564, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Rank": 2, - "Id": 565 + "Id": 565, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Rank": 3, - "Id": 566 + "Id": 566, + "Rank": 3 }, { "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Rank": 1, - "Id": 567 + "Id": 567, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Rank": 2, - "Id": 568 + "Id": 568, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1, - "Id": 569 + "Id": 569, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Rank": 2, - "Id": 570 + "Id": 570, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1, - "Id": 571 + "Id": 571, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Rank": 2, - "Id": 572 + "Id": 572, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1, - "Id": 573 + "Id": 573, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Rank": 2, - "Id": 574 + "Id": 574, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, - "Id": 575 + "Id": 575, + "Rank": 3 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1, - "Id": 576 + "Id": 576, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Rank": 2, - "Id": 577 + "Id": 577, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, - "Id": 578 + "Id": 578, + "Rank": 3 }, { "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode", - "Rank": 1, - "Id": 579 + "Id": 579, + "Rank": 1 }, { "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Rank": 2, - "Id": 580 + "Id": 580, + "Rank": 2 }, { "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Rank": 3, - "Id": 581 + "Id": 581, + "Rank": 3 }, { "CommandName": "Get-PnPOrgAssetsLibrary", "Command": "Get-PnPOrgAssetsLibrary", - "Rank": 1, - "Id": 582 + "Id": 582, + "Rank": 1 }, { "CommandName": "Get-PnPOrgNewsSite", "Command": "Get-PnPOrgNewsSite", - "Rank": 1, - "Id": 583 + "Id": 583, + "Rank": 1 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Rank": 1, - "Id": 584 + "Id": 584, + "Rank": 1 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"MyPage\"", - "Rank": 2, - "Id": 585 + "Id": 585, + "Rank": 2 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Rank": 3, - "Id": 586 + "Id": 586, + "Rank": 3 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Rank": 4, - "Id": 587 + "Id": 587, + "Rank": 4 }, { "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home", - "Rank": 1, - "Id": 588 + "Id": 588, + "Rank": 1 }, { "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2, - "Id": 589 + "Id": 589, + "Rank": 2 }, { "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Rank": 3, - "Id": 590 + "Id": 590, + "Rank": 3 }, { "CommandName": "Get-PnPPlannerBucket", "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, - "Id": 591 + "Id": 591, + "Rank": 1 }, { "CommandName": "Get-PnPPlannerConfiguration", "Command": "Get-PnPPlannerConfiguration", - "Rank": 1, - "Id": 592 + "Id": 592, + "Rank": 1 }, { "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Rank": 1, - "Id": 593 + "Id": 593, + "Rank": 1 }, { "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Rank": 2, - "Id": 594 + "Id": 594, + "Rank": 2 }, { "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Rank": 3, - "Id": 595 + "Id": 595, + "Rank": 3 }, { "CommandName": "Get-PnPPlannerRosterMember", "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, - "Id": 596 + "Id": 596, + "Rank": 1 }, { "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Rank": 1, - "Id": 597 + "Id": 597, + "Rank": 1 }, { "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 2, - "Id": 598 + "Id": 598, + "Rank": 2 }, { "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, - "Id": 599 + "Id": 599, + "Rank": 1 }, { "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 2, - "Id": 600 + "Id": 600, + "Rank": 2 }, { "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 3, - "Id": 601 + "Id": 601, + "Rank": 3 }, { "CommandName": "Get-PnPPlannerUserPolicy", "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 602 + "Id": 602, + "Rank": 1 }, { "CommandName": "Get-PnPPowerPlatformConnector", "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "Rank": 1, - "Id": 603 + "Id": 603, + "Rank": 1 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment", - "Rank": 1, - "Id": 604 + "Id": 604, + "Rank": 1 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Rank": 2, - "Id": 605 + "Id": 605, + "Rank": 2 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Rank": 3, - "Id": 606 + "Id": 606, + "Rank": 3 }, { "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Command": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1, - "Id": 607 + "Id": 607, + "Rank": 1 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag", - "Rank": 1, - "Id": 608 + "Id": 608, + "Rank": 1 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Key MyKey", - "Rank": 2, - "Id": 609 + "Id": 609, + "Rank": 2 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Rank": 3, - "Id": 610 + "Id": 610, + "Rank": 3 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Rank": 4, - "Id": 611 + "Id": 611, + "Rank": 4 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Rank": 5, - "Id": 612 + "Id": 612, + "Rank": 5 }, { "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition", - "Rank": 1, - "Id": 613 + "Id": 613, + "Rank": 1 }, { "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Rank": 2, - "Id": 614 + "Id": 614, + "Rank": 2 }, { "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Rank": 3, - "Id": 615 + "Id": 615, + "Rank": 3 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem", - "Rank": 1, - "Id": 616 + "Id": 616, + "Rank": 1 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Rank": 2, - "Id": 617 + "Id": 617, + "Rank": 2 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -FirstStage", - "Rank": 3, - "Id": 618 + "Id": 618, + "Rank": 3 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -SecondStage", - "Rank": 4, - "Id": 619 + "Id": 619, + "Rank": 4 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Rank": 5, - "Id": 620 + "Id": 620, + "Rank": 5 }, { "CommandName": "Get-PnPRequestAccessEmails", "Command": "Get-PnPRequestAccessEmails", - "Rank": 1, - "Id": 621 + "Id": 621, + "Rank": 1 }, { "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel", - "Rank": 1, - "Id": 622 + "Id": 622, + "Rank": 1 }, { "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", - "Rank": 2, - "Id": 623 + "Id": 623, + "Rank": 2 }, { "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition", - "Rank": 1, - "Id": 624 + "Id": 624, + "Rank": 1 }, { "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition -Identity Read", - "Rank": 2, - "Id": 625 + "Id": 625, + "Rank": 2 }, { "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Rank": 3, - "Id": 626 + "Id": 626, + "Rank": 3 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration", - "Rank": 1, - "Id": 627 + "Id": 627, + "Rank": 1 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site", - "Rank": 2, - "Id": 628 + "Id": 628, + "Rank": 2 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Rank": 3, - "Id": 629 + "Id": 629, + "Rank": 3 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, - "Id": 630 + "Id": 630, + "Rank": 4 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Rank": 5, - "Id": 631 + "Id": 631, + "Rank": 5 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Rank": 6, - "Id": 632 + "Id": 632, + "Rank": 6 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Rank": 7, - "Id": 633 + "Id": 633, + "Rank": 7 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Rank": 8, - "Id": 634 + "Id": 634, + "Rank": 8 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog", - "Rank": 1, - "Id": 635 + "Id": 635, + "Rank": 1 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Rank": 2, - "Id": 636 + "Id": 636, + "Rank": 2 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Rank": 3, - "Id": 637 + "Id": 637, + "Rank": 3 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Rank": 4, - "Id": 638 + "Id": 638, + "Rank": 4 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Rank": 5, - "Id": 639 + "Id": 639, + "Rank": 5 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Rank": 6, - "Id": 640 + "Id": 640, + "Rank": 6 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Rank": 7, - "Id": 641 + "Id": 641, + "Rank": 7 }, { "CommandName": "Get-PnPSearchSettings", "Command": "Get-PnPSearchSettings", - "Rank": 1, - "Id": 642 + "Id": 642, + "Rank": 1 }, { "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth", - "Rank": 1, - "Id": 643 + "Id": 643, + "Rank": 1 }, { "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Rank": 2, - "Id": 644 + "Id": 644, + "Rank": 2 }, { "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue", - "Rank": 1, - "Id": 645 + "Id": 645, + "Rank": 1 }, { "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Rank": 2, - "Id": 646 + "Id": 646, + "Rank": 2 }, { "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn", - "Rank": 1, - "Id": 647 + "Id": 647, + "Rank": 1 }, { "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Rank": 2, - "Id": 648 + "Id": 648, + "Rank": 2 }, { "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Command": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1, - "Id": 649 + "Id": 649, + "Rank": 1 }, { "CommandName": "Get-PnPSite", "Command": "Get-PnPSite", - "Rank": 1, - "Id": 650 + "Id": 650, + "Rank": 1 }, { "CommandName": "Get-PnPSite", "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Rank": 2, - "Id": 651 + "Id": 651, + "Rank": 2 }, { "CommandName": "Get-PnPSiteClosure", "Command": "Get-PnPSiteClosure", - "Rank": 1, - "Id": 652 + "Id": 652, + "Rank": 1 }, { "CommandName": "Get-PnPSiteCollectionAdmin", "Command": "Get-PnPSiteCollectionAdmin", - "Rank": 1, - "Id": 653 + "Id": 653, + "Rank": 1 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1, - "Id": 654 + "Id": 654, + "Rank": 1 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Rank": 2, - "Id": 655 + "Id": 655, + "Rank": 2 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Rank": 3, - "Id": 656 + "Id": 656, + "Rank": 3 }, { "CommandName": "Get-PnPSiteCollectionTermStore", "Command": "Get-PnPSiteCollectionTermStore", - "Rank": 1, - "Id": 657 + "Id": 657, + "Rank": 1 }, { "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign", - "Rank": 1, - "Id": 658 + "Id": 658, + "Rank": 1 }, { "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, - "Id": 659 + "Id": 659, + "Rank": 2 }, { "CommandName": "Get-PnPSiteDesignRights", "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "Id": 660 + "Id": 660, + "Rank": 1 }, { "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun", - "Rank": 1, - "Id": 661 + "Id": 661, + "Rank": 1 }, { "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Rank": 2, - "Id": 662 + "Id": 662, + "Rank": 2 }, { "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1, - "Id": 663 + "Id": 663, + "Rank": 1 }, { "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask", - "Rank": 2, - "Id": 664 + "Id": 664, + "Rank": 2 }, { "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 3, - "Id": 665 + "Id": 665, + "Rank": 3 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup", - "Rank": 1, - "Id": 666 + "Id": 666, + "Rank": 1 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 2, - "Id": 667 + "Id": 667, + "Rank": 2 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Rank": 3, - "Id": 668 + "Id": 668, + "Rank": 3 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 4, - "Id": 669 + "Id": 669, + "Rank": 4 }, { "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy", - "Rank": 1, - "Id": 670 + "Id": 670, + "Rank": 1 }, { "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -AllAvailable", - "Rank": 2, - "Id": 671 + "Id": 671, + "Rank": 2 }, { "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 3, - "Id": 672 + "Id": 672, + "Rank": 3 }, { "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript", - "Rank": 1, - "Id": 673 + "Id": 673, + "Rank": 1 }, { "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, - "Id": 674 + "Id": 674, + "Rank": 2 }, { "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Rank": 1, - "Id": 675 + "Id": 675, + "Rank": 1 }, { "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Rank": 2, - "Id": 676 + "Id": 676, + "Rank": 2 }, { "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Rank": 3, - "Id": 677 + "Id": 677, + "Rank": 3 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Rank": 1, - "Id": 678 + "Id": 678, + "Rank": 1 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Rank": 2, - "Id": 679 + "Id": 679, + "Rank": 2 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "Rank": 3, - "Id": 680 + "Id": 680, + "Rank": 3 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Rank": 4, - "Id": 681 + "Id": 681, + "Rank": 4 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Rank": 5, - "Id": 682 + "Id": 682, + "Rank": 5 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "Rank": 6, - "Id": 683 + "Id": 683, + "Rank": 6 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults", - "Rank": 1, - "Id": 684 + "Id": 684, + "Rank": 1 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Rank": 2, - "Id": 685 + "Id": 685, + "Rank": 2 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Rank": 3, - "Id": 686 + "Id": 686, + "Rank": 3 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Rank": 4, - "Id": 687 + "Id": 687, + "Rank": 4 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Rank": 5, - "Id": 688 + "Id": 688, + "Rank": 5 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -All", - "Rank": 6, - "Id": 689 + "Id": 689, + "Rank": 6 }, { "CommandName": "Get-PnPSiteSensitivityLabel", "Command": "Get-PnPSiteSensitivityLabel", - "Rank": 1, - "Id": 690 + "Id": 690, + "Rank": 1 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Rank": 1, - "Id": 691 + "Id": 691, + "Rank": 1 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml", - "Rank": 2, - "Id": 692 + "Id": 692, + "Rank": 2 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.md", - "Rank": 3, - "Id": 693 + "Id": 693, + "Rank": 3 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Rank": 4, - "Id": 694 + "Id": 694, + "Rank": 4 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Rank": 5, - "Id": 695 + "Id": 695, + "Rank": 5 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Rank": 6, - "Id": 696 + "Id": 696, + "Rank": 6 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Rank": 7, - "Id": 697 + "Id": 697, + "Rank": 7 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Rank": 8, - "Id": 698 + "Id": 698, + "Rank": 8 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Rank": 9, - "Id": 699 + "Id": 699, + "Rank": 9 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Rank": 10, - "Id": 700 + "Id": 700, + "Rank": 10 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Rank": 11, - "Id": 701 + "Id": 701, + "Rank": 11 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Rank": 12, - "Id": 702 + "Id": 702, + "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\"", - "Rank": 13, - "Id": 703 + "Id": 703, + "Rank": 13 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Rank": 14, - "Id": 704 + "Id": 704, + "Rank": 14 }, { "CommandName": "Get-PnPSiteUserInvitations", "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1, - "Id": 705 + "Id": 705, + "Rank": 1 }, { "CommandName": "Get-PnPSiteVersionPolicy", "Command": "Get-PnPSiteVersionPolicy", - "Rank": 1, - "Id": 706 + "Id": 706, + "Rank": 1 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity", - "Rank": 1, - "Id": 707 + "Id": 707, + "Rank": 1 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey", - "Rank": 2, - "Id": 708 + "Id": 708, + "Rank": 2 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Scope Site", - "Rank": 3, - "Id": 709 + "Id": 709, + "Rank": 3 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 4, - "Id": 710 + "Id": 710, + "Rank": 4 }, { "CommandName": "Get-PnPStoredCredential", "Command": "Get-PnPStoredCredential -Name O365", - "Rank": 1, - "Id": 711 + "Id": 711, + "Rank": 1 }, { "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1, - "Id": 712 + "Id": 712, + "Rank": 1 }, { "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1, - "Id": 713 + "Id": 713, + "Rank": 1 }, { "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Rank": 1, - "Id": 714 + "Id": 714, + "Rank": 1 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb", - "Rank": 1, - "Id": 715 + "Id": 715, + "Rank": 1 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse", - "Rank": 2, - "Id": 716 + "Id": 716, + "Rank": 2 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Rank": 3, - "Id": 717 + "Id": 717, + "Rank": 3 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Rank": 4, - "Id": 718 + "Id": 718, + "Rank": 4 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Rank": 5, - "Id": 719 + "Id": 719, + "Rank": 5 }, { "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel", - "Rank": 1, - "Id": 720 + "Id": 720, + "Rank": 1 }, { "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity 1", - "Rank": 2, - "Id": 721 + "Id": 721, + "Rank": 2 }, { "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Rank": 3, - "Id": 722 + "Id": 722, + "Rank": 3 }, { "CommandName": "Get-PnPSyntexModelPublication", "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Rank": 1, - "Id": 723 + "Id": 723, + "Rank": 1 }, { "CommandName": "Get-PnPTaxonomyItem", "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Rank": 1, - "Id": 724 + "Id": 724, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp", - "Rank": 1, - "Id": 725 + "Id": 725, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Rank": 2, - "Id": 726 + "Id": 726, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Rank": 3, - "Id": 727 + "Id": 727, + "Rank": 3 }, { "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Rank": 1, - "Id": 728 + "Id": 728, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Rank": 2, - "Id": 729 + "Id": 729, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 3, - "Id": 730 + "Id": 730, + "Rank": 3 }, { "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Rank": 1, - "Id": 731 + "Id": 731, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 2, - "Id": 732 + "Id": 732, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Rank": 1, - "Id": 733 + "Id": 733, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Rank": 2, - "Id": 734 + "Id": 734, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Rank": 1, - "Id": 735 + "Id": 735, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Rank": 2, - "Id": 736 + "Id": 736, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 1, - "Id": 737 + "Id": 737, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Rank": 2, - "Id": 738 + "Id": 738, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Rank": 3, - "Id": 739 + "Id": 739, + "Rank": 3 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4, - "Id": 740 + "Id": 740, + "Rank": 4 }, { "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Rank": 1, - "Id": 741 + "Id": 741, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Rank": 2, - "Id": 742 + "Id": 742, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Rank": 1, - "Id": 743 + "Id": 743, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "Rank": 2, - "Id": 744 + "Id": 744, + "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", - "Rank": 3, - "Id": 745 + "Id": 745, + "Rank": 3 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 4, - "Id": 746 + "Id": 746, + "Rank": 4 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Rank": 5, - "Id": 747 + "Id": 747, + "Rank": 5 }, { "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, - "Id": 748 + "Id": 748, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 2, - "Id": 749 + "Id": 749, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam", - "Rank": 1, - "Id": 750 + "Id": 750, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Rank": 2, - "Id": 751 + "Id": 751, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Rank": 3, - "Id": 752 + "Id": 752, + "Rank": 3 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Rank": 4, - "Id": 753 + "Id": 753, + "Rank": 4 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, - "Id": 754 + "Id": 754, + "Rank": 5 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam", - "Rank": 1, - "Id": 755 + "Id": 755, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Rank": 2, - "Id": 756 + "Id": 756, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Rank": 3, - "Id": 757 + "Id": 757, + "Rank": 3 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Rank": 4, - "Id": 758 + "Id": 758, + "Rank": 4 }, { "CommandName": "Get-PnPTemporarilyDisableAppBar", "Command": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1, - "Id": 759 + "Id": 759, + "Rank": 1 }, { "CommandName": "Get-PnPTenant", "Command": "Get-PnPTenant", - "Rank": 1, - "Id": 760 + "Id": 760, + "Rank": 1 }, { "CommandName": "Get-PnPTenantAppCatalogUrl", "Command": "Get-PnPTenantAppCatalogUrl", - "Rank": 1, - "Id": 761 + "Id": 761, + "Rank": 1 }, { "CommandName": "Get-PnPTenantCdnEnabled", "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Rank": 1, - "Id": 762 + "Id": 762, + "Rank": 1 }, { "CommandName": "Get-PnPTenantCdnOrigin", "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Rank": 1, - "Id": 763 + "Id": 763, + "Rank": 1 }, { "CommandName": "Get-PnPTenantCdnPolicies", "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Rank": 1, - "Id": 764 + "Id": 764, + "Rank": 1 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite", - "Rank": 1, - "Id": 765 + "Id": 765, + "Rank": 1 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 2, - "Id": 766 + "Id": 766, + "Rank": 2 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Rank": 3, - "Id": 767 + "Id": 767, + "Rank": 3 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Rank": 4, - "Id": 768 + "Id": 768, + "Rank": 4 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId", - "Rank": 1, - "Id": 769 + "Id": 769, + "Rank": 1 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId contoso", - "Rank": 2, - "Id": 770 + "Id": 770, + "Rank": 2 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Rank": 3, - "Id": 771 + "Id": 771, + "Rank": 3 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Rank": 4, - "Id": 772 + "Id": 772, + "Rank": 4 }, { "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "Rank": 1, - "Id": 773 + "Id": 773, + "Rank": 1 }, { "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "Rank": 2, - "Id": 774 + "Id": 774, + "Rank": 2 }, { "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo", - "Rank": 3, - "Id": 775 + "Id": 775, + "Rank": 3 }, { "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -CurrentTenant", - "Rank": 4, - "Id": 776 + "Id": 776, + "Rank": 4 }, { "CommandName": "Get-PnPTenantInstance", "Command": "Get-PnPTenantInstance", - "Rank": 1, - "Id": 777 + "Id": 777, + "Rank": 1 }, { "CommandName": "Get-PnPTenantRecycleBinItem", "Command": "Get-PnPTenantRecycleBinItem", - "Rank": 1, - "Id": 778 + "Id": 778, + "Rank": 1 }, { "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Rank": 1, - "Id": 779 + "Id": 779, + "Rank": 1 }, { "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Rank": 2, - "Id": 780 + "Id": 780, + "Rank": 2 }, { "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Rank": 1, - "Id": 781 + "Id": 781, + "Rank": 1 }, { "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Rank": 2, - "Id": 782 + "Id": 782, + "Rank": 2 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite", - "Rank": 1, - "Id": 783 + "Id": 783, + "Rank": 1 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Detailed", - "Rank": 2, - "Id": 784 + "Id": 784, + "Rank": 2 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Rank": 3, - "Id": 785 + "Id": 785, + "Rank": 3 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Rank": 4, - "Id": 786 + "Id": 786, + "Rank": 4 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Rank": 5, - "Id": 787 + "Id": 787, + "Rank": 5 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Rank": 6, - "Id": 788 + "Id": 788, + "Rank": 6 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Rank": 7, - "Id": 789 + "Id": 789, + "Rank": 7 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Rank": 8, - "Id": 790 + "Id": 790, + "Rank": 8 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Rank": 9, - "Id": 791 + "Id": 791, + "Rank": 9 }, { "CommandName": "Get-PnPTenantSyncClientRestriction", "Command": "Get-PnPTenantSyncClientRestriction", - "Rank": 1, - "Id": 792 + "Id": 792, + "Rank": 1 }, { "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Rank": 1, - "Id": 793 + "Id": 793, + "Rank": 1 }, { "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Rank": 2, - "Id": 794 + "Id": 794, + "Rank": 2 }, { "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "Rank": 3, - "Id": 795 + "Id": 795, + "Rank": 3 }, { "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme", - "Rank": 1, - "Id": 796 + "Id": 796, + "Rank": 1 }, { "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 2, - "Id": 797 + "Id": 797, + "Rank": 2 }, { "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Rank": 3, - "Id": 798 + "Id": 798, + "Rank": 3 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 1, - "Id": 799 + "Id": 799, + "Rank": 1 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "Id": 800 + "Id": 800, + "Rank": 2 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, - "Id": 801 + "Id": 801, + "Rank": 3 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Rank": 4, - "Id": 802 + "Id": 802, + "Rank": 4 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Rank": 5, - "Id": 803 + "Id": 803, + "Rank": 5 }, { "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup", - "Rank": 1, - "Id": 804 + "Id": 804, + "Rank": 1 }, { "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Rank": 2, - "Id": 805 + "Id": 805, + "Rank": 2 }, { "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Rank": 3, - "Id": 806 + "Id": 806, + "Rank": 3 }, { "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Rank": 1, - "Id": 807 + "Id": 807, + "Rank": 1 }, { "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Rank": 2, - "Id": 808 + "Id": 808, + "Rank": 2 }, { "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, - "Id": 809 + "Id": 809, + "Rank": 3 }, { "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Rank": 1, - "Id": 810 + "Id": 810, + "Rank": 1 }, { "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "Id": 811 + "Id": 811, + "Rank": 2 }, { "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Rank": 3, - "Id": 812 + "Id": 812, + "Rank": 3 }, { "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme", - "Rank": 1, - "Id": 813 + "Id": 813, + "Rank": 1 }, { "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Rank": 2, - "Id": 814 + "Id": 814, + "Rank": 2 }, { "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId", - "Rank": 1, - "Id": 815 + "Id": 815, + "Rank": 1 }, { "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Rank": 2, - "Id": 816 + "Id": 816, + "Rank": 2 }, { "CommandName": "Get-PnPUnfurlLink", "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Rank": 1, - "Id": 817 + "Id": 817, + "Rank": 1 }, { "CommandName": "Get-PnPUnifiedAuditLog", "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Rank": 1, - "Id": 818 + "Id": 818, + "Rank": 1 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus", - "Rank": 1, - "Id": 819 + "Id": 819, + "Rank": 1 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Rank": 2, - "Id": 820 + "Id": 820, + "Rank": 2 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Rank": 3, - "Id": 821 + "Id": 821, + "Rank": 3 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Rank": 4, - "Id": 822 + "Id": 822, + "Rank": 4 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser", - "Rank": 1, - "Id": 823 + "Id": 823, + "Rank": 1 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity 23", - "Rank": 2, - "Id": 824 + "Id": 824, + "Rank": 2 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Rank": 3, - "Id": 825 + "Id": 825, + "Rank": 3 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Rank": 4, - "Id": 826 + "Id": 826, + "Rank": 4 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned", - "Rank": 5, - "Id": 827 + "Id": 827, + "Rank": 5 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Rank": 6, - "Id": 828 + "Id": 828, + "Rank": 6 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Rank": 7, - "Id": 829 + "Id": 829, + "Rank": 7 }, { "CommandName": "Get-PnPUserOneDriveQuota", "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Rank": 1, - "Id": 830 + "Id": 830, + "Rank": 1 }, { "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Rank": 1, - "Id": 831 + "Id": 831, + "Rank": 1 }, { "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Rank": 2, - "Id": 832 + "Id": 832, + "Rank": 2 }, { "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Rank": 3, - "Id": 833 + "Id": 833, + "Rank": 3 }, { "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\"", - "Rank": 1, - "Id": 834 + "Id": 834, + "Rank": 1 }, { "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Rank": 2, - "Id": 835 + "Id": 835, + "Rank": 2 }, { "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Rank": 3, - "Id": 836 + "Id": 836, + "Rank": 3 }, { "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1, - "Id": 837 + "Id": 837, + "Rank": 1 }, { "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 2, - "Id": 838 + "Id": 838, + "Rank": 2 }, { "CommandName": "Get-PnPWeb", "Command": "Get-PnPWeb", - "Rank": 1, - "Id": 839 + "Id": 839, + "Rank": 1 }, { "CommandName": "Get-PnPWebHeader", "Command": "Get-PnPWebHeader", - "Rank": 1, - "Id": 840 + "Id": 840, + "Rank": 1 }, { "CommandName": "Get-PnPWebhookSubscriptions", "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Rank": 1, - "Id": 841 + "Id": 841, + "Rank": 1 }, { "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Rank": 1, - "Id": 842 + "Id": 842, + "Rank": 1 }, { "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2, - "Id": 843 + "Id": 843, + "Rank": 2 }, { "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Rank": 1, - "Id": 844 + "Id": 844, + "Rank": 1 }, { "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "Rank": 2, - "Id": 845 + "Id": 845, + "Rank": 2 }, { "CommandName": "Get-PnPWebPartXml", "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, - "Id": 846 + "Id": 846, + "Rank": 1 }, { "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates", - "Rank": 1, - "Id": 847 + "Id": 847, + "Rank": 1 }, { "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -LCID 1033", - "Rank": 2, - "Id": 848 + "Id": 848, + "Rank": 2 }, { "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Rank": 3, - "Id": 849 + "Id": 849, + "Rank": 3 }, { "CommandName": "Get-PnPWikiPageContent", "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Rank": 1, - "Id": 850 + "Id": 850, + "Rank": 1 }, { "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Rank": 1, - "Id": 851 + "Id": 851, + "Rank": 1 }, { "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2, - "Id": 852 + "Id": 852, + "Rank": 2 }, { "CommandName": "Grant-PnPHubSiteRights", "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, - "Id": 853 + "Id": 853, + "Rank": 1 }, { "CommandName": "Grant-PnPSiteDesignRights", "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, - "Id": 854 + "Id": 854, + "Rank": 1 }, { "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1, - "Id": 855 + "Id": 855, + "Rank": 1 }, { "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Rank": 1, - "Id": 856 + "Id": 856, + "Rank": 1 }, { "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Rank": 2, - "Id": 857 + "Id": 857, + "Rank": 2 }, { "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Rank": 3, - "Id": 858 + "Id": 858, + "Rank": 3 }, { "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Rank": 1, - "Id": 859 + "Id": 859, + "Rank": 1 }, { "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Rank": 2, - "Id": 860 + "Id": 860, + "Rank": 2 }, { "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Rank": 1, - "Id": 861 + "Id": 861, + "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}'", - "Rank": 2, - "Id": 862 + "Id": 862, + "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'", - "Rank": 3, - "Id": 863 + "Id": 863, + "Rank": 3 }, { "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 864 + "Id": 864, + "Rank": 1 }, { "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "Id": 865 + "Id": 865, + "Rank": 2 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "Rank": 1, - "Id": 866 + "Id": 866, + "Rank": 1 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Rank": 2, - "Id": 867 + "Id": 867, + "Rank": 2 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Rank": 3, - "Id": 868 + "Id": 868, + "Rank": 3 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Rank": 4, - "Id": 869 + "Id": 869, + "Rank": 4 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Rank": 5, - "Id": 870 + "Id": 870, + "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", - "Rank": 6, - "Id": 871 + "Id": 871, + "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\"", - "Rank": 7, - "Id": 872 + "Id": 872, + "Rank": 7 }, { "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "Id": 873 + "Id": 873, + "Rank": 1 }, { "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2, - "Id": 874 + "Id": 874, + "Rank": 2 }, { "CommandName": "Invoke-PnPQuery", "Command": "Invoke-PnPQuery -RetryCount 5", - "Rank": 1, - "Id": 875 + "Id": 875, + "Rank": 1 }, { "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "Id": 876 + "Id": 876, + "Rank": 1 }, { "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2, - "Id": 877 + "Id": 877, + "Rank": 2 }, { "CommandName": "Invoke-PnPSiteScript", "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Rank": 1, - "Id": 878 + "Id": 878, + "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", - "Rank": 1, - "Id": 879 + "Id": 879, + "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", - "Rank": 2, - "Id": 880 + "Id": 880, + "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", - "Rank": 3, - "Id": 881 + "Id": 881, + "Rank": 3 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Rank": 1, - "Id": 882 + "Id": 882, + "Rank": 1 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Rank": 2, - "Id": 883 + "Id": 883, + "Rank": 2 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3, - "Id": 884 + "Id": 884, + "Rank": 3 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Rank": 4, - "Id": 885 + "Id": 885, + "Rank": 4 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Rank": 5, - "Id": 886 + "Id": 886, + "Rank": 5 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Rank": 6, - "Id": 887 + "Id": 887, + "Rank": 6 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Rank": 7, - "Id": 888 + "Id": 888, + "Rank": 7 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Rank": 8, - "Id": 889 + "Id": 889, + "Rank": 8 }, { "CommandName": "Invoke-PnPSPRestMethod", "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Rank": 1, - "Id": 890 + "Id": 890, + "Rank": 1 }, { "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Rank": 1, - "Id": 891 + "Id": 891, + "Rank": 1 }, { "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Rank": 2, - "Id": 892 + "Id": 892, + "Rank": 2 }, { "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3, - "Id": 893 + "Id": 893, + "Rank": 3 }, { "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Rank": 1, - "Id": 894 + "Id": 894, + "Rank": 1 }, { "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Rank": 2, - "Id": 895 + "Id": 895, + "Rank": 2 }, { "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\"", - "Rank": 1, - "Id": 896 + "Id": 896, + "Rank": 1 }, { "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Rank": 2, - "Id": 897 + "Id": 897, + "Rank": 2 }, { "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb", - "Rank": 1, - "Id": 898 + "Id": 898, + "Rank": 1 }, { "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb $web -Recursive", - "Rank": 2, - "Id": 899 + "Id": 899, + "Rank": 2 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Rank": 1, - "Id": 900 + "Id": 900, + "Rank": 1 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Rank": 2, - "Id": 901 + "Id": 901, + "Rank": 2 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 3, - "Id": 902 + "Id": 902, + "Rank": 3 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 4, - "Id": 903 + "Id": 903, + "Rank": 4 }, { "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Rank": 1, - "Id": 904 + "Id": 904, + "Rank": 1 }, { "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Rank": 2, - "Id": 905 + "Id": 905, + "Rank": 2 }, { "CommandName": "Move-PnPListItemToRecycleBin", "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, - "Id": 906 + "Id": 906, + "Rank": 1 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Rank": 1, - "Id": 907 + "Id": 907, + "Rank": 1 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Rank": 2, - "Id": 908 + "Id": 908, + "Rank": 2 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Rank": 3, - "Id": 909 + "Id": 909, + "Rank": 3 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "Rank": 4, - "Id": 910 + "Id": 910, + "Rank": 4 }, { "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem", - "Rank": 1, - "Id": 911 + "Id": 911, + "Rank": 1 }, { "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Rank": 2, - "Id": 912 + "Id": 912, + "Rank": 2 }, { "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Force", - "Rank": 3, - "Id": 913 + "Id": 913, + "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", - "Rank": 1, - "Id": 914 + "Id": 914, + "Rank": 1 }, { "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Rank": 2, - "Id": 915 + "Id": 915, + "Rank": 2 }, { "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Rank": 3, - "Id": 916 + "Id": 916, + "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", - "Rank": 1, - "Id": 917 + "Id": 917, + "Rank": 1 }, { "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Rank": 2, - "Id": 918 + "Id": 918, + "Rank": 2 }, { "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, - "Id": 919 + "Id": 919, + "Rank": 1 }, { "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Rank": 2, - "Id": 920 + "Id": 920, + "Rank": 2 }, { "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Rank": 3, - "Id": 921 + "Id": 921, + "Rank": 3 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Rank": 1, - "Id": 922 + "Id": 922, + "Rank": 1 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Rank": 2, - "Id": 923 + "Id": 923, + "Rank": 2 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "Rank": 3, - "Id": 924 + "Id": 924, + "Rank": 3 }, { "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Rank": 1, - "Id": 925 + "Id": 925, + "Rank": 1 }, { "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Rank": 2, - "Id": 926 + "Id": 926, + "Rank": 2 }, { "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "Rank": 3, - "Id": 927 + "Id": 927, + "Rank": 3 }, { "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()", - "Rank": 1, - "Id": 928 + "Id": 928, + "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()", - "Rank": 2, - "Id": 929 + "Id": 929, + "Rank": 2 }, { "CommandName": "New-PnPGroup", "Command": "New-PnPGroup -Title \"My Site Users\"", - "Rank": 1, - "Id": 930 + "Id": 930, + "Rank": 1 }, { "CommandName": "New-PnPList", "Command": "New-PnPList -Title Announcements -Template Announcements", - "Rank": 1, - "Id": 931 + "Id": 931, + "Rank": 1 }, { "CommandName": "New-PnPList", "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Rank": 2, - "Id": 932 + "Id": 932, + "Rank": 2 }, { "CommandName": "New-PnPList", "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Rank": 3, - "Id": 933 + "Id": 933, + "Rank": 3 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, - "Id": 934 + "Id": 934, + "Rank": 1 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "Rank": 2, - "Id": 935 + "Id": 935, + "Rank": 2 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Rank": 3, - "Id": 936 + "Id": 936, + "Rank": 3 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Rank": 4, - "Id": 937 + "Id": 937, + "Rank": 4 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Rank": 5, - "Id": 938 + "Id": 938, + "Rank": 5 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6, - "Id": 939 + "Id": 939, + "Rank": 6 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "Rank": 7, - "Id": 940 + "Id": 940, + "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\"}", - "Rank": 1, - "Id": 941 + "Id": 941, + "Rank": 1 }, { "CommandName": "New-PnPMicrosoft365GroupSettings", "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "Rank": 2, - "Id": 942 + "Id": 942, + "Rank": 2 }, { "CommandName": "New-PnPPersonalSite", "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Rank": 1, - "Id": 943 + "Id": 943, + "Rank": 1 }, { "CommandName": "New-PnPPlannerPlan", "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Rank": 1, - "Id": 944 + "Id": 944, + "Rank": 1 }, { "CommandName": "New-PnPSdnProvider", "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Rank": 1, - "Id": 945 + "Id": 945, + "Rank": 1 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 1, - "Id": 946 + "Id": 946, + "Rank": 1 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Rank": 2, - "Id": 947 + "Id": 947, + "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", - "Rank": 3, - "Id": 948 + "Id": 948, + "Rank": 3 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 4, - "Id": 949 + "Id": 949, + "Rank": 4 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 5, - "Id": 950 + "Id": 950, + "Rank": 5 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 6, - "Id": 951 + "Id": 951, + "Rank": 6 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Rank": 7, - "Id": 952 + "Id": 952, + "Rank": 7 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Rank": 8, - "Id": 953 + "Id": 953, + "Rank": 8 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Rank": 9, - "Id": 954 + "Id": 954, + "Rank": 9 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Rank": 10, - "Id": 955 + "Id": 955, + "Rank": 10 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 11, - "Id": 956 + "Id": 956, + "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", - "Rank": 12, - "Id": 957 + "Id": 957, + "Rank": 12 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 13, - "Id": 958 + "Id": 958, + "Rank": 13 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 14, - "Id": 959 + "Id": 959, + "Rank": 14 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 15, - "Id": 960 + "Id": 960, + "Rank": 15 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "Rank": 16, - "Id": 961 + "Id": 961, + "Rank": 16 }, { "CommandName": "New-PnPSiteCollectionTermStore", "Command": "New-PnPSiteCollectionTermStore", - "Rank": 1, - "Id": 962 + "Id": 962, + "Rank": 1 }, { "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Rank": 1, - "Id": 963 + "Id": 963, + "Rank": 1 }, { "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Rank": 2, - "Id": 964 + "Id": 964, + "Rank": 2 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Rank": 1, - "Id": 965 + "Id": 965, + "Rank": 1 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Rank": 2, - "Id": 966 + "Id": 966, + "Rank": 2 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Rank": 3, - "Id": 967 + "Id": 967, + "Rank": 3 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Rank": 4, - "Id": 968 + "Id": 968, + "Rank": 4 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "Rank": 5, - "Id": 969 + "Id": 969, + "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\"}", - "Rank": 6, - "Id": 970 + "Id": 970, + "Rank": 6 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Rank": 7, - "Id": 971 + "Id": 971, + "Rank": 7 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Rank": 8, - "Id": 972 + "Id": 972, + "Rank": 8 }, { "CommandName": "New-PnPTeamsApp", "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Rank": 1, - "Id": 973 + "Id": 973, + "Rank": 1 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Rank": 1, - "Id": 974 + "Id": 974, + "Rank": 1 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Rank": 2, - "Id": 975 + "Id": 975, + "Rank": 2 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Rank": 3, - "Id": 976 + "Id": 976, + "Rank": 3 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Rank": 4, - "Id": 977 + "Id": 977, + "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\"", - "Rank": 5, - "Id": 978 + "Id": 978, + "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\"", - "Rank": 6, - "Id": 979 + "Id": 979, + "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", - "Rank": 1, - "Id": 980 + "Id": 980, + "Rank": 1 }, { "CommandName": "New-PnPTenantSite", "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "Rank": 2, - "Id": 981 + "Id": 981, + "Rank": 2 }, { "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Rank": 1, - "Id": 982 + "Id": 982, + "Rank": 1 }, { "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2, - "Id": 983 + "Id": 983, + "Rank": 2 }, { "CommandName": "New-PnPTermGroup", "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Rank": 1, - "Id": 984 + "Id": 984, + "Rank": 1 }, { "CommandName": "New-PnPTermLabel", "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Rank": 1, - "Id": 985 + "Id": 985, + "Rank": 1 }, { "CommandName": "New-PnPTermSet", "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Rank": 1, - "Id": 986 + "Id": 986, + "Rank": 1 }, { "CommandName": "New-PnPUPABulkImportJob", "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "Rank": 1, - "Id": 987 + "Id": 987, + "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", - "Rank": 2, - "Id": 988 + "Id": 988, + "Rank": 2 }, { "CommandName": "New-PnPUser", "Command": "New-PnPUser -LoginName user@company.com", - "Rank": 1, - "Id": 989 + "Id": 989, + "Rank": 1 }, { "CommandName": "New-PnPWeb", "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "Rank": 1, - "Id": 990 + "Id": 990, + "Rank": 1 }, { "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 1, - "Id": 991 + "Id": 991, + "Rank": 1 }, { "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Rank": 2, - "Id": 992 + "Id": 992, + "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", - "Rank": 1, - "Id": 993 + "Id": 993, + "Rank": 1 }, { "CommandName": "Publish-PnPContentType", "Command": "Publish-PnPContentType -ContentType 0x0101", - "Rank": 1, - "Id": 994 + "Id": 994, + "Rank": 1 }, { "CommandName": "Publish-PnPSyntexModel", "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, - "Id": 995 + "Id": 995, + "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", - "Rank": 2, - "Id": 996 + "Id": 996, + "Rank": 2 }, { "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Rank": 1, - "Id": 997 + "Id": 997, + "Rank": 1 }, { "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Rank": 2, - "Id": 998 + "Id": 998, + "Rank": 2 }, { "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Xml $xml", - "Rank": 3, - "Id": 999 + "Id": 999, + "Rank": 3 }, { "CommandName": "Read-PnPTenantTemplate", "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Rank": 1, - "Id": 1000 + "Id": 1000, + "Rank": 1 }, { "CommandName": "Register-PnPAppCatalogSite", "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Rank": 1, - "Id": 1001 + "Id": 1001, + "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\")", - "Rank": 1, - "Id": 1002 + "Id": 1002, + "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\")", - "Rank": 2, - "Id": 1003 + "Id": 1003, + "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\")", - "Rank": 3, - "Id": 1004 + "Id": 1004, + "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\")", - "Rank": 4, - "Id": 1005 + "Id": 1005, + "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)", - "Rank": 5, - "Id": 1006 + "Id": 1006, + "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)", - "Rank": 6, - "Id": 1007 + "Id": 1007, + "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", - "Rank": 7, - "Id": 1008 + "Id": 1008, + "Rank": 7 }, { "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1, - "Id": 1009 + "Id": 1009, + "Rank": 1 }, { "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Rank": 2, - "Id": 1010 + "Id": 1010, + "Rank": 2 }, { "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess", - "Rank": 1, - "Id": 1011 + "Id": 1011, + "Rank": 1 }, { "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Rank": 2, - "Id": 1012 + "Id": 1012, + "Rank": 2 }, { "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Rank": 3, - "Id": 1013 + "Id": 1013, + "Rank": 3 }, { "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Rank": 1, - "Id": 1014 + "Id": 1014, + "Rank": 1 }, { "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Rank": 2, - "Id": 1015 + "Id": 1015, + "Rank": 2 }, { "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Rank": 1, - "Id": 1016 + "Id": 1016, + "Rank": 1 }, { "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 2, - "Id": 1017 + "Id": 1017, + "Rank": 2 }, { "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 1018 + "Id": 1018, + "Rank": 1 }, { "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "Id": 1019 + "Id": 1019, + "Rank": 2 }, { "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, - "Id": 1020 + "Id": 1020, + "Rank": 1 }, { "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, - "Id": 1021 + "Id": 1021, + "Rank": 2 }, { "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Rank": 1, - "Id": 1022 + "Id": 1022, + "Rank": 1 }, { "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 2, - "Id": 1023 + "Id": 1023, + "Rank": 2 }, { "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Rank": 1, - "Id": 1024 + "Id": 1024, + "Rank": 1 }, { "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 2, - "Id": 1025 + "Id": 1025, + "Rank": 2 }, { "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Rank": 1, - "Id": 1026 + "Id": 1026, + "Rank": 1 }, { "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $group", - "Rank": 2, - "Id": 1027 + "Id": 1027, + "Rank": 2 }, { "CommandName": "Remove-PnPAzureADGroupMember", "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 1028 + "Id": 1028, + "Rank": 1 }, { "CommandName": "Remove-PnPAzureADGroupOwner", "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 1029 + "Id": 1029, + "Rank": 1 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Rank": 1, - "Id": 1030 + "Id": 1030, + "Rank": 1 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Rank": 2, - "Id": 1031 + "Id": 1031, + "Rank": 2 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 3, - "Id": 1032 + "Id": 1032, + "Rank": 3 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 4, - "Id": 1033 + "Id": 1033, + "Rank": 4 }, { "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Rank": 1, - "Id": 1034 + "Id": 1034, + "Rank": 1 }, { "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Rank": 2, - "Id": 1035 + "Id": 1035, + "Rank": 2 }, { "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1, - "Id": 1036 + "Id": 1036, + "Rank": 1 }, { "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2, - "Id": 1037 + "Id": 1037, + "Rank": 2 }, { "CommandName": "Remove-PnPContentTypeFromList", "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Rank": 1, - "Id": 1038 + "Id": 1038, + "Rank": 1 }, { "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, - "Id": 1039 + "Id": 1039, + "Rank": 1 }, { "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, - "Id": 1040 + "Id": 1040, + "Rank": 2 }, { "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Rank": 3, - "Id": 1041 + "Id": 1041, + "Rank": 3 }, { "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, - "Id": 1042 + "Id": 1042, + "Rank": 1 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 1, - "Id": 1043 + "Id": 1043, + "Rank": 1 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, - "Id": 1044 + "Id": 1044, + "Rank": 2 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Rank": 3, - "Id": 1045 + "Id": 1045, + "Rank": 3 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList", - "Rank": 4, - "Id": 1046 + "Id": 1046, + "Rank": 4 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver", - "Rank": 5, - "Id": 1047 + "Id": 1047, + "Rank": 5 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Site", - "Rank": 6, - "Id": 1048 + "Id": 1048, + "Rank": 6 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Web", - "Rank": 7, - "Id": 1049 + "Id": 1049, + "Rank": 7 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope All", - "Rank": 8, - "Id": 1050 + "Id": 1050, + "Rank": 8 }, { "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -Identity \"Speakers\"", - "Rank": 1, - "Id": 1051 + "Id": 1051, + "Rank": 1 }, { "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, - "Id": 1052 + "Id": 1052, + "Rank": 2 }, { "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1, - "Id": 1053 + "Id": 1053, + "Rank": 1 }, { "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Rank": 2, - "Id": 1054 + "Id": 1054, + "Rank": 2 }, { "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Rank": 1, - "Id": 1055 + "Id": 1055, + "Rank": 1 }, { "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Rank": 2, - "Id": 1056 + "Id": 1056, + "Rank": 2 }, { "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Rank": 3, - "Id": 1057 + "Id": 1057, + "Rank": 3 }, { "CommandName": "Remove-PnPFileFromSiteTemplate", "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Rank": 1, - "Id": 1058 + "Id": 1058, + "Rank": 1 }, { "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, - "Id": 1059 + "Id": 1059, + "Rank": 1 }, { "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Rank": 2, - "Id": 1060 + "Id": 1060, + "Rank": 2 }, { "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, - "Id": 1061 + "Id": 1061, + "Rank": 1 }, { "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 2, - "Id": 1062 + "Id": 1062, + "Rank": 2 }, { "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Rank": 3, - "Id": 1063 + "Id": 1063, + "Rank": 3 }, { "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "Rank": 1, - "Id": 1064 + "Id": 1064, + "Rank": 1 }, { "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "Rank": 2, - "Id": 1065 + "Id": 1065, + "Rank": 2 }, { "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", - "Rank": 3, - "Id": 1066 + "Id": 1066, + "Rank": 3 }, { "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "Rank": 4, - "Id": 1067 + "Id": 1067, + "Rank": 4 }, { "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1, - "Id": 1068 + "Id": 1068, + "Rank": 1 }, { "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Rank": 2, - "Id": 1069 + "Id": 1069, + "Rank": 2 }, { "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "Id": 1070 + "Id": 1070, + "Rank": 1 }, { "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Rank": 2, - "Id": 1071 + "Id": 1071, + "Rank": 2 }, { "CommandName": "Remove-PnPGraphSubscription", "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Rank": 1, - "Id": 1072 + "Id": 1072, + "Rank": 1 }, { "CommandName": "Remove-PnPGroup", "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Rank": 1, - "Id": 1073 + "Id": 1073, + "Rank": 1 }, { "CommandName": "Remove-PnPGroupMember", "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1, - "Id": 1074 + "Id": 1074, + "Rank": 1 }, { "CommandName": "Remove-PnPHomeSite", "Command": "Remove-PnPHomeSite", - "Rank": 1, - "Id": 1075 + "Id": 1075, + "Rank": 1 }, { "CommandName": "Remove-PnPHubSiteAssociation", "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, - "Id": 1076 + "Id": 1076, + "Rank": 1 }, { "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Rank": 1, - "Id": 1077 + "Id": 1077, + "Rank": 1 }, { "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Rank": 2, - "Id": 1078 + "Id": 1078, + "Rank": 2 }, { "CommandName": "Remove-PnPIndexedProperty", "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Rank": 1, - "Id": 1079 + "Id": 1079, + "Rank": 1 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Rank": 1, - "Id": 1080 + "Id": 1080, + "Rank": 1 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Rank": 2, - "Id": 1081 + "Id": 1081, + "Rank": 2 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Rank": 3, - "Id": 1082 + "Id": 1082, + "Rank": 3 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Rank": 4, - "Id": 1083 + "Id": 1083, + "Rank": 4 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Rank": 5, - "Id": 1084 + "Id": 1084, + "Rank": 5 }, { "CommandName": "Remove-PnPKnowledgeHubSite", "Command": "Remove-PnPKnowledgeHubSite", - "Rank": 1, - "Id": 1085 + "Id": 1085, + "Rank": 1 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements", - "Rank": 1, - "Id": 1086 + "Id": 1086, + "Rank": 1 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Force", - "Rank": 2, - "Id": 1087 + "Id": 1087, + "Rank": 2 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Rank": 3, - "Id": 1088 + "Id": 1088, + "Rank": 3 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Rank": 4, - "Id": 1089 + "Id": 1089, + "Rank": 4 }, { "CommandName": "Remove-PnPListDesign", "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "Id": 1090 + "Id": 1090, + "Rank": 1 }, { "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, - "Id": 1091 + "Id": 1091, + "Rank": 1 }, { "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Rank": 2, - "Id": 1092 + "Id": 1092, + "Rank": 2 }, { "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\"", - "Rank": 3, - "Id": 1093 + "Id": 1093, + "Rank": 3 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Rank": 1, - "Id": 1094 + "Id": 1094, + "Rank": 1 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Rank": 2, - "Id": 1095 + "Id": 1095, + "Rank": 2 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Rank": 3, - "Id": 1096 + "Id": 1096, + "Rank": 3 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Rank": 4, - "Id": 1097 + "Id": 1097, + "Rank": 4 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Rank": 5, - "Id": 1098 + "Id": 1098, + "Rank": 5 }, { "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, - "Id": 1099 + "Id": 1099, + "Rank": 1 }, { "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, - "Id": 1100 + "Id": 1100, + "Rank": 2 }, { "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Rank": 1, - "Id": 1101 + "Id": 1101, + "Rank": 1 }, { "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Rank": 2, - "Id": 1102 + "Id": 1102, + "Rank": 2 }, { "CommandName": "Remove-PnPMicrosoft365GroupMember", "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 1103 + "Id": 1103, + "Rank": 1 }, { "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 1104 + "Id": 1104, + "Rank": 1 }, { "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Rank": 1, - "Id": 1105 + "Id": 1105, + "Rank": 1 }, { "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Rank": 2, - "Id": 1106 + "Id": 1106, + "Rank": 2 }, { "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Identity 1032", - "Rank": 1, - "Id": 1107 + "Id": 1107, + "Rank": 1 }, { "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Rank": 2, - "Id": 1108 + "Id": 1108, + "Rank": 2 }, { "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Rank": 3, - "Id": 1109 + "Id": 1109, + "Rank": 3 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Rank": 1, - "Id": 1110 + "Id": 1110, + "Rank": 1 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Rank": 2, - "Id": 1111 + "Id": 1111, + "Rank": 2 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Rank": 3, - "Id": 1112 + "Id": 1112, + "Rank": 3 }, { "CommandName": "Remove-PnPOrgNewsSite", "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, - "Id": 1113 + "Id": 1113, + "Rank": 1 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Rank": 1, - "Id": 1114 + "Id": 1114, + "Rank": 1 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Rank": 2, - "Id": 1115 + "Id": 1115, + "Rank": 2 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage $page", - "Rank": 3, - "Id": 1116 + "Id": 1116, + "Rank": 3 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Rank": 4, - "Id": 1117 + "Id": 1117, + "Rank": 4 }, { "CommandName": "Remove-PnPPageComponent", "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, - "Id": 1118 + "Id": 1118, + "Rank": 1 }, { "CommandName": "Remove-PnPPlannerBucket", "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Rank": 1, - "Id": 1119 + "Id": 1119, + "Rank": 1 }, { "CommandName": "Remove-PnPPlannerPlan", "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Rank": 1, - "Id": 1120 + "Id": 1120, + "Rank": 1 }, { "CommandName": "Remove-PnPPlannerRoster", "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, - "Id": 1121 + "Id": 1121, + "Rank": 1 }, { "CommandName": "Remove-PnPPlannerRosterMember", "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 1122 + "Id": 1122, + "Rank": 1 }, { "CommandName": "Remove-PnPPlannerTask", "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Rank": 1, - "Id": 1123 + "Id": 1123, + "Rank": 1 }, { "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Rank": 1, - "Id": 1124 + "Id": 1124, + "Rank": 1 }, { "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Rank": 2, - "Id": 1125 + "Id": 1125, + "Rank": 2 }, { "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Rank": 3, - "Id": 1126 + "Id": 1126, + "Rank": 3 }, { "CommandName": "Remove-PnPPublishingImageRendition", "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1, - "Id": 1127 + "Id": 1127, + "Rank": 1 }, { "CommandName": "Remove-PnPRoleDefinition", "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Rank": 1, - "Id": 1128 + "Id": 1128, + "Rank": 1 }, { "CommandName": "Remove-PnPSdnProvider", "Command": "Remove-PnPSdnProvider -Confirm:false", - "Rank": 1, - "Id": 1129 + "Id": 1129, + "Rank": 1 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Rank": 1, - "Id": 1130 + "Id": 1130, + "Rank": 1 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, - "Id": 1131 + "Id": 1131, + "Rank": 2 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, - "Id": 1132 + "Id": 1132, + "Rank": 3 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, - "Id": 1133 + "Id": 1133, + "Rank": 4 }, { "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 1134 + "Id": 1134, + "Rank": 1 }, { "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, - "Id": 1135 + "Id": 1135, + "Rank": 2 }, { "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 1, - "Id": 1136 + "Id": 1136, + "Rank": 1 }, { "CommandName": "Remove-PnPSiteCollectionTermStore", "Command": "Remove-PnPSiteCollectionTermStore", - "Rank": 1, - "Id": 1137 + "Id": 1137, + "Rank": 1 }, { "CommandName": "Remove-PnPSiteDesign", "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "Id": 1138 + "Id": 1138, + "Rank": 1 }, { "CommandName": "Remove-PnPSiteDesignTask", "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "Id": 1139 + "Id": 1139, + "Rank": 1 }, { "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, - "Id": 1140 + "Id": 1140, + "Rank": 1 }, { "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Rank": 2, - "Id": 1141 + "Id": 1141, + "Rank": 2 }, { "CommandName": "Remove-PnPSiteScript", "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "Id": 1142 + "Id": 1142, + "Rank": 1 }, { "CommandName": "Remove-PnPSiteUserInvitations", "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1, - "Id": 1143 + "Id": 1143, + "Rank": 1 }, { "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey", - "Rank": 1, - "Id": 1144 + "Id": 1144, + "Rank": 1 }, { "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 2, - "Id": 1145 + "Id": 1145, + "Rank": 2 }, { "CommandName": "Remove-PnPStoredCredential", "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Rank": 1, - "Id": 1146 + "Id": 1146, + "Rank": 1 }, { "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Rank": 1, - "Id": 1147 + "Id": 1147, + "Rank": 1 }, { "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Rank": 2, - "Id": 1148 + "Id": 1148, + "Rank": 2 }, { "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Rank": 1, - "Id": 1149 + "Id": 1149, + "Rank": 1 }, { "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Rank": 2, - "Id": 1150 + "Id": 1150, + "Rank": 2 }, { "CommandName": "Remove-PnPTeamsChannel", "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Rank": 1, - "Id": 1151 + "Id": 1151, + "Rank": 1 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Rank": 1, - "Id": 1152 + "Id": 1152, + "Rank": 1 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 2, - "Id": 1153 + "Id": 1153, + "Rank": 2 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Rank": 3, - "Id": 1154 + "Id": 1154, + "Rank": 3 }, { "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Rank": 1, - "Id": 1155 + "Id": 1155, + "Rank": 1 }, { "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Rank": 2, - "Id": 1156 + "Id": 1156, + "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", - "Rank": 3, - "Id": 1157 + "Id": 1157, + "Rank": 3 }, { "CommandName": "Remove-PnPTeamsTag", "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 1, - "Id": 1158 + "Id": 1158, + "Rank": 1 }, { "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, - "Id": 1159 + "Id": 1159, + "Rank": 1 }, { "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Rank": 2, - "Id": 1160 + "Id": 1160, + "Rank": 2 }, { "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Rank": 1, - "Id": 1161 + "Id": 1161, + "Rank": 1 }, { "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 2, - "Id": 1162 + "Id": 1162, + "Rank": 2 }, { "CommandName": "Remove-PnPTenantCdnOrigin", "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1, - "Id": 1163 + "Id": 1163, + "Rank": 1 }, { "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "Id": 1164 + "Id": 1164, + "Rank": 1 }, { "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, - "Id": 1165 + "Id": 1165, + "Rank": 2 }, { "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "Id": 1166 + "Id": 1166, + "Rank": 1 }, { "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Rank": 2, - "Id": 1167 + "Id": 1167, + "Rank": 2 }, { "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Rank": 3, - "Id": 1168 + "Id": 1168, + "Rank": 3 }, { "CommandName": "Remove-PnPTenantSyncClientRestriction", "Command": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1, - "Id": 1169 + "Id": 1169, + "Rank": 1 }, { "CommandName": "Remove-PnPTenantTheme", "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 1, - "Id": 1170 + "Id": 1170, + "Rank": 1 }, { "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, - "Id": 1171 + "Id": 1171, + "Rank": 1 }, { "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "Id": 1172 + "Id": 1172, + "Rank": 2 }, { "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, - "Id": 1173 + "Id": 1173, + "Rank": 1 }, { "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Rank": 2, - "Id": 1174 + "Id": 1174, + "Rank": 2 }, { "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Rank": 3, - "Id": 1175 + "Id": 1175, + "Rank": 3 }, { "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Rank": 1, - "Id": 1176 + "Id": 1176, + "Rank": 1 }, { "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "Id": 1177 + "Id": 1177, + "Rank": 2 }, { "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity 23", - "Rank": 1, - "Id": 1178 + "Id": 1178, + "Rank": 1 }, { "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Rank": 2, - "Id": 1179 + "Id": 1179, + "Rank": 2 }, { "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Rank": 3, - "Id": 1180 + "Id": 1180, + "Rank": 3 }, { "CommandName": "Remove-PnPUserInfo", "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1, - "Id": 1181 + "Id": 1181, + "Rank": 1 }, { "CommandName": "Remove-PnPUserProfile", "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Rank": 1, - "Id": 1182 + "Id": 1182, + "Rank": 1 }, { "CommandName": "Remove-PnPView", "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Rank": 1, - "Id": 1183 + "Id": 1183, + "Rank": 1 }, { "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 1, - "Id": 1184 + "Id": 1184, + "Rank": 1 }, { "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity projectA", - "Rank": 1, - "Id": 1185 + "Id": 1185, + "Rank": 1 }, { "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Rank": 2, - "Id": 1186 + "Id": 1186, + "Rank": 2 }, { "CommandName": "Remove-PnPWebhookSubscription", "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Rank": 1, - "Id": 1187 + "Id": 1187, + "Rank": 1 }, { "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, - "Id": 1188 + "Id": 1188, + "Rank": 1 }, { "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Rank": 2, - "Id": 1189 + "Id": 1189, + "Rank": 2 }, { "CommandName": "Remove-PnPWikiPage", "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Rank": 1, - "Id": 1190 + "Id": 1190, + "Rank": 1 }, { "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Rank": 1, - "Id": 1191 + "Id": 1191, + "Rank": 1 }, { "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Rank": 2, - "Id": 1192 + "Id": 1192, + "Rank": 2 }, { "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Rank": 3, - "Id": 1193 + "Id": 1193, + "Rank": 3 }, { "CommandName": "Rename-PnPFolder", "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Rank": 1, - "Id": 1194 + "Id": 1194, + "Rank": 1 }, { "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, - "Id": 1195 + "Id": 1195, + "Rank": 1 }, { "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2, - "Id": 1196 + "Id": 1196, + "Rank": 2 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken", - "Rank": 1, - "Id": 1197 + "Id": 1197, + "Rank": 1 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Rank": 2, - "Id": 1198 + "Id": 1198, + "Rank": 2 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Rank": 3, - "Id": 1199 + "Id": 1199, + "Rank": 3 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Rank": 4, - "Id": 1200 + "Id": 1200, + "Rank": 4 }, { "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Rank": 1, - "Id": 1201 + "Id": 1201, + "Rank": 1 }, { "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Rank": 2, - "Id": 1202 + "Id": 1202, + "Rank": 2 }, { "CommandName": "Request-PnPReIndexList", "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Rank": 1, - "Id": 1203 + "Id": 1203, + "Rank": 1 }, { "CommandName": "Request-PnPReIndexWeb", "Command": "Request-PnPReIndexWeb", - "Rank": 1, - "Id": 1204 + "Id": 1204, + "Rank": 1 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Rank": 1, - "Id": 1205 + "Id": 1205, + "Rank": 1 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Rank": 2, - "Id": 1206 + "Id": 1206, + "Rank": 2 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Rank": 3, - "Id": 1207 + "Id": 1207, + "Rank": 3 }, { "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Rank": 1, - "Id": 1208 + "Id": 1208, + "Rank": 1 }, { "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Rank": 2, - "Id": 1209 + "Id": 1209, + "Rank": 2 }, { "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\"", - "Rank": 1, - "Id": 1210 + "Id": 1210, + "Rank": 1 }, { "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Rank": 2, - "Id": 1211 + "Id": 1211, + "Rank": 2 }, { "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1, - "Id": 1212 + "Id": 1212, + "Rank": 1 }, { "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Rank": 1, - "Id": 1213 + "Id": 1213, + "Rank": 1 }, { "CommandName": "Resolve-PnPFolder", "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Rank": 1, - "Id": 1214 + "Id": 1214, + "Rank": 1 }, { "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, - "Id": 1215 + "Id": 1215, + "Rank": 1 }, { "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, - "Id": 1216 + "Id": 1216, + "Rank": 1 }, { "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Rank": 2, - "Id": 1217 + "Id": 1217, + "Rank": 2 }, { "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 3, - "Id": 1218 + "Id": 1218, + "Rank": 3 }, { "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, - "Id": 1219 + "Id": 1219, + "Rank": 1 }, { "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, - "Id": 1220 + "Id": 1220, + "Rank": 2 }, { "CommandName": "Restore-PnPRecycleBinItem", "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, - "Id": 1221 + "Id": 1221, + "Rank": 1 }, { "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "Id": 1222 + "Id": 1222, + "Rank": 1 }, { "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2, - "Id": 1223 + "Id": 1223, + "Rank": 2 }, { "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "Id": 1224 + "Id": 1224, + "Rank": 1 }, { "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, - "Id": 1225 + "Id": 1225, + "Rank": 2 }, { "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Rank": 3, - "Id": 1226 + "Id": 1226, + "Rank": 3 }, { "CommandName": "Revoke-PnPAzureADAppSitePermission", "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Rank": 1, - "Id": 1227 + "Id": 1227, + "Rank": 1 }, { "CommandName": "Revoke-PnPHubSiteRights", "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, - "Id": 1228 + "Id": 1228, + "Rank": 1 }, { "CommandName": "Revoke-PnPSiteDesignRights", "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, - "Id": 1229 + "Id": 1229, + "Rank": 1 }, { "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1, - "Id": 1230 + "Id": 1230, + "Rank": 1 }, { "CommandName": "Revoke-PnPUserSession", "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Rank": 1, - "Id": 1231 + "Id": 1231, + "Rank": 1 }, { "CommandName": "Save-PnPPageConversionLog", "Command": "Save-PnPPageConversionLog", - "Rank": 1, - "Id": 1232 + "Id": 1232, + "Rank": 1 }, { "CommandName": "Save-PnPSiteTemplate", "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Rank": 1, - "Id": 1233 + "Id": 1233, + "Rank": 1 }, { "CommandName": "Save-PnPTenantTemplate", "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Rank": 1, - "Id": 1234 + "Id": 1234, + "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\"", - "Rank": 1, - "Id": 1235 + "Id": 1235, + "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", - "Rank": 2, - "Id": 1236 + "Id": 1236, + "Rank": 2 }, { "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Rank": 3, - "Id": 1237 + "Id": 1237, + "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", - "Rank": 4, - "Id": 1238 + "Id": 1238, + "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", - "Rank": 5, - "Id": 1239 + "Id": 1239, + "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\"", - "Rank": 6, - "Id": 1240 + "Id": 1240, + "Rank": 6 }, { "CommandName": "Set-PnPAdaptiveScopeProperty", "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Rank": 1, - "Id": 1241 + "Id": 1241, + "Rank": 1 }, { "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, - "Id": 1242 + "Id": 1242, + "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`\"}\"", - "Rank": 2, - "Id": 1243 + "Id": 1243, + "Rank": 2 }, { "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -On", - "Rank": 1, - "Id": 1244 + "Id": 1244, + "Rank": 1 }, { "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -Off", - "Rank": 2, - "Id": 1245 + "Id": 1245, + "Rank": 2 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -EnableAll", - "Rank": 1, - "Id": 1246 + "Id": 1246, + "Rank": 1 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -DisableAll", - "Rank": 2, - "Id": 1247 + "Id": 1247, + "Rank": 2 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7", - "Rank": 3, - "Id": 1248 + "Id": 1248, + "Rank": 3 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -TrimAuditLog", - "Rank": 4, - "Id": 1249 + "Id": 1249, + "Rank": 4 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Rank": 5, - "Id": 1250 + "Id": 1250, + "Rank": 5 }, { "CommandName": "Set-PnPAvailablePageLayouts", "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Rank": 1, - "Id": 1251 + "Id": 1251, + "Rank": 1 }, { "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Rank": 1, - "Id": 1252 + "Id": 1252, + "Rank": 1 }, { "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Rank": 2, - "Id": 1253 + "Id": 1253, + "Rank": 2 }, { "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, - "Id": 1254 + "Id": 1254, + "Rank": 1 }, { "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, - "Id": 1255 + "Id": 1255, + "Rank": 2 }, { "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Rank": 3, - "Id": 1256 + "Id": 1256, + "Rank": 3 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Rank": 1, - "Id": 1257 + "Id": 1257, + "Rank": 1 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Rank": 2, - "Id": 1258 + "Id": 1258, + "Rank": 2 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Rank": 3, - "Id": 1259 + "Id": 1259, + "Rank": 3 }, { "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Rank": 1, - "Id": 1260 + "Id": 1260, + "Rank": 1 }, { "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Rank": 2, - "Id": 1261 + "Id": 1261, + "Rank": 2 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Rank": 1, - "Id": 1262 + "Id": 1262, + "Rank": 1 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Rank": 2, - "Id": 1263 + "Id": 1263, + "Rank": 2 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Rank": 3, - "Id": 1264 + "Id": 1264, + "Rank": 3 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Rank": 4, - "Id": 1265 + "Id": 1265, + "Rank": 4 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 1, - "Id": 1266 + "Id": 1266, + "Rank": 1 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Rank": 2, - "Id": 1267 + "Id": 1267, + "Rank": 2 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 3, - "Id": 1268 + "Id": 1268, + "Rank": 3 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Rank": 4, - "Id": 1269 + "Id": 1269, + "Rank": 4 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Rank": 5, - "Id": 1270 + "Id": 1270, + "Rank": 5 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Rank": 1, - "Id": 1271 + "Id": 1271, + "Rank": 1 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Rank": 2, - "Id": 1272 + "Id": 1272, + "Rank": 2 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Rank": 3, - "Id": 1273 + "Id": 1273, + "Rank": 3 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Rank": 4, - "Id": 1274 + "Id": 1274, + "Rank": 4 }, { "CommandName": "Set-PnPDefaultContentTypeToList", "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Rank": 1, - "Id": 1275 + "Id": 1275, + "Rank": 1 }, { "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Rank": 1, - "Id": 1276 + "Id": 1276, + "Rank": 1 }, { "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Rank": 2, - "Id": 1277 + "Id": 1277, + "Rank": 2 }, { "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Rank": 3, - "Id": 1278 + "Id": 1278, + "Rank": 3 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Rank": 1, - "Id": 1279 + "Id": 1279, + "Rank": 1 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 2, - "Id": 1280 + "Id": 1280, + "Rank": 2 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 3, - "Id": 1281 + "Id": 1281, + "Rank": 3 }, { "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Rank": 1, - "Id": 1282 + "Id": 1282, + "Rank": 1 }, { "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Rank": 2, - "Id": 1283 + "Id": 1283, + "Rank": 2 }, { "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Rank": 1, - "Id": 1284 + "Id": 1284, + "Rank": 1 }, { "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Rank": 2, - "Id": 1285 + "Id": 1285, + "Rank": 2 }, { "CommandName": "Set-PnPField", "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Rank": 3, - "Id": 1286 + "Id": 1286, + "Rank": 3 }, { "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Rank": 1, - "Id": 1287 + "Id": 1287, + "Rank": 1 }, { "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Rank": 2, - "Id": 1288 + "Id": 1288, + "Rank": 2 }, { "CommandName": "Set-PnPFileCheckedOut", "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Rank": 1, - "Id": 1289 + "Id": 1289, + "Rank": 1 }, { "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, - "Id": 1290 + "Id": 1290, + "Rank": 1 }, { "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, - "Id": 1291 + "Id": 1291, + "Rank": 2 }, { "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3, - "Id": 1292 + "Id": 1292, + "Rank": 3 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true", - "Rank": 1, - "Id": 1293 + "Id": 1293, + "Rank": 1 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Rank": 2, - "Id": 1294 + "Id": 1294, + "Rank": 2 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Rank": 3, - "Id": 1295 + "Id": 1295, + "Rank": 3 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -LogoUrl \"\"", - "Rank": 4, - "Id": 1296 + "Id": 1296, + "Rank": 4 }, { "CommandName": "Set-PnPGraphSubscription", "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Rank": 1, - "Id": 1297 + "Id": 1297, + "Rank": 1 }, { "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Rank": 1, - "Id": 1298 + "Id": 1298, + "Rank": 1 }, { "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Rank": 2, - "Id": 1299 + "Id": 1299, + "Rank": 2 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Rank": 1, - "Id": 1300 + "Id": 1300, + "Rank": 1 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Rank": 2, - "Id": 1301 + "Id": 1301, + "Rank": 2 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Rank": 3, - "Id": 1302 + "Id": 1302, + "Rank": 3 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Rank": 4, - "Id": 1303 + "Id": 1303, + "Rank": 4 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Rank": 5, - "Id": 1304 + "Id": 1304, + "Rank": 5 }, { "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Rank": 1, - "Id": 1305 + "Id": 1305, + "Rank": 1 }, { "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Rank": 2, - "Id": 1306 + "Id": 1306, + "Rank": 2 }, { "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Rank": 1, - "Id": 1307 + "Id": 1307, + "Rank": 1 }, { "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Rank": 2, - "Id": 1308 + "Id": 1308, + "Rank": 2 }, { "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Rank": 1, - "Id": 1309 + "Id": 1309, + "Rank": 1 }, { "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Rank": 2, - "Id": 1310 + "Id": 1310, + "Rank": 2 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Rank": 1, - "Id": 1311 + "Id": 1311, + "Rank": 1 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Rank": 2, - "Id": 1312 + "Id": 1312, + "Rank": 2 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Rank": 3, - "Id": 1313 + "Id": 1313, + "Rank": 3 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "Rank": 4, - "Id": 1314 + "Id": 1314, + "Rank": 4 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Rank": 5, - "Id": 1315 + "Id": 1315, + "Rank": 5 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Rank": 6, - "Id": 1316 + "Id": 1316, + "Rank": 6 }, { "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 1, - "Id": 1317 + "Id": 1317, + "Rank": 1 }, { "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Rank": 2, - "Id": 1318 + "Id": 1318, + "Rank": 2 }, { "CommandName": "Set-PnPIndexedProperties", "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Rank": 1, - "Id": 1319 + "Id": 1319, + "Rank": 1 }, { "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Rank": 1, - "Id": 1320 + "Id": 1320, + "Rank": 1 }, { "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Rank": 2, - "Id": 1321 + "Id": 1321, + "Rank": 2 }, { "CommandName": "Set-PnPKnowledgeHubSite", "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Rank": 1, - "Id": 1322 + "Id": 1322, + "Rank": 1 }, { "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Rank": 1, - "Id": 1323 + "Id": 1323, + "Rank": 1 }, { "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Rank": 2, - "Id": 1324 + "Id": 1324, + "Rank": 2 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Rank": 1, - "Id": 1325 + "Id": 1325, + "Rank": 1 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Rank": 2, - "Id": 1326 + "Id": 1326, + "Rank": 2 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Rank": 3, - "Id": 1327 + "Id": 1327, + "Rank": 3 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Rank": 4, - "Id": 1328 + "Id": 1328, + "Rank": 4 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Rank": 5, - "Id": 1329 + "Id": 1329, + "Rank": 5 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Rank": 6, - "Id": 1330 + "Id": 1330, + "Rank": 6 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Rank": 7, - "Id": 1331 + "Id": 1331, + "Rank": 7 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Rank": 8, - "Id": 1332 + "Id": 1332, + "Rank": 8 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Rank": 9, - "Id": 1333 + "Id": 1333, + "Rank": 9 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Rank": 10, - "Id": 1334 + "Id": 1334, + "Rank": 10 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Rank": 11, - "Id": 1335 + "Id": 1335, + "Rank": 11 }, { "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Rank": 1, - "Id": 1336 + "Id": 1336, + "Rank": 1 }, { "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Rank": 2, - "Id": 1337 + "Id": 1337, + "Rank": 2 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1, - "Id": 1338 + "Id": 1338, + "Rank": 1 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 2, - "Id": 1339 + "Id": 1339, + "Rank": 2 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 3, - "Id": 1340 + "Id": 1340, + "Rank": 3 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Rank": 4, - "Id": 1341 + "Id": 1341, + "Rank": 4 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Rank": 5, - "Id": 1342 + "Id": 1342, + "Rank": 5 }, { "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, - "Id": 1343 + "Id": 1343, + "Rank": 1 }, { "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Rank": 2, - "Id": 1344 + "Id": 1344, + "Rank": 2 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, - "Id": 1345 + "Id": 1345, + "Rank": 1 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, - "Id": 1346 + "Id": 1346, + "Rank": 2 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3, - "Id": 1347 + "Id": 1347, + "Rank": 3 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Rank": 4, - "Id": 1348 + "Id": 1348, + "Rank": 4 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Rank": 5, - "Id": 1349 + "Id": 1349, + "Rank": 5 }, { "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, - "Id": 1350 + "Id": 1350, + "Rank": 1 }, { "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, - "Id": 1351 + "Id": 1351, + "Rank": 2 }, { "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Rank": 1, - "Id": 1352 + "Id": 1352, + "Rank": 1 }, { "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Rank": 2, - "Id": 1353 + "Id": 1353, + "Rank": 2 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 1, - "Id": 1354 + "Id": 1354, + "Rank": 1 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 2, - "Id": 1355 + "Id": 1355, + "Rank": 2 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 3, - "Id": 1356 + "Id": 1356, + "Rank": 3 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 4, - "Id": 1357 + "Id": 1357, + "Rank": 4 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Rank": 1, - "Id": 1358 + "Id": 1358, + "Rank": 1 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "Id": 1359 + "Id": 1359, + "Rank": 2 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3, - "Id": 1360 + "Id": 1360, + "Rank": 3 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Rank": 1, - "Id": 1361 + "Id": 1361, + "Rank": 1 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "Id": 1362 + "Id": 1362, + "Rank": 2 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3, - "Id": 1363 + "Id": 1363, + "Rank": 3 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Rank": 1, - "Id": 1364 + "Id": 1364, + "Rank": 1 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "Id": 1365 + "Id": 1365, + "Rank": 2 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3, - "Id": 1366 + "Id": 1366, + "Rank": 3 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Rank": 1, - "Id": 1367 + "Id": 1367, + "Rank": 1 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "Id": 1368 + "Id": 1368, + "Rank": 2 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3, - "Id": 1369 + "Id": 1369, + "Rank": 3 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Rank": 1, - "Id": 1370 + "Id": 1370, + "Rank": 1 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "Id": 1371 + "Id": 1371, + "Rank": 2 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3, - "Id": 1372 + "Id": 1372, + "Rank": 3 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Rank": 1, - "Id": 1373 + "Id": 1373, + "Rank": 1 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "Id": 1374 + "Id": 1374, + "Rank": 2 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3, - "Id": 1375 + "Id": 1375, + "Rank": 3 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, - "Id": 1376 + "Id": 1376, + "Rank": 1 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, - "Id": 1377 + "Id": 1377, + "Rank": 2 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Rank": 3, - "Id": 1378 + "Id": 1378, + "Rank": 3 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Rank": 4, - "Id": 1379 + "Id": 1379, + "Rank": 4 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Rank": 5, - "Id": 1380 + "Id": 1380, + "Rank": 5 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6, - "Id": 1381 + "Id": 1381, + "Rank": 6 }, { "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Rank": 1, - "Id": 1382 + "Id": 1382, + "Rank": 1 }, { "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Rank": 2, - "Id": 1383 + "Id": 1383, + "Rank": 2 }, { "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Rank": 1, - "Id": 1384 + "Id": 1384, + "Rank": 1 }, { "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -On", - "Rank": 2, - "Id": 1385 + "Id": 1385, + "Rank": 2 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Rank": 1, - "Id": 1386 + "Id": 1386, + "Rank": 1 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Rank": 2, - "Id": 1387 + "Id": 1387, + "Rank": 2 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Rank": 3, - "Id": 1388 + "Id": 1388, + "Rank": 3 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Rank": 4, - "Id": 1389 + "Id": 1389, + "Rank": 4 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Rank": 5, - "Id": 1390 + "Id": 1390, + "Rank": 5 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "Rank": 6, - "Id": 1391 + "Id": 1391, + "Rank": 6 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7, - "Id": 1392 + "Id": 1392, + "Rank": 7 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "Rank": 8, - "Id": 1393 + "Id": 1393, + "Rank": 8 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, - "Id": 1394 + "Id": 1394, + "Rank": 9 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, - "Id": 1395 + "Id": 1395, + "Rank": 10 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "Rank": 11, - "Id": 1396 + "Id": 1396, + "Rank": 11 }, { "CommandName": "Set-PnPPageTextPart", "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Rank": 1, - "Id": 1397 + "Id": 1397, + "Rank": 1 }, { "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Rank": 1, - "Id": 1398 + "Id": 1398, + "Rank": 1 }, { "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Rank": 2, - "Id": 1399 + "Id": 1399, + "Rank": 2 }, { "CommandName": "Set-PnPPlannerBucket", "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Rank": 1, - "Id": 1400 + "Id": 1400, + "Rank": 1 }, { "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Rank": 1, - "Id": 1401 + "Id": 1401, + "Rank": 1 }, { "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Rank": 2, - "Id": 1402 + "Id": 1402, + "Rank": 2 }, { "CommandName": "Set-PnPPlannerPlan", "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Rank": 1, - "Id": 1403 + "Id": 1403, + "Rank": 1 }, { "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Rank": 1, - "Id": 1404 + "Id": 1404, + "Rank": 1 }, { "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Rank": 2, - "Id": 1405 + "Id": 1405, + "Rank": 2 }, { "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Rank": 3, - "Id": 1406 + "Id": 1406, + "Rank": 3 }, { "CommandName": "Set-PnPPlannerUserPolicy", "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 1407 + "Id": 1407, + "Rank": 1 }, { "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Rank": 1, - "Id": 1408 + "Id": 1408, + "Rank": 1 }, { "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Rank": 2, - "Id": 1409 + "Id": 1409, + "Rank": 2 }, { "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Rank": 3, - "Id": 1410 + "Id": 1410, + "Rank": 3 }, { "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Rank": 1, - "Id": 1411 + "Id": 1411, + "Rank": 1 }, { "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled", - "Rank": 2, - "Id": 1412 + "Id": 1412, + "Rank": 2 }, { "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Rank": 3, - "Id": 1413 + "Id": 1413, + "Rank": 3 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Rank": 1, - "Id": 1414 + "Id": 1414, + "Rank": 1 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Rank": 2, - "Id": 1415 + "Id": 1415, + "Rank": 2 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Rank": 3, - "Id": 1416 + "Id": 1416, + "Rank": 3 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Rank": 4, - "Id": 1417 + "Id": 1417, + "Rank": 4 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Rank": 1, - "Id": 1418 + "Id": 1418, + "Rank": 1 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, - "Id": 1419 + "Id": 1419, + "Rank": 2 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, - "Id": 1420 + "Id": 1420, + "Rank": 3 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, - "Id": 1421 + "Id": 1421, + "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", - "Rank": 1, - "Id": 1422 + "Id": 1422, + "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\"", - "Rank": 2, - "Id": 1423 + "Id": 1423, + "Rank": 2 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Rank": 1, - "Id": 1424 + "Id": 1424, + "Rank": 1 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Rank": 2, - "Id": 1425 + "Id": 1425, + "Rank": 2 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Rank": 3, - "Id": 1426 + "Id": 1426, + "Rank": 3 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Rank": 4, - "Id": 1427 + "Id": 1427, + "Rank": 4 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Rank": 5, - "Id": 1428 + "Id": 1428, + "Rank": 5 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Rank": 6, - "Id": 1429 + "Id": 1429, + "Rank": 6 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Rank": 7, - "Id": 1430 + "Id": 1430, + "Rank": 7 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification \"HBI\"", - "Rank": 1, - "Id": 1431 + "Id": 1431, + "Rank": 1 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification $null", - "Rank": 2, - "Id": 1432 + "Id": 1432, + "Rank": 2 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows", - "Rank": 3, - "Id": 1433 + "Id": 1433, + "Rank": 3 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows:$false", - "Rank": 4, - "Id": 1434 + "Id": 1434, + "Rank": 4 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Rank": 5, - "Id": 1435 + "Id": 1435, + "Rank": 5 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -NoScriptSite $false", - "Rank": 6, - "Id": 1436 + "Id": 1436, + "Rank": 6 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "Rank": 7, - "Id": 1437 + "Id": 1437, + "Rank": 7 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "Rank": 8, - "Id": 1438 + "Id": 1438, + "Rank": 8 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "Rank": 9, - "Id": 1439 + "Id": 1439, + "Rank": 9 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "Rank": 10, - "Id": 1440 + "Id": 1440, + "Rank": 10 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "Rank": 11, - "Id": 1441 + "Id": 1441, + "Rank": 11 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "Rank": 12, - "Id": 1442 + "Id": 1442, + "Rank": 12 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "Rank": 13, - "Id": 1443 + "Id": 1443, + "Rank": 13 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "Rank": 14, - "Id": 1444 + "Id": 1444, + "Rank": 14 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "Rank": 15, - "Id": 1445 + "Id": 1445, + "Rank": 15 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "Rank": 16, - "Id": 1446 + "Id": 1446, + "Rank": 16 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -CancelVPForExistingLibs", - "Rank": 17, - "Id": 1447 + "Id": 1447, + "Rank": 17 }, { "CommandName": "Set-PnPSiteClassification", "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Rank": 1, - "Id": 1448 + "Id": 1448, + "Rank": 1 }, { "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Open", - "Rank": 1, - "Id": 1449 + "Id": 1449, + "Rank": 1 }, { "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Closed", - "Rank": 2, - "Id": 1450 + "Id": 1450, + "Rank": 2 }, { "CommandName": "Set-PnPSiteDesign", "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Rank": 1, - "Id": 1451 + "Id": 1451, + "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\"", - "Rank": 2, - "Id": 1452 + "Id": 1452, + "Rank": 2 }, { "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "Rank": 1, - "Id": 1453 + "Id": 1453, + "Rank": 1 }, { "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Rank": 2, - "Id": 1454 + "Id": 1454, + "Rank": 2 }, { "CommandName": "Set-PnPSitePolicy", "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 1, - "Id": 1455 + "Id": 1455, + "Rank": 1 }, { "CommandName": "Set-PnPSiteScript", "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1, - "Id": 1456 + "Id": 1456, + "Rank": 1 }, { "CommandName": "Set-PnPSiteScriptPackage", "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1, - "Id": 1457 + "Id": 1457, + "Rank": 1 }, { "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Rank": 1, - "Id": 1458 + "Id": 1458, + "Rank": 1 }, { "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Rank": 2, - "Id": 1459 + "Id": 1459, + "Rank": 2 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 1, - "Id": 1460 + "Id": 1460, + "Rank": 1 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 2, - "Id": 1461 + "Id": 1461, + "Rank": 2 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 3, - "Id": 1462 + "Id": 1462, + "Rank": 3 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 4, - "Id": 1463 + "Id": 1463, + "Rank": 4 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 5, - "Id": 1464 + "Id": 1464, + "Rank": 5 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 6, - "Id": 1465 + "Id": 1465, + "Rank": 6 }, { "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 1, - "Id": 1466 + "Id": 1466, + "Rank": 1 }, { "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 2, - "Id": 1467 + "Id": 1467, + "Rank": 2 }, { "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1, - "Id": 1468 + "Id": 1468, + "Rank": 1 }, { "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 2, - "Id": 1469 + "Id": 1469, + "Rank": 2 }, { "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1, - "Id": 1470 + "Id": 1470, + "Rank": 1 }, { "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 2, - "Id": 1471 + "Id": 1471, + "Rank": 2 }, { "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Rank": 1, - "Id": 1472 + "Id": 1472, + "Rank": 1 }, { "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Rank": 2, - "Id": 1473 + "Id": 1473, + "Rank": 2 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Rank": 1, - "Id": 1474 + "Id": 1474, + "Rank": 1 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Rank": 2, - "Id": 1475 + "Id": 1475, + "Rank": 2 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Rank": 3, - "Id": 1476 + "Id": 1476, + "Rank": 3 }, { "CommandName": "Set-PnPTeamifyPromptHidden", "Command": "Set-PnPTeamifyPromptHidden", - "Rank": 1, - "Id": 1477 + "Id": 1477, + "Rank": 1 }, { "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Rank": 1, - "Id": 1478 + "Id": 1478, + "Rank": 1 }, { "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Rank": 2, - "Id": 1479 + "Id": 1479, + "Rank": 2 }, { "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "Rank": 1, - "Id": 1480 + "Id": 1480, + "Rank": 1 }, { "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Rank": 2, - "Id": 1481 + "Id": 1481, + "Rank": 2 }, { "CommandName": "Set-PnPTeamsTab", "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Rank": 1, - "Id": 1482 + "Id": 1482, + "Rank": 1 }, { "CommandName": "Set-PnPTeamsTag", "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Rank": 1, - "Id": 1483 + "Id": 1483, + "Rank": 1 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Rank": 1, - "Id": 1484 + "Id": 1484, + "Rank": 1 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Rank": 2, - "Id": 1485 + "Id": 1485, + "Rank": 2 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Rank": 3, - "Id": 1486 + "Id": 1486, + "Rank": 3 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Rank": 4, - "Id": 1487 + "Id": 1487, + "Rank": 4 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Rank": 1, - "Id": 1488 + "Id": 1488, + "Rank": 1 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Rank": 2, - "Id": 1489 + "Id": 1489, + "Rank": 2 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Rank": 3, - "Id": 1490 + "Id": 1490, + "Rank": 3 }, { "CommandName": "Set-PnPTeamsTeamPicture", "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Rank": 1, - "Id": 1491 + "Id": 1491, + "Rank": 1 }, { "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Rank": 1, - "Id": 1492 + "Id": 1492, + "Rank": 1 }, { "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Rank": 2, - "Id": 1493 + "Id": 1493, + "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\"", - "Rank": 1, - "Id": 1494 + "Id": 1494, + "Rank": 1 }, { "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Rank": 2, - "Id": 1495 + "Id": 1495, + "Rank": 2 }, { "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Rank": 3, - "Id": 1496 + "Id": 1496, + "Rank": 3 }, { "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Rank": 4, - "Id": 1497 + "Id": 1497, + "Rank": 4 }, { "CommandName": "Set-PnPTenantAppCatalogUrl", "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Rank": 1, - "Id": 1498 + "Id": 1498, + "Rank": 1 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Rank": 1, - "Id": 1499 + "Id": 1499, + "Rank": 1 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Rank": 2, - "Id": 1500 + "Id": 1500, + "Rank": 2 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Rank": 3, - "Id": 1501 + "Id": 1501, + "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\"", - "Rank": 1, - "Id": 1502 + "Id": 1502, + "Rank": 1 }, { "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Rank": 2, - "Id": 1503 + "Id": 1503, + "Rank": 2 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Rank": 1, - "Id": 1504 + "Id": 1504, + "Rank": 1 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Rank": 2, - "Id": 1505 + "Id": 1505, + "Rank": 2 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 3, - "Id": 1506 + "Id": 1506, + "Rank": 3 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 4, - "Id": 1507 + "Id": 1507, + "Rank": 4 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Rank": 5, - "Id": 1508 + "Id": 1508, + "Rank": 5 }, { "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Rank": 1, - "Id": 1509 + "Id": 1509, + "Rank": 1 }, { "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Rank": 2, - "Id": 1510 + "Id": 1510, + "Rank": 2 }, { "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Rank": 1, - "Id": 1511 + "Id": 1511, + "Rank": 1 }, { "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2, - "Id": 1512 + "Id": 1512, + "Rank": 2 }, { "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 3, - "Id": 1513 + "Id": 1513, + "Rank": 3 }, { "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "Rank": 4, - "Id": 1514 + "Id": 1514, + "Rank": 4 }, { "CommandName": "Set-PnPTermGroup", "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Rank": 1, - "Id": 1515 + "Id": 1515, + "Rank": 1 }, { "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Rank": 1, - "Id": 1516 + "Id": 1516, + "Rank": 1 }, { "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Rank": 2, - "Id": 1517 + "Id": 1517, + "Rank": 2 }, { "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Rank": 3, - "Id": 1518 + "Id": 1518, + "Rank": 3 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme", - "Rank": 1, - "Id": 1519 + "Id": 1519, + "Rank": 1 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Rank": 2, - "Id": 1520 + "Id": 1520, + "Rank": 2 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Rank": 3, - "Id": 1521 + "Id": 1521, + "Rank": 3 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Rank": 4, - "Id": 1522 + "Id": 1522, + "Rank": 4 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Rank": 1, - "Id": 1523 + "Id": 1523, + "Rank": 1 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Rank": 2, - "Id": 1524 + "Id": 1524, + "Rank": 2 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Rank": 3, - "Id": 1525 + "Id": 1525, + "Rank": 3 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -Off", - "Rank": 4, - "Id": 1526 + "Id": 1526, + "Rank": 4 }, { "CommandName": "Set-PnPUserOneDriveQuota", "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Rank": 1, - "Id": 1527 + "Id": 1527, + "Rank": 1 }, { "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Rank": 1, - "Id": 1528 + "Id": 1528, + "Rank": 1 }, { "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Rank": 2, - "Id": 1529 + "Id": 1529, + "Rank": 2 }, { "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "Rank": 1, - "Id": 1530 + "Id": 1530, + "Rank": 1 }, { "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Rank": 2, - "Id": 1531 + "Id": 1531, + "Rank": 2 }, { "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "Rank": 3, - "Id": 1532 + "Id": 1532, + "Rank": 3 }, { "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Rank": 4, - "Id": 1533 + "Id": 1533, + "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", - "Rank": 1, - "Id": 1534 + "Id": 1534, + "Rank": 1 }, { "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Rank": 2, - "Id": 1535 + "Id": 1535, + "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", - "Rank": 3, - "Id": 1536 + "Id": 1536, + "Rank": 3 }, { "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Rank": 4, - "Id": 1537 + "Id": 1537, + "Rank": 4 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Rank": 1, - "Id": 1538 + "Id": 1538, + "Rank": 1 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Rank": 2, - "Id": 1539 + "Id": 1539, + "Rank": 2 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Rank": 3, - "Id": 1540 + "Id": 1540, + "Rank": 3 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -NoCrawl:$true", - "Rank": 4, - "Id": 1541 + "Id": 1541, + "Rank": 4 }, { "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Rank": 1, - "Id": 1542 + "Id": 1542, + "Rank": 1 }, { "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Rank": 2, - "Id": 1543 + "Id": 1543, + "Rank": 2 }, { "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Rank": 3, - "Id": 1544 + "Id": 1544, + "Rank": 3 }, { "CommandName": "Set-PnPWebhookSubscription", "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1, - "Id": 1545 + "Id": 1545, + "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\"", - "Rank": 2, - "Id": 1546 + "Id": 1546, + "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\"", - "Rank": 1, - "Id": 1547 + "Id": 1547, + "Rank": 1 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 1, - "Id": 1548 + "Id": 1548, + "Rank": 1 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Rank": 2, - "Id": 1549 + "Id": 1549, + "Rank": 2 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 3, - "Id": 1550 + "Id": 1550, + "Rank": 3 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Rank": 4, - "Id": 1551 + "Id": 1551, + "Rank": 4 }, { "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme MyTheme", - "Rank": 1, - "Id": 1552 + "Id": 1552, + "Rank": 1 }, { "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Rank": 2, - "Id": 1553 + "Id": 1553, + "Rank": 2 }, { "CommandName": "Set-PnPWikiPageContent", "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Rank": 1, - "Id": 1554 + "Id": 1554, + "Rank": 1 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Rank": 1, - "Id": 1555 + "Id": 1555, + "Rank": 1 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Rank": 2, - "Id": 1556 + "Id": 1556, + "Rank": 2 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Rank": 3, - "Id": 1557 + "Id": 1557, + "Rank": 3 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Rank": 4, - "Id": 1558 + "Id": 1558, + "Rank": 4 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Rank": 5, - "Id": 1559 + "Id": 1559, + "Rank": 5 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", - "Rank": 6, - "Id": 1560 + "Id": 1560, + "Rank": 6 }, { "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Rank": 1, - "Id": 1561 + "Id": 1561, + "Rank": 1 }, { "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Rank": 2, - "Id": 1562 + "Id": 1562, + "Rank": 2 }, { "CommandName": "Sync-PnPAppToTeams", "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 1563 + "Id": 1563, + "Rank": 1 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Rank": 1, - "Id": 1564 + "Id": 1564, + "Rank": 1 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Rank": 2, - "Id": 1565 + "Id": 1565, + "Rank": 2 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Rank": 3, - "Id": 1566 + "Id": 1566, + "Rank": 3 }, { "CommandName": "Test-PnPListItemIsRecord", "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Rank": 1, - "Id": 1567 + "Id": 1567, + "Rank": 1 }, { "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Rank": 1, - "Id": 1568 + "Id": 1568, + "Rank": 1 }, { "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, - "Id": 1569 + "Id": 1569, + "Rank": 1 }, { "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2, - "Id": 1570 + "Id": 1570, + "Rank": 2 }, { "CommandName": "Test-PnPTenantTemplate", "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Rank": 1, - "Id": 1571 + "Id": 1571, + "Rank": 1 }, { "CommandName": "Undo-PnPFileCheckedOut", "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Rank": 1, - "Id": 1572 + "Id": 1572, + "Rank": 1 }, { "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 1573 + "Id": 1573, + "Rank": 1 }, { "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "Id": 1574 + "Id": 1574, + "Rank": 2 }, { "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 1575 + "Id": 1575, + "Rank": 1 }, { "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "Id": 1576 + "Id": 1576, + "Rank": 2 }, { "CommandName": "Unpublish-PnPContentType", "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Rank": 1, - "Id": 1577 + "Id": 1577, + "Rank": 1 }, { "CommandName": "Unpublish-PnPSyntexModel", "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, - "Id": 1578 + "Id": 1578, + "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", - "Rank": 2, - "Id": 1579 + "Id": 1579, + "Rank": 2 }, { "CommandName": "Unregister-PnPHubSite", "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1, - "Id": 1580 + "Id": 1580, + "Rank": 1 }, { "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 1581 + "Id": 1581, + "Rank": 1 }, { "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "Id": 1582 + "Id": 1582, + "Rank": 2 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 1, - "Id": 1583 + "Id": 1583, + "Rank": 1 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Rank": 2, - "Id": 1584 + "Id": 1584, + "Rank": 2 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 3, - "Id": 1585 + "Id": 1585, + "Rank": 3 }, { "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Rank": 1, - "Id": 1586 + "Id": 1586, + "Rank": 1 }, { "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2, - "Id": 1587 + "Id": 1587, + "Rank": 2 }, { "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "Rank": 3, - "Id": 1588 + "Id": 1588, + "Rank": 3 }, { "CommandName": "Update-PnPTeamsApp", "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Rank": 1, - "Id": 1589 + "Id": 1589, + "Rank": 1 }, { "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1, - "Id": 1590 + "Id": 1590, + "Rank": 1 }, { "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2, - "Id": 1591 + "Id": 1591, + "Rank": 2 }, { "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Rank": 3, - "Id": 1592 + "Id": 1592, + "Rank": 3 }, { "CommandName": "Update-PnPUserType", "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Rank": 1, - "Id": 1593 + "Id": 1593, + "Rank": 1 } ] diff --git a/version.txt b/version.txt index b6bf6400d..39f81b94b 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.107 \ No newline at end of file +2.2.108 \ No newline at end of file From 902661b164ed95941571d79fe893545d95a6512c Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Tue, 24 Oct 2023 14:37:40 +0300 Subject: [PATCH 108/146] Fix #3404 - Update main.css --- pages/templates/material/styles/main.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/templates/material/styles/main.css b/pages/templates/material/styles/main.css index 1b35ba263..2be5f7eb6 100644 --- a/pages/templates/material/styles/main.css +++ b/pages/templates/material/styles/main.css @@ -59,7 +59,7 @@ body { button, a { - color: var(--highlight-dark); + color: var(--highlight-light); cursor: pointer; } @@ -67,17 +67,17 @@ button:hover, button:focus, a:hover, a:focus { - color: var(--highlight-light); + color: var(--highlight-dark); text-decoration: none; } .toc .nav > li.active > a { - color: var(--highlight-dark); + color: var(--highlight-light); } .toc .nav > li.active > a:hover, .toc .nav > li.active > a:focus { - color: var(--highlight-light); + color: var(--highlight-dark); } .pagination > .active > a { From a1fab008ec449325f698267cbb5d86843aca246c Mon Sep 17 00:00:00 2001 From: reshmee011 Date: Sun, 22 Oct 2023 21:11:52 +0100 Subject: [PATCH 109/146] Add AllowExternalSenders, AutoSubscribeNewMembers and MailNickname --- .../SetMicrosoft365Group.cs | 26 +++++++++++++++++++ src/Commands/Model/Microsoft365Group.cs | 2 ++ 2 files changed, 28 insertions(+) diff --git a/src/Commands/Microsoft365Groups/SetMicrosoft365Group.cs b/src/Commands/Microsoft365Groups/SetMicrosoft365Group.cs index a7ef08eef..fa3f0cce6 100644 --- a/src/Commands/Microsoft365Groups/SetMicrosoft365Group.cs +++ b/src/Commands/Microsoft365Groups/SetMicrosoft365Group.cs @@ -51,6 +51,15 @@ public class SetMicrosoft365Group : PnPGraphCmdlet [Parameter(Mandatory = false)] public Guid[] SensitivityLabels; + [Parameter(Mandatory = false)] + public bool? AllowExternalSenders; + + [Parameter(Mandatory = false)] + public bool? AutoSubscribeNewMembers; + + [Parameter(Mandatory = false)] + public string mailNickname; + protected override void ExecuteCmdlet() { var group = Identity.GetGroup(Connection, AccessToken, false, false); @@ -74,6 +83,23 @@ protected override void ExecuteCmdlet() group.Visibility = IsPrivate ? "Private" : "Public"; changed = true; } + if (ParameterSpecified(nameof(AllowExternalSenders))) + { + group.AllowExternalSenders = AllowExternalSenders; + changed = true; + } + if (ParameterSpecified(nameof(AutoSubscribeNewMembers))) + { + group.AutoSubscribeNewMembers = AutoSubscribeNewMembers; + changed = true; + } + if (ParameterSpecified(nameof(mailNickname))) + { + // Ensures Maximum length is 64 characters. This property can contain only characters in the ASCII character set 0 - 127 except the following: @ () \ [] " ; : . <> , SPACE. + + group.MailNickname = mailNickname; + changed = true; + } if (changed) { group = Microsoft365GroupsUtility.UpdateAsync(Connection, AccessToken, group).GetAwaiter().GetResult(); diff --git a/src/Commands/Model/Microsoft365Group.cs b/src/Commands/Model/Microsoft365Group.cs index 189e69396..509aea363 100644 --- a/src/Commands/Model/Microsoft365Group.cs +++ b/src/Commands/Model/Microsoft365Group.cs @@ -52,6 +52,8 @@ public string GroupId public string Visibility { get; set; } public string SiteUrl { get; set; } public string[] GroupTypes { get; set; } + public bool? AllowExternalSenders { get; set; } + public bool? AutoSubscribeNewMembers { get; set; } public IEnumerable Owners { get; set; } public List AssignedLabels { get; set; } From 82729a65802bee0081a029122a61c01d3c4846b1 Mon Sep 17 00:00:00 2001 From: Reshmee Auckloo Date: Sun, 22 Oct 2023 20:23:13 +0000 Subject: [PATCH 110/146] Add property mailNickname --- src/Commands/Microsoft365Groups/SetMicrosoft365Group.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Commands/Microsoft365Groups/SetMicrosoft365Group.cs b/src/Commands/Microsoft365Groups/SetMicrosoft365Group.cs index fa3f0cce6..28af05f3b 100644 --- a/src/Commands/Microsoft365Groups/SetMicrosoft365Group.cs +++ b/src/Commands/Microsoft365Groups/SetMicrosoft365Group.cs @@ -95,8 +95,13 @@ protected override void ExecuteCmdlet() } if (ParameterSpecified(nameof(mailNickname))) { - // Ensures Maximum length is 64 characters. This property can contain only characters in the ASCII character set 0 - 127 except the following: @ () \ [] " ; : . <> , SPACE. - + //Ensures mailNickname contain only characters in the ASCII character set 0 - 127 except the following: @ () \ [] " ; : . <> , SPACE. + mailNickname = mailNickname.Replace("@", "").Replace("(", "").Replace(")", "").Replace("\\", "").Replace("[", "").Replace("]", "").Replace("\"", "").Replace(";", "").Replace(":", "").Replace(".", "").Replace("<", "").Replace(">", "").Replace(",", "").Replace(" ", ""); + // Ensures Maximum length is 64 characters. + if (mailNickname.Length > 64) + { + mailNickname = mailNickname.Substring(0, 64); + } group.MailNickname = mailNickname; changed = true; } From 81ba5f540d6dfa273a2008cba73bbb1cf1bde822 Mon Sep 17 00:00:00 2001 From: reshmee011 Date: Sun, 22 Oct 2023 22:25:21 +0100 Subject: [PATCH 111/146] Add mailnickname --- .../SetMicrosoft365Group.cs | 28 ++++--------------- src/Commands/Model/Microsoft365Group.cs | 2 -- .../Utilities/Microsoft365GroupsUtility.cs | 2 +- 3 files changed, 7 insertions(+), 25 deletions(-) diff --git a/src/Commands/Microsoft365Groups/SetMicrosoft365Group.cs b/src/Commands/Microsoft365Groups/SetMicrosoft365Group.cs index 28af05f3b..64419ee2a 100644 --- a/src/Commands/Microsoft365Groups/SetMicrosoft365Group.cs +++ b/src/Commands/Microsoft365Groups/SetMicrosoft365Group.cs @@ -52,13 +52,7 @@ public class SetMicrosoft365Group : PnPGraphCmdlet public Guid[] SensitivityLabels; [Parameter(Mandatory = false)] - public bool? AllowExternalSenders; - - [Parameter(Mandatory = false)] - public bool? AutoSubscribeNewMembers; - - [Parameter(Mandatory = false)] - public string mailNickname; + public string MailNickname; protected override void ExecuteCmdlet() { @@ -83,26 +77,16 @@ protected override void ExecuteCmdlet() group.Visibility = IsPrivate ? "Private" : "Public"; changed = true; } - if (ParameterSpecified(nameof(AllowExternalSenders))) - { - group.AllowExternalSenders = AllowExternalSenders; - changed = true; - } - if (ParameterSpecified(nameof(AutoSubscribeNewMembers))) - { - group.AutoSubscribeNewMembers = AutoSubscribeNewMembers; - changed = true; - } - if (ParameterSpecified(nameof(mailNickname))) + if (ParameterSpecified(nameof(MailNickname))) { //Ensures mailNickname contain only characters in the ASCII character set 0 - 127 except the following: @ () \ [] " ; : . <> , SPACE. - mailNickname = mailNickname.Replace("@", "").Replace("(", "").Replace(")", "").Replace("\\", "").Replace("[", "").Replace("]", "").Replace("\"", "").Replace(";", "").Replace(":", "").Replace(".", "").Replace("<", "").Replace(">", "").Replace(",", "").Replace(" ", ""); + MailNickname = MailNickname.Replace("@", "").Replace("(", "").Replace(")", "").Replace("\\", "").Replace("[", "").Replace("]", "").Replace("\"", "").Replace(";", "").Replace(":", "").Replace(".", "").Replace("<", "").Replace(">", "").Replace(",", "").Replace(" ", ""); // Ensures Maximum length is 64 characters. - if (mailNickname.Length > 64) + if (MailNickname.Length > 64) { - mailNickname = mailNickname.Substring(0, 64); + MailNickname = MailNickname.Substring(0, 64); } - group.MailNickname = mailNickname; + group.MailNickname = MailNickname; changed = true; } if (changed) diff --git a/src/Commands/Model/Microsoft365Group.cs b/src/Commands/Model/Microsoft365Group.cs index 509aea363..189e69396 100644 --- a/src/Commands/Model/Microsoft365Group.cs +++ b/src/Commands/Model/Microsoft365Group.cs @@ -52,8 +52,6 @@ public string GroupId public string Visibility { get; set; } public string SiteUrl { get; set; } public string[] GroupTypes { get; set; } - public bool? AllowExternalSenders { get; set; } - public bool? AutoSubscribeNewMembers { get; set; } public IEnumerable Owners { get; set; } public List AssignedLabels { get; set; } diff --git a/src/Commands/Utilities/Microsoft365GroupsUtility.cs b/src/Commands/Utilities/Microsoft365GroupsUtility.cs index fb6cbee36..972b8ff2c 100644 --- a/src/Commands/Utilities/Microsoft365GroupsUtility.cs +++ b/src/Commands/Utilities/Microsoft365GroupsUtility.cs @@ -610,7 +610,7 @@ internal static async Task UpdateAsync(PnPConnection connecti { return await GraphHelper.PatchAsync(connection, accessToken, $"v1.0/groups/{group.Id}", group); } - + internal static async Task SetVisibilityAsync(PnPConnection connection, string accessToken, Guid groupId, bool? hideFromAddressLists, bool? hideFromOutlookClients) { var patchData = new From f15f2f939dffb8917aec3ccf0e5c0f9c81d24309 Mon Sep 17 00:00:00 2001 From: reshmee011 Date: Sun, 22 Oct 2023 22:46:23 +0100 Subject: [PATCH 112/146] Update documentation --- documentation/Set-PnPMicrosoft365Group.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/documentation/Set-PnPMicrosoft365Group.md b/documentation/Set-PnPMicrosoft365Group.md index ffe38fdd1..2fcb9e085 100644 --- a/documentation/Set-PnPMicrosoft365Group.md +++ b/documentation/Set-PnPMicrosoft365Group.md @@ -22,7 +22,7 @@ Sets Microsoft 365 Group properties ```powershell Set-PnPMicrosoft365Group -Identity [-DisplayName ] [-Description ] [-Owners ] [-Members ] [-IsPrivate] [-LogoPath ] [-CreateTeam] - [-HideFromAddressLists ] [-HideFromOutlookClients ] [-SensitivityLabels ] + [-HideFromAddressLists ] [-HideFromOutlookClients ] [-mailNickname ] [-SensitivityLabels ] ``` @@ -160,6 +160,20 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -MailNickname +The mail alias for the group, unique for Microsoft 365 groups in the organization. Maximum length is 64 characters. This property can contain only characters in the ASCII character set 0 - 127 except the following: @ () \ [] " ; : . <> , SPACE + +```yaml +Type: String +Parameter Sets: (All) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Identity The Identity of the Microsoft 365 Group From 7d91ba148c28f0cc6facba0dec1d1cbee53d2474 Mon Sep 17 00:00:00 2001 From: reshmee011 Date: Sun, 22 Oct 2023 22:55:40 +0100 Subject: [PATCH 113/146] correct case of mailnickname --- documentation/Set-PnPMicrosoft365Group.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/Set-PnPMicrosoft365Group.md b/documentation/Set-PnPMicrosoft365Group.md index 2fcb9e085..5d442fd76 100644 --- a/documentation/Set-PnPMicrosoft365Group.md +++ b/documentation/Set-PnPMicrosoft365Group.md @@ -22,7 +22,7 @@ Sets Microsoft 365 Group properties ```powershell Set-PnPMicrosoft365Group -Identity [-DisplayName ] [-Description ] [-Owners ] [-Members ] [-IsPrivate] [-LogoPath ] [-CreateTeam] - [-HideFromAddressLists ] [-HideFromOutlookClients ] [-mailNickname ] [-SensitivityLabels ] + [-HideFromAddressLists ] [-HideFromOutlookClients ] [-MailNickname ] [-SensitivityLabels ] ``` From e1b4aac638abe2fc81065cecd88bb3c913f9f995 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Wed, 25 Oct 2023 02:37:15 +0000 Subject: [PATCH 114/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6372 ++++++++--------- version.txt | 2 +- 3 files changed, 3188 insertions(+), 3188 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index bd1284328..93d1c2138 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -96abd1d23c8386e471b10afa5cd2f107bffcc9ec \ No newline at end of file +222cae088508a51b99e819d1516f005e064a9a30 \ 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 06824ec6b..a6ca3cbaf 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -2,9559 +2,9559 @@ { "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -List \"Demo List\"", - "Id": 1, - "Rank": 1 + "Rank": 1, + "Id": 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, - "Rank": 2 + "Rank": 2, + "Id": 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, - "Rank": 3 + "Rank": 3, + "Id": 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, - "Rank": 4 + "Rank": 4, + "Id": 4 }, { "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg", - "Id": 5, - "Rank": 1 + "Rank": 1, + "Id": 5 }, { "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Id": 6, - "Rank": 2 + "Rank": 2, + "Id": 6 }, { "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "Id": 7, - "Rank": 3 + "Rank": 3, + "Id": 7 }, { "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "Id": 8, - "Rank": 4 + "Rank": 4, + "Id": 8 }, { "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, - "Rank": 1 + "Rank": 1, + "Id": 9 }, { "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "Id": 10, - "Rank": 1 + "Rank": 1, + "Id": 10 }, { "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Id": 11, - "Rank": 2 + "Rank": 2, + "Id": 11 }, { "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 12, - "Rank": 1 + "Rank": 1, + "Id": 12 }, { "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Id": 13, - "Rank": 2 + "Rank": 2, + "Id": 13 }, { "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Id": 14, - "Rank": 3 + "Rank": 3, + "Id": 14 }, { "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 15, - "Rank": 1 + "Rank": 1, + "Id": 15 }, { "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Id": 16, - "Rank": 2 + "Rank": 2, + "Id": 16 }, { "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Id": 17, - "Rank": 3 + "Rank": 3, + "Id": 17 }, { "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "Id": 18, - "Rank": 1 + "Rank": 1, + "Id": 18 }, { "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", - "Id": 19, - "Rank": 2 + "Rank": 2, + "Id": 19 }, { "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "Id": 20, - "Rank": 1 + "Rank": 1, + "Id": 20 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 21 }, { "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "Id": 22, - "Rank": 3 + "Rank": 3, + "Id": 22 }, { "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\"", - "Id": 23, - "Rank": 4 + "Rank": 4, + "Id": 23 }, { "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "Id": 24, - "Rank": 5 + "Rank": 5, + "Id": 24 }, { "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "Id": 25, - "Rank": 1 + "Rank": 1, + "Id": 25 }, { "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "Id": 26, - "Rank": 2 + "Rank": 2, + "Id": 26 }, { "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Id": 27, - "Rank": 1 + "Rank": 1, + "Id": 27 }, { "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Id": 28, - "Rank": 2 + "Rank": 2, + "Id": 28 }, { "CommandName": "Add-PnPContentTypeToList", "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "Id": 29, - "Rank": 1 + "Rank": 1, + "Id": 29 }, { "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, - "Rank": 1 + "Rank": 1, + "Id": 30 }, { "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "Id": 31, - "Rank": 1 + "Rank": 1, + "Id": 31 }, { "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "Id": 32, - "Rank": 2 + "Rank": 2, + "Id": 32 }, { "CommandName": "Add-PnPDocumentSet", "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "Id": 33, - "Rank": 1 + "Rank": 1, + "Id": 33 }, { "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", - "Id": 34, - "Rank": 1 + "Rank": 1, + "Id": 34 }, { "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "Id": 35, - "Rank": 2 + "Rank": 2, + "Id": 35 }, { "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", - "Id": 36, - "Rank": 3 + "Rank": 3, + "Id": 36 }, { "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", - "Id": 37, - "Rank": 4 + "Rank": 4, + "Id": 37 }, { "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "Id": 38, - "Rank": 1 + "Rank": 1, + "Id": 38 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 39 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 40 }, { "CommandName": "Add-PnPField", "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "Id": 41, - "Rank": 4 + "Rank": 4, + "Id": 41 }, { "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "Id": 42, - "Rank": 5 + "Rank": 5, + "Id": 42 }, { "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "Id": 43, - "Rank": 6 + "Rank": 6, + "Id": 43 }, { "CommandName": "Add-PnPFieldToContentType", "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Id": 44, - "Rank": 1 + "Rank": 1, + "Id": 44 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "Id": 45, - "Rank": 1 + "Rank": 1, + "Id": 45 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "Id": 46, - "Rank": 2 + "Rank": 2, + "Id": 46 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "Id": 47, - "Rank": 3 + "Rank": 3, + "Id": 47 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "Id": 48, - "Rank": 4 + "Rank": 4, + "Id": 48 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "Id": 49, - "Rank": 5 + "Rank": 5, + "Id": 49 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "Id": 50, - "Rank": 6 + "Rank": 6, + "Id": 50 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "Id": 51, - "Rank": 7 + "Rank": 7, + "Id": 51 }, { "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "Id": 52, - "Rank": 8 + "Rank": 8, + "Id": 52 }, { "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 53, - "Rank": 1 + "Rank": 1, + "Id": 53 }, { "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "Id": 54, - "Rank": 2 + "Rank": 2, + "Id": 54 }, { "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", - "Id": 55, - "Rank": 3 + "Rank": 3, + "Id": 55 }, { "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 56, - "Rank": 1 + "Rank": 1, + "Id": 56 }, { "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "Id": 57, - "Rank": 2 + "Rank": 2, + "Id": 57 }, { "CommandName": "Add-PnPFileSharingInvite", "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Id": 58, - "Rank": 1 + "Rank": 1, + "Id": 58 }, { "CommandName": "Add-PnPFileSharingInvite", "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "Id": 59, - "Rank": 2 + "Rank": 2, + "Id": 59 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 60 }, { "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "Id": 61, - "Rank": 1 + "Rank": 1, + "Id": 61 }, { "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "Id": 62, - "Rank": 2 + "Rank": 2, + "Id": 62 }, { "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "Id": 63, - "Rank": 3 + "Rank": 3, + "Id": 63 }, { "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "Id": 64, - "Rank": 4 + "Rank": 4, + "Id": 64 }, { "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "Id": 65, - "Rank": 5 + "Rank": 5, + "Id": 65 }, { "CommandName": "Add-PnPFileUserSharingLink", "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 66, - "Rank": 1 + "Rank": 1, + "Id": 66 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 67 }, { "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, - "Rank": 1 + "Rank": 1, + "Id": 68 }, { "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, - "Rank": 2 + "Rank": 2, + "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 CanViewWithShare", - "Id": 70, - "Rank": 3 + "Rank": 3, + "Id": 70 }, { "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, - "Rank": 4 + "Rank": 4, + "Id": 71 }, { "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Id": 72, - "Rank": 1 + "Rank": 1, + "Id": 72 }, { "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Id": 73, - "Rank": 2 + "Rank": 2, + "Id": 73 }, { "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Id": 74, - "Rank": 3 + "Rank": 3, + "Id": 74 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 75, - "Rank": 1 + "Rank": 1, + "Id": 75 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "Id": 76, - "Rank": 2 + "Rank": 2, + "Id": 76 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", - "Id": 77, - "Rank": 3 + "Rank": 3, + "Id": 77 }, { "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 78, - "Rank": 1 + "Rank": 1, + "Id": 78 }, { "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Id": 79, - "Rank": 2 + "Rank": 2, + "Id": 79 }, { "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Id": 80, - "Rank": 1 + "Rank": 1, + "Id": 80 }, { "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "Id": 81, - "Rank": 2 + "Rank": 2, + "Id": 81 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 82 }, { "CommandName": "Add-PnPFolderUserSharingLink", "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 83, - "Rank": 1 + "Rank": 1, + "Id": 83 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 84 }, { "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Id": 85, - "Rank": 1 + "Rank": 1, + "Id": 85 }, { "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Id": 86, - "Rank": 2 + "Rank": 2, + "Id": 86 }, { "CommandName": "Add-PnPHtmlPublishingPageLayout", "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Id": 87, - "Rank": 1 + "Rank": 1, + "Id": 87 }, { "CommandName": "Add-PnPHubSiteAssociation", "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "Id": 88, - "Rank": 1 + "Rank": 1, + "Id": 88 }, { "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "Id": 89, - "Rank": 1 + "Rank": 1, + "Id": 89 }, { "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "Id": 90, - "Rank": 2 + "Rank": 2, + "Id": 90 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 91 }, { "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "Id": 92, - "Rank": 1 + "Rank": 1, + "Id": 92 }, { "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Id": 93, - "Rank": 2 + "Rank": 2, + "Id": 93 }, { "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "Id": 94, - "Rank": 1 + "Rank": 1, + "Id": 94 }, { "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "Id": 95, - "Rank": 2 + "Rank": 2, + "Id": 95 }, { "CommandName": "Add-PnPListDesign", "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "Id": 96, - "Rank": 1 + "Rank": 1, + "Id": 96 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 97 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Id": 98, - "Rank": 1 + "Rank": 1, + "Id": 98 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Id": 99, - "Rank": 2 + "Rank": 2, + "Id": 99 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Id": 100, - "Rank": 3 + "Rank": 3, + "Id": 100 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 101, - "Rank": 1 + "Rank": 1, + "Id": 101 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 102, - "Rank": 2 + "Rank": 2, + "Id": 102 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "Id": 103, - "Rank": 3 + "Rank": 3, + "Id": 103 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "Id": 104, - "Rank": 4 + "Rank": 4, + "Id": 104 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "Id": 105, - "Rank": 5 + "Rank": 5, + "Id": 105 }, { "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "Id": 106, - "Rank": 1 + "Rank": 1, + "Id": 106 }, { "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "Id": 107, - "Rank": 2 + "Rank": 2, + "Id": 107 }, { "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "Id": 108, - "Rank": 3 + "Rank": 3, + "Id": 108 }, { "CommandName": "Add-PnPListItemComment", "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "Id": 109, - "Rank": 1 + "Rank": 1, + "Id": 109 }, { "CommandName": "Add-PnPMasterPage", "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "Id": 110, - "Rank": 1 + "Rank": 1, + "Id": 110 }, { "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 111, - "Rank": 1 + "Rank": 1, + "Id": 111 }, { "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Id": 112, - "Rank": 2 + "Rank": 2, + "Id": 112 }, { "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 113, - "Rank": 1 + "Rank": 1, + "Id": 113 }, { "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Id": 114, - "Rank": 2 + "Rank": 2, + "Id": 114 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "Id": 115, - "Rank": 1 + "Rank": 1, + "Id": 115 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "Id": 116, - "Rank": 2 + "Rank": 2, + "Id": 116 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Id": 117, - "Rank": 3 + "Rank": 3, + "Id": 117 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "Id": 118, - "Rank": 1 + "Rank": 1, + "Id": 118 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", - "Id": 119, - "Rank": 2 + "Rank": 2, + "Id": 119 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "Id": 120, - "Rank": 3 + "Rank": 3, + "Id": 120 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "Id": 121, - "Rank": 4 + "Rank": 4, + "Id": 121 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "Id": 122, - "Rank": 5 + "Rank": 5, + "Id": 122 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Id": 123, - "Rank": 6 + "Rank": 6, + "Id": 123 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Id": 124, - "Rank": 7 + "Rank": 7, + "Id": 124 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "Id": 125, - "Rank": 8 + "Rank": 8, + "Id": 125 }, { "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "Id": 126, - "Rank": 1 + "Rank": 1, + "Id": 126 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 127 }, { "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "Id": 128, - "Rank": 3 + "Rank": 3, + "Id": 128 }, { "CommandName": "Add-PnPOrgNewsSite", "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "Id": 129, - "Rank": 1 + "Rank": 1, + "Id": 129 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\"", - "Id": 130, - "Rank": 1 + "Rank": 1, + "Id": 130 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Id": 131, - "Rank": 2 + "Rank": 2, + "Id": 131 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Id": 132, - "Rank": 3 + "Rank": 3, + "Id": 132 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Id": 133, - "Rank": 4 + "Rank": 4, + "Id": 133 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Id": 134, - "Rank": 5 + "Rank": 5, + "Id": 134 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Id": 135, - "Rank": 6 + "Rank": 6, + "Id": 135 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Id": 136, - "Rank": 7 + "Rank": 7, + "Id": 136 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Id": 137, - "Rank": 8 + "Rank": 8, + "Id": 137 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Id": 138, - "Rank": 9 + "Rank": 9, + "Id": 138 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Id": 139, - "Rank": 10 + "Rank": 10, + "Id": 139 }, { "CommandName": "Add-PnPPageImageWebPart", "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Id": 140, - "Rank": 1 + "Rank": 1, + "Id": 140 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 141 }, { "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Id": 142, - "Rank": 1 + "Rank": 1, + "Id": 142 }, { "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Id": 143, - "Rank": 2 + "Rank": 2, + "Id": 143 }, { "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Id": 144, - "Rank": 1 + "Rank": 1, + "Id": 144 }, { "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "Id": 145, - "Rank": 2 + "Rank": 2, + "Id": 145 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 146 }, { "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "Id": 147, - "Rank": 1 + "Rank": 1, + "Id": 147 }, { "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Id": 148, - "Rank": 2 + "Rank": 2, + "Id": 148 }, { "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Id": 149, - "Rank": 3 + "Rank": 3, + "Id": 149 }, { "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "Id": 150, - "Rank": 1 + "Rank": 1, + "Id": 150 }, { "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Id": 151, - "Rank": 2 + "Rank": 2, + "Id": 151 }, { "CommandName": "Add-PnPPlannerRoster", "Command": "Add-PnPPlannerRoster", - "Id": 152, - "Rank": 1 + "Rank": 1, + "Id": 152 }, { "CommandName": "Add-PnPPlannerRosterMember", "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 153, - "Rank": 1 + "Rank": 1, + "Id": 153 }, { "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Id": 154, - "Rank": 1 + "Rank": 1, + "Id": 154 }, { "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Id": 155, - "Rank": 2 + "Rank": 2, + "Id": 155 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 156 }, { "CommandName": "Add-PnPPublishingImageRendition", "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Id": 157, - "Rank": 1 + "Rank": 1, + "Id": 157 }, { "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Id": 158, - "Rank": 1 + "Rank": 1, + "Id": 158 }, { "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "Id": 159, - "Rank": 2 + "Rank": 2, + "Id": 159 }, { "CommandName": "Add-PnPPublishingPageLayout", "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Id": 160, - "Rank": 1 + "Rank": 1, + "Id": 160 }, { "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "Id": 161, - "Rank": 1 + "Rank": 1, + "Id": 161 }, { "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Id": 162, - "Rank": 2 + "Rank": 2, + "Id": 162 }, { "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Id": 163, - "Rank": 3 + "Rank": 3, + "Id": 163 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 164, - "Rank": 1 + "Rank": 1, + "Id": 164 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 165, - "Rank": 2 + "Rank": 2, + "Id": 165 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Id": 166, - "Rank": 3 + "Rank": 3, + "Id": 166 }, { "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog", - "Id": 167, - "Rank": 1 + "Rank": 1, + "Id": 167 }, { "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Id": 168, - "Rank": 2 + "Rank": 2, + "Id": 168 }, { "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, - "Rank": 1 + "Rank": 1, + "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 -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png", - "Id": 170, - "Rank": 2 + "Rank": 2, + "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/my images/logo.png\"", - "Id": 171, - "Rank": 3 + "Rank": 3, + "Id": 171 }, { "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "Id": 172, - "Rank": 1 + "Rank": 1, + "Id": 172 }, { "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Id": 173, - "Rank": 2 + "Rank": 2, + "Id": 173 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 174 }, { "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Id": 175, - "Rank": 1 + "Rank": 1, + "Id": 175 }, { "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Id": 176, - "Rank": 2 + "Rank": 2, + "Id": 176 }, { "CommandName": "Add-PnPSiteScript", "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "Id": 177, - "Rank": 1 + "Rank": 1, + "Id": 177 }, { "CommandName": "Add-PnPSiteScriptPackage", "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "Id": 178, - "Rank": 1 + "Rank": 1, + "Id": 178 }, { "CommandName": "Add-PnPSiteTemplate", "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "Id": 179, - "Rank": 1 + "Rank": 1, + "Id": 179 }, { "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Id": 180, - "Rank": 1 + "Rank": 1, + "Id": 180 }, { "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, - "Rank": 2 + "Rank": 2, + "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)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"", - "Id": 182, - "Rank": 3 + "Rank": 3, + "Id": 182 }, { "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Id": 183, - "Rank": 1 + "Rank": 1, + "Id": 183 }, { "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "Id": 184, - "Rank": 2 + "Rank": 2, + "Id": 184 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "Id": 185, - "Rank": 1 + "Rank": 1, + "Id": 185 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "Id": 186, - "Rank": 2 + "Rank": 2, + "Id": 186 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "Id": 187, - "Rank": 3 + "Rank": 3, + "Id": 187 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "Id": 188, - "Rank": 4 + "Rank": 4, + "Id": 188 }, { "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, - "Rank": 1 + "Rank": 1, + "Id": 189 }, { "CommandName": "Add-PnpTeamsChannelUser", "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "Id": 190, - "Rank": 2 + "Rank": 2, + "Id": 190 }, { "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, - "Rank": 1 + "Rank": 1, + "Id": 191 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 192 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 193 }, { "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, - "Rank": 4 + "Rank": 4, + "Id": 194 }, { "CommandName": "Add-PnPTeamsTeam", "Command": "Add-PnPTeamsTeam", - "Id": 195, - "Rank": 1 + "Rank": 1, + "Id": 195 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 196, - "Rank": 1 + "Rank": 1, + "Id": 196 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Id": 197, - "Rank": 2 + "Rank": 2, + "Id": 197 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "Id": 198, - "Rank": 3 + "Rank": 3, + "Id": 198 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "Id": 199, - "Rank": 4 + "Rank": 4, + "Id": 199 }, { "CommandName": "Add-PnPTenantCdnOrigin", "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Id": 200, - "Rank": 1 + "Rank": 1, + "Id": 200 }, { "CommandName": "Add-PnPTenantSequence", "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Id": 201, - "Rank": 1 + "Rank": 1, + "Id": 201 }, { "CommandName": "Add-PnPTenantSequenceSite", "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Id": 202, - "Rank": 1 + "Rank": 1, + "Id": 202 }, { "CommandName": "Add-PnPTenantSequenceSubSite", "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Id": 203, - "Rank": 1 + "Rank": 1, + "Id": 203 }, { "CommandName": "Add-PnPTermToTerm", "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "Id": 204, - "Rank": 1 + "Rank": 1, + "Id": 204 }, { "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "Id": 205, - "Rank": 1 + "Rank": 1, + "Id": 205 }, { "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "Id": 206, - "Rank": 2 + "Rank": 2, + "Id": 206 }, { "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "Id": 207, - "Rank": 3 + "Rank": 3, + "Id": 207 }, { "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, - "Rank": 1 + "Rank": 1, + "Id": 208 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 209 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 210 }, { "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Id": 211, - "Rank": 1 + "Rank": 1, + "Id": 211 }, { "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Id": 212, - "Rank": 2 + "Rank": 2, + "Id": 212 }, { "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", - "Id": 213, - "Rank": 3 + "Rank": 3, + "Id": 213 }, { "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "Id": 214, - "Rank": 1 + "Rank": 1, + "Id": 214 }, { "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "Id": 215, - "Rank": 2 + "Rank": 2, + "Id": 215 }, { "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "Id": 216, - "Rank": 1 + "Rank": 1, + "Id": 216 }, { "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "Id": 217, - "Rank": 2 + "Rank": 2, + "Id": 217 }, { "CommandName": "Add-PnPWikiPage", "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "Id": 218, - "Rank": 1 + "Rank": 1, + "Id": 218 }, { "CommandName": "Clear-PnPAzureADGroupMember", "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Id": 219, - "Rank": 1 + "Rank": 1, + "Id": 219 }, { "CommandName": "Clear-PnPAzureADGroupOwner", "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Id": 220, - "Rank": 1 + "Rank": 1, + "Id": 220 }, { "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Id": 221, - "Rank": 1 + "Rank": 1, + "Id": 221 }, { "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Id": 222, - "Rank": 2 + "Rank": 2, + "Id": 222 }, { "CommandName": "Clear-PnPListItemAsRecord", "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Id": 223, - "Rank": 1 + "Rank": 1, + "Id": 223 }, { "CommandName": "Clear-PnPMicrosoft365GroupMember", "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Id": 224, - "Rank": 1 + "Rank": 1, + "Id": 224 }, { "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Id": 225, - "Rank": 1 + "Rank": 1, + "Id": 225 }, { "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Id": 226, - "Rank": 1 + "Rank": 1, + "Id": 226 }, { "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Id": 227, - "Rank": 2 + "Rank": 2, + "Id": 227 }, { "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Id": 228, - "Rank": 3 + "Rank": 3, + "Id": 228 }, { "CommandName": "Clear-PnPTenantAppCatalogUrl", "Command": "Clear-PnPTenantAppCatalogUrl", - "Id": 229, - "Rank": 1 + "Rank": 1, + "Id": 229 }, { "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 230, - "Rank": 1 + "Rank": 1, + "Id": 230 }, { "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Id": 231, - "Rank": 2 + "Rank": 2, + "Id": 231 }, { "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, - "Rank": 1 + "Rank": 1, + "Id": 232 }, { "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Id": 233, - "Rank": 1 + "Rank": 1, + "Id": 233 }, { "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Id": 234, - "Rank": 2 + "Rank": 2, + "Id": 234 }, { "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Id": 235, - "Rank": 1 + "Rank": 1, + "Id": 235 }, { "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Id": 236, - "Rank": 2 + "Rank": 2, + "Id": 236 }, { "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Id": 237, - "Rank": 3 + "Rank": 3, + "Id": 237 }, { "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Id": 238, - "Rank": 1 + "Rank": 1, + "Id": 238 }, { "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Id": 239, - "Rank": 2 + "Rank": 2, + "Id": 239 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Id": 240, - "Rank": 1 + "Rank": 1, + "Id": 240 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Id": 241, - "Rank": 2 + "Rank": 2, + "Id": 241 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Id": 242, - "Rank": 3 + "Rank": 3, + "Id": 242 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Id": 243, - "Rank": 4 + "Rank": 4, + "Id": 243 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 244, - "Rank": 5 + "Rank": 5, + "Id": 244 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "Id": 245, - "Rank": 6 + "Rank": 6, + "Id": 245 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Id": 246, - "Rank": 7 + "Rank": 7, + "Id": 246 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Id": 247, - "Rank": 8 + "Rank": 8, + "Id": 247 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 248, - "Rank": 9 + "Rank": 9, + "Id": 248 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "Id": 249, - "Rank": 10 + "Rank": 10, + "Id": 249 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Id": 250, - "Rank": 11 + "Rank": 11, + "Id": 250 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 251, - "Rank": 12 + "Rank": 12, + "Id": 251 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 252, - "Rank": 13 + "Rank": 13, + "Id": 252 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "Id": 253, - "Rank": 14 + "Rank": 14, + "Id": 253 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 254, - "Rank": 1 + "Rank": 1, + "Id": 254 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Id": 255, - "Rank": 2 + "Rank": 2, + "Id": 255 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Id": 256, - "Rank": 3 + "Rank": 3, + "Id": 256 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 257, - "Rank": 4 + "Rank": 4, + "Id": 257 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Id": 258, - "Rank": 5 + "Rank": 5, + "Id": 258 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Id": 259, - "Rank": 6 + "Rank": 6, + "Id": 259 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Id": 260, - "Rank": 7 + "Rank": 7, + "Id": 260 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 261, - "Rank": 8 + "Rank": 8, + "Id": 261 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Id": 262, - "Rank": 9 + "Rank": 9, + "Id": 262 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Id": 263, - "Rank": 10 + "Rank": 10, + "Id": 263 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 264, - "Rank": 1 + "Rank": 1, + "Id": 264 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Id": 265, - "Rank": 2 + "Rank": 2, + "Id": 265 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Id": 266, - "Rank": 3 + "Rank": 3, + "Id": 266 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 267, - "Rank": 4 + "Rank": 4, + "Id": 267 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Id": 268, - "Rank": 5 + "Rank": 5, + "Id": 268 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Id": 269, - "Rank": 6 + "Rank": 6, + "Id": 269 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Id": 270, - "Rank": 7 + "Rank": 7, + "Id": 270 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 271, - "Rank": 8 + "Rank": 8, + "Id": 271 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Id": 272, - "Rank": 9 + "Rank": 9, + "Id": 272 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Id": 273, - "Rank": 10 + "Rank": 10, + "Id": 273 }, { "CommandName": "Copy-PnPItemProxy", "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Id": 274, - "Rank": 1 + "Rank": 1, + "Id": 274 }, { "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Id": 275, - "Rank": 1 + "Rank": 1, + "Id": 275 }, { "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "Id": 276, - "Rank": 2 + "Rank": 2, + "Id": 276 }, { "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "Id": 277, - "Rank": 3 + "Rank": 3, + "Id": 277 }, { "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", - "Id": 278, - "Rank": 4 + "Rank": 4, + "Id": 278 }, { "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "Id": 279, - "Rank": 1 + "Rank": 1, + "Id": 279 }, { "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "Id": 280, - "Rank": 2 + "Rank": 2, + "Id": 280 }, { "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": 281, - "Rank": 3 + "Rank": 3, + "Id": 281 }, { "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": 282, - "Rank": 4 + "Rank": 4, + "Id": 282 }, { "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 283, - "Rank": 1 + "Rank": 1, + "Id": 283 }, { "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Id": 284, - "Rank": 2 + "Rank": 2, + "Id": 284 }, { "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Id": 285, - "Rank": 3 + "Rank": 3, + "Id": 285 }, { "CommandName": "Disable-PnPPageScheduling", "Command": "Disable-PnPPageScheduling", - "Id": 286, - "Rank": 1 + "Rank": 1, + "Id": 286 }, { "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry", - "Id": 287, - "Rank": 1 + "Rank": 1, + "Id": 287 }, { "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry -Force", - "Id": 288, - "Rank": 2 + "Rank": 2, + "Id": 288 }, { "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 289, - "Rank": 1 + "Rank": 1, + "Id": 289 }, { "CommandName": "Disable-PnPSiteClassification", "Command": "Disable-PnPSiteClassification", - "Id": 290, - "Rank": 1 + "Rank": 1, + "Id": 290 }, { "CommandName": "Disconnect-PnPOnline", "Command": "Disconnect-PnPOnline", - "Id": 291, - "Rank": 1 + "Rank": 1, + "Id": 291 }, { "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite", - "Id": 292, - "Rank": 1 + "Rank": 1, + "Id": 292 }, { "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Id": 293, - "Rank": 2 + "Rank": 2, + "Id": 293 }, { "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 294, - "Rank": 1 + "Rank": 1, + "Id": 294 }, { "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Id": 295, - "Rank": 2 + "Rank": 2, + "Id": 295 }, { "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Id": 296, - "Rank": 3 + "Rank": 3, + "Id": 296 }, { "CommandName": "Enable-PnPPageScheduling", "Command": "Enable-PnPPageScheduling", - "Id": 297, - "Rank": 1 + "Rank": 1, + "Id": 297 }, { "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry", - "Id": 298, - "Rank": 1 + "Rank": 1, + "Id": 298 }, { "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry -Force", - "Id": 299, - "Rank": 2 + "Rank": 2, + "Id": 299 }, { "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Id": 300, - "Rank": 1 + "Rank": 1, + "Id": 300 }, { "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Id": 301, - "Rank": 2 + "Rank": 2, + "Id": 301 }, { "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Id": 302, - "Rank": 1 + "Rank": 1, + "Id": 302 }, { "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Id": 303, - "Rank": 2 + "Rank": 2, + "Id": 303 }, { "CommandName": "Export-PnPPage", "Command": "Export-PnPPage -Identity Home.aspx", - "Id": 304, - "Rank": 1 + "Rank": 1, + "Id": 304 }, { "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Id": 305, - "Rank": 1 + "Rank": 1, + "Id": 305 }, { "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Id": 306, - "Rank": 2 + "Rank": 2, + "Id": 306 }, { "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Id": 307, - "Rank": 3 + "Rank": 3, + "Id": 307 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy", - "Id": 308, - "Rank": 1 + "Rank": 1, + "Id": 308 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Id": 309, - "Rank": 2 + "Rank": 2, + "Id": 309 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Id": 310, - "Rank": 3 + "Rank": 3, + "Id": 310 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "Id": 311, - "Rank": 4 + "Rank": 4, + "Id": 311 }, { "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml", - "Id": 312, - "Rank": 1 + "Rank": 1, + "Id": 312 }, { "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Id": 313, - "Rank": 2 + "Rank": 2, + "Id": 313 }, { "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Id": 314, - "Rank": 3 + "Rank": 3, + "Id": 314 }, { "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Id": 315, - "Rank": 1 + "Rank": 1, + "Id": 315 }, { "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", - "Id": 316, - "Rank": 2 + "Rank": 2, + "Id": 316 }, { "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Id": 317, - "Rank": 1 + "Rank": 1, + "Id": 317 }, { "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Id": 318, - "Rank": 2 + "Rank": 2, + "Id": 318 }, { "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Match *.master", - "Id": 319, - "Rank": 1 + "Rank": 1, + "Id": 319 }, { "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Id": 320, - "Rank": 2 + "Rank": 2, + "Id": 320 }, { "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Id": 321, - "Rank": 3 + "Rank": 3, + "Id": 321 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken", - "Id": 322, - "Rank": 1 + "Rank": 1, + "Id": 322 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -Decoded", - "Id": 323, - "Rank": 2 + "Rank": 2, + "Id": 323 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Id": 324, - "Rank": 3 + "Rank": 3, + "Id": 324 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Id": 325, - "Rank": 4 + "Rank": 4, + "Id": 325 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Id": 326, - "Rank": 5 + "Rank": 5, + "Id": 326 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert", - "Id": 327, - "Rank": 1 + "Rank": 1, + "Id": 327 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\"", - "Id": 328, - "Rank": 2 + "Rank": 2, + "Id": 328 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Id": 329, - "Rank": 3 + "Rank": 3, + "Id": 329 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Id": 330, - "Rank": 4 + "Rank": 4, + "Id": 330 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -AllUsers", - "Id": 331, - "Rank": 5 + "Rank": 5, + "Id": 331 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Id": 332, - "Rank": 6 + "Rank": 6, + "Id": 332 }, { "CommandName": "Get-PnPApp", "Command": "Get-PnPApp", - "Id": 333, - "Rank": 1 + "Rank": 1, + "Id": 333 }, { "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Scope Site", - "Id": 334, - "Rank": 2 + "Rank": 2, + "Id": 334 }, { "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 335, - "Rank": 3 + "Rank": 3, + "Id": 335 }, { "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Id": 336, - "Rank": 1 + "Rank": 1, + "Id": 336 }, { "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "Id": 337, - "Rank": 2 + "Rank": 2, + "Id": 337 }, { "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Id": 338, - "Rank": 1 + "Rank": 1, + "Id": 338 }, { "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 339, - "Rank": 2 + "Rank": 2, + "Id": 339 }, { "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Id": 340, - "Rank": 3 + "Rank": 3, + "Id": 340 }, { "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer", - "Id": 341, - "Rank": 1 + "Rank": 1, + "Id": 341 }, { "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 342, - "Rank": 2 + "Rank": 2, + "Id": 342 }, { "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Id": 343, - "Rank": 3 + "Rank": 3, + "Id": 343 }, { "CommandName": "Get-PnPAuditing", "Command": "Get-PnPAuditing", - "Id": 344, - "Rank": 1 + "Rank": 1, + "Id": 344 }, { "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm", - "Id": 345, - "Rank": 1 + "Rank": 1, + "Id": 345 }, { "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Id": 346, - "Rank": 2 + "Rank": 2, + "Id": 346 }, { "CommandName": "Get-PnPAvailableLanguage", "Command": "Get-PnPAvailableLanguage", - "Id": 347, - "Rank": 1 + "Rank": 1, + "Id": 347 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel", - "Id": 348, - "Rank": 1 + "Rank": 1, + "Id": 348 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Id": 349, - "Rank": 2 + "Rank": 2, + "Id": 349 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Id": 350, - "Rank": 3 + "Rank": 3, + "Id": 350 }, { "CommandName": "Get-PnPAvailableSiteClassification", "Command": "Get-PnPAvailableSiteClassification", - "Id": 351, - "Rank": 1 + "Rank": 1, + "Id": 351 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal", - "Id": 352, - "Rank": 1 + "Rank": 1, + "Id": 352 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Id": 353, - "Rank": 2 + "Rank": 2, + "Id": 353 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Id": 354, - "Rank": 3 + "Rank": 3, + "Id": 354 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Id": 355, - "Rank": 4 + "Rank": 4, + "Id": 355 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 356, - "Rank": 1 + "Rank": 1, + "Id": 356 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Id": 357, - "Rank": 2 + "Rank": 2, + "Id": 357 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Id": 358, - "Rank": 3 + "Rank": 3, + "Id": 358 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn", - "Id": 359, - "Rank": 1 + "Rank": 1, + "Id": 359 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Id": 360, - "Rank": 2 + "Rank": 2, + "Id": 360 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Id": 361, - "Rank": 3 + "Rank": 3, + "Id": 361 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp", - "Id": 362, - "Rank": 1 + "Rank": 1, + "Id": 362 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity MyApp", - "Id": 363, - "Rank": 2 + "Rank": 2, + "Id": 363 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 364, - "Rank": 3 + "Rank": 3, + "Id": 364 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Id": 365, - "Rank": 4 + "Rank": 4, + "Id": 365 }, { "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission", - "Id": 366, - "Rank": 1 + "Rank": 1, + "Id": 366 }, { "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Id": 367, - "Rank": 2 + "Rank": 2, + "Id": 367 }, { "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 368, - "Rank": 3 + "Rank": 3, + "Id": 368 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission", - "Id": 369, - "Rank": 1 + "Rank": 1, + "Id": 369 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Id": 370, - "Rank": 2 + "Rank": 2, + "Id": 370 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Id": 371, - "Rank": 3 + "Rank": 3, + "Id": 371 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Id": 372, - "Rank": 4 + "Rank": 4, + "Id": 372 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Id": 373, - "Rank": 5 + "Rank": 5, + "Id": 373 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup", - "Id": 374, - "Rank": 1 + "Rank": 1, + "Id": 374 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Id": 375, - "Rank": 2 + "Rank": 2, + "Id": 375 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Id": 376, - "Rank": 3 + "Rank": 3, + "Id": 376 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Id": 377, - "Rank": 4 + "Rank": 4, + "Id": 377 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $group", - "Id": 378, - "Rank": 5 + "Rank": 5, + "Id": 378 }, { "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Id": 379, - "Rank": 1 + "Rank": 1, + "Id": 379 }, { "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Id": 380, - "Rank": 2 + "Rank": 2, + "Id": 380 }, { "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Id": 381, - "Rank": 1 + "Rank": 1, + "Id": 381 }, { "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Id": 382, - "Rank": 2 + "Rank": 2, + "Id": 382 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal", - "Id": 383, - "Rank": 1 + "Rank": 1, + "Id": 383 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Id": 384, - "Rank": 2 + "Rank": 2, + "Id": 384 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Id": 385, - "Rank": 3 + "Rank": 3, + "Id": 385 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Id": 386, - "Rank": 4 + "Rank": 4, + "Id": 386 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Id": 387, - "Rank": 5 + "Rank": 5, + "Id": 387 }, { "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 388, - "Rank": 1 + "Rank": 1, + "Id": 388 }, { "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Id": 389, - "Rank": 2 + "Rank": 2, + "Id": 389 }, { "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 390, - "Rank": 1 + "Rank": 1, + "Id": 390 }, { "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Id": 391, - "Rank": 2 + "Rank": 2, + "Id": 391 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser", - "Id": 392, - "Rank": 1 + "Rank": 1, + "Id": 392 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -EndIndex 50", - "Id": 393, - "Rank": 2 + "Rank": 2, + "Id": 393 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Id": 394, - "Rank": 3 + "Rank": 3, + "Id": 394 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Id": 395, - "Rank": 4 + "Rank": 4, + "Id": 395 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Id": 396, - "Rank": 5 + "Rank": 5, + "Id": 396 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Id": 397, - "Rank": 6 + "Rank": 6, + "Id": 397 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Id": 398, - "Rank": 7 + "Rank": 7, + "Id": 398 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta", - "Id": 399, - "Rank": 8 + "Rank": 8, + "Id": 399 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Id": 400, - "Rank": 9 + "Rank": 9, + "Id": 400 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Id": 401, - "Rank": 10 + "Rank": 10, + "Id": 401 }, { "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Id": 402, - "Rank": 1 + "Rank": 1, + "Id": 402 }, { "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Id": 403, - "Rank": 2 + "Rank": 2, + "Id": 403 }, { "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Id": 404, - "Rank": 3 + "Rank": 3, + "Id": 404 }, { "CommandName": "Get-PnPBrowserIdleSignout", "Command": "Get-PnPBrowserIdleSignout", - "Id": 405, - "Rank": 1 + "Rank": 1, + "Id": 405 }, { "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Id": 406, - "Rank": 1 + "Rank": 1, + "Id": 406 }, { "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 407, - "Rank": 2 + "Rank": 2, + "Id": 407 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 408, - "Rank": 1 + "Rank": 1, + "Id": 408 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Id": 409, - "Rank": 2 + "Rank": 2, + "Id": 409 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Id": 410, - "Rank": 3 + "Rank": 3, + "Id": 410 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Id": 411, - "Rank": 4 + "Rank": 4, + "Id": 411 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Id": 412, - "Rank": 5 + "Rank": 5, + "Id": 412 }, { "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog", - "Id": 413, - "Rank": 1 + "Rank": 1, + "Id": 413 }, { "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog -Nightly", - "Id": 414, - "Rank": 2 + "Rank": 2, + "Id": 414 }, { "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Id": 415, - "Rank": 1 + "Rank": 1, + "Id": 415 }, { "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "Id": 416, - "Rank": 2 + "Rank": 2, + "Id": 416 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType", - "Id": 417, - "Rank": 1 + "Rank": 1, + "Id": 417 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -InSiteHierarchy", - "Id": 418, - "Rank": 2 + "Rank": 2, + "Id": 418 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Id": 419, - "Rank": 3 + "Rank": 3, + "Id": 419 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -List \"Documents\"", - "Id": 420, - "Rank": 4 + "Rank": 4, + "Id": 420 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Includes \"SchemaXml\"", - "Id": 421, - "Rank": 5 + "Rank": 5, + "Id": 421 }, { "CommandName": "Get-PnPContentTypePublishingStatus", "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Id": 422, - "Rank": 1 + "Rank": 1, + "Id": 422 }, { "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction", - "Id": 423, - "Rank": 1 + "Rank": 1, + "Id": 423 }, { "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 424, - "Rank": 2 + "Rank": 2, + "Id": 424 }, { "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Scope web", - "Id": 425, - "Rank": 3 + "Rank": 3, + "Id": 425 }, { "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group", - "Id": 426, - "Rank": 1 + "Rank": 1, + "Id": 426 }, { "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 427, - "Rank": 2 + "Rank": 2, + "Id": 427 }, { "CommandName": "Get-PnPDeletedTeam", "Command": "Get-PnPDeletedTeam", - "Id": 428, - "Rank": 1 + "Rank": 1, + "Id": 428 }, { "CommandName": "Get-PnPDiagnostics", "Command": "Get-PnPDiagnostics", - "Id": 429, - "Rank": 1 + "Rank": 1, + "Id": 429 }, { "CommandName": "Get-PnPDisableSpacesActivation", "Command": "Get-PnPDisableSpacesActivation", - "Id": 430, - "Rank": 1 + "Rank": 1, + "Id": 430 }, { "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Id": 431, - "Rank": 1 + "Rank": 1, + "Id": 431 }, { "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Id": 432, - "Rank": 2 + "Rank": 2, + "Id": 432 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver", - "Id": 433, - "Rank": 1 + "Rank": 1, + "Id": 433 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 434, - "Rank": 2 + "Rank": 2, + "Id": 434 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Id": 435, - "Rank": 3 + "Rank": 3, + "Id": 435 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Id": 436, - "Rank": 4 + "Rank": 4, + "Id": 436 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 437, - "Rank": 5 + "Rank": 5, + "Id": 437 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Id": 438, - "Rank": 6 + "Rank": 6, + "Id": 438 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Site", - "Id": 439, - "Rank": 7 + "Rank": 7, + "Id": 439 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Web", - "Id": 440, - "Rank": 8 + "Rank": 8, + "Id": 440 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope All", - "Id": 441, - "Rank": 9 + "Rank": 9, + "Id": 441 }, { "CommandName": "Get-PnPException", "Command": "Get-PnPException", - "Id": 442, - "Rank": 1 + "Rank": 1, + "Id": 442 }, { "CommandName": "Get-PnPException", "Command": "Get-PnPException -All", - "Id": 443, - "Rank": 2 + "Rank": 2, + "Id": 443 }, { "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Id": 444, - "Rank": 1 + "Rank": 1, + "Id": 444 }, { "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Id": 445, - "Rank": 2 + "Rank": 2, + "Id": 445 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature", - "Id": 446, - "Rank": 1 + "Rank": 1, + "Id": 446 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Scope Site", - "Id": 447, - "Rank": 2 + "Rank": 2, + "Id": 447 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 448, - "Rank": 3 + "Rank": 3, + "Id": 448 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Id": 449, - "Rank": 4 + "Rank": 4, + "Id": 449 }, { "CommandName": "Get-PnPField", "Command": "Get-PnPField", - "Id": 450, - "Rank": 1 + "Rank": 1, + "Id": 450 }, { "CommandName": "Get-PnPField", "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Id": 451, - "Rank": 2 + "Rank": 2, + "Id": 451 }, { "CommandName": "Get-PnPField", "Command": "Get-PnPField -Group \"Custom Columns\"", - "Id": 452, - "Rank": 3 + "Rank": 3, + "Id": 452 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Id": 453, - "Rank": 1 + "Rank": 1, + "Id": 453 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "Id": 454, - "Rank": 2 + "Rank": 2, + "Id": 454 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Id": 455, - "Rank": 3 + "Rank": 3, + "Id": 455 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Id": 456, - "Rank": 4 + "Rank": 4, + "Id": 456 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Id": 457, - "Rank": 5 + "Rank": 5, + "Id": 457 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "Id": 458, - "Rank": 6 + "Rank": 6, + "Id": 458 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Id": 459, - "Rank": 7 + "Rank": 7, + "Id": 459 }, { "CommandName": "Get-PnPFileSharingLink", "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 460, - "Rank": 1 + "Rank": 1, + "Id": 460 }, { "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Id": 461, - "Rank": 1 + "Rank": 1, + "Id": 461 }, { "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Id": 462, - "Rank": 2 + "Rank": 2, + "Id": 462 }, { "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -AsAdmin", - "Id": 463, - "Rank": 1 + "Rank": 1, + "Id": 463 }, { "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "Id": 464, - "Rank": 2 + "Rank": 2, + "Id": 464 }, { "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Id": 465, - "Rank": 3 + "Rank": 3, + "Id": 465 }, { "CommandName": "Get-PnPFlowOwner", "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "Id": 466, - "Rank": 1 + "Rank": 1, + "Id": 466 }, { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder", - "Id": 467, - "Rank": 1 + "Rank": 1, + "Id": 467 }, { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Id": 468, - "Rank": 2 + "Rank": 2, + "Id": 468 }, { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Id": 469, - "Rank": 3 + "Rank": 3, + "Id": 469 }, { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Id": 470, - "Rank": 4 + "Rank": 4, + "Id": 470 }, { "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile", - "Id": 471, - "Rank": 1 + "Rank": 1, + "Id": 471 }, { "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -Recurse", - "Id": 472, - "Rank": 2 + "Rank": 2, + "Id": 472 }, { "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "Id": 473, - "Rank": 3 + "Rank": 3, + "Id": 473 }, { "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Id": 474, - "Rank": 4 + "Rank": 4, + "Id": 474 }, { "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Id": 475, - "Rank": 5 + "Rank": 5, + "Id": 475 }, { "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder", - "Id": 476, - "Rank": 1 + "Rank": 1, + "Id": 476 }, { "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Recurse", - "Id": 477, - "Rank": 2 + "Rank": 2, + "Id": 477 }, { "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "Id": 478, - "Rank": 3 + "Rank": 3, + "Id": 478 }, { "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "Id": 479, - "Rank": 4 + "Rank": 4, + "Id": 479 }, { "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "Id": 480, - "Rank": 5 + "Rank": 5, + "Id": 480 }, { "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Id": 481, - "Rank": 6 + "Rank": 6, + "Id": 481 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem", - "Id": 482, - "Rank": 1 + "Rank": 1, + "Id": 482 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Recurse", - "Id": 483, - "Rank": 2 + "Rank": 2, + "Id": 483 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "Id": 484, - "Rank": 3 + "Rank": 3, + "Id": 484 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Id": 485, - "Rank": 4 + "Rank": 4, + "Id": 485 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Id": 486, - "Rank": 5 + "Rank": 5, + "Id": 486 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Id": 487, - "Rank": 6 + "Rank": 6, + "Id": 487 }, { "CommandName": "Get-PnPFolderSharingLink", "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 488, - "Rank": 1 + "Rank": 1, + "Id": 488 }, { "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric", - "Id": 489, - "Rank": 1 + "Rank": 1, + "Id": 489 }, { "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Id": 490, - "Rank": 2 + "Rank": 2, + "Id": 490 }, { "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Id": 491, - "Rank": 3 + "Rank": 3, + "Id": 491 }, { "CommandName": "Get-PnPFooter", "Command": "Get-PnPFooter", - "Id": 492, - "Rank": 1 + "Rank": 1, + "Id": 492 }, { "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken", - "Id": 493, - "Rank": 1 + "Rank": 1, + "Id": 493 }, { "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken -Decoded", - "Id": 494, - "Rank": 2 + "Rank": 2, + "Id": 494 }, { "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription", - "Id": 495, - "Rank": 1 + "Rank": 1, + "Id": 495 }, { "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Id": 496, - "Rank": 2 + "Rank": 2, + "Id": 496 }, { "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup", - "Id": 497, - "Rank": 1 + "Rank": 1, + "Id": 497 }, { "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Id": 498, - "Rank": 2 + "Rank": 2, + "Id": 498 }, { "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Id": 499, - "Rank": 3 + "Rank": 3, + "Id": 499 }, { "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Id": 500, - "Rank": 1 + "Rank": 1, + "Id": 500 }, { "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Id": 501, - "Rank": 2 + "Rank": 2, + "Id": 501 }, { "CommandName": "Get-PnPGroupPermissions", "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Id": 502, - "Rank": 1 + "Rank": 1, + "Id": 502 }, { "CommandName": "Get-PnPHideDefaultThemes", "Command": "Get-PnPHideDefaultThemes", - "Id": 503, - "Rank": 1 + "Rank": 1, + "Id": 503 }, { "CommandName": "Get-PnPHomePage", "Command": "Get-PnPHomePage", - "Id": 504, - "Rank": 1 + "Rank": 1, + "Id": 504 }, { "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite", - "Id": 505, - "Rank": 1 + "Rank": 1, + "Id": 505 }, { "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Id": 506, - "Rank": 2 + "Rank": 2, + "Id": 506 }, { "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -Detailed", - "Id": 507, - "Rank": 3 + "Rank": 3, + "Id": 507 }, { "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite", - "Id": 508, - "Rank": 1 + "Rank": 1, + "Id": 508 }, { "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Id": 509, - "Rank": 2 + "Rank": 2, + "Id": 509 }, { "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Id": 510, - "Rank": 3 + "Rank": 3, + "Id": 510 }, { "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild", - "Id": 511, - "Rank": 1 + "Rank": 1, + "Id": 511 }, { "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Id": 512, - "Rank": 2 + "Rank": 2, + "Id": 512 }, { "CommandName": "Get-PnPInPlaceRecordsManagement", "Command": "Get-PnPInPlaceRecordsManagement", - "Id": 513, - "Rank": 1 + "Rank": 1, + "Id": 513 }, { "CommandName": "Get-PnPIsSiteAliasAvailable", "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Id": 514, - "Rank": 1 + "Rank": 1, + "Id": 514 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink", - "Id": 515, - "Rank": 1 + "Rank": 1, + "Id": 515 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope All", - "Id": 516, - "Rank": 2 + "Rank": 2, + "Id": 516 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Web", - "Id": 517, - "Rank": 3 + "Rank": 3, + "Id": 517 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Site", - "Id": 518, - "Rank": 4 + "Rank": 4, + "Id": 518 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Name Test", - "Id": 519, - "Rank": 5 + "Rank": 5, + "Id": 519 }, { "CommandName": "Get-PnPKnowledgeHubSite", "Command": "Get-PnPKnowledgeHubSite", - "Id": 520, - "Rank": 1 + "Rank": 1, + "Id": 520 }, { "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel", - "Id": 521, - "Rank": 1 + "Rank": 1, + "Id": 521 }, { "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Id": 522, - "Rank": 2 + "Rank": 2, + "Id": 522 }, { "CommandName": "Get-PnPLargeListOperationStatus", "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Id": 523, - "Rank": 1 + "Rank": 1, + "Id": 523 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList", - "Id": 524, - "Rank": 1 + "Rank": 1, + "Id": 524 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 525, - "Rank": 2 + "Rank": 2, + "Id": 525 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity Lists/Announcements", - "Id": 526, - "Rank": 3 + "Rank": 3, + "Id": 526 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Id": 527, - "Rank": 4 + "Rank": 4, + "Id": 527 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Id": 528, - "Rank": 5 + "Rank": 5, + "Id": 528 }, { "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign", - "Id": 529, - "Rank": 1 + "Rank": 1, + "Id": 529 }, { "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 530, - "Rank": 2 + "Rank": 2, + "Id": 530 }, { "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity ListEvent", - "Id": 531, - "Rank": 3 + "Rank": 3, + "Id": 531 }, { "CommandName": "Get-PnPListInformationRightsManagement", "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Id": 532, - "Rank": 1 + "Rank": 1, + "Id": 532 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks", - "Id": 533, - "Rank": 1 + "Rank": 1, + "Id": 533 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1", - "Id": 534, - "Rank": 2 + "Rank": 2, + "Id": 534 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Id": 535, - "Rank": 3 + "Rank": 3, + "Id": 535 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Id": 536, - "Rank": 4 + "Rank": 4, + "Id": 536 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Id": 537, - "Rank": 5 + "Rank": 5, + "Id": 537 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Id": 538, - "Rank": 6 + "Rank": 6, + "Id": 538 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "Id": 539, - "Rank": 7 + "Rank": 7, + "Id": 539 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Id": 540, - "Rank": 8 + "Rank": 8, + "Id": 540 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Id": 541, - "Rank": 9 + "Rank": 9, + "Id": 541 }, { "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "Id": 542, - "Rank": 1 + "Rank": 1, + "Id": 542 }, { "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "Id": 543, - "Rank": 2 + "Rank": 2, + "Id": 543 }, { "CommandName": "Get-PnPListItemComment", "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Id": 544, - "Rank": 1 + "Rank": 1, + "Id": 544 }, { "CommandName": "Get-PnPListItemPermission", "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Id": 545, - "Rank": 1 + "Rank": 1, + "Id": 545 }, { "CommandName": "Get-PnPListItemVersion", "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Id": 546, - "Rank": 1 + "Rank": 1, + "Id": 546 }, { "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Id": 547, - "Rank": 1 + "Rank": 1, + "Id": 547 }, { "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Id": 548, - "Rank": 2 + "Rank": 2, + "Id": 548 }, { "CommandName": "Get-PnPListRecordDeclaration", "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Id": 549, - "Rank": 1 + "Rank": 1, + "Id": 549 }, { "CommandName": "Get-PnPMasterPage", "Command": "Get-PnPMasterPage", - "Id": 550, - "Rank": 1 + "Rank": 1, + "Id": 550 }, { "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement", - "Id": 551, - "Rank": 1 + "Rank": 1, + "Id": 551 }, { "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Id": 552, - "Rank": 2 + "Rank": 2, + "Id": 552 }, { "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 553, - "Rank": 1 + "Rank": 1, + "Id": 553 }, { "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Id": 554, - "Rank": 2 + "Rank": 2, + "Id": 554 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group", - "Id": 555, - "Rank": 1 + "Rank": 1, + "Id": 555 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Id": 556, - "Rank": 2 + "Rank": 2, + "Id": 556 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Id": 557, - "Rank": 3 + "Rank": 3, + "Id": 557 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Id": 558, - "Rank": 4 + "Rank": 4, + "Id": 558 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Id": 559, - "Rank": 5 + "Rank": 5, + "Id": 559 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Id": 560, - "Rank": 6 + "Rank": 6, + "Id": 560 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 561, - "Rank": 1 + "Rank": 1, + "Id": 561 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Id": 562, - "Rank": 2 + "Rank": 2, + "Id": 562 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 563, - "Rank": 3 + "Rank": 3, + "Id": 563 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Id": 564, - "Rank": 1 + "Rank": 1, + "Id": 564 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Id": 565, - "Rank": 2 + "Rank": 2, + "Id": 565 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Id": 566, - "Rank": 3 + "Rank": 3, + "Id": 566 }, { "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Id": 567, - "Rank": 1 + "Rank": 1, + "Id": 567 }, { "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Id": 568, - "Rank": 2 + "Rank": 2, + "Id": 568 }, { "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings", - "Id": 569, - "Rank": 1 + "Rank": 1, + "Id": 569 }, { "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Id": 570, - "Rank": 2 + "Rank": 2, + "Id": 570 }, { "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 571, - "Rank": 1 + "Rank": 1, + "Id": 571 }, { "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Id": 572, - "Rank": 2 + "Rank": 2, + "Id": 572 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam", - "Id": 573, - "Rank": 1 + "Rank": 1, + "Id": 573 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Id": 574, - "Rank": 2 + "Rank": 2, + "Id": 574 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 575, - "Rank": 3 + "Rank": 3, + "Id": 575 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 576, - "Rank": 1 + "Rank": 1, + "Id": 576 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Id": 577, - "Rank": 2 + "Rank": 2, + "Id": 577 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 578, - "Rank": 3 + "Rank": 3, + "Id": 578 }, { "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode", - "Id": 579, - "Rank": 1 + "Rank": 1, + "Id": 579 }, { "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Id": 580, - "Rank": 2 + "Rank": 2, + "Id": 580 }, { "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Id": 581, - "Rank": 3 + "Rank": 3, + "Id": 581 }, { "CommandName": "Get-PnPOrgAssetsLibrary", "Command": "Get-PnPOrgAssetsLibrary", - "Id": 582, - "Rank": 1 + "Rank": 1, + "Id": 582 }, { "CommandName": "Get-PnPOrgNewsSite", "Command": "Get-PnPOrgNewsSite", - "Id": 583, - "Rank": 1 + "Rank": 1, + "Id": 583 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Id": 584, - "Rank": 1 + "Rank": 1, + "Id": 584 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"MyPage\"", - "Id": 585, - "Rank": 2 + "Rank": 2, + "Id": 585 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Id": 586, - "Rank": 3 + "Rank": 3, + "Id": 586 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Id": 587, - "Rank": 4 + "Rank": 4, + "Id": 587 }, { "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home", - "Id": 588, - "Rank": 1 + "Rank": 1, + "Id": 588 }, { "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 589, - "Rank": 2 + "Rank": 2, + "Id": 589 }, { "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Id": 590, - "Rank": 3 + "Rank": 3, + "Id": 590 }, { "CommandName": "Get-PnPPlannerBucket", "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Id": 591, - "Rank": 1 + "Rank": 1, + "Id": 591 }, { "CommandName": "Get-PnPPlannerConfiguration", "Command": "Get-PnPPlannerConfiguration", - "Id": 592, - "Rank": 1 + "Rank": 1, + "Id": 592 }, { "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Id": 593, - "Rank": 1 + "Rank": 1, + "Id": 593 }, { "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Id": 594, - "Rank": 2 + "Rank": 2, + "Id": 594 }, { "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Id": 595, - "Rank": 3 + "Rank": 3, + "Id": 595 }, { "CommandName": "Get-PnPPlannerRosterMember", "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Id": 596, - "Rank": 1 + "Rank": 1, + "Id": 596 }, { "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Id": 597, - "Rank": 1 + "Rank": 1, + "Id": 597 }, { "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 598, - "Rank": 2 + "Rank": 2, + "Id": 598 }, { "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Id": 599, - "Rank": 1 + "Rank": 1, + "Id": 599 }, { "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Id": 600, - "Rank": 2 + "Rank": 2, + "Id": 600 }, { "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Id": 601, - "Rank": 3 + "Rank": 3, + "Id": 601 }, { "CommandName": "Get-PnPPlannerUserPolicy", "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Id": 602, - "Rank": 1 + "Rank": 1, + "Id": 602 }, { "CommandName": "Get-PnPPowerPlatformConnector", "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "Id": 603, - "Rank": 1 + "Rank": 1, + "Id": 603 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment", - "Id": 604, - "Rank": 1 + "Rank": 1, + "Id": 604 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Id": 605, - "Rank": 2 + "Rank": 2, + "Id": 605 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Id": 606, - "Rank": 3 + "Rank": 3, + "Id": 606 }, { "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Command": "Get-PnPPowerShellTelemetryEnabled", - "Id": 607, - "Rank": 1 + "Rank": 1, + "Id": 607 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag", - "Id": 608, - "Rank": 1 + "Rank": 1, + "Id": 608 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Key MyKey", - "Id": 609, - "Rank": 2 + "Rank": 2, + "Id": 609 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Id": 610, - "Rank": 3 + "Rank": 3, + "Id": 610 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Id": 611, - "Rank": 4 + "Rank": 4, + "Id": 611 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Id": 612, - "Rank": 5 + "Rank": 5, + "Id": 612 }, { "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition", - "Id": 613, - "Rank": 1 + "Rank": 1, + "Id": 613 }, { "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Id": 614, - "Rank": 2 + "Rank": 2, + "Id": 614 }, { "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Id": 615, - "Rank": 3 + "Rank": 3, + "Id": 615 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem", - "Id": 616, - "Rank": 1 + "Rank": 1, + "Id": 616 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Id": 617, - "Rank": 2 + "Rank": 2, + "Id": 617 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -FirstStage", - "Id": 618, - "Rank": 3 + "Rank": 3, + "Id": 618 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -SecondStage", - "Id": 619, - "Rank": 4 + "Rank": 4, + "Id": 619 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Id": 620, - "Rank": 5 + "Rank": 5, + "Id": 620 }, { "CommandName": "Get-PnPRequestAccessEmails", "Command": "Get-PnPRequestAccessEmails", - "Id": 621, - "Rank": 1 + "Rank": 1, + "Id": 621 }, { "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel", - "Id": 622, - "Rank": 1 + "Rank": 1, + "Id": 622 }, { "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", - "Id": 623, - "Rank": 2 + "Rank": 2, + "Id": 623 }, { "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition", - "Id": 624, - "Rank": 1 + "Rank": 1, + "Id": 624 }, { "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition -Identity Read", - "Id": 625, - "Rank": 2 + "Rank": 2, + "Id": 625 }, { "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Id": 626, - "Rank": 3 + "Rank": 3, + "Id": 626 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration", - "Id": 627, - "Rank": 1 + "Rank": 1, + "Id": 627 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site", - "Id": 628, - "Rank": 2 + "Rank": 2, + "Id": 628 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Id": 629, - "Rank": 3 + "Rank": 3, + "Id": 629 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 630, - "Rank": 4 + "Rank": 4, + "Id": 630 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Id": 631, - "Rank": 5 + "Rank": 5, + "Id": 631 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Id": 632, - "Rank": 6 + "Rank": 6, + "Id": 632 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Id": 633, - "Rank": 7 + "Rank": 7, + "Id": 633 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Id": 634, - "Rank": 8 + "Rank": 8, + "Id": 634 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog", - "Id": 635, - "Rank": 1 + "Rank": 1, + "Id": 635 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Id": 636, - "Rank": 2 + "Rank": 2, + "Id": 636 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Id": 637, - "Rank": 3 + "Rank": 3, + "Id": 637 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Id": 638, - "Rank": 4 + "Rank": 4, + "Id": 638 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Id": 639, - "Rank": 5 + "Rank": 5, + "Id": 639 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Id": 640, - "Rank": 6 + "Rank": 6, + "Id": 640 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Id": 641, - "Rank": 7 + "Rank": 7, + "Id": 641 }, { "CommandName": "Get-PnPSearchSettings", "Command": "Get-PnPSearchSettings", - "Id": 642, - "Rank": 1 + "Rank": 1, + "Id": 642 }, { "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth", - "Id": 643, - "Rank": 1 + "Rank": 1, + "Id": 643 }, { "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Id": 644, - "Rank": 2 + "Rank": 2, + "Id": 644 }, { "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue", - "Id": 645, - "Rank": 1 + "Rank": 1, + "Id": 645 }, { "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Id": 646, - "Rank": 2 + "Rank": 2, + "Id": 646 }, { "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn", - "Id": 647, - "Rank": 1 + "Rank": 1, + "Id": 647 }, { "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Id": 648, - "Rank": 2 + "Rank": 2, + "Id": 648 }, { "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Command": "Get-PnPSharingForNonOwnersOfSite", - "Id": 649, - "Rank": 1 + "Rank": 1, + "Id": 649 }, { "CommandName": "Get-PnPSite", "Command": "Get-PnPSite", - "Id": 650, - "Rank": 1 + "Rank": 1, + "Id": 650 }, { "CommandName": "Get-PnPSite", "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Id": 651, - "Rank": 2 + "Rank": 2, + "Id": 651 }, { "CommandName": "Get-PnPSiteClosure", "Command": "Get-PnPSiteClosure", - "Id": 652, - "Rank": 1 + "Rank": 1, + "Id": 652 }, { "CommandName": "Get-PnPSiteCollectionAdmin", "Command": "Get-PnPSiteCollectionAdmin", - "Id": 653, - "Rank": 1 + "Rank": 1, + "Id": 653 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog", - "Id": 654, - "Rank": 1 + "Rank": 1, + "Id": 654 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Id": 655, - "Rank": 2 + "Rank": 2, + "Id": 655 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Id": 656, - "Rank": 3 + "Rank": 3, + "Id": 656 }, { "CommandName": "Get-PnPSiteCollectionTermStore", "Command": "Get-PnPSiteCollectionTermStore", - "Id": 657, - "Rank": 1 + "Rank": 1, + "Id": 657 }, { "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign", - "Id": 658, - "Rank": 1 + "Rank": 1, + "Id": 658 }, { "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 659, - "Rank": 2 + "Rank": 2, + "Id": 659 }, { "CommandName": "Get-PnPSiteDesignRights", "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 660, - "Rank": 1 + "Rank": 1, + "Id": 660 }, { "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun", - "Id": 661, - "Rank": 1 + "Rank": 1, + "Id": 661 }, { "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Id": 662, - "Rank": 2 + "Rank": 2, + "Id": 662 }, { "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Id": 663, - "Rank": 1 + "Rank": 1, + "Id": 663 }, { "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask", - "Id": 664, - "Rank": 2 + "Rank": 2, + "Id": 664 }, { "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Id": 665, - "Rank": 3 + "Rank": 3, + "Id": 665 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup", - "Id": 666, - "Rank": 1 + "Rank": 1, + "Id": 666 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Id": 667, - "Rank": 2 + "Rank": 2, + "Id": 667 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Id": 668, - "Rank": 3 + "Rank": 3, + "Id": 668 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Id": 669, - "Rank": 4 + "Rank": 4, + "Id": 669 }, { "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy", - "Id": 670, - "Rank": 1 + "Rank": 1, + "Id": 670 }, { "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -AllAvailable", - "Id": 671, - "Rank": 2 + "Rank": 2, + "Id": 671 }, { "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Id": 672, - "Rank": 3 + "Rank": 3, + "Id": 672 }, { "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript", - "Id": 673, - "Rank": 1 + "Rank": 1, + "Id": 673 }, { "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 674, - "Rank": 2 + "Rank": 2, + "Id": 674 }, { "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Id": 675, - "Rank": 1 + "Rank": 1, + "Id": 675 }, { "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Id": 676, - "Rank": 2 + "Rank": 2, + "Id": 676 }, { "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Id": 677, - "Rank": 3 + "Rank": 3, + "Id": 677 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Id": 678, - "Rank": 1 + "Rank": 1, + "Id": 678 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Id": 679, - "Rank": 2 + "Rank": 2, + "Id": 679 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "Id": 680, - "Rank": 3 + "Rank": 3, + "Id": 680 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Id": 681, - "Rank": 4 + "Rank": 4, + "Id": 681 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Id": 682, - "Rank": 5 + "Rank": 5, + "Id": 682 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "Id": 683, - "Rank": 6 + "Rank": 6, + "Id": 683 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults", - "Id": 684, - "Rank": 1 + "Rank": 1, + "Id": 684 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Id": 685, - "Rank": 2 + "Rank": 2, + "Id": 685 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Id": 686, - "Rank": 3 + "Rank": 3, + "Id": 686 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Id": 687, - "Rank": 4 + "Rank": 4, + "Id": 687 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Id": 688, - "Rank": 5 + "Rank": 5, + "Id": 688 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -All", - "Id": 689, - "Rank": 6 + "Rank": 6, + "Id": 689 }, { "CommandName": "Get-PnPSiteSensitivityLabel", "Command": "Get-PnPSiteSensitivityLabel", - "Id": 690, - "Rank": 1 + "Rank": 1, + "Id": 690 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Id": 691, - "Rank": 1 + "Rank": 1, + "Id": 691 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml", - "Id": 692, - "Rank": 2 + "Rank": 2, + "Id": 692 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.md", - "Id": 693, - "Rank": 3 + "Rank": 3, + "Id": 693 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Id": 694, - "Rank": 4 + "Rank": 4, + "Id": 694 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Id": 695, - "Rank": 5 + "Rank": 5, + "Id": 695 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Id": 696, - "Rank": 6 + "Rank": 6, + "Id": 696 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Id": 697, - "Rank": 7 + "Rank": 7, + "Id": 697 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Id": 698, - "Rank": 8 + "Rank": 8, + "Id": 698 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Id": 699, - "Rank": 9 + "Rank": 9, + "Id": 699 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Id": 700, - "Rank": 10 + "Rank": 10, + "Id": 700 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Id": 701, - "Rank": 11 + "Rank": 11, + "Id": 701 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Id": 702, - "Rank": 12 + "Rank": 12, + "Id": 702 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", - "Id": 703, - "Rank": 13 + "Rank": 13, + "Id": 703 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Id": 704, - "Rank": 14 + "Rank": 14, + "Id": 704 }, { "CommandName": "Get-PnPSiteUserInvitations", "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Id": 705, - "Rank": 1 + "Rank": 1, + "Id": 705 }, { "CommandName": "Get-PnPSiteVersionPolicy", "Command": "Get-PnPSiteVersionPolicy", - "Id": 706, - "Rank": 1 + "Rank": 1, + "Id": 706 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity", - "Id": 707, - "Rank": 1 + "Rank": 1, + "Id": 707 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey", - "Id": 708, - "Rank": 2 + "Rank": 2, + "Id": 708 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Scope Site", - "Id": 709, - "Rank": 3 + "Rank": 3, + "Id": 709 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Id": 710, - "Rank": 4 + "Rank": 4, + "Id": 710 }, { "CommandName": "Get-PnPStoredCredential", "Command": "Get-PnPStoredCredential -Name O365", - "Id": 711, - "Rank": 1 + "Rank": 1, + "Id": 711 }, { "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 712, - "Rank": 1 + "Rank": 1, + "Id": 712 }, { "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 713, - "Rank": 1 + "Rank": 1, + "Id": 713 }, { "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Id": 714, - "Rank": 1 + "Rank": 1, + "Id": 714 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb", - "Id": 715, - "Rank": 1 + "Rank": 1, + "Id": 715 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse", - "Id": 716, - "Rank": 2 + "Rank": 2, + "Id": 716 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Id": 717, - "Rank": 3 + "Rank": 3, + "Id": 717 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Id": 718, - "Rank": 4 + "Rank": 4, + "Id": 718 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Id": 719, - "Rank": 5 + "Rank": 5, + "Id": 719 }, { "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel", - "Id": 720, - "Rank": 1 + "Rank": 1, + "Id": 720 }, { "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity 1", - "Id": 721, - "Rank": 2 + "Rank": 2, + "Id": 721 }, { "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Id": 722, - "Rank": 3 + "Rank": 3, + "Id": 722 }, { "CommandName": "Get-PnPSyntexModelPublication", "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Id": 723, - "Rank": 1 + "Rank": 1, + "Id": 723 }, { "CommandName": "Get-PnPTaxonomyItem", "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Id": 724, - "Rank": 1 + "Rank": 1, + "Id": 724 }, { "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp", - "Id": 725, - "Rank": 1 + "Rank": 1, + "Id": 725 }, { "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Id": 726, - "Rank": 2 + "Rank": 2, + "Id": 726 }, { "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Id": 727, - "Rank": 3 + "Rank": 3, + "Id": 727 }, { "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Id": 728, - "Rank": 1 + "Rank": 1, + "Id": 728 }, { "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Id": 729, - "Rank": 2 + "Rank": 2, + "Id": 729 }, { "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Id": 730, - "Rank": 3 + "Rank": 3, + "Id": 730 }, { "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Id": 731, - "Rank": 1 + "Rank": 1, + "Id": 731 }, { "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Id": 732, - "Rank": 2 + "Rank": 2, + "Id": 732 }, { "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Id": 733, - "Rank": 1 + "Rank": 1, + "Id": 733 }, { "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Id": 734, - "Rank": 2 + "Rank": 2, + "Id": 734 }, { "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Id": 735, - "Rank": 1 + "Rank": 1, + "Id": 735 }, { "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Id": 736, - "Rank": 2 + "Rank": 2, + "Id": 736 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Id": 737, - "Rank": 1 + "Rank": 1, + "Id": 737 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Id": 738, - "Rank": 2 + "Rank": 2, + "Id": 738 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Id": 739, - "Rank": 3 + "Rank": 3, + "Id": 739 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Id": 740, - "Rank": 4 + "Rank": 4, + "Id": 740 }, { "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Id": 741, - "Rank": 1 + "Rank": 1, + "Id": 741 }, { "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Id": 742, - "Rank": 2 + "Rank": 2, + "Id": 742 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Id": 743, - "Rank": 1 + "Rank": 1, + "Id": 743 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "Id": 744, - "Rank": 2 + "Rank": 2, + "Id": 744 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", - "Id": 745, - "Rank": 3 + "Rank": 3, + "Id": 745 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Id": 746, - "Rank": 4 + "Rank": 4, + "Id": 746 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Id": 747, - "Rank": 5 + "Rank": 5, + "Id": 747 }, { "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Id": 748, - "Rank": 1 + "Rank": 1, + "Id": 748 }, { "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Id": 749, - "Rank": 2 + "Rank": 2, + "Id": 749 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam", - "Id": 750, - "Rank": 1 + "Rank": 1, + "Id": 750 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Id": 751, - "Rank": 2 + "Rank": 2, + "Id": 751 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Id": 752, - "Rank": 3 + "Rank": 3, + "Id": 752 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Id": 753, - "Rank": 4 + "Rank": 4, + "Id": 753 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Id": 754, - "Rank": 5 + "Rank": 5, + "Id": 754 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam", - "Id": 755, - "Rank": 1 + "Rank": 1, + "Id": 755 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Id": 756, - "Rank": 2 + "Rank": 2, + "Id": 756 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Id": 757, - "Rank": 3 + "Rank": 3, + "Id": 757 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Id": 758, - "Rank": 4 + "Rank": 4, + "Id": 758 }, { "CommandName": "Get-PnPTemporarilyDisableAppBar", "Command": "Get-PnPTemporarilyDisableAppBar", - "Id": 759, - "Rank": 1 + "Rank": 1, + "Id": 759 }, { "CommandName": "Get-PnPTenant", "Command": "Get-PnPTenant", - "Id": 760, - "Rank": 1 + "Rank": 1, + "Id": 760 }, { "CommandName": "Get-PnPTenantAppCatalogUrl", "Command": "Get-PnPTenantAppCatalogUrl", - "Id": 761, - "Rank": 1 + "Rank": 1, + "Id": 761 }, { "CommandName": "Get-PnPTenantCdnEnabled", "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Id": 762, - "Rank": 1 + "Rank": 1, + "Id": 762 }, { "CommandName": "Get-PnPTenantCdnOrigin", "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Id": 763, - "Rank": 1 + "Rank": 1, + "Id": 763 }, { "CommandName": "Get-PnPTenantCdnPolicies", "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Id": 764, - "Rank": 1 + "Rank": 1, + "Id": 764 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite", - "Id": 765, - "Rank": 1 + "Rank": 1, + "Id": 765 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 766, - "Rank": 2 + "Rank": 2, + "Id": 766 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Id": 767, - "Rank": 3 + "Rank": 3, + "Id": 767 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Id": 768, - "Rank": 4 + "Rank": 4, + "Id": 768 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId", - "Id": 769, - "Rank": 1 + "Rank": 1, + "Id": 769 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId contoso", - "Id": 770, - "Rank": 2 + "Rank": 2, + "Id": 770 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Id": 771, - "Rank": 3 + "Rank": 3, + "Id": 771 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Id": 772, - "Rank": 4 + "Rank": 4, + "Id": 772 }, { "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "Id": 773, - "Rank": 1 + "Rank": 1, + "Id": 773 }, { "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "Id": 774, - "Rank": 2 + "Rank": 2, + "Id": 774 }, { "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo", - "Id": 775, - "Rank": 3 + "Rank": 3, + "Id": 775 }, { "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -CurrentTenant", - "Id": 776, - "Rank": 4 + "Rank": 4, + "Id": 776 }, { "CommandName": "Get-PnPTenantInstance", "Command": "Get-PnPTenantInstance", - "Id": 777, - "Rank": 1 + "Rank": 1, + "Id": 777 }, { "CommandName": "Get-PnPTenantRecycleBinItem", "Command": "Get-PnPTenantRecycleBinItem", - "Id": 778, - "Rank": 1 + "Rank": 1, + "Id": 778 }, { "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Id": 779, - "Rank": 1 + "Rank": 1, + "Id": 779 }, { "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Id": 780, - "Rank": 2 + "Rank": 2, + "Id": 780 }, { "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Id": 781, - "Rank": 1 + "Rank": 1, + "Id": 781 }, { "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Id": 782, - "Rank": 2 + "Rank": 2, + "Id": 782 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite", - "Id": 783, - "Rank": 1 + "Rank": 1, + "Id": 783 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Detailed", - "Id": 784, - "Rank": 2 + "Rank": 2, + "Id": 784 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Id": 785, - "Rank": 3 + "Rank": 3, + "Id": 785 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Id": 786, - "Rank": 4 + "Rank": 4, + "Id": 786 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Id": 787, - "Rank": 5 + "Rank": 5, + "Id": 787 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Id": 788, - "Rank": 6 + "Rank": 6, + "Id": 788 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Id": 789, - "Rank": 7 + "Rank": 7, + "Id": 789 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Id": 790, - "Rank": 8 + "Rank": 8, + "Id": 790 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Id": 791, - "Rank": 9 + "Rank": 9, + "Id": 791 }, { "CommandName": "Get-PnPTenantSyncClientRestriction", "Command": "Get-PnPTenantSyncClientRestriction", - "Id": 792, - "Rank": 1 + "Rank": 1, + "Id": 792 }, { "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Id": 793, - "Rank": 1 + "Rank": 1, + "Id": 793 }, { "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Id": 794, - "Rank": 2 + "Rank": 2, + "Id": 794 }, { "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "Id": 795, - "Rank": 3 + "Rank": 3, + "Id": 795 }, { "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme", - "Id": 796, - "Rank": 1 + "Rank": 1, + "Id": 796 }, { "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Id": 797, - "Rank": 2 + "Rank": 2, + "Id": 797 }, { "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Id": 798, - "Rank": 3 + "Rank": 3, + "Id": 798 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 799, - "Rank": 1 + "Rank": 1, + "Id": 799 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 800, - "Rank": 2 + "Rank": 2, + "Id": 800 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 801, - "Rank": 3 + "Rank": 3, + "Id": 801 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Id": 802, - "Rank": 4 + "Rank": 4, + "Id": 802 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Id": 803, - "Rank": 5 + "Rank": 5, + "Id": 803 }, { "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup", - "Id": 804, - "Rank": 1 + "Rank": 1, + "Id": 804 }, { "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Id": 805, - "Rank": 2 + "Rank": 2, + "Id": 805 }, { "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Id": 806, - "Rank": 3 + "Rank": 3, + "Id": 806 }, { "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Id": 807, - "Rank": 1 + "Rank": 1, + "Id": 807 }, { "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Id": 808, - "Rank": 2 + "Rank": 2, + "Id": 808 }, { "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 809, - "Rank": 3 + "Rank": 3, + "Id": 809 }, { "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Id": 810, - "Rank": 1 + "Rank": 1, + "Id": 810 }, { "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Id": 811, - "Rank": 2 + "Rank": 2, + "Id": 811 }, { "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Id": 812, - "Rank": 3 + "Rank": 3, + "Id": 812 }, { "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme", - "Id": 813, - "Rank": 1 + "Rank": 1, + "Id": 813 }, { "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Id": 814, - "Rank": 2 + "Rank": 2, + "Id": 814 }, { "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId", - "Id": 815, - "Rank": 1 + "Rank": 1, + "Id": 815 }, { "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Id": 816, - "Rank": 2 + "Rank": 2, + "Id": 816 }, { "CommandName": "Get-PnPUnfurlLink", "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Id": 817, - "Rank": 1 + "Rank": 1, + "Id": 817 }, { "CommandName": "Get-PnPUnifiedAuditLog", "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Id": 818, - "Rank": 1 + "Rank": 1, + "Id": 818 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus", - "Id": 819, - "Rank": 1 + "Rank": 1, + "Id": 819 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Id": 820, - "Rank": 2 + "Rank": 2, + "Id": 820 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Id": 821, - "Rank": 3 + "Rank": 3, + "Id": 821 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Id": 822, - "Rank": 4 + "Rank": 4, + "Id": 822 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser", - "Id": 823, - "Rank": 1 + "Rank": 1, + "Id": 823 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity 23", - "Id": 824, - "Rank": 2 + "Rank": 2, + "Id": 824 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Id": 825, - "Rank": 3 + "Rank": 3, + "Id": 825 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Id": 826, - "Rank": 4 + "Rank": 4, + "Id": 826 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned", - "Id": 827, - "Rank": 5 + "Rank": 5, + "Id": 827 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Id": 828, - "Rank": 6 + "Rank": 6, + "Id": 828 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Id": 829, - "Rank": 7 + "Rank": 7, + "Id": 829 }, { "CommandName": "Get-PnPUserOneDriveQuota", "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Id": 830, - "Rank": 1 + "Rank": 1, + "Id": 830 }, { "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Id": 831, - "Rank": 1 + "Rank": 1, + "Id": 831 }, { "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Id": 832, - "Rank": 2 + "Rank": 2, + "Id": 832 }, { "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Id": 833, - "Rank": 3 + "Rank": 3, + "Id": 833 }, { "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\"", - "Id": 834, - "Rank": 1 + "Rank": 1, + "Id": 834 }, { "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Id": 835, - "Rank": 2 + "Rank": 2, + "Id": 835 }, { "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Id": 836, - "Rank": 3 + "Rank": 3, + "Id": 836 }, { "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE", - "Id": 837, - "Rank": 1 + "Rank": 1, + "Id": 837 }, { "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Id": 838, - "Rank": 2 + "Rank": 2, + "Id": 838 }, { "CommandName": "Get-PnPWeb", "Command": "Get-PnPWeb", - "Id": 839, - "Rank": 1 + "Rank": 1, + "Id": 839 }, { "CommandName": "Get-PnPWebHeader", "Command": "Get-PnPWebHeader", - "Id": 840, - "Rank": 1 + "Rank": 1, + "Id": 840 }, { "CommandName": "Get-PnPWebhookSubscriptions", "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Id": 841, - "Rank": 1 + "Rank": 1, + "Id": 841 }, { "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Id": 842, - "Rank": 1 + "Rank": 1, + "Id": 842 }, { "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 843, - "Rank": 2 + "Rank": 2, + "Id": 843 }, { "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Id": 844, - "Rank": 1 + "Rank": 1, + "Id": 844 }, { "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "Id": 845, - "Rank": 2 + "Rank": 2, + "Id": 845 }, { "CommandName": "Get-PnPWebPartXml", "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 846, - "Rank": 1 + "Rank": 1, + "Id": 846 }, { "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates", - "Id": 847, - "Rank": 1 + "Rank": 1, + "Id": 847 }, { "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -LCID 1033", - "Id": 848, - "Rank": 2 + "Rank": 2, + "Id": 848 }, { "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Id": 849, - "Rank": 3 + "Rank": 3, + "Id": 849 }, { "CommandName": "Get-PnPWikiPageContent", "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Id": 850, - "Rank": 1 + "Rank": 1, + "Id": 850 }, { "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Id": 851, - "Rank": 1 + "Rank": 1, + "Id": 851 }, { "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "Id": 852, - "Rank": 2 + "Rank": 2, + "Id": 852 }, { "CommandName": "Grant-PnPHubSiteRights", "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 853, - "Rank": 1 + "Rank": 1, + "Id": 853 }, { "CommandName": "Grant-PnPSiteDesignRights", "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 854, - "Rank": 1 + "Rank": 1, + "Id": 854 }, { "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Id": 855, - "Rank": 1 + "Rank": 1, + "Id": 855 }, { "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Id": 856, - "Rank": 1 + "Rank": 1, + "Id": 856 }, { "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Id": 857, - "Rank": 2 + "Rank": 2, + "Id": 857 }, { "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Id": 858, - "Rank": 3 + "Rank": 3, + "Id": 858 }, { "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Id": 859, - "Rank": 1 + "Rank": 1, + "Id": 859 }, { "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Id": 860, - "Rank": 2 + "Rank": 2, + "Id": 860 }, { "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Id": 861, - "Rank": 1 + "Rank": 1, + "Id": 861 }, { "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": 862, - "Rank": 2 + "Rank": 2, + "Id": 862 }, { "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": 863, - "Rank": 3 + "Rank": 3, + "Id": 863 }, { "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 864, - "Rank": 1 + "Rank": 1, + "Id": 864 }, { "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 865, - "Rank": 2 + "Rank": 2, + "Id": 865 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "Id": 866, - "Rank": 1 + "Rank": 1, + "Id": 866 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Id": 867, - "Rank": 2 + "Rank": 2, + "Id": 867 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Id": 868, - "Rank": 3 + "Rank": 3, + "Id": 868 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Id": 869, - "Rank": 4 + "Rank": 4, + "Id": 869 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Id": 870, - "Rank": 5 + "Rank": 5, + "Id": 870 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", - "Id": 871, - "Rank": 6 + "Rank": 6, + "Id": 871 }, { "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": 872, - "Rank": 7 + "Rank": 7, + "Id": 872 }, { "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 873, - "Rank": 1 + "Rank": 1, + "Id": 873 }, { "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Id": 874, - "Rank": 2 + "Rank": 2, + "Id": 874 }, { "CommandName": "Invoke-PnPQuery", "Command": "Invoke-PnPQuery -RetryCount 5", - "Id": 875, - "Rank": 1 + "Rank": 1, + "Id": 875 }, { "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 876, - "Rank": 1 + "Rank": 1, + "Id": 876 }, { "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Id": 877, - "Rank": 2 + "Rank": 2, + "Id": 877 }, { "CommandName": "Invoke-PnPSiteScript", "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Id": 878, - "Rank": 1 + "Rank": 1, + "Id": 878 }, { "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": 879, - "Rank": 1 + "Rank": 1, + "Id": 879 }, { "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": 880, - "Rank": 2 + "Rank": 2, + "Id": 880 }, { "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": 881, - "Rank": 3 + "Rank": 3, + "Id": 881 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Id": 882, - "Rank": 1 + "Rank": 1, + "Id": 882 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Id": 883, - "Rank": 2 + "Rank": 2, + "Id": 883 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Id": 884, - "Rank": 3 + "Rank": 3, + "Id": 884 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Id": 885, - "Rank": 4 + "Rank": 4, + "Id": 885 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Id": 886, - "Rank": 5 + "Rank": 5, + "Id": 886 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Id": 887, - "Rank": 6 + "Rank": 6, + "Id": 887 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Id": 888, - "Rank": 7 + "Rank": 7, + "Id": 888 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Id": 889, - "Rank": 8 + "Rank": 8, + "Id": 889 }, { "CommandName": "Invoke-PnPSPRestMethod", "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Id": 890, - "Rank": 1 + "Rank": 1, + "Id": 890 }, { "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Id": 891, - "Rank": 1 + "Rank": 1, + "Id": 891 }, { "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Id": 892, - "Rank": 2 + "Rank": 2, + "Id": 892 }, { "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Id": 893, - "Rank": 3 + "Rank": 3, + "Id": 893 }, { "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Id": 894, - "Rank": 1 + "Rank": 1, + "Id": 894 }, { "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Id": 895, - "Rank": 2 + "Rank": 2, + "Id": 895 }, { "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\"", - "Id": 896, - "Rank": 1 + "Rank": 1, + "Id": 896 }, { "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Id": 897, - "Rank": 2 + "Rank": 2, + "Id": 897 }, { "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb", - "Id": 898, - "Rank": 1 + "Rank": 1, + "Id": 898 }, { "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb $web -Recursive", - "Id": 899, - "Rank": 2 + "Rank": 2, + "Id": 899 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Id": 900, - "Rank": 1 + "Rank": 1, + "Id": 900 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Id": 901, - "Rank": 2 + "Rank": 2, + "Id": 901 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Id": 902, - "Rank": 3 + "Rank": 3, + "Id": 902 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Id": 903, - "Rank": 4 + "Rank": 4, + "Id": 903 }, { "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Id": 904, - "Rank": 1 + "Rank": 1, + "Id": 904 }, { "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Id": 905, - "Rank": 2 + "Rank": 2, + "Id": 905 }, { "CommandName": "Move-PnPListItemToRecycleBin", "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Id": 906, - "Rank": 1 + "Rank": 1, + "Id": 906 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Id": 907, - "Rank": 1 + "Rank": 1, + "Id": 907 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Id": 908, - "Rank": 2 + "Rank": 2, + "Id": 908 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Id": 909, - "Rank": 3 + "Rank": 3, + "Id": 909 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "Id": 910, - "Rank": 4 + "Rank": 4, + "Id": 910 }, { "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem", - "Id": 911, - "Rank": 1 + "Rank": 1, + "Id": 911 }, { "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Id": 912, - "Rank": 2 + "Rank": 2, + "Id": 912 }, { "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Force", - "Id": 913, - "Rank": 3 + "Rank": 3, + "Id": 913 }, { "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": 914, - "Rank": 1 + "Rank": 1, + "Id": 914 }, { "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Id": 915, - "Rank": 2 + "Rank": 2, + "Id": 915 }, { "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Id": 916, - "Rank": 3 + "Rank": 3, + "Id": 916 }, { "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": 917, - "Rank": 1 + "Rank": 1, + "Id": 917 }, { "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Id": 918, - "Rank": 2 + "Rank": 2, + "Id": 918 }, { "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Id": 919, - "Rank": 1 + "Rank": 1, + "Id": 919 }, { "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Id": 920, - "Rank": 2 + "Rank": 2, + "Id": 920 }, { "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Id": 921, - "Rank": 3 + "Rank": 3, + "Id": 921 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Id": 922, - "Rank": 1 + "Rank": 1, + "Id": 922 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Id": 923, - "Rank": 2 + "Rank": 2, + "Id": 923 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "Id": 924, - "Rank": 3 + "Rank": 3, + "Id": 924 }, { "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Id": 925, - "Rank": 1 + "Rank": 1, + "Id": 925 }, { "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Id": 926, - "Rank": 2 + "Rank": 2, + "Id": 926 }, { "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "Id": 927, - "Rank": 3 + "Rank": 3, + "Id": 927 }, { "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": 928, - "Rank": 1 + "Rank": 1, + "Id": 928 }, { "CommandName": "New-PnPGraphSubscription", "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", - "Id": 929, - "Rank": 2 + "Rank": 2, + "Id": 929 }, { "CommandName": "New-PnPGroup", "Command": "New-PnPGroup -Title \"My Site Users\"", - "Id": 930, - "Rank": 1 + "Rank": 1, + "Id": 930 }, { "CommandName": "New-PnPList", "Command": "New-PnPList -Title Announcements -Template Announcements", - "Id": 931, - "Rank": 1 + "Rank": 1, + "Id": 931 }, { "CommandName": "New-PnPList", "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Id": 932, - "Rank": 2 + "Rank": 2, + "Id": 932 }, { "CommandName": "New-PnPList", "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Id": 933, - "Rank": 3 + "Rank": 3, + "Id": 933 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Id": 934, - "Rank": 1 + "Rank": 1, + "Id": 934 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "Id": 935, - "Rank": 2 + "Rank": 2, + "Id": 935 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Id": 936, - "Rank": 3 + "Rank": 3, + "Id": 936 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Id": 937, - "Rank": 4 + "Rank": 4, + "Id": 937 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Id": 938, - "Rank": 5 + "Rank": 5, + "Id": 938 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Id": 939, - "Rank": 6 + "Rank": 6, + "Id": 939 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "Id": 940, - "Rank": 7 + "Rank": 7, + "Id": 940 }, { "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": 941, - "Rank": 1 + "Rank": 1, + "Id": 941 }, { "CommandName": "New-PnPMicrosoft365GroupSettings", "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "Id": 942, - "Rank": 2 + "Rank": 2, + "Id": 942 }, { "CommandName": "New-PnPPersonalSite", "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Id": 943, - "Rank": 1 + "Rank": 1, + "Id": 943 }, { "CommandName": "New-PnPPlannerPlan", "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Id": 944, - "Rank": 1 + "Rank": 1, + "Id": 944 }, { "CommandName": "New-PnPSdnProvider", "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Id": 945, - "Rank": 1 + "Rank": 1, + "Id": 945 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Id": 946, - "Rank": 1 + "Rank": 1, + "Id": 946 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Id": 947, - "Rank": 2 + "Rank": 2, + "Id": 947 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Id": 948, - "Rank": 3 + "Rank": 3, + "Id": 948 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Id": 949, - "Rank": 4 + "Rank": 4, + "Id": 949 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Id": 950, - "Rank": 5 + "Rank": 5, + "Id": 950 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Id": 951, - "Rank": 6 + "Rank": 6, + "Id": 951 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Id": 952, - "Rank": 7 + "Rank": 7, + "Id": 952 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Id": 953, - "Rank": 8 + "Rank": 8, + "Id": 953 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Id": 954, - "Rank": 9 + "Rank": 9, + "Id": 954 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Id": 955, - "Rank": 10 + "Rank": 10, + "Id": 955 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Id": 956, - "Rank": 11 + "Rank": 11, + "Id": 956 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Id": 957, - "Rank": 12 + "Rank": 12, + "Id": 957 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Id": 958, - "Rank": 13 + "Rank": 13, + "Id": 958 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Id": 959, - "Rank": 14 + "Rank": 14, + "Id": 959 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Id": 960, - "Rank": 15 + "Rank": 15, + "Id": 960 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "Id": 961, - "Rank": 16 + "Rank": 16, + "Id": 961 }, { "CommandName": "New-PnPSiteCollectionTermStore", "Command": "New-PnPSiteCollectionTermStore", - "Id": 962, - "Rank": 1 + "Rank": 1, + "Id": 962 }, { "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Id": 963, - "Rank": 1 + "Rank": 1, + "Id": 963 }, { "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Id": 964, - "Rank": 2 + "Rank": 2, + "Id": 964 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Id": 965, - "Rank": 1 + "Rank": 1, + "Id": 965 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Id": 966, - "Rank": 2 + "Rank": 2, + "Id": 966 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Id": 967, - "Rank": 3 + "Rank": 3, + "Id": 967 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Id": 968, - "Rank": 4 + "Rank": 4, + "Id": 968 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "Id": 969, - "Rank": 5 + "Rank": 5, + "Id": 969 }, { "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": 970, - "Rank": 6 + "Rank": 6, + "Id": 970 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Id": 971, - "Rank": 7 + "Rank": 7, + "Id": 971 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Id": 972, - "Rank": 8 + "Rank": 8, + "Id": 972 }, { "CommandName": "New-PnPTeamsApp", "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Id": 973, - "Rank": 1 + "Rank": 1, + "Id": 973 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Id": 974, - "Rank": 1 + "Rank": 1, + "Id": 974 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Id": 975, - "Rank": 2 + "Rank": 2, + "Id": 975 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Id": 976, - "Rank": 3 + "Rank": 3, + "Id": 976 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Id": 977, - "Rank": 4 + "Rank": 4, + "Id": 977 }, { "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": 978, - "Rank": 5 + "Rank": 5, + "Id": 978 }, { "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": 979, - "Rank": 6 + "Rank": 6, + "Id": 979 }, { "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": 980, - "Rank": 1 + "Rank": 1, + "Id": 980 }, { "CommandName": "New-PnPTenantSite", "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "Id": 981, - "Rank": 2 + "Rank": 2, + "Id": 981 }, { "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Id": 982, - "Rank": 1 + "Rank": 1, + "Id": 982 }, { "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 983, - "Rank": 2 + "Rank": 2, + "Id": 983 }, { "CommandName": "New-PnPTermGroup", "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Id": 984, - "Rank": 1 + "Rank": 1, + "Id": 984 }, { "CommandName": "New-PnPTermLabel", "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Id": 985, - "Rank": 1 + "Rank": 1, + "Id": 985 }, { "CommandName": "New-PnPTermSet", "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Id": 986, - "Rank": 1 + "Rank": 1, + "Id": 986 }, { "CommandName": "New-PnPUPABulkImportJob", "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "Id": 987, - "Rank": 1 + "Rank": 1, + "Id": 987 }, { "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": 988, - "Rank": 2 + "Rank": 2, + "Id": 988 }, { "CommandName": "New-PnPUser", "Command": "New-PnPUser -LoginName user@company.com", - "Id": 989, - "Rank": 1 + "Rank": 1, + "Id": 989 }, { "CommandName": "New-PnPWeb", "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "Id": 990, - "Rank": 1 + "Rank": 1, + "Id": 990 }, { "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 991, - "Rank": 1 + "Rank": 1, + "Id": 991 }, { "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Id": 992, - "Rank": 2 + "Rank": 2, + "Id": 992 }, { "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": 993, - "Rank": 1 + "Rank": 1, + "Id": 993 }, { "CommandName": "Publish-PnPContentType", "Command": "Publish-PnPContentType -ContentType 0x0101", - "Id": 994, - "Rank": 1 + "Rank": 1, + "Id": 994 }, { "CommandName": "Publish-PnPSyntexModel", "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Id": 995, - "Rank": 1 + "Rank": 1, + "Id": 995 }, { "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": 996, - "Rank": 2 + "Rank": 2, + "Id": 996 }, { "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Id": 997, - "Rank": 1 + "Rank": 1, + "Id": 997 }, { "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Id": 998, - "Rank": 2 + "Rank": 2, + "Id": 998 }, { "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Xml $xml", - "Id": 999, - "Rank": 3 + "Rank": 3, + "Id": 999 }, { "CommandName": "Read-PnPTenantTemplate", "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Id": 1000, - "Rank": 1 + "Rank": 1, + "Id": 1000 }, { "CommandName": "Register-PnPAppCatalogSite", "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Id": 1001, - "Rank": 1 + "Rank": 1, + "Id": 1001 }, { "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": 1002, - "Rank": 1 + "Rank": 1, + "Id": 1002 }, { "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": 1003, - "Rank": 2 + "Rank": 2, + "Id": 1003 }, { "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": 1004, - "Rank": 3 + "Rank": 3, + "Id": 1004 }, { "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": 1005, - "Rank": 4 + "Rank": 4, + "Id": 1005 }, { "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": 1006, - "Rank": 5 + "Rank": 5, + "Id": 1006 }, { "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": 1007, - "Rank": 6 + "Rank": 6, + "Id": 1007 }, { "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": 1008, - "Rank": 7 + "Rank": 7, + "Id": 1008 }, { "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Id": 1009, - "Rank": 1 + "Rank": 1, + "Id": 1009 }, { "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Id": 1010, - "Rank": 2 + "Rank": 2, + "Id": 1010 }, { "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess", - "Id": 1011, - "Rank": 1 + "Rank": 1, + "Id": 1011 }, { "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Id": 1012, - "Rank": 2 + "Rank": 2, + "Id": 1012 }, { "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Id": 1013, - "Rank": 3 + "Rank": 3, + "Id": 1013 }, { "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Id": 1014, - "Rank": 1 + "Rank": 1, + "Id": 1014 }, { "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Id": 1015, - "Rank": 2 + "Rank": 2, + "Id": 1015 }, { "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Id": 1016, - "Rank": 1 + "Rank": 1, + "Id": 1016 }, { "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Id": 1017, - "Rank": 2 + "Rank": 2, + "Id": 1017 }, { "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1018, - "Rank": 1 + "Rank": 1, + "Id": 1018 }, { "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1019, - "Rank": 2 + "Rank": 2, + "Id": 1019 }, { "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1020, - "Rank": 1 + "Rank": 1, + "Id": 1020 }, { "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Id": 1021, - "Rank": 2 + "Rank": 2, + "Id": 1021 }, { "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Id": 1022, - "Rank": 1 + "Rank": 1, + "Id": 1022 }, { "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Id": 1023, - "Rank": 2 + "Rank": 2, + "Id": 1023 }, { "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Id": 1024, - "Rank": 1 + "Rank": 1, + "Id": 1024 }, { "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 1025, - "Rank": 2 + "Rank": 2, + "Id": 1025 }, { "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Id": 1026, - "Rank": 1 + "Rank": 1, + "Id": 1026 }, { "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $group", - "Id": 1027, - "Rank": 2 + "Rank": 2, + "Id": 1027 }, { "CommandName": "Remove-PnPAzureADGroupMember", "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1028, - "Rank": 1 + "Rank": 1, + "Id": 1028 }, { "CommandName": "Remove-PnPAzureADGroupOwner", "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1029, - "Rank": 1 + "Rank": 1, + "Id": 1029 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Id": 1030, - "Rank": 1 + "Rank": 1, + "Id": 1030 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Id": 1031, - "Rank": 2 + "Rank": 2, + "Id": 1031 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 1032, - "Rank": 3 + "Rank": 3, + "Id": 1032 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Id": 1033, - "Rank": 4 + "Rank": 4, + "Id": 1033 }, { "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Id": 1034, - "Rank": 1 + "Rank": 1, + "Id": 1034 }, { "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Id": 1035, - "Rank": 2 + "Rank": 2, + "Id": 1035 }, { "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Id": 1036, - "Rank": 1 + "Rank": 1, + "Id": 1036 }, { "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Id": 1037, - "Rank": 2 + "Rank": 2, + "Id": 1037 }, { "CommandName": "Remove-PnPContentTypeFromList", "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Id": 1038, - "Rank": 1 + "Rank": 1, + "Id": 1038 }, { "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1039, - "Rank": 1 + "Rank": 1, + "Id": 1039 }, { "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Id": 1040, - "Rank": 2 + "Rank": 2, + "Id": 1040 }, { "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Id": 1041, - "Rank": 3 + "Rank": 3, + "Id": 1041 }, { "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 1042, - "Rank": 1 + "Rank": 1, + "Id": 1042 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 1043, - "Rank": 1 + "Rank": 1, + "Id": 1043 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 1044, - "Rank": 2 + "Rank": 2, + "Id": 1044 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Id": 1045, - "Rank": 3 + "Rank": 3, + "Id": 1045 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList", - "Id": 1046, - "Rank": 4 + "Rank": 4, + "Id": 1046 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver", - "Id": 1047, - "Rank": 5 + "Rank": 5, + "Id": 1047 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Site", - "Id": 1048, - "Rank": 6 + "Rank": 6, + "Id": 1048 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Web", - "Id": 1049, - "Rank": 7 + "Rank": 7, + "Id": 1049 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope All", - "Id": 1050, - "Rank": 8 + "Rank": 8, + "Id": 1050 }, { "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -Identity \"Speakers\"", - "Id": 1051, - "Rank": 1 + "Rank": 1, + "Id": 1051 }, { "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Id": 1052, - "Rank": 2 + "Rank": 2, + "Id": 1052 }, { "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Id": 1053, - "Rank": 1 + "Rank": 1, + "Id": 1053 }, { "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Id": 1054, - "Rank": 2 + "Rank": 2, + "Id": 1054 }, { "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Id": 1055, - "Rank": 1 + "Rank": 1, + "Id": 1055 }, { "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Id": 1056, - "Rank": 2 + "Rank": 2, + "Id": 1056 }, { "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Id": 1057, - "Rank": 3 + "Rank": 3, + "Id": 1057 }, { "CommandName": "Remove-PnPFileFromSiteTemplate", "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Id": 1058, - "Rank": 1 + "Rank": 1, + "Id": 1058 }, { "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 1059, - "Rank": 1 + "Rank": 1, + "Id": 1059 }, { "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Id": 1060, - "Rank": 2 + "Rank": 2, + "Id": 1060 }, { "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Id": 1061, - "Rank": 1 + "Rank": 1, + "Id": 1061 }, { "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Id": 1062, - "Rank": 2 + "Rank": 2, + "Id": 1062 }, { "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Id": 1063, - "Rank": 3 + "Rank": 3, + "Id": 1063 }, { "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "Id": 1064, - "Rank": 1 + "Rank": 1, + "Id": 1064 }, { "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "Id": 1065, - "Rank": 2 + "Rank": 2, + "Id": 1065 }, { "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", - "Id": 1066, - "Rank": 3 + "Rank": 3, + "Id": 1066 }, { "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "Id": 1067, - "Rank": 4 + "Rank": 4, + "Id": 1067 }, { "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Id": 1068, - "Rank": 1 + "Rank": 1, + "Id": 1068 }, { "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Id": 1069, - "Rank": 2 + "Rank": 2, + "Id": 1069 }, { "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 1070, - "Rank": 1 + "Rank": 1, + "Id": 1070 }, { "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Id": 1071, - "Rank": 2 + "Rank": 2, + "Id": 1071 }, { "CommandName": "Remove-PnPGraphSubscription", "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Id": 1072, - "Rank": 1 + "Rank": 1, + "Id": 1072 }, { "CommandName": "Remove-PnPGroup", "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Id": 1073, - "Rank": 1 + "Rank": 1, + "Id": 1073 }, { "CommandName": "Remove-PnPGroupMember", "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Id": 1074, - "Rank": 1 + "Rank": 1, + "Id": 1074 }, { "CommandName": "Remove-PnPHomeSite", "Command": "Remove-PnPHomeSite", - "Id": 1075, - "Rank": 1 + "Rank": 1, + "Id": 1075 }, { "CommandName": "Remove-PnPHubSiteAssociation", "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Id": 1076, - "Rank": 1 + "Rank": 1, + "Id": 1076 }, { "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Id": 1077, - "Rank": 1 + "Rank": 1, + "Id": 1077 }, { "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Id": 1078, - "Rank": 2 + "Rank": 2, + "Id": 1078 }, { "CommandName": "Remove-PnPIndexedProperty", "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Id": 1079, - "Rank": 1 + "Rank": 1, + "Id": 1079 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Id": 1080, - "Rank": 1 + "Rank": 1, + "Id": 1080 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Id": 1081, - "Rank": 2 + "Rank": 2, + "Id": 1081 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Id": 1082, - "Rank": 3 + "Rank": 3, + "Id": 1082 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Id": 1083, - "Rank": 4 + "Rank": 4, + "Id": 1083 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Id": 1084, - "Rank": 5 + "Rank": 5, + "Id": 1084 }, { "CommandName": "Remove-PnPKnowledgeHubSite", "Command": "Remove-PnPKnowledgeHubSite", - "Id": 1085, - "Rank": 1 + "Rank": 1, + "Id": 1085 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements", - "Id": 1086, - "Rank": 1 + "Rank": 1, + "Id": 1086 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Force", - "Id": 1087, - "Rank": 2 + "Rank": 2, + "Id": 1087 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Id": 1088, - "Rank": 3 + "Rank": 3, + "Id": 1088 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Id": 1089, - "Rank": 4 + "Rank": 4, + "Id": 1089 }, { "CommandName": "Remove-PnPListDesign", "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1090, - "Rank": 1 + "Rank": 1, + "Id": 1090 }, { "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Id": 1091, - "Rank": 1 + "Rank": 1, + "Id": 1091 }, { "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Id": 1092, - "Rank": 2 + "Rank": 2, + "Id": 1092 }, { "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\"", - "Id": 1093, - "Rank": 3 + "Rank": 3, + "Id": 1093 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Id": 1094, - "Rank": 1 + "Rank": 1, + "Id": 1094 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Id": 1095, - "Rank": 2 + "Rank": 2, + "Id": 1095 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Id": 1096, - "Rank": 3 + "Rank": 3, + "Id": 1096 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Id": 1097, - "Rank": 4 + "Rank": 4, + "Id": 1097 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Id": 1098, - "Rank": 5 + "Rank": 5, + "Id": 1098 }, { "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Id": 1099, - "Rank": 1 + "Rank": 1, + "Id": 1099 }, { "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Id": 1100, - "Rank": 2 + "Rank": 2, + "Id": 1100 }, { "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Id": 1101, - "Rank": 1 + "Rank": 1, + "Id": 1101 }, { "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Id": 1102, - "Rank": 2 + "Rank": 2, + "Id": 1102 }, { "CommandName": "Remove-PnPMicrosoft365GroupMember", "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1103, - "Rank": 1 + "Rank": 1, + "Id": 1103 }, { "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1104, - "Rank": 1 + "Rank": 1, + "Id": 1104 }, { "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Id": 1105, - "Rank": 1 + "Rank": 1, + "Id": 1105 }, { "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Id": 1106, - "Rank": 2 + "Rank": 2, + "Id": 1106 }, { "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Identity 1032", - "Id": 1107, - "Rank": 1 + "Rank": 1, + "Id": 1107 }, { "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Id": 1108, - "Rank": 2 + "Rank": 2, + "Id": 1108 }, { "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Id": 1109, - "Rank": 3 + "Rank": 3, + "Id": 1109 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Id": 1110, - "Rank": 1 + "Rank": 1, + "Id": 1110 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Id": 1111, - "Rank": 2 + "Rank": 2, + "Id": 1111 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Id": 1112, - "Rank": 3 + "Rank": 3, + "Id": 1112 }, { "CommandName": "Remove-PnPOrgNewsSite", "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Id": 1113, - "Rank": 1 + "Rank": 1, + "Id": 1113 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Id": 1114, - "Rank": 1 + "Rank": 1, + "Id": 1114 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Id": 1115, - "Rank": 2 + "Rank": 2, + "Id": 1115 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage $page", - "Id": 1116, - "Rank": 3 + "Rank": 3, + "Id": 1116 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Id": 1117, - "Rank": 4 + "Rank": 4, + "Id": 1117 }, { "CommandName": "Remove-PnPPageComponent", "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 1118, - "Rank": 1 + "Rank": 1, + "Id": 1118 }, { "CommandName": "Remove-PnPPlannerBucket", "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Id": 1119, - "Rank": 1 + "Rank": 1, + "Id": 1119 }, { "CommandName": "Remove-PnPPlannerPlan", "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Id": 1120, - "Rank": 1 + "Rank": 1, + "Id": 1120 }, { "CommandName": "Remove-PnPPlannerRoster", "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Id": 1121, - "Rank": 1 + "Rank": 1, + "Id": 1121 }, { "CommandName": "Remove-PnPPlannerRosterMember", "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 1122, - "Rank": 1 + "Rank": 1, + "Id": 1122 }, { "CommandName": "Remove-PnPPlannerTask", "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Id": 1123, - "Rank": 1 + "Rank": 1, + "Id": 1123 }, { "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Id": 1124, - "Rank": 1 + "Rank": 1, + "Id": 1124 }, { "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Id": 1125, - "Rank": 2 + "Rank": 2, + "Id": 1125 }, { "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Id": 1126, - "Rank": 3 + "Rank": 3, + "Id": 1126 }, { "CommandName": "Remove-PnPPublishingImageRendition", "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Id": 1127, - "Rank": 1 + "Rank": 1, + "Id": 1127 }, { "CommandName": "Remove-PnPRoleDefinition", "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Id": 1128, - "Rank": 1 + "Rank": 1, + "Id": 1128 }, { "CommandName": "Remove-PnPSdnProvider", "Command": "Remove-PnPSdnProvider -Confirm:false", - "Id": 1129, - "Rank": 1 + "Rank": 1, + "Id": 1129 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Id": 1130, - "Rank": 1 + "Rank": 1, + "Id": 1130 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Id": 1131, - "Rank": 2 + "Rank": 2, + "Id": 1131 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Id": 1132, - "Rank": 3 + "Rank": 3, + "Id": 1132 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 1133, - "Rank": 4 + "Rank": 4, + "Id": 1133 }, { "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 1134, - "Rank": 1 + "Rank": 1, + "Id": 1134 }, { "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 1135, - "Rank": 2 + "Rank": 2, + "Id": 1135 }, { "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Id": 1136, - "Rank": 1 + "Rank": 1, + "Id": 1136 }, { "CommandName": "Remove-PnPSiteCollectionTermStore", "Command": "Remove-PnPSiteCollectionTermStore", - "Id": 1137, - "Rank": 1 + "Rank": 1, + "Id": 1137 }, { "CommandName": "Remove-PnPSiteDesign", "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1138, - "Rank": 1 + "Rank": 1, + "Id": 1138 }, { "CommandName": "Remove-PnPSiteDesignTask", "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1139, - "Rank": 1 + "Rank": 1, + "Id": 1139 }, { "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1140, - "Rank": 1 + "Rank": 1, + "Id": 1140 }, { "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Id": 1141, - "Rank": 2 + "Rank": 2, + "Id": 1141 }, { "CommandName": "Remove-PnPSiteScript", "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1142, - "Rank": 1 + "Rank": 1, + "Id": 1142 }, { "CommandName": "Remove-PnPSiteUserInvitations", "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Id": 1143, - "Rank": 1 + "Rank": 1, + "Id": 1143 }, { "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey", - "Id": 1144, - "Rank": 1 + "Rank": 1, + "Id": 1144 }, { "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Id": 1145, - "Rank": 2 + "Rank": 2, + "Id": 1145 }, { "CommandName": "Remove-PnPStoredCredential", "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Id": 1146, - "Rank": 1 + "Rank": 1, + "Id": 1146 }, { "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Id": 1147, - "Rank": 1 + "Rank": 1, + "Id": 1147 }, { "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Id": 1148, - "Rank": 2 + "Rank": 2, + "Id": 1148 }, { "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Id": 1149, - "Rank": 1 + "Rank": 1, + "Id": 1149 }, { "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Id": 1150, - "Rank": 2 + "Rank": 2, + "Id": 1150 }, { "CommandName": "Remove-PnPTeamsChannel", "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Id": 1151, - "Rank": 1 + "Rank": 1, + "Id": 1151 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Id": 1152, - "Rank": 1 + "Rank": 1, + "Id": 1152 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Id": 1153, - "Rank": 2 + "Rank": 2, + "Id": 1153 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Id": 1154, - "Rank": 3 + "Rank": 3, + "Id": 1154 }, { "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Id": 1155, - "Rank": 1 + "Rank": 1, + "Id": 1155 }, { "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Id": 1156, - "Rank": 2 + "Rank": 2, + "Id": 1156 }, { "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", - "Id": 1157, - "Rank": 3 + "Rank": 3, + "Id": 1157 }, { "CommandName": "Remove-PnPTeamsTag", "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Id": 1158, - "Rank": 1 + "Rank": 1, + "Id": 1158 }, { "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Id": 1159, - "Rank": 1 + "Rank": 1, + "Id": 1159 }, { "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Id": 1160, - "Rank": 2 + "Rank": 2, + "Id": 1160 }, { "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Id": 1161, - "Rank": 1 + "Rank": 1, + "Id": 1161 }, { "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 1162, - "Rank": 2 + "Rank": 2, + "Id": 1162 }, { "CommandName": "Remove-PnPTenantCdnOrigin", "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Id": 1163, - "Rank": 1 + "Rank": 1, + "Id": 1163 }, { "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1164, - "Rank": 1 + "Rank": 1, + "Id": 1164 }, { "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Id": 1165, - "Rank": 2 + "Rank": 2, + "Id": 1165 }, { "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1166, - "Rank": 1 + "Rank": 1, + "Id": 1166 }, { "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Id": 1167, - "Rank": 2 + "Rank": 2, + "Id": 1167 }, { "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Id": 1168, - "Rank": 3 + "Rank": 3, + "Id": 1168 }, { "CommandName": "Remove-PnPTenantSyncClientRestriction", "Command": "Remove-PnPTenantSyncClientRestriction", - "Id": 1169, - "Rank": 1 + "Rank": 1, + "Id": 1169 }, { "CommandName": "Remove-PnPTenantTheme", "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Id": 1170, - "Rank": 1 + "Rank": 1, + "Id": 1170 }, { "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Id": 1171, - "Rank": 1 + "Rank": 1, + "Id": 1171 }, { "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 1172, - "Rank": 2 + "Rank": 2, + "Id": 1172 }, { "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Id": 1173, - "Rank": 1 + "Rank": 1, + "Id": 1173 }, { "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Id": 1174, - "Rank": 2 + "Rank": 2, + "Id": 1174 }, { "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Id": 1175, - "Rank": 3 + "Rank": 3, + "Id": 1175 }, { "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Id": 1176, - "Rank": 1 + "Rank": 1, + "Id": 1176 }, { "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 1177, - "Rank": 2 + "Rank": 2, + "Id": 1177 }, { "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity 23", - "Id": 1178, - "Rank": 1 + "Rank": 1, + "Id": 1178 }, { "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Id": 1179, - "Rank": 2 + "Rank": 2, + "Id": 1179 }, { "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Id": 1180, - "Rank": 3 + "Rank": 3, + "Id": 1180 }, { "CommandName": "Remove-PnPUserInfo", "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Id": 1181, - "Rank": 1 + "Rank": 1, + "Id": 1181 }, { "CommandName": "Remove-PnPUserProfile", "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Id": 1182, - "Rank": 1 + "Rank": 1, + "Id": 1182 }, { "CommandName": "Remove-PnPView", "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Id": 1183, - "Rank": 1 + "Rank": 1, + "Id": 1183 }, { "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Id": 1184, - "Rank": 1 + "Rank": 1, + "Id": 1184 }, { "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity projectA", - "Id": 1185, - "Rank": 1 + "Rank": 1, + "Id": 1185 }, { "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Id": 1186, - "Rank": 2 + "Rank": 2, + "Id": 1186 }, { "CommandName": "Remove-PnPWebhookSubscription", "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Id": 1187, - "Rank": 1 + "Rank": 1, + "Id": 1187 }, { "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 1188, - "Rank": 1 + "Rank": 1, + "Id": 1188 }, { "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Id": 1189, - "Rank": 2 + "Rank": 2, + "Id": 1189 }, { "CommandName": "Remove-PnPWikiPage", "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Id": 1190, - "Rank": 1 + "Rank": 1, + "Id": 1190 }, { "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Id": 1191, - "Rank": 1 + "Rank": 1, + "Id": 1191 }, { "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Id": 1192, - "Rank": 2 + "Rank": 2, + "Id": 1192 }, { "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Id": 1193, - "Rank": 3 + "Rank": 3, + "Id": 1193 }, { "CommandName": "Rename-PnPFolder", "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Id": 1194, - "Rank": 1 + "Rank": 1, + "Id": 1194 }, { "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1195, - "Rank": 1 + "Rank": 1, + "Id": 1195 }, { "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Id": 1196, - "Rank": 2 + "Rank": 2, + "Id": 1196 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken", - "Id": 1197, - "Rank": 1 + "Rank": 1, + "Id": 1197 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Id": 1198, - "Rank": 2 + "Rank": 2, + "Id": 1198 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Id": 1199, - "Rank": 3 + "Rank": 3, + "Id": 1199 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Id": 1200, - "Rank": 4 + "Rank": 4, + "Id": 1200 }, { "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Id": 1201, - "Rank": 1 + "Rank": 1, + "Id": 1201 }, { "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Id": 1202, - "Rank": 2 + "Rank": 2, + "Id": 1202 }, { "CommandName": "Request-PnPReIndexList", "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Id": 1203, - "Rank": 1 + "Rank": 1, + "Id": 1203 }, { "CommandName": "Request-PnPReIndexWeb", "Command": "Request-PnPReIndexWeb", - "Id": 1204, - "Rank": 1 + "Rank": 1, + "Id": 1204 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Id": 1205, - "Rank": 1 + "Rank": 1, + "Id": 1205 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Id": 1206, - "Rank": 2 + "Rank": 2, + "Id": 1206 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Id": 1207, - "Rank": 3 + "Rank": 3, + "Id": 1207 }, { "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Id": 1208, - "Rank": 1 + "Rank": 1, + "Id": 1208 }, { "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Id": 1209, - "Rank": 2 + "Rank": 2, + "Id": 1209 }, { "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\"", - "Id": 1210, - "Rank": 1 + "Rank": 1, + "Id": 1210 }, { "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Id": 1211, - "Rank": 2 + "Rank": 2, + "Id": 1211 }, { "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1212, - "Rank": 1 + "Rank": 1, + "Id": 1212 }, { "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Id": 1213, - "Rank": 1 + "Rank": 1, + "Id": 1213 }, { "CommandName": "Resolve-PnPFolder", "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Id": 1214, - "Rank": 1 + "Rank": 1, + "Id": 1214 }, { "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 1215, - "Rank": 1 + "Rank": 1, + "Id": 1215 }, { "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Id": 1216, - "Rank": 1 + "Rank": 1, + "Id": 1216 }, { "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Id": 1217, - "Rank": 2 + "Rank": 2, + "Id": 1217 }, { "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Id": 1218, - "Rank": 3 + "Rank": 3, + "Id": 1218 }, { "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Id": 1219, - "Rank": 1 + "Rank": 1, + "Id": 1219 }, { "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Id": 1220, - "Rank": 2 + "Rank": 2, + "Id": 1220 }, { "CommandName": "Restore-PnPRecycleBinItem", "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Id": 1221, - "Rank": 1 + "Rank": 1, + "Id": 1221 }, { "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1222, - "Rank": 1 + "Rank": 1, + "Id": 1222 }, { "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Id": 1223, - "Rank": 2 + "Rank": 2, + "Id": 1223 }, { "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1224, - "Rank": 1 + "Rank": 1, + "Id": 1224 }, { "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Id": 1225, - "Rank": 2 + "Rank": 2, + "Id": 1225 }, { "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Id": 1226, - "Rank": 3 + "Rank": 3, + "Id": 1226 }, { "CommandName": "Revoke-PnPAzureADAppSitePermission", "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Id": 1227, - "Rank": 1 + "Rank": 1, + "Id": 1227 }, { "CommandName": "Revoke-PnPHubSiteRights", "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 1228, - "Rank": 1 + "Rank": 1, + "Id": 1228 }, { "CommandName": "Revoke-PnPSiteDesignRights", "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 1229, - "Rank": 1 + "Rank": 1, + "Id": 1229 }, { "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Id": 1230, - "Rank": 1 + "Rank": 1, + "Id": 1230 }, { "CommandName": "Revoke-PnPUserSession", "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Id": 1231, - "Rank": 1 + "Rank": 1, + "Id": 1231 }, { "CommandName": "Save-PnPPageConversionLog", "Command": "Save-PnPPageConversionLog", - "Id": 1232, - "Rank": 1 + "Rank": 1, + "Id": 1232 }, { "CommandName": "Save-PnPSiteTemplate", "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Id": 1233, - "Rank": 1 + "Rank": 1, + "Id": 1233 }, { "CommandName": "Save-PnPTenantTemplate", "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Id": 1234, - "Rank": 1 + "Rank": 1, + "Id": 1234 }, { "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": 1235, - "Rank": 1 + "Rank": 1, + "Id": 1235 }, { "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": 1236, - "Rank": 2 + "Rank": 2, + "Id": 1236 }, { "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Id": 1237, - "Rank": 3 + "Rank": 3, + "Id": 1237 }, { "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": 1238, - "Rank": 4 + "Rank": 4, + "Id": 1238 }, { "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": 1239, - "Rank": 5 + "Rank": 5, + "Id": 1239 }, { "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": 1240, - "Rank": 6 + "Rank": 6, + "Id": 1240 }, { "CommandName": "Set-PnPAdaptiveScopeProperty", "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Id": 1241, - "Rank": 1 + "Rank": 1, + "Id": 1241 }, { "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1242, - "Rank": 1 + "Rank": 1, + "Id": 1242 }, { "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "Id": 1243, - "Rank": 2 + "Rank": 2, + "Id": 1243 }, { "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -On", - "Id": 1244, - "Rank": 1 + "Rank": 1, + "Id": 1244 }, { "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -Off", - "Id": 1245, - "Rank": 2 + "Rank": 2, + "Id": 1245 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -EnableAll", - "Id": 1246, - "Rank": 1 + "Rank": 1, + "Id": 1246 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -DisableAll", - "Id": 1247, - "Rank": 2 + "Rank": 2, + "Id": 1247 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7", - "Id": 1248, - "Rank": 3 + "Rank": 3, + "Id": 1248 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -TrimAuditLog", - "Id": 1249, - "Rank": 4 + "Rank": 4, + "Id": 1249 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Id": 1250, - "Rank": 5 + "Rank": 5, + "Id": 1250 }, { "CommandName": "Set-PnPAvailablePageLayouts", "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Id": 1251, - "Rank": 1 + "Rank": 1, + "Id": 1251 }, { "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Id": 1252, - "Rank": 1 + "Rank": 1, + "Id": 1252 }, { "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Id": 1253, - "Rank": 2 + "Rank": 2, + "Id": 1253 }, { "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Id": 1254, - "Rank": 1 + "Rank": 1, + "Id": 1254 }, { "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Id": 1255, - "Rank": 2 + "Rank": 2, + "Id": 1255 }, { "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Id": 1256, - "Rank": 3 + "Rank": 3, + "Id": 1256 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Id": 1257, - "Rank": 1 + "Rank": 1, + "Id": 1257 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Id": 1258, - "Rank": 2 + "Rank": 2, + "Id": 1258 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Id": 1259, - "Rank": 3 + "Rank": 3, + "Id": 1259 }, { "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Id": 1260, - "Rank": 1 + "Rank": 1, + "Id": 1260 }, { "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Id": 1261, - "Rank": 2 + "Rank": 2, + "Id": 1261 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Id": 1262, - "Rank": 1 + "Rank": 1, + "Id": 1262 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Id": 1263, - "Rank": 2 + "Rank": 2, + "Id": 1263 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Id": 1264, - "Rank": 3 + "Rank": 3, + "Id": 1264 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Id": 1265, - "Rank": 4 + "Rank": 4, + "Id": 1265 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Id": 1266, - "Rank": 1 + "Rank": 1, + "Id": 1266 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Id": 1267, - "Rank": 2 + "Rank": 2, + "Id": 1267 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Id": 1268, - "Rank": 3 + "Rank": 3, + "Id": 1268 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Id": 1269, - "Rank": 4 + "Rank": 4, + "Id": 1269 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Id": 1270, - "Rank": 5 + "Rank": 5, + "Id": 1270 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Id": 1271, - "Rank": 1 + "Rank": 1, + "Id": 1271 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Id": 1272, - "Rank": 2 + "Rank": 2, + "Id": 1272 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Id": 1273, - "Rank": 3 + "Rank": 3, + "Id": 1273 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Id": 1274, - "Rank": 4 + "Rank": 4, + "Id": 1274 }, { "CommandName": "Set-PnPDefaultContentTypeToList", "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Id": 1275, - "Rank": 1 + "Rank": 1, + "Id": 1275 }, { "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Id": 1276, - "Rank": 1 + "Rank": 1, + "Id": 1276 }, { "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Id": 1277, - "Rank": 2 + "Rank": 2, + "Id": 1277 }, { "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Id": 1278, - "Rank": 3 + "Rank": 3, + "Id": 1278 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Id": 1279, - "Rank": 1 + "Rank": 1, + "Id": 1279 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Id": 1280, - "Rank": 2 + "Rank": 2, + "Id": 1280 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Id": 1281, - "Rank": 3 + "Rank": 3, + "Id": 1281 }, { "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Id": 1282, - "Rank": 1 + "Rank": 1, + "Id": 1282 }, { "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Id": 1283, - "Rank": 2 + "Rank": 2, + "Id": 1283 }, { "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Id": 1284, - "Rank": 1 + "Rank": 1, + "Id": 1284 }, { "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Id": 1285, - "Rank": 2 + "Rank": 2, + "Id": 1285 }, { "CommandName": "Set-PnPField", "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Id": 1286, - "Rank": 3 + "Rank": 3, + "Id": 1286 }, { "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Id": 1287, - "Rank": 1 + "Rank": 1, + "Id": 1287 }, { "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Id": 1288, - "Rank": 2 + "Rank": 2, + "Id": 1288 }, { "CommandName": "Set-PnPFileCheckedOut", "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Id": 1289, - "Rank": 1 + "Rank": 1, + "Id": 1289 }, { "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1290, - "Rank": 1 + "Rank": 1, + "Id": 1290 }, { "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1291, - "Rank": 2 + "Rank": 2, + "Id": 1291 }, { "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Id": 1292, - "Rank": 3 + "Rank": 3, + "Id": 1292 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true", - "Id": 1293, - "Rank": 1 + "Rank": 1, + "Id": 1293 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Id": 1294, - "Rank": 2 + "Rank": 2, + "Id": 1294 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Id": 1295, - "Rank": 3 + "Rank": 3, + "Id": 1295 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -LogoUrl \"\"", - "Id": 1296, - "Rank": 4 + "Rank": 4, + "Id": 1296 }, { "CommandName": "Set-PnPGraphSubscription", "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Id": 1297, - "Rank": 1 + "Rank": 1, + "Id": 1297 }, { "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Id": 1298, - "Rank": 1 + "Rank": 1, + "Id": 1298 }, { "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Id": 1299, - "Rank": 2 + "Rank": 2, + "Id": 1299 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Id": 1300, - "Rank": 1 + "Rank": 1, + "Id": 1300 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Id": 1301, - "Rank": 2 + "Rank": 2, + "Id": 1301 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Id": 1302, - "Rank": 3 + "Rank": 3, + "Id": 1302 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Id": 1303, - "Rank": 4 + "Rank": 4, + "Id": 1303 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Id": 1304, - "Rank": 5 + "Rank": 5, + "Id": 1304 }, { "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Id": 1305, - "Rank": 1 + "Rank": 1, + "Id": 1305 }, { "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Id": 1306, - "Rank": 2 + "Rank": 2, + "Id": 1306 }, { "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Id": 1307, - "Rank": 1 + "Rank": 1, + "Id": 1307 }, { "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Id": 1308, - "Rank": 2 + "Rank": 2, + "Id": 1308 }, { "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Id": 1309, - "Rank": 1 + "Rank": 1, + "Id": 1309 }, { "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Id": 1310, - "Rank": 2 + "Rank": 2, + "Id": 1310 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Id": 1311, - "Rank": 1 + "Rank": 1, + "Id": 1311 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Id": 1312, - "Rank": 2 + "Rank": 2, + "Id": 1312 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Id": 1313, - "Rank": 3 + "Rank": 3, + "Id": 1313 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "Id": 1314, - "Rank": 4 + "Rank": 4, + "Id": 1314 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Id": 1315, - "Rank": 5 + "Rank": 5, + "Id": 1315 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Id": 1316, - "Rank": 6 + "Rank": 6, + "Id": 1316 }, { "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Id": 1317, - "Rank": 1 + "Rank": 1, + "Id": 1317 }, { "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Id": 1318, - "Rank": 2 + "Rank": 2, + "Id": 1318 }, { "CommandName": "Set-PnPIndexedProperties", "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Id": 1319, - "Rank": 1 + "Rank": 1, + "Id": 1319 }, { "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Id": 1320, - "Rank": 1 + "Rank": 1, + "Id": 1320 }, { "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Id": 1321, - "Rank": 2 + "Rank": 2, + "Id": 1321 }, { "CommandName": "Set-PnPKnowledgeHubSite", "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Id": 1322, - "Rank": 1 + "Rank": 1, + "Id": 1322 }, { "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Id": 1323, - "Rank": 1 + "Rank": 1, + "Id": 1323 }, { "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Id": 1324, - "Rank": 2 + "Rank": 2, + "Id": 1324 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Id": 1325, - "Rank": 1 + "Rank": 1, + "Id": 1325 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Id": 1326, - "Rank": 2 + "Rank": 2, + "Id": 1326 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Id": 1327, - "Rank": 3 + "Rank": 3, + "Id": 1327 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Id": 1328, - "Rank": 4 + "Rank": 4, + "Id": 1328 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Id": 1329, - "Rank": 5 + "Rank": 5, + "Id": 1329 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Id": 1330, - "Rank": 6 + "Rank": 6, + "Id": 1330 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Id": 1331, - "Rank": 7 + "Rank": 7, + "Id": 1331 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Id": 1332, - "Rank": 8 + "Rank": 8, + "Id": 1332 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Id": 1333, - "Rank": 9 + "Rank": 9, + "Id": 1333 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Id": 1334, - "Rank": 10 + "Rank": 10, + "Id": 1334 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Id": 1335, - "Rank": 11 + "Rank": 11, + "Id": 1335 }, { "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Id": 1336, - "Rank": 1 + "Rank": 1, + "Id": 1336 }, { "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Id": 1337, - "Rank": 2 + "Rank": 2, + "Id": 1337 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1338, - "Rank": 1 + "Rank": 1, + "Id": 1338 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1339, - "Rank": 2 + "Rank": 2, + "Id": 1339 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1340, - "Rank": 3 + "Rank": 3, + "Id": 1340 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Id": 1341, - "Rank": 4 + "Rank": 4, + "Id": 1341 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Id": 1342, - "Rank": 5 + "Rank": 5, + "Id": 1342 }, { "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Id": 1343, - "Rank": 1 + "Rank": 1, + "Id": 1343 }, { "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Id": 1344, - "Rank": 2 + "Rank": 2, + "Id": 1344 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1345, - "Rank": 1 + "Rank": 1, + "Id": 1345 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1346, - "Rank": 2 + "Rank": 2, + "Id": 1346 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Id": 1347, - "Rank": 3 + "Rank": 3, + "Id": 1347 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Id": 1348, - "Rank": 4 + "Rank": 4, + "Id": 1348 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Id": 1349, - "Rank": 5 + "Rank": 5, + "Id": 1349 }, { "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1350, - "Rank": 1 + "Rank": 1, + "Id": 1350 }, { "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1351, - "Rank": 2 + "Rank": 2, + "Id": 1351 }, { "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Id": 1352, - "Rank": 1 + "Rank": 1, + "Id": 1352 }, { "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Id": 1353, - "Rank": 2 + "Rank": 2, + "Id": 1353 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Id": 1354, - "Rank": 1 + "Rank": 1, + "Id": 1354 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Id": 1355, - "Rank": 2 + "Rank": 2, + "Id": 1355 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Id": 1356, - "Rank": 3 + "Rank": 3, + "Id": 1356 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Id": 1357, - "Rank": 4 + "Rank": 4, + "Id": 1357 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Id": 1358, - "Rank": 1 + "Rank": 1, + "Id": 1358 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Id": 1359, - "Rank": 2 + "Rank": 2, + "Id": 1359 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1360, - "Rank": 3 + "Rank": 3, + "Id": 1360 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Id": 1361, - "Rank": 1 + "Rank": 1, + "Id": 1361 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Id": 1362, - "Rank": 2 + "Rank": 2, + "Id": 1362 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1363, - "Rank": 3 + "Rank": 3, + "Id": 1363 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Id": 1364, - "Rank": 1 + "Rank": 1, + "Id": 1364 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Id": 1365, - "Rank": 2 + "Rank": 2, + "Id": 1365 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1366, - "Rank": 3 + "Rank": 3, + "Id": 1366 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Id": 1367, - "Rank": 1 + "Rank": 1, + "Id": 1367 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Id": 1368, - "Rank": 2 + "Rank": 2, + "Id": 1368 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1369, - "Rank": 3 + "Rank": 3, + "Id": 1369 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Id": 1370, - "Rank": 1 + "Rank": 1, + "Id": 1370 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Id": 1371, - "Rank": 2 + "Rank": 2, + "Id": 1371 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1372, - "Rank": 3 + "Rank": 3, + "Id": 1372 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Id": 1373, - "Rank": 1 + "Rank": 1, + "Id": 1373 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Id": 1374, - "Rank": 2 + "Rank": 2, + "Id": 1374 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1375, - "Rank": 3 + "Rank": 3, + "Id": 1375 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Id": 1376, - "Rank": 1 + "Rank": 1, + "Id": 1376 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Id": 1377, - "Rank": 2 + "Rank": 2, + "Id": 1377 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Id": 1378, - "Rank": 3 + "Rank": 3, + "Id": 1378 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Id": 1379, - "Rank": 4 + "Rank": 4, + "Id": 1379 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Id": 1380, - "Rank": 5 + "Rank": 5, + "Id": 1380 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Id": 1381, - "Rank": 6 + "Rank": 6, + "Id": 1381 }, { "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Id": 1382, - "Rank": 1 + "Rank": 1, + "Id": 1382 }, { "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Id": 1383, - "Rank": 2 + "Rank": 2, + "Id": 1383 }, { "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Id": 1384, - "Rank": 1 + "Rank": 1, + "Id": 1384 }, { "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -On", - "Id": 1385, - "Rank": 2 + "Rank": 2, + "Id": 1385 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Id": 1386, - "Rank": 1 + "Rank": 1, + "Id": 1386 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Id": 1387, - "Rank": 2 + "Rank": 2, + "Id": 1387 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Id": 1388, - "Rank": 3 + "Rank": 3, + "Id": 1388 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Id": 1389, - "Rank": 4 + "Rank": 4, + "Id": 1389 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Id": 1390, - "Rank": 5 + "Rank": 5, + "Id": 1390 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "Id": 1391, - "Rank": 6 + "Rank": 6, + "Id": 1391 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Id": 1392, - "Rank": 7 + "Rank": 7, + "Id": 1392 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "Id": 1393, - "Rank": 8 + "Rank": 8, + "Id": 1393 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "Id": 1394, - "Rank": 9 + "Rank": 9, + "Id": 1394 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Id": 1395, - "Rank": 10 + "Rank": 10, + "Id": 1395 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "Id": 1396, - "Rank": 11 + "Rank": 11, + "Id": 1396 }, { "CommandName": "Set-PnPPageTextPart", "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Id": 1397, - "Rank": 1 + "Rank": 1, + "Id": 1397 }, { "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Id": 1398, - "Rank": 1 + "Rank": 1, + "Id": 1398 }, { "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Id": 1399, - "Rank": 2 + "Rank": 2, + "Id": 1399 }, { "CommandName": "Set-PnPPlannerBucket", "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Id": 1400, - "Rank": 1 + "Rank": 1, + "Id": 1400 }, { "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Id": 1401, - "Rank": 1 + "Rank": 1, + "Id": 1401 }, { "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Id": 1402, - "Rank": 2 + "Rank": 2, + "Id": 1402 }, { "CommandName": "Set-PnPPlannerPlan", "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Id": 1403, - "Rank": 1 + "Rank": 1, + "Id": 1403 }, { "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Id": 1404, - "Rank": 1 + "Rank": 1, + "Id": 1404 }, { "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Id": 1405, - "Rank": 2 + "Rank": 2, + "Id": 1405 }, { "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Id": 1406, - "Rank": 3 + "Rank": 3, + "Id": 1406 }, { "CommandName": "Set-PnPPlannerUserPolicy", "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Id": 1407, - "Rank": 1 + "Rank": 1, + "Id": 1407 }, { "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Id": 1408, - "Rank": 1 + "Rank": 1, + "Id": 1408 }, { "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Id": 1409, - "Rank": 2 + "Rank": 2, + "Id": 1409 }, { "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Id": 1410, - "Rank": 3 + "Rank": 3, + "Id": 1410 }, { "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Id": 1411, - "Rank": 1 + "Rank": 1, + "Id": 1411 }, { "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled", - "Id": 1412, - "Rank": 2 + "Rank": 2, + "Id": 1412 }, { "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Id": 1413, - "Rank": 3 + "Rank": 3, + "Id": 1413 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Id": 1414, - "Rank": 1 + "Rank": 1, + "Id": 1414 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Id": 1415, - "Rank": 2 + "Rank": 2, + "Id": 1415 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Id": 1416, - "Rank": 3 + "Rank": 3, + "Id": 1416 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Id": 1417, - "Rank": 4 + "Rank": 4, + "Id": 1417 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Id": 1418, - "Rank": 1 + "Rank": 1, + "Id": 1418 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Id": 1419, - "Rank": 2 + "Rank": 2, + "Id": 1419 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Id": 1420, - "Rank": 3 + "Rank": 3, + "Id": 1420 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 1421, - "Rank": 4 + "Rank": 4, + "Id": 1421 }, { "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": 1422, - "Rank": 1 + "Rank": 1, + "Id": 1422 }, { "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": 1423, - "Rank": 2 + "Rank": 2, + "Id": 1423 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Id": 1424, - "Rank": 1 + "Rank": 1, + "Id": 1424 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Id": 1425, - "Rank": 2 + "Rank": 2, + "Id": 1425 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Id": 1426, - "Rank": 3 + "Rank": 3, + "Id": 1426 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Id": 1427, - "Rank": 4 + "Rank": 4, + "Id": 1427 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Id": 1428, - "Rank": 5 + "Rank": 5, + "Id": 1428 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Id": 1429, - "Rank": 6 + "Rank": 6, + "Id": 1429 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Id": 1430, - "Rank": 7 + "Rank": 7, + "Id": 1430 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification \"HBI\"", - "Id": 1431, - "Rank": 1 + "Rank": 1, + "Id": 1431 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification $null", - "Id": 1432, - "Rank": 2 + "Rank": 2, + "Id": 1432 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows", - "Id": 1433, - "Rank": 3 + "Rank": 3, + "Id": 1433 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows:$false", - "Id": 1434, - "Rank": 4 + "Rank": 4, + "Id": 1434 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Id": 1435, - "Rank": 5 + "Rank": 5, + "Id": 1435 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -NoScriptSite $false", - "Id": 1436, - "Rank": 6 + "Rank": 6, + "Id": 1436 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "Id": 1437, - "Rank": 7 + "Rank": 7, + "Id": 1437 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "Id": 1438, - "Rank": 8 + "Rank": 8, + "Id": 1438 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "Id": 1439, - "Rank": 9 + "Rank": 9, + "Id": 1439 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "Id": 1440, - "Rank": 10 + "Rank": 10, + "Id": 1440 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "Id": 1441, - "Rank": 11 + "Rank": 11, + "Id": 1441 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "Id": 1442, - "Rank": 12 + "Rank": 12, + "Id": 1442 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "Id": 1443, - "Rank": 13 + "Rank": 13, + "Id": 1443 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "Id": 1444, - "Rank": 14 + "Rank": 14, + "Id": 1444 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "Id": 1445, - "Rank": 15 + "Rank": 15, + "Id": 1445 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "Id": 1446, - "Rank": 16 + "Rank": 16, + "Id": 1446 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -CancelVPForExistingLibs", - "Id": 1447, - "Rank": 17 + "Rank": 17, + "Id": 1447 }, { "CommandName": "Set-PnPSiteClassification", "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Id": 1448, - "Rank": 1 + "Rank": 1, + "Id": 1448 }, { "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Open", - "Id": 1449, - "Rank": 1 + "Rank": 1, + "Id": 1449 }, { "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Closed", - "Id": 1450, - "Rank": 2 + "Rank": 2, + "Id": 1450 }, { "CommandName": "Set-PnPSiteDesign", "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Id": 1451, - "Rank": 1 + "Rank": 1, + "Id": 1451 }, { "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": 1452, - "Rank": 2 + "Rank": 2, + "Id": 1452 }, { "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "Id": 1453, - "Rank": 1 + "Rank": 1, + "Id": 1453 }, { "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Id": 1454, - "Rank": 2 + "Rank": 2, + "Id": 1454 }, { "CommandName": "Set-PnPSitePolicy", "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Id": 1455, - "Rank": 1 + "Rank": 1, + "Id": 1455 }, { "CommandName": "Set-PnPSiteScript", "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Id": 1456, - "Rank": 1 + "Rank": 1, + "Id": 1456 }, { "CommandName": "Set-PnPSiteScriptPackage", "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Id": 1457, - "Rank": 1 + "Rank": 1, + "Id": 1457 }, { "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Id": 1458, - "Rank": 1 + "Rank": 1, + "Id": 1458 }, { "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Id": 1459, - "Rank": 2 + "Rank": 2, + "Id": 1459 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Id": 1460, - "Rank": 1 + "Rank": 1, + "Id": 1460 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Id": 1461, - "Rank": 2 + "Rank": 2, + "Id": 1461 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Id": 1462, - "Rank": 3 + "Rank": 3, + "Id": 1462 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Id": 1463, - "Rank": 4 + "Rank": 4, + "Id": 1463 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Id": 1464, - "Rank": 5 + "Rank": 5, + "Id": 1464 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Id": 1465, - "Rank": 6 + "Rank": 6, + "Id": 1465 }, { "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Id": 1466, - "Rank": 1 + "Rank": 1, + "Id": 1466 }, { "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Id": 1467, - "Rank": 2 + "Rank": 2, + "Id": 1467 }, { "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 1468, - "Rank": 1 + "Rank": 1, + "Id": 1468 }, { "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 1469, - "Rank": 2 + "Rank": 2, + "Id": 1469 }, { "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 1470, - "Rank": 1 + "Rank": 1, + "Id": 1470 }, { "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 1471, - "Rank": 2 + "Rank": 2, + "Id": 1471 }, { "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Id": 1472, - "Rank": 1 + "Rank": 1, + "Id": 1472 }, { "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Id": 1473, - "Rank": 2 + "Rank": 2, + "Id": 1473 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Id": 1474, - "Rank": 1 + "Rank": 1, + "Id": 1474 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Id": 1475, - "Rank": 2 + "Rank": 2, + "Id": 1475 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Id": 1476, - "Rank": 3 + "Rank": 3, + "Id": 1476 }, { "CommandName": "Set-PnPTeamifyPromptHidden", "Command": "Set-PnPTeamifyPromptHidden", - "Id": 1477, - "Rank": 1 + "Rank": 1, + "Id": 1477 }, { "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Id": 1478, - "Rank": 1 + "Rank": 1, + "Id": 1478 }, { "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Id": 1479, - "Rank": 2 + "Rank": 2, + "Id": 1479 }, { "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "Id": 1480, - "Rank": 1 + "Rank": 1, + "Id": 1480 }, { "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Id": 1481, - "Rank": 2 + "Rank": 2, + "Id": 1481 }, { "CommandName": "Set-PnPTeamsTab", "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Id": 1482, - "Rank": 1 + "Rank": 1, + "Id": 1482 }, { "CommandName": "Set-PnPTeamsTag", "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Id": 1483, - "Rank": 1 + "Rank": 1, + "Id": 1483 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Id": 1484, - "Rank": 1 + "Rank": 1, + "Id": 1484 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Id": 1485, - "Rank": 2 + "Rank": 2, + "Id": 1485 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Id": 1486, - "Rank": 3 + "Rank": 3, + "Id": 1486 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Id": 1487, - "Rank": 4 + "Rank": 4, + "Id": 1487 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Id": 1488, - "Rank": 1 + "Rank": 1, + "Id": 1488 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Id": 1489, - "Rank": 2 + "Rank": 2, + "Id": 1489 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Id": 1490, - "Rank": 3 + "Rank": 3, + "Id": 1490 }, { "CommandName": "Set-PnPTeamsTeamPicture", "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Id": 1491, - "Rank": 1 + "Rank": 1, + "Id": 1491 }, { "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Id": 1492, - "Rank": 1 + "Rank": 1, + "Id": 1492 }, { "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Id": 1493, - "Rank": 2 + "Rank": 2, + "Id": 1493 }, { "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", - "Id": 1494, - "Rank": 1 + "Rank": 1, + "Id": 1494 }, { "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Id": 1495, - "Rank": 2 + "Rank": 2, + "Id": 1495 }, { "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Id": 1496, - "Rank": 3 + "Rank": 3, + "Id": 1496 }, { "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Id": 1497, - "Rank": 4 + "Rank": 4, + "Id": 1497 }, { "CommandName": "Set-PnPTenantAppCatalogUrl", "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Id": 1498, - "Rank": 1 + "Rank": 1, + "Id": 1498 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Id": 1499, - "Rank": 1 + "Rank": 1, + "Id": 1499 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Id": 1500, - "Rank": 2 + "Rank": 2, + "Id": 1500 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Id": 1501, - "Rank": 3 + "Rank": 3, + "Id": 1501 }, { "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", - "Id": 1502, - "Rank": 1 + "Rank": 1, + "Id": 1502 }, { "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Id": 1503, - "Rank": 2 + "Rank": 2, + "Id": 1503 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Id": 1504, - "Rank": 1 + "Rank": 1, + "Id": 1504 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Id": 1505, - "Rank": 2 + "Rank": 2, + "Id": 1505 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 1506, - "Rank": 3 + "Rank": 3, + "Id": 1506 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 1507, - "Rank": 4 + "Rank": 4, + "Id": 1507 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Id": 1508, - "Rank": 5 + "Rank": 5, + "Id": 1508 }, { "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Id": 1509, - "Rank": 1 + "Rank": 1, + "Id": 1509 }, { "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Id": 1510, - "Rank": 2 + "Rank": 2, + "Id": 1510 }, { "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Id": 1511, - "Rank": 1 + "Rank": 1, + "Id": 1511 }, { "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1512, - "Rank": 2 + "Rank": 2, + "Id": 1512 }, { "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1513, - "Rank": 3 + "Rank": 3, + "Id": 1513 }, { "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "Id": 1514, - "Rank": 4 + "Rank": 4, + "Id": 1514 }, { "CommandName": "Set-PnPTermGroup", "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Id": 1515, - "Rank": 1 + "Rank": 1, + "Id": 1515 }, { "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Id": 1516, - "Rank": 1 + "Rank": 1, + "Id": 1516 }, { "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Id": 1517, - "Rank": 2 + "Rank": 2, + "Id": 1517 }, { "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Id": 1518, - "Rank": 3 + "Rank": 3, + "Id": 1518 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme", - "Id": 1519, - "Rank": 1 + "Rank": 1, + "Id": 1519 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Id": 1520, - "Rank": 2 + "Rank": 2, + "Id": 1520 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Id": 1521, - "Rank": 3 + "Rank": 3, + "Id": 1521 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Id": 1522, - "Rank": 4 + "Rank": 4, + "Id": 1522 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Id": 1523, - "Rank": 1 + "Rank": 1, + "Id": 1523 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Id": 1524, - "Rank": 2 + "Rank": 2, + "Id": 1524 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Id": 1525, - "Rank": 3 + "Rank": 3, + "Id": 1525 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -Off", - "Id": 1526, - "Rank": 4 + "Rank": 4, + "Id": 1526 }, { "CommandName": "Set-PnPUserOneDriveQuota", "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Id": 1527, - "Rank": 1 + "Rank": 1, + "Id": 1527 }, { "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Id": 1528, - "Rank": 1 + "Rank": 1, + "Id": 1528 }, { "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Id": 1529, - "Rank": 2 + "Rank": 2, + "Id": 1529 }, { "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "Id": 1530, - "Rank": 1 + "Rank": 1, + "Id": 1530 }, { "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Id": 1531, - "Rank": 2 + "Rank": 2, + "Id": 1531 }, { "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "Id": 1532, - "Rank": 3 + "Rank": 3, + "Id": 1532 }, { "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Id": 1533, - "Rank": 4 + "Rank": 4, + "Id": 1533 }, { "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": 1534, - "Rank": 1 + "Rank": 1, + "Id": 1534 }, { "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Id": 1535, - "Rank": 2 + "Rank": 2, + "Id": 1535 }, { "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": 1536, - "Rank": 3 + "Rank": 3, + "Id": 1536 }, { "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Id": 1537, - "Rank": 4 + "Rank": 4, + "Id": 1537 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Id": 1538, - "Rank": 1 + "Rank": 1, + "Id": 1538 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Id": 1539, - "Rank": 2 + "Rank": 2, + "Id": 1539 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Id": 1540, - "Rank": 3 + "Rank": 3, + "Id": 1540 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -NoCrawl:$true", - "Id": 1541, - "Rank": 4 + "Rank": 4, + "Id": 1541 }, { "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Id": 1542, - "Rank": 1 + "Rank": 1, + "Id": 1542 }, { "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Id": 1543, - "Rank": 2 + "Rank": 2, + "Id": 1543 }, { "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Id": 1544, - "Rank": 3 + "Rank": 3, + "Id": 1544 }, { "CommandName": "Set-PnPWebhookSubscription", "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Id": 1545, - "Rank": 1 + "Rank": 1, + "Id": 1545 }, { "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": 1546, - "Rank": 2 + "Rank": 2, + "Id": 1546 }, { "CommandName": "Set-PnPWebPartProperty", "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", - "Id": 1547, - "Rank": 1 + "Rank": 1, + "Id": 1547 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Id": 1548, - "Rank": 1 + "Rank": 1, + "Id": 1548 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Id": 1549, - "Rank": 2 + "Rank": 2, + "Id": 1549 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Id": 1550, - "Rank": 3 + "Rank": 3, + "Id": 1550 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Id": 1551, - "Rank": 4 + "Rank": 4, + "Id": 1551 }, { "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme MyTheme", - "Id": 1552, - "Rank": 1 + "Rank": 1, + "Id": 1552 }, { "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Id": 1553, - "Rank": 2 + "Rank": 2, + "Id": 1553 }, { "CommandName": "Set-PnPWikiPageContent", "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Id": 1554, - "Rank": 1 + "Rank": 1, + "Id": 1554 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Id": 1555, - "Rank": 1 + "Rank": 1, + "Id": 1555 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Id": 1556, - "Rank": 2 + "Rank": 2, + "Id": 1556 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Id": 1557, - "Rank": 3 + "Rank": 3, + "Id": 1557 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Id": 1558, - "Rank": 4 + "Rank": 4, + "Id": 1558 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Id": 1559, - "Rank": 5 + "Rank": 5, + "Id": 1559 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", - "Id": 1560, - "Rank": 6 + "Rank": 6, + "Id": 1560 }, { "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Id": 1561, - "Rank": 1 + "Rank": 1, + "Id": 1561 }, { "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Id": 1562, - "Rank": 2 + "Rank": 2, + "Id": 1562 }, { "CommandName": "Sync-PnPAppToTeams", "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1563, - "Rank": 1 + "Rank": 1, + "Id": 1563 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Id": 1564, - "Rank": 1 + "Rank": 1, + "Id": 1564 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Id": 1565, - "Rank": 2 + "Rank": 2, + "Id": 1565 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Id": 1566, - "Rank": 3 + "Rank": 3, + "Id": 1566 }, { "CommandName": "Test-PnPListItemIsRecord", "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Id": 1567, - "Rank": 1 + "Rank": 1, + "Id": 1567 }, { "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Id": 1568, - "Rank": 1 + "Rank": 1, + "Id": 1568 }, { "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1569, - "Rank": 1 + "Rank": 1, + "Id": 1569 }, { "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Id": 1570, - "Rank": 2 + "Rank": 2, + "Id": 1570 }, { "CommandName": "Test-PnPTenantTemplate", "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Id": 1571, - "Rank": 1 + "Rank": 1, + "Id": 1571 }, { "CommandName": "Undo-PnPFileCheckedOut", "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Id": 1572, - "Rank": 1 + "Rank": 1, + "Id": 1572 }, { "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1573, - "Rank": 1 + "Rank": 1, + "Id": 1573 }, { "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1574, - "Rank": 2 + "Rank": 2, + "Id": 1574 }, { "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1575, - "Rank": 1 + "Rank": 1, + "Id": 1575 }, { "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1576, - "Rank": 2 + "Rank": 2, + "Id": 1576 }, { "CommandName": "Unpublish-PnPContentType", "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Id": 1577, - "Rank": 1 + "Rank": 1, + "Id": 1577 }, { "CommandName": "Unpublish-PnPSyntexModel", "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Id": 1578, - "Rank": 1 + "Rank": 1, + "Id": 1578 }, { "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": 1579, - "Rank": 2 + "Rank": 2, + "Id": 1579 }, { "CommandName": "Unregister-PnPHubSite", "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Id": 1580, - "Rank": 1 + "Rank": 1, + "Id": 1580 }, { "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1581, - "Rank": 1 + "Rank": 1, + "Id": 1581 }, { "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1582, - "Rank": 2 + "Rank": 2, + "Id": 1582 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Id": 1583, - "Rank": 1 + "Rank": 1, + "Id": 1583 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Id": 1584, - "Rank": 2 + "Rank": 2, + "Id": 1584 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Id": 1585, - "Rank": 3 + "Rank": 3, + "Id": 1585 }, { "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Id": 1586, - "Rank": 1 + "Rank": 1, + "Id": 1586 }, { "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Id": 1587, - "Rank": 2 + "Rank": 2, + "Id": 1587 }, { "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "Id": 1588, - "Rank": 3 + "Rank": 3, + "Id": 1588 }, { "CommandName": "Update-PnPTeamsApp", "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Id": 1589, - "Rank": 1 + "Rank": 1, + "Id": 1589 }, { "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 1590, - "Rank": 1 + "Rank": 1, + "Id": 1590 }, { "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Id": 1591, - "Rank": 2 + "Rank": 2, + "Id": 1591 }, { "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Id": 1592, - "Rank": 3 + "Rank": 3, + "Id": 1592 }, { "CommandName": "Update-PnPUserType", "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Id": 1593, - "Rank": 1 + "Rank": 1, + "Id": 1593 } ] diff --git a/version.txt b/version.txt index 39f81b94b..0f99c1376 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.108 \ No newline at end of file +2.2.109 \ No newline at end of file From a556fb6c857dafcaa5f6d5ed9c589edfb66e2e76 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Thu, 26 Oct 2023 02:37:12 +0000 Subject: [PATCH 115/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 3186 ++++++++--------- version.txt | 2 +- 3 files changed, 1595 insertions(+), 1595 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 93d1c2138..da472a520 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -222cae088508a51b99e819d1516f005e064a9a30 \ No newline at end of file +be2ce83df5d2dd42ab497c16793de061e1502473 \ 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 a6ca3cbaf..2bb300e86 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9560 +1,9560 @@ [ { "CommandName": "Add-PnPAlert", - "Command": "Add-PnPAlert -List \"Demo List\"", "Rank": 1, + "Command": "Add-PnPAlert -List \"Demo List\"", "Id": 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)", "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 \"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\"", "Id": 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))", "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-PnPApp", - "Command": "Add-PnPApp -Path ./myapp.sppkg", "Rank": 1, + "Command": "Add-PnPApp -Path ./myapp.sppkg", "Id": 5 }, { "CommandName": "Add-PnPApp", - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Rank": 2, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Id": 6 }, { "CommandName": "Add-PnPApp", - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Rank": 3, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Id": 7 }, { "CommandName": "Add-PnPApp", - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Rank": 4, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Id": 8 }, { "CommandName": "Add-PnPApplicationCustomizer", - "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", "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-PnPAvailableSiteClassification", - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Rank": 1, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Id": 10 }, { "CommandName": "Add-PnPAvailableSiteClassification", - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Rank": 2, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Id": 11 }, { "CommandName": "Add-PnPAzureADGroupMember", - "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\"", "Id": 12 }, { "CommandName": "Add-PnPAzureADGroupMember", - "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 \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 13 }, { "CommandName": "Add-PnPAzureADGroupMember", - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Id": 14 }, { "CommandName": "Add-PnPAzureADGroupOwner", - "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\"", "Id": 15 }, { "CommandName": "Add-PnPAzureADGroupOwner", - "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 \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 16 }, { "CommandName": "Add-PnPAzureADGroupOwner", - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Id": 17 }, { "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "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 \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "Id": 18 }, { "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "Rank": 2, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "Id": 19 }, { "CommandName": "Add-PnPContentType", - "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 $ct", "Id": 20 }, { "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\"", "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 Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "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\"", "Rank": 4, + "Command": "Add-PnPContentType -Name \"Project Item\"", "Id": 23 }, { "CommandName": "Add-PnPContentType", - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "Rank": 5, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "Id": 24 }, { "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Rank": 1, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Id": 25 }, { "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Rank": 2, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Id": 26 }, { "CommandName": "Add-PnPContentTypeToDocumentSet", - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Id": 27 }, { "CommandName": "Add-PnPContentTypeToDocumentSet", - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Id": 28 }, { "CommandName": "Add-PnPContentTypeToList", - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Rank": 1, + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Id": 29 }, { "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`\"}\"", "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-PnPDataRowsToSiteTemplate", - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "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' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "Rank": 2, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "Id": 32 }, { "CommandName": "Add-PnPDocumentSet", - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Rank": 1, + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Id": 33 }, { "CommandName": "Add-PnPEventReceiver", - "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "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 -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 WebAdding -Synchronization Synchronous", "Id": 35 }, { "CommandName": "Add-PnPEventReceiver", - "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 ListAdding -Synchronization Synchronous -Scope Site", "Id": 36 }, { "CommandName": "Add-PnPEventReceiver", - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "Rank": 4, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "Id": 37 }, { "CommandName": "Add-PnPField", - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Rank": 1, + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Id": 38 }, { "CommandName": "Add-PnPField", - "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 \"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 \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"", "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\" -Field \"MyTestCol\"", "Rank": 4, + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "Id": 41 }, { "CommandName": "Add-PnPField", - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "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 Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Rank": 6, + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Id": 43 }, { "CommandName": "Add-PnPFieldToContentType", - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Id": 44 }, { "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Rank": 1, + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Id": 45 }, { "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Rank": 2, + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Id": 46 }, { "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "Rank": 3, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "Id": 47 }, { "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "Rank": 4, + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "Id": 48 }, { "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "Rank": 5, + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "Id": 49 }, { "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "Rank": 6, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "Id": 50 }, { "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Rank": 7, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Id": 51 }, { "CommandName": "Add-PnPFile", - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Rank": 8, + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Id": 52 }, { "CommandName": "Add-PnPFileAnonymousSharingLink", - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "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\" -Type Edit -Password \"PnPRocks!\"", "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 View -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "Id": 55 }, { "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "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\" -Type Edit", "Rank": 2, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "Id": 57 }, { "CommandName": "Add-PnPFileSharingInvite", - "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", "Id": 58 }, { "CommandName": "Add-PnPFileSharingInvite", - "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 -SendInvitation -Role Owner", "Id": 59 }, { "CommandName": "Add-PnPFileSharingInvite", - "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-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "Id": 60 }, { "CommandName": "Add-PnPFileToSiteTemplate", - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Rank": 1, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Id": 61 }, { "CommandName": "Add-PnPFileToSiteTemplate", - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "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 template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "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 $sourceFilePath -Folder $targetFolder -Container $container", "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 -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Rank": 5, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Id": 65 }, { "CommandName": "Add-PnPFileUserSharingLink", - "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\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 66 }, { "CommandName": "Add-PnPFileUserSharingLink", - "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-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 67 }, { "CommandName": "Add-PnPFlowOwner", - "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 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 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 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 CanViewWithShare", "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 username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", "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-PnPFolder", - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Id": 72 }, { "CommandName": "Add-PnPFolder", - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Rank": 2, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Id": 73 }, { "CommandName": "Add-PnPFolder", - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Rank": 3, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Id": 74 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "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\" -Type Edit -Password \"PnPRocks!\"", "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!\" -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "Id": 77 }, { "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "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\" -Type Edit", "Rank": 2, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Id": 79 }, { "CommandName": "Add-PnPFolderSharingInvite", - "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", "Id": 80 }, { "CommandName": "Add-PnPFolderSharingInvite", - "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 -SendInvitation -Role Owner", "Id": 81 }, { "CommandName": "Add-PnPFolderSharingInvite", - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "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-PnPFolderUserSharingLink", - "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\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 83 }, { "CommandName": "Add-PnPFolderUserSharingLink", - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "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-PnPGroupMember", - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "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 5", "Rank": 2, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Id": 86 }, { "CommandName": "Add-PnPHtmlPublishingPageLayout", - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Rank": 1, + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Id": 87 }, { "CommandName": "Add-PnPHubSiteAssociation", - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Rank": 1, + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Id": 88 }, { "CommandName": "Add-PnPHubToHubAssociation", - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "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 -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/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "Id": 90 }, { "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\"", "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-PnPJavaScriptBlock", - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "Rank": 1, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "Id": 92 }, { "CommandName": "Add-PnPJavaScriptBlock", - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "Rank": 2, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "Id": 93 }, { "CommandName": "Add-PnPJavaScriptLink", - "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 -Sequence 9999 -Scope Site", "Id": 94 }, { "CommandName": "Add-PnPJavaScriptLink", - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Rank": 2, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Id": 95 }, { "CommandName": "Add-PnPListDesign", - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "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 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-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", - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Rank": 1, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Id": 98 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "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 -IncludeSecurity", "Rank": 3, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Id": 100 }, { "CommandName": "Add-PnPListItem", - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "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\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "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\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "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 @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "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\"} -Label \"Public\"", "Rank": 5, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Id": 105 }, { "CommandName": "Add-PnPListItemAttachment", - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "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 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "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.mp4\" -Stream $fileStream", "Rank": 3, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Id": 108 }, { "CommandName": "Add-PnPListItemComment", - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Rank": 1, + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Id": 109 }, { "CommandName": "Add-PnPMasterPage", - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Rank": 1, + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Id": 110 }, { "CommandName": "Add-PnPMicrosoft365GroupMember", - "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\"", "Id": 111 }, { "CommandName": "Add-PnPMicrosoft365GroupMember", - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 112 }, { "CommandName": "Add-PnPMicrosoft365GroupOwner", - "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\"", "Id": 113 }, { "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Command": "Add-PnPMicrosoft365GroupOwner -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\" -RemoveExisting", "Id": 114 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "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 -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Id": 116 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Rank": 3, + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Id": 117 }, { "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "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 USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "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\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "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 Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "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 \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Rank": 5, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Id": 122 }, { "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Rank": 6, + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Id": 123 }, { "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Rank": 7, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Id": 124 }, { "CommandName": "Add-PnPNavigationNode", - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Rank": 8, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Id": 125 }, { "CommandName": "Add-PnPOrgAssetsLibrary", - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "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\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"", "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\" -CdnType Private", "Rank": 3, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Id": 128 }, { "CommandName": "Add-PnPOrgNewsSite", - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Rank": 1, + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Id": 129 }, { "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\"", "Rank": 1, + "Command": "Add-PnPPage -Name \"NewPage\"", "Id": 130 }, { "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Rank": 2, + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Id": 131 }, { "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Rank": 3, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Id": 132 }, { "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Rank": 4, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Id": 133 }, { "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Rank": 5, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Id": 134 }, { "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Rank": 6, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Id": 135 }, { "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Id": 136 }, { "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Rank": 8, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Id": 137 }, { "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Id": 138 }, { "CommandName": "Add-PnPPage", - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Id": 139 }, { "CommandName": "Add-PnPPageImageWebPart", - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "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\" -ImageWidth 400 -ImageHeight 200 -Caption \"Caption text\" -AlternativeText \"Alt text\" -Link \"https://pnp.github.io\"", "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-PnPPageSection", - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Rank": 1, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Id": 142 }, { "CommandName": "Add-PnPPageSection", - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Rank": 2, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Id": 143 }, { "CommandName": "Add-PnPPageTextPart", - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Rank": 1, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Id": 144 }, { "CommandName": "Add-PnPPageTextPart", - "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\"", "Id": 145 }, { "CommandName": "Add-PnPPageTextPart", - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", "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-PnPPageWebPart", - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Rank": 1, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Id": 147 }, { "CommandName": "Add-PnPPageWebPart", - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Rank": 2, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Id": 148 }, { "CommandName": "Add-PnPPageWebPart", - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Rank": 3, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Id": 149 }, { "CommandName": "Add-PnPPlannerBucket", - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Rank": 1, + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Id": 150 }, { "CommandName": "Add-PnPPlannerBucket", - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Rank": 2, + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Id": 151 }, { "CommandName": "Add-PnPPlannerRoster", - "Command": "Add-PnPPlannerRoster", "Rank": 1, + "Command": "Add-PnPPlannerRoster", "Id": 152 }, { "CommandName": "Add-PnPPlannerRosterMember", - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 153 }, { "CommandName": "Add-PnPPlannerTask", - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 1, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Id": 154 }, { "CommandName": "Add-PnPPlannerTask", - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 2, + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Id": 155 }, { "CommandName": "Add-PnPPlannerTask", - "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-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Id": 156 }, { "CommandName": "Add-PnPPublishingImageRendition", - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Id": 157 }, { "CommandName": "Add-PnPPublishingPage", - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "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' -Folder '/Pages/folder'", "Rank": 2, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Id": 159 }, { "CommandName": "Add-PnPPublishingPageLayout", - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Rank": 1, + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Id": 160 }, { "CommandName": "Add-PnPRoleDefinition", - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Rank": 1, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Id": 161 }, { "CommandName": "Add-PnPRoleDefinition", - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Rank": 2, + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Id": 162 }, { "CommandName": "Add-PnPRoleDefinition", - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Rank": 3, + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Id": 163 }, { "CommandName": "Add-PnPSiteCollectionAdmin", - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Id": 164 }, { "CommandName": "Add-PnPSiteCollectionAdmin", - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 165 }, { "CommandName": "Add-PnPSiteCollectionAdmin", - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Rank": 3, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Id": 166 }, { "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Command": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, + "Command": "Add-PnPSiteCollectionAppCatalog", "Id": 167 }, { "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 2, + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Id": 168 }, { "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", "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 -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/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/my images/logo.png\"", "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-PnPSiteDesignFromWeb", - "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", "Id": 172 }, { "CommandName": "Add-PnPSiteDesignFromWeb", - "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 -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Id": 173 }, { "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", "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-PnPSiteDesignTask", - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "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 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 2, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Id": 176 }, { "CommandName": "Add-PnPSiteScript", - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Rank": 1, + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Id": 177 }, { "CommandName": "Add-PnPSiteScriptPackage", - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Rank": 1, + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Id": 178 }, { "CommandName": "Add-PnPSiteTemplate", - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Rank": 1, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Id": 179 }, { "CommandName": "Add-PnPStoredCredential", - "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", "Id": 180 }, { "CommandName": "Add-PnPStoredCredential", - "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)", "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)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"", "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-PnPTaxonomyField", - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Rank": 1, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Id": 183 }, { "CommandName": "Add-PnPTaxonomyField", - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Rank": 2, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Id": 184 }, { "CommandName": "Add-PnPTeamsChannel", - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "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 \"My Team\" -DisplayName \"My standard channel\"", "Rank": 2, + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Id": 186 }, { "CommandName": "Add-PnPTeamsChannel", - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "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 \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Rank": 4, + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Id": 188 }, { "CommandName": "Add-PnpTeamsChannelUser", - "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 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 \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Rank": 2, + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Id": 190 }, { "CommandName": "Add-PnPTeamsTab", - "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 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 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 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 SharePointPageAndList -WebSiteUrl \"https://contoso.sharepoint.com/sites/Marketing/SitePages/Home.aspx\"", "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 Excel Tab\" -Type Excel -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/My Excel File.csv\" -EntityId 6", "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-PnPTeamsTeam", - "Command": "Add-PnPTeamsTeam", "Rank": 1, + "Command": "Add-PnPTeamsTeam", "Id": 195 }, { "CommandName": "Add-PnPTeamsUser", - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "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 Member", "Rank": 2, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Id": 197 }, { "CommandName": "Add-PnPTeamsUser", - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "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 -User \"jane@doe.com\" -Role Member -Channel Private", "Rank": 4, + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Id": 199 }, { "CommandName": "Add-PnPTenantCdnOrigin", - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Id": 200 }, { "CommandName": "Add-PnPTenantSequence", - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Rank": 1, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Id": 201 }, { "CommandName": "Add-PnPTenantSequenceSite", - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Rank": 1, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Id": 202 }, { "CommandName": "Add-PnPTenantSequenceSubSite", - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Rank": 1, + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Id": 203 }, { "CommandName": "Add-PnPTermToTerm", - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Rank": 1, + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Id": 204 }, { "CommandName": "Add-PnPView", - "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\"", "Id": 205 }, { "CommandName": "Add-PnPView", - "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\" -Paged -RowLimit 100", "Id": 206 }, { "CommandName": "Add-PnPView", - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "Rank": 3, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "Id": 207 }, { "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\"", "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 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 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 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-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", - "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", "Id": 211 }, { "CommandName": "Add-PnPWebhookSubscription", - "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\"", "Id": 212 }, { "CommandName": "Add-PnPWebhookSubscription", - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "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-PnPWebPartToWebPartPage", - "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\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "Id": 214 }, { "CommandName": "Add-PnPWebPartToWebPartPage", - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Rank": 2, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Id": 215 }, { "CommandName": "Add-PnPWebPartToWikiPage", - "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\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "Id": 216 }, { "CommandName": "Add-PnPWebPartToWikiPage", - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Rank": 2, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Id": 217 }, { "CommandName": "Add-PnPWikiPage", - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Rank": 1, + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Id": 218 }, { "CommandName": "Clear-PnPAzureADGroupMember", - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Rank": 1, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Id": 219 }, { "CommandName": "Clear-PnPAzureADGroupOwner", - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Rank": 1, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Id": 220 }, { "CommandName": "Clear-PnPDefaultColumnValues", - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Rank": 1, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Id": 221 }, { "CommandName": "Clear-PnPDefaultColumnValues", - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Rank": 2, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Id": 222 }, { "CommandName": "Clear-PnPListItemAsRecord", - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Id": 223 }, { "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Rank": 1, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Id": 224 }, { "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Rank": 1, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Id": 225 }, { "CommandName": "Clear-PnpRecycleBinItem", - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Id": 226 }, { "CommandName": "Clear-PnpRecycleBinItem", - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Rank": 2, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Id": 227 }, { "CommandName": "Clear-PnpRecycleBinItem", - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Rank": 3, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Id": 228 }, { "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Command": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, + "Command": "Clear-PnPTenantAppCatalogUrl", "Id": 229 }, { "CommandName": "Clear-PnPTenantRecycleBinItem", - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "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\" -Wait", "Rank": 2, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Id": 231 }, { "CommandName": "Connect-PnPOnline", - "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", "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": "Convert-PnPFolderToSiteTemplate", - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Rank": 1, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Id": 233 }, { "CommandName": "Convert-PnPFolderToSiteTemplate", - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Rank": 2, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Id": 234 }, { "CommandName": "Convert-PnPSiteTemplate", - "Command": "Convert-PnPSiteTemplate -Path template.xml", "Rank": 1, + "Command": "Convert-PnPSiteTemplate -Path template.xml", "Id": 235 }, { "CommandName": "Convert-PnPSiteTemplate", - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Rank": 2, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Id": 236 }, { "CommandName": "Convert-PnPSiteTemplate", - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Rank": 3, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Id": 237 }, { "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Rank": 1, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Id": 238 }, { "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Rank": 2, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Id": 239 }, { "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Rank": 1, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Id": 240 }, { "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Rank": 2, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Id": 241 }, { "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Rank": 3, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Id": 242 }, { "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Rank": 4, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Id": 243 }, { "CommandName": "ConvertTo-PnPPage", - "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 -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 244 }, { "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Rank": 6, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Id": 245 }, { "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Rank": 7, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Id": 246 }, { "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "Rank": 8, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "Id": 247 }, { "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 9, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 248 }, { "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Rank": 10, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Id": 249 }, { "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Rank": 11, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Id": 250 }, { "CommandName": "ConvertTo-PnPPage", - "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\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 251 }, { "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 13, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 252 }, { "CommandName": "ConvertTo-PnPPage", - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Rank": 14, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Id": 253 }, { "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 254 }, { "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Id": 255 }, { "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Id": 256 }, { "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 257 }, { "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Id": 258 }, { "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Id": 259 }, { "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Id": 260 }, { "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 261 }, { "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Id": 262 }, { "CommandName": "Copy-PnPFile", - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Id": 263 }, { "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 264 }, { "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Id": 265 }, { "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Id": 266 }, { "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 267 }, { "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Id": 268 }, { "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Id": 269 }, { "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Id": 270 }, { "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 271 }, { "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Id": 272 }, { "CommandName": "Copy-PnPFolder", - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Id": 273 }, { "CommandName": "Copy-PnPItemProxy", - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Rank": 1, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Id": 274 }, { "CommandName": "Copy-PnPList", - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Rank": 1, + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Id": 275 }, { "CommandName": "Copy-PnPList", - "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", "Id": 276 }, { "CommandName": "Copy-PnPList", - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Rank": 3, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Id": 277 }, { "CommandName": "Copy-PnPList", - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "Rank": 4, + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "Id": 278 }, { "CommandName": "Copy-PnPTeamsTeam", - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Rank": 1, + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Id": 279 }, { "CommandName": "Copy-PnPTeamsTeam", - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Rank": 2, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Id": 280 }, { "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", "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": 281 }, { "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", "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": 282 }, { "CommandName": "Disable-PnPFeature", - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 283 }, { "CommandName": "Disable-PnPFeature", - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Id": 284 }, { "CommandName": "Disable-PnPFeature", - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Id": 285 }, { "CommandName": "Disable-PnPPageScheduling", - "Command": "Disable-PnPPageScheduling", "Rank": 1, + "Command": "Disable-PnPPageScheduling", "Id": 286 }, { "CommandName": "Disable-PnPPowerShellTelemetry", - "Command": "Disable-PnPPowerShellTelemetry", "Rank": 1, + "Command": "Disable-PnPPowerShellTelemetry", "Id": 287 }, { "CommandName": "Disable-PnPPowerShellTelemetry", - "Command": "Disable-PnPPowerShellTelemetry -Force", "Rank": 2, + "Command": "Disable-PnPPowerShellTelemetry -Force", "Id": 288 }, { "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Command": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, + "Command": "Disable-PnPSharingForNonOwnersOfSite", "Id": 289 }, { "CommandName": "Disable-PnPSiteClassification", - "Command": "Disable-PnPSiteClassification", "Rank": 1, + "Command": "Disable-PnPSiteClassification", "Id": 290 }, { "CommandName": "Disconnect-PnPOnline", - "Command": "Disconnect-PnPOnline", "Rank": 1, + "Command": "Disconnect-PnPOnline", "Id": 291 }, { "CommandName": "Enable-PnPCommSite", - "Command": "Enable-PnPCommSite", "Rank": 1, + "Command": "Enable-PnPCommSite", "Id": 292 }, { "CommandName": "Enable-PnPCommSite", - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Rank": 2, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Id": 293 }, { "CommandName": "Enable-PnPFeature", - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 294 }, { "CommandName": "Enable-PnPFeature", - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Id": 295 }, { "CommandName": "Enable-PnPFeature", - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Id": 296 }, { "CommandName": "Enable-PnPPageScheduling", - "Command": "Enable-PnPPageScheduling", "Rank": 1, + "Command": "Enable-PnPPageScheduling", "Id": 297 }, { "CommandName": "Enable-PnPPowerShellTelemetry", - "Command": "Enable-PnPPowerShellTelemetry", "Rank": 1, + "Command": "Enable-PnPPowerShellTelemetry", "Id": 298 }, { "CommandName": "Enable-PnPPowerShellTelemetry", - "Command": "Enable-PnPPowerShellTelemetry -Force", "Rank": 2, + "Command": "Enable-PnPPowerShellTelemetry -Force", "Id": 299 }, { "CommandName": "Enable-PnPSiteClassification", - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Rank": 1, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Id": 300 }, { "CommandName": "Enable-PnPSiteClassification", - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 2, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Id": 301 }, { "CommandName": "Export-PnPListToSiteTemplate", - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Rank": 1, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Id": 302 }, { "CommandName": "Export-PnPListToSiteTemplate", - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Rank": 2, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Id": 303 }, { "CommandName": "Export-PnPPage", - "Command": "Export-PnPPage -Identity Home.aspx", "Rank": 1, + "Command": "Export-PnPPage -Identity Home.aspx", "Id": 304 }, { "CommandName": "Export-PnPPageMapping", - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Rank": 1, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Id": 305 }, { "CommandName": "Export-PnPPageMapping", - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Rank": 2, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Id": 306 }, { "CommandName": "Export-PnPPageMapping", - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Rank": 3, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Id": 307 }, { "CommandName": "Export-PnPTaxonomy", - "Command": "Export-PnPTaxonomy", "Rank": 1, + "Command": "Export-PnPTaxonomy", "Id": 308 }, { "CommandName": "Export-PnPTaxonomy", - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Rank": 2, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Id": 309 }, { "CommandName": "Export-PnPTaxonomy", - "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", "Id": 310 }, { "CommandName": "Export-PnPTaxonomy", - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Rank": 4, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Id": 311 }, { "CommandName": "Export-PnPTermGroupToXml", - "Command": "Export-PnPTermGroupToXml", "Rank": 1, + "Command": "Export-PnPTermGroupToXml", "Id": 312 }, { "CommandName": "Export-PnPTermGroupToXml", - "Command": "Export-PnPTermGroupToXml -Out output.xml", "Rank": 2, + "Command": "Export-PnPTermGroupToXml -Out output.xml", "Id": 313 }, { "CommandName": "Export-PnPTermGroupToXml", - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Rank": 3, + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Id": 314 }, { "CommandName": "Export-PnPUserInfo", - "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\"", "Id": 315 }, { "CommandName": "Export-PnPUserInfo", - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "Id": 316 }, { "CommandName": "Export-PnPUserProfile", - "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Rank": 1, + "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Id": 317 }, { "CommandName": "Export-PnPUserProfile", - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Id": 318 }, { "CommandName": "Find-PnPFile", - "Command": "Find-PnPFile -Match *.master", "Rank": 1, + "Command": "Find-PnPFile -Match *.master", "Id": 319 }, { "CommandName": "Find-PnPFile", - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Rank": 2, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Id": 320 }, { "CommandName": "Find-PnPFile", - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Rank": 3, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Id": 321 }, { "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken", "Rank": 1, + "Command": "Get-PnPAccessToken", "Id": 322 }, { "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken -Decoded", "Rank": 2, + "Command": "Get-PnPAccessToken -Decoded", "Id": 323 }, { "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Rank": 3, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Id": 324 }, { "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Rank": 4, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Id": 325 }, { "CommandName": "Get-PnPAccessToken", - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Rank": 5, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Id": 326 }, { "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert", "Rank": 1, + "Command": "Get-PnPAlert", "Id": 327 }, { "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -List \"Demo List\"", "Rank": 2, + "Command": "Get-PnPAlert -List \"Demo List\"", "Id": 328 }, { "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 3, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 329 }, { "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Rank": 4, + "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Id": 330 }, { "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -AllUsers", "Rank": 5, + "Command": "Get-PnPAlert -AllUsers", "Id": 331 }, { "CommandName": "Get-PnPAlert", - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Rank": 6, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Id": 332 }, { "CommandName": "Get-PnPApp", - "Command": "Get-PnPApp", "Rank": 1, + "Command": "Get-PnPApp", "Id": 333 }, { "CommandName": "Get-PnPApp", - "Command": "Get-PnPApp -Scope Site", "Rank": 2, + "Command": "Get-PnPApp -Scope Site", "Id": 334 }, { "CommandName": "Get-PnPApp", - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 3, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 335 }, { "CommandName": "Get-PnPAppErrors", - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Rank": 1, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Id": 336 }, { "CommandName": "Get-PnPAppErrors", - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Rank": 2, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Id": 337 }, { "CommandName": "Get-PnPAppInfo", - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Rank": 1, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Id": 338 }, { "CommandName": "Get-PnPAppInfo", - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 2, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 339 }, { "CommandName": "Get-PnPAppInfo", - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Rank": 3, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Id": 340 }, { "CommandName": "Get-PnPApplicationCustomizer", - "Command": "Get-PnPApplicationCustomizer", "Rank": 1, + "Command": "Get-PnPApplicationCustomizer", "Id": 341 }, { "CommandName": "Get-PnPApplicationCustomizer", - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 342 }, { "CommandName": "Get-PnPApplicationCustomizer", - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Rank": 3, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Id": 343 }, { "CommandName": "Get-PnPAuditing", - "Command": "Get-PnPAuditing", "Rank": 1, + "Command": "Get-PnPAuditing", "Id": 344 }, { "CommandName": "Get-PnPAuthenticationRealm", - "Command": "Get-PnPAuthenticationRealm", "Rank": 1, + "Command": "Get-PnPAuthenticationRealm", "Id": 345 }, { "CommandName": "Get-PnPAuthenticationRealm", - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Rank": 2, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Id": 346 }, { "CommandName": "Get-PnPAvailableLanguage", - "Command": "Get-PnPAvailableLanguage", "Rank": 1, + "Command": "Get-PnPAvailableLanguage", "Id": 347 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", - "Command": "Get-PnPAvailableSensitivityLabel", "Rank": 1, + "Command": "Get-PnPAvailableSensitivityLabel", "Id": 348 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Rank": 2, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Id": 349 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Rank": 3, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Id": 350 }, { "CommandName": "Get-PnPAvailableSiteClassification", - "Command": "Get-PnPAvailableSiteClassification", "Rank": 1, + "Command": "Get-PnPAvailableSiteClassification", "Id": 351 }, { "CommandName": "Get-PnPAzureACSPrincipal", - "Command": "Get-PnPAzureACSPrincipal", "Rank": 1, + "Command": "Get-PnPAzureACSPrincipal", "Id": 352 }, { "CommandName": "Get-PnPAzureACSPrincipal", - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Rank": 2, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Id": 353 }, { "CommandName": "Get-PnPAzureACSPrincipal", - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Rank": 3, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Id": 354 }, { "CommandName": "Get-PnPAzureACSPrincipal", - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Rank": 4, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Id": 355 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 356 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Rank": 2, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Id": 357 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Rank": 3, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Id": 358 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Command": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, + "Command": "Get-PnPAzureADActivityReportSignIn", "Id": 359 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Rank": 2, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Id": 360 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Rank": 3, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Id": 361 }, { "CommandName": "Get-PnPAzureADApp", - "Command": "Get-PnPAzureADApp", "Rank": 1, + "Command": "Get-PnPAzureADApp", "Id": 362 }, { "CommandName": "Get-PnPAzureADApp", - "Command": "Get-PnPAzureADApp -Identity MyApp", "Rank": 2, + "Command": "Get-PnPAzureADApp -Identity MyApp", "Id": 363 }, { "CommandName": "Get-PnPAzureADApp", - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 364 }, { "CommandName": "Get-PnPAzureADApp", - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Rank": 4, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Id": 365 }, { "CommandName": "Get-PnPAzureADAppPermission", - "Command": "Get-PnPAzureADAppPermission", "Rank": 1, + "Command": "Get-PnPAzureADAppPermission", "Id": 366 }, { "CommandName": "Get-PnPAzureADAppPermission", - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Rank": 2, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Id": 367 }, { "CommandName": "Get-PnPAzureADAppPermission", - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 368 }, { "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission", "Rank": 1, + "Command": "Get-PnPAzureADAppSitePermission", "Id": 369 }, { "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Id": 370 }, { "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Rank": 3, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Id": 371 }, { "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Rank": 4, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Id": 372 }, { "CommandName": "Get-PnPAzureADAppSitePermission", - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Rank": 5, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Id": 373 }, { "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup", "Rank": 1, + "Command": "Get-PnPAzureADGroup", "Id": 374 }, { "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup -Identity $groupId", "Rank": 2, + "Command": "Get-PnPAzureADGroup -Identity $groupId", "Id": 375 }, { "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Rank": 3, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Id": 376 }, { "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Rank": 4, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Id": 377 }, { "CommandName": "Get-PnPAzureADGroup", - "Command": "Get-PnPAzureADGroup -Identity $group", "Rank": 5, + "Command": "Get-PnPAzureADGroup -Identity $group", "Id": 378 }, { "CommandName": "Get-PnPAzureADGroupMember", - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Rank": 1, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Id": 379 }, { "CommandName": "Get-PnPAzureADGroupMember", - "Command": "Get-PnPAzureADGroupMember -Identity $group", "Rank": 2, + "Command": "Get-PnPAzureADGroupMember -Identity $group", "Id": 380 }, { "CommandName": "Get-PnPAzureADGroupOwner", - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Rank": 1, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Id": 381 }, { "CommandName": "Get-PnPAzureADGroupOwner", - "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Rank": 2, + "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Id": 382 }, { "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal", "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipal", "Id": 383 }, { "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Id": 384 }, { "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Rank": 3, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Id": 385 }, { "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Rank": 4, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Id": 386 }, { "CommandName": "Get-PnPAzureADServicePrincipal", - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Rank": 5, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Id": 387 }, { "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 388 }, { "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Id": 389 }, { "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 390 }, { "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Id": 391 }, { "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser", "Rank": 1, + "Command": "Get-PnPAzureADUser", "Id": 392 }, { "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -EndIndex 50", "Rank": 2, + "Command": "Get-PnPAzureADUser -EndIndex 50", "Id": 393 }, { "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 3, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Id": 394 }, { "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Rank": 4, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Id": 395 }, { "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Rank": 5, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Id": 396 }, { "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Rank": 6, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Id": 397 }, { "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Rank": 7, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Id": 398 }, { "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Delta", "Rank": 8, + "Command": "Get-PnPAzureADUser -Delta", "Id": 399 }, { "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Rank": 9, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Id": 400 }, { "CommandName": "Get-PnPAzureADUser", - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Rank": 10, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Id": 401 }, { "CommandName": "Get-PnPAzureCertificate", - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Rank": 1, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Id": 402 }, { "CommandName": "Get-PnPAzureCertificate", - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Rank": 2, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Id": 403 }, { "CommandName": "Get-PnPAzureCertificate", - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Rank": 3, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Id": 404 }, { "CommandName": "Get-PnPBrowserIdleSignout", - "Command": "Get-PnPBrowserIdleSignout", "Rank": 1, + "Command": "Get-PnPBrowserIdleSignout", "Id": 405 }, { "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Rank": 1, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Id": 406 }, { "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Command": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, + "Command": "Get-PnPBuiltInDesignPackageVisibility", "Id": 407 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, + "Command": "Get-PnPBuiltInSiteTemplateSettings", "Id": 408 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Rank": 2, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Id": 409 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Rank": 3, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Id": 410 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Id": 411 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Rank": 5, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Id": 412 }, { "CommandName": "Get-PnPChangeLog", - "Command": "Get-PnPChangeLog", "Rank": 1, + "Command": "Get-PnPChangeLog", "Id": 413 }, { "CommandName": "Get-PnPChangeLog", - "Command": "Get-PnPChangeLog -Nightly", "Rank": 2, + "Command": "Get-PnPChangeLog -Nightly", "Id": 414 }, { "CommandName": "Get-PnPCompatibleHubContentTypes", - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Rank": 1, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Id": 415 }, { "CommandName": "Get-PnPCompatibleHubContentTypes", - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Rank": 2, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Id": 416 }, { "CommandName": "Get-PnPContentType", - "Command": "Get-PnPContentType", "Rank": 1, + "Command": "Get-PnPContentType", "Id": 417 }, { "CommandName": "Get-PnPContentType", - "Command": "Get-PnPContentType -InSiteHierarchy", "Rank": 2, + "Command": "Get-PnPContentType -InSiteHierarchy", "Id": 418 }, { "CommandName": "Get-PnPContentType", - "Command": "Get-PnPContentType -Identity \"Project Document\"", "Rank": 3, + "Command": "Get-PnPContentType -Identity \"Project Document\"", "Id": 419 }, { "CommandName": "Get-PnPContentType", - "Command": "Get-PnPContentType -List \"Documents\"", "Rank": 4, + "Command": "Get-PnPContentType -List \"Documents\"", "Id": 420 }, { "CommandName": "Get-PnPContentType", - "Command": "Get-PnPContentType -Includes \"SchemaXml\"", "Rank": 5, + "Command": "Get-PnPContentType -Includes \"SchemaXml\"", "Id": 421 }, { "CommandName": "Get-PnPContentTypePublishingStatus", - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Rank": 1, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Id": 422 }, { "CommandName": "Get-PnPCustomAction", - "Command": "Get-PnPCustomAction", "Rank": 1, + "Command": "Get-PnPCustomAction", "Id": 423 }, { "CommandName": "Get-PnPCustomAction", - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 424 }, { "CommandName": "Get-PnPCustomAction", - "Command": "Get-PnPCustomAction -Scope web", "Rank": 3, + "Command": "Get-PnPCustomAction -Scope web", "Id": 425 }, { "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Command": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, + "Command": "Get-PnPDeletedMicrosoft365Group", "Id": 426 }, { "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 2, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 427 }, { "CommandName": "Get-PnPDeletedTeam", - "Command": "Get-PnPDeletedTeam", "Rank": 1, + "Command": "Get-PnPDeletedTeam", "Id": 428 }, { "CommandName": "Get-PnPDiagnostics", - "Command": "Get-PnPDiagnostics", "Rank": 1, + "Command": "Get-PnPDiagnostics", "Id": 429 }, { "CommandName": "Get-PnPDisableSpacesActivation", - "Command": "Get-PnPDisableSpacesActivation", "Rank": 1, + "Command": "Get-PnPDisableSpacesActivation", "Id": 430 }, { "CommandName": "Get-PnPDocumentSetTemplate", - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Rank": 1, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Id": 431 }, { "CommandName": "Get-PnPDocumentSetTemplate", - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Rank": 2, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Id": 432 }, { "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver", "Rank": 1, + "Command": "Get-PnPEventReceiver", "Id": 433 }, { "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 434 }, { "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Rank": 3, + "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Id": 435 }, { "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Rank": 4, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Id": 436 }, { "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 5, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 437 }, { "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Rank": 6, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Id": 438 }, { "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Scope Site", "Rank": 7, + "Command": "Get-PnPEventReceiver -Scope Site", "Id": 439 }, { "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Scope Web", "Rank": 8, + "Command": "Get-PnPEventReceiver -Scope Web", "Id": 440 }, { "CommandName": "Get-PnPEventReceiver", - "Command": "Get-PnPEventReceiver -Scope All", "Rank": 9, + "Command": "Get-PnPEventReceiver -Scope All", "Id": 441 }, { "CommandName": "Get-PnPException", - "Command": "Get-PnPException", "Rank": 1, + "Command": "Get-PnPException", "Id": 442 }, { "CommandName": "Get-PnPException", - "Command": "Get-PnPException -All", "Rank": 2, + "Command": "Get-PnPException -All", "Id": 443 }, { "CommandName": "Get-PnPExternalUser", - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Rank": 1, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Id": 444 }, { "CommandName": "Get-PnPExternalUser", - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Rank": 2, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Id": 445 }, { "CommandName": "Get-PnPFeature", - "Command": "Get-PnPFeature", "Rank": 1, + "Command": "Get-PnPFeature", "Id": 446 }, { "CommandName": "Get-PnPFeature", - "Command": "Get-PnPFeature -Scope Site", "Rank": 2, + "Command": "Get-PnPFeature -Scope Site", "Id": 447 }, { "CommandName": "Get-PnPFeature", - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 3, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 448 }, { "CommandName": "Get-PnPFeature", - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Rank": 4, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Id": 449 }, { "CommandName": "Get-PnPField", - "Command": "Get-PnPField", "Rank": 1, + "Command": "Get-PnPField", "Id": 450 }, { "CommandName": "Get-PnPField", - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Id": 451 }, { "CommandName": "Get-PnPField", - "Command": "Get-PnPField -Group \"Custom Columns\"", "Rank": 3, + "Command": "Get-PnPField -Group \"Custom Columns\"", "Id": 452 }, { "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Rank": 1, + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Id": 453 }, { "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Rank": 2, + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Id": 454 }, { "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Rank": 3, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Id": 455 }, { "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Rank": 4, + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Id": 456 }, { "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Rank": 5, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Id": 457 }, { "CommandName": "Get-PnPFile", - "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 /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Id": 458 }, { "CommandName": "Get-PnPFile", - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Rank": 7, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Id": 459 }, { "CommandName": "Get-PnPFileSharingLink", - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 460 }, { "CommandName": "Get-PnPFileVersion", - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Rank": 1, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Id": 461 }, { "CommandName": "Get-PnPFileVersion", - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Rank": 2, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Id": 462 }, { "CommandName": "Get-PnPFlow", - "Command": "Get-PnPFlow -AsAdmin", "Rank": 1, + "Command": "Get-PnPFlow -AsAdmin", "Id": 463 }, { "CommandName": "Get-PnPFlow", - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "Rank": 2, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "Id": 464 }, { "CommandName": "Get-PnPFlow", - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Rank": 3, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Id": 465 }, { "CommandName": "Get-PnPFlowOwner", - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Rank": 1, + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Id": 466 }, { "CommandName": "Get-PnPFolder", - "Command": "Get-PnPFolder", "Rank": 1, + "Command": "Get-PnPFolder", "Id": 467 }, { "CommandName": "Get-PnPFolder", - "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Rank": 2, + "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Id": 468 }, { "CommandName": "Get-PnPFolder", - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Rank": 3, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Id": 469 }, { "CommandName": "Get-PnPFolder", - "Command": "Get-PnPFolder -List \"Shared Documents\"", "Rank": 4, + "Command": "Get-PnPFolder -List \"Shared Documents\"", "Id": 470 }, { "CommandName": "Get-PnPFolderFile", - "Command": "Get-PnPFolderFile", "Rank": 1, + "Command": "Get-PnPFolderFile", "Id": 471 }, { "CommandName": "Get-PnPFolderFile", - "Command": "Get-PnPFolderFile -Recurse", "Rank": 2, + "Command": "Get-PnPFolderFile -Recurse", "Id": 472 }, { "CommandName": "Get-PnPFolderFile", - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "Rank": 3, + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "Id": 473 }, { "CommandName": "Get-PnPFolderFile", - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Id": 474 }, { "CommandName": "Get-PnPFolderFile", - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 5, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Id": 475 }, { "CommandName": "Get-PnPFolderFolder", - "Command": "Get-PnPFolderFolder", "Rank": 1, + "Command": "Get-PnPFolderFolder", "Id": 476 }, { "CommandName": "Get-PnPFolderFolder", - "Command": "Get-PnPFolderFolder -Recurse", "Rank": 2, + "Command": "Get-PnPFolderFolder -Recurse", "Id": 477 }, { "CommandName": "Get-PnPFolderFolder", - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "Rank": 3, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "Id": 478 }, { "CommandName": "Get-PnPFolderFolder", - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "Rank": 4, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "Id": 479 }, { "CommandName": "Get-PnPFolderFolder", - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "Rank": 5, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "Id": 480 }, { "CommandName": "Get-PnPFolderFolder", - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Id": 481 }, { "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem", "Rank": 1, + "Command": "Get-PnPFolderItem", "Id": 482 }, { "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -Recurse", "Rank": 2, + "Command": "Get-PnPFolderItem -Recurse", "Id": 483 }, { "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "Rank": 3, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "Id": 484 }, { "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Id": 485 }, { "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Rank": 5, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Id": 486 }, { "CommandName": "Get-PnPFolderItem", - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Id": 487 }, { "CommandName": "Get-PnPFolderSharingLink", - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 488 }, { "CommandName": "Get-PnPFolderStorageMetric", - "Command": "Get-PnPFolderStorageMetric", "Rank": 1, + "Command": "Get-PnPFolderStorageMetric", "Id": 489 }, { "CommandName": "Get-PnPFolderStorageMetric", - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Rank": 2, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Id": 490 }, { "CommandName": "Get-PnPFolderStorageMetric", - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Rank": 3, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Id": 491 }, { "CommandName": "Get-PnPFooter", - "Command": "Get-PnPFooter", "Rank": 1, + "Command": "Get-PnPFooter", "Id": 492 }, { "CommandName": "Get-PnPGraphAccessToken", - "Command": "Get-PnPGraphAccessToken", "Rank": 1, + "Command": "Get-PnPGraphAccessToken", "Id": 493 }, { "CommandName": "Get-PnPGraphAccessToken", - "Command": "Get-PnPGraphAccessToken -Decoded", "Rank": 2, + "Command": "Get-PnPGraphAccessToken -Decoded", "Id": 494 }, { "CommandName": "Get-PnPGraphSubscription", - "Command": "Get-PnPGraphSubscription", "Rank": 1, + "Command": "Get-PnPGraphSubscription", "Id": 495 }, { "CommandName": "Get-PnPGraphSubscription", - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 2, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Id": 496 }, { "CommandName": "Get-PnPGroup", - "Command": "Get-PnPGroup", "Rank": 1, + "Command": "Get-PnPGroup", "Id": 497 }, { "CommandName": "Get-PnPGroup", - "Command": "Get-PnPGroup -Identity 'My Site Users'", "Rank": 2, + "Command": "Get-PnPGroup -Identity 'My Site Users'", "Id": 498 }, { "CommandName": "Get-PnPGroup", - "Command": "Get-PnPGroup -AssociatedMemberGroup", "Rank": 3, + "Command": "Get-PnPGroup -AssociatedMemberGroup", "Id": 499 }, { "CommandName": "Get-PnPGroupMember", - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Rank": 1, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Id": 500 }, { "CommandName": "Get-PnPGroupMember", - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Rank": 2, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Id": 501 }, { "CommandName": "Get-PnPGroupPermissions", - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Rank": 1, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Id": 502 }, { "CommandName": "Get-PnPHideDefaultThemes", - "Command": "Get-PnPHideDefaultThemes", "Rank": 1, + "Command": "Get-PnPHideDefaultThemes", "Id": 503 }, { "CommandName": "Get-PnPHomePage", - "Command": "Get-PnPHomePage", "Rank": 1, + "Command": "Get-PnPHomePage", "Id": 504 }, { "CommandName": "Get-PnPHomeSite", - "Command": "Get-PnPHomeSite", "Rank": 1, + "Command": "Get-PnPHomeSite", "Id": 505 }, { "CommandName": "Get-PnPHomeSite", - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Rank": 2, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Id": 506 }, { "CommandName": "Get-PnPHomeSite", - "Command": "Get-PnPHomeSite -Detailed", "Rank": 3, + "Command": "Get-PnPHomeSite -Detailed", "Id": 507 }, { "CommandName": "Get-PnPHubSite", - "Command": "Get-PnPHubSite", "Rank": 1, + "Command": "Get-PnPHubSite", "Id": 508 }, { "CommandName": "Get-PnPHubSite", - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Id": 509 }, { "CommandName": "Get-PnPHubSite", - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Rank": 3, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Id": 510 }, { "CommandName": "Get-PnPHubSiteChild", - "Command": "Get-PnPHubSiteChild", "Rank": 1, + "Command": "Get-PnPHubSiteChild", "Id": 511 }, { "CommandName": "Get-PnPHubSiteChild", - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Id": 512 }, { "CommandName": "Get-PnPInPlaceRecordsManagement", - "Command": "Get-PnPInPlaceRecordsManagement", "Rank": 1, + "Command": "Get-PnPInPlaceRecordsManagement", "Id": 513 }, { "CommandName": "Get-PnPIsSiteAliasAvailable", - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Rank": 1, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Id": 514 }, { "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink", "Rank": 1, + "Command": "Get-PnPJavaScriptLink", "Id": 515 }, { "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink -Scope All", "Rank": 2, + "Command": "Get-PnPJavaScriptLink -Scope All", "Id": 516 }, { "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink -Scope Web", "Rank": 3, + "Command": "Get-PnPJavaScriptLink -Scope Web", "Id": 517 }, { "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink -Scope Site", "Rank": 4, + "Command": "Get-PnPJavaScriptLink -Scope Site", "Id": 518 }, { "CommandName": "Get-PnPJavaScriptLink", - "Command": "Get-PnPJavaScriptLink -Name Test", "Rank": 5, + "Command": "Get-PnPJavaScriptLink -Name Test", "Id": 519 }, { "CommandName": "Get-PnPKnowledgeHubSite", - "Command": "Get-PnPKnowledgeHubSite", "Rank": 1, + "Command": "Get-PnPKnowledgeHubSite", "Id": 520 }, { "CommandName": "Get-PnPLabel", - "Command": "Get-PnPLabel", "Rank": 1, + "Command": "Get-PnPLabel", "Id": 521 }, { "CommandName": "Get-PnPLabel", - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Rank": 2, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Id": 522 }, { "CommandName": "Get-PnPLargeListOperationStatus", - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Rank": 1, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Id": 523 }, { "CommandName": "Get-PnPList", - "Command": "Get-PnPList", "Rank": 1, + "Command": "Get-PnPList", "Id": 524 }, { "CommandName": "Get-PnPList", - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 2, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 525 }, { "CommandName": "Get-PnPList", - "Command": "Get-PnPList -Identity Lists/Announcements", "Rank": 3, + "Command": "Get-PnPList -Identity Lists/Announcements", "Id": 526 }, { "CommandName": "Get-PnPList", - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Rank": 4, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Id": 527 }, { "CommandName": "Get-PnPList", - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Rank": 5, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Id": 528 }, { "CommandName": "Get-PnPListDesign", - "Command": "Get-PnPListDesign", "Rank": 1, + "Command": "Get-PnPListDesign", "Id": 529 }, { "CommandName": "Get-PnPListDesign", - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 530 }, { "CommandName": "Get-PnPListDesign", - "Command": "Get-PnPListDesign -Identity ListEvent", "Rank": 3, + "Command": "Get-PnPListDesign -Identity ListEvent", "Id": 531 }, { "CommandName": "Get-PnPListInformationRightsManagement", - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Rank": 1, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Id": 532 }, { "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks", "Rank": 1, + "Command": "Get-PnPListItem -List Tasks", "Id": 533 }, { "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -Id 1", "Rank": 2, + "Command": "Get-PnPListItem -List Tasks -Id 1", "Id": 534 }, { "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Rank": 3, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Id": 535 }, { "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "Rank": 4, + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "Id": 536 }, { "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -Query \"\"", "Rank": 5, + "Command": "Get-PnPListItem -List Tasks -Query \"\"", "Id": 537 }, { "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Rank": 6, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Id": 538 }, { "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Rank": 7, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Id": 539 }, { "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Rank": 8, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Id": 540 }, { "CommandName": "Get-PnPListItem", - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Rank": 9, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Id": 541 }, { "CommandName": "Get-PnPListItemAttachment", - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "Rank": 1, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "Id": 542 }, { "CommandName": "Get-PnPListItemAttachment", - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "Rank": 2, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "Id": 543 }, { "CommandName": "Get-PnPListItemComment", - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Rank": 1, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Id": 544 }, { "CommandName": "Get-PnPListItemPermission", - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Rank": 1, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Id": 545 }, { "CommandName": "Get-PnPListItemVersion", - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Rank": 1, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Id": 546 }, { "CommandName": "Get-PnPListPermissions", - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Rank": 1, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Id": 547 }, { "CommandName": "Get-PnPListPermissions", - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Rank": 2, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Id": 548 }, { "CommandName": "Get-PnPListRecordDeclaration", - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Rank": 1, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Id": 549 }, { "CommandName": "Get-PnPMasterPage", - "Command": "Get-PnPMasterPage", "Rank": 1, + "Command": "Get-PnPMasterPage", "Id": 550 }, { "CommandName": "Get-PnPMessageCenterAnnouncement", - "Command": "Get-PnPMessageCenterAnnouncement", "Rank": 1, + "Command": "Get-PnPMessageCenterAnnouncement", "Id": 551 }, { "CommandName": "Get-PnPMessageCenterAnnouncement", - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Rank": 2, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Id": 552 }, { "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Command": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, + "Command": "Get-PnPMicrosoft365ExpiringGroup", "Id": 553 }, { "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Rank": 2, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Id": 554 }, { "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group", "Rank": 1, + "Command": "Get-PnPMicrosoft365Group", "Id": 555 }, { "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Rank": 2, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Id": 556 }, { "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Rank": 3, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Id": 557 }, { "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Rank": 4, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Id": 558 }, { "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -Identity $group", "Rank": 5, + "Command": "Get-PnPMicrosoft365Group -Identity $group", "Id": 559 }, { "CommandName": "Get-PnPMicrosoft365Group", - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Rank": 6, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Id": 560 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Command": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupEndpoint", "Id": 561 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Id": 562 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 563 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Id": 564 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Id": 565 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Id": 566 }, { "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Id": 567 }, { "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Id": 568 }, { "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Command": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupSettings", "Id": 569 }, { "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Id": 570 }, { "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 571 }, { "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Id": 572 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Command": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupTeam", "Id": 573 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Id": 574 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 575 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 576 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Id": 577 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 578 }, { "CommandName": "Get-PnPNavigationNode", - "Command": "Get-PnPNavigationNode", "Rank": 1, + "Command": "Get-PnPNavigationNode", "Id": 579 }, { "CommandName": "Get-PnPNavigationNode", - "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Rank": 2, + "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Id": 580 }, { "CommandName": "Get-PnPNavigationNode", - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Rank": 3, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Id": 581 }, { "CommandName": "Get-PnPOrgAssetsLibrary", - "Command": "Get-PnPOrgAssetsLibrary", "Rank": 1, + "Command": "Get-PnPOrgAssetsLibrary", "Id": 582 }, { "CommandName": "Get-PnPOrgNewsSite", - "Command": "Get-PnPOrgNewsSite", "Rank": 1, + "Command": "Get-PnPOrgNewsSite", "Id": 583 }, { "CommandName": "Get-PnPPage", - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Rank": 1, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Id": 584 }, { "CommandName": "Get-PnPPage", - "Command": "Get-PnPPage \"MyPage\"", "Rank": 2, + "Command": "Get-PnPPage \"MyPage\"", "Id": 585 }, { "CommandName": "Get-PnPPage", - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Rank": 3, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Id": 586 }, { "CommandName": "Get-PnPPage", - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Rank": 4, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Id": 587 }, { "CommandName": "Get-PnPPageComponent", - "Command": "Get-PnPPageComponent -Page Home", "Rank": 1, + "Command": "Get-PnPPageComponent -Page Home", "Id": 588 }, { "CommandName": "Get-PnPPageComponent", - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 589 }, { "CommandName": "Get-PnPPageComponent", - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Rank": 3, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Id": 590 }, { "CommandName": "Get-PnPPlannerBucket", - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Id": 591 }, { "CommandName": "Get-PnPPlannerConfiguration", - "Command": "Get-PnPPlannerConfiguration", "Rank": 1, + "Command": "Get-PnPPlannerConfiguration", "Id": 592 }, { "CommandName": "Get-PnPPlannerPlan", - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Rank": 1, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Id": 593 }, { "CommandName": "Get-PnPPlannerPlan", - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Rank": 2, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Id": 594 }, { "CommandName": "Get-PnPPlannerPlan", - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Rank": 3, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Id": 595 }, { "CommandName": "Get-PnPPlannerRosterMember", - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Id": 596 }, { "CommandName": "Get-PnPPlannerRosterPlan", - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Rank": 1, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Id": 597 }, { "CommandName": "Get-PnPPlannerRosterPlan", - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 2, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 598 }, { "CommandName": "Get-PnPPlannerTask", - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Id": 599 }, { "CommandName": "Get-PnPPlannerTask", - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 2, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Id": 600 }, { "CommandName": "Get-PnPPlannerTask", - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 3, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Id": 601 }, { "CommandName": "Get-PnPPlannerUserPolicy", - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Id": 602 }, { "CommandName": "Get-PnPPowerPlatformConnector", - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "Rank": 1, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "Id": 603 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", - "Command": "Get-PnPPowerPlatformEnvironment", "Rank": 1, + "Command": "Get-PnPPowerPlatformEnvironment", "Id": 604 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Rank": 2, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Id": 605 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Rank": 3, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Id": 606 }, { "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Command": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, + "Command": "Get-PnPPowerShellTelemetryEnabled", "Id": 607 }, { "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag", "Rank": 1, + "Command": "Get-PnPPropertyBag", "Id": 608 }, { "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag -Key MyKey", "Rank": 2, + "Command": "Get-PnPPropertyBag -Key MyKey", "Id": 609 }, { "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Rank": 3, + "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Id": 610 }, { "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Rank": 4, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Id": 611 }, { "CommandName": "Get-PnPPropertyBag", - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Rank": 5, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Id": 612 }, { "CommandName": "Get-PnPPublishingImageRendition", - "Command": "Get-PnPPublishingImageRendition", "Rank": 1, + "Command": "Get-PnPPublishingImageRendition", "Id": 613 }, { "CommandName": "Get-PnPPublishingImageRendition", - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Rank": 2, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Id": 614 }, { "CommandName": "Get-PnPPublishingImageRendition", - "Command": "Get-PnPPublishingImageRendition -Identity 2", "Rank": 3, + "Command": "Get-PnPPublishingImageRendition -Identity 2", "Id": 615 }, { "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem", "Rank": 1, + "Command": "Get-PnPRecycleBinItem", "Id": 616 }, { "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Rank": 2, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Id": 617 }, { "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem -FirstStage", "Rank": 3, + "Command": "Get-PnPRecycleBinItem -FirstStage", "Id": 618 }, { "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem -SecondStage", "Rank": 4, + "Command": "Get-PnPRecycleBinItem -SecondStage", "Id": 619 }, { "CommandName": "Get-PnPRecycleBinItem", - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Rank": 5, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Id": 620 }, { "CommandName": "Get-PnPRequestAccessEmails", - "Command": "Get-PnPRequestAccessEmails", "Rank": 1, + "Command": "Get-PnPRequestAccessEmails", "Id": 621 }, { "CommandName": "Get-PnPRetentionLabel", - "Command": "Get-PnPRetentionLabel", "Rank": 1, + "Command": "Get-PnPRetentionLabel", "Id": 622 }, { "CommandName": "Get-PnPRetentionLabel", - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "Rank": 2, + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "Id": 623 }, { "CommandName": "Get-PnPRoleDefinition", - "Command": "Get-PnPRoleDefinition", "Rank": 1, + "Command": "Get-PnPRoleDefinition", "Id": 624 }, { "CommandName": "Get-PnPRoleDefinition", - "Command": "Get-PnPRoleDefinition -Identity Read", "Rank": 2, + "Command": "Get-PnPRoleDefinition -Identity Read", "Id": 625 }, { "CommandName": "Get-PnPRoleDefinition", - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Rank": 3, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Id": 626 }, { "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration", "Rank": 1, + "Command": "Get-PnPSearchConfiguration", "Id": 627 }, { "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Site", "Rank": 2, + "Command": "Get-PnPSearchConfiguration -Scope Site", "Id": 628 }, { "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Rank": 3, + "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Id": 629 }, { "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 630 }, { "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Rank": 5, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Id": 631 }, { "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Rank": 6, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Id": 632 }, { "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Rank": 7, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Id": 633 }, { "CommandName": "Get-PnPSearchConfiguration", - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Rank": 8, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Id": 634 }, { "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog", "Rank": 1, + "Command": "Get-PnPSearchCrawlLog", "Id": 635 }, { "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Rank": 2, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Id": 636 }, { "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Rank": 3, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Id": 637 }, { "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Rank": 4, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Id": 638 }, { "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Rank": 5, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Id": 639 }, { "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Rank": 6, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Id": 640 }, { "CommandName": "Get-PnPSearchCrawlLog", - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Rank": 7, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Id": 641 }, { "CommandName": "Get-PnPSearchSettings", - "Command": "Get-PnPSearchSettings", "Rank": 1, + "Command": "Get-PnPSearchSettings", "Id": 642 }, { "CommandName": "Get-PnPServiceCurrentHealth", - "Command": "Get-PnPServiceCurrentHealth", "Rank": 1, + "Command": "Get-PnPServiceCurrentHealth", "Id": 643 }, { "CommandName": "Get-PnPServiceCurrentHealth", - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Rank": 2, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Id": 644 }, { "CommandName": "Get-PnPServiceHealthIssue", - "Command": "Get-PnPServiceHealthIssue", "Rank": 1, + "Command": "Get-PnPServiceHealthIssue", "Id": 645 }, { "CommandName": "Get-PnPServiceHealthIssue", - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Rank": 2, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Id": 646 }, { "CommandName": "Get-PnPSharePointAddIn", - "Command": "Get-PnPSharePointAddIn", "Rank": 1, + "Command": "Get-PnPSharePointAddIn", "Id": 647 }, { "CommandName": "Get-PnPSharePointAddIn", - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Rank": 2, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Id": 648 }, { "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Command": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, + "Command": "Get-PnPSharingForNonOwnersOfSite", "Id": 649 }, { "CommandName": "Get-PnPSite", - "Command": "Get-PnPSite", "Rank": 1, + "Command": "Get-PnPSite", "Id": 650 }, { "CommandName": "Get-PnPSite", - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Rank": 2, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Id": 651 }, { "CommandName": "Get-PnPSiteClosure", - "Command": "Get-PnPSiteClosure", "Rank": 1, + "Command": "Get-PnPSiteClosure", "Id": 652 }, { "CommandName": "Get-PnPSiteCollectionAdmin", - "Command": "Get-PnPSiteCollectionAdmin", "Rank": 1, + "Command": "Get-PnPSiteCollectionAdmin", "Id": 653 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Command": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, + "Command": "Get-PnPSiteCollectionAppCatalog", "Id": 654 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Rank": 2, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Id": 655 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Rank": 3, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Id": 656 }, { "CommandName": "Get-PnPSiteCollectionTermStore", - "Command": "Get-PnPSiteCollectionTermStore", "Rank": 1, + "Command": "Get-PnPSiteCollectionTermStore", "Id": 657 }, { "CommandName": "Get-PnPSiteDesign", - "Command": "Get-PnPSiteDesign", "Rank": 1, + "Command": "Get-PnPSiteDesign", "Id": 658 }, { "CommandName": "Get-PnPSiteDesign", - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 659 }, { "CommandName": "Get-PnPSiteDesignRights", - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 660 }, { "CommandName": "Get-PnPSiteDesignRun", - "Command": "Get-PnPSiteDesignRun", "Rank": 1, + "Command": "Get-PnPSiteDesignRun", "Id": 661 }, { "CommandName": "Get-PnPSiteDesignRun", - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Rank": 2, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Id": 662 }, { "CommandName": "Get-PnPSiteDesignTask", - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Id": 663 }, { "CommandName": "Get-PnPSiteDesignTask", - "Command": "Get-PnPSiteDesignTask", "Rank": 2, + "Command": "Get-PnPSiteDesignTask", "Id": 664 }, { "CommandName": "Get-PnPSiteDesignTask", - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 3, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Id": 665 }, { "CommandName": "Get-PnPSiteGroup", - "Command": "Get-PnPSiteGroup", "Rank": 1, + "Command": "Get-PnPSiteGroup", "Id": 666 }, { "CommandName": "Get-PnPSiteGroup", - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 2, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Id": 667 }, { "CommandName": "Get-PnPSiteGroup", - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Rank": 3, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Id": 668 }, { "CommandName": "Get-PnPSiteGroup", - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 4, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Id": 669 }, { "CommandName": "Get-PnPSitePolicy", - "Command": "Get-PnPSitePolicy", "Rank": 1, + "Command": "Get-PnPSitePolicy", "Id": 670 }, { "CommandName": "Get-PnPSitePolicy", - "Command": "Get-PnPSitePolicy -AllAvailable", "Rank": 2, + "Command": "Get-PnPSitePolicy -AllAvailable", "Id": 671 }, { "CommandName": "Get-PnPSitePolicy", - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 3, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Id": 672 }, { "CommandName": "Get-PnPSiteScript", - "Command": "Get-PnPSiteScript", "Rank": 1, + "Command": "Get-PnPSiteScript", "Id": 673 }, { "CommandName": "Get-PnPSiteScript", - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 674 }, { "CommandName": "Get-PnPSiteScriptFromList", - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Rank": 1, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Id": 675 }, { "CommandName": "Get-PnPSiteScriptFromList", - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Rank": 2, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Id": 676 }, { "CommandName": "Get-PnPSiteScriptFromList", - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Rank": 3, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Id": 677 }, { "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Rank": 1, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Id": 678 }, { "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Rank": 2, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Id": 679 }, { "CommandName": "Get-PnPSiteScriptFromWeb", - "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\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Id": 680 }, { "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Rank": 4, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Id": 681 }, { "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Rank": 5, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Id": 682 }, { "CommandName": "Get-PnPSiteScriptFromWeb", - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Rank": 6, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Id": 683 }, { "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults", "Rank": 1, + "Command": "Get-PnPSiteSearchQueryResults", "Id": 684 }, { "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Rank": 2, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Id": 685 }, { "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Rank": 3, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Id": 686 }, { "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Rank": 4, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Id": 687 }, { "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Rank": 5, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Id": 688 }, { "CommandName": "Get-PnPSiteSearchQueryResults", - "Command": "Get-PnPSiteSearchQueryResults -All", "Rank": 6, + "Command": "Get-PnPSiteSearchQueryResults -All", "Id": 689 }, { "CommandName": "Get-PnPSiteSensitivityLabel", - "Command": "Get-PnPSiteSensitivityLabel", "Rank": 1, + "Command": "Get-PnPSiteSensitivityLabel", "Id": 690 }, { "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp", "Rank": 1, + "Command": "Get-PnPSiteTemplate -Out template.pnp", "Id": 691 }, { "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.xml", "Rank": 2, + "Command": "Get-PnPSiteTemplate -Out template.xml", "Id": 692 }, { "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.md", "Rank": 3, + "Command": "Get-PnPSiteTemplate -Out template.md", "Id": 693 }, { "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Rank": 4, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Id": 694 }, { "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Rank": 5, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Id": 695 }, { "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Rank": 6, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Id": 696 }, { "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Rank": 7, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Id": 697 }, { "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Rank": 8, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Id": 698 }, { "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Rank": 9, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Id": 699 }, { "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Rank": 10, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Id": 700 }, { "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Rank": 11, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Id": 701 }, { "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Rank": 12, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Id": 702 }, { "CommandName": "Get-PnPSiteTemplate", - "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.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", "Id": 703 }, { "CommandName": "Get-PnPSiteTemplate", - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Rank": 14, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Id": 704 }, { "CommandName": "Get-PnPSiteUserInvitations", - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Id": 705 }, { "CommandName": "Get-PnPSiteVersionPolicy", - "Command": "Get-PnPSiteVersionPolicy", "Rank": 1, + "Command": "Get-PnPSiteVersionPolicy", "Id": 706 }, { "CommandName": "Get-PnPStorageEntity", - "Command": "Get-PnPStorageEntity", "Rank": 1, + "Command": "Get-PnPStorageEntity", "Id": 707 }, { "CommandName": "Get-PnPStorageEntity", - "Command": "Get-PnPStorageEntity -Key MyKey", "Rank": 2, + "Command": "Get-PnPStorageEntity -Key MyKey", "Id": 708 }, { "CommandName": "Get-PnPStorageEntity", - "Command": "Get-PnPStorageEntity -Scope Site", "Rank": 3, + "Command": "Get-PnPStorageEntity -Scope Site", "Id": 709 }, { "CommandName": "Get-PnPStorageEntity", - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 4, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Id": 710 }, { "CommandName": "Get-PnPStoredCredential", - "Command": "Get-PnPStoredCredential -Name O365", "Rank": 1, + "Command": "Get-PnPStoredCredential -Name O365", "Id": 711 }, { "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 712 }, { "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 713 }, { "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Rank": 1, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Id": 714 }, { "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb", "Rank": 1, + "Command": "Get-PnPSubWeb", "Id": 715 }, { "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb -Recurse", "Rank": 2, + "Command": "Get-PnPSubWeb -Recurse", "Id": 716 }, { "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Rank": 3, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Id": 717 }, { "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Rank": 4, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Id": 718 }, { "CommandName": "Get-PnPSubWeb", - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Rank": 5, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Id": 719 }, { "CommandName": "Get-PnPSyntexModel", - "Command": "Get-PnPSyntexModel", "Rank": 1, + "Command": "Get-PnPSyntexModel", "Id": 720 }, { "CommandName": "Get-PnPSyntexModel", - "Command": "Get-PnPSyntexModel -Identity 1", "Rank": 2, + "Command": "Get-PnPSyntexModel -Identity 1", "Id": 721 }, { "CommandName": "Get-PnPSyntexModel", - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Rank": 3, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Id": 722 }, { "CommandName": "Get-PnPSyntexModelPublication", - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Rank": 1, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Id": 723 }, { "CommandName": "Get-PnPTaxonomyItem", - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Rank": 1, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Id": 724 }, { "CommandName": "Get-PnPTeamsApp", - "Command": "Get-PnPTeamsApp", "Rank": 1, + "Command": "Get-PnPTeamsApp", "Id": 725 }, { "CommandName": "Get-PnPTeamsApp", - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Rank": 2, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Id": 726 }, { "CommandName": "Get-PnPTeamsApp", - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Rank": 3, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Id": 727 }, { "CommandName": "Get-PnPTeamsChannel", - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Rank": 1, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Id": 728 }, { "CommandName": "Get-PnPTeamsChannel", - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Rank": 2, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Id": 729 }, { "CommandName": "Get-PnPTeamsChannel", - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 3, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Id": 730 }, { "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Rank": 1, + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Id": 731 }, { "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 2, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Id": 732 }, { "CommandName": "Get-PnPTeamsChannelMessage", - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Rank": 1, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Id": 733 }, { "CommandName": "Get-PnPTeamsChannelMessage", - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Rank": 2, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Id": 734 }, { "CommandName": "Get-PnPTeamsChannelMessageReply", - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Rank": 1, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Id": 735 }, { "CommandName": "Get-PnPTeamsChannelMessageReply", - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Rank": 2, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Id": 736 }, { "CommandName": "Get-PnPTeamsChannelUser", - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Rank": 1, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Id": 737 }, { "CommandName": "Get-PnPTeamsChannelUser", - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Rank": 2, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Id": 738 }, { "CommandName": "Get-PnPTeamsChannelUser", - "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 john.doe@contoso.com", "Id": 739 }, { "CommandName": "Get-PnPTeamsChannelUser", - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Id": 740 }, { "CommandName": "Get-PnPTeamsPrimaryChannel", - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Rank": 1, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Id": 741 }, { "CommandName": "Get-PnPTeamsPrimaryChannel", - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Rank": 2, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Id": 742 }, { "CommandName": "Get-PnPTeamsTab", - "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", "Id": 743 }, { "CommandName": "Get-PnPTeamsTab", - "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 \"Wiki\"", "Id": 744 }, { "CommandName": "Get-PnPTeamsTab", - "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 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", "Id": 745 }, { "CommandName": "Get-PnPTeamsTab", - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Rank": 4, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Id": 746 }, { "CommandName": "Get-PnPTeamsTab", - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Rank": 5, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Id": 747 }, { "CommandName": "Get-PnPTeamsTag", - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Id": 748 }, { "CommandName": "Get-PnPTeamsTag", - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 2, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Id": 749 }, { "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam", "Rank": 1, + "Command": "Get-PnPTeamsTeam", "Id": 750 }, { "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Rank": 2, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Id": 751 }, { "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Rank": 3, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Id": 752 }, { "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Rank": 4, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Id": 753 }, { "CommandName": "Get-PnPTeamsTeam", - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Rank": 5, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Id": 754 }, { "CommandName": "Get-PnPTeamsUser", - "Command": "Get-PnPTeamsUser -Team MyTeam", "Rank": 1, + "Command": "Get-PnPTeamsUser -Team MyTeam", "Id": 755 }, { "CommandName": "Get-PnPTeamsUser", - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Rank": 2, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Id": 756 }, { "CommandName": "Get-PnPTeamsUser", - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Rank": 3, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Id": 757 }, { "CommandName": "Get-PnPTeamsUser", - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Rank": 4, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Id": 758 }, { "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Command": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, + "Command": "Get-PnPTemporarilyDisableAppBar", "Id": 759 }, { "CommandName": "Get-PnPTenant", - "Command": "Get-PnPTenant", "Rank": 1, + "Command": "Get-PnPTenant", "Id": 760 }, { "CommandName": "Get-PnPTenantAppCatalogUrl", - "Command": "Get-PnPTenantAppCatalogUrl", "Rank": 1, + "Command": "Get-PnPTenantAppCatalogUrl", "Id": 761 }, { "CommandName": "Get-PnPTenantCdnEnabled", - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Rank": 1, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Id": 762 }, { "CommandName": "Get-PnPTenantCdnOrigin", - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Rank": 1, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Id": 763 }, { "CommandName": "Get-PnPTenantCdnPolicies", - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Rank": 1, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Id": 764 }, { "CommandName": "Get-PnPTenantDeletedSite", - "Command": "Get-PnPTenantDeletedSite", "Rank": 1, + "Command": "Get-PnPTenantDeletedSite", "Id": 765 }, { "CommandName": "Get-PnPTenantDeletedSite", - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 2, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 766 }, { "CommandName": "Get-PnPTenantDeletedSite", - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Rank": 3, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Id": 767 }, { "CommandName": "Get-PnPTenantDeletedSite", - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Rank": 4, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Id": 768 }, { "CommandName": "Get-PnPTenantId", - "Command": "Get-PnPTenantId", "Rank": 1, + "Command": "Get-PnPTenantId", "Id": 769 }, { "CommandName": "Get-PnPTenantId", - "Command": "Get-PnPTenantId contoso", "Rank": 2, + "Command": "Get-PnPTenantId contoso", "Id": 770 }, { "CommandName": "Get-PnPTenantId", - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Rank": 3, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Id": 771 }, { "CommandName": "Get-PnPTenantId", - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Rank": 4, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Id": 772 }, { "CommandName": "Get-PnPTenantInfo", - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Rank": 1, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Id": 773 }, { "CommandName": "Get-PnPTenantInfo", - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Rank": 2, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Id": 774 }, { "CommandName": "Get-PnPTenantInfo", - "Command": "Get-PnPTenantInfo", "Rank": 3, + "Command": "Get-PnPTenantInfo", "Id": 775 }, { "CommandName": "Get-PnPTenantInfo", - "Command": "Get-PnPTenantInfo -CurrentTenant", "Rank": 4, + "Command": "Get-PnPTenantInfo -CurrentTenant", "Id": 776 }, { "CommandName": "Get-PnPTenantInstance", - "Command": "Get-PnPTenantInstance", "Rank": 1, + "Command": "Get-PnPTenantInstance", "Id": 777 }, { "CommandName": "Get-PnPTenantRecycleBinItem", - "Command": "Get-PnPTenantRecycleBinItem", "Rank": 1, + "Command": "Get-PnPTenantRecycleBinItem", "Id": 778 }, { "CommandName": "Get-PnPTenantSequence", - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Rank": 1, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Id": 779 }, { "CommandName": "Get-PnPTenantSequence", - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Rank": 2, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Id": 780 }, { "CommandName": "Get-PnPTenantSequenceSite", - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Rank": 1, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Id": 781 }, { "CommandName": "Get-PnPTenantSequenceSite", - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Rank": 2, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Id": 782 }, { "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite", "Rank": 1, + "Command": "Get-PnPTenantSite", "Id": 783 }, { "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Detailed", "Rank": 2, + "Command": "Get-PnPTenantSite -Detailed", "Id": 784 }, { "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Rank": 3, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Id": 785 }, { "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Rank": 4, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Id": 786 }, { "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Rank": 5, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Id": 787 }, { "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Rank": 6, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Id": 788 }, { "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Rank": 7, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Id": 789 }, { "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Rank": 8, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Id": 790 }, { "CommandName": "Get-PnPTenantSite", - "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Rank": 9, + "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Id": 791 }, { "CommandName": "Get-PnPTenantSyncClientRestriction", - "Command": "Get-PnPTenantSyncClientRestriction", "Rank": 1, + "Command": "Get-PnPTenantSyncClientRestriction", "Id": 792 }, { "CommandName": "Get-PnPTenantTemplate", - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Rank": 1, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Id": 793 }, { "CommandName": "Get-PnPTenantTemplate", - "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", "Id": 794 }, { "CommandName": "Get-PnPTenantTemplate", - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Rank": 3, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Id": 795 }, { "CommandName": "Get-PnPTenantTheme", - "Command": "Get-PnPTenantTheme", "Rank": 1, + "Command": "Get-PnPTenantTheme", "Id": 796 }, { "CommandName": "Get-PnPTenantTheme", - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 2, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Id": 797 }, { "CommandName": "Get-PnPTenantTheme", - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Rank": 3, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Id": 798 }, { "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 1, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 799 }, { "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 800 }, { "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 801 }, { "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Rank": 4, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Id": 802 }, { "CommandName": "Get-PnPTerm", - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Rank": 5, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Id": 803 }, { "CommandName": "Get-PnPTermGroup", - "Command": "Get-PnPTermGroup", "Rank": 1, + "Command": "Get-PnPTermGroup", "Id": 804 }, { "CommandName": "Get-PnPTermGroup", - "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Rank": 2, + "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Id": 805 }, { "CommandName": "Get-PnPTermGroup", - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Rank": 3, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Id": 806 }, { "CommandName": "Get-PnPTermLabel", - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Rank": 1, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Id": 807 }, { "CommandName": "Get-PnPTermLabel", - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Rank": 2, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Id": 808 }, { "CommandName": "Get-PnPTermLabel", - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 809 }, { "CommandName": "Get-PnPTermSet", - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Rank": 1, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Id": 810 }, { "CommandName": "Get-PnPTermSet", - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Id": 811 }, { "CommandName": "Get-PnPTermSet", - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Rank": 3, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Id": 812 }, { "CommandName": "Get-PnPTheme", - "Command": "Get-PnPTheme", "Rank": 1, + "Command": "Get-PnPTheme", "Id": 813 }, { "CommandName": "Get-PnPTheme", - "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Rank": 2, + "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Id": 814 }, { "CommandName": "Get-PnPTimeZoneId", - "Command": "Get-PnPTimeZoneId", "Rank": 1, + "Command": "Get-PnPTimeZoneId", "Id": 815 }, { "CommandName": "Get-PnPTimeZoneId", - "Command": "Get-PnPTimeZoneId -Match Stockholm", "Rank": 2, + "Command": "Get-PnPTimeZoneId -Match Stockholm", "Id": 816 }, { "CommandName": "Get-PnPUnfurlLink", - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Rank": 1, + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Id": 817 }, { "CommandName": "Get-PnPUnifiedAuditLog", - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Rank": 1, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Id": 818 }, { "CommandName": "Get-PnPUPABulkImportStatus", - "Command": "Get-PnPUPABulkImportStatus", "Rank": 1, + "Command": "Get-PnPUPABulkImportStatus", "Id": 819 }, { "CommandName": "Get-PnPUPABulkImportStatus", - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Rank": 2, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Id": 820 }, { "CommandName": "Get-PnPUPABulkImportStatus", - "Command": "Get-PnPUPABulkImportStatus -JobId ", "Rank": 3, + "Command": "Get-PnPUPABulkImportStatus -JobId ", "Id": 821 }, { "CommandName": "Get-PnPUPABulkImportStatus", - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "Rank": 4, + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "Id": 822 }, { "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser", "Rank": 1, + "Command": "Get-PnPUser", "Id": 823 }, { "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -Identity 23", "Rank": 2, + "Command": "Get-PnPUser -Identity 23", "Id": 824 }, { "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Rank": 3, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Id": 825 }, { "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Rank": 4, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Id": 826 }, { "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -WithRightsAssigned", "Rank": 5, + "Command": "Get-PnPUser -WithRightsAssigned", "Id": 827 }, { "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Rank": 6, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Id": 828 }, { "CommandName": "Get-PnPUser", - "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Rank": 7, + "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Id": 829 }, { "CommandName": "Get-PnPUserOneDriveQuota", - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Rank": 1, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Id": 830 }, { "CommandName": "Get-PnPUserProfileProperty", - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Rank": 1, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Id": 831 }, { "CommandName": "Get-PnPUserProfileProperty", - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Rank": 2, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Id": 832 }, { "CommandName": "Get-PnPUserProfileProperty", - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Rank": 3, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Id": 833 }, { "CommandName": "Get-PnPView", - "Command": "Get-PnPView -List \"Demo List\"", "Rank": 1, + "Command": "Get-PnPView -List \"Demo List\"", "Id": 834 }, { "CommandName": "Get-PnPView", - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Rank": 2, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Id": 835 }, { "CommandName": "Get-PnPView", - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Rank": 3, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Id": 836 }, { "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Command": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, + "Command": "Get-PnPVivaConnectionsDashboardACE", "Id": 837 }, { "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 2, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Id": 838 }, { "CommandName": "Get-PnPWeb", - "Command": "Get-PnPWeb", "Rank": 1, + "Command": "Get-PnPWeb", "Id": 839 }, { "CommandName": "Get-PnPWebHeader", - "Command": "Get-PnPWebHeader", "Rank": 1, + "Command": "Get-PnPWebHeader", "Id": 840 }, { "CommandName": "Get-PnPWebhookSubscriptions", - "Command": "Get-PnPWebhookSubscriptions -List MyList", "Rank": 1, + "Command": "Get-PnPWebhookSubscriptions -List MyList", "Id": 841 }, { "CommandName": "Get-PnPWebPart", - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Rank": 1, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Id": 842 }, { "CommandName": "Get-PnPWebPart", - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 843 }, { "CommandName": "Get-PnPWebPartProperty", - "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", "Id": 844 }, { "CommandName": "Get-PnPWebPartProperty", - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Rank": 2, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Id": 845 }, { "CommandName": "Get-PnPWebPartXml", - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 846 }, { "CommandName": "Get-PnPWebTemplates", - "Command": "Get-PnPWebTemplates", "Rank": 1, + "Command": "Get-PnPWebTemplates", "Id": 847 }, { "CommandName": "Get-PnPWebTemplates", - "Command": "Get-PnPWebTemplates -LCID 1033", "Rank": 2, + "Command": "Get-PnPWebTemplates -LCID 1033", "Id": 848 }, { "CommandName": "Get-PnPWebTemplates", - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Rank": 3, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Id": 849 }, { "CommandName": "Get-PnPWikiPageContent", - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Rank": 1, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Id": 850 }, { "CommandName": "Grant-PnPAzureADAppSitePermission", - "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 Read", "Id": 851 }, { "CommandName": "Grant-PnPAzureADAppSitePermission", - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "Id": 852 }, { "CommandName": "Grant-PnPHubSiteRights", - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 853 }, { "CommandName": "Grant-PnPSiteDesignRights", - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -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": 854 }, { "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Id": 855 }, { "CommandName": "Import-PnPTaxonomy", - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Rank": 1, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Id": 856 }, { "CommandName": "Import-PnPTaxonomy", - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Rank": 2, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Id": 857 }, { "CommandName": "Import-PnPTaxonomy", - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Rank": 3, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Id": 858 }, { "CommandName": "Import-PnPTermGroupFromXml", - "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Rank": 1, + "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Id": 859 }, { "CommandName": "Import-PnPTermGroupFromXml", - "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Rank": 2, + "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Id": 860 }, { "CommandName": "Import-PnPTermSet", - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Rank": 1, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Id": 861 }, { "CommandName": "Import-PnPTermSet", - "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 -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", "Id": 862 }, { "CommandName": "Import-PnPTermSet", - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", "Rank": 3, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", "Id": 863 }, { "CommandName": "Install-PnPApp", - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 864 }, { "CommandName": "Install-PnPApp", - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 865 }, { "CommandName": "Invoke-PnPGraphMethod", - "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?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "Id": 866 }, { "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Rank": 2, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Id": 867 }, { "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Rank": 3, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Id": 868 }, { "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Rank": 4, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Id": 869 }, { "CommandName": "Invoke-PnPGraphMethod", - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Rank": 5, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Id": 870 }, { "CommandName": "Invoke-PnPGraphMethod", - "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\" -OutFile c:\\temp\\photo.jpg", "Id": 871 }, { "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\"", "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\"", "Id": 872 }, { "CommandName": "Invoke-PnPListDesign", - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 873 }, { "CommandName": "Invoke-PnPListDesign", - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Id": 874 }, { "CommandName": "Invoke-PnPQuery", - "Command": "Invoke-PnPQuery -RetryCount 5", "Rank": 1, + "Command": "Invoke-PnPQuery -RetryCount 5", "Id": 875 }, { "CommandName": "Invoke-PnPSiteDesign", - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 876 }, { "CommandName": "Invoke-PnPSiteDesign", - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Id": 877 }, { "CommandName": "Invoke-PnPSiteScript", - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Rank": 1, + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Id": 878 }, { "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", "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": 879 }, { "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", "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", "Id": 880 }, { "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", "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", "Id": 881 }, { "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Rank": 1, + "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Id": 882 }, { "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Rank": 2, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Id": 883 }, { "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Id": 884 }, { "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Rank": 4, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Id": 885 }, { "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Rank": 5, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Id": 886 }, { "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Rank": 6, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Id": 887 }, { "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Rank": 7, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Id": 888 }, { "CommandName": "Invoke-PnPSiteTemplate", - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Rank": 8, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Id": 889 }, { "CommandName": "Invoke-PnPSPRestMethod", - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Rank": 1, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Id": 890 }, { "CommandName": "Invoke-PnPTenantTemplate", - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Rank": 1, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Id": 891 }, { "CommandName": "Invoke-PnPTenantTemplate", - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Rank": 2, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Id": 892 }, { "CommandName": "Invoke-PnPTenantTemplate", - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Id": 893 }, { "CommandName": "Invoke-PnPWebAction", - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Rank": 1, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Id": 894 }, { "CommandName": "Invoke-PnPWebAction", - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Rank": 2, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Id": 895 }, { "CommandName": "Measure-PnPList", - "Command": "Measure-PnPList \"Documents\"", "Rank": 1, + "Command": "Measure-PnPList \"Documents\"", "Id": 896 }, { "CommandName": "Measure-PnPList", - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Rank": 2, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Id": 897 }, { "CommandName": "Measure-PnPWeb", - "Command": "Measure-PnPWeb", "Rank": 1, + "Command": "Measure-PnPWeb", "Id": 898 }, { "CommandName": "Measure-PnPWeb", - "Command": "Measure-PnPWeb $web -Recursive", "Rank": 2, + "Command": "Measure-PnPWeb $web -Recursive", "Id": 899 }, { "CommandName": "Move-PnPFile", - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Rank": 1, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Id": 900 }, { "CommandName": "Move-PnPFile", - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Rank": 2, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Id": 901 }, { "CommandName": "Move-PnPFile", - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 3, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Id": 902 }, { "CommandName": "Move-PnPFile", - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 4, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Id": 903 }, { "CommandName": "Move-PnPFolder", - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Rank": 1, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Id": 904 }, { "CommandName": "Move-PnPFolder", - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Rank": 2, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Id": 905 }, { "CommandName": "Move-PnPListItemToRecycleBin", - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Id": 906 }, { "CommandName": "Move-PnPPageComponent", - "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 -Section 1", "Id": 907 }, { "CommandName": "Move-PnPPageComponent", - "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 -Column 2", "Id": 908 }, { "CommandName": "Move-PnPPageComponent", - "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", "Id": 909 }, { "CommandName": "Move-PnPPageComponent", - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Rank": 4, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Id": 910 }, { "CommandName": "Move-PnpRecycleBinItem", - "Command": "Move-PnPRecycleBinItem", "Rank": 1, + "Command": "Move-PnPRecycleBinItem", "Id": 911 }, { "CommandName": "Move-PnpRecycleBinItem", - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Rank": 2, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Id": 912 }, { "CommandName": "Move-PnpRecycleBinItem", - "Command": "Move-PnPRecycleBinItem -Force", "Rank": 3, + "Command": "Move-PnPRecycleBinItem -Force", "Id": 913 }, { "CommandName": "Move-PnPTerm", - "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 d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", "Id": 914 }, { "CommandName": "Move-PnPTerm", - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Rank": 2, + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Id": 915 }, { "CommandName": "Move-PnPTerm", - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Rank": 3, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Id": 916 }, { "CommandName": "Move-PnPTermSet", - "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 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", "Id": 917 }, { "CommandName": "Move-PnPTermSet", - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Rank": 2, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Id": 918 }, { "CommandName": "New-PnPAzureADGroup", - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Id": 919 }, { "CommandName": "New-PnPAzureADGroup", - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Rank": 2, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Id": 920 }, { "CommandName": "New-PnPAzureADGroup", - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Rank": 3, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Id": 921 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Rank": 1, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Id": 922 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Rank": 2, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Id": 923 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Rank": 3, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Id": 924 }, { "CommandName": "New-PnPAzureCertificate", - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Rank": 1, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Id": 925 }, { "CommandName": "New-PnPAzureCertificate", - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Rank": 2, + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Id": 926 }, { "CommandName": "New-PnPAzureCertificate", - "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 -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "Id": 927 }, { "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()", "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": 928 }, { "CommandName": "New-PnPGraphSubscription", - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", "Rank": 2, + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", "Id": 929 }, { "CommandName": "New-PnPGroup", - "Command": "New-PnPGroup -Title \"My Site Users\"", "Rank": 1, + "Command": "New-PnPGroup -Title \"My Site Users\"", "Id": 930 }, { "CommandName": "New-PnPList", - "Command": "New-PnPList -Title Announcements -Template Announcements", "Rank": 1, + "Command": "New-PnPList -Title Announcements -Template Announcements", "Id": 931 }, { "CommandName": "New-PnPList", - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Rank": 2, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Id": 932 }, { "CommandName": "New-PnPList", - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Rank": 3, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Id": 933 }, { "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Id": 934 }, { "CommandName": "New-PnPMicrosoft365Group", - "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 -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "Id": 935 }, { "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Rank": 3, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Id": 936 }, { "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Rank": 4, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Id": 937 }, { "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 5, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Id": 938 }, { "CommandName": "New-PnPMicrosoft365Group", - "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 -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Id": 939 }, { "CommandName": "New-PnPMicrosoft365Group", - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "Rank": 7, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "Id": 940 }, { "CommandName": "New-PnPMicrosoft365GroupSettings", - "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 -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", "Id": 941 }, { "CommandName": "New-PnPMicrosoft365GroupSettings", - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Rank": 2, + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Id": 942 }, { "CommandName": "New-PnPPersonalSite", - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Rank": 1, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Id": 943 }, { "CommandName": "New-PnPPlannerPlan", - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Rank": 1, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Id": 944 }, { "CommandName": "New-PnPSdnProvider", - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Rank": 1, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Id": 945 }, { "CommandName": "New-PnPSite", - "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", "Id": 946 }, { "CommandName": "New-PnPSite", - "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 -SiteDesign Showcase", "Id": 947 }, { "CommandName": "New-PnPSite", - "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 -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "Id": 948 }, { "CommandName": "New-PnPSite", - "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 -Classification \"HBI\"", "Id": 949 }, { "CommandName": "New-PnPSite", - "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 -ShareByEmailEnabled", "Id": 950 }, { "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 6, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Id": 951 }, { "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Rank": 7, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Id": 952 }, { "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Rank": 8, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Id": 953 }, { "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Rank": 9, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Id": 954 }, { "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Rank": 10, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Id": 955 }, { "CommandName": "New-PnPSite", - "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", "Id": 956 }, { "CommandName": "New-PnPSite", - "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 -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "Id": 957 }, { "CommandName": "New-PnPSite", - "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 -Classification \"HBI\"", "Id": 958 }, { "CommandName": "New-PnPSite", - "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 -ShareByEmailEnabled", "Id": 959 }, { "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 15, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Id": 960 }, { "CommandName": "New-PnPSite", - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Rank": 16, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Id": 961 }, { "CommandName": "New-PnPSiteCollectionTermStore", - "Command": "New-PnPSiteCollectionTermStore", "Rank": 1, + "Command": "New-PnPSiteCollectionTermStore", "Id": 962 }, { "CommandName": "New-PnPSiteGroup", - "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/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "Id": 963 }, { "CommandName": "New-PnPSiteGroup", - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Rank": 2, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Id": 964 }, { "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Rank": 1, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Id": 965 }, { "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Rank": 2, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Id": 966 }, { "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Rank": 3, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Id": 967 }, { "CommandName": "New-PnPSiteTemplateFromFolder", - "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\"", "Id": 968 }, { "CommandName": "New-PnPSiteTemplateFromFolder", - "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\" -ContentType \"Test Content Type\"", "Id": 969 }, { "CommandName": "New-PnPSiteTemplateFromFolder", - "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.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 970 }, { "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Rank": 7, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Id": 971 }, { "CommandName": "New-PnPSiteTemplateFromFolder", - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Rank": 8, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Id": 972 }, { "CommandName": "New-PnPTeamsApp", - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Rank": 1, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Id": 973 }, { "CommandName": "New-PnPTeamsTeam", - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Rank": 1, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Id": 974 }, { "CommandName": "New-PnPTeamsTeam", - "Command": "New-PnPTeamsTeam -GroupId $groupId", "Rank": 2, + "Command": "New-PnPTeamsTeam -GroupId $groupId", "Id": 975 }, { "CommandName": "New-PnPTeamsTeam", - "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", "Id": 976 }, { "CommandName": "New-PnPTeamsTeam", - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 4, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Id": 977 }, { "CommandName": "New-PnPTeamsTeam", - "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\"", "Id": 978 }, { "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\"", "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\"", "Id": 979 }, { "CommandName": "New-PnPTenantSite", - "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 \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", "Id": 980 }, { "CommandName": "New-PnPTenantSite", - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Rank": 2, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Id": 981 }, { "CommandName": "New-PnPTerm", - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Rank": 1, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Id": 982 }, { "CommandName": "New-PnPTerm", - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Id": 983 }, { "CommandName": "New-PnPTermGroup", - "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Rank": 1, + "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Id": 984 }, { "CommandName": "New-PnPTermLabel", - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Rank": 1, + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Id": 985 }, { "CommandName": "New-PnPTermSet", - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Rank": 1, + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Id": 986 }, { "CommandName": "New-PnPUPABulkImportJob", - "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/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "Id": 987 }, { "CommandName": "New-PnPUPABulkImportJob", - "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-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", "Id": 988 }, { "CommandName": "New-PnPUser", - "Command": "New-PnPUser -LoginName user@company.com", "Rank": 1, + "Command": "New-PnPUser -LoginName user@company.com", "Id": 989 }, { "CommandName": "New-PnPWeb", - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Rank": 1, + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Id": 990 }, { "CommandName": "Publish-PnPApp", - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 1, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 991 }, { "CommandName": "Publish-PnPApp", - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Rank": 2, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Id": 992 }, { "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", "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", "Id": 993 }, { "CommandName": "Publish-PnPContentType", - "Command": "Publish-PnPContentType -ContentType 0x0101", "Rank": 1, + "Command": "Publish-PnPContentType -ContentType 0x0101", "Id": 994 }, { "CommandName": "Publish-PnPSyntexModel", - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Id": 995 }, { "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", "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", "Id": 996 }, { "CommandName": "Read-PnPSiteTemplate", - "Command": "Read-PnPSiteTemplate -Path template.pnp", "Rank": 1, + "Command": "Read-PnPSiteTemplate -Path template.pnp", "Id": 997 }, { "CommandName": "Read-PnPSiteTemplate", - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Rank": 2, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Id": 998 }, { "CommandName": "Read-PnPSiteTemplate", - "Command": "Read-PnPSiteTemplate -Xml $xml", "Rank": 3, + "Command": "Read-PnPSiteTemplate -Xml $xml", "Id": 999 }, { "CommandName": "Read-PnPTenantTemplate", - "Command": "Read-PnPTenantTemplate -Path template.pnp", "Rank": 1, + "Command": "Read-PnPTenantTemplate -Path template.pnp", "Id": 1000 }, { "CommandName": "Register-PnPAppCatalogSite", - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Rank": 1, + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Id": 1001 }, { "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\")", "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": 1002 }, { "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\")", "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\")", "Id": 1003 }, { "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\")", "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\")", "Id": 1004 }, { "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\")", "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\")", "Id": 1005 }, { "CommandName": "Register-PnPAzureADApp", - "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 -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Id": 1006 }, { "CommandName": "Register-PnPAzureADApp", - "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 -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Id": 1007 }, { "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", "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", "Id": 1008 }, { "CommandName": "Register-PnPHubSite", - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Id": 1009 }, { "CommandName": "Register-PnPHubSite", - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Rank": 2, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Id": 1010 }, { "CommandName": "Register-PnPManagementShellAccess", - "Command": "Register-PnPManagementShellAccess", "Rank": 1, + "Command": "Register-PnPManagementShellAccess", "Id": 1011 }, { "CommandName": "Register-PnPManagementShellAccess", - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Rank": 2, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Id": 1012 }, { "CommandName": "Register-PnPManagementShellAccess", - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Rank": 3, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Id": 1013 }, { "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Rank": 1, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Id": 1014 }, { "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Rank": 2, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Id": 1015 }, { "CommandName": "Remove-PnPAlert", - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Rank": 1, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Id": 1016 }, { "CommandName": "Remove-PnPAlert", - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 2, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 1017 }, { "CommandName": "Remove-PnPApp", - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1018 }, { "CommandName": "Remove-PnPApp", - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1019 }, { "CommandName": "Remove-PnPApplicationCustomizer", - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1020 }, { "CommandName": "Remove-PnPApplicationCustomizer", - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Id": 1021 }, { "CommandName": "Remove-PnPAvailableSiteClassification", - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Rank": 1, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Id": 1022 }, { "CommandName": "Remove-PnPAvailableSiteClassification", - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 2, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Id": 1023 }, { "CommandName": "Remove-PnPAzureADApp", - "Command": "Remove-PnPAzureADApp -Identity MyApp", "Rank": 1, + "Command": "Remove-PnPAzureADApp -Identity MyApp", "Id": 1024 }, { "CommandName": "Remove-PnPAzureADApp", - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 2, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 1025 }, { "CommandName": "Remove-PnPAzureADGroup", - "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Rank": 1, + "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Id": 1026 }, { "CommandName": "Remove-PnPAzureADGroup", - "Command": "Remove-PnPAzureADGroup -Identity $group", "Rank": 2, + "Command": "Remove-PnPAzureADGroup -Identity $group", "Id": 1027 }, { "CommandName": "Remove-PnPAzureADGroupMember", - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1028 }, { "CommandName": "Remove-PnPAzureADGroupOwner", - "Command": "Remove-PnPAzureADGroupOwner -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": 1029 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Rank": 1, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Id": 1030 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Rank": 2, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Id": 1031 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 3, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 1032 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 4, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Id": 1033 }, { "CommandName": "Remove-PnPContentType", - "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Rank": 1, + "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Id": 1034 }, { "CommandName": "Remove-PnPContentType", - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Rank": 2, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Id": 1035 }, { "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Id": 1036 }, { "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Id": 1037 }, { "CommandName": "Remove-PnPContentTypeFromList", - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Rank": 1, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Id": 1038 }, { "CommandName": "Remove-PnPCustomAction", - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1039 }, { "CommandName": "Remove-PnPCustomAction", - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Id": 1040 }, { "CommandName": "Remove-PnPCustomAction", - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Rank": 3, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Id": 1041 }, { "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 1042 }, { "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 1, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 1043 }, { "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 1044 }, { "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Rank": 3, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Id": 1045 }, { "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -List ProjectList", "Rank": 4, + "Command": "Remove-PnPEventReceiver -List ProjectList", "Id": 1046 }, { "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver", "Rank": 5, + "Command": "Remove-PnPEventReceiver", "Id": 1047 }, { "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -Scope Site", "Rank": 6, + "Command": "Remove-PnPEventReceiver -Scope Site", "Id": 1048 }, { "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -Scope Web", "Rank": 7, + "Command": "Remove-PnPEventReceiver -Scope Web", "Id": 1049 }, { "CommandName": "Remove-PnPEventReceiver", - "Command": "Remove-PnPEventReceiver -Scope All", "Rank": 8, + "Command": "Remove-PnPEventReceiver -Scope All", "Id": 1050 }, { "CommandName": "Remove-PnPField", - "Command": "Remove-PnPField -Identity \"Speakers\"", "Rank": 1, + "Command": "Remove-PnPField -Identity \"Speakers\"", "Id": 1051 }, { "CommandName": "Remove-PnPField", - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Id": 1052 }, { "CommandName": "Remove-PnPFieldFromContentType", - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Id": 1053 }, { "CommandName": "Remove-PnPFieldFromContentType", - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Rank": 2, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Id": 1054 }, { "CommandName": "Remove-PnPFile", - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Rank": 1, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Id": 1055 }, { "CommandName": "Remove-PnPFile", - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Rank": 2, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Id": 1056 }, { "CommandName": "Remove-PnPFile", - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Rank": 3, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Id": 1057 }, { "CommandName": "Remove-PnPFileFromSiteTemplate", - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Rank": 1, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Id": 1058 }, { "CommandName": "Remove-PnPFileSharingLink", - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 1059 }, { "CommandName": "Remove-PnPFileSharingLink", - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Rank": 2, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Id": 1060 }, { "CommandName": "Remove-PnPFileVersion", - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Id": 1061 }, { "CommandName": "Remove-PnPFileVersion", - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 2, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Id": 1062 }, { "CommandName": "Remove-PnPFileVersion", - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Rank": 3, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Id": 1063 }, { "CommandName": "Remove-PnPFlowOwner", - "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 username@tenant.onmicrosoft.com", "Id": 1064 }, { "CommandName": "Remove-PnPFlowOwner", - "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 6844c04a-8ee7-40ad-af66-28f6e948cd04", "Id": 1065 }, { "CommandName": "Remove-PnPFlowOwner", - "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", "Id": 1066 }, { "CommandName": "Remove-PnPFlowOwner", - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "Rank": 4, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "Id": 1067 }, { "CommandName": "Remove-PnPFolder", - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Id": 1068 }, { "CommandName": "Remove-PnPFolder", - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Rank": 2, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Id": 1069 }, { "CommandName": "Remove-PnPFolderSharingLink", - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 1070 }, { "CommandName": "Remove-PnPFolderSharingLink", - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Rank": 2, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Id": 1071 }, { "CommandName": "Remove-PnPGraphSubscription", - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Rank": 1, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Id": 1072 }, { "CommandName": "Remove-PnPGroup", - "Command": "Remove-PnPGroup -Identity \"My Users\"", "Rank": 1, + "Command": "Remove-PnPGroup -Identity \"My Users\"", "Id": 1073 }, { "CommandName": "Remove-PnPGroupMember", - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Id": 1074 }, { "CommandName": "Remove-PnPHomeSite", - "Command": "Remove-PnPHomeSite", "Rank": 1, + "Command": "Remove-PnPHomeSite", "Id": 1075 }, { "CommandName": "Remove-PnPHubSiteAssociation", - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Id": 1076 }, { "CommandName": "Remove-PnPHubToHubAssociation", - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Rank": 1, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Id": 1077 }, { "CommandName": "Remove-PnPHubToHubAssociation", - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Rank": 2, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Id": 1078 }, { "CommandName": "Remove-PnPIndexedProperty", - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Rank": 1, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Id": 1079 }, { "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Rank": 1, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Id": 1080 }, { "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Rank": 2, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Id": 1081 }, { "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Rank": 3, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Id": 1082 }, { "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Scope Site", "Rank": 4, + "Command": "Remove-PnPJavaScriptLink -Scope Site", "Id": 1083 }, { "CommandName": "Remove-PnPJavaScriptLink", - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Rank": 5, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Id": 1084 }, { "CommandName": "Remove-PnPKnowledgeHubSite", - "Command": "Remove-PnPKnowledgeHubSite", "Rank": 1, + "Command": "Remove-PnPKnowledgeHubSite", "Id": 1085 }, { "CommandName": "Remove-PnPList", - "Command": "Remove-PnPList -Identity Announcements", "Rank": 1, + "Command": "Remove-PnPList -Identity Announcements", "Id": 1086 }, { "CommandName": "Remove-PnPList", - "Command": "Remove-PnPList -Identity Announcements -Force", "Rank": 2, + "Command": "Remove-PnPList -Identity Announcements -Force", "Id": 1087 }, { "CommandName": "Remove-PnPList", - "Command": "Remove-PnPList -Identity Announcements -Recycle", "Rank": 3, + "Command": "Remove-PnPList -Identity Announcements -Recycle", "Id": 1088 }, { "CommandName": "Remove-PnPList", - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Rank": 4, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Id": 1089 }, { "CommandName": "Remove-PnPListDesign", - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1090 }, { "CommandName": "Remove-PnPListItem", - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Id": 1091 }, { "CommandName": "Remove-PnPListItem", - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Rank": 2, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Id": 1092 }, { "CommandName": "Remove-PnPListItem", - "Command": "Remove-PnPListItem -List \"Demo List\"", "Rank": 3, + "Command": "Remove-PnPListItem -List \"Demo List\"", "Id": 1093 }, { "CommandName": "Remove-PnPListItemAttachment", - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Rank": 1, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Id": 1094 }, { "CommandName": "Remove-PnPListItemAttachment", - "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", "Id": 1095 }, { "CommandName": "Remove-PnPListItemAttachment", - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Rank": 3, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Id": 1096 }, { "CommandName": "Remove-PnPListItemAttachment", - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Rank": 4, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Id": 1097 }, { "CommandName": "Remove-PnPListItemAttachment", - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Rank": 5, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Id": 1098 }, { "CommandName": "Remove-PnPListItemVersion", - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Id": 1099 }, { "CommandName": "Remove-PnPListItemVersion", - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Id": 1100 }, { "CommandName": "Remove-PnPMicrosoft365Group", - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Rank": 1, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Id": 1101 }, { "CommandName": "Remove-PnPMicrosoft365Group", - "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Rank": 2, + "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Id": 1102 }, { "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1103 }, { "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Command": "Remove-PnPMicrosoft365GroupOwner -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": 1104 }, { "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Id": 1105 }, { "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Rank": 2, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Id": 1106 }, { "CommandName": "Remove-PnPNavigationNode", - "Command": "Remove-PnPNavigationNode -Identity 1032", "Rank": 1, + "Command": "Remove-PnPNavigationNode -Identity 1032", "Id": 1107 }, { "CommandName": "Remove-PnPNavigationNode", - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Rank": 2, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Id": 1108 }, { "CommandName": "Remove-PnPNavigationNode", - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Rank": 3, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Id": 1109 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Rank": 1, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Id": 1110 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Rank": 2, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Id": 1111 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Rank": 3, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Id": 1112 }, { "CommandName": "Remove-PnPOrgNewsSite", - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Id": 1113 }, { "CommandName": "Remove-PnPPage", - "Command": "Remove-PnPPage -Identity \"MyPage\"", "Rank": 1, + "Command": "Remove-PnPPage -Identity \"MyPage\"", "Id": 1114 }, { "CommandName": "Remove-PnPPage", - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Rank": 2, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Id": 1115 }, { "CommandName": "Remove-PnPPage", - "Command": "Remove-PnPPage $page", "Rank": 3, + "Command": "Remove-PnPPage $page", "Id": 1116 }, { "CommandName": "Remove-PnPPage", - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Rank": 4, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Id": 1117 }, { "CommandName": "Remove-PnPPageComponent", - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 1118 }, { "CommandName": "Remove-PnPPlannerBucket", - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Rank": 1, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Id": 1119 }, { "CommandName": "Remove-PnPPlannerPlan", - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Rank": 1, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Id": 1120 }, { "CommandName": "Remove-PnPPlannerRoster", - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Id": 1121 }, { "CommandName": "Remove-PnPPlannerRosterMember", - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 1122 }, { "CommandName": "Remove-PnPPlannerTask", - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Rank": 1, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Id": 1123 }, { "CommandName": "Remove-PnPPropertyBagValue", - "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Rank": 1, + "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Id": 1124 }, { "CommandName": "Remove-PnPPropertyBagValue", - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Rank": 2, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Id": 1125 }, { "CommandName": "Remove-PnPPropertyBagValue", - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Rank": 3, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Id": 1126 }, { "CommandName": "Remove-PnPPublishingImageRendition", - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Id": 1127 }, { "CommandName": "Remove-PnPRoleDefinition", - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Rank": 1, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Id": 1128 }, { "CommandName": "Remove-PnPSdnProvider", - "Command": "Remove-PnPSdnProvider -Confirm:false", "Rank": 1, + "Command": "Remove-PnPSdnProvider -Confirm:false", "Id": 1129 }, { "CommandName": "Remove-PnPSearchConfiguration", - "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Rank": 1, + "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Id": 1130 }, { "CommandName": "Remove-PnPSearchConfiguration", - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Id": 1131 }, { "CommandName": "Remove-PnPSearchConfiguration", - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Id": 1132 }, { "CommandName": "Remove-PnPSearchConfiguration", - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 1133 }, { "CommandName": "Remove-PnPSiteCollectionAdmin", - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Id": 1134 }, { "CommandName": "Remove-PnPSiteCollectionAdmin", - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 1135 }, { "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 1, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Id": 1136 }, { "CommandName": "Remove-PnPSiteCollectionTermStore", - "Command": "Remove-PnPSiteCollectionTermStore", "Rank": 1, + "Command": "Remove-PnPSiteCollectionTermStore", "Id": 1137 }, { "CommandName": "Remove-PnPSiteDesign", - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1138 }, { "CommandName": "Remove-PnPSiteDesignTask", - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1139 }, { "CommandName": "Remove-PnPSiteGroup", - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1140 }, { "CommandName": "Remove-PnPSiteGroup", - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Rank": 2, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Id": 1141 }, { "CommandName": "Remove-PnPSiteScript", - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1142 }, { "CommandName": "Remove-PnPSiteUserInvitations", - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Id": 1143 }, { "CommandName": "Remove-PnPStorageEntity", - "Command": "Remove-PnPStorageEntity -Key MyKey", "Rank": 1, + "Command": "Remove-PnPStorageEntity -Key MyKey", "Id": 1144 }, { "CommandName": "Remove-PnPStorageEntity", - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 2, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Id": 1145 }, { "CommandName": "Remove-PnPStoredCredential", - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Rank": 1, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Id": 1146 }, { "CommandName": "Remove-PnPTaxonomyItem", - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Rank": 1, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Id": 1147 }, { "CommandName": "Remove-PnPTaxonomyItem", - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Rank": 2, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Id": 1148 }, { "CommandName": "Remove-PnPTeamsApp", - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Rank": 1, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Id": 1149 }, { "CommandName": "Remove-PnPTeamsApp", - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Rank": 2, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Id": 1150 }, { "CommandName": "Remove-PnPTeamsChannel", - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Rank": 1, + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Id": 1151 }, { "CommandName": "Remove-PnPTeamsChannelUser", - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Rank": 1, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Id": 1152 }, { "CommandName": "Remove-PnPTeamsChannelUser", - "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 00000000-0000-0000-0000-000000000000", "Id": 1153 }, { "CommandName": "Remove-PnPTeamsChannelUser", - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Rank": 3, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Id": 1154 }, { "CommandName": "Remove-PnPTeamsTab", - "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 \"General\" -Identity Wiki", "Id": 1155 }, { "CommandName": "Remove-PnPTeamsTab", - "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 Wiki", "Id": 1156 }, { "CommandName": "Remove-PnPTeamsTab", - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", "Rank": 3, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", "Id": 1157 }, { "CommandName": "Remove-PnPTeamsTag", - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 1, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Id": 1158 }, { "CommandName": "Remove-PnPTeamsTeam", - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Id": 1159 }, { "CommandName": "Remove-PnPTeamsTeam", - "Command": "Remove-PnPTeamsTeam -Identity testteam", "Rank": 2, + "Command": "Remove-PnPTeamsTeam -Identity testteam", "Id": 1160 }, { "CommandName": "Remove-PnPTeamsUser", - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Rank": 1, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Id": 1161 }, { "CommandName": "Remove-PnPTeamsUser", - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 2, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 1162 }, { "CommandName": "Remove-PnPTenantCdnOrigin", - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Id": 1163 }, { "CommandName": "Remove-PnPTenantDeletedSite", - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1164 }, { "CommandName": "Remove-PnPTenantDeletedSite", - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Id": 1165 }, { "CommandName": "Remove-PnPTenantSite", - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1166 }, { "CommandName": "Remove-PnPTenantSite", - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Rank": 2, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Id": 1167 }, { "CommandName": "Remove-PnPTenantSite", - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Rank": 3, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Id": 1168 }, { "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Command": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, + "Command": "Remove-PnPTenantSyncClientRestriction", "Id": 1169 }, { "CommandName": "Remove-PnPTenantTheme", - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 1, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Id": 1170 }, { "CommandName": "Remove-PnPTerm", - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Id": 1171 }, { "CommandName": "Remove-PnPTerm", - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 1172 }, { "CommandName": "Remove-PnPTermGroup", - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Id": 1173 }, { "CommandName": "Remove-PnPTermGroup", - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Rank": 2, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Id": 1174 }, { "CommandName": "Remove-PnPTermGroup", - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Rank": 3, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Id": 1175 }, { "CommandName": "Remove-PnPTermLabel", - "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 2d1f298b-804a-4a05-96dc-29b667adec62", "Id": 1176 }, { "CommandName": "Remove-PnPTermLabel", - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 1177 }, { "CommandName": "Remove-PnPUser", - "Command": "Remove-PnPUser -Identity 23", "Rank": 1, + "Command": "Remove-PnPUser -Identity 23", "Id": 1178 }, { "CommandName": "Remove-PnPUser", - "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", "Id": 1179 }, { "CommandName": "Remove-PnPUser", - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Rank": 3, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Id": 1180 }, { "CommandName": "Remove-PnPUserInfo", - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Id": 1181 }, { "CommandName": "Remove-PnPUserProfile", - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Rank": 1, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Id": 1182 }, { "CommandName": "Remove-PnPView", - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Rank": 1, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Id": 1183 }, { "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 1, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Id": 1184 }, { "CommandName": "Remove-PnPWeb", - "Command": "Remove-PnPWeb -Identity projectA", "Rank": 1, + "Command": "Remove-PnPWeb -Identity projectA", "Id": 1185 }, { "CommandName": "Remove-PnPWeb", - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Rank": 2, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Id": 1186 }, { "CommandName": "Remove-PnPWebhookSubscription", - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Rank": 1, + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Id": 1187 }, { "CommandName": "Remove-PnPWebPart", - "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\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 1188 }, { "CommandName": "Remove-PnPWebPart", - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Rank": 2, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Id": 1189 }, { "CommandName": "Remove-PnPWikiPage", - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Rank": 1, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Id": 1190 }, { "CommandName": "Rename-PnPFile", - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Rank": 1, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Id": 1191 }, { "CommandName": "Rename-PnPFile", - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Rank": 2, + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Id": 1192 }, { "CommandName": "Rename-PnPFile", - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Rank": 3, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Id": 1193 }, { "CommandName": "Rename-PnPFolder", - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Rank": 1, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Id": 1194 }, { "CommandName": "Repair-PnPSite", - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1195 }, { "CommandName": "Repair-PnPSite", - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Id": 1196 }, { "CommandName": "Request-PnPAccessToken", - "Command": "Request-PnPAccessToken", "Rank": 1, + "Command": "Request-PnPAccessToken", "Id": 1197 }, { "CommandName": "Request-PnPAccessToken", - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Rank": 2, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Id": 1198 }, { "CommandName": "Request-PnPAccessToken", - "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", "Id": 1199 }, { "CommandName": "Request-PnPAccessToken", - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Rank": 4, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Id": 1200 }, { "CommandName": "Request-PnPPersonalSite", - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Rank": 1, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Id": 1201 }, { "CommandName": "Request-PnPPersonalSite", - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Rank": 2, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Id": 1202 }, { "CommandName": "Request-PnPReIndexList", - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Rank": 1, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Id": 1203 }, { "CommandName": "Request-PnPReIndexWeb", - "Command": "Request-PnPReIndexWeb", "Rank": 1, + "Command": "Request-PnPReIndexWeb", "Id": 1204 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Rank": 1, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Id": 1205 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Rank": 2, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Id": 1206 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Rank": 3, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Id": 1207 }, { "CommandName": "Reset-PnPFileVersion", - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Rank": 1, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Id": 1208 }, { "CommandName": "Reset-PnPFileVersion", - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Rank": 2, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Id": 1209 }, { "CommandName": "Reset-PnPLabel", - "Command": "Reset-PnPLabel -List \"Demo List\"", "Rank": 1, + "Command": "Reset-PnPLabel -List \"Demo List\"", "Id": 1210 }, { "CommandName": "Reset-PnPLabel", - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Rank": 2, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Id": 1211 }, { "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Command": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, + "Command": "Reset-PnPMicrosoft365GroupExpiration", "Id": 1212 }, { "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Rank": 1, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Id": 1213 }, { "CommandName": "Resolve-PnPFolder", - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Rank": 1, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Id": 1214 }, { "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 1215 }, { "CommandName": "Restore-PnPFileVersion", - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Id": 1216 }, { "CommandName": "Restore-PnPFileVersion", - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Rank": 2, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Id": 1217 }, { "CommandName": "Restore-PnPFileVersion", - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 3, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Id": 1218 }, { "CommandName": "Restore-PnPListItemVersion", - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Id": 1219 }, { "CommandName": "Restore-PnPListItemVersion", - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Id": 1220 }, { "CommandName": "Restore-PnPRecycleBinItem", - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Id": 1221 }, { "CommandName": "Restore-PnPTenantRecycleBinItem", - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1222 }, { "CommandName": "Restore-PnPTenantRecycleBinItem", - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Id": 1223 }, { "CommandName": "Restore-PnPTenantSite", - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1224 }, { "CommandName": "Restore-PnPTenantSite", - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Id": 1225 }, { "CommandName": "Restore-PnPTenantSite", - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Rank": 3, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Id": 1226 }, { "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Rank": 1, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Id": 1227 }, { "CommandName": "Revoke-PnPHubSiteRights", - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 1228 }, { "CommandName": "Revoke-PnPSiteDesignRights", - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -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": 1229 }, { "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Id": 1230 }, { "CommandName": "Revoke-PnPUserSession", - "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Rank": 1, + "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Id": 1231 }, { "CommandName": "Save-PnPPageConversionLog", - "Command": "Save-PnPPageConversionLog", "Rank": 1, + "Command": "Save-PnPPageConversionLog", "Id": 1232 }, { "CommandName": "Save-PnPSiteTemplate", - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Rank": 1, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Id": 1233 }, { "CommandName": "Save-PnPTenantTemplate", - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Rank": 1, + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Id": 1234 }, { "CommandName": "Send-PnPMail", - "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 \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Id": 1235 }, { "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", "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", "Id": 1236 }, { "CommandName": "Send-PnPMail", - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Rank": 3, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Id": 1237 }, { "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", "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", "Id": 1238 }, { "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", "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", "Id": 1239 }, { "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\"", "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\"", "Id": 1240 }, { "CommandName": "Set-PnPAdaptiveScopeProperty", - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Rank": 1, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Id": 1241 }, { "CommandName": "Set-PnPApplicationCustomizer", - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1242 }, { "CommandName": "Set-PnPApplicationCustomizer", - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", "Rank": 2, + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", "Id": 1243 }, { "CommandName": "Set-PnPAppSideLoading", - "Command": "Set-PnPAppSideLoading -On", "Rank": 1, + "Command": "Set-PnPAppSideLoading -On", "Id": 1244 }, { "CommandName": "Set-PnPAppSideLoading", - "Command": "Set-PnPAppSideLoading -Off", "Rank": 2, + "Command": "Set-PnPAppSideLoading -Off", "Id": 1245 }, { "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -EnableAll", "Rank": 1, + "Command": "Set-PnPAuditing -EnableAll", "Id": 1246 }, { "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -DisableAll", "Rank": 2, + "Command": "Set-PnPAuditing -DisableAll", "Id": 1247 }, { "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -RetentionTime 7", "Rank": 3, + "Command": "Set-PnPAuditing -RetentionTime 7", "Id": 1248 }, { "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -TrimAuditLog", "Rank": 4, + "Command": "Set-PnPAuditing -TrimAuditLog", "Id": 1249 }, { "CommandName": "Set-PnPAuditing", - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Rank": 5, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Id": 1250 }, { "CommandName": "Set-PnPAvailablePageLayouts", - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Rank": 1, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Id": 1251 }, { "CommandName": "Set-PnPAzureADAppSitePermission", - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Rank": 1, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Id": 1252 }, { "CommandName": "Set-PnPAzureADAppSitePermission", - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Rank": 2, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Id": 1253 }, { "CommandName": "Set-PnPAzureADGroup", - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Id": 1254 }, { "CommandName": "Set-PnPAzureADGroup", - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Id": 1255 }, { "CommandName": "Set-PnPAzureADGroup", - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Rank": 3, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Id": 1256 }, { "CommandName": "Set-PnPBrowserIdleSignout", - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Rank": 1, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Id": 1257 }, { "CommandName": "Set-PnPBrowserIdleSignout", - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Rank": 2, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Id": 1258 }, { "CommandName": "Set-PnPBrowserIdleSignout", - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Rank": 3, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Id": 1259 }, { "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Rank": 1, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Id": 1260 }, { "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Rank": 2, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Id": 1261 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Rank": 1, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Id": 1262 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Rank": 2, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Id": 1263 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Rank": 3, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Id": 1264 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Rank": 4, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Id": 1265 }, { "CommandName": "Set-PnPContentType", - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 1, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Id": 1266 }, { "CommandName": "Set-PnPContentType", - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Rank": 2, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Id": 1267 }, { "CommandName": "Set-PnPContentType", - "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\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Id": 1268 }, { "CommandName": "Set-PnPContentType", - "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\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Id": 1269 }, { "CommandName": "Set-PnPContentType", - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 5, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Id": 1270 }, { "CommandName": "Set-PnPDefaultColumnValues", - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Rank": 1, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Id": 1271 }, { "CommandName": "Set-PnPDefaultColumnValues", - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Rank": 2, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Id": 1272 }, { "CommandName": "Set-PnPDefaultColumnValues", - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Rank": 3, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Id": 1273 }, { "CommandName": "Set-PnPDefaultColumnValues", - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Rank": 4, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Id": 1274 }, { "CommandName": "Set-PnPDefaultContentTypeToList", - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Rank": 1, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Id": 1275 }, { "CommandName": "Set-PnPDefaultPageLayout", - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Rank": 1, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Id": 1276 }, { "CommandName": "Set-PnPDefaultPageLayout", - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Rank": 2, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Id": 1277 }, { "CommandName": "Set-PnPDefaultPageLayout", - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Rank": 3, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Id": 1278 }, { "CommandName": "Set-PnPDisableSpacesActivation", - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Rank": 1, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Id": 1279 }, { "CommandName": "Set-PnPDisableSpacesActivation", - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 2, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Id": 1280 }, { "CommandName": "Set-PnPDisableSpacesActivation", - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 3, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Id": 1281 }, { "CommandName": "Set-PnPDocumentSetField", - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Rank": 1, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Id": 1282 }, { "CommandName": "Set-PnPDocumentSetField", - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Rank": 2, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Id": 1283 }, { "CommandName": "Set-PnPField", - "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\"}", "Id": 1284 }, { "CommandName": "Set-PnPField", - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Rank": 2, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Id": 1285 }, { "CommandName": "Set-PnPField", - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Rank": 3, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Id": 1286 }, { "CommandName": "Set-PnPFileCheckedIn", - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Rank": 1, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Id": 1287 }, { "CommandName": "Set-PnPFileCheckedIn", - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Rank": 2, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Id": 1288 }, { "CommandName": "Set-PnPFileCheckedOut", - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Rank": 1, + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Id": 1289 }, { "CommandName": "Set-PnPFolderPermission", - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Id": 1290 }, { "CommandName": "Set-PnPFolderPermission", - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Id": 1291 }, { "CommandName": "Set-PnPFolderPermission", - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Id": 1292 }, { "CommandName": "Set-PnPFooter", - "Command": "Set-PnPFooter -Enabled:$true", "Rank": 1, + "Command": "Set-PnPFooter -Enabled:$true", "Id": 1293 }, { "CommandName": "Set-PnPFooter", - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Rank": 2, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Id": 1294 }, { "CommandName": "Set-PnPFooter", - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Rank": 3, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Id": 1295 }, { "CommandName": "Set-PnPFooter", - "Command": "Set-PnPFooter -LogoUrl \"\"", "Rank": 4, + "Command": "Set-PnPFooter -LogoUrl \"\"", "Id": 1296 }, { "CommandName": "Set-PnPGraphSubscription", - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Rank": 1, + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Id": 1297 }, { "CommandName": "Set-PnPGroup", - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Rank": 1, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Id": 1298 }, { "CommandName": "Set-PnPGroup", - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Rank": 2, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Id": 1299 }, { "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Rank": 1, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Id": 1300 }, { "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Rank": 2, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Id": 1301 }, { "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Rank": 3, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Id": 1302 }, { "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Rank": 4, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Id": 1303 }, { "CommandName": "Set-PnPGroupPermissions", - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Rank": 5, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Id": 1304 }, { "CommandName": "Set-PnPHideDefaultThemes", - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Rank": 1, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Id": 1305 }, { "CommandName": "Set-PnPHideDefaultThemes", - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Rank": 2, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Id": 1306 }, { "CommandName": "Set-PnPHomePage", - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Rank": 1, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Id": 1307 }, { "CommandName": "Set-PnPHomePage", - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Rank": 2, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Id": 1308 }, { "CommandName": "Set-PnPHomeSite", - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Rank": 1, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Id": 1309 }, { "CommandName": "Set-PnPHomeSite", - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Rank": 2, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Id": 1310 }, { "CommandName": "Set-PnPHubSite", - "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\" -Title \"My New Title\"", "Id": 1311 }, { "CommandName": "Set-PnPHubSite", - "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\" -Description \"My updated description\"", "Id": 1312 }, { "CommandName": "Set-PnPHubSite", - "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\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "Id": 1313 }, { "CommandName": "Set-PnPHubSite", - "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\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "Id": 1314 }, { "CommandName": "Set-PnPHubSite", - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Rank": 5, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Id": 1315 }, { "CommandName": "Set-PnPHubSite", - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Rank": 6, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Id": 1316 }, { "CommandName": "Set-PnPImageListItemColumn", - "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\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Id": 1317 }, { "CommandName": "Set-PnPImageListItemColumn", - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Rank": 2, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Id": 1318 }, { "CommandName": "Set-PnPIndexedProperties", - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Rank": 1, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Id": 1319 }, { "CommandName": "Set-PnPInPlaceRecordsManagement", - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Rank": 1, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Id": 1320 }, { "CommandName": "Set-PnPInPlaceRecordsManagement", - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Rank": 2, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Id": 1321 }, { "CommandName": "Set-PnPKnowledgeHubSite", - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Rank": 1, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Id": 1322 }, { "CommandName": "Set-PnPLabel", - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Rank": 1, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Id": 1323 }, { "CommandName": "Set-PnPLabel", - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Rank": 2, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Id": 1324 }, { "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Rank": 1, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Id": 1325 }, { "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Rank": 2, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Id": 1326 }, { "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Rank": 3, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Id": 1327 }, { "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Rank": 4, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Id": 1328 }, { "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Rank": 5, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Id": 1329 }, { "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Rank": 6, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Id": 1330 }, { "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Rank": 7, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Id": 1331 }, { "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "Rank": 8, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "Id": 1332 }, { "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "Rank": 9, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "Id": 1333 }, { "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "Rank": 10, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "Id": 1334 }, { "CommandName": "Set-PnPList", - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "Rank": 11, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "Id": 1335 }, { "CommandName": "Set-PnPListInformationRightsManagement", - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "Rank": 1, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "Id": 1336 }, { "CommandName": "Set-PnPListInformationRightsManagement", - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "Rank": 2, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "Id": 1337 }, { "CommandName": "Set-PnPListItem", - "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 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 1338 }, { "CommandName": "Set-PnPListItem", - "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 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 1339 }, { "CommandName": "Set-PnPListItem", - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 3, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 1340 }, { "CommandName": "Set-PnPListItem", - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "Rank": 4, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "Id": 1341 }, { "CommandName": "Set-PnPListItem", - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "Rank": 5, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "Id": 1342 }, { "CommandName": "Set-PnPListItemAsRecord", - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Id": 1343 }, { "CommandName": "Set-PnPListItemAsRecord", - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "Rank": 2, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "Id": 1344 }, { "CommandName": "Set-PnPListItemPermission", - "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' -AddRole 'Contribute'", "Id": 1345 }, { "CommandName": "Set-PnPListItemPermission", - "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' -RemoveRole 'Contribute'", "Id": 1346 }, { "CommandName": "Set-PnPListItemPermission", - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Id": 1347 }, { "CommandName": "Set-PnPListItemPermission", - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "Rank": 4, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "Id": 1348 }, { "CommandName": "Set-PnPListItemPermission", - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "Rank": 5, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "Id": 1349 }, { "CommandName": "Set-PnPListPermission", - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "Id": 1350 }, { "CommandName": "Set-PnPListPermission", - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Id": 1351 }, { "CommandName": "Set-PnPListRecordDeclaration", - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "Rank": 1, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "Id": 1352 }, { "CommandName": "Set-PnPListRecordDeclaration", - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "Rank": 2, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "Id": 1353 }, { "CommandName": "Set-PnPMasterPage", - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 1, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Id": 1354 }, { "CommandName": "Set-PnPMasterPage", - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 2, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Id": 1355 }, { "CommandName": "Set-PnPMasterPage", - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 3, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Id": 1356 }, { "CommandName": "Set-PnPMasterPage", - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 4, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Id": 1357 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "Id": 1358 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "Id": 1359 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1360 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "Id": 1361 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "Id": 1362 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1363 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Id": 1364 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Id": 1365 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1366 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "Id": 1367 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "Id": 1368 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1369 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "Id": 1370 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "Id": 1371 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Command": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1372 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "Id": 1373 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "Id": 1374 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1375 }, { "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "Id": 1376 }, { "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Id": 1377 }, { "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "Rank": 3, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "Id": 1378 }, { "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "Rank": 4, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "Id": 1379 }, { "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "Rank": 5, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "Id": 1380 }, { "CommandName": "Set-PnPMicrosoft365Group", - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Id": 1381 }, { "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "Rank": 1, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "Id": 1382 }, { "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "Rank": 2, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "Id": 1383 }, { "CommandName": "Set-PnPMinimalDownloadStrategy", - "Command": "Set-PnPMinimalDownloadStrategy -Off", "Rank": 1, + "Command": "Set-PnPMinimalDownloadStrategy -Off", "Id": 1384 }, { "CommandName": "Set-PnPMinimalDownloadStrategy", - "Command": "Set-PnPMinimalDownloadStrategy -On", "Rank": 2, + "Command": "Set-PnPMinimalDownloadStrategy -On", "Id": 1385 }, { "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Rank": 1, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Id": 1386 }, { "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Rank": 2, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Id": 1387 }, { "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Rank": 3, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Id": 1388 }, { "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Rank": 4, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Id": 1389 }, { "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Rank": 5, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Id": 1390 }, { "CommandName": "Set-PnPPage", - "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\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "Id": 1391 }, { "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "Id": 1392 }, { "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "Rank": 8, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "Id": 1393 }, { "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "Id": 1394 }, { "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "Id": 1395 }, { "CommandName": "Set-PnPPage", - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "Rank": 11, + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "Id": 1396 }, { "CommandName": "Set-PnPPageTextPart", - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "Rank": 1, + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "Id": 1397 }, { "CommandName": "Set-PnPPageWebPart", - "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 \"`\"Property1`\"=`\"Value1`\"\"", "Id": 1398 }, { "CommandName": "Set-PnPPageWebPart", - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "Rank": 2, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "Id": 1399 }, { "CommandName": "Set-PnPPlannerBucket", - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "Rank": 1, + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "Id": 1400 }, { "CommandName": "Set-PnPPlannerConfiguration", - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "Rank": 1, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "Id": 1401 }, { "CommandName": "Set-PnPPlannerConfiguration", - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "Rank": 2, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "Id": 1402 }, { "CommandName": "Set-PnPPlannerPlan", - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "Rank": 1, + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "Id": 1403 }, { "CommandName": "Set-PnPPlannerTask", - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "Rank": 1, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "Id": 1404 }, { "CommandName": "Set-PnPPlannerTask", - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "Rank": 2, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "Id": 1405 }, { "CommandName": "Set-PnPPlannerTask", - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Rank": 3, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Id": 1406 }, { "CommandName": "Set-PnPPlannerUserPolicy", - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Id": 1407 }, { "CommandName": "Set-PnPPropertyBagValue", - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Rank": 1, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Id": 1408 }, { "CommandName": "Set-PnPPropertyBagValue", - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Rank": 2, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Id": 1409 }, { "CommandName": "Set-PnPPropertyBagValue", - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "Rank": 3, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "Id": 1410 }, { "CommandName": "Set-PnPRequestAccessEmails", - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Rank": 1, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Id": 1411 }, { "CommandName": "Set-PnPRequestAccessEmails", - "Command": "Set-PnPRequestAccessEmails -Disabled", "Rank": 2, + "Command": "Set-PnPRequestAccessEmails -Disabled", "Id": 1412 }, { "CommandName": "Set-PnPRequestAccessEmails", - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "Rank": 3, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "Id": 1413 }, { "CommandName": "Set-PnPRoleDefinition", - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Rank": 1, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Id": 1414 }, { "CommandName": "Set-PnPRoleDefinition", - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Rank": 2, + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Id": 1415 }, { "CommandName": "Set-PnPRoleDefinition", - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Rank": 3, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Id": 1416 }, { "CommandName": "Set-PnPRoleDefinition", - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "Rank": 4, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "Id": 1417 }, { "CommandName": "Set-PnPSearchConfiguration", - "Command": "Set-PnPSearchConfiguration -Configuration $config", "Rank": 1, + "Command": "Set-PnPSearchConfiguration -Configuration $config", "Id": 1418 }, { "CommandName": "Set-PnPSearchConfiguration", - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Id": 1419 }, { "CommandName": "Set-PnPSearchConfiguration", - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Id": 1420 }, { "CommandName": "Set-PnPSearchConfiguration", - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 1421 }, { "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", "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", "Id": 1422 }, { "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\"", "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\"", "Id": 1423 }, { "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Rank": 1, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Id": 1424 }, { "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Rank": 2, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Id": 1425 }, { "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Rank": 3, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Id": 1426 }, { "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Rank": 4, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Id": 1427 }, { "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "Rank": 5, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "Id": 1428 }, { "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchScope Tenant", "Rank": 6, + "Command": "Set-PnPSearchSettings -SearchScope Tenant", "Id": 1429 }, { "CommandName": "Set-PnPSearchSettings", - "Command": "Set-PnPSearchSettings -SearchScope Hub", "Rank": 7, + "Command": "Set-PnPSearchSettings -SearchScope Hub", "Id": 1430 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -Classification \"HBI\"", "Rank": 1, + "Command": "Set-PnPSite -Classification \"HBI\"", "Id": 1431 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -Classification $null", "Rank": 2, + "Command": "Set-PnPSite -Classification $null", "Id": 1432 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -DisableFlows", "Rank": 3, + "Command": "Set-PnPSite -DisableFlows", "Id": 1433 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -DisableFlows:$false", "Rank": 4, + "Command": "Set-PnPSite -DisableFlows:$false", "Id": 1434 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "Rank": 5, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "Id": 1435 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -NoScriptSite $false", "Rank": 6, + "Command": "Set-PnPSite -NoScriptSite $false", "Id": 1436 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "Rank": 7, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "Id": 1437 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "Rank": 8, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "Id": 1438 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "Rank": 9, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "Id": 1439 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "Rank": 10, + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "Id": 1440 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "Rank": 11, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "Id": 1441 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "Rank": 12, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "Id": 1442 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "Rank": 13, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "Id": 1443 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "Rank": 14, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "Id": 1444 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "Rank": 15, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "Id": 1445 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "Rank": 16, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "Id": 1446 }, { "CommandName": "Set-PnPSite", - "Command": "Set-PnPSite -CancelVPForExistingLibs", "Rank": 17, + "Command": "Set-PnPSite -CancelVPForExistingLibs", "Id": 1447 }, { "CommandName": "Set-PnPSiteClassification", - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "Rank": 1, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "Id": 1448 }, { "CommandName": "Set-PnPSiteClosure", - "Command": "Set-PnPSiteClosure -State Open", "Rank": 1, + "Command": "Set-PnPSiteClosure -State Open", "Id": 1449 }, { "CommandName": "Set-PnPSiteClosure", - "Command": "Set-PnPSiteClosure -State Closed", "Rank": 2, + "Command": "Set-PnPSiteClosure -State Closed", "Id": 1450 }, { "CommandName": "Set-PnPSiteDesign", - "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 Updated Company Design\"", "Id": 1451 }, { "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\"", "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\"", "Id": 1452 }, { "CommandName": "Set-PnPSiteGroup", - "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/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "Id": 1453 }, { "CommandName": "Set-PnPSiteGroup", - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "Rank": 2, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "Id": 1454 }, { "CommandName": "Set-PnPSitePolicy", - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 1, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "Id": 1455 }, { "CommandName": "Set-PnPSiteScript", - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Id": 1456 }, { "CommandName": "Set-PnPSiteScriptPackage", - "Command": "Set-PnPSiteScriptPackage -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": 1457 }, { "CommandName": "Set-PnPSiteSensitivityLabel", - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Rank": 1, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Id": 1458 }, { "CommandName": "Set-PnPSiteSensitivityLabel", - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "Rank": 2, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "Id": 1459 }, { "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "Rank": 1, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "Id": 1460 }, { "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "Rank": 2, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "Id": 1461 }, { "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 3, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Id": 1462 }, { "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 4, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Id": 1463 }, { "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 5, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Id": 1464 }, { "CommandName": "Set-PnPSiteTemplateMetadata", - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 6, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Id": 1465 }, { "CommandName": "Set-PnPStorageEntity", - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 1, + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Id": 1466 }, { "CommandName": "Set-PnPStorageEntity", - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 2, + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Id": 1467 }, { "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 1468 }, { "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 2, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 1469 }, { "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 1470 }, { "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 2, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 1471 }, { "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "Rank": 1, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "Id": 1472 }, { "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "Rank": 2, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "Id": 1473 }, { "CommandName": "Set-PnPTaxonomyFieldValue", - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "Rank": 1, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "Id": 1474 }, { "CommandName": "Set-PnPTaxonomyFieldValue", - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "Rank": 2, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "Id": 1475 }, { "CommandName": "Set-PnPTaxonomyFieldValue", - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "Rank": 3, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "Id": 1476 }, { "CommandName": "Set-PnPTeamifyPromptHidden", - "Command": "Set-PnPTeamifyPromptHidden", "Rank": 1, + "Command": "Set-PnPTeamifyPromptHidden", "Id": 1477 }, { "CommandName": "Set-PnPTeamsChannel", - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Rank": 1, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Id": 1478 }, { "CommandName": "Set-PnPTeamsChannel", - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Rank": 2, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Id": 1479 }, { "CommandName": "Set-PnpTeamsChannelUser", - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Rank": 1, + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Id": 1480 }, { "CommandName": "Set-PnpTeamsChannelUser", - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Rank": 2, + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Id": 1481 }, { "CommandName": "Set-PnPTeamsTab", - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Rank": 1, + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Id": 1482 }, { "CommandName": "Set-PnPTeamsTag", - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "Rank": 1, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "Id": 1483 }, { "CommandName": "Set-PnPTeamsTeam", - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Rank": 1, + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Id": 1484 }, { "CommandName": "Set-PnPTeamsTeam", - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Rank": 2, + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Id": 1485 }, { "CommandName": "Set-PnPTeamsTeam", - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Rank": 3, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Id": 1486 }, { "CommandName": "Set-PnPTeamsTeam", - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "Rank": 4, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "Id": 1487 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Rank": 1, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Id": 1488 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Rank": 2, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Id": 1489 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "Rank": 3, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "Id": 1490 }, { "CommandName": "Set-PnPTeamsTeamPicture", - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "Rank": 1, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "Id": 1491 }, { "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Command": "Set-PnPTemporarilyDisableAppBar $true", "Rank": 1, + "Command": "Set-PnPTemporarilyDisableAppBar $true", "Id": 1492 }, { "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Command": "Set-PnPTemporarilyDisableAppBar $false", "Rank": 2, + "Command": "Set-PnPTemporarilyDisableAppBar $false", "Id": 1493 }, { "CommandName": "Set-PnPTenant", - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", "Rank": 1, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", "Id": 1494 }, { "CommandName": "Set-PnPTenant", - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Rank": 2, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Id": 1495 }, { "CommandName": "Set-PnPTenant", - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Rank": 3, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Id": 1496 }, { "CommandName": "Set-PnPTenant", - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Rank": 4, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Id": 1497 }, { "CommandName": "Set-PnPTenantAppCatalogUrl", - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Rank": 1, + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Id": 1498 }, { "CommandName": "Set-PnPTenantCdnEnabled", - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "Rank": 1, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "Id": 1499 }, { "CommandName": "Set-PnPTenantCdnEnabled", - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "Rank": 2, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "Id": 1500 }, { "CommandName": "Set-PnPTenantCdnEnabled", - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "Rank": 3, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "Id": 1501 }, { "CommandName": "Set-PnPTenantCdnPolicy", - "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 IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", "Id": 1502 }, { "CommandName": "Set-PnPTenantCdnPolicy", - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Rank": 2, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Id": 1503 }, { "CommandName": "Set-PnPTenantSite", - "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\" -SharingCapability Disabled", "Id": 1504 }, { "CommandName": "Set-PnPTenantSite", - "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\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "Id": 1505 }, { "CommandName": "Set-PnPTenantSite", - "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 \"user@contoso.onmicrosoft.com\"", "Id": 1506 }, { "CommandName": "Set-PnPTenantSite", - "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\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 1507 }, { "CommandName": "Set-PnPTenantSite", - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "Rank": 5, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "Id": 1508 }, { "CommandName": "Set-PnPTenantSyncClientRestriction", - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Rank": 1, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Id": 1509 }, { "CommandName": "Set-PnPTenantSyncClientRestriction", - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Rank": 2, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Id": 1510 }, { "CommandName": "Set-PnPTerm", - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "Rank": 1, + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "Id": 1511 }, { "CommandName": "Set-PnPTerm", - "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\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Id": 1512 }, { "CommandName": "Set-PnPTerm", - "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\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "Id": 1513 }, { "CommandName": "Set-PnPTerm", - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "Rank": 4, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "Id": 1514 }, { "CommandName": "Set-PnPTermGroup", - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "Rank": 1, + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "Id": 1515 }, { "CommandName": "Set-PnPTermSet", - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "Rank": 1, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "Id": 1516 }, { "CommandName": "Set-PnPTermSet", - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "Rank": 2, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "Id": 1517 }, { "CommandName": "Set-PnPTermSet", - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "Rank": 3, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "Id": 1518 }, { "CommandName": "Set-PnPTheme", - "Command": "Set-PnPTheme", "Rank": 1, + "Command": "Set-PnPTheme", "Id": 1519 }, { "CommandName": "Set-PnPTheme", - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Rank": 2, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Id": 1520 }, { "CommandName": "Set-PnPTheme", - "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'", "Id": 1521 }, { "CommandName": "Set-PnPTheme", - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "Rank": 4, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "Id": 1522 }, { "CommandName": "Set-PnPTraceLog", - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "Rank": 1, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "Id": 1523 }, { "CommandName": "Set-PnPTraceLog", - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "Rank": 2, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "Id": 1524 }, { "CommandName": "Set-PnPTraceLog", - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "Rank": 3, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "Id": 1525 }, { "CommandName": "Set-PnPTraceLog", - "Command": "Set-PnPTraceLog -Off", "Rank": 4, + "Command": "Set-PnPTraceLog -Off", "Id": 1526 }, { "CommandName": "Set-PnPUserOneDriveQuota", - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "Rank": 1, + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "Id": 1527 }, { "CommandName": "Set-PnPUserProfileProperty", - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "Rank": 1, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "Id": 1528 }, { "CommandName": "Set-PnPUserProfileProperty", - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "Rank": 2, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "Id": 1529 }, { "CommandName": "Set-PnPView", - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "Rank": 1, + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "Id": 1530 }, { "CommandName": "Set-PnPView", - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "Rank": 2, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "Id": 1531 }, { "CommandName": "Set-PnPView", - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "Rank": 3, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "Id": 1532 }, { "CommandName": "Set-PnPView", - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "Rank": 4, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "Id": 1533 }, { "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", "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", "Id": 1534 }, { "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "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\" -Title \"Update title\" -Description \"Update Description\"", "Id": 1535 }, { "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", "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", "Id": 1536 }, { "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "Rank": 4, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "Id": 1537 }, { "CommandName": "Set-PnPWeb", - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Rank": 1, + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Id": 1538 }, { "CommandName": "Set-PnPWeb", - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Rank": 2, + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Id": 1539 }, { "CommandName": "Set-PnPWeb", - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "Rank": 3, + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "Id": 1540 }, { "CommandName": "Set-PnPWeb", - "Command": "Set-PnPWeb -NoCrawl:$true", "Rank": 4, + "Command": "Set-PnPWeb -NoCrawl:$true", "Id": 1541 }, { "CommandName": "Set-PnPWebHeader", - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "Rank": 1, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "Id": 1542 }, { "CommandName": "Set-PnPWebHeader", - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "Rank": 2, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "Id": 1543 }, { "CommandName": "Set-PnPWebHeader", - "Command": "Set-PnPWebHeader -LogoAlignment Middle", "Rank": 3, + "Command": "Set-PnPWebHeader -LogoAlignment Middle", "Id": 1544 }, { "CommandName": "Set-PnPWebhookSubscription", - "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", "Id": 1545 }, { "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\"", "Rank": 2, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Id": 1546 }, { "CommandName": "Set-PnPWebPartProperty", - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", "Rank": 1, + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", "Id": 1547 }, { "CommandName": "Set-PnPWebPermission", - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 1, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Id": 1548 }, { "CommandName": "Set-PnPWebPermission", - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Rank": 2, + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Id": 1549 }, { "CommandName": "Set-PnPWebPermission", - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 3, + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Id": 1550 }, { "CommandName": "Set-PnPWebPermission", - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Rank": 4, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Id": 1551 }, { "CommandName": "Set-PnPWebTheme", - "Command": "Set-PnPWebTheme -Theme MyTheme", "Rank": 1, + "Command": "Set-PnPWebTheme -Theme MyTheme", "Id": 1552 }, { "CommandName": "Set-PnPWebTheme", - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Rank": 2, + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Id": 1553 }, { "CommandName": "Set-PnPWikiPageContent", - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "Rank": 1, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "Id": 1554 }, { "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Rank": 1, + "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Id": 1555 }, { "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Rank": 2, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Id": 1556 }, { "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "Rank": 3, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "Id": 1557 }, { "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "Rank": 4, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "Id": 1558 }, { "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "Rank": 5, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "Id": 1559 }, { "CommandName": "Submit-PnPSearchQuery", - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", "Rank": 6, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", "Id": 1560 }, { "CommandName": "Submit-PnPTeamsChannelMessage", - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "Rank": 1, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "Id": 1561 }, { "CommandName": "Submit-PnPTeamsChannelMessage", - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "Rank": 2, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "Id": 1562 }, { "CommandName": "Sync-PnPAppToTeams", - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1563 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Rank": 1, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Id": 1564 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "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\"", "Id": 1565 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "Rank": 3, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "Id": 1566 }, { "CommandName": "Test-PnPListItemIsRecord", - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "Rank": 1, + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "Id": 1567 }, { "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "Rank": 1, + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "Id": 1568 }, { "CommandName": "Test-PnPSite", - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1569 }, { "CommandName": "Test-PnPSite", - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Id": 1570 }, { "CommandName": "Test-PnPTenantTemplate", - "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Rank": 1, + "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Id": 1571 }, { "CommandName": "Undo-PnPFileCheckedOut", - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "Rank": 1, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "Id": 1572 }, { "CommandName": "Uninstall-PnPApp", - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1573 }, { "CommandName": "Uninstall-PnPApp", - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1574 }, { "CommandName": "Unpublish-PnPApp", - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1575 }, { "CommandName": "Unpublish-PnPApp", - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1576 }, { "CommandName": "Unpublish-PnPContentType", - "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Rank": 1, + "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Id": 1577 }, { "CommandName": "Unpublish-PnPSyntexModel", - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Id": 1578 }, { "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", "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", "Id": 1579 }, { "CommandName": "Unregister-PnPHubSite", - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Id": 1580 }, { "CommandName": "Update-PnPApp", - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1581 }, { "CommandName": "Update-PnPApp", - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1582 }, { "CommandName": "Update-PnPAvailableSiteClassification", - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 1, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Id": 1583 }, { "CommandName": "Update-PnPAvailableSiteClassification", - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Rank": 2, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Id": 1584 }, { "CommandName": "Update-PnPAvailableSiteClassification", - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 3, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "Id": 1585 }, { "CommandName": "Update-PnPSiteDesignFromWeb", - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "Rank": 1, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "Id": 1586 }, { "CommandName": "Update-PnPSiteDesignFromWeb", - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Id": 1587 }, { "CommandName": "Update-PnPSiteDesignFromWeb", - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "Rank": 3, + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "Id": 1588 }, { "CommandName": "Update-PnPTeamsApp", - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "Rank": 1, + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "Id": 1589 }, { "CommandName": "Update-PnPTeamsUser", - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 1590 }, { "CommandName": "Update-PnPTeamsUser", - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Id": 1591 }, { "CommandName": "Update-PnPTeamsUser", - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "Rank": 3, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "Id": 1592 }, { "CommandName": "Update-PnPUserType", - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Rank": 1, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Id": 1593 } ] diff --git a/version.txt b/version.txt index 0f99c1376..ac0b42123 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.109 \ No newline at end of file +2.2.110 \ No newline at end of file From bc2f29c3379a9e2e7495d1d28210348d1b378406 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Fri, 27 Oct 2023 02:36:33 +0000 Subject: [PATCH 116/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6372 ++++++++--------- version.txt | 2 +- 3 files changed, 3188 insertions(+), 3188 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index da472a520..d287b677e 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -be2ce83df5d2dd42ab497c16793de061e1502473 \ No newline at end of file +1038b9c8f299faca7bce33cb8ea3102f4f0f478d \ 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 2bb300e86..aff9f22cc 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9560 +1,9560 @@ [ { - "CommandName": "Add-PnPAlert", - "Rank": 1, "Command": "Add-PnPAlert -List \"Demo List\"", + "Rank": 1, + "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)", + "Rank": 2, + "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\"", + "Rank": 3, + "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))", + "Rank": 4, + "CommandName": "Add-PnPAlert", "Id": 4 }, { - "CommandName": "Add-PnPApp", - "Rank": 1, "Command": "Add-PnPApp -Path ./myapp.sppkg", + "Rank": 1, + "CommandName": "Add-PnPApp", "Id": 5 }, { - "CommandName": "Add-PnPApp", - "Rank": 2, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "Rank": 2, + "CommandName": "Add-PnPApp", "Id": 6 }, { - "CommandName": "Add-PnPApp", - "Rank": 3, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "Rank": 3, + "CommandName": "Add-PnPApp", "Id": 7 }, { - "CommandName": "Add-PnPApp", - "Rank": 4, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "Rank": 4, + "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`\"}", + "Rank": 1, + "CommandName": "Add-PnPApplicationCustomizer", "Id": 9 }, { - "CommandName": "Add-PnPAvailableSiteClassification", - "Rank": 1, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "Rank": 1, + "CommandName": "Add-PnPAvailableSiteClassification", "Id": 10 }, { - "CommandName": "Add-PnPAvailableSiteClassification", - "Rank": 2, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "Rank": 2, + "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\"", + "Rank": 1, + "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", + "Rank": 2, + "CommandName": "Add-PnPAzureADGroupMember", "Id": 13 }, { - "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 3, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Rank": 3, + "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\"", + "Rank": 1, + "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", + "Rank": 2, + "CommandName": "Add-PnPAzureADGroupOwner", "Id": 16 }, { - "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 3, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Rank": 3, + "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", + "Rank": 1, + "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\"", + "Rank": 2, + "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", + "Rank": 1, + "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\"", + "Rank": 2, + "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\"", + "Rank": 3, + "CommandName": "Add-PnPContentType", "Id": 22 }, { - "CommandName": "Add-PnPContentType", - "Rank": 4, "Command": "Add-PnPContentType -Name \"Project Item\"", + "Rank": 4, + "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", + "Rank": 5, + "CommandName": "Add-PnPContentType", "Id": 24 }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Rank": 1, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "Rank": 1, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 25 }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Rank": 2, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "Rank": 2, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 26 }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Rank": 1, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Rank": 1, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 27 }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Rank": 2, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Rank": 2, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 28 }, { - "CommandName": "Add-PnPContentTypeToList", - "Rank": 1, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "Rank": 1, + "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`\"}\"", + "Rank": 1, + "CommandName": "Add-PnPCustomAction", "Id": 30 }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Rank": 1, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "Rank": 1, + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 31 }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Rank": 2, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "Rank": 2, + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 32 }, { - "CommandName": "Add-PnPDocumentSet", - "Rank": 1, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "Rank": 1, + "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", + "Rank": 1, + "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", + "Rank": 2, + "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", + "Rank": 3, + "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", + "Rank": 4, + "CommandName": "Add-PnPEventReceiver", "Id": 37 }, { - "CommandName": "Add-PnPField", - "Rank": 1, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "Rank": 1, + "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\"", + "Rank": 2, + "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\"", + "Rank": 3, + "CommandName": "Add-PnPField", "Id": 40 }, { - "CommandName": "Add-PnPField", - "Rank": 4, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "Rank": 4, + "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\"", + "Rank": 5, + "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()\"", + "Rank": 6, + "CommandName": "Add-PnPField", "Id": 43 }, { - "CommandName": "Add-PnPFieldToContentType", - "Rank": 1, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Rank": 1, + "CommandName": "Add-PnPFieldToContentType", "Id": 44 }, { - "CommandName": "Add-PnPFile", - "Rank": 1, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "Rank": 1, + "CommandName": "Add-PnPFile", "Id": 45 }, { - "CommandName": "Add-PnPFile", - "Rank": 2, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "Rank": 2, + "CommandName": "Add-PnPFile", "Id": 46 }, { - "CommandName": "Add-PnPFile", - "Rank": 3, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 3, + "CommandName": "Add-PnPFile", "Id": 47 }, { - "CommandName": "Add-PnPFile", - "Rank": 4, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", + "Rank": 4, + "CommandName": "Add-PnPFile", "Id": 48 }, { - "CommandName": "Add-PnPFile", - "Rank": 5, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 5, + "CommandName": "Add-PnPFile", "Id": 49 }, { - "CommandName": "Add-PnPFile", - "Rank": 6, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", + "Rank": 6, + "CommandName": "Add-PnPFile", "Id": 50 }, { - "CommandName": "Add-PnPFile", - "Rank": 7, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "Rank": 7, + "CommandName": "Add-PnPFile", "Id": 51 }, { - "CommandName": "Add-PnPFile", - "Rank": 8, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "Rank": 8, + "CommandName": "Add-PnPFile", "Id": 52 }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 1, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 53 }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 2, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", + "Rank": 2, + "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)", + "Rank": 3, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 55 }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Rank": 1, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Id": 56 }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Rank": 2, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "Rank": 2, + "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", + "Rank": 1, + "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", + "Rank": 2, + "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)", + "Rank": 3, + "CommandName": "Add-PnPFileSharingInvite", "Id": 60 }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 1, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "Rank": 1, + "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\"", + "Rank": 2, + "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", + "Rank": 3, + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 63 }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 4, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "Rank": 4, + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 64 }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 5, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "Rank": 5, + "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\"", + "Rank": 1, + "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\"", + "Rank": 2, + "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", + "Rank": 1, + "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", + "Rank": 2, + "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", + "Rank": 3, + "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", + "Rank": 4, + "CommandName": "Add-PnPFlowOwner", "Id": 71 }, { - "CommandName": "Add-PnPFolder", - "Rank": 1, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Rank": 1, + "CommandName": "Add-PnPFolder", "Id": 72 }, { - "CommandName": "Add-PnPFolder", - "Rank": 2, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "Rank": 2, + "CommandName": "Add-PnPFolder", "Id": 73 }, { - "CommandName": "Add-PnPFolder", - "Rank": 3, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "Rank": 3, + "CommandName": "Add-PnPFolder", "Id": 74 }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 1, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 75 }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 2, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", + "Rank": 2, + "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)", + "Rank": 3, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 77 }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Rank": 1, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 78 }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Rank": 2, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "Rank": 2, + "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", + "Rank": 1, + "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", + "Rank": 2, + "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)", + "Rank": 3, + "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\"", + "Rank": 1, + "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\"", + "Rank": 2, + "CommandName": "Add-PnPFolderUserSharingLink", "Id": 84 }, { - "CommandName": "Add-PnPGroupMember", - "Rank": 1, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Rank": 1, + "CommandName": "Add-PnPGroupMember", "Id": 85 }, { - "CommandName": "Add-PnPGroupMember", - "Rank": 2, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "Rank": 2, + "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", + "Rank": 1, + "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\"", + "Rank": 1, + "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", + "Rank": 1, + "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\"", + "Rank": 2, + "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\"", + "Rank": 3, + "CommandName": "Add-PnPHubToHubAssociation", "Id": 91 }, { - "CommandName": "Add-PnPJavaScriptBlock", - "Rank": 1, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "Rank": 1, + "CommandName": "Add-PnPJavaScriptBlock", "Id": 92 }, { - "CommandName": "Add-PnPJavaScriptBlock", - "Rank": 2, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "Rank": 2, + "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", + "Rank": 1, + "CommandName": "Add-PnPJavaScriptLink", "Id": 94 }, { - "CommandName": "Add-PnPJavaScriptLink", - "Rank": 2, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "Rank": 2, + "CommandName": "Add-PnPJavaScriptLink", "Id": 95 }, { - "CommandName": "Add-PnPListDesign", - "Rank": 1, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "Rank": 1, + "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\"", + "Rank": 2, + "CommandName": "Add-PnPListDesign", "Id": 97 }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 1, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "Rank": 1, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 98 }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 2, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "Rank": 2, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 99 }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 3, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "Rank": 3, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 100 }, { - "CommandName": "Add-PnPListItem", - "Rank": 1, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 1, + "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\"}", + "Rank": 2, + "CommandName": "Add-PnPListItem", "Id": 102 }, { - "CommandName": "Add-PnPListItem", - "Rank": 3, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "Rank": 3, + "CommandName": "Add-PnPListItem", "Id": 103 }, { - "CommandName": "Add-PnPListItem", - "Rank": 4, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", + "Rank": 4, + "CommandName": "Add-PnPListItem", "Id": 104 }, { - "CommandName": "Add-PnPListItem", - "Rank": 5, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "Rank": 5, + "CommandName": "Add-PnPListItem", "Id": 105 }, { - "CommandName": "Add-PnPListItemAttachment", - "Rank": 1, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", + "Rank": 1, + "CommandName": "Add-PnPListItemAttachment", "Id": 106 }, { - "CommandName": "Add-PnPListItemAttachment", - "Rank": 2, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", + "Rank": 2, + "CommandName": "Add-PnPListItemAttachment", "Id": 107 }, { - "CommandName": "Add-PnPListItemAttachment", - "Rank": 3, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "Rank": 3, + "CommandName": "Add-PnPListItemAttachment", "Id": 108 }, { - "CommandName": "Add-PnPListItemComment", - "Rank": 1, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "Rank": 1, + "CommandName": "Add-PnPListItemComment", "Id": 109 }, { - "CommandName": "Add-PnPMasterPage", - "Rank": 1, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "Rank": 1, + "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\"", + "Rank": 1, + "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", + "Rank": 2, + "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\"", + "Rank": 1, + "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", + "Rank": 2, + "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\"", + "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 115 }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 2, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 116 }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 3, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "Rank": 3, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 117 }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 1, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "Rank": 1, + "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", + "Rank": 2, + "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", + "Rank": 3, + "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", + "Rank": 4, + "CommandName": "Add-PnPNavigationNode", "Id": 121 }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 5, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "Rank": 5, + "CommandName": "Add-PnPNavigationNode", "Id": 122 }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 6, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "Rank": 6, + "CommandName": "Add-PnPNavigationNode", "Id": 123 }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 7, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "Rank": 7, + "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", + "Rank": 8, + "CommandName": "Add-PnPNavigationNode", "Id": 125 }, { - "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 1, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", + "Rank": 1, + "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\"", + "Rank": 2, + "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 127 }, { - "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 3, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "Rank": 3, + "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 128 }, { - "CommandName": "Add-PnPOrgNewsSite", - "Rank": 1, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "Rank": 1, + "CommandName": "Add-PnPOrgNewsSite", "Id": 129 }, { - "CommandName": "Add-PnPPage", - "Rank": 1, "Command": "Add-PnPPage -Name \"NewPage\"", + "Rank": 1, + "CommandName": "Add-PnPPage", "Id": 130 }, { - "CommandName": "Add-PnPPage", - "Rank": 2, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "Rank": 2, + "CommandName": "Add-PnPPage", "Id": 131 }, { - "CommandName": "Add-PnPPage", - "Rank": 3, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "Rank": 3, + "CommandName": "Add-PnPPage", "Id": 132 }, { - "CommandName": "Add-PnPPage", - "Rank": 4, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "Rank": 4, + "CommandName": "Add-PnPPage", "Id": 133 }, { - "CommandName": "Add-PnPPage", - "Rank": 5, "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "Rank": 5, + "CommandName": "Add-PnPPage", "Id": 134 }, { - "CommandName": "Add-PnPPage", - "Rank": 6, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "Rank": 6, + "CommandName": "Add-PnPPage", "Id": 135 }, { - "CommandName": "Add-PnPPage", - "Rank": 7, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "Rank": 7, + "CommandName": "Add-PnPPage", "Id": 136 }, { - "CommandName": "Add-PnPPage", - "Rank": 8, "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "Rank": 8, + "CommandName": "Add-PnPPage", "Id": 137 }, { - "CommandName": "Add-PnPPage", - "Rank": 9, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Rank": 9, + "CommandName": "Add-PnPPage", "Id": 138 }, { - "CommandName": "Add-PnPPage", - "Rank": 10, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Rank": 10, + "CommandName": "Add-PnPPage", "Id": 139 }, { - "CommandName": "Add-PnPPageImageWebPart", - "Rank": 1, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", + "Rank": 1, + "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\"", + "Rank": 2, + "CommandName": "Add-PnPPageImageWebPart", "Id": 141 }, { - "CommandName": "Add-PnPPageSection", - "Rank": 1, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "Rank": 1, + "CommandName": "Add-PnPPageSection", "Id": 142 }, { - "CommandName": "Add-PnPPageSection", - "Rank": 2, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "Rank": 2, + "CommandName": "Add-PnPPageSection", "Id": 143 }, { - "CommandName": "Add-PnPPageTextPart", - "Rank": 1, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "Rank": 1, + "CommandName": "Add-PnPPageTextPart", "Id": 144 }, { - "CommandName": "Add-PnPPageTextPart", - "Rank": 2, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", + "Rank": 2, + "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\"", + "Rank": 3, + "CommandName": "Add-PnPPageTextPart", "Id": 146 }, { - "CommandName": "Add-PnPPageWebPart", - "Rank": 1, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "Rank": 1, + "CommandName": "Add-PnPPageWebPart", "Id": 147 }, { - "CommandName": "Add-PnPPageWebPart", - "Rank": 2, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "Rank": 2, + "CommandName": "Add-PnPPageWebPart", "Id": 148 }, { - "CommandName": "Add-PnPPageWebPart", - "Rank": 3, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "Rank": 3, + "CommandName": "Add-PnPPageWebPart", "Id": 149 }, { - "CommandName": "Add-PnPPlannerBucket", - "Rank": 1, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "Rank": 1, + "CommandName": "Add-PnPPlannerBucket", "Id": 150 }, { - "CommandName": "Add-PnPPlannerBucket", - "Rank": 2, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "Rank": 2, + "CommandName": "Add-PnPPlannerBucket", "Id": 151 }, { - "CommandName": "Add-PnPPlannerRoster", - "Rank": 1, "Command": "Add-PnPPlannerRoster", + "Rank": 1, + "CommandName": "Add-PnPPlannerRoster", "Id": 152 }, { - "CommandName": "Add-PnPPlannerRosterMember", - "Rank": 1, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, + "CommandName": "Add-PnPPlannerRosterMember", "Id": 153 }, { - "CommandName": "Add-PnPPlannerTask", - "Rank": 1, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Rank": 1, + "CommandName": "Add-PnPPlannerTask", "Id": 154 }, { - "CommandName": "Add-PnPPlannerTask", - "Rank": 2, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Rank": 2, + "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\"", + "Rank": 3, + "CommandName": "Add-PnPPlannerTask", "Id": 156 }, { - "CommandName": "Add-PnPPublishingImageRendition", - "Rank": 1, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Rank": 1, + "CommandName": "Add-PnPPublishingImageRendition", "Id": 157 }, { - "CommandName": "Add-PnPPublishingPage", - "Rank": 1, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", + "Rank": 1, + "CommandName": "Add-PnPPublishingPage", "Id": 158 }, { - "CommandName": "Add-PnPPublishingPage", - "Rank": 2, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "Rank": 2, + "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", + "Rank": 1, + "CommandName": "Add-PnPPublishingPageLayout", "Id": 160 }, { - "CommandName": "Add-PnPRoleDefinition", - "Rank": 1, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "Rank": 1, + "CommandName": "Add-PnPRoleDefinition", "Id": 161 }, { - "CommandName": "Add-PnPRoleDefinition", - "Rank": 2, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "Rank": 2, + "CommandName": "Add-PnPRoleDefinition", "Id": 162 }, { - "CommandName": "Add-PnPRoleDefinition", - "Rank": 3, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "Rank": 3, + "CommandName": "Add-PnPRoleDefinition", "Id": 163 }, { - "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 1, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 164 }, { - "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 2, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 165 }, { - "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 3, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "Rank": 3, + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 166 }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1, "Command": "Add-PnPSiteCollectionAppCatalog", + "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 167 }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Rank": 2, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Rank": 2, + "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", + "Rank": 1, + "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", + "Rank": 2, + "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\"", + "Rank": 3, + "CommandName": "Add-PnPSiteDesign", "Id": 171 }, { - "CommandName": "Add-PnPSiteDesignFromWeb", - "Rank": 1, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", + "Rank": 1, + "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)", + "Rank": 2, + "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", + "Rank": 3, + "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 174 }, { - "CommandName": "Add-PnPSiteDesignTask", - "Rank": 1, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "Rank": 1, + "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\"", + "Rank": 2, + "CommandName": "Add-PnPSiteDesignTask", "Id": 176 }, { - "CommandName": "Add-PnPSiteScript", - "Rank": 1, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "Rank": 1, + "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\"", + "Rank": 1, + "CommandName": "Add-PnPSiteScriptPackage", "Id": 178 }, { - "CommandName": "Add-PnPSiteTemplate", - "Rank": 1, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "Rank": 1, + "CommandName": "Add-PnPSiteTemplate", "Id": 179 }, { - "CommandName": "Add-PnPStoredCredential", - "Rank": 1, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", + "Rank": 1, + "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)", + "Rank": 2, + "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\"", + "Rank": 3, + "CommandName": "Add-PnPStoredCredential", "Id": 182 }, { - "CommandName": "Add-PnPTaxonomyField", - "Rank": 1, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "Rank": 1, + "CommandName": "Add-PnPTaxonomyField", "Id": 183 }, { - "CommandName": "Add-PnPTaxonomyField", - "Rank": 2, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "Rank": 2, + "CommandName": "Add-PnPTaxonomyField", "Id": 184 }, { - "CommandName": "Add-PnPTeamsChannel", - "Rank": 1, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "Rank": 1, + "CommandName": "Add-PnPTeamsChannel", "Id": 185 }, { - "CommandName": "Add-PnPTeamsChannel", - "Rank": 2, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "Rank": 2, + "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", + "Rank": 3, + "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", + "Rank": 4, + "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", + "Rank": 1, + "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", + "Rank": 2, + "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\"", + "Rank": 1, + "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\"", + "Rank": 2, + "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\"", + "Rank": 3, + "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", + "Rank": 4, + "CommandName": "Add-PnPTeamsTab", "Id": 194 }, { - "CommandName": "Add-PnPTeamsTeam", - "Rank": 1, "Command": "Add-PnPTeamsTeam", + "Rank": 1, + "CommandName": "Add-PnPTeamsTeam", "Id": 195 }, { - "CommandName": "Add-PnPTeamsUser", - "Rank": 1, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 1, + "CommandName": "Add-PnPTeamsUser", "Id": 196 }, { - "CommandName": "Add-PnPTeamsUser", - "Rank": 2, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Rank": 2, + "CommandName": "Add-PnPTeamsUser", "Id": 197 }, { - "CommandName": "Add-PnPTeamsUser", - "Rank": 3, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "Rank": 3, + "CommandName": "Add-PnPTeamsUser", "Id": 198 }, { - "CommandName": "Add-PnPTeamsUser", - "Rank": 4, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "Rank": 4, + "CommandName": "Add-PnPTeamsUser", "Id": 199 }, { - "CommandName": "Add-PnPTenantCdnOrigin", - "Rank": 1, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Rank": 1, + "CommandName": "Add-PnPTenantCdnOrigin", "Id": 200 }, { - "CommandName": "Add-PnPTenantSequence", - "Rank": 1, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "Rank": 1, + "CommandName": "Add-PnPTenantSequence", "Id": 201 }, { - "CommandName": "Add-PnPTenantSequenceSite", - "Rank": 1, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSite", "Id": 202 }, { - "CommandName": "Add-PnPTenantSequenceSubSite", - "Rank": 1, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSubSite", "Id": 203 }, { - "CommandName": "Add-PnPTermToTerm", - "Rank": 1, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "Rank": 1, + "CommandName": "Add-PnPTermToTerm", "Id": 204 }, { - "CommandName": "Add-PnPView", - "Rank": 1, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", + "Rank": 1, + "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", + "Rank": 2, + "CommandName": "Add-PnPView", "Id": 206 }, { - "CommandName": "Add-PnPView", - "Rank": 3, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "Rank": 3, + "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\"", + "Rank": 1, + "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\"", + "Rank": 2, + "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\"", + "Rank": 3, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Id": 210 }, { - "CommandName": "Add-PnPWebhookSubscription", - "Rank": 1, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Rank": 1, + "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\"", + "Rank": 2, + "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!\"", + "Rank": 3, + "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", + "Rank": 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", + "Rank": 2, + "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", + "Rank": 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", + "Rank": 2, + "CommandName": "Add-PnPWebPartToWikiPage", "Id": 217 }, { - "CommandName": "Add-PnPWikiPage", - "Rank": 1, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "Rank": 1, + "CommandName": "Add-PnPWikiPage", "Id": 218 }, { - "CommandName": "Clear-PnPAzureADGroupMember", - "Rank": 1, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupMember", "Id": 219 }, { - "CommandName": "Clear-PnPAzureADGroupOwner", - "Rank": 1, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupOwner", "Id": 220 }, { - "CommandName": "Clear-PnPDefaultColumnValues", - "Rank": 1, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "Rank": 1, + "CommandName": "Clear-PnPDefaultColumnValues", "Id": 221 }, { - "CommandName": "Clear-PnPDefaultColumnValues", - "Rank": 2, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "Rank": 2, + "CommandName": "Clear-PnPDefaultColumnValues", "Id": 222 }, { - "CommandName": "Clear-PnPListItemAsRecord", - "Rank": 1, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1, + "CommandName": "Clear-PnPListItemAsRecord", "Id": 223 }, { - "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Rank": 1, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupMember", "Id": 224 }, { - "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Rank": 1, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Id": 225 }, { - "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 1, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1, + "CommandName": "Clear-PnpRecycleBinItem", "Id": 226 }, { - "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 2, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "Rank": 2, + "CommandName": "Clear-PnpRecycleBinItem", "Id": 227 }, { - "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 3, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "Rank": 3, + "CommandName": "Clear-PnpRecycleBinItem", "Id": 228 }, { - "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1, "Command": "Clear-PnPTenantAppCatalogUrl", + "Rank": 1, + "CommandName": "Clear-PnPTenantAppCatalogUrl", "Id": 229 }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Rank": 1, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, + "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 230 }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Rank": 2, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Rank": 2, + "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\"", + "Rank": 1, + "CommandName": "Connect-PnPOnline", "Id": 232 }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Rank": 1, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "Rank": 1, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 233 }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Rank": 2, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "Rank": 2, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 234 }, { - "CommandName": "Convert-PnPSiteTemplate", - "Rank": 1, "Command": "Convert-PnPSiteTemplate -Path template.xml", + "Rank": 1, + "CommandName": "Convert-PnPSiteTemplate", "Id": 235 }, { - "CommandName": "Convert-PnPSiteTemplate", - "Rank": 2, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "Rank": 2, + "CommandName": "Convert-PnPSiteTemplate", "Id": 236 }, { - "CommandName": "Convert-PnPSiteTemplate", - "Rank": 3, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "Rank": 3, + "CommandName": "Convert-PnPSiteTemplate", "Id": 237 }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Rank": 1, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "Rank": 1, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 238 }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Rank": 2, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "Rank": 2, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 239 }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 1, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "Rank": 1, + "CommandName": "ConvertTo-PnPPage", "Id": 240 }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 2, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "Rank": 2, + "CommandName": "ConvertTo-PnPPage", "Id": 241 }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 3, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "Rank": 3, + "CommandName": "ConvertTo-PnPPage", "Id": 242 }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 4, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "Rank": 4, + "CommandName": "ConvertTo-PnPPage", "Id": 243 }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 5, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 5, + "CommandName": "ConvertTo-PnPPage", "Id": 244 }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 6, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "Rank": 6, + "CommandName": "ConvertTo-PnPPage", "Id": 245 }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 7, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "Rank": 7, + "CommandName": "ConvertTo-PnPPage", "Id": 246 }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 8, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "Rank": 8, + "CommandName": "ConvertTo-PnPPage", "Id": 247 }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 9, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 9, + "CommandName": "ConvertTo-PnPPage", "Id": 248 }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 10, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "Rank": 10, + "CommandName": "ConvertTo-PnPPage", "Id": 249 }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 11, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "Rank": 11, + "CommandName": "ConvertTo-PnPPage", "Id": 250 }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 12, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 12, + "CommandName": "ConvertTo-PnPPage", "Id": 251 }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 13, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 13, + "CommandName": "ConvertTo-PnPPage", "Id": 252 }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 14, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "Rank": 14, + "CommandName": "ConvertTo-PnPPage", "Id": 253 }, { - "CommandName": "Copy-PnPFile", - "Rank": 1, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 1, + "CommandName": "Copy-PnPFile", "Id": 254 }, { - "CommandName": "Copy-PnPFile", - "Rank": 2, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Rank": 2, + "CommandName": "Copy-PnPFile", "Id": 255 }, { - "CommandName": "Copy-PnPFile", - "Rank": 3, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Rank": 3, + "CommandName": "Copy-PnPFile", "Id": 256 }, { - "CommandName": "Copy-PnPFile", - "Rank": 4, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 4, + "CommandName": "Copy-PnPFile", "Id": 257 }, { - "CommandName": "Copy-PnPFile", - "Rank": 5, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Rank": 5, + "CommandName": "Copy-PnPFile", "Id": 258 }, { - "CommandName": "Copy-PnPFile", - "Rank": 6, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Rank": 6, + "CommandName": "Copy-PnPFile", "Id": 259 }, { - "CommandName": "Copy-PnPFile", - "Rank": 7, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Rank": 7, + "CommandName": "Copy-PnPFile", "Id": 260 }, { - "CommandName": "Copy-PnPFile", - "Rank": 8, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 8, + "CommandName": "Copy-PnPFile", "Id": 261 }, { - "CommandName": "Copy-PnPFile", - "Rank": 9, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Rank": 9, + "CommandName": "Copy-PnPFile", "Id": 262 }, { - "CommandName": "Copy-PnPFile", - "Rank": 10, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Rank": 10, + "CommandName": "Copy-PnPFile", "Id": 263 }, { - "CommandName": "Copy-PnPFolder", - "Rank": 1, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 1, + "CommandName": "Copy-PnPFolder", "Id": 264 }, { - "CommandName": "Copy-PnPFolder", - "Rank": 2, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Rank": 2, + "CommandName": "Copy-PnPFolder", "Id": 265 }, { - "CommandName": "Copy-PnPFolder", - "Rank": 3, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Rank": 3, + "CommandName": "Copy-PnPFolder", "Id": 266 }, { - "CommandName": "Copy-PnPFolder", - "Rank": 4, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 4, + "CommandName": "Copy-PnPFolder", "Id": 267 }, { - "CommandName": "Copy-PnPFolder", - "Rank": 5, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Rank": 5, + "CommandName": "Copy-PnPFolder", "Id": 268 }, { - "CommandName": "Copy-PnPFolder", - "Rank": 6, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Rank": 6, + "CommandName": "Copy-PnPFolder", "Id": 269 }, { - "CommandName": "Copy-PnPFolder", - "Rank": 7, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Rank": 7, + "CommandName": "Copy-PnPFolder", "Id": 270 }, { - "CommandName": "Copy-PnPFolder", - "Rank": 8, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 8, + "CommandName": "Copy-PnPFolder", "Id": 271 }, { - "CommandName": "Copy-PnPFolder", - "Rank": 9, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Rank": 9, + "CommandName": "Copy-PnPFolder", "Id": 272 }, { - "CommandName": "Copy-PnPFolder", - "Rank": 10, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Rank": 10, + "CommandName": "Copy-PnPFolder", "Id": 273 }, { - "CommandName": "Copy-PnPItemProxy", - "Rank": 1, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "Rank": 1, + "CommandName": "Copy-PnPItemProxy", "Id": 274 }, { - "CommandName": "Copy-PnPList", - "Rank": 1, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "Rank": 1, + "CommandName": "Copy-PnPList", "Id": 275 }, { - "CommandName": "Copy-PnPList", - "Rank": 2, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", + "Rank": 2, + "CommandName": "Copy-PnPList", "Id": 276 }, { - "CommandName": "Copy-PnPList", - "Rank": 3, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "Rank": 3, + "CommandName": "Copy-PnPList", "Id": 277 }, { - "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\\", + "Rank": 4, + "CommandName": "Copy-PnPList", "Id": 278 }, { - "CommandName": "Copy-PnPTeamsTeam", - "Rank": 1, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "Rank": 1, + "CommandName": "Copy-PnPTeamsTeam", "Id": 279 }, { - "CommandName": "Copy-PnPTeamsTeam", - "Rank": 2, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "Rank": 2, + "CommandName": "Copy-PnPTeamsTeam", "Id": 280 }, { - "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", + "Rank": 3, + "CommandName": "Copy-PnPTeamsTeam", "Id": 281 }, { - "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", + "Rank": 4, + "CommandName": "Copy-PnPTeamsTeam", "Id": 282 }, { - "CommandName": "Disable-PnPFeature", - "Rank": 1, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, + "CommandName": "Disable-PnPFeature", "Id": 283 }, { - "CommandName": "Disable-PnPFeature", - "Rank": 2, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2, + "CommandName": "Disable-PnPFeature", "Id": 284 }, { - "CommandName": "Disable-PnPFeature", - "Rank": 3, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3, + "CommandName": "Disable-PnPFeature", "Id": 285 }, { - "CommandName": "Disable-PnPPageScheduling", - "Rank": 1, "Command": "Disable-PnPPageScheduling", + "Rank": 1, + "CommandName": "Disable-PnPPageScheduling", "Id": 286 }, { - "CommandName": "Disable-PnPPowerShellTelemetry", - "Rank": 1, "Command": "Disable-PnPPowerShellTelemetry", + "Rank": 1, + "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 287 }, { - "CommandName": "Disable-PnPPowerShellTelemetry", - "Rank": 2, "Command": "Disable-PnPPowerShellTelemetry -Force", + "Rank": 2, + "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 288 }, { - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1, "Command": "Disable-PnPSharingForNonOwnersOfSite", + "Rank": 1, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Id": 289 }, { - "CommandName": "Disable-PnPSiteClassification", - "Rank": 1, "Command": "Disable-PnPSiteClassification", + "Rank": 1, + "CommandName": "Disable-PnPSiteClassification", "Id": 290 }, { - "CommandName": "Disconnect-PnPOnline", - "Rank": 1, "Command": "Disconnect-PnPOnline", + "Rank": 1, + "CommandName": "Disconnect-PnPOnline", "Id": 291 }, { - "CommandName": "Enable-PnPCommSite", - "Rank": 1, "Command": "Enable-PnPCommSite", + "Rank": 1, + "CommandName": "Enable-PnPCommSite", "Id": 292 }, { - "CommandName": "Enable-PnPCommSite", - "Rank": 2, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "Rank": 2, + "CommandName": "Enable-PnPCommSite", "Id": 293 }, { - "CommandName": "Enable-PnPFeature", - "Rank": 1, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, + "CommandName": "Enable-PnPFeature", "Id": 294 }, { - "CommandName": "Enable-PnPFeature", - "Rank": 2, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2, + "CommandName": "Enable-PnPFeature", "Id": 295 }, { - "CommandName": "Enable-PnPFeature", - "Rank": 3, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3, + "CommandName": "Enable-PnPFeature", "Id": 296 }, { - "CommandName": "Enable-PnPPageScheduling", - "Rank": 1, "Command": "Enable-PnPPageScheduling", + "Rank": 1, + "CommandName": "Enable-PnPPageScheduling", "Id": 297 }, { - "CommandName": "Enable-PnPPowerShellTelemetry", - "Rank": 1, "Command": "Enable-PnPPowerShellTelemetry", + "Rank": 1, + "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 298 }, { - "CommandName": "Enable-PnPPowerShellTelemetry", - "Rank": 2, "Command": "Enable-PnPPowerShellTelemetry -Force", + "Rank": 2, + "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 299 }, { - "CommandName": "Enable-PnPSiteClassification", - "Rank": 1, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "Rank": 1, + "CommandName": "Enable-PnPSiteClassification", "Id": 300 }, { - "CommandName": "Enable-PnPSiteClassification", - "Rank": 2, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 2, + "CommandName": "Enable-PnPSiteClassification", "Id": 301 }, { - "CommandName": "Export-PnPListToSiteTemplate", - "Rank": 1, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "Rank": 1, + "CommandName": "Export-PnPListToSiteTemplate", "Id": 302 }, { - "CommandName": "Export-PnPListToSiteTemplate", - "Rank": 2, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "Rank": 2, + "CommandName": "Export-PnPListToSiteTemplate", "Id": 303 }, { - "CommandName": "Export-PnPPage", - "Rank": 1, "Command": "Export-PnPPage -Identity Home.aspx", + "Rank": 1, + "CommandName": "Export-PnPPage", "Id": 304 }, { - "CommandName": "Export-PnPPageMapping", - "Rank": 1, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "Rank": 1, + "CommandName": "Export-PnPPageMapping", "Id": 305 }, { - "CommandName": "Export-PnPPageMapping", - "Rank": 2, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "Rank": 2, + "CommandName": "Export-PnPPageMapping", "Id": 306 }, { - "CommandName": "Export-PnPPageMapping", - "Rank": 3, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "Rank": 3, + "CommandName": "Export-PnPPageMapping", "Id": 307 }, { - "CommandName": "Export-PnPTaxonomy", - "Rank": 1, "Command": "Export-PnPTaxonomy", + "Rank": 1, + "CommandName": "Export-PnPTaxonomy", "Id": 308 }, { - "CommandName": "Export-PnPTaxonomy", - "Rank": 2, "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "Rank": 2, + "CommandName": "Export-PnPTaxonomy", "Id": 309 }, { - "CommandName": "Export-PnPTaxonomy", - "Rank": 3, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", + "Rank": 3, + "CommandName": "Export-PnPTaxonomy", "Id": 310 }, { - "CommandName": "Export-PnPTaxonomy", - "Rank": 4, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "Rank": 4, + "CommandName": "Export-PnPTaxonomy", "Id": 311 }, { - "CommandName": "Export-PnPTermGroupToXml", - "Rank": 1, "Command": "Export-PnPTermGroupToXml", + "Rank": 1, + "CommandName": "Export-PnPTermGroupToXml", "Id": 312 }, { - "CommandName": "Export-PnPTermGroupToXml", - "Rank": 2, "Command": "Export-PnPTermGroupToXml -Out output.xml", + "Rank": 2, + "CommandName": "Export-PnPTermGroupToXml", "Id": 313 }, { - "CommandName": "Export-PnPTermGroupToXml", - "Rank": 3, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "Rank": 3, + "CommandName": "Export-PnPTermGroupToXml", "Id": 314 }, { - "CommandName": "Export-PnPUserInfo", - "Rank": 1, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Rank": 1, + "CommandName": "Export-PnPUserInfo", "Id": 315 }, { - "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", + "Rank": 2, + "CommandName": "Export-PnPUserInfo", "Id": 316 }, { - "CommandName": "Export-PnPUserProfile", - "Rank": 1, "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "Rank": 1, + "CommandName": "Export-PnPUserProfile", "Id": 317 }, { - "CommandName": "Export-PnPUserProfile", - "Rank": 2, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "Rank": 2, + "CommandName": "Export-PnPUserProfile", "Id": 318 }, { - "CommandName": "Find-PnPFile", - "Rank": 1, "Command": "Find-PnPFile -Match *.master", + "Rank": 1, + "CommandName": "Find-PnPFile", "Id": 319 }, { - "CommandName": "Find-PnPFile", - "Rank": 2, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "Rank": 2, + "CommandName": "Find-PnPFile", "Id": 320 }, { - "CommandName": "Find-PnPFile", - "Rank": 3, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "Rank": 3, + "CommandName": "Find-PnPFile", "Id": 321 }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 1, "Command": "Get-PnPAccessToken", + "Rank": 1, + "CommandName": "Get-PnPAccessToken", "Id": 322 }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 2, "Command": "Get-PnPAccessToken -Decoded", + "Rank": 2, + "CommandName": "Get-PnPAccessToken", "Id": 323 }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 3, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "Rank": 3, + "CommandName": "Get-PnPAccessToken", "Id": 324 }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 4, "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "Rank": 4, + "CommandName": "Get-PnPAccessToken", "Id": 325 }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 5, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "Rank": 5, + "CommandName": "Get-PnPAccessToken", "Id": 326 }, { - "CommandName": "Get-PnPAlert", - "Rank": 1, "Command": "Get-PnPAlert", + "Rank": 1, + "CommandName": "Get-PnPAlert", "Id": 327 }, { - "CommandName": "Get-PnPAlert", - "Rank": 2, "Command": "Get-PnPAlert -List \"Demo List\"", + "Rank": 2, + "CommandName": "Get-PnPAlert", "Id": 328 }, { - "CommandName": "Get-PnPAlert", - "Rank": 3, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Rank": 3, + "CommandName": "Get-PnPAlert", "Id": 329 }, { - "CommandName": "Get-PnPAlert", - "Rank": 4, "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "Rank": 4, + "CommandName": "Get-PnPAlert", "Id": 330 }, { - "CommandName": "Get-PnPAlert", - "Rank": 5, "Command": "Get-PnPAlert -AllUsers", + "Rank": 5, + "CommandName": "Get-PnPAlert", "Id": 331 }, { - "CommandName": "Get-PnPAlert", - "Rank": 6, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "Rank": 6, + "CommandName": "Get-PnPAlert", "Id": 332 }, { - "CommandName": "Get-PnPApp", - "Rank": 1, "Command": "Get-PnPApp", + "Rank": 1, + "CommandName": "Get-PnPApp", "Id": 333 }, { - "CommandName": "Get-PnPApp", - "Rank": 2, "Command": "Get-PnPApp -Scope Site", + "Rank": 2, + "CommandName": "Get-PnPApp", "Id": 334 }, { - "CommandName": "Get-PnPApp", - "Rank": 3, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 3, + "CommandName": "Get-PnPApp", "Id": 335 }, { - "CommandName": "Get-PnPAppErrors", - "Rank": 1, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "Rank": 1, + "CommandName": "Get-PnPAppErrors", "Id": 336 }, { - "CommandName": "Get-PnPAppErrors", - "Rank": 2, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "Rank": 2, + "CommandName": "Get-PnPAppErrors", "Id": 337 }, { - "CommandName": "Get-PnPAppInfo", - "Rank": 1, "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "Rank": 1, + "CommandName": "Get-PnPAppInfo", "Id": 338 }, { - "CommandName": "Get-PnPAppInfo", - "Rank": 2, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 2, + "CommandName": "Get-PnPAppInfo", "Id": 339 }, { - "CommandName": "Get-PnPAppInfo", - "Rank": 3, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "Rank": 3, + "CommandName": "Get-PnPAppInfo", "Id": 340 }, { - "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 1, "Command": "Get-PnPApplicationCustomizer", + "Rank": 1, + "CommandName": "Get-PnPApplicationCustomizer", "Id": 341 }, { - "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 2, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2, + "CommandName": "Get-PnPApplicationCustomizer", "Id": 342 }, { - "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 3, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "Rank": 3, + "CommandName": "Get-PnPApplicationCustomizer", "Id": 343 }, { - "CommandName": "Get-PnPAuditing", - "Rank": 1, "Command": "Get-PnPAuditing", + "Rank": 1, + "CommandName": "Get-PnPAuditing", "Id": 344 }, { - "CommandName": "Get-PnPAuthenticationRealm", - "Rank": 1, "Command": "Get-PnPAuthenticationRealm", + "Rank": 1, + "CommandName": "Get-PnPAuthenticationRealm", "Id": 345 }, { - "CommandName": "Get-PnPAuthenticationRealm", - "Rank": 2, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "Rank": 2, + "CommandName": "Get-PnPAuthenticationRealm", "Id": 346 }, { - "CommandName": "Get-PnPAvailableLanguage", - "Rank": 1, "Command": "Get-PnPAvailableLanguage", + "Rank": 1, + "CommandName": "Get-PnPAvailableLanguage", "Id": 347 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 1, "Command": "Get-PnPAvailableSensitivityLabel", + "Rank": 1, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 348 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 2, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "Rank": 2, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 349 }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 3, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "Rank": 3, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 350 }, { - "CommandName": "Get-PnPAvailableSiteClassification", - "Rank": 1, "Command": "Get-PnPAvailableSiteClassification", + "Rank": 1, + "CommandName": "Get-PnPAvailableSiteClassification", "Id": 351 }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 1, "Command": "Get-PnPAzureACSPrincipal", + "Rank": 1, + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 352 }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 2, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "Rank": 2, + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 353 }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 3, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "Rank": 3, + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 354 }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 4, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "Rank": 4, + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 355 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1, "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 356 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 2, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 357 }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 3, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 358 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1, "Command": "Get-PnPAzureADActivityReportSignIn", + "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 359 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 2, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 360 }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 3, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 361 }, { - "CommandName": "Get-PnPAzureADApp", - "Rank": 1, "Command": "Get-PnPAzureADApp", + "Rank": 1, + "CommandName": "Get-PnPAzureADApp", "Id": 362 }, { - "CommandName": "Get-PnPAzureADApp", - "Rank": 2, "Command": "Get-PnPAzureADApp -Identity MyApp", + "Rank": 2, + "CommandName": "Get-PnPAzureADApp", "Id": 363 }, { - "CommandName": "Get-PnPAzureADApp", - "Rank": 3, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3, + "CommandName": "Get-PnPAzureADApp", "Id": 364 }, { - "CommandName": "Get-PnPAzureADApp", - "Rank": 4, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "Rank": 4, + "CommandName": "Get-PnPAzureADApp", "Id": 365 }, { - "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 1, "Command": "Get-PnPAzureADAppPermission", + "Rank": 1, + "CommandName": "Get-PnPAzureADAppPermission", "Id": 366 }, { - "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 2, "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "Rank": 2, + "CommandName": "Get-PnPAzureADAppPermission", "Id": 367 }, { - "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 3, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3, + "CommandName": "Get-PnPAzureADAppPermission", "Id": 368 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 1, "Command": "Get-PnPAzureADAppSitePermission", + "Rank": 1, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 369 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 2, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "Rank": 2, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 370 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 3, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "Rank": 3, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 371 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 4, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "Rank": 4, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 372 }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 5, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "Rank": 5, + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 373 }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 1, "Command": "Get-PnPAzureADGroup", + "Rank": 1, + "CommandName": "Get-PnPAzureADGroup", "Id": 374 }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 2, "Command": "Get-PnPAzureADGroup -Identity $groupId", + "Rank": 2, + "CommandName": "Get-PnPAzureADGroup", "Id": 375 }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 3, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "Rank": 3, + "CommandName": "Get-PnPAzureADGroup", "Id": 376 }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 4, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "Rank": 4, + "CommandName": "Get-PnPAzureADGroup", "Id": 377 }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 5, "Command": "Get-PnPAzureADGroup -Identity $group", + "Rank": 5, + "CommandName": "Get-PnPAzureADGroup", "Id": 378 }, { - "CommandName": "Get-PnPAzureADGroupMember", - "Rank": 1, "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "Rank": 1, + "CommandName": "Get-PnPAzureADGroupMember", "Id": 379 }, { - "CommandName": "Get-PnPAzureADGroupMember", - "Rank": 2, "Command": "Get-PnPAzureADGroupMember -Identity $group", + "Rank": 2, + "CommandName": "Get-PnPAzureADGroupMember", "Id": 380 }, { - "CommandName": "Get-PnPAzureADGroupOwner", - "Rank": 1, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "Rank": 1, + "CommandName": "Get-PnPAzureADGroupOwner", "Id": 381 }, { - "CommandName": "Get-PnPAzureADGroupOwner", - "Rank": 2, "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "Rank": 2, + "CommandName": "Get-PnPAzureADGroupOwner", "Id": 382 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 1, "Command": "Get-PnPAzureADServicePrincipal", + "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 383 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 2, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 384 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 3, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "Rank": 3, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 385 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 4, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "Rank": 4, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 386 }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 5, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "Rank": 5, + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 387 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 1, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 388 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 2, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 389 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Rank": 1, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 390 }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Rank": 2, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 391 }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 1, "Command": "Get-PnPAzureADUser", + "Rank": 1, + "CommandName": "Get-PnPAzureADUser", "Id": 392 }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 2, "Command": "Get-PnPAzureADUser -EndIndex 50", + "Rank": 2, + "CommandName": "Get-PnPAzureADUser", "Id": 393 }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 3, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 3, + "CommandName": "Get-PnPAzureADUser", "Id": 394 }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 4, "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "Rank": 4, + "CommandName": "Get-PnPAzureADUser", "Id": 395 }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 5, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "Rank": 5, + "CommandName": "Get-PnPAzureADUser", "Id": 396 }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 6, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "Rank": 6, + "CommandName": "Get-PnPAzureADUser", "Id": 397 }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 7, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "Rank": 7, + "CommandName": "Get-PnPAzureADUser", "Id": 398 }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 8, "Command": "Get-PnPAzureADUser -Delta", + "Rank": 8, + "CommandName": "Get-PnPAzureADUser", "Id": 399 }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 9, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "Rank": 9, + "CommandName": "Get-PnPAzureADUser", "Id": 400 }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 10, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "Rank": 10, + "CommandName": "Get-PnPAzureADUser", "Id": 401 }, { - "CommandName": "Get-PnPAzureCertificate", - "Rank": 1, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "Rank": 1, + "CommandName": "Get-PnPAzureCertificate", "Id": 402 }, { - "CommandName": "Get-PnPAzureCertificate", - "Rank": 2, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "Rank": 2, + "CommandName": "Get-PnPAzureCertificate", "Id": 403 }, { - "CommandName": "Get-PnPAzureCertificate", - "Rank": 3, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "Rank": 3, + "CommandName": "Get-PnPAzureCertificate", "Id": 404 }, { - "CommandName": "Get-PnPBrowserIdleSignout", - "Rank": 1, "Command": "Get-PnPBrowserIdleSignout", + "Rank": 1, + "CommandName": "Get-PnPBrowserIdleSignout", "Id": 405 }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 1, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "Rank": 1, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 406 }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2, "Command": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 2, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 407 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1, "Command": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 1, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 408 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 2, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "Rank": 2, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 409 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 3, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "Rank": 3, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 410 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 4, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 4, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 411 }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 5, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "Rank": 5, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 412 }, { - "CommandName": "Get-PnPChangeLog", - "Rank": 1, "Command": "Get-PnPChangeLog", + "Rank": 1, + "CommandName": "Get-PnPChangeLog", "Id": 413 }, { - "CommandName": "Get-PnPChangeLog", - "Rank": 2, "Command": "Get-PnPChangeLog -Nightly", + "Rank": 2, + "CommandName": "Get-PnPChangeLog", "Id": 414 }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Rank": 1, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "Rank": 1, + "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 415 }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Rank": 2, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "Rank": 2, + "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 416 }, { - "CommandName": "Get-PnPContentType", - "Rank": 1, "Command": "Get-PnPContentType", + "Rank": 1, + "CommandName": "Get-PnPContentType", "Id": 417 }, { - "CommandName": "Get-PnPContentType", - "Rank": 2, "Command": "Get-PnPContentType -InSiteHierarchy", + "Rank": 2, + "CommandName": "Get-PnPContentType", "Id": 418 }, { - "CommandName": "Get-PnPContentType", - "Rank": 3, "Command": "Get-PnPContentType -Identity \"Project Document\"", + "Rank": 3, + "CommandName": "Get-PnPContentType", "Id": 419 }, { - "CommandName": "Get-PnPContentType", - "Rank": 4, "Command": "Get-PnPContentType -List \"Documents\"", + "Rank": 4, + "CommandName": "Get-PnPContentType", "Id": 420 }, { - "CommandName": "Get-PnPContentType", - "Rank": 5, "Command": "Get-PnPContentType -Includes \"SchemaXml\"", + "Rank": 5, + "CommandName": "Get-PnPContentType", "Id": 421 }, { - "CommandName": "Get-PnPContentTypePublishingStatus", - "Rank": 1, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "Rank": 1, + "CommandName": "Get-PnPContentTypePublishingStatus", "Id": 422 }, { - "CommandName": "Get-PnPCustomAction", - "Rank": 1, "Command": "Get-PnPCustomAction", + "Rank": 1, + "CommandName": "Get-PnPCustomAction", "Id": 423 }, { - "CommandName": "Get-PnPCustomAction", - "Rank": 2, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2, + "CommandName": "Get-PnPCustomAction", "Id": 424 }, { - "CommandName": "Get-PnPCustomAction", - "Rank": 3, "Command": "Get-PnPCustomAction -Scope web", + "Rank": 3, + "CommandName": "Get-PnPCustomAction", "Id": 425 }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1, "Command": "Get-PnPDeletedMicrosoft365Group", + "Rank": 1, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 426 }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Rank": 2, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 2, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 427 }, { - "CommandName": "Get-PnPDeletedTeam", - "Rank": 1, "Command": "Get-PnPDeletedTeam", + "Rank": 1, + "CommandName": "Get-PnPDeletedTeam", "Id": 428 }, { - "CommandName": "Get-PnPDiagnostics", - "Rank": 1, "Command": "Get-PnPDiagnostics", + "Rank": 1, + "CommandName": "Get-PnPDiagnostics", "Id": 429 }, { - "CommandName": "Get-PnPDisableSpacesActivation", - "Rank": 1, "Command": "Get-PnPDisableSpacesActivation", + "Rank": 1, + "CommandName": "Get-PnPDisableSpacesActivation", "Id": 430 }, { - "CommandName": "Get-PnPDocumentSetTemplate", - "Rank": 1, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "Rank": 1, + "CommandName": "Get-PnPDocumentSetTemplate", "Id": 431 }, { - "CommandName": "Get-PnPDocumentSetTemplate", - "Rank": 2, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "Rank": 2, + "CommandName": "Get-PnPDocumentSetTemplate", "Id": 432 }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 1, "Command": "Get-PnPEventReceiver", + "Rank": 1, + "CommandName": "Get-PnPEventReceiver", "Id": 433 }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 2, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 2, + "CommandName": "Get-PnPEventReceiver", "Id": 434 }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 3, "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "Rank": 3, + "CommandName": "Get-PnPEventReceiver", "Id": 435 }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 4, "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "Rank": 4, + "CommandName": "Get-PnPEventReceiver", "Id": 436 }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 5, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 5, + "CommandName": "Get-PnPEventReceiver", "Id": 437 }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 6, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "Rank": 6, + "CommandName": "Get-PnPEventReceiver", "Id": 438 }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 7, "Command": "Get-PnPEventReceiver -Scope Site", + "Rank": 7, + "CommandName": "Get-PnPEventReceiver", "Id": 439 }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 8, "Command": "Get-PnPEventReceiver -Scope Web", + "Rank": 8, + "CommandName": "Get-PnPEventReceiver", "Id": 440 }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 9, "Command": "Get-PnPEventReceiver -Scope All", + "Rank": 9, + "CommandName": "Get-PnPEventReceiver", "Id": 441 }, { - "CommandName": "Get-PnPException", - "Rank": 1, "Command": "Get-PnPException", + "Rank": 1, + "CommandName": "Get-PnPException", "Id": 442 }, { - "CommandName": "Get-PnPException", - "Rank": 2, "Command": "Get-PnPException -All", + "Rank": 2, + "CommandName": "Get-PnPException", "Id": 443 }, { - "CommandName": "Get-PnPExternalUser", - "Rank": 1, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "Rank": 1, + "CommandName": "Get-PnPExternalUser", "Id": 444 }, { - "CommandName": "Get-PnPExternalUser", - "Rank": 2, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "Rank": 2, + "CommandName": "Get-PnPExternalUser", "Id": 445 }, { - "CommandName": "Get-PnPFeature", - "Rank": 1, "Command": "Get-PnPFeature", + "Rank": 1, + "CommandName": "Get-PnPFeature", "Id": 446 }, { - "CommandName": "Get-PnPFeature", - "Rank": 2, "Command": "Get-PnPFeature -Scope Site", + "Rank": 2, + "CommandName": "Get-PnPFeature", "Id": 447 }, { - "CommandName": "Get-PnPFeature", - "Rank": 3, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 3, + "CommandName": "Get-PnPFeature", "Id": 448 }, { - "CommandName": "Get-PnPFeature", - "Rank": 4, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "Rank": 4, + "CommandName": "Get-PnPFeature", "Id": 449 }, { - "CommandName": "Get-PnPField", - "Rank": 1, "Command": "Get-PnPField", + "Rank": 1, + "CommandName": "Get-PnPField", "Id": 450 }, { - "CommandName": "Get-PnPField", - "Rank": 2, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Rank": 2, + "CommandName": "Get-PnPField", "Id": 451 }, { - "CommandName": "Get-PnPField", - "Rank": 3, "Command": "Get-PnPField -Group \"Custom Columns\"", + "Rank": 3, + "CommandName": "Get-PnPField", "Id": 452 }, { - "CommandName": "Get-PnPFile", - "Rank": 1, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "Rank": 1, + "CommandName": "Get-PnPFile", "Id": 453 }, { - "CommandName": "Get-PnPFile", - "Rank": 2, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "Rank": 2, + "CommandName": "Get-PnPFile", "Id": 454 }, { - "CommandName": "Get-PnPFile", - "Rank": 3, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "Rank": 3, + "CommandName": "Get-PnPFile", "Id": 455 }, { - "CommandName": "Get-PnPFile", - "Rank": 4, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "Rank": 4, + "CommandName": "Get-PnPFile", "Id": 456 }, { - "CommandName": "Get-PnPFile", - "Rank": 5, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "Rank": 5, + "CommandName": "Get-PnPFile", "Id": 457 }, { - "CommandName": "Get-PnPFile", - "Rank": 6, "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", + "Rank": 6, + "CommandName": "Get-PnPFile", "Id": 458 }, { - "CommandName": "Get-PnPFile", - "Rank": 7, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "Rank": 7, + "CommandName": "Get-PnPFile", "Id": 459 }, { - "CommandName": "Get-PnPFileSharingLink", - "Rank": 1, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, + "CommandName": "Get-PnPFileSharingLink", "Id": 460 }, { - "CommandName": "Get-PnPFileVersion", - "Rank": 1, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "Rank": 1, + "CommandName": "Get-PnPFileVersion", "Id": 461 }, { - "CommandName": "Get-PnPFileVersion", - "Rank": 2, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "Rank": 2, + "CommandName": "Get-PnPFileVersion", "Id": 462 }, { - "CommandName": "Get-PnPFlow", - "Rank": 1, "Command": "Get-PnPFlow -AsAdmin", + "Rank": 1, + "CommandName": "Get-PnPFlow", "Id": 463 }, { - "CommandName": "Get-PnPFlow", - "Rank": 2, "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "Rank": 2, + "CommandName": "Get-PnPFlow", "Id": 464 }, { - "CommandName": "Get-PnPFlow", - "Rank": 3, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "Rank": 3, + "CommandName": "Get-PnPFlow", "Id": 465 }, { - "CommandName": "Get-PnPFlowOwner", - "Rank": 1, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "Rank": 1, + "CommandName": "Get-PnPFlowOwner", "Id": 466 }, { - "CommandName": "Get-PnPFolder", - "Rank": 1, "Command": "Get-PnPFolder", + "Rank": 1, + "CommandName": "Get-PnPFolder", "Id": 467 }, { - "CommandName": "Get-PnPFolder", - "Rank": 2, "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "Rank": 2, + "CommandName": "Get-PnPFolder", "Id": 468 }, { - "CommandName": "Get-PnPFolder", - "Rank": 3, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "Rank": 3, + "CommandName": "Get-PnPFolder", "Id": 469 }, { - "CommandName": "Get-PnPFolder", - "Rank": 4, "Command": "Get-PnPFolder -List \"Shared Documents\"", + "Rank": 4, + "CommandName": "Get-PnPFolder", "Id": 470 }, { - "CommandName": "Get-PnPFolderFile", - "Rank": 1, "Command": "Get-PnPFolderFile", + "Rank": 1, + "CommandName": "Get-PnPFolderFile", "Id": 471 }, { - "CommandName": "Get-PnPFolderFile", - "Rank": 2, "Command": "Get-PnPFolderFile -Recurse", + "Rank": 2, + "CommandName": "Get-PnPFolderFile", "Id": 472 }, { - "CommandName": "Get-PnPFolderFile", - "Rank": 3, "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", + "Rank": 3, + "CommandName": "Get-PnPFolderFile", "Id": 473 }, { - "CommandName": "Get-PnPFolderFile", - "Rank": 4, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Rank": 4, + "CommandName": "Get-PnPFolderFile", "Id": 474 }, { - "CommandName": "Get-PnPFolderFile", - "Rank": 5, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 5, + "CommandName": "Get-PnPFolderFile", "Id": 475 }, { - "CommandName": "Get-PnPFolderFolder", - "Rank": 1, "Command": "Get-PnPFolderFolder", + "Rank": 1, + "CommandName": "Get-PnPFolderFolder", "Id": 476 }, { - "CommandName": "Get-PnPFolderFolder", - "Rank": 2, "Command": "Get-PnPFolderFolder -Recurse", + "Rank": 2, + "CommandName": "Get-PnPFolderFolder", "Id": 477 }, { - "CommandName": "Get-PnPFolderFolder", - "Rank": 3, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", + "Rank": 3, + "CommandName": "Get-PnPFolderFolder", "Id": 478 }, { - "CommandName": "Get-PnPFolderFolder", - "Rank": 4, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "Rank": 4, + "CommandName": "Get-PnPFolderFolder", "Id": 479 }, { - "CommandName": "Get-PnPFolderFolder", - "Rank": 5, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "Rank": 5, + "CommandName": "Get-PnPFolderFolder", "Id": 480 }, { - "CommandName": "Get-PnPFolderFolder", - "Rank": 6, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 6, + "CommandName": "Get-PnPFolderFolder", "Id": 481 }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 1, "Command": "Get-PnPFolderItem", + "Rank": 1, + "CommandName": "Get-PnPFolderItem", "Id": 482 }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 2, "Command": "Get-PnPFolderItem -Recurse", + "Rank": 2, + "CommandName": "Get-PnPFolderItem", "Id": 483 }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 3, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "Rank": 3, + "CommandName": "Get-PnPFolderItem", "Id": 484 }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 4, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Rank": 4, + "CommandName": "Get-PnPFolderItem", "Id": 485 }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 5, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "Rank": 5, + "CommandName": "Get-PnPFolderItem", "Id": 486 }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 6, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 6, + "CommandName": "Get-PnPFolderItem", "Id": 487 }, { - "CommandName": "Get-PnPFolderSharingLink", - "Rank": 1, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, + "CommandName": "Get-PnPFolderSharingLink", "Id": 488 }, { - "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 1, "Command": "Get-PnPFolderStorageMetric", + "Rank": 1, + "CommandName": "Get-PnPFolderStorageMetric", "Id": 489 }, { - "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 2, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "Rank": 2, + "CommandName": "Get-PnPFolderStorageMetric", "Id": 490 }, { - "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 3, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "Rank": 3, + "CommandName": "Get-PnPFolderStorageMetric", "Id": 491 }, { - "CommandName": "Get-PnPFooter", - "Rank": 1, "Command": "Get-PnPFooter", + "Rank": 1, + "CommandName": "Get-PnPFooter", "Id": 492 }, { - "CommandName": "Get-PnPGraphAccessToken", - "Rank": 1, "Command": "Get-PnPGraphAccessToken", + "Rank": 1, + "CommandName": "Get-PnPGraphAccessToken", "Id": 493 }, { - "CommandName": "Get-PnPGraphAccessToken", - "Rank": 2, "Command": "Get-PnPGraphAccessToken -Decoded", + "Rank": 2, + "CommandName": "Get-PnPGraphAccessToken", "Id": 494 }, { - "CommandName": "Get-PnPGraphSubscription", - "Rank": 1, "Command": "Get-PnPGraphSubscription", + "Rank": 1, + "CommandName": "Get-PnPGraphSubscription", "Id": 495 }, { - "CommandName": "Get-PnPGraphSubscription", - "Rank": 2, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 2, + "CommandName": "Get-PnPGraphSubscription", "Id": 496 }, { - "CommandName": "Get-PnPGroup", - "Rank": 1, "Command": "Get-PnPGroup", + "Rank": 1, + "CommandName": "Get-PnPGroup", "Id": 497 }, { - "CommandName": "Get-PnPGroup", - "Rank": 2, "Command": "Get-PnPGroup -Identity 'My Site Users'", + "Rank": 2, + "CommandName": "Get-PnPGroup", "Id": 498 }, { - "CommandName": "Get-PnPGroup", - "Rank": 3, "Command": "Get-PnPGroup -AssociatedMemberGroup", + "Rank": 3, + "CommandName": "Get-PnPGroup", "Id": 499 }, { - "CommandName": "Get-PnPGroupMember", - "Rank": 1, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "Rank": 1, + "CommandName": "Get-PnPGroupMember", "Id": 500 }, { - "CommandName": "Get-PnPGroupMember", - "Rank": 2, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "Rank": 2, + "CommandName": "Get-PnPGroupMember", "Id": 501 }, { - "CommandName": "Get-PnPGroupPermissions", - "Rank": 1, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "Rank": 1, + "CommandName": "Get-PnPGroupPermissions", "Id": 502 }, { - "CommandName": "Get-PnPHideDefaultThemes", - "Rank": 1, "Command": "Get-PnPHideDefaultThemes", + "Rank": 1, + "CommandName": "Get-PnPHideDefaultThemes", "Id": 503 }, { - "CommandName": "Get-PnPHomePage", - "Rank": 1, "Command": "Get-PnPHomePage", + "Rank": 1, + "CommandName": "Get-PnPHomePage", "Id": 504 }, { - "CommandName": "Get-PnPHomeSite", - "Rank": 1, "Command": "Get-PnPHomeSite", + "Rank": 1, + "CommandName": "Get-PnPHomeSite", "Id": 505 }, { - "CommandName": "Get-PnPHomeSite", - "Rank": 2, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "Rank": 2, + "CommandName": "Get-PnPHomeSite", "Id": 506 }, { - "CommandName": "Get-PnPHomeSite", - "Rank": 3, "Command": "Get-PnPHomeSite -Detailed", + "Rank": 3, + "CommandName": "Get-PnPHomeSite", "Id": 507 }, { - "CommandName": "Get-PnPHubSite", - "Rank": 1, "Command": "Get-PnPHubSite", + "Rank": 1, + "CommandName": "Get-PnPHubSite", "Id": 508 }, { - "CommandName": "Get-PnPHubSite", - "Rank": 2, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Rank": 2, + "CommandName": "Get-PnPHubSite", "Id": 509 }, { - "CommandName": "Get-PnPHubSite", - "Rank": 3, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "Rank": 3, + "CommandName": "Get-PnPHubSite", "Id": 510 }, { - "CommandName": "Get-PnPHubSiteChild", - "Rank": 1, "Command": "Get-PnPHubSiteChild", + "Rank": 1, + "CommandName": "Get-PnPHubSiteChild", "Id": 511 }, { - "CommandName": "Get-PnPHubSiteChild", - "Rank": 2, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Rank": 2, + "CommandName": "Get-PnPHubSiteChild", "Id": 512 }, { - "CommandName": "Get-PnPInPlaceRecordsManagement", - "Rank": 1, "Command": "Get-PnPInPlaceRecordsManagement", + "Rank": 1, + "CommandName": "Get-PnPInPlaceRecordsManagement", "Id": 513 }, { - "CommandName": "Get-PnPIsSiteAliasAvailable", - "Rank": 1, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "Rank": 1, + "CommandName": "Get-PnPIsSiteAliasAvailable", "Id": 514 }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 1, "Command": "Get-PnPJavaScriptLink", + "Rank": 1, + "CommandName": "Get-PnPJavaScriptLink", "Id": 515 }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 2, "Command": "Get-PnPJavaScriptLink -Scope All", + "Rank": 2, + "CommandName": "Get-PnPJavaScriptLink", "Id": 516 }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 3, "Command": "Get-PnPJavaScriptLink -Scope Web", + "Rank": 3, + "CommandName": "Get-PnPJavaScriptLink", "Id": 517 }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 4, "Command": "Get-PnPJavaScriptLink -Scope Site", + "Rank": 4, + "CommandName": "Get-PnPJavaScriptLink", "Id": 518 }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 5, "Command": "Get-PnPJavaScriptLink -Name Test", + "Rank": 5, + "CommandName": "Get-PnPJavaScriptLink", "Id": 519 }, { - "CommandName": "Get-PnPKnowledgeHubSite", - "Rank": 1, "Command": "Get-PnPKnowledgeHubSite", + "Rank": 1, + "CommandName": "Get-PnPKnowledgeHubSite", "Id": 520 }, { - "CommandName": "Get-PnPLabel", - "Rank": 1, "Command": "Get-PnPLabel", + "Rank": 1, + "CommandName": "Get-PnPLabel", "Id": 521 }, { - "CommandName": "Get-PnPLabel", - "Rank": 2, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "Rank": 2, + "CommandName": "Get-PnPLabel", "Id": 522 }, { - "CommandName": "Get-PnPLargeListOperationStatus", - "Rank": 1, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "Rank": 1, + "CommandName": "Get-PnPLargeListOperationStatus", "Id": 523 }, { - "CommandName": "Get-PnPList", - "Rank": 1, "Command": "Get-PnPList", + "Rank": 1, + "CommandName": "Get-PnPList", "Id": 524 }, { - "CommandName": "Get-PnPList", - "Rank": 2, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 2, + "CommandName": "Get-PnPList", "Id": 525 }, { - "CommandName": "Get-PnPList", - "Rank": 3, "Command": "Get-PnPList -Identity Lists/Announcements", + "Rank": 3, + "CommandName": "Get-PnPList", "Id": 526 }, { - "CommandName": "Get-PnPList", - "Rank": 4, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "Rank": 4, + "CommandName": "Get-PnPList", "Id": 527 }, { - "CommandName": "Get-PnPList", - "Rank": 5, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "Rank": 5, + "CommandName": "Get-PnPList", "Id": 528 }, { - "CommandName": "Get-PnPListDesign", - "Rank": 1, "Command": "Get-PnPListDesign", + "Rank": 1, + "CommandName": "Get-PnPListDesign", "Id": 529 }, { - "CommandName": "Get-PnPListDesign", - "Rank": 2, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2, + "CommandName": "Get-PnPListDesign", "Id": 530 }, { - "CommandName": "Get-PnPListDesign", - "Rank": 3, "Command": "Get-PnPListDesign -Identity ListEvent", + "Rank": 3, + "CommandName": "Get-PnPListDesign", "Id": 531 }, { - "CommandName": "Get-PnPListInformationRightsManagement", - "Rank": 1, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "Rank": 1, + "CommandName": "Get-PnPListInformationRightsManagement", "Id": 532 }, { - "CommandName": "Get-PnPListItem", - "Rank": 1, "Command": "Get-PnPListItem -List Tasks", + "Rank": 1, + "CommandName": "Get-PnPListItem", "Id": 533 }, { - "CommandName": "Get-PnPListItem", - "Rank": 2, "Command": "Get-PnPListItem -List Tasks -Id 1", + "Rank": 2, + "CommandName": "Get-PnPListItem", "Id": 534 }, { - "CommandName": "Get-PnPListItem", - "Rank": 3, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "Rank": 3, + "CommandName": "Get-PnPListItem", "Id": 535 }, { - "CommandName": "Get-PnPListItem", - "Rank": 4, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "Rank": 4, + "CommandName": "Get-PnPListItem", "Id": 536 }, { - "CommandName": "Get-PnPListItem", - "Rank": 5, "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "Rank": 5, + "CommandName": "Get-PnPListItem", "Id": 537 }, { - "CommandName": "Get-PnPListItem", - "Rank": 6, "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "Rank": 6, + "CommandName": "Get-PnPListItem", "Id": 538 }, { - "CommandName": "Get-PnPListItem", - "Rank": 7, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", + "Rank": 7, + "CommandName": "Get-PnPListItem", "Id": 539 }, { - "CommandName": "Get-PnPListItem", - "Rank": 8, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "Rank": 8, + "CommandName": "Get-PnPListItem", "Id": 540 }, { - "CommandName": "Get-PnPListItem", - "Rank": 9, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "Rank": 9, + "CommandName": "Get-PnPListItem", "Id": 541 }, { - "CommandName": "Get-PnPListItemAttachment", - "Rank": 1, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", + "Rank": 1, + "CommandName": "Get-PnPListItemAttachment", "Id": 542 }, { - "CommandName": "Get-PnPListItemAttachment", - "Rank": 2, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "Rank": 2, + "CommandName": "Get-PnPListItemAttachment", "Id": 543 }, { - "CommandName": "Get-PnPListItemComment", - "Rank": 1, "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "Rank": 1, + "CommandName": "Get-PnPListItemComment", "Id": 544 }, { - "CommandName": "Get-PnPListItemPermission", - "Rank": 1, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "Rank": 1, + "CommandName": "Get-PnPListItemPermission", "Id": 545 }, { - "CommandName": "Get-PnPListItemVersion", - "Rank": 1, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "Rank": 1, + "CommandName": "Get-PnPListItemVersion", "Id": 546 }, { - "CommandName": "Get-PnPListPermissions", - "Rank": 1, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "Rank": 1, + "CommandName": "Get-PnPListPermissions", "Id": 547 }, { - "CommandName": "Get-PnPListPermissions", - "Rank": 2, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "Rank": 2, + "CommandName": "Get-PnPListPermissions", "Id": 548 }, { - "CommandName": "Get-PnPListRecordDeclaration", - "Rank": 1, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "Rank": 1, + "CommandName": "Get-PnPListRecordDeclaration", "Id": 549 }, { - "CommandName": "Get-PnPMasterPage", - "Rank": 1, "Command": "Get-PnPMasterPage", + "Rank": 1, + "CommandName": "Get-PnPMasterPage", "Id": 550 }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Rank": 1, "Command": "Get-PnPMessageCenterAnnouncement", + "Rank": 1, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 551 }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Rank": 2, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "Rank": 2, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 552 }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1, "Command": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 553 }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 2, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 554 }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 1, "Command": "Get-PnPMicrosoft365Group", + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 555 }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 2, "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 556 }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 3, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 557 }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 4, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "Rank": 4, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 558 }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 5, "Command": "Get-PnPMicrosoft365Group -Identity $group", + "Rank": 5, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 559 }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 6, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "Rank": 6, + "CommandName": "Get-PnPMicrosoft365Group", "Id": 560 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1, "Command": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 561 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 2, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 562 }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 3, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 563 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 1, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 564 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 2, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 565 }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 3, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 566 }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Rank": 1, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 567 }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Rank": 2, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 568 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1, "Command": "Get-PnPMicrosoft365GroupSettings", + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 569 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Rank": 2, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 570 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1, "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 571 }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 2, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 572 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1, "Command": "Get-PnPMicrosoft365GroupTeam", + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 573 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 2, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 574 }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 3, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 575 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1, "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 576 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 2, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 577 }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 3, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 578 }, { - "CommandName": "Get-PnPNavigationNode", - "Rank": 1, "Command": "Get-PnPNavigationNode", + "Rank": 1, + "CommandName": "Get-PnPNavigationNode", "Id": 579 }, { - "CommandName": "Get-PnPNavigationNode", - "Rank": 2, "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "Rank": 2, + "CommandName": "Get-PnPNavigationNode", "Id": 580 }, { - "CommandName": "Get-PnPNavigationNode", - "Rank": 3, "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "Rank": 3, + "CommandName": "Get-PnPNavigationNode", "Id": 581 }, { - "CommandName": "Get-PnPOrgAssetsLibrary", - "Rank": 1, "Command": "Get-PnPOrgAssetsLibrary", + "Rank": 1, + "CommandName": "Get-PnPOrgAssetsLibrary", "Id": 582 }, { - "CommandName": "Get-PnPOrgNewsSite", - "Rank": 1, "Command": "Get-PnPOrgNewsSite", + "Rank": 1, + "CommandName": "Get-PnPOrgNewsSite", "Id": 583 }, { - "CommandName": "Get-PnPPage", - "Rank": 1, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "Rank": 1, + "CommandName": "Get-PnPPage", "Id": 584 }, { - "CommandName": "Get-PnPPage", - "Rank": 2, "Command": "Get-PnPPage \"MyPage\"", + "Rank": 2, + "CommandName": "Get-PnPPage", "Id": 585 }, { - "CommandName": "Get-PnPPage", - "Rank": 3, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "Rank": 3, + "CommandName": "Get-PnPPage", "Id": 586 }, { - "CommandName": "Get-PnPPage", - "Rank": 4, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "Rank": 4, + "CommandName": "Get-PnPPage", "Id": 587 }, { - "CommandName": "Get-PnPPageComponent", - "Rank": 1, "Command": "Get-PnPPageComponent -Page Home", + "Rank": 1, + "CommandName": "Get-PnPPageComponent", "Id": 588 }, { - "CommandName": "Get-PnPPageComponent", - "Rank": 2, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 2, + "CommandName": "Get-PnPPageComponent", "Id": 589 }, { - "CommandName": "Get-PnPPageComponent", - "Rank": 3, "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "Rank": 3, + "CommandName": "Get-PnPPageComponent", "Id": 590 }, { - "CommandName": "Get-PnPPlannerBucket", - "Rank": 1, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "Rank": 1, + "CommandName": "Get-PnPPlannerBucket", "Id": 591 }, { - "CommandName": "Get-PnPPlannerConfiguration", - "Rank": 1, "Command": "Get-PnPPlannerConfiguration", + "Rank": 1, + "CommandName": "Get-PnPPlannerConfiguration", "Id": 592 }, { - "CommandName": "Get-PnPPlannerPlan", - "Rank": 1, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "Rank": 1, + "CommandName": "Get-PnPPlannerPlan", "Id": 593 }, { - "CommandName": "Get-PnPPlannerPlan", - "Rank": 2, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "Rank": 2, + "CommandName": "Get-PnPPlannerPlan", "Id": 594 }, { - "CommandName": "Get-PnPPlannerPlan", - "Rank": 3, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "Rank": 3, + "CommandName": "Get-PnPPlannerPlan", "Id": 595 }, { - "CommandName": "Get-PnPPlannerRosterMember", - "Rank": 1, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Rank": 1, + "CommandName": "Get-PnPPlannerRosterMember", "Id": 596 }, { - "CommandName": "Get-PnPPlannerRosterPlan", - "Rank": 1, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "Rank": 1, + "CommandName": "Get-PnPPlannerRosterPlan", "Id": 597 }, { - "CommandName": "Get-PnPPlannerRosterPlan", - "Rank": 2, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 2, + "CommandName": "Get-PnPPlannerRosterPlan", "Id": 598 }, { - "CommandName": "Get-PnPPlannerTask", - "Rank": 1, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "Rank": 1, + "CommandName": "Get-PnPPlannerTask", "Id": 599 }, { - "CommandName": "Get-PnPPlannerTask", - "Rank": 2, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Rank": 2, + "CommandName": "Get-PnPPlannerTask", "Id": 600 }, { - "CommandName": "Get-PnPPlannerTask", - "Rank": 3, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Rank": 3, + "CommandName": "Get-PnPPlannerTask", "Id": 601 }, { - "CommandName": "Get-PnPPlannerUserPolicy", - "Rank": 1, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, + "CommandName": "Get-PnPPlannerUserPolicy", "Id": 602 }, { - "CommandName": "Get-PnPPowerPlatformConnector", - "Rank": 1, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "Rank": 1, + "CommandName": "Get-PnPPowerPlatformConnector", "Id": 603 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 1, "Command": "Get-PnPPowerPlatformEnvironment", + "Rank": 1, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 604 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 2, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "Rank": 2, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 605 }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 3, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "Rank": 3, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 606 }, { - "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1, "Command": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1, + "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Id": 607 }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 1, "Command": "Get-PnPPropertyBag", + "Rank": 1, + "CommandName": "Get-PnPPropertyBag", "Id": 608 }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 2, "Command": "Get-PnPPropertyBag -Key MyKey", + "Rank": 2, + "CommandName": "Get-PnPPropertyBag", "Id": 609 }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 3, "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "Rank": 3, + "CommandName": "Get-PnPPropertyBag", "Id": 610 }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 4, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "Rank": 4, + "CommandName": "Get-PnPPropertyBag", "Id": 611 }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 5, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "Rank": 5, + "CommandName": "Get-PnPPropertyBag", "Id": 612 }, { - "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 1, "Command": "Get-PnPPublishingImageRendition", + "Rank": 1, + "CommandName": "Get-PnPPublishingImageRendition", "Id": 613 }, { - "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 2, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "Rank": 2, + "CommandName": "Get-PnPPublishingImageRendition", "Id": 614 }, { - "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 3, "Command": "Get-PnPPublishingImageRendition -Identity 2", + "Rank": 3, + "CommandName": "Get-PnPPublishingImageRendition", "Id": 615 }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 1, "Command": "Get-PnPRecycleBinItem", + "Rank": 1, + "CommandName": "Get-PnPRecycleBinItem", "Id": 616 }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 2, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "Rank": 2, + "CommandName": "Get-PnPRecycleBinItem", "Id": 617 }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 3, "Command": "Get-PnPRecycleBinItem -FirstStage", + "Rank": 3, + "CommandName": "Get-PnPRecycleBinItem", "Id": 618 }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 4, "Command": "Get-PnPRecycleBinItem -SecondStage", + "Rank": 4, + "CommandName": "Get-PnPRecycleBinItem", "Id": 619 }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 5, "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "Rank": 5, + "CommandName": "Get-PnPRecycleBinItem", "Id": 620 }, { - "CommandName": "Get-PnPRequestAccessEmails", - "Rank": 1, "Command": "Get-PnPRequestAccessEmails", + "Rank": 1, + "CommandName": "Get-PnPRequestAccessEmails", "Id": 621 }, { - "CommandName": "Get-PnPRetentionLabel", - "Rank": 1, "Command": "Get-PnPRetentionLabel", + "Rank": 1, + "CommandName": "Get-PnPRetentionLabel", "Id": 622 }, { - "CommandName": "Get-PnPRetentionLabel", - "Rank": 2, "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "Rank": 2, + "CommandName": "Get-PnPRetentionLabel", "Id": 623 }, { - "CommandName": "Get-PnPRoleDefinition", - "Rank": 1, "Command": "Get-PnPRoleDefinition", + "Rank": 1, + "CommandName": "Get-PnPRoleDefinition", "Id": 624 }, { - "CommandName": "Get-PnPRoleDefinition", - "Rank": 2, "Command": "Get-PnPRoleDefinition -Identity Read", + "Rank": 2, + "CommandName": "Get-PnPRoleDefinition", "Id": 625 }, { - "CommandName": "Get-PnPRoleDefinition", - "Rank": 3, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "Rank": 3, + "CommandName": "Get-PnPRoleDefinition", "Id": 626 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 1, "Command": "Get-PnPSearchConfiguration", + "Rank": 1, + "CommandName": "Get-PnPSearchConfiguration", "Id": 627 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 2, "Command": "Get-PnPSearchConfiguration -Scope Site", + "Rank": 2, + "CommandName": "Get-PnPSearchConfiguration", "Id": 628 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 3, "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "Rank": 3, + "CommandName": "Get-PnPSearchConfiguration", "Id": 629 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 4, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4, + "CommandName": "Get-PnPSearchConfiguration", "Id": 630 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 5, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "Rank": 5, + "CommandName": "Get-PnPSearchConfiguration", "Id": 631 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 6, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "Rank": 6, + "CommandName": "Get-PnPSearchConfiguration", "Id": 632 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 7, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "Rank": 7, + "CommandName": "Get-PnPSearchConfiguration", "Id": 633 }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 8, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "Rank": 8, + "CommandName": "Get-PnPSearchConfiguration", "Id": 634 }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 1, "Command": "Get-PnPSearchCrawlLog", + "Rank": 1, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 635 }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 2, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "Rank": 2, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 636 }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 3, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "Rank": 3, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 637 }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 4, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "Rank": 4, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 638 }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 5, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "Rank": 5, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 639 }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 6, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "Rank": 6, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 640 }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 7, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "Rank": 7, + "CommandName": "Get-PnPSearchCrawlLog", "Id": 641 }, { - "CommandName": "Get-PnPSearchSettings", - "Rank": 1, "Command": "Get-PnPSearchSettings", + "Rank": 1, + "CommandName": "Get-PnPSearchSettings", "Id": 642 }, { - "CommandName": "Get-PnPServiceCurrentHealth", - "Rank": 1, "Command": "Get-PnPServiceCurrentHealth", + "Rank": 1, + "CommandName": "Get-PnPServiceCurrentHealth", "Id": 643 }, { - "CommandName": "Get-PnPServiceCurrentHealth", - "Rank": 2, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "Rank": 2, + "CommandName": "Get-PnPServiceCurrentHealth", "Id": 644 }, { - "CommandName": "Get-PnPServiceHealthIssue", - "Rank": 1, "Command": "Get-PnPServiceHealthIssue", + "Rank": 1, + "CommandName": "Get-PnPServiceHealthIssue", "Id": 645 }, { - "CommandName": "Get-PnPServiceHealthIssue", - "Rank": 2, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "Rank": 2, + "CommandName": "Get-PnPServiceHealthIssue", "Id": 646 }, { - "CommandName": "Get-PnPSharePointAddIn", - "Rank": 1, "Command": "Get-PnPSharePointAddIn", + "Rank": 1, + "CommandName": "Get-PnPSharePointAddIn", "Id": 647 }, { - "CommandName": "Get-PnPSharePointAddIn", - "Rank": 2, "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "Rank": 2, + "CommandName": "Get-PnPSharePointAddIn", "Id": 648 }, { - "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1, "Command": "Get-PnPSharingForNonOwnersOfSite", + "Rank": 1, + "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Id": 649 }, { - "CommandName": "Get-PnPSite", - "Rank": 1, "Command": "Get-PnPSite", + "Rank": 1, + "CommandName": "Get-PnPSite", "Id": 650 }, { - "CommandName": "Get-PnPSite", - "Rank": 2, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "Rank": 2, + "CommandName": "Get-PnPSite", "Id": 651 }, { - "CommandName": "Get-PnPSiteClosure", - "Rank": 1, "Command": "Get-PnPSiteClosure", + "Rank": 1, + "CommandName": "Get-PnPSiteClosure", "Id": 652 }, { - "CommandName": "Get-PnPSiteCollectionAdmin", - "Rank": 1, "Command": "Get-PnPSiteCollectionAdmin", + "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAdmin", "Id": 653 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1, "Command": "Get-PnPSiteCollectionAppCatalog", + "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 654 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 2, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "Rank": 2, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 655 }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 3, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "Rank": 3, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 656 }, { - "CommandName": "Get-PnPSiteCollectionTermStore", - "Rank": 1, "Command": "Get-PnPSiteCollectionTermStore", + "Rank": 1, + "CommandName": "Get-PnPSiteCollectionTermStore", "Id": 657 }, { - "CommandName": "Get-PnPSiteDesign", - "Rank": 1, "Command": "Get-PnPSiteDesign", + "Rank": 1, + "CommandName": "Get-PnPSiteDesign", "Id": 658 }, { - "CommandName": "Get-PnPSiteDesign", - "Rank": 2, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2, + "CommandName": "Get-PnPSiteDesign", "Id": 659 }, { - "CommandName": "Get-PnPSiteDesignRights", - "Rank": 1, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, + "CommandName": "Get-PnPSiteDesignRights", "Id": 660 }, { - "CommandName": "Get-PnPSiteDesignRun", - "Rank": 1, "Command": "Get-PnPSiteDesignRun", + "Rank": 1, + "CommandName": "Get-PnPSiteDesignRun", "Id": 661 }, { - "CommandName": "Get-PnPSiteDesignRun", - "Rank": 2, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "Rank": 2, + "CommandName": "Get-PnPSiteDesignRun", "Id": 662 }, { - "CommandName": "Get-PnPSiteDesignTask", - "Rank": 1, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "Rank": 1, + "CommandName": "Get-PnPSiteDesignTask", "Id": 663 }, { - "CommandName": "Get-PnPSiteDesignTask", - "Rank": 2, "Command": "Get-PnPSiteDesignTask", + "Rank": 2, + "CommandName": "Get-PnPSiteDesignTask", "Id": 664 }, { - "CommandName": "Get-PnPSiteDesignTask", - "Rank": 3, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Rank": 3, + "CommandName": "Get-PnPSiteDesignTask", "Id": 665 }, { - "CommandName": "Get-PnPSiteGroup", - "Rank": 1, "Command": "Get-PnPSiteGroup", + "Rank": 1, + "CommandName": "Get-PnPSiteGroup", "Id": 666 }, { - "CommandName": "Get-PnPSiteGroup", - "Rank": 2, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Rank": 2, + "CommandName": "Get-PnPSiteGroup", "Id": 667 }, { - "CommandName": "Get-PnPSiteGroup", - "Rank": 3, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "Rank": 3, + "CommandName": "Get-PnPSiteGroup", "Id": 668 }, { - "CommandName": "Get-PnPSiteGroup", - "Rank": 4, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Rank": 4, + "CommandName": "Get-PnPSiteGroup", "Id": 669 }, { - "CommandName": "Get-PnPSitePolicy", - "Rank": 1, "Command": "Get-PnPSitePolicy", + "Rank": 1, + "CommandName": "Get-PnPSitePolicy", "Id": 670 }, { - "CommandName": "Get-PnPSitePolicy", - "Rank": 2, "Command": "Get-PnPSitePolicy -AllAvailable", + "Rank": 2, + "CommandName": "Get-PnPSitePolicy", "Id": 671 }, { - "CommandName": "Get-PnPSitePolicy", - "Rank": 3, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "Rank": 3, + "CommandName": "Get-PnPSitePolicy", "Id": 672 }, { - "CommandName": "Get-PnPSiteScript", - "Rank": 1, "Command": "Get-PnPSiteScript", + "Rank": 1, + "CommandName": "Get-PnPSiteScript", "Id": 673 }, { - "CommandName": "Get-PnPSiteScript", - "Rank": 2, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2, + "CommandName": "Get-PnPSiteScript", "Id": 674 }, { - "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 1, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromList", "Id": 675 }, { - "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 2, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromList", "Id": 676 }, { - "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 3, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromList", "Id": 677 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 1, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 678 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 2, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 679 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 3, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 680 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 4, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "Rank": 4, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 681 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 5, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "Rank": 5, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 682 }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 6, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "Rank": 6, + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 683 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 1, "Command": "Get-PnPSiteSearchQueryResults", + "Rank": 1, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 684 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 2, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "Rank": 2, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 685 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 3, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "Rank": 3, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 686 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 4, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "Rank": 4, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 687 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 5, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "Rank": 5, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 688 }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 6, "Command": "Get-PnPSiteSearchQueryResults -All", + "Rank": 6, + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 689 }, { - "CommandName": "Get-PnPSiteSensitivityLabel", - "Rank": 1, "Command": "Get-PnPSiteSensitivityLabel", + "Rank": 1, + "CommandName": "Get-PnPSiteSensitivityLabel", "Id": 690 }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 1, "Command": "Get-PnPSiteTemplate -Out template.pnp", + "Rank": 1, + "CommandName": "Get-PnPSiteTemplate", "Id": 691 }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 2, "Command": "Get-PnPSiteTemplate -Out template.xml", + "Rank": 2, + "CommandName": "Get-PnPSiteTemplate", "Id": 692 }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 3, "Command": "Get-PnPSiteTemplate -Out template.md", + "Rank": 3, + "CommandName": "Get-PnPSiteTemplate", "Id": 693 }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 4, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "Rank": 4, + "CommandName": "Get-PnPSiteTemplate", "Id": 694 }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 5, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "Rank": 5, + "CommandName": "Get-PnPSiteTemplate", "Id": 695 }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 6, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "Rank": 6, + "CommandName": "Get-PnPSiteTemplate", "Id": 696 }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 7, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "Rank": 7, + "CommandName": "Get-PnPSiteTemplate", "Id": 697 }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 8, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "Rank": 8, + "CommandName": "Get-PnPSiteTemplate", "Id": 698 }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 9, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "Rank": 9, + "CommandName": "Get-PnPSiteTemplate", "Id": 699 }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 10, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "Rank": 10, + "CommandName": "Get-PnPSiteTemplate", "Id": 700 }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 11, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "Rank": 11, + "CommandName": "Get-PnPSiteTemplate", "Id": 701 }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 12, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "Rank": 12, + "CommandName": "Get-PnPSiteTemplate", "Id": 702 }, { - "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\"", + "Rank": 13, + "CommandName": "Get-PnPSiteTemplate", "Id": 703 }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 14, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "Rank": 14, + "CommandName": "Get-PnPSiteTemplate", "Id": 704 }, { - "CommandName": "Get-PnPSiteUserInvitations", - "Rank": 1, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Rank": 1, + "CommandName": "Get-PnPSiteUserInvitations", "Id": 705 }, { - "CommandName": "Get-PnPSiteVersionPolicy", - "Rank": 1, "Command": "Get-PnPSiteVersionPolicy", + "Rank": 1, + "CommandName": "Get-PnPSiteVersionPolicy", "Id": 706 }, { - "CommandName": "Get-PnPStorageEntity", - "Rank": 1, "Command": "Get-PnPStorageEntity", + "Rank": 1, + "CommandName": "Get-PnPStorageEntity", "Id": 707 }, { - "CommandName": "Get-PnPStorageEntity", - "Rank": 2, "Command": "Get-PnPStorageEntity -Key MyKey", + "Rank": 2, + "CommandName": "Get-PnPStorageEntity", "Id": 708 }, { - "CommandName": "Get-PnPStorageEntity", - "Rank": 3, "Command": "Get-PnPStorageEntity -Scope Site", + "Rank": 3, + "CommandName": "Get-PnPStorageEntity", "Id": 709 }, { - "CommandName": "Get-PnPStorageEntity", - "Rank": 4, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "Rank": 4, + "CommandName": "Get-PnPStorageEntity", "Id": 710 }, { - "CommandName": "Get-PnPStoredCredential", - "Rank": 1, "Command": "Get-PnPStoredCredential -Name O365", + "Rank": 1, + "CommandName": "Get-PnPStoredCredential", "Id": 711 }, { - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Rank": 1, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Id": 712 }, { - "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Rank": 1, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Id": 713 }, { - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Rank": 1, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "Rank": 1, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Id": 714 }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 1, "Command": "Get-PnPSubWeb", + "Rank": 1, + "CommandName": "Get-PnPSubWeb", "Id": 715 }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 2, "Command": "Get-PnPSubWeb -Recurse", + "Rank": 2, + "CommandName": "Get-PnPSubWeb", "Id": 716 }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 3, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "Rank": 3, + "CommandName": "Get-PnPSubWeb", "Id": 717 }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 4, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "Rank": 4, + "CommandName": "Get-PnPSubWeb", "Id": 718 }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 5, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "Rank": 5, + "CommandName": "Get-PnPSubWeb", "Id": 719 }, { - "CommandName": "Get-PnPSyntexModel", - "Rank": 1, "Command": "Get-PnPSyntexModel", + "Rank": 1, + "CommandName": "Get-PnPSyntexModel", "Id": 720 }, { - "CommandName": "Get-PnPSyntexModel", - "Rank": 2, "Command": "Get-PnPSyntexModel -Identity 1", + "Rank": 2, + "CommandName": "Get-PnPSyntexModel", "Id": 721 }, { - "CommandName": "Get-PnPSyntexModel", - "Rank": 3, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "Rank": 3, + "CommandName": "Get-PnPSyntexModel", "Id": 722 }, { - "CommandName": "Get-PnPSyntexModelPublication", - "Rank": 1, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "Rank": 1, + "CommandName": "Get-PnPSyntexModelPublication", "Id": 723 }, { - "CommandName": "Get-PnPTaxonomyItem", - "Rank": 1, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "Rank": 1, + "CommandName": "Get-PnPTaxonomyItem", "Id": 724 }, { - "CommandName": "Get-PnPTeamsApp", - "Rank": 1, "Command": "Get-PnPTeamsApp", + "Rank": 1, + "CommandName": "Get-PnPTeamsApp", "Id": 725 }, { - "CommandName": "Get-PnPTeamsApp", - "Rank": 2, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "Rank": 2, + "CommandName": "Get-PnPTeamsApp", "Id": 726 }, { - "CommandName": "Get-PnPTeamsApp", - "Rank": 3, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "Rank": 3, + "CommandName": "Get-PnPTeamsApp", "Id": 727 }, { - "CommandName": "Get-PnPTeamsChannel", - "Rank": 1, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "Rank": 1, + "CommandName": "Get-PnPTeamsChannel", "Id": 728 }, { - "CommandName": "Get-PnPTeamsChannel", - "Rank": 2, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "Rank": 2, + "CommandName": "Get-PnPTeamsChannel", "Id": 729 }, { - "CommandName": "Get-PnPTeamsChannel", - "Rank": 3, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Rank": 3, + "CommandName": "Get-PnPTeamsChannel", "Id": 730 }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Rank": 1, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 731 }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Rank": 2, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 732 }, { - "CommandName": "Get-PnPTeamsChannelMessage", - "Rank": 1, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessage", "Id": 733 }, { - "CommandName": "Get-PnPTeamsChannelMessage", - "Rank": 2, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessage", "Id": 734 }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Rank": 1, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 735 }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Rank": 2, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 736 }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 1, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelUser", "Id": 737 }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 2, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelUser", "Id": 738 }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 3, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", + "Rank": 3, + "CommandName": "Get-PnPTeamsChannelUser", "Id": 739 }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 4, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 4, + "CommandName": "Get-PnPTeamsChannelUser", "Id": 740 }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Rank": 1, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "Rank": 1, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 741 }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Rank": 2, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "Rank": 2, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 742 }, { - "CommandName": "Get-PnPTeamsTab", - "Rank": 1, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "Rank": 1, + "CommandName": "Get-PnPTeamsTab", "Id": 743 }, { - "CommandName": "Get-PnPTeamsTab", - "Rank": 2, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "Rank": 2, + "CommandName": "Get-PnPTeamsTab", "Id": 744 }, { - "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", + "Rank": 3, + "CommandName": "Get-PnPTeamsTab", "Id": 745 }, { - "CommandName": "Get-PnPTeamsTab", - "Rank": 4, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "Rank": 4, + "CommandName": "Get-PnPTeamsTab", "Id": 746 }, { - "CommandName": "Get-PnPTeamsTab", - "Rank": 5, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "Rank": 5, + "CommandName": "Get-PnPTeamsTab", "Id": 747 }, { - "CommandName": "Get-PnPTeamsTag", - "Rank": 1, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Rank": 1, + "CommandName": "Get-PnPTeamsTag", "Id": 748 }, { - "CommandName": "Get-PnPTeamsTag", - "Rank": 2, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Rank": 2, + "CommandName": "Get-PnPTeamsTag", "Id": 749 }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 1, "Command": "Get-PnPTeamsTeam", + "Rank": 1, + "CommandName": "Get-PnPTeamsTeam", "Id": 750 }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 2, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "Rank": 2, + "CommandName": "Get-PnPTeamsTeam", "Id": 751 }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 3, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "Rank": 3, + "CommandName": "Get-PnPTeamsTeam", "Id": 752 }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 4, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "Rank": 4, + "CommandName": "Get-PnPTeamsTeam", "Id": 753 }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 5, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "Rank": 5, + "CommandName": "Get-PnPTeamsTeam", "Id": 754 }, { - "CommandName": "Get-PnPTeamsUser", - "Rank": 1, "Command": "Get-PnPTeamsUser -Team MyTeam", + "Rank": 1, + "CommandName": "Get-PnPTeamsUser", "Id": 755 }, { - "CommandName": "Get-PnPTeamsUser", - "Rank": 2, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "Rank": 2, + "CommandName": "Get-PnPTeamsUser", "Id": 756 }, { - "CommandName": "Get-PnPTeamsUser", - "Rank": 3, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "Rank": 3, + "CommandName": "Get-PnPTeamsUser", "Id": 757 }, { - "CommandName": "Get-PnPTeamsUser", - "Rank": 4, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "Rank": 4, + "CommandName": "Get-PnPTeamsUser", "Id": 758 }, { - "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1, "Command": "Get-PnPTemporarilyDisableAppBar", + "Rank": 1, + "CommandName": "Get-PnPTemporarilyDisableAppBar", "Id": 759 }, { - "CommandName": "Get-PnPTenant", - "Rank": 1, "Command": "Get-PnPTenant", + "Rank": 1, + "CommandName": "Get-PnPTenant", "Id": 760 }, { - "CommandName": "Get-PnPTenantAppCatalogUrl", - "Rank": 1, "Command": "Get-PnPTenantAppCatalogUrl", + "Rank": 1, + "CommandName": "Get-PnPTenantAppCatalogUrl", "Id": 761 }, { - "CommandName": "Get-PnPTenantCdnEnabled", - "Rank": 1, "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "Rank": 1, + "CommandName": "Get-PnPTenantCdnEnabled", "Id": 762 }, { - "CommandName": "Get-PnPTenantCdnOrigin", - "Rank": 1, "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "Rank": 1, + "CommandName": "Get-PnPTenantCdnOrigin", "Id": 763 }, { - "CommandName": "Get-PnPTenantCdnPolicies", - "Rank": 1, "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "Rank": 1, + "CommandName": "Get-PnPTenantCdnPolicies", "Id": 764 }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 1, "Command": "Get-PnPTenantDeletedSite", + "Rank": 1, + "CommandName": "Get-PnPTenantDeletedSite", "Id": 765 }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 2, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 2, + "CommandName": "Get-PnPTenantDeletedSite", "Id": 766 }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 3, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "Rank": 3, + "CommandName": "Get-PnPTenantDeletedSite", "Id": 767 }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 4, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "Rank": 4, + "CommandName": "Get-PnPTenantDeletedSite", "Id": 768 }, { - "CommandName": "Get-PnPTenantId", - "Rank": 1, "Command": "Get-PnPTenantId", + "Rank": 1, + "CommandName": "Get-PnPTenantId", "Id": 769 }, { - "CommandName": "Get-PnPTenantId", - "Rank": 2, "Command": "Get-PnPTenantId contoso", + "Rank": 2, + "CommandName": "Get-PnPTenantId", "Id": 770 }, { - "CommandName": "Get-PnPTenantId", - "Rank": 3, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "Rank": 3, + "CommandName": "Get-PnPTenantId", "Id": 771 }, { - "CommandName": "Get-PnPTenantId", - "Rank": 4, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "Rank": 4, + "CommandName": "Get-PnPTenantId", "Id": 772 }, { - "CommandName": "Get-PnPTenantInfo", - "Rank": 1, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "Rank": 1, + "CommandName": "Get-PnPTenantInfo", "Id": 773 }, { - "CommandName": "Get-PnPTenantInfo", - "Rank": 2, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "Rank": 2, + "CommandName": "Get-PnPTenantInfo", "Id": 774 }, { - "CommandName": "Get-PnPTenantInfo", - "Rank": 3, "Command": "Get-PnPTenantInfo", + "Rank": 3, + "CommandName": "Get-PnPTenantInfo", "Id": 775 }, { - "CommandName": "Get-PnPTenantInfo", - "Rank": 4, "Command": "Get-PnPTenantInfo -CurrentTenant", + "Rank": 4, + "CommandName": "Get-PnPTenantInfo", "Id": 776 }, { - "CommandName": "Get-PnPTenantInstance", - "Rank": 1, "Command": "Get-PnPTenantInstance", + "Rank": 1, + "CommandName": "Get-PnPTenantInstance", "Id": 777 }, { - "CommandName": "Get-PnPTenantRecycleBinItem", - "Rank": 1, "Command": "Get-PnPTenantRecycleBinItem", + "Rank": 1, + "CommandName": "Get-PnPTenantRecycleBinItem", "Id": 778 }, { - "CommandName": "Get-PnPTenantSequence", - "Rank": 1, "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "Rank": 1, + "CommandName": "Get-PnPTenantSequence", "Id": 779 }, { - "CommandName": "Get-PnPTenantSequence", - "Rank": 2, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "Rank": 2, + "CommandName": "Get-PnPTenantSequence", "Id": 780 }, { - "CommandName": "Get-PnPTenantSequenceSite", - "Rank": 1, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "Rank": 1, + "CommandName": "Get-PnPTenantSequenceSite", "Id": 781 }, { - "CommandName": "Get-PnPTenantSequenceSite", - "Rank": 2, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "Rank": 2, + "CommandName": "Get-PnPTenantSequenceSite", "Id": 782 }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 1, "Command": "Get-PnPTenantSite", + "Rank": 1, + "CommandName": "Get-PnPTenantSite", "Id": 783 }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 2, "Command": "Get-PnPTenantSite -Detailed", + "Rank": 2, + "CommandName": "Get-PnPTenantSite", "Id": 784 }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 3, "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "Rank": 3, + "CommandName": "Get-PnPTenantSite", "Id": 785 }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 4, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "Rank": 4, + "CommandName": "Get-PnPTenantSite", "Id": 786 }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 5, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "Rank": 5, + "CommandName": "Get-PnPTenantSite", "Id": 787 }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 6, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "Rank": 6, + "CommandName": "Get-PnPTenantSite", "Id": 788 }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 7, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "Rank": 7, + "CommandName": "Get-PnPTenantSite", "Id": 789 }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 8, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "Rank": 8, + "CommandName": "Get-PnPTenantSite", "Id": 790 }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 9, "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "Rank": 9, + "CommandName": "Get-PnPTenantSite", "Id": 791 }, { - "CommandName": "Get-PnPTenantSyncClientRestriction", - "Rank": 1, "Command": "Get-PnPTenantSyncClientRestriction", + "Rank": 1, + "CommandName": "Get-PnPTenantSyncClientRestriction", "Id": 792 }, { - "CommandName": "Get-PnPTenantTemplate", - "Rank": 1, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "Rank": 1, + "CommandName": "Get-PnPTenantTemplate", "Id": 793 }, { - "CommandName": "Get-PnPTenantTemplate", - "Rank": 2, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "Rank": 2, + "CommandName": "Get-PnPTenantTemplate", "Id": 794 }, { - "CommandName": "Get-PnPTenantTemplate", - "Rank": 3, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "Rank": 3, + "CommandName": "Get-PnPTenantTemplate", "Id": 795 }, { - "CommandName": "Get-PnPTenantTheme", - "Rank": 1, "Command": "Get-PnPTenantTheme", + "Rank": 1, + "CommandName": "Get-PnPTenantTheme", "Id": 796 }, { - "CommandName": "Get-PnPTenantTheme", - "Rank": 2, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Rank": 2, + "CommandName": "Get-PnPTenantTheme", "Id": 797 }, { - "CommandName": "Get-PnPTenantTheme", - "Rank": 3, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "Rank": 3, + "CommandName": "Get-PnPTenantTheme", "Id": 798 }, { - "CommandName": "Get-PnPTerm", - "Rank": 1, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 1, + "CommandName": "Get-PnPTerm", "Id": 799 }, { - "CommandName": "Get-PnPTerm", - "Rank": 2, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, + "CommandName": "Get-PnPTerm", "Id": 800 }, { - "CommandName": "Get-PnPTerm", - "Rank": 3, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 3, + "CommandName": "Get-PnPTerm", "Id": 801 }, { - "CommandName": "Get-PnPTerm", - "Rank": 4, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "Rank": 4, + "CommandName": "Get-PnPTerm", "Id": 802 }, { - "CommandName": "Get-PnPTerm", - "Rank": 5, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "Rank": 5, + "CommandName": "Get-PnPTerm", "Id": 803 }, { - "CommandName": "Get-PnPTermGroup", - "Rank": 1, "Command": "Get-PnPTermGroup", + "Rank": 1, + "CommandName": "Get-PnPTermGroup", "Id": 804 }, { - "CommandName": "Get-PnPTermGroup", - "Rank": 2, "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "Rank": 2, + "CommandName": "Get-PnPTermGroup", "Id": 805 }, { - "CommandName": "Get-PnPTermGroup", - "Rank": 3, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "Rank": 3, + "CommandName": "Get-PnPTermGroup", "Id": 806 }, { - "CommandName": "Get-PnPTermLabel", - "Rank": 1, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "Rank": 1, + "CommandName": "Get-PnPTermLabel", "Id": 807 }, { - "CommandName": "Get-PnPTermLabel", - "Rank": 2, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "Rank": 2, + "CommandName": "Get-PnPTermLabel", "Id": 808 }, { - "CommandName": "Get-PnPTermLabel", - "Rank": 3, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 3, + "CommandName": "Get-PnPTermLabel", "Id": 809 }, { - "CommandName": "Get-PnPTermSet", - "Rank": 1, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "Rank": 1, + "CommandName": "Get-PnPTermSet", "Id": 810 }, { - "CommandName": "Get-PnPTermSet", - "Rank": 2, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, + "CommandName": "Get-PnPTermSet", "Id": 811 }, { - "CommandName": "Get-PnPTermSet", - "Rank": 3, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "Rank": 3, + "CommandName": "Get-PnPTermSet", "Id": 812 }, { - "CommandName": "Get-PnPTheme", - "Rank": 1, "Command": "Get-PnPTheme", + "Rank": 1, + "CommandName": "Get-PnPTheme", "Id": 813 }, { - "CommandName": "Get-PnPTheme", - "Rank": 2, "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "Rank": 2, + "CommandName": "Get-PnPTheme", "Id": 814 }, { - "CommandName": "Get-PnPTimeZoneId", - "Rank": 1, "Command": "Get-PnPTimeZoneId", + "Rank": 1, + "CommandName": "Get-PnPTimeZoneId", "Id": 815 }, { - "CommandName": "Get-PnPTimeZoneId", - "Rank": 2, "Command": "Get-PnPTimeZoneId -Match Stockholm", + "Rank": 2, + "CommandName": "Get-PnPTimeZoneId", "Id": 816 }, { - "CommandName": "Get-PnPUnfurlLink", - "Rank": 1, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "Rank": 1, + "CommandName": "Get-PnPUnfurlLink", "Id": 817 }, { - "CommandName": "Get-PnPUnifiedAuditLog", - "Rank": 1, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "Rank": 1, + "CommandName": "Get-PnPUnifiedAuditLog", "Id": 818 }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 1, "Command": "Get-PnPUPABulkImportStatus", + "Rank": 1, + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 819 }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 2, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "Rank": 2, + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 820 }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 3, "Command": "Get-PnPUPABulkImportStatus -JobId ", + "Rank": 3, + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 821 }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 4, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "Rank": 4, + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 822 }, { - "CommandName": "Get-PnPUser", - "Rank": 1, "Command": "Get-PnPUser", + "Rank": 1, + "CommandName": "Get-PnPUser", "Id": 823 }, { - "CommandName": "Get-PnPUser", - "Rank": 2, "Command": "Get-PnPUser -Identity 23", + "Rank": 2, + "CommandName": "Get-PnPUser", "Id": 824 }, { - "CommandName": "Get-PnPUser", - "Rank": 3, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "Rank": 3, + "CommandName": "Get-PnPUser", "Id": 825 }, { - "CommandName": "Get-PnPUser", - "Rank": 4, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "Rank": 4, + "CommandName": "Get-PnPUser", "Id": 826 }, { - "CommandName": "Get-PnPUser", - "Rank": 5, "Command": "Get-PnPUser -WithRightsAssigned", + "Rank": 5, + "CommandName": "Get-PnPUser", "Id": 827 }, { - "CommandName": "Get-PnPUser", - "Rank": 6, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "Rank": 6, + "CommandName": "Get-PnPUser", "Id": 828 }, { - "CommandName": "Get-PnPUser", - "Rank": 7, "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "Rank": 7, + "CommandName": "Get-PnPUser", "Id": 829 }, { - "CommandName": "Get-PnPUserOneDriveQuota", - "Rank": 1, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "Rank": 1, + "CommandName": "Get-PnPUserOneDriveQuota", "Id": 830 }, { - "CommandName": "Get-PnPUserProfileProperty", - "Rank": 1, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "Rank": 1, + "CommandName": "Get-PnPUserProfileProperty", "Id": 831 }, { - "CommandName": "Get-PnPUserProfileProperty", - "Rank": 2, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "Rank": 2, + "CommandName": "Get-PnPUserProfileProperty", "Id": 832 }, { - "CommandName": "Get-PnPUserProfileProperty", - "Rank": 3, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "Rank": 3, + "CommandName": "Get-PnPUserProfileProperty", "Id": 833 }, { - "CommandName": "Get-PnPView", - "Rank": 1, "Command": "Get-PnPView -List \"Demo List\"", + "Rank": 1, + "CommandName": "Get-PnPView", "Id": 834 }, { - "CommandName": "Get-PnPView", - "Rank": 2, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "Rank": 2, + "CommandName": "Get-PnPView", "Id": 835 }, { - "CommandName": "Get-PnPView", - "Rank": 3, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "Rank": 3, + "CommandName": "Get-PnPView", "Id": 836 }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1, "Command": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 1, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 837 }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 2, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Rank": 2, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 838 }, { - "CommandName": "Get-PnPWeb", - "Rank": 1, "Command": "Get-PnPWeb", + "Rank": 1, + "CommandName": "Get-PnPWeb", "Id": 839 }, { - "CommandName": "Get-PnPWebHeader", - "Rank": 1, "Command": "Get-PnPWebHeader", + "Rank": 1, + "CommandName": "Get-PnPWebHeader", "Id": 840 }, { - "CommandName": "Get-PnPWebhookSubscriptions", - "Rank": 1, "Command": "Get-PnPWebhookSubscriptions -List MyList", + "Rank": 1, + "CommandName": "Get-PnPWebhookSubscriptions", "Id": 841 }, { - "CommandName": "Get-PnPWebPart", - "Rank": 1, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "Rank": 1, + "CommandName": "Get-PnPWebPart", "Id": 842 }, { - "CommandName": "Get-PnPWebPart", - "Rank": 2, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 2, + "CommandName": "Get-PnPWebPart", "Id": 843 }, { - "CommandName": "Get-PnPWebPartProperty", - "Rank": 1, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "Rank": 1, + "CommandName": "Get-PnPWebPartProperty", "Id": 844 }, { - "CommandName": "Get-PnPWebPartProperty", - "Rank": 2, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "Rank": 2, + "CommandName": "Get-PnPWebPartProperty", "Id": 845 }, { - "CommandName": "Get-PnPWebPartXml", - "Rank": 1, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1, + "CommandName": "Get-PnPWebPartXml", "Id": 846 }, { - "CommandName": "Get-PnPWebTemplates", - "Rank": 1, "Command": "Get-PnPWebTemplates", + "Rank": 1, + "CommandName": "Get-PnPWebTemplates", "Id": 847 }, { - "CommandName": "Get-PnPWebTemplates", - "Rank": 2, "Command": "Get-PnPWebTemplates -LCID 1033", + "Rank": 2, + "CommandName": "Get-PnPWebTemplates", "Id": 848 }, { - "CommandName": "Get-PnPWebTemplates", - "Rank": 3, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "Rank": 3, + "CommandName": "Get-PnPWebTemplates", "Id": 849 }, { - "CommandName": "Get-PnPWikiPageContent", - "Rank": 1, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "Rank": 1, + "CommandName": "Get-PnPWikiPageContent", "Id": 850 }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Rank": 1, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", + "Rank": 1, + "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 851 }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Rank": 2, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", + "Rank": 2, + "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 852 }, { - "CommandName": "Grant-PnPHubSiteRights", - "Rank": 1, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, + "CommandName": "Grant-PnPHubSiteRights", "Id": 853 }, { - "CommandName": "Grant-PnPSiteDesignRights", - "Rank": 1, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, + "CommandName": "Grant-PnPSiteDesignRights", "Id": 854 }, { - "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Rank": 1, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Rank": 1, + "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Id": 855 }, { - "CommandName": "Import-PnPTaxonomy", - "Rank": 1, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "Rank": 1, + "CommandName": "Import-PnPTaxonomy", "Id": 856 }, { - "CommandName": "Import-PnPTaxonomy", - "Rank": 2, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "Rank": 2, + "CommandName": "Import-PnPTaxonomy", "Id": 857 }, { - "CommandName": "Import-PnPTaxonomy", - "Rank": 3, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "Rank": 3, + "CommandName": "Import-PnPTaxonomy", "Id": 858 }, { - "CommandName": "Import-PnPTermGroupFromXml", - "Rank": 1, "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "Rank": 1, + "CommandName": "Import-PnPTermGroupFromXml", "Id": 859 }, { - "CommandName": "Import-PnPTermGroupFromXml", - "Rank": 2, "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "Rank": 2, + "CommandName": "Import-PnPTermGroupFromXml", "Id": 860 }, { - "CommandName": "Import-PnPTermSet", - "Rank": 1, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "Rank": 1, + "CommandName": "Import-PnPTermSet", "Id": 861 }, { - "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}'", + "Rank": 2, + "CommandName": "Import-PnPTermSet", "Id": 862 }, { - "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'", + "Rank": 3, + "CommandName": "Import-PnPTermSet", "Id": 863 }, { - "CommandName": "Install-PnPApp", - "Rank": 1, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, + "CommandName": "Install-PnPApp", "Id": 864 }, { - "CommandName": "Install-PnPApp", - "Rank": 2, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, + "CommandName": "Install-PnPApp", "Id": 865 }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 1, "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", + "Rank": 1, + "CommandName": "Invoke-PnPGraphMethod", "Id": 866 }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 2, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "Rank": 2, + "CommandName": "Invoke-PnPGraphMethod", "Id": 867 }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 3, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "Rank": 3, + "CommandName": "Invoke-PnPGraphMethod", "Id": 868 }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 4, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "Rank": 4, + "CommandName": "Invoke-PnPGraphMethod", "Id": 869 }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 5, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "Rank": 5, + "CommandName": "Invoke-PnPGraphMethod", "Id": 870 }, { - "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", + "Rank": 6, + "CommandName": "Invoke-PnPGraphMethod", "Id": 871 }, { - "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\"", + "Rank": 7, + "CommandName": "Invoke-PnPGraphMethod", "Id": 872 }, { - "CommandName": "Invoke-PnPListDesign", - "Rank": 1, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, + "CommandName": "Invoke-PnPListDesign", "Id": 873 }, { - "CommandName": "Invoke-PnPListDesign", - "Rank": 2, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Rank": 2, + "CommandName": "Invoke-PnPListDesign", "Id": 874 }, { - "CommandName": "Invoke-PnPQuery", - "Rank": 1, "Command": "Invoke-PnPQuery -RetryCount 5", + "Rank": 1, + "CommandName": "Invoke-PnPQuery", "Id": 875 }, { - "CommandName": "Invoke-PnPSiteDesign", - "Rank": 1, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, + "CommandName": "Invoke-PnPSiteDesign", "Id": 876 }, { - "CommandName": "Invoke-PnPSiteDesign", - "Rank": 2, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Rank": 2, + "CommandName": "Invoke-PnPSiteDesign", "Id": 877 }, { - "CommandName": "Invoke-PnPSiteScript", - "Rank": 1, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "Rank": 1, + "CommandName": "Invoke-PnPSiteScript", "Id": 878 }, { - "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", + "Rank": 1, + "CommandName": "Invoke-PnPSiteSwap", "Id": 879 }, { - "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", + "Rank": 2, + "CommandName": "Invoke-PnPSiteSwap", "Id": 880 }, { - "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", + "Rank": 3, + "CommandName": "Invoke-PnPSiteSwap", "Id": 881 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 1, "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "Rank": 1, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 882 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 2, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "Rank": 2, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 883 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 3, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Rank": 3, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 884 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 4, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "Rank": 4, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 885 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 5, "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "Rank": 5, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 886 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 6, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "Rank": 6, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 887 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 7, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "Rank": 7, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 888 }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 8, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "Rank": 8, + "CommandName": "Invoke-PnPSiteTemplate", "Id": 889 }, { - "CommandName": "Invoke-PnPSPRestMethod", - "Rank": 1, "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "Rank": 1, + "CommandName": "Invoke-PnPSPRestMethod", "Id": 890 }, { - "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 1, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "Rank": 1, + "CommandName": "Invoke-PnPTenantTemplate", "Id": 891 }, { - "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 2, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "Rank": 2, + "CommandName": "Invoke-PnPTenantTemplate", "Id": 892 }, { - "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 3, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Rank": 3, + "CommandName": "Invoke-PnPTenantTemplate", "Id": 893 }, { - "CommandName": "Invoke-PnPWebAction", - "Rank": 1, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "Rank": 1, + "CommandName": "Invoke-PnPWebAction", "Id": 894 }, { - "CommandName": "Invoke-PnPWebAction", - "Rank": 2, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "Rank": 2, + "CommandName": "Invoke-PnPWebAction", "Id": 895 }, { - "CommandName": "Measure-PnPList", - "Rank": 1, "Command": "Measure-PnPList \"Documents\"", + "Rank": 1, + "CommandName": "Measure-PnPList", "Id": 896 }, { - "CommandName": "Measure-PnPList", - "Rank": 2, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "Rank": 2, + "CommandName": "Measure-PnPList", "Id": 897 }, { - "CommandName": "Measure-PnPWeb", - "Rank": 1, "Command": "Measure-PnPWeb", + "Rank": 1, + "CommandName": "Measure-PnPWeb", "Id": 898 }, { - "CommandName": "Measure-PnPWeb", - "Rank": 2, "Command": "Measure-PnPWeb $web -Recursive", + "Rank": 2, + "CommandName": "Measure-PnPWeb", "Id": 899 }, { - "CommandName": "Move-PnPFile", - "Rank": 1, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "Rank": 1, + "CommandName": "Move-PnPFile", "Id": 900 }, { - "CommandName": "Move-PnPFile", - "Rank": 2, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "Rank": 2, + "CommandName": "Move-PnPFile", "Id": 901 }, { - "CommandName": "Move-PnPFile", - "Rank": 3, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Rank": 3, + "CommandName": "Move-PnPFile", "Id": 902 }, { - "CommandName": "Move-PnPFile", - "Rank": 4, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Rank": 4, + "CommandName": "Move-PnPFile", "Id": 903 }, { - "CommandName": "Move-PnPFolder", - "Rank": 1, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "Rank": 1, + "CommandName": "Move-PnPFolder", "Id": 904 }, { - "CommandName": "Move-PnPFolder", - "Rank": 2, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "Rank": 2, + "CommandName": "Move-PnPFolder", "Id": 905 }, { - "CommandName": "Move-PnPListItemToRecycleBin", - "Rank": 1, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "Rank": 1, + "CommandName": "Move-PnPListItemToRecycleBin", "Id": 906 }, { - "CommandName": "Move-PnPPageComponent", - "Rank": 1, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "Rank": 1, + "CommandName": "Move-PnPPageComponent", "Id": 907 }, { - "CommandName": "Move-PnPPageComponent", - "Rank": 2, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "Rank": 2, + "CommandName": "Move-PnPPageComponent", "Id": 908 }, { - "CommandName": "Move-PnPPageComponent", - "Rank": 3, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "Rank": 3, + "CommandName": "Move-PnPPageComponent", "Id": 909 }, { - "CommandName": "Move-PnPPageComponent", - "Rank": 4, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "Rank": 4, + "CommandName": "Move-PnPPageComponent", "Id": 910 }, { - "CommandName": "Move-PnpRecycleBinItem", - "Rank": 1, "Command": "Move-PnPRecycleBinItem", + "Rank": 1, + "CommandName": "Move-PnpRecycleBinItem", "Id": 911 }, { - "CommandName": "Move-PnpRecycleBinItem", - "Rank": 2, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "Rank": 2, + "CommandName": "Move-PnpRecycleBinItem", "Id": 912 }, { - "CommandName": "Move-PnpRecycleBinItem", - "Rank": 3, "Command": "Move-PnPRecycleBinItem -Force", + "Rank": 3, + "CommandName": "Move-PnpRecycleBinItem", "Id": 913 }, { - "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", + "Rank": 1, + "CommandName": "Move-PnPTerm", "Id": 914 }, { - "CommandName": "Move-PnPTerm", - "Rank": 2, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "Rank": 2, + "CommandName": "Move-PnPTerm", "Id": 915 }, { - "CommandName": "Move-PnPTerm", - "Rank": 3, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "Rank": 3, + "CommandName": "Move-PnPTerm", "Id": 916 }, { - "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", + "Rank": 1, + "CommandName": "Move-PnPTermSet", "Id": 917 }, { - "CommandName": "Move-PnPTermSet", - "Rank": 2, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "Rank": 2, + "CommandName": "Move-PnPTermSet", "Id": 918 }, { - "CommandName": "New-PnPAzureADGroup", - "Rank": 1, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "Rank": 1, + "CommandName": "New-PnPAzureADGroup", "Id": 919 }, { - "CommandName": "New-PnPAzureADGroup", - "Rank": 2, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "Rank": 2, + "CommandName": "New-PnPAzureADGroup", "Id": 920 }, { - "CommandName": "New-PnPAzureADGroup", - "Rank": 3, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "Rank": 3, + "CommandName": "New-PnPAzureADGroup", "Id": 921 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 1, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "Rank": 1, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 922 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 2, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "Rank": 2, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 923 }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 3, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "Rank": 3, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 924 }, { - "CommandName": "New-PnPAzureCertificate", - "Rank": 1, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "Rank": 1, + "CommandName": "New-PnPAzureCertificate", "Id": 925 }, { - "CommandName": "New-PnPAzureCertificate", - "Rank": 2, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "Rank": 2, + "CommandName": "New-PnPAzureCertificate", "Id": 926 }, { - "CommandName": "New-PnPAzureCertificate", - "Rank": 3, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "Rank": 3, + "CommandName": "New-PnPAzureCertificate", "Id": 927 }, { - "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()", + "Rank": 1, + "CommandName": "New-PnPGraphSubscription", "Id": 928 }, { - "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()", + "Rank": 2, + "CommandName": "New-PnPGraphSubscription", "Id": 929 }, { - "CommandName": "New-PnPGroup", - "Rank": 1, "Command": "New-PnPGroup -Title \"My Site Users\"", + "Rank": 1, + "CommandName": "New-PnPGroup", "Id": 930 }, { - "CommandName": "New-PnPList", - "Rank": 1, "Command": "New-PnPList -Title Announcements -Template Announcements", + "Rank": 1, + "CommandName": "New-PnPList", "Id": 931 }, { - "CommandName": "New-PnPList", - "Rank": 2, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "Rank": 2, + "CommandName": "New-PnPList", "Id": 932 }, { - "CommandName": "New-PnPList", - "Rank": 3, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "Rank": 3, + "CommandName": "New-PnPList", "Id": 933 }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 1, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "Rank": 1, + "CommandName": "New-PnPMicrosoft365Group", "Id": 934 }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 2, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "Rank": 2, + "CommandName": "New-PnPMicrosoft365Group", "Id": 935 }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 3, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "Rank": 3, + "CommandName": "New-PnPMicrosoft365Group", "Id": 936 }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 4, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "Rank": 4, + "CommandName": "New-PnPMicrosoft365Group", "Id": 937 }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 5, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Rank": 5, + "CommandName": "New-PnPMicrosoft365Group", "Id": 938 }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 6, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Rank": 6, + "CommandName": "New-PnPMicrosoft365Group", "Id": 939 }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 7, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", + "Rank": 7, + "CommandName": "New-PnPMicrosoft365Group", "Id": 940 }, { - "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\"}", + "Rank": 1, + "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 941 }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", - "Rank": 2, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", + "Rank": 2, + "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 942 }, { - "CommandName": "New-PnPPersonalSite", - "Rank": 1, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "Rank": 1, + "CommandName": "New-PnPPersonalSite", "Id": 943 }, { - "CommandName": "New-PnPPlannerPlan", - "Rank": 1, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "Rank": 1, + "CommandName": "New-PnPPlannerPlan", "Id": 944 }, { - "CommandName": "New-PnPSdnProvider", - "Rank": 1, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "Rank": 1, + "CommandName": "New-PnPSdnProvider", "Id": 945 }, { - "CommandName": "New-PnPSite", - "Rank": 1, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Rank": 1, + "CommandName": "New-PnPSite", "Id": 946 }, { - "CommandName": "New-PnPSite", - "Rank": 2, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "Rank": 2, + "CommandName": "New-PnPSite", "Id": 947 }, { - "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", + "Rank": 3, + "CommandName": "New-PnPSite", "Id": 948 }, { - "CommandName": "New-PnPSite", - "Rank": 4, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Rank": 4, + "CommandName": "New-PnPSite", "Id": 949 }, { - "CommandName": "New-PnPSite", - "Rank": 5, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Rank": 5, + "CommandName": "New-PnPSite", "Id": 950 }, { - "CommandName": "New-PnPSite", - "Rank": 6, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Rank": 6, + "CommandName": "New-PnPSite", "Id": 951 }, { - "CommandName": "New-PnPSite", - "Rank": 7, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "Rank": 7, + "CommandName": "New-PnPSite", "Id": 952 }, { - "CommandName": "New-PnPSite", - "Rank": 8, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "Rank": 8, + "CommandName": "New-PnPSite", "Id": 953 }, { - "CommandName": "New-PnPSite", - "Rank": 9, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "Rank": 9, + "CommandName": "New-PnPSite", "Id": 954 }, { - "CommandName": "New-PnPSite", - "Rank": 10, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "Rank": 10, + "CommandName": "New-PnPSite", "Id": 955 }, { - "CommandName": "New-PnPSite", - "Rank": 11, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Rank": 11, + "CommandName": "New-PnPSite", "Id": 956 }, { - "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", + "Rank": 12, + "CommandName": "New-PnPSite", "Id": 957 }, { - "CommandName": "New-PnPSite", - "Rank": 13, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Rank": 13, + "CommandName": "New-PnPSite", "Id": 958 }, { - "CommandName": "New-PnPSite", - "Rank": 14, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Rank": 14, + "CommandName": "New-PnPSite", "Id": 959 }, { - "CommandName": "New-PnPSite", - "Rank": 15, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Rank": 15, + "CommandName": "New-PnPSite", "Id": 960 }, { - "CommandName": "New-PnPSite", - "Rank": 16, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "Rank": 16, + "CommandName": "New-PnPSite", "Id": 961 }, { - "CommandName": "New-PnPSiteCollectionTermStore", - "Rank": 1, "Command": "New-PnPSiteCollectionTermStore", + "Rank": 1, + "CommandName": "New-PnPSiteCollectionTermStore", "Id": 962 }, { - "CommandName": "New-PnPSiteGroup", - "Rank": 1, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "Rank": 1, + "CommandName": "New-PnPSiteGroup", "Id": 963 }, { - "CommandName": "New-PnPSiteGroup", - "Rank": 2, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "Rank": 2, + "CommandName": "New-PnPSiteGroup", "Id": 964 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 1, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "Rank": 1, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 965 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 2, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "Rank": 2, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 966 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 3, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "Rank": 3, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 967 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 4, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "Rank": 4, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 968 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 5, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", + "Rank": 5, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 969 }, { - "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\"}", + "Rank": 6, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 970 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 7, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "Rank": 7, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 971 }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 8, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "Rank": 8, + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 972 }, { - "CommandName": "New-PnPTeamsApp", - "Rank": 1, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "Rank": 1, + "CommandName": "New-PnPTeamsApp", "Id": 973 }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 1, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "Rank": 1, + "CommandName": "New-PnPTeamsTeam", "Id": 974 }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 2, "Command": "New-PnPTeamsTeam -GroupId $groupId", + "Rank": 2, + "CommandName": "New-PnPTeamsTeam", "Id": 975 }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 3, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "Rank": 3, + "CommandName": "New-PnPTeamsTeam", "Id": 976 }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 4, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Rank": 4, + "CommandName": "New-PnPTeamsTeam", "Id": 977 }, { - "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\"", + "Rank": 5, + "CommandName": "New-PnPTeamsTeam", "Id": 978 }, { - "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\"", + "Rank": 6, + "CommandName": "New-PnPTeamsTeam", "Id": 979 }, { - "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", + "Rank": 1, + "CommandName": "New-PnPTenantSite", "Id": 980 }, { - "CommandName": "New-PnPTenantSite", - "Rank": 2, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "Rank": 2, + "CommandName": "New-PnPTenantSite", "Id": 981 }, { - "CommandName": "New-PnPTerm", - "Rank": 1, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "Rank": 1, + "CommandName": "New-PnPTerm", "Id": 982 }, { - "CommandName": "New-PnPTerm", - "Rank": 2, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 2, + "CommandName": "New-PnPTerm", "Id": 983 }, { - "CommandName": "New-PnPTermGroup", - "Rank": 1, "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "Rank": 1, + "CommandName": "New-PnPTermGroup", "Id": 984 }, { - "CommandName": "New-PnPTermLabel", - "Rank": 1, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "Rank": 1, + "CommandName": "New-PnPTermLabel", "Id": 985 }, { - "CommandName": "New-PnPTermSet", - "Rank": 1, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "Rank": 1, + "CommandName": "New-PnPTermSet", "Id": 986 }, { - "CommandName": "New-PnPUPABulkImportJob", - "Rank": 1, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "Rank": 1, + "CommandName": "New-PnPUPABulkImportJob", "Id": 987 }, { - "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", + "Rank": 2, + "CommandName": "New-PnPUPABulkImportJob", "Id": 988 }, { - "CommandName": "New-PnPUser", - "Rank": 1, "Command": "New-PnPUser -LoginName user@company.com", + "Rank": 1, + "CommandName": "New-PnPUser", "Id": 989 }, { - "CommandName": "New-PnPWeb", - "Rank": 1, "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", + "Rank": 1, + "CommandName": "New-PnPWeb", "Id": 990 }, { - "CommandName": "Publish-PnPApp", - "Rank": 1, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 1, + "CommandName": "Publish-PnPApp", "Id": 991 }, { - "CommandName": "Publish-PnPApp", - "Rank": 2, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "Rank": 2, + "CommandName": "Publish-PnPApp", "Id": 992 }, { - "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", + "Rank": 1, + "CommandName": "Publish-PnPCompanyApp", "Id": 993 }, { - "CommandName": "Publish-PnPContentType", - "Rank": 1, "Command": "Publish-PnPContentType -ContentType 0x0101", + "Rank": 1, + "CommandName": "Publish-PnPContentType", "Id": 994 }, { - "CommandName": "Publish-PnPSyntexModel", - "Rank": 1, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Rank": 1, + "CommandName": "Publish-PnPSyntexModel", "Id": 995 }, { - "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", + "Rank": 2, + "CommandName": "Publish-PnPSyntexModel", "Id": 996 }, { - "CommandName": "Read-PnPSiteTemplate", - "Rank": 1, "Command": "Read-PnPSiteTemplate -Path template.pnp", + "Rank": 1, + "CommandName": "Read-PnPSiteTemplate", "Id": 997 }, { - "CommandName": "Read-PnPSiteTemplate", - "Rank": 2, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "Rank": 2, + "CommandName": "Read-PnPSiteTemplate", "Id": 998 }, { - "CommandName": "Read-PnPSiteTemplate", - "Rank": 3, "Command": "Read-PnPSiteTemplate -Xml $xml", + "Rank": 3, + "CommandName": "Read-PnPSiteTemplate", "Id": 999 }, { - "CommandName": "Read-PnPTenantTemplate", - "Rank": 1, "Command": "Read-PnPTenantTemplate -Path template.pnp", + "Rank": 1, + "CommandName": "Read-PnPTenantTemplate", "Id": 1000 }, { - "CommandName": "Register-PnPAppCatalogSite", - "Rank": 1, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "Rank": 1, + "CommandName": "Register-PnPAppCatalogSite", "Id": 1001 }, { - "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\")", + "Rank": 1, + "CommandName": "Register-PnPAzureADApp", "Id": 1002 }, { - "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\")", + "Rank": 2, + "CommandName": "Register-PnPAzureADApp", "Id": 1003 }, { - "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\")", + "Rank": 3, + "CommandName": "Register-PnPAzureADApp", "Id": 1004 }, { - "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\")", + "Rank": 4, + "CommandName": "Register-PnPAzureADApp", "Id": 1005 }, { - "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)", + "Rank": 5, + "CommandName": "Register-PnPAzureADApp", "Id": 1006 }, { - "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)", + "Rank": 6, + "CommandName": "Register-PnPAzureADApp", "Id": 1007 }, { - "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", + "Rank": 7, + "CommandName": "Register-PnPAzureADApp", "Id": 1008 }, { - "CommandName": "Register-PnPHubSite", - "Rank": 1, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Rank": 1, + "CommandName": "Register-PnPHubSite", "Id": 1009 }, { - "CommandName": "Register-PnPHubSite", - "Rank": 2, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "Rank": 2, + "CommandName": "Register-PnPHubSite", "Id": 1010 }, { - "CommandName": "Register-PnPManagementShellAccess", - "Rank": 1, "Command": "Register-PnPManagementShellAccess", + "Rank": 1, + "CommandName": "Register-PnPManagementShellAccess", "Id": 1011 }, { - "CommandName": "Register-PnPManagementShellAccess", - "Rank": 2, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "Rank": 2, + "CommandName": "Register-PnPManagementShellAccess", "Id": 1012 }, { - "CommandName": "Register-PnPManagementShellAccess", - "Rank": 3, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "Rank": 3, + "CommandName": "Register-PnPManagementShellAccess", "Id": 1013 }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Rank": 1, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "Rank": 1, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1014 }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Rank": 2, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "Rank": 2, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1015 }, { - "CommandName": "Remove-PnPAlert", - "Rank": 1, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "Rank": 1, + "CommandName": "Remove-PnPAlert", "Id": 1016 }, { - "CommandName": "Remove-PnPAlert", - "Rank": 2, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Rank": 2, + "CommandName": "Remove-PnPAlert", "Id": 1017 }, { - "CommandName": "Remove-PnPApp", - "Rank": 1, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, + "CommandName": "Remove-PnPApp", "Id": 1018 }, { - "CommandName": "Remove-PnPApp", - "Rank": 2, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, + "CommandName": "Remove-PnPApp", "Id": 1019 }, { - "CommandName": "Remove-PnPApplicationCustomizer", - "Rank": 1, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1, + "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1020 }, { - "CommandName": "Remove-PnPApplicationCustomizer", - "Rank": 2, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Rank": 2, + "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1021 }, { - "CommandName": "Remove-PnPAvailableSiteClassification", - "Rank": 1, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "Rank": 1, + "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1022 }, { - "CommandName": "Remove-PnPAvailableSiteClassification", - "Rank": 2, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Rank": 2, + "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1023 }, { - "CommandName": "Remove-PnPAzureADApp", - "Rank": 1, "Command": "Remove-PnPAzureADApp -Identity MyApp", + "Rank": 1, + "CommandName": "Remove-PnPAzureADApp", "Id": 1024 }, { - "CommandName": "Remove-PnPAzureADApp", - "Rank": 2, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 2, + "CommandName": "Remove-PnPAzureADApp", "Id": 1025 }, { - "CommandName": "Remove-PnPAzureADGroup", - "Rank": 1, "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "Rank": 1, + "CommandName": "Remove-PnPAzureADGroup", "Id": 1026 }, { - "CommandName": "Remove-PnPAzureADGroup", - "Rank": 2, "Command": "Remove-PnPAzureADGroup -Identity $group", + "Rank": 2, + "CommandName": "Remove-PnPAzureADGroup", "Id": 1027 }, { - "CommandName": "Remove-PnPAzureADGroupMember", - "Rank": 1, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupMember", "Id": 1028 }, { - "CommandName": "Remove-PnPAzureADGroupOwner", - "Rank": 1, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupOwner", "Id": 1029 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 1, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "Rank": 1, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1030 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 2, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "Rank": 2, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1031 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 3, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 3, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1032 }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 4, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 4, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1033 }, { - "CommandName": "Remove-PnPContentType", - "Rank": 1, "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "Rank": 1, + "CommandName": "Remove-PnPContentType", "Id": 1034 }, { - "CommandName": "Remove-PnPContentType", - "Rank": 2, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "Rank": 2, + "CommandName": "Remove-PnPContentType", "Id": 1035 }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Rank": 1, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1036 }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Rank": 2, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Rank": 2, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1037 }, { - "CommandName": "Remove-PnPContentTypeFromList", - "Rank": 1, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromList", "Id": 1038 }, { - "CommandName": "Remove-PnPCustomAction", - "Rank": 1, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1, + "CommandName": "Remove-PnPCustomAction", "Id": 1039 }, { - "CommandName": "Remove-PnPCustomAction", - "Rank": 2, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Rank": 2, + "CommandName": "Remove-PnPCustomAction", "Id": 1040 }, { - "CommandName": "Remove-PnPCustomAction", - "Rank": 3, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "Rank": 3, + "CommandName": "Remove-PnPCustomAction", "Id": 1041 }, { - "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Rank": 1, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 1, + "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Id": 1042 }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 1, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 1, + "CommandName": "Remove-PnPEventReceiver", "Id": 1043 }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 2, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 2, + "CommandName": "Remove-PnPEventReceiver", "Id": 1044 }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 3, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "Rank": 3, + "CommandName": "Remove-PnPEventReceiver", "Id": 1045 }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 4, "Command": "Remove-PnPEventReceiver -List ProjectList", + "Rank": 4, + "CommandName": "Remove-PnPEventReceiver", "Id": 1046 }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 5, "Command": "Remove-PnPEventReceiver", + "Rank": 5, + "CommandName": "Remove-PnPEventReceiver", "Id": 1047 }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 6, "Command": "Remove-PnPEventReceiver -Scope Site", + "Rank": 6, + "CommandName": "Remove-PnPEventReceiver", "Id": 1048 }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 7, "Command": "Remove-PnPEventReceiver -Scope Web", + "Rank": 7, + "CommandName": "Remove-PnPEventReceiver", "Id": 1049 }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 8, "Command": "Remove-PnPEventReceiver -Scope All", + "Rank": 8, + "CommandName": "Remove-PnPEventReceiver", "Id": 1050 }, { - "CommandName": "Remove-PnPField", - "Rank": 1, "Command": "Remove-PnPField -Identity \"Speakers\"", + "Rank": 1, + "CommandName": "Remove-PnPField", "Id": 1051 }, { - "CommandName": "Remove-PnPField", - "Rank": 2, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Rank": 2, + "CommandName": "Remove-PnPField", "Id": 1052 }, { - "CommandName": "Remove-PnPFieldFromContentType", - "Rank": 1, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Rank": 1, + "CommandName": "Remove-PnPFieldFromContentType", "Id": 1053 }, { - "CommandName": "Remove-PnPFieldFromContentType", - "Rank": 2, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "Rank": 2, + "CommandName": "Remove-PnPFieldFromContentType", "Id": 1054 }, { - "CommandName": "Remove-PnPFile", - "Rank": 1, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "Rank": 1, + "CommandName": "Remove-PnPFile", "Id": 1055 }, { - "CommandName": "Remove-PnPFile", - "Rank": 2, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "Rank": 2, + "CommandName": "Remove-PnPFile", "Id": 1056 }, { - "CommandName": "Remove-PnPFile", - "Rank": 3, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "Rank": 3, + "CommandName": "Remove-PnPFile", "Id": 1057 }, { - "CommandName": "Remove-PnPFileFromSiteTemplate", - "Rank": 1, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "Rank": 1, + "CommandName": "Remove-PnPFileFromSiteTemplate", "Id": 1058 }, { - "CommandName": "Remove-PnPFileSharingLink", - "Rank": 1, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, + "CommandName": "Remove-PnPFileSharingLink", "Id": 1059 }, { - "CommandName": "Remove-PnPFileSharingLink", - "Rank": 2, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "Rank": 2, + "CommandName": "Remove-PnPFileSharingLink", "Id": 1060 }, { - "CommandName": "Remove-PnPFileVersion", - "Rank": 1, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Rank": 1, + "CommandName": "Remove-PnPFileVersion", "Id": 1061 }, { - "CommandName": "Remove-PnPFileVersion", - "Rank": 2, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Rank": 2, + "CommandName": "Remove-PnPFileVersion", "Id": 1062 }, { - "CommandName": "Remove-PnPFileVersion", - "Rank": 3, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "Rank": 3, + "CommandName": "Remove-PnPFileVersion", "Id": 1063 }, { - "CommandName": "Remove-PnPFlowOwner", - "Rank": 1, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", + "Rank": 1, + "CommandName": "Remove-PnPFlowOwner", "Id": 1064 }, { - "CommandName": "Remove-PnPFlowOwner", - "Rank": 2, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", + "Rank": 2, + "CommandName": "Remove-PnPFlowOwner", "Id": 1065 }, { - "CommandName": "Remove-PnPFlowOwner", - "Rank": 3, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", + "Rank": 3, + "CommandName": "Remove-PnPFlowOwner", "Id": 1066 }, { - "CommandName": "Remove-PnPFlowOwner", - "Rank": 4, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", + "Rank": 4, + "CommandName": "Remove-PnPFlowOwner", "Id": 1067 }, { - "CommandName": "Remove-PnPFolder", - "Rank": 1, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Rank": 1, + "CommandName": "Remove-PnPFolder", "Id": 1068 }, { - "CommandName": "Remove-PnPFolder", - "Rank": 2, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "Rank": 2, + "CommandName": "Remove-PnPFolder", "Id": 1069 }, { - "CommandName": "Remove-PnPFolderSharingLink", - "Rank": 1, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, + "CommandName": "Remove-PnPFolderSharingLink", "Id": 1070 }, { - "CommandName": "Remove-PnPFolderSharingLink", - "Rank": 2, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "Rank": 2, + "CommandName": "Remove-PnPFolderSharingLink", "Id": 1071 }, { - "CommandName": "Remove-PnPGraphSubscription", - "Rank": 1, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "Rank": 1, + "CommandName": "Remove-PnPGraphSubscription", "Id": 1072 }, { - "CommandName": "Remove-PnPGroup", - "Rank": 1, "Command": "Remove-PnPGroup -Identity \"My Users\"", + "Rank": 1, + "CommandName": "Remove-PnPGroup", "Id": 1073 }, { - "CommandName": "Remove-PnPGroupMember", - "Rank": 1, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Rank": 1, + "CommandName": "Remove-PnPGroupMember", "Id": 1074 }, { - "CommandName": "Remove-PnPHomeSite", - "Rank": 1, "Command": "Remove-PnPHomeSite", + "Rank": 1, + "CommandName": "Remove-PnPHomeSite", "Id": 1075 }, { - "CommandName": "Remove-PnPHubSiteAssociation", - "Rank": 1, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "Rank": 1, + "CommandName": "Remove-PnPHubSiteAssociation", "Id": 1076 }, { - "CommandName": "Remove-PnPHubToHubAssociation", - "Rank": 1, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "Rank": 1, + "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1077 }, { - "CommandName": "Remove-PnPHubToHubAssociation", - "Rank": 2, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "Rank": 2, + "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1078 }, { - "CommandName": "Remove-PnPIndexedProperty", - "Rank": 1, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "Rank": 1, + "CommandName": "Remove-PnPIndexedProperty", "Id": 1079 }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 1, "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "Rank": 1, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1080 }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 2, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "Rank": 2, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1081 }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 3, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "Rank": 3, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1082 }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 4, "Command": "Remove-PnPJavaScriptLink -Scope Site", + "Rank": 4, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1083 }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 5, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "Rank": 5, + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1084 }, { - "CommandName": "Remove-PnPKnowledgeHubSite", - "Rank": 1, "Command": "Remove-PnPKnowledgeHubSite", + "Rank": 1, + "CommandName": "Remove-PnPKnowledgeHubSite", "Id": 1085 }, { - "CommandName": "Remove-PnPList", - "Rank": 1, "Command": "Remove-PnPList -Identity Announcements", + "Rank": 1, + "CommandName": "Remove-PnPList", "Id": 1086 }, { - "CommandName": "Remove-PnPList", - "Rank": 2, "Command": "Remove-PnPList -Identity Announcements -Force", + "Rank": 2, + "CommandName": "Remove-PnPList", "Id": 1087 }, { - "CommandName": "Remove-PnPList", - "Rank": 3, "Command": "Remove-PnPList -Identity Announcements -Recycle", + "Rank": 3, + "CommandName": "Remove-PnPList", "Id": 1088 }, { - "CommandName": "Remove-PnPList", - "Rank": 4, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "Rank": 4, + "CommandName": "Remove-PnPList", "Id": 1089 }, { - "CommandName": "Remove-PnPListDesign", - "Rank": 1, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, + "CommandName": "Remove-PnPListDesign", "Id": 1090 }, { - "CommandName": "Remove-PnPListItem", - "Rank": 1, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "Rank": 1, + "CommandName": "Remove-PnPListItem", "Id": 1091 }, { - "CommandName": "Remove-PnPListItem", - "Rank": 2, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "Rank": 2, + "CommandName": "Remove-PnPListItem", "Id": 1092 }, { - "CommandName": "Remove-PnPListItem", - "Rank": 3, "Command": "Remove-PnPListItem -List \"Demo List\"", + "Rank": 3, + "CommandName": "Remove-PnPListItem", "Id": 1093 }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 1, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "Rank": 1, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1094 }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 2, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "Rank": 2, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1095 }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 3, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "Rank": 3, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1096 }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 4, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "Rank": 4, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1097 }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 5, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "Rank": 5, + "CommandName": "Remove-PnPListItemAttachment", "Id": 1098 }, { - "CommandName": "Remove-PnPListItemVersion", - "Rank": 1, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Rank": 1, + "CommandName": "Remove-PnPListItemVersion", "Id": 1099 }, { - "CommandName": "Remove-PnPListItemVersion", - "Rank": 2, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Rank": 2, + "CommandName": "Remove-PnPListItemVersion", "Id": 1100 }, { - "CommandName": "Remove-PnPMicrosoft365Group", - "Rank": 1, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1101 }, { - "CommandName": "Remove-PnPMicrosoft365Group", - "Rank": 2, "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1102 }, { - "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupMember", "Id": 1103 }, { - "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Id": 1104 }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1105 }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Rank": 2, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1106 }, { - "CommandName": "Remove-PnPNavigationNode", - "Rank": 1, "Command": "Remove-PnPNavigationNode -Identity 1032", + "Rank": 1, + "CommandName": "Remove-PnPNavigationNode", "Id": 1107 }, { - "CommandName": "Remove-PnPNavigationNode", - "Rank": 2, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "Rank": 2, + "CommandName": "Remove-PnPNavigationNode", "Id": 1108 }, { - "CommandName": "Remove-PnPNavigationNode", - "Rank": 3, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "Rank": 3, + "CommandName": "Remove-PnPNavigationNode", "Id": 1109 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 1, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "Rank": 1, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1110 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 2, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "Rank": 2, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1111 }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 3, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "Rank": 3, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1112 }, { - "CommandName": "Remove-PnPOrgNewsSite", - "Rank": 1, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "Rank": 1, + "CommandName": "Remove-PnPOrgNewsSite", "Id": 1113 }, { - "CommandName": "Remove-PnPPage", - "Rank": 1, "Command": "Remove-PnPPage -Identity \"MyPage\"", + "Rank": 1, + "CommandName": "Remove-PnPPage", "Id": 1114 }, { - "CommandName": "Remove-PnPPage", - "Rank": 2, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "Rank": 2, + "CommandName": "Remove-PnPPage", "Id": 1115 }, { - "CommandName": "Remove-PnPPage", - "Rank": 3, "Command": "Remove-PnPPage $page", + "Rank": 3, + "CommandName": "Remove-PnPPage", "Id": 1116 }, { - "CommandName": "Remove-PnPPage", - "Rank": 4, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "Rank": 4, + "CommandName": "Remove-PnPPage", "Id": 1117 }, { - "CommandName": "Remove-PnPPageComponent", - "Rank": 1, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1, + "CommandName": "Remove-PnPPageComponent", "Id": 1118 }, { - "CommandName": "Remove-PnPPlannerBucket", - "Rank": 1, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "Rank": 1, + "CommandName": "Remove-PnPPlannerBucket", "Id": 1119 }, { - "CommandName": "Remove-PnPPlannerPlan", - "Rank": 1, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "Rank": 1, + "CommandName": "Remove-PnPPlannerPlan", "Id": 1120 }, { - "CommandName": "Remove-PnPPlannerRoster", - "Rank": 1, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Rank": 1, + "CommandName": "Remove-PnPPlannerRoster", "Id": 1121 }, { - "CommandName": "Remove-PnPPlannerRosterMember", - "Rank": 1, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, + "CommandName": "Remove-PnPPlannerRosterMember", "Id": 1122 }, { - "CommandName": "Remove-PnPPlannerTask", - "Rank": 1, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "Rank": 1, + "CommandName": "Remove-PnPPlannerTask", "Id": 1123 }, { - "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 1, "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "Rank": 1, + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1124 }, { - "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 2, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "Rank": 2, + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1125 }, { - "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 3, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "Rank": 3, + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1126 }, { - "CommandName": "Remove-PnPPublishingImageRendition", - "Rank": 1, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Rank": 1, + "CommandName": "Remove-PnPPublishingImageRendition", "Id": 1127 }, { - "CommandName": "Remove-PnPRoleDefinition", - "Rank": 1, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "Rank": 1, + "CommandName": "Remove-PnPRoleDefinition", "Id": 1128 }, { - "CommandName": "Remove-PnPSdnProvider", - "Rank": 1, "Command": "Remove-PnPSdnProvider -Confirm:false", + "Rank": 1, + "CommandName": "Remove-PnPSdnProvider", "Id": 1129 }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 1, "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "Rank": 1, + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1130 }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 2, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "Rank": 2, + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1131 }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 3, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Rank": 3, + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1132 }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 4, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4, + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1133 }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Rank": 1, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1134 }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Rank": 2, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 2, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1135 }, { - "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Rank": 1, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Id": 1136 }, { - "CommandName": "Remove-PnPSiteCollectionTermStore", - "Rank": 1, "Command": "Remove-PnPSiteCollectionTermStore", + "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionTermStore", "Id": 1137 }, { - "CommandName": "Remove-PnPSiteDesign", - "Rank": 1, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, + "CommandName": "Remove-PnPSiteDesign", "Id": 1138 }, { - "CommandName": "Remove-PnPSiteDesignTask", - "Rank": 1, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, + "CommandName": "Remove-PnPSiteDesignTask", "Id": 1139 }, { - "CommandName": "Remove-PnPSiteGroup", - "Rank": 1, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1, + "CommandName": "Remove-PnPSiteGroup", "Id": 1140 }, { - "CommandName": "Remove-PnPSiteGroup", - "Rank": 2, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "Rank": 2, + "CommandName": "Remove-PnPSiteGroup", "Id": 1141 }, { - "CommandName": "Remove-PnPSiteScript", - "Rank": 1, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, + "CommandName": "Remove-PnPSiteScript", "Id": 1142 }, { - "CommandName": "Remove-PnPSiteUserInvitations", - "Rank": 1, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Rank": 1, + "CommandName": "Remove-PnPSiteUserInvitations", "Id": 1143 }, { - "CommandName": "Remove-PnPStorageEntity", - "Rank": 1, "Command": "Remove-PnPStorageEntity -Key MyKey", + "Rank": 1, + "CommandName": "Remove-PnPStorageEntity", "Id": 1144 }, { - "CommandName": "Remove-PnPStorageEntity", - "Rank": 2, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "Rank": 2, + "CommandName": "Remove-PnPStorageEntity", "Id": 1145 }, { - "CommandName": "Remove-PnPStoredCredential", - "Rank": 1, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "Rank": 1, + "CommandName": "Remove-PnPStoredCredential", "Id": 1146 }, { - "CommandName": "Remove-PnPTaxonomyItem", - "Rank": 1, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "Rank": 1, + "CommandName": "Remove-PnPTaxonomyItem", "Id": 1147 }, { - "CommandName": "Remove-PnPTaxonomyItem", - "Rank": 2, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "Rank": 2, + "CommandName": "Remove-PnPTaxonomyItem", "Id": 1148 }, { - "CommandName": "Remove-PnPTeamsApp", - "Rank": 1, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "Rank": 1, + "CommandName": "Remove-PnPTeamsApp", "Id": 1149 }, { - "CommandName": "Remove-PnPTeamsApp", - "Rank": 2, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "Rank": 2, + "CommandName": "Remove-PnPTeamsApp", "Id": 1150 }, { - "CommandName": "Remove-PnPTeamsChannel", - "Rank": 1, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "Rank": 1, + "CommandName": "Remove-PnPTeamsChannel", "Id": 1151 }, { - "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 1, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "Rank": 1, + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1152 }, { - "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 2, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 2, + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1153 }, { - "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 3, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "Rank": 3, + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1154 }, { - "CommandName": "Remove-PnPTeamsTab", - "Rank": 1, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "Rank": 1, + "CommandName": "Remove-PnPTeamsTab", "Id": 1155 }, { - "CommandName": "Remove-PnPTeamsTab", - "Rank": 2, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "Rank": 2, + "CommandName": "Remove-PnPTeamsTab", "Id": 1156 }, { - "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", + "Rank": 3, + "CommandName": "Remove-PnPTeamsTab", "Id": 1157 }, { - "CommandName": "Remove-PnPTeamsTag", - "Rank": 1, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Rank": 1, + "CommandName": "Remove-PnPTeamsTag", "Id": 1158 }, { - "CommandName": "Remove-PnPTeamsTeam", - "Rank": 1, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Rank": 1, + "CommandName": "Remove-PnPTeamsTeam", "Id": 1159 }, { - "CommandName": "Remove-PnPTeamsTeam", - "Rank": 2, "Command": "Remove-PnPTeamsTeam -Identity testteam", + "Rank": 2, + "CommandName": "Remove-PnPTeamsTeam", "Id": 1160 }, { - "CommandName": "Remove-PnPTeamsUser", - "Rank": 1, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "Rank": 1, + "CommandName": "Remove-PnPTeamsUser", "Id": 1161 }, { - "CommandName": "Remove-PnPTeamsUser", - "Rank": 2, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 2, + "CommandName": "Remove-PnPTeamsUser", "Id": 1162 }, { - "CommandName": "Remove-PnPTenantCdnOrigin", - "Rank": 1, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Rank": 1, + "CommandName": "Remove-PnPTenantCdnOrigin", "Id": 1163 }, { - "CommandName": "Remove-PnPTenantDeletedSite", - "Rank": 1, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, + "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1164 }, { - "CommandName": "Remove-PnPTenantDeletedSite", - "Rank": 2, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Rank": 2, + "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1165 }, { - "CommandName": "Remove-PnPTenantSite", - "Rank": 1, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, + "CommandName": "Remove-PnPTenantSite", "Id": 1166 }, { - "CommandName": "Remove-PnPTenantSite", - "Rank": 2, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "Rank": 2, + "CommandName": "Remove-PnPTenantSite", "Id": 1167 }, { - "CommandName": "Remove-PnPTenantSite", - "Rank": 3, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "Rank": 3, + "CommandName": "Remove-PnPTenantSite", "Id": 1168 }, { - "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1, "Command": "Remove-PnPTenantSyncClientRestriction", + "Rank": 1, + "CommandName": "Remove-PnPTenantSyncClientRestriction", "Id": 1169 }, { - "CommandName": "Remove-PnPTenantTheme", - "Rank": 1, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Rank": 1, + "CommandName": "Remove-PnPTenantTheme", "Id": 1170 }, { - "CommandName": "Remove-PnPTerm", - "Rank": 1, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Rank": 1, + "CommandName": "Remove-PnPTerm", "Id": 1171 }, { - "CommandName": "Remove-PnPTerm", - "Rank": 2, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, + "CommandName": "Remove-PnPTerm", "Id": 1172 }, { - "CommandName": "Remove-PnPTermGroup", - "Rank": 1, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Rank": 1, + "CommandName": "Remove-PnPTermGroup", "Id": 1173 }, { - "CommandName": "Remove-PnPTermGroup", - "Rank": 2, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "Rank": 2, + "CommandName": "Remove-PnPTermGroup", "Id": 1174 }, { - "CommandName": "Remove-PnPTermGroup", - "Rank": 3, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "Rank": 3, + "CommandName": "Remove-PnPTermGroup", "Id": 1175 }, { - "CommandName": "Remove-PnPTermLabel", - "Rank": 1, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", + "Rank": 1, + "CommandName": "Remove-PnPTermLabel", "Id": 1176 }, { - "CommandName": "Remove-PnPTermLabel", - "Rank": 2, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, + "CommandName": "Remove-PnPTermLabel", "Id": 1177 }, { - "CommandName": "Remove-PnPUser", - "Rank": 1, "Command": "Remove-PnPUser -Identity 23", + "Rank": 1, + "CommandName": "Remove-PnPUser", "Id": 1178 }, { - "CommandName": "Remove-PnPUser", - "Rank": 2, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "Rank": 2, + "CommandName": "Remove-PnPUser", "Id": 1179 }, { - "CommandName": "Remove-PnPUser", - "Rank": 3, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "Rank": 3, + "CommandName": "Remove-PnPUser", "Id": 1180 }, { - "CommandName": "Remove-PnPUserInfo", - "Rank": 1, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Rank": 1, + "CommandName": "Remove-PnPUserInfo", "Id": 1181 }, { - "CommandName": "Remove-PnPUserProfile", - "Rank": 1, "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "Rank": 1, + "CommandName": "Remove-PnPUserProfile", "Id": 1182 }, { - "CommandName": "Remove-PnPView", - "Rank": 1, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "Rank": 1, + "CommandName": "Remove-PnPView", "Id": 1183 }, { - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Rank": 1, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Rank": 1, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Id": 1184 }, { - "CommandName": "Remove-PnPWeb", - "Rank": 1, "Command": "Remove-PnPWeb -Identity projectA", + "Rank": 1, + "CommandName": "Remove-PnPWeb", "Id": 1185 }, { - "CommandName": "Remove-PnPWeb", - "Rank": 2, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "Rank": 2, + "CommandName": "Remove-PnPWeb", "Id": 1186 }, { - "CommandName": "Remove-PnPWebhookSubscription", - "Rank": 1, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "Rank": 1, + "CommandName": "Remove-PnPWebhookSubscription", "Id": 1187 }, { - "CommandName": "Remove-PnPWebPart", - "Rank": 1, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1, + "CommandName": "Remove-PnPWebPart", "Id": 1188 }, { - "CommandName": "Remove-PnPWebPart", - "Rank": 2, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "Rank": 2, + "CommandName": "Remove-PnPWebPart", "Id": 1189 }, { - "CommandName": "Remove-PnPWikiPage", - "Rank": 1, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "Rank": 1, + "CommandName": "Remove-PnPWikiPage", "Id": 1190 }, { - "CommandName": "Rename-PnPFile", - "Rank": 1, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "Rank": 1, + "CommandName": "Rename-PnPFile", "Id": 1191 }, { - "CommandName": "Rename-PnPFile", - "Rank": 2, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "Rank": 2, + "CommandName": "Rename-PnPFile", "Id": 1192 }, { - "CommandName": "Rename-PnPFile", - "Rank": 3, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "Rank": 3, + "CommandName": "Rename-PnPFile", "Id": 1193 }, { - "CommandName": "Rename-PnPFolder", - "Rank": 1, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "Rank": 1, + "CommandName": "Rename-PnPFolder", "Id": 1194 }, { - "CommandName": "Repair-PnPSite", - "Rank": 1, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1, + "CommandName": "Repair-PnPSite", "Id": 1195 }, { - "CommandName": "Repair-PnPSite", - "Rank": 2, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Rank": 2, + "CommandName": "Repair-PnPSite", "Id": 1196 }, { - "CommandName": "Request-PnPAccessToken", - "Rank": 1, "Command": "Request-PnPAccessToken", + "Rank": 1, + "CommandName": "Request-PnPAccessToken", "Id": 1197 }, { - "CommandName": "Request-PnPAccessToken", - "Rank": 2, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "Rank": 2, + "CommandName": "Request-PnPAccessToken", "Id": 1198 }, { - "CommandName": "Request-PnPAccessToken", - "Rank": 3, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "Rank": 3, + "CommandName": "Request-PnPAccessToken", "Id": 1199 }, { - "CommandName": "Request-PnPAccessToken", - "Rank": 4, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "Rank": 4, + "CommandName": "Request-PnPAccessToken", "Id": 1200 }, { - "CommandName": "Request-PnPPersonalSite", - "Rank": 1, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "Rank": 1, + "CommandName": "Request-PnPPersonalSite", "Id": 1201 }, { - "CommandName": "Request-PnPPersonalSite", - "Rank": 2, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "Rank": 2, + "CommandName": "Request-PnPPersonalSite", "Id": 1202 }, { - "CommandName": "Request-PnPReIndexList", - "Rank": 1, "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "Rank": 1, + "CommandName": "Request-PnPReIndexList", "Id": 1203 }, { - "CommandName": "Request-PnPReIndexWeb", - "Rank": 1, "Command": "Request-PnPReIndexWeb", + "Rank": 1, + "CommandName": "Request-PnPReIndexWeb", "Id": 1204 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 1, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "Rank": 1, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1205 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 2, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "Rank": 2, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1206 }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 3, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "Rank": 3, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1207 }, { - "CommandName": "Reset-PnPFileVersion", - "Rank": 1, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "Rank": 1, + "CommandName": "Reset-PnPFileVersion", "Id": 1208 }, { - "CommandName": "Reset-PnPFileVersion", - "Rank": 2, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "Rank": 2, + "CommandName": "Reset-PnPFileVersion", "Id": 1209 }, { - "CommandName": "Reset-PnPLabel", - "Rank": 1, "Command": "Reset-PnPLabel -List \"Demo List\"", + "Rank": 1, + "CommandName": "Reset-PnPLabel", "Id": 1210 }, { - "CommandName": "Reset-PnPLabel", - "Rank": 2, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "Rank": 2, + "CommandName": "Reset-PnPLabel", "Id": 1211 }, { - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1, "Command": "Reset-PnPMicrosoft365GroupExpiration", + "Rank": 1, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Id": 1212 }, { - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Rank": 1, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "Rank": 1, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Id": 1213 }, { - "CommandName": "Resolve-PnPFolder", - "Rank": 1, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "Rank": 1, + "CommandName": "Resolve-PnPFolder", "Id": 1214 }, { - "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Rank": 1, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 1, + "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Id": 1215 }, { - "CommandName": "Restore-PnPFileVersion", - "Rank": 1, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Rank": 1, + "CommandName": "Restore-PnPFileVersion", "Id": 1216 }, { - "CommandName": "Restore-PnPFileVersion", - "Rank": 2, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "Rank": 2, + "CommandName": "Restore-PnPFileVersion", "Id": 1217 }, { - "CommandName": "Restore-PnPFileVersion", - "Rank": 3, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Rank": 3, + "CommandName": "Restore-PnPFileVersion", "Id": 1218 }, { - "CommandName": "Restore-PnPListItemVersion", - "Rank": 1, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Rank": 1, + "CommandName": "Restore-PnPListItemVersion", "Id": 1219 }, { - "CommandName": "Restore-PnPListItemVersion", - "Rank": 2, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Rank": 2, + "CommandName": "Restore-PnPListItemVersion", "Id": 1220 }, { - "CommandName": "Restore-PnPRecycleBinItem", - "Rank": 1, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1, + "CommandName": "Restore-PnPRecycleBinItem", "Id": 1221 }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Rank": 1, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, + "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1222 }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Rank": 2, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Rank": 2, + "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1223 }, { - "CommandName": "Restore-PnPTenantSite", - "Rank": 1, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, + "CommandName": "Restore-PnPTenantSite", "Id": 1224 }, { - "CommandName": "Restore-PnPTenantSite", - "Rank": 2, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Rank": 2, + "CommandName": "Restore-PnPTenantSite", "Id": 1225 }, { - "CommandName": "Restore-PnPTenantSite", - "Rank": 3, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "Rank": 3, + "CommandName": "Restore-PnPTenantSite", "Id": 1226 }, { - "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Rank": 1, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "Rank": 1, + "CommandName": "Revoke-PnPAzureADAppSitePermission", "Id": 1227 }, { - "CommandName": "Revoke-PnPHubSiteRights", - "Rank": 1, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, + "CommandName": "Revoke-PnPHubSiteRights", "Id": 1228 }, { - "CommandName": "Revoke-PnPSiteDesignRights", - "Rank": 1, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, + "CommandName": "Revoke-PnPSiteDesignRights", "Id": 1229 }, { - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Rank": 1, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Rank": 1, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Id": 1230 }, { - "CommandName": "Revoke-PnPUserSession", - "Rank": 1, "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "Rank": 1, + "CommandName": "Revoke-PnPUserSession", "Id": 1231 }, { - "CommandName": "Save-PnPPageConversionLog", - "Rank": 1, "Command": "Save-PnPPageConversionLog", + "Rank": 1, + "CommandName": "Save-PnPPageConversionLog", "Id": 1232 }, { - "CommandName": "Save-PnPSiteTemplate", - "Rank": 1, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "Rank": 1, + "CommandName": "Save-PnPSiteTemplate", "Id": 1233 }, { - "CommandName": "Save-PnPTenantTemplate", - "Rank": 1, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "Rank": 1, + "CommandName": "Save-PnPTenantTemplate", "Id": 1234 }, { - "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\"", + "Rank": 1, + "CommandName": "Send-PnPMail", "Id": 1235 }, { - "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", + "Rank": 2, + "CommandName": "Send-PnPMail", "Id": 1236 }, { - "CommandName": "Send-PnPMail", - "Rank": 3, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "Rank": 3, + "CommandName": "Send-PnPMail", "Id": 1237 }, { - "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", + "Rank": 4, + "CommandName": "Send-PnPMail", "Id": 1238 }, { - "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", + "Rank": 5, + "CommandName": "Send-PnPMail", "Id": 1239 }, { - "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\"", + "Rank": 6, + "CommandName": "Send-PnPMail", "Id": 1240 }, { - "CommandName": "Set-PnPAdaptiveScopeProperty", - "Rank": 1, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "Rank": 1, + "CommandName": "Set-PnPAdaptiveScopeProperty", "Id": 1241 }, { - "CommandName": "Set-PnPApplicationCustomizer", - "Rank": 1, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1, + "CommandName": "Set-PnPApplicationCustomizer", "Id": 1242 }, { - "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`\"}\"", + "Rank": 2, + "CommandName": "Set-PnPApplicationCustomizer", "Id": 1243 }, { - "CommandName": "Set-PnPAppSideLoading", - "Rank": 1, "Command": "Set-PnPAppSideLoading -On", + "Rank": 1, + "CommandName": "Set-PnPAppSideLoading", "Id": 1244 }, { - "CommandName": "Set-PnPAppSideLoading", - "Rank": 2, "Command": "Set-PnPAppSideLoading -Off", + "Rank": 2, + "CommandName": "Set-PnPAppSideLoading", "Id": 1245 }, { - "CommandName": "Set-PnPAuditing", - "Rank": 1, "Command": "Set-PnPAuditing -EnableAll", + "Rank": 1, + "CommandName": "Set-PnPAuditing", "Id": 1246 }, { - "CommandName": "Set-PnPAuditing", - "Rank": 2, "Command": "Set-PnPAuditing -DisableAll", + "Rank": 2, + "CommandName": "Set-PnPAuditing", "Id": 1247 }, { - "CommandName": "Set-PnPAuditing", - "Rank": 3, "Command": "Set-PnPAuditing -RetentionTime 7", + "Rank": 3, + "CommandName": "Set-PnPAuditing", "Id": 1248 }, { - "CommandName": "Set-PnPAuditing", - "Rank": 4, "Command": "Set-PnPAuditing -TrimAuditLog", + "Rank": 4, + "CommandName": "Set-PnPAuditing", "Id": 1249 }, { - "CommandName": "Set-PnPAuditing", - "Rank": 5, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "Rank": 5, + "CommandName": "Set-PnPAuditing", "Id": 1250 }, { - "CommandName": "Set-PnPAvailablePageLayouts", - "Rank": 1, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "Rank": 1, + "CommandName": "Set-PnPAvailablePageLayouts", "Id": 1251 }, { - "CommandName": "Set-PnPAzureADAppSitePermission", - "Rank": 1, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "Rank": 1, + "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1252 }, { - "CommandName": "Set-PnPAzureADAppSitePermission", - "Rank": 2, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "Rank": 2, + "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1253 }, { - "CommandName": "Set-PnPAzureADGroup", - "Rank": 1, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "Rank": 1, + "CommandName": "Set-PnPAzureADGroup", "Id": 1254 }, { - "CommandName": "Set-PnPAzureADGroup", - "Rank": 2, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Rank": 2, + "CommandName": "Set-PnPAzureADGroup", "Id": 1255 }, { - "CommandName": "Set-PnPAzureADGroup", - "Rank": 3, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "Rank": 3, + "CommandName": "Set-PnPAzureADGroup", "Id": 1256 }, { - "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 1, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "Rank": 1, + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1257 }, { - "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 2, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "Rank": 2, + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1258 }, { - "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 3, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "Rank": 3, + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1259 }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Rank": 1, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "Rank": 1, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1260 }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Rank": 2, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "Rank": 2, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1261 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 1, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "Rank": 1, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1262 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 2, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "Rank": 2, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1263 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 3, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "Rank": 3, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1264 }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 4, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "Rank": 4, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1265 }, { - "CommandName": "Set-PnPContentType", - "Rank": 1, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Rank": 1, + "CommandName": "Set-PnPContentType", "Id": 1266 }, { - "CommandName": "Set-PnPContentType", - "Rank": 2, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "Rank": 2, + "CommandName": "Set-PnPContentType", "Id": 1267 }, { - "CommandName": "Set-PnPContentType", - "Rank": 3, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Rank": 3, + "CommandName": "Set-PnPContentType", "Id": 1268 }, { - "CommandName": "Set-PnPContentType", - "Rank": 4, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Rank": 4, + "CommandName": "Set-PnPContentType", "Id": 1269 }, { - "CommandName": "Set-PnPContentType", - "Rank": 5, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Rank": 5, + "CommandName": "Set-PnPContentType", "Id": 1270 }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 1, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "Rank": 1, + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1271 }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 2, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "Rank": 2, + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1272 }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 3, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "Rank": 3, + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1273 }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 4, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "Rank": 4, + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1274 }, { - "CommandName": "Set-PnPDefaultContentTypeToList", - "Rank": 1, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "Rank": 1, + "CommandName": "Set-PnPDefaultContentTypeToList", "Id": 1275 }, { - "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 1, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "Rank": 1, + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1276 }, { - "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 2, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "Rank": 2, + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1277 }, { - "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 3, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "Rank": 3, + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1278 }, { - "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 1, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "Rank": 1, + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1279 }, { - "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 2, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Rank": 2, + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1280 }, { - "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 3, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Rank": 3, + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1281 }, { - "CommandName": "Set-PnPDocumentSetField", - "Rank": 1, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "Rank": 1, + "CommandName": "Set-PnPDocumentSetField", "Id": 1282 }, { - "CommandName": "Set-PnPDocumentSetField", - "Rank": 2, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "Rank": 2, + "CommandName": "Set-PnPDocumentSetField", "Id": 1283 }, { - "CommandName": "Set-PnPField", - "Rank": 1, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "Rank": 1, + "CommandName": "Set-PnPField", "Id": 1284 }, { - "CommandName": "Set-PnPField", - "Rank": 2, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "Rank": 2, + "CommandName": "Set-PnPField", "Id": 1285 }, { - "CommandName": "Set-PnPField", - "Rank": 3, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "Rank": 3, + "CommandName": "Set-PnPField", "Id": 1286 }, { - "CommandName": "Set-PnPFileCheckedIn", - "Rank": 1, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "Rank": 1, + "CommandName": "Set-PnPFileCheckedIn", "Id": 1287 }, { - "CommandName": "Set-PnPFileCheckedIn", - "Rank": 2, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "Rank": 2, + "CommandName": "Set-PnPFileCheckedIn", "Id": 1288 }, { - "CommandName": "Set-PnPFileCheckedOut", - "Rank": 1, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "Rank": 1, + "CommandName": "Set-PnPFileCheckedOut", "Id": 1289 }, { - "CommandName": "Set-PnPFolderPermission", - "Rank": 1, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1, + "CommandName": "Set-PnPFolderPermission", "Id": 1290 }, { - "CommandName": "Set-PnPFolderPermission", - "Rank": 2, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2, + "CommandName": "Set-PnPFolderPermission", "Id": 1291 }, { - "CommandName": "Set-PnPFolderPermission", - "Rank": 3, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Rank": 3, + "CommandName": "Set-PnPFolderPermission", "Id": 1292 }, { - "CommandName": "Set-PnPFooter", - "Rank": 1, "Command": "Set-PnPFooter -Enabled:$true", + "Rank": 1, + "CommandName": "Set-PnPFooter", "Id": 1293 }, { - "CommandName": "Set-PnPFooter", - "Rank": 2, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "Rank": 2, + "CommandName": "Set-PnPFooter", "Id": 1294 }, { - "CommandName": "Set-PnPFooter", - "Rank": 3, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "Rank": 3, + "CommandName": "Set-PnPFooter", "Id": 1295 }, { - "CommandName": "Set-PnPFooter", - "Rank": 4, "Command": "Set-PnPFooter -LogoUrl \"\"", + "Rank": 4, + "CommandName": "Set-PnPFooter", "Id": 1296 }, { - "CommandName": "Set-PnPGraphSubscription", - "Rank": 1, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "Rank": 1, + "CommandName": "Set-PnPGraphSubscription", "Id": 1297 }, { - "CommandName": "Set-PnPGroup", - "Rank": 1, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "Rank": 1, + "CommandName": "Set-PnPGroup", "Id": 1298 }, { - "CommandName": "Set-PnPGroup", - "Rank": 2, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "Rank": 2, + "CommandName": "Set-PnPGroup", "Id": 1299 }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 1, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "Rank": 1, + "CommandName": "Set-PnPGroupPermissions", "Id": 1300 }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 2, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "Rank": 2, + "CommandName": "Set-PnPGroupPermissions", "Id": 1301 }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 3, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "Rank": 3, + "CommandName": "Set-PnPGroupPermissions", "Id": 1302 }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 4, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "Rank": 4, + "CommandName": "Set-PnPGroupPermissions", "Id": 1303 }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 5, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "Rank": 5, + "CommandName": "Set-PnPGroupPermissions", "Id": 1304 }, { - "CommandName": "Set-PnPHideDefaultThemes", - "Rank": 1, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "Rank": 1, + "CommandName": "Set-PnPHideDefaultThemes", "Id": 1305 }, { - "CommandName": "Set-PnPHideDefaultThemes", - "Rank": 2, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "Rank": 2, + "CommandName": "Set-PnPHideDefaultThemes", "Id": 1306 }, { - "CommandName": "Set-PnPHomePage", - "Rank": 1, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "Rank": 1, + "CommandName": "Set-PnPHomePage", "Id": 1307 }, { - "CommandName": "Set-PnPHomePage", - "Rank": 2, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "Rank": 2, + "CommandName": "Set-PnPHomePage", "Id": 1308 }, { - "CommandName": "Set-PnPHomeSite", - "Rank": 1, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "Rank": 1, + "CommandName": "Set-PnPHomeSite", "Id": 1309 }, { - "CommandName": "Set-PnPHomeSite", - "Rank": 2, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "Rank": 2, + "CommandName": "Set-PnPHomeSite", "Id": 1310 }, { - "CommandName": "Set-PnPHubSite", - "Rank": 1, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "Rank": 1, + "CommandName": "Set-PnPHubSite", "Id": 1311 }, { - "CommandName": "Set-PnPHubSite", - "Rank": 2, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "Rank": 2, + "CommandName": "Set-PnPHubSite", "Id": 1312 }, { - "CommandName": "Set-PnPHubSite", - "Rank": 3, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "Rank": 3, + "CommandName": "Set-PnPHubSite", "Id": 1313 }, { - "CommandName": "Set-PnPHubSite", - "Rank": 4, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", + "Rank": 4, + "CommandName": "Set-PnPHubSite", "Id": 1314 }, { - "CommandName": "Set-PnPHubSite", - "Rank": 5, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "Rank": 5, + "CommandName": "Set-PnPHubSite", "Id": 1315 }, { - "CommandName": "Set-PnPHubSite", - "Rank": 6, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "Rank": 6, + "CommandName": "Set-PnPHubSite", "Id": 1316 }, { - "CommandName": "Set-PnPImageListItemColumn", - "Rank": 1, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "Rank": 1, + "CommandName": "Set-PnPImageListItemColumn", "Id": 1317 }, { - "CommandName": "Set-PnPImageListItemColumn", - "Rank": 2, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "Rank": 2, + "CommandName": "Set-PnPImageListItemColumn", "Id": 1318 }, { - "CommandName": "Set-PnPIndexedProperties", - "Rank": 1, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "Rank": 1, + "CommandName": "Set-PnPIndexedProperties", "Id": 1319 }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Rank": 1, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "Rank": 1, + "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1320 }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Rank": 2, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "Rank": 2, + "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1321 }, { - "CommandName": "Set-PnPKnowledgeHubSite", - "Rank": 1, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "Rank": 1, + "CommandName": "Set-PnPKnowledgeHubSite", "Id": 1322 }, { - "CommandName": "Set-PnPLabel", - "Rank": 1, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "Rank": 1, + "CommandName": "Set-PnPLabel", "Id": 1323 }, { - "CommandName": "Set-PnPLabel", - "Rank": 2, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "Rank": 2, + "CommandName": "Set-PnPLabel", "Id": 1324 }, { - "CommandName": "Set-PnPList", - "Rank": 1, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "Rank": 1, + "CommandName": "Set-PnPList", "Id": 1325 }, { - "CommandName": "Set-PnPList", - "Rank": 2, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "Rank": 2, + "CommandName": "Set-PnPList", "Id": 1326 }, { - "CommandName": "Set-PnPList", - "Rank": 3, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "Rank": 3, + "CommandName": "Set-PnPList", "Id": 1327 }, { - "CommandName": "Set-PnPList", - "Rank": 4, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "Rank": 4, + "CommandName": "Set-PnPList", "Id": 1328 }, { - "CommandName": "Set-PnPList", - "Rank": 5, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "Rank": 5, + "CommandName": "Set-PnPList", "Id": 1329 }, { - "CommandName": "Set-PnPList", - "Rank": 6, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "Rank": 6, + "CommandName": "Set-PnPList", "Id": 1330 }, { - "CommandName": "Set-PnPList", - "Rank": 7, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "Rank": 7, + "CommandName": "Set-PnPList", "Id": 1331 }, { - "CommandName": "Set-PnPList", - "Rank": 8, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "Rank": 8, + "CommandName": "Set-PnPList", "Id": 1332 }, { - "CommandName": "Set-PnPList", - "Rank": 9, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "Rank": 9, + "CommandName": "Set-PnPList", "Id": 1333 }, { - "CommandName": "Set-PnPList", - "Rank": 10, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "Rank": 10, + "CommandName": "Set-PnPList", "Id": 1334 }, { - "CommandName": "Set-PnPList", - "Rank": 11, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "Rank": 11, + "CommandName": "Set-PnPList", "Id": 1335 }, { - "CommandName": "Set-PnPListInformationRightsManagement", - "Rank": 1, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "Rank": 1, + "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1336 }, { - "CommandName": "Set-PnPListInformationRightsManagement", - "Rank": 2, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "Rank": 2, + "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1337 }, { - "CommandName": "Set-PnPListItem", - "Rank": 1, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 1, + "CommandName": "Set-PnPListItem", "Id": 1338 }, { - "CommandName": "Set-PnPListItem", - "Rank": 2, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 2, + "CommandName": "Set-PnPListItem", "Id": 1339 }, { - "CommandName": "Set-PnPListItem", - "Rank": 3, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 3, + "CommandName": "Set-PnPListItem", "Id": 1340 }, { - "CommandName": "Set-PnPListItem", - "Rank": 4, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "Rank": 4, + "CommandName": "Set-PnPListItem", "Id": 1341 }, { - "CommandName": "Set-PnPListItem", - "Rank": 5, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "Rank": 5, + "CommandName": "Set-PnPListItem", "Id": 1342 }, { - "CommandName": "Set-PnPListItemAsRecord", - "Rank": 1, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1, + "CommandName": "Set-PnPListItemAsRecord", "Id": 1343 }, { - "CommandName": "Set-PnPListItemAsRecord", - "Rank": 2, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "Rank": 2, + "CommandName": "Set-PnPListItemAsRecord", "Id": 1344 }, { - "CommandName": "Set-PnPListItemPermission", - "Rank": 1, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1, + "CommandName": "Set-PnPListItemPermission", "Id": 1345 }, { - "CommandName": "Set-PnPListItemPermission", - "Rank": 2, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2, + "CommandName": "Set-PnPListItemPermission", "Id": 1346 }, { - "CommandName": "Set-PnPListItemPermission", - "Rank": 3, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Rank": 3, + "CommandName": "Set-PnPListItemPermission", "Id": 1347 }, { - "CommandName": "Set-PnPListItemPermission", - "Rank": 4, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "Rank": 4, + "CommandName": "Set-PnPListItemPermission", "Id": 1348 }, { - "CommandName": "Set-PnPListItemPermission", - "Rank": 5, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "Rank": 5, + "CommandName": "Set-PnPListItemPermission", "Id": 1349 }, { - "CommandName": "Set-PnPListPermission", - "Rank": 1, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1, + "CommandName": "Set-PnPListPermission", "Id": 1350 }, { - "CommandName": "Set-PnPListPermission", - "Rank": 2, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2, + "CommandName": "Set-PnPListPermission", "Id": 1351 }, { - "CommandName": "Set-PnPListRecordDeclaration", - "Rank": 1, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "Rank": 1, + "CommandName": "Set-PnPListRecordDeclaration", "Id": 1352 }, { - "CommandName": "Set-PnPListRecordDeclaration", - "Rank": 2, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "Rank": 2, + "CommandName": "Set-PnPListRecordDeclaration", "Id": 1353 }, { - "CommandName": "Set-PnPMasterPage", - "Rank": 1, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Rank": 1, + "CommandName": "Set-PnPMasterPage", "Id": 1354 }, { - "CommandName": "Set-PnPMasterPage", - "Rank": 2, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Rank": 2, + "CommandName": "Set-PnPMasterPage", "Id": 1355 }, { - "CommandName": "Set-PnPMasterPage", - "Rank": 3, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Rank": 3, + "CommandName": "Set-PnPMasterPage", "Id": 1356 }, { - "CommandName": "Set-PnPMasterPage", - "Rank": 4, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Rank": 4, + "CommandName": "Set-PnPMasterPage", "Id": 1357 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1358 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1359 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1360 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1361 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1362 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1363 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1364 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1365 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1366 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1367 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1368 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1369 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1370 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1371 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1372 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1373 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1374 }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1375 }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 1, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "Rank": 1, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1376 }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 2, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Rank": 2, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1377 }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 3, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "Rank": 3, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1378 }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 4, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "Rank": 4, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1379 }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 5, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "Rank": 5, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1380 }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 6, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Rank": 6, + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1381 }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Rank": 1, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "Rank": 1, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1382 }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Rank": 2, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "Rank": 2, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1383 }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Rank": 1, "Command": "Set-PnPMinimalDownloadStrategy -Off", + "Rank": 1, + "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1384 }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Rank": 2, "Command": "Set-PnPMinimalDownloadStrategy -On", + "Rank": 2, + "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1385 }, { - "CommandName": "Set-PnPPage", - "Rank": 1, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "Rank": 1, + "CommandName": "Set-PnPPage", "Id": 1386 }, { - "CommandName": "Set-PnPPage", - "Rank": 2, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "Rank": 2, + "CommandName": "Set-PnPPage", "Id": 1387 }, { - "CommandName": "Set-PnPPage", - "Rank": 3, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "Rank": 3, + "CommandName": "Set-PnPPage", "Id": 1388 }, { - "CommandName": "Set-PnPPage", - "Rank": 4, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "Rank": 4, + "CommandName": "Set-PnPPage", "Id": 1389 }, { - "CommandName": "Set-PnPPage", - "Rank": 5, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "Rank": 5, + "CommandName": "Set-PnPPage", "Id": 1390 }, { - "CommandName": "Set-PnPPage", - "Rank": 6, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", + "Rank": 6, + "CommandName": "Set-PnPPage", "Id": 1391 }, { - "CommandName": "Set-PnPPage", - "Rank": 7, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "Rank": 7, + "CommandName": "Set-PnPPage", "Id": 1392 }, { - "CommandName": "Set-PnPPage", - "Rank": 8, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "Rank": 8, + "CommandName": "Set-PnPPage", "Id": 1393 }, { - "CommandName": "Set-PnPPage", - "Rank": 9, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "Rank": 9, + "CommandName": "Set-PnPPage", "Id": 1394 }, { - "CommandName": "Set-PnPPage", - "Rank": 10, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Rank": 10, + "CommandName": "Set-PnPPage", "Id": 1395 }, { - "CommandName": "Set-PnPPage", - "Rank": 11, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "Rank": 11, + "CommandName": "Set-PnPPage", "Id": 1396 }, { - "CommandName": "Set-PnPPageTextPart", - "Rank": 1, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "Rank": 1, + "CommandName": "Set-PnPPageTextPart", "Id": 1397 }, { - "CommandName": "Set-PnPPageWebPart", - "Rank": 1, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "Rank": 1, + "CommandName": "Set-PnPPageWebPart", "Id": 1398 }, { - "CommandName": "Set-PnPPageWebPart", - "Rank": 2, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "Rank": 2, + "CommandName": "Set-PnPPageWebPart", "Id": 1399 }, { - "CommandName": "Set-PnPPlannerBucket", - "Rank": 1, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "Rank": 1, + "CommandName": "Set-PnPPlannerBucket", "Id": 1400 }, { - "CommandName": "Set-PnPPlannerConfiguration", - "Rank": 1, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Rank": 1, + "CommandName": "Set-PnPPlannerConfiguration", "Id": 1401 }, { - "CommandName": "Set-PnPPlannerConfiguration", - "Rank": 2, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "Rank": 2, + "CommandName": "Set-PnPPlannerConfiguration", "Id": 1402 }, { - "CommandName": "Set-PnPPlannerPlan", - "Rank": 1, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "Rank": 1, + "CommandName": "Set-PnPPlannerPlan", "Id": 1403 }, { - "CommandName": "Set-PnPPlannerTask", - "Rank": 1, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "Rank": 1, + "CommandName": "Set-PnPPlannerTask", "Id": 1404 }, { - "CommandName": "Set-PnPPlannerTask", - "Rank": 2, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "Rank": 2, + "CommandName": "Set-PnPPlannerTask", "Id": 1405 }, { - "CommandName": "Set-PnPPlannerTask", - "Rank": 3, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Rank": 3, + "CommandName": "Set-PnPPlannerTask", "Id": 1406 }, { - "CommandName": "Set-PnPPlannerUserPolicy", - "Rank": 1, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, + "CommandName": "Set-PnPPlannerUserPolicy", "Id": 1407 }, { - "CommandName": "Set-PnPPropertyBagValue", - "Rank": 1, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "Rank": 1, + "CommandName": "Set-PnPPropertyBagValue", "Id": 1408 }, { - "CommandName": "Set-PnPPropertyBagValue", - "Rank": 2, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "Rank": 2, + "CommandName": "Set-PnPPropertyBagValue", "Id": 1409 }, { - "CommandName": "Set-PnPPropertyBagValue", - "Rank": 3, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "Rank": 3, + "CommandName": "Set-PnPPropertyBagValue", "Id": 1410 }, { - "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 1, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "Rank": 1, + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1411 }, { - "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 2, "Command": "Set-PnPRequestAccessEmails -Disabled", + "Rank": 2, + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1412 }, { - "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 3, "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "Rank": 3, + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1413 }, { - "CommandName": "Set-PnPRoleDefinition", - "Rank": 1, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "Rank": 1, + "CommandName": "Set-PnPRoleDefinition", "Id": 1414 }, { - "CommandName": "Set-PnPRoleDefinition", - "Rank": 2, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "Rank": 2, + "CommandName": "Set-PnPRoleDefinition", "Id": 1415 }, { - "CommandName": "Set-PnPRoleDefinition", - "Rank": 3, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "Rank": 3, + "CommandName": "Set-PnPRoleDefinition", "Id": 1416 }, { - "CommandName": "Set-PnPRoleDefinition", - "Rank": 4, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "Rank": 4, + "CommandName": "Set-PnPRoleDefinition", "Id": 1417 }, { - "CommandName": "Set-PnPSearchConfiguration", - "Rank": 1, "Command": "Set-PnPSearchConfiguration -Configuration $config", + "Rank": 1, + "CommandName": "Set-PnPSearchConfiguration", "Id": 1418 }, { - "CommandName": "Set-PnPSearchConfiguration", - "Rank": 2, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "Rank": 2, + "CommandName": "Set-PnPSearchConfiguration", "Id": 1419 }, { - "CommandName": "Set-PnPSearchConfiguration", - "Rank": 3, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Rank": 3, + "CommandName": "Set-PnPSearchConfiguration", "Id": 1420 }, { - "CommandName": "Set-PnPSearchConfiguration", - "Rank": 4, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4, + "CommandName": "Set-PnPSearchConfiguration", "Id": 1421 }, { - "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", + "Rank": 1, + "CommandName": "Set-PnPSearchExternalItem", "Id": 1422 }, { - "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\"", + "Rank": 2, + "CommandName": "Set-PnPSearchExternalItem", "Id": 1423 }, { - "CommandName": "Set-PnPSearchSettings", - "Rank": 1, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Rank": 1, + "CommandName": "Set-PnPSearchSettings", "Id": 1424 }, { - "CommandName": "Set-PnPSearchSettings", - "Rank": 2, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "Rank": 2, + "CommandName": "Set-PnPSearchSettings", "Id": 1425 }, { - "CommandName": "Set-PnPSearchSettings", - "Rank": 3, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "Rank": 3, + "CommandName": "Set-PnPSearchSettings", "Id": 1426 }, { - "CommandName": "Set-PnPSearchSettings", - "Rank": 4, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "Rank": 4, + "CommandName": "Set-PnPSearchSettings", "Id": 1427 }, { - "CommandName": "Set-PnPSearchSettings", - "Rank": 5, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "Rank": 5, + "CommandName": "Set-PnPSearchSettings", "Id": 1428 }, { - "CommandName": "Set-PnPSearchSettings", - "Rank": 6, "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "Rank": 6, + "CommandName": "Set-PnPSearchSettings", "Id": 1429 }, { - "CommandName": "Set-PnPSearchSettings", - "Rank": 7, "Command": "Set-PnPSearchSettings -SearchScope Hub", + "Rank": 7, + "CommandName": "Set-PnPSearchSettings", "Id": 1430 }, { - "CommandName": "Set-PnPSite", - "Rank": 1, "Command": "Set-PnPSite -Classification \"HBI\"", + "Rank": 1, + "CommandName": "Set-PnPSite", "Id": 1431 }, { - "CommandName": "Set-PnPSite", - "Rank": 2, "Command": "Set-PnPSite -Classification $null", + "Rank": 2, + "CommandName": "Set-PnPSite", "Id": 1432 }, { - "CommandName": "Set-PnPSite", - "Rank": 3, "Command": "Set-PnPSite -DisableFlows", + "Rank": 3, + "CommandName": "Set-PnPSite", "Id": 1433 }, { - "CommandName": "Set-PnPSite", - "Rank": 4, "Command": "Set-PnPSite -DisableFlows:$false", + "Rank": 4, + "CommandName": "Set-PnPSite", "Id": 1434 }, { - "CommandName": "Set-PnPSite", - "Rank": 5, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "Rank": 5, + "CommandName": "Set-PnPSite", "Id": 1435 }, { - "CommandName": "Set-PnPSite", - "Rank": 6, "Command": "Set-PnPSite -NoScriptSite $false", + "Rank": 6, + "CommandName": "Set-PnPSite", "Id": 1436 }, { - "CommandName": "Set-PnPSite", - "Rank": 7, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "Rank": 7, + "CommandName": "Set-PnPSite", "Id": 1437 }, { - "CommandName": "Set-PnPSite", - "Rank": 8, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "Rank": 8, + "CommandName": "Set-PnPSite", "Id": 1438 }, { - "CommandName": "Set-PnPSite", - "Rank": 9, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "Rank": 9, + "CommandName": "Set-PnPSite", "Id": 1439 }, { - "CommandName": "Set-PnPSite", - "Rank": 10, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "Rank": 10, + "CommandName": "Set-PnPSite", "Id": 1440 }, { - "CommandName": "Set-PnPSite", - "Rank": 11, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "Rank": 11, + "CommandName": "Set-PnPSite", "Id": 1441 }, { - "CommandName": "Set-PnPSite", - "Rank": 12, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "Rank": 12, + "CommandName": "Set-PnPSite", "Id": 1442 }, { - "CommandName": "Set-PnPSite", - "Rank": 13, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "Rank": 13, + "CommandName": "Set-PnPSite", "Id": 1443 }, { - "CommandName": "Set-PnPSite", - "Rank": 14, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "Rank": 14, + "CommandName": "Set-PnPSite", "Id": 1444 }, { - "CommandName": "Set-PnPSite", - "Rank": 15, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "Rank": 15, + "CommandName": "Set-PnPSite", "Id": 1445 }, { - "CommandName": "Set-PnPSite", - "Rank": 16, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "Rank": 16, + "CommandName": "Set-PnPSite", "Id": 1446 }, { - "CommandName": "Set-PnPSite", - "Rank": 17, "Command": "Set-PnPSite -CancelVPForExistingLibs", + "Rank": 17, + "CommandName": "Set-PnPSite", "Id": 1447 }, { - "CommandName": "Set-PnPSiteClassification", - "Rank": 1, "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "Rank": 1, + "CommandName": "Set-PnPSiteClassification", "Id": 1448 }, { - "CommandName": "Set-PnPSiteClosure", - "Rank": 1, "Command": "Set-PnPSiteClosure -State Open", + "Rank": 1, + "CommandName": "Set-PnPSiteClosure", "Id": 1449 }, { - "CommandName": "Set-PnPSiteClosure", - "Rank": 2, "Command": "Set-PnPSiteClosure -State Closed", + "Rank": 2, + "CommandName": "Set-PnPSiteClosure", "Id": 1450 }, { - "CommandName": "Set-PnPSiteDesign", - "Rank": 1, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "Rank": 1, + "CommandName": "Set-PnPSiteDesign", "Id": 1451 }, { - "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\"", + "Rank": 2, + "CommandName": "Set-PnPSiteDesign", "Id": 1452 }, { - "CommandName": "Set-PnPSiteGroup", - "Rank": 1, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "Rank": 1, + "CommandName": "Set-PnPSiteGroup", "Id": 1453 }, { - "CommandName": "Set-PnPSiteGroup", - "Rank": 2, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "Rank": 2, + "CommandName": "Set-PnPSiteGroup", "Id": 1454 }, { - "CommandName": "Set-PnPSitePolicy", - "Rank": 1, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "Rank": 1, + "CommandName": "Set-PnPSitePolicy", "Id": 1455 }, { - "CommandName": "Set-PnPSiteScript", - "Rank": 1, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Rank": 1, + "CommandName": "Set-PnPSiteScript", "Id": 1456 }, { - "CommandName": "Set-PnPSiteScriptPackage", - "Rank": 1, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Rank": 1, + "CommandName": "Set-PnPSiteScriptPackage", "Id": 1457 }, { - "CommandName": "Set-PnPSiteSensitivityLabel", - "Rank": 1, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "Rank": 1, + "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1458 }, { - "CommandName": "Set-PnPSiteSensitivityLabel", - "Rank": 2, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "Rank": 2, + "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1459 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 1, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "Rank": 1, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1460 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 2, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "Rank": 2, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1461 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 3, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Rank": 3, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1462 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 4, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Rank": 4, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1463 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 5, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Rank": 5, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1464 }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 6, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Rank": 6, + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1465 }, { - "CommandName": "Set-PnPStorageEntity", - "Rank": 1, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Rank": 1, + "CommandName": "Set-PnPStorageEntity", "Id": 1466 }, { - "CommandName": "Set-PnPStorageEntity", - "Rank": 2, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Rank": 2, + "CommandName": "Set-PnPStorageEntity", "Id": 1467 }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Rank": 1, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1468 }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Rank": 2, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1469 }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Rank": 1, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1470 }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Rank": 2, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1471 }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Rank": 1, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "Rank": 1, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1472 }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Rank": 2, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "Rank": 2, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1473 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 1, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "Rank": 1, + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1474 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 2, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "Rank": 2, + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1475 }, { - "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 3, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "Rank": 3, + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1476 }, { - "CommandName": "Set-PnPTeamifyPromptHidden", - "Rank": 1, "Command": "Set-PnPTeamifyPromptHidden", + "Rank": 1, + "CommandName": "Set-PnPTeamifyPromptHidden", "Id": 1477 }, { - "CommandName": "Set-PnPTeamsChannel", - "Rank": 1, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "Rank": 1, + "CommandName": "Set-PnPTeamsChannel", "Id": 1478 }, { - "CommandName": "Set-PnPTeamsChannel", - "Rank": 2, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "Rank": 2, + "CommandName": "Set-PnPTeamsChannel", "Id": 1479 }, { - "CommandName": "Set-PnpTeamsChannelUser", - "Rank": 1, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", + "Rank": 1, + "CommandName": "Set-PnpTeamsChannelUser", "Id": 1480 }, { - "CommandName": "Set-PnpTeamsChannelUser", - "Rank": 2, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "Rank": 2, + "CommandName": "Set-PnpTeamsChannelUser", "Id": 1481 }, { - "CommandName": "Set-PnPTeamsTab", - "Rank": 1, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "Rank": 1, + "CommandName": "Set-PnPTeamsTab", "Id": 1482 }, { - "CommandName": "Set-PnPTeamsTag", - "Rank": 1, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "Rank": 1, + "CommandName": "Set-PnPTeamsTag", "Id": 1483 }, { - "CommandName": "Set-PnPTeamsTeam", - "Rank": 1, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "Rank": 1, + "CommandName": "Set-PnPTeamsTeam", "Id": 1484 }, { - "CommandName": "Set-PnPTeamsTeam", - "Rank": 2, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "Rank": 2, + "CommandName": "Set-PnPTeamsTeam", "Id": 1485 }, { - "CommandName": "Set-PnPTeamsTeam", - "Rank": 3, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "Rank": 3, + "CommandName": "Set-PnPTeamsTeam", "Id": 1486 }, { - "CommandName": "Set-PnPTeamsTeam", - "Rank": 4, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "Rank": 4, + "CommandName": "Set-PnPTeamsTeam", "Id": 1487 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 1, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "Rank": 1, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1488 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 2, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "Rank": 2, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1489 }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 3, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "Rank": 3, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1490 }, { - "CommandName": "Set-PnPTeamsTeamPicture", - "Rank": 1, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "Rank": 1, + "CommandName": "Set-PnPTeamsTeamPicture", "Id": 1491 }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Rank": 1, "Command": "Set-PnPTemporarilyDisableAppBar $true", + "Rank": 1, + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1492 }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Rank": 2, "Command": "Set-PnPTemporarilyDisableAppBar $false", + "Rank": 2, + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1493 }, { - "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\"", + "Rank": 1, + "CommandName": "Set-PnPTenant", "Id": 1494 }, { - "CommandName": "Set-PnPTenant", - "Rank": 2, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "Rank": 2, + "CommandName": "Set-PnPTenant", "Id": 1495 }, { - "CommandName": "Set-PnPTenant", - "Rank": 3, "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "Rank": 3, + "CommandName": "Set-PnPTenant", "Id": 1496 }, { - "CommandName": "Set-PnPTenant", - "Rank": 4, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "Rank": 4, + "CommandName": "Set-PnPTenant", "Id": 1497 }, { - "CommandName": "Set-PnPTenantAppCatalogUrl", - "Rank": 1, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "Rank": 1, + "CommandName": "Set-PnPTenantAppCatalogUrl", "Id": 1498 }, { - "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 1, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "Rank": 1, + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1499 }, { - "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 2, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "Rank": 2, + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1500 }, { - "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 3, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "Rank": 3, + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1501 }, { - "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\"", + "Rank": 1, + "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1502 }, { - "CommandName": "Set-PnPTenantCdnPolicy", - "Rank": 2, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "Rank": 2, + "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1503 }, { - "CommandName": "Set-PnPTenantSite", - "Rank": 1, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "Rank": 1, + "CommandName": "Set-PnPTenantSite", "Id": 1504 }, { - "CommandName": "Set-PnPTenantSite", - "Rank": 2, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "Rank": 2, + "CommandName": "Set-PnPTenantSite", "Id": 1505 }, { - "CommandName": "Set-PnPTenantSite", - "Rank": 3, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 3, + "CommandName": "Set-PnPTenantSite", "Id": 1506 }, { - "CommandName": "Set-PnPTenantSite", - "Rank": 4, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 4, + "CommandName": "Set-PnPTenantSite", "Id": 1507 }, { - "CommandName": "Set-PnPTenantSite", - "Rank": 5, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "Rank": 5, + "CommandName": "Set-PnPTenantSite", "Id": 1508 }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Rank": 1, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "Rank": 1, + "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1509 }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Rank": 2, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "Rank": 2, + "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1510 }, { - "CommandName": "Set-PnPTerm", - "Rank": 1, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "Rank": 1, + "CommandName": "Set-PnPTerm", "Id": 1511 }, { - "CommandName": "Set-PnPTerm", - "Rank": 2, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 2, + "CommandName": "Set-PnPTerm", "Id": 1512 }, { - "CommandName": "Set-PnPTerm", - "Rank": 3, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 3, + "CommandName": "Set-PnPTerm", "Id": 1513 }, { - "CommandName": "Set-PnPTerm", - "Rank": 4, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "Rank": 4, + "CommandName": "Set-PnPTerm", "Id": 1514 }, { - "CommandName": "Set-PnPTermGroup", - "Rank": 1, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "Rank": 1, + "CommandName": "Set-PnPTermGroup", "Id": 1515 }, { - "CommandName": "Set-PnPTermSet", - "Rank": 1, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "Rank": 1, + "CommandName": "Set-PnPTermSet", "Id": 1516 }, { - "CommandName": "Set-PnPTermSet", - "Rank": 2, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "Rank": 2, + "CommandName": "Set-PnPTermSet", "Id": 1517 }, { - "CommandName": "Set-PnPTermSet", - "Rank": 3, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "Rank": 3, + "CommandName": "Set-PnPTermSet", "Id": 1518 }, { - "CommandName": "Set-PnPTheme", - "Rank": 1, "Command": "Set-PnPTheme", + "Rank": 1, + "CommandName": "Set-PnPTheme", "Id": 1519 }, { - "CommandName": "Set-PnPTheme", - "Rank": 2, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "Rank": 2, + "CommandName": "Set-PnPTheme", "Id": 1520 }, { - "CommandName": "Set-PnPTheme", - "Rank": 3, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "Rank": 3, + "CommandName": "Set-PnPTheme", "Id": 1521 }, { - "CommandName": "Set-PnPTheme", - "Rank": 4, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "Rank": 4, + "CommandName": "Set-PnPTheme", "Id": 1522 }, { - "CommandName": "Set-PnPTraceLog", - "Rank": 1, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "Rank": 1, + "CommandName": "Set-PnPTraceLog", "Id": 1523 }, { - "CommandName": "Set-PnPTraceLog", - "Rank": 2, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "Rank": 2, + "CommandName": "Set-PnPTraceLog", "Id": 1524 }, { - "CommandName": "Set-PnPTraceLog", - "Rank": 3, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "Rank": 3, + "CommandName": "Set-PnPTraceLog", "Id": 1525 }, { - "CommandName": "Set-PnPTraceLog", - "Rank": 4, "Command": "Set-PnPTraceLog -Off", + "Rank": 4, + "CommandName": "Set-PnPTraceLog", "Id": 1526 }, { - "CommandName": "Set-PnPUserOneDriveQuota", - "Rank": 1, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "Rank": 1, + "CommandName": "Set-PnPUserOneDriveQuota", "Id": 1527 }, { - "CommandName": "Set-PnPUserProfileProperty", - "Rank": 1, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "Rank": 1, + "CommandName": "Set-PnPUserProfileProperty", "Id": 1528 }, { - "CommandName": "Set-PnPUserProfileProperty", - "Rank": 2, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "Rank": 2, + "CommandName": "Set-PnPUserProfileProperty", "Id": 1529 }, { - "CommandName": "Set-PnPView", - "Rank": 1, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "Rank": 1, + "CommandName": "Set-PnPView", "Id": 1530 }, { - "CommandName": "Set-PnPView", - "Rank": 2, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "Rank": 2, + "CommandName": "Set-PnPView", "Id": 1531 }, { - "CommandName": "Set-PnPView", - "Rank": 3, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "Rank": 3, + "CommandName": "Set-PnPView", "Id": 1532 }, { - "CommandName": "Set-PnPView", - "Rank": 4, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "Rank": 4, + "CommandName": "Set-PnPView", "Id": 1533 }, { - "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", + "Rank": 1, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1534 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 2, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "Rank": 2, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1535 }, { - "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", + "Rank": 3, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1536 }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 4, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "Rank": 4, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1537 }, { - "CommandName": "Set-PnPWeb", - "Rank": 1, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "Rank": 1, + "CommandName": "Set-PnPWeb", "Id": 1538 }, { - "CommandName": "Set-PnPWeb", - "Rank": 2, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "Rank": 2, + "CommandName": "Set-PnPWeb", "Id": 1539 }, { - "CommandName": "Set-PnPWeb", - "Rank": 3, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "Rank": 3, + "CommandName": "Set-PnPWeb", "Id": 1540 }, { - "CommandName": "Set-PnPWeb", - "Rank": 4, "Command": "Set-PnPWeb -NoCrawl:$true", + "Rank": 4, + "CommandName": "Set-PnPWeb", "Id": 1541 }, { - "CommandName": "Set-PnPWebHeader", - "Rank": 1, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "Rank": 1, + "CommandName": "Set-PnPWebHeader", "Id": 1542 }, { - "CommandName": "Set-PnPWebHeader", - "Rank": 2, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "Rank": 2, + "CommandName": "Set-PnPWebHeader", "Id": 1543 }, { - "CommandName": "Set-PnPWebHeader", - "Rank": 3, "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "Rank": 3, + "CommandName": "Set-PnPWebHeader", "Id": 1544 }, { - "CommandName": "Set-PnPWebhookSubscription", - "Rank": 1, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Rank": 1, + "CommandName": "Set-PnPWebhookSubscription", "Id": 1545 }, { - "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\"", + "Rank": 2, + "CommandName": "Set-PnPWebhookSubscription", "Id": 1546 }, { - "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\"", + "Rank": 1, + "CommandName": "Set-PnPWebPartProperty", "Id": 1547 }, { - "CommandName": "Set-PnPWebPermission", - "Rank": 1, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Rank": 1, + "CommandName": "Set-PnPWebPermission", "Id": 1548 }, { - "CommandName": "Set-PnPWebPermission", - "Rank": 2, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "Rank": 2, + "CommandName": "Set-PnPWebPermission", "Id": 1549 }, { - "CommandName": "Set-PnPWebPermission", - "Rank": 3, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Rank": 3, + "CommandName": "Set-PnPWebPermission", "Id": 1550 }, { - "CommandName": "Set-PnPWebPermission", - "Rank": 4, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "Rank": 4, + "CommandName": "Set-PnPWebPermission", "Id": 1551 }, { - "CommandName": "Set-PnPWebTheme", - "Rank": 1, "Command": "Set-PnPWebTheme -Theme MyTheme", + "Rank": 1, + "CommandName": "Set-PnPWebTheme", "Id": 1552 }, { - "CommandName": "Set-PnPWebTheme", - "Rank": 2, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "Rank": 2, + "CommandName": "Set-PnPWebTheme", "Id": 1553 }, { - "CommandName": "Set-PnPWikiPageContent", - "Rank": 1, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "Rank": 1, + "CommandName": "Set-PnPWikiPageContent", "Id": 1554 }, { - "CommandName": "Submit-PnPSearchQuery", - "Rank": 1, "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "Rank": 1, + "CommandName": "Submit-PnPSearchQuery", "Id": 1555 }, { - "CommandName": "Submit-PnPSearchQuery", - "Rank": 2, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "Rank": 2, + "CommandName": "Submit-PnPSearchQuery", "Id": 1556 }, { - "CommandName": "Submit-PnPSearchQuery", - "Rank": 3, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "Rank": 3, + "CommandName": "Submit-PnPSearchQuery", "Id": 1557 }, { - "CommandName": "Submit-PnPSearchQuery", - "Rank": 4, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "Rank": 4, + "CommandName": "Submit-PnPSearchQuery", "Id": 1558 }, { - "CommandName": "Submit-PnPSearchQuery", - "Rank": 5, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "Rank": 5, + "CommandName": "Submit-PnPSearchQuery", "Id": 1559 }, { - "CommandName": "Submit-PnPSearchQuery", - "Rank": 6, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", + "Rank": 6, + "CommandName": "Submit-PnPSearchQuery", "Id": 1560 }, { - "CommandName": "Submit-PnPTeamsChannelMessage", - "Rank": 1, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "Rank": 1, + "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1561 }, { - "CommandName": "Submit-PnPTeamsChannelMessage", - "Rank": 2, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "Rank": 2, + "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1562 }, { - "CommandName": "Sync-PnPAppToTeams", - "Rank": 1, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, + "CommandName": "Sync-PnPAppToTeams", "Id": 1563 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 1, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "Rank": 1, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1564 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 2, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "Rank": 2, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1565 }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 3, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "Rank": 3, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1566 }, { - "CommandName": "Test-PnPListItemIsRecord", - "Rank": 1, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "Rank": 1, + "CommandName": "Test-PnPListItemIsRecord", "Id": 1567 }, { - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Rank": 1, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "Rank": 1, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Id": 1568 }, { - "CommandName": "Test-PnPSite", - "Rank": 1, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1, + "CommandName": "Test-PnPSite", "Id": 1569 }, { - "CommandName": "Test-PnPSite", - "Rank": 2, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Rank": 2, + "CommandName": "Test-PnPSite", "Id": 1570 }, { - "CommandName": "Test-PnPTenantTemplate", - "Rank": 1, "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "Rank": 1, + "CommandName": "Test-PnPTenantTemplate", "Id": 1571 }, { - "CommandName": "Undo-PnPFileCheckedOut", - "Rank": 1, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "Rank": 1, + "CommandName": "Undo-PnPFileCheckedOut", "Id": 1572 }, { - "CommandName": "Uninstall-PnPApp", - "Rank": 1, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, + "CommandName": "Uninstall-PnPApp", "Id": 1573 }, { - "CommandName": "Uninstall-PnPApp", - "Rank": 2, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, + "CommandName": "Uninstall-PnPApp", "Id": 1574 }, { - "CommandName": "Unpublish-PnPApp", - "Rank": 1, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, + "CommandName": "Unpublish-PnPApp", "Id": 1575 }, { - "CommandName": "Unpublish-PnPApp", - "Rank": 2, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, + "CommandName": "Unpublish-PnPApp", "Id": 1576 }, { - "CommandName": "Unpublish-PnPContentType", - "Rank": 1, "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "Rank": 1, + "CommandName": "Unpublish-PnPContentType", "Id": 1577 }, { - "CommandName": "Unpublish-PnPSyntexModel", - "Rank": 1, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Rank": 1, + "CommandName": "Unpublish-PnPSyntexModel", "Id": 1578 }, { - "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", + "Rank": 2, + "CommandName": "Unpublish-PnPSyntexModel", "Id": 1579 }, { - "CommandName": "Unregister-PnPHubSite", - "Rank": 1, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Rank": 1, + "CommandName": "Unregister-PnPHubSite", "Id": 1580 }, { - "CommandName": "Update-PnPApp", - "Rank": 1, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, + "CommandName": "Update-PnPApp", "Id": 1581 }, { - "CommandName": "Update-PnPApp", - "Rank": 2, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, + "CommandName": "Update-PnPApp", "Id": 1582 }, { - "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 1, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Rank": 1, + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1583 }, { - "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 2, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "Rank": 2, + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1584 }, { - "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 3, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 3, + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1585 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 1, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "Rank": 1, + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1586 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 2, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Rank": 2, + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1587 }, { - "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 3, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "Rank": 3, + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1588 }, { - "CommandName": "Update-PnPTeamsApp", - "Rank": 1, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "Rank": 1, + "CommandName": "Update-PnPTeamsApp", "Id": 1589 }, { - "CommandName": "Update-PnPTeamsUser", - "Rank": 1, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 1, + "CommandName": "Update-PnPTeamsUser", "Id": 1590 }, { - "CommandName": "Update-PnPTeamsUser", - "Rank": 2, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Rank": 2, + "CommandName": "Update-PnPTeamsUser", "Id": 1591 }, { - "CommandName": "Update-PnPTeamsUser", - "Rank": 3, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "Rank": 3, + "CommandName": "Update-PnPTeamsUser", "Id": 1592 }, { - "CommandName": "Update-PnPUserType", - "Rank": 1, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "Rank": 1, + "CommandName": "Update-PnPUserType", "Id": 1593 } ] diff --git a/version.txt b/version.txt index ac0b42123..5a2a88b06 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.110 \ No newline at end of file +2.2.111 \ No newline at end of file From 7349fcf34fd2c507133e116849ed35d0dab9d886 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sat, 28 Oct 2023 02:37:39 +0000 Subject: [PATCH 117/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6372 ++++++++--------- version.txt | 2 +- 3 files changed, 3188 insertions(+), 3188 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index d287b677e..557c1ef84 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -1038b9c8f299faca7bce33cb8ea3102f4f0f478d \ No newline at end of file +c4949215d6ad8d141a8b26d0a4504529043b0fd8 \ 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 aff9f22cc..e7bc9b5d1 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -2,9559 +2,9559 @@ { "Command": "Add-PnPAlert -List \"Demo List\"", "Rank": 1, - "CommandName": "Add-PnPAlert", - "Id": 1 + "Id": 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)", "Rank": 2, - "CommandName": "Add-PnPAlert", - "Id": 2 + "Id": 2, + "CommandName": "Add-PnPAlert" }, { "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Add-PnPAlert", - "Id": 3 + "Id": 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))", "Rank": 4, - "CommandName": "Add-PnPAlert", - "Id": 4 + "Id": 4, + "CommandName": "Add-PnPAlert" }, { "Command": "Add-PnPApp -Path ./myapp.sppkg", "Rank": 1, - "CommandName": "Add-PnPApp", - "Id": 5 + "Id": 5, + "CommandName": "Add-PnPApp" }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Rank": 2, - "CommandName": "Add-PnPApp", - "Id": 6 + "Id": 6, + "CommandName": "Add-PnPApp" }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Rank": 3, - "CommandName": "Add-PnPApp", - "Id": 7 + "Id": 7, + "CommandName": "Add-PnPApp" }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Rank": 4, - "CommandName": "Add-PnPApp", - "Id": 8 + "Id": 8, + "CommandName": "Add-PnPApp" }, { "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", - "Id": 9 + "Id": 9, + "CommandName": "Add-PnPApplicationCustomizer" }, { "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Rank": 1, - "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 10 + "Id": 10, + "CommandName": "Add-PnPAvailableSiteClassification" }, { "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Rank": 2, - "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 11 + "Id": 11, + "CommandName": "Add-PnPAvailableSiteClassification" }, { "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 12 + "Id": 12, + "CommandName": "Add-PnPAzureADGroupMember" }, { "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 13 + "Id": 13, + "CommandName": "Add-PnPAzureADGroupMember" }, { "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 14 + "Id": 14, + "CommandName": "Add-PnPAzureADGroupMember" }, { "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 15 + "Id": 15, + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 16 + "Id": 16, + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 17 + "Id": 17, + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "Rank": 1, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 18 + "Id": 18, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "Rank": 2, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 19 + "Id": 19, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "Rank": 1, - "CommandName": "Add-PnPContentType", - "Id": 20 + "Id": 20, + "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\"", "Rank": 2, - "CommandName": "Add-PnPContentType", - "Id": 21 + "Id": 21, + "CommandName": "Add-PnPContentType" }, { "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "Rank": 3, - "CommandName": "Add-PnPContentType", - "Id": 22 + "Id": 22, + "CommandName": "Add-PnPContentType" }, { "Command": "Add-PnPContentType -Name \"Project Item\"", "Rank": 4, - "CommandName": "Add-PnPContentType", - "Id": 23 + "Id": 23, + "CommandName": "Add-PnPContentType" }, { "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "Rank": 5, - "CommandName": "Add-PnPContentType", - "Id": 24 + "Id": 24, + "CommandName": "Add-PnPContentType" }, { "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Rank": 1, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 25 + "Id": 25, + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Rank": 2, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 26 + "Id": 26, + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 27 + "Id": 27, + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 28 + "Id": 28, + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Rank": 1, - "CommandName": "Add-PnPContentTypeToList", - "Id": 29 + "Id": 29, + "CommandName": "Add-PnPContentTypeToList" }, { "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", - "Id": 30 + "Id": 30, + "CommandName": "Add-PnPCustomAction" }, { "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "Rank": 1, - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 31 + "Id": 31, + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "Rank": 2, - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 32 + "Id": 32, + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Rank": 1, - "CommandName": "Add-PnPDocumentSet", - "Id": 33 + "Id": 33, + "CommandName": "Add-PnPDocumentSet" }, { "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "Rank": 1, - "CommandName": "Add-PnPEventReceiver", - "Id": 34 + "Id": 34, + "CommandName": "Add-PnPEventReceiver" }, { "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "Rank": 2, - "CommandName": "Add-PnPEventReceiver", - "Id": 35 + "Id": 35, + "CommandName": "Add-PnPEventReceiver" }, { "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", "Rank": 3, - "CommandName": "Add-PnPEventReceiver", - "Id": 36 + "Id": 36, + "CommandName": "Add-PnPEventReceiver" }, { "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "Rank": 4, - "CommandName": "Add-PnPEventReceiver", - "Id": 37 + "Id": 37, + "CommandName": "Add-PnPEventReceiver" }, { "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Rank": 1, - "CommandName": "Add-PnPField", - "Id": 38 + "Id": 38, + "CommandName": "Add-PnPField" }, { "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", - "Id": 39 + "Id": 39, + "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\"", "Rank": 3, - "CommandName": "Add-PnPField", - "Id": 40 + "Id": 40, + "CommandName": "Add-PnPField" }, { "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "Rank": 4, - "CommandName": "Add-PnPField", - "Id": 41 + "Id": 41, + "CommandName": "Add-PnPField" }, { "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "Rank": 5, - "CommandName": "Add-PnPField", - "Id": 42 + "Id": 42, + "CommandName": "Add-PnPField" }, { "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Rank": 6, - "CommandName": "Add-PnPField", - "Id": 43 + "Id": 43, + "CommandName": "Add-PnPField" }, { "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Add-PnPFieldToContentType", - "Id": 44 + "Id": 44, + "CommandName": "Add-PnPFieldToContentType" }, { "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Rank": 1, - "CommandName": "Add-PnPFile", - "Id": 45 + "Id": 45, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Rank": 2, - "CommandName": "Add-PnPFile", - "Id": 46 + "Id": 46, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "Rank": 3, - "CommandName": "Add-PnPFile", - "Id": 47 + "Id": 47, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "Rank": 4, - "CommandName": "Add-PnPFile", - "Id": 48 + "Id": 48, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "Rank": 5, - "CommandName": "Add-PnPFile", - "Id": 49 + "Id": 49, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "Rank": 6, - "CommandName": "Add-PnPFile", - "Id": 50 + "Id": 50, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Rank": 7, - "CommandName": "Add-PnPFile", - "Id": 51 + "Id": 51, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Rank": 8, - "CommandName": "Add-PnPFile", - "Id": 52 + "Id": 52, + "CommandName": "Add-PnPFile" }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 53 + "Id": 53, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 54 + "Id": 54, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3, - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 55 + "Id": 55, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 56 + "Id": 56, + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "Rank": 2, - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 57 + "Id": 57, + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "CommandName": "Add-PnPFileSharingInvite", - "Id": 58 + "Id": 58, + "CommandName": "Add-PnPFileSharingInvite" }, { "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Rank": 2, - "CommandName": "Add-PnPFileSharingInvite", - "Id": 59 + "Id": 59, + "CommandName": "Add-PnPFileSharingInvite" }, { "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", - "Id": 60 + "Id": 60, + "CommandName": "Add-PnPFileSharingInvite" }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Rank": 1, - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 61 + "Id": 61, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "Rank": 2, - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 62 + "Id": 62, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "Rank": 3, - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 63 + "Id": 63, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "Rank": 4, - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 64 + "Id": 64, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Rank": 5, - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 65 + "Id": 65, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPFileUserSharingLink", - "Id": 66 + "Id": 66, + "CommandName": "Add-PnPFileUserSharingLink" }, { "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", - "Id": 67 + "Id": 67, + "CommandName": "Add-PnPFileUserSharingLink" }, { "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", - "Id": 68 + "Id": 68, + "CommandName": "Add-PnPFlowOwner" }, { "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", - "Id": 69 + "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 CanViewWithShare", "Rank": 3, - "CommandName": "Add-PnPFlowOwner", - "Id": 70 + "Id": 70, + "CommandName": "Add-PnPFlowOwner" }, { "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", - "Id": 71 + "Id": 71, + "CommandName": "Add-PnPFlowOwner" }, { "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "CommandName": "Add-PnPFolder", - "Id": 72 + "Id": 72, + "CommandName": "Add-PnPFolder" }, { "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Rank": 2, - "CommandName": "Add-PnPFolder", - "Id": 73 + "Id": 73, + "CommandName": "Add-PnPFolder" }, { "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Rank": 3, - "CommandName": "Add-PnPFolder", - "Id": 74 + "Id": 74, + "CommandName": "Add-PnPFolder" }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 75 + "Id": 75, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 76 + "Id": 76, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3, - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 77 + "Id": 77, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 78 + "Id": 78, + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Rank": 2, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 79 + "Id": 79, + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "CommandName": "Add-PnPFolderSharingInvite", - "Id": 80 + "Id": 80, + "CommandName": "Add-PnPFolderSharingInvite" }, { "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Rank": 2, - "CommandName": "Add-PnPFolderSharingInvite", - "Id": 81 + "Id": 81, + "CommandName": "Add-PnPFolderSharingInvite" }, { "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", - "Id": 82 + "Id": 82, + "CommandName": "Add-PnPFolderSharingInvite" }, { "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPFolderUserSharingLink", - "Id": 83 + "Id": 83, + "CommandName": "Add-PnPFolderUserSharingLink" }, { "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", - "Id": 84 + "Id": 84, + "CommandName": "Add-PnPFolderUserSharingLink" }, { "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "CommandName": "Add-PnPGroupMember", - "Id": 85 + "Id": 85, + "CommandName": "Add-PnPGroupMember" }, { "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Rank": 2, - "CommandName": "Add-PnPGroupMember", - "Id": 86 + "Id": 86, + "CommandName": "Add-PnPGroupMember" }, { "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Rank": 1, - "CommandName": "Add-PnPHtmlPublishingPageLayout", - "Id": 87 + "Id": 87, + "CommandName": "Add-PnPHtmlPublishingPageLayout" }, { "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Rank": 1, - "CommandName": "Add-PnPHubSiteAssociation", - "Id": 88 + "Id": 88, + "CommandName": "Add-PnPHubSiteAssociation" }, { "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "Rank": 1, - "CommandName": "Add-PnPHubToHubAssociation", - "Id": 89 + "Id": 89, + "CommandName": "Add-PnPHubToHubAssociation" }, { "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "Rank": 2, - "CommandName": "Add-PnPHubToHubAssociation", - "Id": 90 + "Id": 90, + "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\"", "Rank": 3, - "CommandName": "Add-PnPHubToHubAssociation", - "Id": 91 + "Id": 91, + "CommandName": "Add-PnPHubToHubAssociation" }, { "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "Rank": 1, - "CommandName": "Add-PnPJavaScriptBlock", - "Id": 92 + "Id": 92, + "CommandName": "Add-PnPJavaScriptBlock" }, { "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "Rank": 2, - "CommandName": "Add-PnPJavaScriptBlock", - "Id": 93 + "Id": 93, + "CommandName": "Add-PnPJavaScriptBlock" }, { "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "Rank": 1, - "CommandName": "Add-PnPJavaScriptLink", - "Id": 94 + "Id": 94, + "CommandName": "Add-PnPJavaScriptLink" }, { "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Rank": 2, - "CommandName": "Add-PnPJavaScriptLink", - "Id": 95 + "Id": 95, + "CommandName": "Add-PnPJavaScriptLink" }, { "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "Rank": 1, - "CommandName": "Add-PnPListDesign", - "Id": 96 + "Id": 96, + "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\"", "Rank": 2, - "CommandName": "Add-PnPListDesign", - "Id": 97 + "Id": 97, + "CommandName": "Add-PnPListDesign" }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Rank": 1, - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 98 + "Id": 98, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "Rank": 2, - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 99 + "Id": 99, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Rank": 3, - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 100 + "Id": 100, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "CommandName": "Add-PnPListItem", - "Id": 101 + "Id": 101, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "CommandName": "Add-PnPListItem", - "Id": 102 + "Id": 102, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "Rank": 3, - "CommandName": "Add-PnPListItem", - "Id": 103 + "Id": 103, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "Rank": 4, - "CommandName": "Add-PnPListItem", - "Id": 104 + "Id": 104, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Rank": 5, - "CommandName": "Add-PnPListItem", - "Id": 105 + "Id": 105, + "CommandName": "Add-PnPListItem" }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "Rank": 1, - "CommandName": "Add-PnPListItemAttachment", - "Id": 106 + "Id": 106, + "CommandName": "Add-PnPListItemAttachment" }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "Rank": 2, - "CommandName": "Add-PnPListItemAttachment", - "Id": 107 + "Id": 107, + "CommandName": "Add-PnPListItemAttachment" }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Rank": 3, - "CommandName": "Add-PnPListItemAttachment", - "Id": 108 + "Id": 108, + "CommandName": "Add-PnPListItemAttachment" }, { "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Rank": 1, - "CommandName": "Add-PnPListItemComment", - "Id": 109 + "Id": 109, + "CommandName": "Add-PnPListItemComment" }, { "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Rank": 1, - "CommandName": "Add-PnPMasterPage", - "Id": 110 + "Id": 110, + "CommandName": "Add-PnPMasterPage" }, { "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 111 + "Id": 111, + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 112 + "Id": 112, + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 113 + "Id": 113, + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 114 + "Id": 114, + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 115 + "Id": 115, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 116 + "Id": 116, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Rank": 3, - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 117 + "Id": 117, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "Rank": 1, - "CommandName": "Add-PnPNavigationNode", - "Id": 118 + "Id": 118, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "Rank": 2, - "CommandName": "Add-PnPNavigationNode", - "Id": 119 + "Id": 119, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "Rank": 3, - "CommandName": "Add-PnPNavigationNode", - "Id": 120 + "Id": 120, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "Rank": 4, - "CommandName": "Add-PnPNavigationNode", - "Id": 121 + "Id": 121, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Rank": 5, - "CommandName": "Add-PnPNavigationNode", - "Id": 122 + "Id": 122, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Rank": 6, - "CommandName": "Add-PnPNavigationNode", - "Id": 123 + "Id": 123, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Rank": 7, - "CommandName": "Add-PnPNavigationNode", - "Id": 124 + "Id": 124, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Rank": 8, - "CommandName": "Add-PnPNavigationNode", - "Id": 125 + "Id": 125, + "CommandName": "Add-PnPNavigationNode" }, { "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "Rank": 1, - "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 126 + "Id": 126, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { "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", - "Id": 127 + "Id": 127, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Rank": 3, - "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 128 + "Id": 128, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Rank": 1, - "CommandName": "Add-PnPOrgNewsSite", - "Id": 129 + "Id": 129, + "CommandName": "Add-PnPOrgNewsSite" }, { "Command": "Add-PnPPage -Name \"NewPage\"", "Rank": 1, - "CommandName": "Add-PnPPage", - "Id": 130 + "Id": 130, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Rank": 2, - "CommandName": "Add-PnPPage", - "Id": 131 + "Id": 131, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Rank": 3, - "CommandName": "Add-PnPPage", - "Id": 132 + "Id": 132, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Rank": 4, - "CommandName": "Add-PnPPage", - "Id": 133 + "Id": 133, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Rank": 5, - "CommandName": "Add-PnPPage", - "Id": 134 + "Id": 134, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Rank": 6, - "CommandName": "Add-PnPPage", - "Id": 135 + "Id": 135, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "CommandName": "Add-PnPPage", - "Id": 136 + "Id": 136, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Rank": 8, - "CommandName": "Add-PnPPage", - "Id": 137 + "Id": 137, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "CommandName": "Add-PnPPage", - "Id": 138 + "Id": 138, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "CommandName": "Add-PnPPage", - "Id": 139 + "Id": 139, + "CommandName": "Add-PnPPage" }, { "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "Rank": 1, - "CommandName": "Add-PnPPageImageWebPart", - "Id": 140 + "Id": 140, + "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\"", "Rank": 2, - "CommandName": "Add-PnPPageImageWebPart", - "Id": 141 + "Id": 141, + "CommandName": "Add-PnPPageImageWebPart" }, { "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Rank": 1, - "CommandName": "Add-PnPPageSection", - "Id": 142 + "Id": 142, + "CommandName": "Add-PnPPageSection" }, { "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Rank": 2, - "CommandName": "Add-PnPPageSection", - "Id": 143 + "Id": 143, + "CommandName": "Add-PnPPageSection" }, { "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Rank": 1, - "CommandName": "Add-PnPPageTextPart", - "Id": 144 + "Id": 144, + "CommandName": "Add-PnPPageTextPart" }, { "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "Rank": 2, - "CommandName": "Add-PnPPageTextPart", - "Id": 145 + "Id": 145, + "CommandName": "Add-PnPPageTextPart" }, { "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", - "Id": 146 + "Id": 146, + "CommandName": "Add-PnPPageTextPart" }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Rank": 1, - "CommandName": "Add-PnPPageWebPart", - "Id": 147 + "Id": 147, + "CommandName": "Add-PnPPageWebPart" }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Rank": 2, - "CommandName": "Add-PnPPageWebPart", - "Id": 148 + "Id": 148, + "CommandName": "Add-PnPPageWebPart" }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Rank": 3, - "CommandName": "Add-PnPPageWebPart", - "Id": 149 + "Id": 149, + "CommandName": "Add-PnPPageWebPart" }, { "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Rank": 1, - "CommandName": "Add-PnPPlannerBucket", - "Id": 150 + "Id": 150, + "CommandName": "Add-PnPPlannerBucket" }, { "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Rank": 2, - "CommandName": "Add-PnPPlannerBucket", - "Id": 151 + "Id": 151, + "CommandName": "Add-PnPPlannerBucket" }, { "Command": "Add-PnPPlannerRoster", "Rank": 1, - "CommandName": "Add-PnPPlannerRoster", - "Id": 152 + "Id": 152, + "CommandName": "Add-PnPPlannerRoster" }, { "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPPlannerRosterMember", - "Id": 153 + "Id": 153, + "CommandName": "Add-PnPPlannerRosterMember" }, { "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 1, - "CommandName": "Add-PnPPlannerTask", - "Id": 154 + "Id": 154, + "CommandName": "Add-PnPPlannerTask" }, { "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 2, - "CommandName": "Add-PnPPlannerTask", - "Id": 155 + "Id": 155, + "CommandName": "Add-PnPPlannerTask" }, { "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", - "Id": 156 + "Id": 156, + "CommandName": "Add-PnPPlannerTask" }, { "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "CommandName": "Add-PnPPublishingImageRendition", - "Id": 157 + "Id": 157, + "CommandName": "Add-PnPPublishingImageRendition" }, { "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "Rank": 1, - "CommandName": "Add-PnPPublishingPage", - "Id": 158 + "Id": 158, + "CommandName": "Add-PnPPublishingPage" }, { "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Rank": 2, - "CommandName": "Add-PnPPublishingPage", - "Id": 159 + "Id": 159, + "CommandName": "Add-PnPPublishingPage" }, { "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Rank": 1, - "CommandName": "Add-PnPPublishingPageLayout", - "Id": 160 + "Id": 160, + "CommandName": "Add-PnPPublishingPageLayout" }, { "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Rank": 1, - "CommandName": "Add-PnPRoleDefinition", - "Id": 161 + "Id": 161, + "CommandName": "Add-PnPRoleDefinition" }, { "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Rank": 2, - "CommandName": "Add-PnPRoleDefinition", - "Id": 162 + "Id": 162, + "CommandName": "Add-PnPRoleDefinition" }, { "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Rank": 3, - "CommandName": "Add-PnPRoleDefinition", - "Id": 163 + "Id": 163, + "CommandName": "Add-PnPRoleDefinition" }, { "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 164 + "Id": 164, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 165 + "Id": 165, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 166 + "Id": 166, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Command": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 167 + "Id": 167, + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 168 + "Id": 168, + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { "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", - "Id": 169 + "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 -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png", "Rank": 2, - "CommandName": "Add-PnPSiteDesign", - "Id": 170 + "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/my images/logo.png\"", "Rank": 3, - "CommandName": "Add-PnPSiteDesign", - "Id": 171 + "Id": 171, + "CommandName": "Add-PnPSiteDesign" }, { "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "Rank": 1, - "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 172 + "Id": 172, + "CommandName": "Add-PnPSiteDesignFromWeb" }, { "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2, - "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 173 + "Id": 173, + "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", "Rank": 3, - "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 174 + "Id": 174, + "CommandName": "Add-PnPSiteDesignFromWeb" }, { "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "CommandName": "Add-PnPSiteDesignTask", - "Id": 175 + "Id": 175, + "CommandName": "Add-PnPSiteDesignTask" }, { "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 2, - "CommandName": "Add-PnPSiteDesignTask", - "Id": 176 + "Id": 176, + "CommandName": "Add-PnPSiteDesignTask" }, { "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Rank": 1, - "CommandName": "Add-PnPSiteScript", - "Id": 177 + "Id": 177, + "CommandName": "Add-PnPSiteScript" }, { "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Rank": 1, - "CommandName": "Add-PnPSiteScriptPackage", - "Id": 178 + "Id": 178, + "CommandName": "Add-PnPSiteScriptPackage" }, { "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Rank": 1, - "CommandName": "Add-PnPSiteTemplate", - "Id": 179 + "Id": 179, + "CommandName": "Add-PnPSiteTemplate" }, { "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "Rank": 1, - "CommandName": "Add-PnPStoredCredential", - "Id": 180 + "Id": 180, + "CommandName": "Add-PnPStoredCredential" }, { "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", - "Id": 181 + "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)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"", "Rank": 3, - "CommandName": "Add-PnPStoredCredential", - "Id": 182 + "Id": 182, + "CommandName": "Add-PnPStoredCredential" }, { "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Rank": 1, - "CommandName": "Add-PnPTaxonomyField", - "Id": 183 + "Id": 183, + "CommandName": "Add-PnPTaxonomyField" }, { "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Rank": 2, - "CommandName": "Add-PnPTaxonomyField", - "Id": 184 + "Id": 184, + "CommandName": "Add-PnPTaxonomyField" }, { "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "Rank": 1, - "CommandName": "Add-PnPTeamsChannel", - "Id": 185 + "Id": 185, + "CommandName": "Add-PnPTeamsChannel" }, { "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Rank": 2, - "CommandName": "Add-PnPTeamsChannel", - "Id": 186 + "Id": 186, + "CommandName": "Add-PnPTeamsChannel" }, { "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "Rank": 3, - "CommandName": "Add-PnPTeamsChannel", - "Id": 187 + "Id": 187, + "CommandName": "Add-PnPTeamsChannel" }, { "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Rank": 4, - "CommandName": "Add-PnPTeamsChannel", - "Id": 188 + "Id": 188, + "CommandName": "Add-PnPTeamsChannel" }, { "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", - "Id": 189 + "Id": 189, + "CommandName": "Add-PnpTeamsChannelUser" }, { "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Rank": 2, - "CommandName": "Add-PnpTeamsChannelUser", - "Id": 190 + "Id": 190, + "CommandName": "Add-PnpTeamsChannelUser" }, { "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", - "Id": 191 + "Id": 191, + "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\"", "Rank": 2, - "CommandName": "Add-PnPTeamsTab", - "Id": 192 + "Id": 192, + "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\"", "Rank": 3, - "CommandName": "Add-PnPTeamsTab", - "Id": 193 + "Id": 193, + "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", "Rank": 4, - "CommandName": "Add-PnPTeamsTab", - "Id": 194 + "Id": 194, + "CommandName": "Add-PnPTeamsTab" }, { "Command": "Add-PnPTeamsTeam", "Rank": 1, - "CommandName": "Add-PnPTeamsTeam", - "Id": 195 + "Id": 195, + "CommandName": "Add-PnPTeamsTeam" }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "CommandName": "Add-PnPTeamsUser", - "Id": 196 + "Id": 196, + "CommandName": "Add-PnPTeamsUser" }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "CommandName": "Add-PnPTeamsUser", - "Id": 197 + "Id": 197, + "CommandName": "Add-PnPTeamsUser" }, { "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "Rank": 3, - "CommandName": "Add-PnPTeamsUser", - "Id": 198 + "Id": 198, + "CommandName": "Add-PnPTeamsUser" }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Rank": 4, - "CommandName": "Add-PnPTeamsUser", - "Id": 199 + "Id": 199, + "CommandName": "Add-PnPTeamsUser" }, { "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "CommandName": "Add-PnPTenantCdnOrigin", - "Id": 200 + "Id": 200, + "CommandName": "Add-PnPTenantCdnOrigin" }, { "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Rank": 1, - "CommandName": "Add-PnPTenantSequence", - "Id": 201 + "Id": 201, + "CommandName": "Add-PnPTenantSequence" }, { "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSite", - "Id": 202 + "Id": 202, + "CommandName": "Add-PnPTenantSequenceSite" }, { "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSubSite", - "Id": 203 + "Id": 203, + "CommandName": "Add-PnPTenantSequenceSubSite" }, { "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Rank": 1, - "CommandName": "Add-PnPTermToTerm", - "Id": 204 + "Id": 204, + "CommandName": "Add-PnPTermToTerm" }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "Rank": 1, - "CommandName": "Add-PnPView", - "Id": 205 + "Id": 205, + "CommandName": "Add-PnPView" }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "Rank": 2, - "CommandName": "Add-PnPView", - "Id": 206 + "Id": 206, + "CommandName": "Add-PnPView" }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "Rank": 3, - "CommandName": "Add-PnPView", - "Id": 207 + "Id": 207, + "CommandName": "Add-PnPView" }, { "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", - "Id": 208 + "Id": 208, + "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\"", "Rank": 2, - "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Id": 209 + "Id": 209, + "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\"", "Rank": 3, - "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Id": 210 + "Id": 210, + "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "CommandName": "Add-PnPWebhookSubscription", - "Id": 211 + "Id": 211, + "CommandName": "Add-PnPWebhookSubscription" }, { "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Rank": 2, - "CommandName": "Add-PnPWebhookSubscription", - "Id": 212 + "Id": 212, + "CommandName": "Add-PnPWebhookSubscription" }, { "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "Rank": 3, - "CommandName": "Add-PnPWebhookSubscription", - "Id": 213 + "Id": 213, + "CommandName": "Add-PnPWebhookSubscription" }, { "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "Rank": 1, - "CommandName": "Add-PnPWebPartToWebPartPage", - "Id": 214 + "Id": 214, + "CommandName": "Add-PnPWebPartToWebPartPage" }, { "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Rank": 2, - "CommandName": "Add-PnPWebPartToWebPartPage", - "Id": 215 + "Id": 215, + "CommandName": "Add-PnPWebPartToWebPartPage" }, { "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "Rank": 1, - "CommandName": "Add-PnPWebPartToWikiPage", - "Id": 216 + "Id": 216, + "CommandName": "Add-PnPWebPartToWikiPage" }, { "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Rank": 2, - "CommandName": "Add-PnPWebPartToWikiPage", - "Id": 217 + "Id": 217, + "CommandName": "Add-PnPWebPartToWikiPage" }, { "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Rank": 1, - "CommandName": "Add-PnPWikiPage", - "Id": 218 + "Id": 218, + "CommandName": "Add-PnPWikiPage" }, { "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupMember", - "Id": 219 + "Id": 219, + "CommandName": "Clear-PnPAzureADGroupMember" }, { "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupOwner", - "Id": 220 + "Id": 220, + "CommandName": "Clear-PnPAzureADGroupOwner" }, { "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Rank": 1, - "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 221 + "Id": 221, + "CommandName": "Clear-PnPDefaultColumnValues" }, { "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Rank": 2, - "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 222 + "Id": 222, + "CommandName": "Clear-PnPDefaultColumnValues" }, { "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Clear-PnPListItemAsRecord", - "Id": 223 + "Id": 223, + "CommandName": "Clear-PnPListItemAsRecord" }, { "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Id": 224 + "Id": 224, + "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Id": 225 + "Id": 225, + "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 226 + "Id": 226, + "CommandName": "Clear-PnpRecycleBinItem" }, { "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Rank": 2, - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 227 + "Id": 227, + "CommandName": "Clear-PnpRecycleBinItem" }, { "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Rank": 3, - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 228 + "Id": 228, + "CommandName": "Clear-PnpRecycleBinItem" }, { "Command": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, - "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Id": 229 + "Id": 229, + "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 230 + "Id": 230, + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 231 + "Id": 231, + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { "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", - "Id": 232 + "Id": 232, + "CommandName": "Connect-PnPOnline" }, { "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Rank": 1, - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 233 + "Id": 233, + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Rank": 2, - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 234 + "Id": 234, + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { "Command": "Convert-PnPSiteTemplate -Path template.xml", "Rank": 1, - "CommandName": "Convert-PnPSiteTemplate", - "Id": 235 + "Id": 235, + "CommandName": "Convert-PnPSiteTemplate" }, { "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Rank": 2, - "CommandName": "Convert-PnPSiteTemplate", - "Id": 236 + "Id": 236, + "CommandName": "Convert-PnPSiteTemplate" }, { "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Rank": 3, - "CommandName": "Convert-PnPSiteTemplate", - "Id": 237 + "Id": 237, + "CommandName": "Convert-PnPSiteTemplate" }, { "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Rank": 1, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 238 + "Id": 238, + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Rank": 2, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 239 + "Id": 239, + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Rank": 1, - "CommandName": "ConvertTo-PnPPage", - "Id": 240 + "Id": 240, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Rank": 2, - "CommandName": "ConvertTo-PnPPage", - "Id": 241 + "Id": 241, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Rank": 3, - "CommandName": "ConvertTo-PnPPage", - "Id": 242 + "Id": 242, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Rank": 4, - "CommandName": "ConvertTo-PnPPage", - "Id": 243 + "Id": 243, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 5, - "CommandName": "ConvertTo-PnPPage", - "Id": 244 + "Id": 244, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Rank": 6, - "CommandName": "ConvertTo-PnPPage", - "Id": 245 + "Id": 245, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Rank": 7, - "CommandName": "ConvertTo-PnPPage", - "Id": 246 + "Id": 246, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "Rank": 8, - "CommandName": "ConvertTo-PnPPage", - "Id": 247 + "Id": 247, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 9, - "CommandName": "ConvertTo-PnPPage", - "Id": 248 + "Id": 248, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Rank": 10, - "CommandName": "ConvertTo-PnPPage", - "Id": 249 + "Id": 249, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Rank": 11, - "CommandName": "ConvertTo-PnPPage", - "Id": 250 + "Id": 250, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 12, - "CommandName": "ConvertTo-PnPPage", - "Id": 251 + "Id": 251, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 13, - "CommandName": "ConvertTo-PnPPage", - "Id": 252 + "Id": 252, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Rank": 14, - "CommandName": "ConvertTo-PnPPage", - "Id": 253 + "Id": 253, + "CommandName": "ConvertTo-PnPPage" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "CommandName": "Copy-PnPFile", - "Id": 254 + "Id": 254, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "CommandName": "Copy-PnPFile", - "Id": 255 + "Id": 255, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "CommandName": "Copy-PnPFile", - "Id": 256 + "Id": 256, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "CommandName": "Copy-PnPFile", - "Id": 257 + "Id": 257, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "CommandName": "Copy-PnPFile", - "Id": 258 + "Id": 258, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "CommandName": "Copy-PnPFile", - "Id": 259 + "Id": 259, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "CommandName": "Copy-PnPFile", - "Id": 260 + "Id": 260, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "CommandName": "Copy-PnPFile", - "Id": 261 + "Id": 261, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "CommandName": "Copy-PnPFile", - "Id": 262 + "Id": 262, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "CommandName": "Copy-PnPFile", - "Id": 263 + "Id": 263, + "CommandName": "Copy-PnPFile" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "CommandName": "Copy-PnPFolder", - "Id": 264 + "Id": 264, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "CommandName": "Copy-PnPFolder", - "Id": 265 + "Id": 265, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "CommandName": "Copy-PnPFolder", - "Id": 266 + "Id": 266, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "CommandName": "Copy-PnPFolder", - "Id": 267 + "Id": 267, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "CommandName": "Copy-PnPFolder", - "Id": 268 + "Id": 268, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "CommandName": "Copy-PnPFolder", - "Id": 269 + "Id": 269, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "CommandName": "Copy-PnPFolder", - "Id": 270 + "Id": 270, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "CommandName": "Copy-PnPFolder", - "Id": 271 + "Id": 271, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "CommandName": "Copy-PnPFolder", - "Id": 272 + "Id": 272, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "CommandName": "Copy-PnPFolder", - "Id": 273 + "Id": 273, + "CommandName": "Copy-PnPFolder" }, { "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Rank": 1, - "CommandName": "Copy-PnPItemProxy", - "Id": 274 + "Id": 274, + "CommandName": "Copy-PnPItemProxy" }, { "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Rank": 1, - "CommandName": "Copy-PnPList", - "Id": 275 + "Id": 275, + "CommandName": "Copy-PnPList" }, { "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Rank": 2, - "CommandName": "Copy-PnPList", - "Id": 276 + "Id": 276, + "CommandName": "Copy-PnPList" }, { "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Rank": 3, - "CommandName": "Copy-PnPList", - "Id": 277 + "Id": 277, + "CommandName": "Copy-PnPList" }, { "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", - "Id": 278 + "Id": 278, + "CommandName": "Copy-PnPList" }, { "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Rank": 1, - "CommandName": "Copy-PnPTeamsTeam", - "Id": 279 + "Id": 279, + "CommandName": "Copy-PnPTeamsTeam" }, { "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Rank": 2, - "CommandName": "Copy-PnPTeamsTeam", - "Id": 280 + "Id": 280, + "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", "Rank": 3, - "CommandName": "Copy-PnPTeamsTeam", - "Id": 281 + "Id": 281, + "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", "Rank": 4, - "CommandName": "Copy-PnPTeamsTeam", - "Id": 282 + "Id": 282, + "CommandName": "Copy-PnPTeamsTeam" }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Disable-PnPFeature", - "Id": 283 + "Id": 283, + "CommandName": "Disable-PnPFeature" }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "CommandName": "Disable-PnPFeature", - "Id": 284 + "Id": 284, + "CommandName": "Disable-PnPFeature" }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "CommandName": "Disable-PnPFeature", - "Id": 285 + "Id": 285, + "CommandName": "Disable-PnPFeature" }, { "Command": "Disable-PnPPageScheduling", "Rank": 1, - "CommandName": "Disable-PnPPageScheduling", - "Id": 286 + "Id": 286, + "CommandName": "Disable-PnPPageScheduling" }, { "Command": "Disable-PnPPowerShellTelemetry", "Rank": 1, - "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 287 + "Id": 287, + "CommandName": "Disable-PnPPowerShellTelemetry" }, { "Command": "Disable-PnPPowerShellTelemetry -Force", "Rank": 2, - "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 288 + "Id": 288, + "CommandName": "Disable-PnPPowerShellTelemetry" }, { "Command": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 289 + "Id": 289, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { "Command": "Disable-PnPSiteClassification", "Rank": 1, - "CommandName": "Disable-PnPSiteClassification", - "Id": 290 + "Id": 290, + "CommandName": "Disable-PnPSiteClassification" }, { "Command": "Disconnect-PnPOnline", "Rank": 1, - "CommandName": "Disconnect-PnPOnline", - "Id": 291 + "Id": 291, + "CommandName": "Disconnect-PnPOnline" }, { "Command": "Enable-PnPCommSite", "Rank": 1, - "CommandName": "Enable-PnPCommSite", - "Id": 292 + "Id": 292, + "CommandName": "Enable-PnPCommSite" }, { "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Rank": 2, - "CommandName": "Enable-PnPCommSite", - "Id": 293 + "Id": 293, + "CommandName": "Enable-PnPCommSite" }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Enable-PnPFeature", - "Id": 294 + "Id": 294, + "CommandName": "Enable-PnPFeature" }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "CommandName": "Enable-PnPFeature", - "Id": 295 + "Id": 295, + "CommandName": "Enable-PnPFeature" }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "CommandName": "Enable-PnPFeature", - "Id": 296 + "Id": 296, + "CommandName": "Enable-PnPFeature" }, { "Command": "Enable-PnPPageScheduling", "Rank": 1, - "CommandName": "Enable-PnPPageScheduling", - "Id": 297 + "Id": 297, + "CommandName": "Enable-PnPPageScheduling" }, { "Command": "Enable-PnPPowerShellTelemetry", "Rank": 1, - "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 298 + "Id": 298, + "CommandName": "Enable-PnPPowerShellTelemetry" }, { "Command": "Enable-PnPPowerShellTelemetry -Force", "Rank": 2, - "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 299 + "Id": 299, + "CommandName": "Enable-PnPPowerShellTelemetry" }, { "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Rank": 1, - "CommandName": "Enable-PnPSiteClassification", - "Id": 300 + "Id": 300, + "CommandName": "Enable-PnPSiteClassification" }, { "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 2, - "CommandName": "Enable-PnPSiteClassification", - "Id": 301 + "Id": 301, + "CommandName": "Enable-PnPSiteClassification" }, { "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Rank": 1, - "CommandName": "Export-PnPListToSiteTemplate", - "Id": 302 + "Id": 302, + "CommandName": "Export-PnPListToSiteTemplate" }, { "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Rank": 2, - "CommandName": "Export-PnPListToSiteTemplate", - "Id": 303 + "Id": 303, + "CommandName": "Export-PnPListToSiteTemplate" }, { "Command": "Export-PnPPage -Identity Home.aspx", "Rank": 1, - "CommandName": "Export-PnPPage", - "Id": 304 + "Id": 304, + "CommandName": "Export-PnPPage" }, { "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Rank": 1, - "CommandName": "Export-PnPPageMapping", - "Id": 305 + "Id": 305, + "CommandName": "Export-PnPPageMapping" }, { "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Rank": 2, - "CommandName": "Export-PnPPageMapping", - "Id": 306 + "Id": 306, + "CommandName": "Export-PnPPageMapping" }, { "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Rank": 3, - "CommandName": "Export-PnPPageMapping", - "Id": 307 + "Id": 307, + "CommandName": "Export-PnPPageMapping" }, { "Command": "Export-PnPTaxonomy", "Rank": 1, - "CommandName": "Export-PnPTaxonomy", - "Id": 308 + "Id": 308, + "CommandName": "Export-PnPTaxonomy" }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Rank": 2, - "CommandName": "Export-PnPTaxonomy", - "Id": 309 + "Id": 309, + "CommandName": "Export-PnPTaxonomy" }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Rank": 3, - "CommandName": "Export-PnPTaxonomy", - "Id": 310 + "Id": 310, + "CommandName": "Export-PnPTaxonomy" }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Rank": 4, - "CommandName": "Export-PnPTaxonomy", - "Id": 311 + "Id": 311, + "CommandName": "Export-PnPTaxonomy" }, { "Command": "Export-PnPTermGroupToXml", "Rank": 1, - "CommandName": "Export-PnPTermGroupToXml", - "Id": 312 + "Id": 312, + "CommandName": "Export-PnPTermGroupToXml" }, { "Command": "Export-PnPTermGroupToXml -Out output.xml", "Rank": 2, - "CommandName": "Export-PnPTermGroupToXml", - "Id": 313 + "Id": 313, + "CommandName": "Export-PnPTermGroupToXml" }, { "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Rank": 3, - "CommandName": "Export-PnPTermGroupToXml", - "Id": 314 + "Id": 314, + "CommandName": "Export-PnPTermGroupToXml" }, { "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "CommandName": "Export-PnPUserInfo", - "Id": 315 + "Id": 315, + "CommandName": "Export-PnPUserInfo" }, { "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", - "Id": 316 + "Id": 316, + "CommandName": "Export-PnPUserInfo" }, { "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "CommandName": "Export-PnPUserProfile", - "Id": 317 + "Id": 317, + "CommandName": "Export-PnPUserProfile" }, { "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2, - "CommandName": "Export-PnPUserProfile", - "Id": 318 + "Id": 318, + "CommandName": "Export-PnPUserProfile" }, { "Command": "Find-PnPFile -Match *.master", "Rank": 1, - "CommandName": "Find-PnPFile", - "Id": 319 + "Id": 319, + "CommandName": "Find-PnPFile" }, { "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Rank": 2, - "CommandName": "Find-PnPFile", - "Id": 320 + "Id": 320, + "CommandName": "Find-PnPFile" }, { "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Rank": 3, - "CommandName": "Find-PnPFile", - "Id": 321 + "Id": 321, + "CommandName": "Find-PnPFile" }, { "Command": "Get-PnPAccessToken", "Rank": 1, - "CommandName": "Get-PnPAccessToken", - "Id": 322 + "Id": 322, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAccessToken -Decoded", "Rank": 2, - "CommandName": "Get-PnPAccessToken", - "Id": 323 + "Id": 323, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Rank": 3, - "CommandName": "Get-PnPAccessToken", - "Id": 324 + "Id": 324, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Rank": 4, - "CommandName": "Get-PnPAccessToken", - "Id": 325 + "Id": 325, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Rank": 5, - "CommandName": "Get-PnPAccessToken", - "Id": 326 + "Id": 326, + "CommandName": "Get-PnPAccessToken" }, { "Command": "Get-PnPAlert", "Rank": 1, - "CommandName": "Get-PnPAlert", - "Id": 327 + "Id": 327, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -List \"Demo List\"", "Rank": 2, - "CommandName": "Get-PnPAlert", - "Id": 328 + "Id": 328, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Get-PnPAlert", - "Id": 329 + "Id": 329, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Rank": 4, - "CommandName": "Get-PnPAlert", - "Id": 330 + "Id": 330, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -AllUsers", "Rank": 5, - "CommandName": "Get-PnPAlert", - "Id": 331 + "Id": 331, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Rank": 6, - "CommandName": "Get-PnPAlert", - "Id": 332 + "Id": 332, + "CommandName": "Get-PnPAlert" }, { "Command": "Get-PnPApp", "Rank": 1, - "CommandName": "Get-PnPApp", - "Id": 333 + "Id": 333, + "CommandName": "Get-PnPApp" }, { "Command": "Get-PnPApp -Scope Site", "Rank": 2, - "CommandName": "Get-PnPApp", - "Id": 334 + "Id": 334, + "CommandName": "Get-PnPApp" }, { "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 3, - "CommandName": "Get-PnPApp", - "Id": 335 + "Id": 335, + "CommandName": "Get-PnPApp" }, { "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Rank": 1, - "CommandName": "Get-PnPAppErrors", - "Id": 336 + "Id": 336, + "CommandName": "Get-PnPAppErrors" }, { "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Rank": 2, - "CommandName": "Get-PnPAppErrors", - "Id": 337 + "Id": 337, + "CommandName": "Get-PnPAppErrors" }, { "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Rank": 1, - "CommandName": "Get-PnPAppInfo", - "Id": 338 + "Id": 338, + "CommandName": "Get-PnPAppInfo" }, { "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 2, - "CommandName": "Get-PnPAppInfo", - "Id": 339 + "Id": 339, + "CommandName": "Get-PnPAppInfo" }, { "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Rank": 3, - "CommandName": "Get-PnPAppInfo", - "Id": 340 + "Id": 340, + "CommandName": "Get-PnPAppInfo" }, { "Command": "Get-PnPApplicationCustomizer", "Rank": 1, - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 341 + "Id": 341, + "CommandName": "Get-PnPApplicationCustomizer" }, { "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 342 + "Id": 342, + "CommandName": "Get-PnPApplicationCustomizer" }, { "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Rank": 3, - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 343 + "Id": 343, + "CommandName": "Get-PnPApplicationCustomizer" }, { "Command": "Get-PnPAuditing", "Rank": 1, - "CommandName": "Get-PnPAuditing", - "Id": 344 + "Id": 344, + "CommandName": "Get-PnPAuditing" }, { "Command": "Get-PnPAuthenticationRealm", "Rank": 1, - "CommandName": "Get-PnPAuthenticationRealm", - "Id": 345 + "Id": 345, + "CommandName": "Get-PnPAuthenticationRealm" }, { "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Rank": 2, - "CommandName": "Get-PnPAuthenticationRealm", - "Id": 346 + "Id": 346, + "CommandName": "Get-PnPAuthenticationRealm" }, { "Command": "Get-PnPAvailableLanguage", "Rank": 1, - "CommandName": "Get-PnPAvailableLanguage", - "Id": 347 + "Id": 347, + "CommandName": "Get-PnPAvailableLanguage" }, { "Command": "Get-PnPAvailableSensitivityLabel", "Rank": 1, - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 348 + "Id": 348, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Rank": 2, - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 349 + "Id": 349, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Rank": 3, - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 350 + "Id": 350, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Command": "Get-PnPAvailableSiteClassification", "Rank": 1, - "CommandName": "Get-PnPAvailableSiteClassification", - "Id": 351 + "Id": 351, + "CommandName": "Get-PnPAvailableSiteClassification" }, { "Command": "Get-PnPAzureACSPrincipal", "Rank": 1, - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 352 + "Id": 352, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Rank": 2, - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 353 + "Id": 353, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Rank": 3, - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 354 + "Id": 354, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Rank": 4, - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 355 + "Id": 355, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 356 + "Id": 356, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 357 + "Id": 357, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 358 + "Id": 358, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Command": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 359 + "Id": 359, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 360 + "Id": 360, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 361 + "Id": 361, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Command": "Get-PnPAzureADApp", "Rank": 1, - "CommandName": "Get-PnPAzureADApp", - "Id": 362 + "Id": 362, + "CommandName": "Get-PnPAzureADApp" }, { "Command": "Get-PnPAzureADApp -Identity MyApp", "Rank": 2, - "CommandName": "Get-PnPAzureADApp", - "Id": 363 + "Id": 363, + "CommandName": "Get-PnPAzureADApp" }, { "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "CommandName": "Get-PnPAzureADApp", - "Id": 364 + "Id": 364, + "CommandName": "Get-PnPAzureADApp" }, { "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Rank": 4, - "CommandName": "Get-PnPAzureADApp", - "Id": 365 + "Id": 365, + "CommandName": "Get-PnPAzureADApp" }, { "Command": "Get-PnPAzureADAppPermission", "Rank": 1, - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 366 + "Id": 366, + "CommandName": "Get-PnPAzureADAppPermission" }, { "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Rank": 2, - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 367 + "Id": 367, + "CommandName": "Get-PnPAzureADAppPermission" }, { "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 368 + "Id": 368, + "CommandName": "Get-PnPAzureADAppPermission" }, { "Command": "Get-PnPAzureADAppSitePermission", "Rank": 1, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 369 + "Id": 369, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 370 + "Id": 370, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Rank": 3, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 371 + "Id": 371, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Rank": 4, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 372 + "Id": 372, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Rank": 5, - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 373 + "Id": 373, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Command": "Get-PnPAzureADGroup", "Rank": 1, - "CommandName": "Get-PnPAzureADGroup", - "Id": 374 + "Id": 374, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroup -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPAzureADGroup", - "Id": 375 + "Id": 375, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Rank": 3, - "CommandName": "Get-PnPAzureADGroup", - "Id": 376 + "Id": 376, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Rank": 4, - "CommandName": "Get-PnPAzureADGroup", - "Id": 377 + "Id": 377, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroup -Identity $group", "Rank": 5, - "CommandName": "Get-PnPAzureADGroup", - "Id": 378 + "Id": 378, + "CommandName": "Get-PnPAzureADGroup" }, { "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPAzureADGroupMember", - "Id": 379 + "Id": 379, + "CommandName": "Get-PnPAzureADGroupMember" }, { "Command": "Get-PnPAzureADGroupMember -Identity $group", "Rank": 2, - "CommandName": "Get-PnPAzureADGroupMember", - "Id": 380 + "Id": 380, + "CommandName": "Get-PnPAzureADGroupMember" }, { "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 381 + "Id": 381, + "CommandName": "Get-PnPAzureADGroupOwner" }, { "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Rank": 2, - "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 382 + "Id": 382, + "CommandName": "Get-PnPAzureADGroupOwner" }, { "Command": "Get-PnPAzureADServicePrincipal", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 383 + "Id": 383, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 384 + "Id": 384, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Rank": 3, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 385 + "Id": 385, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Rank": 4, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 386 + "Id": 386, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 387 + "Id": 387, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 388 + "Id": 388, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 389 + "Id": 389, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 390 + "Id": 390, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 391 + "Id": 391, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { "Command": "Get-PnPAzureADUser", "Rank": 1, - "CommandName": "Get-PnPAzureADUser", - "Id": 392 + "Id": 392, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -EndIndex 50", "Rank": 2, - "CommandName": "Get-PnPAzureADUser", - "Id": 393 + "Id": 393, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 3, - "CommandName": "Get-PnPAzureADUser", - "Id": 394 + "Id": 394, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Rank": 4, - "CommandName": "Get-PnPAzureADUser", - "Id": 395 + "Id": 395, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Rank": 5, - "CommandName": "Get-PnPAzureADUser", - "Id": 396 + "Id": 396, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Rank": 6, - "CommandName": "Get-PnPAzureADUser", - "Id": 397 + "Id": 397, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Rank": 7, - "CommandName": "Get-PnPAzureADUser", - "Id": 398 + "Id": 398, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Delta", "Rank": 8, - "CommandName": "Get-PnPAzureADUser", - "Id": 399 + "Id": 399, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Rank": 9, - "CommandName": "Get-PnPAzureADUser", - "Id": 400 + "Id": 400, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Rank": 10, - "CommandName": "Get-PnPAzureADUser", - "Id": 401 + "Id": 401, + "CommandName": "Get-PnPAzureADUser" }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Rank": 1, - "CommandName": "Get-PnPAzureCertificate", - "Id": 402 + "Id": 402, + "CommandName": "Get-PnPAzureCertificate" }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Rank": 2, - "CommandName": "Get-PnPAzureCertificate", - "Id": 403 + "Id": 403, + "CommandName": "Get-PnPAzureCertificate" }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Rank": 3, - "CommandName": "Get-PnPAzureCertificate", - "Id": 404 + "Id": 404, + "CommandName": "Get-PnPAzureCertificate" }, { "Command": "Get-PnPBrowserIdleSignout", "Rank": 1, - "CommandName": "Get-PnPBrowserIdleSignout", - "Id": 405 + "Id": 405, + "CommandName": "Get-PnPBrowserIdleSignout" }, { "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Rank": 1, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 406 + "Id": 406, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { "Command": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 407 + "Id": 407, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 408 + "Id": 408, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Rank": 2, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 409 + "Id": 409, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Rank": 3, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 410 + "Id": 410, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 411 + "Id": 411, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Rank": 5, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 412 + "Id": 412, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Command": "Get-PnPChangeLog", "Rank": 1, - "CommandName": "Get-PnPChangeLog", - "Id": 413 + "Id": 413, + "CommandName": "Get-PnPChangeLog" }, { "Command": "Get-PnPChangeLog -Nightly", "Rank": 2, - "CommandName": "Get-PnPChangeLog", - "Id": 414 + "Id": 414, + "CommandName": "Get-PnPChangeLog" }, { "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Rank": 1, - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 415 + "Id": 415, + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Rank": 2, - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 416 + "Id": 416, + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { "Command": "Get-PnPContentType", "Rank": 1, - "CommandName": "Get-PnPContentType", - "Id": 417 + "Id": 417, + "CommandName": "Get-PnPContentType" }, { "Command": "Get-PnPContentType -InSiteHierarchy", "Rank": 2, - "CommandName": "Get-PnPContentType", - "Id": 418 + "Id": 418, + "CommandName": "Get-PnPContentType" }, { "Command": "Get-PnPContentType -Identity \"Project Document\"", "Rank": 3, - "CommandName": "Get-PnPContentType", - "Id": 419 + "Id": 419, + "CommandName": "Get-PnPContentType" }, { "Command": "Get-PnPContentType -List \"Documents\"", "Rank": 4, - "CommandName": "Get-PnPContentType", - "Id": 420 + "Id": 420, + "CommandName": "Get-PnPContentType" }, { "Command": "Get-PnPContentType -Includes \"SchemaXml\"", "Rank": 5, - "CommandName": "Get-PnPContentType", - "Id": 421 + "Id": 421, + "CommandName": "Get-PnPContentType" }, { "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Rank": 1, - "CommandName": "Get-PnPContentTypePublishingStatus", - "Id": 422 + "Id": 422, + "CommandName": "Get-PnPContentTypePublishingStatus" }, { "Command": "Get-PnPCustomAction", "Rank": 1, - "CommandName": "Get-PnPCustomAction", - "Id": 423 + "Id": 423, + "CommandName": "Get-PnPCustomAction" }, { "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "CommandName": "Get-PnPCustomAction", - "Id": 424 + "Id": 424, + "CommandName": "Get-PnPCustomAction" }, { "Command": "Get-PnPCustomAction -Scope web", "Rank": 3, - "CommandName": "Get-PnPCustomAction", - "Id": 425 + "Id": 425, + "CommandName": "Get-PnPCustomAction" }, { "Command": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 426 + "Id": 426, + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 2, - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 427 + "Id": 427, + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { "Command": "Get-PnPDeletedTeam", "Rank": 1, - "CommandName": "Get-PnPDeletedTeam", - "Id": 428 + "Id": 428, + "CommandName": "Get-PnPDeletedTeam" }, { "Command": "Get-PnPDiagnostics", "Rank": 1, - "CommandName": "Get-PnPDiagnostics", - "Id": 429 + "Id": 429, + "CommandName": "Get-PnPDiagnostics" }, { "Command": "Get-PnPDisableSpacesActivation", "Rank": 1, - "CommandName": "Get-PnPDisableSpacesActivation", - "Id": 430 + "Id": 430, + "CommandName": "Get-PnPDisableSpacesActivation" }, { "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Rank": 1, - "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 431 + "Id": 431, + "CommandName": "Get-PnPDocumentSetTemplate" }, { "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Rank": 2, - "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 432 + "Id": 432, + "CommandName": "Get-PnPDocumentSetTemplate" }, { "Command": "Get-PnPEventReceiver", "Rank": 1, - "CommandName": "Get-PnPEventReceiver", - "Id": 433 + "Id": 433, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "CommandName": "Get-PnPEventReceiver", - "Id": 434 + "Id": 434, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Rank": 3, - "CommandName": "Get-PnPEventReceiver", - "Id": 435 + "Id": 435, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Rank": 4, - "CommandName": "Get-PnPEventReceiver", - "Id": 436 + "Id": 436, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 5, - "CommandName": "Get-PnPEventReceiver", - "Id": 437 + "Id": 437, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Rank": 6, - "CommandName": "Get-PnPEventReceiver", - "Id": 438 + "Id": 438, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Scope Site", "Rank": 7, - "CommandName": "Get-PnPEventReceiver", - "Id": 439 + "Id": 439, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Scope Web", "Rank": 8, - "CommandName": "Get-PnPEventReceiver", - "Id": 440 + "Id": 440, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPEventReceiver -Scope All", "Rank": 9, - "CommandName": "Get-PnPEventReceiver", - "Id": 441 + "Id": 441, + "CommandName": "Get-PnPEventReceiver" }, { "Command": "Get-PnPException", "Rank": 1, - "CommandName": "Get-PnPException", - "Id": 442 + "Id": 442, + "CommandName": "Get-PnPException" }, { "Command": "Get-PnPException -All", "Rank": 2, - "CommandName": "Get-PnPException", - "Id": 443 + "Id": 443, + "CommandName": "Get-PnPException" }, { "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Rank": 1, - "CommandName": "Get-PnPExternalUser", - "Id": 444 + "Id": 444, + "CommandName": "Get-PnPExternalUser" }, { "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Rank": 2, - "CommandName": "Get-PnPExternalUser", - "Id": 445 + "Id": 445, + "CommandName": "Get-PnPExternalUser" }, { "Command": "Get-PnPFeature", "Rank": 1, - "CommandName": "Get-PnPFeature", - "Id": 446 + "Id": 446, + "CommandName": "Get-PnPFeature" }, { "Command": "Get-PnPFeature -Scope Site", "Rank": 2, - "CommandName": "Get-PnPFeature", - "Id": 447 + "Id": 447, + "CommandName": "Get-PnPFeature" }, { "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 3, - "CommandName": "Get-PnPFeature", - "Id": 448 + "Id": 448, + "CommandName": "Get-PnPFeature" }, { "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Rank": 4, - "CommandName": "Get-PnPFeature", - "Id": 449 + "Id": 449, + "CommandName": "Get-PnPFeature" }, { "Command": "Get-PnPField", "Rank": 1, - "CommandName": "Get-PnPField", - "Id": 450 + "Id": 450, + "CommandName": "Get-PnPField" }, { "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "CommandName": "Get-PnPField", - "Id": 451 + "Id": 451, + "CommandName": "Get-PnPField" }, { "Command": "Get-PnPField -Group \"Custom Columns\"", "Rank": 3, - "CommandName": "Get-PnPField", - "Id": 452 + "Id": 452, + "CommandName": "Get-PnPField" }, { "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Rank": 1, - "CommandName": "Get-PnPFile", - "Id": 453 + "Id": 453, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Rank": 2, - "CommandName": "Get-PnPFile", - "Id": 454 + "Id": 454, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Rank": 3, - "CommandName": "Get-PnPFile", - "Id": 455 + "Id": 455, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Rank": 4, - "CommandName": "Get-PnPFile", - "Id": 456 + "Id": 456, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Rank": 5, - "CommandName": "Get-PnPFile", - "Id": 457 + "Id": 457, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Rank": 6, - "CommandName": "Get-PnPFile", - "Id": 458 + "Id": 458, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Rank": 7, - "CommandName": "Get-PnPFile", - "Id": 459 + "Id": 459, + "CommandName": "Get-PnPFile" }, { "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Get-PnPFileSharingLink", - "Id": 460 + "Id": 460, + "CommandName": "Get-PnPFileSharingLink" }, { "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Rank": 1, - "CommandName": "Get-PnPFileVersion", - "Id": 461 + "Id": 461, + "CommandName": "Get-PnPFileVersion" }, { "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Rank": 2, - "CommandName": "Get-PnPFileVersion", - "Id": 462 + "Id": 462, + "CommandName": "Get-PnPFileVersion" }, { "Command": "Get-PnPFlow -AsAdmin", "Rank": 1, - "CommandName": "Get-PnPFlow", - "Id": 463 + "Id": 463, + "CommandName": "Get-PnPFlow" }, { "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "Rank": 2, - "CommandName": "Get-PnPFlow", - "Id": 464 + "Id": 464, + "CommandName": "Get-PnPFlow" }, { "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Rank": 3, - "CommandName": "Get-PnPFlow", - "Id": 465 + "Id": 465, + "CommandName": "Get-PnPFlow" }, { "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Rank": 1, - "CommandName": "Get-PnPFlowOwner", - "Id": 466 + "Id": 466, + "CommandName": "Get-PnPFlowOwner" }, { "Command": "Get-PnPFolder", "Rank": 1, - "CommandName": "Get-PnPFolder", - "Id": 467 + "Id": 467, + "CommandName": "Get-PnPFolder" }, { "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Rank": 2, - "CommandName": "Get-PnPFolder", - "Id": 468 + "Id": 468, + "CommandName": "Get-PnPFolder" }, { "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolder", - "Id": 469 + "Id": 469, + "CommandName": "Get-PnPFolder" }, { "Command": "Get-PnPFolder -List \"Shared Documents\"", "Rank": 4, - "CommandName": "Get-PnPFolder", - "Id": 470 + "Id": 470, + "CommandName": "Get-PnPFolder" }, { "Command": "Get-PnPFolderFile", "Rank": 1, - "CommandName": "Get-PnPFolderFile", - "Id": 471 + "Id": 471, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFile -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderFile", - "Id": 472 + "Id": 472, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderFile", - "Id": 473 + "Id": 473, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, - "CommandName": "Get-PnPFolderFile", - "Id": 474 + "Id": 474, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 5, - "CommandName": "Get-PnPFolderFile", - "Id": 475 + "Id": 475, + "CommandName": "Get-PnPFolderFile" }, { "Command": "Get-PnPFolderFolder", "Rank": 1, - "CommandName": "Get-PnPFolderFolder", - "Id": 476 + "Id": 476, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderFolder", - "Id": 477 + "Id": 477, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderFolder", - "Id": 478 + "Id": 478, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "Rank": 4, - "CommandName": "Get-PnPFolderFolder", - "Id": 479 + "Id": 479, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "Rank": 5, - "CommandName": "Get-PnPFolderFolder", - "Id": 480 + "Id": 480, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, - "CommandName": "Get-PnPFolderFolder", - "Id": 481 + "Id": 481, + "CommandName": "Get-PnPFolderFolder" }, { "Command": "Get-PnPFolderItem", "Rank": 1, - "CommandName": "Get-PnPFolderItem", - "Id": 482 + "Id": 482, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -Recurse", "Rank": 2, - "CommandName": "Get-PnPFolderItem", - "Id": 483 + "Id": 483, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderItem", - "Id": 484 + "Id": 484, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 4, - "CommandName": "Get-PnPFolderItem", - "Id": 485 + "Id": 485, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Rank": 5, - "CommandName": "Get-PnPFolderItem", - "Id": 486 + "Id": 486, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 6, - "CommandName": "Get-PnPFolderItem", - "Id": 487 + "Id": 487, + "CommandName": "Get-PnPFolderItem" }, { "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Get-PnPFolderSharingLink", - "Id": 488 + "Id": 488, + "CommandName": "Get-PnPFolderSharingLink" }, { "Command": "Get-PnPFolderStorageMetric", "Rank": 1, - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 489 + "Id": 489, + "CommandName": "Get-PnPFolderStorageMetric" }, { "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Rank": 2, - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 490 + "Id": 490, + "CommandName": "Get-PnPFolderStorageMetric" }, { "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 491 + "Id": 491, + "CommandName": "Get-PnPFolderStorageMetric" }, { "Command": "Get-PnPFooter", "Rank": 1, - "CommandName": "Get-PnPFooter", - "Id": 492 + "Id": 492, + "CommandName": "Get-PnPFooter" }, { "Command": "Get-PnPGraphAccessToken", "Rank": 1, - "CommandName": "Get-PnPGraphAccessToken", - "Id": 493 + "Id": 493, + "CommandName": "Get-PnPGraphAccessToken" }, { "Command": "Get-PnPGraphAccessToken -Decoded", "Rank": 2, - "CommandName": "Get-PnPGraphAccessToken", - "Id": 494 + "Id": 494, + "CommandName": "Get-PnPGraphAccessToken" }, { "Command": "Get-PnPGraphSubscription", "Rank": 1, - "CommandName": "Get-PnPGraphSubscription", - "Id": 495 + "Id": 495, + "CommandName": "Get-PnPGraphSubscription" }, { "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 2, - "CommandName": "Get-PnPGraphSubscription", - "Id": 496 + "Id": 496, + "CommandName": "Get-PnPGraphSubscription" }, { "Command": "Get-PnPGroup", "Rank": 1, - "CommandName": "Get-PnPGroup", - "Id": 497 + "Id": 497, + "CommandName": "Get-PnPGroup" }, { "Command": "Get-PnPGroup -Identity 'My Site Users'", "Rank": 2, - "CommandName": "Get-PnPGroup", - "Id": 498 + "Id": 498, + "CommandName": "Get-PnPGroup" }, { "Command": "Get-PnPGroup -AssociatedMemberGroup", "Rank": 3, - "CommandName": "Get-PnPGroup", - "Id": 499 + "Id": 499, + "CommandName": "Get-PnPGroup" }, { "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Rank": 1, - "CommandName": "Get-PnPGroupMember", - "Id": 500 + "Id": 500, + "CommandName": "Get-PnPGroupMember" }, { "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Rank": 2, - "CommandName": "Get-PnPGroupMember", - "Id": 501 + "Id": 501, + "CommandName": "Get-PnPGroupMember" }, { "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Rank": 1, - "CommandName": "Get-PnPGroupPermissions", - "Id": 502 + "Id": 502, + "CommandName": "Get-PnPGroupPermissions" }, { "Command": "Get-PnPHideDefaultThemes", "Rank": 1, - "CommandName": "Get-PnPHideDefaultThemes", - "Id": 503 + "Id": 503, + "CommandName": "Get-PnPHideDefaultThemes" }, { "Command": "Get-PnPHomePage", "Rank": 1, - "CommandName": "Get-PnPHomePage", - "Id": 504 + "Id": 504, + "CommandName": "Get-PnPHomePage" }, { "Command": "Get-PnPHomeSite", "Rank": 1, - "CommandName": "Get-PnPHomeSite", - "Id": 505 + "Id": 505, + "CommandName": "Get-PnPHomeSite" }, { "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Rank": 2, - "CommandName": "Get-PnPHomeSite", - "Id": 506 + "Id": 506, + "CommandName": "Get-PnPHomeSite" }, { "Command": "Get-PnPHomeSite -Detailed", "Rank": 3, - "CommandName": "Get-PnPHomeSite", - "Id": 507 + "Id": 507, + "CommandName": "Get-PnPHomeSite" }, { "Command": "Get-PnPHubSite", "Rank": 1, - "CommandName": "Get-PnPHubSite", - "Id": 508 + "Id": 508, + "CommandName": "Get-PnPHubSite" }, { "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "CommandName": "Get-PnPHubSite", - "Id": 509 + "Id": 509, + "CommandName": "Get-PnPHubSite" }, { "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Rank": 3, - "CommandName": "Get-PnPHubSite", - "Id": 510 + "Id": 510, + "CommandName": "Get-PnPHubSite" }, { "Command": "Get-PnPHubSiteChild", "Rank": 1, - "CommandName": "Get-PnPHubSiteChild", - "Id": 511 + "Id": 511, + "CommandName": "Get-PnPHubSiteChild" }, { "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "CommandName": "Get-PnPHubSiteChild", - "Id": 512 + "Id": 512, + "CommandName": "Get-PnPHubSiteChild" }, { "Command": "Get-PnPInPlaceRecordsManagement", "Rank": 1, - "CommandName": "Get-PnPInPlaceRecordsManagement", - "Id": 513 + "Id": 513, + "CommandName": "Get-PnPInPlaceRecordsManagement" }, { "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Rank": 1, - "CommandName": "Get-PnPIsSiteAliasAvailable", - "Id": 514 + "Id": 514, + "CommandName": "Get-PnPIsSiteAliasAvailable" }, { "Command": "Get-PnPJavaScriptLink", "Rank": 1, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 515 + "Id": 515, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPJavaScriptLink -Scope All", "Rank": 2, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 516 + "Id": 516, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPJavaScriptLink -Scope Web", "Rank": 3, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 517 + "Id": 517, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPJavaScriptLink -Scope Site", "Rank": 4, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 518 + "Id": 518, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPJavaScriptLink -Name Test", "Rank": 5, - "CommandName": "Get-PnPJavaScriptLink", - "Id": 519 + "Id": 519, + "CommandName": "Get-PnPJavaScriptLink" }, { "Command": "Get-PnPKnowledgeHubSite", "Rank": 1, - "CommandName": "Get-PnPKnowledgeHubSite", - "Id": 520 + "Id": 520, + "CommandName": "Get-PnPKnowledgeHubSite" }, { "Command": "Get-PnPLabel", "Rank": 1, - "CommandName": "Get-PnPLabel", - "Id": 521 + "Id": 521, + "CommandName": "Get-PnPLabel" }, { "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Rank": 2, - "CommandName": "Get-PnPLabel", - "Id": 522 + "Id": 522, + "CommandName": "Get-PnPLabel" }, { "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Rank": 1, - "CommandName": "Get-PnPLargeListOperationStatus", - "Id": 523 + "Id": 523, + "CommandName": "Get-PnPLargeListOperationStatus" }, { "Command": "Get-PnPList", "Rank": 1, - "CommandName": "Get-PnPList", - "Id": 524 + "Id": 524, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 2, - "CommandName": "Get-PnPList", - "Id": 525 + "Id": 525, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPList -Identity Lists/Announcements", "Rank": 3, - "CommandName": "Get-PnPList", - "Id": 526 + "Id": 526, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Rank": 4, - "CommandName": "Get-PnPList", - "Id": 527 + "Id": 527, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Rank": 5, - "CommandName": "Get-PnPList", - "Id": 528 + "Id": 528, + "CommandName": "Get-PnPList" }, { "Command": "Get-PnPListDesign", "Rank": 1, - "CommandName": "Get-PnPListDesign", - "Id": 529 + "Id": 529, + "CommandName": "Get-PnPListDesign" }, { "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPListDesign", - "Id": 530 + "Id": 530, + "CommandName": "Get-PnPListDesign" }, { "Command": "Get-PnPListDesign -Identity ListEvent", "Rank": 3, - "CommandName": "Get-PnPListDesign", - "Id": 531 + "Id": 531, + "CommandName": "Get-PnPListDesign" }, { "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Rank": 1, - "CommandName": "Get-PnPListInformationRightsManagement", - "Id": 532 + "Id": 532, + "CommandName": "Get-PnPListInformationRightsManagement" }, { "Command": "Get-PnPListItem -List Tasks", "Rank": 1, - "CommandName": "Get-PnPListItem", - "Id": 533 + "Id": 533, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -Id 1", "Rank": 2, - "CommandName": "Get-PnPListItem", - "Id": 534 + "Id": 534, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Rank": 3, - "CommandName": "Get-PnPListItem", - "Id": 535 + "Id": 535, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "Rank": 4, - "CommandName": "Get-PnPListItem", - "Id": 536 + "Id": 536, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -Query \"\"", "Rank": 5, - "CommandName": "Get-PnPListItem", - "Id": 537 + "Id": 537, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Rank": 6, - "CommandName": "Get-PnPListItem", - "Id": 538 + "Id": 538, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Rank": 7, - "CommandName": "Get-PnPListItem", - "Id": 539 + "Id": 539, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Rank": 8, - "CommandName": "Get-PnPListItem", - "Id": 540 + "Id": 540, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Rank": 9, - "CommandName": "Get-PnPListItem", - "Id": 541 + "Id": 541, + "CommandName": "Get-PnPListItem" }, { "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "Rank": 1, - "CommandName": "Get-PnPListItemAttachment", - "Id": 542 + "Id": 542, + "CommandName": "Get-PnPListItemAttachment" }, { "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "Rank": 2, - "CommandName": "Get-PnPListItemAttachment", - "Id": 543 + "Id": 543, + "CommandName": "Get-PnPListItemAttachment" }, { "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemComment", - "Id": 544 + "Id": 544, + "CommandName": "Get-PnPListItemComment" }, { "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemPermission", - "Id": 545 + "Id": 545, + "CommandName": "Get-PnPListItemPermission" }, { "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Rank": 1, - "CommandName": "Get-PnPListItemVersion", - "Id": 546 + "Id": 546, + "CommandName": "Get-PnPListItemVersion" }, { "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Rank": 1, - "CommandName": "Get-PnPListPermissions", - "Id": 547 + "Id": 547, + "CommandName": "Get-PnPListPermissions" }, { "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Rank": 2, - "CommandName": "Get-PnPListPermissions", - "Id": 548 + "Id": 548, + "CommandName": "Get-PnPListPermissions" }, { "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Rank": 1, - "CommandName": "Get-PnPListRecordDeclaration", - "Id": 549 + "Id": 549, + "CommandName": "Get-PnPListRecordDeclaration" }, { "Command": "Get-PnPMasterPage", "Rank": 1, - "CommandName": "Get-PnPMasterPage", - "Id": 550 + "Id": 550, + "CommandName": "Get-PnPMasterPage" }, { "Command": "Get-PnPMessageCenterAnnouncement", "Rank": 1, - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 551 + "Id": 551, + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Rank": 2, - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 552 + "Id": 552, + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { "Command": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 553 + "Id": 553, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 554 + "Id": 554, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { "Command": "Get-PnPMicrosoft365Group", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 555 + "Id": 555, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 556 + "Id": 556, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 557 + "Id": 557, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Rank": 4, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 558 + "Id": 558, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -Identity $group", "Rank": 5, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 559 + "Id": 559, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Rank": 6, - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 560 + "Id": 560, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Command": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 561 + "Id": 561, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 562 + "Id": 562, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 563 + "Id": 563, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 564 + "Id": 564, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 565 + "Id": 565, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 566 + "Id": 566, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 567 + "Id": 567, + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 568 + "Id": 568, + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { "Command": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 569 + "Id": 569, + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 570 + "Id": 570, + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 571 + "Id": 571, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 572 + "Id": 572, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { "Command": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 573 + "Id": 573, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 574 + "Id": 574, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 575 + "Id": 575, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 576 + "Id": 576, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 577 + "Id": 577, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 578 + "Id": 578, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Command": "Get-PnPNavigationNode", "Rank": 1, - "CommandName": "Get-PnPNavigationNode", - "Id": 579 + "Id": 579, + "CommandName": "Get-PnPNavigationNode" }, { "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Rank": 2, - "CommandName": "Get-PnPNavigationNode", - "Id": 580 + "Id": 580, + "CommandName": "Get-PnPNavigationNode" }, { "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Rank": 3, - "CommandName": "Get-PnPNavigationNode", - "Id": 581 + "Id": 581, + "CommandName": "Get-PnPNavigationNode" }, { "Command": "Get-PnPOrgAssetsLibrary", "Rank": 1, - "CommandName": "Get-PnPOrgAssetsLibrary", - "Id": 582 + "Id": 582, + "CommandName": "Get-PnPOrgAssetsLibrary" }, { "Command": "Get-PnPOrgNewsSite", "Rank": 1, - "CommandName": "Get-PnPOrgNewsSite", - "Id": 583 + "Id": 583, + "CommandName": "Get-PnPOrgNewsSite" }, { "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Rank": 1, - "CommandName": "Get-PnPPage", - "Id": 584 + "Id": 584, + "CommandName": "Get-PnPPage" }, { "Command": "Get-PnPPage \"MyPage\"", "Rank": 2, - "CommandName": "Get-PnPPage", - "Id": 585 + "Id": 585, + "CommandName": "Get-PnPPage" }, { "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Rank": 3, - "CommandName": "Get-PnPPage", - "Id": 586 + "Id": 586, + "CommandName": "Get-PnPPage" }, { "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Rank": 4, - "CommandName": "Get-PnPPage", - "Id": 587 + "Id": 587, + "CommandName": "Get-PnPPage" }, { "Command": "Get-PnPPageComponent -Page Home", "Rank": 1, - "CommandName": "Get-PnPPageComponent", - "Id": 588 + "Id": 588, + "CommandName": "Get-PnPPageComponent" }, { "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "CommandName": "Get-PnPPageComponent", - "Id": 589 + "Id": 589, + "CommandName": "Get-PnPPageComponent" }, { "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Rank": 3, - "CommandName": "Get-PnPPageComponent", - "Id": 590 + "Id": 590, + "CommandName": "Get-PnPPageComponent" }, { "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "CommandName": "Get-PnPPlannerBucket", - "Id": 591 + "Id": 591, + "CommandName": "Get-PnPPlannerBucket" }, { "Command": "Get-PnPPlannerConfiguration", "Rank": 1, - "CommandName": "Get-PnPPlannerConfiguration", - "Id": 592 + "Id": 592, + "CommandName": "Get-PnPPlannerConfiguration" }, { "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Rank": 1, - "CommandName": "Get-PnPPlannerPlan", - "Id": 593 + "Id": 593, + "CommandName": "Get-PnPPlannerPlan" }, { "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Rank": 2, - "CommandName": "Get-PnPPlannerPlan", - "Id": 594 + "Id": 594, + "CommandName": "Get-PnPPlannerPlan" }, { "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Rank": 3, - "CommandName": "Get-PnPPlannerPlan", - "Id": 595 + "Id": 595, + "CommandName": "Get-PnPPlannerPlan" }, { "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "CommandName": "Get-PnPPlannerRosterMember", - "Id": 596 + "Id": 596, + "CommandName": "Get-PnPPlannerRosterMember" }, { "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Rank": 1, - "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 597 + "Id": 597, + "CommandName": "Get-PnPPlannerRosterPlan" }, { "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 2, - "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 598 + "Id": 598, + "CommandName": "Get-PnPPlannerRosterPlan" }, { "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "CommandName": "Get-PnPPlannerTask", - "Id": 599 + "Id": 599, + "CommandName": "Get-PnPPlannerTask" }, { "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 2, - "CommandName": "Get-PnPPlannerTask", - "Id": 600 + "Id": 600, + "CommandName": "Get-PnPPlannerTask" }, { "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 3, - "CommandName": "Get-PnPPlannerTask", - "Id": 601 + "Id": 601, + "CommandName": "Get-PnPPlannerTask" }, { "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Get-PnPPlannerUserPolicy", - "Id": 602 + "Id": 602, + "CommandName": "Get-PnPPlannerUserPolicy" }, { "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "Rank": 1, - "CommandName": "Get-PnPPowerPlatformConnector", - "Id": 603 + "Id": 603, + "CommandName": "Get-PnPPowerPlatformConnector" }, { "Command": "Get-PnPPowerPlatformEnvironment", "Rank": 1, - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 604 + "Id": 604, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Rank": 2, - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 605 + "Id": 605, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Rank": 3, - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 606 + "Id": 606, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Command": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, - "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Id": 607 + "Id": 607, + "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { "Command": "Get-PnPPropertyBag", "Rank": 1, - "CommandName": "Get-PnPPropertyBag", - "Id": 608 + "Id": 608, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPropertyBag -Key MyKey", "Rank": 2, - "CommandName": "Get-PnPPropertyBag", - "Id": 609 + "Id": 609, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Rank": 3, - "CommandName": "Get-PnPPropertyBag", - "Id": 610 + "Id": 610, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Rank": 4, - "CommandName": "Get-PnPPropertyBag", - "Id": 611 + "Id": 611, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Rank": 5, - "CommandName": "Get-PnPPropertyBag", - "Id": 612 + "Id": 612, + "CommandName": "Get-PnPPropertyBag" }, { "Command": "Get-PnPPublishingImageRendition", "Rank": 1, - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 613 + "Id": 613, + "CommandName": "Get-PnPPublishingImageRendition" }, { "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Rank": 2, - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 614 + "Id": 614, + "CommandName": "Get-PnPPublishingImageRendition" }, { "Command": "Get-PnPPublishingImageRendition -Identity 2", "Rank": 3, - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 615 + "Id": 615, + "CommandName": "Get-PnPPublishingImageRendition" }, { "Command": "Get-PnPRecycleBinItem", "Rank": 1, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 616 + "Id": 616, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Rank": 2, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 617 + "Id": 617, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRecycleBinItem -FirstStage", "Rank": 3, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 618 + "Id": 618, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRecycleBinItem -SecondStage", "Rank": 4, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 619 + "Id": 619, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Rank": 5, - "CommandName": "Get-PnPRecycleBinItem", - "Id": 620 + "Id": 620, + "CommandName": "Get-PnPRecycleBinItem" }, { "Command": "Get-PnPRequestAccessEmails", "Rank": 1, - "CommandName": "Get-PnPRequestAccessEmails", - "Id": 621 + "Id": 621, + "CommandName": "Get-PnPRequestAccessEmails" }, { "Command": "Get-PnPRetentionLabel", "Rank": 1, - "CommandName": "Get-PnPRetentionLabel", - "Id": 622 + "Id": 622, + "CommandName": "Get-PnPRetentionLabel" }, { "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "Rank": 2, - "CommandName": "Get-PnPRetentionLabel", - "Id": 623 + "Id": 623, + "CommandName": "Get-PnPRetentionLabel" }, { "Command": "Get-PnPRoleDefinition", "Rank": 1, - "CommandName": "Get-PnPRoleDefinition", - "Id": 624 + "Id": 624, + "CommandName": "Get-PnPRoleDefinition" }, { "Command": "Get-PnPRoleDefinition -Identity Read", "Rank": 2, - "CommandName": "Get-PnPRoleDefinition", - "Id": 625 + "Id": 625, + "CommandName": "Get-PnPRoleDefinition" }, { "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Rank": 3, - "CommandName": "Get-PnPRoleDefinition", - "Id": 626 + "Id": 626, + "CommandName": "Get-PnPRoleDefinition" }, { "Command": "Get-PnPSearchConfiguration", "Rank": 1, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 627 + "Id": 627, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Site", "Rank": 2, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 628 + "Id": 628, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Rank": 3, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 629 + "Id": 629, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 630 + "Id": 630, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Rank": 5, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 631 + "Id": 631, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Rank": 6, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 632 + "Id": 632, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Rank": 7, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 633 + "Id": 633, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Rank": 8, - "CommandName": "Get-PnPSearchConfiguration", - "Id": 634 + "Id": 634, + "CommandName": "Get-PnPSearchConfiguration" }, { "Command": "Get-PnPSearchCrawlLog", "Rank": 1, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 635 + "Id": 635, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Rank": 2, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 636 + "Id": 636, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Rank": 3, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 637 + "Id": 637, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Rank": 4, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 638 + "Id": 638, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Rank": 5, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 639 + "Id": 639, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Rank": 6, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 640 + "Id": 640, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Rank": 7, - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 641 + "Id": 641, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Command": "Get-PnPSearchSettings", "Rank": 1, - "CommandName": "Get-PnPSearchSettings", - "Id": 642 + "Id": 642, + "CommandName": "Get-PnPSearchSettings" }, { "Command": "Get-PnPServiceCurrentHealth", "Rank": 1, - "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 643 + "Id": 643, + "CommandName": "Get-PnPServiceCurrentHealth" }, { "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Rank": 2, - "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 644 + "Id": 644, + "CommandName": "Get-PnPServiceCurrentHealth" }, { "Command": "Get-PnPServiceHealthIssue", "Rank": 1, - "CommandName": "Get-PnPServiceHealthIssue", - "Id": 645 + "Id": 645, + "CommandName": "Get-PnPServiceHealthIssue" }, { "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Rank": 2, - "CommandName": "Get-PnPServiceHealthIssue", - "Id": 646 + "Id": 646, + "CommandName": "Get-PnPServiceHealthIssue" }, { "Command": "Get-PnPSharePointAddIn", "Rank": 1, - "CommandName": "Get-PnPSharePointAddIn", - "Id": 647 + "Id": 647, + "CommandName": "Get-PnPSharePointAddIn" }, { "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Rank": 2, - "CommandName": "Get-PnPSharePointAddIn", - "Id": 648 + "Id": 648, + "CommandName": "Get-PnPSharePointAddIn" }, { "Command": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, - "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Id": 649 + "Id": 649, + "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { "Command": "Get-PnPSite", "Rank": 1, - "CommandName": "Get-PnPSite", - "Id": 650 + "Id": 650, + "CommandName": "Get-PnPSite" }, { "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Rank": 2, - "CommandName": "Get-PnPSite", - "Id": 651 + "Id": 651, + "CommandName": "Get-PnPSite" }, { "Command": "Get-PnPSiteClosure", "Rank": 1, - "CommandName": "Get-PnPSiteClosure", - "Id": 652 + "Id": 652, + "CommandName": "Get-PnPSiteClosure" }, { "Command": "Get-PnPSiteCollectionAdmin", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAdmin", - "Id": 653 + "Id": 653, + "CommandName": "Get-PnPSiteCollectionAdmin" }, { "Command": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 654 + "Id": 654, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Rank": 2, - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 655 + "Id": 655, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Rank": 3, - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 656 + "Id": 656, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Command": "Get-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "Get-PnPSiteCollectionTermStore", - "Id": 657 + "Id": 657, + "CommandName": "Get-PnPSiteCollectionTermStore" }, { "Command": "Get-PnPSiteDesign", "Rank": 1, - "CommandName": "Get-PnPSiteDesign", - "Id": 658 + "Id": 658, + "CommandName": "Get-PnPSiteDesign" }, { "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPSiteDesign", - "Id": 659 + "Id": 659, + "CommandName": "Get-PnPSiteDesign" }, { "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Get-PnPSiteDesignRights", - "Id": 660 + "Id": 660, + "CommandName": "Get-PnPSiteDesignRights" }, { "Command": "Get-PnPSiteDesignRun", "Rank": 1, - "CommandName": "Get-PnPSiteDesignRun", - "Id": 661 + "Id": 661, + "CommandName": "Get-PnPSiteDesignRun" }, { "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Rank": 2, - "CommandName": "Get-PnPSiteDesignRun", - "Id": 662 + "Id": 662, + "CommandName": "Get-PnPSiteDesignRun" }, { "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "CommandName": "Get-PnPSiteDesignTask", - "Id": 663 + "Id": 663, + "CommandName": "Get-PnPSiteDesignTask" }, { "Command": "Get-PnPSiteDesignTask", "Rank": 2, - "CommandName": "Get-PnPSiteDesignTask", - "Id": 664 + "Id": 664, + "CommandName": "Get-PnPSiteDesignTask" }, { "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 3, - "CommandName": "Get-PnPSiteDesignTask", - "Id": 665 + "Id": 665, + "CommandName": "Get-PnPSiteDesignTask" }, { "Command": "Get-PnPSiteGroup", "Rank": 1, - "CommandName": "Get-PnPSiteGroup", - "Id": 666 + "Id": 666, + "CommandName": "Get-PnPSiteGroup" }, { "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 2, - "CommandName": "Get-PnPSiteGroup", - "Id": 667 + "Id": 667, + "CommandName": "Get-PnPSiteGroup" }, { "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Rank": 3, - "CommandName": "Get-PnPSiteGroup", - "Id": 668 + "Id": 668, + "CommandName": "Get-PnPSiteGroup" }, { "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 4, - "CommandName": "Get-PnPSiteGroup", - "Id": 669 + "Id": 669, + "CommandName": "Get-PnPSiteGroup" }, { "Command": "Get-PnPSitePolicy", "Rank": 1, - "CommandName": "Get-PnPSitePolicy", - "Id": 670 + "Id": 670, + "CommandName": "Get-PnPSitePolicy" }, { "Command": "Get-PnPSitePolicy -AllAvailable", "Rank": 2, - "CommandName": "Get-PnPSitePolicy", - "Id": 671 + "Id": 671, + "CommandName": "Get-PnPSitePolicy" }, { "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 3, - "CommandName": "Get-PnPSitePolicy", - "Id": 672 + "Id": 672, + "CommandName": "Get-PnPSitePolicy" }, { "Command": "Get-PnPSiteScript", "Rank": 1, - "CommandName": "Get-PnPSiteScript", - "Id": 673 + "Id": 673, + "CommandName": "Get-PnPSiteScript" }, { "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "CommandName": "Get-PnPSiteScript", - "Id": 674 + "Id": 674, + "CommandName": "Get-PnPSiteScript" }, { "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 675 + "Id": 675, + "CommandName": "Get-PnPSiteScriptFromList" }, { "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 676 + "Id": 676, + "CommandName": "Get-PnPSiteScriptFromList" }, { "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 677 + "Id": 677, + "CommandName": "Get-PnPSiteScriptFromList" }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 678 + "Id": 678, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 679 + "Id": 679, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 680 + "Id": 680, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Rank": 4, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 681 + "Id": 681, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Rank": 5, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 682 + "Id": 682, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Rank": 6, - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 683 + "Id": 683, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Command": "Get-PnPSiteSearchQueryResults", "Rank": 1, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 684 + "Id": 684, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Rank": 2, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 685 + "Id": 685, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Rank": 3, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 686 + "Id": 686, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Rank": 4, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 687 + "Id": 687, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Rank": 5, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 688 + "Id": 688, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSearchQueryResults -All", "Rank": 6, - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 689 + "Id": 689, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Command": "Get-PnPSiteSensitivityLabel", "Rank": 1, - "CommandName": "Get-PnPSiteSensitivityLabel", - "Id": 690 + "Id": 690, + "CommandName": "Get-PnPSiteSensitivityLabel" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp", "Rank": 1, - "CommandName": "Get-PnPSiteTemplate", - "Id": 691 + "Id": 691, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.xml", "Rank": 2, - "CommandName": "Get-PnPSiteTemplate", - "Id": 692 + "Id": 692, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.md", "Rank": 3, - "CommandName": "Get-PnPSiteTemplate", - "Id": 693 + "Id": 693, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Rank": 4, - "CommandName": "Get-PnPSiteTemplate", - "Id": 694 + "Id": 694, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Rank": 5, - "CommandName": "Get-PnPSiteTemplate", - "Id": 695 + "Id": 695, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Rank": 6, - "CommandName": "Get-PnPSiteTemplate", - "Id": 696 + "Id": 696, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Rank": 7, - "CommandName": "Get-PnPSiteTemplate", - "Id": 697 + "Id": 697, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Rank": 8, - "CommandName": "Get-PnPSiteTemplate", - "Id": 698 + "Id": 698, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Rank": 9, - "CommandName": "Get-PnPSiteTemplate", - "Id": 699 + "Id": 699, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Rank": 10, - "CommandName": "Get-PnPSiteTemplate", - "Id": 700 + "Id": 700, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Rank": 11, - "CommandName": "Get-PnPSiteTemplate", - "Id": 701 + "Id": 701, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Rank": 12, - "CommandName": "Get-PnPSiteTemplate", - "Id": 702 + "Id": 702, + "CommandName": "Get-PnPSiteTemplate" }, { "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", - "Id": 703 + "Id": 703, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Rank": 14, - "CommandName": "Get-PnPSiteTemplate", - "Id": 704 + "Id": 704, + "CommandName": "Get-PnPSiteTemplate" }, { "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "CommandName": "Get-PnPSiteUserInvitations", - "Id": 705 + "Id": 705, + "CommandName": "Get-PnPSiteUserInvitations" }, { "Command": "Get-PnPSiteVersionPolicy", "Rank": 1, - "CommandName": "Get-PnPSiteVersionPolicy", - "Id": 706 + "Id": 706, + "CommandName": "Get-PnPSiteVersionPolicy" }, { "Command": "Get-PnPStorageEntity", "Rank": 1, - "CommandName": "Get-PnPStorageEntity", - "Id": 707 + "Id": 707, + "CommandName": "Get-PnPStorageEntity" }, { "Command": "Get-PnPStorageEntity -Key MyKey", "Rank": 2, - "CommandName": "Get-PnPStorageEntity", - "Id": 708 + "Id": 708, + "CommandName": "Get-PnPStorageEntity" }, { "Command": "Get-PnPStorageEntity -Scope Site", "Rank": 3, - "CommandName": "Get-PnPStorageEntity", - "Id": 709 + "Id": 709, + "CommandName": "Get-PnPStorageEntity" }, { "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 4, - "CommandName": "Get-PnPStorageEntity", - "Id": 710 + "Id": 710, + "CommandName": "Get-PnPStorageEntity" }, { "Command": "Get-PnPStoredCredential -Name O365", "Rank": 1, - "CommandName": "Get-PnPStoredCredential", - "Id": 711 + "Id": 711, + "CommandName": "Get-PnPStoredCredential" }, { "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Id": 712 + "Id": 712, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Id": 713 + "Id": 713, + "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Id": 714 + "Id": 714, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { "Command": "Get-PnPSubWeb", "Rank": 1, - "CommandName": "Get-PnPSubWeb", - "Id": 715 + "Id": 715, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSubWeb -Recurse", "Rank": 2, - "CommandName": "Get-PnPSubWeb", - "Id": 716 + "Id": 716, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Rank": 3, - "CommandName": "Get-PnPSubWeb", - "Id": 717 + "Id": 717, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Rank": 4, - "CommandName": "Get-PnPSubWeb", - "Id": 718 + "Id": 718, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Rank": 5, - "CommandName": "Get-PnPSubWeb", - "Id": 719 + "Id": 719, + "CommandName": "Get-PnPSubWeb" }, { "Command": "Get-PnPSyntexModel", "Rank": 1, - "CommandName": "Get-PnPSyntexModel", - "Id": 720 + "Id": 720, + "CommandName": "Get-PnPSyntexModel" }, { "Command": "Get-PnPSyntexModel -Identity 1", "Rank": 2, - "CommandName": "Get-PnPSyntexModel", - "Id": 721 + "Id": 721, + "CommandName": "Get-PnPSyntexModel" }, { "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Rank": 3, - "CommandName": "Get-PnPSyntexModel", - "Id": 722 + "Id": 722, + "CommandName": "Get-PnPSyntexModel" }, { "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Rank": 1, - "CommandName": "Get-PnPSyntexModelPublication", - "Id": 723 + "Id": 723, + "CommandName": "Get-PnPSyntexModelPublication" }, { "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Rank": 1, - "CommandName": "Get-PnPTaxonomyItem", - "Id": 724 + "Id": 724, + "CommandName": "Get-PnPTaxonomyItem" }, { "Command": "Get-PnPTeamsApp", "Rank": 1, - "CommandName": "Get-PnPTeamsApp", - "Id": 725 + "Id": 725, + "CommandName": "Get-PnPTeamsApp" }, { "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Rank": 2, - "CommandName": "Get-PnPTeamsApp", - "Id": 726 + "Id": 726, + "CommandName": "Get-PnPTeamsApp" }, { "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Rank": 3, - "CommandName": "Get-PnPTeamsApp", - "Id": 727 + "Id": 727, + "CommandName": "Get-PnPTeamsApp" }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Rank": 1, - "CommandName": "Get-PnPTeamsChannel", - "Id": 728 + "Id": 728, + "CommandName": "Get-PnPTeamsChannel" }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Rank": 2, - "CommandName": "Get-PnPTeamsChannel", - "Id": 729 + "Id": 729, + "CommandName": "Get-PnPTeamsChannel" }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 3, - "CommandName": "Get-PnPTeamsChannel", - "Id": 730 + "Id": 730, + "CommandName": "Get-PnPTeamsChannel" }, { "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 731 + "Id": 731, + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 732 + "Id": 732, + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 733 + "Id": 733, + "CommandName": "Get-PnPTeamsChannelMessage" }, { "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 734 + "Id": 734, + "CommandName": "Get-PnPTeamsChannelMessage" }, { "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 735 + "Id": 735, + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 736 + "Id": 736, + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Rank": 1, - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 737 + "Id": 737, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Rank": 2, - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 738 + "Id": 738, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Rank": 3, - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 739 + "Id": 739, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 740 + "Id": 740, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Rank": 1, - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 741 + "Id": 741, + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Rank": 2, - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 742 + "Id": 742, + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "Rank": 1, - "CommandName": "Get-PnPTeamsTab", - "Id": 743 + "Id": 743, + "CommandName": "Get-PnPTeamsTab" }, { "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTab", - "Id": 744 + "Id": 744, + "CommandName": "Get-PnPTeamsTab" }, { "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", - "Id": 745 + "Id": 745, + "CommandName": "Get-PnPTeamsTab" }, { "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Rank": 4, - "CommandName": "Get-PnPTeamsTab", - "Id": 746 + "Id": 746, + "CommandName": "Get-PnPTeamsTab" }, { "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Rank": 5, - "CommandName": "Get-PnPTeamsTab", - "Id": 747 + "Id": 747, + "CommandName": "Get-PnPTeamsTab" }, { "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "CommandName": "Get-PnPTeamsTag", - "Id": 748 + "Id": 748, + "CommandName": "Get-PnPTeamsTag" }, { "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTag", - "Id": 749 + "Id": 749, + "CommandName": "Get-PnPTeamsTag" }, { "Command": "Get-PnPTeamsTeam", "Rank": 1, - "CommandName": "Get-PnPTeamsTeam", - "Id": 750 + "Id": 750, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Rank": 2, - "CommandName": "Get-PnPTeamsTeam", - "Id": 751 + "Id": 751, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Rank": 3, - "CommandName": "Get-PnPTeamsTeam", - "Id": 752 + "Id": 752, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Rank": 4, - "CommandName": "Get-PnPTeamsTeam", - "Id": 753 + "Id": 753, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "CommandName": "Get-PnPTeamsTeam", - "Id": 754 + "Id": 754, + "CommandName": "Get-PnPTeamsTeam" }, { "Command": "Get-PnPTeamsUser -Team MyTeam", "Rank": 1, - "CommandName": "Get-PnPTeamsUser", - "Id": 755 + "Id": 755, + "CommandName": "Get-PnPTeamsUser" }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Rank": 2, - "CommandName": "Get-PnPTeamsUser", - "Id": 756 + "Id": 756, + "CommandName": "Get-PnPTeamsUser" }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Rank": 3, - "CommandName": "Get-PnPTeamsUser", - "Id": 757 + "Id": 757, + "CommandName": "Get-PnPTeamsUser" }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Rank": 4, - "CommandName": "Get-PnPTeamsUser", - "Id": 758 + "Id": 758, + "CommandName": "Get-PnPTeamsUser" }, { "Command": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, - "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Id": 759 + "Id": 759, + "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { "Command": "Get-PnPTenant", "Rank": 1, - "CommandName": "Get-PnPTenant", - "Id": 760 + "Id": 760, + "CommandName": "Get-PnPTenant" }, { "Command": "Get-PnPTenantAppCatalogUrl", "Rank": 1, - "CommandName": "Get-PnPTenantAppCatalogUrl", - "Id": 761 + "Id": 761, + "CommandName": "Get-PnPTenantAppCatalogUrl" }, { "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnEnabled", - "Id": 762 + "Id": 762, + "CommandName": "Get-PnPTenantCdnEnabled" }, { "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnOrigin", - "Id": 763 + "Id": 763, + "CommandName": "Get-PnPTenantCdnOrigin" }, { "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Rank": 1, - "CommandName": "Get-PnPTenantCdnPolicies", - "Id": 764 + "Id": 764, + "CommandName": "Get-PnPTenantCdnPolicies" }, { "Command": "Get-PnPTenantDeletedSite", "Rank": 1, - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 765 + "Id": 765, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 2, - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 766 + "Id": 766, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Rank": 3, - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 767 + "Id": 767, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Rank": 4, - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 768 + "Id": 768, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Command": "Get-PnPTenantId", "Rank": 1, - "CommandName": "Get-PnPTenantId", - "Id": 769 + "Id": 769, + "CommandName": "Get-PnPTenantId" }, { "Command": "Get-PnPTenantId contoso", "Rank": 2, - "CommandName": "Get-PnPTenantId", - "Id": 770 + "Id": 770, + "CommandName": "Get-PnPTenantId" }, { "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Rank": 3, - "CommandName": "Get-PnPTenantId", - "Id": 771 + "Id": 771, + "CommandName": "Get-PnPTenantId" }, { "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Rank": 4, - "CommandName": "Get-PnPTenantId", - "Id": 772 + "Id": 772, + "CommandName": "Get-PnPTenantId" }, { "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Rank": 1, - "CommandName": "Get-PnPTenantInfo", - "Id": 773 + "Id": 773, + "CommandName": "Get-PnPTenantInfo" }, { "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Rank": 2, - "CommandName": "Get-PnPTenantInfo", - "Id": 774 + "Id": 774, + "CommandName": "Get-PnPTenantInfo" }, { "Command": "Get-PnPTenantInfo", "Rank": 3, - "CommandName": "Get-PnPTenantInfo", - "Id": 775 + "Id": 775, + "CommandName": "Get-PnPTenantInfo" }, { "Command": "Get-PnPTenantInfo -CurrentTenant", "Rank": 4, - "CommandName": "Get-PnPTenantInfo", - "Id": 776 + "Id": 776, + "CommandName": "Get-PnPTenantInfo" }, { "Command": "Get-PnPTenantInstance", "Rank": 1, - "CommandName": "Get-PnPTenantInstance", - "Id": 777 + "Id": 777, + "CommandName": "Get-PnPTenantInstance" }, { "Command": "Get-PnPTenantRecycleBinItem", "Rank": 1, - "CommandName": "Get-PnPTenantRecycleBinItem", - "Id": 778 + "Id": 778, + "CommandName": "Get-PnPTenantRecycleBinItem" }, { "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Rank": 1, - "CommandName": "Get-PnPTenantSequence", - "Id": 779 + "Id": 779, + "CommandName": "Get-PnPTenantSequence" }, { "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Rank": 2, - "CommandName": "Get-PnPTenantSequence", - "Id": 780 + "Id": 780, + "CommandName": "Get-PnPTenantSequence" }, { "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Rank": 1, - "CommandName": "Get-PnPTenantSequenceSite", - "Id": 781 + "Id": 781, + "CommandName": "Get-PnPTenantSequenceSite" }, { "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Rank": 2, - "CommandName": "Get-PnPTenantSequenceSite", - "Id": 782 + "Id": 782, + "CommandName": "Get-PnPTenantSequenceSite" }, { "Command": "Get-PnPTenantSite", "Rank": 1, - "CommandName": "Get-PnPTenantSite", - "Id": 783 + "Id": 783, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Detailed", "Rank": 2, - "CommandName": "Get-PnPTenantSite", - "Id": 784 + "Id": 784, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Rank": 3, - "CommandName": "Get-PnPTenantSite", - "Id": 785 + "Id": 785, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Rank": 4, - "CommandName": "Get-PnPTenantSite", - "Id": 786 + "Id": 786, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Rank": 5, - "CommandName": "Get-PnPTenantSite", - "Id": 787 + "Id": 787, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Rank": 6, - "CommandName": "Get-PnPTenantSite", - "Id": 788 + "Id": 788, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Rank": 7, - "CommandName": "Get-PnPTenantSite", - "Id": 789 + "Id": 789, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Rank": 8, - "CommandName": "Get-PnPTenantSite", - "Id": 790 + "Id": 790, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Rank": 9, - "CommandName": "Get-PnPTenantSite", - "Id": 791 + "Id": 791, + "CommandName": "Get-PnPTenantSite" }, { "Command": "Get-PnPTenantSyncClientRestriction", "Rank": 1, - "CommandName": "Get-PnPTenantSyncClientRestriction", - "Id": 792 + "Id": 792, + "CommandName": "Get-PnPTenantSyncClientRestriction" }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Rank": 1, - "CommandName": "Get-PnPTenantTemplate", - "Id": 793 + "Id": 793, + "CommandName": "Get-PnPTenantTemplate" }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "Rank": 2, - "CommandName": "Get-PnPTenantTemplate", - "Id": 794 + "Id": 794, + "CommandName": "Get-PnPTenantTemplate" }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Rank": 3, - "CommandName": "Get-PnPTenantTemplate", - "Id": 795 + "Id": 795, + "CommandName": "Get-PnPTenantTemplate" }, { "Command": "Get-PnPTenantTheme", "Rank": 1, - "CommandName": "Get-PnPTenantTheme", - "Id": 796 + "Id": 796, + "CommandName": "Get-PnPTenantTheme" }, { "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 2, - "CommandName": "Get-PnPTenantTheme", - "Id": 797 + "Id": 797, + "CommandName": "Get-PnPTenantTheme" }, { "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Rank": 3, - "CommandName": "Get-PnPTenantTheme", - "Id": 798 + "Id": 798, + "CommandName": "Get-PnPTenantTheme" }, { "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "Get-PnPTerm", - "Id": 799 + "Id": 799, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Get-PnPTerm", - "Id": 800 + "Id": 800, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "CommandName": "Get-PnPTerm", - "Id": 801 + "Id": 801, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Rank": 4, - "CommandName": "Get-PnPTerm", - "Id": 802 + "Id": 802, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Rank": 5, - "CommandName": "Get-PnPTerm", - "Id": 803 + "Id": 803, + "CommandName": "Get-PnPTerm" }, { "Command": "Get-PnPTermGroup", "Rank": 1, - "CommandName": "Get-PnPTermGroup", - "Id": 804 + "Id": 804, + "CommandName": "Get-PnPTermGroup" }, { "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Rank": 2, - "CommandName": "Get-PnPTermGroup", - "Id": 805 + "Id": 805, + "CommandName": "Get-PnPTermGroup" }, { "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Rank": 3, - "CommandName": "Get-PnPTermGroup", - "Id": 806 + "Id": 806, + "CommandName": "Get-PnPTermGroup" }, { "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Rank": 1, - "CommandName": "Get-PnPTermLabel", - "Id": 807 + "Id": 807, + "CommandName": "Get-PnPTermLabel" }, { "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Rank": 2, - "CommandName": "Get-PnPTermLabel", - "Id": 808 + "Id": 808, + "CommandName": "Get-PnPTermLabel" }, { "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "CommandName": "Get-PnPTermLabel", - "Id": 809 + "Id": 809, + "CommandName": "Get-PnPTermLabel" }, { "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "Get-PnPTermSet", - "Id": 810 + "Id": 810, + "CommandName": "Get-PnPTermSet" }, { "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Get-PnPTermSet", - "Id": 811 + "Id": 811, + "CommandName": "Get-PnPTermSet" }, { "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Rank": 3, - "CommandName": "Get-PnPTermSet", - "Id": 812 + "Id": 812, + "CommandName": "Get-PnPTermSet" }, { "Command": "Get-PnPTheme", "Rank": 1, - "CommandName": "Get-PnPTheme", - "Id": 813 + "Id": 813, + "CommandName": "Get-PnPTheme" }, { "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Rank": 2, - "CommandName": "Get-PnPTheme", - "Id": 814 + "Id": 814, + "CommandName": "Get-PnPTheme" }, { "Command": "Get-PnPTimeZoneId", "Rank": 1, - "CommandName": "Get-PnPTimeZoneId", - "Id": 815 + "Id": 815, + "CommandName": "Get-PnPTimeZoneId" }, { "Command": "Get-PnPTimeZoneId -Match Stockholm", "Rank": 2, - "CommandName": "Get-PnPTimeZoneId", - "Id": 816 + "Id": 816, + "CommandName": "Get-PnPTimeZoneId" }, { "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Rank": 1, - "CommandName": "Get-PnPUnfurlLink", - "Id": 817 + "Id": 817, + "CommandName": "Get-PnPUnfurlLink" }, { "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Rank": 1, - "CommandName": "Get-PnPUnifiedAuditLog", - "Id": 818 + "Id": 818, + "CommandName": "Get-PnPUnifiedAuditLog" }, { "Command": "Get-PnPUPABulkImportStatus", "Rank": 1, - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 819 + "Id": 819, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Rank": 2, - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 820 + "Id": 820, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Command": "Get-PnPUPABulkImportStatus -JobId ", "Rank": 3, - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 821 + "Id": 821, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "Rank": 4, - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 822 + "Id": 822, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Command": "Get-PnPUser", "Rank": 1, - "CommandName": "Get-PnPUser", - "Id": 823 + "Id": 823, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -Identity 23", "Rank": 2, - "CommandName": "Get-PnPUser", - "Id": 824 + "Id": 824, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Get-PnPUser", - "Id": 825 + "Id": 825, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Rank": 4, - "CommandName": "Get-PnPUser", - "Id": 826 + "Id": 826, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -WithRightsAssigned", "Rank": 5, - "CommandName": "Get-PnPUser", - "Id": 827 + "Id": 827, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Rank": 6, - "CommandName": "Get-PnPUser", - "Id": 828 + "Id": 828, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Rank": 7, - "CommandName": "Get-PnPUser", - "Id": 829 + "Id": 829, + "CommandName": "Get-PnPUser" }, { "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPUserOneDriveQuota", - "Id": 830 + "Id": 830, + "CommandName": "Get-PnPUserOneDriveQuota" }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Get-PnPUserProfileProperty", - "Id": 831 + "Id": 831, + "CommandName": "Get-PnPUserProfileProperty" }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Rank": 2, - "CommandName": "Get-PnPUserProfileProperty", - "Id": 832 + "Id": 832, + "CommandName": "Get-PnPUserProfileProperty" }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Rank": 3, - "CommandName": "Get-PnPUserProfileProperty", - "Id": 833 + "Id": 833, + "CommandName": "Get-PnPUserProfileProperty" }, { "Command": "Get-PnPView -List \"Demo List\"", "Rank": 1, - "CommandName": "Get-PnPView", - "Id": 834 + "Id": 834, + "CommandName": "Get-PnPView" }, { "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Rank": 2, - "CommandName": "Get-PnPView", - "Id": 835 + "Id": 835, + "CommandName": "Get-PnPView" }, { "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Rank": 3, - "CommandName": "Get-PnPView", - "Id": 836 + "Id": 836, + "CommandName": "Get-PnPView" }, { "Command": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 837 + "Id": 837, + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 2, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 838 + "Id": 838, + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { "Command": "Get-PnPWeb", "Rank": 1, - "CommandName": "Get-PnPWeb", - "Id": 839 + "Id": 839, + "CommandName": "Get-PnPWeb" }, { "Command": "Get-PnPWebHeader", "Rank": 1, - "CommandName": "Get-PnPWebHeader", - "Id": 840 + "Id": 840, + "CommandName": "Get-PnPWebHeader" }, { "Command": "Get-PnPWebhookSubscriptions -List MyList", "Rank": 1, - "CommandName": "Get-PnPWebhookSubscriptions", - "Id": 841 + "Id": 841, + "CommandName": "Get-PnPWebhookSubscriptions" }, { "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Rank": 1, - "CommandName": "Get-PnPWebPart", - "Id": 842 + "Id": 842, + "CommandName": "Get-PnPWebPart" }, { "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "CommandName": "Get-PnPWebPart", - "Id": 843 + "Id": 843, + "CommandName": "Get-PnPWebPart" }, { "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "Rank": 1, - "CommandName": "Get-PnPWebPartProperty", - "Id": 844 + "Id": 844, + "CommandName": "Get-PnPWebPartProperty" }, { "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Rank": 2, - "CommandName": "Get-PnPWebPartProperty", - "Id": 845 + "Id": 845, + "CommandName": "Get-PnPWebPartProperty" }, { "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Get-PnPWebPartXml", - "Id": 846 + "Id": 846, + "CommandName": "Get-PnPWebPartXml" }, { "Command": "Get-PnPWebTemplates", "Rank": 1, - "CommandName": "Get-PnPWebTemplates", - "Id": 847 + "Id": 847, + "CommandName": "Get-PnPWebTemplates" }, { "Command": "Get-PnPWebTemplates -LCID 1033", "Rank": 2, - "CommandName": "Get-PnPWebTemplates", - "Id": 848 + "Id": 848, + "CommandName": "Get-PnPWebTemplates" }, { "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Rank": 3, - "CommandName": "Get-PnPWebTemplates", - "Id": 849 + "Id": 849, + "CommandName": "Get-PnPWebTemplates" }, { "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Rank": 1, - "CommandName": "Get-PnPWikiPageContent", - "Id": 850 + "Id": 850, + "CommandName": "Get-PnPWikiPageContent" }, { "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "Rank": 1, - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 851 + "Id": 851, + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 852 + "Id": 852, + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Grant-PnPHubSiteRights", - "Id": 853 + "Id": 853, + "CommandName": "Grant-PnPHubSiteRights" }, { "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Grant-PnPSiteDesignRights", - "Id": 854 + "Id": 854, + "CommandName": "Grant-PnPSiteDesignRights" }, { "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Id": 855 + "Id": 855, + "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Rank": 1, - "CommandName": "Import-PnPTaxonomy", - "Id": 856 + "Id": 856, + "CommandName": "Import-PnPTaxonomy" }, { "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Rank": 2, - "CommandName": "Import-PnPTaxonomy", - "Id": 857 + "Id": 857, + "CommandName": "Import-PnPTaxonomy" }, { "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Rank": 3, - "CommandName": "Import-PnPTaxonomy", - "Id": 858 + "Id": 858, + "CommandName": "Import-PnPTaxonomy" }, { "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Rank": 1, - "CommandName": "Import-PnPTermGroupFromXml", - "Id": 859 + "Id": 859, + "CommandName": "Import-PnPTermGroupFromXml" }, { "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Rank": 2, - "CommandName": "Import-PnPTermGroupFromXml", - "Id": 860 + "Id": 860, + "CommandName": "Import-PnPTermGroupFromXml" }, { "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Rank": 1, - "CommandName": "Import-PnPTermSet", - "Id": 861 + "Id": 861, + "CommandName": "Import-PnPTermSet" }, { "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", - "Id": 862 + "Id": 862, + "CommandName": "Import-PnPTermSet" }, { "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", - "Id": 863 + "Id": 863, + "CommandName": "Import-PnPTermSet" }, { "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Install-PnPApp", - "Id": 864 + "Id": 864, + "CommandName": "Install-PnPApp" }, { "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Install-PnPApp", - "Id": 865 + "Id": 865, + "CommandName": "Install-PnPApp" }, { "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "Rank": 1, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 866 + "Id": 866, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Rank": 2, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 867 + "Id": 867, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Rank": 3, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 868 + "Id": 868, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Rank": 4, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 869 + "Id": 869, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Rank": 5, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 870 + "Id": 870, + "CommandName": "Invoke-PnPGraphMethod" }, { "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", - "Id": 871 + "Id": 871, + "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\"", "Rank": 7, - "CommandName": "Invoke-PnPGraphMethod", - "Id": 872 + "Id": 872, + "CommandName": "Invoke-PnPGraphMethod" }, { "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Invoke-PnPListDesign", - "Id": 873 + "Id": 873, + "CommandName": "Invoke-PnPListDesign" }, { "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "CommandName": "Invoke-PnPListDesign", - "Id": 874 + "Id": 874, + "CommandName": "Invoke-PnPListDesign" }, { "Command": "Invoke-PnPQuery -RetryCount 5", "Rank": 1, - "CommandName": "Invoke-PnPQuery", - "Id": 875 + "Id": 875, + "CommandName": "Invoke-PnPQuery" }, { "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Invoke-PnPSiteDesign", - "Id": 876 + "Id": 876, + "CommandName": "Invoke-PnPSiteDesign" }, { "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "CommandName": "Invoke-PnPSiteDesign", - "Id": 877 + "Id": 877, + "CommandName": "Invoke-PnPSiteDesign" }, { "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Rank": 1, - "CommandName": "Invoke-PnPSiteScript", - "Id": 878 + "Id": 878, + "CommandName": "Invoke-PnPSiteScript" }, { "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", - "Id": 879 + "Id": 879, + "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", "Rank": 2, - "CommandName": "Invoke-PnPSiteSwap", - "Id": 880 + "Id": 880, + "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", "Rank": 3, - "CommandName": "Invoke-PnPSiteSwap", - "Id": 881 + "Id": 881, + "CommandName": "Invoke-PnPSiteSwap" }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Rank": 1, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 882 + "Id": 882, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Rank": 2, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 883 + "Id": 883, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 884 + "Id": 884, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Rank": 4, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 885 + "Id": 885, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Rank": 5, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 886 + "Id": 886, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Rank": 6, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 887 + "Id": 887, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Rank": 7, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 888 + "Id": 888, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Rank": 8, - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 889 + "Id": 889, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Rank": 1, - "CommandName": "Invoke-PnPSPRestMethod", - "Id": 890 + "Id": 890, + "CommandName": "Invoke-PnPSPRestMethod" }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Rank": 1, - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 891 + "Id": 891, + "CommandName": "Invoke-PnPTenantTemplate" }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Rank": 2, - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 892 + "Id": 892, + "CommandName": "Invoke-PnPTenantTemplate" }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 893 + "Id": 893, + "CommandName": "Invoke-PnPTenantTemplate" }, { "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Rank": 1, - "CommandName": "Invoke-PnPWebAction", - "Id": 894 + "Id": 894, + "CommandName": "Invoke-PnPWebAction" }, { "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Rank": 2, - "CommandName": "Invoke-PnPWebAction", - "Id": 895 + "Id": 895, + "CommandName": "Invoke-PnPWebAction" }, { "Command": "Measure-PnPList \"Documents\"", "Rank": 1, - "CommandName": "Measure-PnPList", - "Id": 896 + "Id": 896, + "CommandName": "Measure-PnPList" }, { "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Rank": 2, - "CommandName": "Measure-PnPList", - "Id": 897 + "Id": 897, + "CommandName": "Measure-PnPList" }, { "Command": "Measure-PnPWeb", "Rank": 1, - "CommandName": "Measure-PnPWeb", - "Id": 898 + "Id": 898, + "CommandName": "Measure-PnPWeb" }, { "Command": "Measure-PnPWeb $web -Recursive", "Rank": 2, - "CommandName": "Measure-PnPWeb", - "Id": 899 + "Id": 899, + "CommandName": "Measure-PnPWeb" }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Rank": 1, - "CommandName": "Move-PnPFile", - "Id": 900 + "Id": 900, + "CommandName": "Move-PnPFile" }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Rank": 2, - "CommandName": "Move-PnPFile", - "Id": 901 + "Id": 901, + "CommandName": "Move-PnPFile" }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 3, - "CommandName": "Move-PnPFile", - "Id": 902 + "Id": 902, + "CommandName": "Move-PnPFile" }, { "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 4, - "CommandName": "Move-PnPFile", - "Id": 903 + "Id": 903, + "CommandName": "Move-PnPFile" }, { "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Rank": 1, - "CommandName": "Move-PnPFolder", - "Id": 904 + "Id": 904, + "CommandName": "Move-PnPFolder" }, { "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Rank": 2, - "CommandName": "Move-PnPFolder", - "Id": 905 + "Id": 905, + "CommandName": "Move-PnPFolder" }, { "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "CommandName": "Move-PnPListItemToRecycleBin", - "Id": 906 + "Id": 906, + "CommandName": "Move-PnPListItemToRecycleBin" }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "Rank": 1, - "CommandName": "Move-PnPPageComponent", - "Id": 907 + "Id": 907, + "CommandName": "Move-PnPPageComponent" }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "Rank": 2, - "CommandName": "Move-PnPPageComponent", - "Id": 908 + "Id": 908, + "CommandName": "Move-PnPPageComponent" }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "Rank": 3, - "CommandName": "Move-PnPPageComponent", - "Id": 909 + "Id": 909, + "CommandName": "Move-PnPPageComponent" }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Rank": 4, - "CommandName": "Move-PnPPageComponent", - "Id": 910 + "Id": 910, + "CommandName": "Move-PnPPageComponent" }, { "Command": "Move-PnPRecycleBinItem", "Rank": 1, - "CommandName": "Move-PnpRecycleBinItem", - "Id": 911 + "Id": 911, + "CommandName": "Move-PnpRecycleBinItem" }, { "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Rank": 2, - "CommandName": "Move-PnpRecycleBinItem", - "Id": 912 + "Id": 912, + "CommandName": "Move-PnpRecycleBinItem" }, { "Command": "Move-PnPRecycleBinItem -Force", "Rank": 3, - "CommandName": "Move-PnpRecycleBinItem", - "Id": 913 + "Id": 913, + "CommandName": "Move-PnpRecycleBinItem" }, { "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", - "Id": 914 + "Id": 914, + "CommandName": "Move-PnPTerm" }, { "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Rank": 2, - "CommandName": "Move-PnPTerm", - "Id": 915 + "Id": 915, + "CommandName": "Move-PnPTerm" }, { "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Rank": 3, - "CommandName": "Move-PnPTerm", - "Id": 916 + "Id": 916, + "CommandName": "Move-PnPTerm" }, { "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", - "Id": 917 + "Id": 917, + "CommandName": "Move-PnPTermSet" }, { "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Rank": 2, - "CommandName": "Move-PnPTermSet", - "Id": 918 + "Id": 918, + "CommandName": "Move-PnPTermSet" }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "CommandName": "New-PnPAzureADGroup", - "Id": 919 + "Id": 919, + "CommandName": "New-PnPAzureADGroup" }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Rank": 2, - "CommandName": "New-PnPAzureADGroup", - "Id": 920 + "Id": 920, + "CommandName": "New-PnPAzureADGroup" }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Rank": 3, - "CommandName": "New-PnPAzureADGroup", - "Id": 921 + "Id": 921, + "CommandName": "New-PnPAzureADGroup" }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Rank": 1, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 922 + "Id": 922, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Rank": 2, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 923 + "Id": 923, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Rank": 3, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 924 + "Id": 924, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Rank": 1, - "CommandName": "New-PnPAzureCertificate", - "Id": 925 + "Id": 925, + "CommandName": "New-PnPAzureCertificate" }, { "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Rank": 2, - "CommandName": "New-PnPAzureCertificate", - "Id": 926 + "Id": 926, + "CommandName": "New-PnPAzureCertificate" }, { "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "Rank": 3, - "CommandName": "New-PnPAzureCertificate", - "Id": 927 + "Id": 927, + "CommandName": "New-PnPAzureCertificate" }, { "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", - "Id": 928 + "Id": 928, + "CommandName": "New-PnPGraphSubscription" }, { "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", - "Id": 929 + "Id": 929, + "CommandName": "New-PnPGraphSubscription" }, { "Command": "New-PnPGroup -Title \"My Site Users\"", "Rank": 1, - "CommandName": "New-PnPGroup", - "Id": 930 + "Id": 930, + "CommandName": "New-PnPGroup" }, { "Command": "New-PnPList -Title Announcements -Template Announcements", "Rank": 1, - "CommandName": "New-PnPList", - "Id": 931 + "Id": 931, + "CommandName": "New-PnPList" }, { "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Rank": 2, - "CommandName": "New-PnPList", - "Id": 932 + "Id": 932, + "CommandName": "New-PnPList" }, { "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Rank": 3, - "CommandName": "New-PnPList", - "Id": 933 + "Id": 933, + "CommandName": "New-PnPList" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 934 + "Id": 934, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "Rank": 2, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 935 + "Id": 935, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Rank": 3, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 936 + "Id": 936, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Rank": 4, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 937 + "Id": 937, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 5, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 938 + "Id": 938, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 939 + "Id": 939, + "CommandName": "New-PnPMicrosoft365Group" }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "Rank": 7, - "CommandName": "New-PnPMicrosoft365Group", - "Id": 940 + "Id": 940, + "CommandName": "New-PnPMicrosoft365Group" }, { "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", - "Id": 941 + "Id": 941, + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Rank": 2, - "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 942 + "Id": 942, + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Rank": 1, - "CommandName": "New-PnPPersonalSite", - "Id": 943 + "Id": 943, + "CommandName": "New-PnPPersonalSite" }, { "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Rank": 1, - "CommandName": "New-PnPPlannerPlan", - "Id": 944 + "Id": 944, + "CommandName": "New-PnPPlannerPlan" }, { "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Rank": 1, - "CommandName": "New-PnPSdnProvider", - "Id": 945 + "Id": 945, + "CommandName": "New-PnPSdnProvider" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 1, - "CommandName": "New-PnPSite", - "Id": 946 + "Id": 946, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "Rank": 2, - "CommandName": "New-PnPSite", - "Id": 947 + "Id": 947, + "CommandName": "New-PnPSite" }, { "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", - "Id": 948 + "Id": 948, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 4, - "CommandName": "New-PnPSite", - "Id": 949 + "Id": 949, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 5, - "CommandName": "New-PnPSite", - "Id": 950 + "Id": 950, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 6, - "CommandName": "New-PnPSite", - "Id": 951 + "Id": 951, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Rank": 7, - "CommandName": "New-PnPSite", - "Id": 952 + "Id": 952, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Rank": 8, - "CommandName": "New-PnPSite", - "Id": 953 + "Id": 953, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Rank": 9, - "CommandName": "New-PnPSite", - "Id": 954 + "Id": 954, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Rank": 10, - "CommandName": "New-PnPSite", - "Id": 955 + "Id": 955, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 11, - "CommandName": "New-PnPSite", - "Id": 956 + "Id": 956, + "CommandName": "New-PnPSite" }, { "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", - "Id": 957 + "Id": 957, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 13, - "CommandName": "New-PnPSite", - "Id": 958 + "Id": 958, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 14, - "CommandName": "New-PnPSite", - "Id": 959 + "Id": 959, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 15, - "CommandName": "New-PnPSite", - "Id": 960 + "Id": 960, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Rank": 16, - "CommandName": "New-PnPSite", - "Id": 961 + "Id": 961, + "CommandName": "New-PnPSite" }, { "Command": "New-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "New-PnPSiteCollectionTermStore", - "Id": 962 + "Id": 962, + "CommandName": "New-PnPSiteCollectionTermStore" }, { "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "Rank": 1, - "CommandName": "New-PnPSiteGroup", - "Id": 963 + "Id": 963, + "CommandName": "New-PnPSiteGroup" }, { "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Rank": 2, - "CommandName": "New-PnPSiteGroup", - "Id": 964 + "Id": 964, + "CommandName": "New-PnPSiteGroup" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Rank": 1, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 965 + "Id": 965, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Rank": 2, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 966 + "Id": 966, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Rank": 3, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 967 + "Id": 967, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "Rank": 4, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 968 + "Id": 968, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "Rank": 5, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 969 + "Id": 969, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "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", - "Id": 970 + "Id": 970, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Rank": 7, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 971 + "Id": 971, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Rank": 8, - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 972 + "Id": 972, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Rank": 1, - "CommandName": "New-PnPTeamsApp", - "Id": 973 + "Id": 973, + "CommandName": "New-PnPTeamsApp" }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Rank": 1, - "CommandName": "New-PnPTeamsTeam", - "Id": 974 + "Id": 974, + "CommandName": "New-PnPTeamsTeam" }, { "Command": "New-PnPTeamsTeam -GroupId $groupId", "Rank": 2, - "CommandName": "New-PnPTeamsTeam", - "Id": 975 + "Id": 975, + "CommandName": "New-PnPTeamsTeam" }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "Rank": 3, - "CommandName": "New-PnPTeamsTeam", - "Id": 976 + "Id": 976, + "CommandName": "New-PnPTeamsTeam" }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 4, - "CommandName": "New-PnPTeamsTeam", - "Id": 977 + "Id": 977, + "CommandName": "New-PnPTeamsTeam" }, { "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", - "Id": 978 + "Id": 978, + "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\"", "Rank": 6, - "CommandName": "New-PnPTeamsTeam", - "Id": 979 + "Id": 979, + "CommandName": "New-PnPTeamsTeam" }, { "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", - "Id": 980 + "Id": 980, + "CommandName": "New-PnPTenantSite" }, { "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Rank": 2, - "CommandName": "New-PnPTenantSite", - "Id": 981 + "Id": 981, + "CommandName": "New-PnPTenantSite" }, { "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Rank": 1, - "CommandName": "New-PnPTerm", - "Id": 982 + "Id": 982, + "CommandName": "New-PnPTerm" }, { "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "CommandName": "New-PnPTerm", - "Id": 983 + "Id": 983, + "CommandName": "New-PnPTerm" }, { "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Rank": 1, - "CommandName": "New-PnPTermGroup", - "Id": 984 + "Id": 984, + "CommandName": "New-PnPTermGroup" }, { "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Rank": 1, - "CommandName": "New-PnPTermLabel", - "Id": 985 + "Id": 985, + "CommandName": "New-PnPTermLabel" }, { "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Rank": 1, - "CommandName": "New-PnPTermSet", - "Id": 986 + "Id": 986, + "CommandName": "New-PnPTermSet" }, { "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "Rank": 1, - "CommandName": "New-PnPUPABulkImportJob", - "Id": 987 + "Id": 987, + "CommandName": "New-PnPUPABulkImportJob" }, { "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", - "Id": 988 + "Id": 988, + "CommandName": "New-PnPUPABulkImportJob" }, { "Command": "New-PnPUser -LoginName user@company.com", "Rank": 1, - "CommandName": "New-PnPUser", - "Id": 989 + "Id": 989, + "CommandName": "New-PnPUser" }, { "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Rank": 1, - "CommandName": "New-PnPWeb", - "Id": 990 + "Id": 990, + "CommandName": "New-PnPWeb" }, { "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 1, - "CommandName": "Publish-PnPApp", - "Id": 991 + "Id": 991, + "CommandName": "Publish-PnPApp" }, { "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Rank": 2, - "CommandName": "Publish-PnPApp", - "Id": 992 + "Id": 992, + "CommandName": "Publish-PnPApp" }, { "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", - "Id": 993 + "Id": 993, + "CommandName": "Publish-PnPCompanyApp" }, { "Command": "Publish-PnPContentType -ContentType 0x0101", "Rank": 1, - "CommandName": "Publish-PnPContentType", - "Id": 994 + "Id": 994, + "CommandName": "Publish-PnPContentType" }, { "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "CommandName": "Publish-PnPSyntexModel", - "Id": 995 + "Id": 995, + "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", "Rank": 2, - "CommandName": "Publish-PnPSyntexModel", - "Id": 996 + "Id": 996, + "CommandName": "Publish-PnPSyntexModel" }, { "Command": "Read-PnPSiteTemplate -Path template.pnp", "Rank": 1, - "CommandName": "Read-PnPSiteTemplate", - "Id": 997 + "Id": 997, + "CommandName": "Read-PnPSiteTemplate" }, { "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Rank": 2, - "CommandName": "Read-PnPSiteTemplate", - "Id": 998 + "Id": 998, + "CommandName": "Read-PnPSiteTemplate" }, { "Command": "Read-PnPSiteTemplate -Xml $xml", "Rank": 3, - "CommandName": "Read-PnPSiteTemplate", - "Id": 999 + "Id": 999, + "CommandName": "Read-PnPSiteTemplate" }, { "Command": "Read-PnPTenantTemplate -Path template.pnp", "Rank": 1, - "CommandName": "Read-PnPTenantTemplate", - "Id": 1000 + "Id": 1000, + "CommandName": "Read-PnPTenantTemplate" }, { "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Rank": 1, - "CommandName": "Register-PnPAppCatalogSite", - "Id": 1001 + "Id": 1001, + "CommandName": "Register-PnPAppCatalogSite" }, { "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", - "Id": 1002 + "Id": 1002, + "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\")", "Rank": 2, - "CommandName": "Register-PnPAzureADApp", - "Id": 1003 + "Id": 1003, + "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\")", "Rank": 3, - "CommandName": "Register-PnPAzureADApp", - "Id": 1004 + "Id": 1004, + "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\")", "Rank": 4, - "CommandName": "Register-PnPAzureADApp", - "Id": 1005 + "Id": 1005, + "CommandName": "Register-PnPAzureADApp" }, { "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", - "Id": 1006 + "Id": 1006, + "CommandName": "Register-PnPAzureADApp" }, { "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", - "Id": 1007 + "Id": 1007, + "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", "Rank": 7, - "CommandName": "Register-PnPAzureADApp", - "Id": 1008 + "Id": 1008, + "CommandName": "Register-PnPAzureADApp" }, { "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "CommandName": "Register-PnPHubSite", - "Id": 1009 + "Id": 1009, + "CommandName": "Register-PnPHubSite" }, { "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Rank": 2, - "CommandName": "Register-PnPHubSite", - "Id": 1010 + "Id": 1010, + "CommandName": "Register-PnPHubSite" }, { "Command": "Register-PnPManagementShellAccess", "Rank": 1, - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1011 + "Id": 1011, + "CommandName": "Register-PnPManagementShellAccess" }, { "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Rank": 2, - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1012 + "Id": 1012, + "CommandName": "Register-PnPManagementShellAccess" }, { "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Rank": 3, - "CommandName": "Register-PnPManagementShellAccess", - "Id": 1013 + "Id": 1013, + "CommandName": "Register-PnPManagementShellAccess" }, { "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1014 + "Id": 1014, + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Rank": 2, - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1015 + "Id": 1015, + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Rank": 1, - "CommandName": "Remove-PnPAlert", - "Id": 1016 + "Id": 1016, + "CommandName": "Remove-PnPAlert" }, { "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 2, - "CommandName": "Remove-PnPAlert", - "Id": 1017 + "Id": 1017, + "CommandName": "Remove-PnPAlert" }, { "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Remove-PnPApp", - "Id": 1018 + "Id": 1018, + "CommandName": "Remove-PnPApp" }, { "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPApp", - "Id": 1019 + "Id": 1019, + "CommandName": "Remove-PnPApp" }, { "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1020 + "Id": 1020, + "CommandName": "Remove-PnPApplicationCustomizer" }, { "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1021 + "Id": 1021, + "CommandName": "Remove-PnPApplicationCustomizer" }, { "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Rank": 1, - "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1022 + "Id": 1022, + "CommandName": "Remove-PnPAvailableSiteClassification" }, { "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 2, - "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1023 + "Id": 1023, + "CommandName": "Remove-PnPAvailableSiteClassification" }, { "Command": "Remove-PnPAzureADApp -Identity MyApp", "Rank": 1, - "CommandName": "Remove-PnPAzureADApp", - "Id": 1024 + "Id": 1024, + "CommandName": "Remove-PnPAzureADApp" }, { "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 2, - "CommandName": "Remove-PnPAzureADApp", - "Id": 1025 + "Id": 1025, + "CommandName": "Remove-PnPAzureADApp" }, { "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroup", - "Id": 1026 + "Id": 1026, + "CommandName": "Remove-PnPAzureADGroup" }, { "Command": "Remove-PnPAzureADGroup -Identity $group", "Rank": 2, - "CommandName": "Remove-PnPAzureADGroup", - "Id": 1027 + "Id": 1027, + "CommandName": "Remove-PnPAzureADGroup" }, { "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupMember", - "Id": 1028 + "Id": 1028, + "CommandName": "Remove-PnPAzureADGroupMember" }, { "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupOwner", - "Id": 1029 + "Id": 1029, + "CommandName": "Remove-PnPAzureADGroupOwner" }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Rank": 1, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1030 + "Id": 1030, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Rank": 2, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1031 + "Id": 1031, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 3, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1032 + "Id": 1032, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 4, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1033 + "Id": 1033, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPContentType", - "Id": 1034 + "Id": 1034, + "CommandName": "Remove-PnPContentType" }, { "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Rank": 2, - "CommandName": "Remove-PnPContentType", - "Id": 1035 + "Id": 1035, + "CommandName": "Remove-PnPContentType" }, { "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1036 + "Id": 1036, + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1037 + "Id": 1037, + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromList", - "Id": 1038 + "Id": 1038, + "CommandName": "Remove-PnPContentTypeFromList" }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Remove-PnPCustomAction", - "Id": 1039 + "Id": 1039, + "CommandName": "Remove-PnPCustomAction" }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "CommandName": "Remove-PnPCustomAction", - "Id": 1040 + "Id": 1040, + "CommandName": "Remove-PnPCustomAction" }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Rank": 3, - "CommandName": "Remove-PnPCustomAction", - "Id": 1041 + "Id": 1041, + "CommandName": "Remove-PnPCustomAction" }, { "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Id": 1042 + "Id": 1042, + "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 1, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1043 + "Id": 1043, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1044 + "Id": 1044, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Rank": 3, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1045 + "Id": 1045, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -List ProjectList", "Rank": 4, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1046 + "Id": 1046, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver", "Rank": 5, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1047 + "Id": 1047, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -Scope Site", "Rank": 6, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1048 + "Id": 1048, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -Scope Web", "Rank": 7, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1049 + "Id": 1049, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPEventReceiver -Scope All", "Rank": 8, - "CommandName": "Remove-PnPEventReceiver", - "Id": 1050 + "Id": 1050, + "CommandName": "Remove-PnPEventReceiver" }, { "Command": "Remove-PnPField -Identity \"Speakers\"", "Rank": 1, - "CommandName": "Remove-PnPField", - "Id": 1051 + "Id": 1051, + "CommandName": "Remove-PnPField" }, { "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "CommandName": "Remove-PnPField", - "Id": 1052 + "Id": 1052, + "CommandName": "Remove-PnPField" }, { "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1053 + "Id": 1053, + "CommandName": "Remove-PnPFieldFromContentType" }, { "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Rank": 2, - "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1054 + "Id": 1054, + "CommandName": "Remove-PnPFieldFromContentType" }, { "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Rank": 1, - "CommandName": "Remove-PnPFile", - "Id": 1055 + "Id": 1055, + "CommandName": "Remove-PnPFile" }, { "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Rank": 2, - "CommandName": "Remove-PnPFile", - "Id": 1056 + "Id": 1056, + "CommandName": "Remove-PnPFile" }, { "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Rank": 3, - "CommandName": "Remove-PnPFile", - "Id": 1057 + "Id": 1057, + "CommandName": "Remove-PnPFile" }, { "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Rank": 1, - "CommandName": "Remove-PnPFileFromSiteTemplate", - "Id": 1058 + "Id": 1058, + "CommandName": "Remove-PnPFileFromSiteTemplate" }, { "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "CommandName": "Remove-PnPFileSharingLink", - "Id": 1059 + "Id": 1059, + "CommandName": "Remove-PnPFileSharingLink" }, { "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Rank": 2, - "CommandName": "Remove-PnPFileSharingLink", - "Id": 1060 + "Id": 1060, + "CommandName": "Remove-PnPFileSharingLink" }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "CommandName": "Remove-PnPFileVersion", - "Id": 1061 + "Id": 1061, + "CommandName": "Remove-PnPFileVersion" }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 2, - "CommandName": "Remove-PnPFileVersion", - "Id": 1062 + "Id": 1062, + "CommandName": "Remove-PnPFileVersion" }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Rank": 3, - "CommandName": "Remove-PnPFileVersion", - "Id": 1063 + "Id": 1063, + "CommandName": "Remove-PnPFileVersion" }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "Rank": 1, - "CommandName": "Remove-PnPFlowOwner", - "Id": 1064 + "Id": 1064, + "CommandName": "Remove-PnPFlowOwner" }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "Rank": 2, - "CommandName": "Remove-PnPFlowOwner", - "Id": 1065 + "Id": 1065, + "CommandName": "Remove-PnPFlowOwner" }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "Rank": 3, - "CommandName": "Remove-PnPFlowOwner", - "Id": 1066 + "Id": 1066, + "CommandName": "Remove-PnPFlowOwner" }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "Rank": 4, - "CommandName": "Remove-PnPFlowOwner", - "Id": 1067 + "Id": 1067, + "CommandName": "Remove-PnPFlowOwner" }, { "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "CommandName": "Remove-PnPFolder", - "Id": 1068 + "Id": 1068, + "CommandName": "Remove-PnPFolder" }, { "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Rank": 2, - "CommandName": "Remove-PnPFolder", - "Id": 1069 + "Id": 1069, + "CommandName": "Remove-PnPFolder" }, { "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1070 + "Id": 1070, + "CommandName": "Remove-PnPFolderSharingLink" }, { "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Rank": 2, - "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1071 + "Id": 1071, + "CommandName": "Remove-PnPFolderSharingLink" }, { "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Rank": 1, - "CommandName": "Remove-PnPGraphSubscription", - "Id": 1072 + "Id": 1072, + "CommandName": "Remove-PnPGraphSubscription" }, { "Command": "Remove-PnPGroup -Identity \"My Users\"", "Rank": 1, - "CommandName": "Remove-PnPGroup", - "Id": 1073 + "Id": 1073, + "CommandName": "Remove-PnPGroup" }, { "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "CommandName": "Remove-PnPGroupMember", - "Id": 1074 + "Id": 1074, + "CommandName": "Remove-PnPGroupMember" }, { "Command": "Remove-PnPHomeSite", "Rank": 1, - "CommandName": "Remove-PnPHomeSite", - "Id": 1075 + "Id": 1075, + "CommandName": "Remove-PnPHomeSite" }, { "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "CommandName": "Remove-PnPHubSiteAssociation", - "Id": 1076 + "Id": 1076, + "CommandName": "Remove-PnPHubSiteAssociation" }, { "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Rank": 1, - "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1077 + "Id": 1077, + "CommandName": "Remove-PnPHubToHubAssociation" }, { "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Rank": 2, - "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1078 + "Id": 1078, + "CommandName": "Remove-PnPHubToHubAssociation" }, { "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Rank": 1, - "CommandName": "Remove-PnPIndexedProperty", - "Id": 1079 + "Id": 1079, + "CommandName": "Remove-PnPIndexedProperty" }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Rank": 1, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1080 + "Id": 1080, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1081 + "Id": 1081, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Rank": 3, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1082 + "Id": 1082, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPJavaScriptLink -Scope Site", "Rank": 4, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1083 + "Id": 1083, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Rank": 5, - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1084 + "Id": 1084, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Command": "Remove-PnPKnowledgeHubSite", "Rank": 1, - "CommandName": "Remove-PnPKnowledgeHubSite", - "Id": 1085 + "Id": 1085, + "CommandName": "Remove-PnPKnowledgeHubSite" }, { "Command": "Remove-PnPList -Identity Announcements", "Rank": 1, - "CommandName": "Remove-PnPList", - "Id": 1086 + "Id": 1086, + "CommandName": "Remove-PnPList" }, { "Command": "Remove-PnPList -Identity Announcements -Force", "Rank": 2, - "CommandName": "Remove-PnPList", - "Id": 1087 + "Id": 1087, + "CommandName": "Remove-PnPList" }, { "Command": "Remove-PnPList -Identity Announcements -Recycle", "Rank": 3, - "CommandName": "Remove-PnPList", - "Id": 1088 + "Id": 1088, + "CommandName": "Remove-PnPList" }, { "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Rank": 4, - "CommandName": "Remove-PnPList", - "Id": 1089 + "Id": 1089, + "CommandName": "Remove-PnPList" }, { "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPListDesign", - "Id": 1090 + "Id": 1090, + "CommandName": "Remove-PnPListDesign" }, { "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "CommandName": "Remove-PnPListItem", - "Id": 1091 + "Id": 1091, + "CommandName": "Remove-PnPListItem" }, { "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Rank": 2, - "CommandName": "Remove-PnPListItem", - "Id": 1092 + "Id": 1092, + "CommandName": "Remove-PnPListItem" }, { "Command": "Remove-PnPListItem -List \"Demo List\"", "Rank": 3, - "CommandName": "Remove-PnPListItem", - "Id": 1093 + "Id": 1093, + "CommandName": "Remove-PnPListItem" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Rank": 1, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1094 + "Id": 1094, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "Rank": 2, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1095 + "Id": 1095, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Rank": 3, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1096 + "Id": 1096, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Rank": 4, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1097 + "Id": 1097, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Rank": 5, - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1098 + "Id": 1098, + "CommandName": "Remove-PnPListItemAttachment" }, { "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "CommandName": "Remove-PnPListItemVersion", - "Id": 1099 + "Id": 1099, + "CommandName": "Remove-PnPListItemVersion" }, { "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "CommandName": "Remove-PnPListItemVersion", - "Id": 1100 + "Id": 1100, + "CommandName": "Remove-PnPListItemVersion" }, { "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1101 + "Id": 1101, + "CommandName": "Remove-PnPMicrosoft365Group" }, { "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1102 + "Id": 1102, + "CommandName": "Remove-PnPMicrosoft365Group" }, { "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Id": 1103 + "Id": 1103, + "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Id": 1104 + "Id": 1104, + "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1105 + "Id": 1105, + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1106 + "Id": 1106, + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { "Command": "Remove-PnPNavigationNode -Identity 1032", "Rank": 1, - "CommandName": "Remove-PnPNavigationNode", - "Id": 1107 + "Id": 1107, + "CommandName": "Remove-PnPNavigationNode" }, { "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Rank": 2, - "CommandName": "Remove-PnPNavigationNode", - "Id": 1108 + "Id": 1108, + "CommandName": "Remove-PnPNavigationNode" }, { "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Rank": 3, - "CommandName": "Remove-PnPNavigationNode", - "Id": 1109 + "Id": 1109, + "CommandName": "Remove-PnPNavigationNode" }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Rank": 1, - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1110 + "Id": 1110, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Rank": 2, - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1111 + "Id": 1111, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Rank": 3, - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1112 + "Id": 1112, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "CommandName": "Remove-PnPOrgNewsSite", - "Id": 1113 + "Id": 1113, + "CommandName": "Remove-PnPOrgNewsSite" }, { "Command": "Remove-PnPPage -Identity \"MyPage\"", "Rank": 1, - "CommandName": "Remove-PnPPage", - "Id": 1114 + "Id": 1114, + "CommandName": "Remove-PnPPage" }, { "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Rank": 2, - "CommandName": "Remove-PnPPage", - "Id": 1115 + "Id": 1115, + "CommandName": "Remove-PnPPage" }, { "Command": "Remove-PnPPage $page", "Rank": 3, - "CommandName": "Remove-PnPPage", - "Id": 1116 + "Id": 1116, + "CommandName": "Remove-PnPPage" }, { "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Rank": 4, - "CommandName": "Remove-PnPPage", - "Id": 1117 + "Id": 1117, + "CommandName": "Remove-PnPPage" }, { "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Remove-PnPPageComponent", - "Id": 1118 + "Id": 1118, + "CommandName": "Remove-PnPPageComponent" }, { "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerBucket", - "Id": 1119 + "Id": 1119, + "CommandName": "Remove-PnPPlannerBucket" }, { "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerPlan", - "Id": 1120 + "Id": 1120, + "CommandName": "Remove-PnPPlannerPlan" }, { "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerRoster", - "Id": 1121 + "Id": 1121, + "CommandName": "Remove-PnPPlannerRoster" }, { "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPPlannerRosterMember", - "Id": 1122 + "Id": 1122, + "CommandName": "Remove-PnPPlannerRosterMember" }, { "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Rank": 1, - "CommandName": "Remove-PnPPlannerTask", - "Id": 1123 + "Id": 1123, + "CommandName": "Remove-PnPPlannerTask" }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1124 + "Id": 1124, + "CommandName": "Remove-PnPPropertyBagValue" }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Rank": 2, - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1125 + "Id": 1125, + "CommandName": "Remove-PnPPropertyBagValue" }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Rank": 3, - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1126 + "Id": 1126, + "CommandName": "Remove-PnPPropertyBagValue" }, { "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "CommandName": "Remove-PnPPublishingImageRendition", - "Id": 1127 + "Id": 1127, + "CommandName": "Remove-PnPPublishingImageRendition" }, { "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Rank": 1, - "CommandName": "Remove-PnPRoleDefinition", - "Id": 1128 + "Id": 1128, + "CommandName": "Remove-PnPRoleDefinition" }, { "Command": "Remove-PnPSdnProvider -Confirm:false", "Rank": 1, - "CommandName": "Remove-PnPSdnProvider", - "Id": 1129 + "Id": 1129, + "CommandName": "Remove-PnPSdnProvider" }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1130 + "Id": 1130, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1131 + "Id": 1131, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1132 + "Id": 1132, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1133 + "Id": 1133, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1134 + "Id": 1134, + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1135 + "Id": 1135, + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Id": 1136 + "Id": 1136, + "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { "Command": "Remove-PnPSiteCollectionTermStore", "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionTermStore", - "Id": 1137 + "Id": 1137, + "CommandName": "Remove-PnPSiteCollectionTermStore" }, { "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteDesign", - "Id": 1138 + "Id": 1138, + "CommandName": "Remove-PnPSiteDesign" }, { "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteDesignTask", - "Id": 1139 + "Id": 1139, + "CommandName": "Remove-PnPSiteDesignTask" }, { "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Remove-PnPSiteGroup", - "Id": 1140 + "Id": 1140, + "CommandName": "Remove-PnPSiteGroup" }, { "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Rank": 2, - "CommandName": "Remove-PnPSiteGroup", - "Id": 1141 + "Id": 1141, + "CommandName": "Remove-PnPSiteGroup" }, { "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "CommandName": "Remove-PnPSiteScript", - "Id": 1142 + "Id": 1142, + "CommandName": "Remove-PnPSiteScript" }, { "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "CommandName": "Remove-PnPSiteUserInvitations", - "Id": 1143 + "Id": 1143, + "CommandName": "Remove-PnPSiteUserInvitations" }, { "Command": "Remove-PnPStorageEntity -Key MyKey", "Rank": 1, - "CommandName": "Remove-PnPStorageEntity", - "Id": 1144 + "Id": 1144, + "CommandName": "Remove-PnPStorageEntity" }, { "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 2, - "CommandName": "Remove-PnPStorageEntity", - "Id": 1145 + "Id": 1145, + "CommandName": "Remove-PnPStorageEntity" }, { "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Rank": 1, - "CommandName": "Remove-PnPStoredCredential", - "Id": 1146 + "Id": 1146, + "CommandName": "Remove-PnPStoredCredential" }, { "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Rank": 1, - "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1147 + "Id": 1147, + "CommandName": "Remove-PnPTaxonomyItem" }, { "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Rank": 2, - "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1148 + "Id": 1148, + "CommandName": "Remove-PnPTaxonomyItem" }, { "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Rank": 1, - "CommandName": "Remove-PnPTeamsApp", - "Id": 1149 + "Id": 1149, + "CommandName": "Remove-PnPTeamsApp" }, { "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Rank": 2, - "CommandName": "Remove-PnPTeamsApp", - "Id": 1150 + "Id": 1150, + "CommandName": "Remove-PnPTeamsApp" }, { "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Rank": 1, - "CommandName": "Remove-PnPTeamsChannel", - "Id": 1151 + "Id": 1151, + "CommandName": "Remove-PnPTeamsChannel" }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Rank": 1, - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1152 + "Id": 1152, + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 2, - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1153 + "Id": 1153, + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Rank": 3, - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1154 + "Id": 1154, + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "Rank": 1, - "CommandName": "Remove-PnPTeamsTab", - "Id": 1155 + "Id": 1155, + "CommandName": "Remove-PnPTeamsTab" }, { "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "Rank": 2, - "CommandName": "Remove-PnPTeamsTab", - "Id": 1156 + "Id": 1156, + "CommandName": "Remove-PnPTeamsTab" }, { "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", - "Id": 1157 + "Id": 1157, + "CommandName": "Remove-PnPTeamsTab" }, { "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 1, - "CommandName": "Remove-PnPTeamsTag", - "Id": 1158 + "Id": 1158, + "CommandName": "Remove-PnPTeamsTag" }, { "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "CommandName": "Remove-PnPTeamsTeam", - "Id": 1159 + "Id": 1159, + "CommandName": "Remove-PnPTeamsTeam" }, { "Command": "Remove-PnPTeamsTeam -Identity testteam", "Rank": 2, - "CommandName": "Remove-PnPTeamsTeam", - "Id": 1160 + "Id": 1160, + "CommandName": "Remove-PnPTeamsTeam" }, { "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Rank": 1, - "CommandName": "Remove-PnPTeamsUser", - "Id": 1161 + "Id": 1161, + "CommandName": "Remove-PnPTeamsUser" }, { "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 2, - "CommandName": "Remove-PnPTeamsUser", - "Id": 1162 + "Id": 1162, + "CommandName": "Remove-PnPTeamsUser" }, { "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "CommandName": "Remove-PnPTenantCdnOrigin", - "Id": 1163 + "Id": 1163, + "CommandName": "Remove-PnPTenantCdnOrigin" }, { "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1164 + "Id": 1164, + "CommandName": "Remove-PnPTenantDeletedSite" }, { "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1165 + "Id": 1165, + "CommandName": "Remove-PnPTenantDeletedSite" }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Remove-PnPTenantSite", - "Id": 1166 + "Id": 1166, + "CommandName": "Remove-PnPTenantSite" }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Rank": 2, - "CommandName": "Remove-PnPTenantSite", - "Id": 1167 + "Id": 1167, + "CommandName": "Remove-PnPTenantSite" }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Rank": 3, - "CommandName": "Remove-PnPTenantSite", - "Id": 1168 + "Id": 1168, + "CommandName": "Remove-PnPTenantSite" }, { "Command": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, - "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Id": 1169 + "Id": 1169, + "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 1, - "CommandName": "Remove-PnPTenantTheme", - "Id": 1170 + "Id": 1170, + "CommandName": "Remove-PnPTenantTheme" }, { "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "CommandName": "Remove-PnPTerm", - "Id": 1171 + "Id": 1171, + "CommandName": "Remove-PnPTerm" }, { "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTerm", - "Id": 1172 + "Id": 1172, + "CommandName": "Remove-PnPTerm" }, { "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "CommandName": "Remove-PnPTermGroup", - "Id": 1173 + "Id": 1173, + "CommandName": "Remove-PnPTermGroup" }, { "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTermGroup", - "Id": 1174 + "Id": 1174, + "CommandName": "Remove-PnPTermGroup" }, { "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Rank": 3, - "CommandName": "Remove-PnPTermGroup", - "Id": 1175 + "Id": 1175, + "CommandName": "Remove-PnPTermGroup" }, { "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "Rank": 1, - "CommandName": "Remove-PnPTermLabel", - "Id": 1176 + "Id": 1176, + "CommandName": "Remove-PnPTermLabel" }, { "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "CommandName": "Remove-PnPTermLabel", - "Id": 1177 + "Id": 1177, + "CommandName": "Remove-PnPTermLabel" }, { "Command": "Remove-PnPUser -Identity 23", "Rank": 1, - "CommandName": "Remove-PnPUser", - "Id": 1178 + "Id": 1178, + "CommandName": "Remove-PnPUser" }, { "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "Rank": 2, - "CommandName": "Remove-PnPUser", - "Id": 1179 + "Id": 1179, + "CommandName": "Remove-PnPUser" }, { "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Rank": 3, - "CommandName": "Remove-PnPUser", - "Id": 1180 + "Id": 1180, + "CommandName": "Remove-PnPUser" }, { "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "CommandName": "Remove-PnPUserInfo", - "Id": 1181 + "Id": 1181, + "CommandName": "Remove-PnPUserInfo" }, { "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "CommandName": "Remove-PnPUserProfile", - "Id": 1182 + "Id": 1182, + "CommandName": "Remove-PnPUserProfile" }, { "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Rank": 1, - "CommandName": "Remove-PnPView", - "Id": 1183 + "Id": 1183, + "CommandName": "Remove-PnPView" }, { "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 1, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Id": 1184 + "Id": 1184, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { "Command": "Remove-PnPWeb -Identity projectA", "Rank": 1, - "CommandName": "Remove-PnPWeb", - "Id": 1185 + "Id": 1185, + "CommandName": "Remove-PnPWeb" }, { "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Rank": 2, - "CommandName": "Remove-PnPWeb", - "Id": 1186 + "Id": 1186, + "CommandName": "Remove-PnPWeb" }, { "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Rank": 1, - "CommandName": "Remove-PnPWebhookSubscription", - "Id": 1187 + "Id": 1187, + "CommandName": "Remove-PnPWebhookSubscription" }, { "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "CommandName": "Remove-PnPWebPart", - "Id": 1188 + "Id": 1188, + "CommandName": "Remove-PnPWebPart" }, { "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Rank": 2, - "CommandName": "Remove-PnPWebPart", - "Id": 1189 + "Id": 1189, + "CommandName": "Remove-PnPWebPart" }, { "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Rank": 1, - "CommandName": "Remove-PnPWikiPage", - "Id": 1190 + "Id": 1190, + "CommandName": "Remove-PnPWikiPage" }, { "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Rank": 1, - "CommandName": "Rename-PnPFile", - "Id": 1191 + "Id": 1191, + "CommandName": "Rename-PnPFile" }, { "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Rank": 2, - "CommandName": "Rename-PnPFile", - "Id": 1192 + "Id": 1192, + "CommandName": "Rename-PnPFile" }, { "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Rank": 3, - "CommandName": "Rename-PnPFile", - "Id": 1193 + "Id": 1193, + "CommandName": "Rename-PnPFile" }, { "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Rank": 1, - "CommandName": "Rename-PnPFolder", - "Id": 1194 + "Id": 1194, + "CommandName": "Rename-PnPFolder" }, { "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Repair-PnPSite", - "Id": 1195 + "Id": 1195, + "CommandName": "Repair-PnPSite" }, { "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "CommandName": "Repair-PnPSite", - "Id": 1196 + "Id": 1196, + "CommandName": "Repair-PnPSite" }, { "Command": "Request-PnPAccessToken", "Rank": 1, - "CommandName": "Request-PnPAccessToken", - "Id": 1197 + "Id": 1197, + "CommandName": "Request-PnPAccessToken" }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Rank": 2, - "CommandName": "Request-PnPAccessToken", - "Id": 1198 + "Id": 1198, + "CommandName": "Request-PnPAccessToken" }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "Rank": 3, - "CommandName": "Request-PnPAccessToken", - "Id": 1199 + "Id": 1199, + "CommandName": "Request-PnPAccessToken" }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Rank": 4, - "CommandName": "Request-PnPAccessToken", - "Id": 1200 + "Id": 1200, + "CommandName": "Request-PnPAccessToken" }, { "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Rank": 1, - "CommandName": "Request-PnPPersonalSite", - "Id": 1201 + "Id": 1201, + "CommandName": "Request-PnPPersonalSite" }, { "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Rank": 2, - "CommandName": "Request-PnPPersonalSite", - "Id": 1202 + "Id": 1202, + "CommandName": "Request-PnPPersonalSite" }, { "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Rank": 1, - "CommandName": "Request-PnPReIndexList", - "Id": 1203 + "Id": 1203, + "CommandName": "Request-PnPReIndexList" }, { "Command": "Request-PnPReIndexWeb", "Rank": 1, - "CommandName": "Request-PnPReIndexWeb", - "Id": 1204 + "Id": 1204, + "CommandName": "Request-PnPReIndexWeb" }, { "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Rank": 1, - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1205 + "Id": 1205, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Rank": 2, - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1206 + "Id": 1206, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Rank": 3, - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1207 + "Id": 1207, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Rank": 1, - "CommandName": "Reset-PnPFileVersion", - "Id": 1208 + "Id": 1208, + "CommandName": "Reset-PnPFileVersion" }, { "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Rank": 2, - "CommandName": "Reset-PnPFileVersion", - "Id": 1209 + "Id": 1209, + "CommandName": "Reset-PnPFileVersion" }, { "Command": "Reset-PnPLabel -List \"Demo List\"", "Rank": 1, - "CommandName": "Reset-PnPLabel", - "Id": 1210 + "Id": 1210, + "CommandName": "Reset-PnPLabel" }, { "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Rank": 2, - "CommandName": "Reset-PnPLabel", - "Id": 1211 + "Id": 1211, + "CommandName": "Reset-PnPLabel" }, { "Command": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1212 + "Id": 1212, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Rank": 1, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Id": 1213 + "Id": 1213, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Rank": 1, - "CommandName": "Resolve-PnPFolder", - "Id": 1214 + "Id": 1214, + "CommandName": "Resolve-PnPFolder" }, { "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Id": 1215 + "Id": 1215, + "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "CommandName": "Restore-PnPFileVersion", - "Id": 1216 + "Id": 1216, + "CommandName": "Restore-PnPFileVersion" }, { "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Rank": 2, - "CommandName": "Restore-PnPFileVersion", - "Id": 1217 + "Id": 1217, + "CommandName": "Restore-PnPFileVersion" }, { "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 3, - "CommandName": "Restore-PnPFileVersion", - "Id": 1218 + "Id": 1218, + "CommandName": "Restore-PnPFileVersion" }, { "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "CommandName": "Restore-PnPListItemVersion", - "Id": 1219 + "Id": 1219, + "CommandName": "Restore-PnPListItemVersion" }, { "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "CommandName": "Restore-PnPListItemVersion", - "Id": 1220 + "Id": 1220, + "CommandName": "Restore-PnPListItemVersion" }, { "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "CommandName": "Restore-PnPRecycleBinItem", - "Id": 1221 + "Id": 1221, + "CommandName": "Restore-PnPRecycleBinItem" }, { "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1222 + "Id": 1222, + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1223 + "Id": 1223, + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "CommandName": "Restore-PnPTenantSite", - "Id": 1224 + "Id": 1224, + "CommandName": "Restore-PnPTenantSite" }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "CommandName": "Restore-PnPTenantSite", - "Id": 1225 + "Id": 1225, + "CommandName": "Restore-PnPTenantSite" }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Rank": 3, - "CommandName": "Restore-PnPTenantSite", - "Id": 1226 + "Id": 1226, + "CommandName": "Restore-PnPTenantSite" }, { "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Rank": 1, - "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Id": 1227 + "Id": 1227, + "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Revoke-PnPHubSiteRights", - "Id": 1228 + "Id": 1228, + "CommandName": "Revoke-PnPHubSiteRights" }, { "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "CommandName": "Revoke-PnPSiteDesignRights", - "Id": 1229 + "Id": 1229, + "CommandName": "Revoke-PnPSiteDesignRights" }, { "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Id": 1230 + "Id": 1230, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Rank": 1, - "CommandName": "Revoke-PnPUserSession", - "Id": 1231 + "Id": 1231, + "CommandName": "Revoke-PnPUserSession" }, { "Command": "Save-PnPPageConversionLog", "Rank": 1, - "CommandName": "Save-PnPPageConversionLog", - "Id": 1232 + "Id": 1232, + "CommandName": "Save-PnPPageConversionLog" }, { "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Rank": 1, - "CommandName": "Save-PnPSiteTemplate", - "Id": 1233 + "Id": 1233, + "CommandName": "Save-PnPSiteTemplate" }, { "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Rank": 1, - "CommandName": "Save-PnPTenantTemplate", - "Id": 1234 + "Id": 1234, + "CommandName": "Save-PnPTenantTemplate" }, { "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", - "Id": 1235 + "Id": 1235, + "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", "Rank": 2, - "CommandName": "Send-PnPMail", - "Id": 1236 + "Id": 1236, + "CommandName": "Send-PnPMail" }, { "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Rank": 3, - "CommandName": "Send-PnPMail", - "Id": 1237 + "Id": 1237, + "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", "Rank": 4, - "CommandName": "Send-PnPMail", - "Id": 1238 + "Id": 1238, + "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", "Rank": 5, - "CommandName": "Send-PnPMail", - "Id": 1239 + "Id": 1239, + "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\"", "Rank": 6, - "CommandName": "Send-PnPMail", - "Id": 1240 + "Id": 1240, + "CommandName": "Send-PnPMail" }, { "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Rank": 1, - "CommandName": "Set-PnPAdaptiveScopeProperty", - "Id": 1241 + "Id": 1241, + "CommandName": "Set-PnPAdaptiveScopeProperty" }, { "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1242 + "Id": 1242, + "CommandName": "Set-PnPApplicationCustomizer" }, { "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", - "Id": 1243 + "Id": 1243, + "CommandName": "Set-PnPApplicationCustomizer" }, { "Command": "Set-PnPAppSideLoading -On", "Rank": 1, - "CommandName": "Set-PnPAppSideLoading", - "Id": 1244 + "Id": 1244, + "CommandName": "Set-PnPAppSideLoading" }, { "Command": "Set-PnPAppSideLoading -Off", "Rank": 2, - "CommandName": "Set-PnPAppSideLoading", - "Id": 1245 + "Id": 1245, + "CommandName": "Set-PnPAppSideLoading" }, { "Command": "Set-PnPAuditing -EnableAll", "Rank": 1, - "CommandName": "Set-PnPAuditing", - "Id": 1246 + "Id": 1246, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAuditing -DisableAll", "Rank": 2, - "CommandName": "Set-PnPAuditing", - "Id": 1247 + "Id": 1247, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAuditing -RetentionTime 7", "Rank": 3, - "CommandName": "Set-PnPAuditing", - "Id": 1248 + "Id": 1248, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAuditing -TrimAuditLog", "Rank": 4, - "CommandName": "Set-PnPAuditing", - "Id": 1249 + "Id": 1249, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Rank": 5, - "CommandName": "Set-PnPAuditing", - "Id": 1250 + "Id": 1250, + "CommandName": "Set-PnPAuditing" }, { "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Rank": 1, - "CommandName": "Set-PnPAvailablePageLayouts", - "Id": 1251 + "Id": 1251, + "CommandName": "Set-PnPAvailablePageLayouts" }, { "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Rank": 1, - "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1252 + "Id": 1252, + "CommandName": "Set-PnPAzureADAppSitePermission" }, { "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Rank": 2, - "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1253 + "Id": 1253, + "CommandName": "Set-PnPAzureADAppSitePermission" }, { "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "CommandName": "Set-PnPAzureADGroup", - "Id": 1254 + "Id": 1254, + "CommandName": "Set-PnPAzureADGroup" }, { "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "CommandName": "Set-PnPAzureADGroup", - "Id": 1255 + "Id": 1255, + "CommandName": "Set-PnPAzureADGroup" }, { "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Rank": 3, - "CommandName": "Set-PnPAzureADGroup", - "Id": 1256 + "Id": 1256, + "CommandName": "Set-PnPAzureADGroup" }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Rank": 1, - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1257 + "Id": 1257, + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Rank": 2, - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1258 + "Id": 1258, + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Rank": 3, - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1259 + "Id": 1259, + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Rank": 1, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1260 + "Id": 1260, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Rank": 2, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1261 + "Id": 1261, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Rank": 1, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1262 + "Id": 1262, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Rank": 2, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1263 + "Id": 1263, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Rank": 3, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1264 + "Id": 1264, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Rank": 4, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1265 + "Id": 1265, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 1, - "CommandName": "Set-PnPContentType", - "Id": 1266 + "Id": 1266, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Rank": 2, - "CommandName": "Set-PnPContentType", - "Id": 1267 + "Id": 1267, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 3, - "CommandName": "Set-PnPContentType", - "Id": 1268 + "Id": 1268, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 4, - "CommandName": "Set-PnPContentType", - "Id": 1269 + "Id": 1269, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 5, - "CommandName": "Set-PnPContentType", - "Id": 1270 + "Id": 1270, + "CommandName": "Set-PnPContentType" }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Rank": 1, - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1271 + "Id": 1271, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Rank": 2, - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1272 + "Id": 1272, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Rank": 3, - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1273 + "Id": 1273, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Rank": 4, - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1274 + "Id": 1274, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Rank": 1, - "CommandName": "Set-PnPDefaultContentTypeToList", - "Id": 1275 + "Id": 1275, + "CommandName": "Set-PnPDefaultContentTypeToList" }, { "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Rank": 1, - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1276 + "Id": 1276, + "CommandName": "Set-PnPDefaultPageLayout" }, { "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Rank": 2, - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1277 + "Id": 1277, + "CommandName": "Set-PnPDefaultPageLayout" }, { "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Rank": 3, - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1278 + "Id": 1278, + "CommandName": "Set-PnPDefaultPageLayout" }, { "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Rank": 1, - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1279 + "Id": 1279, + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 2, - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1280 + "Id": 1280, + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 3, - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1281 + "Id": 1281, + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Rank": 1, - "CommandName": "Set-PnPDocumentSetField", - "Id": 1282 + "Id": 1282, + "CommandName": "Set-PnPDocumentSetField" }, { "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Rank": 2, - "CommandName": "Set-PnPDocumentSetField", - "Id": 1283 + "Id": 1283, + "CommandName": "Set-PnPDocumentSetField" }, { "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "Rank": 1, - "CommandName": "Set-PnPField", - "Id": 1284 + "Id": 1284, + "CommandName": "Set-PnPField" }, { "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Rank": 2, - "CommandName": "Set-PnPField", - "Id": 1285 + "Id": 1285, + "CommandName": "Set-PnPField" }, { "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Rank": 3, - "CommandName": "Set-PnPField", - "Id": 1286 + "Id": 1286, + "CommandName": "Set-PnPField" }, { "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Set-PnPFileCheckedIn", - "Id": 1287 + "Id": 1287, + "CommandName": "Set-PnPFileCheckedIn" }, { "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Rank": 2, - "CommandName": "Set-PnPFileCheckedIn", - "Id": 1288 + "Id": 1288, + "CommandName": "Set-PnPFileCheckedIn" }, { "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Set-PnPFileCheckedOut", - "Id": 1289 + "Id": 1289, + "CommandName": "Set-PnPFileCheckedOut" }, { "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPFolderPermission", - "Id": 1290 + "Id": 1290, + "CommandName": "Set-PnPFolderPermission" }, { "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPFolderPermission", - "Id": 1291 + "Id": 1291, + "CommandName": "Set-PnPFolderPermission" }, { "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "CommandName": "Set-PnPFolderPermission", - "Id": 1292 + "Id": 1292, + "CommandName": "Set-PnPFolderPermission" }, { "Command": "Set-PnPFooter -Enabled:$true", "Rank": 1, - "CommandName": "Set-PnPFooter", - "Id": 1293 + "Id": 1293, + "CommandName": "Set-PnPFooter" }, { "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Rank": 2, - "CommandName": "Set-PnPFooter", - "Id": 1294 + "Id": 1294, + "CommandName": "Set-PnPFooter" }, { "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Rank": 3, - "CommandName": "Set-PnPFooter", - "Id": 1295 + "Id": 1295, + "CommandName": "Set-PnPFooter" }, { "Command": "Set-PnPFooter -LogoUrl \"\"", "Rank": 4, - "CommandName": "Set-PnPFooter", - "Id": 1296 + "Id": 1296, + "CommandName": "Set-PnPFooter" }, { "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Rank": 1, - "CommandName": "Set-PnPGraphSubscription", - "Id": 1297 + "Id": 1297, + "CommandName": "Set-PnPGraphSubscription" }, { "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Rank": 1, - "CommandName": "Set-PnPGroup", - "Id": 1298 + "Id": 1298, + "CommandName": "Set-PnPGroup" }, { "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Rank": 2, - "CommandName": "Set-PnPGroup", - "Id": 1299 + "Id": 1299, + "CommandName": "Set-PnPGroup" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Rank": 1, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1300 + "Id": 1300, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Rank": 2, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1301 + "Id": 1301, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Rank": 3, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1302 + "Id": 1302, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Rank": 4, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1303 + "Id": 1303, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Rank": 5, - "CommandName": "Set-PnPGroupPermissions", - "Id": 1304 + "Id": 1304, + "CommandName": "Set-PnPGroupPermissions" }, { "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Rank": 1, - "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1305 + "Id": 1305, + "CommandName": "Set-PnPHideDefaultThemes" }, { "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Rank": 2, - "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1306 + "Id": 1306, + "CommandName": "Set-PnPHideDefaultThemes" }, { "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Rank": 1, - "CommandName": "Set-PnPHomePage", - "Id": 1307 + "Id": 1307, + "CommandName": "Set-PnPHomePage" }, { "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Rank": 2, - "CommandName": "Set-PnPHomePage", - "Id": 1308 + "Id": 1308, + "CommandName": "Set-PnPHomePage" }, { "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Rank": 1, - "CommandName": "Set-PnPHomeSite", - "Id": 1309 + "Id": 1309, + "CommandName": "Set-PnPHomeSite" }, { "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Rank": 2, - "CommandName": "Set-PnPHomeSite", - "Id": 1310 + "Id": 1310, + "CommandName": "Set-PnPHomeSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "Rank": 1, - "CommandName": "Set-PnPHubSite", - "Id": 1311 + "Id": 1311, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "Rank": 2, - "CommandName": "Set-PnPHubSite", - "Id": 1312 + "Id": 1312, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "Rank": 3, - "CommandName": "Set-PnPHubSite", - "Id": 1313 + "Id": 1313, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "Rank": 4, - "CommandName": "Set-PnPHubSite", - "Id": 1314 + "Id": 1314, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Rank": 5, - "CommandName": "Set-PnPHubSite", - "Id": 1315 + "Id": 1315, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Rank": 6, - "CommandName": "Set-PnPHubSite", - "Id": 1316 + "Id": 1316, + "CommandName": "Set-PnPHubSite" }, { "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Rank": 1, - "CommandName": "Set-PnPImageListItemColumn", - "Id": 1317 + "Id": 1317, + "CommandName": "Set-PnPImageListItemColumn" }, { "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Rank": 2, - "CommandName": "Set-PnPImageListItemColumn", - "Id": 1318 + "Id": 1318, + "CommandName": "Set-PnPImageListItemColumn" }, { "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Rank": 1, - "CommandName": "Set-PnPIndexedProperties", - "Id": 1319 + "Id": 1319, + "CommandName": "Set-PnPIndexedProperties" }, { "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Rank": 1, - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1320 + "Id": 1320, + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Rank": 2, - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1321 + "Id": 1321, + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Rank": 1, - "CommandName": "Set-PnPKnowledgeHubSite", - "Id": 1322 + "Id": 1322, + "CommandName": "Set-PnPKnowledgeHubSite" }, { "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Rank": 1, - "CommandName": "Set-PnPLabel", - "Id": 1323 + "Id": 1323, + "CommandName": "Set-PnPLabel" }, { "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Rank": 2, - "CommandName": "Set-PnPLabel", - "Id": 1324 + "Id": 1324, + "CommandName": "Set-PnPLabel" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Rank": 1, - "CommandName": "Set-PnPList", - "Id": 1325 + "Id": 1325, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Rank": 2, - "CommandName": "Set-PnPList", - "Id": 1326 + "Id": 1326, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Rank": 3, - "CommandName": "Set-PnPList", - "Id": 1327 + "Id": 1327, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Rank": 4, - "CommandName": "Set-PnPList", - "Id": 1328 + "Id": 1328, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Rank": 5, - "CommandName": "Set-PnPList", - "Id": 1329 + "Id": 1329, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Rank": 6, - "CommandName": "Set-PnPList", - "Id": 1330 + "Id": 1330, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Rank": 7, - "CommandName": "Set-PnPList", - "Id": 1331 + "Id": 1331, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "Rank": 8, - "CommandName": "Set-PnPList", - "Id": 1332 + "Id": 1332, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "Rank": 9, - "CommandName": "Set-PnPList", - "Id": 1333 + "Id": 1333, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "Rank": 10, - "CommandName": "Set-PnPList", - "Id": 1334 + "Id": 1334, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "Rank": 11, - "CommandName": "Set-PnPList", - "Id": 1335 + "Id": 1335, + "CommandName": "Set-PnPList" }, { "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "Rank": 1, - "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1336 + "Id": 1336, + "CommandName": "Set-PnPListInformationRightsManagement" }, { "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "Rank": 2, - "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1337 + "Id": 1337, + "CommandName": "Set-PnPListInformationRightsManagement" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "CommandName": "Set-PnPListItem", - "Id": 1338 + "Id": 1338, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "CommandName": "Set-PnPListItem", - "Id": 1339 + "Id": 1339, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 3, - "CommandName": "Set-PnPListItem", - "Id": 1340 + "Id": 1340, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "Rank": 4, - "CommandName": "Set-PnPListItem", - "Id": 1341 + "Id": 1341, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "Rank": 5, - "CommandName": "Set-PnPListItem", - "Id": 1342 + "Id": 1342, + "CommandName": "Set-PnPListItem" }, { "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Set-PnPListItemAsRecord", - "Id": 1343 + "Id": 1343, + "CommandName": "Set-PnPListItemAsRecord" }, { "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "Rank": 2, - "CommandName": "Set-PnPListItemAsRecord", - "Id": 1344 + "Id": 1344, + "CommandName": "Set-PnPListItemAsRecord" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPListItemPermission", - "Id": 1345 + "Id": 1345, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPListItemPermission", - "Id": 1346 + "Id": 1346, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "CommandName": "Set-PnPListItemPermission", - "Id": 1347 + "Id": 1347, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "Rank": 4, - "CommandName": "Set-PnPListItemPermission", - "Id": 1348 + "Id": 1348, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "Rank": 5, - "CommandName": "Set-PnPListItemPermission", - "Id": 1349 + "Id": 1349, + "CommandName": "Set-PnPListItemPermission" }, { "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "CommandName": "Set-PnPListPermission", - "Id": 1350 + "Id": 1350, + "CommandName": "Set-PnPListPermission" }, { "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "CommandName": "Set-PnPListPermission", - "Id": 1351 + "Id": 1351, + "CommandName": "Set-PnPListPermission" }, { "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "Rank": 1, - "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1352 + "Id": 1352, + "CommandName": "Set-PnPListRecordDeclaration" }, { "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "Rank": 2, - "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1353 + "Id": 1353, + "CommandName": "Set-PnPListRecordDeclaration" }, { "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 1, - "CommandName": "Set-PnPMasterPage", - "Id": 1354 + "Id": 1354, + "CommandName": "Set-PnPMasterPage" }, { "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 2, - "CommandName": "Set-PnPMasterPage", - "Id": 1355 + "Id": 1355, + "CommandName": "Set-PnPMasterPage" }, { "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 3, - "CommandName": "Set-PnPMasterPage", - "Id": 1356 + "Id": 1356, + "CommandName": "Set-PnPMasterPage" }, { "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 4, - "CommandName": "Set-PnPMasterPage", - "Id": 1357 + "Id": 1357, + "CommandName": "Set-PnPMasterPage" }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1358 + "Id": 1358, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1359 + "Id": 1359, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1360 + "Id": 1360, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1361 + "Id": 1361, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1362 + "Id": 1362, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1363 + "Id": 1363, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1364 + "Id": 1364, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1365 + "Id": 1365, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1366 + "Id": 1366, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1367 + "Id": 1367, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1368 + "Id": 1368, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1369 + "Id": 1369, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1370 + "Id": 1370, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1371 + "Id": 1371, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1372 + "Id": 1372, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1373 + "Id": 1373, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1374 + "Id": 1374, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1375 + "Id": 1375, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1376 + "Id": 1376, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1377 + "Id": 1377, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "Rank": 3, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1378 + "Id": 1378, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "Rank": 4, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1379 + "Id": 1379, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "Rank": 5, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1380 + "Id": 1380, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1381 + "Id": 1381, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "Rank": 1, - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1382 + "Id": 1382, + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "Rank": 2, - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1383 + "Id": 1383, + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { "Command": "Set-PnPMinimalDownloadStrategy -Off", "Rank": 1, - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1384 + "Id": 1384, + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { "Command": "Set-PnPMinimalDownloadStrategy -On", "Rank": 2, - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1385 + "Id": 1385, + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Rank": 1, - "CommandName": "Set-PnPPage", - "Id": 1386 + "Id": 1386, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Rank": 2, - "CommandName": "Set-PnPPage", - "Id": 1387 + "Id": 1387, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Rank": 3, - "CommandName": "Set-PnPPage", - "Id": 1388 + "Id": 1388, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Rank": 4, - "CommandName": "Set-PnPPage", - "Id": 1389 + "Id": 1389, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Rank": 5, - "CommandName": "Set-PnPPage", - "Id": 1390 + "Id": 1390, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "Rank": 6, - "CommandName": "Set-PnPPage", - "Id": 1391 + "Id": 1391, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "CommandName": "Set-PnPPage", - "Id": 1392 + "Id": 1392, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "Rank": 8, - "CommandName": "Set-PnPPage", - "Id": 1393 + "Id": 1393, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "CommandName": "Set-PnPPage", - "Id": 1394 + "Id": 1394, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "CommandName": "Set-PnPPage", - "Id": 1395 + "Id": 1395, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "Rank": 11, - "CommandName": "Set-PnPPage", - "Id": 1396 + "Id": 1396, + "CommandName": "Set-PnPPage" }, { "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "Rank": 1, - "CommandName": "Set-PnPPageTextPart", - "Id": 1397 + "Id": 1397, + "CommandName": "Set-PnPPageTextPart" }, { "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "Rank": 1, - "CommandName": "Set-PnPPageWebPart", - "Id": 1398 + "Id": 1398, + "CommandName": "Set-PnPPageWebPart" }, { "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "Rank": 2, - "CommandName": "Set-PnPPageWebPart", - "Id": 1399 + "Id": 1399, + "CommandName": "Set-PnPPageWebPart" }, { "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "Rank": 1, - "CommandName": "Set-PnPPlannerBucket", - "Id": 1400 + "Id": 1400, + "CommandName": "Set-PnPPlannerBucket" }, { "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "Rank": 1, - "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1401 + "Id": 1401, + "CommandName": "Set-PnPPlannerConfiguration" }, { "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "Rank": 2, - "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1402 + "Id": 1402, + "CommandName": "Set-PnPPlannerConfiguration" }, { "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "Rank": 1, - "CommandName": "Set-PnPPlannerPlan", - "Id": 1403 + "Id": 1403, + "CommandName": "Set-PnPPlannerPlan" }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "Rank": 1, - "CommandName": "Set-PnPPlannerTask", - "Id": 1404 + "Id": 1404, + "CommandName": "Set-PnPPlannerTask" }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "Rank": 2, - "CommandName": "Set-PnPPlannerTask", - "Id": 1405 + "Id": 1405, + "CommandName": "Set-PnPPlannerTask" }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Rank": 3, - "CommandName": "Set-PnPPlannerTask", - "Id": 1406 + "Id": 1406, + "CommandName": "Set-PnPPlannerTask" }, { "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "CommandName": "Set-PnPPlannerUserPolicy", - "Id": 1407 + "Id": 1407, + "CommandName": "Set-PnPPlannerUserPolicy" }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Rank": 1, - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1408 + "Id": 1408, + "CommandName": "Set-PnPPropertyBagValue" }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Rank": 2, - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1409 + "Id": 1409, + "CommandName": "Set-PnPPropertyBagValue" }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "Rank": 3, - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1410 + "Id": 1410, + "CommandName": "Set-PnPPropertyBagValue" }, { "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Rank": 1, - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1411 + "Id": 1411, + "CommandName": "Set-PnPRequestAccessEmails" }, { "Command": "Set-PnPRequestAccessEmails -Disabled", "Rank": 2, - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1412 + "Id": 1412, + "CommandName": "Set-PnPRequestAccessEmails" }, { "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "Rank": 3, - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1413 + "Id": 1413, + "CommandName": "Set-PnPRequestAccessEmails" }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Rank": 1, - "CommandName": "Set-PnPRoleDefinition", - "Id": 1414 + "Id": 1414, + "CommandName": "Set-PnPRoleDefinition" }, { "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Rank": 2, - "CommandName": "Set-PnPRoleDefinition", - "Id": 1415 + "Id": 1415, + "CommandName": "Set-PnPRoleDefinition" }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Rank": 3, - "CommandName": "Set-PnPRoleDefinition", - "Id": 1416 + "Id": 1416, + "CommandName": "Set-PnPRoleDefinition" }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "Rank": 4, - "CommandName": "Set-PnPRoleDefinition", - "Id": 1417 + "Id": 1417, + "CommandName": "Set-PnPRoleDefinition" }, { "Command": "Set-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1418 + "Id": 1418, + "CommandName": "Set-PnPSearchConfiguration" }, { "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1419 + "Id": 1419, + "CommandName": "Set-PnPSearchConfiguration" }, { "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1420 + "Id": 1420, + "CommandName": "Set-PnPSearchConfiguration" }, { "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1421 + "Id": 1421, + "CommandName": "Set-PnPSearchConfiguration" }, { "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", - "Id": 1422 + "Id": 1422, + "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\"", "Rank": 2, - "CommandName": "Set-PnPSearchExternalItem", - "Id": 1423 + "Id": 1423, + "CommandName": "Set-PnPSearchExternalItem" }, { "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Rank": 1, - "CommandName": "Set-PnPSearchSettings", - "Id": 1424 + "Id": 1424, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Rank": 2, - "CommandName": "Set-PnPSearchSettings", - "Id": 1425 + "Id": 1425, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Rank": 3, - "CommandName": "Set-PnPSearchSettings", - "Id": 1426 + "Id": 1426, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Rank": 4, - "CommandName": "Set-PnPSearchSettings", - "Id": 1427 + "Id": 1427, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "Rank": 5, - "CommandName": "Set-PnPSearchSettings", - "Id": 1428 + "Id": 1428, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchScope Tenant", "Rank": 6, - "CommandName": "Set-PnPSearchSettings", - "Id": 1429 + "Id": 1429, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSearchSettings -SearchScope Hub", "Rank": 7, - "CommandName": "Set-PnPSearchSettings", - "Id": 1430 + "Id": 1430, + "CommandName": "Set-PnPSearchSettings" }, { "Command": "Set-PnPSite -Classification \"HBI\"", "Rank": 1, - "CommandName": "Set-PnPSite", - "Id": 1431 + "Id": 1431, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -Classification $null", "Rank": 2, - "CommandName": "Set-PnPSite", - "Id": 1432 + "Id": 1432, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -DisableFlows", "Rank": 3, - "CommandName": "Set-PnPSite", - "Id": 1433 + "Id": 1433, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -DisableFlows:$false", "Rank": 4, - "CommandName": "Set-PnPSite", - "Id": 1434 + "Id": 1434, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "Rank": 5, - "CommandName": "Set-PnPSite", - "Id": 1435 + "Id": 1435, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -NoScriptSite $false", "Rank": 6, - "CommandName": "Set-PnPSite", - "Id": 1436 + "Id": 1436, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "Rank": 7, - "CommandName": "Set-PnPSite", - "Id": 1437 + "Id": 1437, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "Rank": 8, - "CommandName": "Set-PnPSite", - "Id": 1438 + "Id": 1438, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "Rank": 9, - "CommandName": "Set-PnPSite", - "Id": 1439 + "Id": 1439, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "Rank": 10, - "CommandName": "Set-PnPSite", - "Id": 1440 + "Id": 1440, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "Rank": 11, - "CommandName": "Set-PnPSite", - "Id": 1441 + "Id": 1441, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "Rank": 12, - "CommandName": "Set-PnPSite", - "Id": 1442 + "Id": 1442, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "Rank": 13, - "CommandName": "Set-PnPSite", - "Id": 1443 + "Id": 1443, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "Rank": 14, - "CommandName": "Set-PnPSite", - "Id": 1444 + "Id": 1444, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "Rank": 15, - "CommandName": "Set-PnPSite", - "Id": 1445 + "Id": 1445, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "Rank": 16, - "CommandName": "Set-PnPSite", - "Id": 1446 + "Id": 1446, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSite -CancelVPForExistingLibs", "Rank": 17, - "CommandName": "Set-PnPSite", - "Id": 1447 + "Id": 1447, + "CommandName": "Set-PnPSite" }, { "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "Rank": 1, - "CommandName": "Set-PnPSiteClassification", - "Id": 1448 + "Id": 1448, + "CommandName": "Set-PnPSiteClassification" }, { "Command": "Set-PnPSiteClosure -State Open", "Rank": 1, - "CommandName": "Set-PnPSiteClosure", - "Id": 1449 + "Id": 1449, + "CommandName": "Set-PnPSiteClosure" }, { "Command": "Set-PnPSiteClosure -State Closed", "Rank": 2, - "CommandName": "Set-PnPSiteClosure", - "Id": 1450 + "Id": 1450, + "CommandName": "Set-PnPSiteClosure" }, { "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "Rank": 1, - "CommandName": "Set-PnPSiteDesign", - "Id": 1451 + "Id": 1451, + "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\"", "Rank": 2, - "CommandName": "Set-PnPSiteDesign", - "Id": 1452 + "Id": 1452, + "CommandName": "Set-PnPSiteDesign" }, { "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "Rank": 1, - "CommandName": "Set-PnPSiteGroup", - "Id": 1453 + "Id": 1453, + "CommandName": "Set-PnPSiteGroup" }, { "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "Rank": 2, - "CommandName": "Set-PnPSiteGroup", - "Id": 1454 + "Id": 1454, + "CommandName": "Set-PnPSiteGroup" }, { "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 1, - "CommandName": "Set-PnPSitePolicy", - "Id": 1455 + "Id": 1455, + "CommandName": "Set-PnPSitePolicy" }, { "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "CommandName": "Set-PnPSiteScript", - "Id": 1456 + "Id": 1456, + "CommandName": "Set-PnPSiteScript" }, { "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "CommandName": "Set-PnPSiteScriptPackage", - "Id": 1457 + "Id": 1457, + "CommandName": "Set-PnPSiteScriptPackage" }, { "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Rank": 1, - "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1458 + "Id": 1458, + "CommandName": "Set-PnPSiteSensitivityLabel" }, { "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "Rank": 2, - "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1459 + "Id": 1459, + "CommandName": "Set-PnPSiteSensitivityLabel" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "Rank": 1, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1460 + "Id": 1460, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "Rank": 2, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1461 + "Id": 1461, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 3, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1462 + "Id": 1462, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 4, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1463 + "Id": 1463, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 5, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1464 + "Id": 1464, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 6, - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1465 + "Id": 1465, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 1, - "CommandName": "Set-PnPStorageEntity", - "Id": 1466 + "Id": 1466, + "CommandName": "Set-PnPStorageEntity" }, { "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 2, - "CommandName": "Set-PnPStorageEntity", - "Id": 1467 + "Id": 1467, + "CommandName": "Set-PnPStorageEntity" }, { "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1468 + "Id": 1468, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1469 + "Id": 1469, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1470 + "Id": 1470, + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1471 + "Id": 1471, + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "Rank": 1, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1472 + "Id": 1472, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "Rank": 2, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1473 + "Id": 1473, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "Rank": 1, - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1474 + "Id": 1474, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "Rank": 2, - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1475 + "Id": 1475, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "Rank": 3, - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1476 + "Id": 1476, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Command": "Set-PnPTeamifyPromptHidden", "Rank": 1, - "CommandName": "Set-PnPTeamifyPromptHidden", - "Id": 1477 + "Id": 1477, + "CommandName": "Set-PnPTeamifyPromptHidden" }, { "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Rank": 1, - "CommandName": "Set-PnPTeamsChannel", - "Id": 1478 + "Id": 1478, + "CommandName": "Set-PnPTeamsChannel" }, { "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Rank": 2, - "CommandName": "Set-PnPTeamsChannel", - "Id": 1479 + "Id": 1479, + "CommandName": "Set-PnPTeamsChannel" }, { "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Rank": 1, - "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1480 + "Id": 1480, + "CommandName": "Set-PnpTeamsChannelUser" }, { "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Rank": 2, - "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1481 + "Id": 1481, + "CommandName": "Set-PnpTeamsChannelUser" }, { "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTab", - "Id": 1482 + "Id": 1482, + "CommandName": "Set-PnPTeamsTab" }, { "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTag", - "Id": 1483 + "Id": 1483, + "CommandName": "Set-PnPTeamsTag" }, { "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Rank": 1, - "CommandName": "Set-PnPTeamsTeam", - "Id": 1484 + "Id": 1484, + "CommandName": "Set-PnPTeamsTeam" }, { "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Rank": 2, - "CommandName": "Set-PnPTeamsTeam", - "Id": 1485 + "Id": 1485, + "CommandName": "Set-PnPTeamsTeam" }, { "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Rank": 3, - "CommandName": "Set-PnPTeamsTeam", - "Id": 1486 + "Id": 1486, + "CommandName": "Set-PnPTeamsTeam" }, { "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "Rank": 4, - "CommandName": "Set-PnPTeamsTeam", - "Id": 1487 + "Id": 1487, + "CommandName": "Set-PnPTeamsTeam" }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Rank": 1, - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1488 + "Id": 1488, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Rank": 2, - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1489 + "Id": 1489, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "Rank": 3, - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1490 + "Id": 1490, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "Rank": 1, - "CommandName": "Set-PnPTeamsTeamPicture", - "Id": 1491 + "Id": 1491, + "CommandName": "Set-PnPTeamsTeamPicture" }, { "Command": "Set-PnPTemporarilyDisableAppBar $true", "Rank": 1, - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1492 + "Id": 1492, + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { "Command": "Set-PnPTemporarilyDisableAppBar $false", "Rank": 2, - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1493 + "Id": 1493, + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { "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", - "Id": 1494 + "Id": 1494, + "CommandName": "Set-PnPTenant" }, { "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Rank": 2, - "CommandName": "Set-PnPTenant", - "Id": 1495 + "Id": 1495, + "CommandName": "Set-PnPTenant" }, { "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Rank": 3, - "CommandName": "Set-PnPTenant", - "Id": 1496 + "Id": 1496, + "CommandName": "Set-PnPTenant" }, { "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Rank": 4, - "CommandName": "Set-PnPTenant", - "Id": 1497 + "Id": 1497, + "CommandName": "Set-PnPTenant" }, { "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Rank": 1, - "CommandName": "Set-PnPTenantAppCatalogUrl", - "Id": 1498 + "Id": 1498, + "CommandName": "Set-PnPTenantAppCatalogUrl" }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "Rank": 1, - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1499 + "Id": 1499, + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "Rank": 2, - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1500 + "Id": 1500, + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "Rank": 3, - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1501 + "Id": 1501, + "CommandName": "Set-PnPTenantCdnEnabled" }, { "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", - "Id": 1502 + "Id": 1502, + "CommandName": "Set-PnPTenantCdnPolicy" }, { "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Rank": 2, - "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1503 + "Id": 1503, + "CommandName": "Set-PnPTenantCdnPolicy" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "Rank": 1, - "CommandName": "Set-PnPTenantSite", - "Id": 1504 + "Id": 1504, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "Rank": 2, - "CommandName": "Set-PnPTenantSite", - "Id": 1505 + "Id": 1505, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "CommandName": "Set-PnPTenantSite", - "Id": 1506 + "Id": 1506, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 4, - "CommandName": "Set-PnPTenantSite", - "Id": 1507 + "Id": 1507, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "Rank": 5, - "CommandName": "Set-PnPTenantSite", - "Id": 1508 + "Id": 1508, + "CommandName": "Set-PnPTenantSite" }, { "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Rank": 1, - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1509 + "Id": 1509, + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Rank": 2, - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1510 + "Id": 1510, + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "Rank": 1, - "CommandName": "Set-PnPTerm", - "Id": 1511 + "Id": 1511, + "CommandName": "Set-PnPTerm" }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "CommandName": "Set-PnPTerm", - "Id": 1512 + "Id": 1512, + "CommandName": "Set-PnPTerm" }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 3, - "CommandName": "Set-PnPTerm", - "Id": 1513 + "Id": 1513, + "CommandName": "Set-PnPTerm" }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "Rank": 4, - "CommandName": "Set-PnPTerm", - "Id": 1514 + "Id": 1514, + "CommandName": "Set-PnPTerm" }, { "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "Rank": 1, - "CommandName": "Set-PnPTermGroup", - "Id": 1515 + "Id": 1515, + "CommandName": "Set-PnPTermGroup" }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "Rank": 1, - "CommandName": "Set-PnPTermSet", - "Id": 1516 + "Id": 1516, + "CommandName": "Set-PnPTermSet" }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "Rank": 2, - "CommandName": "Set-PnPTermSet", - "Id": 1517 + "Id": 1517, + "CommandName": "Set-PnPTermSet" }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "Rank": 3, - "CommandName": "Set-PnPTermSet", - "Id": 1518 + "Id": 1518, + "CommandName": "Set-PnPTermSet" }, { "Command": "Set-PnPTheme", "Rank": 1, - "CommandName": "Set-PnPTheme", - "Id": 1519 + "Id": 1519, + "CommandName": "Set-PnPTheme" }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Rank": 2, - "CommandName": "Set-PnPTheme", - "Id": 1520 + "Id": 1520, + "CommandName": "Set-PnPTheme" }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "Rank": 3, - "CommandName": "Set-PnPTheme", - "Id": 1521 + "Id": 1521, + "CommandName": "Set-PnPTheme" }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "Rank": 4, - "CommandName": "Set-PnPTheme", - "Id": 1522 + "Id": 1522, + "CommandName": "Set-PnPTheme" }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "Rank": 1, - "CommandName": "Set-PnPTraceLog", - "Id": 1523 + "Id": 1523, + "CommandName": "Set-PnPTraceLog" }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "Rank": 2, - "CommandName": "Set-PnPTraceLog", - "Id": 1524 + "Id": 1524, + "CommandName": "Set-PnPTraceLog" }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "Rank": 3, - "CommandName": "Set-PnPTraceLog", - "Id": 1525 + "Id": 1525, + "CommandName": "Set-PnPTraceLog" }, { "Command": "Set-PnPTraceLog -Off", "Rank": 4, - "CommandName": "Set-PnPTraceLog", - "Id": 1526 + "Id": 1526, + "CommandName": "Set-PnPTraceLog" }, { "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "Rank": 1, - "CommandName": "Set-PnPUserOneDriveQuota", - "Id": 1527 + "Id": 1527, + "CommandName": "Set-PnPUserOneDriveQuota" }, { "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "Rank": 1, - "CommandName": "Set-PnPUserProfileProperty", - "Id": 1528 + "Id": 1528, + "CommandName": "Set-PnPUserProfileProperty" }, { "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "Rank": 2, - "CommandName": "Set-PnPUserProfileProperty", - "Id": 1529 + "Id": 1529, + "CommandName": "Set-PnPUserProfileProperty" }, { "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "Rank": 1, - "CommandName": "Set-PnPView", - "Id": 1530 + "Id": 1530, + "CommandName": "Set-PnPView" }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "Rank": 2, - "CommandName": "Set-PnPView", - "Id": 1531 + "Id": 1531, + "CommandName": "Set-PnPView" }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "Rank": 3, - "CommandName": "Set-PnPView", - "Id": 1532 + "Id": 1532, + "CommandName": "Set-PnPView" }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "Rank": 4, - "CommandName": "Set-PnPView", - "Id": 1533 + "Id": 1533, + "CommandName": "Set-PnPView" }, { "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", - "Id": 1534 + "Id": 1534, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "Rank": 2, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1535 + "Id": 1535, + "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", "Rank": 3, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1536 + "Id": 1536, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "Rank": 4, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1537 + "Id": 1537, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Rank": 1, - "CommandName": "Set-PnPWeb", - "Id": 1538 + "Id": 1538, + "CommandName": "Set-PnPWeb" }, { "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Rank": 2, - "CommandName": "Set-PnPWeb", - "Id": 1539 + "Id": 1539, + "CommandName": "Set-PnPWeb" }, { "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "Rank": 3, - "CommandName": "Set-PnPWeb", - "Id": 1540 + "Id": 1540, + "CommandName": "Set-PnPWeb" }, { "Command": "Set-PnPWeb -NoCrawl:$true", "Rank": 4, - "CommandName": "Set-PnPWeb", - "Id": 1541 + "Id": 1541, + "CommandName": "Set-PnPWeb" }, { "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "Rank": 1, - "CommandName": "Set-PnPWebHeader", - "Id": 1542 + "Id": 1542, + "CommandName": "Set-PnPWebHeader" }, { "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "Rank": 2, - "CommandName": "Set-PnPWebHeader", - "Id": 1543 + "Id": 1543, + "CommandName": "Set-PnPWebHeader" }, { "Command": "Set-PnPWebHeader -LogoAlignment Middle", "Rank": 3, - "CommandName": "Set-PnPWebHeader", - "Id": 1544 + "Id": 1544, + "CommandName": "Set-PnPWebHeader" }, { "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "CommandName": "Set-PnPWebhookSubscription", - "Id": 1545 + "Id": 1545, + "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\"", "Rank": 2, - "CommandName": "Set-PnPWebhookSubscription", - "Id": 1546 + "Id": 1546, + "CommandName": "Set-PnPWebhookSubscription" }, { "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", - "Id": 1547 + "Id": 1547, + "CommandName": "Set-PnPWebPartProperty" }, { "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 1, - "CommandName": "Set-PnPWebPermission", - "Id": 1548 + "Id": 1548, + "CommandName": "Set-PnPWebPermission" }, { "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Rank": 2, - "CommandName": "Set-PnPWebPermission", - "Id": 1549 + "Id": 1549, + "CommandName": "Set-PnPWebPermission" }, { "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 3, - "CommandName": "Set-PnPWebPermission", - "Id": 1550 + "Id": 1550, + "CommandName": "Set-PnPWebPermission" }, { "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Rank": 4, - "CommandName": "Set-PnPWebPermission", - "Id": 1551 + "Id": 1551, + "CommandName": "Set-PnPWebPermission" }, { "Command": "Set-PnPWebTheme -Theme MyTheme", "Rank": 1, - "CommandName": "Set-PnPWebTheme", - "Id": 1552 + "Id": 1552, + "CommandName": "Set-PnPWebTheme" }, { "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Rank": 2, - "CommandName": "Set-PnPWebTheme", - "Id": 1553 + "Id": 1553, + "CommandName": "Set-PnPWebTheme" }, { "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "Rank": 1, - "CommandName": "Set-PnPWikiPageContent", - "Id": 1554 + "Id": 1554, + "CommandName": "Set-PnPWikiPageContent" }, { "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Rank": 1, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1555 + "Id": 1555, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Rank": 2, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1556 + "Id": 1556, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "Rank": 3, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1557 + "Id": 1557, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "Rank": 4, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1558 + "Id": 1558, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "Rank": 5, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1559 + "Id": 1559, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", "Rank": 6, - "CommandName": "Submit-PnPSearchQuery", - "Id": 1560 + "Id": 1560, + "CommandName": "Submit-PnPSearchQuery" }, { "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "Rank": 1, - "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1561 + "Id": 1561, + "CommandName": "Submit-PnPTeamsChannelMessage" }, { "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "Rank": 2, - "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1562 + "Id": 1562, + "CommandName": "Submit-PnPTeamsChannelMessage" }, { "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Sync-PnPAppToTeams", - "Id": 1563 + "Id": 1563, + "CommandName": "Sync-PnPAppToTeams" }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Rank": 1, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1564 + "Id": 1564, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "Rank": 2, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1565 + "Id": 1565, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "Rank": 3, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1566 + "Id": 1566, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "CommandName": "Test-PnPListItemIsRecord", - "Id": 1567 + "Id": 1567, + "CommandName": "Test-PnPListItemIsRecord" }, { "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "Rank": 1, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Id": 1568 + "Id": 1568, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "CommandName": "Test-PnPSite", - "Id": 1569 + "Id": 1569, + "CommandName": "Test-PnPSite" }, { "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "CommandName": "Test-PnPSite", - "Id": 1570 + "Id": 1570, + "CommandName": "Test-PnPSite" }, { "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Rank": 1, - "CommandName": "Test-PnPTenantTemplate", - "Id": 1571 + "Id": 1571, + "CommandName": "Test-PnPTenantTemplate" }, { "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "Rank": 1, - "CommandName": "Undo-PnPFileCheckedOut", - "Id": 1572 + "Id": 1572, + "CommandName": "Undo-PnPFileCheckedOut" }, { "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Uninstall-PnPApp", - "Id": 1573 + "Id": 1573, + "CommandName": "Uninstall-PnPApp" }, { "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Uninstall-PnPApp", - "Id": 1574 + "Id": 1574, + "CommandName": "Uninstall-PnPApp" }, { "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Unpublish-PnPApp", - "Id": 1575 + "Id": 1575, + "CommandName": "Unpublish-PnPApp" }, { "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Unpublish-PnPApp", - "Id": 1576 + "Id": 1576, + "CommandName": "Unpublish-PnPApp" }, { "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Rank": 1, - "CommandName": "Unpublish-PnPContentType", - "Id": 1577 + "Id": 1577, + "CommandName": "Unpublish-PnPContentType" }, { "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1578 + "Id": 1578, + "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", "Rank": 2, - "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1579 + "Id": 1579, + "CommandName": "Unpublish-PnPSyntexModel" }, { "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "CommandName": "Unregister-PnPHubSite", - "Id": 1580 + "Id": 1580, + "CommandName": "Unregister-PnPHubSite" }, { "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "CommandName": "Update-PnPApp", - "Id": 1581 + "Id": 1581, + "CommandName": "Update-PnPApp" }, { "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "CommandName": "Update-PnPApp", - "Id": 1582 + "Id": 1582, + "CommandName": "Update-PnPApp" }, { "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 1, - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1583 + "Id": 1583, + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Rank": 2, - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1584 + "Id": 1584, + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 3, - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1585 + "Id": 1585, + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "Rank": 1, - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1586 + "Id": 1586, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2, - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1587 + "Id": 1587, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "Rank": 3, - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1588 + "Id": 1588, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "Rank": 1, - "CommandName": "Update-PnPTeamsApp", - "Id": 1589 + "Id": 1589, + "CommandName": "Update-PnPTeamsApp" }, { "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "CommandName": "Update-PnPTeamsUser", - "Id": 1590 + "Id": 1590, + "CommandName": "Update-PnPTeamsUser" }, { "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "CommandName": "Update-PnPTeamsUser", - "Id": 1591 + "Id": 1591, + "CommandName": "Update-PnPTeamsUser" }, { "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "Rank": 3, - "CommandName": "Update-PnPTeamsUser", - "Id": 1592 + "Id": 1592, + "CommandName": "Update-PnPTeamsUser" }, { "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Rank": 1, - "CommandName": "Update-PnPUserType", - "Id": 1593 + "Id": 1593, + "CommandName": "Update-PnPUserType" } ] diff --git a/version.txt b/version.txt index 5a2a88b06..f847806f9 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.111 \ No newline at end of file +2.2.112 \ No newline at end of file From d1acb59f188fe6c17278645c012daee07ca9fb6e Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sun, 29 Oct 2023 02:38:40 +0000 Subject: [PATCH 118/146] Nightly publish to PowerShell Gallery --- pnpcoresdk_hash.txt | 1 + .../PnP.PowerShell.Suggestions.nightly.json | 9558 ++++++++--------- version.txt | 2 +- 3 files changed, 4781 insertions(+), 4780 deletions(-) create mode 100644 pnpcoresdk_hash.txt diff --git a/pnpcoresdk_hash.txt b/pnpcoresdk_hash.txt new file mode 100644 index 000000000..0d592738d --- /dev/null +++ b/pnpcoresdk_hash.txt @@ -0,0 +1 @@ +4ea01c07b6f07cb5ace4499e13f454e4015fab43 \ 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 e7bc9b5d1..42577fe70 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9560 +1,9560 @@ [ { - "Command": "Add-PnPAlert -List \"Demo List\"", - "Rank": 1, "Id": 1, - "CommandName": "Add-PnPAlert" + "CommandName": "Add-PnPAlert", + "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)", - "Rank": 2, "Id": 2, - "CommandName": "Add-PnPAlert" + "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)", + "Rank": 2 }, { - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3, "Id": 3, - "CommandName": "Add-PnPAlert" + "CommandName": "Add-PnPAlert", + "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))", - "Rank": 4, "Id": 4, - "CommandName": "Add-PnPAlert" + "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))", + "Rank": 4 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg", - "Rank": 1, "Id": 5, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg", + "Rank": 1 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Rank": 2, "Id": 6, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "Rank": 2 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "Rank": 3, "Id": 7, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "Rank": 3 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "Rank": 4, "Id": 8, - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "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`\"}", - "Rank": 1, "Id": 9, - "CommandName": "Add-PnPApplicationCustomizer" + "CommandName": "Add-PnPApplicationCustomizer", + "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\"", - "Rank": 1, "Id": 10, - "CommandName": "Add-PnPAvailableSiteClassification" + "CommandName": "Add-PnPAvailableSiteClassification", + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "Rank": 1 }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Rank": 2, "Id": 11, - "CommandName": "Add-PnPAvailableSiteClassification" + "CommandName": "Add-PnPAvailableSiteClassification", + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "Rank": 2 }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 12, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "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", - "Rank": 2, "Id": 13, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "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\"", - "Rank": 3, "Id": 14, - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "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\"", - "Rank": 1, "Id": 15, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "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", - "Rank": 2, "Id": 16, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "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\"", - "Rank": 3, "Id": 17, - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "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", - "Rank": 1, "Id": 18, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole" + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "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\"", - "Rank": 2, "Id": 19, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole" + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "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", - "Rank": 1, "Id": 20, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "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\"", - "Rank": 2, "Id": 21, - "CommandName": "Add-PnPContentType" + "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\"", + "Rank": 2 }, { - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "Rank": 3, "Id": 22, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", + "Rank": 3 }, { - "Command": "Add-PnPContentType -Name \"Project Item\"", - "Rank": 4, "Id": 23, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "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", - "Rank": 5, "Id": 24, - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "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\"", - "Rank": 1, "Id": 25, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "Rank": 1 }, { - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "Rank": 2, "Id": 26, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "Rank": 2 }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1, "Id": 27, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Rank": 1 }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2, "Id": 28, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Rank": 2 }, { - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "Rank": 1, "Id": 29, - "CommandName": "Add-PnPContentTypeToList" + "CommandName": "Add-PnPContentTypeToList", + "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`\"}\"", - "Rank": 1, "Id": 30, - "CommandName": "Add-PnPCustomAction" + "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`\"}\"", + "Rank": 1 }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "Rank": 1, "Id": 31, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "Rank": 1 }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "Rank": 2, "Id": 32, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "Rank": 2 }, { - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "Rank": 1, "Id": 33, - "CommandName": "Add-PnPDocumentSet" + "CommandName": "Add-PnPDocumentSet", + "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", - "Rank": 1, "Id": 34, - "CommandName": "Add-PnPEventReceiver" + "CommandName": "Add-PnPEventReceiver", + "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", - "Rank": 2, "Id": 35, - "CommandName": "Add-PnPEventReceiver" + "CommandName": "Add-PnPEventReceiver", + "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", - "Rank": 3, "Id": 36, - "CommandName": "Add-PnPEventReceiver" + "CommandName": "Add-PnPEventReceiver", + "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", - "Rank": 4, "Id": 37, - "CommandName": "Add-PnPEventReceiver" + "CommandName": "Add-PnPEventReceiver", + "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]\"", - "Rank": 1, "Id": 38, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "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\"", - "Rank": 2, "Id": 39, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "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\"", - "Rank": 3, "Id": 40, - "CommandName": "Add-PnPField" + "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\"", + "Rank": 3 }, { - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "Rank": 4, "Id": 41, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "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\"", - "Rank": 5, "Id": 42, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "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()\"", - "Rank": 6, "Id": 43, - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "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\"", - "Rank": 1, "Id": 44, - "CommandName": "Add-PnPFieldToContentType" + "CommandName": "Add-PnPFieldToContentType", + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Rank": 1 }, { - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "Rank": 1, "Id": 45, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "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\"", - "Rank": 2, "Id": 46, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "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=\"1/1/2016\"}", - "Rank": 3, "Id": 47, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 3 }, { - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "Rank": 4, "Id": 48, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", + "Rank": 4 }, { - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 5, "Id": 49, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 5 }, { - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "Rank": 6, "Id": 50, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", + "Rank": 6 }, { - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "Rank": 7, "Id": 51, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "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\" }'", - "Rank": 8, "Id": 52, - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "Rank": 8 }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, "Id": 53, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "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!\"", - "Rank": 2, "Id": 54, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "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)", - "Rank": 3, "Id": 55, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "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\"", - "Rank": 1, "Id": 56, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1 }, { - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "Rank": 2, "Id": 57, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "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", - "Rank": 1, "Id": 58, - "CommandName": "Add-PnPFileSharingInvite" + "CommandName": "Add-PnPFileSharingInvite", + "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", - "Rank": 2, "Id": 59, - "CommandName": "Add-PnPFileSharingInvite" + "CommandName": "Add-PnPFileSharingInvite", + "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)", - "Rank": 3, "Id": 60, - "CommandName": "Add-PnPFileSharingInvite" + "CommandName": "Add-PnPFileSharingInvite", + "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\"", - "Rank": 1, "Id": 61, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "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\"", - "Rank": 2, "Id": 62, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "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", - "Rank": 3, "Id": 63, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "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", - "Rank": 4, "Id": 64, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "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\"", - "Rank": 5, "Id": 65, - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "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\"", - "Rank": 1, "Id": 66, - "CommandName": "Add-PnPFileUserSharingLink" + "CommandName": "Add-PnPFileUserSharingLink", + "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\"", - "Rank": 2, "Id": 67, - "CommandName": "Add-PnPFileUserSharingLink" + "CommandName": "Add-PnPFileUserSharingLink", + "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", - "Rank": 1, "Id": 68, - "CommandName": "Add-PnPFlowOwner" + "CommandName": "Add-PnPFlowOwner", + "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", - "Rank": 2, "Id": 69, - "CommandName": "Add-PnPFlowOwner" + "CommandName": "Add-PnPFlowOwner", + "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", - "Rank": 3, "Id": 70, - "CommandName": "Add-PnPFlowOwner" + "CommandName": "Add-PnPFlowOwner", + "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", - "Rank": 4, "Id": 71, - "CommandName": "Add-PnPFlowOwner" + "CommandName": "Add-PnPFlowOwner", + "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", - "Rank": 1, "Id": 72, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Rank": 1 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Rank": 2, "Id": 73, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "Rank": 2 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Rank": 3, "Id": 74, - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "Rank": 3 }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, "Id": 75, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1 }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2, "Id": 76, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "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)", - "Rank": 3, "Id": 77, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "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\"", - "Rank": 1, "Id": 78, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1 }, { - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Rank": 2, "Id": 79, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "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", - "Rank": 1, "Id": 80, - "CommandName": "Add-PnPFolderSharingInvite" + "CommandName": "Add-PnPFolderSharingInvite", + "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", - "Rank": 2, "Id": 81, - "CommandName": "Add-PnPFolderSharingInvite" + "CommandName": "Add-PnPFolderSharingInvite", + "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)", - "Rank": 3, "Id": 82, - "CommandName": "Add-PnPFolderSharingInvite" + "CommandName": "Add-PnPFolderSharingInvite", + "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\"", - "Rank": 1, "Id": 83, - "CommandName": "Add-PnPFolderUserSharingLink" + "CommandName": "Add-PnPFolderUserSharingLink", + "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\"", - "Rank": 2, "Id": 84, - "CommandName": "Add-PnPFolderUserSharingLink" + "CommandName": "Add-PnPFolderUserSharingLink", + "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'", - "Rank": 1, "Id": 85, - "CommandName": "Add-PnPGroupMember" + "CommandName": "Add-PnPGroupMember", + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Rank": 1 }, { - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Rank": 2, "Id": 86, - "CommandName": "Add-PnPGroupMember" + "CommandName": "Add-PnPGroupMember", + "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", - "Rank": 1, "Id": 87, - "CommandName": "Add-PnPHtmlPublishingPageLayout" + "CommandName": "Add-PnPHtmlPublishingPageLayout", + "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\"", - "Rank": 1, "Id": 88, - "CommandName": "Add-PnPHubSiteAssociation" + "CommandName": "Add-PnPHubSiteAssociation", + "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", - "Rank": 1, "Id": 89, - "CommandName": "Add-PnPHubToHubAssociation" + "CommandName": "Add-PnPHubToHubAssociation", + "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\"", - "Rank": 2, "Id": 90, - "CommandName": "Add-PnPHubToHubAssociation" + "CommandName": "Add-PnPHubToHubAssociation", + "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\"", - "Rank": 3, "Id": 91, - "CommandName": "Add-PnPHubToHubAssociation" + "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\"", + "Rank": 3 }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "Rank": 1, "Id": 92, - "CommandName": "Add-PnPJavaScriptBlock" + "CommandName": "Add-PnPJavaScriptBlock", + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "Rank": 1 }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Rank": 2, "Id": 93, - "CommandName": "Add-PnPJavaScriptBlock" + "CommandName": "Add-PnPJavaScriptBlock", + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "Rank": 2 }, { - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "Rank": 1, "Id": 94, - "CommandName": "Add-PnPJavaScriptLink" + "CommandName": "Add-PnPJavaScriptLink", + "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", - "Rank": 2, "Id": 95, - "CommandName": "Add-PnPJavaScriptLink" + "CommandName": "Add-PnPJavaScriptLink", + "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\"", - "Rank": 1, "Id": 96, - "CommandName": "Add-PnPListDesign" + "CommandName": "Add-PnPListDesign", + "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\"", - "Rank": 2, "Id": 97, - "CommandName": "Add-PnPListDesign" + "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\"", + "Rank": 2 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Rank": 1, "Id": 98, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "Rank": 1 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Rank": 2, "Id": 99, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "Rank": 2 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Rank": 3, "Id": 100, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "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\"}", - "Rank": 1, "Id": 101, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "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\"}", - "Rank": 2, "Id": 102, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "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\"}", - "Rank": 3, "Id": 103, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "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\"", - "Rank": 4, "Id": 104, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "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\"", - "Rank": 5, "Id": 105, - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "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", - "Rank": 1, "Id": 106, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "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\" }'", - "Rank": 2, "Id": 107, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "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", - "Rank": 3, "Id": 108, - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "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\"", - "Rank": 1, "Id": 109, - "CommandName": "Add-PnPListItemComment" + "CommandName": "Add-PnPListItemComment", + "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\"", - "Rank": 1, "Id": 110, - "CommandName": "Add-PnPMasterPage" + "CommandName": "Add-PnPMasterPage", + "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\"", - "Rank": 1, "Id": 111, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "CommandName": "Add-PnPMicrosoft365GroupMember", + "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", - "Rank": 2, "Id": 112, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "CommandName": "Add-PnPMicrosoft365GroupMember", + "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\"", - "Rank": 1, "Id": 113, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "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", - "Rank": 2, "Id": 114, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "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\"", - "Rank": 1, "Id": 115, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "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\"", - "Rank": 2, "Id": 116, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "Rank": 2 }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Rank": 3, "Id": 117, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "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\"", - "Rank": 1, "Id": 118, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "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", - "Rank": 2, "Id": 119, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "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", - "Rank": 3, "Id": 120, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "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", - "Rank": 4, "Id": 121, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "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/\"", - "Rank": 5, "Id": 122, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "Rank": 5 }, { - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Rank": 6, "Id": 123, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "Rank": 6 }, { - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Rank": 7, "Id": 124, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "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", - "Rank": 8, "Id": 125, - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "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\"", - "Rank": 1, "Id": 126, - "CommandName": "Add-PnPOrgAssetsLibrary" + "CommandName": "Add-PnPOrgAssetsLibrary", + "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\"", - "Rank": 2, "Id": 127, - "CommandName": "Add-PnPOrgAssetsLibrary" + "CommandName": "Add-PnPOrgAssetsLibrary", + "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", - "Rank": 3, "Id": 128, - "CommandName": "Add-PnPOrgAssetsLibrary" + "CommandName": "Add-PnPOrgAssetsLibrary", + "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\"", - "Rank": 1, "Id": 129, - "CommandName": "Add-PnPOrgNewsSite" + "CommandName": "Add-PnPOrgNewsSite", + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "Rank": 1 }, { - "Command": "Add-PnPPage -Name \"NewPage\"", - "Rank": 1, "Id": 130, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\"", + "Rank": 1 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Rank": 2, "Id": 131, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "Rank": 2 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Rank": 3, "Id": 132, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "Rank": 3 }, { - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Rank": 4, "Id": 133, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "Rank": 4 }, { - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Rank": 5, "Id": 134, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "Rank": 5 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Rank": 6, "Id": 135, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "Rank": 6 }, { - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7, "Id": 136, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "Rank": 7 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Rank": 8, "Id": 137, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "Rank": 8 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, "Id": 138, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Rank": 9 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, "Id": 139, - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Rank": 10 }, { - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Rank": 1, "Id": 140, - "CommandName": "Add-PnPPageImageWebPart" + "CommandName": "Add-PnPPageImageWebPart", + "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\"", - "Rank": 2, "Id": 141, - "CommandName": "Add-PnPPageImageWebPart" + "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\"", + "Rank": 2 }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Rank": 1, "Id": 142, - "CommandName": "Add-PnPPageSection" + "CommandName": "Add-PnPPageSection", + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "Rank": 1 }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Rank": 2, "Id": 143, - "CommandName": "Add-PnPPageSection" + "CommandName": "Add-PnPPageSection", + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "Rank": 2 }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Rank": 1, "Id": 144, - "CommandName": "Add-PnPPageTextPart" + "CommandName": "Add-PnPPageTextPart", + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "Rank": 1 }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 2, "Id": 145, - "CommandName": "Add-PnPPageTextPart" + "CommandName": "Add-PnPPageTextPart", + "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\"", - "Rank": 3, "Id": 146, - "CommandName": "Add-PnPPageTextPart" + "CommandName": "Add-PnPPageTextPart", + "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", - "Rank": 1, "Id": 147, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "Rank": 1 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Rank": 2, "Id": 148, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "Rank": 2 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Rank": 3, "Id": 149, - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "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\"", - "Rank": 1, "Id": 150, - "CommandName": "Add-PnPPlannerBucket" + "CommandName": "Add-PnPPlannerBucket", + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "Rank": 1 }, { - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Rank": 2, "Id": 151, - "CommandName": "Add-PnPPlannerBucket" + "CommandName": "Add-PnPPlannerBucket", + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "Rank": 2 }, { - "Command": "Add-PnPPlannerRoster", - "Rank": 1, "Id": 152, - "CommandName": "Add-PnPPlannerRoster" + "CommandName": "Add-PnPPlannerRoster", + "Command": "Add-PnPPlannerRoster", + "Rank": 1 }, { - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 153, - "CommandName": "Add-PnPPlannerRosterMember" + "CommandName": "Add-PnPPlannerRosterMember", + "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\"", - "Rank": 1, "Id": 154, - "CommandName": "Add-PnPPlannerTask" + "CommandName": "Add-PnPPlannerTask", + "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\"", - "Rank": 2, "Id": 155, - "CommandName": "Add-PnPPlannerTask" + "CommandName": "Add-PnPPlannerTask", + "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\"", - "Rank": 3, "Id": 156, - "CommandName": "Add-PnPPlannerTask" + "CommandName": "Add-PnPPlannerTask", + "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", - "Rank": 1, "Id": 157, - "CommandName": "Add-PnPPublishingImageRendition" + "CommandName": "Add-PnPPublishingImageRendition", + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Rank": 1 }, { - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Rank": 1, "Id": 158, - "CommandName": "Add-PnPPublishingPage" + "CommandName": "Add-PnPPublishingPage", + "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'", - "Rank": 2, "Id": 159, - "CommandName": "Add-PnPPublishingPage" + "CommandName": "Add-PnPPublishingPage", + "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", - "Rank": 1, "Id": 160, - "CommandName": "Add-PnPPublishingPageLayout" + "CommandName": "Add-PnPPublishingPageLayout", + "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\"", - "Rank": 1, "Id": 161, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "Rank": 1 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Rank": 2, "Id": 162, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "Rank": 2 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Rank": 3, "Id": 163, - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "Rank": 3 }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 164, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, "Id": 165, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 2 }, { - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Rank": 3, "Id": 166, - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "Rank": 3 }, { - "Command": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1, "Id": 167, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Command": "Add-PnPSiteCollectionAppCatalog", + "Rank": 1 }, { - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 2, "Id": 168, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "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", - "Rank": 1, "Id": 169, - "CommandName": "Add-PnPSiteDesign" + "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", + "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", - "Rank": 2, "Id": 170, - "CommandName": "Add-PnPSiteDesign" + "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", + "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\"", - "Rank": 3, "Id": 171, - "CommandName": "Add-PnPSiteDesign" + "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\"", + "Rank": 3 }, { - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "Rank": 1, "Id": 172, - "CommandName": "Add-PnPSiteDesignFromWeb" + "CommandName": "Add-PnPSiteDesignFromWeb", + "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)", - "Rank": 2, "Id": 173, - "CommandName": "Add-PnPSiteDesignFromWeb" + "CommandName": "Add-PnPSiteDesignFromWeb", + "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", - "Rank": 3, "Id": 174, - "CommandName": "Add-PnPSiteDesignFromWeb" + "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", + "Rank": 3 }, { - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1, "Id": 175, - "CommandName": "Add-PnPSiteDesignTask" + "CommandName": "Add-PnPSiteDesignTask", + "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\"", - "Rank": 2, "Id": 176, - "CommandName": "Add-PnPSiteDesignTask" + "CommandName": "Add-PnPSiteDesignTask", + "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", - "Rank": 1, "Id": 177, - "CommandName": "Add-PnPSiteScript" + "CommandName": "Add-PnPSiteScript", + "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\"", - "Rank": 1, "Id": 178, - "CommandName": "Add-PnPSiteScriptPackage" + "CommandName": "Add-PnPSiteScriptPackage", + "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", - "Rank": 1, "Id": 179, - "CommandName": "Add-PnPSiteTemplate" + "CommandName": "Add-PnPSiteTemplate", + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "Rank": 1 }, { - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Rank": 1, "Id": 180, - "CommandName": "Add-PnPStoredCredential" + "CommandName": "Add-PnPStoredCredential", + "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)", - "Rank": 2, "Id": 181, - "CommandName": "Add-PnPStoredCredential" + "CommandName": "Add-PnPStoredCredential", + "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\"", - "Rank": 3, "Id": 182, - "CommandName": "Add-PnPStoredCredential" + "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\"", + "Rank": 3 }, { - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Rank": 1, "Id": 183, - "CommandName": "Add-PnPTaxonomyField" + "CommandName": "Add-PnPTaxonomyField", + "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\"", - "Rank": 2, "Id": 184, - "CommandName": "Add-PnPTaxonomyField" + "CommandName": "Add-PnPTaxonomyField", + "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", - "Rank": 1, "Id": 185, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "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\"", - "Rank": 2, "Id": 186, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "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", - "Rank": 3, "Id": 187, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "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", - "Rank": 4, "Id": 188, - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "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", - "Rank": 1, "Id": 189, - "CommandName": "Add-PnpTeamsChannelUser" + "CommandName": "Add-PnpTeamsChannelUser", + "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", - "Rank": 2, "Id": 190, - "CommandName": "Add-PnpTeamsChannelUser" + "CommandName": "Add-PnpTeamsChannelUser", + "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\"", - "Rank": 1, "Id": 191, - "CommandName": "Add-PnPTeamsTab" + "CommandName": "Add-PnPTeamsTab", + "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\"", - "Rank": 2, "Id": 192, - "CommandName": "Add-PnPTeamsTab" + "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\"", + "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\"", - "Rank": 3, "Id": 193, - "CommandName": "Add-PnPTeamsTab" + "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\"", + "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", - "Rank": 4, "Id": 194, - "CommandName": "Add-PnPTeamsTab" + "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", + "Rank": 4 }, { - "Command": "Add-PnPTeamsTeam", - "Rank": 1, "Id": 195, - "CommandName": "Add-PnPTeamsTeam" + "CommandName": "Add-PnPTeamsTeam", + "Command": "Add-PnPTeamsTeam", + "Rank": 1 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1, "Id": 196, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 1 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2, "Id": 197, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "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", - "Rank": 3, "Id": 198, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "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", - "Rank": 4, "Id": 199, - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "Rank": 4 }, { - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1, "Id": 200, - "CommandName": "Add-PnPTenantCdnOrigin" + "CommandName": "Add-PnPTenantCdnOrigin", + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Rank": 1 }, { - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Rank": 1, "Id": 201, - "CommandName": "Add-PnPTenantSequence" + "CommandName": "Add-PnPTenantSequence", + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "Rank": 1 }, { - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Rank": 1, "Id": 202, - "CommandName": "Add-PnPTenantSequenceSite" + "CommandName": "Add-PnPTenantSequenceSite", + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "Rank": 1 }, { - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Rank": 1, "Id": 203, - "CommandName": "Add-PnPTenantSequenceSubSite" + "CommandName": "Add-PnPTenantSequenceSubSite", + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "Rank": 1 }, { - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "Rank": 1, "Id": 204, - "CommandName": "Add-PnPTermToTerm" + "CommandName": "Add-PnPTermToTerm", + "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\"", - "Rank": 1, "Id": 205, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "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", - "Rank": 2, "Id": 206, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "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 \"\"", - "Rank": 3, "Id": 207, - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "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\"", - "Rank": 1, "Id": 208, - "CommandName": "Add-PnPVivaConnectionsDashboardACE" + "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\"", + "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\"", - "Rank": 2, "Id": 209, - "CommandName": "Add-PnPVivaConnectionsDashboardACE" + "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\"", + "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\"", - "Rank": 3, "Id": 210, - "CommandName": "Add-PnPVivaConnectionsDashboardACE" + "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\"", + "Rank": 3 }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1, "Id": 211, - "CommandName": "Add-PnPWebhookSubscription" + "CommandName": "Add-PnPWebhookSubscription", + "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\"", - "Rank": 2, "Id": 212, - "CommandName": "Add-PnPWebhookSubscription" + "CommandName": "Add-PnPWebhookSubscription", + "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!\"", - "Rank": 3, "Id": 213, - "CommandName": "Add-PnPWebhookSubscription" + "CommandName": "Add-PnPWebhookSubscription", + "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", - "Rank": 1, "Id": 214, - "CommandName": "Add-PnPWebPartToWebPartPage" + "CommandName": "Add-PnPWebPartToWebPartPage", + "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", - "Rank": 2, "Id": 215, - "CommandName": "Add-PnPWebPartToWebPartPage" + "CommandName": "Add-PnPWebPartToWebPartPage", + "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", - "Rank": 1, "Id": 216, - "CommandName": "Add-PnPWebPartToWikiPage" + "CommandName": "Add-PnPWebPartToWikiPage", + "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", - "Rank": 2, "Id": 217, - "CommandName": "Add-PnPWebPartToWikiPage" + "CommandName": "Add-PnPWebPartToWikiPage", + "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'", - "Rank": 1, "Id": 218, - "CommandName": "Add-PnPWikiPage" + "CommandName": "Add-PnPWikiPage", + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "Rank": 1 }, { - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Rank": 1, "Id": 219, - "CommandName": "Clear-PnPAzureADGroupMember" + "CommandName": "Clear-PnPAzureADGroupMember", + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "Rank": 1 }, { - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Rank": 1, "Id": 220, - "CommandName": "Clear-PnPAzureADGroupOwner" + "CommandName": "Clear-PnPAzureADGroupOwner", + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "Rank": 1 }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Rank": 1, "Id": 221, - "CommandName": "Clear-PnPDefaultColumnValues" + "CommandName": "Clear-PnPDefaultColumnValues", + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "Rank": 1 }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Rank": 2, "Id": 222, - "CommandName": "Clear-PnPDefaultColumnValues" + "CommandName": "Clear-PnPDefaultColumnValues", + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "Rank": 2 }, { - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, "Id": 223, - "CommandName": "Clear-PnPListItemAsRecord" + "CommandName": "Clear-PnPListItemAsRecord", + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1 }, { - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Rank": 1, "Id": 224, - "CommandName": "Clear-PnPMicrosoft365GroupMember" + "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "Rank": 1 }, { - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Rank": 1, "Id": 225, - "CommandName": "Clear-PnPMicrosoft365GroupOwner" + "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "Rank": 1 }, { - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, "Id": 226, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1 }, { - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Rank": 2, "Id": 227, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "Rank": 2 }, { - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Rank": 3, "Id": 228, - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "Rank": 3 }, { - "Command": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1, "Id": 229, - "CommandName": "Clear-PnPTenantAppCatalogUrl" + "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Command": "Clear-PnPTenantAppCatalogUrl", + "Rank": 1 }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "Id": 230, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1 }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2, "Id": 231, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "CommandName": "Clear-PnPTenantRecycleBinItem", + "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\"", - "Rank": 1, "Id": 232, - "CommandName": "Connect-PnPOnline" + "CommandName": "Connect-PnPOnline", + "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", + "Rank": 1 }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Rank": 1, "Id": 233, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "Rank": 1 }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Rank": 2, "Id": 234, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "Rank": 2 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Rank": 1, "Id": 235, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Command": "Convert-PnPSiteTemplate -Path template.xml", + "Rank": 1 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Rank": 2, "Id": 236, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "Rank": 2 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Rank": 3, "Id": 237, - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "Rank": 3 }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Rank": 1, "Id": 238, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "Rank": 1 }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Rank": 2, "Id": 239, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "Rank": 2 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Rank": 1, "Id": 240, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "Rank": 1 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Rank": 2, "Id": 241, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "Rank": 2 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Rank": 3, "Id": 242, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "Rank": 3 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Rank": 4, "Id": 243, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "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\"", - "Rank": 5, "Id": 244, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "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", - "Rank": 6, "Id": 245, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "Rank": 6 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Rank": 7, "Id": 246, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "Rank": 7 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Rank": 8, "Id": 247, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "Rank": 8 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 9, "Id": 248, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "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", - "Rank": 10, "Id": 249, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "Rank": 10 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Rank": 11, "Id": 250, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "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\"", - "Rank": 12, "Id": 251, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "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\"", - "Rank": 13, "Id": 252, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "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", - "Rank": 14, "Id": 253, - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "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", - "Rank": 1, "Id": 254, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "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\"", - "Rank": 2, "Id": 255, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "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", - "Rank": 3, "Id": 256, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "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", - "Rank": 4, "Id": 257, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "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\"", - "Rank": 5, "Id": 258, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "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\"", - "Rank": 6, "Id": 259, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "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\"", - "Rank": 7, "Id": 260, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "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", - "Rank": 8, "Id": 261, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "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", - "Rank": 9, "Id": 262, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "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\"", - "Rank": 10, "Id": 263, - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "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", - "Rank": 1, "Id": 264, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "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\"", - "Rank": 2, "Id": 265, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "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", - "Rank": 3, "Id": 266, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "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", - "Rank": 4, "Id": 267, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "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\"", - "Rank": 5, "Id": 268, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "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\"", - "Rank": 6, "Id": 269, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "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\"", - "Rank": 7, "Id": 270, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "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", - "Rank": 8, "Id": 271, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "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", - "Rank": 9, "Id": 272, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "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\"", - "Rank": 10, "Id": 273, - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Rank": 10 }, { - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Rank": 1, "Id": 274, - "CommandName": "Copy-PnPItemProxy" + "CommandName": "Copy-PnPItemProxy", + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "Rank": 1 }, { - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Rank": 1, "Id": 275, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "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", - "Rank": 2, "Id": 276, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "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\"", - "Rank": 3, "Id": 277, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "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\\", - "Rank": 4, "Id": 278, - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "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", - "Rank": 1, "Id": 279, - "CommandName": "Copy-PnPTeamsTeam" + "CommandName": "Copy-PnPTeamsTeam", + "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\"", - "Rank": 2, "Id": 280, - "CommandName": "Copy-PnPTeamsTeam" + "CommandName": "Copy-PnPTeamsTeam", + "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", - "Rank": 3, "Id": 281, - "CommandName": "Copy-PnPTeamsTeam" + "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", + "Rank": 3 }, { - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", - "Rank": 4, "Id": 282, - "CommandName": "Copy-PnPTeamsTeam" + "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", + "Rank": 4 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "Id": 283, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, "Id": 284, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, "Id": 285, - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3 }, { - "Command": "Disable-PnPPageScheduling", - "Rank": 1, "Id": 286, - "CommandName": "Disable-PnPPageScheduling" + "CommandName": "Disable-PnPPageScheduling", + "Command": "Disable-PnPPageScheduling", + "Rank": 1 }, { - "Command": "Disable-PnPPowerShellTelemetry", - "Rank": 1, "Id": 287, - "CommandName": "Disable-PnPPowerShellTelemetry" + "CommandName": "Disable-PnPPowerShellTelemetry", + "Command": "Disable-PnPPowerShellTelemetry", + "Rank": 1 }, { - "Command": "Disable-PnPPowerShellTelemetry -Force", - "Rank": 2, "Id": 288, - "CommandName": "Disable-PnPPowerShellTelemetry" + "CommandName": "Disable-PnPPowerShellTelemetry", + "Command": "Disable-PnPPowerShellTelemetry -Force", + "Rank": 2 }, { - "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1, "Id": 289, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite" + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Command": "Disable-PnPSharingForNonOwnersOfSite", + "Rank": 1 }, { - "Command": "Disable-PnPSiteClassification", - "Rank": 1, "Id": 290, - "CommandName": "Disable-PnPSiteClassification" + "CommandName": "Disable-PnPSiteClassification", + "Command": "Disable-PnPSiteClassification", + "Rank": 1 }, { - "Command": "Disconnect-PnPOnline", - "Rank": 1, "Id": 291, - "CommandName": "Disconnect-PnPOnline" + "CommandName": "Disconnect-PnPOnline", + "Command": "Disconnect-PnPOnline", + "Rank": 1 }, { - "Command": "Enable-PnPCommSite", - "Rank": 1, "Id": 292, - "CommandName": "Enable-PnPCommSite" + "CommandName": "Enable-PnPCommSite", + "Command": "Enable-PnPCommSite", + "Rank": 1 }, { - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Rank": 2, "Id": 293, - "CommandName": "Enable-PnPCommSite" + "CommandName": "Enable-PnPCommSite", + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "Rank": 2 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "Id": 294, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, "Id": 295, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, "Id": 296, - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3 }, { - "Command": "Enable-PnPPageScheduling", - "Rank": 1, "Id": 297, - "CommandName": "Enable-PnPPageScheduling" + "CommandName": "Enable-PnPPageScheduling", + "Command": "Enable-PnPPageScheduling", + "Rank": 1 }, { - "Command": "Enable-PnPPowerShellTelemetry", - "Rank": 1, "Id": 298, - "CommandName": "Enable-PnPPowerShellTelemetry" + "CommandName": "Enable-PnPPowerShellTelemetry", + "Command": "Enable-PnPPowerShellTelemetry", + "Rank": 1 }, { - "Command": "Enable-PnPPowerShellTelemetry -Force", - "Rank": 2, "Id": 299, - "CommandName": "Enable-PnPPowerShellTelemetry" + "CommandName": "Enable-PnPPowerShellTelemetry", + "Command": "Enable-PnPPowerShellTelemetry -Force", + "Rank": 2 }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Rank": 1, "Id": 300, - "CommandName": "Enable-PnPSiteClassification" + "CommandName": "Enable-PnPSiteClassification", + "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", - "Rank": 2, "Id": 301, - "CommandName": "Enable-PnPSiteClassification" + "CommandName": "Enable-PnPSiteClassification", + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 2 }, { - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Rank": 1, "Id": 302, - "CommandName": "Export-PnPListToSiteTemplate" + "CommandName": "Export-PnPListToSiteTemplate", + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "Rank": 1 }, { - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Rank": 2, "Id": 303, - "CommandName": "Export-PnPListToSiteTemplate" + "CommandName": "Export-PnPListToSiteTemplate", + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "Rank": 2 }, { - "Command": "Export-PnPPage -Identity Home.aspx", - "Rank": 1, "Id": 304, - "CommandName": "Export-PnPPage" + "CommandName": "Export-PnPPage", + "Command": "Export-PnPPage -Identity Home.aspx", + "Rank": 1 }, { - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Rank": 1, "Id": 305, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "Rank": 1 }, { - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Rank": 2, "Id": 306, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "Rank": 2 }, { - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Rank": 3, "Id": 307, - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "Rank": 3 }, { - "Command": "Export-PnPTaxonomy", - "Rank": 1, "Id": 308, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy", + "Rank": 1 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Rank": 2, "Id": 309, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "Rank": 2 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Rank": 3, "Id": 310, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "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", - "Rank": 4, "Id": 311, - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "Rank": 4 }, { - "Command": "Export-PnPTermGroupToXml", - "Rank": 1, "Id": 312, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Command": "Export-PnPTermGroupToXml", + "Rank": 1 }, { - "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Rank": 2, "Id": 313, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Command": "Export-PnPTermGroupToXml -Out output.xml", + "Rank": 2 }, { - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Rank": 3, "Id": 314, - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "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\"", - "Rank": 1, "Id": 315, - "CommandName": "Export-PnPUserInfo" + "CommandName": "Export-PnPUserInfo", + "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", - "Rank": 2, "Id": 316, - "CommandName": "Export-PnPUserInfo" + "CommandName": "Export-PnPUserInfo", + "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", - "Rank": 1, "Id": 317, - "CommandName": "Export-PnPUserProfile" + "CommandName": "Export-PnPUserProfile", + "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "Rank": 1 }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2, "Id": 318, - "CommandName": "Export-PnPUserProfile" + "CommandName": "Export-PnPUserProfile", + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "Rank": 2 }, { - "Command": "Find-PnPFile -Match *.master", - "Rank": 1, "Id": 319, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Command": "Find-PnPFile -Match *.master", + "Rank": 1 }, { - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Rank": 2, "Id": 320, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "Rank": 2 }, { - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Rank": 3, "Id": 321, - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "Rank": 3 }, { - "Command": "Get-PnPAccessToken", - "Rank": 1, "Id": 322, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken", + "Rank": 1 }, { - "Command": "Get-PnPAccessToken -Decoded", - "Rank": 2, "Id": 323, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -Decoded", + "Rank": 2 }, { - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Rank": 3, "Id": 324, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "Rank": 3 }, { - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Rank": 4, "Id": 325, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "Rank": 4 }, { - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Rank": 5, "Id": 326, - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "Rank": 5 }, { - "Command": "Get-PnPAlert", - "Rank": 1, "Id": 327, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert", + "Rank": 1 }, { - "Command": "Get-PnPAlert -List \"Demo List\"", - "Rank": 2, "Id": 328, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -List \"Demo List\"", + "Rank": 2 }, { - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3, "Id": 329, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Rank": 3 }, { - "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Rank": 4, "Id": 330, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "Rank": 4 }, { - "Command": "Get-PnPAlert -AllUsers", - "Rank": 5, "Id": 331, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -AllUsers", + "Rank": 5 }, { - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Rank": 6, "Id": 332, - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "Rank": 6 }, { - "Command": "Get-PnPApp", - "Rank": 1, "Id": 333, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Command": "Get-PnPApp", + "Rank": 1 }, { - "Command": "Get-PnPApp -Scope Site", - "Rank": 2, "Id": 334, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Command": "Get-PnPApp -Scope Site", + "Rank": 2 }, { - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 3, "Id": 335, - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 3 }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Rank": 1, "Id": 336, - "CommandName": "Get-PnPAppErrors" + "CommandName": "Get-PnPAppErrors", + "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()", - "Rank": 2, "Id": 337, - "CommandName": "Get-PnPAppErrors" + "CommandName": "Get-PnPAppErrors", + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "Rank": 2 }, { - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Rank": 1, "Id": 338, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "Rank": 1 }, { - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 2, "Id": 339, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 2 }, { - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Rank": 3, "Id": 340, - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "Rank": 3 }, { - "Command": "Get-PnPApplicationCustomizer", - "Rank": 1, "Id": 341, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Command": "Get-PnPApplicationCustomizer", + "Rank": 1 }, { - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, "Id": 342, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2 }, { - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Rank": 3, "Id": 343, - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "Rank": 3 }, { - "Command": "Get-PnPAuditing", - "Rank": 1, "Id": 344, - "CommandName": "Get-PnPAuditing" + "CommandName": "Get-PnPAuditing", + "Command": "Get-PnPAuditing", + "Rank": 1 }, { - "Command": "Get-PnPAuthenticationRealm", - "Rank": 1, "Id": 345, - "CommandName": "Get-PnPAuthenticationRealm" + "CommandName": "Get-PnPAuthenticationRealm", + "Command": "Get-PnPAuthenticationRealm", + "Rank": 1 }, { - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Rank": 2, "Id": 346, - "CommandName": "Get-PnPAuthenticationRealm" + "CommandName": "Get-PnPAuthenticationRealm", + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "Rank": 2 }, { - "Command": "Get-PnPAvailableLanguage", - "Rank": 1, "Id": 347, - "CommandName": "Get-PnPAvailableLanguage" + "CommandName": "Get-PnPAvailableLanguage", + "Command": "Get-PnPAvailableLanguage", + "Rank": 1 }, { - "Command": "Get-PnPAvailableSensitivityLabel", - "Rank": 1, "Id": 348, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Command": "Get-PnPAvailableSensitivityLabel", + "Rank": 1 }, { - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Rank": 2, "Id": 349, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "Rank": 2 }, { - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Rank": 3, "Id": 350, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "Rank": 3 }, { - "Command": "Get-PnPAvailableSiteClassification", - "Rank": 1, "Id": 351, - "CommandName": "Get-PnPAvailableSiteClassification" + "CommandName": "Get-PnPAvailableSiteClassification", + "Command": "Get-PnPAvailableSiteClassification", + "Rank": 1 }, { - "Command": "Get-PnPAzureACSPrincipal", - "Rank": 1, "Id": 352, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal", + "Rank": 1 }, { - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Rank": 2, "Id": 353, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "Rank": 2 }, { - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Rank": 3, "Id": 354, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "Rank": 3 }, { - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Rank": 4, "Id": 355, - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "Rank": 4 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1, "Id": 356, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 1 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Rank": 2, "Id": 357, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "Rank": 2 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Rank": 3, "Id": 358, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "Rank": 3 }, { - "Command": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1, "Id": 359, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Command": "Get-PnPAzureADActivityReportSignIn", + "Rank": 1 }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Rank": 2, "Id": 360, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "Rank": 2 }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Rank": 3, "Id": 361, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "Rank": 3 }, { - "Command": "Get-PnPAzureADApp", - "Rank": 1, "Id": 362, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp", + "Rank": 1 }, { - "Command": "Get-PnPAzureADApp -Identity MyApp", - "Rank": 2, "Id": 363, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp -Identity MyApp", + "Rank": 2 }, { - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, "Id": 364, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3 }, { - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Rank": 4, "Id": 365, - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "Rank": 4 }, { - "Command": "Get-PnPAzureADAppPermission", - "Rank": 1, "Id": 366, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Command": "Get-PnPAzureADAppPermission", + "Rank": 1 }, { - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Rank": 2, "Id": 367, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "Rank": 2 }, { - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, "Id": 368, - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3 }, { - "Command": "Get-PnPAzureADAppSitePermission", - "Rank": 1, "Id": 369, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission", + "Rank": 1 }, { - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2, "Id": 370, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "Rank": 2 }, { - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Rank": 3, "Id": 371, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "Rank": 3 }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Rank": 4, "Id": 372, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "Rank": 4 }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Rank": 5, "Id": 373, - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "Rank": 5 }, { - "Command": "Get-PnPAzureADGroup", - "Rank": 1, "Id": 374, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup", + "Rank": 1 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Rank": 2, "Id": 375, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $groupId", + "Rank": 2 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Rank": 3, "Id": 376, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "Rank": 3 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Rank": 4, "Id": 377, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "Rank": 4 }, { - "Command": "Get-PnPAzureADGroup -Identity $group", - "Rank": 5, "Id": 378, - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $group", + "Rank": 5 }, { - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Rank": 1, "Id": 379, - "CommandName": "Get-PnPAzureADGroupMember" + "CommandName": "Get-PnPAzureADGroupMember", + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "Rank": 1 }, { - "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Rank": 2, "Id": 380, - "CommandName": "Get-PnPAzureADGroupMember" + "CommandName": "Get-PnPAzureADGroupMember", + "Command": "Get-PnPAzureADGroupMember -Identity $group", + "Rank": 2 }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Rank": 1, "Id": 381, - "CommandName": "Get-PnPAzureADGroupOwner" + "CommandName": "Get-PnPAzureADGroupOwner", + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "Rank": 1 }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Rank": 2, "Id": 382, - "CommandName": "Get-PnPAzureADGroupOwner" + "CommandName": "Get-PnPAzureADGroupOwner", + "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "Rank": 2 }, { - "Command": "Get-PnPAzureADServicePrincipal", - "Rank": 1, "Id": 383, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal", + "Rank": 1 }, { - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Rank": 2, "Id": 384, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "Rank": 2 }, { - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Rank": 3, "Id": 385, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "Rank": 3 }, { - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Rank": 4, "Id": 386, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "Rank": 4 }, { - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, "Id": 387, - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "Rank": 5 }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, "Id": 388, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1 }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 2, "Id": 389, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 2 }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, "Id": 390, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1 }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Rank": 2, "Id": 391, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "Rank": 2 }, { - "Command": "Get-PnPAzureADUser", - "Rank": 1, "Id": 392, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser", + "Rank": 1 }, { - "Command": "Get-PnPAzureADUser -EndIndex 50", - "Rank": 2, "Id": 393, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -EndIndex 50", + "Rank": 2 }, { - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 3, "Id": 394, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 3 }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Rank": 4, "Id": 395, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "Rank": 4 }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Rank": 5, "Id": 396, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "Rank": 5 }, { - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Rank": 6, "Id": 397, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "Rank": 6 }, { - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Rank": 7, "Id": 398, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "Rank": 7 }, { - "Command": "Get-PnPAzureADUser -Delta", - "Rank": 8, "Id": 399, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Delta", + "Rank": 8 }, { - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Rank": 9, "Id": 400, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "Rank": 9 }, { - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Rank": 10, "Id": 401, - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "Rank": 10 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Rank": 1, "Id": 402, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "Rank": 1 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Rank": 2, "Id": 403, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "Rank": 2 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Rank": 3, "Id": 404, - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "Rank": 3 }, { - "Command": "Get-PnPBrowserIdleSignout", - "Rank": 1, "Id": 405, - "CommandName": "Get-PnPBrowserIdleSignout" + "CommandName": "Get-PnPBrowserIdleSignout", + "Command": "Get-PnPBrowserIdleSignout", + "Rank": 1 }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Rank": 1, "Id": 406, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "Rank": 1 }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2, "Id": 407, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Command": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 2 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1, "Id": 408, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 1 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Rank": 2, "Id": 409, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "Rank": 2 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Rank": 3, "Id": 410, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "Rank": 3 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4, "Id": 411, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 4 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Rank": 5, "Id": 412, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "Rank": 5 }, { - "Command": "Get-PnPChangeLog", - "Rank": 1, "Id": 413, - "CommandName": "Get-PnPChangeLog" + "CommandName": "Get-PnPChangeLog", + "Command": "Get-PnPChangeLog", + "Rank": 1 }, { - "Command": "Get-PnPChangeLog -Nightly", - "Rank": 2, "Id": 414, - "CommandName": "Get-PnPChangeLog" + "CommandName": "Get-PnPChangeLog", + "Command": "Get-PnPChangeLog -Nightly", + "Rank": 2 }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Rank": 1, "Id": 415, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "CommandName": "Get-PnPCompatibleHubContentTypes", + "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'", - "Rank": 2, "Id": 416, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "Rank": 2 }, { - "Command": "Get-PnPContentType", - "Rank": 1, "Id": 417, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType", + "Rank": 1 }, { - "Command": "Get-PnPContentType -InSiteHierarchy", - "Rank": 2, "Id": 418, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -InSiteHierarchy", + "Rank": 2 }, { - "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Rank": 3, "Id": 419, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -Identity \"Project Document\"", + "Rank": 3 }, { - "Command": "Get-PnPContentType -List \"Documents\"", - "Rank": 4, "Id": 420, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -List \"Documents\"", + "Rank": 4 }, { - "Command": "Get-PnPContentType -Includes \"SchemaXml\"", - "Rank": 5, "Id": 421, - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -Includes \"SchemaXml\"", + "Rank": 5 }, { - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Rank": 1, "Id": 422, - "CommandName": "Get-PnPContentTypePublishingStatus" + "CommandName": "Get-PnPContentTypePublishingStatus", + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "Rank": 1 }, { - "Command": "Get-PnPCustomAction", - "Rank": 1, "Id": 423, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Command": "Get-PnPCustomAction", + "Rank": 1 }, { - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, "Id": 424, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2 }, { - "Command": "Get-PnPCustomAction -Scope web", - "Rank": 3, "Id": 425, - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Command": "Get-PnPCustomAction -Scope web", + "Rank": 3 }, { - "Command": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1, "Id": 426, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Command": "Get-PnPDeletedMicrosoft365Group", + "Rank": 1 }, { - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 2, "Id": 427, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 2 }, { - "Command": "Get-PnPDeletedTeam", - "Rank": 1, "Id": 428, - "CommandName": "Get-PnPDeletedTeam" + "CommandName": "Get-PnPDeletedTeam", + "Command": "Get-PnPDeletedTeam", + "Rank": 1 }, { - "Command": "Get-PnPDiagnostics", - "Rank": 1, "Id": 429, - "CommandName": "Get-PnPDiagnostics" + "CommandName": "Get-PnPDiagnostics", + "Command": "Get-PnPDiagnostics", + "Rank": 1 }, { - "Command": "Get-PnPDisableSpacesActivation", - "Rank": 1, "Id": 430, - "CommandName": "Get-PnPDisableSpacesActivation" + "CommandName": "Get-PnPDisableSpacesActivation", + "Command": "Get-PnPDisableSpacesActivation", + "Rank": 1 }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Rank": 1, "Id": 431, - "CommandName": "Get-PnPDocumentSetTemplate" + "CommandName": "Get-PnPDocumentSetTemplate", + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "Rank": 1 }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Rank": 2, "Id": 432, - "CommandName": "Get-PnPDocumentSetTemplate" + "CommandName": "Get-PnPDocumentSetTemplate", + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "Rank": 2 }, { - "Command": "Get-PnPEventReceiver", - "Rank": 1, "Id": 433, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver", + "Rank": 1 }, { - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, "Id": 434, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 2 }, { - "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Rank": 3, "Id": 435, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "Rank": 3 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Rank": 4, "Id": 436, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "Rank": 4 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 5, "Id": 437, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 5 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Rank": 6, "Id": 438, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "Rank": 6 }, { - "Command": "Get-PnPEventReceiver -Scope Site", - "Rank": 7, "Id": 439, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Scope Site", + "Rank": 7 }, { - "Command": "Get-PnPEventReceiver -Scope Web", - "Rank": 8, "Id": 440, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Scope Web", + "Rank": 8 }, { - "Command": "Get-PnPEventReceiver -Scope All", - "Rank": 9, "Id": 441, - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Scope All", + "Rank": 9 }, { - "Command": "Get-PnPException", - "Rank": 1, "Id": 442, - "CommandName": "Get-PnPException" + "CommandName": "Get-PnPException", + "Command": "Get-PnPException", + "Rank": 1 }, { - "Command": "Get-PnPException -All", - "Rank": 2, "Id": 443, - "CommandName": "Get-PnPException" + "CommandName": "Get-PnPException", + "Command": "Get-PnPException -All", + "Rank": 2 }, { - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Rank": 1, "Id": 444, - "CommandName": "Get-PnPExternalUser" + "CommandName": "Get-PnPExternalUser", + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "Rank": 1 }, { - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Rank": 2, "Id": 445, - "CommandName": "Get-PnPExternalUser" + "CommandName": "Get-PnPExternalUser", + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "Rank": 2 }, { - "Command": "Get-PnPFeature", - "Rank": 1, "Id": 446, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature", + "Rank": 1 }, { - "Command": "Get-PnPFeature -Scope Site", - "Rank": 2, "Id": 447, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature -Scope Site", + "Rank": 2 }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 3, "Id": 448, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 3 }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Rank": 4, "Id": 449, - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "Rank": 4 }, { - "Command": "Get-PnPField", - "Rank": 1, "Id": 450, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Command": "Get-PnPField", + "Rank": 1 }, { - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, "Id": 451, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Rank": 2 }, { - "Command": "Get-PnPField -Group \"Custom Columns\"", - "Rank": 3, "Id": 452, - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Command": "Get-PnPField -Group \"Custom Columns\"", + "Rank": 3 }, { - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Rank": 1, "Id": 453, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "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", - "Rank": 2, "Id": 454, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "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", - "Rank": 3, "Id": 455, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "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", - "Rank": 4, "Id": 456, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "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", - "Rank": 5, "Id": 457, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "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", - "Rank": 6, "Id": 458, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "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", - "Rank": 7, "Id": 459, - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "Rank": 7 }, { - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, "Id": 460, - "CommandName": "Get-PnPFileSharingLink" + "CommandName": "Get-PnPFileSharingLink", + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1 }, { - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Rank": 1, "Id": 461, - "CommandName": "Get-PnPFileVersion" + "CommandName": "Get-PnPFileVersion", + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "Rank": 1 }, { - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Rank": 2, "Id": 462, - "CommandName": "Get-PnPFileVersion" + "CommandName": "Get-PnPFileVersion", + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "Rank": 2 }, { - "Command": "Get-PnPFlow -AsAdmin", - "Rank": 1, "Id": 463, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Command": "Get-PnPFlow -AsAdmin", + "Rank": 1 }, { - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "Rank": 2, "Id": 464, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "Rank": 2 }, { - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Rank": 3, "Id": 465, - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "Rank": 3 }, { - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "Rank": 1, "Id": 466, - "CommandName": "Get-PnPFlowOwner" + "CommandName": "Get-PnPFlowOwner", + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "Rank": 1 }, { - "Command": "Get-PnPFolder", - "Rank": 1, "Id": 467, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder", + "Rank": 1 }, { - "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Rank": 2, "Id": 468, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "Rank": 2 }, { - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Rank": 3, "Id": 469, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Rank": 4, "Id": 470, - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder -List \"Shared Documents\"", + "Rank": 4 }, { - "Command": "Get-PnPFolderFile", - "Rank": 1, "Id": 471, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile", + "Rank": 1 }, { - "Command": "Get-PnPFolderFile -Recurse", - "Rank": 2, "Id": 472, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -Recurse", + "Rank": 2 }, { - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "Rank": 3, "Id": 473, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4, "Id": 474, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Rank": 4 }, { - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 5, "Id": 475, - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 5 }, { - "Command": "Get-PnPFolderFolder", - "Rank": 1, "Id": 476, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder", + "Rank": 1 }, { - "Command": "Get-PnPFolderFolder -Recurse", - "Rank": 2, "Id": 477, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -Recurse", + "Rank": 2 }, { - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "Rank": 3, "Id": 478, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "Rank": 4, "Id": 479, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "Rank": 4 }, { - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "Rank": 5, "Id": 480, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "Rank": 5 }, { - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6, "Id": 481, - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 6 }, { - "Command": "Get-PnPFolderItem", - "Rank": 1, "Id": 482, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem", + "Rank": 1 }, { - "Command": "Get-PnPFolderItem -Recurse", - "Rank": 2, "Id": 483, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -Recurse", + "Rank": 2 }, { - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "Rank": 3, "Id": 484, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 4, "Id": 485, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Rank": 4 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Rank": 5, "Id": 486, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "Rank": 5 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 6, "Id": 487, - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 6 }, { - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, "Id": 488, - "CommandName": "Get-PnPFolderSharingLink" + "CommandName": "Get-PnPFolderSharingLink", + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1 }, { - "Command": "Get-PnPFolderStorageMetric", - "Rank": 1, "Id": 489, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Command": "Get-PnPFolderStorageMetric", + "Rank": 1 }, { - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Rank": 2, "Id": 490, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "Rank": 2 }, { - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Rank": 3, "Id": 491, - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPFooter", - "Rank": 1, "Id": 492, - "CommandName": "Get-PnPFooter" + "CommandName": "Get-PnPFooter", + "Command": "Get-PnPFooter", + "Rank": 1 }, { - "Command": "Get-PnPGraphAccessToken", - "Rank": 1, "Id": 493, - "CommandName": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPGraphAccessToken", + "Command": "Get-PnPGraphAccessToken", + "Rank": 1 }, { - "Command": "Get-PnPGraphAccessToken -Decoded", - "Rank": 2, "Id": 494, - "CommandName": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPGraphAccessToken", + "Command": "Get-PnPGraphAccessToken -Decoded", + "Rank": 2 }, { - "Command": "Get-PnPGraphSubscription", - "Rank": 1, "Id": 495, - "CommandName": "Get-PnPGraphSubscription" + "CommandName": "Get-PnPGraphSubscription", + "Command": "Get-PnPGraphSubscription", + "Rank": 1 }, { - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 2, "Id": 496, - "CommandName": "Get-PnPGraphSubscription" + "CommandName": "Get-PnPGraphSubscription", + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 2 }, { - "Command": "Get-PnPGroup", - "Rank": 1, "Id": 497, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Command": "Get-PnPGroup", + "Rank": 1 }, { - "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Rank": 2, "Id": 498, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Command": "Get-PnPGroup -Identity 'My Site Users'", + "Rank": 2 }, { - "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Rank": 3, "Id": 499, - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Command": "Get-PnPGroup -AssociatedMemberGroup", + "Rank": 3 }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Rank": 1, "Id": 500, - "CommandName": "Get-PnPGroupMember" + "CommandName": "Get-PnPGroupMember", + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "Rank": 1 }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Rank": 2, "Id": 501, - "CommandName": "Get-PnPGroupMember" + "CommandName": "Get-PnPGroupMember", + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "Rank": 2 }, { - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Rank": 1, "Id": 502, - "CommandName": "Get-PnPGroupPermissions" + "CommandName": "Get-PnPGroupPermissions", + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "Rank": 1 }, { - "Command": "Get-PnPHideDefaultThemes", - "Rank": 1, "Id": 503, - "CommandName": "Get-PnPHideDefaultThemes" + "CommandName": "Get-PnPHideDefaultThemes", + "Command": "Get-PnPHideDefaultThemes", + "Rank": 1 }, { - "Command": "Get-PnPHomePage", - "Rank": 1, "Id": 504, - "CommandName": "Get-PnPHomePage" + "CommandName": "Get-PnPHomePage", + "Command": "Get-PnPHomePage", + "Rank": 1 }, { - "Command": "Get-PnPHomeSite", - "Rank": 1, "Id": 505, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Command": "Get-PnPHomeSite", + "Rank": 1 }, { - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Rank": 2, "Id": 506, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "Rank": 2 }, { - "Command": "Get-PnPHomeSite -Detailed", - "Rank": 3, "Id": 507, - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Command": "Get-PnPHomeSite -Detailed", + "Rank": 3 }, { - "Command": "Get-PnPHubSite", - "Rank": 1, "Id": 508, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Command": "Get-PnPHubSite", + "Rank": 1 }, { - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, "Id": 509, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Rank": 2 }, { - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Rank": 3, "Id": 510, - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "Rank": 3 }, { - "Command": "Get-PnPHubSiteChild", - "Rank": 1, "Id": 511, - "CommandName": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSiteChild", + "Command": "Get-PnPHubSiteChild", + "Rank": 1 }, { - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, "Id": 512, - "CommandName": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSiteChild", + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Rank": 2 }, { - "Command": "Get-PnPInPlaceRecordsManagement", - "Rank": 1, "Id": 513, - "CommandName": "Get-PnPInPlaceRecordsManagement" + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Command": "Get-PnPInPlaceRecordsManagement", + "Rank": 1 }, { - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Rank": 1, "Id": 514, - "CommandName": "Get-PnPIsSiteAliasAvailable" + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "Rank": 1 }, { - "Command": "Get-PnPJavaScriptLink", - "Rank": 1, "Id": 515, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink", + "Rank": 1 }, { - "Command": "Get-PnPJavaScriptLink -Scope All", - "Rank": 2, "Id": 516, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Scope All", + "Rank": 2 }, { - "Command": "Get-PnPJavaScriptLink -Scope Web", - "Rank": 3, "Id": 517, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Scope Web", + "Rank": 3 }, { - "Command": "Get-PnPJavaScriptLink -Scope Site", - "Rank": 4, "Id": 518, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Scope Site", + "Rank": 4 }, { - "Command": "Get-PnPJavaScriptLink -Name Test", - "Rank": 5, "Id": 519, - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Name Test", + "Rank": 5 }, { - "Command": "Get-PnPKnowledgeHubSite", - "Rank": 1, "Id": 520, - "CommandName": "Get-PnPKnowledgeHubSite" + "CommandName": "Get-PnPKnowledgeHubSite", + "Command": "Get-PnPKnowledgeHubSite", + "Rank": 1 }, { - "Command": "Get-PnPLabel", - "Rank": 1, "Id": 521, - "CommandName": "Get-PnPLabel" + "CommandName": "Get-PnPLabel", + "Command": "Get-PnPLabel", + "Rank": 1 }, { - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Rank": 2, "Id": 522, - "CommandName": "Get-PnPLabel" + "CommandName": "Get-PnPLabel", + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "Rank": 2 }, { - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Rank": 1, "Id": 523, - "CommandName": "Get-PnPLargeListOperationStatus" + "CommandName": "Get-PnPLargeListOperationStatus", + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "Rank": 1 }, { - "Command": "Get-PnPList", - "Rank": 1, "Id": 524, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Command": "Get-PnPList", + "Rank": 1 }, { - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 2, "Id": 525, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 2 }, { - "Command": "Get-PnPList -Identity Lists/Announcements", - "Rank": 3, "Id": 526, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Command": "Get-PnPList -Identity Lists/Announcements", + "Rank": 3 }, { - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Rank": 4, "Id": 527, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "Rank": 4 }, { - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Rank": 5, "Id": 528, - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "Rank": 5 }, { - "Command": "Get-PnPListDesign", - "Rank": 1, "Id": 529, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Command": "Get-PnPListDesign", + "Rank": 1 }, { - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, "Id": 530, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2 }, { - "Command": "Get-PnPListDesign -Identity ListEvent", - "Rank": 3, "Id": 531, - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Command": "Get-PnPListDesign -Identity ListEvent", + "Rank": 3 }, { - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Rank": 1, "Id": 532, - "CommandName": "Get-PnPListInformationRightsManagement" + "CommandName": "Get-PnPListInformationRightsManagement", + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "Rank": 1 }, { - "Command": "Get-PnPListItem -List Tasks", - "Rank": 1, "Id": 533, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks", + "Rank": 1 }, { - "Command": "Get-PnPListItem -List Tasks -Id 1", - "Rank": 2, "Id": 534, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Id 1", + "Rank": 2 }, { - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Rank": 3, "Id": 535, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "Rank": 3 }, { - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Rank": 4, "Id": 536, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "Rank": 4 }, { - "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Rank": 5, "Id": 537, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "Rank": 5 }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Rank": 6, "Id": 538, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "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) }", - "Rank": 7, "Id": 539, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "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\"", - "Rank": 8, "Id": 540, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "Rank": 8 }, { - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Rank": 9, "Id": 541, - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "Rank": 9 }, { - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "Rank": 1, "Id": 542, - "CommandName": "Get-PnPListItemAttachment" + "CommandName": "Get-PnPListItemAttachment", + "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", - "Rank": 2, "Id": 543, - "CommandName": "Get-PnPListItemAttachment" + "CommandName": "Get-PnPListItemAttachment", + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "Rank": 2 }, { - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Rank": 1, "Id": 544, - "CommandName": "Get-PnPListItemComment" + "CommandName": "Get-PnPListItemComment", + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "Rank": 1 }, { - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Rank": 1, "Id": 545, - "CommandName": "Get-PnPListItemPermission" + "CommandName": "Get-PnPListItemPermission", + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "Rank": 1 }, { - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Rank": 1, "Id": 546, - "CommandName": "Get-PnPListItemVersion" + "CommandName": "Get-PnPListItemVersion", + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "Rank": 1 }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Rank": 1, "Id": 547, - "CommandName": "Get-PnPListPermissions" + "CommandName": "Get-PnPListPermissions", + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "Rank": 1 }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Rank": 2, "Id": 548, - "CommandName": "Get-PnPListPermissions" + "CommandName": "Get-PnPListPermissions", + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "Rank": 2 }, { - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Rank": 1, "Id": 549, - "CommandName": "Get-PnPListRecordDeclaration" + "CommandName": "Get-PnPListRecordDeclaration", + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "Rank": 1 }, { - "Command": "Get-PnPMasterPage", - "Rank": 1, "Id": 550, - "CommandName": "Get-PnPMasterPage" + "CommandName": "Get-PnPMasterPage", + "Command": "Get-PnPMasterPage", + "Rank": 1 }, { - "Command": "Get-PnPMessageCenterAnnouncement", - "Rank": 1, "Id": 551, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Command": "Get-PnPMessageCenterAnnouncement", + "Rank": 1 }, { - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Rank": 2, "Id": 552, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1, "Id": 553, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Command": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Rank": 2, "Id": 554, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365Group", - "Rank": 1, "Id": 555, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Rank": 2, "Id": 556, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Rank": 3, "Id": 557, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Rank": 4, "Id": 558, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "Rank": 4 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Rank": 5, "Id": 559, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $group", + "Rank": 5 }, { - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Rank": 6, "Id": 560, - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "Rank": 6 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1, "Id": 561, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Command": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Rank": 2, "Id": 562, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, "Id": 563, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Rank": 1, "Id": 564, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Rank": 2, "Id": 565, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Rank": 3, "Id": 566, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Rank": 1, "Id": 567, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Rank": 2, "Id": 568, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1, "Id": 569, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Command": "Get-PnPMicrosoft365GroupSettings", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Rank": 2, "Id": 570, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1, "Id": 571, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Rank": 2, "Id": 572, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1, "Id": 573, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Command": "Get-PnPMicrosoft365GroupTeam", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Rank": 2, "Id": 574, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, "Id": 575, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1, "Id": 576, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 1 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Rank": 2, "Id": 577, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "Rank": 2 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, "Id": 578, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3 }, { - "Command": "Get-PnPNavigationNode", - "Rank": 1, "Id": 579, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Command": "Get-PnPNavigationNode", + "Rank": 1 }, { - "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Rank": 2, "Id": 580, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "Rank": 2 }, { - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Rank": 3, "Id": 581, - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "Rank": 3 }, { - "Command": "Get-PnPOrgAssetsLibrary", - "Rank": 1, "Id": 582, - "CommandName": "Get-PnPOrgAssetsLibrary" + "CommandName": "Get-PnPOrgAssetsLibrary", + "Command": "Get-PnPOrgAssetsLibrary", + "Rank": 1 }, { - "Command": "Get-PnPOrgNewsSite", - "Rank": 1, "Id": 583, - "CommandName": "Get-PnPOrgNewsSite" + "CommandName": "Get-PnPOrgNewsSite", + "Command": "Get-PnPOrgNewsSite", + "Rank": 1 }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Rank": 1, "Id": 584, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "Rank": 1 }, { - "Command": "Get-PnPPage \"MyPage\"", - "Rank": 2, "Id": 585, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage \"MyPage\"", + "Rank": 2 }, { - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Rank": 3, "Id": 586, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "Rank": 3 }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Rank": 4, "Id": 587, - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "Rank": 4 }, { - "Command": "Get-PnPPageComponent -Page Home", - "Rank": 1, "Id": 588, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Command": "Get-PnPPageComponent -Page Home", + "Rank": 1 }, { - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2, "Id": 589, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 2 }, { - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Rank": 3, "Id": 590, - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "Rank": 3 }, { - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, "Id": 591, - "CommandName": "Get-PnPPlannerBucket" + "CommandName": "Get-PnPPlannerBucket", + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerConfiguration", - "Rank": 1, "Id": 592, - "CommandName": "Get-PnPPlannerConfiguration" + "CommandName": "Get-PnPPlannerConfiguration", + "Command": "Get-PnPPlannerConfiguration", + "Rank": 1 }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Rank": 1, "Id": 593, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Rank": 2, "Id": 594, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "Rank": 2 }, { - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Rank": 3, "Id": 595, - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "Rank": 3 }, { - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, "Id": 596, - "CommandName": "Get-PnPPlannerRosterMember" + "CommandName": "Get-PnPPlannerRosterMember", + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Rank": 1, "Id": 597, - "CommandName": "Get-PnPPlannerRosterPlan" + "CommandName": "Get-PnPPlannerRosterPlan", + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 2, "Id": 598, - "CommandName": "Get-PnPPlannerRosterPlan" + "CommandName": "Get-PnPPlannerRosterPlan", + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 2 }, { - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, "Id": 599, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "Rank": 1 }, { - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 2, "Id": 600, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Rank": 2 }, { - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 3, "Id": 601, - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Rank": 3 }, { - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 602, - "CommandName": "Get-PnPPlannerUserPolicy" + "CommandName": "Get-PnPPlannerUserPolicy", + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "Rank": 1, "Id": 603, - "CommandName": "Get-PnPPowerPlatformConnector" + "CommandName": "Get-PnPPowerPlatformConnector", + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "Rank": 1 }, { - "Command": "Get-PnPPowerPlatformEnvironment", - "Rank": 1, "Id": 604, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Command": "Get-PnPPowerPlatformEnvironment", + "Rank": 1 }, { - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Rank": 2, "Id": 605, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "Rank": 2 }, { - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Rank": 3, "Id": 606, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "Rank": 3 }, { - "Command": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1, "Id": 607, - "CommandName": "Get-PnPPowerShellTelemetryEnabled" + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Command": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1 }, { - "Command": "Get-PnPPropertyBag", - "Rank": 1, "Id": 608, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag", + "Rank": 1 }, { - "Command": "Get-PnPPropertyBag -Key MyKey", - "Rank": 2, "Id": 609, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Key MyKey", + "Rank": 2 }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Rank": 3, "Id": 610, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "Rank": 3 }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Rank": 4, "Id": 611, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "Rank": 4 }, { - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Rank": 5, "Id": 612, - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "Rank": 5 }, { - "Command": "Get-PnPPublishingImageRendition", - "Rank": 1, "Id": 613, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Command": "Get-PnPPublishingImageRendition", + "Rank": 1 }, { - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Rank": 2, "Id": 614, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "Rank": 2 }, { - "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Rank": 3, "Id": 615, - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Command": "Get-PnPPublishingImageRendition -Identity 2", + "Rank": 3 }, { - "Command": "Get-PnPRecycleBinItem", - "Rank": 1, "Id": 616, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem", + "Rank": 1 }, { - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Rank": 2, "Id": 617, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "Rank": 2 }, { - "Command": "Get-PnPRecycleBinItem -FirstStage", - "Rank": 3, "Id": 618, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -FirstStage", + "Rank": 3 }, { - "Command": "Get-PnPRecycleBinItem -SecondStage", - "Rank": 4, "Id": 619, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -SecondStage", + "Rank": 4 }, { - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Rank": 5, "Id": 620, - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "Rank": 5 }, { - "Command": "Get-PnPRequestAccessEmails", - "Rank": 1, "Id": 621, - "CommandName": "Get-PnPRequestAccessEmails" + "CommandName": "Get-PnPRequestAccessEmails", + "Command": "Get-PnPRequestAccessEmails", + "Rank": 1 }, { - "Command": "Get-PnPRetentionLabel", - "Rank": 1, "Id": 622, - "CommandName": "Get-PnPRetentionLabel" + "CommandName": "Get-PnPRetentionLabel", + "Command": "Get-PnPRetentionLabel", + "Rank": 1 }, { - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", - "Rank": 2, "Id": 623, - "CommandName": "Get-PnPRetentionLabel" + "CommandName": "Get-PnPRetentionLabel", + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "Rank": 2 }, { - "Command": "Get-PnPRoleDefinition", - "Rank": 1, "Id": 624, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Command": "Get-PnPRoleDefinition", + "Rank": 1 }, { - "Command": "Get-PnPRoleDefinition -Identity Read", - "Rank": 2, "Id": 625, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Command": "Get-PnPRoleDefinition -Identity Read", + "Rank": 2 }, { - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Rank": 3, "Id": 626, - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "Rank": 3 }, { - "Command": "Get-PnPSearchConfiguration", - "Rank": 1, "Id": 627, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration", + "Rank": 1 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site", - "Rank": 2, "Id": 628, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site", + "Rank": 2 }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Rank": 3, "Id": 629, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "Rank": 3 }, { - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, "Id": 630, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Rank": 5, "Id": 631, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "Rank": 5 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Rank": 6, "Id": 632, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "Rank": 6 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Rank": 7, "Id": 633, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "Rank": 7 }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Rank": 8, "Id": 634, - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "Rank": 8 }, { - "Command": "Get-PnPSearchCrawlLog", - "Rank": 1, "Id": 635, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog", + "Rank": 1 }, { - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Rank": 2, "Id": 636, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "Rank": 2 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Rank": 3, "Id": 637, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "Rank": 3 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Rank": 4, "Id": 638, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "Rank": 4 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Rank": 5, "Id": 639, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "Rank": 5 }, { - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Rank": 6, "Id": 640, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "Rank": 6 }, { - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Rank": 7, "Id": 641, - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "Rank": 7 }, { - "Command": "Get-PnPSearchSettings", - "Rank": 1, "Id": 642, - "CommandName": "Get-PnPSearchSettings" + "CommandName": "Get-PnPSearchSettings", + "Command": "Get-PnPSearchSettings", + "Rank": 1 }, { - "Command": "Get-PnPServiceCurrentHealth", - "Rank": 1, "Id": 643, - "CommandName": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPServiceCurrentHealth", + "Command": "Get-PnPServiceCurrentHealth", + "Rank": 1 }, { - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Rank": 2, "Id": 644, - "CommandName": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPServiceCurrentHealth", + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "Rank": 2 }, { - "Command": "Get-PnPServiceHealthIssue", - "Rank": 1, "Id": 645, - "CommandName": "Get-PnPServiceHealthIssue" + "CommandName": "Get-PnPServiceHealthIssue", + "Command": "Get-PnPServiceHealthIssue", + "Rank": 1 }, { - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Rank": 2, "Id": 646, - "CommandName": "Get-PnPServiceHealthIssue" + "CommandName": "Get-PnPServiceHealthIssue", + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "Rank": 2 }, { - "Command": "Get-PnPSharePointAddIn", - "Rank": 1, "Id": 647, - "CommandName": "Get-PnPSharePointAddIn" + "CommandName": "Get-PnPSharePointAddIn", + "Command": "Get-PnPSharePointAddIn", + "Rank": 1 }, { - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Rank": 2, "Id": 648, - "CommandName": "Get-PnPSharePointAddIn" + "CommandName": "Get-PnPSharePointAddIn", + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "Rank": 2 }, { - "Command": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1, "Id": 649, - "CommandName": "Get-PnPSharingForNonOwnersOfSite" + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Command": "Get-PnPSharingForNonOwnersOfSite", + "Rank": 1 }, { - "Command": "Get-PnPSite", - "Rank": 1, "Id": 650, - "CommandName": "Get-PnPSite" + "CommandName": "Get-PnPSite", + "Command": "Get-PnPSite", + "Rank": 1 }, { - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Rank": 2, "Id": 651, - "CommandName": "Get-PnPSite" + "CommandName": "Get-PnPSite", + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "Rank": 2 }, { - "Command": "Get-PnPSiteClosure", - "Rank": 1, "Id": 652, - "CommandName": "Get-PnPSiteClosure" + "CommandName": "Get-PnPSiteClosure", + "Command": "Get-PnPSiteClosure", + "Rank": 1 }, { - "Command": "Get-PnPSiteCollectionAdmin", - "Rank": 1, "Id": 653, - "CommandName": "Get-PnPSiteCollectionAdmin" + "CommandName": "Get-PnPSiteCollectionAdmin", + "Command": "Get-PnPSiteCollectionAdmin", + "Rank": 1 }, { - "Command": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1, "Id": 654, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Command": "Get-PnPSiteCollectionAppCatalog", + "Rank": 1 }, { - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Rank": 2, "Id": 655, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "Rank": 2 }, { - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Rank": 3, "Id": 656, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "Rank": 3 }, { - "Command": "Get-PnPSiteCollectionTermStore", - "Rank": 1, "Id": 657, - "CommandName": "Get-PnPSiteCollectionTermStore" + "CommandName": "Get-PnPSiteCollectionTermStore", + "Command": "Get-PnPSiteCollectionTermStore", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesign", - "Rank": 1, "Id": 658, - "CommandName": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteDesign", + "Command": "Get-PnPSiteDesign", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, "Id": 659, - "CommandName": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteDesign", + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2 }, { - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "Id": 660, - "CommandName": "Get-PnPSiteDesignRights" + "CommandName": "Get-PnPSiteDesignRights", + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesignRun", - "Rank": 1, "Id": 661, - "CommandName": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesignRun", + "Command": "Get-PnPSiteDesignRun", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Rank": 2, "Id": 662, - "CommandName": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesignRun", + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "Rank": 2 }, { - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1, "Id": 663, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "Rank": 1 }, { - "Command": "Get-PnPSiteDesignTask", - "Rank": 2, "Id": 664, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Command": "Get-PnPSiteDesignTask", + "Rank": 2 }, { - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 3, "Id": 665, - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteGroup", - "Rank": 1, "Id": 666, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup", + "Rank": 1 }, { - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 2, "Id": 667, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Rank": 2 }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Rank": 3, "Id": 668, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 4, "Id": 669, - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Rank": 4 }, { - "Command": "Get-PnPSitePolicy", - "Rank": 1, "Id": 670, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Command": "Get-PnPSitePolicy", + "Rank": 1 }, { - "Command": "Get-PnPSitePolicy -AllAvailable", - "Rank": 2, "Id": 671, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Command": "Get-PnPSitePolicy -AllAvailable", + "Rank": 2 }, { - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 3, "Id": 672, - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteScript", - "Rank": 1, "Id": 673, - "CommandName": "Get-PnPSiteScript" + "CommandName": "Get-PnPSiteScript", + "Command": "Get-PnPSiteScript", + "Rank": 1 }, { - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, "Id": 674, - "CommandName": "Get-PnPSiteScript" + "CommandName": "Get-PnPSiteScript", + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2 }, { - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Rank": 1, "Id": 675, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "Rank": 1 }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Rank": 2, "Id": 676, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "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\"", - "Rank": 3, "Id": 677, - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Rank": 1, "Id": 678, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "Rank": 1 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Rank": 2, "Id": 679, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "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\"", - "Rank": 3, "Id": 680, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "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", - "Rank": 4, "Id": 681, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "Rank": 4 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Rank": 5, "Id": 682, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "Rank": 5 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "Rank": 6, "Id": 683, - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "Rank": 6 }, { - "Command": "Get-PnPSiteSearchQueryResults", - "Rank": 1, "Id": 684, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults", + "Rank": 1 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Rank": 2, "Id": 685, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "Rank": 2 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Rank": 3, "Id": 686, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "Rank": 3 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Rank": 4, "Id": 687, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "Rank": 4 }, { - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Rank": 5, "Id": 688, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "Rank": 5 }, { - "Command": "Get-PnPSiteSearchQueryResults -All", - "Rank": 6, "Id": 689, - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -All", + "Rank": 6 }, { - "Command": "Get-PnPSiteSensitivityLabel", - "Rank": 1, "Id": 690, - "CommandName": "Get-PnPSiteSensitivityLabel" + "CommandName": "Get-PnPSiteSensitivityLabel", + "Command": "Get-PnPSiteSensitivityLabel", + "Rank": 1 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Rank": 1, "Id": 691, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp", + "Rank": 1 }, { - "Command": "Get-PnPSiteTemplate -Out template.xml", - "Rank": 2, "Id": 692, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.xml", + "Rank": 2 }, { - "Command": "Get-PnPSiteTemplate -Out template.md", - "Rank": 3, "Id": 693, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.md", + "Rank": 3 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Rank": 4, "Id": 694, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "Rank": 4 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Rank": 5, "Id": 695, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "Rank": 5 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Rank": 6, "Id": 696, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "Rank": 6 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Rank": 7, "Id": 697, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "Rank": 7 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Rank": 8, "Id": 698, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "Rank": 8 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Rank": 9, "Id": 699, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "Rank": 9 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Rank": 10, "Id": 700, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "Rank": 10 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Rank": 11, "Id": 701, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "Rank": 11 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Rank": 12, "Id": 702, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "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\"", - "Rank": 13, "Id": 703, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "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", - "Rank": 14, "Id": 704, - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "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", - "Rank": 1, "Id": 705, - "CommandName": "Get-PnPSiteUserInvitations" + "CommandName": "Get-PnPSiteUserInvitations", + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Rank": 1 }, { - "Command": "Get-PnPSiteVersionPolicy", - "Rank": 1, "Id": 706, - "CommandName": "Get-PnPSiteVersionPolicy" + "CommandName": "Get-PnPSiteVersionPolicy", + "Command": "Get-PnPSiteVersionPolicy", + "Rank": 1 }, { - "Command": "Get-PnPStorageEntity", - "Rank": 1, "Id": 707, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity", + "Rank": 1 }, { - "Command": "Get-PnPStorageEntity -Key MyKey", - "Rank": 2, "Id": 708, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity -Key MyKey", + "Rank": 2 }, { - "Command": "Get-PnPStorageEntity -Scope Site", - "Rank": 3, "Id": 709, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity -Scope Site", + "Rank": 3 }, { - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 4, "Id": 710, - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "Rank": 4 }, { - "Command": "Get-PnPStoredCredential -Name O365", - "Rank": 1, "Id": 711, - "CommandName": "Get-PnPStoredCredential" + "CommandName": "Get-PnPStoredCredential", + "Command": "Get-PnPStoredCredential -Name O365", + "Rank": 1 }, { - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1, "Id": 712, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState" + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 1 }, { - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1, "Id": 713, - "CommandName": "Get-PnPStructuralNavigationCacheWebState" + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 1 }, { - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Rank": 1, "Id": 714, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest" + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "Rank": 1 }, { - "Command": "Get-PnPSubWeb", - "Rank": 1, "Id": 715, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb", + "Rank": 1 }, { - "Command": "Get-PnPSubWeb -Recurse", - "Rank": 2, "Id": 716, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Recurse", + "Rank": 2 }, { - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Rank": 3, "Id": 717, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "Rank": 3 }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Rank": 4, "Id": 718, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "Rank": 4 }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Rank": 5, "Id": 719, - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "Rank": 5 }, { - "Command": "Get-PnPSyntexModel", - "Rank": 1, "Id": 720, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Command": "Get-PnPSyntexModel", + "Rank": 1 }, { - "Command": "Get-PnPSyntexModel -Identity 1", - "Rank": 2, "Id": 721, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Command": "Get-PnPSyntexModel -Identity 1", + "Rank": 2 }, { - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Rank": 3, "Id": 722, - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "Rank": 3 }, { - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Rank": 1, "Id": 723, - "CommandName": "Get-PnPSyntexModelPublication" + "CommandName": "Get-PnPSyntexModelPublication", + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "Rank": 1 }, { - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Rank": 1, "Id": 724, - "CommandName": "Get-PnPTaxonomyItem" + "CommandName": "Get-PnPTaxonomyItem", + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "Rank": 1 }, { - "Command": "Get-PnPTeamsApp", - "Rank": 1, "Id": 725, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Command": "Get-PnPTeamsApp", + "Rank": 1 }, { - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Rank": 2, "Id": 726, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "Rank": 2 }, { - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Rank": 3, "Id": 727, - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "Rank": 3 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Rank": 1, "Id": 728, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "Rank": 1 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Rank": 2, "Id": 729, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "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\"", - "Rank": 3, "Id": 730, - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "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\"", - "Rank": 1, "Id": 731, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "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\"", - "Rank": 2, "Id": 732, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Rank": 2 }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Rank": 1, "Id": 733, - "CommandName": "Get-PnPTeamsChannelMessage" + "CommandName": "Get-PnPTeamsChannelMessage", + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "Rank": 1 }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Rank": 2, "Id": 734, - "CommandName": "Get-PnPTeamsChannelMessage" + "CommandName": "Get-PnPTeamsChannelMessage", + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "Rank": 2 }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Rank": 1, "Id": 735, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "CommandName": "Get-PnPTeamsChannelMessageReply", + "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", - "Rank": 2, "Id": 736, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "Rank": 2 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 1, "Id": 737, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "Rank": 1 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Rank": 2, "Id": 738, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "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", - "Rank": 3, "Id": 739, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "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", - "Rank": 4, "Id": 740, - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "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", - "Rank": 1, "Id": 741, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "Rank": 1 }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Rank": 2, "Id": 742, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "Rank": 2 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Rank": 1, "Id": 743, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "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\"", - "Rank": 2, "Id": 744, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "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", - "Rank": 3, "Id": 745, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "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\"", - "Rank": 4, "Id": 746, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "Rank": 4 }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Rank": 5, "Id": 747, - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "Rank": 5 }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, "Id": 748, - "CommandName": "Get-PnPTeamsTag" + "CommandName": "Get-PnPTeamsTag", + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Rank": 1 }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 2, "Id": 749, - "CommandName": "Get-PnPTeamsTag" + "CommandName": "Get-PnPTeamsTag", + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Rank": 2 }, { - "Command": "Get-PnPTeamsTeam", - "Rank": 1, "Id": 750, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam", + "Rank": 1 }, { - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Rank": 2, "Id": 751, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "Rank": 2 }, { - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Rank": 3, "Id": 752, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "Rank": 3 }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Rank": 4, "Id": 753, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "Rank": 4 }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, "Id": 754, - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "Rank": 5 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam", - "Rank": 1, "Id": 755, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam", + "Rank": 1 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Rank": 2, "Id": 756, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "Rank": 2 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Rank": 3, "Id": 757, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "Rank": 3 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Rank": 4, "Id": 758, - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "Rank": 4 }, { - "Command": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1, "Id": 759, - "CommandName": "Get-PnPTemporarilyDisableAppBar" + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Command": "Get-PnPTemporarilyDisableAppBar", + "Rank": 1 }, { - "Command": "Get-PnPTenant", - "Rank": 1, "Id": 760, - "CommandName": "Get-PnPTenant" + "CommandName": "Get-PnPTenant", + "Command": "Get-PnPTenant", + "Rank": 1 }, { - "Command": "Get-PnPTenantAppCatalogUrl", - "Rank": 1, "Id": 761, - "CommandName": "Get-PnPTenantAppCatalogUrl" + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Command": "Get-PnPTenantAppCatalogUrl", + "Rank": 1 }, { - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Rank": 1, "Id": 762, - "CommandName": "Get-PnPTenantCdnEnabled" + "CommandName": "Get-PnPTenantCdnEnabled", + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "Rank": 1 }, { - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Rank": 1, "Id": 763, - "CommandName": "Get-PnPTenantCdnOrigin" + "CommandName": "Get-PnPTenantCdnOrigin", + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "Rank": 1 }, { - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Rank": 1, "Id": 764, - "CommandName": "Get-PnPTenantCdnPolicies" + "CommandName": "Get-PnPTenantCdnPolicies", + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "Rank": 1 }, { - "Command": "Get-PnPTenantDeletedSite", - "Rank": 1, "Id": 765, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite", + "Rank": 1 }, { - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 2, "Id": 766, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 2 }, { - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Rank": 3, "Id": 767, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "Rank": 3 }, { - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Rank": 4, "Id": 768, - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "Rank": 4 }, { - "Command": "Get-PnPTenantId", - "Rank": 1, "Id": 769, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId", + "Rank": 1 }, { - "Command": "Get-PnPTenantId contoso", - "Rank": 2, "Id": 770, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId contoso", + "Rank": 2 }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Rank": 3, "Id": 771, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "Rank": 3 }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Rank": 4, "Id": 772, - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "Rank": 4 }, { - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "Rank": 1, "Id": 773, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "Rank": 1 }, { - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "Rank": 2, "Id": 774, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "Rank": 2 }, { - "Command": "Get-PnPTenantInfo", - "Rank": 3, "Id": 775, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo", + "Rank": 3 }, { - "Command": "Get-PnPTenantInfo -CurrentTenant", - "Rank": 4, "Id": 776, - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo -CurrentTenant", + "Rank": 4 }, { - "Command": "Get-PnPTenantInstance", - "Rank": 1, "Id": 777, - "CommandName": "Get-PnPTenantInstance" + "CommandName": "Get-PnPTenantInstance", + "Command": "Get-PnPTenantInstance", + "Rank": 1 }, { - "Command": "Get-PnPTenantRecycleBinItem", - "Rank": 1, "Id": 778, - "CommandName": "Get-PnPTenantRecycleBinItem" + "CommandName": "Get-PnPTenantRecycleBinItem", + "Command": "Get-PnPTenantRecycleBinItem", + "Rank": 1 }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Rank": 1, "Id": 779, - "CommandName": "Get-PnPTenantSequence" + "CommandName": "Get-PnPTenantSequence", + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "Rank": 1 }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Rank": 2, "Id": 780, - "CommandName": "Get-PnPTenantSequence" + "CommandName": "Get-PnPTenantSequence", + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "Rank": 2 }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Rank": 1, "Id": 781, - "CommandName": "Get-PnPTenantSequenceSite" + "CommandName": "Get-PnPTenantSequenceSite", + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "Rank": 1 }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Rank": 2, "Id": 782, - "CommandName": "Get-PnPTenantSequenceSite" + "CommandName": "Get-PnPTenantSequenceSite", + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "Rank": 2 }, { - "Command": "Get-PnPTenantSite", - "Rank": 1, "Id": 783, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite", + "Rank": 1 }, { - "Command": "Get-PnPTenantSite -Detailed", - "Rank": 2, "Id": 784, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Detailed", + "Rank": 2 }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Rank": 3, "Id": 785, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "Rank": 3 }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Rank": 4, "Id": 786, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "Rank": 4 }, { - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Rank": 5, "Id": 787, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "Rank": 5 }, { - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Rank": 6, "Id": 788, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "Rank": 6 }, { - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Rank": 7, "Id": 789, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "Rank": 7 }, { - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Rank": 8, "Id": 790, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "Rank": 8 }, { - "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Rank": 9, "Id": 791, - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "Rank": 9 }, { - "Command": "Get-PnPTenantSyncClientRestriction", - "Rank": 1, "Id": 792, - "CommandName": "Get-PnPTenantSyncClientRestriction" + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Command": "Get-PnPTenantSyncClientRestriction", + "Rank": 1 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Rank": 1, "Id": 793, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "Rank": 1 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Rank": 2, "Id": 794, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "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", - "Rank": 3, "Id": 795, - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "Rank": 3 }, { - "Command": "Get-PnPTenantTheme", - "Rank": 1, "Id": 796, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Command": "Get-PnPTenantTheme", + "Rank": 1 }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 2, "Id": 797, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Rank": 2 }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Rank": 3, "Id": 798, - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "Rank": 3 }, { - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 1, "Id": 799, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 1 }, { - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, "Id": 800, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2 }, { - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, "Id": 801, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "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", - "Rank": 4, "Id": 802, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "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", - "Rank": 5, "Id": 803, - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "Rank": 5 }, { - "Command": "Get-PnPTermGroup", - "Rank": 1, "Id": 804, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Command": "Get-PnPTermGroup", + "Rank": 1 }, { - "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Rank": 2, "Id": 805, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "Rank": 2 }, { - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Rank": 3, "Id": 806, - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "Rank": 3 }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Rank": 1, "Id": 807, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "Rank": 1 }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Rank": 2, "Id": 808, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "Rank": 2 }, { - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, "Id": 809, - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 3 }, { - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Rank": 1, "Id": 810, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "Rank": 1 }, { - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, "Id": 811, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2 }, { - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Rank": 3, "Id": 812, - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "Rank": 3 }, { - "Command": "Get-PnPTheme", - "Rank": 1, "Id": 813, - "CommandName": "Get-PnPTheme" + "CommandName": "Get-PnPTheme", + "Command": "Get-PnPTheme", + "Rank": 1 }, { - "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Rank": 2, "Id": 814, - "CommandName": "Get-PnPTheme" + "CommandName": "Get-PnPTheme", + "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "Rank": 2 }, { - "Command": "Get-PnPTimeZoneId", - "Rank": 1, "Id": 815, - "CommandName": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTimeZoneId", + "Command": "Get-PnPTimeZoneId", + "Rank": 1 }, { - "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Rank": 2, "Id": 816, - "CommandName": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTimeZoneId", + "Command": "Get-PnPTimeZoneId -Match Stockholm", + "Rank": 2 }, { - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Rank": 1, "Id": 817, - "CommandName": "Get-PnPUnfurlLink" + "CommandName": "Get-PnPUnfurlLink", + "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)", - "Rank": 1, "Id": 818, - "CommandName": "Get-PnPUnifiedAuditLog" + "CommandName": "Get-PnPUnifiedAuditLog", + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "Rank": 1 }, { - "Command": "Get-PnPUPABulkImportStatus", - "Rank": 1, "Id": 819, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus", + "Rank": 1 }, { - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Rank": 2, "Id": 820, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "Rank": 2 }, { - "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Rank": 3, "Id": 821, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus -JobId ", + "Rank": 3 }, { - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Rank": 4, "Id": 822, - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "Rank": 4 }, { - "Command": "Get-PnPUser", - "Rank": 1, "Id": 823, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser", + "Rank": 1 }, { - "Command": "Get-PnPUser -Identity 23", - "Rank": 2, "Id": 824, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -Identity 23", + "Rank": 2 }, { - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Rank": 3, "Id": 825, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "Rank": 3 }, { - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Rank": 4, "Id": 826, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "Rank": 4 }, { - "Command": "Get-PnPUser -WithRightsAssigned", - "Rank": 5, "Id": 827, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -WithRightsAssigned", + "Rank": 5 }, { - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Rank": 6, "Id": 828, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "Rank": 6 }, { - "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Rank": 7, "Id": 829, - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "Rank": 7 }, { - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Rank": 1, "Id": 830, - "CommandName": "Get-PnPUserOneDriveQuota" + "CommandName": "Get-PnPUserOneDriveQuota", + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "Rank": 1 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Rank": 1, "Id": 831, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "Rank": 1 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Rank": 2, "Id": 832, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "Rank": 2 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Rank": 3, "Id": 833, - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "Rank": 3 }, { - "Command": "Get-PnPView -List \"Demo List\"", - "Rank": 1, "Id": 834, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Command": "Get-PnPView -List \"Demo List\"", + "Rank": 1 }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Rank": 2, "Id": 835, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "Rank": 2 }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Rank": 3, "Id": 836, - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "Rank": 3 }, { - "Command": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1, "Id": 837, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Command": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 1 }, { - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 2, "Id": 838, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Rank": 2 }, { - "Command": "Get-PnPWeb", - "Rank": 1, "Id": 839, - "CommandName": "Get-PnPWeb" + "CommandName": "Get-PnPWeb", + "Command": "Get-PnPWeb", + "Rank": 1 }, { - "Command": "Get-PnPWebHeader", - "Rank": 1, "Id": 840, - "CommandName": "Get-PnPWebHeader" + "CommandName": "Get-PnPWebHeader", + "Command": "Get-PnPWebHeader", + "Rank": 1 }, { - "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Rank": 1, "Id": 841, - "CommandName": "Get-PnPWebhookSubscriptions" + "CommandName": "Get-PnPWebhookSubscriptions", + "Command": "Get-PnPWebhookSubscriptions -List MyList", + "Rank": 1 }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Rank": 1, "Id": 842, - "CommandName": "Get-PnPWebPart" + "CommandName": "Get-PnPWebPart", + "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", - "Rank": 2, "Id": 843, - "CommandName": "Get-PnPWebPart" + "CommandName": "Get-PnPWebPart", + "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", - "Rank": 1, "Id": 844, - "CommandName": "Get-PnPWebPartProperty" + "CommandName": "Get-PnPWebPartProperty", + "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\"", - "Rank": 2, "Id": 845, - "CommandName": "Get-PnPWebPartProperty" + "CommandName": "Get-PnPWebPartProperty", + "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", - "Rank": 1, "Id": 846, - "CommandName": "Get-PnPWebPartXml" + "CommandName": "Get-PnPWebPartXml", + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1 }, { - "Command": "Get-PnPWebTemplates", - "Rank": 1, "Id": 847, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Command": "Get-PnPWebTemplates", + "Rank": 1 }, { - "Command": "Get-PnPWebTemplates -LCID 1033", - "Rank": 2, "Id": 848, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Command": "Get-PnPWebTemplates -LCID 1033", + "Rank": 2 }, { - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Rank": 3, "Id": 849, - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "Rank": 3 }, { - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Rank": 1, "Id": 850, - "CommandName": "Get-PnPWikiPageContent" + "CommandName": "Get-PnPWikiPageContent", + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "Rank": 1 }, { - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Rank": 1, "Id": 851, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "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 Write -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2, "Id": 852, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -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\"", - "Rank": 1, "Id": 853, - "CommandName": "Grant-PnPHubSiteRights" + "CommandName": "Grant-PnPHubSiteRights", + "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\"", - "Rank": 1, "Id": 854, - "CommandName": "Grant-PnPSiteDesignRights" + "CommandName": "Grant-PnPSiteDesignRights", + "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\"", - "Rank": 1, "Id": 855, - "CommandName": "Grant-PnPTenantServicePrincipalPermission" + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Rank": 1 }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Rank": 1, "Id": 856, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "Rank": 1 }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Rank": 2, "Id": 857, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "Rank": 2 }, { - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Rank": 3, "Id": 858, - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "Rank": 3 }, { - "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Rank": 1, "Id": 859, - "CommandName": "Import-PnPTermGroupFromXml" + "CommandName": "Import-PnPTermGroupFromXml", + "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "Rank": 1 }, { - "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Rank": 2, "Id": 860, - "CommandName": "Import-PnPTermGroupFromXml" + "CommandName": "Import-PnPTermGroupFromXml", + "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "Rank": 2 }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Rank": 1, "Id": 861, - "CommandName": "Import-PnPTermSet" + "CommandName": "Import-PnPTermSet", + "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}'", - "Rank": 2, "Id": 862, - "CommandName": "Import-PnPTermSet" + "CommandName": "Import-PnPTermSet", + "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'", - "Rank": 3, "Id": 863, - "CommandName": "Import-PnPTermSet" + "CommandName": "Import-PnPTermSet", + "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", - "Rank": 1, "Id": 864, - "CommandName": "Install-PnPApp" + "CommandName": "Install-PnPApp", + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "Id": 865, - "CommandName": "Install-PnPApp" + "CommandName": "Install-PnPApp", + "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'", - "Rank": 1, "Id": 866, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "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", - "Rank": 2, "Id": 867, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "Rank": 2 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Rank": 3, "Id": 868, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "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", - "Rank": 4, "Id": 869, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "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\"", - "Rank": 5, "Id": 870, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "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", - "Rank": 6, "Id": 871, - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "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\"", - "Rank": 7, "Id": 872, - "CommandName": "Invoke-PnPGraphMethod" + "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\"", + "Rank": 7 }, { - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "Id": 873, - "CommandName": "Invoke-PnPListDesign" + "CommandName": "Invoke-PnPListDesign", + "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\"", - "Rank": 2, "Id": 874, - "CommandName": "Invoke-PnPListDesign" + "CommandName": "Invoke-PnPListDesign", + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Rank": 2 }, { - "Command": "Invoke-PnPQuery -RetryCount 5", - "Rank": 1, "Id": 875, - "CommandName": "Invoke-PnPQuery" + "CommandName": "Invoke-PnPQuery", + "Command": "Invoke-PnPQuery -RetryCount 5", + "Rank": 1 }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "Id": 876, - "CommandName": "Invoke-PnPSiteDesign" + "CommandName": "Invoke-PnPSiteDesign", + "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\"", - "Rank": 2, "Id": 877, - "CommandName": "Invoke-PnPSiteDesign" + "CommandName": "Invoke-PnPSiteDesign", + "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", - "Rank": 1, "Id": 878, - "CommandName": "Invoke-PnPSiteScript" + "CommandName": "Invoke-PnPSiteScript", + "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", - "Rank": 1, "Id": 879, - "CommandName": "Invoke-PnPSiteSwap" + "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", + "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", - "Rank": 2, "Id": 880, - "CommandName": "Invoke-PnPSiteSwap" + "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", + "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", - "Rank": 3, "Id": 881, - "CommandName": "Invoke-PnPSiteSwap" + "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", + "Rank": 3 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Rank": 1, "Id": 882, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "Rank": 1 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Rank": 2, "Id": 883, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "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\"}", - "Rank": 3, "Id": 884, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Rank": 3 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Rank": 4, "Id": 885, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "Rank": 4 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Rank": 5, "Id": 886, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "Rank": 5 }, { - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Rank": 6, "Id": 887, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "Rank": 6 }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Rank": 7, "Id": 888, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "Rank": 7 }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Rank": 8, "Id": 889, - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "Rank": 8 }, { - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Rank": 1, "Id": 890, - "CommandName": "Invoke-PnPSPRestMethod" + "CommandName": "Invoke-PnPSPRestMethod", + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "Rank": 1 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Rank": 1, "Id": 891, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "Rank": 1 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Rank": 2, "Id": 892, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "Rank": 2 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3, "Id": 893, - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Rank": 3 }, { - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Rank": 1, "Id": 894, - "CommandName": "Invoke-PnPWebAction" + "CommandName": "Invoke-PnPWebAction", + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "Rank": 1 }, { - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Rank": 2, "Id": 895, - "CommandName": "Invoke-PnPWebAction" + "CommandName": "Invoke-PnPWebAction", + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "Rank": 2 }, { - "Command": "Measure-PnPList \"Documents\"", - "Rank": 1, "Id": 896, - "CommandName": "Measure-PnPList" + "CommandName": "Measure-PnPList", + "Command": "Measure-PnPList \"Documents\"", + "Rank": 1 }, { - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Rank": 2, "Id": 897, - "CommandName": "Measure-PnPList" + "CommandName": "Measure-PnPList", + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "Rank": 2 }, { - "Command": "Measure-PnPWeb", - "Rank": 1, "Id": 898, - "CommandName": "Measure-PnPWeb" + "CommandName": "Measure-PnPWeb", + "Command": "Measure-PnPWeb", + "Rank": 1 }, { - "Command": "Measure-PnPWeb $web -Recursive", - "Rank": 2, "Id": 899, - "CommandName": "Measure-PnPWeb" + "CommandName": "Measure-PnPWeb", + "Command": "Measure-PnPWeb $web -Recursive", + "Rank": 2 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Rank": 1, "Id": 900, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "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", - "Rank": 2, "Id": 901, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "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", - "Rank": 3, "Id": 902, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "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", - "Rank": 4, "Id": 903, - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "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'", - "Rank": 1, "Id": 904, - "CommandName": "Move-PnPFolder" + "CommandName": "Move-PnPFolder", + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "Rank": 1 }, { - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Rank": 2, "Id": 905, - "CommandName": "Move-PnPFolder" + "CommandName": "Move-PnPFolder", + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "Rank": 2 }, { - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, "Id": 906, - "CommandName": "Move-PnPListItemToRecycleBin" + "CommandName": "Move-PnPListItemToRecycleBin", + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "Rank": 1 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Rank": 1, "Id": 907, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "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", - "Rank": 2, "Id": 908, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "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", - "Rank": 3, "Id": 909, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "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", - "Rank": 4, "Id": 910, - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "Rank": 4 }, { - "Command": "Move-PnPRecycleBinItem", - "Rank": 1, "Id": 911, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Command": "Move-PnPRecycleBinItem", + "Rank": 1 }, { - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Rank": 2, "Id": 912, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "Rank": 2 }, { - "Command": "Move-PnPRecycleBinItem -Force", - "Rank": 3, "Id": 913, - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "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", - "Rank": 1, "Id": 914, - "CommandName": "Move-PnPTerm" + "CommandName": "Move-PnPTerm", + "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\"", - "Rank": 2, "Id": 915, - "CommandName": "Move-PnPTerm" + "CommandName": "Move-PnPTerm", + "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", - "Rank": 3, "Id": 916, - "CommandName": "Move-PnPTerm" + "CommandName": "Move-PnPTerm", + "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", - "Rank": 1, "Id": 917, - "CommandName": "Move-PnPTermSet" + "CommandName": "Move-PnPTermSet", + "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\"", - "Rank": 2, "Id": 918, - "CommandName": "Move-PnPTermSet" + "CommandName": "Move-PnPTermSet", + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "Rank": 2 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, "Id": 919, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "Rank": 1 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Rank": 2, "Id": 920, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "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", - "Rank": 3, "Id": 921, - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "Rank": 3 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Rank": 1, "Id": 922, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "Rank": 1 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Rank": 2, "Id": 923, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "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", - "Rank": 3, "Id": 924, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "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", - "Rank": 1, "Id": 925, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "Rank": 1 }, { - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Rank": 2, "Id": 926, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "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)", - "Rank": 3, "Id": 927, - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "Rank": 3 }, { - "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, "Id": 928, - "CommandName": "New-PnPGraphSubscription" + "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()", + "Rank": 1 }, { - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", - "Rank": 2, "Id": 929, - "CommandName": "New-PnPGraphSubscription" + "CommandName": "New-PnPGraphSubscription", + "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\"", - "Rank": 1, "Id": 930, - "CommandName": "New-PnPGroup" + "CommandName": "New-PnPGroup", + "Command": "New-PnPGroup -Title \"My Site Users\"", + "Rank": 1 }, { - "Command": "New-PnPList -Title Announcements -Template Announcements", - "Rank": 1, "Id": 931, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Command": "New-PnPList -Title Announcements -Template Announcements", + "Rank": 1 }, { - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Rank": 2, "Id": 932, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "Rank": 2 }, { - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Rank": 3, "Id": 933, - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "Rank": 3 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, "Id": 934, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "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\"", - "Rank": 2, "Id": 935, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "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", - "Rank": 3, "Id": 936, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "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", - "Rank": 4, "Id": 937, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "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", - "Rank": 5, "Id": 938, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "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\"", - "Rank": 6, "Id": 939, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "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\"\")\"", - "Rank": 7, "Id": 940, - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "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\"}", - "Rank": 1, "Id": 941, - "CommandName": "New-PnPMicrosoft365GroupSettings" + "CommandName": "New-PnPMicrosoft365GroupSettings", + "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\"}", - "Rank": 2, "Id": 942, - "CommandName": "New-PnPMicrosoft365GroupSettings" + "CommandName": "New-PnPMicrosoft365GroupSettings", + "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')", - "Rank": 1, "Id": 943, - "CommandName": "New-PnPPersonalSite" + "CommandName": "New-PnPPersonalSite", + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "Rank": 1 }, { - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Rank": 1, "Id": 944, - "CommandName": "New-PnPPlannerPlan" + "CommandName": "New-PnPPlannerPlan", + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "Rank": 1 }, { - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Rank": 1, "Id": 945, - "CommandName": "New-PnPSdnProvider" + "CommandName": "New-PnPSdnProvider", + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "Rank": 1 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 1, "Id": 946, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "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", - "Rank": 2, "Id": 947, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "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", - "Rank": 3, "Id": 948, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "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\"", - "Rank": 4, "Id": 949, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "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", - "Rank": 5, "Id": 950, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "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", - "Rank": 6, "Id": 951, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "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", - "Rank": 7, "Id": 952, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "Rank": 7 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Rank": 8, "Id": 953, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "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", - "Rank": 9, "Id": 954, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "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", - "Rank": 10, "Id": 955, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "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", - "Rank": 11, "Id": 956, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "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", - "Rank": 12, "Id": 957, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "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\"", - "Rank": 13, "Id": 958, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "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", - "Rank": 14, "Id": 959, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "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", - "Rank": 15, "Id": 960, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "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\"", - "Rank": 16, "Id": 961, - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "Rank": 16 }, { - "Command": "New-PnPSiteCollectionTermStore", - "Rank": 1, "Id": 962, - "CommandName": "New-PnPSiteCollectionTermStore" + "CommandName": "New-PnPSiteCollectionTermStore", + "Command": "New-PnPSiteCollectionTermStore", + "Rank": 1 }, { - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Rank": 1, "Id": 963, - "CommandName": "New-PnPSiteGroup" + "CommandName": "New-PnPSiteGroup", + "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\"", - "Rank": 2, "Id": 964, - "CommandName": "New-PnPSiteGroup" + "CommandName": "New-PnPSiteGroup", + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "Rank": 2 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Rank": 1, "Id": 965, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "Rank": 1 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Rank": 2, "Id": 966, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "Rank": 2 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Rank": 3, "Id": 967, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "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\"", - "Rank": 4, "Id": 968, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "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\"", - "Rank": 5, "Id": 969, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "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\"}", - "Rank": 6, "Id": 970, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "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", - "Rank": 7, "Id": 971, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "Rank": 7 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Rank": 8, "Id": 972, - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "Rank": 8 }, { - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Rank": 1, "Id": 973, - "CommandName": "New-PnPTeamsApp" + "CommandName": "New-PnPTeamsApp", + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "Rank": 1 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Rank": 1, "Id": 974, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "Rank": 1 }, { - "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Rank": 2, "Id": 975, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -GroupId $groupId", + "Rank": 2 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Rank": 3, "Id": 976, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "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", - "Rank": 4, "Id": 977, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "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\"", - "Rank": 5, "Id": 978, - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "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\"", - "Rank": 6, "Id": 979, - "CommandName": "New-PnPTeamsTeam" + "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\"", + "Rank": 6 }, { - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", - "Rank": 1, "Id": 980, - "CommandName": "New-PnPTenantSite" + "CommandName": "New-PnPTenantSite", + "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", - "Rank": 2, "Id": 981, - "CommandName": "New-PnPTenantSite" + "CommandName": "New-PnPTenantSite", + "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\"", - "Rank": 1, "Id": 982, - "CommandName": "New-PnPTerm" + "CommandName": "New-PnPTerm", + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "Rank": 1 }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2, "Id": 983, - "CommandName": "New-PnPTerm" + "CommandName": "New-PnPTerm", + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 2 }, { - "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Rank": 1, "Id": 984, - "CommandName": "New-PnPTermGroup" + "CommandName": "New-PnPTermGroup", + "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "Rank": 1 }, { - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Rank": 1, "Id": 985, - "CommandName": "New-PnPTermLabel" + "CommandName": "New-PnPTermLabel", + "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\"", - "Rank": 1, "Id": 986, - "CommandName": "New-PnPTermSet" + "CommandName": "New-PnPTermSet", + "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\"}", - "Rank": 1, "Id": 987, - "CommandName": "New-PnPUPABulkImportJob" + "CommandName": "New-PnPUPABulkImportJob", + "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", - "Rank": 2, "Id": 988, - "CommandName": "New-PnPUPABulkImportJob" + "CommandName": "New-PnPUPABulkImportJob", + "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", - "Rank": 1, "Id": 989, - "CommandName": "New-PnPUser" + "CommandName": "New-PnPUser", + "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\"", - "Rank": 1, "Id": 990, - "CommandName": "New-PnPWeb" + "CommandName": "New-PnPWeb", + "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", - "Rank": 1, "Id": 991, - "CommandName": "Publish-PnPApp" + "CommandName": "Publish-PnPApp", + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 1 }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Rank": 2, "Id": 992, - "CommandName": "Publish-PnPApp" + "CommandName": "Publish-PnPApp", + "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", - "Rank": 1, "Id": 993, - "CommandName": "Publish-PnPCompanyApp" + "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", + "Rank": 1 }, { - "Command": "Publish-PnPContentType -ContentType 0x0101", - "Rank": 1, "Id": 994, - "CommandName": "Publish-PnPContentType" + "CommandName": "Publish-PnPContentType", + "Command": "Publish-PnPContentType -ContentType 0x0101", + "Rank": 1 }, { - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, "Id": 995, - "CommandName": "Publish-PnPSyntexModel" + "CommandName": "Publish-PnPSyntexModel", + "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", - "Rank": 2, "Id": 996, - "CommandName": "Publish-PnPSyntexModel" + "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", + "Rank": 2 }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Rank": 1, "Id": 997, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Command": "Read-PnPSiteTemplate -Path template.pnp", + "Rank": 1 }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Rank": 2, "Id": 998, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "Rank": 2 }, { - "Command": "Read-PnPSiteTemplate -Xml $xml", - "Rank": 3, "Id": 999, - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Command": "Read-PnPSiteTemplate -Xml $xml", + "Rank": 3 }, { - "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Rank": 1, "Id": 1000, - "CommandName": "Read-PnPTenantTemplate" + "CommandName": "Read-PnPTenantTemplate", + "Command": "Read-PnPTenantTemplate -Path template.pnp", + "Rank": 1 }, { - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Rank": 1, "Id": 1001, - "CommandName": "Register-PnPAppCatalogSite" + "CommandName": "Register-PnPAppCatalogSite", + "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\")", - "Rank": 1, "Id": 1002, - "CommandName": "Register-PnPAzureADApp" + "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\")", + "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\")", - "Rank": 2, "Id": 1003, - "CommandName": "Register-PnPAzureADApp" + "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\")", + "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\")", - "Rank": 3, "Id": 1004, - "CommandName": "Register-PnPAzureADApp" + "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\")", + "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\")", - "Rank": 4, "Id": 1005, - "CommandName": "Register-PnPAzureADApp" + "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\")", + "Rank": 4 }, { - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "Rank": 5, "Id": 1006, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Register-PnPAzureADApp", + "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)", - "Rank": 6, "Id": 1007, - "CommandName": "Register-PnPAzureADApp" + "CommandName": "Register-PnPAzureADApp", + "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", - "Rank": 7, "Id": 1008, - "CommandName": "Register-PnPAzureADApp" + "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", + "Rank": 7 }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1, "Id": 1009, - "CommandName": "Register-PnPHubSite" + "CommandName": "Register-PnPHubSite", + "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\"", - "Rank": 2, "Id": 1010, - "CommandName": "Register-PnPHubSite" + "CommandName": "Register-PnPHubSite", + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "Rank": 2 }, { - "Command": "Register-PnPManagementShellAccess", - "Rank": 1, "Id": 1011, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Command": "Register-PnPManagementShellAccess", + "Rank": 1 }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Rank": 2, "Id": 1012, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "Rank": 2 }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Rank": 3, "Id": 1013, - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "Rank": 3 }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Rank": 1, "Id": 1014, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "Rank": 1 }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Rank": 2, "Id": 1015, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "Rank": 2 }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Rank": 1, "Id": 1016, - "CommandName": "Remove-PnPAlert" + "CommandName": "Remove-PnPAlert", + "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\"", - "Rank": 2, "Id": 1017, - "CommandName": "Remove-PnPAlert" + "CommandName": "Remove-PnPAlert", + "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", - "Rank": 1, "Id": 1018, - "CommandName": "Remove-PnPApp" + "CommandName": "Remove-PnPApp", + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "Id": 1019, - "CommandName": "Remove-PnPApp" + "CommandName": "Remove-PnPApp", + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2 }, { - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, "Id": 1020, - "CommandName": "Remove-PnPApplicationCustomizer" + "CommandName": "Remove-PnPApplicationCustomizer", + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1 }, { - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, "Id": 1021, - "CommandName": "Remove-PnPApplicationCustomizer" + "CommandName": "Remove-PnPApplicationCustomizer", + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Rank": 2 }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Rank": 1, "Id": 1022, - "CommandName": "Remove-PnPAvailableSiteClassification" + "CommandName": "Remove-PnPAvailableSiteClassification", + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "Rank": 1 }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 2, "Id": 1023, - "CommandName": "Remove-PnPAvailableSiteClassification" + "CommandName": "Remove-PnPAvailableSiteClassification", + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Rank": 2 }, { - "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Rank": 1, "Id": 1024, - "CommandName": "Remove-PnPAzureADApp" + "CommandName": "Remove-PnPAzureADApp", + "Command": "Remove-PnPAzureADApp -Identity MyApp", + "Rank": 1 }, { - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 2, "Id": 1025, - "CommandName": "Remove-PnPAzureADApp" + "CommandName": "Remove-PnPAzureADApp", + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 2 }, { - "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Rank": 1, "Id": 1026, - "CommandName": "Remove-PnPAzureADGroup" + "CommandName": "Remove-PnPAzureADGroup", + "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "Rank": 1 }, { - "Command": "Remove-PnPAzureADGroup -Identity $group", - "Rank": 2, "Id": 1027, - "CommandName": "Remove-PnPAzureADGroup" + "CommandName": "Remove-PnPAzureADGroup", + "Command": "Remove-PnPAzureADGroup -Identity $group", + "Rank": 2 }, { - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 1028, - "CommandName": "Remove-PnPAzureADGroupMember" + "CommandName": "Remove-PnPAzureADGroupMember", + "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\"", - "Rank": 1, "Id": 1029, - "CommandName": "Remove-PnPAzureADGroupOwner" + "CommandName": "Remove-PnPAzureADGroupOwner", + "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\"", - "Rank": 1, "Id": 1030, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "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\"", - "Rank": 2, "Id": 1031, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "Rank": 2 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 3, "Id": 1032, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 3 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 4, "Id": 1033, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 4 }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Rank": 1, "Id": 1034, - "CommandName": "Remove-PnPContentType" + "CommandName": "Remove-PnPContentType", + "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "Rank": 1 }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Rank": 2, "Id": 1035, - "CommandName": "Remove-PnPContentType" + "CommandName": "Remove-PnPContentType", + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1, "Id": 1036, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Rank": 1 }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2, "Id": 1037, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Rank": 2 }, { - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Rank": 1, "Id": 1038, - "CommandName": "Remove-PnPContentTypeFromList" + "CommandName": "Remove-PnPContentTypeFromList", + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "Rank": 1 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, "Id": 1039, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, "Id": 1040, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Rank": 2 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Rank": 3, "Id": 1041, - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "Rank": 3 }, { - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, "Id": 1042, - "CommandName": "Remove-PnPDeletedMicrosoft365Group" + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 1 }, { - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 1, "Id": 1043, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 1 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, "Id": 1044, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 2 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Rank": 3, "Id": 1045, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "Rank": 3 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList", - "Rank": 4, "Id": 1046, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -List ProjectList", + "Rank": 4 }, { - "Command": "Remove-PnPEventReceiver", - "Rank": 5, "Id": 1047, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver", + "Rank": 5 }, { - "Command": "Remove-PnPEventReceiver -Scope Site", - "Rank": 6, "Id": 1048, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Scope Site", + "Rank": 6 }, { - "Command": "Remove-PnPEventReceiver -Scope Web", - "Rank": 7, "Id": 1049, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Scope Web", + "Rank": 7 }, { - "Command": "Remove-PnPEventReceiver -Scope All", - "Rank": 8, "Id": 1050, - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Scope All", + "Rank": 8 }, { - "Command": "Remove-PnPField -Identity \"Speakers\"", - "Rank": 1, "Id": 1051, - "CommandName": "Remove-PnPField" + "CommandName": "Remove-PnPField", + "Command": "Remove-PnPField -Identity \"Speakers\"", + "Rank": 1 }, { - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, "Id": 1052, - "CommandName": "Remove-PnPField" + "CommandName": "Remove-PnPField", + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Rank": 2 }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1, "Id": 1053, - "CommandName": "Remove-PnPFieldFromContentType" + "CommandName": "Remove-PnPFieldFromContentType", + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Rank": 1 }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Rank": 2, "Id": 1054, - "CommandName": "Remove-PnPFieldFromContentType" + "CommandName": "Remove-PnPFieldFromContentType", + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "Rank": 2 }, { - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Rank": 1, "Id": 1055, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "Rank": 1 }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Rank": 2, "Id": 1056, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "Rank": 2 }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Rank": 3, "Id": 1057, - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "Rank": 3 }, { - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Rank": 1, "Id": 1058, - "CommandName": "Remove-PnPFileFromSiteTemplate" + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "Rank": 1 }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, "Id": 1059, - "CommandName": "Remove-PnPFileSharingLink" + "CommandName": "Remove-PnPFileSharingLink", + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1 }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Rank": 2, "Id": 1060, - "CommandName": "Remove-PnPFileSharingLink" + "CommandName": "Remove-PnPFileSharingLink", + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, "Id": 1061, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Rank": 1 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 2, "Id": 1062, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Rank": 2 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Rank": 3, "Id": 1063, - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "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", - "Rank": 1, "Id": 1064, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "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", - "Rank": 2, "Id": 1065, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "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", - "Rank": 3, "Id": 1066, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "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", - "Rank": 4, "Id": 1067, - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "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", - "Rank": 1, "Id": 1068, - "CommandName": "Remove-PnPFolder" + "CommandName": "Remove-PnPFolder", + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Rank": 1 }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Rank": 2, "Id": 1069, - "CommandName": "Remove-PnPFolder" + "CommandName": "Remove-PnPFolder", + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "Rank": 2 }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, "Id": 1070, - "CommandName": "Remove-PnPFolderSharingLink" + "CommandName": "Remove-PnPFolderSharingLink", + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1 }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Rank": 2, "Id": 1071, - "CommandName": "Remove-PnPFolderSharingLink" + "CommandName": "Remove-PnPFolderSharingLink", + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Rank": 1, "Id": 1072, - "CommandName": "Remove-PnPGraphSubscription" + "CommandName": "Remove-PnPGraphSubscription", + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "Rank": 1 }, { - "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Rank": 1, "Id": 1073, - "CommandName": "Remove-PnPGroup" + "CommandName": "Remove-PnPGroup", + "Command": "Remove-PnPGroup -Identity \"My Users\"", + "Rank": 1 }, { - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1, "Id": 1074, - "CommandName": "Remove-PnPGroupMember" + "CommandName": "Remove-PnPGroupMember", + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Rank": 1 }, { - "Command": "Remove-PnPHomeSite", - "Rank": 1, "Id": 1075, - "CommandName": "Remove-PnPHomeSite" + "CommandName": "Remove-PnPHomeSite", + "Command": "Remove-PnPHomeSite", + "Rank": 1 }, { - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, "Id": 1076, - "CommandName": "Remove-PnPHubSiteAssociation" + "CommandName": "Remove-PnPHubSiteAssociation", + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "Rank": 1 }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Rank": 1, "Id": 1077, - "CommandName": "Remove-PnPHubToHubAssociation" + "CommandName": "Remove-PnPHubToHubAssociation", + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "Rank": 1 }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Rank": 2, "Id": 1078, - "CommandName": "Remove-PnPHubToHubAssociation" + "CommandName": "Remove-PnPHubToHubAssociation", + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "Rank": 2 }, { - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Rank": 1, "Id": 1079, - "CommandName": "Remove-PnPIndexedProperty" + "CommandName": "Remove-PnPIndexedProperty", + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "Rank": 1 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Rank": 1, "Id": 1080, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "Rank": 1 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Rank": 2, "Id": 1081, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "Rank": 2 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Rank": 3, "Id": 1082, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "Rank": 3 }, { - "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Rank": 4, "Id": 1083, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Scope Site", + "Rank": 4 }, { - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Rank": 5, "Id": 1084, - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "Rank": 5 }, { - "Command": "Remove-PnPKnowledgeHubSite", - "Rank": 1, "Id": 1085, - "CommandName": "Remove-PnPKnowledgeHubSite" + "CommandName": "Remove-PnPKnowledgeHubSite", + "Command": "Remove-PnPKnowledgeHubSite", + "Rank": 1 }, { - "Command": "Remove-PnPList -Identity Announcements", - "Rank": 1, "Id": 1086, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements", + "Rank": 1 }, { - "Command": "Remove-PnPList -Identity Announcements -Force", - "Rank": 2, "Id": 1087, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements -Force", + "Rank": 2 }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Rank": 3, "Id": 1088, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements -Recycle", + "Rank": 3 }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Rank": 4, "Id": 1089, - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "Rank": 4 }, { - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "Id": 1090, - "CommandName": "Remove-PnPListDesign" + "CommandName": "Remove-PnPListDesign", + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1 }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, "Id": 1091, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "Rank": 1 }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Rank": 2, "Id": 1092, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "Rank": 2 }, { - "Command": "Remove-PnPListItem -List \"Demo List\"", - "Rank": 3, "Id": 1093, - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Command": "Remove-PnPListItem -List \"Demo List\"", + "Rank": 3 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Rank": 1, "Id": 1094, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "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", - "Rank": 2, "Id": 1095, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "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", - "Rank": 3, "Id": 1096, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "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", - "Rank": 4, "Id": 1097, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "Rank": 4 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Rank": 5, "Id": 1098, - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "Rank": 5 }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, "Id": 1099, - "CommandName": "Remove-PnPListItemVersion" + "CommandName": "Remove-PnPListItemVersion", + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Rank": 1 }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, "Id": 1100, - "CommandName": "Remove-PnPListItemVersion" + "CommandName": "Remove-PnPListItemVersion", + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Rank": 2 }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Rank": 1, "Id": 1101, - "CommandName": "Remove-PnPMicrosoft365Group" + "CommandName": "Remove-PnPMicrosoft365Group", + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "Rank": 1 }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Rank": 2, "Id": 1102, - "CommandName": "Remove-PnPMicrosoft365Group" + "CommandName": "Remove-PnPMicrosoft365Group", + "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "Rank": 2 }, { - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 1103, - "CommandName": "Remove-PnPMicrosoft365GroupMember" + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "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\"", - "Rank": 1, "Id": 1104, - "CommandName": "Remove-PnPMicrosoft365GroupOwner" + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Rank": 1, "Id": 1105, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "Rank": 1 }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Rank": 2, "Id": 1106, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "Rank": 2 }, { - "Command": "Remove-PnPNavigationNode -Identity 1032", - "Rank": 1, "Id": 1107, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Command": "Remove-PnPNavigationNode -Identity 1032", + "Rank": 1 }, { - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Rank": 2, "Id": 1108, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "Rank": 2 }, { - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Rank": 3, "Id": 1109, - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "Rank": 3 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Rank": 1, "Id": 1110, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "Rank": 1 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Rank": 2, "Id": 1111, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "Rank": 2 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Rank": 3, "Id": 1112, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "Rank": 3 }, { - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, "Id": 1113, - "CommandName": "Remove-PnPOrgNewsSite" + "CommandName": "Remove-PnPOrgNewsSite", + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "Rank": 1 }, { - "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Rank": 1, "Id": 1114, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage -Identity \"MyPage\"", + "Rank": 1 }, { - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Rank": 2, "Id": 1115, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "Rank": 2 }, { - "Command": "Remove-PnPPage $page", - "Rank": 3, "Id": 1116, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage $page", + "Rank": 3 }, { - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Rank": 4, "Id": 1117, - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "Rank": 4 }, { - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, "Id": 1118, - "CommandName": "Remove-PnPPageComponent" + "CommandName": "Remove-PnPPageComponent", + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1 }, { - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Rank": 1, "Id": 1119, - "CommandName": "Remove-PnPPlannerBucket" + "CommandName": "Remove-PnPPlannerBucket", + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "Rank": 1 }, { - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Rank": 1, "Id": 1120, - "CommandName": "Remove-PnPPlannerPlan" + "CommandName": "Remove-PnPPlannerPlan", + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "Rank": 1 }, { - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, "Id": 1121, - "CommandName": "Remove-PnPPlannerRoster" + "CommandName": "Remove-PnPPlannerRoster", + "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\"", - "Rank": 1, "Id": 1122, - "CommandName": "Remove-PnPPlannerRosterMember" + "CommandName": "Remove-PnPPlannerRosterMember", + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Rank": 1, "Id": 1123, - "CommandName": "Remove-PnPPlannerTask" + "CommandName": "Remove-PnPPlannerTask", + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "Rank": 1 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Rank": 1, "Id": 1124, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "Rank": 1 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Rank": 2, "Id": 1125, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "Rank": 2 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Rank": 3, "Id": 1126, - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "Rank": 3 }, { - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1, "Id": 1127, - "CommandName": "Remove-PnPPublishingImageRendition" + "CommandName": "Remove-PnPPublishingImageRendition", + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Rank": 1 }, { - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Rank": 1, "Id": 1128, - "CommandName": "Remove-PnPRoleDefinition" + "CommandName": "Remove-PnPRoleDefinition", + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "Rank": 1 }, { - "Command": "Remove-PnPSdnProvider -Confirm:false", - "Rank": 1, "Id": 1129, - "CommandName": "Remove-PnPSdnProvider" + "CommandName": "Remove-PnPSdnProvider", + "Command": "Remove-PnPSdnProvider -Confirm:false", + "Rank": 1 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Rank": 1, "Id": 1130, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "Rank": 1 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, "Id": 1131, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "Rank": 2 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, "Id": 1132, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Rank": 3 }, { - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, "Id": 1133, - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4 }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 1134, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, "Id": 1135, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 2 }, { - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 1, "Id": 1136, - "CommandName": "Remove-PnPSiteCollectionAppCatalog" + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Rank": 1 }, { - "Command": "Remove-PnPSiteCollectionTermStore", - "Rank": 1, "Id": 1137, - "CommandName": "Remove-PnPSiteCollectionTermStore" + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Command": "Remove-PnPSiteCollectionTermStore", + "Rank": 1 }, { - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "Id": 1138, - "CommandName": "Remove-PnPSiteDesign" + "CommandName": "Remove-PnPSiteDesign", + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1 }, { - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "Id": 1139, - "CommandName": "Remove-PnPSiteDesignTask" + "CommandName": "Remove-PnPSiteDesignTask", + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1 }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, "Id": 1140, - "CommandName": "Remove-PnPSiteGroup" + "CommandName": "Remove-PnPSiteGroup", + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1 }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Rank": 2, "Id": 1141, - "CommandName": "Remove-PnPSiteGroup" + "CommandName": "Remove-PnPSiteGroup", + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "Rank": 2 }, { - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, "Id": 1142, - "CommandName": "Remove-PnPSiteScript" + "CommandName": "Remove-PnPSiteScript", + "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", - "Rank": 1, "Id": 1143, - "CommandName": "Remove-PnPSiteUserInvitations" + "CommandName": "Remove-PnPSiteUserInvitations", + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Rank": 1 }, { - "Command": "Remove-PnPStorageEntity -Key MyKey", - "Rank": 1, "Id": 1144, - "CommandName": "Remove-PnPStorageEntity" + "CommandName": "Remove-PnPStorageEntity", + "Command": "Remove-PnPStorageEntity -Key MyKey", + "Rank": 1 }, { - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 2, "Id": 1145, - "CommandName": "Remove-PnPStorageEntity" + "CommandName": "Remove-PnPStorageEntity", + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "Rank": 2 }, { - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Rank": 1, "Id": 1146, - "CommandName": "Remove-PnPStoredCredential" + "CommandName": "Remove-PnPStoredCredential", + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "Rank": 1 }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Rank": 1, "Id": 1147, - "CommandName": "Remove-PnPTaxonomyItem" + "CommandName": "Remove-PnPTaxonomyItem", + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "Rank": 1 }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Rank": 2, "Id": 1148, - "CommandName": "Remove-PnPTaxonomyItem" + "CommandName": "Remove-PnPTaxonomyItem", + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Rank": 1, "Id": 1149, - "CommandName": "Remove-PnPTeamsApp" + "CommandName": "Remove-PnPTeamsApp", + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "Rank": 1 }, { - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Rank": 2, "Id": 1150, - "CommandName": "Remove-PnPTeamsApp" + "CommandName": "Remove-PnPTeamsApp", + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "Rank": 2 }, { - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Rank": 1, "Id": 1151, - "CommandName": "Remove-PnPTeamsChannel" + "CommandName": "Remove-PnPTeamsChannel", + "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==", - "Rank": 1, "Id": 1152, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "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", - "Rank": 2, "Id": 1153, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "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", - "Rank": 3, "Id": 1154, - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "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", - "Rank": 1, "Id": 1155, - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsTab", + "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", - "Rank": 2, "Id": 1156, - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsTab", + "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", - "Rank": 3, "Id": 1157, - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsTab", + "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==\"", - "Rank": 1, "Id": 1158, - "CommandName": "Remove-PnPTeamsTag" + "CommandName": "Remove-PnPTeamsTag", + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Rank": 1 }, { - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, "Id": 1159, - "CommandName": "Remove-PnPTeamsTeam" + "CommandName": "Remove-PnPTeamsTeam", + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Rank": 1 }, { - "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Rank": 2, "Id": 1160, - "CommandName": "Remove-PnPTeamsTeam" + "CommandName": "Remove-PnPTeamsTeam", + "Command": "Remove-PnPTeamsTeam -Identity testteam", + "Rank": 2 }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Rank": 1, "Id": 1161, - "CommandName": "Remove-PnPTeamsUser" + "CommandName": "Remove-PnPTeamsUser", + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "Rank": 1 }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 2, "Id": 1162, - "CommandName": "Remove-PnPTeamsUser" + "CommandName": "Remove-PnPTeamsUser", + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 2 }, { - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1, "Id": 1163, - "CommandName": "Remove-PnPTenantCdnOrigin" + "CommandName": "Remove-PnPTenantCdnOrigin", + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Rank": 1 }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "Id": 1164, - "CommandName": "Remove-PnPTenantDeletedSite" + "CommandName": "Remove-PnPTenantDeletedSite", + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1 }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, "Id": 1165, - "CommandName": "Remove-PnPTenantDeletedSite" + "CommandName": "Remove-PnPTenantDeletedSite", + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Rank": 2 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "Id": 1166, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Rank": 2, "Id": 1167, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "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", - "Rank": 3, "Id": 1168, - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "Rank": 3 }, { - "Command": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1, "Id": 1169, - "CommandName": "Remove-PnPTenantSyncClientRestriction" + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Command": "Remove-PnPTenantSyncClientRestriction", + "Rank": 1 }, { - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 1, "Id": 1170, - "CommandName": "Remove-PnPTenantTheme" + "CommandName": "Remove-PnPTenantTheme", + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Rank": 1 }, { - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, "Id": 1171, - "CommandName": "Remove-PnPTerm" + "CommandName": "Remove-PnPTerm", + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Rank": 1 }, { - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, "Id": 1172, - "CommandName": "Remove-PnPTerm" + "CommandName": "Remove-PnPTerm", + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2 }, { - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, "Id": 1173, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Rank": 1 }, { - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Rank": 2, "Id": 1174, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "Rank": 2 }, { - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Rank": 3, "Id": 1175, - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "Rank": 3 }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Rank": 1, "Id": 1176, - "CommandName": "Remove-PnPTermLabel" + "CommandName": "Remove-PnPTermLabel", + "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\"", - "Rank": 2, "Id": 1177, - "CommandName": "Remove-PnPTermLabel" + "CommandName": "Remove-PnPTermLabel", + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2 }, { - "Command": "Remove-PnPUser -Identity 23", - "Rank": 1, "Id": 1178, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Command": "Remove-PnPUser -Identity 23", + "Rank": 1 }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Rank": 2, "Id": 1179, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "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", - "Rank": 3, "Id": 1180, - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "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\"", - "Rank": 1, "Id": 1181, - "CommandName": "Remove-PnPUserInfo" + "CommandName": "Remove-PnPUserInfo", + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Rank": 1 }, { - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Rank": 1, "Id": 1182, - "CommandName": "Remove-PnPUserProfile" + "CommandName": "Remove-PnPUserProfile", + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "Rank": 1 }, { - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Rank": 1, "Id": 1183, - "CommandName": "Remove-PnPView" + "CommandName": "Remove-PnPView", + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "Rank": 1 }, { - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 1, "Id": 1184, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE" + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Rank": 1 }, { - "Command": "Remove-PnPWeb -Identity projectA", - "Rank": 1, "Id": 1185, - "CommandName": "Remove-PnPWeb" + "CommandName": "Remove-PnPWeb", + "Command": "Remove-PnPWeb -Identity projectA", + "Rank": 1 }, { - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Rank": 2, "Id": 1186, - "CommandName": "Remove-PnPWeb" + "CommandName": "Remove-PnPWeb", + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "Rank": 2 }, { - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Rank": 1, "Id": 1187, - "CommandName": "Remove-PnPWebhookSubscription" + "CommandName": "Remove-PnPWebhookSubscription", + "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", - "Rank": 1, "Id": 1188, - "CommandName": "Remove-PnPWebPart" + "CommandName": "Remove-PnPWebPart", + "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", - "Rank": 2, "Id": 1189, - "CommandName": "Remove-PnPWebPart" + "CommandName": "Remove-PnPWebPart", + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "Rank": 2 }, { - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Rank": 1, "Id": 1190, - "CommandName": "Remove-PnPWikiPage" + "CommandName": "Remove-PnPWikiPage", + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "Rank": 1 }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Rank": 1, "Id": 1191, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "Rank": 1 }, { - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Rank": 2, "Id": 1192, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "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", - "Rank": 3, "Id": 1193, - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "Rank": 3 }, { - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Rank": 1, "Id": 1194, - "CommandName": "Rename-PnPFolder" + "CommandName": "Rename-PnPFolder", + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "Rank": 1 }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, "Id": 1195, - "CommandName": "Repair-PnPSite" + "CommandName": "Repair-PnPSite", + "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\"", - "Rank": 2, "Id": 1196, - "CommandName": "Repair-PnPSite" + "CommandName": "Repair-PnPSite", + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Rank": 2 }, { - "Command": "Request-PnPAccessToken", - "Rank": 1, "Id": 1197, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Command": "Request-PnPAccessToken", + "Rank": 1 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Rank": 2, "Id": 1198, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "Rank": 2 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Rank": 3, "Id": 1199, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "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", - "Rank": 4, "Id": 1200, - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "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\")", - "Rank": 1, "Id": 1201, - "CommandName": "Request-PnPPersonalSite" + "CommandName": "Request-PnPPersonalSite", + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "Rank": 1 }, { - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Rank": 2, "Id": 1202, - "CommandName": "Request-PnPPersonalSite" + "CommandName": "Request-PnPPersonalSite", + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "Rank": 2 }, { - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Rank": 1, "Id": 1203, - "CommandName": "Request-PnPReIndexList" + "CommandName": "Request-PnPReIndexList", + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "Rank": 1 }, { - "Command": "Request-PnPReIndexWeb", - "Rank": 1, "Id": 1204, - "CommandName": "Request-PnPReIndexWeb" + "CommandName": "Request-PnPReIndexWeb", + "Command": "Request-PnPReIndexWeb", + "Rank": 1 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Rank": 1, "Id": 1205, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "Rank": 1 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Rank": 2, "Id": 1206, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "Rank": 2 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Rank": 3, "Id": 1207, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "Rank": 3 }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Rank": 1, "Id": 1208, - "CommandName": "Reset-PnPFileVersion" + "CommandName": "Reset-PnPFileVersion", + "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\"", - "Rank": 2, "Id": 1209, - "CommandName": "Reset-PnPFileVersion" + "CommandName": "Reset-PnPFileVersion", + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "Rank": 2 }, { - "Command": "Reset-PnPLabel -List \"Demo List\"", - "Rank": 1, "Id": 1210, - "CommandName": "Reset-PnPLabel" + "CommandName": "Reset-PnPLabel", + "Command": "Reset-PnPLabel -List \"Demo List\"", + "Rank": 1 }, { - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Rank": 2, "Id": 1211, - "CommandName": "Reset-PnPLabel" + "CommandName": "Reset-PnPLabel", + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "Rank": 2 }, { - "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1, "Id": 1212, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration" + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Command": "Reset-PnPMicrosoft365GroupExpiration", + "Rank": 1 }, { - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Rank": 1, "Id": 1213, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "Rank": 1 }, { - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Rank": 1, "Id": 1214, - "CommandName": "Resolve-PnPFolder" + "CommandName": "Resolve-PnPFolder", + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "Rank": 1 }, { - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, "Id": 1215, - "CommandName": "Restore-PnPDeletedMicrosoft365Group" + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 1 }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, "Id": 1216, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Rank": 1 }, { - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Rank": 2, "Id": 1217, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "Rank": 2 }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 3, "Id": 1218, - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Rank": 3 }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, "Id": 1219, - "CommandName": "Restore-PnPListItemVersion" + "CommandName": "Restore-PnPListItemVersion", + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Rank": 1 }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, "Id": 1220, - "CommandName": "Restore-PnPListItemVersion" + "CommandName": "Restore-PnPListItemVersion", + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Rank": 2 }, { - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, "Id": 1221, - "CommandName": "Restore-PnPRecycleBinItem" + "CommandName": "Restore-PnPRecycleBinItem", + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1 }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "Id": 1222, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1 }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2, "Id": 1223, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Rank": 2 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, "Id": 1224, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, "Id": 1225, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "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", - "Rank": 3, "Id": 1226, - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "Rank": 3 }, { - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Rank": 1, "Id": 1227, - "CommandName": "Revoke-PnPAzureADAppSitePermission" + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "Rank": 1 }, { - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, "Id": 1228, - "CommandName": "Revoke-PnPHubSiteRights" + "CommandName": "Revoke-PnPHubSiteRights", + "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\"", - "Rank": 1, "Id": 1229, - "CommandName": "Revoke-PnPSiteDesignRights" + "CommandName": "Revoke-PnPSiteDesignRights", + "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\"", - "Rank": 1, "Id": 1230, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission" + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Rank": 1 }, { - "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Rank": 1, "Id": 1231, - "CommandName": "Revoke-PnPUserSession" + "CommandName": "Revoke-PnPUserSession", + "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "Rank": 1 }, { - "Command": "Save-PnPPageConversionLog", - "Rank": 1, "Id": 1232, - "CommandName": "Save-PnPPageConversionLog" + "CommandName": "Save-PnPPageConversionLog", + "Command": "Save-PnPPageConversionLog", + "Rank": 1 }, { - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Rank": 1, "Id": 1233, - "CommandName": "Save-PnPSiteTemplate" + "CommandName": "Save-PnPSiteTemplate", + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "Rank": 1 }, { - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Rank": 1, "Id": 1234, - "CommandName": "Save-PnPTenantTemplate" + "CommandName": "Save-PnPTenantTemplate", + "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\"", - "Rank": 1, "Id": 1235, - "CommandName": "Send-PnPMail" + "CommandName": "Send-PnPMail", + "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", - "Rank": 2, "Id": 1236, - "CommandName": "Send-PnPMail" + "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", + "Rank": 2 }, { - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Rank": 3, "Id": 1237, - "CommandName": "Send-PnPMail" + "CommandName": "Send-PnPMail", + "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", - "Rank": 4, "Id": 1238, - "CommandName": "Send-PnPMail" + "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", + "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", - "Rank": 5, "Id": 1239, - "CommandName": "Send-PnPMail" + "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", + "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\"", - "Rank": 6, "Id": 1240, - "CommandName": "Send-PnPMail" + "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\"", + "Rank": 6 }, { - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Rank": 1, "Id": 1241, - "CommandName": "Set-PnPAdaptiveScopeProperty" + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "Rank": 1 }, { - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, "Id": 1242, - "CommandName": "Set-PnPApplicationCustomizer" + "CommandName": "Set-PnPApplicationCustomizer", + "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`\"}\"", - "Rank": 2, "Id": 1243, - "CommandName": "Set-PnPApplicationCustomizer" + "CommandName": "Set-PnPApplicationCustomizer", + "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", - "Rank": 1, "Id": 1244, - "CommandName": "Set-PnPAppSideLoading" + "CommandName": "Set-PnPAppSideLoading", + "Command": "Set-PnPAppSideLoading -On", + "Rank": 1 }, { - "Command": "Set-PnPAppSideLoading -Off", - "Rank": 2, "Id": 1245, - "CommandName": "Set-PnPAppSideLoading" + "CommandName": "Set-PnPAppSideLoading", + "Command": "Set-PnPAppSideLoading -Off", + "Rank": 2 }, { - "Command": "Set-PnPAuditing -EnableAll", - "Rank": 1, "Id": 1246, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -EnableAll", + "Rank": 1 }, { - "Command": "Set-PnPAuditing -DisableAll", - "Rank": 2, "Id": 1247, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -DisableAll", + "Rank": 2 }, { - "Command": "Set-PnPAuditing -RetentionTime 7", - "Rank": 3, "Id": 1248, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -RetentionTime 7", + "Rank": 3 }, { - "Command": "Set-PnPAuditing -TrimAuditLog", - "Rank": 4, "Id": 1249, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -TrimAuditLog", + "Rank": 4 }, { - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Rank": 5, "Id": 1250, - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "Rank": 5 }, { - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Rank": 1, "Id": 1251, - "CommandName": "Set-PnPAvailablePageLayouts" + "CommandName": "Set-PnPAvailablePageLayouts", + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "Rank": 1 }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Rank": 1, "Id": 1252, - "CommandName": "Set-PnPAzureADAppSitePermission" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "Rank": 1 }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Rank": 2, "Id": 1253, - "CommandName": "Set-PnPAzureADAppSitePermission" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "Rank": 2 }, { - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, "Id": 1254, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "Rank": 1 }, { - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, "Id": 1255, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Rank": 2 }, { - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Rank": 3, "Id": 1256, - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "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\"", - "Rank": 1, "Id": 1257, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "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)", - "Rank": 2, "Id": 1258, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "Rank": 2 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Rank": 3, "Id": 1259, - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "Rank": 3 }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Rank": 1, "Id": 1260, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "Rank": 1 }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Rank": 2, "Id": 1261, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "Rank": 2 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Rank": 1, "Id": 1262, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "Rank": 1 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Rank": 2, "Id": 1263, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "Rank": 2 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Rank": 3, "Id": 1264, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "Rank": 3 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Rank": 4, "Id": 1265, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "Rank": 4 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 1, "Id": 1266, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "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", - "Rank": 2, "Id": 1267, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "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\"", - "Rank": 3, "Id": 1268, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "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\" }'", - "Rank": 4, "Id": 1269, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "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\" }'", - "Rank": 5, "Id": 1270, - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "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\"", - "Rank": 1, "Id": 1271, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "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\"", - "Rank": 2, "Id": 1272, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "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\"", - "Rank": 3, "Id": 1273, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "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\"", - "Rank": 4, "Id": 1274, - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "Rank": 4 }, { - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Rank": 1, "Id": 1275, - "CommandName": "Set-PnPDefaultContentTypeToList" + "CommandName": "Set-PnPDefaultContentTypeToList", + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "Rank": 1 }, { - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Rank": 1, "Id": 1276, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "Rank": 1 }, { - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Rank": 2, "Id": 1277, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "Rank": 2 }, { - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Rank": 3, "Id": 1278, - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "Rank": 3 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Rank": 1, "Id": 1279, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "Rank": 1 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 2, "Id": 1280, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "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\"", - "Rank": 3, "Id": 1281, - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "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", - "Rank": 1, "Id": 1282, - "CommandName": "Set-PnPDocumentSetField" + "CommandName": "Set-PnPDocumentSetField", + "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", - "Rank": 2, "Id": 1283, - "CommandName": "Set-PnPDocumentSetField" + "CommandName": "Set-PnPDocumentSetField", + "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\"}", - "Rank": 1, "Id": 1284, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "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", - "Rank": 2, "Id": 1285, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "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\"}", - "Rank": 3, "Id": 1286, - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "Rank": 3 }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Rank": 1, "Id": 1287, - "CommandName": "Set-PnPFileCheckedIn" + "CommandName": "Set-PnPFileCheckedIn", + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "Rank": 1 }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Rank": 2, "Id": 1288, - "CommandName": "Set-PnPFileCheckedIn" + "CommandName": "Set-PnPFileCheckedIn", + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "Rank": 2 }, { - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Rank": 1, "Id": 1289, - "CommandName": "Set-PnPFileCheckedOut" + "CommandName": "Set-PnPFileCheckedOut", + "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'", - "Rank": 1, "Id": 1290, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "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'", - "Rank": 2, "Id": 1291, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "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", - "Rank": 3, "Id": 1292, - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Rank": 3 }, { - "Command": "Set-PnPFooter -Enabled:$true", - "Rank": 1, "Id": 1293, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -Enabled:$true", + "Rank": 1 }, { - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Rank": 2, "Id": 1294, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "Rank": 2 }, { - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Rank": 3, "Id": 1295, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "Rank": 3 }, { - "Command": "Set-PnPFooter -LogoUrl \"\"", - "Rank": 4, "Id": 1296, - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -LogoUrl \"\"", + "Rank": 4 }, { - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Rank": 1, "Id": 1297, - "CommandName": "Set-PnPGraphSubscription" + "CommandName": "Set-PnPGraphSubscription", + "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", - "Rank": 1, "Id": 1298, - "CommandName": "Set-PnPGroup" + "CommandName": "Set-PnPGroup", + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "Rank": 1 }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Rank": 2, "Id": 1299, - "CommandName": "Set-PnPGroup" + "CommandName": "Set-PnPGroup", + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "Rank": 2 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Rank": 1, "Id": 1300, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "Rank": 1 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Rank": 2, "Id": 1301, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "Rank": 2 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Rank": 3, "Id": 1302, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "Rank": 3 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Rank": 4, "Id": 1303, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "Rank": 4 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Rank": 5, "Id": 1304, - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "Rank": 5 }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Rank": 1, "Id": 1305, - "CommandName": "Set-PnPHideDefaultThemes" + "CommandName": "Set-PnPHideDefaultThemes", + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "Rank": 1 }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Rank": 2, "Id": 1306, - "CommandName": "Set-PnPHideDefaultThemes" + "CommandName": "Set-PnPHideDefaultThemes", + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "Rank": 2 }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Rank": 1, "Id": 1307, - "CommandName": "Set-PnPHomePage" + "CommandName": "Set-PnPHomePage", + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "Rank": 1 }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Rank": 2, "Id": 1308, - "CommandName": "Set-PnPHomePage" + "CommandName": "Set-PnPHomePage", + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "Rank": 2 }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Rank": 1, "Id": 1309, - "CommandName": "Set-PnPHomeSite" + "CommandName": "Set-PnPHomeSite", + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "Rank": 1 }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Rank": 2, "Id": 1310, - "CommandName": "Set-PnPHomeSite" + "CommandName": "Set-PnPHomeSite", + "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\"", - "Rank": 1, "Id": 1311, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "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\"", - "Rank": 2, "Id": 1312, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "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", - "Rank": 3, "Id": 1313, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "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\"", - "Rank": 4, "Id": 1314, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "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", - "Rank": 5, "Id": 1315, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "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", - "Rank": 6, "Id": 1316, - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "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\"", - "Rank": 1, "Id": 1317, - "CommandName": "Set-PnPImageListItemColumn" + "CommandName": "Set-PnPImageListItemColumn", + "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", - "Rank": 2, "Id": 1318, - "CommandName": "Set-PnPImageListItemColumn" + "CommandName": "Set-PnPImageListItemColumn", + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "Rank": 2 }, { - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Rank": 1, "Id": 1319, - "CommandName": "Set-PnPIndexedProperties" + "CommandName": "Set-PnPIndexedProperties", + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "Rank": 1 }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Rank": 1, "Id": 1320, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "Rank": 1 }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Rank": 2, "Id": 1321, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "Rank": 2 }, { - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Rank": 1, "Id": 1322, - "CommandName": "Set-PnPKnowledgeHubSite" + "CommandName": "Set-PnPKnowledgeHubSite", + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "Rank": 1 }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Rank": 1, "Id": 1323, - "CommandName": "Set-PnPLabel" + "CommandName": "Set-PnPLabel", + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "Rank": 1 }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Rank": 2, "Id": 1324, - "CommandName": "Set-PnPLabel" + "CommandName": "Set-PnPLabel", + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "Rank": 2 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Rank": 1, "Id": 1325, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "Rank": 1 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Rank": 2, "Id": 1326, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "Rank": 2 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Rank": 3, "Id": 1327, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "Rank": 3 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Rank": 4, "Id": 1328, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "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", - "Rank": 5, "Id": 1329, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "Rank": 5 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Rank": 6, "Id": 1330, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "Rank": 6 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Rank": 7, "Id": 1331, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "Rank": 7 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Rank": 8, "Id": 1332, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "Rank": 8 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Rank": 9, "Id": 1333, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "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", - "Rank": 10, "Id": 1334, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "Rank": 10 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Rank": 11, "Id": 1335, - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "Rank": 11 }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Rank": 1, "Id": 1336, - "CommandName": "Set-PnPListInformationRightsManagement" + "CommandName": "Set-PnPListInformationRightsManagement", + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "Rank": 1 }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Rank": 2, "Id": 1337, - "CommandName": "Set-PnPListInformationRightsManagement" + "CommandName": "Set-PnPListInformationRightsManagement", + "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\"}", - "Rank": 1, "Id": 1338, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "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\"}", - "Rank": 2, "Id": 1339, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "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\"}", - "Rank": 3, "Id": 1340, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "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\"", - "Rank": 4, "Id": 1341, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "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", - "Rank": 5, "Id": 1342, - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "Rank": 5 }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, "Id": 1343, - "CommandName": "Set-PnPListItemAsRecord" + "CommandName": "Set-PnPListItemAsRecord", + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1 }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Rank": 2, "Id": 1344, - "CommandName": "Set-PnPListItemAsRecord" + "CommandName": "Set-PnPListItemAsRecord", + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "Rank": 2 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, "Id": 1345, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "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'", - "Rank": 2, "Id": 1346, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "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", - "Rank": 3, "Id": 1347, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Rank": 3 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Rank": 4, "Id": 1348, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "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\"", - "Rank": 5, "Id": 1349, - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "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'", - "Rank": 1, "Id": 1350, - "CommandName": "Set-PnPListPermission" + "CommandName": "Set-PnPListPermission", + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1 }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, "Id": 1351, - "CommandName": "Set-PnPListPermission" + "CommandName": "Set-PnPListPermission", + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2 }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Rank": 1, "Id": 1352, - "CommandName": "Set-PnPListRecordDeclaration" + "CommandName": "Set-PnPListRecordDeclaration", + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "Rank": 1 }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Rank": 2, "Id": 1353, - "CommandName": "Set-PnPListRecordDeclaration" + "CommandName": "Set-PnPListRecordDeclaration", + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "Rank": 2 }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 1, "Id": 1354, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "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", - "Rank": 2, "Id": 1355, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "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", - "Rank": 3, "Id": 1356, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Rank": 3 }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 4, "Id": 1357, - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Rank": 4 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Rank": 1, "Id": 1358, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "Id": 1359, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3, "Id": 1360, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Rank": 1, "Id": 1361, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "Id": 1362, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3, "Id": 1363, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Rank": 1, "Id": 1364, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "Id": 1365, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3, "Id": 1366, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Rank": 1, "Id": 1367, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "Id": 1368, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3, "Id": 1369, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Rank": 1, "Id": 1370, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "Id": 1371, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3, "Id": 1372, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Rank": 1, "Id": 1373, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "Rank": 1 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, "Id": 1374, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "Rank": 2 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3, "Id": 1375, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, "Id": 1376, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "Rank": 1 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, "Id": 1377, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Rank": 2 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Rank": 3, "Id": 1378, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "Rank": 3 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Rank": 4, "Id": 1379, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "Rank": 4 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Rank": 5, "Id": 1380, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "Rank": 5 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6, "Id": 1381, - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Rank": 6 }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Rank": 1, "Id": 1382, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "Rank": 1 }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Rank": 2, "Id": 1383, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "Rank": 2 }, { - "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Rank": 1, "Id": 1384, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Command": "Set-PnPMinimalDownloadStrategy -Off", + "Rank": 1 }, { - "Command": "Set-PnPMinimalDownloadStrategy -On", - "Rank": 2, "Id": 1385, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Command": "Set-PnPMinimalDownloadStrategy -On", + "Rank": 2 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Rank": 1, "Id": 1386, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "Rank": 1 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Rank": 2, "Id": 1387, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "Rank": 2 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Rank": 3, "Id": 1388, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "Rank": 3 }, { - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Rank": 4, "Id": 1389, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "Rank": 4 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Rank": 5, "Id": 1390, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "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", - "Rank": 6, "Id": 1391, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "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)", - "Rank": 7, "Id": 1392, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "Rank": 7 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "Rank": 8, "Id": 1393, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "Rank": 8 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, "Id": 1394, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "Rank": 9 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, "Id": 1395, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Rank": 10 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "Rank": 11, "Id": 1396, - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "Rank": 11 }, { - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Rank": 1, "Id": 1397, - "CommandName": "Set-PnPPageTextPart" + "CommandName": "Set-PnPPageTextPart", + "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`\"\"", - "Rank": 1, "Id": 1398, - "CommandName": "Set-PnPPageWebPart" + "CommandName": "Set-PnPPageWebPart", + "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", - "Rank": 2, "Id": 1399, - "CommandName": "Set-PnPPageWebPart" + "CommandName": "Set-PnPPageWebPart", + "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\"", - "Rank": 1, "Id": 1400, - "CommandName": "Set-PnPPlannerBucket" + "CommandName": "Set-PnPPlannerBucket", + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "Rank": 1 }, { - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Rank": 1, "Id": 1401, - "CommandName": "Set-PnPPlannerConfiguration" + "CommandName": "Set-PnPPlannerConfiguration", + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Rank": 1 }, { - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Rank": 2, "Id": 1402, - "CommandName": "Set-PnPPlannerConfiguration" + "CommandName": "Set-PnPPlannerConfiguration", + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "Rank": 2 }, { - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Rank": 1, "Id": 1403, - "CommandName": "Set-PnPPlannerPlan" + "CommandName": "Set-PnPPlannerPlan", + "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", - "Rank": 1, "Id": 1404, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "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\"", - "Rank": 2, "Id": 1405, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "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\"", - "Rank": 3, "Id": 1406, - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Rank": 3 }, { - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, "Id": 1407, - "CommandName": "Set-PnPPlannerUserPolicy" + "CommandName": "Set-PnPPlannerUserPolicy", + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Rank": 1, "Id": 1408, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "Rank": 1 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Rank": 2, "Id": 1409, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "Rank": 2 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Rank": 3, "Id": 1410, - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "Rank": 3 }, { - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Rank": 1, "Id": 1411, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "Rank": 1 }, { - "Command": "Set-PnPRequestAccessEmails -Disabled", - "Rank": 2, "Id": 1412, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Disabled", + "Rank": 2 }, { - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Rank": 3, "Id": 1413, - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "Rank": 3 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Rank": 1, "Id": 1414, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "Rank": 1 }, { - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Rank": 2, "Id": 1415, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "Rank": 2 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Rank": 3, "Id": 1416, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "Rank": 3 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Rank": 4, "Id": 1417, - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "Rank": 4 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Rank": 1, "Id": 1418, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config", + "Rank": 1 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, "Id": 1419, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "Rank": 2 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, "Id": 1420, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Rank": 3 }, { - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, "Id": 1421, - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "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", - "Rank": 1, "Id": 1422, - "CommandName": "Set-PnPSearchExternalItem" + "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", + "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\"", - "Rank": 2, "Id": 1423, - "CommandName": "Set-PnPSearchExternalItem" + "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\"", + "Rank": 2 }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Rank": 1, "Id": 1424, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Rank": 1 }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Rank": 2, "Id": 1425, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "Rank": 2 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Rank": 3, "Id": 1426, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "Rank": 3 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Rank": 4, "Id": 1427, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "Rank": 4 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Rank": 5, "Id": 1428, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "Rank": 5 }, { - "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Rank": 6, "Id": 1429, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "Rank": 6 }, { - "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Rank": 7, "Id": 1430, - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchScope Hub", + "Rank": 7 }, { - "Command": "Set-PnPSite -Classification \"HBI\"", - "Rank": 1, "Id": 1431, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -Classification \"HBI\"", + "Rank": 1 }, { - "Command": "Set-PnPSite -Classification $null", - "Rank": 2, "Id": 1432, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -Classification $null", + "Rank": 2 }, { - "Command": "Set-PnPSite -DisableFlows", - "Rank": 3, "Id": 1433, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -DisableFlows", + "Rank": 3 }, { - "Command": "Set-PnPSite -DisableFlows:$false", - "Rank": 4, "Id": 1434, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -DisableFlows:$false", + "Rank": 4 }, { - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Rank": 5, "Id": 1435, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "Rank": 5 }, { - "Command": "Set-PnPSite -NoScriptSite $false", - "Rank": 6, "Id": 1436, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -NoScriptSite $false", + "Rank": 6 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "Rank": 7, "Id": 1437, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "Rank": 7 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "Rank": 8, "Id": 1438, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "Rank": 8 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "Rank": 9, "Id": 1439, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "Rank": 9 }, { - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "Rank": 10, "Id": 1440, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "Rank": 10 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "Rank": 11, "Id": 1441, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "Rank": 11 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "Rank": 12, "Id": 1442, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "Rank": 12 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "Rank": 13, "Id": 1443, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "Rank": 13 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "Rank": 14, "Id": 1444, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "Rank": 14 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "Rank": 15, "Id": 1445, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "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", - "Rank": 16, "Id": 1446, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "Rank": 16 }, { - "Command": "Set-PnPSite -CancelVPForExistingLibs", - "Rank": 17, "Id": 1447, - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -CancelVPForExistingLibs", + "Rank": 17 }, { - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Rank": 1, "Id": 1448, - "CommandName": "Set-PnPSiteClassification" + "CommandName": "Set-PnPSiteClassification", + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteClosure -State Open", - "Rank": 1, "Id": 1449, - "CommandName": "Set-PnPSiteClosure" + "CommandName": "Set-PnPSiteClosure", + "Command": "Set-PnPSiteClosure -State Open", + "Rank": 1 }, { - "Command": "Set-PnPSiteClosure -State Closed", - "Rank": 2, "Id": 1450, - "CommandName": "Set-PnPSiteClosure" + "CommandName": "Set-PnPSiteClosure", + "Command": "Set-PnPSiteClosure -State Closed", + "Rank": 2 }, { - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Rank": 1, "Id": 1451, - "CommandName": "Set-PnPSiteDesign" + "CommandName": "Set-PnPSiteDesign", + "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\"", - "Rank": 2, "Id": 1452, - "CommandName": "Set-PnPSiteDesign" + "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\"", + "Rank": 2 }, { - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "Rank": 1, "Id": 1453, - "CommandName": "Set-PnPSiteGroup" + "CommandName": "Set-PnPSiteGroup", + "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", - "Rank": 2, "Id": 1454, - "CommandName": "Set-PnPSiteGroup" + "CommandName": "Set-PnPSiteGroup", + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "Rank": 2 }, { - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 1, "Id": 1455, - "CommandName": "Set-PnPSitePolicy" + "CommandName": "Set-PnPSitePolicy", + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1, "Id": 1456, - "CommandName": "Set-PnPSiteScript" + "CommandName": "Set-PnPSiteScript", + "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\"", - "Rank": 1, "Id": 1457, - "CommandName": "Set-PnPSiteScriptPackage" + "CommandName": "Set-PnPSiteScriptPackage", + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Rank": 1, "Id": 1458, - "CommandName": "Set-PnPSiteSensitivityLabel" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Rank": 2, "Id": 1459, - "CommandName": "Set-PnPSiteSensitivityLabel" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "Rank": 2 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 1, "Id": 1460, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "Rank": 1 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 2, "Id": 1461, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "Rank": 2 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 3, "Id": 1462, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "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\"", - "Rank": 4, "Id": 1463, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "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\"}", - "Rank": 5, "Id": 1464, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "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\"}", - "Rank": 6, "Id": 1465, - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "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\"", - "Rank": 1, "Id": 1466, - "CommandName": "Set-PnPStorageEntity" + "CommandName": "Set-PnPStorageEntity", + "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\"", - "Rank": 2, "Id": 1467, - "CommandName": "Set-PnPStorageEntity" + "CommandName": "Set-PnPStorageEntity", + "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/\"", - "Rank": 1, "Id": 1468, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "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/\"", - "Rank": 2, "Id": 1469, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "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\"", - "Rank": 1, "Id": 1470, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "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\"", - "Rank": 2, "Id": 1471, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 2 }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Rank": 1, "Id": 1472, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "Rank": 1 }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Rank": 2, "Id": 1473, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "Rank": 2 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Rank": 1, "Id": 1474, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "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'", - "Rank": 2, "Id": 1475, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "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\"}", - "Rank": 3, "Id": 1476, - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "Rank": 3 }, { - "Command": "Set-PnPTeamifyPromptHidden", - "Rank": 1, "Id": 1477, - "CommandName": "Set-PnPTeamifyPromptHidden" + "CommandName": "Set-PnPTeamifyPromptHidden", + "Command": "Set-PnPTeamifyPromptHidden", + "Rank": 1 }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Rank": 1, "Id": 1478, - "CommandName": "Set-PnPTeamsChannel" + "CommandName": "Set-PnPTeamsChannel", + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "Rank": 1 }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Rank": 2, "Id": 1479, - "CommandName": "Set-PnPTeamsChannel" + "CommandName": "Set-PnPTeamsChannel", + "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", - "Rank": 1, "Id": 1480, - "CommandName": "Set-PnpTeamsChannelUser" + "CommandName": "Set-PnpTeamsChannelUser", + "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", - "Rank": 2, "Id": 1481, - "CommandName": "Set-PnpTeamsChannelUser" + "CommandName": "Set-PnpTeamsChannelUser", + "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\"", - "Rank": 1, "Id": 1482, - "CommandName": "Set-PnPTeamsTab" + "CommandName": "Set-PnPTeamsTab", + "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\"", - "Rank": 1, "Id": 1483, - "CommandName": "Set-PnPTeamsTag" + "CommandName": "Set-PnPTeamsTag", + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "Rank": 1 }, { - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Rank": 1, "Id": 1484, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "Rank": 1 }, { - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Rank": 2, "Id": 1485, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "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", - "Rank": 3, "Id": 1486, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "Rank": 3 }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Rank": 4, "Id": 1487, - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "Rank": 4 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Rank": 1, "Id": 1488, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "Rank": 1 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Rank": 2, "Id": 1489, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "Rank": 2 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Rank": 3, "Id": 1490, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "Rank": 3 }, { - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Rank": 1, "Id": 1491, - "CommandName": "Set-PnPTeamsTeamPicture" + "CommandName": "Set-PnPTeamsTeamPicture", + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "Rank": 1 }, { - "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Rank": 1, "Id": 1492, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Command": "Set-PnPTemporarilyDisableAppBar $true", + "Rank": 1 }, { - "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Rank": 2, "Id": 1493, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "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\"", - "Rank": 1, "Id": 1494, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "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", - "Rank": 2, "Id": 1495, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "Rank": 2 }, { - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Rank": 3, "Id": 1496, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "Rank": 3 }, { - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Rank": 4, "Id": 1497, - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "Rank": 4 }, { - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Rank": 1, "Id": 1498, - "CommandName": "Set-PnPTenantAppCatalogUrl" + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "Rank": 1 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Rank": 1, "Id": 1499, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "Rank": 1 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Rank": 2, "Id": 1500, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "Rank": 2 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Rank": 3, "Id": 1501, - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "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\"", - "Rank": 1, "Id": 1502, - "CommandName": "Set-PnPTenantCdnPolicy" + "CommandName": "Set-PnPTenantCdnPolicy", + "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\"", - "Rank": 2, "Id": 1503, - "CommandName": "Set-PnPTenantCdnPolicy" + "CommandName": "Set-PnPTenantCdnPolicy", + "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", - "Rank": 1, "Id": 1504, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "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", - "Rank": 2, "Id": 1505, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "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\"", - "Rank": 3, "Id": 1506, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "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\")", - "Rank": 4, "Id": 1507, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "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", - "Rank": 5, "Id": 1508, - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "Rank": 5 }, { - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Rank": 1, "Id": 1509, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "Rank": 1 }, { - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Rank": 2, "Id": 1510, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "Rank": 2 }, { - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Rank": 1, "Id": 1511, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "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\"}", - "Rank": 2, "Id": 1512, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "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\"}", - "Rank": 3, "Id": 1513, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "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", - "Rank": 4, "Id": 1514, - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "Rank": 4 }, { - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Rank": 1, "Id": 1515, - "CommandName": "Set-PnPTermGroup" + "CommandName": "Set-PnPTermGroup", + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "Rank": 1 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Rank": 1, "Id": 1516, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "Rank": 1 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Rank": 2, "Id": 1517, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "Rank": 2 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Rank": 3, "Id": 1518, - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "Rank": 3 }, { - "Command": "Set-PnPTheme", - "Rank": 1, "Id": 1519, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme", + "Rank": 1 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Rank": 2, "Id": 1520, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "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'", - "Rank": 3, "Id": 1521, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "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", - "Rank": 4, "Id": 1522, - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "Rank": 4 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Rank": 1, "Id": 1523, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "Rank": 1 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Rank": 2, "Id": 1524, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "Rank": 2 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Rank": 3, "Id": 1525, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "Rank": 3 }, { - "Command": "Set-PnPTraceLog -Off", - "Rank": 4, "Id": 1526, - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -Off", + "Rank": 4 }, { - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Rank": 1, "Id": 1527, - "CommandName": "Set-PnPUserOneDriveQuota" + "CommandName": "Set-PnPUserOneDriveQuota", + "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'", - "Rank": 1, "Id": 1528, - "CommandName": "Set-PnPUserProfileProperty" + "CommandName": "Set-PnPUserProfileProperty", + "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'", - "Rank": 2, "Id": 1529, - "CommandName": "Set-PnPUserProfileProperty" + "CommandName": "Set-PnPUserProfileProperty", + "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\"}", - "Rank": 1, "Id": 1530, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "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\"", - "Rank": 2, "Id": 1531, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "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 \"\"", - "Rank": 3, "Id": 1532, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "Rank": 3 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Rank": 4, "Id": 1533, - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "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", - "Rank": 1, "Id": 1534, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "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", + "Rank": 1 }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Rank": 2, "Id": 1535, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "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", - "Rank": 3, "Id": 1536, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "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", + "Rank": 3 }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Rank": 4, "Id": 1537, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "Rank": 4 }, { - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Rank": 1, "Id": 1538, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "Rank": 1 }, { - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Rank": 2, "Id": 1539, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "Rank": 2 }, { - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Rank": 3, "Id": 1540, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "Rank": 3 }, { - "Command": "Set-PnPWeb -NoCrawl:$true", - "Rank": 4, "Id": 1541, - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -NoCrawl:$true", + "Rank": 4 }, { - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Rank": 1, "Id": 1542, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "Rank": 1 }, { - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Rank": 2, "Id": 1543, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "Rank": 2 }, { - "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Rank": 3, "Id": 1544, - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "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", - "Rank": 1, "Id": 1545, - "CommandName": "Set-PnPWebhookSubscription" + "CommandName": "Set-PnPWebhookSubscription", + "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\"", - "Rank": 2, "Id": 1546, - "CommandName": "Set-PnPWebhookSubscription" + "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\"", + "Rank": 2 }, { - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", - "Rank": 1, "Id": 1547, - "CommandName": "Set-PnPWebPartProperty" + "CommandName": "Set-PnPWebPartProperty", + "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\"", - "Rank": 1, "Id": 1548, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Rank": 1 }, { - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Rank": 2, "Id": 1549, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "Rank": 2 }, { - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 3, "Id": 1550, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "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\"", - "Rank": 4, "Id": 1551, - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "Rank": 4 }, { - "Command": "Set-PnPWebTheme -Theme MyTheme", - "Rank": 1, "Id": 1552, - "CommandName": "Set-PnPWebTheme" + "CommandName": "Set-PnPWebTheme", + "Command": "Set-PnPWebTheme -Theme MyTheme", + "Rank": 1 }, { - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Rank": 2, "Id": 1553, - "CommandName": "Set-PnPWebTheme" + "CommandName": "Set-PnPWebTheme", + "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", - "Rank": 1, "Id": 1554, - "CommandName": "Set-PnPWikiPageContent" + "CommandName": "Set-PnPWikiPageContent", + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "Rank": 1 }, { - "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Rank": 1, "Id": 1555, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "Rank": 1 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Rank": 2, "Id": 1556, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "Rank": 2 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Rank": 3, "Id": 1557, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "Rank": 3 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Rank": 4, "Id": 1558, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "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", - "Rank": 5, "Id": 1559, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "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", - "Rank": 6, "Id": 1560, - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "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\"", - "Rank": 1, "Id": 1561, - "CommandName": "Submit-PnPTeamsChannelMessage" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "Rank": 1 }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Rank": 2, "Id": 1562, - "CommandName": "Submit-PnPTeamsChannelMessage" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "Rank": 2 }, { - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "Id": 1563, - "CommandName": "Sync-PnPAppToTeams" + "CommandName": "Sync-PnPAppToTeams", + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Rank": 1, "Id": 1564, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "Rank": 1 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Rank": 2, "Id": 1565, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "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", - "Rank": 3, "Id": 1566, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "Rank": 3 }, { - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Rank": 1, "Id": 1567, - "CommandName": "Test-PnPListItemIsRecord" + "CommandName": "Test-PnPListItemIsRecord", + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "Rank": 1 }, { - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Rank": 1, "Id": 1568, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "Rank": 1 }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, "Id": 1569, - "CommandName": "Test-PnPSite" + "CommandName": "Test-PnPSite", + "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\"", - "Rank": 2, "Id": 1570, - "CommandName": "Test-PnPSite" + "CommandName": "Test-PnPSite", + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Rank": 2 }, { - "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Rank": 1, "Id": 1571, - "CommandName": "Test-PnPTenantTemplate" + "CommandName": "Test-PnPTenantTemplate", + "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "Rank": 1 }, { - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Rank": 1, "Id": 1572, - "CommandName": "Undo-PnPFileCheckedOut" + "CommandName": "Undo-PnPFileCheckedOut", + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "Rank": 1 }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "Id": 1573, - "CommandName": "Uninstall-PnPApp" + "CommandName": "Uninstall-PnPApp", + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "Id": 1574, - "CommandName": "Uninstall-PnPApp" + "CommandName": "Uninstall-PnPApp", + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2 }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "Id": 1575, - "CommandName": "Unpublish-PnPApp" + "CommandName": "Unpublish-PnPApp", + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "Id": 1576, - "CommandName": "Unpublish-PnPApp" + "CommandName": "Unpublish-PnPApp", + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2 }, { - "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Rank": 1, "Id": 1577, - "CommandName": "Unpublish-PnPContentType" + "CommandName": "Unpublish-PnPContentType", + "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "Rank": 1 }, { - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, "Id": 1578, - "CommandName": "Unpublish-PnPSyntexModel" + "CommandName": "Unpublish-PnPSyntexModel", + "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", - "Rank": 2, "Id": 1579, - "CommandName": "Unpublish-PnPSyntexModel" + "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", + "Rank": 2 }, { - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1, "Id": 1580, - "CommandName": "Unregister-PnPHubSite" + "CommandName": "Unregister-PnPHubSite", + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Rank": 1 }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, "Id": 1581, - "CommandName": "Update-PnPApp" + "CommandName": "Update-PnPApp", + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1 }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, "Id": 1582, - "CommandName": "Update-PnPApp" + "CommandName": "Update-PnPApp", + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2 }, { - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 1, "Id": 1583, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Rank": 1 }, { - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Rank": 2, "Id": 1584, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "Rank": 2 }, { - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 3, "Id": 1585, - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 3 }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Rank": 1, "Id": 1586, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "Rank": 1 }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2, "Id": 1587, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "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\"", - "Rank": 3, "Id": 1588, - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "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", - "Rank": 1, "Id": 1589, - "CommandName": "Update-PnPTeamsApp" + "CommandName": "Update-PnPTeamsApp", + "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", - "Rank": 1, "Id": 1590, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 1 }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2, "Id": 1591, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "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", - "Rank": 3, "Id": 1592, - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "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", - "Rank": 1, "Id": 1593, - "CommandName": "Update-PnPUserType" + "CommandName": "Update-PnPUserType", + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "Rank": 1 } ] diff --git a/version.txt b/version.txt index f847806f9..4b7d52c10 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.112 \ No newline at end of file +2.2.113 \ No newline at end of file From 17beb75736c2ee3c68d6f653f6884cfc91d8f633 Mon Sep 17 00:00:00 2001 From: "Antti K. Koskela" Date: Sun, 29 Oct 2023 21:16:08 +0100 Subject: [PATCH 119/146] Fixes #3163 (#3530) * Fixes the bug where all -UseWebLogin auth requests go to the root site collection and implements an override for site-relative auth URI * Remove unused using * Update ConnectOnline.cs --------- Co-authored-by: Gautam Sheth --- documentation/Connect-PnPOnline.md | 15 +++++++++++++++ src/Commands/Base/ConnectOnline.cs | 14 ++++++++++++-- src/Commands/Base/PnPConnection.cs | 17 ++++++++++++++--- 3 files changed, 41 insertions(+), 5 deletions(-) diff --git a/documentation/Connect-PnPOnline.md b/documentation/Connect-PnPOnline.md index 8c201d47e..beadb9e00 100644 --- a/documentation/Connect-PnPOnline.md +++ b/documentation/Connect-PnPOnline.md @@ -665,6 +665,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RelativeUrl +The site-relative URL of the site you're collecting to. Only applies if you're using -UseWebLogin. + +```yaml +Type: String +Parameter Sets: Web Login for Multi Factor Authentication +Aliases: + +Required: False +Position: Named +Default value: /_layouts/15/settings.aspx +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Interactive Connects to the Azure AD using interactive login, allowing you to authenticate using multi-factor authentication. This parameter has preference over \`-UseWebLogin\`. diff --git a/src/Commands/Base/ConnectOnline.cs b/src/Commands/Base/ConnectOnline.cs index e3b3a7dbc..6a62be0e9 100644 --- a/src/Commands/Base/ConnectOnline.cs +++ b/src/Commands/Base/ConnectOnline.cs @@ -228,6 +228,9 @@ public class ConnectOnline : BasePSCmdlet [Parameter(Mandatory = true, ParameterSetName = ParameterSet_WEBLOGIN)] public SwitchParameter UseWebLogin; + [Parameter(Mandatory = false, ParameterSetName = ParameterSet_WEBLOGIN)] + public string RelativeUrl; + [Parameter(Mandatory = false, ParameterSetName = ParameterSet_WEBLOGIN)] [Parameter(Mandatory = false, ParameterSetName = ParameterSet_INTERACTIVE)] public SwitchParameter ForceAuthentication; @@ -658,7 +661,14 @@ private PnPConnection ConnectWebLogin() WriteWarning("Consider using -Interactive instead, which provides better functionality. See the documentation at https://pnp.github.io/powershell/cmdlets/Connect-PnPOnline.html#interactive-login-for-multi-factor-authentication"); if (Utilities.OperatingSystem.IsWindows()) { - return PnPConnection.CreateWithWeblogin(new Uri(Url.ToLower()), TenantAdminUrl, ForceAuthentication); + if (!string.IsNullOrWhiteSpace(RelativeUrl)) + { + return PnPConnection.CreateWithWeblogin(new Uri(Url.ToLower()), TenantAdminUrl, ForceAuthentication, siteRelativeUrl: RelativeUrl); + } + else + { + return PnPConnection.CreateWithWeblogin(new Uri(Url.ToLower()), TenantAdminUrl, ForceAuthentication); + } } else { @@ -887,4 +897,4 @@ private void SetCustomEndpoints() #endregion } -} \ No newline at end of file +} diff --git a/src/Commands/Base/PnPConnection.cs b/src/Commands/Base/PnPConnection.cs index 598c6f0b7..188ddd8ca 100644 --- a/src/Commands/Base/PnPConnection.cs +++ b/src/Commands/Base/PnPConnection.cs @@ -536,12 +536,23 @@ internal static PnPConnection CreateWithCredentials(Cmdlet cmdlet, Uri url, PSCr return spoConnection; } - internal static PnPConnection CreateWithWeblogin(Uri url, string tenantAdminUrl, bool clearCookies, AzureEnvironment azureEnvironment = AzureEnvironment.Production) + + /// + /// Creates a PnPConnection using web login authentication + /// + /// Url to the SharePoint Online site to connect to + /// Url to the SharePoint Online Admin Center site to connect to + /// Clears cookies before logging in + /// Azure environment to use for authentication (defaults to standard "Production" cloud) + /// Relative URL of the page to log in to (defaults to "/_layouts/15/settings.aspx" which is a known performant page) + /// Instantiated PnPConnection + internal static PnPConnection CreateWithWeblogin(Uri url, string tenantAdminUrl, bool clearCookies, AzureEnvironment azureEnvironment = AzureEnvironment.Production, string siteRelativeUrl = "/_layouts/15/settings.aspx") { if (Utilities.OperatingSystem.IsWindows()) { - // Log in to a specific page on the tenant which is known to be performant - var webLoginClientContext = BrowserHelper.GetWebLoginClientContext(url.ToString(), clearCookies, scriptErrorsSuppressed: false, loginRequestUri: new Uri(url, "/_layouts/15/settings.aspx")); + // Log in to a specific page on the tenant + var specificPageUri = new Uri(string.Format("{0}/{1}", url.AbsoluteUri.TrimEnd('/'), siteRelativeUrl.TrimStart('/'))); + var webLoginClientContext = BrowserHelper.GetWebLoginClientContext(url.ToString(), clearCookies, scriptErrorsSuppressed: false, loginRequestUri: specificPageUri); // Ensure the login process has been completed if (webLoginClientContext == null) From 86ae14cff459c8f59c563dde4d62297303bfd8c9 Mon Sep 17 00:00:00 2001 From: "Antti K. Koskela" Date: Sun, 29 Oct 2023 21:24:49 +0100 Subject: [PATCH 120/146] Fix #3520 (#3533) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add a switch to override "validating" tenant admin url * How did that get there? 😶 * Revert "How did that get there? 😶" This reverts commit 00f899f99692c04a69ee2c0314bb0b18ba820cc5. * Revert "Add a switch to override "validating" tenant admin url" This reverts commit 802a5198c934b6311a854013954783138103fb8c. * Implement @gautamdsheth's feedback :) * Update RenameTenantSite.cs * Update RenameTenantSite.cs --------- Co-authored-by: Gautam Sheth --- src/Commands/Admin/RenameTenantSite.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Commands/Admin/RenameTenantSite.cs b/src/Commands/Admin/RenameTenantSite.cs index 76e3408f5..93c4d8216 100644 --- a/src/Commands/Admin/RenameTenantSite.cs +++ b/src/Commands/Admin/RenameTenantSite.cs @@ -68,9 +68,7 @@ protected override void ExecuteCmdlet() OperationId = Guid.Empty }; - var tenantUrl = UrlUtilities.GetTenantAdministrationUrl(AdminContext.Url); - - var results = Utilities.REST.RestHelper.PostAsync(HttpClient, $"{tenantUrl.TrimEnd('/')}/_api/SiteRenameJobs?api-version=1.4.7", AdminContext, body, false).GetAwaiter().GetResult(); + var results = Utilities.REST.RestHelper.PostAsync(HttpClient, $"{AdminContext.Url.TrimEnd('/')}/_api/SiteRenameJobs?api-version=1.4.7", AdminContext, body, false).GetAwaiter().GetResult(); if (!Wait.IsPresent) { if (results != null) @@ -87,7 +85,7 @@ protected override void ExecuteCmdlet() var httpClient = PnPHttpClient.Instance.GetHttpClient(AdminContext); - var requestUrl = $"{tenantUrl.TrimEnd('/')}/_api/SiteRenameJobs/GetJobsBySiteUrl(url='{Identity.Url}')?api-version=1.4.7"; + var requestUrl = $"{AdminContext.Url.TrimEnd('/')}/_api/SiteRenameJobs/GetJobsBySiteUrl(url='{Identity.Url}')?api-version=1.4.7"; while (wait) { @@ -152,4 +150,4 @@ protected override void ExecuteCmdlet() } } } -} \ No newline at end of file +} From ae5380c03dc033856a66cc006f33205667778ca3 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Sun, 29 Oct 2023 22:37:49 +0200 Subject: [PATCH 121/146] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 709f74b34..8ed1f3381 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `Get-PnPRetentionLabel` cmdlet to retrieve Purview retention labels. [#3459](https://github.com/pnp/powershell/pull/3459) - Added GCC support for `Get-PnPAzureADUser` , `Add-PnPFlowOwner` , `Remove-PnPFlowOwner`, `Sync-PnPSharePointUserProfilesFromAzureActiveDirectory`, `New-PnPAzureADUserTemporaryAccessPass` and `Get-PnPAvailableSensitivityLabel` cmdlets. [#3484](https://github.com/pnp/powershell/pull/3484) - Added a devcontainer for easily building a minimal environment necessary to contribute to the project. [#3497](https://github.com/pnp/powershell/pull/3497) +- Added `-RelativeUrl` parameter to `Connect-PnPOnline` cmdlet to allow specifying custom URLs for usage with `-WebLogin` method. [#3530](https://github.com/pnp/powershell/pull/3530) ### Fixed @@ -63,6 +64,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed `Enable-PnPPageScheduling` and `Disable-PnPPageScheduling` cmdlets not working due to changes in backend code. [#3469](https://github.com/pnp/powershell/pull/3469) - 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) ### Changed From 3da88dfb34bbd43fa36b693e322f82a07e447c29 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Mon, 30 Oct 2023 02:39:35 +0000 Subject: [PATCH 122/146] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- version.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 43cd32a8c..82d2afda3 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -ad8bfae6fe16da2a3238cd4ff1962827ff4ba59b \ No newline at end of file +737d9035c130ce0d7936c00cc599e2ef7358d99a \ No newline at end of file diff --git a/version.txt b/version.txt index 4b7d52c10..0f7626ebb 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.113 \ No newline at end of file +2.2.114 \ No newline at end of file From 221dd4b16ed9291a9ab8870630c4ad285bfeb9e0 Mon Sep 17 00:00:00 2001 From: Erwin van Hunen Date: Mon, 30 Oct 2023 11:48:33 +0100 Subject: [PATCH 123/146] Fixed namespaces --- src/Commands/Teams/AddTeamsChannel.cs | 2 +- src/Commands/Teams/AddTeamsTab.cs | 2 +- src/Commands/Teams/AddTeamsUser.cs | 2 +- src/Commands/Teams/GetTeamsApp.cs | 2 +- src/Commands/Teams/GetTeamsTab.cs | 2 +- src/Commands/Teams/GetTeamsTag.cs | 2 +- src/Commands/Teams/GetTeamsTeam.cs | 2 +- src/Commands/Teams/GetTeamsUser.cs | 2 +- src/Commands/Teams/NewTeamsApp.cs | 2 +- src/Commands/Teams/NewTeamsTeam.cs | 2 +- src/Commands/Teams/RemoveTeamsApp.cs | 2 +- src/Commands/Teams/RemoveTeamsTab.cs | 2 +- src/Commands/Teams/RemoveTeamsTag.cs | 2 +- src/Commands/Teams/RemoveTeamsTeam.cs | 2 +- src/Commands/Teams/RemoveTeamsUser.cs | 2 +- src/Commands/Teams/SetTeamsChannel.cs | 2 +- src/Commands/Teams/SetTeamsTab.cs | 2 +- src/Commands/Teams/SetTeamsTag.cs | 2 +- src/Commands/Teams/SetTeamsTeam.cs | 2 +- src/Commands/Teams/SetTeamsTeamArchivedState.cs | 2 +- src/Commands/Teams/SetTeamsTeamPicture.cs | 2 +- src/Commands/Teams/SubmitTeamsChannelMessage.cs | 2 +- src/Commands/Teams/UpdateTeamsApp.cs | 2 +- src/Commands/Teams/UpdateTeamsUser.cs | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/Commands/Teams/AddTeamsChannel.cs b/src/Commands/Teams/AddTeamsChannel.cs index 8a3d701eb..2ef379906 100644 --- a/src/Commands/Teams/AddTeamsChannel.cs +++ b/src/Commands/Teams/AddTeamsChannel.cs @@ -7,7 +7,7 @@ using System; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Add, "PnPTeamsChannel", DefaultParameterSetName = ParameterSET_STANDARD)] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] diff --git a/src/Commands/Teams/AddTeamsTab.cs b/src/Commands/Teams/AddTeamsTab.cs index 8fd1af47d..73d9a9b25 100644 --- a/src/Commands/Teams/AddTeamsTab.cs +++ b/src/Commands/Teams/AddTeamsTab.cs @@ -8,7 +8,7 @@ using PnP.PowerShell.Commands.Model.Graph; using System.Text.RegularExpressions; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Add, "PnPTeamsTab")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] diff --git a/src/Commands/Teams/AddTeamsUser.cs b/src/Commands/Teams/AddTeamsUser.cs index f74310f0b..7eb0340ea 100644 --- a/src/Commands/Teams/AddTeamsUser.cs +++ b/src/Commands/Teams/AddTeamsUser.cs @@ -5,7 +5,7 @@ using PnP.PowerShell.Commands.Utilities; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Add, "PnPTeamsUser")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] diff --git a/src/Commands/Teams/GetTeamsApp.cs b/src/Commands/Teams/GetTeamsApp.cs index 5d3ef359c..7f3293ca2 100644 --- a/src/Commands/Teams/GetTeamsApp.cs +++ b/src/Commands/Teams/GetTeamsApp.cs @@ -5,7 +5,7 @@ using PnP.PowerShell.Commands.Attributes; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Get, "PnPTeamsApp")] [RequiredMinimalApiPermissions("Directory.Read.All")] diff --git a/src/Commands/Teams/GetTeamsTab.cs b/src/Commands/Teams/GetTeamsTab.cs index e48529137..8c9097f27 100644 --- a/src/Commands/Teams/GetTeamsTab.cs +++ b/src/Commands/Teams/GetTeamsTab.cs @@ -5,7 +5,7 @@ using PnP.PowerShell.Commands.Utilities; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Get, "PnPTeamsTab")] [RequiredMinimalApiPermissions("Group.Read.All")] diff --git a/src/Commands/Teams/GetTeamsTag.cs b/src/Commands/Teams/GetTeamsTag.cs index e99b385d9..cf8baf3b1 100644 --- a/src/Commands/Teams/GetTeamsTag.cs +++ b/src/Commands/Teams/GetTeamsTag.cs @@ -6,7 +6,7 @@ using System; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Get, "PnPTeamsTag")] [RequiredMinimalApiPermissions("TeamworkTag.Read")] diff --git a/src/Commands/Teams/GetTeamsTeam.cs b/src/Commands/Teams/GetTeamsTeam.cs index 007c01648..e5a22a089 100644 --- a/src/Commands/Teams/GetTeamsTeam.cs +++ b/src/Commands/Teams/GetTeamsTeam.cs @@ -4,7 +4,7 @@ using PnP.PowerShell.Commands.Utilities; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Get, "PnPTeamsTeam", DefaultParameterSetName = ParameterSet_Identity)] [RequiredMinimalApiPermissions("Group.Read.All")] diff --git a/src/Commands/Teams/GetTeamsUser.cs b/src/Commands/Teams/GetTeamsUser.cs index f7c01e095..c34e92cf3 100644 --- a/src/Commands/Teams/GetTeamsUser.cs +++ b/src/Commands/Teams/GetTeamsUser.cs @@ -8,7 +8,7 @@ using System.Linq; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Get, "PnPTeamsUser")] [RequiredMinimalApiPermissions("Group.Read.All")] diff --git a/src/Commands/Teams/NewTeamsApp.cs b/src/Commands/Teams/NewTeamsApp.cs index 2025ce6ca..15197431d 100644 --- a/src/Commands/Teams/NewTeamsApp.cs +++ b/src/Commands/Teams/NewTeamsApp.cs @@ -6,7 +6,7 @@ using PnP.PowerShell.Commands.Utilities; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.New, "PnPTeamsApp")] [RequiredMinimalApiPermissions("AppCatalog.ReadWrite.All")] diff --git a/src/Commands/Teams/NewTeamsTeam.cs b/src/Commands/Teams/NewTeamsTeam.cs index bd75e727a..6429b9735 100644 --- a/src/Commands/Teams/NewTeamsTeam.cs +++ b/src/Commands/Teams/NewTeamsTeam.cs @@ -10,7 +10,7 @@ using System.Linq; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.New, "PnPTeamsTeam")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] diff --git a/src/Commands/Teams/RemoveTeamsApp.cs b/src/Commands/Teams/RemoveTeamsApp.cs index 1d842f4fb..7b5f9a50b 100644 --- a/src/Commands/Teams/RemoveTeamsApp.cs +++ b/src/Commands/Teams/RemoveTeamsApp.cs @@ -6,7 +6,7 @@ using PnP.PowerShell.Commands.Utilities.REST; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Remove, "PnPTeamsApp")] [RequiredMinimalApiPermissions("AppCatalog.ReadWrite.All")] diff --git a/src/Commands/Teams/RemoveTeamsTab.cs b/src/Commands/Teams/RemoveTeamsTab.cs index 797d62ee9..8e033ddd0 100644 --- a/src/Commands/Teams/RemoveTeamsTab.cs +++ b/src/Commands/Teams/RemoveTeamsTab.cs @@ -6,7 +6,7 @@ using PnP.PowerShell.Commands.Utilities.REST; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Remove, "PnPTeamsTab")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] diff --git a/src/Commands/Teams/RemoveTeamsTag.cs b/src/Commands/Teams/RemoveTeamsTag.cs index 97e22a04b..e020f39e3 100644 --- a/src/Commands/Teams/RemoveTeamsTag.cs +++ b/src/Commands/Teams/RemoveTeamsTag.cs @@ -6,7 +6,7 @@ using PnP.PowerShell.Commands.Utilities.REST; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Remove, "PnPTeamsTag")] [RequiredMinimalApiPermissions("TeamworkTag.ReadWrite")] diff --git a/src/Commands/Teams/RemoveTeamsTeam.cs b/src/Commands/Teams/RemoveTeamsTeam.cs index 148dbbb38..2d451ad1a 100644 --- a/src/Commands/Teams/RemoveTeamsTeam.cs +++ b/src/Commands/Teams/RemoveTeamsTeam.cs @@ -7,7 +7,7 @@ using System; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Remove, "PnPTeamsTeam")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] diff --git a/src/Commands/Teams/RemoveTeamsUser.cs b/src/Commands/Teams/RemoveTeamsUser.cs index e36377277..3409403ab 100644 --- a/src/Commands/Teams/RemoveTeamsUser.cs +++ b/src/Commands/Teams/RemoveTeamsUser.cs @@ -5,7 +5,7 @@ using PnP.PowerShell.Commands.Utilities; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Remove, "PnPTeamsUser")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] diff --git a/src/Commands/Teams/SetTeamsChannel.cs b/src/Commands/Teams/SetTeamsChannel.cs index e52477e9f..df41be7b2 100644 --- a/src/Commands/Teams/SetTeamsChannel.cs +++ b/src/Commands/Teams/SetTeamsChannel.cs @@ -5,7 +5,7 @@ using PnP.PowerShell.Commands.Utilities; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Set, "PnPTeamsChannel")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] diff --git a/src/Commands/Teams/SetTeamsTab.cs b/src/Commands/Teams/SetTeamsTab.cs index 5c29f81c1..6accc454d 100644 --- a/src/Commands/Teams/SetTeamsTab.cs +++ b/src/Commands/Teams/SetTeamsTab.cs @@ -4,7 +4,7 @@ using PnP.PowerShell.Commands.Utilities; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Set, "PnPTeamsTab")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] diff --git a/src/Commands/Teams/SetTeamsTag.cs b/src/Commands/Teams/SetTeamsTag.cs index 09f4ad423..609192692 100644 --- a/src/Commands/Teams/SetTeamsTag.cs +++ b/src/Commands/Teams/SetTeamsTag.cs @@ -4,7 +4,7 @@ using PnP.PowerShell.Commands.Utilities; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Set, "PnPTeamsTag")] [RequiredMinimalApiPermissions("TeamworkTag.ReadWrite")] diff --git a/src/Commands/Teams/SetTeamsTeam.cs b/src/Commands/Teams/SetTeamsTeam.cs index b5d162dba..de1761cde 100644 --- a/src/Commands/Teams/SetTeamsTeam.cs +++ b/src/Commands/Teams/SetTeamsTeam.cs @@ -8,7 +8,7 @@ using System; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Set, "PnPTeamsTeam")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] diff --git a/src/Commands/Teams/SetTeamsTeamArchivedState.cs b/src/Commands/Teams/SetTeamsTeamArchivedState.cs index 0266f1c3d..daa43d617 100644 --- a/src/Commands/Teams/SetTeamsTeamArchivedState.cs +++ b/src/Commands/Teams/SetTeamsTeamArchivedState.cs @@ -8,7 +8,7 @@ using PnP.PowerShell.Commands.Utilities.REST; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Set, "PnPTeamsTeamArchivedState")] [TokenType(TokenType = TokenType.Delegate)] diff --git a/src/Commands/Teams/SetTeamsTeamPicture.cs b/src/Commands/Teams/SetTeamsTeamPicture.cs index e6337d08b..81edeb4bd 100644 --- a/src/Commands/Teams/SetTeamsTeamPicture.cs +++ b/src/Commands/Teams/SetTeamsTeamPicture.cs @@ -6,7 +6,7 @@ using System.Management.Automation; using System.Threading.Tasks; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsCommon.Set, "PnPTeamsTeamPicture")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] diff --git a/src/Commands/Teams/SubmitTeamsChannelMessage.cs b/src/Commands/Teams/SubmitTeamsChannelMessage.cs index cba8ec243..78bec5823 100644 --- a/src/Commands/Teams/SubmitTeamsChannelMessage.cs +++ b/src/Commands/Teams/SubmitTeamsChannelMessage.cs @@ -6,7 +6,7 @@ using System.Management.Automation; using System.Threading.Tasks; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsLifecycle.Submit, "PnPTeamsChannelMessage")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] diff --git a/src/Commands/Teams/UpdateTeamsApp.cs b/src/Commands/Teams/UpdateTeamsApp.cs index 1f035e9ed..28c30a0c5 100644 --- a/src/Commands/Teams/UpdateTeamsApp.cs +++ b/src/Commands/Teams/UpdateTeamsApp.cs @@ -8,7 +8,7 @@ using System.Management.Automation; using System.Threading.Tasks; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsData.Update, "PnPTeamsApp")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] diff --git a/src/Commands/Teams/UpdateTeamsUser.cs b/src/Commands/Teams/UpdateTeamsUser.cs index 4d7a61eca..65e324da1 100644 --- a/src/Commands/Teams/UpdateTeamsUser.cs +++ b/src/Commands/Teams/UpdateTeamsUser.cs @@ -5,7 +5,7 @@ using PnP.PowerShell.Commands.Utilities; using System.Management.Automation; -namespace PnP.PowerShell.Commands.Graph +namespace PnP.PowerShell.Commands.Teams { [Cmdlet(VerbsData.Update, "PnPTeamsUser")] [RequiredMinimalApiPermissions("Group.ReadWrite.All")] From fb5d36d3d5d8aa15d1a9f5d31ebb45d270954162 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Tue, 31 Oct 2023 02:38:37 +0000 Subject: [PATCH 124/146] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6372 ++++++++--------- version.txt | 2 +- 3 files changed, 3188 insertions(+), 3188 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 82d2afda3..92b526755 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -737d9035c130ce0d7936c00cc599e2ef7358d99a \ No newline at end of file +96a66602734e6f043c5e23fe1b661e154e2ac140 \ 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 42577fe70..e634afab1 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9560 +1,9560 @@ [ { - "Id": 1, - "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -List \"Demo List\"", + "CommandName": "Add-PnPAlert", + "Id": 1, "Rank": 1 }, { - "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", + "Id": 2, "Rank": 2 }, { - "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", + "Id": 3, "Rank": 3 }, { - "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-PnPAlert", + "Id": 4, "Rank": 4 }, { - "Id": 5, - "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg", + "CommandName": "Add-PnPApp", + "Id": 5, "Rank": 1 }, { - "Id": 6, - "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "CommandName": "Add-PnPApp", + "Id": 6, "Rank": 2 }, { - "Id": 7, - "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "CommandName": "Add-PnPApp", + "Id": 7, "Rank": 3 }, { - "Id": 8, - "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "CommandName": "Add-PnPApp", + "Id": 8, "Rank": 4 }, { - "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-PnPApplicationCustomizer", + "Id": 9, "Rank": 1 }, { - "Id": 10, - "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 10, "Rank": 1 }, { - "Id": 11, - "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 11, "Rank": 2 }, { - "Id": 12, - "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 12, "Rank": 1 }, { - "Id": 13, - "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 13, "Rank": 2 }, { - "Id": 14, - "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 14, "Rank": 3 }, { - "Id": 15, - "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 15, "Rank": 1 }, { - "Id": 16, - "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 16, "Rank": 2 }, { - "Id": 17, - "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 17, "Rank": 3 }, { - "Id": 18, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Id": 18, "Rank": 1 }, { - "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-PnPAzureADServicePrincipalAppRole", + "Id": 19, "Rank": 2 }, { - "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", + "Id": 20, "Rank": 1 }, { - "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", + "Id": 21, "Rank": 2 }, { - "Id": 22, - "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", + "CommandName": "Add-PnPContentType", + "Id": 22, "Rank": 3 }, { - "Id": 23, - "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\"", + "CommandName": "Add-PnPContentType", + "Id": 23, "Rank": 4 }, { - "Id": 24, - "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", + "CommandName": "Add-PnPContentType", + "Id": 24, "Rank": 5 }, { - "Id": 25, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 25, "Rank": 1 }, { - "Id": 26, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 26, "Rank": 2 }, { - "Id": 27, - "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 27, "Rank": 1 }, { - "Id": 28, - "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 28, "Rank": 2 }, { - "Id": 29, - "CommandName": "Add-PnPContentTypeToList", "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "CommandName": "Add-PnPContentTypeToList", + "Id": 29, "Rank": 1 }, { - "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-PnPCustomAction", + "Id": 30, "Rank": 1 }, { - "Id": 31, - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 31, "Rank": 1 }, { - "Id": 32, - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 32, "Rank": 2 }, { - "Id": 33, - "CommandName": "Add-PnPDocumentSet", "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "CommandName": "Add-PnPDocumentSet", + "Id": 33, "Rank": 1 }, { - "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", + "Id": 34, "Rank": 1 }, { - "Id": 35, - "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", + "CommandName": "Add-PnPEventReceiver", + "Id": 35, "Rank": 2 }, { - "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", + "Id": 36, "Rank": 3 }, { - "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-PnPEventReceiver", + "Id": 37, "Rank": 4 }, { - "Id": 38, - "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "CommandName": "Add-PnPField", + "Id": 38, "Rank": 1 }, { - "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", + "Id": 39, "Rank": 2 }, { - "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", + "Id": 40, "Rank": 3 }, { - "Id": 41, - "CommandName": "Add-PnPField", "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "CommandName": "Add-PnPField", + "Id": 41, "Rank": 4 }, { - "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", + "Id": 42, "Rank": 5 }, { - "Id": 43, - "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "CommandName": "Add-PnPField", + "Id": 43, "Rank": 6 }, { - "Id": 44, - "CommandName": "Add-PnPFieldToContentType", "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "CommandName": "Add-PnPFieldToContentType", + "Id": 44, "Rank": 1 }, { - "Id": 45, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "CommandName": "Add-PnPFile", + "Id": 45, "Rank": 1 }, { - "Id": 46, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "CommandName": "Add-PnPFile", + "Id": 46, "Rank": 2 }, { - "Id": 47, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "CommandName": "Add-PnPFile", + "Id": 47, "Rank": 3 }, { - "Id": 48, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", + "CommandName": "Add-PnPFile", + "Id": 48, "Rank": 4 }, { - "Id": 49, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", + "CommandName": "Add-PnPFile", + "Id": 49, "Rank": 5 }, { - "Id": 50, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", + "CommandName": "Add-PnPFile", + "Id": 50, "Rank": 6 }, { - "Id": 51, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "CommandName": "Add-PnPFile", + "Id": 51, "Rank": 7 }, { - "Id": 52, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "CommandName": "Add-PnPFile", + "Id": 52, "Rank": 8 }, { - "Id": 53, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 53, "Rank": 1 }, { - "Id": 54, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 54, "Rank": 2 }, { - "Id": 55, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 55, "Rank": 3 }, { - "Id": 56, - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 56, "Rank": 1 }, { - "Id": 57, - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 57, "Rank": 2 }, { - "Id": 58, - "CommandName": "Add-PnPFileSharingInvite", "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "CommandName": "Add-PnPFileSharingInvite", + "Id": 58, "Rank": 1 }, { - "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", + "Id": 59, "Rank": 2 }, { - "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-PnPFileSharingInvite", + "Id": 60, "Rank": 3 }, { - "Id": 61, - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 61, "Rank": 1 }, { - "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", + "Id": 62, "Rank": 2 }, { - "Id": 63, - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 63, "Rank": 3 }, { - "Id": 64, - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 64, "Rank": 4 }, { - "Id": 65, - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 65, "Rank": 5 }, { - "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", + "Id": 66, "Rank": 1 }, { - "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-PnPFileUserSharingLink", + "Id": 67, "Rank": 2 }, { - "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", + "Id": 68, "Rank": 1 }, { - "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", + "Id": 69, "Rank": 2 }, { - "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", + "Id": 70, "Rank": 3 }, { - "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-PnPFlowOwner", + "Id": 71, "Rank": 4 }, { - "Id": 72, - "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "CommandName": "Add-PnPFolder", + "Id": 72, "Rank": 1 }, { - "Id": 73, - "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "CommandName": "Add-PnPFolder", + "Id": 73, "Rank": 2 }, { - "Id": 74, - "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "CommandName": "Add-PnPFolder", + "Id": 74, "Rank": 3 }, { - "Id": 75, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 75, "Rank": 1 }, { - "Id": 76, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 76, "Rank": 2 }, { - "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-PnPFolderAnonymousSharingLink", + "Id": 77, "Rank": 3 }, { - "Id": 78, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 78, "Rank": 1 }, { - "Id": 79, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 79, "Rank": 2 }, { - "Id": 80, - "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "CommandName": "Add-PnPFolderSharingInvite", + "Id": 80, "Rank": 1 }, { - "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", + "Id": 81, "Rank": 2 }, { - "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-PnPFolderSharingInvite", + "Id": 82, "Rank": 3 }, { - "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", + "Id": 83, "Rank": 1 }, { - "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-PnPFolderUserSharingLink", + "Id": 84, "Rank": 2 }, { - "Id": 85, - "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "CommandName": "Add-PnPGroupMember", + "Id": 85, "Rank": 1 }, { - "Id": 86, - "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "CommandName": "Add-PnPGroupMember", + "Id": 86, "Rank": 2 }, { - "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-PnPHtmlPublishingPageLayout", + "Id": 87, "Rank": 1 }, { - "Id": 88, - "CommandName": "Add-PnPHubSiteAssociation", "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", + "CommandName": "Add-PnPHubSiteAssociation", + "Id": 88, "Rank": 1 }, { - "Id": 89, - "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 89, "Rank": 1 }, { - "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", + "Id": 90, "Rank": 2 }, { - "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-PnPHubToHubAssociation", + "Id": 91, "Rank": 3 }, { - "Id": 92, - "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 92, "Rank": 1 }, { - "Id": 93, - "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 93, "Rank": 2 }, { - "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", + "Id": 94, "Rank": 1 }, { - "Id": 95, - "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "CommandName": "Add-PnPJavaScriptLink", + "Id": 95, "Rank": 2 }, { - "Id": 96, - "CommandName": "Add-PnPListDesign", "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "CommandName": "Add-PnPListDesign", + "Id": 96, "Rank": 1 }, { - "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-PnPListDesign", + "Id": 97, "Rank": 2 }, { - "Id": 98, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 98, "Rank": 1 }, { - "Id": 99, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 99, "Rank": 2 }, { - "Id": 100, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 100, "Rank": 3 }, { - "Id": 101, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Add-PnPListItem", + "Id": 101, "Rank": 1 }, { - "Id": 102, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Add-PnPListItem", + "Id": 102, "Rank": 2 }, { - "Id": 103, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "CommandName": "Add-PnPListItem", + "Id": 103, "Rank": 3 }, { - "Id": 104, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", + "CommandName": "Add-PnPListItem", + "Id": 104, "Rank": 4 }, { - "Id": 105, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "CommandName": "Add-PnPListItem", + "Id": 105, "Rank": 5 }, { - "Id": 106, - "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", + "CommandName": "Add-PnPListItemAttachment", + "Id": 106, "Rank": 1 }, { - "Id": 107, - "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", + "CommandName": "Add-PnPListItemAttachment", + "Id": 107, "Rank": 2 }, { - "Id": 108, - "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "CommandName": "Add-PnPListItemAttachment", + "Id": 108, "Rank": 3 }, { - "Id": 109, - "CommandName": "Add-PnPListItemComment", "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "CommandName": "Add-PnPListItemComment", + "Id": 109, "Rank": 1 }, { - "Id": 110, - "CommandName": "Add-PnPMasterPage", "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "CommandName": "Add-PnPMasterPage", + "Id": 110, "Rank": 1 }, { - "Id": 111, - "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 111, "Rank": 1 }, { - "Id": 112, - "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 112, "Rank": 2 }, { - "Id": 113, - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 113, "Rank": 1 }, { - "Id": 114, - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 114, "Rank": 2 }, { - "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", + "Id": 115, "Rank": 1 }, { - "Id": 116, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 116, "Rank": 2 }, { - "Id": 117, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 117, "Rank": 3 }, { - "Id": 118, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "CommandName": "Add-PnPNavigationNode", + "Id": 118, "Rank": 1 }, { - "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", + "Id": 119, "Rank": 2 }, { - "Id": 120, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "CommandName": "Add-PnPNavigationNode", + "Id": 120, "Rank": 3 }, { - "Id": 121, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", + "CommandName": "Add-PnPNavigationNode", + "Id": 121, "Rank": 4 }, { - "Id": 122, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "CommandName": "Add-PnPNavigationNode", + "Id": 122, "Rank": 5 }, { - "Id": 123, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "CommandName": "Add-PnPNavigationNode", + "Id": 123, "Rank": 6 }, { - "Id": 124, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "CommandName": "Add-PnPNavigationNode", + "Id": 124, "Rank": 7 }, { - "Id": 125, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "CommandName": "Add-PnPNavigationNode", + "Id": 125, "Rank": 8 }, { - "Id": 126, - "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 126, "Rank": 1 }, { - "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", + "Id": 127, "Rank": 2 }, { - "Id": 128, - "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 128, "Rank": 3 }, { - "Id": 129, - "CommandName": "Add-PnPOrgNewsSite", "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "CommandName": "Add-PnPOrgNewsSite", + "Id": 129, "Rank": 1 }, { - "Id": 130, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\"", + "CommandName": "Add-PnPPage", + "Id": 130, "Rank": 1 }, { - "Id": 131, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "CommandName": "Add-PnPPage", + "Id": 131, "Rank": 2 }, { - "Id": 132, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "CommandName": "Add-PnPPage", + "Id": 132, "Rank": 3 }, { - "Id": 133, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "CommandName": "Add-PnPPage", + "Id": 133, "Rank": 4 }, { - "Id": 134, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "CommandName": "Add-PnPPage", + "Id": 134, "Rank": 5 }, { - "Id": 135, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "CommandName": "Add-PnPPage", + "Id": 135, "Rank": 6 }, { - "Id": 136, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "CommandName": "Add-PnPPage", + "Id": 136, "Rank": 7 }, { - "Id": 137, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "CommandName": "Add-PnPPage", + "Id": 137, "Rank": 8 }, { - "Id": 138, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "CommandName": "Add-PnPPage", + "Id": 138, "Rank": 9 }, { - "Id": 139, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "CommandName": "Add-PnPPage", + "Id": 139, "Rank": 10 }, { - "Id": 140, - "CommandName": "Add-PnPPageImageWebPart", "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", + "CommandName": "Add-PnPPageImageWebPart", + "Id": 140, "Rank": 1 }, { - "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-PnPPageImageWebPart", + "Id": 141, "Rank": 2 }, { - "Id": 142, - "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "CommandName": "Add-PnPPageSection", + "Id": 142, "Rank": 1 }, { - "Id": 143, - "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "CommandName": "Add-PnPPageSection", + "Id": 143, "Rank": 2 }, { - "Id": 144, - "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "CommandName": "Add-PnPPageTextPart", + "Id": 144, "Rank": 1 }, { - "Id": 145, - "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", + "CommandName": "Add-PnPPageTextPart", + "Id": 145, "Rank": 2 }, { - "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-PnPPageTextPart", + "Id": 146, "Rank": 3 }, { - "Id": 147, - "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "CommandName": "Add-PnPPageWebPart", + "Id": 147, "Rank": 1 }, { - "Id": 148, - "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "CommandName": "Add-PnPPageWebPart", + "Id": 148, "Rank": 2 }, { - "Id": 149, - "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "CommandName": "Add-PnPPageWebPart", + "Id": 149, "Rank": 3 }, { - "Id": 150, - "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "CommandName": "Add-PnPPlannerBucket", + "Id": 150, "Rank": 1 }, { - "Id": 151, - "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "CommandName": "Add-PnPPlannerBucket", + "Id": 151, "Rank": 2 }, { - "Id": 152, - "CommandName": "Add-PnPPlannerRoster", "Command": "Add-PnPPlannerRoster", + "CommandName": "Add-PnPPlannerRoster", + "Id": 152, "Rank": 1 }, { - "Id": 153, - "CommandName": "Add-PnPPlannerRosterMember", "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPPlannerRosterMember", + "Id": 153, "Rank": 1 }, { - "Id": 154, - "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "CommandName": "Add-PnPPlannerTask", + "Id": 154, "Rank": 1 }, { - "Id": 155, - "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "CommandName": "Add-PnPPlannerTask", + "Id": 155, "Rank": 2 }, { - "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-PnPPlannerTask", + "Id": 156, "Rank": 3 }, { - "Id": 157, - "CommandName": "Add-PnPPublishingImageRendition", "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "CommandName": "Add-PnPPublishingImageRendition", + "Id": 157, "Rank": 1 }, { - "Id": 158, - "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", + "CommandName": "Add-PnPPublishingPage", + "Id": 158, "Rank": 1 }, { - "Id": 159, - "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "CommandName": "Add-PnPPublishingPage", + "Id": 159, "Rank": 2 }, { - "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-PnPPublishingPageLayout", + "Id": 160, "Rank": 1 }, { - "Id": 161, - "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "CommandName": "Add-PnPRoleDefinition", + "Id": 161, "Rank": 1 }, { - "Id": 162, - "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "CommandName": "Add-PnPRoleDefinition", + "Id": 162, "Rank": 2 }, { - "Id": 163, - "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "CommandName": "Add-PnPRoleDefinition", + "Id": 163, "Rank": 3 }, { - "Id": 164, - "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 164, "Rank": 1 }, { - "Id": 165, - "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 165, "Rank": 2 }, { - "Id": 166, - "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 166, "Rank": 3 }, { - "Id": 167, - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog", + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 167, "Rank": 1 }, { - "Id": 168, - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 168, "Rank": 2 }, { - "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", + "Id": 169, "Rank": 1 }, { - "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", + "Id": 170, "Rank": 2 }, { - "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-PnPSiteDesign", + "Id": 171, "Rank": 3 }, { - "Id": 172, - "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", + "CommandName": "Add-PnPSiteDesignFromWeb", + "Id": 172, "Rank": 1 }, { - "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", + "Id": 173, "Rank": 2 }, { - "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-PnPSiteDesignFromWeb", + "Id": 174, "Rank": 3 }, { - "Id": 175, - "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "CommandName": "Add-PnPSiteDesignTask", + "Id": 175, "Rank": 1 }, { - "Id": 176, - "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "CommandName": "Add-PnPSiteDesignTask", + "Id": 176, "Rank": 2 }, { - "Id": 177, - "CommandName": "Add-PnPSiteScript", "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "CommandName": "Add-PnPSiteScript", + "Id": 177, "Rank": 1 }, { - "Id": 178, - "CommandName": "Add-PnPSiteScriptPackage", "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", + "CommandName": "Add-PnPSiteScriptPackage", + "Id": 178, "Rank": 1 }, { - "Id": 179, - "CommandName": "Add-PnPSiteTemplate", "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "CommandName": "Add-PnPSiteTemplate", + "Id": 179, "Rank": 1 }, { - "Id": 180, - "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", + "CommandName": "Add-PnPStoredCredential", + "Id": 180, "Rank": 1 }, { - "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", + "Id": 181, "Rank": 2 }, { - "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-PnPStoredCredential", + "Id": 182, "Rank": 3 }, { - "Id": 183, - "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "CommandName": "Add-PnPTaxonomyField", + "Id": 183, "Rank": 1 }, { - "Id": 184, - "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "CommandName": "Add-PnPTaxonomyField", + "Id": 184, "Rank": 2 }, { - "Id": 185, - "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "CommandName": "Add-PnPTeamsChannel", + "Id": 185, "Rank": 1 }, { - "Id": 186, - "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "CommandName": "Add-PnPTeamsChannel", + "Id": 186, "Rank": 2 }, { - "Id": 187, - "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "CommandName": "Add-PnPTeamsChannel", + "Id": 187, "Rank": 3 }, { - "Id": 188, - "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", + "CommandName": "Add-PnPTeamsChannel", + "Id": 188, "Rank": 4 }, { - "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", + "Id": 189, "Rank": 1 }, { - "Id": 190, - "CommandName": "Add-PnpTeamsChannelUser", "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", + "CommandName": "Add-PnpTeamsChannelUser", + "Id": 190, "Rank": 2 }, { - "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", + "Id": 191, "Rank": 1 }, { - "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", + "Id": 192, "Rank": 2 }, { - "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", + "Id": 193, "Rank": 3 }, { - "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-PnPTeamsTab", + "Id": 194, "Rank": 4 }, { - "Id": 195, - "CommandName": "Add-PnPTeamsTeam", "Command": "Add-PnPTeamsTeam", + "CommandName": "Add-PnPTeamsTeam", + "Id": 195, "Rank": 1 }, { - "Id": 196, - "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Add-PnPTeamsUser", + "Id": 196, "Rank": 1 }, { - "Id": 197, - "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "CommandName": "Add-PnPTeamsUser", + "Id": 197, "Rank": 2 }, { - "Id": 198, - "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "CommandName": "Add-PnPTeamsUser", + "Id": 198, "Rank": 3 }, { - "Id": 199, - "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "CommandName": "Add-PnPTeamsUser", + "Id": 199, "Rank": 4 }, { - "Id": 200, - "CommandName": "Add-PnPTenantCdnOrigin", "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "CommandName": "Add-PnPTenantCdnOrigin", + "Id": 200, "Rank": 1 }, { - "Id": 201, - "CommandName": "Add-PnPTenantSequence", "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "CommandName": "Add-PnPTenantSequence", + "Id": 201, "Rank": 1 }, { - "Id": 202, - "CommandName": "Add-PnPTenantSequenceSite", "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "CommandName": "Add-PnPTenantSequenceSite", + "Id": 202, "Rank": 1 }, { - "Id": 203, - "CommandName": "Add-PnPTenantSequenceSubSite", "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "CommandName": "Add-PnPTenantSequenceSubSite", + "Id": 203, "Rank": 1 }, { - "Id": 204, - "CommandName": "Add-PnPTermToTerm", "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "CommandName": "Add-PnPTermToTerm", + "Id": 204, "Rank": 1 }, { - "Id": 205, - "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", + "CommandName": "Add-PnPView", + "Id": 205, "Rank": 1 }, { - "Id": 206, - "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", + "CommandName": "Add-PnPView", + "Id": 206, "Rank": 2 }, { - "Id": 207, - "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "CommandName": "Add-PnPView", + "Id": 207, "Rank": 3 }, { - "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", + "Id": 208, "Rank": 1 }, { - "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", + "Id": 209, "Rank": 2 }, { - "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-PnPVivaConnectionsDashboardACE", + "Id": 210, "Rank": 3 }, { - "Id": 211, - "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", + "CommandName": "Add-PnPWebhookSubscription", + "Id": 211, "Rank": 1 }, { - "Id": 212, - "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "CommandName": "Add-PnPWebhookSubscription", + "Id": 212, "Rank": 2 }, { - "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-PnPWebhookSubscription", + "Id": 213, "Rank": 3 }, { - "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", + "Id": 214, "Rank": 1 }, { - "Id": 215, - "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", + "CommandName": "Add-PnPWebPartToWebPartPage", + "Id": 215, "Rank": 2 }, { - "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", + "Id": 216, "Rank": 1 }, { - "Id": 217, - "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", + "CommandName": "Add-PnPWebPartToWikiPage", + "Id": 217, "Rank": 2 }, { - "Id": 218, - "CommandName": "Add-PnPWikiPage", "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "CommandName": "Add-PnPWikiPage", + "Id": 218, "Rank": 1 }, { - "Id": 219, - "CommandName": "Clear-PnPAzureADGroupMember", "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "CommandName": "Clear-PnPAzureADGroupMember", + "Id": 219, "Rank": 1 }, { - "Id": 220, - "CommandName": "Clear-PnPAzureADGroupOwner", "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "CommandName": "Clear-PnPAzureADGroupOwner", + "Id": 220, "Rank": 1 }, { - "Id": 221, - "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 221, "Rank": 1 }, { - "Id": 222, - "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 222, "Rank": 2 }, { - "Id": 223, - "CommandName": "Clear-PnPListItemAsRecord", "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "CommandName": "Clear-PnPListItemAsRecord", + "Id": 223, "Rank": 1 }, { - "Id": 224, - "CommandName": "Clear-PnPMicrosoft365GroupMember", "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Id": 224, "Rank": 1 }, { - "Id": 225, - "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Id": 225, "Rank": 1 }, { - "Id": 226, - "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 226, "Rank": 1 }, { - "Id": 227, - "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 227, "Rank": 2 }, { - "Id": 228, - "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 228, "Rank": 3 }, { - "Id": 229, - "CommandName": "Clear-PnPTenantAppCatalogUrl", "Command": "Clear-PnPTenantAppCatalogUrl", + "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Id": 229, "Rank": 1 }, { - "Id": 230, - "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 230, "Rank": 1 }, { - "Id": 231, - "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 231, "Rank": 2 }, { - "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": "Connect-PnPOnline", + "Id": 232, "Rank": 1 }, { - "Id": 233, - "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 233, "Rank": 1 }, { - "Id": 234, - "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 234, "Rank": 2 }, { - "Id": 235, - "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml", + "CommandName": "Convert-PnPSiteTemplate", + "Id": 235, "Rank": 1 }, { - "Id": 236, - "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "CommandName": "Convert-PnPSiteTemplate", + "Id": 236, "Rank": 2 }, { - "Id": 237, - "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "CommandName": "Convert-PnPSiteTemplate", + "Id": 237, "Rank": 3 }, { - "Id": 238, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 238, "Rank": 1 }, { - "Id": 239, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 239, "Rank": 2 }, { - "Id": 240, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "CommandName": "ConvertTo-PnPPage", + "Id": 240, "Rank": 1 }, { - "Id": 241, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "CommandName": "ConvertTo-PnPPage", + "Id": 241, "Rank": 2 }, { - "Id": 242, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "CommandName": "ConvertTo-PnPPage", + "Id": 242, "Rank": 3 }, { - "Id": 243, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "CommandName": "ConvertTo-PnPPage", + "Id": 243, "Rank": 4 }, { - "Id": 244, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage", + "Id": 244, "Rank": 5 }, { - "Id": 245, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "CommandName": "ConvertTo-PnPPage", + "Id": 245, "Rank": 6 }, { - "Id": 246, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "CommandName": "ConvertTo-PnPPage", + "Id": 246, "Rank": 7 }, { - "Id": 247, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "CommandName": "ConvertTo-PnPPage", + "Id": 247, "Rank": 8 }, { - "Id": 248, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage", + "Id": 248, "Rank": 9 }, { - "Id": 249, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "CommandName": "ConvertTo-PnPPage", + "Id": 249, "Rank": 10 }, { - "Id": 250, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "CommandName": "ConvertTo-PnPPage", + "Id": 250, "Rank": 11 }, { - "Id": 251, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage", + "Id": 251, "Rank": 12 }, { - "Id": 252, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage", + "Id": 252, "Rank": 13 }, { - "Id": 253, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "CommandName": "ConvertTo-PnPPage", + "Id": 253, "Rank": 14 }, { - "Id": 254, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", + "Id": 254, "Rank": 1 }, { - "Id": 255, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "CommandName": "Copy-PnPFile", + "Id": 255, "Rank": 2 }, { - "Id": 256, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "CommandName": "Copy-PnPFile", + "Id": 256, "Rank": 3 }, { - "Id": 257, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", + "Id": 257, "Rank": 4 }, { - "Id": 258, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "CommandName": "Copy-PnPFile", + "Id": 258, "Rank": 5 }, { - "Id": 259, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "CommandName": "Copy-PnPFile", + "Id": 259, "Rank": 6 }, { - "Id": 260, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "CommandName": "Copy-PnPFile", + "Id": 260, "Rank": 7 }, { - "Id": 261, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", + "Id": 261, "Rank": 8 }, { - "Id": 262, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", + "Id": 262, "Rank": 9 }, { - "Id": 263, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "CommandName": "Copy-PnPFile", + "Id": 263, "Rank": 10 }, { - "Id": 264, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", + "Id": 264, "Rank": 1 }, { - "Id": 265, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "CommandName": "Copy-PnPFolder", + "Id": 265, "Rank": 2 }, { - "Id": 266, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "CommandName": "Copy-PnPFolder", + "Id": 266, "Rank": 3 }, { - "Id": 267, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", + "Id": 267, "Rank": 4 }, { - "Id": 268, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "CommandName": "Copy-PnPFolder", + "Id": 268, "Rank": 5 }, { - "Id": 269, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "CommandName": "Copy-PnPFolder", + "Id": 269, "Rank": 6 }, { - "Id": 270, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "CommandName": "Copy-PnPFolder", + "Id": 270, "Rank": 7 }, { - "Id": 271, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", + "Id": 271, "Rank": 8 }, { - "Id": 272, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", + "Id": 272, "Rank": 9 }, { - "Id": 273, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "CommandName": "Copy-PnPFolder", + "Id": 273, "Rank": 10 }, { - "Id": 274, - "CommandName": "Copy-PnPItemProxy", "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "CommandName": "Copy-PnPItemProxy", + "Id": 274, "Rank": 1 }, { - "Id": 275, - "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "CommandName": "Copy-PnPList", + "Id": 275, "Rank": 1 }, { - "Id": 276, - "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", + "CommandName": "Copy-PnPList", + "Id": 276, "Rank": 2 }, { - "Id": 277, - "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "CommandName": "Copy-PnPList", + "Id": 277, "Rank": 3 }, { - "Id": 278, - "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-PnPList", + "Id": 278, "Rank": 4 }, { - "Id": 279, - "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "CommandName": "Copy-PnPTeamsTeam", + "Id": 279, "Rank": 1 }, { - "Id": 280, - "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "CommandName": "Copy-PnPTeamsTeam", + "Id": 280, "Rank": 2 }, { - "Id": 281, - "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", + "Id": 281, "Rank": 3 }, { - "Id": 282, - "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": "Copy-PnPTeamsTeam", + "Id": 282, "Rank": 4 }, { - "Id": 283, - "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Disable-PnPFeature", + "Id": 283, "Rank": 1 }, { - "Id": 284, - "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "CommandName": "Disable-PnPFeature", + "Id": 284, "Rank": 2 }, { - "Id": 285, - "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "CommandName": "Disable-PnPFeature", + "Id": 285, "Rank": 3 }, { - "Id": 286, - "CommandName": "Disable-PnPPageScheduling", "Command": "Disable-PnPPageScheduling", + "CommandName": "Disable-PnPPageScheduling", + "Id": 286, "Rank": 1 }, { - "Id": 287, - "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry", + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 287, "Rank": 1 }, { - "Id": 288, - "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry -Force", + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 288, "Rank": 2 }, { - "Id": 289, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Command": "Disable-PnPSharingForNonOwnersOfSite", + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 289, "Rank": 1 }, { - "Id": 290, - "CommandName": "Disable-PnPSiteClassification", "Command": "Disable-PnPSiteClassification", + "CommandName": "Disable-PnPSiteClassification", + "Id": 290, "Rank": 1 }, { - "Id": 291, - "CommandName": "Disconnect-PnPOnline", "Command": "Disconnect-PnPOnline", + "CommandName": "Disconnect-PnPOnline", + "Id": 291, "Rank": 1 }, { - "Id": 292, - "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite", + "CommandName": "Enable-PnPCommSite", + "Id": 292, "Rank": 1 }, { - "Id": 293, - "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "CommandName": "Enable-PnPCommSite", + "Id": 293, "Rank": 2 }, { - "Id": 294, - "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Enable-PnPFeature", + "Id": 294, "Rank": 1 }, { - "Id": 295, - "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "CommandName": "Enable-PnPFeature", + "Id": 295, "Rank": 2 }, { - "Id": 296, - "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "CommandName": "Enable-PnPFeature", + "Id": 296, "Rank": 3 }, { - "Id": 297, - "CommandName": "Enable-PnPPageScheduling", "Command": "Enable-PnPPageScheduling", + "CommandName": "Enable-PnPPageScheduling", + "Id": 297, "Rank": 1 }, { - "Id": 298, - "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry", + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 298, "Rank": 1 }, { - "Id": 299, - "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry -Force", + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 299, "Rank": 2 }, { - "Id": 300, - "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "CommandName": "Enable-PnPSiteClassification", + "Id": 300, "Rank": 1 }, { - "Id": 301, - "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "CommandName": "Enable-PnPSiteClassification", + "Id": 301, "Rank": 2 }, { - "Id": 302, - "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 302, "Rank": 1 }, { - "Id": 303, - "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 303, "Rank": 2 }, { - "Id": 304, - "CommandName": "Export-PnPPage", "Command": "Export-PnPPage -Identity Home.aspx", + "CommandName": "Export-PnPPage", + "Id": 304, "Rank": 1 }, { - "Id": 305, - "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping", + "Id": 305, "Rank": 1 }, { - "Id": 306, - "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping", + "Id": 306, "Rank": 2 }, { - "Id": 307, - "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping", + "Id": 307, "Rank": 3 }, { - "Id": 308, - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy", + "CommandName": "Export-PnPTaxonomy", + "Id": 308, "Rank": 1 }, { - "Id": 309, - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "CommandName": "Export-PnPTaxonomy", + "Id": 309, "Rank": 2 }, { - "Id": 310, - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", + "CommandName": "Export-PnPTaxonomy", + "Id": 310, "Rank": 3 }, { - "Id": 311, - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "CommandName": "Export-PnPTaxonomy", + "Id": 311, "Rank": 4 }, { - "Id": 312, - "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml", + "CommandName": "Export-PnPTermGroupToXml", + "Id": 312, "Rank": 1 }, { - "Id": 313, - "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out output.xml", + "CommandName": "Export-PnPTermGroupToXml", + "Id": 313, "Rank": 2 }, { - "Id": 314, - "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "CommandName": "Export-PnPTermGroupToXml", + "Id": 314, "Rank": 3 }, { - "Id": 315, - "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "CommandName": "Export-PnPUserInfo", + "Id": 315, "Rank": 1 }, { - "Id": 316, - "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-PnPUserInfo", + "Id": 316, "Rank": 2 }, { - "Id": 317, - "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "CommandName": "Export-PnPUserProfile", + "Id": 317, "Rank": 1 }, { - "Id": 318, - "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "CommandName": "Export-PnPUserProfile", + "Id": 318, "Rank": 2 }, { - "Id": 319, - "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Match *.master", + "CommandName": "Find-PnPFile", + "Id": 319, "Rank": 1 }, { - "Id": 320, - "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "CommandName": "Find-PnPFile", + "Id": 320, "Rank": 2 }, { - "Id": 321, - "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "CommandName": "Find-PnPFile", + "Id": 321, "Rank": 3 }, { - "Id": 322, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken", + "CommandName": "Get-PnPAccessToken", + "Id": 322, "Rank": 1 }, { - "Id": 323, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -Decoded", + "CommandName": "Get-PnPAccessToken", + "Id": 323, "Rank": 2 }, { - "Id": 324, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "CommandName": "Get-PnPAccessToken", + "Id": 324, "Rank": 3 }, { - "Id": 325, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "CommandName": "Get-PnPAccessToken", + "Id": 325, "Rank": 4 }, { - "Id": 326, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "CommandName": "Get-PnPAccessToken", + "Id": 326, "Rank": 5 }, { - "Id": 327, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert", + "CommandName": "Get-PnPAlert", + "Id": 327, "Rank": 1 }, { - "Id": 328, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\"", + "CommandName": "Get-PnPAlert", + "Id": 328, "Rank": 2 }, { - "Id": 329, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPAlert", + "Id": 329, "Rank": 3 }, { - "Id": 330, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "CommandName": "Get-PnPAlert", + "Id": 330, "Rank": 4 }, { - "Id": 331, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -AllUsers", + "CommandName": "Get-PnPAlert", + "Id": 331, "Rank": 5 }, { - "Id": 332, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "CommandName": "Get-PnPAlert", + "Id": 332, "Rank": 6 }, { - "Id": 333, - "CommandName": "Get-PnPApp", "Command": "Get-PnPApp", + "CommandName": "Get-PnPApp", + "Id": 333, "Rank": 1 }, { - "Id": 334, - "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Scope Site", + "CommandName": "Get-PnPApp", + "Id": 334, "Rank": 2 }, { - "Id": 335, - "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Get-PnPApp", + "Id": 335, "Rank": 3 }, { - "Id": 336, - "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "CommandName": "Get-PnPAppErrors", + "Id": 336, "Rank": 1 }, { - "Id": 337, - "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "CommandName": "Get-PnPAppErrors", + "Id": 337, "Rank": 2 }, { - "Id": 338, - "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "CommandName": "Get-PnPAppInfo", + "Id": 338, "Rank": 1 }, { - "Id": 339, - "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Get-PnPAppInfo", + "Id": 339, "Rank": 2 }, { - "Id": 340, - "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "CommandName": "Get-PnPAppInfo", + "Id": 340, "Rank": 3 }, { - "Id": 341, - "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer", + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 341, "Rank": 1 }, { - "Id": 342, - "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 342, "Rank": 2 }, { - "Id": 343, - "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 343, "Rank": 3 }, { - "Id": 344, - "CommandName": "Get-PnPAuditing", "Command": "Get-PnPAuditing", + "CommandName": "Get-PnPAuditing", + "Id": 344, "Rank": 1 }, { - "Id": 345, - "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm", + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 345, "Rank": 1 }, { - "Id": 346, - "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 346, "Rank": 2 }, { - "Id": 347, - "CommandName": "Get-PnPAvailableLanguage", "Command": "Get-PnPAvailableLanguage", + "CommandName": "Get-PnPAvailableLanguage", + "Id": 347, "Rank": 1 }, { - "Id": 348, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel", + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 348, "Rank": 1 }, { - "Id": 349, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 349, "Rank": 2 }, { - "Id": 350, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 350, "Rank": 3 }, { - "Id": 351, - "CommandName": "Get-PnPAvailableSiteClassification", "Command": "Get-PnPAvailableSiteClassification", + "CommandName": "Get-PnPAvailableSiteClassification", + "Id": 351, "Rank": 1 }, { - "Id": 352, - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal", + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 352, "Rank": 1 }, { - "Id": 353, - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 353, "Rank": 2 }, { - "Id": 354, - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 354, "Rank": 3 }, { - "Id": 355, - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 355, "Rank": 4 }, { - "Id": 356, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 356, "Rank": 1 }, { - "Id": 357, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 357, "Rank": 2 }, { - "Id": 358, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 358, "Rank": 3 }, { - "Id": 359, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn", + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 359, "Rank": 1 }, { - "Id": 360, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 360, "Rank": 2 }, { - "Id": 361, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 361, "Rank": 3 }, { - "Id": 362, - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp", + "CommandName": "Get-PnPAzureADApp", + "Id": 362, "Rank": 1 }, { - "Id": 363, - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity MyApp", + "CommandName": "Get-PnPAzureADApp", + "Id": 363, "Rank": 2 }, { - "Id": 364, - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Get-PnPAzureADApp", + "Id": 364, "Rank": 3 }, { - "Id": 365, - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPAzureADApp", + "Id": 365, "Rank": 4 }, { - "Id": 366, - "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission", + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 366, "Rank": 1 }, { - "Id": 367, - "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 367, "Rank": 2 }, { - "Id": 368, - "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 368, "Rank": 3 }, { - "Id": 369, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission", + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 369, "Rank": 1 }, { - "Id": 370, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 370, "Rank": 2 }, { - "Id": 371, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 371, "Rank": 3 }, { - "Id": 372, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 372, "Rank": 4 }, { - "Id": 373, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 373, "Rank": 5 }, { - "Id": 374, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup", + "CommandName": "Get-PnPAzureADGroup", + "Id": 374, "Rank": 1 }, { - "Id": 375, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupId", + "CommandName": "Get-PnPAzureADGroup", + "Id": 375, "Rank": 2 }, { - "Id": 376, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "CommandName": "Get-PnPAzureADGroup", + "Id": 376, "Rank": 3 }, { - "Id": 377, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "CommandName": "Get-PnPAzureADGroup", + "Id": 377, "Rank": 4 }, { - "Id": 378, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $group", + "CommandName": "Get-PnPAzureADGroup", + "Id": 378, "Rank": 5 }, { - "Id": 379, - "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 379, "Rank": 1 }, { - "Id": 380, - "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $group", + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 380, "Rank": 2 }, { - "Id": 381, - "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 381, "Rank": 1 }, { - "Id": 382, - "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 382, "Rank": 2 }, { - "Id": 383, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal", + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 383, "Rank": 1 }, { - "Id": 384, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 384, "Rank": 2 }, { - "Id": 385, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 385, "Rank": 3 }, { - "Id": 386, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 386, "Rank": 4 }, { - "Id": 387, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 387, "Rank": 5 }, { - "Id": 388, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 388, "Rank": 1 }, { - "Id": 389, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 389, "Rank": 2 }, { - "Id": 390, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 390, "Rank": 1 }, { - "Id": 391, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 391, "Rank": 2 }, { - "Id": 392, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser", + "CommandName": "Get-PnPAzureADUser", + "Id": 392, "Rank": 1 }, { - "Id": 393, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -EndIndex 50", + "CommandName": "Get-PnPAzureADUser", + "Id": 393, "Rank": 2 }, { - "Id": 394, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "CommandName": "Get-PnPAzureADUser", + "Id": 394, "Rank": 3 }, { - "Id": 395, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "CommandName": "Get-PnPAzureADUser", + "Id": 395, "Rank": 4 }, { - "Id": 396, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "CommandName": "Get-PnPAzureADUser", + "Id": 396, "Rank": 5 }, { - "Id": 397, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "CommandName": "Get-PnPAzureADUser", + "Id": 397, "Rank": 6 }, { - "Id": 398, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "CommandName": "Get-PnPAzureADUser", + "Id": 398, "Rank": 7 }, { - "Id": 399, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta", + "CommandName": "Get-PnPAzureADUser", + "Id": 399, "Rank": 8 }, { - "Id": 400, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "CommandName": "Get-PnPAzureADUser", + "Id": 400, "Rank": 9 }, { - "Id": 401, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "CommandName": "Get-PnPAzureADUser", + "Id": 401, "Rank": 10 }, { - "Id": 402, - "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "CommandName": "Get-PnPAzureCertificate", + "Id": 402, "Rank": 1 }, { - "Id": 403, - "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "CommandName": "Get-PnPAzureCertificate", + "Id": 403, "Rank": 2 }, { - "Id": 404, - "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "CommandName": "Get-PnPAzureCertificate", + "Id": 404, "Rank": 3 }, { - "Id": 405, - "CommandName": "Get-PnPBrowserIdleSignout", "Command": "Get-PnPBrowserIdleSignout", + "CommandName": "Get-PnPBrowserIdleSignout", + "Id": 405, "Rank": 1 }, { - "Id": 406, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 406, "Rank": 1 }, { - "Id": 407, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility", + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 407, "Rank": 2 }, { - "Id": 408, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 408, "Rank": 1 }, { - "Id": 409, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 409, "Rank": 2 }, { - "Id": 410, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 410, "Rank": 3 }, { - "Id": 411, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 411, "Rank": 4 }, { - "Id": 412, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 412, "Rank": 5 }, { - "Id": 413, - "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog", + "CommandName": "Get-PnPChangeLog", + "Id": 413, "Rank": 1 }, { - "Id": 414, - "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog -Nightly", + "CommandName": "Get-PnPChangeLog", + "Id": 414, "Rank": 2 }, { - "Id": 415, - "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 415, "Rank": 1 }, { - "Id": 416, - "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 416, "Rank": 2 }, { - "Id": 417, - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType", + "CommandName": "Get-PnPContentType", + "Id": 417, "Rank": 1 }, { - "Id": 418, - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -InSiteHierarchy", + "CommandName": "Get-PnPContentType", + "Id": 418, "Rank": 2 }, { - "Id": 419, - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Identity \"Project Document\"", + "CommandName": "Get-PnPContentType", + "Id": 419, "Rank": 3 }, { - "Id": 420, - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -List \"Documents\"", + "CommandName": "Get-PnPContentType", + "Id": 420, "Rank": 4 }, { - "Id": 421, - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Includes \"SchemaXml\"", + "CommandName": "Get-PnPContentType", + "Id": 421, "Rank": 5 }, { - "Id": 422, - "CommandName": "Get-PnPContentTypePublishingStatus", "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "CommandName": "Get-PnPContentTypePublishingStatus", + "Id": 422, "Rank": 1 }, { - "Id": 423, - "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction", + "CommandName": "Get-PnPCustomAction", + "Id": 423, "Rank": 1 }, { - "Id": 424, - "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Get-PnPCustomAction", + "Id": 424, "Rank": 2 }, { - "Id": 425, - "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Scope web", + "CommandName": "Get-PnPCustomAction", + "Id": 425, "Rank": 3 }, { - "Id": 426, - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group", + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 426, "Rank": 1 }, { - "Id": 427, - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 427, "Rank": 2 }, { - "Id": 428, - "CommandName": "Get-PnPDeletedTeam", "Command": "Get-PnPDeletedTeam", + "CommandName": "Get-PnPDeletedTeam", + "Id": 428, "Rank": 1 }, { - "Id": 429, - "CommandName": "Get-PnPDiagnostics", "Command": "Get-PnPDiagnostics", + "CommandName": "Get-PnPDiagnostics", + "Id": 429, "Rank": 1 }, { - "Id": 430, - "CommandName": "Get-PnPDisableSpacesActivation", "Command": "Get-PnPDisableSpacesActivation", + "CommandName": "Get-PnPDisableSpacesActivation", + "Id": 430, "Rank": 1 }, { - "Id": 431, - "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 431, "Rank": 1 }, { - "Id": 432, - "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 432, "Rank": 2 }, { - "Id": 433, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver", + "CommandName": "Get-PnPEventReceiver", + "Id": 433, "Rank": 1 }, { - "Id": 434, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPEventReceiver", + "Id": 434, "Rank": 2 }, { - "Id": 435, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "CommandName": "Get-PnPEventReceiver", + "Id": 435, "Rank": 3 }, { - "Id": 436, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "CommandName": "Get-PnPEventReceiver", + "Id": 436, "Rank": 4 }, { - "Id": 437, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPEventReceiver", + "Id": 437, "Rank": 5 }, { - "Id": 438, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "CommandName": "Get-PnPEventReceiver", + "Id": 438, "Rank": 6 }, { - "Id": 439, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Site", + "CommandName": "Get-PnPEventReceiver", + "Id": 439, "Rank": 7 }, { - "Id": 440, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Web", + "CommandName": "Get-PnPEventReceiver", + "Id": 440, "Rank": 8 }, { - "Id": 441, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope All", + "CommandName": "Get-PnPEventReceiver", + "Id": 441, "Rank": 9 }, { - "Id": 442, - "CommandName": "Get-PnPException", "Command": "Get-PnPException", + "CommandName": "Get-PnPException", + "Id": 442, "Rank": 1 }, { - "Id": 443, - "CommandName": "Get-PnPException", "Command": "Get-PnPException -All", + "CommandName": "Get-PnPException", + "Id": 443, "Rank": 2 }, { - "Id": 444, - "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "CommandName": "Get-PnPExternalUser", + "Id": 444, "Rank": 1 }, { - "Id": 445, - "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "CommandName": "Get-PnPExternalUser", + "Id": 445, "Rank": 2 }, { - "Id": 446, - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature", + "CommandName": "Get-PnPFeature", + "Id": 446, "Rank": 1 }, { - "Id": 447, - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Scope Site", + "CommandName": "Get-PnPFeature", + "Id": 447, "Rank": 2 }, { - "Id": 448, - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPFeature", + "Id": 448, "Rank": 3 }, { - "Id": 449, - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "CommandName": "Get-PnPFeature", + "Id": 449, "Rank": 4 }, { - "Id": 450, - "CommandName": "Get-PnPField", "Command": "Get-PnPField", + "CommandName": "Get-PnPField", + "Id": 450, "Rank": 1 }, { - "Id": 451, - "CommandName": "Get-PnPField", "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "CommandName": "Get-PnPField", + "Id": 451, "Rank": 2 }, { - "Id": 452, - "CommandName": "Get-PnPField", "Command": "Get-PnPField -Group \"Custom Columns\"", + "CommandName": "Get-PnPField", + "Id": 452, "Rank": 3 }, { - "Id": 453, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "CommandName": "Get-PnPFile", + "Id": 453, "Rank": 1 }, { - "Id": 454, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "CommandName": "Get-PnPFile", + "Id": 454, "Rank": 2 }, { - "Id": 455, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "CommandName": "Get-PnPFile", + "Id": 455, "Rank": 3 }, { - "Id": 456, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "CommandName": "Get-PnPFile", + "Id": 456, "Rank": 4 }, { - "Id": 457, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "CommandName": "Get-PnPFile", + "Id": 457, "Rank": 5 }, { - "Id": 458, - "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", + "Id": 458, "Rank": 6 }, { - "Id": 459, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "CommandName": "Get-PnPFile", + "Id": 459, "Rank": 7 }, { - "Id": 460, - "CommandName": "Get-PnPFileSharingLink", "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Get-PnPFileSharingLink", + "Id": 460, "Rank": 1 }, { - "Id": 461, - "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "CommandName": "Get-PnPFileVersion", + "Id": 461, "Rank": 1 }, { - "Id": 462, - "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "CommandName": "Get-PnPFileVersion", + "Id": 462, "Rank": 2 }, { - "Id": 463, - "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -AsAdmin", + "CommandName": "Get-PnPFlow", + "Id": 463, "Rank": 1 }, { - "Id": 464, - "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "CommandName": "Get-PnPFlow", + "Id": 464, "Rank": 2 }, { - "Id": 465, - "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "CommandName": "Get-PnPFlow", + "Id": 465, "Rank": 3 }, { - "Id": 466, - "CommandName": "Get-PnPFlowOwner", "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "CommandName": "Get-PnPFlowOwner", + "Id": 466, "Rank": 1 }, { - "Id": 467, - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder", + "CommandName": "Get-PnPFolder", + "Id": 467, "Rank": 1 }, { - "Id": 468, - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "CommandName": "Get-PnPFolder", + "Id": 468, "Rank": 2 }, { - "Id": 469, - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "CommandName": "Get-PnPFolder", + "Id": 469, "Rank": 3 }, { - "Id": 470, - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -List \"Shared Documents\"", + "CommandName": "Get-PnPFolder", + "Id": 470, "Rank": 4 }, { - "Id": 471, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile", + "CommandName": "Get-PnPFolderFile", + "Id": 471, "Rank": 1 }, { - "Id": 472, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -Recurse", + "CommandName": "Get-PnPFolderFile", + "Id": 472, "Rank": 2 }, { - "Id": 473, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderFile", + "Id": 473, "Rank": 3 }, { - "Id": 474, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "CommandName": "Get-PnPFolderFile", + "Id": 474, "Rank": 4 }, { - "Id": 475, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderFile", + "Id": 475, "Rank": 5 }, { - "Id": 476, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder", + "CommandName": "Get-PnPFolderFolder", + "Id": 476, "Rank": 1 }, { - "Id": 477, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Recurse", + "CommandName": "Get-PnPFolderFolder", + "Id": 477, "Rank": 2 }, { - "Id": 478, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderFolder", + "Id": 478, "Rank": 3 }, { - "Id": 479, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "CommandName": "Get-PnPFolderFolder", + "Id": 479, "Rank": 4 }, { - "Id": 480, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "CommandName": "Get-PnPFolderFolder", + "Id": 480, "Rank": 5 }, { - "Id": 481, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderFolder", + "Id": 481, "Rank": 6 }, { - "Id": 482, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem", + "CommandName": "Get-PnPFolderItem", + "Id": 482, "Rank": 1 }, { - "Id": 483, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Recurse", + "CommandName": "Get-PnPFolderItem", + "Id": 483, "Rank": 2 }, { - "Id": 484, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderItem", + "Id": 484, "Rank": 3 }, { - "Id": 485, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "CommandName": "Get-PnPFolderItem", + "Id": 485, "Rank": 4 }, { - "Id": 486, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "CommandName": "Get-PnPFolderItem", + "Id": 486, "Rank": 5 }, { - "Id": 487, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderItem", + "Id": 487, "Rank": 6 }, { - "Id": 488, - "CommandName": "Get-PnPFolderSharingLink", "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Get-PnPFolderSharingLink", + "Id": 488, "Rank": 1 }, { - "Id": 489, - "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric", + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 489, "Rank": 1 }, { - "Id": 490, - "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 490, "Rank": 2 }, { - "Id": 491, - "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 491, "Rank": 3 }, { - "Id": 492, - "CommandName": "Get-PnPFooter", "Command": "Get-PnPFooter", + "CommandName": "Get-PnPFooter", + "Id": 492, "Rank": 1 }, { - "Id": 493, - "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken", + "CommandName": "Get-PnPGraphAccessToken", + "Id": 493, "Rank": 1 }, { - "Id": 494, - "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken -Decoded", + "CommandName": "Get-PnPGraphAccessToken", + "Id": 494, "Rank": 2 }, { - "Id": 495, - "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription", + "CommandName": "Get-PnPGraphSubscription", + "Id": 495, "Rank": 1 }, { - "Id": 496, - "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "CommandName": "Get-PnPGraphSubscription", + "Id": 496, "Rank": 2 }, { - "Id": 497, - "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup", + "CommandName": "Get-PnPGroup", + "Id": 497, "Rank": 1 }, { - "Id": 498, - "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -Identity 'My Site Users'", + "CommandName": "Get-PnPGroup", + "Id": 498, "Rank": 2 }, { - "Id": 499, - "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -AssociatedMemberGroup", + "CommandName": "Get-PnPGroup", + "Id": 499, "Rank": 3 }, { - "Id": 500, - "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "CommandName": "Get-PnPGroupMember", + "Id": 500, "Rank": 1 }, { - "Id": 501, - "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "CommandName": "Get-PnPGroupMember", + "Id": 501, "Rank": 2 }, { - "Id": 502, - "CommandName": "Get-PnPGroupPermissions", "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "CommandName": "Get-PnPGroupPermissions", + "Id": 502, "Rank": 1 }, { - "Id": 503, - "CommandName": "Get-PnPHideDefaultThemes", "Command": "Get-PnPHideDefaultThemes", + "CommandName": "Get-PnPHideDefaultThemes", + "Id": 503, "Rank": 1 }, { - "Id": 504, - "CommandName": "Get-PnPHomePage", "Command": "Get-PnPHomePage", + "CommandName": "Get-PnPHomePage", + "Id": 504, "Rank": 1 }, { - "Id": 505, - "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite", + "CommandName": "Get-PnPHomeSite", + "Id": 505, "Rank": 1 }, { - "Id": 506, - "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "CommandName": "Get-PnPHomeSite", + "Id": 506, "Rank": 2 }, { - "Id": 507, - "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -Detailed", + "CommandName": "Get-PnPHomeSite", + "Id": 507, "Rank": 3 }, { - "Id": 508, - "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite", + "CommandName": "Get-PnPHubSite", + "Id": 508, "Rank": 1 }, { - "Id": 509, - "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "CommandName": "Get-PnPHubSite", + "Id": 509, "Rank": 2 }, { - "Id": 510, - "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "CommandName": "Get-PnPHubSite", + "Id": 510, "Rank": 3 }, { - "Id": 511, - "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild", + "CommandName": "Get-PnPHubSiteChild", + "Id": 511, "Rank": 1 }, { - "Id": 512, - "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "CommandName": "Get-PnPHubSiteChild", + "Id": 512, "Rank": 2 }, { - "Id": 513, - "CommandName": "Get-PnPInPlaceRecordsManagement", "Command": "Get-PnPInPlaceRecordsManagement", + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Id": 513, "Rank": 1 }, { - "Id": 514, - "CommandName": "Get-PnPIsSiteAliasAvailable", "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Id": 514, "Rank": 1 }, { - "Id": 515, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink", + "CommandName": "Get-PnPJavaScriptLink", + "Id": 515, "Rank": 1 }, { - "Id": 516, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope All", + "CommandName": "Get-PnPJavaScriptLink", + "Id": 516, "Rank": 2 }, { - "Id": 517, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Web", + "CommandName": "Get-PnPJavaScriptLink", + "Id": 517, "Rank": 3 }, { - "Id": 518, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Site", + "CommandName": "Get-PnPJavaScriptLink", + "Id": 518, "Rank": 4 }, { - "Id": 519, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Name Test", + "CommandName": "Get-PnPJavaScriptLink", + "Id": 519, "Rank": 5 }, { - "Id": 520, - "CommandName": "Get-PnPKnowledgeHubSite", "Command": "Get-PnPKnowledgeHubSite", + "CommandName": "Get-PnPKnowledgeHubSite", + "Id": 520, "Rank": 1 }, { - "Id": 521, - "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel", + "CommandName": "Get-PnPLabel", + "Id": 521, "Rank": 1 }, { - "Id": 522, - "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "CommandName": "Get-PnPLabel", + "Id": 522, "Rank": 2 }, { - "Id": 523, - "CommandName": "Get-PnPLargeListOperationStatus", "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "CommandName": "Get-PnPLargeListOperationStatus", + "Id": 523, "Rank": 1 }, { - "Id": 524, - "CommandName": "Get-PnPList", "Command": "Get-PnPList", + "CommandName": "Get-PnPList", + "Id": 524, "Rank": 1 }, { - "Id": 525, - "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Get-PnPList", + "Id": 525, "Rank": 2 }, { - "Id": 526, - "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity Lists/Announcements", + "CommandName": "Get-PnPList", + "Id": 526, "Rank": 3 }, { - "Id": 527, - "CommandName": "Get-PnPList", "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "CommandName": "Get-PnPList", + "Id": 527, "Rank": 4 }, { - "Id": 528, - "CommandName": "Get-PnPList", "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "CommandName": "Get-PnPList", + "Id": 528, "Rank": 5 }, { - "Id": 529, - "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign", + "CommandName": "Get-PnPListDesign", + "Id": 529, "Rank": 1 }, { - "Id": 530, - "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPListDesign", + "Id": 530, "Rank": 2 }, { - "Id": 531, - "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity ListEvent", + "CommandName": "Get-PnPListDesign", + "Id": 531, "Rank": 3 }, { - "Id": 532, - "CommandName": "Get-PnPListInformationRightsManagement", "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "CommandName": "Get-PnPListInformationRightsManagement", + "Id": 532, "Rank": 1 }, { - "Id": 533, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks", + "CommandName": "Get-PnPListItem", + "Id": 533, "Rank": 1 }, { - "Id": 534, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1", + "CommandName": "Get-PnPListItem", + "Id": 534, "Rank": 2 }, { - "Id": 535, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "CommandName": "Get-PnPListItem", + "Id": 535, "Rank": 3 }, { - "Id": 536, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "CommandName": "Get-PnPListItem", + "Id": 536, "Rank": 4 }, { - "Id": 537, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "CommandName": "Get-PnPListItem", + "Id": 537, "Rank": 5 }, { - "Id": 538, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "CommandName": "Get-PnPListItem", + "Id": 538, "Rank": 6 }, { - "Id": 539, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", + "CommandName": "Get-PnPListItem", + "Id": 539, "Rank": 7 }, { - "Id": 540, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "CommandName": "Get-PnPListItem", + "Id": 540, "Rank": 8 }, { - "Id": 541, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "CommandName": "Get-PnPListItem", + "Id": 541, "Rank": 9 }, { - "Id": 542, - "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", + "CommandName": "Get-PnPListItemAttachment", + "Id": 542, "Rank": 1 }, { - "Id": 543, - "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "CommandName": "Get-PnPListItemAttachment", + "Id": 543, "Rank": 2 }, { - "Id": 544, - "CommandName": "Get-PnPListItemComment", "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "CommandName": "Get-PnPListItemComment", + "Id": 544, "Rank": 1 }, { - "Id": 545, - "CommandName": "Get-PnPListItemPermission", "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "CommandName": "Get-PnPListItemPermission", + "Id": 545, "Rank": 1 }, { - "Id": 546, - "CommandName": "Get-PnPListItemVersion", "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "CommandName": "Get-PnPListItemVersion", + "Id": 546, "Rank": 1 }, { - "Id": 547, - "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "CommandName": "Get-PnPListPermissions", + "Id": 547, "Rank": 1 }, { - "Id": 548, - "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "CommandName": "Get-PnPListPermissions", + "Id": 548, "Rank": 2 }, { - "Id": 549, - "CommandName": "Get-PnPListRecordDeclaration", "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "CommandName": "Get-PnPListRecordDeclaration", + "Id": 549, "Rank": 1 }, { - "Id": 550, - "CommandName": "Get-PnPMasterPage", "Command": "Get-PnPMasterPage", + "CommandName": "Get-PnPMasterPage", + "Id": 550, "Rank": 1 }, { - "Id": 551, - "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement", + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 551, "Rank": 1 }, { - "Id": 552, - "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 552, "Rank": 2 }, { - "Id": 553, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup", + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 553, "Rank": 1 }, { - "Id": 554, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 554, "Rank": 2 }, { - "Id": 555, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group", + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 555, "Rank": 1 }, { - "Id": 556, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 556, "Rank": 2 }, { - "Id": 557, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 557, "Rank": 3 }, { - "Id": 558, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 558, "Rank": 4 }, { - "Id": 559, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $group", + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 559, "Rank": 5 }, { - "Id": 560, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 560, "Rank": 6 }, { - "Id": 561, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 561, "Rank": 1 }, { - "Id": 562, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 562, "Rank": 2 }, { - "Id": 563, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 563, "Rank": 3 }, { - "Id": 564, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 564, "Rank": 1 }, { - "Id": 565, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 565, "Rank": 2 }, { - "Id": 566, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 566, "Rank": 3 }, { - "Id": 567, - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 567, "Rank": 1 }, { - "Id": 568, - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 568, "Rank": 2 }, { - "Id": 569, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings", + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 569, "Rank": 1 }, { - "Id": 570, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 570, "Rank": 2 }, { - "Id": 571, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 571, "Rank": 1 }, { - "Id": 572, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 572, "Rank": 2 }, { - "Id": 573, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam", + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 573, "Rank": 1 }, { - "Id": 574, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 574, "Rank": 2 }, { - "Id": 575, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 575, "Rank": 3 }, { - "Id": 576, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 576, "Rank": 1 }, { - "Id": 577, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 577, "Rank": 2 }, { - "Id": 578, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 578, "Rank": 3 }, { - "Id": 579, - "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode", + "CommandName": "Get-PnPNavigationNode", + "Id": 579, "Rank": 1 }, { - "Id": 580, - "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "CommandName": "Get-PnPNavigationNode", + "Id": 580, "Rank": 2 }, { - "Id": 581, - "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "CommandName": "Get-PnPNavigationNode", + "Id": 581, "Rank": 3 }, { - "Id": 582, - "CommandName": "Get-PnPOrgAssetsLibrary", "Command": "Get-PnPOrgAssetsLibrary", + "CommandName": "Get-PnPOrgAssetsLibrary", + "Id": 582, "Rank": 1 }, { - "Id": 583, - "CommandName": "Get-PnPOrgNewsSite", "Command": "Get-PnPOrgNewsSite", + "CommandName": "Get-PnPOrgNewsSite", + "Id": 583, "Rank": 1 }, { - "Id": 584, - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "CommandName": "Get-PnPPage", + "Id": 584, "Rank": 1 }, { - "Id": 585, - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"MyPage\"", + "CommandName": "Get-PnPPage", + "Id": 585, "Rank": 2 }, { - "Id": 586, - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "CommandName": "Get-PnPPage", + "Id": 586, "Rank": 3 }, { - "Id": 587, - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "CommandName": "Get-PnPPage", + "Id": 587, "Rank": 4 }, { - "Id": 588, - "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home", + "CommandName": "Get-PnPPageComponent", + "Id": 588, "Rank": 1 }, { - "Id": 589, - "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPPageComponent", + "Id": 589, "Rank": 2 }, { - "Id": 590, - "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "CommandName": "Get-PnPPageComponent", + "Id": 590, "Rank": 3 }, { - "Id": 591, - "CommandName": "Get-PnPPlannerBucket", "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "CommandName": "Get-PnPPlannerBucket", + "Id": 591, "Rank": 1 }, { - "Id": 592, - "CommandName": "Get-PnPPlannerConfiguration", "Command": "Get-PnPPlannerConfiguration", + "CommandName": "Get-PnPPlannerConfiguration", + "Id": 592, "Rank": 1 }, { - "Id": 593, - "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "CommandName": "Get-PnPPlannerPlan", + "Id": 593, "Rank": 1 }, { - "Id": 594, - "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "CommandName": "Get-PnPPlannerPlan", + "Id": 594, "Rank": 2 }, { - "Id": 595, - "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "CommandName": "Get-PnPPlannerPlan", + "Id": 595, "Rank": 3 }, { - "Id": 596, - "CommandName": "Get-PnPPlannerRosterMember", "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "CommandName": "Get-PnPPlannerRosterMember", + "Id": 596, "Rank": 1 }, { - "Id": 597, - "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 597, "Rank": 1 }, { - "Id": 598, - "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 598, "Rank": 2 }, { - "Id": 599, - "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "CommandName": "Get-PnPPlannerTask", + "Id": 599, "Rank": 1 }, { - "Id": 600, - "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "CommandName": "Get-PnPPlannerTask", + "Id": 600, "Rank": 2 }, { - "Id": 601, - "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "CommandName": "Get-PnPPlannerTask", + "Id": 601, "Rank": 3 }, { - "Id": 602, - "CommandName": "Get-PnPPlannerUserPolicy", "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPPlannerUserPolicy", + "Id": 602, "Rank": 1 }, { - "Id": 603, - "CommandName": "Get-PnPPowerPlatformConnector", "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "CommandName": "Get-PnPPowerPlatformConnector", + "Id": 603, "Rank": 1 }, { - "Id": 604, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment", + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 604, "Rank": 1 }, { - "Id": 605, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 605, "Rank": 2 }, { - "Id": 606, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 606, "Rank": 3 }, { - "Id": 607, - "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Command": "Get-PnPPowerShellTelemetryEnabled", + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Id": 607, "Rank": 1 }, { - "Id": 608, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag", + "CommandName": "Get-PnPPropertyBag", + "Id": 608, "Rank": 1 }, { - "Id": 609, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Key MyKey", + "CommandName": "Get-PnPPropertyBag", + "Id": 609, "Rank": 2 }, { - "Id": 610, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "CommandName": "Get-PnPPropertyBag", + "Id": 610, "Rank": 3 }, { - "Id": 611, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "CommandName": "Get-PnPPropertyBag", + "Id": 611, "Rank": 4 }, { - "Id": 612, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "CommandName": "Get-PnPPropertyBag", + "Id": 612, "Rank": 5 }, { - "Id": 613, - "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition", + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 613, "Rank": 1 }, { - "Id": 614, - "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 614, "Rank": 2 }, { - "Id": 615, - "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity 2", + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 615, "Rank": 3 }, { - "Id": 616, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem", + "CommandName": "Get-PnPRecycleBinItem", + "Id": 616, "Rank": 1 }, { - "Id": 617, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "CommandName": "Get-PnPRecycleBinItem", + "Id": 617, "Rank": 2 }, { - "Id": 618, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -FirstStage", + "CommandName": "Get-PnPRecycleBinItem", + "Id": 618, "Rank": 3 }, { - "Id": 619, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -SecondStage", + "CommandName": "Get-PnPRecycleBinItem", + "Id": 619, "Rank": 4 }, { - "Id": 620, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "CommandName": "Get-PnPRecycleBinItem", + "Id": 620, "Rank": 5 }, { - "Id": 621, - "CommandName": "Get-PnPRequestAccessEmails", "Command": "Get-PnPRequestAccessEmails", + "CommandName": "Get-PnPRequestAccessEmails", + "Id": 621, "Rank": 1 }, { - "Id": 622, - "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel", + "CommandName": "Get-PnPRetentionLabel", + "Id": 622, "Rank": 1 }, { - "Id": 623, - "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "CommandName": "Get-PnPRetentionLabel", + "Id": 623, "Rank": 2 }, { - "Id": 624, - "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition", + "CommandName": "Get-PnPRoleDefinition", + "Id": 624, "Rank": 1 }, { - "Id": 625, - "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition -Identity Read", + "CommandName": "Get-PnPRoleDefinition", + "Id": 625, "Rank": 2 }, { - "Id": 626, - "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "CommandName": "Get-PnPRoleDefinition", + "Id": 626, "Rank": 3 }, { - "Id": 627, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 627, "Rank": 1 }, { - "Id": 628, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 628, "Rank": 2 }, { - "Id": 629, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 629, "Rank": 3 }, { - "Id": 630, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 630, "Rank": 4 }, { - "Id": 631, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 631, "Rank": 5 }, { - "Id": 632, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 632, "Rank": 6 }, { - "Id": 633, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 633, "Rank": 7 }, { - "Id": 634, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 634, "Rank": 8 }, { - "Id": 635, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog", + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 635, "Rank": 1 }, { - "Id": 636, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 636, "Rank": 2 }, { - "Id": 637, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 637, "Rank": 3 }, { - "Id": 638, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 638, "Rank": 4 }, { - "Id": 639, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 639, "Rank": 5 }, { - "Id": 640, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 640, "Rank": 6 }, { - "Id": 641, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 641, "Rank": 7 }, { - "Id": 642, - "CommandName": "Get-PnPSearchSettings", "Command": "Get-PnPSearchSettings", + "CommandName": "Get-PnPSearchSettings", + "Id": 642, "Rank": 1 }, { - "Id": 643, - "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth", + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 643, "Rank": 1 }, { - "Id": 644, - "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 644, "Rank": 2 }, { - "Id": 645, - "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue", + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 645, "Rank": 1 }, { - "Id": 646, - "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 646, "Rank": 2 }, { - "Id": 647, - "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn", + "CommandName": "Get-PnPSharePointAddIn", + "Id": 647, "Rank": 1 }, { - "Id": 648, - "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "CommandName": "Get-PnPSharePointAddIn", + "Id": 648, "Rank": 2 }, { - "Id": 649, - "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Command": "Get-PnPSharingForNonOwnersOfSite", + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Id": 649, "Rank": 1 }, { - "Id": 650, - "CommandName": "Get-PnPSite", "Command": "Get-PnPSite", + "CommandName": "Get-PnPSite", + "Id": 650, "Rank": 1 }, { - "Id": 651, - "CommandName": "Get-PnPSite", "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "CommandName": "Get-PnPSite", + "Id": 651, "Rank": 2 }, { - "Id": 652, - "CommandName": "Get-PnPSiteClosure", "Command": "Get-PnPSiteClosure", + "CommandName": "Get-PnPSiteClosure", + "Id": 652, "Rank": 1 }, { - "Id": 653, - "CommandName": "Get-PnPSiteCollectionAdmin", "Command": "Get-PnPSiteCollectionAdmin", + "CommandName": "Get-PnPSiteCollectionAdmin", + "Id": 653, "Rank": 1 }, { - "Id": 654, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog", + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 654, "Rank": 1 }, { - "Id": 655, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 655, "Rank": 2 }, { - "Id": 656, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 656, "Rank": 3 }, { - "Id": 657, - "CommandName": "Get-PnPSiteCollectionTermStore", "Command": "Get-PnPSiteCollectionTermStore", + "CommandName": "Get-PnPSiteCollectionTermStore", + "Id": 657, "Rank": 1 }, { - "Id": 658, - "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign", + "CommandName": "Get-PnPSiteDesign", + "Id": 658, "Rank": 1 }, { - "Id": 659, - "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteDesign", + "Id": 659, "Rank": 2 }, { - "Id": 660, - "CommandName": "Get-PnPSiteDesignRights", "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteDesignRights", + "Id": 660, "Rank": 1 }, { - "Id": 661, - "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun", + "CommandName": "Get-PnPSiteDesignRun", + "Id": 661, "Rank": 1 }, { - "Id": 662, - "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "CommandName": "Get-PnPSiteDesignRun", + "Id": 662, "Rank": 2 }, { - "Id": 663, - "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "CommandName": "Get-PnPSiteDesignTask", + "Id": 663, "Rank": 1 }, { - "Id": 664, - "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask", + "CommandName": "Get-PnPSiteDesignTask", + "Id": 664, "Rank": 2 }, { - "Id": 665, - "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "CommandName": "Get-PnPSiteDesignTask", + "Id": 665, "Rank": 3 }, { - "Id": 666, - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup", + "CommandName": "Get-PnPSiteGroup", + "Id": 666, "Rank": 1 }, { - "Id": 667, - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "CommandName": "Get-PnPSiteGroup", + "Id": 667, "Rank": 2 }, { - "Id": 668, - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "CommandName": "Get-PnPSiteGroup", + "Id": 668, "Rank": 3 }, { - "Id": 669, - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "CommandName": "Get-PnPSiteGroup", + "Id": 669, "Rank": 4 }, { - "Id": 670, - "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy", + "CommandName": "Get-PnPSitePolicy", + "Id": 670, "Rank": 1 }, { - "Id": 671, - "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -AllAvailable", + "CommandName": "Get-PnPSitePolicy", + "Id": 671, "Rank": 2 }, { - "Id": 672, - "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "CommandName": "Get-PnPSitePolicy", + "Id": 672, "Rank": 3 }, { - "Id": 673, - "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript", + "CommandName": "Get-PnPSiteScript", + "Id": 673, "Rank": 1 }, { - "Id": 674, - "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteScript", + "Id": 674, "Rank": 2 }, { - "Id": 675, - "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 675, "Rank": 1 }, { - "Id": 676, - "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 676, "Rank": 2 }, { - "Id": 677, - "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 677, "Rank": 3 }, { - "Id": 678, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 678, "Rank": 1 }, { - "Id": 679, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 679, "Rank": 2 }, { - "Id": 680, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 680, "Rank": 3 }, { - "Id": 681, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 681, "Rank": 4 }, { - "Id": 682, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 682, "Rank": 5 }, { - "Id": 683, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 683, "Rank": 6 }, { - "Id": 684, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 684, "Rank": 1 }, { - "Id": 685, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 685, "Rank": 2 }, { - "Id": 686, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 686, "Rank": 3 }, { - "Id": 687, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 687, "Rank": 4 }, { - "Id": 688, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 688, "Rank": 5 }, { - "Id": 689, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -All", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 689, "Rank": 6 }, { - "Id": 690, - "CommandName": "Get-PnPSiteSensitivityLabel", "Command": "Get-PnPSiteSensitivityLabel", + "CommandName": "Get-PnPSiteSensitivityLabel", + "Id": 690, "Rank": 1 }, { - "Id": 691, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp", + "CommandName": "Get-PnPSiteTemplate", + "Id": 691, "Rank": 1 }, { - "Id": 692, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml", + "CommandName": "Get-PnPSiteTemplate", + "Id": 692, "Rank": 2 }, { - "Id": 693, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.md", + "CommandName": "Get-PnPSiteTemplate", + "Id": 693, "Rank": 3 }, { - "Id": 694, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "CommandName": "Get-PnPSiteTemplate", + "Id": 694, "Rank": 4 }, { - "Id": 695, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "CommandName": "Get-PnPSiteTemplate", + "Id": 695, "Rank": 5 }, { - "Id": 696, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "CommandName": "Get-PnPSiteTemplate", + "Id": 696, "Rank": 6 }, { - "Id": 697, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "CommandName": "Get-PnPSiteTemplate", + "Id": 697, "Rank": 7 }, { - "Id": 698, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "CommandName": "Get-PnPSiteTemplate", + "Id": 698, "Rank": 8 }, { - "Id": 699, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "CommandName": "Get-PnPSiteTemplate", + "Id": 699, "Rank": 9 }, { - "Id": 700, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "CommandName": "Get-PnPSiteTemplate", + "Id": 700, "Rank": 10 }, { - "Id": 701, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "CommandName": "Get-PnPSiteTemplate", + "Id": 701, "Rank": 11 }, { - "Id": 702, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "CommandName": "Get-PnPSiteTemplate", + "Id": 702, "Rank": 12 }, { - "Id": 703, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", + "CommandName": "Get-PnPSiteTemplate", + "Id": 703, "Rank": 13 }, { - "Id": 704, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "CommandName": "Get-PnPSiteTemplate", + "Id": 704, "Rank": 14 }, { - "Id": 705, - "CommandName": "Get-PnPSiteUserInvitations", "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "CommandName": "Get-PnPSiteUserInvitations", + "Id": 705, "Rank": 1 }, { - "Id": 706, - "CommandName": "Get-PnPSiteVersionPolicy", "Command": "Get-PnPSiteVersionPolicy", + "CommandName": "Get-PnPSiteVersionPolicy", + "Id": 706, "Rank": 1 }, { - "Id": 707, - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity", + "CommandName": "Get-PnPStorageEntity", + "Id": 707, "Rank": 1 }, { - "Id": 708, - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey", + "CommandName": "Get-PnPStorageEntity", + "Id": 708, "Rank": 2 }, { - "Id": 709, - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Scope Site", + "CommandName": "Get-PnPStorageEntity", + "Id": 709, "Rank": 3 }, { - "Id": 710, - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "CommandName": "Get-PnPStorageEntity", + "Id": 710, "Rank": 4 }, { - "Id": 711, - "CommandName": "Get-PnPStoredCredential", "Command": "Get-PnPStoredCredential -Name O365", + "CommandName": "Get-PnPStoredCredential", + "Id": 711, "Rank": 1 }, { - "Id": 712, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Id": 712, "Rank": 1 }, { - "Id": 713, - "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Id": 713, "Rank": 1 }, { - "Id": 714, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Id": 714, "Rank": 1 }, { - "Id": 715, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb", + "CommandName": "Get-PnPSubWeb", + "Id": 715, "Rank": 1 }, { - "Id": 716, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse", + "CommandName": "Get-PnPSubWeb", + "Id": 716, "Rank": 2 }, { - "Id": 717, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "CommandName": "Get-PnPSubWeb", + "Id": 717, "Rank": 3 }, { - "Id": 718, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "CommandName": "Get-PnPSubWeb", + "Id": 718, "Rank": 4 }, { - "Id": 719, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "CommandName": "Get-PnPSubWeb", + "Id": 719, "Rank": 5 }, { - "Id": 720, - "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel", + "CommandName": "Get-PnPSyntexModel", + "Id": 720, "Rank": 1 }, { - "Id": 721, - "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity 1", + "CommandName": "Get-PnPSyntexModel", + "Id": 721, "Rank": 2 }, { - "Id": 722, - "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "CommandName": "Get-PnPSyntexModel", + "Id": 722, "Rank": 3 }, { - "Id": 723, - "CommandName": "Get-PnPSyntexModelPublication", "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "CommandName": "Get-PnPSyntexModelPublication", + "Id": 723, "Rank": 1 }, { - "Id": 724, - "CommandName": "Get-PnPTaxonomyItem", "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "CommandName": "Get-PnPTaxonomyItem", + "Id": 724, "Rank": 1 }, { - "Id": 725, - "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp", + "CommandName": "Get-PnPTeamsApp", + "Id": 725, "Rank": 1 }, { - "Id": 726, - "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "CommandName": "Get-PnPTeamsApp", + "Id": 726, "Rank": 2 }, { - "Id": 727, - "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "CommandName": "Get-PnPTeamsApp", + "Id": 727, "Rank": 3 }, { - "Id": 728, - "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "CommandName": "Get-PnPTeamsChannel", + "Id": 728, "Rank": 1 }, { - "Id": 729, - "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "CommandName": "Get-PnPTeamsChannel", + "Id": 729, "Rank": 2 }, { - "Id": 730, - "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "CommandName": "Get-PnPTeamsChannel", + "Id": 730, "Rank": 3 }, { - "Id": 731, - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 731, "Rank": 1 }, { - "Id": 732, - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 732, "Rank": 2 }, { - "Id": 733, - "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 733, "Rank": 1 }, { - "Id": 734, - "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 734, "Rank": 2 }, { - "Id": 735, - "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 735, "Rank": 1 }, { - "Id": 736, - "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 736, "Rank": 2 }, { - "Id": 737, - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 737, "Rank": 1 }, { - "Id": 738, - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 738, "Rank": 2 }, { - "Id": 739, - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 739, "Rank": 3 }, { - "Id": 740, - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 740, "Rank": 4 }, { - "Id": 741, - "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 741, "Rank": 1 }, { - "Id": 742, - "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 742, "Rank": 2 }, { - "Id": 743, - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "CommandName": "Get-PnPTeamsTab", + "Id": 743, "Rank": 1 }, { - "Id": 744, - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "CommandName": "Get-PnPTeamsTab", + "Id": 744, "Rank": 2 }, { - "Id": 745, - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", + "CommandName": "Get-PnPTeamsTab", + "Id": 745, "Rank": 3 }, { - "Id": 746, - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsTab", + "Id": 746, "Rank": 4 }, { - "Id": 747, - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "CommandName": "Get-PnPTeamsTab", + "Id": 747, "Rank": 5 }, { - "Id": 748, - "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "CommandName": "Get-PnPTeamsTag", + "Id": 748, "Rank": 1 }, { - "Id": 749, - "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "CommandName": "Get-PnPTeamsTag", + "Id": 749, "Rank": 2 }, { - "Id": 750, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam", + "CommandName": "Get-PnPTeamsTeam", + "Id": 750, "Rank": 1 }, { - "Id": 751, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "CommandName": "Get-PnPTeamsTeam", + "Id": 751, "Rank": 2 }, { - "Id": 752, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "CommandName": "Get-PnPTeamsTeam", + "Id": 752, "Rank": 3 }, { - "Id": 753, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "CommandName": "Get-PnPTeamsTeam", + "Id": 753, "Rank": 4 }, { - "Id": 754, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPTeamsTeam", + "Id": 754, "Rank": 5 }, { - "Id": 755, - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam", + "CommandName": "Get-PnPTeamsUser", + "Id": 755, "Rank": 1 }, { - "Id": 756, - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "CommandName": "Get-PnPTeamsUser", + "Id": 756, "Rank": 2 }, { - "Id": 757, - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "CommandName": "Get-PnPTeamsUser", + "Id": 757, "Rank": 3 }, { - "Id": 758, - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "CommandName": "Get-PnPTeamsUser", + "Id": 758, "Rank": 4 }, { - "Id": 759, - "CommandName": "Get-PnPTemporarilyDisableAppBar", "Command": "Get-PnPTemporarilyDisableAppBar", + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Id": 759, "Rank": 1 }, { - "Id": 760, - "CommandName": "Get-PnPTenant", "Command": "Get-PnPTenant", + "CommandName": "Get-PnPTenant", + "Id": 760, "Rank": 1 }, { - "Id": 761, - "CommandName": "Get-PnPTenantAppCatalogUrl", "Command": "Get-PnPTenantAppCatalogUrl", + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Id": 761, "Rank": 1 }, { - "Id": 762, - "CommandName": "Get-PnPTenantCdnEnabled", "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "CommandName": "Get-PnPTenantCdnEnabled", + "Id": 762, "Rank": 1 }, { - "Id": 763, - "CommandName": "Get-PnPTenantCdnOrigin", "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "CommandName": "Get-PnPTenantCdnOrigin", + "Id": 763, "Rank": 1 }, { - "Id": 764, - "CommandName": "Get-PnPTenantCdnPolicies", "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "CommandName": "Get-PnPTenantCdnPolicies", + "Id": 764, "Rank": 1 }, { - "Id": 765, - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite", + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 765, "Rank": 1 }, { - "Id": 766, - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 766, "Rank": 2 }, { - "Id": 767, - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 767, "Rank": 3 }, { - "Id": 768, - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 768, "Rank": 4 }, { - "Id": 769, - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId", + "CommandName": "Get-PnPTenantId", + "Id": 769, "Rank": 1 }, { - "Id": 770, - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId contoso", + "CommandName": "Get-PnPTenantId", + "Id": 770, "Rank": 2 }, { - "Id": 771, - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "CommandName": "Get-PnPTenantId", + "Id": 771, "Rank": 3 }, { - "Id": 772, - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "CommandName": "Get-PnPTenantId", + "Id": 772, "Rank": 4 }, { - "Id": 773, - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "CommandName": "Get-PnPTenantInfo", + "Id": 773, "Rank": 1 }, { - "Id": 774, - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "CommandName": "Get-PnPTenantInfo", + "Id": 774, "Rank": 2 }, { - "Id": 775, - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo", + "CommandName": "Get-PnPTenantInfo", + "Id": 775, "Rank": 3 }, { - "Id": 776, - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -CurrentTenant", + "CommandName": "Get-PnPTenantInfo", + "Id": 776, "Rank": 4 }, { - "Id": 777, - "CommandName": "Get-PnPTenantInstance", "Command": "Get-PnPTenantInstance", + "CommandName": "Get-PnPTenantInstance", + "Id": 777, "Rank": 1 }, { - "Id": 778, - "CommandName": "Get-PnPTenantRecycleBinItem", "Command": "Get-PnPTenantRecycleBinItem", + "CommandName": "Get-PnPTenantRecycleBinItem", + "Id": 778, "Rank": 1 }, { - "Id": 779, - "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "CommandName": "Get-PnPTenantSequence", + "Id": 779, "Rank": 1 }, { - "Id": 780, - "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "CommandName": "Get-PnPTenantSequence", + "Id": 780, "Rank": 2 }, { - "Id": 781, - "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 781, "Rank": 1 }, { - "Id": 782, - "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 782, "Rank": 2 }, { - "Id": 783, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite", + "CommandName": "Get-PnPTenantSite", + "Id": 783, "Rank": 1 }, { - "Id": 784, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Detailed", + "CommandName": "Get-PnPTenantSite", + "Id": 784, "Rank": 2 }, { - "Id": 785, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "CommandName": "Get-PnPTenantSite", + "Id": 785, "Rank": 3 }, { - "Id": 786, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "CommandName": "Get-PnPTenantSite", + "Id": 786, "Rank": 4 }, { - "Id": 787, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "CommandName": "Get-PnPTenantSite", + "Id": 787, "Rank": 5 }, { - "Id": 788, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "CommandName": "Get-PnPTenantSite", + "Id": 788, "Rank": 6 }, { - "Id": 789, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "CommandName": "Get-PnPTenantSite", + "Id": 789, "Rank": 7 }, { - "Id": 790, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "CommandName": "Get-PnPTenantSite", + "Id": 790, "Rank": 8 }, { - "Id": 791, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "CommandName": "Get-PnPTenantSite", + "Id": 791, "Rank": 9 }, { - "Id": 792, - "CommandName": "Get-PnPTenantSyncClientRestriction", "Command": "Get-PnPTenantSyncClientRestriction", + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Id": 792, "Rank": 1 }, { - "Id": 793, - "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "CommandName": "Get-PnPTenantTemplate", + "Id": 793, "Rank": 1 }, { - "Id": 794, - "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "CommandName": "Get-PnPTenantTemplate", + "Id": 794, "Rank": 2 }, { - "Id": 795, - "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "CommandName": "Get-PnPTenantTemplate", + "Id": 795, "Rank": 3 }, { - "Id": 796, - "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme", + "CommandName": "Get-PnPTenantTheme", + "Id": 796, "Rank": 1 }, { - "Id": 797, - "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "CommandName": "Get-PnPTenantTheme", + "Id": 797, "Rank": 2 }, { - "Id": 798, - "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "CommandName": "Get-PnPTenantTheme", + "Id": 798, "Rank": 3 }, { - "Id": 799, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", + "Id": 799, "Rank": 1 }, { - "Id": 800, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", + "Id": 800, "Rank": 2 }, { - "Id": 801, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", + "Id": 801, "Rank": 3 }, { - "Id": 802, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "CommandName": "Get-PnPTerm", + "Id": 802, "Rank": 4 }, { - "Id": 803, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "CommandName": "Get-PnPTerm", + "Id": 803, "Rank": 5 }, { - "Id": 804, - "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup", + "CommandName": "Get-PnPTermGroup", + "Id": 804, "Rank": 1 }, { - "Id": 805, - "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "CommandName": "Get-PnPTermGroup", + "Id": 805, "Rank": 2 }, { - "Id": 806, - "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "CommandName": "Get-PnPTermGroup", + "Id": 806, "Rank": 3 }, { - "Id": 807, - "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "CommandName": "Get-PnPTermLabel", + "Id": 807, "Rank": 1 }, { - "Id": 808, - "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "CommandName": "Get-PnPTermLabel", + "Id": 808, "Rank": 2 }, { - "Id": 809, - "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermLabel", + "Id": 809, "Rank": 3 }, { - "Id": 810, - "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermSet", + "Id": 810, "Rank": 1 }, { - "Id": 811, - "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermSet", + "Id": 811, "Rank": 2 }, { - "Id": 812, - "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "CommandName": "Get-PnPTermSet", + "Id": 812, "Rank": 3 }, { - "Id": 813, - "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme", + "CommandName": "Get-PnPTheme", + "Id": 813, "Rank": 1 }, { - "Id": 814, - "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "CommandName": "Get-PnPTheme", + "Id": 814, "Rank": 2 }, { - "Id": 815, - "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId", + "CommandName": "Get-PnPTimeZoneId", + "Id": 815, "Rank": 1 }, { - "Id": 816, - "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId -Match Stockholm", + "CommandName": "Get-PnPTimeZoneId", + "Id": 816, "Rank": 2 }, { - "Id": 817, - "CommandName": "Get-PnPUnfurlLink", "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "CommandName": "Get-PnPUnfurlLink", + "Id": 817, "Rank": 1 }, { - "Id": 818, - "CommandName": "Get-PnPUnifiedAuditLog", "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "CommandName": "Get-PnPUnifiedAuditLog", + "Id": 818, "Rank": 1 }, { - "Id": 819, - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus", + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 819, "Rank": 1 }, { - "Id": 820, - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 820, "Rank": 2 }, { - "Id": 821, - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId ", + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 821, "Rank": 3 }, { - "Id": 822, - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 822, "Rank": 4 }, { - "Id": 823, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser", + "CommandName": "Get-PnPUser", + "Id": 823, "Rank": 1 }, { - "Id": 824, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity 23", + "CommandName": "Get-PnPUser", + "Id": 824, "Rank": 2 }, { - "Id": 825, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "CommandName": "Get-PnPUser", + "Id": 825, "Rank": 3 }, { - "Id": 826, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "CommandName": "Get-PnPUser", + "Id": 826, "Rank": 4 }, { - "Id": 827, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned", + "CommandName": "Get-PnPUser", + "Id": 827, "Rank": 5 }, { - "Id": 828, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "CommandName": "Get-PnPUser", + "Id": 828, "Rank": 6 }, { - "Id": 829, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "CommandName": "Get-PnPUser", + "Id": 829, "Rank": 7 }, { - "Id": 830, - "CommandName": "Get-PnPUserOneDriveQuota", "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "CommandName": "Get-PnPUserOneDriveQuota", + "Id": 830, "Rank": 1 }, { - "Id": 831, - "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "CommandName": "Get-PnPUserProfileProperty", + "Id": 831, "Rank": 1 }, { - "Id": 832, - "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "CommandName": "Get-PnPUserProfileProperty", + "Id": 832, "Rank": 2 }, { - "Id": 833, - "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "CommandName": "Get-PnPUserProfileProperty", + "Id": 833, "Rank": 3 }, { - "Id": 834, - "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\"", + "CommandName": "Get-PnPView", + "Id": 834, "Rank": 1 }, { - "Id": 835, - "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "CommandName": "Get-PnPView", + "Id": 835, "Rank": 2 }, { - "Id": 836, - "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "CommandName": "Get-PnPView", + "Id": 836, "Rank": 3 }, { - "Id": 837, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE", + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 837, "Rank": 1 }, { - "Id": 838, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 838, "Rank": 2 }, { - "Id": 839, - "CommandName": "Get-PnPWeb", "Command": "Get-PnPWeb", + "CommandName": "Get-PnPWeb", + "Id": 839, "Rank": 1 }, { - "Id": 840, - "CommandName": "Get-PnPWebHeader", "Command": "Get-PnPWebHeader", + "CommandName": "Get-PnPWebHeader", + "Id": 840, "Rank": 1 }, { - "Id": 841, - "CommandName": "Get-PnPWebhookSubscriptions", "Command": "Get-PnPWebhookSubscriptions -List MyList", + "CommandName": "Get-PnPWebhookSubscriptions", + "Id": 841, "Rank": 1 }, { - "Id": 842, - "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "CommandName": "Get-PnPWebPart", + "Id": 842, "Rank": 1 }, { - "Id": 843, - "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPWebPart", + "Id": 843, "Rank": 2 }, { - "Id": 844, - "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "CommandName": "Get-PnPWebPartProperty", + "Id": 844, "Rank": 1 }, { - "Id": 845, - "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "CommandName": "Get-PnPWebPartProperty", + "Id": 845, "Rank": 2 }, { - "Id": 846, - "CommandName": "Get-PnPWebPartXml", "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPWebPartXml", + "Id": 846, "Rank": 1 }, { - "Id": 847, - "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates", + "CommandName": "Get-PnPWebTemplates", + "Id": 847, "Rank": 1 }, { - "Id": 848, - "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -LCID 1033", + "CommandName": "Get-PnPWebTemplates", + "Id": 848, "Rank": 2 }, { - "Id": 849, - "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "CommandName": "Get-PnPWebTemplates", + "Id": 849, "Rank": 3 }, { - "Id": 850, - "CommandName": "Get-PnPWikiPageContent", "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "CommandName": "Get-PnPWikiPageContent", + "Id": 850, "Rank": 1 }, { - "Id": 851, - "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 851, "Rank": 1 }, { - "Id": 852, - "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 852, "Rank": 2 }, { - "Id": 853, - "CommandName": "Grant-PnPHubSiteRights", "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Grant-PnPHubSiteRights", + "Id": 853, "Rank": 1 }, { - "Id": 854, - "CommandName": "Grant-PnPSiteDesignRights", "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Grant-PnPSiteDesignRights", + "Id": 854, "Rank": 1 }, { - "Id": 855, - "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Id": 855, "Rank": 1 }, { - "Id": 856, - "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "CommandName": "Import-PnPTaxonomy", + "Id": 856, "Rank": 1 }, { - "Id": 857, - "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "CommandName": "Import-PnPTaxonomy", + "Id": 857, "Rank": 2 }, { - "Id": 858, - "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "CommandName": "Import-PnPTaxonomy", + "Id": 858, "Rank": 3 }, { - "Id": 859, - "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 859, "Rank": 1 }, { - "Id": 860, - "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 860, "Rank": 2 }, { - "Id": 861, - "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "CommandName": "Import-PnPTermSet", + "Id": 861, "Rank": 1 }, { - "Id": 862, - "CommandName": "Import-PnPTermSet", "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": 862, "Rank": 2 }, { - "Id": 863, - "CommandName": "Import-PnPTermSet", "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": 863, "Rank": 3 }, { - "Id": 864, - "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Install-PnPApp", + "Id": 864, "Rank": 1 }, { - "Id": 865, - "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Install-PnPApp", + "Id": 865, "Rank": 2 }, { - "Id": 866, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", + "CommandName": "Invoke-PnPGraphMethod", + "Id": 866, "Rank": 1 }, { - "Id": 867, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "CommandName": "Invoke-PnPGraphMethod", + "Id": 867, "Rank": 2 }, { - "Id": 868, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "CommandName": "Invoke-PnPGraphMethod", + "Id": 868, "Rank": 3 }, { - "Id": 869, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "CommandName": "Invoke-PnPGraphMethod", + "Id": 869, "Rank": 4 }, { - "Id": 870, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "CommandName": "Invoke-PnPGraphMethod", + "Id": 870, "Rank": 5 }, { - "Id": 871, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", + "CommandName": "Invoke-PnPGraphMethod", + "Id": 871, "Rank": 6 }, { - "Id": 872, - "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\"", + "CommandName": "Invoke-PnPGraphMethod", + "Id": 872, "Rank": 7 }, { - "Id": 873, - "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Invoke-PnPListDesign", + "Id": 873, "Rank": 1 }, { - "Id": 874, - "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "CommandName": "Invoke-PnPListDesign", + "Id": 874, "Rank": 2 }, { - "Id": 875, - "CommandName": "Invoke-PnPQuery", "Command": "Invoke-PnPQuery -RetryCount 5", + "CommandName": "Invoke-PnPQuery", + "Id": 875, "Rank": 1 }, { - "Id": 876, - "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Invoke-PnPSiteDesign", + "Id": 876, "Rank": 1 }, { - "Id": 877, - "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "CommandName": "Invoke-PnPSiteDesign", + "Id": 877, "Rank": 2 }, { - "Id": 878, - "CommandName": "Invoke-PnPSiteScript", "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "CommandName": "Invoke-PnPSiteScript", + "Id": 878, "Rank": 1 }, { - "Id": 879, - "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", + "CommandName": "Invoke-PnPSiteSwap", + "Id": 879, "Rank": 1 }, { - "Id": 880, - "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", + "CommandName": "Invoke-PnPSiteSwap", + "Id": 880, "Rank": 2 }, { - "Id": 881, - "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", + "CommandName": "Invoke-PnPSiteSwap", + "Id": 881, "Rank": 3 }, { - "Id": 882, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 882, "Rank": 1 }, { - "Id": 883, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 883, "Rank": 2 }, { - "Id": 884, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 884, "Rank": 3 }, { - "Id": 885, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 885, "Rank": 4 }, { - "Id": 886, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 886, "Rank": 5 }, { - "Id": 887, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 887, "Rank": 6 }, { - "Id": 888, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 888, "Rank": 7 }, { - "Id": 889, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 889, "Rank": 8 }, { - "Id": 890, - "CommandName": "Invoke-PnPSPRestMethod", "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "CommandName": "Invoke-PnPSPRestMethod", + "Id": 890, "Rank": 1 }, { - "Id": 891, - "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 891, "Rank": 1 }, { - "Id": 892, - "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 892, "Rank": 2 }, { - "Id": 893, - "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 893, "Rank": 3 }, { - "Id": 894, - "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "CommandName": "Invoke-PnPWebAction", + "Id": 894, "Rank": 1 }, { - "Id": 895, - "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "CommandName": "Invoke-PnPWebAction", + "Id": 895, "Rank": 2 }, { - "Id": 896, - "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\"", + "CommandName": "Measure-PnPList", + "Id": 896, "Rank": 1 }, { - "Id": 897, - "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "CommandName": "Measure-PnPList", + "Id": 897, "Rank": 2 }, { - "Id": 898, - "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb", + "CommandName": "Measure-PnPWeb", + "Id": 898, "Rank": 1 }, { - "Id": 899, - "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb $web -Recursive", + "CommandName": "Measure-PnPWeb", + "Id": 899, "Rank": 2 }, { - "Id": 900, - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "CommandName": "Move-PnPFile", + "Id": 900, "Rank": 1 }, { - "Id": 901, - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "CommandName": "Move-PnPFile", + "Id": 901, "Rank": 2 }, { - "Id": 902, - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "CommandName": "Move-PnPFile", + "Id": 902, "Rank": 3 }, { - "Id": 903, - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "CommandName": "Move-PnPFile", + "Id": 903, "Rank": 4 }, { - "Id": 904, - "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "CommandName": "Move-PnPFolder", + "Id": 904, "Rank": 1 }, { - "Id": 905, - "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "CommandName": "Move-PnPFolder", + "Id": 905, "Rank": 2 }, { - "Id": 906, - "CommandName": "Move-PnPListItemToRecycleBin", "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "CommandName": "Move-PnPListItemToRecycleBin", + "Id": 906, "Rank": 1 }, { - "Id": 907, - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "CommandName": "Move-PnPPageComponent", + "Id": 907, "Rank": 1 }, { - "Id": 908, - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "CommandName": "Move-PnPPageComponent", + "Id": 908, "Rank": 2 }, { - "Id": 909, - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "CommandName": "Move-PnPPageComponent", + "Id": 909, "Rank": 3 }, { - "Id": 910, - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "CommandName": "Move-PnPPageComponent", + "Id": 910, "Rank": 4 }, { - "Id": 911, - "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem", + "CommandName": "Move-PnpRecycleBinItem", + "Id": 911, "Rank": 1 }, { - "Id": 912, - "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "CommandName": "Move-PnpRecycleBinItem", + "Id": 912, "Rank": 2 }, { - "Id": 913, - "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Force", + "CommandName": "Move-PnpRecycleBinItem", + "Id": 913, "Rank": 3 }, { - "Id": 914, - "CommandName": "Move-PnPTerm", "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": 914, "Rank": 1 }, { - "Id": 915, - "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "CommandName": "Move-PnPTerm", + "Id": 915, "Rank": 2 }, { - "Id": 916, - "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "CommandName": "Move-PnPTerm", + "Id": 916, "Rank": 3 }, { - "Id": 917, - "CommandName": "Move-PnPTermSet", "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": 917, "Rank": 1 }, { - "Id": 918, - "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "CommandName": "Move-PnPTermSet", + "Id": 918, "Rank": 2 }, { - "Id": 919, - "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "CommandName": "New-PnPAzureADGroup", + "Id": 919, "Rank": 1 }, { - "Id": 920, - "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "CommandName": "New-PnPAzureADGroup", + "Id": 920, "Rank": 2 }, { - "Id": 921, - "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "CommandName": "New-PnPAzureADGroup", + "Id": 921, "Rank": 3 }, { - "Id": 922, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 922, "Rank": 1 }, { - "Id": 923, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 923, "Rank": 2 }, { - "Id": 924, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 924, "Rank": 3 }, { - "Id": 925, - "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "CommandName": "New-PnPAzureCertificate", + "Id": 925, "Rank": 1 }, { - "Id": 926, - "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "CommandName": "New-PnPAzureCertificate", + "Id": 926, "Rank": 2 }, { - "Id": 927, - "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "CommandName": "New-PnPAzureCertificate", + "Id": 927, "Rank": 3 }, { - "Id": 928, - "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()", + "CommandName": "New-PnPGraphSubscription", + "Id": 928, "Rank": 1 }, { - "Id": 929, - "CommandName": "New-PnPGraphSubscription", "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", + "CommandName": "New-PnPGraphSubscription", + "Id": 929, "Rank": 2 }, { - "Id": 930, - "CommandName": "New-PnPGroup", "Command": "New-PnPGroup -Title \"My Site Users\"", + "CommandName": "New-PnPGroup", + "Id": 930, "Rank": 1 }, { - "Id": 931, - "CommandName": "New-PnPList", "Command": "New-PnPList -Title Announcements -Template Announcements", + "CommandName": "New-PnPList", + "Id": 931, "Rank": 1 }, { - "Id": 932, - "CommandName": "New-PnPList", "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "CommandName": "New-PnPList", + "Id": 932, "Rank": 2 }, { - "Id": 933, - "CommandName": "New-PnPList", "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "CommandName": "New-PnPList", + "Id": 933, "Rank": 3 }, { - "Id": 934, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "CommandName": "New-PnPMicrosoft365Group", + "Id": 934, "Rank": 1 }, { - "Id": 935, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "CommandName": "New-PnPMicrosoft365Group", + "Id": 935, "Rank": 2 }, { - "Id": 936, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "CommandName": "New-PnPMicrosoft365Group", + "Id": 936, "Rank": 3 }, { - "Id": 937, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "CommandName": "New-PnPMicrosoft365Group", + "Id": 937, "Rank": 4 }, { - "Id": 938, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "CommandName": "New-PnPMicrosoft365Group", + "Id": 938, "Rank": 5 }, { - "Id": 939, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "CommandName": "New-PnPMicrosoft365Group", + "Id": 939, "Rank": 6 }, { - "Id": 940, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", + "CommandName": "New-PnPMicrosoft365Group", + "Id": 940, "Rank": 7 }, { - "Id": 941, - "CommandName": "New-PnPMicrosoft365GroupSettings", "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": 941, "Rank": 1 }, { - "Id": 942, - "CommandName": "New-PnPMicrosoft365GroupSettings", "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Id": 942, "Rank": 2 }, { - "Id": 943, - "CommandName": "New-PnPPersonalSite", "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "CommandName": "New-PnPPersonalSite", + "Id": 943, "Rank": 1 }, { - "Id": 944, - "CommandName": "New-PnPPlannerPlan", "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "CommandName": "New-PnPPlannerPlan", + "Id": 944, "Rank": 1 }, { - "Id": 945, - "CommandName": "New-PnPSdnProvider", "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "CommandName": "New-PnPSdnProvider", + "Id": 945, "Rank": 1 }, { - "Id": 946, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "CommandName": "New-PnPSite", + "Id": 946, "Rank": 1 }, { - "Id": 947, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "CommandName": "New-PnPSite", + "Id": 947, "Rank": 2 }, { - "Id": 948, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "CommandName": "New-PnPSite", + "Id": 948, "Rank": 3 }, { - "Id": 949, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "CommandName": "New-PnPSite", + "Id": 949, "Rank": 4 }, { - "Id": 950, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "CommandName": "New-PnPSite", + "Id": 950, "Rank": 5 }, { - "Id": 951, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "CommandName": "New-PnPSite", + "Id": 951, "Rank": 6 }, { - "Id": 952, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "CommandName": "New-PnPSite", + "Id": 952, "Rank": 7 }, { - "Id": 953, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "CommandName": "New-PnPSite", + "Id": 953, "Rank": 8 }, { - "Id": 954, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "CommandName": "New-PnPSite", + "Id": 954, "Rank": 9 }, { - "Id": 955, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "CommandName": "New-PnPSite", + "Id": 955, "Rank": 10 }, { - "Id": 956, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "CommandName": "New-PnPSite", + "Id": 956, "Rank": 11 }, { - "Id": 957, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "CommandName": "New-PnPSite", + "Id": 957, "Rank": 12 }, { - "Id": 958, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "CommandName": "New-PnPSite", + "Id": 958, "Rank": 13 }, { - "Id": 959, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "CommandName": "New-PnPSite", + "Id": 959, "Rank": 14 }, { - "Id": 960, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "CommandName": "New-PnPSite", + "Id": 960, "Rank": 15 }, { - "Id": 961, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "CommandName": "New-PnPSite", + "Id": 961, "Rank": 16 }, { - "Id": 962, - "CommandName": "New-PnPSiteCollectionTermStore", "Command": "New-PnPSiteCollectionTermStore", + "CommandName": "New-PnPSiteCollectionTermStore", + "Id": 962, "Rank": 1 }, { - "Id": 963, - "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "CommandName": "New-PnPSiteGroup", + "Id": 963, "Rank": 1 }, { - "Id": 964, - "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "CommandName": "New-PnPSiteGroup", + "Id": 964, "Rank": 2 }, { - "Id": 965, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 965, "Rank": 1 }, { - "Id": 966, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 966, "Rank": 2 }, { - "Id": 967, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 967, "Rank": 3 }, { - "Id": 968, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 968, "Rank": 4 }, { - "Id": 969, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 969, "Rank": 5 }, { - "Id": 970, - "CommandName": "New-PnPSiteTemplateFromFolder", "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": 970, "Rank": 6 }, { - "Id": 971, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 971, "Rank": 7 }, { - "Id": 972, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 972, "Rank": 8 }, { - "Id": 973, - "CommandName": "New-PnPTeamsApp", "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "CommandName": "New-PnPTeamsApp", + "Id": 973, "Rank": 1 }, { - "Id": 974, - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "CommandName": "New-PnPTeamsTeam", + "Id": 974, "Rank": 1 }, { - "Id": 975, - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -GroupId $groupId", + "CommandName": "New-PnPTeamsTeam", + "Id": 975, "Rank": 2 }, { - "Id": 976, - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "CommandName": "New-PnPTeamsTeam", + "Id": 976, "Rank": 3 }, { - "Id": 977, - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "CommandName": "New-PnPTeamsTeam", + "Id": 977, "Rank": 4 }, { - "Id": 978, - "CommandName": "New-PnPTeamsTeam", "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": 978, "Rank": 5 }, { - "Id": 979, - "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\"", + "CommandName": "New-PnPTeamsTeam", + "Id": 979, "Rank": 6 }, { - "Id": 980, - "CommandName": "New-PnPTenantSite", "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": 980, "Rank": 1 }, { - "Id": 981, - "CommandName": "New-PnPTenantSite", "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "CommandName": "New-PnPTenantSite", + "Id": 981, "Rank": 2 }, { - "Id": 982, - "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "CommandName": "New-PnPTerm", + "Id": 982, "Rank": 1 }, { - "Id": 983, - "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "New-PnPTerm", + "Id": 983, "Rank": 2 }, { - "Id": 984, - "CommandName": "New-PnPTermGroup", "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "CommandName": "New-PnPTermGroup", + "Id": 984, "Rank": 1 }, { - "Id": 985, - "CommandName": "New-PnPTermLabel", "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "CommandName": "New-PnPTermLabel", + "Id": 985, "Rank": 1 }, { - "Id": 986, - "CommandName": "New-PnPTermSet", "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "CommandName": "New-PnPTermSet", + "Id": 986, "Rank": 1 }, { - "Id": 987, - "CommandName": "New-PnPUPABulkImportJob", "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "CommandName": "New-PnPUPABulkImportJob", + "Id": 987, "Rank": 1 }, { - "Id": 988, - "CommandName": "New-PnPUPABulkImportJob", "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": 988, "Rank": 2 }, { - "Id": 989, - "CommandName": "New-PnPUser", "Command": "New-PnPUser -LoginName user@company.com", + "CommandName": "New-PnPUser", + "Id": 989, "Rank": 1 }, { - "Id": 990, - "CommandName": "New-PnPWeb", "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", + "CommandName": "New-PnPWeb", + "Id": 990, "Rank": 1 }, { - "Id": 991, - "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Publish-PnPApp", + "Id": 991, "Rank": 1 }, { - "Id": 992, - "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "CommandName": "Publish-PnPApp", + "Id": 992, "Rank": 2 }, { - "Id": 993, - "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", + "CommandName": "Publish-PnPCompanyApp", + "Id": 993, "Rank": 1 }, { - "Id": 994, - "CommandName": "Publish-PnPContentType", "Command": "Publish-PnPContentType -ContentType 0x0101", + "CommandName": "Publish-PnPContentType", + "Id": 994, "Rank": 1 }, { - "Id": 995, - "CommandName": "Publish-PnPSyntexModel", "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "CommandName": "Publish-PnPSyntexModel", + "Id": 995, "Rank": 1 }, { - "Id": 996, - "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", + "CommandName": "Publish-PnPSyntexModel", + "Id": 996, "Rank": 2 }, { - "Id": 997, - "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp", + "CommandName": "Read-PnPSiteTemplate", + "Id": 997, "Rank": 1 }, { - "Id": 998, - "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "CommandName": "Read-PnPSiteTemplate", + "Id": 998, "Rank": 2 }, { - "Id": 999, - "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Xml $xml", + "CommandName": "Read-PnPSiteTemplate", + "Id": 999, "Rank": 3 }, { - "Id": 1000, - "CommandName": "Read-PnPTenantTemplate", "Command": "Read-PnPTenantTemplate -Path template.pnp", + "CommandName": "Read-PnPTenantTemplate", + "Id": 1000, "Rank": 1 }, { - "Id": 1001, - "CommandName": "Register-PnPAppCatalogSite", "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "CommandName": "Register-PnPAppCatalogSite", + "Id": 1001, "Rank": 1 }, { - "Id": 1002, - "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\")", + "CommandName": "Register-PnPAzureADApp", + "Id": 1002, "Rank": 1 }, { - "Id": 1003, - "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\")", + "CommandName": "Register-PnPAzureADApp", + "Id": 1003, "Rank": 2 }, { - "Id": 1004, - "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\")", + "CommandName": "Register-PnPAzureADApp", + "Id": 1004, "Rank": 3 }, { - "Id": 1005, - "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\")", + "CommandName": "Register-PnPAzureADApp", + "Id": 1005, "Rank": 4 }, { - "Id": 1006, - "CommandName": "Register-PnPAzureADApp", "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": 1006, "Rank": 5 }, { - "Id": 1007, - "CommandName": "Register-PnPAzureADApp", "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": 1007, "Rank": 6 }, { - "Id": 1008, - "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", + "CommandName": "Register-PnPAzureADApp", + "Id": 1008, "Rank": 7 }, { - "Id": 1009, - "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "CommandName": "Register-PnPHubSite", + "Id": 1009, "Rank": 1 }, { - "Id": 1010, - "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "CommandName": "Register-PnPHubSite", + "Id": 1010, "Rank": 2 }, { - "Id": 1011, - "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess", + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1011, "Rank": 1 }, { - "Id": 1012, - "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1012, "Rank": 2 }, { - "Id": 1013, - "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1013, "Rank": 3 }, { - "Id": 1014, - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1014, "Rank": 1 }, { - "Id": 1015, - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1015, "Rank": 2 }, { - "Id": 1016, - "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "CommandName": "Remove-PnPAlert", + "Id": 1016, "Rank": 1 }, { - "Id": 1017, - "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPAlert", + "Id": 1017, "Rank": 2 }, { - "Id": 1018, - "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Remove-PnPApp", + "Id": 1018, "Rank": 1 }, { - "Id": 1019, - "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Remove-PnPApp", + "Id": 1019, "Rank": 2 }, { - "Id": 1020, - "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1020, "Rank": 1 }, { - "Id": 1021, - "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1021, "Rank": 2 }, { - "Id": 1022, - "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1022, "Rank": 1 }, { - "Id": 1023, - "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1023, "Rank": 2 }, { - "Id": 1024, - "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity MyApp", + "CommandName": "Remove-PnPAzureADApp", + "Id": 1024, "Rank": 1 }, { - "Id": 1025, - "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Remove-PnPAzureADApp", + "Id": 1025, "Rank": 2 }, { - "Id": 1026, - "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "CommandName": "Remove-PnPAzureADGroup", + "Id": 1026, "Rank": 1 }, { - "Id": 1027, - "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $group", + "CommandName": "Remove-PnPAzureADGroup", + "Id": 1027, "Rank": 2 }, { - "Id": 1028, - "CommandName": "Remove-PnPAzureADGroupMember", "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPAzureADGroupMember", + "Id": 1028, "Rank": 1 }, { - "Id": 1029, - "CommandName": "Remove-PnPAzureADGroupOwner", "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPAzureADGroupOwner", + "Id": 1029, "Rank": 1 }, { - "Id": 1030, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1030, "Rank": 1 }, { - "Id": 1031, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1031, "Rank": 2 }, { - "Id": 1032, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1032, "Rank": 3 }, { - "Id": 1033, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1033, "Rank": 4 }, { - "Id": 1034, - "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "CommandName": "Remove-PnPContentType", + "Id": 1034, "Rank": 1 }, { - "Id": 1035, - "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "CommandName": "Remove-PnPContentType", + "Id": 1035, "Rank": 2 }, { - "Id": 1036, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1036, "Rank": 1 }, { - "Id": 1037, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1037, "Rank": 2 }, { - "Id": 1038, - "CommandName": "Remove-PnPContentTypeFromList", "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "CommandName": "Remove-PnPContentTypeFromList", + "Id": 1038, "Rank": 1 }, { - "Id": 1039, - "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Remove-PnPCustomAction", + "Id": 1039, "Rank": 1 }, { - "Id": 1040, - "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "CommandName": "Remove-PnPCustomAction", + "Id": 1040, "Rank": 2 }, { - "Id": 1041, - "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "CommandName": "Remove-PnPCustomAction", + "Id": 1041, "Rank": 3 }, { - "Id": 1042, - "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Id": 1042, "Rank": 1 }, { - "Id": 1043, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1043, "Rank": 1 }, { - "Id": 1044, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1044, "Rank": 2 }, { - "Id": 1045, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1045, "Rank": 3 }, { - "Id": 1046, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1046, "Rank": 4 }, { - "Id": 1047, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1047, "Rank": 5 }, { - "Id": 1048, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Site", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1048, "Rank": 6 }, { - "Id": 1049, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Web", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1049, "Rank": 7 }, { - "Id": 1050, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope All", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1050, "Rank": 8 }, { - "Id": 1051, - "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -Identity \"Speakers\"", + "CommandName": "Remove-PnPField", + "Id": 1051, "Rank": 1 }, { - "Id": 1052, - "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "CommandName": "Remove-PnPField", + "Id": 1052, "Rank": 2 }, { - "Id": 1053, - "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1053, "Rank": 1 }, { - "Id": 1054, - "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1054, "Rank": 2 }, { - "Id": 1055, - "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "CommandName": "Remove-PnPFile", + "Id": 1055, "Rank": 1 }, { - "Id": 1056, - "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "CommandName": "Remove-PnPFile", + "Id": 1056, "Rank": 2 }, { - "Id": 1057, - "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "CommandName": "Remove-PnPFile", + "Id": 1057, "Rank": 3 }, { - "Id": 1058, - "CommandName": "Remove-PnPFileFromSiteTemplate", "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Id": 1058, "Rank": 1 }, { - "Id": 1059, - "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1059, "Rank": 1 }, { - "Id": 1060, - "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1060, "Rank": 2 }, { - "Id": 1061, - "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "CommandName": "Remove-PnPFileVersion", + "Id": 1061, "Rank": 1 }, { - "Id": 1062, - "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "CommandName": "Remove-PnPFileVersion", + "Id": 1062, "Rank": 2 }, { - "Id": 1063, - "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "CommandName": "Remove-PnPFileVersion", + "Id": 1063, "Rank": 3 }, { - "Id": 1064, - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", + "CommandName": "Remove-PnPFlowOwner", + "Id": 1064, "Rank": 1 }, { - "Id": 1065, - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", + "CommandName": "Remove-PnPFlowOwner", + "Id": 1065, "Rank": 2 }, { - "Id": 1066, - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", + "CommandName": "Remove-PnPFlowOwner", + "Id": 1066, "Rank": 3 }, { - "Id": 1067, - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", + "CommandName": "Remove-PnPFlowOwner", + "Id": 1067, "Rank": 4 }, { - "Id": 1068, - "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "CommandName": "Remove-PnPFolder", + "Id": 1068, "Rank": 1 }, { - "Id": 1069, - "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "CommandName": "Remove-PnPFolder", + "Id": 1069, "Rank": 2 }, { - "Id": 1070, - "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1070, "Rank": 1 }, { - "Id": 1071, - "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1071, "Rank": 2 }, { - "Id": 1072, - "CommandName": "Remove-PnPGraphSubscription", "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "CommandName": "Remove-PnPGraphSubscription", + "Id": 1072, "Rank": 1 }, { - "Id": 1073, - "CommandName": "Remove-PnPGroup", "Command": "Remove-PnPGroup -Identity \"My Users\"", + "CommandName": "Remove-PnPGroup", + "Id": 1073, "Rank": 1 }, { - "Id": 1074, - "CommandName": "Remove-PnPGroupMember", "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "CommandName": "Remove-PnPGroupMember", + "Id": 1074, "Rank": 1 }, { - "Id": 1075, - "CommandName": "Remove-PnPHomeSite", "Command": "Remove-PnPHomeSite", + "CommandName": "Remove-PnPHomeSite", + "Id": 1075, "Rank": 1 }, { - "Id": 1076, - "CommandName": "Remove-PnPHubSiteAssociation", "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "CommandName": "Remove-PnPHubSiteAssociation", + "Id": 1076, "Rank": 1 }, { - "Id": 1077, - "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1077, "Rank": 1 }, { - "Id": 1078, - "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1078, "Rank": 2 }, { - "Id": 1079, - "CommandName": "Remove-PnPIndexedProperty", "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "CommandName": "Remove-PnPIndexedProperty", + "Id": 1079, "Rank": 1 }, { - "Id": 1080, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1080, "Rank": 1 }, { - "Id": 1081, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1081, "Rank": 2 }, { - "Id": 1082, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1082, "Rank": 3 }, { - "Id": 1083, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Scope Site", + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1083, "Rank": 4 }, { - "Id": 1084, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1084, "Rank": 5 }, { - "Id": 1085, - "CommandName": "Remove-PnPKnowledgeHubSite", "Command": "Remove-PnPKnowledgeHubSite", + "CommandName": "Remove-PnPKnowledgeHubSite", + "Id": 1085, "Rank": 1 }, { - "Id": 1086, - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements", + "CommandName": "Remove-PnPList", + "Id": 1086, "Rank": 1 }, { - "Id": 1087, - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Force", + "CommandName": "Remove-PnPList", + "Id": 1087, "Rank": 2 }, { - "Id": 1088, - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle", + "CommandName": "Remove-PnPList", + "Id": 1088, "Rank": 3 }, { - "Id": 1089, - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "CommandName": "Remove-PnPList", + "Id": 1089, "Rank": 4 }, { - "Id": 1090, - "CommandName": "Remove-PnPListDesign", "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPListDesign", + "Id": 1090, "Rank": 1 }, { - "Id": 1091, - "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "CommandName": "Remove-PnPListItem", + "Id": 1091, "Rank": 1 }, { - "Id": 1092, - "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "CommandName": "Remove-PnPListItem", + "Id": 1092, "Rank": 2 }, { - "Id": 1093, - "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\"", + "CommandName": "Remove-PnPListItem", + "Id": 1093, "Rank": 3 }, { - "Id": 1094, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1094, "Rank": 1 }, { - "Id": 1095, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1095, "Rank": 2 }, { - "Id": 1096, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1096, "Rank": 3 }, { - "Id": 1097, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1097, "Rank": 4 }, { - "Id": 1098, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1098, "Rank": 5 }, { - "Id": 1099, - "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "CommandName": "Remove-PnPListItemVersion", + "Id": 1099, "Rank": 1 }, { - "Id": 1100, - "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "CommandName": "Remove-PnPListItemVersion", + "Id": 1100, "Rank": 2 }, { - "Id": 1101, - "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1101, "Rank": 1 }, { - "Id": 1102, - "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1102, "Rank": 2 }, { - "Id": 1103, - "CommandName": "Remove-PnPMicrosoft365GroupMember", "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Id": 1103, "Rank": 1 }, { - "Id": 1104, - "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Id": 1104, "Rank": 1 }, { - "Id": 1105, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1105, "Rank": 1 }, { - "Id": 1106, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1106, "Rank": 2 }, { - "Id": 1107, - "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Identity 1032", + "CommandName": "Remove-PnPNavigationNode", + "Id": 1107, "Rank": 1 }, { - "Id": 1108, - "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "CommandName": "Remove-PnPNavigationNode", + "Id": 1108, "Rank": 2 }, { - "Id": 1109, - "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "CommandName": "Remove-PnPNavigationNode", + "Id": 1109, "Rank": 3 }, { - "Id": 1110, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1110, "Rank": 1 }, { - "Id": 1111, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1111, "Rank": 2 }, { - "Id": 1112, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1112, "Rank": 3 }, { - "Id": 1113, - "CommandName": "Remove-PnPOrgNewsSite", "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "CommandName": "Remove-PnPOrgNewsSite", + "Id": 1113, "Rank": 1 }, { - "Id": 1114, - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\"", + "CommandName": "Remove-PnPPage", + "Id": 1114, "Rank": 1 }, { - "Id": 1115, - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "CommandName": "Remove-PnPPage", + "Id": 1115, "Rank": 2 }, { - "Id": 1116, - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage $page", + "CommandName": "Remove-PnPPage", + "Id": 1116, "Rank": 3 }, { - "Id": 1117, - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "CommandName": "Remove-PnPPage", + "Id": 1117, "Rank": 4 }, { - "Id": 1118, - "CommandName": "Remove-PnPPageComponent", "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Remove-PnPPageComponent", + "Id": 1118, "Rank": 1 }, { - "Id": 1119, - "CommandName": "Remove-PnPPlannerBucket", "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "CommandName": "Remove-PnPPlannerBucket", + "Id": 1119, "Rank": 1 }, { - "Id": 1120, - "CommandName": "Remove-PnPPlannerPlan", "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "CommandName": "Remove-PnPPlannerPlan", + "Id": 1120, "Rank": 1 }, { - "Id": 1121, - "CommandName": "Remove-PnPPlannerRoster", "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "CommandName": "Remove-PnPPlannerRoster", + "Id": 1121, "Rank": 1 }, { - "Id": 1122, - "CommandName": "Remove-PnPPlannerRosterMember", "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPPlannerRosterMember", + "Id": 1122, "Rank": 1 }, { - "Id": 1123, - "CommandName": "Remove-PnPPlannerTask", "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "CommandName": "Remove-PnPPlannerTask", + "Id": 1123, "Rank": 1 }, { - "Id": 1124, - "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1124, "Rank": 1 }, { - "Id": 1125, - "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1125, "Rank": 2 }, { - "Id": 1126, - "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1126, "Rank": 3 }, { - "Id": 1127, - "CommandName": "Remove-PnPPublishingImageRendition", "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "CommandName": "Remove-PnPPublishingImageRendition", + "Id": 1127, "Rank": 1 }, { - "Id": 1128, - "CommandName": "Remove-PnPRoleDefinition", "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "CommandName": "Remove-PnPRoleDefinition", + "Id": 1128, "Rank": 1 }, { - "Id": 1129, - "CommandName": "Remove-PnPSdnProvider", "Command": "Remove-PnPSdnProvider -Confirm:false", + "CommandName": "Remove-PnPSdnProvider", + "Id": 1129, "Rank": 1 }, { - "Id": 1130, - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1130, "Rank": 1 }, { - "Id": 1131, - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1131, "Rank": 2 }, { - "Id": 1132, - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1132, "Rank": 3 }, { - "Id": 1133, - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1133, "Rank": 4 }, { - "Id": 1134, - "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1134, "Rank": 1 }, { - "Id": 1135, - "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1135, "Rank": 2 }, { - "Id": 1136, - "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Id": 1136, "Rank": 1 }, { - "Id": 1137, - "CommandName": "Remove-PnPSiteCollectionTermStore", "Command": "Remove-PnPSiteCollectionTermStore", + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Id": 1137, "Rank": 1 }, { - "Id": 1138, - "CommandName": "Remove-PnPSiteDesign", "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteDesign", + "Id": 1138, "Rank": 1 }, { - "Id": 1139, - "CommandName": "Remove-PnPSiteDesignTask", "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteDesignTask", + "Id": 1139, "Rank": 1 }, { - "Id": 1140, - "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Remove-PnPSiteGroup", + "Id": 1140, "Rank": 1 }, { - "Id": 1141, - "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "CommandName": "Remove-PnPSiteGroup", + "Id": 1141, "Rank": 2 }, { - "Id": 1142, - "CommandName": "Remove-PnPSiteScript", "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteScript", + "Id": 1142, "Rank": 1 }, { - "Id": 1143, - "CommandName": "Remove-PnPSiteUserInvitations", "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "CommandName": "Remove-PnPSiteUserInvitations", + "Id": 1143, "Rank": 1 }, { - "Id": 1144, - "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey", + "CommandName": "Remove-PnPStorageEntity", + "Id": 1144, "Rank": 1 }, { - "Id": 1145, - "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "CommandName": "Remove-PnPStorageEntity", + "Id": 1145, "Rank": 2 }, { - "Id": 1146, - "CommandName": "Remove-PnPStoredCredential", "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "CommandName": "Remove-PnPStoredCredential", + "Id": 1146, "Rank": 1 }, { - "Id": 1147, - "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1147, "Rank": 1 }, { - "Id": 1148, - "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1148, "Rank": 2 }, { - "Id": 1149, - "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "CommandName": "Remove-PnPTeamsApp", + "Id": 1149, "Rank": 1 }, { - "Id": 1150, - "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "CommandName": "Remove-PnPTeamsApp", + "Id": 1150, "Rank": 2 }, { - "Id": 1151, - "CommandName": "Remove-PnPTeamsChannel", "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "CommandName": "Remove-PnPTeamsChannel", + "Id": 1151, "Rank": 1 }, { - "Id": 1152, - "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1152, "Rank": 1 }, { - "Id": 1153, - "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1153, "Rank": 2 }, { - "Id": 1154, - "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1154, "Rank": 3 }, { - "Id": 1155, - "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "CommandName": "Remove-PnPTeamsTab", + "Id": 1155, "Rank": 1 }, { - "Id": 1156, - "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "CommandName": "Remove-PnPTeamsTab", + "Id": 1156, "Rank": 2 }, { - "Id": 1157, - "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", + "CommandName": "Remove-PnPTeamsTab", + "Id": 1157, "Rank": 3 }, { - "Id": 1158, - "CommandName": "Remove-PnPTeamsTag", "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "CommandName": "Remove-PnPTeamsTag", + "Id": 1158, "Rank": 1 }, { - "Id": 1159, - "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1159, "Rank": 1 }, { - "Id": 1160, - "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity testteam", + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1160, "Rank": 2 }, { - "Id": 1161, - "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "CommandName": "Remove-PnPTeamsUser", + "Id": 1161, "Rank": 1 }, { - "Id": 1162, - "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Remove-PnPTeamsUser", + "Id": 1162, "Rank": 2 }, { - "Id": 1163, - "CommandName": "Remove-PnPTenantCdnOrigin", "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "CommandName": "Remove-PnPTenantCdnOrigin", + "Id": 1163, "Rank": 1 }, { - "Id": 1164, - "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1164, "Rank": 1 }, { - "Id": 1165, - "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1165, "Rank": 2 }, { - "Id": 1166, - "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Remove-PnPTenantSite", + "Id": 1166, "Rank": 1 }, { - "Id": 1167, - "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "CommandName": "Remove-PnPTenantSite", + "Id": 1167, "Rank": 2 }, { - "Id": 1168, - "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "CommandName": "Remove-PnPTenantSite", + "Id": 1168, "Rank": 3 }, { - "Id": 1169, - "CommandName": "Remove-PnPTenantSyncClientRestriction", "Command": "Remove-PnPTenantSyncClientRestriction", + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Id": 1169, "Rank": 1 }, { - "Id": 1170, - "CommandName": "Remove-PnPTenantTheme", "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "CommandName": "Remove-PnPTenantTheme", + "Id": 1170, "Rank": 1 }, { - "Id": 1171, - "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "CommandName": "Remove-PnPTerm", + "Id": 1171, "Rank": 1 }, { - "Id": 1172, - "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Remove-PnPTerm", + "Id": 1172, "Rank": 2 }, { - "Id": 1173, - "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "CommandName": "Remove-PnPTermGroup", + "Id": 1173, "Rank": 1 }, { - "Id": 1174, - "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "CommandName": "Remove-PnPTermGroup", + "Id": 1174, "Rank": 2 }, { - "Id": 1175, - "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "CommandName": "Remove-PnPTermGroup", + "Id": 1175, "Rank": 3 }, { - "Id": 1176, - "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", + "CommandName": "Remove-PnPTermLabel", + "Id": 1176, "Rank": 1 }, { - "Id": 1177, - "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Remove-PnPTermLabel", + "Id": 1177, "Rank": 2 }, { - "Id": 1178, - "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity 23", + "CommandName": "Remove-PnPUser", + "Id": 1178, "Rank": 1 }, { - "Id": 1179, - "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "CommandName": "Remove-PnPUser", + "Id": 1179, "Rank": 2 }, { - "Id": 1180, - "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "CommandName": "Remove-PnPUser", + "Id": 1180, "Rank": 3 }, { - "Id": 1181, - "CommandName": "Remove-PnPUserInfo", "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "CommandName": "Remove-PnPUserInfo", + "Id": 1181, "Rank": 1 }, { - "Id": 1182, - "CommandName": "Remove-PnPUserProfile", "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "CommandName": "Remove-PnPUserProfile", + "Id": 1182, "Rank": 1 }, { - "Id": 1183, - "CommandName": "Remove-PnPView", "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "CommandName": "Remove-PnPView", + "Id": 1183, "Rank": 1 }, { - "Id": 1184, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Id": 1184, "Rank": 1 }, { - "Id": 1185, - "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity projectA", + "CommandName": "Remove-PnPWeb", + "Id": 1185, "Rank": 1 }, { - "Id": 1186, - "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "CommandName": "Remove-PnPWeb", + "Id": 1186, "Rank": 2 }, { - "Id": 1187, - "CommandName": "Remove-PnPWebhookSubscription", "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "CommandName": "Remove-PnPWebhookSubscription", + "Id": 1187, "Rank": 1 }, { - "Id": 1188, - "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Remove-PnPWebPart", + "Id": 1188, "Rank": 1 }, { - "Id": 1189, - "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "CommandName": "Remove-PnPWebPart", + "Id": 1189, "Rank": 2 }, { - "Id": 1190, - "CommandName": "Remove-PnPWikiPage", "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "CommandName": "Remove-PnPWikiPage", + "Id": 1190, "Rank": 1 }, { - "Id": 1191, - "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "CommandName": "Rename-PnPFile", + "Id": 1191, "Rank": 1 }, { - "Id": 1192, - "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "CommandName": "Rename-PnPFile", + "Id": 1192, "Rank": 2 }, { - "Id": 1193, - "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "CommandName": "Rename-PnPFile", + "Id": 1193, "Rank": 3 }, { - "Id": 1194, - "CommandName": "Rename-PnPFolder", "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "CommandName": "Rename-PnPFolder", + "Id": 1194, "Rank": 1 }, { - "Id": 1195, - "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Repair-PnPSite", + "Id": 1195, "Rank": 1 }, { - "Id": 1196, - "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "CommandName": "Repair-PnPSite", + "Id": 1196, "Rank": 2 }, { - "Id": 1197, - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken", + "CommandName": "Request-PnPAccessToken", + "Id": 1197, "Rank": 1 }, { - "Id": 1198, - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "CommandName": "Request-PnPAccessToken", + "Id": 1198, "Rank": 2 }, { - "Id": 1199, - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "CommandName": "Request-PnPAccessToken", + "Id": 1199, "Rank": 3 }, { - "Id": 1200, - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "CommandName": "Request-PnPAccessToken", + "Id": 1200, "Rank": 4 }, { - "Id": 1201, - "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "CommandName": "Request-PnPPersonalSite", + "Id": 1201, "Rank": 1 }, { - "Id": 1202, - "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "CommandName": "Request-PnPPersonalSite", + "Id": 1202, "Rank": 2 }, { - "Id": 1203, - "CommandName": "Request-PnPReIndexList", "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "CommandName": "Request-PnPReIndexList", + "Id": 1203, "Rank": 1 }, { - "Id": 1204, - "CommandName": "Request-PnPReIndexWeb", "Command": "Request-PnPReIndexWeb", + "CommandName": "Request-PnPReIndexWeb", + "Id": 1204, "Rank": 1 }, { - "Id": 1205, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1205, "Rank": 1 }, { - "Id": 1206, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1206, "Rank": 2 }, { - "Id": 1207, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1207, "Rank": 3 }, { - "Id": 1208, - "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "CommandName": "Reset-PnPFileVersion", + "Id": 1208, "Rank": 1 }, { - "Id": 1209, - "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "CommandName": "Reset-PnPFileVersion", + "Id": 1209, "Rank": 2 }, { - "Id": 1210, - "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\"", + "CommandName": "Reset-PnPLabel", + "Id": 1210, "Rank": 1 }, { - "Id": 1211, - "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "CommandName": "Reset-PnPLabel", + "Id": 1211, "Rank": 2 }, { - "Id": 1212, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Command": "Reset-PnPMicrosoft365GroupExpiration", + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1212, "Rank": 1 }, { - "Id": 1213, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Id": 1213, "Rank": 1 }, { - "Id": 1214, - "CommandName": "Resolve-PnPFolder", "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "CommandName": "Resolve-PnPFolder", + "Id": 1214, "Rank": 1 }, { - "Id": 1215, - "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Id": 1215, "Rank": 1 }, { - "Id": 1216, - "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "CommandName": "Restore-PnPFileVersion", + "Id": 1216, "Rank": 1 }, { - "Id": 1217, - "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "CommandName": "Restore-PnPFileVersion", + "Id": 1217, "Rank": 2 }, { - "Id": 1218, - "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "CommandName": "Restore-PnPFileVersion", + "Id": 1218, "Rank": 3 }, { - "Id": 1219, - "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "CommandName": "Restore-PnPListItemVersion", + "Id": 1219, "Rank": 1 }, { - "Id": 1220, - "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "CommandName": "Restore-PnPListItemVersion", + "Id": 1220, "Rank": 2 }, { - "Id": 1221, - "CommandName": "Restore-PnPRecycleBinItem", "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "CommandName": "Restore-PnPRecycleBinItem", + "Id": 1221, "Rank": 1 }, { - "Id": 1222, - "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1222, "Rank": 1 }, { - "Id": 1223, - "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1223, "Rank": 2 }, { - "Id": 1224, - "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Restore-PnPTenantSite", + "Id": 1224, "Rank": 1 }, { - "Id": 1225, - "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "CommandName": "Restore-PnPTenantSite", + "Id": 1225, "Rank": 2 }, { - "Id": 1226, - "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "CommandName": "Restore-PnPTenantSite", + "Id": 1226, "Rank": 3 }, { - "Id": 1227, - "CommandName": "Revoke-PnPAzureADAppSitePermission", "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Id": 1227, "Rank": 1 }, { - "Id": 1228, - "CommandName": "Revoke-PnPHubSiteRights", "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Revoke-PnPHubSiteRights", + "Id": 1228, "Rank": 1 }, { - "Id": 1229, - "CommandName": "Revoke-PnPSiteDesignRights", "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Revoke-PnPSiteDesignRights", + "Id": 1229, "Rank": 1 }, { - "Id": 1230, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Id": 1230, "Rank": 1 }, { - "Id": 1231, - "CommandName": "Revoke-PnPUserSession", "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "CommandName": "Revoke-PnPUserSession", + "Id": 1231, "Rank": 1 }, { - "Id": 1232, - "CommandName": "Save-PnPPageConversionLog", "Command": "Save-PnPPageConversionLog", + "CommandName": "Save-PnPPageConversionLog", + "Id": 1232, "Rank": 1 }, { - "Id": 1233, - "CommandName": "Save-PnPSiteTemplate", "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "CommandName": "Save-PnPSiteTemplate", + "Id": 1233, "Rank": 1 }, { - "Id": 1234, - "CommandName": "Save-PnPTenantTemplate", "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "CommandName": "Save-PnPTenantTemplate", + "Id": 1234, "Rank": 1 }, { - "Id": 1235, - "CommandName": "Send-PnPMail", "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": 1235, "Rank": 1 }, { - "Id": 1236, - "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", + "CommandName": "Send-PnPMail", + "Id": 1236, "Rank": 2 }, { - "Id": 1237, - "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "CommandName": "Send-PnPMail", + "Id": 1237, "Rank": 3 }, { - "Id": 1238, - "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", + "CommandName": "Send-PnPMail", + "Id": 1238, "Rank": 4 }, { - "Id": 1239, - "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", + "CommandName": "Send-PnPMail", + "Id": 1239, "Rank": 5 }, { - "Id": 1240, - "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\"", + "CommandName": "Send-PnPMail", + "Id": 1240, "Rank": 6 }, { - "Id": 1241, - "CommandName": "Set-PnPAdaptiveScopeProperty", "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Id": 1241, "Rank": 1 }, { - "Id": 1242, - "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1242, "Rank": 1 }, { - "Id": 1243, - "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1243, "Rank": 2 }, { - "Id": 1244, - "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -On", + "CommandName": "Set-PnPAppSideLoading", + "Id": 1244, "Rank": 1 }, { - "Id": 1245, - "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -Off", + "CommandName": "Set-PnPAppSideLoading", + "Id": 1245, "Rank": 2 }, { - "Id": 1246, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -EnableAll", + "CommandName": "Set-PnPAuditing", + "Id": 1246, "Rank": 1 }, { - "Id": 1247, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -DisableAll", + "CommandName": "Set-PnPAuditing", + "Id": 1247, "Rank": 2 }, { - "Id": 1248, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7", + "CommandName": "Set-PnPAuditing", + "Id": 1248, "Rank": 3 }, { - "Id": 1249, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -TrimAuditLog", + "CommandName": "Set-PnPAuditing", + "Id": 1249, "Rank": 4 }, { - "Id": 1250, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "CommandName": "Set-PnPAuditing", + "Id": 1250, "Rank": 5 }, { - "Id": 1251, - "CommandName": "Set-PnPAvailablePageLayouts", "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "CommandName": "Set-PnPAvailablePageLayouts", + "Id": 1251, "Rank": 1 }, { - "Id": 1252, - "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1252, "Rank": 1 }, { - "Id": 1253, - "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1253, "Rank": 2 }, { - "Id": 1254, - "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPAzureADGroup", + "Id": 1254, "Rank": 1 }, { - "Id": 1255, - "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPAzureADGroup", + "Id": 1255, "Rank": 2 }, { - "Id": 1256, - "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "CommandName": "Set-PnPAzureADGroup", + "Id": 1256, "Rank": 3 }, { - "Id": 1257, - "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1257, "Rank": 1 }, { - "Id": 1258, - "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1258, "Rank": 2 }, { - "Id": 1259, - "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1259, "Rank": 3 }, { - "Id": 1260, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1260, "Rank": 1 }, { - "Id": 1261, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1261, "Rank": 2 }, { - "Id": 1262, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1262, "Rank": 1 }, { - "Id": 1263, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1263, "Rank": 2 }, { - "Id": 1264, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1264, "Rank": 3 }, { - "Id": 1265, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1265, "Rank": 4 }, { - "Id": 1266, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "CommandName": "Set-PnPContentType", + "Id": 1266, "Rank": 1 }, { - "Id": 1267, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "CommandName": "Set-PnPContentType", + "Id": 1267, "Rank": 2 }, { - "Id": 1268, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "CommandName": "Set-PnPContentType", + "Id": 1268, "Rank": 3 }, { - "Id": 1269, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "CommandName": "Set-PnPContentType", + "Id": 1269, "Rank": 4 }, { - "Id": 1270, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "CommandName": "Set-PnPContentType", + "Id": 1270, "Rank": 5 }, { - "Id": 1271, - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1271, "Rank": 1 }, { - "Id": 1272, - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1272, "Rank": 2 }, { - "Id": 1273, - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1273, "Rank": 3 }, { - "Id": 1274, - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1274, "Rank": 4 }, { - "Id": 1275, - "CommandName": "Set-PnPDefaultContentTypeToList", "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "CommandName": "Set-PnPDefaultContentTypeToList", + "Id": 1275, "Rank": 1 }, { - "Id": 1276, - "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1276, "Rank": 1 }, { - "Id": 1277, - "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1277, "Rank": 2 }, { - "Id": 1278, - "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1278, "Rank": 3 }, { - "Id": 1279, - "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1279, "Rank": 1 }, { - "Id": 1280, - "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1280, "Rank": 2 }, { - "Id": 1281, - "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1281, "Rank": 3 }, { - "Id": 1282, - "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "CommandName": "Set-PnPDocumentSetField", + "Id": 1282, "Rank": 1 }, { - "Id": 1283, - "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "CommandName": "Set-PnPDocumentSetField", + "Id": 1283, "Rank": 2 }, { - "Id": 1284, - "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "CommandName": "Set-PnPField", + "Id": 1284, "Rank": 1 }, { - "Id": 1285, - "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "CommandName": "Set-PnPField", + "Id": 1285, "Rank": 2 }, { - "Id": 1286, - "CommandName": "Set-PnPField", "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "CommandName": "Set-PnPField", + "Id": 1286, "Rank": 3 }, { - "Id": 1287, - "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1287, "Rank": 1 }, { - "Id": 1288, - "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1288, "Rank": 2 }, { - "Id": 1289, - "CommandName": "Set-PnPFileCheckedOut", "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "CommandName": "Set-PnPFileCheckedOut", + "Id": 1289, "Rank": 1 }, { - "Id": 1290, - "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPFolderPermission", + "Id": 1290, "Rank": 1 }, { - "Id": 1291, - "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPFolderPermission", + "Id": 1291, "Rank": 2 }, { - "Id": 1292, - "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "CommandName": "Set-PnPFolderPermission", + "Id": 1292, "Rank": 3 }, { - "Id": 1293, - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true", + "CommandName": "Set-PnPFooter", + "Id": 1293, "Rank": 1 }, { - "Id": 1294, - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "CommandName": "Set-PnPFooter", + "Id": 1294, "Rank": 2 }, { - "Id": 1295, - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "CommandName": "Set-PnPFooter", + "Id": 1295, "Rank": 3 }, { - "Id": 1296, - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -LogoUrl \"\"", + "CommandName": "Set-PnPFooter", + "Id": 1296, "Rank": 4 }, { - "Id": 1297, - "CommandName": "Set-PnPGraphSubscription", "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "CommandName": "Set-PnPGraphSubscription", + "Id": 1297, "Rank": 1 }, { - "Id": 1298, - "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "CommandName": "Set-PnPGroup", + "Id": 1298, "Rank": 1 }, { - "Id": 1299, - "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "CommandName": "Set-PnPGroup", + "Id": 1299, "Rank": 2 }, { - "Id": 1300, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "CommandName": "Set-PnPGroupPermissions", + "Id": 1300, "Rank": 1 }, { - "Id": 1301, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "CommandName": "Set-PnPGroupPermissions", + "Id": 1301, "Rank": 2 }, { - "Id": 1302, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "CommandName": "Set-PnPGroupPermissions", + "Id": 1302, "Rank": 3 }, { - "Id": 1303, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "CommandName": "Set-PnPGroupPermissions", + "Id": 1303, "Rank": 4 }, { - "Id": 1304, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "CommandName": "Set-PnPGroupPermissions", + "Id": 1304, "Rank": 5 }, { - "Id": 1305, - "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1305, "Rank": 1 }, { - "Id": 1306, - "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1306, "Rank": 2 }, { - "Id": 1307, - "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "CommandName": "Set-PnPHomePage", + "Id": 1307, "Rank": 1 }, { - "Id": 1308, - "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "CommandName": "Set-PnPHomePage", + "Id": 1308, "Rank": 2 }, { - "Id": 1309, - "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "CommandName": "Set-PnPHomeSite", + "Id": 1309, "Rank": 1 }, { - "Id": 1310, - "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "CommandName": "Set-PnPHomeSite", + "Id": 1310, "Rank": 2 }, { - "Id": 1311, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "CommandName": "Set-PnPHubSite", + "Id": 1311, "Rank": 1 }, { - "Id": 1312, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "CommandName": "Set-PnPHubSite", + "Id": 1312, "Rank": 2 }, { - "Id": 1313, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "CommandName": "Set-PnPHubSite", + "Id": 1313, "Rank": 3 }, { - "Id": 1314, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", + "CommandName": "Set-PnPHubSite", + "Id": 1314, "Rank": 4 }, { - "Id": 1315, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "CommandName": "Set-PnPHubSite", + "Id": 1315, "Rank": 5 }, { - "Id": 1316, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "CommandName": "Set-PnPHubSite", + "Id": 1316, "Rank": 6 }, { - "Id": 1317, - "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1317, "Rank": 1 }, { - "Id": 1318, - "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1318, "Rank": 2 }, { - "Id": 1319, - "CommandName": "Set-PnPIndexedProperties", "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "CommandName": "Set-PnPIndexedProperties", + "Id": 1319, "Rank": 1 }, { - "Id": 1320, - "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1320, "Rank": 1 }, { - "Id": 1321, - "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1321, "Rank": 2 }, { - "Id": 1322, - "CommandName": "Set-PnPKnowledgeHubSite", "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "CommandName": "Set-PnPKnowledgeHubSite", + "Id": 1322, "Rank": 1 }, { - "Id": 1323, - "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "CommandName": "Set-PnPLabel", + "Id": 1323, "Rank": 1 }, { - "Id": 1324, - "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "CommandName": "Set-PnPLabel", + "Id": 1324, "Rank": 2 }, { - "Id": 1325, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "CommandName": "Set-PnPList", + "Id": 1325, "Rank": 1 }, { - "Id": 1326, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "CommandName": "Set-PnPList", + "Id": 1326, "Rank": 2 }, { - "Id": 1327, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "CommandName": "Set-PnPList", + "Id": 1327, "Rank": 3 }, { - "Id": 1328, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "CommandName": "Set-PnPList", + "Id": 1328, "Rank": 4 }, { - "Id": 1329, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "CommandName": "Set-PnPList", + "Id": 1329, "Rank": 5 }, { - "Id": 1330, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "CommandName": "Set-PnPList", + "Id": 1330, "Rank": 6 }, { - "Id": 1331, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "CommandName": "Set-PnPList", + "Id": 1331, "Rank": 7 }, { - "Id": 1332, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "CommandName": "Set-PnPList", + "Id": 1332, "Rank": 8 }, { - "Id": 1333, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "CommandName": "Set-PnPList", + "Id": 1333, "Rank": 9 }, { - "Id": 1334, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "CommandName": "Set-PnPList", + "Id": 1334, "Rank": 10 }, { - "Id": 1335, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "CommandName": "Set-PnPList", + "Id": 1335, "Rank": 11 }, { - "Id": 1336, - "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1336, "Rank": 1 }, { - "Id": 1337, - "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1337, "Rank": 2 }, { - "Id": 1338, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem", + "Id": 1338, "Rank": 1 }, { - "Id": 1339, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem", + "Id": 1339, "Rank": 2 }, { - "Id": 1340, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem", + "Id": 1340, "Rank": 3 }, { - "Id": 1341, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "CommandName": "Set-PnPListItem", + "Id": 1341, "Rank": 4 }, { - "Id": 1342, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "CommandName": "Set-PnPListItem", + "Id": 1342, "Rank": 5 }, { - "Id": 1343, - "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1343, "Rank": 1 }, { - "Id": 1344, - "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1344, "Rank": 2 }, { - "Id": 1345, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPListItemPermission", + "Id": 1345, "Rank": 1 }, { - "Id": 1346, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPListItemPermission", + "Id": 1346, "Rank": 2 }, { - "Id": 1347, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "CommandName": "Set-PnPListItemPermission", + "Id": 1347, "Rank": 3 }, { - "Id": 1348, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "CommandName": "Set-PnPListItemPermission", + "Id": 1348, "Rank": 4 }, { - "Id": 1349, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "CommandName": "Set-PnPListItemPermission", + "Id": 1349, "Rank": 5 }, { - "Id": 1350, - "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPListPermission", + "Id": 1350, "Rank": 1 }, { - "Id": 1351, - "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPListPermission", + "Id": 1351, "Rank": 2 }, { - "Id": 1352, - "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1352, "Rank": 1 }, { - "Id": 1353, - "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1353, "Rank": 2 }, { - "Id": 1354, - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", + "Id": 1354, "Rank": 1 }, { - "Id": 1355, - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", + "Id": 1355, "Rank": 2 }, { - "Id": 1356, - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", + "Id": 1356, "Rank": 3 }, { - "Id": 1357, - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", + "Id": 1357, "Rank": 4 }, { - "Id": 1358, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1358, "Rank": 1 }, { - "Id": 1359, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1359, "Rank": 2 }, { - "Id": 1360, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1360, "Rank": 3 }, { - "Id": 1361, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1361, "Rank": 1 }, { - "Id": 1362, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1362, "Rank": 2 }, { - "Id": 1363, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1363, "Rank": 3 }, { - "Id": 1364, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1364, "Rank": 1 }, { - "Id": 1365, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1365, "Rank": 2 }, { - "Id": 1366, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1366, "Rank": 3 }, { - "Id": 1367, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1367, "Rank": 1 }, { - "Id": 1368, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1368, "Rank": 2 }, { - "Id": 1369, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1369, "Rank": 3 }, { - "Id": 1370, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1370, "Rank": 1 }, { - "Id": 1371, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1371, "Rank": 2 }, { - "Id": 1372, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1372, "Rank": 3 }, { - "Id": 1373, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1373, "Rank": 1 }, { - "Id": 1374, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1374, "Rank": 2 }, { - "Id": 1375, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1375, "Rank": 3 }, { - "Id": 1376, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1376, "Rank": 1 }, { - "Id": 1377, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1377, "Rank": 2 }, { - "Id": 1378, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1378, "Rank": 3 }, { - "Id": 1379, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1379, "Rank": 4 }, { - "Id": 1380, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1380, "Rank": 5 }, { - "Id": 1381, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1381, "Rank": 6 }, { - "Id": 1382, - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1382, "Rank": 1 }, { - "Id": 1383, - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1383, "Rank": 2 }, { - "Id": 1384, - "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -Off", + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1384, "Rank": 1 }, { - "Id": 1385, - "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -On", + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1385, "Rank": 2 }, { - "Id": 1386, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "CommandName": "Set-PnPPage", + "Id": 1386, "Rank": 1 }, { - "Id": 1387, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "CommandName": "Set-PnPPage", + "Id": 1387, "Rank": 2 }, { - "Id": 1388, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "CommandName": "Set-PnPPage", + "Id": 1388, "Rank": 3 }, { - "Id": 1389, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "CommandName": "Set-PnPPage", + "Id": 1389, "Rank": 4 }, { - "Id": 1390, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "CommandName": "Set-PnPPage", + "Id": 1390, "Rank": 5 }, { - "Id": 1391, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", + "CommandName": "Set-PnPPage", + "Id": 1391, "Rank": 6 }, { - "Id": 1392, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "CommandName": "Set-PnPPage", + "Id": 1392, "Rank": 7 }, { - "Id": 1393, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "CommandName": "Set-PnPPage", + "Id": 1393, "Rank": 8 }, { - "Id": 1394, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "CommandName": "Set-PnPPage", + "Id": 1394, "Rank": 9 }, { - "Id": 1395, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "CommandName": "Set-PnPPage", + "Id": 1395, "Rank": 10 }, { - "Id": 1396, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "CommandName": "Set-PnPPage", + "Id": 1396, "Rank": 11 }, { - "Id": 1397, - "CommandName": "Set-PnPPageTextPart", "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "CommandName": "Set-PnPPageTextPart", + "Id": 1397, "Rank": 1 }, { - "Id": 1398, - "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "CommandName": "Set-PnPPageWebPart", + "Id": 1398, "Rank": 1 }, { - "Id": 1399, - "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "CommandName": "Set-PnPPageWebPart", + "Id": 1399, "Rank": 2 }, { - "Id": 1400, - "CommandName": "Set-PnPPlannerBucket", "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "CommandName": "Set-PnPPlannerBucket", + "Id": 1400, "Rank": 1 }, { - "Id": 1401, - "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1401, "Rank": 1 }, { - "Id": 1402, - "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1402, "Rank": 2 }, { - "Id": 1403, - "CommandName": "Set-PnPPlannerPlan", "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "CommandName": "Set-PnPPlannerPlan", + "Id": 1403, "Rank": 1 }, { - "Id": 1404, - "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "CommandName": "Set-PnPPlannerTask", + "Id": 1404, "Rank": 1 }, { - "Id": 1405, - "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "CommandName": "Set-PnPPlannerTask", + "Id": 1405, "Rank": 2 }, { - "Id": 1406, - "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "CommandName": "Set-PnPPlannerTask", + "Id": 1406, "Rank": 3 }, { - "Id": 1407, - "CommandName": "Set-PnPPlannerUserPolicy", "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Set-PnPPlannerUserPolicy", + "Id": 1407, "Rank": 1 }, { - "Id": 1408, - "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1408, "Rank": 1 }, { - "Id": 1409, - "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1409, "Rank": 2 }, { - "Id": 1410, - "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1410, "Rank": 3 }, { - "Id": 1411, - "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1411, "Rank": 1 }, { - "Id": 1412, - "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled", + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1412, "Rank": 2 }, { - "Id": 1413, - "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1413, "Rank": 3 }, { - "Id": 1414, - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "CommandName": "Set-PnPRoleDefinition", + "Id": 1414, "Rank": 1 }, { - "Id": 1415, - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "CommandName": "Set-PnPRoleDefinition", + "Id": 1415, "Rank": 2 }, { - "Id": 1416, - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "CommandName": "Set-PnPRoleDefinition", + "Id": 1416, "Rank": 3 }, { - "Id": 1417, - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "CommandName": "Set-PnPRoleDefinition", + "Id": 1417, "Rank": 4 }, { - "Id": 1418, - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config", + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1418, "Rank": 1 }, { - "Id": 1419, - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1419, "Rank": 2 }, { - "Id": 1420, - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1420, "Rank": 3 }, { - "Id": 1421, - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1421, "Rank": 4 }, { - "Id": 1422, - "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", + "CommandName": "Set-PnPSearchExternalItem", + "Id": 1422, "Rank": 1 }, { - "Id": 1423, - "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\"", + "CommandName": "Set-PnPSearchExternalItem", + "Id": 1423, "Rank": 2 }, { - "Id": 1424, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "CommandName": "Set-PnPSearchSettings", + "Id": 1424, "Rank": 1 }, { - "Id": 1425, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "CommandName": "Set-PnPSearchSettings", + "Id": 1425, "Rank": 2 }, { - "Id": 1426, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "CommandName": "Set-PnPSearchSettings", + "Id": 1426, "Rank": 3 }, { - "Id": 1427, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "CommandName": "Set-PnPSearchSettings", + "Id": 1427, "Rank": 4 }, { - "Id": 1428, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "CommandName": "Set-PnPSearchSettings", + "Id": 1428, "Rank": 5 }, { - "Id": 1429, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "CommandName": "Set-PnPSearchSettings", + "Id": 1429, "Rank": 6 }, { - "Id": 1430, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Hub", + "CommandName": "Set-PnPSearchSettings", + "Id": 1430, "Rank": 7 }, { - "Id": 1431, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification \"HBI\"", + "CommandName": "Set-PnPSite", + "Id": 1431, "Rank": 1 }, { - "Id": 1432, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification $null", + "CommandName": "Set-PnPSite", + "Id": 1432, "Rank": 2 }, { - "Id": 1433, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows", + "CommandName": "Set-PnPSite", + "Id": 1433, "Rank": 3 }, { - "Id": 1434, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows:$false", + "CommandName": "Set-PnPSite", + "Id": 1434, "Rank": 4 }, { - "Id": 1435, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "CommandName": "Set-PnPSite", + "Id": 1435, "Rank": 5 }, { - "Id": 1436, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -NoScriptSite $false", + "CommandName": "Set-PnPSite", + "Id": 1436, "Rank": 6 }, { - "Id": 1437, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "CommandName": "Set-PnPSite", + "Id": 1437, "Rank": 7 }, { - "Id": 1438, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "CommandName": "Set-PnPSite", + "Id": 1438, "Rank": 8 }, { - "Id": 1439, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "CommandName": "Set-PnPSite", + "Id": 1439, "Rank": 9 }, { - "Id": 1440, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "CommandName": "Set-PnPSite", + "Id": 1440, "Rank": 10 }, { - "Id": 1441, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "CommandName": "Set-PnPSite", + "Id": 1441, "Rank": 11 }, { - "Id": 1442, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "CommandName": "Set-PnPSite", + "Id": 1442, "Rank": 12 }, { - "Id": 1443, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "CommandName": "Set-PnPSite", + "Id": 1443, "Rank": 13 }, { - "Id": 1444, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "CommandName": "Set-PnPSite", + "Id": 1444, "Rank": 14 }, { - "Id": 1445, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "CommandName": "Set-PnPSite", + "Id": 1445, "Rank": 15 }, { - "Id": 1446, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "CommandName": "Set-PnPSite", + "Id": 1446, "Rank": 16 }, { - "Id": 1447, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -CancelVPForExistingLibs", + "CommandName": "Set-PnPSite", + "Id": 1447, "Rank": 17 }, { - "Id": 1448, - "CommandName": "Set-PnPSiteClassification", "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "CommandName": "Set-PnPSiteClassification", + "Id": 1448, "Rank": 1 }, { - "Id": 1449, - "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Open", + "CommandName": "Set-PnPSiteClosure", + "Id": 1449, "Rank": 1 }, { - "Id": 1450, - "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Closed", + "CommandName": "Set-PnPSiteClosure", + "Id": 1450, "Rank": 2 }, { - "Id": 1451, - "CommandName": "Set-PnPSiteDesign", "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "CommandName": "Set-PnPSiteDesign", + "Id": 1451, "Rank": 1 }, { - "Id": 1452, - "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\"", + "CommandName": "Set-PnPSiteDesign", + "Id": 1452, "Rank": 2 }, { - "Id": 1453, - "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "CommandName": "Set-PnPSiteGroup", + "Id": 1453, "Rank": 1 }, { - "Id": 1454, - "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "CommandName": "Set-PnPSiteGroup", + "Id": 1454, "Rank": 2 }, { - "Id": 1455, - "CommandName": "Set-PnPSitePolicy", "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "CommandName": "Set-PnPSitePolicy", + "Id": 1455, "Rank": 1 }, { - "Id": 1456, - "CommandName": "Set-PnPSiteScript", "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "CommandName": "Set-PnPSiteScript", + "Id": 1456, "Rank": 1 }, { - "Id": 1457, - "CommandName": "Set-PnPSiteScriptPackage", "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "CommandName": "Set-PnPSiteScriptPackage", + "Id": 1457, "Rank": 1 }, { - "Id": 1458, - "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1458, "Rank": 1 }, { - "Id": 1459, - "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1459, "Rank": 2 }, { - "Id": 1460, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1460, "Rank": 1 }, { - "Id": 1461, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1461, "Rank": 2 }, { - "Id": 1462, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1462, "Rank": 3 }, { - "Id": 1463, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1463, "Rank": 4 }, { - "Id": 1464, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1464, "Rank": 5 }, { - "Id": 1465, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1465, "Rank": 6 }, { - "Id": 1466, - "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "CommandName": "Set-PnPStorageEntity", + "Id": 1466, "Rank": 1 }, { - "Id": 1467, - "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "CommandName": "Set-PnPStorageEntity", + "Id": 1467, "Rank": 2 }, { - "Id": 1468, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1468, "Rank": 1 }, { - "Id": 1469, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1469, "Rank": 2 }, { - "Id": 1470, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1470, "Rank": 1 }, { - "Id": 1471, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1471, "Rank": 2 }, { - "Id": 1472, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1472, "Rank": 1 }, { - "Id": 1473, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1473, "Rank": 2 }, { - "Id": 1474, - "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1474, "Rank": 1 }, { - "Id": 1475, - "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1475, "Rank": 2 }, { - "Id": 1476, - "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1476, "Rank": 3 }, { - "Id": 1477, - "CommandName": "Set-PnPTeamifyPromptHidden", "Command": "Set-PnPTeamifyPromptHidden", + "CommandName": "Set-PnPTeamifyPromptHidden", + "Id": 1477, "Rank": 1 }, { - "Id": 1478, - "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "CommandName": "Set-PnPTeamsChannel", + "Id": 1478, "Rank": 1 }, { - "Id": 1479, - "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "CommandName": "Set-PnPTeamsChannel", + "Id": 1479, "Rank": 2 }, { - "Id": 1480, - "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1480, "Rank": 1 }, { - "Id": 1481, - "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1481, "Rank": 2 }, { - "Id": 1482, - "CommandName": "Set-PnPTeamsTab", "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "CommandName": "Set-PnPTeamsTab", + "Id": 1482, "Rank": 1 }, { - "Id": 1483, - "CommandName": "Set-PnPTeamsTag", "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "CommandName": "Set-PnPTeamsTag", + "Id": 1483, "Rank": 1 }, { - "Id": 1484, - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "CommandName": "Set-PnPTeamsTeam", + "Id": 1484, "Rank": 1 }, { - "Id": 1485, - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "CommandName": "Set-PnPTeamsTeam", + "Id": 1485, "Rank": 2 }, { - "Id": 1486, - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "CommandName": "Set-PnPTeamsTeam", + "Id": 1486, "Rank": 3 }, { - "Id": 1487, - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "CommandName": "Set-PnPTeamsTeam", + "Id": 1487, "Rank": 4 }, { - "Id": 1488, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1488, "Rank": 1 }, { - "Id": 1489, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1489, "Rank": 2 }, { - "Id": 1490, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1490, "Rank": 3 }, { - "Id": 1491, - "CommandName": "Set-PnPTeamsTeamPicture", "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "CommandName": "Set-PnPTeamsTeamPicture", + "Id": 1491, "Rank": 1 }, { - "Id": 1492, - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $true", + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1492, "Rank": 1 }, { - "Id": 1493, - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $false", + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1493, "Rank": 2 }, { - "Id": 1494, - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", + "CommandName": "Set-PnPTenant", + "Id": 1494, "Rank": 1 }, { - "Id": 1495, - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "CommandName": "Set-PnPTenant", + "Id": 1495, "Rank": 2 }, { - "Id": 1496, - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "CommandName": "Set-PnPTenant", + "Id": 1496, "Rank": 3 }, { - "Id": 1497, - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "CommandName": "Set-PnPTenant", + "Id": 1497, "Rank": 4 }, { - "Id": 1498, - "CommandName": "Set-PnPTenantAppCatalogUrl", "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Id": 1498, "Rank": 1 }, { - "Id": 1499, - "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1499, "Rank": 1 }, { - "Id": 1500, - "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1500, "Rank": 2 }, { - "Id": 1501, - "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1501, "Rank": 3 }, { - "Id": 1502, - "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1502, "Rank": 1 }, { - "Id": 1503, - "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1503, "Rank": 2 }, { - "Id": 1504, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "CommandName": "Set-PnPTenantSite", + "Id": 1504, "Rank": 1 }, { - "Id": 1505, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "CommandName": "Set-PnPTenantSite", + "Id": 1505, "Rank": 2 }, { - "Id": 1506, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Set-PnPTenantSite", + "Id": 1506, "Rank": 3 }, { - "Id": 1507, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Set-PnPTenantSite", + "Id": 1507, "Rank": 4 }, { - "Id": 1508, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "CommandName": "Set-PnPTenantSite", + "Id": 1508, "Rank": 5 }, { - "Id": 1509, - "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1509, "Rank": 1 }, { - "Id": 1510, - "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1510, "Rank": 2 }, { - "Id": 1511, - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "CommandName": "Set-PnPTerm", + "Id": 1511, "Rank": 1 }, { - "Id": 1512, - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "Set-PnPTerm", + "Id": 1512, "Rank": 2 }, { - "Id": 1513, - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "Set-PnPTerm", + "Id": 1513, "Rank": 3 }, { - "Id": 1514, - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "CommandName": "Set-PnPTerm", + "Id": 1514, "Rank": 4 }, { - "Id": 1515, - "CommandName": "Set-PnPTermGroup", "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "CommandName": "Set-PnPTermGroup", + "Id": 1515, "Rank": 1 }, { - "Id": 1516, - "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "CommandName": "Set-PnPTermSet", + "Id": 1516, "Rank": 1 }, { - "Id": 1517, - "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "CommandName": "Set-PnPTermSet", + "Id": 1517, "Rank": 2 }, { - "Id": 1518, - "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "CommandName": "Set-PnPTermSet", + "Id": 1518, "Rank": 3 }, { - "Id": 1519, - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme", + "CommandName": "Set-PnPTheme", + "Id": 1519, "Rank": 1 }, { - "Id": 1520, - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "CommandName": "Set-PnPTheme", + "Id": 1520, "Rank": 2 }, { - "Id": 1521, - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "CommandName": "Set-PnPTheme", + "Id": 1521, "Rank": 3 }, { - "Id": 1522, - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "CommandName": "Set-PnPTheme", + "Id": 1522, "Rank": 4 }, { - "Id": 1523, - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "CommandName": "Set-PnPTraceLog", + "Id": 1523, "Rank": 1 }, { - "Id": 1524, - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "CommandName": "Set-PnPTraceLog", + "Id": 1524, "Rank": 2 }, { - "Id": 1525, - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "CommandName": "Set-PnPTraceLog", + "Id": 1525, "Rank": 3 }, { - "Id": 1526, - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -Off", + "CommandName": "Set-PnPTraceLog", + "Id": 1526, "Rank": 4 }, { - "Id": 1527, - "CommandName": "Set-PnPUserOneDriveQuota", "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "CommandName": "Set-PnPUserOneDriveQuota", + "Id": 1527, "Rank": 1 }, { - "Id": 1528, - "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1528, "Rank": 1 }, { - "Id": 1529, - "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1529, "Rank": 2 }, { - "Id": 1530, - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "CommandName": "Set-PnPView", + "Id": 1530, "Rank": 1 }, { - "Id": 1531, - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "CommandName": "Set-PnPView", + "Id": 1531, "Rank": 2 }, { - "Id": 1532, - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "CommandName": "Set-PnPView", + "Id": 1532, "Rank": 3 }, { - "Id": 1533, - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "CommandName": "Set-PnPView", + "Id": 1533, "Rank": 4 }, { - "Id": 1534, - "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", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1534, "Rank": 1 }, { - "Id": 1535, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1535, "Rank": 2 }, { - "Id": 1536, - "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", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1536, "Rank": 3 }, { - "Id": 1537, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1537, "Rank": 4 }, { - "Id": 1538, - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "CommandName": "Set-PnPWeb", + "Id": 1538, "Rank": 1 }, { - "Id": 1539, - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "CommandName": "Set-PnPWeb", + "Id": 1539, "Rank": 2 }, { - "Id": 1540, - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "CommandName": "Set-PnPWeb", + "Id": 1540, "Rank": 3 }, { - "Id": 1541, - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -NoCrawl:$true", + "CommandName": "Set-PnPWeb", + "Id": 1541, "Rank": 4 }, { - "Id": 1542, - "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "CommandName": "Set-PnPWebHeader", + "Id": 1542, "Rank": 1 }, { - "Id": 1543, - "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "CommandName": "Set-PnPWebHeader", + "Id": 1543, "Rank": 2 }, { - "Id": 1544, - "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "CommandName": "Set-PnPWebHeader", + "Id": 1544, "Rank": 3 }, { - "Id": 1545, - "CommandName": "Set-PnPWebhookSubscription", "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", + "CommandName": "Set-PnPWebhookSubscription", + "Id": 1545, "Rank": 1 }, { - "Id": 1546, - "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\"", + "CommandName": "Set-PnPWebhookSubscription", + "Id": 1546, "Rank": 2 }, { - "Id": 1547, - "CommandName": "Set-PnPWebPartProperty", "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", + "CommandName": "Set-PnPWebPartProperty", + "Id": 1547, "Rank": 1 }, { - "Id": 1548, - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission", + "Id": 1548, "Rank": 1 }, { - "Id": 1549, - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission", + "Id": 1549, "Rank": 2 }, { - "Id": 1550, - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission", + "Id": 1550, "Rank": 3 }, { - "Id": 1551, - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "CommandName": "Set-PnPWebPermission", + "Id": 1551, "Rank": 4 }, { - "Id": 1552, - "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme MyTheme", + "CommandName": "Set-PnPWebTheme", + "Id": 1552, "Rank": 1 }, { - "Id": 1553, - "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "CommandName": "Set-PnPWebTheme", + "Id": 1553, "Rank": 2 }, { - "Id": 1554, - "CommandName": "Set-PnPWikiPageContent", "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "CommandName": "Set-PnPWikiPageContent", + "Id": 1554, "Rank": 1 }, { - "Id": 1555, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "CommandName": "Submit-PnPSearchQuery", + "Id": 1555, "Rank": 1 }, { - "Id": 1556, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "CommandName": "Submit-PnPSearchQuery", + "Id": 1556, "Rank": 2 }, { - "Id": 1557, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "CommandName": "Submit-PnPSearchQuery", + "Id": 1557, "Rank": 3 }, { - "Id": 1558, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "CommandName": "Submit-PnPSearchQuery", + "Id": 1558, "Rank": 4 }, { - "Id": 1559, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "CommandName": "Submit-PnPSearchQuery", + "Id": 1559, "Rank": 5 }, { - "Id": 1560, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", + "CommandName": "Submit-PnPSearchQuery", + "Id": 1560, "Rank": 6 }, { - "Id": 1561, - "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1561, "Rank": 1 }, { - "Id": 1562, - "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1562, "Rank": 2 }, { - "Id": 1563, - "CommandName": "Sync-PnPAppToTeams", "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Sync-PnPAppToTeams", + "Id": 1563, "Rank": 1 }, { - "Id": 1564, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1564, "Rank": 1 }, { - "Id": 1565, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1565, "Rank": 2 }, { - "Id": 1566, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1566, "Rank": 3 }, { - "Id": 1567, - "CommandName": "Test-PnPListItemIsRecord", "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "CommandName": "Test-PnPListItemIsRecord", + "Id": 1567, "Rank": 1 }, { - "Id": 1568, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Id": 1568, "Rank": 1 }, { - "Id": 1569, - "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Test-PnPSite", + "Id": 1569, "Rank": 1 }, { - "Id": 1570, - "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "CommandName": "Test-PnPSite", + "Id": 1570, "Rank": 2 }, { - "Id": 1571, - "CommandName": "Test-PnPTenantTemplate", "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "CommandName": "Test-PnPTenantTemplate", + "Id": 1571, "Rank": 1 }, { - "Id": 1572, - "CommandName": "Undo-PnPFileCheckedOut", "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "CommandName": "Undo-PnPFileCheckedOut", + "Id": 1572, "Rank": 1 }, { - "Id": 1573, - "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Uninstall-PnPApp", + "Id": 1573, "Rank": 1 }, { - "Id": 1574, - "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Uninstall-PnPApp", + "Id": 1574, "Rank": 2 }, { - "Id": 1575, - "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Unpublish-PnPApp", + "Id": 1575, "Rank": 1 }, { - "Id": 1576, - "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Unpublish-PnPApp", + "Id": 1576, "Rank": 2 }, { - "Id": 1577, - "CommandName": "Unpublish-PnPContentType", "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "CommandName": "Unpublish-PnPContentType", + "Id": 1577, "Rank": 1 }, { - "Id": 1578, - "CommandName": "Unpublish-PnPSyntexModel", "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1578, "Rank": 1 }, { - "Id": 1579, - "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", + "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1579, "Rank": 2 }, { - "Id": 1580, - "CommandName": "Unregister-PnPHubSite", "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "CommandName": "Unregister-PnPHubSite", + "Id": 1580, "Rank": 1 }, { - "Id": 1581, - "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Update-PnPApp", + "Id": 1581, "Rank": 1 }, { - "Id": 1582, - "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Update-PnPApp", + "Id": 1582, "Rank": 2 }, { - "Id": 1583, - "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1583, "Rank": 1 }, { - "Id": 1584, - "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1584, "Rank": 2 }, { - "Id": 1585, - "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1585, "Rank": 3 }, { - "Id": 1586, - "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1586, "Rank": 1 }, { - "Id": 1587, - "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1587, "Rank": 2 }, { - "Id": 1588, - "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1588, "Rank": 3 }, { - "Id": 1589, - "CommandName": "Update-PnPTeamsApp", "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "CommandName": "Update-PnPTeamsApp", + "Id": 1589, "Rank": 1 }, { - "Id": 1590, - "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Update-PnPTeamsUser", + "Id": 1590, "Rank": 1 }, { - "Id": 1591, - "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "CommandName": "Update-PnPTeamsUser", + "Id": 1591, "Rank": 2 }, { - "Id": 1592, - "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "CommandName": "Update-PnPTeamsUser", + "Id": 1592, "Rank": 3 }, { - "Id": 1593, - "CommandName": "Update-PnPUserType", "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "CommandName": "Update-PnPUserType", + "Id": 1593, "Rank": 1 } ] diff --git a/version.txt b/version.txt index 0f7626ebb..b22d2ce96 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.114 \ No newline at end of file +2.2.115 \ No newline at end of file From 58f470bf60b00e596f7ceef9c4ff5d088e3984d1 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Wed, 1 Nov 2023 02:40:23 +0000 Subject: [PATCH 125/146] Nightly publish to PowerShell Gallery --- pnpcoresdk_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6372 ++++++++--------- version.txt | 2 +- 3 files changed, 3188 insertions(+), 3188 deletions(-) diff --git a/pnpcoresdk_hash.txt b/pnpcoresdk_hash.txt index 0d592738d..5924874e9 100644 --- a/pnpcoresdk_hash.txt +++ b/pnpcoresdk_hash.txt @@ -1 +1 @@ -4ea01c07b6f07cb5ace4499e13f454e4015fab43 \ No newline at end of file +e43f388b8cf0e9b1babee9254c475d8c7bb24146 \ 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 e634afab1..a142b16e5 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -2,9559 +2,9559 @@ { "Command": "Add-PnPAlert -List \"Demo List\"", "CommandName": "Add-PnPAlert", - "Id": 1, - "Rank": 1 + "Rank": 1, + "Id": 1 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 2 }, { "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAlert", - "Id": 3, - "Rank": 3 + "Rank": 3, + "Id": 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))", "CommandName": "Add-PnPAlert", - "Id": 4, - "Rank": 4 + "Rank": 4, + "Id": 4 }, { "Command": "Add-PnPApp -Path ./myapp.sppkg", "CommandName": "Add-PnPApp", - "Id": 5, - "Rank": 1 + "Rank": 1, + "Id": 5 }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "CommandName": "Add-PnPApp", - "Id": 6, - "Rank": 2 + "Rank": 2, + "Id": 6 }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "CommandName": "Add-PnPApp", - "Id": 7, - "Rank": 3 + "Rank": 3, + "Id": 7 }, { "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "CommandName": "Add-PnPApp", - "Id": 8, - "Rank": 4 + "Rank": 4, + "Id": 8 }, { "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, - "Rank": 1 + "Rank": 1, + "Id": 9 }, { "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 10, - "Rank": 1 + "Rank": 1, + "Id": 10 }, { "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 11, - "Rank": 2 + "Rank": 2, + "Id": 11 }, { "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAzureADGroupMember", - "Id": 12, - "Rank": 1 + "Rank": 1, + "Id": 12 }, { "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPAzureADGroupMember", - "Id": 13, - "Rank": 2 + "Rank": 2, + "Id": 13 }, { "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "CommandName": "Add-PnPAzureADGroupMember", - "Id": 14, - "Rank": 3 + "Rank": 3, + "Id": 14 }, { "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 15, - "Rank": 1 + "Rank": 1, + "Id": 15 }, { "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 16, - "Rank": 2 + "Rank": 2, + "Id": 16 }, { "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 17, - "Rank": 3 + "Rank": 3, + "Id": 17 }, { "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 18, - "Rank": 1 + "Rank": 1, + "Id": 18 }, { "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 19, - "Rank": 2 + "Rank": 2, + "Id": 19 }, { "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "CommandName": "Add-PnPContentType", - "Id": 20, - "Rank": 1 + "Rank": 1, + "Id": 20 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 21 }, { "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "CommandName": "Add-PnPContentType", - "Id": 22, - "Rank": 3 + "Rank": 3, + "Id": 22 }, { "Command": "Add-PnPContentType -Name \"Project Item\"", "CommandName": "Add-PnPContentType", - "Id": 23, - "Rank": 4 + "Rank": 4, + "Id": 23 }, { "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "CommandName": "Add-PnPContentType", - "Id": 24, - "Rank": 5 + "Rank": 5, + "Id": 24 }, { "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 25, - "Rank": 1 + "Rank": 1, + "Id": 25 }, { "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 26, - "Rank": 2 + "Rank": 2, + "Id": 26 }, { "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 27, - "Rank": 1 + "Rank": 1, + "Id": 27 }, { "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 28, - "Rank": 2 + "Rank": 2, + "Id": 28 }, { "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "CommandName": "Add-PnPContentTypeToList", - "Id": 29, - "Rank": 1 + "Rank": 1, + "Id": 29 }, { "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, - "Rank": 1 + "Rank": 1, + "Id": 30 }, { "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 31, - "Rank": 1 + "Rank": 1, + "Id": 31 }, { "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 32, - "Rank": 2 + "Rank": 2, + "Id": 32 }, { "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "CommandName": "Add-PnPDocumentSet", - "Id": 33, - "Rank": 1 + "Rank": 1, + "Id": 33 }, { "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "CommandName": "Add-PnPEventReceiver", - "Id": 34, - "Rank": 1 + "Rank": 1, + "Id": 34 }, { "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "CommandName": "Add-PnPEventReceiver", - "Id": 35, - "Rank": 2 + "Rank": 2, + "Id": 35 }, { "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", "CommandName": "Add-PnPEventReceiver", - "Id": 36, - "Rank": 3 + "Rank": 3, + "Id": 36 }, { "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "CommandName": "Add-PnPEventReceiver", - "Id": 37, - "Rank": 4 + "Rank": 4, + "Id": 37 }, { "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "CommandName": "Add-PnPField", - "Id": 38, - "Rank": 1 + "Rank": 1, + "Id": 38 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 39 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 40 }, { "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "CommandName": "Add-PnPField", - "Id": 41, - "Rank": 4 + "Rank": 4, + "Id": 41 }, { "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "CommandName": "Add-PnPField", - "Id": 42, - "Rank": 5 + "Rank": 5, + "Id": 42 }, { "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "CommandName": "Add-PnPField", - "Id": 43, - "Rank": 6 + "Rank": 6, + "Id": 43 }, { "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "CommandName": "Add-PnPFieldToContentType", - "Id": 44, - "Rank": 1 + "Rank": 1, + "Id": 44 }, { "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "CommandName": "Add-PnPFile", - "Id": 45, - "Rank": 1 + "Rank": 1, + "Id": 45 }, { "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "CommandName": "Add-PnPFile", - "Id": 46, - "Rank": 2 + "Rank": 2, + "Id": 46 }, { "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Id": 47, - "Rank": 3 + "Rank": 3, + "Id": 47 }, { "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Id": 48, - "Rank": 4 + "Rank": 4, + "Id": 48 }, { "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Id": 49, - "Rank": 5 + "Rank": 5, + "Id": 49 }, { "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "CommandName": "Add-PnPFile", - "Id": 50, - "Rank": 6 + "Rank": 6, + "Id": 50 }, { "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "CommandName": "Add-PnPFile", - "Id": 51, - "Rank": 7 + "Rank": 7, + "Id": 51 }, { "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "CommandName": "Add-PnPFile", - "Id": 52, - "Rank": 8 + "Rank": 8, + "Id": 52 }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 53, - "Rank": 1 + "Rank": 1, + "Id": 53 }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 54, - "Rank": 2 + "Rank": 2, + "Id": 54 }, { "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 55, - "Rank": 3 + "Rank": 3, + "Id": 55 }, { "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 56, - "Rank": 1 + "Rank": 1, + "Id": 56 }, { "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 57, - "Rank": 2 + "Rank": 2, + "Id": 57 }, { "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "CommandName": "Add-PnPFileSharingInvite", - "Id": 58, - "Rank": 1 + "Rank": 1, + "Id": 58 }, { "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "CommandName": "Add-PnPFileSharingInvite", - "Id": 59, - "Rank": 2 + "Rank": 2, + "Id": 59 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 60 }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 61, - "Rank": 1 + "Rank": 1, + "Id": 61 }, { "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 62, - "Rank": 2 + "Rank": 2, + "Id": 62 }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 63, - "Rank": 3 + "Rank": 3, + "Id": 63 }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 64, - "Rank": 4 + "Rank": 4, + "Id": 64 }, { "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 65, - "Rank": 5 + "Rank": 5, + "Id": 65 }, { "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPFileUserSharingLink", - "Id": 66, - "Rank": 1 + "Rank": 1, + "Id": 66 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 67 }, { "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, - "Rank": 1 + "Rank": 1, + "Id": 68 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 69 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 70 }, { "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, - "Rank": 4 + "Rank": 4, + "Id": 71 }, { "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "CommandName": "Add-PnPFolder", - "Id": 72, - "Rank": 1 + "Rank": 1, + "Id": 72 }, { "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "CommandName": "Add-PnPFolder", - "Id": 73, - "Rank": 2 + "Rank": 2, + "Id": 73 }, { "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "CommandName": "Add-PnPFolder", - "Id": 74, - "Rank": 3 + "Rank": 3, + "Id": 74 }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 75, - "Rank": 1 + "Rank": 1, + "Id": 75 }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 76, - "Rank": 2 + "Rank": 2, + "Id": 76 }, { "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 77, - "Rank": 3 + "Rank": 3, + "Id": 77 }, { "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 78, - "Rank": 1 + "Rank": 1, + "Id": 78 }, { "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 79, - "Rank": 2 + "Rank": 2, + "Id": 79 }, { "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "CommandName": "Add-PnPFolderSharingInvite", - "Id": 80, - "Rank": 1 + "Rank": 1, + "Id": 80 }, { "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "CommandName": "Add-PnPFolderSharingInvite", - "Id": 81, - "Rank": 2 + "Rank": 2, + "Id": 81 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 82 }, { "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPFolderUserSharingLink", - "Id": 83, - "Rank": 1 + "Rank": 1, + "Id": 83 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 84 }, { "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "CommandName": "Add-PnPGroupMember", - "Id": 85, - "Rank": 1 + "Rank": 1, + "Id": 85 }, { "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "CommandName": "Add-PnPGroupMember", - "Id": 86, - "Rank": 2 + "Rank": 2, + "Id": 86 }, { "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "CommandName": "Add-PnPHtmlPublishingPageLayout", - "Id": 87, - "Rank": 1 + "Rank": 1, + "Id": 87 }, { "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "CommandName": "Add-PnPHubSiteAssociation", - "Id": 88, - "Rank": 1 + "Rank": 1, + "Id": 88 }, { "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "CommandName": "Add-PnPHubToHubAssociation", - "Id": 89, - "Rank": 1 + "Rank": 1, + "Id": 89 }, { "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "CommandName": "Add-PnPHubToHubAssociation", - "Id": 90, - "Rank": 2 + "Rank": 2, + "Id": 90 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 91 }, { "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "CommandName": "Add-PnPJavaScriptBlock", - "Id": 92, - "Rank": 1 + "Rank": 1, + "Id": 92 }, { "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "CommandName": "Add-PnPJavaScriptBlock", - "Id": 93, - "Rank": 2 + "Rank": 2, + "Id": 93 }, { "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "CommandName": "Add-PnPJavaScriptLink", - "Id": 94, - "Rank": 1 + "Rank": 1, + "Id": 94 }, { "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "CommandName": "Add-PnPJavaScriptLink", - "Id": 95, - "Rank": 2 + "Rank": 2, + "Id": 95 }, { "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "CommandName": "Add-PnPListDesign", - "Id": 96, - "Rank": 1 + "Rank": 1, + "Id": 96 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 97 }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 98, - "Rank": 1 + "Rank": 1, + "Id": 98 }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 99, - "Rank": 2 + "Rank": 2, + "Id": 99 }, { "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 100, - "Rank": 3 + "Rank": 3, + "Id": 100 }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Add-PnPListItem", - "Id": 101, - "Rank": 1 + "Rank": 1, + "Id": 101 }, { "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Add-PnPListItem", - "Id": 102, - "Rank": 2 + "Rank": 2, + "Id": 102 }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "CommandName": "Add-PnPListItem", - "Id": 103, - "Rank": 3 + "Rank": 3, + "Id": 103 }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "CommandName": "Add-PnPListItem", - "Id": 104, - "Rank": 4 + "Rank": 4, + "Id": 104 }, { "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "CommandName": "Add-PnPListItem", - "Id": 105, - "Rank": 5 + "Rank": 5, + "Id": 105 }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "CommandName": "Add-PnPListItemAttachment", - "Id": 106, - "Rank": 1 + "Rank": 1, + "Id": 106 }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "CommandName": "Add-PnPListItemAttachment", - "Id": 107, - "Rank": 2 + "Rank": 2, + "Id": 107 }, { "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "CommandName": "Add-PnPListItemAttachment", - "Id": 108, - "Rank": 3 + "Rank": 3, + "Id": 108 }, { "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "CommandName": "Add-PnPListItemComment", - "Id": 109, - "Rank": 1 + "Rank": 1, + "Id": 109 }, { "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "CommandName": "Add-PnPMasterPage", - "Id": 110, - "Rank": 1 + "Rank": 1, + "Id": 110 }, { "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 111, - "Rank": 1 + "Rank": 1, + "Id": 111 }, { "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 112, - "Rank": 2 + "Rank": 2, + "Id": 112 }, { "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 113, - "Rank": 1 + "Rank": 1, + "Id": 113 }, { "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 114, - "Rank": 2 + "Rank": 2, + "Id": 114 }, { "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 115, - "Rank": 1 + "Rank": 1, + "Id": 115 }, { "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 116, - "Rank": 2 + "Rank": 2, + "Id": 116 }, { "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 117, - "Rank": 3 + "Rank": 3, + "Id": 117 }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "CommandName": "Add-PnPNavigationNode", - "Id": 118, - "Rank": 1 + "Rank": 1, + "Id": 118 }, { "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "CommandName": "Add-PnPNavigationNode", - "Id": 119, - "Rank": 2 + "Rank": 2, + "Id": 119 }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "CommandName": "Add-PnPNavigationNode", - "Id": 120, - "Rank": 3 + "Rank": 3, + "Id": 120 }, { "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "CommandName": "Add-PnPNavigationNode", - "Id": 121, - "Rank": 4 + "Rank": 4, + "Id": 121 }, { "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "CommandName": "Add-PnPNavigationNode", - "Id": 122, - "Rank": 5 + "Rank": 5, + "Id": 122 }, { "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "CommandName": "Add-PnPNavigationNode", - "Id": 123, - "Rank": 6 + "Rank": 6, + "Id": 123 }, { "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "CommandName": "Add-PnPNavigationNode", - "Id": 124, - "Rank": 7 + "Rank": 7, + "Id": 124 }, { "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "CommandName": "Add-PnPNavigationNode", - "Id": 125, - "Rank": 8 + "Rank": 8, + "Id": 125 }, { "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 126, - "Rank": 1 + "Rank": 1, + "Id": 126 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 127 }, { "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 128, - "Rank": 3 + "Rank": 3, + "Id": 128 }, { "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "CommandName": "Add-PnPOrgNewsSite", - "Id": 129, - "Rank": 1 + "Rank": 1, + "Id": 129 }, { "Command": "Add-PnPPage -Name \"NewPage\"", "CommandName": "Add-PnPPage", - "Id": 130, - "Rank": 1 + "Rank": 1, + "Id": 130 }, { "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "CommandName": "Add-PnPPage", - "Id": 131, - "Rank": 2 + "Rank": 2, + "Id": 131 }, { "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "CommandName": "Add-PnPPage", - "Id": 132, - "Rank": 3 + "Rank": 3, + "Id": 132 }, { "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "CommandName": "Add-PnPPage", - "Id": 133, - "Rank": 4 + "Rank": 4, + "Id": 133 }, { "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "CommandName": "Add-PnPPage", - "Id": 134, - "Rank": 5 + "Rank": 5, + "Id": 134 }, { "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "CommandName": "Add-PnPPage", - "Id": 135, - "Rank": 6 + "Rank": 6, + "Id": 135 }, { "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "CommandName": "Add-PnPPage", - "Id": 136, - "Rank": 7 + "Rank": 7, + "Id": 136 }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "CommandName": "Add-PnPPage", - "Id": 137, - "Rank": 8 + "Rank": 8, + "Id": 137 }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "CommandName": "Add-PnPPage", - "Id": 138, - "Rank": 9 + "Rank": 9, + "Id": 138 }, { "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "CommandName": "Add-PnPPage", - "Id": 139, - "Rank": 10 + "Rank": 10, + "Id": 139 }, { "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "CommandName": "Add-PnPPageImageWebPart", - "Id": 140, - "Rank": 1 + "Rank": 1, + "Id": 140 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 141 }, { "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "CommandName": "Add-PnPPageSection", - "Id": 142, - "Rank": 1 + "Rank": 1, + "Id": 142 }, { "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "CommandName": "Add-PnPPageSection", - "Id": 143, - "Rank": 2 + "Rank": 2, + "Id": 143 }, { "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "CommandName": "Add-PnPPageTextPart", - "Id": 144, - "Rank": 1 + "Rank": 1, + "Id": 144 }, { "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "CommandName": "Add-PnPPageTextPart", - "Id": 145, - "Rank": 2 + "Rank": 2, + "Id": 145 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 146 }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "CommandName": "Add-PnPPageWebPart", - "Id": 147, - "Rank": 1 + "Rank": 1, + "Id": 147 }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "CommandName": "Add-PnPPageWebPart", - "Id": 148, - "Rank": 2 + "Rank": 2, + "Id": 148 }, { "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "CommandName": "Add-PnPPageWebPart", - "Id": 149, - "Rank": 3 + "Rank": 3, + "Id": 149 }, { "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "CommandName": "Add-PnPPlannerBucket", - "Id": 150, - "Rank": 1 + "Rank": 1, + "Id": 150 }, { "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "CommandName": "Add-PnPPlannerBucket", - "Id": 151, - "Rank": 2 + "Rank": 2, + "Id": 151 }, { "Command": "Add-PnPPlannerRoster", "CommandName": "Add-PnPPlannerRoster", - "Id": 152, - "Rank": 1 + "Rank": 1, + "Id": 152 }, { "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPPlannerRosterMember", - "Id": 153, - "Rank": 1 + "Rank": 1, + "Id": 153 }, { "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "CommandName": "Add-PnPPlannerTask", - "Id": 154, - "Rank": 1 + "Rank": 1, + "Id": 154 }, { "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "CommandName": "Add-PnPPlannerTask", - "Id": 155, - "Rank": 2 + "Rank": 2, + "Id": 155 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 156 }, { "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "CommandName": "Add-PnPPublishingImageRendition", - "Id": 157, - "Rank": 1 + "Rank": 1, + "Id": 157 }, { "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "CommandName": "Add-PnPPublishingPage", - "Id": 158, - "Rank": 1 + "Rank": 1, + "Id": 158 }, { "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "CommandName": "Add-PnPPublishingPage", - "Id": 159, - "Rank": 2 + "Rank": 2, + "Id": 159 }, { "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "CommandName": "Add-PnPPublishingPageLayout", - "Id": 160, - "Rank": 1 + "Rank": 1, + "Id": 160 }, { "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "CommandName": "Add-PnPRoleDefinition", - "Id": 161, - "Rank": 1 + "Rank": 1, + "Id": 161 }, { "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "CommandName": "Add-PnPRoleDefinition", - "Id": 162, - "Rank": 2 + "Rank": 2, + "Id": 162 }, { "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "CommandName": "Add-PnPRoleDefinition", - "Id": 163, - "Rank": 3 + "Rank": 3, + "Id": 163 }, { "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 164, - "Rank": 1 + "Rank": 1, + "Id": 164 }, { "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 165, - "Rank": 2 + "Rank": 2, + "Id": 165 }, { "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 166, - "Rank": 3 + "Rank": 3, + "Id": 166 }, { "Command": "Add-PnPSiteCollectionAppCatalog", "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 167, - "Rank": 1 + "Rank": 1, + "Id": 167 }, { "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 168, - "Rank": 2 + "Rank": 2, + "Id": 168 }, { "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, - "Rank": 1 + "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 -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png", "CommandName": "Add-PnPSiteDesign", - "Id": 170, - "Rank": 2 + "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/my images/logo.png\"", "CommandName": "Add-PnPSiteDesign", - "Id": 171, - "Rank": 3 + "Rank": 3, + "Id": 171 }, { "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 172, - "Rank": 1 + "Rank": 1, + "Id": 172 }, { "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 173, - "Rank": 2 + "Rank": 2, + "Id": 173 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 174 }, { "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "CommandName": "Add-PnPSiteDesignTask", - "Id": 175, - "Rank": 1 + "Rank": 1, + "Id": 175 }, { "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "CommandName": "Add-PnPSiteDesignTask", - "Id": 176, - "Rank": 2 + "Rank": 2, + "Id": 176 }, { "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "CommandName": "Add-PnPSiteScript", - "Id": 177, - "Rank": 1 + "Rank": 1, + "Id": 177 }, { "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "CommandName": "Add-PnPSiteScriptPackage", - "Id": 178, - "Rank": 1 + "Rank": 1, + "Id": 178 }, { "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "CommandName": "Add-PnPSiteTemplate", - "Id": 179, - "Rank": 1 + "Rank": 1, + "Id": 179 }, { "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "CommandName": "Add-PnPStoredCredential", - "Id": 180, - "Rank": 1 + "Rank": 1, + "Id": 180 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 181 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 182 }, { "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "CommandName": "Add-PnPTaxonomyField", - "Id": 183, - "Rank": 1 + "Rank": 1, + "Id": 183 }, { "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "CommandName": "Add-PnPTaxonomyField", - "Id": 184, - "Rank": 2 + "Rank": 2, + "Id": 184 }, { "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "CommandName": "Add-PnPTeamsChannel", - "Id": 185, - "Rank": 1 + "Rank": 1, + "Id": 185 }, { "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "CommandName": "Add-PnPTeamsChannel", - "Id": 186, - "Rank": 2 + "Rank": 2, + "Id": 186 }, { "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "CommandName": "Add-PnPTeamsChannel", - "Id": 187, - "Rank": 3 + "Rank": 3, + "Id": 187 }, { "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "CommandName": "Add-PnPTeamsChannel", - "Id": 188, - "Rank": 4 + "Rank": 4, + "Id": 188 }, { "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, - "Rank": 1 + "Rank": 1, + "Id": 189 }, { "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "CommandName": "Add-PnpTeamsChannelUser", - "Id": 190, - "Rank": 2 + "Rank": 2, + "Id": 190 }, { "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, - "Rank": 1 + "Rank": 1, + "Id": 191 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 192 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 193 }, { "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, - "Rank": 4 + "Rank": 4, + "Id": 194 }, { "Command": "Add-PnPTeamsTeam", "CommandName": "Add-PnPTeamsTeam", - "Id": 195, - "Rank": 1 + "Rank": 1, + "Id": 195 }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Add-PnPTeamsUser", - "Id": 196, - "Rank": 1 + "Rank": 1, + "Id": 196 }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "CommandName": "Add-PnPTeamsUser", - "Id": 197, - "Rank": 2 + "Rank": 2, + "Id": 197 }, { "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "CommandName": "Add-PnPTeamsUser", - "Id": 198, - "Rank": 3 + "Rank": 3, + "Id": 198 }, { "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "CommandName": "Add-PnPTeamsUser", - "Id": 199, - "Rank": 4 + "Rank": 4, + "Id": 199 }, { "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "CommandName": "Add-PnPTenantCdnOrigin", - "Id": 200, - "Rank": 1 + "Rank": 1, + "Id": 200 }, { "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "CommandName": "Add-PnPTenantSequence", - "Id": 201, - "Rank": 1 + "Rank": 1, + "Id": 201 }, { "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "CommandName": "Add-PnPTenantSequenceSite", - "Id": 202, - "Rank": 1 + "Rank": 1, + "Id": 202 }, { "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "CommandName": "Add-PnPTenantSequenceSubSite", - "Id": 203, - "Rank": 1 + "Rank": 1, + "Id": 203 }, { "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "CommandName": "Add-PnPTermToTerm", - "Id": 204, - "Rank": 1 + "Rank": 1, + "Id": 204 }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "CommandName": "Add-PnPView", - "Id": 205, - "Rank": 1 + "Rank": 1, + "Id": 205 }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "CommandName": "Add-PnPView", - "Id": 206, - "Rank": 2 + "Rank": 2, + "Id": 206 }, { "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "CommandName": "Add-PnPView", - "Id": 207, - "Rank": 3 + "Rank": 3, + "Id": 207 }, { "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, - "Rank": 1 + "Rank": 1, + "Id": 208 }, { "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, - "Rank": 2 + "Rank": 2, + "Id": 209 }, { "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, - "Rank": 3 + "Rank": 3, + "Id": 210 }, { "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "CommandName": "Add-PnPWebhookSubscription", - "Id": 211, - "Rank": 1 + "Rank": 1, + "Id": 211 }, { "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "CommandName": "Add-PnPWebhookSubscription", - "Id": 212, - "Rank": 2 + "Rank": 2, + "Id": 212 }, { "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "CommandName": "Add-PnPWebhookSubscription", - "Id": 213, - "Rank": 3 + "Rank": 3, + "Id": 213 }, { "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "CommandName": "Add-PnPWebPartToWebPartPage", - "Id": 214, - "Rank": 1 + "Rank": 1, + "Id": 214 }, { "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "CommandName": "Add-PnPWebPartToWebPartPage", - "Id": 215, - "Rank": 2 + "Rank": 2, + "Id": 215 }, { "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "CommandName": "Add-PnPWebPartToWikiPage", - "Id": 216, - "Rank": 1 + "Rank": 1, + "Id": 216 }, { "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "CommandName": "Add-PnPWebPartToWikiPage", - "Id": 217, - "Rank": 2 + "Rank": 2, + "Id": 217 }, { "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "CommandName": "Add-PnPWikiPage", - "Id": 218, - "Rank": 1 + "Rank": 1, + "Id": 218 }, { "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "CommandName": "Clear-PnPAzureADGroupMember", - "Id": 219, - "Rank": 1 + "Rank": 1, + "Id": 219 }, { "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "CommandName": "Clear-PnPAzureADGroupOwner", - "Id": 220, - "Rank": 1 + "Rank": 1, + "Id": 220 }, { "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 221, - "Rank": 1 + "Rank": 1, + "Id": 221 }, { "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 222, - "Rank": 2 + "Rank": 2, + "Id": 222 }, { "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "CommandName": "Clear-PnPListItemAsRecord", - "Id": 223, - "Rank": 1 + "Rank": 1, + "Id": 223 }, { "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Id": 224, - "Rank": 1 + "Rank": 1, + "Id": 224 }, { "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Id": 225, - "Rank": 1 + "Rank": 1, + "Id": 225 }, { "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "CommandName": "Clear-PnpRecycleBinItem", - "Id": 226, - "Rank": 1 + "Rank": 1, + "Id": 226 }, { "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "CommandName": "Clear-PnpRecycleBinItem", - "Id": 227, - "Rank": 2 + "Rank": 2, + "Id": 227 }, { "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "CommandName": "Clear-PnpRecycleBinItem", - "Id": 228, - "Rank": 3 + "Rank": 3, + "Id": 228 }, { "Command": "Clear-PnPTenantAppCatalogUrl", "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Id": 229, - "Rank": 1 + "Rank": 1, + "Id": 229 }, { "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 230, - "Rank": 1 + "Rank": 1, + "Id": 230 }, { "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 231, - "Rank": 2 + "Rank": 2, + "Id": 231 }, { "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, - "Rank": 1 + "Rank": 1, + "Id": 232 }, { "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 233, - "Rank": 1 + "Rank": 1, + "Id": 233 }, { "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 234, - "Rank": 2 + "Rank": 2, + "Id": 234 }, { "Command": "Convert-PnPSiteTemplate -Path template.xml", "CommandName": "Convert-PnPSiteTemplate", - "Id": 235, - "Rank": 1 + "Rank": 1, + "Id": 235 }, { "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "CommandName": "Convert-PnPSiteTemplate", - "Id": 236, - "Rank": 2 + "Rank": 2, + "Id": 236 }, { "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "CommandName": "Convert-PnPSiteTemplate", - "Id": 237, - "Rank": 3 + "Rank": 3, + "Id": 237 }, { "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 238, - "Rank": 1 + "Rank": 1, + "Id": 238 }, { "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 239, - "Rank": 2 + "Rank": 2, + "Id": 239 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 240, - "Rank": 1 + "Rank": 1, + "Id": 240 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "CommandName": "ConvertTo-PnPPage", - "Id": 241, - "Rank": 2 + "Rank": 2, + "Id": 241 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "CommandName": "ConvertTo-PnPPage", - "Id": 242, - "Rank": 3 + "Rank": 3, + "Id": 242 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "CommandName": "ConvertTo-PnPPage", - "Id": 243, - "Rank": 4 + "Rank": 4, + "Id": 243 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 244, - "Rank": 5 + "Rank": 5, + "Id": 244 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "CommandName": "ConvertTo-PnPPage", - "Id": 245, - "Rank": 6 + "Rank": 6, + "Id": 245 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 246, - "Rank": 7 + "Rank": 7, + "Id": 246 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 247, - "Rank": 8 + "Rank": 8, + "Id": 247 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 248, - "Rank": 9 + "Rank": 9, + "Id": 248 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 249, - "Rank": 10 + "Rank": 10, + "Id": 249 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "CommandName": "ConvertTo-PnPPage", - "Id": 250, - "Rank": 11 + "Rank": 11, + "Id": 250 }, { "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 251, - "Rank": 12 + "Rank": 12, + "Id": 251 }, { "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 252, - "Rank": 13 + "Rank": 13, + "Id": 252 }, { "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "CommandName": "ConvertTo-PnPPage", - "Id": 253, - "Rank": 14 + "Rank": 14, + "Id": 253 }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 254, - "Rank": 1 + "Rank": 1, + "Id": 254 }, { "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "CommandName": "Copy-PnPFile", - "Id": 255, - "Rank": 2 + "Rank": 2, + "Id": 255 }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "CommandName": "Copy-PnPFile", - "Id": 256, - "Rank": 3 + "Rank": 3, + "Id": 256 }, { "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 257, - "Rank": 4 + "Rank": 4, + "Id": 257 }, { "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "CommandName": "Copy-PnPFile", - "Id": 258, - "Rank": 5 + "Rank": 5, + "Id": 258 }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "CommandName": "Copy-PnPFile", - "Id": 259, - "Rank": 6 + "Rank": 6, + "Id": 259 }, { "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "CommandName": "Copy-PnPFile", - "Id": 260, - "Rank": 7 + "Rank": 7, + "Id": 260 }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 261, - "Rank": 8 + "Rank": 8, + "Id": 261 }, { "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 262, - "Rank": 9 + "Rank": 9, + "Id": 262 }, { "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "CommandName": "Copy-PnPFile", - "Id": 263, - "Rank": 10 + "Rank": 10, + "Id": 263 }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 264, - "Rank": 1 + "Rank": 1, + "Id": 264 }, { "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "CommandName": "Copy-PnPFolder", - "Id": 265, - "Rank": 2 + "Rank": 2, + "Id": 265 }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "CommandName": "Copy-PnPFolder", - "Id": 266, - "Rank": 3 + "Rank": 3, + "Id": 266 }, { "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 267, - "Rank": 4 + "Rank": 4, + "Id": 267 }, { "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "CommandName": "Copy-PnPFolder", - "Id": 268, - "Rank": 5 + "Rank": 5, + "Id": 268 }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "CommandName": "Copy-PnPFolder", - "Id": 269, - "Rank": 6 + "Rank": 6, + "Id": 269 }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "CommandName": "Copy-PnPFolder", - "Id": 270, - "Rank": 7 + "Rank": 7, + "Id": 270 }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 271, - "Rank": 8 + "Rank": 8, + "Id": 271 }, { "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 272, - "Rank": 9 + "Rank": 9, + "Id": 272 }, { "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "CommandName": "Copy-PnPFolder", - "Id": 273, - "Rank": 10 + "Rank": 10, + "Id": 273 }, { "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "CommandName": "Copy-PnPItemProxy", - "Id": 274, - "Rank": 1 + "Rank": 1, + "Id": 274 }, { "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "CommandName": "Copy-PnPList", - "Id": 275, - "Rank": 1 + "Rank": 1, + "Id": 275 }, { "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "CommandName": "Copy-PnPList", - "Id": 276, - "Rank": 2 + "Rank": 2, + "Id": 276 }, { "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "CommandName": "Copy-PnPList", - "Id": 277, - "Rank": 3 + "Rank": 3, + "Id": 277 }, { "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "CommandName": "Copy-PnPList", - "Id": 278, - "Rank": 4 + "Rank": 4, + "Id": 278 }, { "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "CommandName": "Copy-PnPTeamsTeam", - "Id": 279, - "Rank": 1 + "Rank": 1, + "Id": 279 }, { "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "CommandName": "Copy-PnPTeamsTeam", - "Id": 280, - "Rank": 2 + "Rank": 2, + "Id": 280 }, { "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": 281, - "Rank": 3 + "Rank": 3, + "Id": 281 }, { "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": 282, - "Rank": 4 + "Rank": 4, + "Id": 282 }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Disable-PnPFeature", - "Id": 283, - "Rank": 1 + "Rank": 1, + "Id": 283 }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "CommandName": "Disable-PnPFeature", - "Id": 284, - "Rank": 2 + "Rank": 2, + "Id": 284 }, { "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "CommandName": "Disable-PnPFeature", - "Id": 285, - "Rank": 3 + "Rank": 3, + "Id": 285 }, { "Command": "Disable-PnPPageScheduling", "CommandName": "Disable-PnPPageScheduling", - "Id": 286, - "Rank": 1 + "Rank": 1, + "Id": 286 }, { "Command": "Disable-PnPPowerShellTelemetry", "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 287, - "Rank": 1 + "Rank": 1, + "Id": 287 }, { "Command": "Disable-PnPPowerShellTelemetry -Force", "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 288, - "Rank": 2 + "Rank": 2, + "Id": 288 }, { "Command": "Disable-PnPSharingForNonOwnersOfSite", "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 289, - "Rank": 1 + "Rank": 1, + "Id": 289 }, { "Command": "Disable-PnPSiteClassification", "CommandName": "Disable-PnPSiteClassification", - "Id": 290, - "Rank": 1 + "Rank": 1, + "Id": 290 }, { "Command": "Disconnect-PnPOnline", "CommandName": "Disconnect-PnPOnline", - "Id": 291, - "Rank": 1 + "Rank": 1, + "Id": 291 }, { "Command": "Enable-PnPCommSite", "CommandName": "Enable-PnPCommSite", - "Id": 292, - "Rank": 1 + "Rank": 1, + "Id": 292 }, { "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "CommandName": "Enable-PnPCommSite", - "Id": 293, - "Rank": 2 + "Rank": 2, + "Id": 293 }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Enable-PnPFeature", - "Id": 294, - "Rank": 1 + "Rank": 1, + "Id": 294 }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "CommandName": "Enable-PnPFeature", - "Id": 295, - "Rank": 2 + "Rank": 2, + "Id": 295 }, { "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "CommandName": "Enable-PnPFeature", - "Id": 296, - "Rank": 3 + "Rank": 3, + "Id": 296 }, { "Command": "Enable-PnPPageScheduling", "CommandName": "Enable-PnPPageScheduling", - "Id": 297, - "Rank": 1 + "Rank": 1, + "Id": 297 }, { "Command": "Enable-PnPPowerShellTelemetry", "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 298, - "Rank": 1 + "Rank": 1, + "Id": 298 }, { "Command": "Enable-PnPPowerShellTelemetry -Force", "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 299, - "Rank": 2 + "Rank": 2, + "Id": 299 }, { "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "CommandName": "Enable-PnPSiteClassification", - "Id": 300, - "Rank": 1 + "Rank": 1, + "Id": 300 }, { "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "CommandName": "Enable-PnPSiteClassification", - "Id": 301, - "Rank": 2 + "Rank": 2, + "Id": 301 }, { "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "CommandName": "Export-PnPListToSiteTemplate", - "Id": 302, - "Rank": 1 + "Rank": 1, + "Id": 302 }, { "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "CommandName": "Export-PnPListToSiteTemplate", - "Id": 303, - "Rank": 2 + "Rank": 2, + "Id": 303 }, { "Command": "Export-PnPPage -Identity Home.aspx", "CommandName": "Export-PnPPage", - "Id": 304, - "Rank": 1 + "Rank": 1, + "Id": 304 }, { "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Id": 305, - "Rank": 1 + "Rank": 1, + "Id": 305 }, { "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Id": 306, - "Rank": 2 + "Rank": 2, + "Id": 306 }, { "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Id": 307, - "Rank": 3 + "Rank": 3, + "Id": 307 }, { "Command": "Export-PnPTaxonomy", "CommandName": "Export-PnPTaxonomy", - "Id": 308, - "Rank": 1 + "Rank": 1, + "Id": 308 }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "CommandName": "Export-PnPTaxonomy", - "Id": 309, - "Rank": 2 + "Rank": 2, + "Id": 309 }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "CommandName": "Export-PnPTaxonomy", - "Id": 310, - "Rank": 3 + "Rank": 3, + "Id": 310 }, { "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "CommandName": "Export-PnPTaxonomy", - "Id": 311, - "Rank": 4 + "Rank": 4, + "Id": 311 }, { "Command": "Export-PnPTermGroupToXml", "CommandName": "Export-PnPTermGroupToXml", - "Id": 312, - "Rank": 1 + "Rank": 1, + "Id": 312 }, { "Command": "Export-PnPTermGroupToXml -Out output.xml", "CommandName": "Export-PnPTermGroupToXml", - "Id": 313, - "Rank": 2 + "Rank": 2, + "Id": 313 }, { "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "CommandName": "Export-PnPTermGroupToXml", - "Id": 314, - "Rank": 3 + "Rank": 3, + "Id": 314 }, { "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "CommandName": "Export-PnPUserInfo", - "Id": 315, - "Rank": 1 + "Rank": 1, + "Id": 315 }, { "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "CommandName": "Export-PnPUserInfo", - "Id": 316, - "Rank": 2 + "Rank": 2, + "Id": 316 }, { "Command": "Export-PnPUserProfile -LoginName user@domain.com", "CommandName": "Export-PnPUserProfile", - "Id": 317, - "Rank": 1 + "Rank": 1, + "Id": 317 }, { "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "CommandName": "Export-PnPUserProfile", - "Id": 318, - "Rank": 2 + "Rank": 2, + "Id": 318 }, { "Command": "Find-PnPFile -Match *.master", "CommandName": "Find-PnPFile", - "Id": 319, - "Rank": 1 + "Rank": 1, + "Id": 319 }, { "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "CommandName": "Find-PnPFile", - "Id": 320, - "Rank": 2 + "Rank": 2, + "Id": 320 }, { "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "CommandName": "Find-PnPFile", - "Id": 321, - "Rank": 3 + "Rank": 3, + "Id": 321 }, { "Command": "Get-PnPAccessToken", "CommandName": "Get-PnPAccessToken", - "Id": 322, - "Rank": 1 + "Rank": 1, + "Id": 322 }, { "Command": "Get-PnPAccessToken -Decoded", "CommandName": "Get-PnPAccessToken", - "Id": 323, - "Rank": 2 + "Rank": 2, + "Id": 323 }, { "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "CommandName": "Get-PnPAccessToken", - "Id": 324, - "Rank": 3 + "Rank": 3, + "Id": 324 }, { "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "CommandName": "Get-PnPAccessToken", - "Id": 325, - "Rank": 4 + "Rank": 4, + "Id": 325 }, { "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "CommandName": "Get-PnPAccessToken", - "Id": 326, - "Rank": 5 + "Rank": 5, + "Id": 326 }, { "Command": "Get-PnPAlert", "CommandName": "Get-PnPAlert", - "Id": 327, - "Rank": 1 + "Rank": 1, + "Id": 327 }, { "Command": "Get-PnPAlert -List \"Demo List\"", "CommandName": "Get-PnPAlert", - "Id": 328, - "Rank": 2 + "Rank": 2, + "Id": 328 }, { "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPAlert", - "Id": 329, - "Rank": 3 + "Rank": 3, + "Id": 329 }, { "Command": "Get-PnPAlert -Title \"Demo Alert\"", "CommandName": "Get-PnPAlert", - "Id": 330, - "Rank": 4 + "Rank": 4, + "Id": 330 }, { "Command": "Get-PnPAlert -AllUsers", "CommandName": "Get-PnPAlert", - "Id": 331, - "Rank": 5 + "Rank": 5, + "Id": 331 }, { "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "CommandName": "Get-PnPAlert", - "Id": 332, - "Rank": 6 + "Rank": 6, + "Id": 332 }, { "Command": "Get-PnPApp", "CommandName": "Get-PnPApp", - "Id": 333, - "Rank": 1 + "Rank": 1, + "Id": 333 }, { "Command": "Get-PnPApp -Scope Site", "CommandName": "Get-PnPApp", - "Id": 334, - "Rank": 2 + "Rank": 2, + "Id": 334 }, { "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Get-PnPApp", - "Id": 335, - "Rank": 3 + "Rank": 3, + "Id": 335 }, { "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "CommandName": "Get-PnPAppErrors", - "Id": 336, - "Rank": 1 + "Rank": 1, + "Id": 336 }, { "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "CommandName": "Get-PnPAppErrors", - "Id": 337, - "Rank": 2 + "Rank": 2, + "Id": 337 }, { "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "CommandName": "Get-PnPAppInfo", - "Id": 338, - "Rank": 1 + "Rank": 1, + "Id": 338 }, { "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Get-PnPAppInfo", - "Id": 339, - "Rank": 2 + "Rank": 2, + "Id": 339 }, { "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "CommandName": "Get-PnPAppInfo", - "Id": 340, - "Rank": 3 + "Rank": 3, + "Id": 340 }, { "Command": "Get-PnPApplicationCustomizer", "CommandName": "Get-PnPApplicationCustomizer", - "Id": 341, - "Rank": 1 + "Rank": 1, + "Id": 341 }, { "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Get-PnPApplicationCustomizer", - "Id": 342, - "Rank": 2 + "Rank": 2, + "Id": 342 }, { "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "CommandName": "Get-PnPApplicationCustomizer", - "Id": 343, - "Rank": 3 + "Rank": 3, + "Id": 343 }, { "Command": "Get-PnPAuditing", "CommandName": "Get-PnPAuditing", - "Id": 344, - "Rank": 1 + "Rank": 1, + "Id": 344 }, { "Command": "Get-PnPAuthenticationRealm", "CommandName": "Get-PnPAuthenticationRealm", - "Id": 345, - "Rank": 1 + "Rank": 1, + "Id": 345 }, { "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "CommandName": "Get-PnPAuthenticationRealm", - "Id": 346, - "Rank": 2 + "Rank": 2, + "Id": 346 }, { "Command": "Get-PnPAvailableLanguage", "CommandName": "Get-PnPAvailableLanguage", - "Id": 347, - "Rank": 1 + "Rank": 1, + "Id": 347 }, { "Command": "Get-PnPAvailableSensitivityLabel", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 348, - "Rank": 1 + "Rank": 1, + "Id": 348 }, { "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 349, - "Rank": 2 + "Rank": 2, + "Id": 349 }, { "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 350, - "Rank": 3 + "Rank": 3, + "Id": 350 }, { "Command": "Get-PnPAvailableSiteClassification", "CommandName": "Get-PnPAvailableSiteClassification", - "Id": 351, - "Rank": 1 + "Rank": 1, + "Id": 351 }, { "Command": "Get-PnPAzureACSPrincipal", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 352, - "Rank": 1 + "Rank": 1, + "Id": 352 }, { "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 353, - "Rank": 2 + "Rank": 2, + "Id": 353 }, { "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 354, - "Rank": 3 + "Rank": 3, + "Id": 354 }, { "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 355, - "Rank": 4 + "Rank": 4, + "Id": 355 }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 356, - "Rank": 1 + "Rank": 1, + "Id": 356 }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 357, - "Rank": 2 + "Rank": 2, + "Id": 357 }, { "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 358, - "Rank": 3 + "Rank": 3, + "Id": 358 }, { "Command": "Get-PnPAzureADActivityReportSignIn", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 359, - "Rank": 1 + "Rank": 1, + "Id": 359 }, { "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 360, - "Rank": 2 + "Rank": 2, + "Id": 360 }, { "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 361, - "Rank": 3 + "Rank": 3, + "Id": 361 }, { "Command": "Get-PnPAzureADApp", "CommandName": "Get-PnPAzureADApp", - "Id": 362, - "Rank": 1 + "Rank": 1, + "Id": 362 }, { "Command": "Get-PnPAzureADApp -Identity MyApp", "CommandName": "Get-PnPAzureADApp", - "Id": 363, - "Rank": 2 + "Rank": 2, + "Id": 363 }, { "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Get-PnPAzureADApp", - "Id": 364, - "Rank": 3 + "Rank": 3, + "Id": 364 }, { "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPAzureADApp", - "Id": 365, - "Rank": 4 + "Rank": 4, + "Id": 365 }, { "Command": "Get-PnPAzureADAppPermission", "CommandName": "Get-PnPAzureADAppPermission", - "Id": 366, - "Rank": 1 + "Rank": 1, + "Id": 366 }, { "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "CommandName": "Get-PnPAzureADAppPermission", - "Id": 367, - "Rank": 2 + "Rank": 2, + "Id": 367 }, { "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Get-PnPAzureADAppPermission", - "Id": 368, - "Rank": 3 + "Rank": 3, + "Id": 368 }, { "Command": "Get-PnPAzureADAppSitePermission", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 369, - "Rank": 1 + "Rank": 1, + "Id": 369 }, { "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 370, - "Rank": 2 + "Rank": 2, + "Id": 370 }, { "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 371, - "Rank": 3 + "Rank": 3, + "Id": 371 }, { "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 372, - "Rank": 4 + "Rank": 4, + "Id": 372 }, { "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 373, - "Rank": 5 + "Rank": 5, + "Id": 373 }, { "Command": "Get-PnPAzureADGroup", "CommandName": "Get-PnPAzureADGroup", - "Id": 374, - "Rank": 1 + "Rank": 1, + "Id": 374 }, { "Command": "Get-PnPAzureADGroup -Identity $groupId", "CommandName": "Get-PnPAzureADGroup", - "Id": 375, - "Rank": 2 + "Rank": 2, + "Id": 375 }, { "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "CommandName": "Get-PnPAzureADGroup", - "Id": 376, - "Rank": 3 + "Rank": 3, + "Id": 376 }, { "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "CommandName": "Get-PnPAzureADGroup", - "Id": 377, - "Rank": 4 + "Rank": 4, + "Id": 377 }, { "Command": "Get-PnPAzureADGroup -Identity $group", "CommandName": "Get-PnPAzureADGroup", - "Id": 378, - "Rank": 5 + "Rank": 5, + "Id": 378 }, { "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "CommandName": "Get-PnPAzureADGroupMember", - "Id": 379, - "Rank": 1 + "Rank": 1, + "Id": 379 }, { "Command": "Get-PnPAzureADGroupMember -Identity $group", "CommandName": "Get-PnPAzureADGroupMember", - "Id": 380, - "Rank": 2 + "Rank": 2, + "Id": 380 }, { "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 381, - "Rank": 1 + "Rank": 1, + "Id": 381 }, { "Command": "Get-PnPAzureADGroupOwner -Identity $group", "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 382, - "Rank": 2 + "Rank": 2, + "Id": 382 }, { "Command": "Get-PnPAzureADServicePrincipal", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 383, - "Rank": 1 + "Rank": 1, + "Id": 383 }, { "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 384, - "Rank": 2 + "Rank": 2, + "Id": 384 }, { "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 385, - "Rank": 3 + "Rank": 3, + "Id": 385 }, { "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 386, - "Rank": 4 + "Rank": 4, + "Id": 386 }, { "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 387, - "Rank": 5 + "Rank": 5, + "Id": 387 }, { "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 388, - "Rank": 1 + "Rank": 1, + "Id": 388 }, { "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 389, - "Rank": 2 + "Rank": 2, + "Id": 389 }, { "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 390, - "Rank": 1 + "Rank": 1, + "Id": 390 }, { "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 391, - "Rank": 2 + "Rank": 2, + "Id": 391 }, { "Command": "Get-PnPAzureADUser", "CommandName": "Get-PnPAzureADUser", - "Id": 392, - "Rank": 1 + "Rank": 1, + "Id": 392 }, { "Command": "Get-PnPAzureADUser -EndIndex 50", "CommandName": "Get-PnPAzureADUser", - "Id": 393, - "Rank": 2 + "Rank": 2, + "Id": 393 }, { "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "CommandName": "Get-PnPAzureADUser", - "Id": 394, - "Rank": 3 + "Rank": 3, + "Id": 394 }, { "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "CommandName": "Get-PnPAzureADUser", - "Id": 395, - "Rank": 4 + "Rank": 4, + "Id": 395 }, { "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "CommandName": "Get-PnPAzureADUser", - "Id": 396, - "Rank": 5 + "Rank": 5, + "Id": 396 }, { "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "CommandName": "Get-PnPAzureADUser", - "Id": 397, - "Rank": 6 + "Rank": 6, + "Id": 397 }, { "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "CommandName": "Get-PnPAzureADUser", - "Id": 398, - "Rank": 7 + "Rank": 7, + "Id": 398 }, { "Command": "Get-PnPAzureADUser -Delta", "CommandName": "Get-PnPAzureADUser", - "Id": 399, - "Rank": 8 + "Rank": 8, + "Id": 399 }, { "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "CommandName": "Get-PnPAzureADUser", - "Id": 400, - "Rank": 9 + "Rank": 9, + "Id": 400 }, { "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "CommandName": "Get-PnPAzureADUser", - "Id": 401, - "Rank": 10 + "Rank": 10, + "Id": 401 }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "CommandName": "Get-PnPAzureCertificate", - "Id": 402, - "Rank": 1 + "Rank": 1, + "Id": 402 }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "CommandName": "Get-PnPAzureCertificate", - "Id": 403, - "Rank": 2 + "Rank": 2, + "Id": 403 }, { "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "CommandName": "Get-PnPAzureCertificate", - "Id": 404, - "Rank": 3 + "Rank": 3, + "Id": 404 }, { "Command": "Get-PnPBrowserIdleSignout", "CommandName": "Get-PnPBrowserIdleSignout", - "Id": 405, - "Rank": 1 + "Rank": 1, + "Id": 405 }, { "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 406, - "Rank": 1 + "Rank": 1, + "Id": 406 }, { "Command": "Get-PnPBuiltInDesignPackageVisibility", "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 407, - "Rank": 2 + "Rank": 2, + "Id": 407 }, { "Command": "Get-PnPBuiltInSiteTemplateSettings", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 408, - "Rank": 1 + "Rank": 1, + "Id": 408 }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 409, - "Rank": 2 + "Rank": 2, + "Id": 409 }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 410, - "Rank": 3 + "Rank": 3, + "Id": 410 }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 411, - "Rank": 4 + "Rank": 4, + "Id": 411 }, { "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 412, - "Rank": 5 + "Rank": 5, + "Id": 412 }, { "Command": "Get-PnPChangeLog", "CommandName": "Get-PnPChangeLog", - "Id": 413, - "Rank": 1 + "Rank": 1, + "Id": 413 }, { "Command": "Get-PnPChangeLog -Nightly", "CommandName": "Get-PnPChangeLog", - "Id": 414, - "Rank": 2 + "Rank": 2, + "Id": 414 }, { "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 415, - "Rank": 1 + "Rank": 1, + "Id": 415 }, { "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 416, - "Rank": 2 + "Rank": 2, + "Id": 416 }, { "Command": "Get-PnPContentType", "CommandName": "Get-PnPContentType", - "Id": 417, - "Rank": 1 + "Rank": 1, + "Id": 417 }, { "Command": "Get-PnPContentType -InSiteHierarchy", "CommandName": "Get-PnPContentType", - "Id": 418, - "Rank": 2 + "Rank": 2, + "Id": 418 }, { "Command": "Get-PnPContentType -Identity \"Project Document\"", "CommandName": "Get-PnPContentType", - "Id": 419, - "Rank": 3 + "Rank": 3, + "Id": 419 }, { "Command": "Get-PnPContentType -List \"Documents\"", "CommandName": "Get-PnPContentType", - "Id": 420, - "Rank": 4 + "Rank": 4, + "Id": 420 }, { "Command": "Get-PnPContentType -Includes \"SchemaXml\"", "CommandName": "Get-PnPContentType", - "Id": 421, - "Rank": 5 + "Rank": 5, + "Id": 421 }, { "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "CommandName": "Get-PnPContentTypePublishingStatus", - "Id": 422, - "Rank": 1 + "Rank": 1, + "Id": 422 }, { "Command": "Get-PnPCustomAction", "CommandName": "Get-PnPCustomAction", - "Id": 423, - "Rank": 1 + "Rank": 1, + "Id": 423 }, { "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Get-PnPCustomAction", - "Id": 424, - "Rank": 2 + "Rank": 2, + "Id": 424 }, { "Command": "Get-PnPCustomAction -Scope web", "CommandName": "Get-PnPCustomAction", - "Id": 425, - "Rank": 3 + "Rank": 3, + "Id": 425 }, { "Command": "Get-PnPDeletedMicrosoft365Group", "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 426, - "Rank": 1 + "Rank": 1, + "Id": 426 }, { "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 427, - "Rank": 2 + "Rank": 2, + "Id": 427 }, { "Command": "Get-PnPDeletedTeam", "CommandName": "Get-PnPDeletedTeam", - "Id": 428, - "Rank": 1 + "Rank": 1, + "Id": 428 }, { "Command": "Get-PnPDiagnostics", "CommandName": "Get-PnPDiagnostics", - "Id": 429, - "Rank": 1 + "Rank": 1, + "Id": 429 }, { "Command": "Get-PnPDisableSpacesActivation", "CommandName": "Get-PnPDisableSpacesActivation", - "Id": 430, - "Rank": 1 + "Rank": 1, + "Id": 430 }, { "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 431, - "Rank": 1 + "Rank": 1, + "Id": 431 }, { "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 432, - "Rank": 2 + "Rank": 2, + "Id": 432 }, { "Command": "Get-PnPEventReceiver", "CommandName": "Get-PnPEventReceiver", - "Id": 433, - "Rank": 1 + "Rank": 1, + "Id": 433 }, { "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPEventReceiver", - "Id": 434, - "Rank": 2 + "Rank": 2, + "Id": 434 }, { "Command": "Get-PnPEventReceiver -Identity MyReceiver", "CommandName": "Get-PnPEventReceiver", - "Id": 435, - "Rank": 3 + "Rank": 3, + "Id": 435 }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "CommandName": "Get-PnPEventReceiver", - "Id": 436, - "Rank": 4 + "Rank": 4, + "Id": 436 }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPEventReceiver", - "Id": 437, - "Rank": 5 + "Rank": 5, + "Id": 437 }, { "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "CommandName": "Get-PnPEventReceiver", - "Id": 438, - "Rank": 6 + "Rank": 6, + "Id": 438 }, { "Command": "Get-PnPEventReceiver -Scope Site", "CommandName": "Get-PnPEventReceiver", - "Id": 439, - "Rank": 7 + "Rank": 7, + "Id": 439 }, { "Command": "Get-PnPEventReceiver -Scope Web", "CommandName": "Get-PnPEventReceiver", - "Id": 440, - "Rank": 8 + "Rank": 8, + "Id": 440 }, { "Command": "Get-PnPEventReceiver -Scope All", "CommandName": "Get-PnPEventReceiver", - "Id": 441, - "Rank": 9 + "Rank": 9, + "Id": 441 }, { "Command": "Get-PnPException", "CommandName": "Get-PnPException", - "Id": 442, - "Rank": 1 + "Rank": 1, + "Id": 442 }, { "Command": "Get-PnPException -All", "CommandName": "Get-PnPException", - "Id": 443, - "Rank": 2 + "Rank": 2, + "Id": 443 }, { "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "CommandName": "Get-PnPExternalUser", - "Id": 444, - "Rank": 1 + "Rank": 1, + "Id": 444 }, { "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "CommandName": "Get-PnPExternalUser", - "Id": 445, - "Rank": 2 + "Rank": 2, + "Id": 445 }, { "Command": "Get-PnPFeature", "CommandName": "Get-PnPFeature", - "Id": 446, - "Rank": 1 + "Rank": 1, + "Id": 446 }, { "Command": "Get-PnPFeature -Scope Site", "CommandName": "Get-PnPFeature", - "Id": 447, - "Rank": 2 + "Rank": 2, + "Id": 447 }, { "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPFeature", - "Id": 448, - "Rank": 3 + "Rank": 3, + "Id": 448 }, { "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "CommandName": "Get-PnPFeature", - "Id": 449, - "Rank": 4 + "Rank": 4, + "Id": 449 }, { "Command": "Get-PnPField", "CommandName": "Get-PnPField", - "Id": 450, - "Rank": 1 + "Rank": 1, + "Id": 450 }, { "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "CommandName": "Get-PnPField", - "Id": 451, - "Rank": 2 + "Rank": 2, + "Id": 451 }, { "Command": "Get-PnPField -Group \"Custom Columns\"", "CommandName": "Get-PnPField", - "Id": 452, - "Rank": 3 + "Rank": 3, + "Id": 452 }, { "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "CommandName": "Get-PnPFile", - "Id": 453, - "Rank": 1 + "Rank": 1, + "Id": 453 }, { "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "CommandName": "Get-PnPFile", - "Id": 454, - "Rank": 2 + "Rank": 2, + "Id": 454 }, { "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "CommandName": "Get-PnPFile", - "Id": 455, - "Rank": 3 + "Rank": 3, + "Id": 455 }, { "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "CommandName": "Get-PnPFile", - "Id": 456, - "Rank": 4 + "Rank": 4, + "Id": 456 }, { "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "CommandName": "Get-PnPFile", - "Id": 457, - "Rank": 5 + "Rank": 5, + "Id": 457 }, { "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "CommandName": "Get-PnPFile", - "Id": 458, - "Rank": 6 + "Rank": 6, + "Id": 458 }, { "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "CommandName": "Get-PnPFile", - "Id": 459, - "Rank": 7 + "Rank": 7, + "Id": 459 }, { "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Get-PnPFileSharingLink", - "Id": 460, - "Rank": 1 + "Rank": 1, + "Id": 460 }, { "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "CommandName": "Get-PnPFileVersion", - "Id": 461, - "Rank": 1 + "Rank": 1, + "Id": 461 }, { "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "CommandName": "Get-PnPFileVersion", - "Id": 462, - "Rank": 2 + "Rank": 2, + "Id": 462 }, { "Command": "Get-PnPFlow -AsAdmin", "CommandName": "Get-PnPFlow", - "Id": 463, - "Rank": 1 + "Rank": 1, + "Id": 463 }, { "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "CommandName": "Get-PnPFlow", - "Id": 464, - "Rank": 2 + "Rank": 2, + "Id": 464 }, { "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "CommandName": "Get-PnPFlow", - "Id": 465, - "Rank": 3 + "Rank": 3, + "Id": 465 }, { "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "CommandName": "Get-PnPFlowOwner", - "Id": 466, - "Rank": 1 + "Rank": 1, + "Id": 466 }, { "Command": "Get-PnPFolder", "CommandName": "Get-PnPFolder", - "Id": 467, - "Rank": 1 + "Rank": 1, + "Id": 467 }, { "Command": "Get-PnPFolder -Url \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Id": 468, - "Rank": 2 + "Rank": 2, + "Id": 468 }, { "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "CommandName": "Get-PnPFolder", - "Id": 469, - "Rank": 3 + "Rank": 3, + "Id": 469 }, { "Command": "Get-PnPFolder -List \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Id": 470, - "Rank": 4 + "Rank": 4, + "Id": 470 }, { "Command": "Get-PnPFolderFile", "CommandName": "Get-PnPFolderFile", - "Id": 471, - "Rank": 1 + "Rank": 1, + "Id": 471 }, { "Command": "Get-PnPFolderFile -Recurse", "CommandName": "Get-PnPFolderFile", - "Id": 472, - "Rank": 2 + "Rank": 2, + "Id": 472 }, { "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderFile", - "Id": 473, - "Rank": 3 + "Rank": 3, + "Id": 473 }, { "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "CommandName": "Get-PnPFolderFile", - "Id": 474, - "Rank": 4 + "Rank": 4, + "Id": 474 }, { "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderFile", - "Id": 475, - "Rank": 5 + "Rank": 5, + "Id": 475 }, { "Command": "Get-PnPFolderFolder", "CommandName": "Get-PnPFolderFolder", - "Id": 476, - "Rank": 1 + "Rank": 1, + "Id": 476 }, { "Command": "Get-PnPFolderFolder -Recurse", "CommandName": "Get-PnPFolderFolder", - "Id": 477, - "Rank": 2 + "Rank": 2, + "Id": 477 }, { "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderFolder", - "Id": 478, - "Rank": 3 + "Rank": 3, + "Id": 478 }, { "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "CommandName": "Get-PnPFolderFolder", - "Id": 479, - "Rank": 4 + "Rank": 4, + "Id": 479 }, { "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "CommandName": "Get-PnPFolderFolder", - "Id": 480, - "Rank": 5 + "Rank": 5, + "Id": 480 }, { "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderFolder", - "Id": 481, - "Rank": 6 + "Rank": 6, + "Id": 481 }, { "Command": "Get-PnPFolderItem", "CommandName": "Get-PnPFolderItem", - "Id": 482, - "Rank": 1 + "Rank": 1, + "Id": 482 }, { "Command": "Get-PnPFolderItem -Recurse", "CommandName": "Get-PnPFolderItem", - "Id": 483, - "Rank": 2 + "Rank": 2, + "Id": 483 }, { "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderItem", - "Id": 484, - "Rank": 3 + "Rank": 3, + "Id": 484 }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "CommandName": "Get-PnPFolderItem", - "Id": 485, - "Rank": 4 + "Rank": 4, + "Id": 485 }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "CommandName": "Get-PnPFolderItem", - "Id": 486, - "Rank": 5 + "Rank": 5, + "Id": 486 }, { "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderItem", - "Id": 487, - "Rank": 6 + "Rank": 6, + "Id": 487 }, { "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Get-PnPFolderSharingLink", - "Id": 488, - "Rank": 1 + "Rank": 1, + "Id": 488 }, { "Command": "Get-PnPFolderStorageMetric", "CommandName": "Get-PnPFolderStorageMetric", - "Id": 489, - "Rank": 1 + "Rank": 1, + "Id": 489 }, { "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "CommandName": "Get-PnPFolderStorageMetric", - "Id": 490, - "Rank": 2 + "Rank": 2, + "Id": 490 }, { "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "CommandName": "Get-PnPFolderStorageMetric", - "Id": 491, - "Rank": 3 + "Rank": 3, + "Id": 491 }, { "Command": "Get-PnPFooter", "CommandName": "Get-PnPFooter", - "Id": 492, - "Rank": 1 + "Rank": 1, + "Id": 492 }, { "Command": "Get-PnPGraphAccessToken", "CommandName": "Get-PnPGraphAccessToken", - "Id": 493, - "Rank": 1 + "Rank": 1, + "Id": 493 }, { "Command": "Get-PnPGraphAccessToken -Decoded", "CommandName": "Get-PnPGraphAccessToken", - "Id": 494, - "Rank": 2 + "Rank": 2, + "Id": 494 }, { "Command": "Get-PnPGraphSubscription", "CommandName": "Get-PnPGraphSubscription", - "Id": 495, - "Rank": 1 + "Rank": 1, + "Id": 495 }, { "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "CommandName": "Get-PnPGraphSubscription", - "Id": 496, - "Rank": 2 + "Rank": 2, + "Id": 496 }, { "Command": "Get-PnPGroup", "CommandName": "Get-PnPGroup", - "Id": 497, - "Rank": 1 + "Rank": 1, + "Id": 497 }, { "Command": "Get-PnPGroup -Identity 'My Site Users'", "CommandName": "Get-PnPGroup", - "Id": 498, - "Rank": 2 + "Rank": 2, + "Id": 498 }, { "Command": "Get-PnPGroup -AssociatedMemberGroup", "CommandName": "Get-PnPGroup", - "Id": 499, - "Rank": 3 + "Rank": 3, + "Id": 499 }, { "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "CommandName": "Get-PnPGroupMember", - "Id": 500, - "Rank": 1 + "Rank": 1, + "Id": 500 }, { "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "CommandName": "Get-PnPGroupMember", - "Id": 501, - "Rank": 2 + "Rank": 2, + "Id": 501 }, { "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "CommandName": "Get-PnPGroupPermissions", - "Id": 502, - "Rank": 1 + "Rank": 1, + "Id": 502 }, { "Command": "Get-PnPHideDefaultThemes", "CommandName": "Get-PnPHideDefaultThemes", - "Id": 503, - "Rank": 1 + "Rank": 1, + "Id": 503 }, { "Command": "Get-PnPHomePage", "CommandName": "Get-PnPHomePage", - "Id": 504, - "Rank": 1 + "Rank": 1, + "Id": 504 }, { "Command": "Get-PnPHomeSite", "CommandName": "Get-PnPHomeSite", - "Id": 505, - "Rank": 1 + "Rank": 1, + "Id": 505 }, { "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "CommandName": "Get-PnPHomeSite", - "Id": 506, - "Rank": 2 + "Rank": 2, + "Id": 506 }, { "Command": "Get-PnPHomeSite -Detailed", "CommandName": "Get-PnPHomeSite", - "Id": 507, - "Rank": 3 + "Rank": 3, + "Id": 507 }, { "Command": "Get-PnPHubSite", "CommandName": "Get-PnPHubSite", - "Id": 508, - "Rank": 1 + "Rank": 1, + "Id": 508 }, { "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "CommandName": "Get-PnPHubSite", - "Id": 509, - "Rank": 2 + "Rank": 2, + "Id": 509 }, { "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "CommandName": "Get-PnPHubSite", - "Id": 510, - "Rank": 3 + "Rank": 3, + "Id": 510 }, { "Command": "Get-PnPHubSiteChild", "CommandName": "Get-PnPHubSiteChild", - "Id": 511, - "Rank": 1 + "Rank": 1, + "Id": 511 }, { "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "CommandName": "Get-PnPHubSiteChild", - "Id": 512, - "Rank": 2 + "Rank": 2, + "Id": 512 }, { "Command": "Get-PnPInPlaceRecordsManagement", "CommandName": "Get-PnPInPlaceRecordsManagement", - "Id": 513, - "Rank": 1 + "Rank": 1, + "Id": 513 }, { "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "CommandName": "Get-PnPIsSiteAliasAvailable", - "Id": 514, - "Rank": 1 + "Rank": 1, + "Id": 514 }, { "Command": "Get-PnPJavaScriptLink", "CommandName": "Get-PnPJavaScriptLink", - "Id": 515, - "Rank": 1 + "Rank": 1, + "Id": 515 }, { "Command": "Get-PnPJavaScriptLink -Scope All", "CommandName": "Get-PnPJavaScriptLink", - "Id": 516, - "Rank": 2 + "Rank": 2, + "Id": 516 }, { "Command": "Get-PnPJavaScriptLink -Scope Web", "CommandName": "Get-PnPJavaScriptLink", - "Id": 517, - "Rank": 3 + "Rank": 3, + "Id": 517 }, { "Command": "Get-PnPJavaScriptLink -Scope Site", "CommandName": "Get-PnPJavaScriptLink", - "Id": 518, - "Rank": 4 + "Rank": 4, + "Id": 518 }, { "Command": "Get-PnPJavaScriptLink -Name Test", "CommandName": "Get-PnPJavaScriptLink", - "Id": 519, - "Rank": 5 + "Rank": 5, + "Id": 519 }, { "Command": "Get-PnPKnowledgeHubSite", "CommandName": "Get-PnPKnowledgeHubSite", - "Id": 520, - "Rank": 1 + "Rank": 1, + "Id": 520 }, { "Command": "Get-PnPLabel", "CommandName": "Get-PnPLabel", - "Id": 521, - "Rank": 1 + "Rank": 1, + "Id": 521 }, { "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "CommandName": "Get-PnPLabel", - "Id": 522, - "Rank": 2 + "Rank": 2, + "Id": 522 }, { "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "CommandName": "Get-PnPLargeListOperationStatus", - "Id": 523, - "Rank": 1 + "Rank": 1, + "Id": 523 }, { "Command": "Get-PnPList", "CommandName": "Get-PnPList", - "Id": 524, - "Rank": 1 + "Rank": 1, + "Id": 524 }, { "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Get-PnPList", - "Id": 525, - "Rank": 2 + "Rank": 2, + "Id": 525 }, { "Command": "Get-PnPList -Identity Lists/Announcements", "CommandName": "Get-PnPList", - "Id": 526, - "Rank": 3 + "Rank": 3, + "Id": 526 }, { "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "CommandName": "Get-PnPList", - "Id": 527, - "Rank": 4 + "Rank": 4, + "Id": 527 }, { "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "CommandName": "Get-PnPList", - "Id": 528, - "Rank": 5 + "Rank": 5, + "Id": 528 }, { "Command": "Get-PnPListDesign", "CommandName": "Get-PnPListDesign", - "Id": 529, - "Rank": 1 + "Rank": 1, + "Id": 529 }, { "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPListDesign", - "Id": 530, - "Rank": 2 + "Rank": 2, + "Id": 530 }, { "Command": "Get-PnPListDesign -Identity ListEvent", "CommandName": "Get-PnPListDesign", - "Id": 531, - "Rank": 3 + "Rank": 3, + "Id": 531 }, { "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "CommandName": "Get-PnPListInformationRightsManagement", - "Id": 532, - "Rank": 1 + "Rank": 1, + "Id": 532 }, { "Command": "Get-PnPListItem -List Tasks", "CommandName": "Get-PnPListItem", - "Id": 533, - "Rank": 1 + "Rank": 1, + "Id": 533 }, { "Command": "Get-PnPListItem -List Tasks -Id 1", "CommandName": "Get-PnPListItem", - "Id": 534, - "Rank": 2 + "Rank": 2, + "Id": 534 }, { "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "CommandName": "Get-PnPListItem", - "Id": 535, - "Rank": 3 + "Rank": 3, + "Id": 535 }, { "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "CommandName": "Get-PnPListItem", - "Id": 536, - "Rank": 4 + "Rank": 4, + "Id": 536 }, { "Command": "Get-PnPListItem -List Tasks -Query \"\"", "CommandName": "Get-PnPListItem", - "Id": 537, - "Rank": 5 + "Rank": 5, + "Id": 537 }, { "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "CommandName": "Get-PnPListItem", - "Id": 538, - "Rank": 6 + "Rank": 6, + "Id": 538 }, { "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "CommandName": "Get-PnPListItem", - "Id": 539, - "Rank": 7 + "Rank": 7, + "Id": 539 }, { "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "CommandName": "Get-PnPListItem", - "Id": 540, - "Rank": 8 + "Rank": 8, + "Id": 540 }, { "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "CommandName": "Get-PnPListItem", - "Id": 541, - "Rank": 9 + "Rank": 9, + "Id": 541 }, { "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "CommandName": "Get-PnPListItemAttachment", - "Id": 542, - "Rank": 1 + "Rank": 1, + "Id": 542 }, { "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "CommandName": "Get-PnPListItemAttachment", - "Id": 543, - "Rank": 2 + "Rank": 2, + "Id": 543 }, { "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "CommandName": "Get-PnPListItemComment", - "Id": 544, - "Rank": 1 + "Rank": 1, + "Id": 544 }, { "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "CommandName": "Get-PnPListItemPermission", - "Id": 545, - "Rank": 1 + "Rank": 1, + "Id": 545 }, { "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "CommandName": "Get-PnPListItemVersion", - "Id": 546, - "Rank": 1 + "Rank": 1, + "Id": 546 }, { "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "CommandName": "Get-PnPListPermissions", - "Id": 547, - "Rank": 1 + "Rank": 1, + "Id": 547 }, { "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "CommandName": "Get-PnPListPermissions", - "Id": 548, - "Rank": 2 + "Rank": 2, + "Id": 548 }, { "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "CommandName": "Get-PnPListRecordDeclaration", - "Id": 549, - "Rank": 1 + "Rank": 1, + "Id": 549 }, { "Command": "Get-PnPMasterPage", "CommandName": "Get-PnPMasterPage", - "Id": 550, - "Rank": 1 + "Rank": 1, + "Id": 550 }, { "Command": "Get-PnPMessageCenterAnnouncement", "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 551, - "Rank": 1 + "Rank": 1, + "Id": 551 }, { "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 552, - "Rank": 2 + "Rank": 2, + "Id": 552 }, { "Command": "Get-PnPMicrosoft365ExpiringGroup", "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 553, - "Rank": 1 + "Rank": 1, + "Id": 553 }, { "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 554, - "Rank": 2 + "Rank": 2, + "Id": 554 }, { "Command": "Get-PnPMicrosoft365Group", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 555, - "Rank": 1 + "Rank": 1, + "Id": 555 }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 556, - "Rank": 2 + "Rank": 2, + "Id": 556 }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 557, - "Rank": 3 + "Rank": 3, + "Id": 557 }, { "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 558, - "Rank": 4 + "Rank": 4, + "Id": 558 }, { "Command": "Get-PnPMicrosoft365Group -Identity $group", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 559, - "Rank": 5 + "Rank": 5, + "Id": 559 }, { "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 560, - "Rank": 6 + "Rank": 6, + "Id": 560 }, { "Command": "Get-PnPMicrosoft365GroupEndpoint", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 561, - "Rank": 1 + "Rank": 1, + "Id": 561 }, { "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 562, - "Rank": 2 + "Rank": 2, + "Id": 562 }, { "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 563, - "Rank": 3 + "Rank": 3, + "Id": 563 }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 564, - "Rank": 1 + "Rank": 1, + "Id": 564 }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 565, - "Rank": 2 + "Rank": 2, + "Id": 565 }, { "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 566, - "Rank": 3 + "Rank": 3, + "Id": 566 }, { "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 567, - "Rank": 1 + "Rank": 1, + "Id": 567 }, { "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 568, - "Rank": 2 + "Rank": 2, + "Id": 568 }, { "Command": "Get-PnPMicrosoft365GroupSettings", "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 569, - "Rank": 1 + "Rank": 1, + "Id": 569 }, { "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 570, - "Rank": 2 + "Rank": 2, + "Id": 570 }, { "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 571, - "Rank": 1 + "Rank": 1, + "Id": 571 }, { "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 572, - "Rank": 2 + "Rank": 2, + "Id": 572 }, { "Command": "Get-PnPMicrosoft365GroupTeam", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 573, - "Rank": 1 + "Rank": 1, + "Id": 573 }, { "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 574, - "Rank": 2 + "Rank": 2, + "Id": 574 }, { "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 575, - "Rank": 3 + "Rank": 3, + "Id": 575 }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 576, - "Rank": 1 + "Rank": 1, + "Id": 576 }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 577, - "Rank": 2 + "Rank": 2, + "Id": 577 }, { "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 578, - "Rank": 3 + "Rank": 3, + "Id": 578 }, { "Command": "Get-PnPNavigationNode", "CommandName": "Get-PnPNavigationNode", - "Id": 579, - "Rank": 1 + "Rank": 1, + "Id": 579 }, { "Command": "Get-PnPNavigationNode -Location QuickLaunch", "CommandName": "Get-PnPNavigationNode", - "Id": 580, - "Rank": 2 + "Rank": 2, + "Id": 580 }, { "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "CommandName": "Get-PnPNavigationNode", - "Id": 581, - "Rank": 3 + "Rank": 3, + "Id": 581 }, { "Command": "Get-PnPOrgAssetsLibrary", "CommandName": "Get-PnPOrgAssetsLibrary", - "Id": 582, - "Rank": 1 + "Rank": 1, + "Id": 582 }, { "Command": "Get-PnPOrgNewsSite", "CommandName": "Get-PnPOrgNewsSite", - "Id": 583, - "Rank": 1 + "Rank": 1, + "Id": 583 }, { "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "CommandName": "Get-PnPPage", - "Id": 584, - "Rank": 1 + "Rank": 1, + "Id": 584 }, { "Command": "Get-PnPPage \"MyPage\"", "CommandName": "Get-PnPPage", - "Id": 585, - "Rank": 2 + "Rank": 2, + "Id": 585 }, { "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "CommandName": "Get-PnPPage", - "Id": 586, - "Rank": 3 + "Rank": 3, + "Id": 586 }, { "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "CommandName": "Get-PnPPage", - "Id": 587, - "Rank": 4 + "Rank": 4, + "Id": 587 }, { "Command": "Get-PnPPageComponent -Page Home", "CommandName": "Get-PnPPageComponent", - "Id": 588, - "Rank": 1 + "Rank": 1, + "Id": 588 }, { "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPPageComponent", - "Id": 589, - "Rank": 2 + "Rank": 2, + "Id": 589 }, { "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "CommandName": "Get-PnPPageComponent", - "Id": 590, - "Rank": 3 + "Rank": 3, + "Id": 590 }, { "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "CommandName": "Get-PnPPlannerBucket", - "Id": 591, - "Rank": 1 + "Rank": 1, + "Id": 591 }, { "Command": "Get-PnPPlannerConfiguration", "CommandName": "Get-PnPPlannerConfiguration", - "Id": 592, - "Rank": 1 + "Rank": 1, + "Id": 592 }, { "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "CommandName": "Get-PnPPlannerPlan", - "Id": 593, - "Rank": 1 + "Rank": 1, + "Id": 593 }, { "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "CommandName": "Get-PnPPlannerPlan", - "Id": 594, - "Rank": 2 + "Rank": 2, + "Id": 594 }, { "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "CommandName": "Get-PnPPlannerPlan", - "Id": 595, - "Rank": 3 + "Rank": 3, + "Id": 595 }, { "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "CommandName": "Get-PnPPlannerRosterMember", - "Id": 596, - "Rank": 1 + "Rank": 1, + "Id": 596 }, { "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 597, - "Rank": 1 + "Rank": 1, + "Id": 597 }, { "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 598, - "Rank": 2 + "Rank": 2, + "Id": 598 }, { "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "CommandName": "Get-PnPPlannerTask", - "Id": 599, - "Rank": 1 + "Rank": 1, + "Id": 599 }, { "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "CommandName": "Get-PnPPlannerTask", - "Id": 600, - "Rank": 2 + "Rank": 2, + "Id": 600 }, { "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "CommandName": "Get-PnPPlannerTask", - "Id": 601, - "Rank": 3 + "Rank": 3, + "Id": 601 }, { "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPPlannerUserPolicy", - "Id": 602, - "Rank": 1 + "Rank": 1, + "Id": 602 }, { "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "CommandName": "Get-PnPPowerPlatformConnector", - "Id": 603, - "Rank": 1 + "Rank": 1, + "Id": 603 }, { "Command": "Get-PnPPowerPlatformEnvironment", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 604, - "Rank": 1 + "Rank": 1, + "Id": 604 }, { "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 605, - "Rank": 2 + "Rank": 2, + "Id": 605 }, { "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 606, - "Rank": 3 + "Rank": 3, + "Id": 606 }, { "Command": "Get-PnPPowerShellTelemetryEnabled", "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Id": 607, - "Rank": 1 + "Rank": 1, + "Id": 607 }, { "Command": "Get-PnPPropertyBag", "CommandName": "Get-PnPPropertyBag", - "Id": 608, - "Rank": 1 + "Rank": 1, + "Id": 608 }, { "Command": "Get-PnPPropertyBag -Key MyKey", "CommandName": "Get-PnPPropertyBag", - "Id": 609, - "Rank": 2 + "Rank": 2, + "Id": 609 }, { "Command": "Get-PnPPropertyBag -Folder /MyFolder", "CommandName": "Get-PnPPropertyBag", - "Id": 610, - "Rank": 3 + "Rank": 3, + "Id": 610 }, { "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "CommandName": "Get-PnPPropertyBag", - "Id": 611, - "Rank": 4 + "Rank": 4, + "Id": 611 }, { "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "CommandName": "Get-PnPPropertyBag", - "Id": 612, - "Rank": 5 + "Rank": 5, + "Id": 612 }, { "Command": "Get-PnPPublishingImageRendition", "CommandName": "Get-PnPPublishingImageRendition", - "Id": 613, - "Rank": 1 + "Rank": 1, + "Id": 613 }, { "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "CommandName": "Get-PnPPublishingImageRendition", - "Id": 614, - "Rank": 2 + "Rank": 2, + "Id": 614 }, { "Command": "Get-PnPPublishingImageRendition -Identity 2", "CommandName": "Get-PnPPublishingImageRendition", - "Id": 615, - "Rank": 3 + "Rank": 3, + "Id": 615 }, { "Command": "Get-PnPRecycleBinItem", "CommandName": "Get-PnPRecycleBinItem", - "Id": 616, - "Rank": 1 + "Rank": 1, + "Id": 616 }, { "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "CommandName": "Get-PnPRecycleBinItem", - "Id": 617, - "Rank": 2 + "Rank": 2, + "Id": 617 }, { "Command": "Get-PnPRecycleBinItem -FirstStage", "CommandName": "Get-PnPRecycleBinItem", - "Id": 618, - "Rank": 3 + "Rank": 3, + "Id": 618 }, { "Command": "Get-PnPRecycleBinItem -SecondStage", "CommandName": "Get-PnPRecycleBinItem", - "Id": 619, - "Rank": 4 + "Rank": 4, + "Id": 619 }, { "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "CommandName": "Get-PnPRecycleBinItem", - "Id": 620, - "Rank": 5 + "Rank": 5, + "Id": 620 }, { "Command": "Get-PnPRequestAccessEmails", "CommandName": "Get-PnPRequestAccessEmails", - "Id": 621, - "Rank": 1 + "Rank": 1, + "Id": 621 }, { "Command": "Get-PnPRetentionLabel", "CommandName": "Get-PnPRetentionLabel", - "Id": 622, - "Rank": 1 + "Rank": 1, + "Id": 622 }, { "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "CommandName": "Get-PnPRetentionLabel", - "Id": 623, - "Rank": 2 + "Rank": 2, + "Id": 623 }, { "Command": "Get-PnPRoleDefinition", "CommandName": "Get-PnPRoleDefinition", - "Id": 624, - "Rank": 1 + "Rank": 1, + "Id": 624 }, { "Command": "Get-PnPRoleDefinition -Identity Read", "CommandName": "Get-PnPRoleDefinition", - "Id": 625, - "Rank": 2 + "Rank": 2, + "Id": 625 }, { "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "CommandName": "Get-PnPRoleDefinition", - "Id": 626, - "Rank": 3 + "Rank": 3, + "Id": 626 }, { "Command": "Get-PnPSearchConfiguration", "CommandName": "Get-PnPSearchConfiguration", - "Id": 627, - "Rank": 1 + "Rank": 1, + "Id": 627 }, { "Command": "Get-PnPSearchConfiguration -Scope Site", "CommandName": "Get-PnPSearchConfiguration", - "Id": 628, - "Rank": 2 + "Rank": 2, + "Id": 628 }, { "Command": "Get-PnPSearchConfiguration -Scope Subscription", "CommandName": "Get-PnPSearchConfiguration", - "Id": 629, - "Rank": 3 + "Rank": 3, + "Id": 629 }, { "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Get-PnPSearchConfiguration", - "Id": 630, - "Rank": 4 + "Rank": 4, + "Id": 630 }, { "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "CommandName": "Get-PnPSearchConfiguration", - "Id": 631, - "Rank": 5 + "Rank": 5, + "Id": 631 }, { "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "CommandName": "Get-PnPSearchConfiguration", - "Id": 632, - "Rank": 6 + "Rank": 6, + "Id": 632 }, { "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "CommandName": "Get-PnPSearchConfiguration", - "Id": 633, - "Rank": 7 + "Rank": 7, + "Id": 633 }, { "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "CommandName": "Get-PnPSearchConfiguration", - "Id": 634, - "Rank": 8 + "Rank": 8, + "Id": 634 }, { "Command": "Get-PnPSearchCrawlLog", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 635, - "Rank": 1 + "Rank": 1, + "Id": 635 }, { "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 636, - "Rank": 2 + "Rank": 2, + "Id": 636 }, { "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 637, - "Rank": 3 + "Rank": 3, + "Id": 637 }, { "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 638, - "Rank": 4 + "Rank": 4, + "Id": 638 }, { "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 639, - "Rank": 5 + "Rank": 5, + "Id": 639 }, { "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 640, - "Rank": 6 + "Rank": 6, + "Id": 640 }, { "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 641, - "Rank": 7 + "Rank": 7, + "Id": 641 }, { "Command": "Get-PnPSearchSettings", "CommandName": "Get-PnPSearchSettings", - "Id": 642, - "Rank": 1 + "Rank": 1, + "Id": 642 }, { "Command": "Get-PnPServiceCurrentHealth", "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 643, - "Rank": 1 + "Rank": 1, + "Id": 643 }, { "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 644, - "Rank": 2 + "Rank": 2, + "Id": 644 }, { "Command": "Get-PnPServiceHealthIssue", "CommandName": "Get-PnPServiceHealthIssue", - "Id": 645, - "Rank": 1 + "Rank": 1, + "Id": 645 }, { "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "CommandName": "Get-PnPServiceHealthIssue", - "Id": 646, - "Rank": 2 + "Rank": 2, + "Id": 646 }, { "Command": "Get-PnPSharePointAddIn", "CommandName": "Get-PnPSharePointAddIn", - "Id": 647, - "Rank": 1 + "Rank": 1, + "Id": 647 }, { "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "CommandName": "Get-PnPSharePointAddIn", - "Id": 648, - "Rank": 2 + "Rank": 2, + "Id": 648 }, { "Command": "Get-PnPSharingForNonOwnersOfSite", "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Id": 649, - "Rank": 1 + "Rank": 1, + "Id": 649 }, { "Command": "Get-PnPSite", "CommandName": "Get-PnPSite", - "Id": 650, - "Rank": 1 + "Rank": 1, + "Id": 650 }, { "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "CommandName": "Get-PnPSite", - "Id": 651, - "Rank": 2 + "Rank": 2, + "Id": 651 }, { "Command": "Get-PnPSiteClosure", "CommandName": "Get-PnPSiteClosure", - "Id": 652, - "Rank": 1 + "Rank": 1, + "Id": 652 }, { "Command": "Get-PnPSiteCollectionAdmin", "CommandName": "Get-PnPSiteCollectionAdmin", - "Id": 653, - "Rank": 1 + "Rank": 1, + "Id": 653 }, { "Command": "Get-PnPSiteCollectionAppCatalog", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 654, - "Rank": 1 + "Rank": 1, + "Id": 654 }, { "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 655, - "Rank": 2 + "Rank": 2, + "Id": 655 }, { "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 656, - "Rank": 3 + "Rank": 3, + "Id": 656 }, { "Command": "Get-PnPSiteCollectionTermStore", "CommandName": "Get-PnPSiteCollectionTermStore", - "Id": 657, - "Rank": 1 + "Rank": 1, + "Id": 657 }, { "Command": "Get-PnPSiteDesign", "CommandName": "Get-PnPSiteDesign", - "Id": 658, - "Rank": 1 + "Rank": 1, + "Id": 658 }, { "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteDesign", - "Id": 659, - "Rank": 2 + "Rank": 2, + "Id": 659 }, { "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteDesignRights", - "Id": 660, - "Rank": 1 + "Rank": 1, + "Id": 660 }, { "Command": "Get-PnPSiteDesignRun", "CommandName": "Get-PnPSiteDesignRun", - "Id": 661, - "Rank": 1 + "Rank": 1, + "Id": 661 }, { "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "CommandName": "Get-PnPSiteDesignRun", - "Id": 662, - "Rank": 2 + "Rank": 2, + "Id": 662 }, { "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "CommandName": "Get-PnPSiteDesignTask", - "Id": 663, - "Rank": 1 + "Rank": 1, + "Id": 663 }, { "Command": "Get-PnPSiteDesignTask", "CommandName": "Get-PnPSiteDesignTask", - "Id": 664, - "Rank": 2 + "Rank": 2, + "Id": 664 }, { "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "CommandName": "Get-PnPSiteDesignTask", - "Id": 665, - "Rank": 3 + "Rank": 3, + "Id": 665 }, { "Command": "Get-PnPSiteGroup", "CommandName": "Get-PnPSiteGroup", - "Id": 666, - "Rank": 1 + "Rank": 1, + "Id": 666 }, { "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "CommandName": "Get-PnPSiteGroup", - "Id": 667, - "Rank": 2 + "Rank": 2, + "Id": 667 }, { "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "CommandName": "Get-PnPSiteGroup", - "Id": 668, - "Rank": 3 + "Rank": 3, + "Id": 668 }, { "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "CommandName": "Get-PnPSiteGroup", - "Id": 669, - "Rank": 4 + "Rank": 4, + "Id": 669 }, { "Command": "Get-PnPSitePolicy", "CommandName": "Get-PnPSitePolicy", - "Id": 670, - "Rank": 1 + "Rank": 1, + "Id": 670 }, { "Command": "Get-PnPSitePolicy -AllAvailable", "CommandName": "Get-PnPSitePolicy", - "Id": 671, - "Rank": 2 + "Rank": 2, + "Id": 671 }, { "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "CommandName": "Get-PnPSitePolicy", - "Id": 672, - "Rank": 3 + "Rank": 3, + "Id": 672 }, { "Command": "Get-PnPSiteScript", "CommandName": "Get-PnPSiteScript", - "Id": 673, - "Rank": 1 + "Rank": 1, + "Id": 673 }, { "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteScript", - "Id": 674, - "Rank": 2 + "Rank": 2, + "Id": 674 }, { "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "CommandName": "Get-PnPSiteScriptFromList", - "Id": 675, - "Rank": 1 + "Rank": 1, + "Id": 675 }, { "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "CommandName": "Get-PnPSiteScriptFromList", - "Id": 676, - "Rank": 2 + "Rank": 2, + "Id": 676 }, { "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "CommandName": "Get-PnPSiteScriptFromList", - "Id": 677, - "Rank": 3 + "Rank": 3, + "Id": 677 }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 678, - "Rank": 1 + "Rank": 1, + "Id": 678 }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 679, - "Rank": 2 + "Rank": 2, + "Id": 679 }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 680, - "Rank": 3 + "Rank": 3, + "Id": 680 }, { "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 681, - "Rank": 4 + "Rank": 4, + "Id": 681 }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 682, - "Rank": 5 + "Rank": 5, + "Id": 682 }, { "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 683, - "Rank": 6 + "Rank": 6, + "Id": 683 }, { "Command": "Get-PnPSiteSearchQueryResults", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 684, - "Rank": 1 + "Rank": 1, + "Id": 684 }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 685, - "Rank": 2 + "Rank": 2, + "Id": 685 }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 686, - "Rank": 3 + "Rank": 3, + "Id": 686 }, { "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 687, - "Rank": 4 + "Rank": 4, + "Id": 687 }, { "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 688, - "Rank": 5 + "Rank": 5, + "Id": 688 }, { "Command": "Get-PnPSiteSearchQueryResults -All", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 689, - "Rank": 6 + "Rank": 6, + "Id": 689 }, { "Command": "Get-PnPSiteSensitivityLabel", "CommandName": "Get-PnPSiteSensitivityLabel", - "Id": 690, - "Rank": 1 + "Rank": 1, + "Id": 690 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp", "CommandName": "Get-PnPSiteTemplate", - "Id": 691, - "Rank": 1 + "Rank": 1, + "Id": 691 }, { "Command": "Get-PnPSiteTemplate -Out template.xml", "CommandName": "Get-PnPSiteTemplate", - "Id": 692, - "Rank": 2 + "Rank": 2, + "Id": 692 }, { "Command": "Get-PnPSiteTemplate -Out template.md", "CommandName": "Get-PnPSiteTemplate", - "Id": 693, - "Rank": 3 + "Rank": 3, + "Id": 693 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "CommandName": "Get-PnPSiteTemplate", - "Id": 694, - "Rank": 4 + "Rank": 4, + "Id": 694 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "CommandName": "Get-PnPSiteTemplate", - "Id": 695, - "Rank": 5 + "Rank": 5, + "Id": 695 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "CommandName": "Get-PnPSiteTemplate", - "Id": 696, - "Rank": 6 + "Rank": 6, + "Id": 696 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "CommandName": "Get-PnPSiteTemplate", - "Id": 697, - "Rank": 7 + "Rank": 7, + "Id": 697 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "CommandName": "Get-PnPSiteTemplate", - "Id": 698, - "Rank": 8 + "Rank": 8, + "Id": 698 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "CommandName": "Get-PnPSiteTemplate", - "Id": 699, - "Rank": 9 + "Rank": 9, + "Id": 699 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "CommandName": "Get-PnPSiteTemplate", - "Id": 700, - "Rank": 10 + "Rank": 10, + "Id": 700 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "CommandName": "Get-PnPSiteTemplate", - "Id": 701, - "Rank": 11 + "Rank": 11, + "Id": 701 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "CommandName": "Get-PnPSiteTemplate", - "Id": 702, - "Rank": 12 + "Rank": 12, + "Id": 702 }, { "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", "CommandName": "Get-PnPSiteTemplate", - "Id": 703, - "Rank": 13 + "Rank": 13, + "Id": 703 }, { "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "CommandName": "Get-PnPSiteTemplate", - "Id": 704, - "Rank": 14 + "Rank": 14, + "Id": 704 }, { "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "CommandName": "Get-PnPSiteUserInvitations", - "Id": 705, - "Rank": 1 + "Rank": 1, + "Id": 705 }, { "Command": "Get-PnPSiteVersionPolicy", "CommandName": "Get-PnPSiteVersionPolicy", - "Id": 706, - "Rank": 1 + "Rank": 1, + "Id": 706 }, { "Command": "Get-PnPStorageEntity", "CommandName": "Get-PnPStorageEntity", - "Id": 707, - "Rank": 1 + "Rank": 1, + "Id": 707 }, { "Command": "Get-PnPStorageEntity -Key MyKey", "CommandName": "Get-PnPStorageEntity", - "Id": 708, - "Rank": 2 + "Rank": 2, + "Id": 708 }, { "Command": "Get-PnPStorageEntity -Scope Site", "CommandName": "Get-PnPStorageEntity", - "Id": 709, - "Rank": 3 + "Rank": 3, + "Id": 709 }, { "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "CommandName": "Get-PnPStorageEntity", - "Id": 710, - "Rank": 4 + "Rank": 4, + "Id": 710 }, { "Command": "Get-PnPStoredCredential -Name O365", "CommandName": "Get-PnPStoredCredential", - "Id": 711, - "Rank": 1 + "Rank": 1, + "Id": 711 }, { "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Id": 712, - "Rank": 1 + "Rank": 1, + "Id": 712 }, { "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Id": 713, - "Rank": 1 + "Rank": 1, + "Id": 713 }, { "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Id": 714, - "Rank": 1 + "Rank": 1, + "Id": 714 }, { "Command": "Get-PnPSubWeb", "CommandName": "Get-PnPSubWeb", - "Id": 715, - "Rank": 1 + "Rank": 1, + "Id": 715 }, { "Command": "Get-PnPSubWeb -Recurse", "CommandName": "Get-PnPSubWeb", - "Id": 716, - "Rank": 2 + "Rank": 2, + "Id": 716 }, { "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "CommandName": "Get-PnPSubWeb", - "Id": 717, - "Rank": 3 + "Rank": 3, + "Id": 717 }, { "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "CommandName": "Get-PnPSubWeb", - "Id": 718, - "Rank": 4 + "Rank": 4, + "Id": 718 }, { "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "CommandName": "Get-PnPSubWeb", - "Id": 719, - "Rank": 5 + "Rank": 5, + "Id": 719 }, { "Command": "Get-PnPSyntexModel", "CommandName": "Get-PnPSyntexModel", - "Id": 720, - "Rank": 1 + "Rank": 1, + "Id": 720 }, { "Command": "Get-PnPSyntexModel -Identity 1", "CommandName": "Get-PnPSyntexModel", - "Id": 721, - "Rank": 2 + "Rank": 2, + "Id": 721 }, { "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "CommandName": "Get-PnPSyntexModel", - "Id": 722, - "Rank": 3 + "Rank": 3, + "Id": 722 }, { "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "CommandName": "Get-PnPSyntexModelPublication", - "Id": 723, - "Rank": 1 + "Rank": 1, + "Id": 723 }, { "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "CommandName": "Get-PnPTaxonomyItem", - "Id": 724, - "Rank": 1 + "Rank": 1, + "Id": 724 }, { "Command": "Get-PnPTeamsApp", "CommandName": "Get-PnPTeamsApp", - "Id": 725, - "Rank": 1 + "Rank": 1, + "Id": 725 }, { "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "CommandName": "Get-PnPTeamsApp", - "Id": 726, - "Rank": 2 + "Rank": 2, + "Id": 726 }, { "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "CommandName": "Get-PnPTeamsApp", - "Id": 727, - "Rank": 3 + "Rank": 3, + "Id": 727 }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "CommandName": "Get-PnPTeamsChannel", - "Id": 728, - "Rank": 1 + "Rank": 1, + "Id": 728 }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "CommandName": "Get-PnPTeamsChannel", - "Id": 729, - "Rank": 2 + "Rank": 2, + "Id": 729 }, { "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "CommandName": "Get-PnPTeamsChannel", - "Id": 730, - "Rank": 3 + "Rank": 3, + "Id": 730 }, { "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 731, - "Rank": 1 + "Rank": 1, + "Id": 731 }, { "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 732, - "Rank": 2 + "Rank": 2, + "Id": 732 }, { "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 733, - "Rank": 1 + "Rank": 1, + "Id": 733 }, { "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 734, - "Rank": 2 + "Rank": 2, + "Id": 734 }, { "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 735, - "Rank": 1 + "Rank": 1, + "Id": 735 }, { "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 736, - "Rank": 2 + "Rank": 2, + "Id": 736 }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 737, - "Rank": 1 + "Rank": 1, + "Id": 737 }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 738, - "Rank": 2 + "Rank": 2, + "Id": 738 }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 739, - "Rank": 3 + "Rank": 3, + "Id": 739 }, { "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 740, - "Rank": 4 + "Rank": 4, + "Id": 740 }, { "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 741, - "Rank": 1 + "Rank": 1, + "Id": 741 }, { "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 742, - "Rank": 2 + "Rank": 2, + "Id": 742 }, { "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "CommandName": "Get-PnPTeamsTab", - "Id": 743, - "Rank": 1 + "Rank": 1, + "Id": 743 }, { "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "CommandName": "Get-PnPTeamsTab", - "Id": 744, - "Rank": 2 + "Rank": 2, + "Id": 744 }, { "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", "CommandName": "Get-PnPTeamsTab", - "Id": 745, - "Rank": 3 + "Rank": 3, + "Id": 745 }, { "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsTab", - "Id": 746, - "Rank": 4 + "Rank": 4, + "Id": 746 }, { "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "CommandName": "Get-PnPTeamsTab", - "Id": 747, - "Rank": 5 + "Rank": 5, + "Id": 747 }, { "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "CommandName": "Get-PnPTeamsTag", - "Id": 748, - "Rank": 1 + "Rank": 1, + "Id": 748 }, { "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "CommandName": "Get-PnPTeamsTag", - "Id": 749, - "Rank": 2 + "Rank": 2, + "Id": 749 }, { "Command": "Get-PnPTeamsTeam", "CommandName": "Get-PnPTeamsTeam", - "Id": 750, - "Rank": 1 + "Rank": 1, + "Id": 750 }, { "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 751, - "Rank": 2 + "Rank": 2, + "Id": 751 }, { "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 752, - "Rank": 3 + "Rank": 3, + "Id": 752 }, { "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 753, - "Rank": 4 + "Rank": 4, + "Id": 753 }, { "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 754, - "Rank": 5 + "Rank": 5, + "Id": 754 }, { "Command": "Get-PnPTeamsUser -Team MyTeam", "CommandName": "Get-PnPTeamsUser", - "Id": 755, - "Rank": 1 + "Rank": 1, + "Id": 755 }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "CommandName": "Get-PnPTeamsUser", - "Id": 756, - "Rank": 2 + "Rank": 2, + "Id": 756 }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "CommandName": "Get-PnPTeamsUser", - "Id": 757, - "Rank": 3 + "Rank": 3, + "Id": 757 }, { "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "CommandName": "Get-PnPTeamsUser", - "Id": 758, - "Rank": 4 + "Rank": 4, + "Id": 758 }, { "Command": "Get-PnPTemporarilyDisableAppBar", "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Id": 759, - "Rank": 1 + "Rank": 1, + "Id": 759 }, { "Command": "Get-PnPTenant", "CommandName": "Get-PnPTenant", - "Id": 760, - "Rank": 1 + "Rank": 1, + "Id": 760 }, { "Command": "Get-PnPTenantAppCatalogUrl", "CommandName": "Get-PnPTenantAppCatalogUrl", - "Id": 761, - "Rank": 1 + "Rank": 1, + "Id": 761 }, { "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "CommandName": "Get-PnPTenantCdnEnabled", - "Id": 762, - "Rank": 1 + "Rank": 1, + "Id": 762 }, { "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "CommandName": "Get-PnPTenantCdnOrigin", - "Id": 763, - "Rank": 1 + "Rank": 1, + "Id": 763 }, { "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "CommandName": "Get-PnPTenantCdnPolicies", - "Id": 764, - "Rank": 1 + "Rank": 1, + "Id": 764 }, { "Command": "Get-PnPTenantDeletedSite", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 765, - "Rank": 1 + "Rank": 1, + "Id": 765 }, { "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 766, - "Rank": 2 + "Rank": 2, + "Id": 766 }, { "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 767, - "Rank": 3 + "Rank": 3, + "Id": 767 }, { "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 768, - "Rank": 4 + "Rank": 4, + "Id": 768 }, { "Command": "Get-PnPTenantId", "CommandName": "Get-PnPTenantId", - "Id": 769, - "Rank": 1 + "Rank": 1, + "Id": 769 }, { "Command": "Get-PnPTenantId contoso", "CommandName": "Get-PnPTenantId", - "Id": 770, - "Rank": 2 + "Rank": 2, + "Id": 770 }, { "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "CommandName": "Get-PnPTenantId", - "Id": 771, - "Rank": 3 + "Rank": 3, + "Id": 771 }, { "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "CommandName": "Get-PnPTenantId", - "Id": 772, - "Rank": 4 + "Rank": 4, + "Id": 772 }, { "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "CommandName": "Get-PnPTenantInfo", - "Id": 773, - "Rank": 1 + "Rank": 1, + "Id": 773 }, { "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "CommandName": "Get-PnPTenantInfo", - "Id": 774, - "Rank": 2 + "Rank": 2, + "Id": 774 }, { "Command": "Get-PnPTenantInfo", "CommandName": "Get-PnPTenantInfo", - "Id": 775, - "Rank": 3 + "Rank": 3, + "Id": 775 }, { "Command": "Get-PnPTenantInfo -CurrentTenant", "CommandName": "Get-PnPTenantInfo", - "Id": 776, - "Rank": 4 + "Rank": 4, + "Id": 776 }, { "Command": "Get-PnPTenantInstance", "CommandName": "Get-PnPTenantInstance", - "Id": 777, - "Rank": 1 + "Rank": 1, + "Id": 777 }, { "Command": "Get-PnPTenantRecycleBinItem", "CommandName": "Get-PnPTenantRecycleBinItem", - "Id": 778, - "Rank": 1 + "Rank": 1, + "Id": 778 }, { "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "CommandName": "Get-PnPTenantSequence", - "Id": 779, - "Rank": 1 + "Rank": 1, + "Id": 779 }, { "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "CommandName": "Get-PnPTenantSequence", - "Id": 780, - "Rank": 2 + "Rank": 2, + "Id": 780 }, { "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "CommandName": "Get-PnPTenantSequenceSite", - "Id": 781, - "Rank": 1 + "Rank": 1, + "Id": 781 }, { "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "CommandName": "Get-PnPTenantSequenceSite", - "Id": 782, - "Rank": 2 + "Rank": 2, + "Id": 782 }, { "Command": "Get-PnPTenantSite", "CommandName": "Get-PnPTenantSite", - "Id": 783, - "Rank": 1 + "Rank": 1, + "Id": 783 }, { "Command": "Get-PnPTenantSite -Detailed", "CommandName": "Get-PnPTenantSite", - "Id": 784, - "Rank": 2 + "Rank": 2, + "Id": 784 }, { "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "CommandName": "Get-PnPTenantSite", - "Id": 785, - "Rank": 3 + "Rank": 3, + "Id": 785 }, { "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "CommandName": "Get-PnPTenantSite", - "Id": 786, - "Rank": 4 + "Rank": 4, + "Id": 786 }, { "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "CommandName": "Get-PnPTenantSite", - "Id": 787, - "Rank": 5 + "Rank": 5, + "Id": 787 }, { "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "CommandName": "Get-PnPTenantSite", - "Id": 788, - "Rank": 6 + "Rank": 6, + "Id": 788 }, { "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "CommandName": "Get-PnPTenantSite", - "Id": 789, - "Rank": 7 + "Rank": 7, + "Id": 789 }, { "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "CommandName": "Get-PnPTenantSite", - "Id": 790, - "Rank": 8 + "Rank": 8, + "Id": 790 }, { "Command": "Get-PnPTenantSite -GroupIdDefined $true", "CommandName": "Get-PnPTenantSite", - "Id": 791, - "Rank": 9 + "Rank": 9, + "Id": 791 }, { "Command": "Get-PnPTenantSyncClientRestriction", "CommandName": "Get-PnPTenantSyncClientRestriction", - "Id": 792, - "Rank": 1 + "Rank": 1, + "Id": 792 }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "CommandName": "Get-PnPTenantTemplate", - "Id": 793, - "Rank": 1 + "Rank": 1, + "Id": 793 }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "CommandName": "Get-PnPTenantTemplate", - "Id": 794, - "Rank": 2 + "Rank": 2, + "Id": 794 }, { "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "CommandName": "Get-PnPTenantTemplate", - "Id": 795, - "Rank": 3 + "Rank": 3, + "Id": 795 }, { "Command": "Get-PnPTenantTheme", "CommandName": "Get-PnPTenantTheme", - "Id": 796, - "Rank": 1 + "Rank": 1, + "Id": 796 }, { "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "CommandName": "Get-PnPTenantTheme", - "Id": 797, - "Rank": 2 + "Rank": 2, + "Id": 797 }, { "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "CommandName": "Get-PnPTenantTheme", - "Id": 798, - "Rank": 3 + "Rank": 3, + "Id": 798 }, { "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Id": 799, - "Rank": 1 + "Rank": 1, + "Id": 799 }, { "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Id": 800, - "Rank": 2 + "Rank": 2, + "Id": 800 }, { "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Id": 801, - "Rank": 3 + "Rank": 3, + "Id": 801 }, { "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "CommandName": "Get-PnPTerm", - "Id": 802, - "Rank": 4 + "Rank": 4, + "Id": 802 }, { "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "CommandName": "Get-PnPTerm", - "Id": 803, - "Rank": 5 + "Rank": 5, + "Id": 803 }, { "Command": "Get-PnPTermGroup", "CommandName": "Get-PnPTermGroup", - "Id": 804, - "Rank": 1 + "Rank": 1, + "Id": 804 }, { "Command": "Get-PnPTermGroup -Identity \"Departments\"", "CommandName": "Get-PnPTermGroup", - "Id": 805, - "Rank": 2 + "Rank": 2, + "Id": 805 }, { "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "CommandName": "Get-PnPTermGroup", - "Id": 806, - "Rank": 3 + "Rank": 3, + "Id": 806 }, { "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "CommandName": "Get-PnPTermLabel", - "Id": 807, - "Rank": 1 + "Rank": 1, + "Id": 807 }, { "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "CommandName": "Get-PnPTermLabel", - "Id": 808, - "Rank": 2 + "Rank": 2, + "Id": 808 }, { "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermLabel", - "Id": 809, - "Rank": 3 + "Rank": 3, + "Id": 809 }, { "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermSet", - "Id": 810, - "Rank": 1 + "Rank": 1, + "Id": 810 }, { "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermSet", - "Id": 811, - "Rank": 2 + "Rank": 2, + "Id": 811 }, { "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "CommandName": "Get-PnPTermSet", - "Id": 812, - "Rank": 3 + "Rank": 3, + "Id": 812 }, { "Command": "Get-PnPTheme", "CommandName": "Get-PnPTheme", - "Id": 813, - "Rank": 1 + "Rank": 1, + "Id": 813 }, { "Command": "Get-PnPTheme -DetectCurrentComposedLook", "CommandName": "Get-PnPTheme", - "Id": 814, - "Rank": 2 + "Rank": 2, + "Id": 814 }, { "Command": "Get-PnPTimeZoneId", "CommandName": "Get-PnPTimeZoneId", - "Id": 815, - "Rank": 1 + "Rank": 1, + "Id": 815 }, { "Command": "Get-PnPTimeZoneId -Match Stockholm", "CommandName": "Get-PnPTimeZoneId", - "Id": 816, - "Rank": 2 + "Rank": 2, + "Id": 816 }, { "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "CommandName": "Get-PnPUnfurlLink", - "Id": 817, - "Rank": 1 + "Rank": 1, + "Id": 817 }, { "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "CommandName": "Get-PnPUnifiedAuditLog", - "Id": 818, - "Rank": 1 + "Rank": 1, + "Id": 818 }, { "Command": "Get-PnPUPABulkImportStatus", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 819, - "Rank": 1 + "Rank": 1, + "Id": 819 }, { "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 820, - "Rank": 2 + "Rank": 2, + "Id": 820 }, { "Command": "Get-PnPUPABulkImportStatus -JobId ", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 821, - "Rank": 3 + "Rank": 3, + "Id": 821 }, { "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 822, - "Rank": 4 + "Rank": 4, + "Id": 822 }, { "Command": "Get-PnPUser", "CommandName": "Get-PnPUser", - "Id": 823, - "Rank": 1 + "Rank": 1, + "Id": 823 }, { "Command": "Get-PnPUser -Identity 23", "CommandName": "Get-PnPUser", - "Id": 824, - "Rank": 2 + "Rank": 2, + "Id": 824 }, { "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "CommandName": "Get-PnPUser", - "Id": 825, - "Rank": 3 + "Rank": 3, + "Id": 825 }, { "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "CommandName": "Get-PnPUser", - "Id": 826, - "Rank": 4 + "Rank": 4, + "Id": 826 }, { "Command": "Get-PnPUser -WithRightsAssigned", "CommandName": "Get-PnPUser", - "Id": 827, - "Rank": 5 + "Rank": 5, + "Id": 827 }, { "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "CommandName": "Get-PnPUser", - "Id": 828, - "Rank": 6 + "Rank": 6, + "Id": 828 }, { "Command": "Get-PnPUser -WithRightsAssignedDetailed", "CommandName": "Get-PnPUser", - "Id": 829, - "Rank": 7 + "Rank": 7, + "Id": 829 }, { "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "CommandName": "Get-PnPUserOneDriveQuota", - "Id": 830, - "Rank": 1 + "Rank": 1, + "Id": 830 }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "CommandName": "Get-PnPUserProfileProperty", - "Id": 831, - "Rank": 1 + "Rank": 1, + "Id": 831 }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "CommandName": "Get-PnPUserProfileProperty", - "Id": 832, - "Rank": 2 + "Rank": 2, + "Id": 832 }, { "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "CommandName": "Get-PnPUserProfileProperty", - "Id": 833, - "Rank": 3 + "Rank": 3, + "Id": 833 }, { "Command": "Get-PnPView -List \"Demo List\"", "CommandName": "Get-PnPView", - "Id": 834, - "Rank": 1 + "Rank": 1, + "Id": 834 }, { "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "CommandName": "Get-PnPView", - "Id": 835, - "Rank": 2 + "Rank": 2, + "Id": 835 }, { "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "CommandName": "Get-PnPView", - "Id": 836, - "Rank": 3 + "Rank": 3, + "Id": 836 }, { "Command": "Get-PnPVivaConnectionsDashboardACE", "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 837, - "Rank": 1 + "Rank": 1, + "Id": 837 }, { "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 838, - "Rank": 2 + "Rank": 2, + "Id": 838 }, { "Command": "Get-PnPWeb", "CommandName": "Get-PnPWeb", - "Id": 839, - "Rank": 1 + "Rank": 1, + "Id": 839 }, { "Command": "Get-PnPWebHeader", "CommandName": "Get-PnPWebHeader", - "Id": 840, - "Rank": 1 + "Rank": 1, + "Id": 840 }, { "Command": "Get-PnPWebhookSubscriptions -List MyList", "CommandName": "Get-PnPWebhookSubscriptions", - "Id": 841, - "Rank": 1 + "Rank": 1, + "Id": 841 }, { "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "CommandName": "Get-PnPWebPart", - "Id": 842, - "Rank": 1 + "Rank": 1, + "Id": 842 }, { "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPWebPart", - "Id": 843, - "Rank": 2 + "Rank": 2, + "Id": 843 }, { "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "CommandName": "Get-PnPWebPartProperty", - "Id": 844, - "Rank": 1 + "Rank": 1, + "Id": 844 }, { "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "CommandName": "Get-PnPWebPartProperty", - "Id": 845, - "Rank": 2 + "Rank": 2, + "Id": 845 }, { "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPWebPartXml", - "Id": 846, - "Rank": 1 + "Rank": 1, + "Id": 846 }, { "Command": "Get-PnPWebTemplates", "CommandName": "Get-PnPWebTemplates", - "Id": 847, - "Rank": 1 + "Rank": 1, + "Id": 847 }, { "Command": "Get-PnPWebTemplates -LCID 1033", "CommandName": "Get-PnPWebTemplates", - "Id": 848, - "Rank": 2 + "Rank": 2, + "Id": 848 }, { "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "CommandName": "Get-PnPWebTemplates", - "Id": 849, - "Rank": 3 + "Rank": 3, + "Id": 849 }, { "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "CommandName": "Get-PnPWikiPageContent", - "Id": 850, - "Rank": 1 + "Rank": 1, + "Id": 850 }, { "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 851, - "Rank": 1 + "Rank": 1, + "Id": 851 }, { "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 852, - "Rank": 2 + "Rank": 2, + "Id": 852 }, { "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Grant-PnPHubSiteRights", - "Id": 853, - "Rank": 1 + "Rank": 1, + "Id": 853 }, { "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Grant-PnPSiteDesignRights", - "Id": 854, - "Rank": 1 + "Rank": 1, + "Id": 854 }, { "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Id": 855, - "Rank": 1 + "Rank": 1, + "Id": 855 }, { "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "CommandName": "Import-PnPTaxonomy", - "Id": 856, - "Rank": 1 + "Rank": 1, + "Id": 856 }, { "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "CommandName": "Import-PnPTaxonomy", - "Id": 857, - "Rank": 2 + "Rank": 2, + "Id": 857 }, { "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "CommandName": "Import-PnPTaxonomy", - "Id": 858, - "Rank": 3 + "Rank": 3, + "Id": 858 }, { "Command": "Import-PnPTermGroupFromXml -Xml $xml", "CommandName": "Import-PnPTermGroupFromXml", - "Id": 859, - "Rank": 1 + "Rank": 1, + "Id": 859 }, { "Command": "Import-PnPTermGroupFromXml -Path input.xml", "CommandName": "Import-PnPTermGroupFromXml", - "Id": 860, - "Rank": 2 + "Rank": 2, + "Id": 860 }, { "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "CommandName": "Import-PnPTermSet", - "Id": 861, - "Rank": 1 + "Rank": 1, + "Id": 861 }, { "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": 862, - "Rank": 2 + "Rank": 2, + "Id": 862 }, { "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": 863, - "Rank": 3 + "Rank": 3, + "Id": 863 }, { "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Install-PnPApp", - "Id": 864, - "Rank": 1 + "Rank": 1, + "Id": 864 }, { "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Install-PnPApp", - "Id": 865, - "Rank": 2 + "Rank": 2, + "Id": 865 }, { "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "CommandName": "Invoke-PnPGraphMethod", - "Id": 866, - "Rank": 1 + "Rank": 1, + "Id": 866 }, { "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "CommandName": "Invoke-PnPGraphMethod", - "Id": 867, - "Rank": 2 + "Rank": 2, + "Id": 867 }, { "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "CommandName": "Invoke-PnPGraphMethod", - "Id": 868, - "Rank": 3 + "Rank": 3, + "Id": 868 }, { "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "CommandName": "Invoke-PnPGraphMethod", - "Id": 869, - "Rank": 4 + "Rank": 4, + "Id": 869 }, { "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "CommandName": "Invoke-PnPGraphMethod", - "Id": 870, - "Rank": 5 + "Rank": 5, + "Id": 870 }, { "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", "CommandName": "Invoke-PnPGraphMethod", - "Id": 871, - "Rank": 6 + "Rank": 6, + "Id": 871 }, { "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": 872, - "Rank": 7 + "Rank": 7, + "Id": 872 }, { "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Invoke-PnPListDesign", - "Id": 873, - "Rank": 1 + "Rank": 1, + "Id": 873 }, { "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "CommandName": "Invoke-PnPListDesign", - "Id": 874, - "Rank": 2 + "Rank": 2, + "Id": 874 }, { "Command": "Invoke-PnPQuery -RetryCount 5", "CommandName": "Invoke-PnPQuery", - "Id": 875, - "Rank": 1 + "Rank": 1, + "Id": 875 }, { "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Invoke-PnPSiteDesign", - "Id": 876, - "Rank": 1 + "Rank": 1, + "Id": 876 }, { "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "CommandName": "Invoke-PnPSiteDesign", - "Id": 877, - "Rank": 2 + "Rank": 2, + "Id": 877 }, { "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "CommandName": "Invoke-PnPSiteScript", - "Id": 878, - "Rank": 1 + "Rank": 1, + "Id": 878 }, { "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": 879, - "Rank": 1 + "Rank": 1, + "Id": 879 }, { "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": 880, - "Rank": 2 + "Rank": 2, + "Id": 880 }, { "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": 881, - "Rank": 3 + "Rank": 3, + "Id": 881 }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 882, - "Rank": 1 + "Rank": 1, + "Id": 882 }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 883, - "Rank": 2 + "Rank": 2, + "Id": 883 }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 884, - "Rank": 3 + "Rank": 3, + "Id": 884 }, { "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 885, - "Rank": 4 + "Rank": 4, + "Id": 885 }, { "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 886, - "Rank": 5 + "Rank": 5, + "Id": 886 }, { "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 887, - "Rank": 6 + "Rank": 6, + "Id": 887 }, { "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 888, - "Rank": 7 + "Rank": 7, + "Id": 888 }, { "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 889, - "Rank": 8 + "Rank": 8, + "Id": 889 }, { "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "CommandName": "Invoke-PnPSPRestMethod", - "Id": 890, - "Rank": 1 + "Rank": 1, + "Id": 890 }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "CommandName": "Invoke-PnPTenantTemplate", - "Id": 891, - "Rank": 1 + "Rank": 1, + "Id": 891 }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "CommandName": "Invoke-PnPTenantTemplate", - "Id": 892, - "Rank": 2 + "Rank": 2, + "Id": 892 }, { "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "CommandName": "Invoke-PnPTenantTemplate", - "Id": 893, - "Rank": 3 + "Rank": 3, + "Id": 893 }, { "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "CommandName": "Invoke-PnPWebAction", - "Id": 894, - "Rank": 1 + "Rank": 1, + "Id": 894 }, { "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "CommandName": "Invoke-PnPWebAction", - "Id": 895, - "Rank": 2 + "Rank": 2, + "Id": 895 }, { "Command": "Measure-PnPList \"Documents\"", "CommandName": "Measure-PnPList", - "Id": 896, - "Rank": 1 + "Rank": 1, + "Id": 896 }, { "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "CommandName": "Measure-PnPList", - "Id": 897, - "Rank": 2 + "Rank": 2, + "Id": 897 }, { "Command": "Measure-PnPWeb", "CommandName": "Measure-PnPWeb", - "Id": 898, - "Rank": 1 + "Rank": 1, + "Id": 898 }, { "Command": "Measure-PnPWeb $web -Recursive", "CommandName": "Measure-PnPWeb", - "Id": 899, - "Rank": 2 + "Rank": 2, + "Id": 899 }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "CommandName": "Move-PnPFile", - "Id": 900, - "Rank": 1 + "Rank": 1, + "Id": 900 }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "CommandName": "Move-PnPFile", - "Id": 901, - "Rank": 2 + "Rank": 2, + "Id": 901 }, { "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "CommandName": "Move-PnPFile", - "Id": 902, - "Rank": 3 + "Rank": 3, + "Id": 902 }, { "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "CommandName": "Move-PnPFile", - "Id": 903, - "Rank": 4 + "Rank": 4, + "Id": 903 }, { "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "CommandName": "Move-PnPFolder", - "Id": 904, - "Rank": 1 + "Rank": 1, + "Id": 904 }, { "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "CommandName": "Move-PnPFolder", - "Id": 905, - "Rank": 2 + "Rank": 2, + "Id": 905 }, { "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "CommandName": "Move-PnPListItemToRecycleBin", - "Id": 906, - "Rank": 1 + "Rank": 1, + "Id": 906 }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "CommandName": "Move-PnPPageComponent", - "Id": 907, - "Rank": 1 + "Rank": 1, + "Id": 907 }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "CommandName": "Move-PnPPageComponent", - "Id": 908, - "Rank": 2 + "Rank": 2, + "Id": 908 }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "CommandName": "Move-PnPPageComponent", - "Id": 909, - "Rank": 3 + "Rank": 3, + "Id": 909 }, { "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "CommandName": "Move-PnPPageComponent", - "Id": 910, - "Rank": 4 + "Rank": 4, + "Id": 910 }, { "Command": "Move-PnPRecycleBinItem", "CommandName": "Move-PnpRecycleBinItem", - "Id": 911, - "Rank": 1 + "Rank": 1, + "Id": 911 }, { "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "CommandName": "Move-PnpRecycleBinItem", - "Id": 912, - "Rank": 2 + "Rank": 2, + "Id": 912 }, { "Command": "Move-PnPRecycleBinItem -Force", "CommandName": "Move-PnpRecycleBinItem", - "Id": 913, - "Rank": 3 + "Rank": 3, + "Id": 913 }, { "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": 914, - "Rank": 1 + "Rank": 1, + "Id": 914 }, { "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "CommandName": "Move-PnPTerm", - "Id": 915, - "Rank": 2 + "Rank": 2, + "Id": 915 }, { "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "CommandName": "Move-PnPTerm", - "Id": 916, - "Rank": 3 + "Rank": 3, + "Id": 916 }, { "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": 917, - "Rank": 1 + "Rank": 1, + "Id": 917 }, { "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "CommandName": "Move-PnPTermSet", - "Id": 918, - "Rank": 2 + "Rank": 2, + "Id": 918 }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "CommandName": "New-PnPAzureADGroup", - "Id": 919, - "Rank": 1 + "Rank": 1, + "Id": 919 }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "CommandName": "New-PnPAzureADGroup", - "Id": 920, - "Rank": 2 + "Rank": 2, + "Id": 920 }, { "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "CommandName": "New-PnPAzureADGroup", - "Id": 921, - "Rank": 3 + "Rank": 3, + "Id": 921 }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 922, - "Rank": 1 + "Rank": 1, + "Id": 922 }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 923, - "Rank": 2 + "Rank": 2, + "Id": 923 }, { "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 924, - "Rank": 3 + "Rank": 3, + "Id": 924 }, { "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "CommandName": "New-PnPAzureCertificate", - "Id": 925, - "Rank": 1 + "Rank": 1, + "Id": 925 }, { "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "CommandName": "New-PnPAzureCertificate", - "Id": 926, - "Rank": 2 + "Rank": 2, + "Id": 926 }, { "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "CommandName": "New-PnPAzureCertificate", - "Id": 927, - "Rank": 3 + "Rank": 3, + "Id": 927 }, { "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": 928, - "Rank": 1 + "Rank": 1, + "Id": 928 }, { "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", "CommandName": "New-PnPGraphSubscription", - "Id": 929, - "Rank": 2 + "Rank": 2, + "Id": 929 }, { "Command": "New-PnPGroup -Title \"My Site Users\"", "CommandName": "New-PnPGroup", - "Id": 930, - "Rank": 1 + "Rank": 1, + "Id": 930 }, { "Command": "New-PnPList -Title Announcements -Template Announcements", "CommandName": "New-PnPList", - "Id": 931, - "Rank": 1 + "Rank": 1, + "Id": 931 }, { "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "CommandName": "New-PnPList", - "Id": 932, - "Rank": 2 + "Rank": 2, + "Id": 932 }, { "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "CommandName": "New-PnPList", - "Id": 933, - "Rank": 3 + "Rank": 3, + "Id": 933 }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "CommandName": "New-PnPMicrosoft365Group", - "Id": 934, - "Rank": 1 + "Rank": 1, + "Id": 934 }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "CommandName": "New-PnPMicrosoft365Group", - "Id": 935, - "Rank": 2 + "Rank": 2, + "Id": 935 }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "CommandName": "New-PnPMicrosoft365Group", - "Id": 936, - "Rank": 3 + "Rank": 3, + "Id": 936 }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "CommandName": "New-PnPMicrosoft365Group", - "Id": 937, - "Rank": 4 + "Rank": 4, + "Id": 937 }, { "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "CommandName": "New-PnPMicrosoft365Group", - "Id": 938, - "Rank": 5 + "Rank": 5, + "Id": 938 }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "CommandName": "New-PnPMicrosoft365Group", - "Id": 939, - "Rank": 6 + "Rank": 6, + "Id": 939 }, { "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "CommandName": "New-PnPMicrosoft365Group", - "Id": 940, - "Rank": 7 + "Rank": 7, + "Id": 940 }, { "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": 941, - "Rank": 1 + "Rank": 1, + "Id": 941 }, { "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 942, - "Rank": 2 + "Rank": 2, + "Id": 942 }, { "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "CommandName": "New-PnPPersonalSite", - "Id": 943, - "Rank": 1 + "Rank": 1, + "Id": 943 }, { "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "CommandName": "New-PnPPlannerPlan", - "Id": 944, - "Rank": 1 + "Rank": 1, + "Id": 944 }, { "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "CommandName": "New-PnPSdnProvider", - "Id": 945, - "Rank": 1 + "Rank": 1, + "Id": 945 }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "CommandName": "New-PnPSite", - "Id": 946, - "Rank": 1 + "Rank": 1, + "Id": 946 }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "CommandName": "New-PnPSite", - "Id": 947, - "Rank": 2 + "Rank": 2, + "Id": 947 }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "CommandName": "New-PnPSite", - "Id": 948, - "Rank": 3 + "Rank": 3, + "Id": 948 }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "CommandName": "New-PnPSite", - "Id": 949, - "Rank": 4 + "Rank": 4, + "Id": 949 }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "CommandName": "New-PnPSite", - "Id": 950, - "Rank": 5 + "Rank": 5, + "Id": 950 }, { "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Id": 951, - "Rank": 6 + "Rank": 6, + "Id": 951 }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "CommandName": "New-PnPSite", - "Id": 952, - "Rank": 7 + "Rank": 7, + "Id": 952 }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "CommandName": "New-PnPSite", - "Id": 953, - "Rank": 8 + "Rank": 8, + "Id": 953 }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Id": 954, - "Rank": 9 + "Rank": 9, + "Id": 954 }, { "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "CommandName": "New-PnPSite", - "Id": 955, - "Rank": 10 + "Rank": 10, + "Id": 955 }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "CommandName": "New-PnPSite", - "Id": 956, - "Rank": 11 + "Rank": 11, + "Id": 956 }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "CommandName": "New-PnPSite", - "Id": 957, - "Rank": 12 + "Rank": 12, + "Id": 957 }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "CommandName": "New-PnPSite", - "Id": 958, - "Rank": 13 + "Rank": 13, + "Id": 958 }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "CommandName": "New-PnPSite", - "Id": 959, - "Rank": 14 + "Rank": 14, + "Id": 959 }, { "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Id": 960, - "Rank": 15 + "Rank": 15, + "Id": 960 }, { "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "CommandName": "New-PnPSite", - "Id": 961, - "Rank": 16 + "Rank": 16, + "Id": 961 }, { "Command": "New-PnPSiteCollectionTermStore", "CommandName": "New-PnPSiteCollectionTermStore", - "Id": 962, - "Rank": 1 + "Rank": 1, + "Id": 962 }, { "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "CommandName": "New-PnPSiteGroup", - "Id": 963, - "Rank": 1 + "Rank": 1, + "Id": 963 }, { "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "CommandName": "New-PnPSiteGroup", - "Id": 964, - "Rank": 2 + "Rank": 2, + "Id": 964 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 965, - "Rank": 1 + "Rank": 1, + "Id": 965 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 966, - "Rank": 2 + "Rank": 2, + "Id": 966 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 967, - "Rank": 3 + "Rank": 3, + "Id": 967 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 968, - "Rank": 4 + "Rank": 4, + "Id": 968 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 969, - "Rank": 5 + "Rank": 5, + "Id": 969 }, { "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": 970, - "Rank": 6 + "Rank": 6, + "Id": 970 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 971, - "Rank": 7 + "Rank": 7, + "Id": 971 }, { "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 972, - "Rank": 8 + "Rank": 8, + "Id": 972 }, { "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "CommandName": "New-PnPTeamsApp", - "Id": 973, - "Rank": 1 + "Rank": 1, + "Id": 973 }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "CommandName": "New-PnPTeamsTeam", - "Id": 974, - "Rank": 1 + "Rank": 1, + "Id": 974 }, { "Command": "New-PnPTeamsTeam -GroupId $groupId", "CommandName": "New-PnPTeamsTeam", - "Id": 975, - "Rank": 2 + "Rank": 2, + "Id": 975 }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "CommandName": "New-PnPTeamsTeam", - "Id": 976, - "Rank": 3 + "Rank": 3, + "Id": 976 }, { "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "CommandName": "New-PnPTeamsTeam", - "Id": 977, - "Rank": 4 + "Rank": 4, + "Id": 977 }, { "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": 978, - "Rank": 5 + "Rank": 5, + "Id": 978 }, { "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": 979, - "Rank": 6 + "Rank": 6, + "Id": 979 }, { "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": 980, - "Rank": 1 + "Rank": 1, + "Id": 980 }, { "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "CommandName": "New-PnPTenantSite", - "Id": 981, - "Rank": 2 + "Rank": 2, + "Id": 981 }, { "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "CommandName": "New-PnPTerm", - "Id": 982, - "Rank": 1 + "Rank": 1, + "Id": 982 }, { "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "New-PnPTerm", - "Id": 983, - "Rank": 2 + "Rank": 2, + "Id": 983 }, { "Command": "New-PnPTermGroup -GroupName \"Countries\"", "CommandName": "New-PnPTermGroup", - "Id": 984, - "Rank": 1 + "Rank": 1, + "Id": 984 }, { "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "CommandName": "New-PnPTermLabel", - "Id": 985, - "Rank": 1 + "Rank": 1, + "Id": 985 }, { "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "CommandName": "New-PnPTermSet", - "Id": 986, - "Rank": 1 + "Rank": 1, + "Id": 986 }, { "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "CommandName": "New-PnPUPABulkImportJob", - "Id": 987, - "Rank": 1 + "Rank": 1, + "Id": 987 }, { "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": 988, - "Rank": 2 + "Rank": 2, + "Id": 988 }, { "Command": "New-PnPUser -LoginName user@company.com", "CommandName": "New-PnPUser", - "Id": 989, - "Rank": 1 + "Rank": 1, + "Id": 989 }, { "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "CommandName": "New-PnPWeb", - "Id": 990, - "Rank": 1 + "Rank": 1, + "Id": 990 }, { "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Publish-PnPApp", - "Id": 991, - "Rank": 1 + "Rank": 1, + "Id": 991 }, { "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "CommandName": "Publish-PnPApp", - "Id": 992, - "Rank": 2 + "Rank": 2, + "Id": 992 }, { "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": 993, - "Rank": 1 + "Rank": 1, + "Id": 993 }, { "Command": "Publish-PnPContentType -ContentType 0x0101", "CommandName": "Publish-PnPContentType", - "Id": 994, - "Rank": 1 + "Rank": 1, + "Id": 994 }, { "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "CommandName": "Publish-PnPSyntexModel", - "Id": 995, - "Rank": 1 + "Rank": 1, + "Id": 995 }, { "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": 996, - "Rank": 2 + "Rank": 2, + "Id": 996 }, { "Command": "Read-PnPSiteTemplate -Path template.pnp", "CommandName": "Read-PnPSiteTemplate", - "Id": 997, - "Rank": 1 + "Rank": 1, + "Id": 997 }, { "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "CommandName": "Read-PnPSiteTemplate", - "Id": 998, - "Rank": 2 + "Rank": 2, + "Id": 998 }, { "Command": "Read-PnPSiteTemplate -Xml $xml", "CommandName": "Read-PnPSiteTemplate", - "Id": 999, - "Rank": 3 + "Rank": 3, + "Id": 999 }, { "Command": "Read-PnPTenantTemplate -Path template.pnp", "CommandName": "Read-PnPTenantTemplate", - "Id": 1000, - "Rank": 1 + "Rank": 1, + "Id": 1000 }, { "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "CommandName": "Register-PnPAppCatalogSite", - "Id": 1001, - "Rank": 1 + "Rank": 1, + "Id": 1001 }, { "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": 1002, - "Rank": 1 + "Rank": 1, + "Id": 1002 }, { "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": 1003, - "Rank": 2 + "Rank": 2, + "Id": 1003 }, { "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": 1004, - "Rank": 3 + "Rank": 3, + "Id": 1004 }, { "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": 1005, - "Rank": 4 + "Rank": 4, + "Id": 1005 }, { "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": 1006, - "Rank": 5 + "Rank": 5, + "Id": 1006 }, { "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": 1007, - "Rank": 6 + "Rank": 6, + "Id": 1007 }, { "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\") -LogoFilePath c:\\logo.png", "CommandName": "Register-PnPAzureADApp", - "Id": 1008, - "Rank": 7 + "Rank": 7, + "Id": 1008 }, { "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "CommandName": "Register-PnPHubSite", - "Id": 1009, - "Rank": 1 + "Rank": 1, + "Id": 1009 }, { "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "CommandName": "Register-PnPHubSite", - "Id": 1010, - "Rank": 2 + "Rank": 2, + "Id": 1010 }, { "Command": "Register-PnPManagementShellAccess", "CommandName": "Register-PnPManagementShellAccess", - "Id": 1011, - "Rank": 1 + "Rank": 1, + "Id": 1011 }, { "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "CommandName": "Register-PnPManagementShellAccess", - "Id": 1012, - "Rank": 2 + "Rank": 2, + "Id": 1012 }, { "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "CommandName": "Register-PnPManagementShellAccess", - "Id": 1013, - "Rank": 3 + "Rank": 3, + "Id": 1013 }, { "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1014, - "Rank": 1 + "Rank": 1, + "Id": 1014 }, { "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1015, - "Rank": 2 + "Rank": 2, + "Id": 1015 }, { "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "CommandName": "Remove-PnPAlert", - "Id": 1016, - "Rank": 1 + "Rank": 1, + "Id": 1016 }, { "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAlert", - "Id": 1017, - "Rank": 2 + "Rank": 2, + "Id": 1017 }, { "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Remove-PnPApp", - "Id": 1018, - "Rank": 1 + "Rank": 1, + "Id": 1018 }, { "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Remove-PnPApp", - "Id": 1019, - "Rank": 2 + "Rank": 2, + "Id": 1019 }, { "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1020, - "Rank": 1 + "Rank": 1, + "Id": 1020 }, { "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1021, - "Rank": 2 + "Rank": 2, + "Id": 1021 }, { "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1022, - "Rank": 1 + "Rank": 1, + "Id": 1022 }, { "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1023, - "Rank": 2 + "Rank": 2, + "Id": 1023 }, { "Command": "Remove-PnPAzureADApp -Identity MyApp", "CommandName": "Remove-PnPAzureADApp", - "Id": 1024, - "Rank": 1 + "Rank": 1, + "Id": 1024 }, { "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Remove-PnPAzureADApp", - "Id": 1025, - "Rank": 2 + "Rank": 2, + "Id": 1025 }, { "Command": "Remove-PnPAzureADGroup -Identity $groupId", "CommandName": "Remove-PnPAzureADGroup", - "Id": 1026, - "Rank": 1 + "Rank": 1, + "Id": 1026 }, { "Command": "Remove-PnPAzureADGroup -Identity $group", "CommandName": "Remove-PnPAzureADGroup", - "Id": 1027, - "Rank": 2 + "Rank": 2, + "Id": 1027 }, { "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAzureADGroupMember", - "Id": 1028, - "Rank": 1 + "Rank": 1, + "Id": 1028 }, { "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAzureADGroupOwner", - "Id": 1029, - "Rank": 1 + "Rank": 1, + "Id": 1029 }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1030, - "Rank": 1 + "Rank": 1, + "Id": 1030 }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1031, - "Rank": 2 + "Rank": 2, + "Id": 1031 }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1032, - "Rank": 3 + "Rank": 3, + "Id": 1032 }, { "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1033, - "Rank": 4 + "Rank": 4, + "Id": 1033 }, { "Command": "Remove-PnPContentType -Identity \"Project Document\"", "CommandName": "Remove-PnPContentType", - "Id": 1034, - "Rank": 1 + "Rank": 1, + "Id": 1034 }, { "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "CommandName": "Remove-PnPContentType", - "Id": 1035, - "Rank": 2 + "Rank": 2, + "Id": 1035 }, { "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1036, - "Rank": 1 + "Rank": 1, + "Id": 1036 }, { "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1037, - "Rank": 2 + "Rank": 2, + "Id": 1037 }, { "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "CommandName": "Remove-PnPContentTypeFromList", - "Id": 1038, - "Rank": 1 + "Rank": 1, + "Id": 1038 }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Remove-PnPCustomAction", - "Id": 1039, - "Rank": 1 + "Rank": 1, + "Id": 1039 }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "CommandName": "Remove-PnPCustomAction", - "Id": 1040, - "Rank": 2 + "Rank": 2, + "Id": 1040 }, { "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "CommandName": "Remove-PnPCustomAction", - "Id": 1041, - "Rank": 3 + "Rank": 3, + "Id": 1041 }, { "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Id": 1042, - "Rank": 1 + "Rank": 1, + "Id": 1042 }, { "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Remove-PnPEventReceiver", - "Id": 1043, - "Rank": 1 + "Rank": 1, + "Id": 1043 }, { "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Remove-PnPEventReceiver", - "Id": 1044, - "Rank": 2 + "Rank": 2, + "Id": 1044 }, { "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "CommandName": "Remove-PnPEventReceiver", - "Id": 1045, - "Rank": 3 + "Rank": 3, + "Id": 1045 }, { "Command": "Remove-PnPEventReceiver -List ProjectList", "CommandName": "Remove-PnPEventReceiver", - "Id": 1046, - "Rank": 4 + "Rank": 4, + "Id": 1046 }, { "Command": "Remove-PnPEventReceiver", "CommandName": "Remove-PnPEventReceiver", - "Id": 1047, - "Rank": 5 + "Rank": 5, + "Id": 1047 }, { "Command": "Remove-PnPEventReceiver -Scope Site", "CommandName": "Remove-PnPEventReceiver", - "Id": 1048, - "Rank": 6 + "Rank": 6, + "Id": 1048 }, { "Command": "Remove-PnPEventReceiver -Scope Web", "CommandName": "Remove-PnPEventReceiver", - "Id": 1049, - "Rank": 7 + "Rank": 7, + "Id": 1049 }, { "Command": "Remove-PnPEventReceiver -Scope All", "CommandName": "Remove-PnPEventReceiver", - "Id": 1050, - "Rank": 8 + "Rank": 8, + "Id": 1050 }, { "Command": "Remove-PnPField -Identity \"Speakers\"", "CommandName": "Remove-PnPField", - "Id": 1051, - "Rank": 1 + "Rank": 1, + "Id": 1051 }, { "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "CommandName": "Remove-PnPField", - "Id": 1052, - "Rank": 2 + "Rank": 2, + "Id": 1052 }, { "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1053, - "Rank": 1 + "Rank": 1, + "Id": 1053 }, { "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1054, - "Rank": 2 + "Rank": 2, + "Id": 1054 }, { "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "CommandName": "Remove-PnPFile", - "Id": 1055, - "Rank": 1 + "Rank": 1, + "Id": 1055 }, { "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "CommandName": "Remove-PnPFile", - "Id": 1056, - "Rank": 2 + "Rank": 2, + "Id": 1056 }, { "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "CommandName": "Remove-PnPFile", - "Id": 1057, - "Rank": 3 + "Rank": 3, + "Id": 1057 }, { "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "CommandName": "Remove-PnPFileFromSiteTemplate", - "Id": 1058, - "Rank": 1 + "Rank": 1, + "Id": 1058 }, { "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Remove-PnPFileSharingLink", - "Id": 1059, - "Rank": 1 + "Rank": 1, + "Id": 1059 }, { "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "CommandName": "Remove-PnPFileSharingLink", - "Id": 1060, - "Rank": 2 + "Rank": 2, + "Id": 1060 }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "CommandName": "Remove-PnPFileVersion", - "Id": 1061, - "Rank": 1 + "Rank": 1, + "Id": 1061 }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "CommandName": "Remove-PnPFileVersion", - "Id": 1062, - "Rank": 2 + "Rank": 2, + "Id": 1062 }, { "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "CommandName": "Remove-PnPFileVersion", - "Id": 1063, - "Rank": 3 + "Rank": 3, + "Id": 1063 }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "CommandName": "Remove-PnPFlowOwner", - "Id": 1064, - "Rank": 1 + "Rank": 1, + "Id": 1064 }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "CommandName": "Remove-PnPFlowOwner", - "Id": 1065, - "Rank": 2 + "Rank": 2, + "Id": 1065 }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "CommandName": "Remove-PnPFlowOwner", - "Id": 1066, - "Rank": 3 + "Rank": 3, + "Id": 1066 }, { "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "CommandName": "Remove-PnPFlowOwner", - "Id": 1067, - "Rank": 4 + "Rank": 4, + "Id": 1067 }, { "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "CommandName": "Remove-PnPFolder", - "Id": 1068, - "Rank": 1 + "Rank": 1, + "Id": 1068 }, { "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "CommandName": "Remove-PnPFolder", - "Id": 1069, - "Rank": 2 + "Rank": 2, + "Id": 1069 }, { "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1070, - "Rank": 1 + "Rank": 1, + "Id": 1070 }, { "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1071, - "Rank": 2 + "Rank": 2, + "Id": 1071 }, { "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "CommandName": "Remove-PnPGraphSubscription", - "Id": 1072, - "Rank": 1 + "Rank": 1, + "Id": 1072 }, { "Command": "Remove-PnPGroup -Identity \"My Users\"", "CommandName": "Remove-PnPGroup", - "Id": 1073, - "Rank": 1 + "Rank": 1, + "Id": 1073 }, { "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "CommandName": "Remove-PnPGroupMember", - "Id": 1074, - "Rank": 1 + "Rank": 1, + "Id": 1074 }, { "Command": "Remove-PnPHomeSite", "CommandName": "Remove-PnPHomeSite", - "Id": 1075, - "Rank": 1 + "Rank": 1, + "Id": 1075 }, { "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "CommandName": "Remove-PnPHubSiteAssociation", - "Id": 1076, - "Rank": 1 + "Rank": 1, + "Id": 1076 }, { "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1077, - "Rank": 1 + "Rank": 1, + "Id": 1077 }, { "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1078, - "Rank": 2 + "Rank": 2, + "Id": 1078 }, { "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "CommandName": "Remove-PnPIndexedProperty", - "Id": 1079, - "Rank": 1 + "Rank": 1, + "Id": 1079 }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1080, - "Rank": 1 + "Rank": 1, + "Id": 1080 }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1081, - "Rank": 2 + "Rank": 2, + "Id": 1081 }, { "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1082, - "Rank": 3 + "Rank": 3, + "Id": 1082 }, { "Command": "Remove-PnPJavaScriptLink -Scope Site", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1083, - "Rank": 4 + "Rank": 4, + "Id": 1083 }, { "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1084, - "Rank": 5 + "Rank": 5, + "Id": 1084 }, { "Command": "Remove-PnPKnowledgeHubSite", "CommandName": "Remove-PnPKnowledgeHubSite", - "Id": 1085, - "Rank": 1 + "Rank": 1, + "Id": 1085 }, { "Command": "Remove-PnPList -Identity Announcements", "CommandName": "Remove-PnPList", - "Id": 1086, - "Rank": 1 + "Rank": 1, + "Id": 1086 }, { "Command": "Remove-PnPList -Identity Announcements -Force", "CommandName": "Remove-PnPList", - "Id": 1087, - "Rank": 2 + "Rank": 2, + "Id": 1087 }, { "Command": "Remove-PnPList -Identity Announcements -Recycle", "CommandName": "Remove-PnPList", - "Id": 1088, - "Rank": 3 + "Rank": 3, + "Id": 1088 }, { "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "CommandName": "Remove-PnPList", - "Id": 1089, - "Rank": 4 + "Rank": 4, + "Id": 1089 }, { "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPListDesign", - "Id": 1090, - "Rank": 1 + "Rank": 1, + "Id": 1090 }, { "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "CommandName": "Remove-PnPListItem", - "Id": 1091, - "Rank": 1 + "Rank": 1, + "Id": 1091 }, { "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "CommandName": "Remove-PnPListItem", - "Id": 1092, - "Rank": 2 + "Rank": 2, + "Id": 1092 }, { "Command": "Remove-PnPListItem -List \"Demo List\"", "CommandName": "Remove-PnPListItem", - "Id": 1093, - "Rank": 3 + "Rank": 3, + "Id": 1093 }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1094, - "Rank": 1 + "Rank": 1, + "Id": 1094 }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1095, - "Rank": 2 + "Rank": 2, + "Id": 1095 }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1096, - "Rank": 3 + "Rank": 3, + "Id": 1096 }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1097, - "Rank": 4 + "Rank": 4, + "Id": 1097 }, { "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1098, - "Rank": 5 + "Rank": 5, + "Id": 1098 }, { "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "CommandName": "Remove-PnPListItemVersion", - "Id": 1099, - "Rank": 1 + "Rank": 1, + "Id": 1099 }, { "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "CommandName": "Remove-PnPListItemVersion", - "Id": 1100, - "Rank": 2 + "Rank": 2, + "Id": 1100 }, { "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1101, - "Rank": 1 + "Rank": 1, + "Id": 1101 }, { "Command": "Remove-PnPMicrosoft365Group -Identity $group", "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1102, - "Rank": 2 + "Rank": 2, + "Id": 1102 }, { "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Id": 1103, - "Rank": 1 + "Rank": 1, + "Id": 1103 }, { "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Id": 1104, - "Rank": 1 + "Rank": 1, + "Id": 1104 }, { "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1105, - "Rank": 1 + "Rank": 1, + "Id": 1105 }, { "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1106, - "Rank": 2 + "Rank": 2, + "Id": 1106 }, { "Command": "Remove-PnPNavigationNode -Identity 1032", "CommandName": "Remove-PnPNavigationNode", - "Id": 1107, - "Rank": 1 + "Rank": 1, + "Id": 1107 }, { "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "CommandName": "Remove-PnPNavigationNode", - "Id": 1108, - "Rank": 2 + "Rank": 2, + "Id": 1108 }, { "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "CommandName": "Remove-PnPNavigationNode", - "Id": 1109, - "Rank": 3 + "Rank": 3, + "Id": 1109 }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1110, - "Rank": 1 + "Rank": 1, + "Id": 1110 }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1111, - "Rank": 2 + "Rank": 2, + "Id": 1111 }, { "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1112, - "Rank": 3 + "Rank": 3, + "Id": 1112 }, { "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "CommandName": "Remove-PnPOrgNewsSite", - "Id": 1113, - "Rank": 1 + "Rank": 1, + "Id": 1113 }, { "Command": "Remove-PnPPage -Identity \"MyPage\"", "CommandName": "Remove-PnPPage", - "Id": 1114, - "Rank": 1 + "Rank": 1, + "Id": 1114 }, { "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "CommandName": "Remove-PnPPage", - "Id": 1115, - "Rank": 2 + "Rank": 2, + "Id": 1115 }, { "Command": "Remove-PnPPage $page", "CommandName": "Remove-PnPPage", - "Id": 1116, - "Rank": 3 + "Rank": 3, + "Id": 1116 }, { "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "CommandName": "Remove-PnPPage", - "Id": 1117, - "Rank": 4 + "Rank": 4, + "Id": 1117 }, { "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Remove-PnPPageComponent", - "Id": 1118, - "Rank": 1 + "Rank": 1, + "Id": 1118 }, { "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "CommandName": "Remove-PnPPlannerBucket", - "Id": 1119, - "Rank": 1 + "Rank": 1, + "Id": 1119 }, { "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "CommandName": "Remove-PnPPlannerPlan", - "Id": 1120, - "Rank": 1 + "Rank": 1, + "Id": 1120 }, { "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "CommandName": "Remove-PnPPlannerRoster", - "Id": 1121, - "Rank": 1 + "Rank": 1, + "Id": 1121 }, { "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPPlannerRosterMember", - "Id": 1122, - "Rank": 1 + "Rank": 1, + "Id": 1122 }, { "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "CommandName": "Remove-PnPPlannerTask", - "Id": 1123, - "Rank": 1 + "Rank": 1, + "Id": 1123 }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey", "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1124, - "Rank": 1 + "Rank": 1, + "Id": 1124 }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1125, - "Rank": 2 + "Rank": 2, + "Id": 1125 }, { "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1126, - "Rank": 3 + "Rank": 3, + "Id": 1126 }, { "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "CommandName": "Remove-PnPPublishingImageRendition", - "Id": 1127, - "Rank": 1 + "Rank": 1, + "Id": 1127 }, { "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "CommandName": "Remove-PnPRoleDefinition", - "Id": 1128, - "Rank": 1 + "Rank": 1, + "Id": 1128 }, { "Command": "Remove-PnPSdnProvider -Confirm:false", "CommandName": "Remove-PnPSdnProvider", - "Id": 1129, - "Rank": 1 + "Rank": 1, + "Id": 1129 }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1130, - "Rank": 1 + "Rank": 1, + "Id": 1130 }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1131, - "Rank": 2 + "Rank": 2, + "Id": 1131 }, { "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1132, - "Rank": 3 + "Rank": 3, + "Id": 1132 }, { "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1133, - "Rank": 4 + "Rank": 4, + "Id": 1133 }, { "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1134, - "Rank": 1 + "Rank": 1, + "Id": 1134 }, { "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1135, - "Rank": 2 + "Rank": 2, + "Id": 1135 }, { "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Id": 1136, - "Rank": 1 + "Rank": 1, + "Id": 1136 }, { "Command": "Remove-PnPSiteCollectionTermStore", "CommandName": "Remove-PnPSiteCollectionTermStore", - "Id": 1137, - "Rank": 1 + "Rank": 1, + "Id": 1137 }, { "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteDesign", - "Id": 1138, - "Rank": 1 + "Rank": 1, + "Id": 1138 }, { "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteDesignTask", - "Id": 1139, - "Rank": 1 + "Rank": 1, + "Id": 1139 }, { "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Remove-PnPSiteGroup", - "Id": 1140, - "Rank": 1 + "Rank": 1, + "Id": 1140 }, { "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "CommandName": "Remove-PnPSiteGroup", - "Id": 1141, - "Rank": 2 + "Rank": 2, + "Id": 1141 }, { "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteScript", - "Id": 1142, - "Rank": 1 + "Rank": 1, + "Id": 1142 }, { "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "CommandName": "Remove-PnPSiteUserInvitations", - "Id": 1143, - "Rank": 1 + "Rank": 1, + "Id": 1143 }, { "Command": "Remove-PnPStorageEntity -Key MyKey", "CommandName": "Remove-PnPStorageEntity", - "Id": 1144, - "Rank": 1 + "Rank": 1, + "Id": 1144 }, { "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "CommandName": "Remove-PnPStorageEntity", - "Id": 1145, - "Rank": 2 + "Rank": 2, + "Id": 1145 }, { "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "CommandName": "Remove-PnPStoredCredential", - "Id": 1146, - "Rank": 1 + "Rank": 1, + "Id": 1146 }, { "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1147, - "Rank": 1 + "Rank": 1, + "Id": 1147 }, { "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1148, - "Rank": 2 + "Rank": 2, + "Id": 1148 }, { "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "CommandName": "Remove-PnPTeamsApp", - "Id": 1149, - "Rank": 1 + "Rank": 1, + "Id": 1149 }, { "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "CommandName": "Remove-PnPTeamsApp", - "Id": 1150, - "Rank": 2 + "Rank": 2, + "Id": 1150 }, { "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "CommandName": "Remove-PnPTeamsChannel", - "Id": 1151, - "Rank": 1 + "Rank": 1, + "Id": 1151 }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1152, - "Rank": 1 + "Rank": 1, + "Id": 1152 }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1153, - "Rank": 2 + "Rank": 2, + "Id": 1153 }, { "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1154, - "Rank": 3 + "Rank": 3, + "Id": 1154 }, { "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "CommandName": "Remove-PnPTeamsTab", - "Id": 1155, - "Rank": 1 + "Rank": 1, + "Id": 1155 }, { "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "CommandName": "Remove-PnPTeamsTab", - "Id": 1156, - "Rank": 2 + "Rank": 2, + "Id": 1156 }, { "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", "CommandName": "Remove-PnPTeamsTab", - "Id": 1157, - "Rank": 3 + "Rank": 3, + "Id": 1157 }, { "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "CommandName": "Remove-PnPTeamsTag", - "Id": 1158, - "Rank": 1 + "Rank": 1, + "Id": 1158 }, { "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "CommandName": "Remove-PnPTeamsTeam", - "Id": 1159, - "Rank": 1 + "Rank": 1, + "Id": 1159 }, { "Command": "Remove-PnPTeamsTeam -Identity testteam", "CommandName": "Remove-PnPTeamsTeam", - "Id": 1160, - "Rank": 2 + "Rank": 2, + "Id": 1160 }, { "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "CommandName": "Remove-PnPTeamsUser", - "Id": 1161, - "Rank": 1 + "Rank": 1, + "Id": 1161 }, { "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Remove-PnPTeamsUser", - "Id": 1162, - "Rank": 2 + "Rank": 2, + "Id": 1162 }, { "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "CommandName": "Remove-PnPTenantCdnOrigin", - "Id": 1163, - "Rank": 1 + "Rank": 1, + "Id": 1163 }, { "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1164, - "Rank": 1 + "Rank": 1, + "Id": 1164 }, { "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1165, - "Rank": 2 + "Rank": 2, + "Id": 1165 }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Remove-PnPTenantSite", - "Id": 1166, - "Rank": 1 + "Rank": 1, + "Id": 1166 }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "CommandName": "Remove-PnPTenantSite", - "Id": 1167, - "Rank": 2 + "Rank": 2, + "Id": 1167 }, { "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "CommandName": "Remove-PnPTenantSite", - "Id": 1168, - "Rank": 3 + "Rank": 3, + "Id": 1168 }, { "Command": "Remove-PnPTenantSyncClientRestriction", "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Id": 1169, - "Rank": 1 + "Rank": 1, + "Id": 1169 }, { "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "CommandName": "Remove-PnPTenantTheme", - "Id": 1170, - "Rank": 1 + "Rank": 1, + "Id": 1170 }, { "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "CommandName": "Remove-PnPTerm", - "Id": 1171, - "Rank": 1 + "Rank": 1, + "Id": 1171 }, { "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Remove-PnPTerm", - "Id": 1172, - "Rank": 2 + "Rank": 2, + "Id": 1172 }, { "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "CommandName": "Remove-PnPTermGroup", - "Id": 1173, - "Rank": 1 + "Rank": 1, + "Id": 1173 }, { "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "CommandName": "Remove-PnPTermGroup", - "Id": 1174, - "Rank": 2 + "Rank": 2, + "Id": 1174 }, { "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "CommandName": "Remove-PnPTermGroup", - "Id": 1175, - "Rank": 3 + "Rank": 3, + "Id": 1175 }, { "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "CommandName": "Remove-PnPTermLabel", - "Id": 1176, - "Rank": 1 + "Rank": 1, + "Id": 1176 }, { "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Remove-PnPTermLabel", - "Id": 1177, - "Rank": 2 + "Rank": 2, + "Id": 1177 }, { "Command": "Remove-PnPUser -Identity 23", "CommandName": "Remove-PnPUser", - "Id": 1178, - "Rank": 1 + "Rank": 1, + "Id": 1178 }, { "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "CommandName": "Remove-PnPUser", - "Id": 1179, - "Rank": 2 + "Rank": 2, + "Id": 1179 }, { "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "CommandName": "Remove-PnPUser", - "Id": 1180, - "Rank": 3 + "Rank": 3, + "Id": 1180 }, { "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "CommandName": "Remove-PnPUserInfo", - "Id": 1181, - "Rank": 1 + "Rank": 1, + "Id": 1181 }, { "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "CommandName": "Remove-PnPUserProfile", - "Id": 1182, - "Rank": 1 + "Rank": 1, + "Id": 1182 }, { "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "CommandName": "Remove-PnPView", - "Id": 1183, - "Rank": 1 + "Rank": 1, + "Id": 1183 }, { "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Id": 1184, - "Rank": 1 + "Rank": 1, + "Id": 1184 }, { "Command": "Remove-PnPWeb -Identity projectA", "CommandName": "Remove-PnPWeb", - "Id": 1185, - "Rank": 1 + "Rank": 1, + "Id": 1185 }, { "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "CommandName": "Remove-PnPWeb", - "Id": 1186, - "Rank": 2 + "Rank": 2, + "Id": 1186 }, { "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "CommandName": "Remove-PnPWebhookSubscription", - "Id": 1187, - "Rank": 1 + "Rank": 1, + "Id": 1187 }, { "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Remove-PnPWebPart", - "Id": 1188, - "Rank": 1 + "Rank": 1, + "Id": 1188 }, { "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "CommandName": "Remove-PnPWebPart", - "Id": 1189, - "Rank": 2 + "Rank": 2, + "Id": 1189 }, { "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "CommandName": "Remove-PnPWikiPage", - "Id": 1190, - "Rank": 1 + "Rank": 1, + "Id": 1190 }, { "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "CommandName": "Rename-PnPFile", - "Id": 1191, - "Rank": 1 + "Rank": 1, + "Id": 1191 }, { "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "CommandName": "Rename-PnPFile", - "Id": 1192, - "Rank": 2 + "Rank": 2, + "Id": 1192 }, { "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "CommandName": "Rename-PnPFile", - "Id": 1193, - "Rank": 3 + "Rank": 3, + "Id": 1193 }, { "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "CommandName": "Rename-PnPFolder", - "Id": 1194, - "Rank": 1 + "Rank": 1, + "Id": 1194 }, { "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Repair-PnPSite", - "Id": 1195, - "Rank": 1 + "Rank": 1, + "Id": 1195 }, { "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "CommandName": "Repair-PnPSite", - "Id": 1196, - "Rank": 2 + "Rank": 2, + "Id": 1196 }, { "Command": "Request-PnPAccessToken", "CommandName": "Request-PnPAccessToken", - "Id": 1197, - "Rank": 1 + "Rank": 1, + "Id": 1197 }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "CommandName": "Request-PnPAccessToken", - "Id": 1198, - "Rank": 2 + "Rank": 2, + "Id": 1198 }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "CommandName": "Request-PnPAccessToken", - "Id": 1199, - "Rank": 3 + "Rank": 3, + "Id": 1199 }, { "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "CommandName": "Request-PnPAccessToken", - "Id": 1200, - "Rank": 4 + "Rank": 4, + "Id": 1200 }, { "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "CommandName": "Request-PnPPersonalSite", - "Id": 1201, - "Rank": 1 + "Rank": 1, + "Id": 1201 }, { "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "CommandName": "Request-PnPPersonalSite", - "Id": 1202, - "Rank": 2 + "Rank": 2, + "Id": 1202 }, { "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "CommandName": "Request-PnPReIndexList", - "Id": 1203, - "Rank": 1 + "Rank": 1, + "Id": 1203 }, { "Command": "Request-PnPReIndexWeb", "CommandName": "Request-PnPReIndexWeb", - "Id": 1204, - "Rank": 1 + "Rank": 1, + "Id": 1204 }, { "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1205, - "Rank": 1 + "Rank": 1, + "Id": 1205 }, { "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1206, - "Rank": 2 + "Rank": 2, + "Id": 1206 }, { "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1207, - "Rank": 3 + "Rank": 3, + "Id": 1207 }, { "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "CommandName": "Reset-PnPFileVersion", - "Id": 1208, - "Rank": 1 + "Rank": 1, + "Id": 1208 }, { "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "CommandName": "Reset-PnPFileVersion", - "Id": 1209, - "Rank": 2 + "Rank": 2, + "Id": 1209 }, { "Command": "Reset-PnPLabel -List \"Demo List\"", "CommandName": "Reset-PnPLabel", - "Id": 1210, - "Rank": 1 + "Rank": 1, + "Id": 1210 }, { "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "CommandName": "Reset-PnPLabel", - "Id": 1211, - "Rank": 2 + "Rank": 2, + "Id": 1211 }, { "Command": "Reset-PnPMicrosoft365GroupExpiration", "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1212, - "Rank": 1 + "Rank": 1, + "Id": 1212 }, { "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Id": 1213, - "Rank": 1 + "Rank": 1, + "Id": 1213 }, { "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "CommandName": "Resolve-PnPFolder", - "Id": 1214, - "Rank": 1 + "Rank": 1, + "Id": 1214 }, { "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Id": 1215, - "Rank": 1 + "Rank": 1, + "Id": 1215 }, { "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "CommandName": "Restore-PnPFileVersion", - "Id": 1216, - "Rank": 1 + "Rank": 1, + "Id": 1216 }, { "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "CommandName": "Restore-PnPFileVersion", - "Id": 1217, - "Rank": 2 + "Rank": 2, + "Id": 1217 }, { "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "CommandName": "Restore-PnPFileVersion", - "Id": 1218, - "Rank": 3 + "Rank": 3, + "Id": 1218 }, { "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "CommandName": "Restore-PnPListItemVersion", - "Id": 1219, - "Rank": 1 + "Rank": 1, + "Id": 1219 }, { "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "CommandName": "Restore-PnPListItemVersion", - "Id": 1220, - "Rank": 2 + "Rank": 2, + "Id": 1220 }, { "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "CommandName": "Restore-PnPRecycleBinItem", - "Id": 1221, - "Rank": 1 + "Rank": 1, + "Id": 1221 }, { "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1222, - "Rank": 1 + "Rank": 1, + "Id": 1222 }, { "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1223, - "Rank": 2 + "Rank": 2, + "Id": 1223 }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Restore-PnPTenantSite", - "Id": 1224, - "Rank": 1 + "Rank": 1, + "Id": 1224 }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "CommandName": "Restore-PnPTenantSite", - "Id": 1225, - "Rank": 2 + "Rank": 2, + "Id": 1225 }, { "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "CommandName": "Restore-PnPTenantSite", - "Id": 1226, - "Rank": 3 + "Rank": 3, + "Id": 1226 }, { "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Id": 1227, - "Rank": 1 + "Rank": 1, + "Id": 1227 }, { "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Revoke-PnPHubSiteRights", - "Id": 1228, - "Rank": 1 + "Rank": 1, + "Id": 1228 }, { "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Revoke-PnPSiteDesignRights", - "Id": 1229, - "Rank": 1 + "Rank": 1, + "Id": 1229 }, { "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Id": 1230, - "Rank": 1 + "Rank": 1, + "Id": 1230 }, { "Command": "Revoke-PnPUserSession -User user1@contoso.com", "CommandName": "Revoke-PnPUserSession", - "Id": 1231, - "Rank": 1 + "Rank": 1, + "Id": 1231 }, { "Command": "Save-PnPPageConversionLog", "CommandName": "Save-PnPPageConversionLog", - "Id": 1232, - "Rank": 1 + "Rank": 1, + "Id": 1232 }, { "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "CommandName": "Save-PnPSiteTemplate", - "Id": 1233, - "Rank": 1 + "Rank": 1, + "Id": 1233 }, { "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "CommandName": "Save-PnPTenantTemplate", - "Id": 1234, - "Rank": 1 + "Rank": 1, + "Id": 1234 }, { "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": 1235, - "Rank": 1 + "Rank": 1, + "Id": 1235 }, { "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": 1236, - "Rank": 2 + "Rank": 2, + "Id": 1236 }, { "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "CommandName": "Send-PnPMail", - "Id": 1237, - "Rank": 3 + "Rank": 3, + "Id": 1237 }, { "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": 1238, - "Rank": 4 + "Rank": 4, + "Id": 1238 }, { "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": 1239, - "Rank": 5 + "Rank": 5, + "Id": 1239 }, { "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": 1240, - "Rank": 6 + "Rank": 6, + "Id": 1240 }, { "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "CommandName": "Set-PnPAdaptiveScopeProperty", - "Id": 1241, - "Rank": 1 + "Rank": 1, + "Id": 1241 }, { "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1242, - "Rank": 1 + "Rank": 1, + "Id": 1242 }, { "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1243, - "Rank": 2 + "Rank": 2, + "Id": 1243 }, { "Command": "Set-PnPAppSideLoading -On", "CommandName": "Set-PnPAppSideLoading", - "Id": 1244, - "Rank": 1 + "Rank": 1, + "Id": 1244 }, { "Command": "Set-PnPAppSideLoading -Off", "CommandName": "Set-PnPAppSideLoading", - "Id": 1245, - "Rank": 2 + "Rank": 2, + "Id": 1245 }, { "Command": "Set-PnPAuditing -EnableAll", "CommandName": "Set-PnPAuditing", - "Id": 1246, - "Rank": 1 + "Rank": 1, + "Id": 1246 }, { "Command": "Set-PnPAuditing -DisableAll", "CommandName": "Set-PnPAuditing", - "Id": 1247, - "Rank": 2 + "Rank": 2, + "Id": 1247 }, { "Command": "Set-PnPAuditing -RetentionTime 7", "CommandName": "Set-PnPAuditing", - "Id": 1248, - "Rank": 3 + "Rank": 3, + "Id": 1248 }, { "Command": "Set-PnPAuditing -TrimAuditLog", "CommandName": "Set-PnPAuditing", - "Id": 1249, - "Rank": 4 + "Rank": 4, + "Id": 1249 }, { "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "CommandName": "Set-PnPAuditing", - "Id": 1250, - "Rank": 5 + "Rank": 5, + "Id": 1250 }, { "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "CommandName": "Set-PnPAvailablePageLayouts", - "Id": 1251, - "Rank": 1 + "Rank": 1, + "Id": 1251 }, { "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1252, - "Rank": 1 + "Rank": 1, + "Id": 1252 }, { "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1253, - "Rank": 2 + "Rank": 2, + "Id": 1253 }, { "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPAzureADGroup", - "Id": 1254, - "Rank": 1 + "Rank": 1, + "Id": 1254 }, { "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPAzureADGroup", - "Id": 1255, - "Rank": 2 + "Rank": 2, + "Id": 1255 }, { "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "CommandName": "Set-PnPAzureADGroup", - "Id": 1256, - "Rank": 3 + "Rank": 3, + "Id": 1256 }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1257, - "Rank": 1 + "Rank": 1, + "Id": 1257 }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1258, - "Rank": 2 + "Rank": 2, + "Id": 1258 }, { "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1259, - "Rank": 3 + "Rank": 3, + "Id": 1259 }, { "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1260, - "Rank": 1 + "Rank": 1, + "Id": 1260 }, { "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1261, - "Rank": 2 + "Rank": 2, + "Id": 1261 }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1262, - "Rank": 1 + "Rank": 1, + "Id": 1262 }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1263, - "Rank": 2 + "Rank": 2, + "Id": 1263 }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1264, - "Rank": 3 + "Rank": 3, + "Id": 1264 }, { "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1265, - "Rank": 4 + "Rank": 4, + "Id": 1265 }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "CommandName": "Set-PnPContentType", - "Id": 1266, - "Rank": 1 + "Rank": 1, + "Id": 1266 }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "CommandName": "Set-PnPContentType", - "Id": 1267, - "Rank": 2 + "Rank": 2, + "Id": 1267 }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "CommandName": "Set-PnPContentType", - "Id": 1268, - "Rank": 3 + "Rank": 3, + "Id": 1268 }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "CommandName": "Set-PnPContentType", - "Id": 1269, - "Rank": 4 + "Rank": 4, + "Id": 1269 }, { "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "CommandName": "Set-PnPContentType", - "Id": 1270, - "Rank": 5 + "Rank": 5, + "Id": 1270 }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1271, - "Rank": 1 + "Rank": 1, + "Id": 1271 }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1272, - "Rank": 2 + "Rank": 2, + "Id": 1272 }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1273, - "Rank": 3 + "Rank": 3, + "Id": 1273 }, { "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1274, - "Rank": 4 + "Rank": 4, + "Id": 1274 }, { "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "CommandName": "Set-PnPDefaultContentTypeToList", - "Id": 1275, - "Rank": 1 + "Rank": 1, + "Id": 1275 }, { "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1276, - "Rank": 1 + "Rank": 1, + "Id": 1276 }, { "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1277, - "Rank": 2 + "Rank": 2, + "Id": 1277 }, { "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1278, - "Rank": 3 + "Rank": 3, + "Id": 1278 }, { "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1279, - "Rank": 1 + "Rank": 1, + "Id": 1279 }, { "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1280, - "Rank": 2 + "Rank": 2, + "Id": 1280 }, { "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1281, - "Rank": 3 + "Rank": 3, + "Id": 1281 }, { "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "CommandName": "Set-PnPDocumentSetField", - "Id": 1282, - "Rank": 1 + "Rank": 1, + "Id": 1282 }, { "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "CommandName": "Set-PnPDocumentSetField", - "Id": 1283, - "Rank": 2 + "Rank": 2, + "Id": 1283 }, { "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "CommandName": "Set-PnPField", - "Id": 1284, - "Rank": 1 + "Rank": 1, + "Id": 1284 }, { "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "CommandName": "Set-PnPField", - "Id": 1285, - "Rank": 2 + "Rank": 2, + "Id": 1285 }, { "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "CommandName": "Set-PnPField", - "Id": 1286, - "Rank": 3 + "Rank": 3, + "Id": 1286 }, { "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "CommandName": "Set-PnPFileCheckedIn", - "Id": 1287, - "Rank": 1 + "Rank": 1, + "Id": 1287 }, { "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "CommandName": "Set-PnPFileCheckedIn", - "Id": 1288, - "Rank": 2 + "Rank": 2, + "Id": 1288 }, { "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "CommandName": "Set-PnPFileCheckedOut", - "Id": 1289, - "Rank": 1 + "Rank": 1, + "Id": 1289 }, { "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPFolderPermission", - "Id": 1290, - "Rank": 1 + "Rank": 1, + "Id": 1290 }, { "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPFolderPermission", - "Id": 1291, - "Rank": 2 + "Rank": 2, + "Id": 1291 }, { "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "CommandName": "Set-PnPFolderPermission", - "Id": 1292, - "Rank": 3 + "Rank": 3, + "Id": 1292 }, { "Command": "Set-PnPFooter -Enabled:$true", "CommandName": "Set-PnPFooter", - "Id": 1293, - "Rank": 1 + "Rank": 1, + "Id": 1293 }, { "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "CommandName": "Set-PnPFooter", - "Id": 1294, - "Rank": 2 + "Rank": 2, + "Id": 1294 }, { "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "CommandName": "Set-PnPFooter", - "Id": 1295, - "Rank": 3 + "Rank": 3, + "Id": 1295 }, { "Command": "Set-PnPFooter -LogoUrl \"\"", "CommandName": "Set-PnPFooter", - "Id": 1296, - "Rank": 4 + "Rank": 4, + "Id": 1296 }, { "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "CommandName": "Set-PnPGraphSubscription", - "Id": 1297, - "Rank": 1 + "Rank": 1, + "Id": 1297 }, { "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "CommandName": "Set-PnPGroup", - "Id": 1298, - "Rank": 1 + "Rank": 1, + "Id": 1298 }, { "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "CommandName": "Set-PnPGroup", - "Id": 1299, - "Rank": 2 + "Rank": 2, + "Id": 1299 }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "CommandName": "Set-PnPGroupPermissions", - "Id": 1300, - "Rank": 1 + "Rank": 1, + "Id": 1300 }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "CommandName": "Set-PnPGroupPermissions", - "Id": 1301, - "Rank": 2 + "Rank": 2, + "Id": 1301 }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "CommandName": "Set-PnPGroupPermissions", - "Id": 1302, - "Rank": 3 + "Rank": 3, + "Id": 1302 }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "CommandName": "Set-PnPGroupPermissions", - "Id": 1303, - "Rank": 4 + "Rank": 4, + "Id": 1303 }, { "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "CommandName": "Set-PnPGroupPermissions", - "Id": 1304, - "Rank": 5 + "Rank": 5, + "Id": 1304 }, { "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1305, - "Rank": 1 + "Rank": 1, + "Id": 1305 }, { "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1306, - "Rank": 2 + "Rank": 2, + "Id": 1306 }, { "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "CommandName": "Set-PnPHomePage", - "Id": 1307, - "Rank": 1 + "Rank": 1, + "Id": 1307 }, { "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "CommandName": "Set-PnPHomePage", - "Id": 1308, - "Rank": 2 + "Rank": 2, + "Id": 1308 }, { "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "CommandName": "Set-PnPHomeSite", - "Id": 1309, - "Rank": 1 + "Rank": 1, + "Id": 1309 }, { "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "CommandName": "Set-PnPHomeSite", - "Id": 1310, - "Rank": 2 + "Rank": 2, + "Id": 1310 }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "CommandName": "Set-PnPHubSite", - "Id": 1311, - "Rank": 1 + "Rank": 1, + "Id": 1311 }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "CommandName": "Set-PnPHubSite", - "Id": 1312, - "Rank": 2 + "Rank": 2, + "Id": 1312 }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "CommandName": "Set-PnPHubSite", - "Id": 1313, - "Rank": 3 + "Rank": 3, + "Id": 1313 }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "CommandName": "Set-PnPHubSite", - "Id": 1314, - "Rank": 4 + "Rank": 4, + "Id": 1314 }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "CommandName": "Set-PnPHubSite", - "Id": 1315, - "Rank": 5 + "Rank": 5, + "Id": 1315 }, { "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "CommandName": "Set-PnPHubSite", - "Id": 1316, - "Rank": 6 + "Rank": 6, + "Id": 1316 }, { "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "CommandName": "Set-PnPImageListItemColumn", - "Id": 1317, - "Rank": 1 + "Rank": 1, + "Id": 1317 }, { "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "CommandName": "Set-PnPImageListItemColumn", - "Id": 1318, - "Rank": 2 + "Rank": 2, + "Id": 1318 }, { "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "CommandName": "Set-PnPIndexedProperties", - "Id": 1319, - "Rank": 1 + "Rank": 1, + "Id": 1319 }, { "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1320, - "Rank": 1 + "Rank": 1, + "Id": 1320 }, { "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1321, - "Rank": 2 + "Rank": 2, + "Id": 1321 }, { "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "CommandName": "Set-PnPKnowledgeHubSite", - "Id": 1322, - "Rank": 1 + "Rank": 1, + "Id": 1322 }, { "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "CommandName": "Set-PnPLabel", - "Id": 1323, - "Rank": 1 + "Rank": 1, + "Id": 1323 }, { "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "CommandName": "Set-PnPLabel", - "Id": 1324, - "Rank": 2 + "Rank": 2, + "Id": 1324 }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "CommandName": "Set-PnPList", - "Id": 1325, - "Rank": 1 + "Rank": 1, + "Id": 1325 }, { "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "CommandName": "Set-PnPList", - "Id": 1326, - "Rank": 2 + "Rank": 2, + "Id": 1326 }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "CommandName": "Set-PnPList", - "Id": 1327, - "Rank": 3 + "Rank": 3, + "Id": 1327 }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "CommandName": "Set-PnPList", - "Id": 1328, - "Rank": 4 + "Rank": 4, + "Id": 1328 }, { "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "CommandName": "Set-PnPList", - "Id": 1329, - "Rank": 5 + "Rank": 5, + "Id": 1329 }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "CommandName": "Set-PnPList", - "Id": 1330, - "Rank": 6 + "Rank": 6, + "Id": 1330 }, { "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "CommandName": "Set-PnPList", - "Id": 1331, - "Rank": 7 + "Rank": 7, + "Id": 1331 }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "CommandName": "Set-PnPList", - "Id": 1332, - "Rank": 8 + "Rank": 8, + "Id": 1332 }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "CommandName": "Set-PnPList", - "Id": 1333, - "Rank": 9 + "Rank": 9, + "Id": 1333 }, { "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "CommandName": "Set-PnPList", - "Id": 1334, - "Rank": 10 + "Rank": 10, + "Id": 1334 }, { "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "CommandName": "Set-PnPList", - "Id": 1335, - "Rank": 11 + "Rank": 11, + "Id": 1335 }, { "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1336, - "Rank": 1 + "Rank": 1, + "Id": 1336 }, { "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1337, - "Rank": 2 + "Rank": 2, + "Id": 1337 }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Id": 1338, - "Rank": 1 + "Rank": 1, + "Id": 1338 }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Id": 1339, - "Rank": 2 + "Rank": 2, + "Id": 1339 }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Id": 1340, - "Rank": 3 + "Rank": 3, + "Id": 1340 }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "CommandName": "Set-PnPListItem", - "Id": 1341, - "Rank": 4 + "Rank": 4, + "Id": 1341 }, { "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "CommandName": "Set-PnPListItem", - "Id": 1342, - "Rank": 5 + "Rank": 5, + "Id": 1342 }, { "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "CommandName": "Set-PnPListItemAsRecord", - "Id": 1343, - "Rank": 1 + "Rank": 1, + "Id": 1343 }, { "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "CommandName": "Set-PnPListItemAsRecord", - "Id": 1344, - "Rank": 2 + "Rank": 2, + "Id": 1344 }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPListItemPermission", - "Id": 1345, - "Rank": 1 + "Rank": 1, + "Id": 1345 }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPListItemPermission", - "Id": 1346, - "Rank": 2 + "Rank": 2, + "Id": 1346 }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "CommandName": "Set-PnPListItemPermission", - "Id": 1347, - "Rank": 3 + "Rank": 3, + "Id": 1347 }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "CommandName": "Set-PnPListItemPermission", - "Id": 1348, - "Rank": 4 + "Rank": 4, + "Id": 1348 }, { "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "CommandName": "Set-PnPListItemPermission", - "Id": 1349, - "Rank": 5 + "Rank": 5, + "Id": 1349 }, { "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPListPermission", - "Id": 1350, - "Rank": 1 + "Rank": 1, + "Id": 1350 }, { "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPListPermission", - "Id": 1351, - "Rank": 2 + "Rank": 2, + "Id": 1351 }, { "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1352, - "Rank": 1 + "Rank": 1, + "Id": 1352 }, { "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1353, - "Rank": 2 + "Rank": 2, + "Id": 1353 }, { "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1354, - "Rank": 1 + "Rank": 1, + "Id": 1354 }, { "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1355, - "Rank": 2 + "Rank": 2, + "Id": 1355 }, { "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1356, - "Rank": 3 + "Rank": 3, + "Id": 1356 }, { "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1357, - "Rank": 4 + "Rank": 4, + "Id": 1357 }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1358, - "Rank": 1 + "Rank": 1, + "Id": 1358 }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1359, - "Rank": 2 + "Rank": 2, + "Id": 1359 }, { "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1360, - "Rank": 3 + "Rank": 3, + "Id": 1360 }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1361, - "Rank": 1 + "Rank": 1, + "Id": 1361 }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1362, - "Rank": 2 + "Rank": 2, + "Id": 1362 }, { "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1363, - "Rank": 3 + "Rank": 3, + "Id": 1363 }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1364, - "Rank": 1 + "Rank": 1, + "Id": 1364 }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1365, - "Rank": 2 + "Rank": 2, + "Id": 1365 }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1366, - "Rank": 3 + "Rank": 3, + "Id": 1366 }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1367, - "Rank": 1 + "Rank": 1, + "Id": 1367 }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1368, - "Rank": 2 + "Rank": 2, + "Id": 1368 }, { "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1369, - "Rank": 3 + "Rank": 3, + "Id": 1369 }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1370, - "Rank": 1 + "Rank": 1, + "Id": 1370 }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1371, - "Rank": 2 + "Rank": 2, + "Id": 1371 }, { "Command": "Set-PnPMessageCenterAnnouncementAsRead", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1372, - "Rank": 3 + "Rank": 3, + "Id": 1372 }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1373, - "Rank": 1 + "Rank": 1, + "Id": 1373 }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1374, - "Rank": 2 + "Rank": 2, + "Id": 1374 }, { "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1375, - "Rank": 3 + "Rank": 3, + "Id": 1375 }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1376, - "Rank": 1 + "Rank": 1, + "Id": 1376 }, { "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1377, - "Rank": 2 + "Rank": 2, + "Id": 1377 }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1378, - "Rank": 3 + "Rank": 3, + "Id": 1378 }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1379, - "Rank": 4 + "Rank": 4, + "Id": 1379 }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1380, - "Rank": 5 + "Rank": 5, + "Id": 1380 }, { "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1381, - "Rank": 6 + "Rank": 6, + "Id": 1381 }, { "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1382, - "Rank": 1 + "Rank": 1, + "Id": 1382 }, { "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1383, - "Rank": 2 + "Rank": 2, + "Id": 1383 }, { "Command": "Set-PnPMinimalDownloadStrategy -Off", "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1384, - "Rank": 1 + "Rank": 1, + "Id": 1384 }, { "Command": "Set-PnPMinimalDownloadStrategy -On", "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1385, - "Rank": 2 + "Rank": 2, + "Id": 1385 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "CommandName": "Set-PnPPage", - "Id": 1386, - "Rank": 1 + "Rank": 1, + "Id": 1386 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "CommandName": "Set-PnPPage", - "Id": 1387, - "Rank": 2 + "Rank": 2, + "Id": 1387 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "CommandName": "Set-PnPPage", - "Id": 1388, - "Rank": 3 + "Rank": 3, + "Id": 1388 }, { "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "CommandName": "Set-PnPPage", - "Id": 1389, - "Rank": 4 + "Rank": 4, + "Id": 1389 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "CommandName": "Set-PnPPage", - "Id": 1390, - "Rank": 5 + "Rank": 5, + "Id": 1390 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "CommandName": "Set-PnPPage", - "Id": 1391, - "Rank": 6 + "Rank": 6, + "Id": 1391 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "CommandName": "Set-PnPPage", - "Id": 1392, - "Rank": 7 + "Rank": 7, + "Id": 1392 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "CommandName": "Set-PnPPage", - "Id": 1393, - "Rank": 8 + "Rank": 8, + "Id": 1393 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "CommandName": "Set-PnPPage", - "Id": 1394, - "Rank": 9 + "Rank": 9, + "Id": 1394 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "CommandName": "Set-PnPPage", - "Id": 1395, - "Rank": 10 + "Rank": 10, + "Id": 1395 }, { "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "CommandName": "Set-PnPPage", - "Id": 1396, - "Rank": 11 + "Rank": 11, + "Id": 1396 }, { "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "CommandName": "Set-PnPPageTextPart", - "Id": 1397, - "Rank": 1 + "Rank": 1, + "Id": 1397 }, { "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "CommandName": "Set-PnPPageWebPart", - "Id": 1398, - "Rank": 1 + "Rank": 1, + "Id": 1398 }, { "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "CommandName": "Set-PnPPageWebPart", - "Id": 1399, - "Rank": 2 + "Rank": 2, + "Id": 1399 }, { "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "CommandName": "Set-PnPPlannerBucket", - "Id": 1400, - "Rank": 1 + "Rank": 1, + "Id": 1400 }, { "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1401, - "Rank": 1 + "Rank": 1, + "Id": 1401 }, { "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1402, - "Rank": 2 + "Rank": 2, + "Id": 1402 }, { "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "CommandName": "Set-PnPPlannerPlan", - "Id": 1403, - "Rank": 1 + "Rank": 1, + "Id": 1403 }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "CommandName": "Set-PnPPlannerTask", - "Id": 1404, - "Rank": 1 + "Rank": 1, + "Id": 1404 }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "CommandName": "Set-PnPPlannerTask", - "Id": 1405, - "Rank": 2 + "Rank": 2, + "Id": 1405 }, { "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "CommandName": "Set-PnPPlannerTask", - "Id": 1406, - "Rank": 3 + "Rank": 3, + "Id": 1406 }, { "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPPlannerUserPolicy", - "Id": 1407, - "Rank": 1 + "Rank": 1, + "Id": 1407 }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "CommandName": "Set-PnPPropertyBagValue", - "Id": 1408, - "Rank": 1 + "Rank": 1, + "Id": 1408 }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "CommandName": "Set-PnPPropertyBagValue", - "Id": 1409, - "Rank": 2 + "Rank": 2, + "Id": 1409 }, { "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "CommandName": "Set-PnPPropertyBagValue", - "Id": 1410, - "Rank": 3 + "Rank": 3, + "Id": 1410 }, { "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1411, - "Rank": 1 + "Rank": 1, + "Id": 1411 }, { "Command": "Set-PnPRequestAccessEmails -Disabled", "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1412, - "Rank": 2 + "Rank": 2, + "Id": 1412 }, { "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1413, - "Rank": 3 + "Rank": 3, + "Id": 1413 }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "CommandName": "Set-PnPRoleDefinition", - "Id": 1414, - "Rank": 1 + "Rank": 1, + "Id": 1414 }, { "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "CommandName": "Set-PnPRoleDefinition", - "Id": 1415, - "Rank": 2 + "Rank": 2, + "Id": 1415 }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "CommandName": "Set-PnPRoleDefinition", - "Id": 1416, - "Rank": 3 + "Rank": 3, + "Id": 1416 }, { "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "CommandName": "Set-PnPRoleDefinition", - "Id": 1417, - "Rank": 4 + "Rank": 4, + "Id": 1417 }, { "Command": "Set-PnPSearchConfiguration -Configuration $config", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1418, - "Rank": 1 + "Rank": 1, + "Id": 1418 }, { "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1419, - "Rank": 2 + "Rank": 2, + "Id": 1419 }, { "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1420, - "Rank": 3 + "Rank": 3, + "Id": 1420 }, { "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1421, - "Rank": 4 + "Rank": 4, + "Id": 1421 }, { "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": 1422, - "Rank": 1 + "Rank": 1, + "Id": 1422 }, { "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": 1423, - "Rank": 2 + "Rank": 2, + "Id": 1423 }, { "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "CommandName": "Set-PnPSearchSettings", - "Id": 1424, - "Rank": 1 + "Rank": 1, + "Id": 1424 }, { "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "CommandName": "Set-PnPSearchSettings", - "Id": 1425, - "Rank": 2 + "Rank": 2, + "Id": 1425 }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "CommandName": "Set-PnPSearchSettings", - "Id": 1426, - "Rank": 3 + "Rank": 3, + "Id": 1426 }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "CommandName": "Set-PnPSearchSettings", - "Id": 1427, - "Rank": 4 + "Rank": 4, + "Id": 1427 }, { "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "CommandName": "Set-PnPSearchSettings", - "Id": 1428, - "Rank": 5 + "Rank": 5, + "Id": 1428 }, { "Command": "Set-PnPSearchSettings -SearchScope Tenant", "CommandName": "Set-PnPSearchSettings", - "Id": 1429, - "Rank": 6 + "Rank": 6, + "Id": 1429 }, { "Command": "Set-PnPSearchSettings -SearchScope Hub", "CommandName": "Set-PnPSearchSettings", - "Id": 1430, - "Rank": 7 + "Rank": 7, + "Id": 1430 }, { "Command": "Set-PnPSite -Classification \"HBI\"", "CommandName": "Set-PnPSite", - "Id": 1431, - "Rank": 1 + "Rank": 1, + "Id": 1431 }, { "Command": "Set-PnPSite -Classification $null", "CommandName": "Set-PnPSite", - "Id": 1432, - "Rank": 2 + "Rank": 2, + "Id": 1432 }, { "Command": "Set-PnPSite -DisableFlows", "CommandName": "Set-PnPSite", - "Id": 1433, - "Rank": 3 + "Rank": 3, + "Id": 1433 }, { "Command": "Set-PnPSite -DisableFlows:$false", "CommandName": "Set-PnPSite", - "Id": 1434, - "Rank": 4 + "Rank": 4, + "Id": 1434 }, { "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "CommandName": "Set-PnPSite", - "Id": 1435, - "Rank": 5 + "Rank": 5, + "Id": 1435 }, { "Command": "Set-PnPSite -NoScriptSite $false", "CommandName": "Set-PnPSite", - "Id": 1436, - "Rank": 6 + "Rank": 6, + "Id": 1436 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "CommandName": "Set-PnPSite", - "Id": 1437, - "Rank": 7 + "Rank": 7, + "Id": 1437 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "CommandName": "Set-PnPSite", - "Id": 1438, - "Rank": 8 + "Rank": 8, + "Id": 1438 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "CommandName": "Set-PnPSite", - "Id": 1439, - "Rank": 9 + "Rank": 9, + "Id": 1439 }, { "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "CommandName": "Set-PnPSite", - "Id": 1440, - "Rank": 10 + "Rank": 10, + "Id": 1440 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Id": 1441, - "Rank": 11 + "Rank": 11, + "Id": 1441 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Id": 1442, - "Rank": 12 + "Rank": 12, + "Id": 1442 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Id": 1443, - "Rank": 13 + "Rank": 13, + "Id": 1443 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1444, - "Rank": 14 + "Rank": 14, + "Id": 1444 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1445, - "Rank": 15 + "Rank": 15, + "Id": 1445 }, { "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1446, - "Rank": 16 + "Rank": 16, + "Id": 1446 }, { "Command": "Set-PnPSite -CancelVPForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1447, - "Rank": 17 + "Rank": 17, + "Id": 1447 }, { "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "CommandName": "Set-PnPSiteClassification", - "Id": 1448, - "Rank": 1 + "Rank": 1, + "Id": 1448 }, { "Command": "Set-PnPSiteClosure -State Open", "CommandName": "Set-PnPSiteClosure", - "Id": 1449, - "Rank": 1 + "Rank": 1, + "Id": 1449 }, { "Command": "Set-PnPSiteClosure -State Closed", "CommandName": "Set-PnPSiteClosure", - "Id": 1450, - "Rank": 2 + "Rank": 2, + "Id": 1450 }, { "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "CommandName": "Set-PnPSiteDesign", - "Id": 1451, - "Rank": 1 + "Rank": 1, + "Id": 1451 }, { "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": 1452, - "Rank": 2 + "Rank": 2, + "Id": 1452 }, { "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "CommandName": "Set-PnPSiteGroup", - "Id": 1453, - "Rank": 1 + "Rank": 1, + "Id": 1453 }, { "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "CommandName": "Set-PnPSiteGroup", - "Id": 1454, - "Rank": 2 + "Rank": 2, + "Id": 1454 }, { "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "CommandName": "Set-PnPSitePolicy", - "Id": 1455, - "Rank": 1 + "Rank": 1, + "Id": 1455 }, { "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "CommandName": "Set-PnPSiteScript", - "Id": 1456, - "Rank": 1 + "Rank": 1, + "Id": 1456 }, { "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "CommandName": "Set-PnPSiteScriptPackage", - "Id": 1457, - "Rank": 1 + "Rank": 1, + "Id": 1457 }, { "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1458, - "Rank": 1 + "Rank": 1, + "Id": 1458 }, { "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1459, - "Rank": 2 + "Rank": 2, + "Id": 1459 }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1460, - "Rank": 1 + "Rank": 1, + "Id": 1460 }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1461, - "Rank": 2 + "Rank": 2, + "Id": 1461 }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1462, - "Rank": 3 + "Rank": 3, + "Id": 1462 }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1463, - "Rank": 4 + "Rank": 4, + "Id": 1463 }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1464, - "Rank": 5 + "Rank": 5, + "Id": 1464 }, { "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1465, - "Rank": 6 + "Rank": 6, + "Id": 1465 }, { "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "CommandName": "Set-PnPStorageEntity", - "Id": 1466, - "Rank": 1 + "Rank": 1, + "Id": 1466 }, { "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "CommandName": "Set-PnPStorageEntity", - "Id": 1467, - "Rank": 2 + "Rank": 2, + "Id": 1467 }, { "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1468, - "Rank": 1 + "Rank": 1, + "Id": 1468 }, { "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1469, - "Rank": 2 + "Rank": 2, + "Id": 1469 }, { "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1470, - "Rank": 1 + "Rank": 1, + "Id": 1470 }, { "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1471, - "Rank": 2 + "Rank": 2, + "Id": 1471 }, { "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1472, - "Rank": 1 + "Rank": 1, + "Id": 1472 }, { "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1473, - "Rank": 2 + "Rank": 2, + "Id": 1473 }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1474, - "Rank": 1 + "Rank": 1, + "Id": 1474 }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1475, - "Rank": 2 + "Rank": 2, + "Id": 1475 }, { "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1476, - "Rank": 3 + "Rank": 3, + "Id": 1476 }, { "Command": "Set-PnPTeamifyPromptHidden", "CommandName": "Set-PnPTeamifyPromptHidden", - "Id": 1477, - "Rank": 1 + "Rank": 1, + "Id": 1477 }, { "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "CommandName": "Set-PnPTeamsChannel", - "Id": 1478, - "Rank": 1 + "Rank": 1, + "Id": 1478 }, { "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "CommandName": "Set-PnPTeamsChannel", - "Id": 1479, - "Rank": 2 + "Rank": 2, + "Id": 1479 }, { "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1480, - "Rank": 1 + "Rank": 1, + "Id": 1480 }, { "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1481, - "Rank": 2 + "Rank": 2, + "Id": 1481 }, { "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "CommandName": "Set-PnPTeamsTab", - "Id": 1482, - "Rank": 1 + "Rank": 1, + "Id": 1482 }, { "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "CommandName": "Set-PnPTeamsTag", - "Id": 1483, - "Rank": 1 + "Rank": 1, + "Id": 1483 }, { "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "CommandName": "Set-PnPTeamsTeam", - "Id": 1484, - "Rank": 1 + "Rank": 1, + "Id": 1484 }, { "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "CommandName": "Set-PnPTeamsTeam", - "Id": 1485, - "Rank": 2 + "Rank": 2, + "Id": 1485 }, { "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "CommandName": "Set-PnPTeamsTeam", - "Id": 1486, - "Rank": 3 + "Rank": 3, + "Id": 1486 }, { "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "CommandName": "Set-PnPTeamsTeam", - "Id": 1487, - "Rank": 4 + "Rank": 4, + "Id": 1487 }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1488, - "Rank": 1 + "Rank": 1, + "Id": 1488 }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1489, - "Rank": 2 + "Rank": 2, + "Id": 1489 }, { "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1490, - "Rank": 3 + "Rank": 3, + "Id": 1490 }, { "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "CommandName": "Set-PnPTeamsTeamPicture", - "Id": 1491, - "Rank": 1 + "Rank": 1, + "Id": 1491 }, { "Command": "Set-PnPTemporarilyDisableAppBar $true", "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1492, - "Rank": 1 + "Rank": 1, + "Id": 1492 }, { "Command": "Set-PnPTemporarilyDisableAppBar $false", "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1493, - "Rank": 2 + "Rank": 2, + "Id": 1493 }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", "CommandName": "Set-PnPTenant", - "Id": 1494, - "Rank": 1 + "Rank": 1, + "Id": 1494 }, { "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "CommandName": "Set-PnPTenant", - "Id": 1495, - "Rank": 2 + "Rank": 2, + "Id": 1495 }, { "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "CommandName": "Set-PnPTenant", - "Id": 1496, - "Rank": 3 + "Rank": 3, + "Id": 1496 }, { "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "CommandName": "Set-PnPTenant", - "Id": 1497, - "Rank": 4 + "Rank": 4, + "Id": 1497 }, { "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "CommandName": "Set-PnPTenantAppCatalogUrl", - "Id": 1498, - "Rank": 1 + "Rank": 1, + "Id": 1498 }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1499, - "Rank": 1 + "Rank": 1, + "Id": 1499 }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1500, - "Rank": 2 + "Rank": 2, + "Id": 1500 }, { "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1501, - "Rank": 3 + "Rank": 3, + "Id": 1501 }, { "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1502, - "Rank": 1 + "Rank": 1, + "Id": 1502 }, { "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1503, - "Rank": 2 + "Rank": 2, + "Id": 1503 }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "CommandName": "Set-PnPTenantSite", - "Id": 1504, - "Rank": 1 + "Rank": 1, + "Id": 1504 }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "CommandName": "Set-PnPTenantSite", - "Id": 1505, - "Rank": 2 + "Rank": 2, + "Id": 1505 }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPTenantSite", - "Id": 1506, - "Rank": 3 + "Rank": 3, + "Id": 1506 }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Set-PnPTenantSite", - "Id": 1507, - "Rank": 4 + "Rank": 4, + "Id": 1507 }, { "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "CommandName": "Set-PnPTenantSite", - "Id": 1508, - "Rank": 5 + "Rank": 5, + "Id": 1508 }, { "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1509, - "Rank": 1 + "Rank": 1, + "Id": 1509 }, { "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1510, - "Rank": 2 + "Rank": 2, + "Id": 1510 }, { "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "CommandName": "Set-PnPTerm", - "Id": 1511, - "Rank": 1 + "Rank": 1, + "Id": 1511 }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "Set-PnPTerm", - "Id": 1512, - "Rank": 2 + "Rank": 2, + "Id": 1512 }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "Set-PnPTerm", - "Id": 1513, - "Rank": 3 + "Rank": 3, + "Id": 1513 }, { "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "CommandName": "Set-PnPTerm", - "Id": 1514, - "Rank": 4 + "Rank": 4, + "Id": 1514 }, { "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "CommandName": "Set-PnPTermGroup", - "Id": 1515, - "Rank": 1 + "Rank": 1, + "Id": 1515 }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "CommandName": "Set-PnPTermSet", - "Id": 1516, - "Rank": 1 + "Rank": 1, + "Id": 1516 }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "CommandName": "Set-PnPTermSet", - "Id": 1517, - "Rank": 2 + "Rank": 2, + "Id": 1517 }, { "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "CommandName": "Set-PnPTermSet", - "Id": 1518, - "Rank": 3 + "Rank": 3, + "Id": 1518 }, { "Command": "Set-PnPTheme", "CommandName": "Set-PnPTheme", - "Id": 1519, - "Rank": 1 + "Rank": 1, + "Id": 1519 }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "CommandName": "Set-PnPTheme", - "Id": 1520, - "Rank": 2 + "Rank": 2, + "Id": 1520 }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "CommandName": "Set-PnPTheme", - "Id": 1521, - "Rank": 3 + "Rank": 3, + "Id": 1521 }, { "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "CommandName": "Set-PnPTheme", - "Id": 1522, - "Rank": 4 + "Rank": 4, + "Id": 1522 }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "CommandName": "Set-PnPTraceLog", - "Id": 1523, - "Rank": 1 + "Rank": 1, + "Id": 1523 }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "CommandName": "Set-PnPTraceLog", - "Id": 1524, - "Rank": 2 + "Rank": 2, + "Id": 1524 }, { "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "CommandName": "Set-PnPTraceLog", - "Id": 1525, - "Rank": 3 + "Rank": 3, + "Id": 1525 }, { "Command": "Set-PnPTraceLog -Off", "CommandName": "Set-PnPTraceLog", - "Id": 1526, - "Rank": 4 + "Rank": 4, + "Id": 1526 }, { "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "CommandName": "Set-PnPUserOneDriveQuota", - "Id": 1527, - "Rank": 1 + "Rank": 1, + "Id": 1527 }, { "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "CommandName": "Set-PnPUserProfileProperty", - "Id": 1528, - "Rank": 1 + "Rank": 1, + "Id": 1528 }, { "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "CommandName": "Set-PnPUserProfileProperty", - "Id": 1529, - "Rank": 2 + "Rank": 2, + "Id": 1529 }, { "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "CommandName": "Set-PnPView", - "Id": 1530, - "Rank": 1 + "Rank": 1, + "Id": 1530 }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "CommandName": "Set-PnPView", - "Id": 1531, - "Rank": 2 + "Rank": 2, + "Id": 1531 }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "CommandName": "Set-PnPView", - "Id": 1532, - "Rank": 3 + "Rank": 3, + "Id": 1532 }, { "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "CommandName": "Set-PnPView", - "Id": 1533, - "Rank": 4 + "Rank": 4, + "Id": 1533 }, { "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": 1534, - "Rank": 1 + "Rank": 1, + "Id": 1534 }, { "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1535, - "Rank": 2 + "Rank": 2, + "Id": 1535 }, { "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": 1536, - "Rank": 3 + "Rank": 3, + "Id": 1536 }, { "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1537, - "Rank": 4 + "Rank": 4, + "Id": 1537 }, { "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "CommandName": "Set-PnPWeb", - "Id": 1538, - "Rank": 1 + "Rank": 1, + "Id": 1538 }, { "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "CommandName": "Set-PnPWeb", - "Id": 1539, - "Rank": 2 + "Rank": 2, + "Id": 1539 }, { "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "CommandName": "Set-PnPWeb", - "Id": 1540, - "Rank": 3 + "Rank": 3, + "Id": 1540 }, { "Command": "Set-PnPWeb -NoCrawl:$true", "CommandName": "Set-PnPWeb", - "Id": 1541, - "Rank": 4 + "Rank": 4, + "Id": 1541 }, { "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "CommandName": "Set-PnPWebHeader", - "Id": 1542, - "Rank": 1 + "Rank": 1, + "Id": 1542 }, { "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "CommandName": "Set-PnPWebHeader", - "Id": 1543, - "Rank": 2 + "Rank": 2, + "Id": 1543 }, { "Command": "Set-PnPWebHeader -LogoAlignment Middle", "CommandName": "Set-PnPWebHeader", - "Id": 1544, - "Rank": 3 + "Rank": 3, + "Id": 1544 }, { "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "CommandName": "Set-PnPWebhookSubscription", - "Id": 1545, - "Rank": 1 + "Rank": 1, + "Id": 1545 }, { "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": 1546, - "Rank": 2 + "Rank": 2, + "Id": 1546 }, { "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", "CommandName": "Set-PnPWebPartProperty", - "Id": 1547, - "Rank": 1 + "Rank": 1, + "Id": 1547 }, { "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Id": 1548, - "Rank": 1 + "Rank": 1, + "Id": 1548 }, { "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Id": 1549, - "Rank": 2 + "Rank": 2, + "Id": 1549 }, { "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Id": 1550, - "Rank": 3 + "Rank": 3, + "Id": 1550 }, { "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "CommandName": "Set-PnPWebPermission", - "Id": 1551, - "Rank": 4 + "Rank": 4, + "Id": 1551 }, { "Command": "Set-PnPWebTheme -Theme MyTheme", "CommandName": "Set-PnPWebTheme", - "Id": 1552, - "Rank": 1 + "Rank": 1, + "Id": 1552 }, { "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "CommandName": "Set-PnPWebTheme", - "Id": 1553, - "Rank": 2 + "Rank": 2, + "Id": 1553 }, { "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "CommandName": "Set-PnPWikiPageContent", - "Id": 1554, - "Rank": 1 + "Rank": 1, + "Id": 1554 }, { "Command": "Submit-PnPSearchQuery -Query \"finance\"", "CommandName": "Submit-PnPSearchQuery", - "Id": 1555, - "Rank": 1 + "Rank": 1, + "Id": 1555 }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "CommandName": "Submit-PnPSearchQuery", - "Id": 1556, - "Rank": 2 + "Rank": 2, + "Id": 1556 }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "CommandName": "Submit-PnPSearchQuery", - "Id": 1557, - "Rank": 3 + "Rank": 3, + "Id": 1557 }, { "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "CommandName": "Submit-PnPSearchQuery", - "Id": 1558, - "Rank": 4 + "Rank": 4, + "Id": 1558 }, { "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "CommandName": "Submit-PnPSearchQuery", - "Id": 1559, - "Rank": 5 + "Rank": 5, + "Id": 1559 }, { "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", "CommandName": "Submit-PnPSearchQuery", - "Id": 1560, - "Rank": 6 + "Rank": 6, + "Id": 1560 }, { "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1561, - "Rank": 1 + "Rank": 1, + "Id": 1561 }, { "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1562, - "Rank": 2 + "Rank": 2, + "Id": 1562 }, { "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Sync-PnPAppToTeams", - "Id": 1563, - "Rank": 1 + "Rank": 1, + "Id": 1563 }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1564, - "Rank": 1 + "Rank": 1, + "Id": 1564 }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1565, - "Rank": 2 + "Rank": 2, + "Id": 1565 }, { "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1566, - "Rank": 3 + "Rank": 3, + "Id": 1566 }, { "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "CommandName": "Test-PnPListItemIsRecord", - "Id": 1567, - "Rank": 1 + "Rank": 1, + "Id": 1567 }, { "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Id": 1568, - "Rank": 1 + "Rank": 1, + "Id": 1568 }, { "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Test-PnPSite", - "Id": 1569, - "Rank": 1 + "Rank": 1, + "Id": 1569 }, { "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "CommandName": "Test-PnPSite", - "Id": 1570, - "Rank": 2 + "Rank": 2, + "Id": 1570 }, { "Command": "Test-PnPTenantTemplate -Template $myTemplate", "CommandName": "Test-PnPTenantTemplate", - "Id": 1571, - "Rank": 1 + "Rank": 1, + "Id": 1571 }, { "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "CommandName": "Undo-PnPFileCheckedOut", - "Id": 1572, - "Rank": 1 + "Rank": 1, + "Id": 1572 }, { "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Uninstall-PnPApp", - "Id": 1573, - "Rank": 1 + "Rank": 1, + "Id": 1573 }, { "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Uninstall-PnPApp", - "Id": 1574, - "Rank": 2 + "Rank": 2, + "Id": 1574 }, { "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Unpublish-PnPApp", - "Id": 1575, - "Rank": 1 + "Rank": 1, + "Id": 1575 }, { "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Unpublish-PnPApp", - "Id": 1576, - "Rank": 2 + "Rank": 2, + "Id": 1576 }, { "Command": "Unpublish-PnPContentType -ContentType 0x0101", "CommandName": "Unpublish-PnPContentType", - "Id": 1577, - "Rank": 1 + "Rank": 1, + "Id": 1577 }, { "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1578, - "Rank": 1 + "Rank": 1, + "Id": 1578 }, { "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": 1579, - "Rank": 2 + "Rank": 2, + "Id": 1579 }, { "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "CommandName": "Unregister-PnPHubSite", - "Id": 1580, - "Rank": 1 + "Rank": 1, + "Id": 1580 }, { "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Update-PnPApp", - "Id": 1581, - "Rank": 1 + "Rank": 1, + "Id": 1581 }, { "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Update-PnPApp", - "Id": 1582, - "Rank": 2 + "Rank": 2, + "Id": 1582 }, { "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1583, - "Rank": 1 + "Rank": 1, + "Id": 1583 }, { "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1584, - "Rank": 2 + "Rank": 2, + "Id": 1584 }, { "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1585, - "Rank": 3 + "Rank": 3, + "Id": 1585 }, { "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1586, - "Rank": 1 + "Rank": 1, + "Id": 1586 }, { "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1587, - "Rank": 2 + "Rank": 2, + "Id": 1587 }, { "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1588, - "Rank": 3 + "Rank": 3, + "Id": 1588 }, { "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "CommandName": "Update-PnPTeamsApp", - "Id": 1589, - "Rank": 1 + "Rank": 1, + "Id": 1589 }, { "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Update-PnPTeamsUser", - "Id": 1590, - "Rank": 1 + "Rank": 1, + "Id": 1590 }, { "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "CommandName": "Update-PnPTeamsUser", - "Id": 1591, - "Rank": 2 + "Rank": 2, + "Id": 1591 }, { "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "CommandName": "Update-PnPTeamsUser", - "Id": 1592, - "Rank": 3 + "Rank": 3, + "Id": 1592 }, { "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "CommandName": "Update-PnPUserType", - "Id": 1593, - "Rank": 1 + "Rank": 1, + "Id": 1593 } ] diff --git a/version.txt b/version.txt index b22d2ce96..19f639650 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.115 \ No newline at end of file +2.2.116 \ No newline at end of file From 595bfbc51d8e6db29777026c233664e726635605 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Thu, 2 Nov 2023 02:37:42 +0000 Subject: [PATCH 126/146] Nightly publish to PowerShell Gallery --- pnpcoresdk_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6372 ++++++++--------- version.txt | 2 +- 3 files changed, 3188 insertions(+), 3188 deletions(-) diff --git a/pnpcoresdk_hash.txt b/pnpcoresdk_hash.txt index 5924874e9..d86c8a884 100644 --- a/pnpcoresdk_hash.txt +++ b/pnpcoresdk_hash.txt @@ -1 +1 @@ -e43f388b8cf0e9b1babee9254c475d8c7bb24146 \ No newline at end of file +c3a4336b6a2b983a273514b87248a868a78a855b \ 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 a142b16e5..4f66282ca 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9560 +1,9560 @@ [ { - "Command": "Add-PnPAlert -List \"Demo List\"", - "CommandName": "Add-PnPAlert", "Rank": 1, + "CommandName": "Add-PnPAlert", + "Command": "Add-PnPAlert -List \"Demo List\"", "Id": 1 }, { - "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": 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)", "Id": 2 }, { - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "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\"", "Id": 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))", - "CommandName": "Add-PnPAlert", "Rank": 4, + "CommandName": "Add-PnPAlert", + "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\" -Frequency Daily -Time ((Get-Date).AddDays(1))", "Id": 4 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg", - "CommandName": "Add-PnPApp", "Rank": 1, + "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg", "Id": 5 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "CommandName": "Add-PnPApp", "Rank": 2, + "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Id": 6 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "CommandName": "Add-PnPApp", "Rank": 3, + "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Id": 7 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "CommandName": "Add-PnPApp", "Rank": 4, + "CommandName": "Add-PnPApp", + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Id": 8 }, { - "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", - "CommandName": "Add-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Add-PnPApplicationCustomizer", + "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", "Id": 9 }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Add-PnPAvailableSiteClassification", + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Id": 10 }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Add-PnPAvailableSiteClassification", + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Id": 11 }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Add-PnPAzureADGroupMember", + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 12 }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 2, + "CommandName": "Add-PnPAzureADGroupMember", + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 13 }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 3, + "CommandName": "Add-PnPAzureADGroupMember", + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Id": 14 }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Add-PnPAzureADGroupOwner", + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 15 }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 2, + "CommandName": "Add-PnPAzureADGroupOwner", + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 16 }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 3, + "CommandName": "Add-PnPAzureADGroupOwner", + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Id": 17 }, { - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 1, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "Id": 18 }, { - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 2, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "Id": 19 }, { - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "CommandName": "Add-PnPContentType", "Rank": 1, + "CommandName": "Add-PnPContentType", + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "Id": 20 }, { - "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": 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\"", "Id": 21 }, { - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "CommandName": "Add-PnPContentType", "Rank": 3, + "CommandName": "Add-PnPContentType", + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "Id": 22 }, { - "Command": "Add-PnPContentType -Name \"Project Item\"", - "CommandName": "Add-PnPContentType", "Rank": 4, + "CommandName": "Add-PnPContentType", + "Command": "Add-PnPContentType -Name \"Project Item\"", "Id": 23 }, { - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "CommandName": "Add-PnPContentType", "Rank": 5, + "CommandName": "Add-PnPContentType", + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "Id": 24 }, { - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 1, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Id": 25 }, { - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 2, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Id": 26 }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 1, + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Id": 27 }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 2, + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Id": 28 }, { - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "CommandName": "Add-PnPContentTypeToList", "Rank": 1, + "CommandName": "Add-PnPContentTypeToList", + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Id": 29 }, { - "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", "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 }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "Id": 31 }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 2, + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "Id": 32 }, { - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "CommandName": "Add-PnPDocumentSet", "Rank": 1, + "CommandName": "Add-PnPDocumentSet", + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Id": 33 }, { - "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", - "CommandName": "Add-PnPEventReceiver", "Rank": 1, + "CommandName": "Add-PnPEventReceiver", + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "Id": 34 }, { - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "CommandName": "Add-PnPEventReceiver", "Rank": 2, + "CommandName": "Add-PnPEventReceiver", + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "Id": 35 }, { - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", - "CommandName": "Add-PnPEventReceiver", "Rank": 3, + "CommandName": "Add-PnPEventReceiver", + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", "Id": 36 }, { - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", - "CommandName": "Add-PnPEventReceiver", "Rank": 4, + "CommandName": "Add-PnPEventReceiver", + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "Id": 37 }, { - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "CommandName": "Add-PnPField", "Rank": 1, + "CommandName": "Add-PnPField", + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Id": 38 }, { - "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", - "CommandName": "Add-PnPField", "Rank": 2, + "CommandName": "Add-PnPField", + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", "Id": 39 }, { - "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": 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\"", "Id": 40 }, { - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "CommandName": "Add-PnPField", "Rank": 4, + "CommandName": "Add-PnPField", + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "Id": 41 }, { - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "CommandName": "Add-PnPField", "Rank": 5, + "CommandName": "Add-PnPField", + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "Id": 42 }, { - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "CommandName": "Add-PnPField", "Rank": 6, + "CommandName": "Add-PnPField", + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Id": 43 }, { - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Add-PnPFieldToContentType", "Rank": 1, + "CommandName": "Add-PnPFieldToContentType", + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Id": 44 }, { - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "CommandName": "Add-PnPFile", "Rank": 1, + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Id": 45 }, { - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "CommandName": "Add-PnPFile", "Rank": 2, + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Id": 46 }, { - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", "Rank": 3, + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "Id": 47 }, { - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", "Rank": 4, + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "Id": 48 }, { - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", "Rank": 5, + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "Id": 49 }, { - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "CommandName": "Add-PnPFile", "Rank": 6, + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "Id": 50 }, { - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "CommandName": "Add-PnPFile", "Rank": 7, + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Id": 51 }, { - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "CommandName": "Add-PnPFile", "Rank": 8, + "CommandName": "Add-PnPFile", + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Id": 52 }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 1, + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 53 }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 2, + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "Id": 54 }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 3, + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "Id": 55 }, { - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 1, + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 56 }, { - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 2, + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "Id": 57 }, { - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "CommandName": "Add-PnPFileSharingInvite", "Rank": 1, + "CommandName": "Add-PnPFileSharingInvite", + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Id": 58 }, { - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "CommandName": "Add-PnPFileSharingInvite", "Rank": 2, + "CommandName": "Add-PnPFileSharingInvite", + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Id": 59 }, { - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFileSharingInvite", "Rank": 3, + "CommandName": "Add-PnPFileSharingInvite", + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "Id": 60 }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPFileToSiteTemplate", + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Id": 61 }, { - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 2, + "CommandName": "Add-PnPFileToSiteTemplate", + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "Id": 62 }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 3, + "CommandName": "Add-PnPFileToSiteTemplate", + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "Id": 63 }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 4, + "CommandName": "Add-PnPFileToSiteTemplate", + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "Id": 64 }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 5, + "CommandName": "Add-PnPFileToSiteTemplate", + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Id": 65 }, { - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFileUserSharingLink", "Rank": 1, + "CommandName": "Add-PnPFileUserSharingLink", + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 66 }, { - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFileUserSharingLink", "Rank": 2, + "CommandName": "Add-PnPFileUserSharingLink", + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 67 }, { - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit", - "CommandName": "Add-PnPFlowOwner", "Rank": 1, + "CommandName": "Add-PnPFlowOwner", + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit", "Id": 68 }, { - "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": 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", "Id": 69 }, { - "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": 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", "Id": 70 }, { - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", - "CommandName": "Add-PnPFlowOwner", "Rank": 4, + "CommandName": "Add-PnPFlowOwner", + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", "Id": 71 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Add-PnPFolder", "Rank": 1, + "CommandName": "Add-PnPFolder", + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Id": 72 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFolder", "Rank": 2, + "CommandName": "Add-PnPFolder", + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Id": 73 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "CommandName": "Add-PnPFolder", "Rank": 3, + "CommandName": "Add-PnPFolder", + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Id": 74 }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 1, + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 75 }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 2, + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "Id": 76 }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 3, + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "Id": 77 }, { - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 1, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 78 }, { - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 2, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Id": 79 }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "CommandName": "Add-PnPFolderSharingInvite", "Rank": 1, + "CommandName": "Add-PnPFolderSharingInvite", + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Id": 80 }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "CommandName": "Add-PnPFolderSharingInvite", "Rank": 2, + "CommandName": "Add-PnPFolderSharingInvite", + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Id": 81 }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFolderSharingInvite", "Rank": 3, + "CommandName": "Add-PnPFolderSharingInvite", + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "Id": 82 }, { - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 1, + "CommandName": "Add-PnPFolderUserSharingLink", + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 83 }, { - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 2, + "CommandName": "Add-PnPFolderUserSharingLink", + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 84 }, { - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Add-PnPGroupMember", "Rank": 1, + "CommandName": "Add-PnPGroupMember", + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Id": 85 }, { - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "CommandName": "Add-PnPGroupMember", "Rank": 2, + "CommandName": "Add-PnPGroupMember", + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Id": 86 }, { - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "CommandName": "Add-PnPHtmlPublishingPageLayout", "Rank": 1, + "CommandName": "Add-PnPHtmlPublishingPageLayout", + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Id": 87 }, { - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "CommandName": "Add-PnPHubSiteAssociation", "Rank": 1, + "CommandName": "Add-PnPHubSiteAssociation", + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Id": 88 }, { - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 1, + "CommandName": "Add-PnPHubToHubAssociation", + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "Id": 89 }, { - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 2, + "CommandName": "Add-PnPHubToHubAssociation", + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "Id": 90 }, { - "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", "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\"", "Id": 91 }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 1, + "CommandName": "Add-PnPJavaScriptBlock", + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "Id": 92 }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 2, + "CommandName": "Add-PnPJavaScriptBlock", + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "Id": 93 }, { - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Add-PnPJavaScriptLink", + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "Id": 94 }, { - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "CommandName": "Add-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Add-PnPJavaScriptLink", + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Id": 95 }, { - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "CommandName": "Add-PnPListDesign", "Rank": 1, + "CommandName": "Add-PnPListDesign", + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "Id": 96 }, { - "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", "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\"", "Id": 97 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Id": 98 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 2, + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "Id": 99 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 3, + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Id": 100 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Add-PnPListItem", "Rank": 1, + "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 101 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Add-PnPListItem", "Rank": 2, + "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 102 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "CommandName": "Add-PnPListItem", "Rank": 3, + "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "Id": 103 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "CommandName": "Add-PnPListItem", "Rank": 4, + "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "Id": 104 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "CommandName": "Add-PnPListItem", "Rank": 5, + "CommandName": "Add-PnPListItem", + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Id": 105 }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "CommandName": "Add-PnPListItemAttachment", "Rank": 1, + "CommandName": "Add-PnPListItemAttachment", + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "Id": 106 }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "CommandName": "Add-PnPListItemAttachment", "Rank": 2, + "CommandName": "Add-PnPListItemAttachment", + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "Id": 107 }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "CommandName": "Add-PnPListItemAttachment", "Rank": 3, + "CommandName": "Add-PnPListItemAttachment", + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Id": 108 }, { - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "CommandName": "Add-PnPListItemComment", "Rank": 1, + "CommandName": "Add-PnPListItemComment", + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Id": 109 }, { - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "CommandName": "Add-PnPMasterPage", "Rank": 1, + "CommandName": "Add-PnPMasterPage", + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Id": 110 }, { - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 111 }, { - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 112 }, { - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 113 }, { - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 114 }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "Id": 115 }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Id": 116 }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 3, + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Id": 117 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "CommandName": "Add-PnPNavigationNode", "Rank": 1, + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "Id": 118 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", - "CommandName": "Add-PnPNavigationNode", "Rank": 2, + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "Id": 119 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "CommandName": "Add-PnPNavigationNode", "Rank": 3, + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "Id": 120 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "CommandName": "Add-PnPNavigationNode", "Rank": 4, + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "Id": 121 }, { - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "CommandName": "Add-PnPNavigationNode", "Rank": 5, + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Id": 122 }, { - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "CommandName": "Add-PnPNavigationNode", "Rank": 6, + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Id": 123 }, { - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "CommandName": "Add-PnPNavigationNode", "Rank": 7, + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Id": 124 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "CommandName": "Add-PnPNavigationNode", "Rank": 8, + "CommandName": "Add-PnPNavigationNode", + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Id": 125 }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Add-PnPOrgAssetsLibrary", + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "Id": 126 }, { - "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": 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\"", "Id": 127 }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 3, + "CommandName": "Add-PnPOrgAssetsLibrary", + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Id": 128 }, { - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "CommandName": "Add-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Add-PnPOrgNewsSite", + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Id": 129 }, { - "Command": "Add-PnPPage -Name \"NewPage\"", - "CommandName": "Add-PnPPage", "Rank": 1, + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\"", "Id": 130 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "CommandName": "Add-PnPPage", "Rank": 2, + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Id": 131 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "CommandName": "Add-PnPPage", "Rank": 3, + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Id": 132 }, { - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "CommandName": "Add-PnPPage", "Rank": 4, + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Id": 133 }, { - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "CommandName": "Add-PnPPage", "Rank": 5, + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Id": 134 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "CommandName": "Add-PnPPage", "Rank": 6, + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Id": 135 }, { - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Add-PnPPage", "Rank": 7, + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Id": 136 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "CommandName": "Add-PnPPage", "Rank": 8, + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Id": 137 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Add-PnPPage", "Rank": 9, + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Id": 138 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Add-PnPPage", "Rank": 10, + "CommandName": "Add-PnPPage", + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Id": 139 }, { - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "CommandName": "Add-PnPPageImageWebPart", "Rank": 1, + "CommandName": "Add-PnPPageImageWebPart", + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "Id": 140 }, { - "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", "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\"", "Id": 141 }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "CommandName": "Add-PnPPageSection", "Rank": 1, + "CommandName": "Add-PnPPageSection", + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Id": 142 }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "CommandName": "Add-PnPPageSection", "Rank": 2, + "CommandName": "Add-PnPPageSection", + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Id": 143 }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "CommandName": "Add-PnPPageTextPart", "Rank": 1, + "CommandName": "Add-PnPPageTextPart", + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Id": 144 }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "CommandName": "Add-PnPPageTextPart", "Rank": 2, + "CommandName": "Add-PnPPageTextPart", + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "Id": 145 }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", - "CommandName": "Add-PnPPageTextPart", "Rank": 3, + "CommandName": "Add-PnPPageTextPart", + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", "Id": 146 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "CommandName": "Add-PnPPageWebPart", "Rank": 1, + "CommandName": "Add-PnPPageWebPart", + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Id": 147 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "CommandName": "Add-PnPPageWebPart", "Rank": 2, + "CommandName": "Add-PnPPageWebPart", + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Id": 148 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "CommandName": "Add-PnPPageWebPart", "Rank": 3, + "CommandName": "Add-PnPPageWebPart", + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Id": 149 }, { - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "CommandName": "Add-PnPPlannerBucket", "Rank": 1, + "CommandName": "Add-PnPPlannerBucket", + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Id": 150 }, { - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "CommandName": "Add-PnPPlannerBucket", "Rank": 2, + "CommandName": "Add-PnPPlannerBucket", + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Id": 151 }, { - "Command": "Add-PnPPlannerRoster", - "CommandName": "Add-PnPPlannerRoster", "Rank": 1, + "CommandName": "Add-PnPPlannerRoster", + "Command": "Add-PnPPlannerRoster", "Id": 152 }, { - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Add-PnPPlannerRosterMember", + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 153 }, { - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "CommandName": "Add-PnPPlannerTask", "Rank": 1, + "CommandName": "Add-PnPPlannerTask", + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Id": 154 }, { - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "CommandName": "Add-PnPPlannerTask", "Rank": 2, + "CommandName": "Add-PnPPlannerTask", + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Id": 155 }, { - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "CommandName": "Add-PnPPlannerTask", "Rank": 3, + "CommandName": "Add-PnPPlannerTask", + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Id": 156 }, { - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Add-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Add-PnPPublishingImageRendition", + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Id": 157 }, { - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "CommandName": "Add-PnPPublishingPage", "Rank": 1, + "CommandName": "Add-PnPPublishingPage", + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "Id": 158 }, { - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "CommandName": "Add-PnPPublishingPage", "Rank": 2, + "CommandName": "Add-PnPPublishingPage", + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Id": 159 }, { - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "CommandName": "Add-PnPPublishingPageLayout", "Rank": 1, + "CommandName": "Add-PnPPublishingPageLayout", + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Id": 160 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "CommandName": "Add-PnPRoleDefinition", "Rank": 1, + "CommandName": "Add-PnPRoleDefinition", + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Id": 161 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "CommandName": "Add-PnPRoleDefinition", "Rank": 2, + "CommandName": "Add-PnPRoleDefinition", + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Id": 162 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "CommandName": "Add-PnPRoleDefinition", "Rank": 3, + "CommandName": "Add-PnPRoleDefinition", + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Id": 163 }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAdmin", + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Id": 164 }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAdmin", + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 165 }, { - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 3, + "CommandName": "Add-PnPSiteCollectionAdmin", + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Id": 166 }, { - "Command": "Add-PnPSiteCollectionAppCatalog", - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Command": "Add-PnPSiteCollectionAppCatalog", "Id": 167 }, { - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Id": 168 }, { - "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": 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", "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 -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png", - "CommandName": "Add-PnPSiteDesign", "Rank": 2, + "CommandName": "Add-PnPSiteDesign", + "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png", "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/my images/logo.png\"", - "CommandName": "Add-PnPSiteDesign", "Rank": 3, + "CommandName": "Add-PnPSiteDesign", + "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"", "Id": 171 }, { - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 1, + "CommandName": "Add-PnPSiteDesignFromWeb", + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "Id": 172 }, { - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 2, + "CommandName": "Add-PnPSiteDesignFromWeb", + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Id": 173 }, { - "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", "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", "Id": 174 }, { - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Add-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Add-PnPSiteDesignTask", + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "Id": 175 }, { - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "CommandName": "Add-PnPSiteDesignTask", "Rank": 2, + "CommandName": "Add-PnPSiteDesignTask", + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Id": 176 }, { - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "CommandName": "Add-PnPSiteScript", "Rank": 1, + "CommandName": "Add-PnPSiteScript", + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Id": 177 }, { - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "CommandName": "Add-PnPSiteScriptPackage", "Rank": 1, + "CommandName": "Add-PnPSiteScriptPackage", + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Id": 178 }, { - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "CommandName": "Add-PnPSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPSiteTemplate", + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Id": 179 }, { - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "CommandName": "Add-PnPStoredCredential", "Rank": 1, + "CommandName": "Add-PnPStoredCredential", + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "Id": 180 }, { - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "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)", "Id": 181 }, { - "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", "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\"", "Id": 182 }, { - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "CommandName": "Add-PnPTaxonomyField", "Rank": 1, + "CommandName": "Add-PnPTaxonomyField", + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Id": 183 }, { - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "CommandName": "Add-PnPTaxonomyField", "Rank": 2, + "CommandName": "Add-PnPTaxonomyField", + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Id": 184 }, { - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "CommandName": "Add-PnPTeamsChannel", "Rank": 1, + "CommandName": "Add-PnPTeamsChannel", + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "Id": 185 }, { - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "CommandName": "Add-PnPTeamsChannel", "Rank": 2, + "CommandName": "Add-PnPTeamsChannel", + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Id": 186 }, { - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "CommandName": "Add-PnPTeamsChannel", "Rank": 3, + "CommandName": "Add-PnPTeamsChannel", + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "Id": 187 }, { - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "CommandName": "Add-PnPTeamsChannel", "Rank": 4, + "CommandName": "Add-PnPTeamsChannel", + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Id": 188 }, { - "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", - "CommandName": "Add-PnpTeamsChannelUser", "Rank": 1, + "CommandName": "Add-PnpTeamsChannelUser", + "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", "Id": 189 }, { - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "CommandName": "Add-PnpTeamsChannelUser", "Rank": 2, + "CommandName": "Add-PnpTeamsChannelUser", + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Id": 190 }, { - "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", - "CommandName": "Add-PnPTeamsTab", "Rank": 1, + "CommandName": "Add-PnPTeamsTab", + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", "Id": 191 }, { - "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": 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\"", "Id": 192 }, { - "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": 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\"", "Id": 193 }, { - "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", "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", "Id": 194 }, { - "Command": "Add-PnPTeamsTeam", - "CommandName": "Add-PnPTeamsTeam", "Rank": 1, + "CommandName": "Add-PnPTeamsTeam", + "Command": "Add-PnPTeamsTeam", "Id": 195 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Add-PnPTeamsUser", "Rank": 1, + "CommandName": "Add-PnPTeamsUser", + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 196 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Add-PnPTeamsUser", "Rank": 2, + "CommandName": "Add-PnPTeamsUser", + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Id": 197 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "CommandName": "Add-PnPTeamsUser", "Rank": 3, + "CommandName": "Add-PnPTeamsUser", + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "Id": 198 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "CommandName": "Add-PnPTeamsUser", "Rank": 4, + "CommandName": "Add-PnPTeamsUser", + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Id": 199 }, { - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Add-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Add-PnPTenantCdnOrigin", + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Id": 200 }, { - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequence", "Rank": 1, + "CommandName": "Add-PnPTenantSequence", + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Id": 201 }, { - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequenceSite", "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSite", + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Id": 202 }, { - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "CommandName": "Add-PnPTenantSequenceSubSite", "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSubSite", + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Id": 203 }, { - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "CommandName": "Add-PnPTermToTerm", "Rank": 1, + "CommandName": "Add-PnPTermToTerm", + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Id": 204 }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "CommandName": "Add-PnPView", "Rank": 1, + "CommandName": "Add-PnPView", + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "Id": 205 }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "CommandName": "Add-PnPView", "Rank": 2, + "CommandName": "Add-PnPView", + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "Id": 206 }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "CommandName": "Add-PnPView", "Rank": 3, + "CommandName": "Add-PnPView", + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "Id": 207 }, { - "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": 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\"", "Id": 208 }, { - "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": 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\"", "Id": 209 }, { - "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", "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\"", "Id": 210 }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "CommandName": "Add-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Add-PnPWebhookSubscription", + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "Id": 211 }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "CommandName": "Add-PnPWebhookSubscription", "Rank": 2, + "CommandName": "Add-PnPWebhookSubscription", + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Id": 212 }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", - "CommandName": "Add-PnPWebhookSubscription", "Rank": 3, + "CommandName": "Add-PnPWebhookSubscription", + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "Id": 213 }, { - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 1, + "CommandName": "Add-PnPWebPartToWebPartPage", + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "Id": 214 }, { - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 2, + "CommandName": "Add-PnPWebPartToWebPartPage", + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Id": 215 }, { - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 1, + "CommandName": "Add-PnPWebPartToWikiPage", + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "Id": 216 }, { - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 2, + "CommandName": "Add-PnPWebPartToWikiPage", + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Id": 217 }, { - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "CommandName": "Add-PnPWikiPage", "Rank": 1, + "CommandName": "Add-PnPWikiPage", + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Id": 218 }, { - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupMember", + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Id": 219 }, { - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupOwner", + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Id": 220 }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 1, + "CommandName": "Clear-PnPDefaultColumnValues", + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Id": 221 }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 2, + "CommandName": "Clear-PnPDefaultColumnValues", + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Id": 222 }, { - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Clear-PnPListItemAsRecord", "Rank": 1, + "CommandName": "Clear-PnPListItemAsRecord", + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Id": 223 }, { - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Id": 224 }, { - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Id": 225 }, { - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 1, + "CommandName": "Clear-PnpRecycleBinItem", + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Id": 226 }, { - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 2, + "CommandName": "Clear-PnpRecycleBinItem", + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Id": 227 }, { - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 3, + "CommandName": "Clear-PnpRecycleBinItem", + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Id": 228 }, { - "Command": "Clear-PnPTenantAppCatalogUrl", - "CommandName": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Command": "Clear-PnPTenantAppCatalogUrl", "Id": 229 }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 230 }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 2, + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Id": 231 }, { - "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", - "CommandName": "Connect-PnPOnline", "Rank": 1, + "CommandName": "Connect-PnPOnline", + "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", "Id": 232 }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 1, + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Id": 233 }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 2, + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Id": 234 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml", - "CommandName": "Convert-PnPSiteTemplate", "Rank": 1, + "CommandName": "Convert-PnPSiteTemplate", + "Command": "Convert-PnPSiteTemplate -Path template.xml", "Id": 235 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "CommandName": "Convert-PnPSiteTemplate", "Rank": 2, + "CommandName": "Convert-PnPSiteTemplate", + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Id": 236 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "CommandName": "Convert-PnPSiteTemplate", "Rank": 3, + "CommandName": "Convert-PnPSiteTemplate", + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Id": 237 }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 1, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Id": 238 }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 2, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Id": 239 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", "Rank": 1, + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Id": 240 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "CommandName": "ConvertTo-PnPPage", "Rank": 2, + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Id": 241 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "CommandName": "ConvertTo-PnPPage", "Rank": 3, + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Id": 242 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "CommandName": "ConvertTo-PnPPage", "Rank": 4, + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Id": 243 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", "Rank": 5, + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 244 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "CommandName": "ConvertTo-PnPPage", "Rank": 6, + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Id": 245 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", "Rank": 7, + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Id": 246 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", "Rank": 8, + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "Id": 247 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", "Rank": 9, + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 248 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "CommandName": "ConvertTo-PnPPage", "Rank": 10, + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Id": 249 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "CommandName": "ConvertTo-PnPPage", "Rank": 11, + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Id": 250 }, { - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", "Rank": 12, + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 251 }, { - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", "Rank": 13, + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 252 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "CommandName": "ConvertTo-PnPPage", "Rank": 14, + "CommandName": "ConvertTo-PnPPage", + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Id": 253 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", "Rank": 1, + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 254 }, { - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFile", "Rank": 2, + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Id": 255 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFile", "Rank": 3, + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Id": 256 }, { - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", "Rank": 4, + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 257 }, { - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFile", "Rank": 5, + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Id": 258 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFile", "Rank": 6, + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Id": 259 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFile", "Rank": 7, + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Id": 260 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", "Rank": 8, + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 261 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", "Rank": 9, + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Id": 262 }, { - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFile", "Rank": 10, + "CommandName": "Copy-PnPFile", + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Id": 263 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", "Rank": 1, + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 264 }, { - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFolder", "Rank": 2, + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Id": 265 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFolder", "Rank": 3, + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Id": 266 }, { - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", "Rank": 4, + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 267 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFolder", "Rank": 5, + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Id": 268 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFolder", "Rank": 6, + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Id": 269 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFolder", "Rank": 7, + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Id": 270 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", "Rank": 8, + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 271 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", "Rank": 9, + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Id": 272 }, { - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFolder", "Rank": 10, + "CommandName": "Copy-PnPFolder", + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Id": 273 }, { - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "CommandName": "Copy-PnPItemProxy", "Rank": 1, + "CommandName": "Copy-PnPItemProxy", + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Id": 274 }, { - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "CommandName": "Copy-PnPList", "Rank": 1, + "CommandName": "Copy-PnPList", + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Id": 275 }, { - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "CommandName": "Copy-PnPList", "Rank": 2, + "CommandName": "Copy-PnPList", + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Id": 276 }, { - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "CommandName": "Copy-PnPList", "Rank": 3, + "CommandName": "Copy-PnPList", + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Id": 277 }, { - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", - "CommandName": "Copy-PnPList", "Rank": 4, + "CommandName": "Copy-PnPList", + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "Id": 278 }, { - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "CommandName": "Copy-PnPTeamsTeam", "Rank": 1, + "CommandName": "Copy-PnPTeamsTeam", + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Id": 279 }, { - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "CommandName": "Copy-PnPTeamsTeam", "Rank": 2, + "CommandName": "Copy-PnPTeamsTeam", + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Id": 280 }, { - "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": 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", "Id": 281 }, { - "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", "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", "Id": 282 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Disable-PnPFeature", "Rank": 1, + "CommandName": "Disable-PnPFeature", + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 283 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Disable-PnPFeature", "Rank": 2, + "CommandName": "Disable-PnPFeature", + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Id": 284 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Disable-PnPFeature", "Rank": 3, + "CommandName": "Disable-PnPFeature", + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Id": 285 }, { - "Command": "Disable-PnPPageScheduling", - "CommandName": "Disable-PnPPageScheduling", "Rank": 1, + "CommandName": "Disable-PnPPageScheduling", + "Command": "Disable-PnPPageScheduling", "Id": 286 }, { - "Command": "Disable-PnPPowerShellTelemetry", - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 1, + "CommandName": "Disable-PnPPowerShellTelemetry", + "Command": "Disable-PnPPowerShellTelemetry", "Id": 287 }, { - "Command": "Disable-PnPPowerShellTelemetry -Force", - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 2, + "CommandName": "Disable-PnPPowerShellTelemetry", + "Command": "Disable-PnPPowerShellTelemetry -Force", "Id": 288 }, { - "Command": "Disable-PnPSharingForNonOwnersOfSite", - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Command": "Disable-PnPSharingForNonOwnersOfSite", "Id": 289 }, { - "Command": "Disable-PnPSiteClassification", - "CommandName": "Disable-PnPSiteClassification", "Rank": 1, + "CommandName": "Disable-PnPSiteClassification", + "Command": "Disable-PnPSiteClassification", "Id": 290 }, { - "Command": "Disconnect-PnPOnline", - "CommandName": "Disconnect-PnPOnline", "Rank": 1, + "CommandName": "Disconnect-PnPOnline", + "Command": "Disconnect-PnPOnline", "Id": 291 }, { - "Command": "Enable-PnPCommSite", - "CommandName": "Enable-PnPCommSite", "Rank": 1, + "CommandName": "Enable-PnPCommSite", + "Command": "Enable-PnPCommSite", "Id": 292 }, { - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "CommandName": "Enable-PnPCommSite", "Rank": 2, + "CommandName": "Enable-PnPCommSite", + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Id": 293 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Enable-PnPFeature", "Rank": 1, + "CommandName": "Enable-PnPFeature", + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 294 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Enable-PnPFeature", "Rank": 2, + "CommandName": "Enable-PnPFeature", + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Id": 295 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Enable-PnPFeature", "Rank": 3, + "CommandName": "Enable-PnPFeature", + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Id": 296 }, { - "Command": "Enable-PnPPageScheduling", - "CommandName": "Enable-PnPPageScheduling", "Rank": 1, + "CommandName": "Enable-PnPPageScheduling", + "Command": "Enable-PnPPageScheduling", "Id": 297 }, { - "Command": "Enable-PnPPowerShellTelemetry", - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 1, + "CommandName": "Enable-PnPPowerShellTelemetry", + "Command": "Enable-PnPPowerShellTelemetry", "Id": 298 }, { - "Command": "Enable-PnPPowerShellTelemetry -Force", - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 2, + "CommandName": "Enable-PnPPowerShellTelemetry", + "Command": "Enable-PnPPowerShellTelemetry -Force", "Id": 299 }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "CommandName": "Enable-PnPSiteClassification", "Rank": 1, + "CommandName": "Enable-PnPSiteClassification", + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Id": 300 }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Enable-PnPSiteClassification", "Rank": 2, + "CommandName": "Enable-PnPSiteClassification", + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Id": 301 }, { - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 1, + "CommandName": "Export-PnPListToSiteTemplate", + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Id": 302 }, { - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 2, + "CommandName": "Export-PnPListToSiteTemplate", + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Id": 303 }, { - "Command": "Export-PnPPage -Identity Home.aspx", - "CommandName": "Export-PnPPage", "Rank": 1, + "CommandName": "Export-PnPPage", + "Command": "Export-PnPPage -Identity Home.aspx", "Id": 304 }, { - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", "Rank": 1, + "CommandName": "Export-PnPPageMapping", + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Id": 305 }, { - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", "Rank": 2, + "CommandName": "Export-PnPPageMapping", + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Id": 306 }, { - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", "Rank": 3, + "CommandName": "Export-PnPPageMapping", + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Id": 307 }, { - "Command": "Export-PnPTaxonomy", - "CommandName": "Export-PnPTaxonomy", "Rank": 1, + "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy", "Id": 308 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "CommandName": "Export-PnPTaxonomy", "Rank": 2, + "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Id": 309 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "CommandName": "Export-PnPTaxonomy", "Rank": 3, + "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Id": 310 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "CommandName": "Export-PnPTaxonomy", "Rank": 4, + "CommandName": "Export-PnPTaxonomy", + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Id": 311 }, { - "Command": "Export-PnPTermGroupToXml", - "CommandName": "Export-PnPTermGroupToXml", "Rank": 1, + "CommandName": "Export-PnPTermGroupToXml", + "Command": "Export-PnPTermGroupToXml", "Id": 312 }, { - "Command": "Export-PnPTermGroupToXml -Out output.xml", - "CommandName": "Export-PnPTermGroupToXml", "Rank": 2, + "CommandName": "Export-PnPTermGroupToXml", + "Command": "Export-PnPTermGroupToXml -Out output.xml", "Id": 313 }, { - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "CommandName": "Export-PnPTermGroupToXml", "Rank": 3, + "CommandName": "Export-PnPTermGroupToXml", + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Id": 314 }, { - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Export-PnPUserInfo", "Rank": 1, + "CommandName": "Export-PnPUserInfo", + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Id": 315 }, { - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", - "CommandName": "Export-PnPUserInfo", "Rank": 2, + "CommandName": "Export-PnPUserInfo", + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "Id": 316 }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Export-PnPUserProfile", "Rank": 1, + "CommandName": "Export-PnPUserProfile", + "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Id": 317 }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "CommandName": "Export-PnPUserProfile", "Rank": 2, + "CommandName": "Export-PnPUserProfile", + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Id": 318 }, { - "Command": "Find-PnPFile -Match *.master", - "CommandName": "Find-PnPFile", "Rank": 1, + "CommandName": "Find-PnPFile", + "Command": "Find-PnPFile -Match *.master", "Id": 319 }, { - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "CommandName": "Find-PnPFile", "Rank": 2, + "CommandName": "Find-PnPFile", + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Id": 320 }, { - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "CommandName": "Find-PnPFile", "Rank": 3, + "CommandName": "Find-PnPFile", + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Id": 321 }, { - "Command": "Get-PnPAccessToken", - "CommandName": "Get-PnPAccessToken", "Rank": 1, + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken", "Id": 322 }, { - "Command": "Get-PnPAccessToken -Decoded", - "CommandName": "Get-PnPAccessToken", "Rank": 2, + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -Decoded", "Id": 323 }, { - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "CommandName": "Get-PnPAccessToken", "Rank": 3, + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Id": 324 }, { - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "CommandName": "Get-PnPAccessToken", "Rank": 4, + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Id": 325 }, { - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "CommandName": "Get-PnPAccessToken", "Rank": 5, + "CommandName": "Get-PnPAccessToken", + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Id": 326 }, { - "Command": "Get-PnPAlert", - "CommandName": "Get-PnPAlert", "Rank": 1, + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert", "Id": 327 }, { - "Command": "Get-PnPAlert -List \"Demo List\"", - "CommandName": "Get-PnPAlert", "Rank": 2, + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -List \"Demo List\"", "Id": 328 }, { - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPAlert", "Rank": 3, + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 329 }, { - "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "CommandName": "Get-PnPAlert", "Rank": 4, + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Id": 330 }, { - "Command": "Get-PnPAlert -AllUsers", - "CommandName": "Get-PnPAlert", "Rank": 5, + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -AllUsers", "Id": 331 }, { - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "CommandName": "Get-PnPAlert", "Rank": 6, + "CommandName": "Get-PnPAlert", + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Id": 332 }, { - "Command": "Get-PnPApp", - "CommandName": "Get-PnPApp", "Rank": 1, + "CommandName": "Get-PnPApp", + "Command": "Get-PnPApp", "Id": 333 }, { - "Command": "Get-PnPApp -Scope Site", - "CommandName": "Get-PnPApp", "Rank": 2, + "CommandName": "Get-PnPApp", + "Command": "Get-PnPApp -Scope Site", "Id": 334 }, { - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPApp", "Rank": 3, + "CommandName": "Get-PnPApp", + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 335 }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "CommandName": "Get-PnPAppErrors", "Rank": 1, + "CommandName": "Get-PnPAppErrors", + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Id": 336 }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "CommandName": "Get-PnPAppErrors", "Rank": 2, + "CommandName": "Get-PnPAppErrors", + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Id": 337 }, { - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "CommandName": "Get-PnPAppInfo", "Rank": 1, + "CommandName": "Get-PnPAppInfo", + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Id": 338 }, { - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPAppInfo", "Rank": 2, + "CommandName": "Get-PnPAppInfo", + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 339 }, { - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "CommandName": "Get-PnPAppInfo", "Rank": 3, + "CommandName": "Get-PnPAppInfo", + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Id": 340 }, { - "Command": "Get-PnPApplicationCustomizer", - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Get-PnPApplicationCustomizer", + "Command": "Get-PnPApplicationCustomizer", "Id": 341 }, { - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Get-PnPApplicationCustomizer", + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 342 }, { - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 3, + "CommandName": "Get-PnPApplicationCustomizer", + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Id": 343 }, { - "Command": "Get-PnPAuditing", - "CommandName": "Get-PnPAuditing", "Rank": 1, + "CommandName": "Get-PnPAuditing", + "Command": "Get-PnPAuditing", "Id": 344 }, { - "Command": "Get-PnPAuthenticationRealm", - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 1, + "CommandName": "Get-PnPAuthenticationRealm", + "Command": "Get-PnPAuthenticationRealm", "Id": 345 }, { - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 2, + "CommandName": "Get-PnPAuthenticationRealm", + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Id": 346 }, { - "Command": "Get-PnPAvailableLanguage", - "CommandName": "Get-PnPAvailableLanguage", "Rank": 1, + "CommandName": "Get-PnPAvailableLanguage", + "Command": "Get-PnPAvailableLanguage", "Id": 347 }, { - "Command": "Get-PnPAvailableSensitivityLabel", - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 1, + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Command": "Get-PnPAvailableSensitivityLabel", "Id": 348 }, { - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 2, + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Id": 349 }, { - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 3, + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Id": 350 }, { - "Command": "Get-PnPAvailableSiteClassification", - "CommandName": "Get-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Get-PnPAvailableSiteClassification", + "Command": "Get-PnPAvailableSiteClassification", "Id": 351 }, { - "Command": "Get-PnPAzureACSPrincipal", - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 1, + "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal", "Id": 352 }, { - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 2, + "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Id": 353 }, { - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 3, + "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Id": 354 }, { - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 4, + "CommandName": "Get-PnPAzureACSPrincipal", + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Id": 355 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 356 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Id": 357 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Id": 358 }, { - "Command": "Get-PnPAzureADActivityReportSignIn", - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Command": "Get-PnPAzureADActivityReportSignIn", "Id": 359 }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Id": 360 }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Id": 361 }, { - "Command": "Get-PnPAzureADApp", - "CommandName": "Get-PnPAzureADApp", "Rank": 1, + "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp", "Id": 362 }, { - "Command": "Get-PnPAzureADApp -Identity MyApp", - "CommandName": "Get-PnPAzureADApp", "Rank": 2, + "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp -Identity MyApp", "Id": 363 }, { - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADApp", "Rank": 3, + "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 364 }, { - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADApp", "Rank": 4, + "CommandName": "Get-PnPAzureADApp", + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Id": 365 }, { - "Command": "Get-PnPAzureADAppPermission", - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 1, + "CommandName": "Get-PnPAzureADAppPermission", + "Command": "Get-PnPAzureADAppPermission", "Id": 366 }, { - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 2, + "CommandName": "Get-PnPAzureADAppPermission", + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Id": 367 }, { - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 3, + "CommandName": "Get-PnPAzureADAppPermission", + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 368 }, { - "Command": "Get-PnPAzureADAppSitePermission", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission", "Id": 369 }, { - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Id": 370 }, { - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 3, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Id": 371 }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 4, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Id": 372 }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 5, + "CommandName": "Get-PnPAzureADAppSitePermission", + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Id": 373 }, { - "Command": "Get-PnPAzureADGroup", - "CommandName": "Get-PnPAzureADGroup", "Rank": 1, + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup", "Id": 374 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupId", - "CommandName": "Get-PnPAzureADGroup", "Rank": 2, + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $groupId", "Id": 375 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "CommandName": "Get-PnPAzureADGroup", "Rank": 3, + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Id": 376 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPAzureADGroup", "Rank": 4, + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Id": 377 }, { - "Command": "Get-PnPAzureADGroup -Identity $group", - "CommandName": "Get-PnPAzureADGroup", "Rank": 5, + "CommandName": "Get-PnPAzureADGroup", + "Command": "Get-PnPAzureADGroup -Identity $group", "Id": 378 }, { - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Get-PnPAzureADGroupMember", + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Id": 379 }, { - "Command": "Get-PnPAzureADGroupMember -Identity $group", - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 2, + "CommandName": "Get-PnPAzureADGroupMember", + "Command": "Get-PnPAzureADGroupMember -Identity $group", "Id": 380 }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Get-PnPAzureADGroupOwner", + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Id": 381 }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 2, + "CommandName": "Get-PnPAzureADGroupOwner", + "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Id": 382 }, { - "Command": "Get-PnPAzureADServicePrincipal", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal", "Id": 383 }, { - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Id": 384 }, { - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 3, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Id": 385 }, { - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 4, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Id": 386 }, { - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 5, + "CommandName": "Get-PnPAzureADServicePrincipal", + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Id": 387 }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 388 }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Id": 389 }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 390 }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Id": 391 }, { - "Command": "Get-PnPAzureADUser", - "CommandName": "Get-PnPAzureADUser", "Rank": 1, + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser", "Id": 392 }, { - "Command": "Get-PnPAzureADUser -EndIndex 50", - "CommandName": "Get-PnPAzureADUser", "Rank": 2, + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -EndIndex 50", "Id": 393 }, { - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPAzureADUser", "Rank": 3, + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Id": 394 }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "CommandName": "Get-PnPAzureADUser", "Rank": 4, + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Id": 395 }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "CommandName": "Get-PnPAzureADUser", "Rank": 5, + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Id": 396 }, { - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "CommandName": "Get-PnPAzureADUser", "Rank": 6, + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Id": 397 }, { - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "CommandName": "Get-PnPAzureADUser", "Rank": 7, + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Id": 398 }, { - "Command": "Get-PnPAzureADUser -Delta", - "CommandName": "Get-PnPAzureADUser", "Rank": 8, + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Delta", "Id": 399 }, { - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "CommandName": "Get-PnPAzureADUser", "Rank": 9, + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Id": 400 }, { - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "CommandName": "Get-PnPAzureADUser", "Rank": 10, + "CommandName": "Get-PnPAzureADUser", + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Id": 401 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "CommandName": "Get-PnPAzureCertificate", "Rank": 1, + "CommandName": "Get-PnPAzureCertificate", + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Id": 402 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "CommandName": "Get-PnPAzureCertificate", "Rank": 2, + "CommandName": "Get-PnPAzureCertificate", + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Id": 403 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "CommandName": "Get-PnPAzureCertificate", "Rank": 3, + "CommandName": "Get-PnPAzureCertificate", + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Id": 404 }, { - "Command": "Get-PnPBrowserIdleSignout", - "CommandName": "Get-PnPBrowserIdleSignout", "Rank": 1, + "CommandName": "Get-PnPBrowserIdleSignout", + "Command": "Get-PnPBrowserIdleSignout", "Id": 405 }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 1, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Id": 406 }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Command": "Get-PnPBuiltInDesignPackageVisibility", "Id": 407 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings", "Id": 408 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 2, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Id": 409 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 3, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Id": 410 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 4, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Id": 411 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 5, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Id": 412 }, { - "Command": "Get-PnPChangeLog", - "CommandName": "Get-PnPChangeLog", "Rank": 1, + "CommandName": "Get-PnPChangeLog", + "Command": "Get-PnPChangeLog", "Id": 413 }, { - "Command": "Get-PnPChangeLog -Nightly", - "CommandName": "Get-PnPChangeLog", "Rank": 2, + "CommandName": "Get-PnPChangeLog", + "Command": "Get-PnPChangeLog -Nightly", "Id": 414 }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 1, + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Id": 415 }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 2, + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Id": 416 }, { - "Command": "Get-PnPContentType", - "CommandName": "Get-PnPContentType", "Rank": 1, + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType", "Id": 417 }, { - "Command": "Get-PnPContentType -InSiteHierarchy", - "CommandName": "Get-PnPContentType", "Rank": 2, + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -InSiteHierarchy", "Id": 418 }, { - "Command": "Get-PnPContentType -Identity \"Project Document\"", - "CommandName": "Get-PnPContentType", "Rank": 3, + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -Identity \"Project Document\"", "Id": 419 }, { - "Command": "Get-PnPContentType -List \"Documents\"", - "CommandName": "Get-PnPContentType", "Rank": 4, + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -List \"Documents\"", "Id": 420 }, { - "Command": "Get-PnPContentType -Includes \"SchemaXml\"", - "CommandName": "Get-PnPContentType", "Rank": 5, + "CommandName": "Get-PnPContentType", + "Command": "Get-PnPContentType -Includes \"SchemaXml\"", "Id": 421 }, { - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "CommandName": "Get-PnPContentTypePublishingStatus", "Rank": 1, + "CommandName": "Get-PnPContentTypePublishingStatus", + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Id": 422 }, { - "Command": "Get-PnPCustomAction", - "CommandName": "Get-PnPCustomAction", "Rank": 1, + "CommandName": "Get-PnPCustomAction", + "Command": "Get-PnPCustomAction", "Id": 423 }, { - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPCustomAction", "Rank": 2, + "CommandName": "Get-PnPCustomAction", + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 424 }, { - "Command": "Get-PnPCustomAction -Scope web", - "CommandName": "Get-PnPCustomAction", "Rank": 3, + "CommandName": "Get-PnPCustomAction", + "Command": "Get-PnPCustomAction -Scope web", "Id": 425 }, { - "Command": "Get-PnPDeletedMicrosoft365Group", - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Command": "Get-PnPDeletedMicrosoft365Group", "Id": 426 }, { - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 2, + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 427 }, { - "Command": "Get-PnPDeletedTeam", - "CommandName": "Get-PnPDeletedTeam", "Rank": 1, + "CommandName": "Get-PnPDeletedTeam", + "Command": "Get-PnPDeletedTeam", "Id": 428 }, { - "Command": "Get-PnPDiagnostics", - "CommandName": "Get-PnPDiagnostics", "Rank": 1, + "CommandName": "Get-PnPDiagnostics", + "Command": "Get-PnPDiagnostics", "Id": 429 }, { - "Command": "Get-PnPDisableSpacesActivation", - "CommandName": "Get-PnPDisableSpacesActivation", "Rank": 1, + "CommandName": "Get-PnPDisableSpacesActivation", + "Command": "Get-PnPDisableSpacesActivation", "Id": 430 }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 1, + "CommandName": "Get-PnPDocumentSetTemplate", + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Id": 431 }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 2, + "CommandName": "Get-PnPDocumentSetTemplate", + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Id": 432 }, { - "Command": "Get-PnPEventReceiver", - "CommandName": "Get-PnPEventReceiver", "Rank": 1, + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver", "Id": 433 }, { - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver", "Rank": 2, + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 434 }, { - "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver", "Rank": 3, + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Id": 435 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "CommandName": "Get-PnPEventReceiver", "Rank": 4, + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Id": 436 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver", "Rank": 5, + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 437 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver", "Rank": 6, + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Id": 438 }, { - "Command": "Get-PnPEventReceiver -Scope Site", - "CommandName": "Get-PnPEventReceiver", "Rank": 7, + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Scope Site", "Id": 439 }, { - "Command": "Get-PnPEventReceiver -Scope Web", - "CommandName": "Get-PnPEventReceiver", "Rank": 8, + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Scope Web", "Id": 440 }, { - "Command": "Get-PnPEventReceiver -Scope All", - "CommandName": "Get-PnPEventReceiver", "Rank": 9, + "CommandName": "Get-PnPEventReceiver", + "Command": "Get-PnPEventReceiver -Scope All", "Id": 441 }, { - "Command": "Get-PnPException", - "CommandName": "Get-PnPException", "Rank": 1, + "CommandName": "Get-PnPException", + "Command": "Get-PnPException", "Id": 442 }, { - "Command": "Get-PnPException -All", - "CommandName": "Get-PnPException", "Rank": 2, + "CommandName": "Get-PnPException", + "Command": "Get-PnPException -All", "Id": 443 }, { - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "CommandName": "Get-PnPExternalUser", "Rank": 1, + "CommandName": "Get-PnPExternalUser", + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Id": 444 }, { - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "CommandName": "Get-PnPExternalUser", "Rank": 2, + "CommandName": "Get-PnPExternalUser", + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Id": 445 }, { - "Command": "Get-PnPFeature", - "CommandName": "Get-PnPFeature", "Rank": 1, + "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature", "Id": 446 }, { - "Command": "Get-PnPFeature -Scope Site", - "CommandName": "Get-PnPFeature", "Rank": 2, + "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature -Scope Site", "Id": 447 }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPFeature", "Rank": 3, + "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 448 }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "CommandName": "Get-PnPFeature", "Rank": 4, + "CommandName": "Get-PnPFeature", + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Id": 449 }, { - "Command": "Get-PnPField", - "CommandName": "Get-PnPField", "Rank": 1, + "CommandName": "Get-PnPField", + "Command": "Get-PnPField", "Id": 450 }, { - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Get-PnPField", "Rank": 2, + "CommandName": "Get-PnPField", + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Id": 451 }, { - "Command": "Get-PnPField -Group \"Custom Columns\"", - "CommandName": "Get-PnPField", "Rank": 3, + "CommandName": "Get-PnPField", + "Command": "Get-PnPField -Group \"Custom Columns\"", "Id": 452 }, { - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "CommandName": "Get-PnPFile", "Rank": 1, + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Id": 453 }, { - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "CommandName": "Get-PnPFile", "Rank": 2, + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Id": 454 }, { - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "CommandName": "Get-PnPFile", "Rank": 3, + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Id": 455 }, { - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "CommandName": "Get-PnPFile", "Rank": 4, + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Id": 456 }, { - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "CommandName": "Get-PnPFile", "Rank": 5, + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Id": 457 }, { - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "CommandName": "Get-PnPFile", "Rank": 6, + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Id": 458 }, { - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "CommandName": "Get-PnPFile", "Rank": 7, + "CommandName": "Get-PnPFile", + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Id": 459 }, { - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Get-PnPFileSharingLink", "Rank": 1, + "CommandName": "Get-PnPFileSharingLink", + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 460 }, { - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "CommandName": "Get-PnPFileVersion", "Rank": 1, + "CommandName": "Get-PnPFileVersion", + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Id": 461 }, { - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "CommandName": "Get-PnPFileVersion", "Rank": 2, + "CommandName": "Get-PnPFileVersion", + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Id": 462 }, { - "Command": "Get-PnPFlow -AsAdmin", - "CommandName": "Get-PnPFlow", "Rank": 1, + "CommandName": "Get-PnPFlow", + "Command": "Get-PnPFlow -AsAdmin", "Id": 463 }, { - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "CommandName": "Get-PnPFlow", "Rank": 2, + "CommandName": "Get-PnPFlow", + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "Id": 464 }, { - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "CommandName": "Get-PnPFlow", "Rank": 3, + "CommandName": "Get-PnPFlow", + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Id": 465 }, { - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "CommandName": "Get-PnPFlowOwner", "Rank": 1, + "CommandName": "Get-PnPFlowOwner", + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Id": 466 }, { - "Command": "Get-PnPFolder", - "CommandName": "Get-PnPFolder", "Rank": 1, + "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder", "Id": 467 }, { - "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "CommandName": "Get-PnPFolder", "Rank": 2, + "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Id": 468 }, { - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "CommandName": "Get-PnPFolder", "Rank": 3, + "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Id": 469 }, { - "Command": "Get-PnPFolder -List \"Shared Documents\"", - "CommandName": "Get-PnPFolder", "Rank": 4, + "CommandName": "Get-PnPFolder", + "Command": "Get-PnPFolder -List \"Shared Documents\"", "Id": 470 }, { - "Command": "Get-PnPFolderFile", - "CommandName": "Get-PnPFolderFile", "Rank": 1, + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile", "Id": 471 }, { - "Command": "Get-PnPFolderFile -Recurse", - "CommandName": "Get-PnPFolderFile", "Rank": 2, + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -Recurse", "Id": 472 }, { - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderFile", "Rank": 3, + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "Id": 473 }, { - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderFile", "Rank": 4, + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Id": 474 }, { - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderFile", "Rank": 5, + "CommandName": "Get-PnPFolderFile", + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Id": 475 }, { - "Command": "Get-PnPFolderFolder", - "CommandName": "Get-PnPFolderFolder", "Rank": 1, + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder", "Id": 476 }, { - "Command": "Get-PnPFolderFolder -Recurse", - "CommandName": "Get-PnPFolderFolder", "Rank": 2, + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -Recurse", "Id": 477 }, { - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderFolder", "Rank": 3, + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "Id": 478 }, { - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "CommandName": "Get-PnPFolderFolder", "Rank": 4, + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "Id": 479 }, { - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "CommandName": "Get-PnPFolderFolder", "Rank": 5, + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "Id": 480 }, { - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderFolder", "Rank": 6, + "CommandName": "Get-PnPFolderFolder", + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Id": 481 }, { - "Command": "Get-PnPFolderItem", - "CommandName": "Get-PnPFolderItem", "Rank": 1, + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem", "Id": 482 }, { - "Command": "Get-PnPFolderItem -Recurse", - "CommandName": "Get-PnPFolderItem", "Rank": 2, + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -Recurse", "Id": 483 }, { - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderItem", "Rank": 3, + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "Id": 484 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderItem", "Rank": 4, + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Id": 485 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "CommandName": "Get-PnPFolderItem", "Rank": 5, + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Id": 486 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderItem", "Rank": 6, + "CommandName": "Get-PnPFolderItem", + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Id": 487 }, { - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Get-PnPFolderSharingLink", "Rank": 1, + "CommandName": "Get-PnPFolderSharingLink", + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 488 }, { - "Command": "Get-PnPFolderStorageMetric", - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 1, + "CommandName": "Get-PnPFolderStorageMetric", + "Command": "Get-PnPFolderStorageMetric", "Id": 489 }, { - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 2, + "CommandName": "Get-PnPFolderStorageMetric", + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Id": 490 }, { - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 3, + "CommandName": "Get-PnPFolderStorageMetric", + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Id": 491 }, { - "Command": "Get-PnPFooter", - "CommandName": "Get-PnPFooter", "Rank": 1, + "CommandName": "Get-PnPFooter", + "Command": "Get-PnPFooter", "Id": 492 }, { - "Command": "Get-PnPGraphAccessToken", - "CommandName": "Get-PnPGraphAccessToken", "Rank": 1, + "CommandName": "Get-PnPGraphAccessToken", + "Command": "Get-PnPGraphAccessToken", "Id": 493 }, { - "Command": "Get-PnPGraphAccessToken -Decoded", - "CommandName": "Get-PnPGraphAccessToken", "Rank": 2, + "CommandName": "Get-PnPGraphAccessToken", + "Command": "Get-PnPGraphAccessToken -Decoded", "Id": 494 }, { - "Command": "Get-PnPGraphSubscription", - "CommandName": "Get-PnPGraphSubscription", "Rank": 1, + "CommandName": "Get-PnPGraphSubscription", + "Command": "Get-PnPGraphSubscription", "Id": 495 }, { - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPGraphSubscription", "Rank": 2, + "CommandName": "Get-PnPGraphSubscription", + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Id": 496 }, { - "Command": "Get-PnPGroup", - "CommandName": "Get-PnPGroup", "Rank": 1, + "CommandName": "Get-PnPGroup", + "Command": "Get-PnPGroup", "Id": 497 }, { - "Command": "Get-PnPGroup -Identity 'My Site Users'", - "CommandName": "Get-PnPGroup", "Rank": 2, + "CommandName": "Get-PnPGroup", + "Command": "Get-PnPGroup -Identity 'My Site Users'", "Id": 498 }, { - "Command": "Get-PnPGroup -AssociatedMemberGroup", - "CommandName": "Get-PnPGroup", "Rank": 3, + "CommandName": "Get-PnPGroup", + "Command": "Get-PnPGroup -AssociatedMemberGroup", "Id": 499 }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "CommandName": "Get-PnPGroupMember", "Rank": 1, + "CommandName": "Get-PnPGroupMember", + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Id": 500 }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "CommandName": "Get-PnPGroupMember", "Rank": 2, + "CommandName": "Get-PnPGroupMember", + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Id": 501 }, { - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "CommandName": "Get-PnPGroupPermissions", "Rank": 1, + "CommandName": "Get-PnPGroupPermissions", + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Id": 502 }, { - "Command": "Get-PnPHideDefaultThemes", - "CommandName": "Get-PnPHideDefaultThemes", "Rank": 1, + "CommandName": "Get-PnPHideDefaultThemes", + "Command": "Get-PnPHideDefaultThemes", "Id": 503 }, { - "Command": "Get-PnPHomePage", - "CommandName": "Get-PnPHomePage", "Rank": 1, + "CommandName": "Get-PnPHomePage", + "Command": "Get-PnPHomePage", "Id": 504 }, { - "Command": "Get-PnPHomeSite", - "CommandName": "Get-PnPHomeSite", "Rank": 1, + "CommandName": "Get-PnPHomeSite", + "Command": "Get-PnPHomeSite", "Id": 505 }, { - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "CommandName": "Get-PnPHomeSite", "Rank": 2, + "CommandName": "Get-PnPHomeSite", + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Id": 506 }, { - "Command": "Get-PnPHomeSite -Detailed", - "CommandName": "Get-PnPHomeSite", "Rank": 3, + "CommandName": "Get-PnPHomeSite", + "Command": "Get-PnPHomeSite -Detailed", "Id": 507 }, { - "Command": "Get-PnPHubSite", - "CommandName": "Get-PnPHubSite", "Rank": 1, + "CommandName": "Get-PnPHubSite", + "Command": "Get-PnPHubSite", "Id": 508 }, { - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSite", "Rank": 2, + "CommandName": "Get-PnPHubSite", + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Id": 509 }, { - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "CommandName": "Get-PnPHubSite", "Rank": 3, + "CommandName": "Get-PnPHubSite", + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Id": 510 }, { - "Command": "Get-PnPHubSiteChild", - "CommandName": "Get-PnPHubSiteChild", "Rank": 1, + "CommandName": "Get-PnPHubSiteChild", + "Command": "Get-PnPHubSiteChild", "Id": 511 }, { - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSiteChild", "Rank": 2, + "CommandName": "Get-PnPHubSiteChild", + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Id": 512 }, { - "Command": "Get-PnPInPlaceRecordsManagement", - "CommandName": "Get-PnPInPlaceRecordsManagement", "Rank": 1, + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Command": "Get-PnPInPlaceRecordsManagement", "Id": 513 }, { - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "CommandName": "Get-PnPIsSiteAliasAvailable", "Rank": 1, + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Id": 514 }, { - "Command": "Get-PnPJavaScriptLink", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink", "Id": 515 }, { - "Command": "Get-PnPJavaScriptLink -Scope All", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Scope All", "Id": 516 }, { - "Command": "Get-PnPJavaScriptLink -Scope Web", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 3, + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Scope Web", "Id": 517 }, { - "Command": "Get-PnPJavaScriptLink -Scope Site", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 4, + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Scope Site", "Id": 518 }, { - "Command": "Get-PnPJavaScriptLink -Name Test", - "CommandName": "Get-PnPJavaScriptLink", "Rank": 5, + "CommandName": "Get-PnPJavaScriptLink", + "Command": "Get-PnPJavaScriptLink -Name Test", "Id": 519 }, { - "Command": "Get-PnPKnowledgeHubSite", - "CommandName": "Get-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Get-PnPKnowledgeHubSite", + "Command": "Get-PnPKnowledgeHubSite", "Id": 520 }, { - "Command": "Get-PnPLabel", - "CommandName": "Get-PnPLabel", "Rank": 1, + "CommandName": "Get-PnPLabel", + "Command": "Get-PnPLabel", "Id": 521 }, { - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "CommandName": "Get-PnPLabel", "Rank": 2, + "CommandName": "Get-PnPLabel", + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Id": 522 }, { - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "CommandName": "Get-PnPLargeListOperationStatus", "Rank": 1, + "CommandName": "Get-PnPLargeListOperationStatus", + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Id": 523 }, { - "Command": "Get-PnPList", - "CommandName": "Get-PnPList", "Rank": 1, + "CommandName": "Get-PnPList", + "Command": "Get-PnPList", "Id": 524 }, { - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Get-PnPList", "Rank": 2, + "CommandName": "Get-PnPList", + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 525 }, { - "Command": "Get-PnPList -Identity Lists/Announcements", - "CommandName": "Get-PnPList", "Rank": 3, + "CommandName": "Get-PnPList", + "Command": "Get-PnPList -Identity Lists/Announcements", "Id": 526 }, { - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "CommandName": "Get-PnPList", "Rank": 4, + "CommandName": "Get-PnPList", + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Id": 527 }, { - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "CommandName": "Get-PnPList", "Rank": 5, + "CommandName": "Get-PnPList", + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Id": 528 }, { - "Command": "Get-PnPListDesign", - "CommandName": "Get-PnPListDesign", "Rank": 1, + "CommandName": "Get-PnPListDesign", + "Command": "Get-PnPListDesign", "Id": 529 }, { - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPListDesign", "Rank": 2, + "CommandName": "Get-PnPListDesign", + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 530 }, { - "Command": "Get-PnPListDesign -Identity ListEvent", - "CommandName": "Get-PnPListDesign", "Rank": 3, + "CommandName": "Get-PnPListDesign", + "Command": "Get-PnPListDesign -Identity ListEvent", "Id": 531 }, { - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "CommandName": "Get-PnPListInformationRightsManagement", "Rank": 1, + "CommandName": "Get-PnPListInformationRightsManagement", + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Id": 532 }, { - "Command": "Get-PnPListItem -List Tasks", - "CommandName": "Get-PnPListItem", "Rank": 1, + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks", "Id": 533 }, { - "Command": "Get-PnPListItem -List Tasks -Id 1", - "CommandName": "Get-PnPListItem", "Rank": 2, + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Id 1", "Id": 534 }, { - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "CommandName": "Get-PnPListItem", "Rank": 3, + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Id": 535 }, { - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "CommandName": "Get-PnPListItem", "Rank": 4, + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "Id": 536 }, { - "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "CommandName": "Get-PnPListItem", "Rank": 5, + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Query \"\"", "Id": 537 }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "CommandName": "Get-PnPListItem", "Rank": 6, + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Id": 538 }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "CommandName": "Get-PnPListItem", "Rank": 7, + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Id": 539 }, { - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "CommandName": "Get-PnPListItem", "Rank": 8, + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Id": 540 }, { - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "CommandName": "Get-PnPListItem", "Rank": 9, + "CommandName": "Get-PnPListItem", + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Id": 541 }, { - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "CommandName": "Get-PnPListItemAttachment", "Rank": 1, + "CommandName": "Get-PnPListItemAttachment", + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "Id": 542 }, { - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "CommandName": "Get-PnPListItemAttachment", "Rank": 2, + "CommandName": "Get-PnPListItemAttachment", + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "Id": 543 }, { - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "CommandName": "Get-PnPListItemComment", "Rank": 1, + "CommandName": "Get-PnPListItemComment", + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Id": 544 }, { - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "CommandName": "Get-PnPListItemPermission", "Rank": 1, + "CommandName": "Get-PnPListItemPermission", + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Id": 545 }, { - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "CommandName": "Get-PnPListItemVersion", "Rank": 1, + "CommandName": "Get-PnPListItemVersion", + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Id": 546 }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "CommandName": "Get-PnPListPermissions", "Rank": 1, + "CommandName": "Get-PnPListPermissions", + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Id": 547 }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "CommandName": "Get-PnPListPermissions", "Rank": 2, + "CommandName": "Get-PnPListPermissions", + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Id": 548 }, { - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "CommandName": "Get-PnPListRecordDeclaration", "Rank": 1, + "CommandName": "Get-PnPListRecordDeclaration", + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Id": 549 }, { - "Command": "Get-PnPMasterPage", - "CommandName": "Get-PnPMasterPage", "Rank": 1, + "CommandName": "Get-PnPMasterPage", + "Command": "Get-PnPMasterPage", "Id": 550 }, { - "Command": "Get-PnPMessageCenterAnnouncement", - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 1, + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Command": "Get-PnPMessageCenterAnnouncement", "Id": 551 }, { - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 2, + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Id": 552 }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Command": "Get-PnPMicrosoft365ExpiringGroup", "Id": 553 }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Id": 554 }, { - "Command": "Get-PnPMicrosoft365Group", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group", "Id": 555 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Id": 556 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Id": 557 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Id": 558 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $group", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -Identity $group", "Id": 559 }, { - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "Get-PnPMicrosoft365Group", + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Id": 560 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Command": "Get-PnPMicrosoft365GroupEndpoint", "Id": 561 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Id": 562 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 563 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Id": 564 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Id": 565 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Id": 566 }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Id": 567 }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Id": 568 }, { - "Command": "Get-PnPMicrosoft365GroupSettings", - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Command": "Get-PnPMicrosoft365GroupSettings", "Id": 569 }, { - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Id": 570 }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 571 }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Id": 572 }, { - "Command": "Get-PnPMicrosoft365GroupTeam", - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Command": "Get-PnPMicrosoft365GroupTeam", "Id": 573 }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Id": 574 }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 575 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 576 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Id": 577 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 578 }, { - "Command": "Get-PnPNavigationNode", - "CommandName": "Get-PnPNavigationNode", "Rank": 1, + "CommandName": "Get-PnPNavigationNode", + "Command": "Get-PnPNavigationNode", "Id": 579 }, { - "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "CommandName": "Get-PnPNavigationNode", "Rank": 2, + "CommandName": "Get-PnPNavigationNode", + "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Id": 580 }, { - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "CommandName": "Get-PnPNavigationNode", "Rank": 3, + "CommandName": "Get-PnPNavigationNode", + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Id": 581 }, { - "Command": "Get-PnPOrgAssetsLibrary", - "CommandName": "Get-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Get-PnPOrgAssetsLibrary", + "Command": "Get-PnPOrgAssetsLibrary", "Id": 582 }, { - "Command": "Get-PnPOrgNewsSite", - "CommandName": "Get-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Get-PnPOrgNewsSite", + "Command": "Get-PnPOrgNewsSite", "Id": 583 }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "CommandName": "Get-PnPPage", "Rank": 1, + "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Id": 584 }, { - "Command": "Get-PnPPage \"MyPage\"", - "CommandName": "Get-PnPPage", "Rank": 2, + "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage \"MyPage\"", "Id": 585 }, { - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "CommandName": "Get-PnPPage", "Rank": 3, + "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Id": 586 }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "CommandName": "Get-PnPPage", "Rank": 4, + "CommandName": "Get-PnPPage", + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Id": 587 }, { - "Command": "Get-PnPPageComponent -Page Home", - "CommandName": "Get-PnPPageComponent", "Rank": 1, + "CommandName": "Get-PnPPageComponent", + "Command": "Get-PnPPageComponent -Page Home", "Id": 588 }, { - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPPageComponent", "Rank": 2, + "CommandName": "Get-PnPPageComponent", + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 589 }, { - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "CommandName": "Get-PnPPageComponent", "Rank": 3, + "CommandName": "Get-PnPPageComponent", + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Id": 590 }, { - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerBucket", "Rank": 1, + "CommandName": "Get-PnPPlannerBucket", + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Id": 591 }, { - "Command": "Get-PnPPlannerConfiguration", - "CommandName": "Get-PnPPlannerConfiguration", "Rank": 1, + "CommandName": "Get-PnPPlannerConfiguration", + "Command": "Get-PnPPlannerConfiguration", "Id": 592 }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "CommandName": "Get-PnPPlannerPlan", "Rank": 1, + "CommandName": "Get-PnPPlannerPlan", + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Id": 593 }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "CommandName": "Get-PnPPlannerPlan", "Rank": 2, + "CommandName": "Get-PnPPlannerPlan", + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Id": 594 }, { - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "CommandName": "Get-PnPPlannerPlan", "Rank": 3, + "CommandName": "Get-PnPPlannerPlan", + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Id": 595 }, { - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Get-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Get-PnPPlannerRosterMember", + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Id": 596 }, { - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 1, + "CommandName": "Get-PnPPlannerRosterPlan", + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Id": 597 }, { - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 2, + "CommandName": "Get-PnPPlannerRosterPlan", + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 598 }, { - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerTask", "Rank": 1, + "CommandName": "Get-PnPPlannerTask", + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Id": 599 }, { - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask", "Rank": 2, + "CommandName": "Get-PnPPlannerTask", + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Id": 600 }, { - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask", "Rank": 3, + "CommandName": "Get-PnPPlannerTask", + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Id": 601 }, { - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerUserPolicy", "Rank": 1, + "CommandName": "Get-PnPPlannerUserPolicy", + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Id": 602 }, { - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "CommandName": "Get-PnPPowerPlatformConnector", "Rank": 1, + "CommandName": "Get-PnPPowerPlatformConnector", + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "Id": 603 }, { - "Command": "Get-PnPPowerPlatformEnvironment", - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 1, + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Command": "Get-PnPPowerPlatformEnvironment", "Id": 604 }, { - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 2, + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Id": 605 }, { - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 3, + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Id": 606 }, { - "Command": "Get-PnPPowerShellTelemetryEnabled", - "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Command": "Get-PnPPowerShellTelemetryEnabled", "Id": 607 }, { - "Command": "Get-PnPPropertyBag", - "CommandName": "Get-PnPPropertyBag", "Rank": 1, + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag", "Id": 608 }, { - "Command": "Get-PnPPropertyBag -Key MyKey", - "CommandName": "Get-PnPPropertyBag", "Rank": 2, + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Key MyKey", "Id": 609 }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "CommandName": "Get-PnPPropertyBag", "Rank": 3, + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Id": 610 }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag", "Rank": 4, + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Id": 611 }, { - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag", "Rank": 5, + "CommandName": "Get-PnPPropertyBag", + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Id": 612 }, { - "Command": "Get-PnPPublishingImageRendition", - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Get-PnPPublishingImageRendition", + "Command": "Get-PnPPublishingImageRendition", "Id": 613 }, { - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 2, + "CommandName": "Get-PnPPublishingImageRendition", + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Id": 614 }, { - "Command": "Get-PnPPublishingImageRendition -Identity 2", - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 3, + "CommandName": "Get-PnPPublishingImageRendition", + "Command": "Get-PnPPublishingImageRendition -Identity 2", "Id": 615 }, { - "Command": "Get-PnPRecycleBinItem", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 1, + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem", "Id": 616 }, { - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 2, + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Id": 617 }, { - "Command": "Get-PnPRecycleBinItem -FirstStage", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 3, + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -FirstStage", "Id": 618 }, { - "Command": "Get-PnPRecycleBinItem -SecondStage", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 4, + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -SecondStage", "Id": 619 }, { - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "CommandName": "Get-PnPRecycleBinItem", "Rank": 5, + "CommandName": "Get-PnPRecycleBinItem", + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Id": 620 }, { - "Command": "Get-PnPRequestAccessEmails", - "CommandName": "Get-PnPRequestAccessEmails", "Rank": 1, + "CommandName": "Get-PnPRequestAccessEmails", + "Command": "Get-PnPRequestAccessEmails", "Id": 621 }, { - "Command": "Get-PnPRetentionLabel", - "CommandName": "Get-PnPRetentionLabel", "Rank": 1, + "CommandName": "Get-PnPRetentionLabel", + "Command": "Get-PnPRetentionLabel", "Id": 622 }, { - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", - "CommandName": "Get-PnPRetentionLabel", "Rank": 2, + "CommandName": "Get-PnPRetentionLabel", + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "Id": 623 }, { - "Command": "Get-PnPRoleDefinition", - "CommandName": "Get-PnPRoleDefinition", "Rank": 1, + "CommandName": "Get-PnPRoleDefinition", + "Command": "Get-PnPRoleDefinition", "Id": 624 }, { - "Command": "Get-PnPRoleDefinition -Identity Read", - "CommandName": "Get-PnPRoleDefinition", "Rank": 2, + "CommandName": "Get-PnPRoleDefinition", + "Command": "Get-PnPRoleDefinition -Identity Read", "Id": 625 }, { - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "CommandName": "Get-PnPRoleDefinition", "Rank": 3, + "CommandName": "Get-PnPRoleDefinition", + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Id": 626 }, { - "Command": "Get-PnPSearchConfiguration", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration", "Id": 627 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site", "Id": 628 }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Id": 629 }, { - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 630 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 5, + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Id": 631 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 6, + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Id": 632 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 7, + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Id": 633 }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "CommandName": "Get-PnPSearchConfiguration", "Rank": 8, + "CommandName": "Get-PnPSearchConfiguration", + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Id": 634 }, { - "Command": "Get-PnPSearchCrawlLog", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 1, + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog", "Id": 635 }, { - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 2, + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Id": 636 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 3, + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Id": 637 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 4, + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Id": 638 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 5, + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Id": 639 }, { - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 6, + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Id": 640 }, { - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 7, + "CommandName": "Get-PnPSearchCrawlLog", + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Id": 641 }, { - "Command": "Get-PnPSearchSettings", - "CommandName": "Get-PnPSearchSettings", "Rank": 1, + "CommandName": "Get-PnPSearchSettings", + "Command": "Get-PnPSearchSettings", "Id": 642 }, { - "Command": "Get-PnPServiceCurrentHealth", - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 1, + "CommandName": "Get-PnPServiceCurrentHealth", + "Command": "Get-PnPServiceCurrentHealth", "Id": 643 }, { - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 2, + "CommandName": "Get-PnPServiceCurrentHealth", + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Id": 644 }, { - "Command": "Get-PnPServiceHealthIssue", - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 1, + "CommandName": "Get-PnPServiceHealthIssue", + "Command": "Get-PnPServiceHealthIssue", "Id": 645 }, { - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 2, + "CommandName": "Get-PnPServiceHealthIssue", + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Id": 646 }, { - "Command": "Get-PnPSharePointAddIn", - "CommandName": "Get-PnPSharePointAddIn", "Rank": 1, + "CommandName": "Get-PnPSharePointAddIn", + "Command": "Get-PnPSharePointAddIn", "Id": 647 }, { - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "CommandName": "Get-PnPSharePointAddIn", "Rank": 2, + "CommandName": "Get-PnPSharePointAddIn", + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Id": 648 }, { - "Command": "Get-PnPSharingForNonOwnersOfSite", - "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Command": "Get-PnPSharingForNonOwnersOfSite", "Id": 649 }, { - "Command": "Get-PnPSite", - "CommandName": "Get-PnPSite", "Rank": 1, + "CommandName": "Get-PnPSite", + "Command": "Get-PnPSite", "Id": 650 }, { - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "CommandName": "Get-PnPSite", "Rank": 2, + "CommandName": "Get-PnPSite", + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Id": 651 }, { - "Command": "Get-PnPSiteClosure", - "CommandName": "Get-PnPSiteClosure", "Rank": 1, + "CommandName": "Get-PnPSiteClosure", + "Command": "Get-PnPSiteClosure", "Id": 652 }, { - "Command": "Get-PnPSiteCollectionAdmin", - "CommandName": "Get-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAdmin", + "Command": "Get-PnPSiteCollectionAdmin", "Id": 653 }, { - "Command": "Get-PnPSiteCollectionAppCatalog", - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Command": "Get-PnPSiteCollectionAppCatalog", "Id": 654 }, { - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 2, + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Id": 655 }, { - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 3, + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Id": 656 }, { - "Command": "Get-PnPSiteCollectionTermStore", - "CommandName": "Get-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionTermStore", + "Command": "Get-PnPSiteCollectionTermStore", "Id": 657 }, { - "Command": "Get-PnPSiteDesign", - "CommandName": "Get-PnPSiteDesign", "Rank": 1, + "CommandName": "Get-PnPSiteDesign", + "Command": "Get-PnPSiteDesign", "Id": 658 }, { - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesign", "Rank": 2, + "CommandName": "Get-PnPSiteDesign", + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 659 }, { - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Get-PnPSiteDesignRights", + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 660 }, { - "Command": "Get-PnPSiteDesignRun", - "CommandName": "Get-PnPSiteDesignRun", "Rank": 1, + "CommandName": "Get-PnPSiteDesignRun", + "Command": "Get-PnPSiteDesignRun", "Id": 661 }, { - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignRun", "Rank": 2, + "CommandName": "Get-PnPSiteDesignRun", + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Id": 662 }, { - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Get-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Get-PnPSiteDesignTask", + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Id": 663 }, { - "Command": "Get-PnPSiteDesignTask", - "CommandName": "Get-PnPSiteDesignTask", "Rank": 2, + "CommandName": "Get-PnPSiteDesignTask", + "Command": "Get-PnPSiteDesignTask", "Id": 664 }, { - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignTask", "Rank": 3, + "CommandName": "Get-PnPSiteDesignTask", + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Id": 665 }, { - "Command": "Get-PnPSiteGroup", - "CommandName": "Get-PnPSiteGroup", "Rank": 1, + "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup", "Id": 666 }, { - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup", "Rank": 2, + "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Id": 667 }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "CommandName": "Get-PnPSiteGroup", "Rank": 3, + "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Id": 668 }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup", "Rank": 4, + "CommandName": "Get-PnPSiteGroup", + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Id": 669 }, { - "Command": "Get-PnPSitePolicy", - "CommandName": "Get-PnPSitePolicy", "Rank": 1, + "CommandName": "Get-PnPSitePolicy", + "Command": "Get-PnPSitePolicy", "Id": 670 }, { - "Command": "Get-PnPSitePolicy -AllAvailable", - "CommandName": "Get-PnPSitePolicy", "Rank": 2, + "CommandName": "Get-PnPSitePolicy", + "Command": "Get-PnPSitePolicy -AllAvailable", "Id": 671 }, { - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Get-PnPSitePolicy", "Rank": 3, + "CommandName": "Get-PnPSitePolicy", + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Id": 672 }, { - "Command": "Get-PnPSiteScript", - "CommandName": "Get-PnPSiteScript", "Rank": 1, + "CommandName": "Get-PnPSiteScript", + "Command": "Get-PnPSiteScript", "Id": 673 }, { - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteScript", "Rank": 2, + "CommandName": "Get-PnPSiteScript", + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 674 }, { - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromList", + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Id": 675 }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromList", + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Id": 676 }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromList", + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Id": 677 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Id": 678 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Id": 679 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Id": 680 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 4, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Id": 681 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 5, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Id": 682 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 6, + "CommandName": "Get-PnPSiteScriptFromWeb", + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Id": 683 }, { - "Command": "Get-PnPSiteSearchQueryResults", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 1, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults", "Id": 684 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 2, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Id": 685 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 3, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Id": 686 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 4, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Id": 687 }, { - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 5, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Id": 688 }, { - "Command": "Get-PnPSiteSearchQueryResults -All", - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 6, + "CommandName": "Get-PnPSiteSearchQueryResults", + "Command": "Get-PnPSiteSearchQueryResults -All", "Id": 689 }, { - "Command": "Get-PnPSiteSensitivityLabel", - "CommandName": "Get-PnPSiteSensitivityLabel", "Rank": 1, + "CommandName": "Get-PnPSiteSensitivityLabel", + "Command": "Get-PnPSiteSensitivityLabel", "Id": 690 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp", - "CommandName": "Get-PnPSiteTemplate", "Rank": 1, + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp", "Id": 691 }, { - "Command": "Get-PnPSiteTemplate -Out template.xml", - "CommandName": "Get-PnPSiteTemplate", "Rank": 2, + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.xml", "Id": 692 }, { - "Command": "Get-PnPSiteTemplate -Out template.md", - "CommandName": "Get-PnPSiteTemplate", "Rank": 3, + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.md", "Id": 693 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "CommandName": "Get-PnPSiteTemplate", "Rank": 4, + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Id": 694 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "CommandName": "Get-PnPSiteTemplate", "Rank": 5, + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Id": 695 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "CommandName": "Get-PnPSiteTemplate", "Rank": 6, + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Id": 696 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "CommandName": "Get-PnPSiteTemplate", "Rank": 7, + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Id": 697 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "CommandName": "Get-PnPSiteTemplate", "Rank": 8, + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Id": 698 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate", "Rank": 9, + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Id": 699 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "CommandName": "Get-PnPSiteTemplate", "Rank": 10, + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Id": 700 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "CommandName": "Get-PnPSiteTemplate", "Rank": 11, + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Id": 701 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "CommandName": "Get-PnPSiteTemplate", "Rank": 12, + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Id": 702 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", - "CommandName": "Get-PnPSiteTemplate", "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\"", "Id": 703 }, { - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate", "Rank": 14, + "CommandName": "Get-PnPSiteTemplate", + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Id": 704 }, { - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Get-PnPSiteUserInvitations", "Rank": 1, + "CommandName": "Get-PnPSiteUserInvitations", + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Id": 705 }, { - "Command": "Get-PnPSiteVersionPolicy", - "CommandName": "Get-PnPSiteVersionPolicy", "Rank": 1, + "CommandName": "Get-PnPSiteVersionPolicy", + "Command": "Get-PnPSiteVersionPolicy", "Id": 706 }, { - "Command": "Get-PnPStorageEntity", - "CommandName": "Get-PnPStorageEntity", "Rank": 1, + "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity", "Id": 707 }, { - "Command": "Get-PnPStorageEntity -Key MyKey", - "CommandName": "Get-PnPStorageEntity", "Rank": 2, + "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity -Key MyKey", "Id": 708 }, { - "Command": "Get-PnPStorageEntity -Scope Site", - "CommandName": "Get-PnPStorageEntity", "Rank": 3, + "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity -Scope Site", "Id": 709 }, { - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Get-PnPStorageEntity", "Rank": 4, + "CommandName": "Get-PnPStorageEntity", + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Id": 710 }, { - "Command": "Get-PnPStoredCredential -Name O365", - "CommandName": "Get-PnPStoredCredential", "Rank": 1, + "CommandName": "Get-PnPStoredCredential", + "Command": "Get-PnPStoredCredential -Name O365", "Id": 711 }, { - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 712 }, { - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 713 }, { - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Rank": 1, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Id": 714 }, { - "Command": "Get-PnPSubWeb", - "CommandName": "Get-PnPSubWeb", "Rank": 1, + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb", "Id": 715 }, { - "Command": "Get-PnPSubWeb -Recurse", - "CommandName": "Get-PnPSubWeb", "Rank": 2, + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Recurse", "Id": 716 }, { - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "CommandName": "Get-PnPSubWeb", "Rank": 3, + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Id": 717 }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "CommandName": "Get-PnPSubWeb", "Rank": 4, + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Id": 718 }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "CommandName": "Get-PnPSubWeb", "Rank": 5, + "CommandName": "Get-PnPSubWeb", + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Id": 719 }, { - "Command": "Get-PnPSyntexModel", - "CommandName": "Get-PnPSyntexModel", "Rank": 1, + "CommandName": "Get-PnPSyntexModel", + "Command": "Get-PnPSyntexModel", "Id": 720 }, { - "Command": "Get-PnPSyntexModel -Identity 1", - "CommandName": "Get-PnPSyntexModel", "Rank": 2, + "CommandName": "Get-PnPSyntexModel", + "Command": "Get-PnPSyntexModel -Identity 1", "Id": 721 }, { - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModel", "Rank": 3, + "CommandName": "Get-PnPSyntexModel", + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Id": 722 }, { - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModelPublication", "Rank": 1, + "CommandName": "Get-PnPSyntexModelPublication", + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Id": 723 }, { - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "CommandName": "Get-PnPTaxonomyItem", "Rank": 1, + "CommandName": "Get-PnPTaxonomyItem", + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Id": 724 }, { - "Command": "Get-PnPTeamsApp", - "CommandName": "Get-PnPTeamsApp", "Rank": 1, + "CommandName": "Get-PnPTeamsApp", + "Command": "Get-PnPTeamsApp", "Id": 725 }, { - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "CommandName": "Get-PnPTeamsApp", "Rank": 2, + "CommandName": "Get-PnPTeamsApp", + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Id": 726 }, { - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "CommandName": "Get-PnPTeamsApp", "Rank": 3, + "CommandName": "Get-PnPTeamsApp", + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Id": 727 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "CommandName": "Get-PnPTeamsChannel", "Rank": 1, + "CommandName": "Get-PnPTeamsChannel", + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Id": 728 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannel", "Rank": 2, + "CommandName": "Get-PnPTeamsChannel", + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Id": 729 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannel", "Rank": 3, + "CommandName": "Get-PnPTeamsChannel", + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Id": 730 }, { - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Id": 731 }, { - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Id": 732 }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessage", + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Id": 733 }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessage", + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Id": 734 }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Id": 735 }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Id": 736 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelUser", + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Id": 737 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelUser", + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Id": 738 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 3, + "CommandName": "Get-PnPTeamsChannelUser", + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Id": 739 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 4, + "CommandName": "Get-PnPTeamsChannelUser", + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Id": 740 }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 1, + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Id": 741 }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 2, + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Id": 742 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "CommandName": "Get-PnPTeamsTab", "Rank": 1, + "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "Id": 743 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "CommandName": "Get-PnPTeamsTab", "Rank": 2, + "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "Id": 744 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", - "CommandName": "Get-PnPTeamsTab", "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", "Id": 745 }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsTab", "Rank": 4, + "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Id": 746 }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "CommandName": "Get-PnPTeamsTab", "Rank": 5, + "CommandName": "Get-PnPTeamsTab", + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Id": 747 }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Get-PnPTeamsTag", "Rank": 1, + "CommandName": "Get-PnPTeamsTag", + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Id": 748 }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Get-PnPTeamsTag", "Rank": 2, + "CommandName": "Get-PnPTeamsTag", + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Id": 749 }, { - "Command": "Get-PnPTeamsTeam", - "CommandName": "Get-PnPTeamsTeam", "Rank": 1, + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam", "Id": 750 }, { - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "CommandName": "Get-PnPTeamsTeam", "Rank": 2, + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Id": 751 }, { - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "CommandName": "Get-PnPTeamsTeam", "Rank": 3, + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Id": 752 }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam", "Rank": 4, + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Id": 753 }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam", "Rank": 5, + "CommandName": "Get-PnPTeamsTeam", + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Id": 754 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam", - "CommandName": "Get-PnPTeamsUser", "Rank": 1, + "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam", "Id": 755 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "CommandName": "Get-PnPTeamsUser", "Rank": 2, + "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Id": 756 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "CommandName": "Get-PnPTeamsUser", "Rank": 3, + "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Id": 757 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "CommandName": "Get-PnPTeamsUser", "Rank": 4, + "CommandName": "Get-PnPTeamsUser", + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Id": 758 }, { - "Command": "Get-PnPTemporarilyDisableAppBar", - "CommandName": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Command": "Get-PnPTemporarilyDisableAppBar", "Id": 759 }, { - "Command": "Get-PnPTenant", - "CommandName": "Get-PnPTenant", "Rank": 1, + "CommandName": "Get-PnPTenant", + "Command": "Get-PnPTenant", "Id": 760 }, { - "Command": "Get-PnPTenantAppCatalogUrl", - "CommandName": "Get-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Command": "Get-PnPTenantAppCatalogUrl", "Id": 761 }, { - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "CommandName": "Get-PnPTenantCdnEnabled", "Rank": 1, + "CommandName": "Get-PnPTenantCdnEnabled", + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Id": 762 }, { - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "CommandName": "Get-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Get-PnPTenantCdnOrigin", + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Id": 763 }, { - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "CommandName": "Get-PnPTenantCdnPolicies", "Rank": 1, + "CommandName": "Get-PnPTenantCdnPolicies", + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Id": 764 }, { - "Command": "Get-PnPTenantDeletedSite", - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 1, + "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite", "Id": 765 }, { - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 2, + "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 766 }, { - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 3, + "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Id": 767 }, { - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 4, + "CommandName": "Get-PnPTenantDeletedSite", + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Id": 768 }, { - "Command": "Get-PnPTenantId", - "CommandName": "Get-PnPTenantId", "Rank": 1, + "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId", "Id": 769 }, { - "Command": "Get-PnPTenantId contoso", - "CommandName": "Get-PnPTenantId", "Rank": 2, + "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId contoso", "Id": 770 }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "CommandName": "Get-PnPTenantId", "Rank": 3, + "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Id": 771 }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "CommandName": "Get-PnPTenantId", "Rank": 4, + "CommandName": "Get-PnPTenantId", + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Id": 772 }, { - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "CommandName": "Get-PnPTenantInfo", "Rank": 1, + "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Id": 773 }, { - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "CommandName": "Get-PnPTenantInfo", "Rank": 2, + "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Id": 774 }, { - "Command": "Get-PnPTenantInfo", - "CommandName": "Get-PnPTenantInfo", "Rank": 3, + "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo", "Id": 775 }, { - "Command": "Get-PnPTenantInfo -CurrentTenant", - "CommandName": "Get-PnPTenantInfo", "Rank": 4, + "CommandName": "Get-PnPTenantInfo", + "Command": "Get-PnPTenantInfo -CurrentTenant", "Id": 776 }, { - "Command": "Get-PnPTenantInstance", - "CommandName": "Get-PnPTenantInstance", "Rank": 1, + "CommandName": "Get-PnPTenantInstance", + "Command": "Get-PnPTenantInstance", "Id": 777 }, { - "Command": "Get-PnPTenantRecycleBinItem", - "CommandName": "Get-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Get-PnPTenantRecycleBinItem", + "Command": "Get-PnPTenantRecycleBinItem", "Id": 778 }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "CommandName": "Get-PnPTenantSequence", "Rank": 1, + "CommandName": "Get-PnPTenantSequence", + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Id": 779 }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "CommandName": "Get-PnPTenantSequence", "Rank": 2, + "CommandName": "Get-PnPTenantSequence", + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Id": 780 }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 1, + "CommandName": "Get-PnPTenantSequenceSite", + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Id": 781 }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 2, + "CommandName": "Get-PnPTenantSequenceSite", + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Id": 782 }, { - "Command": "Get-PnPTenantSite", - "CommandName": "Get-PnPTenantSite", "Rank": 1, + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite", "Id": 783 }, { - "Command": "Get-PnPTenantSite -Detailed", - "CommandName": "Get-PnPTenantSite", "Rank": 2, + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Detailed", "Id": 784 }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "CommandName": "Get-PnPTenantSite", "Rank": 3, + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Id": 785 }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "CommandName": "Get-PnPTenantSite", "Rank": 4, + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Id": 786 }, { - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "CommandName": "Get-PnPTenantSite", "Rank": 5, + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Id": 787 }, { - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "CommandName": "Get-PnPTenantSite", "Rank": 6, + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Id": 788 }, { - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "CommandName": "Get-PnPTenantSite", "Rank": 7, + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Id": 789 }, { - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "CommandName": "Get-PnPTenantSite", "Rank": 8, + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Id": 790 }, { - "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "CommandName": "Get-PnPTenantSite", "Rank": 9, + "CommandName": "Get-PnPTenantSite", + "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Id": 791 }, { - "Command": "Get-PnPTenantSyncClientRestriction", - "CommandName": "Get-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Command": "Get-PnPTenantSyncClientRestriction", "Id": 792 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "CommandName": "Get-PnPTenantTemplate", "Rank": 1, + "CommandName": "Get-PnPTenantTemplate", + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Id": 793 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "CommandName": "Get-PnPTenantTemplate", "Rank": 2, + "CommandName": "Get-PnPTenantTemplate", + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "Id": 794 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "CommandName": "Get-PnPTenantTemplate", "Rank": 3, + "CommandName": "Get-PnPTenantTemplate", + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Id": 795 }, { - "Command": "Get-PnPTenantTheme", - "CommandName": "Get-PnPTenantTheme", "Rank": 1, + "CommandName": "Get-PnPTenantTheme", + "Command": "Get-PnPTenantTheme", "Id": 796 }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Get-PnPTenantTheme", "Rank": 2, + "CommandName": "Get-PnPTenantTheme", + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Id": 797 }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "CommandName": "Get-PnPTenantTheme", "Rank": 3, + "CommandName": "Get-PnPTenantTheme", + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Id": 798 }, { - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", "Rank": 1, + "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 799 }, { - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", "Rank": 2, + "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 800 }, { - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", "Rank": 3, + "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 801 }, { - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "CommandName": "Get-PnPTerm", "Rank": 4, + "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Id": 802 }, { - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "CommandName": "Get-PnPTerm", "Rank": 5, + "CommandName": "Get-PnPTerm", + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Id": 803 }, { - "Command": "Get-PnPTermGroup", - "CommandName": "Get-PnPTermGroup", "Rank": 1, + "CommandName": "Get-PnPTermGroup", + "Command": "Get-PnPTermGroup", "Id": 804 }, { - "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "CommandName": "Get-PnPTermGroup", "Rank": 2, + "CommandName": "Get-PnPTermGroup", + "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Id": 805 }, { - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "CommandName": "Get-PnPTermGroup", "Rank": 3, + "CommandName": "Get-PnPTermGroup", + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Id": 806 }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "CommandName": "Get-PnPTermLabel", "Rank": 1, + "CommandName": "Get-PnPTermLabel", + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Id": 807 }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "CommandName": "Get-PnPTermLabel", "Rank": 2, + "CommandName": "Get-PnPTermLabel", + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Id": 808 }, { - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermLabel", "Rank": 3, + "CommandName": "Get-PnPTermLabel", + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 809 }, { - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet", "Rank": 1, + "CommandName": "Get-PnPTermSet", + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Id": 810 }, { - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet", "Rank": 2, + "CommandName": "Get-PnPTermSet", + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Id": 811 }, { - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "CommandName": "Get-PnPTermSet", "Rank": 3, + "CommandName": "Get-PnPTermSet", + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Id": 812 }, { - "Command": "Get-PnPTheme", - "CommandName": "Get-PnPTheme", "Rank": 1, + "CommandName": "Get-PnPTheme", + "Command": "Get-PnPTheme", "Id": 813 }, { - "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "CommandName": "Get-PnPTheme", "Rank": 2, + "CommandName": "Get-PnPTheme", + "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Id": 814 }, { - "Command": "Get-PnPTimeZoneId", - "CommandName": "Get-PnPTimeZoneId", "Rank": 1, + "CommandName": "Get-PnPTimeZoneId", + "Command": "Get-PnPTimeZoneId", "Id": 815 }, { - "Command": "Get-PnPTimeZoneId -Match Stockholm", - "CommandName": "Get-PnPTimeZoneId", "Rank": 2, + "CommandName": "Get-PnPTimeZoneId", + "Command": "Get-PnPTimeZoneId -Match Stockholm", "Id": 816 }, { - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "CommandName": "Get-PnPUnfurlLink", "Rank": 1, + "CommandName": "Get-PnPUnfurlLink", + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Id": 817 }, { - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "CommandName": "Get-PnPUnifiedAuditLog", "Rank": 1, + "CommandName": "Get-PnPUnifiedAuditLog", + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Id": 818 }, { - "Command": "Get-PnPUPABulkImportStatus", - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 1, + "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus", "Id": 819 }, { - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 2, + "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Id": 820 }, { - "Command": "Get-PnPUPABulkImportStatus -JobId ", - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 3, + "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus -JobId ", "Id": 821 }, { - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 4, + "CommandName": "Get-PnPUPABulkImportStatus", + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "Id": 822 }, { - "Command": "Get-PnPUser", - "CommandName": "Get-PnPUser", "Rank": 1, + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser", "Id": 823 }, { - "Command": "Get-PnPUser -Identity 23", - "CommandName": "Get-PnPUser", "Rank": 2, + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -Identity 23", "Id": 824 }, { - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser", "Rank": 3, + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Id": 825 }, { - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser", "Rank": 4, + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Id": 826 }, { - "Command": "Get-PnPUser -WithRightsAssigned", - "CommandName": "Get-PnPUser", "Rank": 5, + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -WithRightsAssigned", "Id": 827 }, { - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "CommandName": "Get-PnPUser", "Rank": 6, + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Id": 828 }, { - "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "CommandName": "Get-PnPUser", "Rank": 7, + "CommandName": "Get-PnPUser", + "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Id": 829 }, { - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "CommandName": "Get-PnPUserOneDriveQuota", "Rank": 1, + "CommandName": "Get-PnPUserOneDriveQuota", + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Id": 830 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "CommandName": "Get-PnPUserProfileProperty", "Rank": 1, + "CommandName": "Get-PnPUserProfileProperty", + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Id": 831 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "CommandName": "Get-PnPUserProfileProperty", "Rank": 2, + "CommandName": "Get-PnPUserProfileProperty", + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Id": 832 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "CommandName": "Get-PnPUserProfileProperty", "Rank": 3, + "CommandName": "Get-PnPUserProfileProperty", + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Id": 833 }, { - "Command": "Get-PnPView -List \"Demo List\"", - "CommandName": "Get-PnPView", "Rank": 1, + "CommandName": "Get-PnPView", + "Command": "Get-PnPView -List \"Demo List\"", "Id": 834 }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "CommandName": "Get-PnPView", "Rank": 2, + "CommandName": "Get-PnPView", + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Id": 835 }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "CommandName": "Get-PnPView", "Rank": 3, + "CommandName": "Get-PnPView", + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Id": 836 }, { - "Command": "Get-PnPVivaConnectionsDashboardACE", - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Command": "Get-PnPVivaConnectionsDashboardACE", "Id": 837 }, { - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 2, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Id": 838 }, { - "Command": "Get-PnPWeb", - "CommandName": "Get-PnPWeb", "Rank": 1, + "CommandName": "Get-PnPWeb", + "Command": "Get-PnPWeb", "Id": 839 }, { - "Command": "Get-PnPWebHeader", - "CommandName": "Get-PnPWebHeader", "Rank": 1, + "CommandName": "Get-PnPWebHeader", + "Command": "Get-PnPWebHeader", "Id": 840 }, { - "Command": "Get-PnPWebhookSubscriptions -List MyList", - "CommandName": "Get-PnPWebhookSubscriptions", "Rank": 1, + "CommandName": "Get-PnPWebhookSubscriptions", + "Command": "Get-PnPWebhookSubscriptions -List MyList", "Id": 841 }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "CommandName": "Get-PnPWebPart", "Rank": 1, + "CommandName": "Get-PnPWebPart", + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Id": 842 }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPart", "Rank": 2, + "CommandName": "Get-PnPWebPart", + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 843 }, { - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "CommandName": "Get-PnPWebPartProperty", "Rank": 1, + "CommandName": "Get-PnPWebPartProperty", + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "Id": 844 }, { - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "CommandName": "Get-PnPWebPartProperty", "Rank": 2, + "CommandName": "Get-PnPWebPartProperty", + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Id": 845 }, { - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPartXml", "Rank": 1, + "CommandName": "Get-PnPWebPartXml", + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 846 }, { - "Command": "Get-PnPWebTemplates", - "CommandName": "Get-PnPWebTemplates", "Rank": 1, + "CommandName": "Get-PnPWebTemplates", + "Command": "Get-PnPWebTemplates", "Id": 847 }, { - "Command": "Get-PnPWebTemplates -LCID 1033", - "CommandName": "Get-PnPWebTemplates", "Rank": 2, + "CommandName": "Get-PnPWebTemplates", + "Command": "Get-PnPWebTemplates -LCID 1033", "Id": 848 }, { - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "CommandName": "Get-PnPWebTemplates", "Rank": 3, + "CommandName": "Get-PnPWebTemplates", + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Id": 849 }, { - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "CommandName": "Get-PnPWikiPageContent", "Rank": 1, + "CommandName": "Get-PnPWikiPageContent", + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Id": 850 }, { - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "Id": 851 }, { - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "Id": 852 }, { - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Grant-PnPHubSiteRights", "Rank": 1, + "CommandName": "Grant-PnPHubSiteRights", + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 853 }, { - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Grant-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Grant-PnPSiteDesignRights", + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 854 }, { - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Rank": 1, + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Id": 855 }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "CommandName": "Import-PnPTaxonomy", "Rank": 1, + "CommandName": "Import-PnPTaxonomy", + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Id": 856 }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "CommandName": "Import-PnPTaxonomy", "Rank": 2, + "CommandName": "Import-PnPTaxonomy", + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Id": 857 }, { - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "CommandName": "Import-PnPTaxonomy", "Rank": 3, + "CommandName": "Import-PnPTaxonomy", + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Id": 858 }, { - "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 1, + "CommandName": "Import-PnPTermGroupFromXml", + "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Id": 859 }, { - "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 2, + "CommandName": "Import-PnPTermGroupFromXml", + "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Id": 860 }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "CommandName": "Import-PnPTermSet", "Rank": 1, + "CommandName": "Import-PnPTermSet", + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Id": 861 }, { - "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", - "CommandName": "Import-PnPTermSet", "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}'", "Id": 862 }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", - "CommandName": "Import-PnPTermSet", "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'", "Id": 863 }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Install-PnPApp", "Rank": 1, + "CommandName": "Install-PnPApp", + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 864 }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Install-PnPApp", "Rank": 2, + "CommandName": "Install-PnPApp", + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 865 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 1, + "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "Id": 866 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 2, + "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Id": 867 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 3, + "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Id": 868 }, { - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 4, + "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Id": 869 }, { - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "CommandName": "Invoke-PnPGraphMethod", "Rank": 5, + "CommandName": "Invoke-PnPGraphMethod", + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Id": 870 }, { - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", - "CommandName": "Invoke-PnPGraphMethod", "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", "Id": 871 }, { - "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", "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\"", "Id": 872 }, { - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPListDesign", "Rank": 1, + "CommandName": "Invoke-PnPListDesign", + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 873 }, { - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "CommandName": "Invoke-PnPListDesign", "Rank": 2, + "CommandName": "Invoke-PnPListDesign", + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Id": 874 }, { - "Command": "Invoke-PnPQuery -RetryCount 5", - "CommandName": "Invoke-PnPQuery", "Rank": 1, + "CommandName": "Invoke-PnPQuery", + "Command": "Invoke-PnPQuery -RetryCount 5", "Id": 875 }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPSiteDesign", "Rank": 1, + "CommandName": "Invoke-PnPSiteDesign", + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 876 }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "CommandName": "Invoke-PnPSiteDesign", "Rank": 2, + "CommandName": "Invoke-PnPSiteDesign", + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Id": 877 }, { - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "CommandName": "Invoke-PnPSiteScript", "Rank": 1, + "CommandName": "Invoke-PnPSiteScript", + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Id": 878 }, { - "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", "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": 879 }, { - "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", "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", "Id": 880 }, { - "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", "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", "Id": 881 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 1, + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Id": 882 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 2, + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Id": 883 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 3, + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Id": 884 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 4, + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Id": 885 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 5, + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Id": 886 }, { - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 6, + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Id": 887 }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 7, + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Id": 888 }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 8, + "CommandName": "Invoke-PnPSiteTemplate", + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Id": 889 }, { - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "CommandName": "Invoke-PnPSPRestMethod", "Rank": 1, + "CommandName": "Invoke-PnPSPRestMethod", + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Id": 890 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 1, + "CommandName": "Invoke-PnPTenantTemplate", + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Id": 891 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 2, + "CommandName": "Invoke-PnPTenantTemplate", + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Id": 892 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 3, + "CommandName": "Invoke-PnPTenantTemplate", + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Id": 893 }, { - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction", "Rank": 1, + "CommandName": "Invoke-PnPWebAction", + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Id": 894 }, { - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction", "Rank": 2, + "CommandName": "Invoke-PnPWebAction", + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Id": 895 }, { - "Command": "Measure-PnPList \"Documents\"", - "CommandName": "Measure-PnPList", "Rank": 1, + "CommandName": "Measure-PnPList", + "Command": "Measure-PnPList \"Documents\"", "Id": 896 }, { - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "CommandName": "Measure-PnPList", "Rank": 2, + "CommandName": "Measure-PnPList", + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Id": 897 }, { - "Command": "Measure-PnPWeb", - "CommandName": "Measure-PnPWeb", "Rank": 1, + "CommandName": "Measure-PnPWeb", + "Command": "Measure-PnPWeb", "Id": 898 }, { - "Command": "Measure-PnPWeb $web -Recursive", - "CommandName": "Measure-PnPWeb", "Rank": 2, + "CommandName": "Measure-PnPWeb", + "Command": "Measure-PnPWeb $web -Recursive", "Id": 899 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "CommandName": "Move-PnPFile", "Rank": 1, + "CommandName": "Move-PnPFile", + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Id": 900 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "CommandName": "Move-PnPFile", "Rank": 2, + "CommandName": "Move-PnPFile", + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Id": 901 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "CommandName": "Move-PnPFile", "Rank": 3, + "CommandName": "Move-PnPFile", + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Id": 902 }, { - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "CommandName": "Move-PnPFile", "Rank": 4, + "CommandName": "Move-PnPFile", + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Id": 903 }, { - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "CommandName": "Move-PnPFolder", "Rank": 1, + "CommandName": "Move-PnPFolder", + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Id": 904 }, { - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "CommandName": "Move-PnPFolder", "Rank": 2, + "CommandName": "Move-PnPFolder", + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Id": 905 }, { - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Move-PnPListItemToRecycleBin", "Rank": 1, + "CommandName": "Move-PnPListItemToRecycleBin", + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Id": 906 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "CommandName": "Move-PnPPageComponent", "Rank": 1, + "CommandName": "Move-PnPPageComponent", + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "Id": 907 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "CommandName": "Move-PnPPageComponent", "Rank": 2, + "CommandName": "Move-PnPPageComponent", + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "Id": 908 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "CommandName": "Move-PnPPageComponent", "Rank": 3, + "CommandName": "Move-PnPPageComponent", + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "Id": 909 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "CommandName": "Move-PnPPageComponent", "Rank": 4, + "CommandName": "Move-PnPPageComponent", + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Id": 910 }, { - "Command": "Move-PnPRecycleBinItem", - "CommandName": "Move-PnpRecycleBinItem", "Rank": 1, + "CommandName": "Move-PnpRecycleBinItem", + "Command": "Move-PnPRecycleBinItem", "Id": 911 }, { - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "CommandName": "Move-PnpRecycleBinItem", "Rank": 2, + "CommandName": "Move-PnpRecycleBinItem", + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Id": 912 }, { - "Command": "Move-PnPRecycleBinItem -Force", - "CommandName": "Move-PnpRecycleBinItem", "Rank": 3, + "CommandName": "Move-PnpRecycleBinItem", + "Command": "Move-PnPRecycleBinItem -Force", "Id": 913 }, { - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", - "CommandName": "Move-PnPTerm", "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", "Id": 914 }, { - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "CommandName": "Move-PnPTerm", "Rank": 2, + "CommandName": "Move-PnPTerm", + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Id": 915 }, { - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "CommandName": "Move-PnPTerm", "Rank": 3, + "CommandName": "Move-PnPTerm", + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Id": 916 }, { - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", - "CommandName": "Move-PnPTermSet", "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", "Id": 917 }, { - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "CommandName": "Move-PnPTermSet", "Rank": 2, + "CommandName": "Move-PnPTermSet", + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Id": 918 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPAzureADGroup", "Rank": 1, + "CommandName": "New-PnPAzureADGroup", + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Id": 919 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "CommandName": "New-PnPAzureADGroup", "Rank": 2, + "CommandName": "New-PnPAzureADGroup", + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Id": 920 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "CommandName": "New-PnPAzureADGroup", "Rank": 3, + "CommandName": "New-PnPAzureADGroup", + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Id": 921 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 1, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Id": 922 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 2, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Id": 923 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 3, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Id": 924 }, { - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "CommandName": "New-PnPAzureCertificate", "Rank": 1, + "CommandName": "New-PnPAzureCertificate", + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Id": 925 }, { - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "CommandName": "New-PnPAzureCertificate", "Rank": 2, + "CommandName": "New-PnPAzureCertificate", + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Id": 926 }, { - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "CommandName": "New-PnPAzureCertificate", "Rank": 3, + "CommandName": "New-PnPAzureCertificate", + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "Id": 927 }, { - "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", "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": 928 }, { - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", - "CommandName": "New-PnPGraphSubscription", "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()", "Id": 929 }, { - "Command": "New-PnPGroup -Title \"My Site Users\"", - "CommandName": "New-PnPGroup", "Rank": 1, + "CommandName": "New-PnPGroup", + "Command": "New-PnPGroup -Title \"My Site Users\"", "Id": 930 }, { - "Command": "New-PnPList -Title Announcements -Template Announcements", - "CommandName": "New-PnPList", "Rank": 1, + "CommandName": "New-PnPList", + "Command": "New-PnPList -Title Announcements -Template Announcements", "Id": 931 }, { - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "CommandName": "New-PnPList", "Rank": 2, + "CommandName": "New-PnPList", + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Id": 932 }, { - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "CommandName": "New-PnPList", "Rank": 3, + "CommandName": "New-PnPList", + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Id": 933 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Id": 934 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "Id": 935 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Id": 936 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Id": 937 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Id": 938 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Id": 939 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "CommandName": "New-PnPMicrosoft365Group", "Rank": 7, + "CommandName": "New-PnPMicrosoft365Group", + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "Id": 940 }, { - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", - "CommandName": "New-PnPMicrosoft365GroupSettings", "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\"}", "Id": 941 }, { - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Id": 942 }, { - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "CommandName": "New-PnPPersonalSite", "Rank": 1, + "CommandName": "New-PnPPersonalSite", + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Id": 943 }, { - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "CommandName": "New-PnPPlannerPlan", "Rank": 1, + "CommandName": "New-PnPPlannerPlan", + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Id": 944 }, { - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "CommandName": "New-PnPSdnProvider", "Rank": 1, + "CommandName": "New-PnPSdnProvider", + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Id": 945 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite", "Rank": 1, + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Id": 946 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "CommandName": "New-PnPSite", "Rank": 2, + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "Id": 947 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "CommandName": "New-PnPSite", "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", "Id": 948 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "CommandName": "New-PnPSite", "Rank": 4, + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Id": 949 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite", "Rank": 5, + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Id": 950 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "CommandName": "New-PnPSite", "Rank": 6, + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Id": 951 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "CommandName": "New-PnPSite", "Rank": 7, + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Id": 952 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "CommandName": "New-PnPSite", "Rank": 8, + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Id": 953 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "CommandName": "New-PnPSite", "Rank": 9, + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Id": 954 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "CommandName": "New-PnPSite", "Rank": 10, + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Id": 955 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite", "Rank": 11, + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Id": 956 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "CommandName": "New-PnPSite", "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", "Id": 957 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "CommandName": "New-PnPSite", "Rank": 13, + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Id": 958 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite", "Rank": 14, + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Id": 959 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "CommandName": "New-PnPSite", "Rank": 15, + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Id": 960 }, { - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "CommandName": "New-PnPSite", "Rank": 16, + "CommandName": "New-PnPSite", + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Id": 961 }, { - "Command": "New-PnPSiteCollectionTermStore", - "CommandName": "New-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "New-PnPSiteCollectionTermStore", + "Command": "New-PnPSiteCollectionTermStore", "Id": 962 }, { - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "CommandName": "New-PnPSiteGroup", "Rank": 1, + "CommandName": "New-PnPSiteGroup", + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "Id": 963 }, { - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "CommandName": "New-PnPSiteGroup", "Rank": 2, + "CommandName": "New-PnPSiteGroup", + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Id": 964 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 1, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Id": 965 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 2, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Id": 966 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 3, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Id": 967 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 4, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "Id": 968 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 5, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "Id": 969 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "New-PnPSiteTemplateFromFolder", "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\"}", "Id": 970 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 7, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Id": 971 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 8, + "CommandName": "New-PnPSiteTemplateFromFolder", + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Id": 972 }, { - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "CommandName": "New-PnPTeamsApp", "Rank": 1, + "CommandName": "New-PnPTeamsApp", + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Id": 973 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "CommandName": "New-PnPTeamsTeam", "Rank": 1, + "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Id": 974 }, { - "Command": "New-PnPTeamsTeam -GroupId $groupId", - "CommandName": "New-PnPTeamsTeam", "Rank": 2, + "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -GroupId $groupId", "Id": 975 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "CommandName": "New-PnPTeamsTeam", "Rank": 3, + "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "Id": 976 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "CommandName": "New-PnPTeamsTeam", "Rank": 4, + "CommandName": "New-PnPTeamsTeam", + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Id": 977 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", - "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\"", "Id": 978 }, { - "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", "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\"", "Id": 979 }, { - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", - "CommandName": "New-PnPTenantSite", "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", "Id": 980 }, { - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "CommandName": "New-PnPTenantSite", "Rank": 2, + "CommandName": "New-PnPTenantSite", + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Id": 981 }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "CommandName": "New-PnPTerm", "Rank": 1, + "CommandName": "New-PnPTerm", + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Id": 982 }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "New-PnPTerm", "Rank": 2, + "CommandName": "New-PnPTerm", + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Id": 983 }, { - "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "CommandName": "New-PnPTermGroup", "Rank": 1, + "CommandName": "New-PnPTermGroup", + "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Id": 984 }, { - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "CommandName": "New-PnPTermLabel", "Rank": 1, + "CommandName": "New-PnPTermLabel", + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Id": 985 }, { - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "CommandName": "New-PnPTermSet", "Rank": 1, + "CommandName": "New-PnPTermSet", + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Id": 986 }, { - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "CommandName": "New-PnPUPABulkImportJob", "Rank": 1, + "CommandName": "New-PnPUPABulkImportJob", + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "Id": 987 }, { - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", - "CommandName": "New-PnPUPABulkImportJob", "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", "Id": 988 }, { - "Command": "New-PnPUser -LoginName user@company.com", - "CommandName": "New-PnPUser", "Rank": 1, + "CommandName": "New-PnPUser", + "Command": "New-PnPUser -LoginName user@company.com", "Id": 989 }, { - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "CommandName": "New-PnPWeb", "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": 990 }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Publish-PnPApp", "Rank": 1, + "CommandName": "Publish-PnPApp", + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 991 }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "CommandName": "Publish-PnPApp", "Rank": 2, + "CommandName": "Publish-PnPApp", + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Id": 992 }, { - "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", "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", "Id": 993 }, { - "Command": "Publish-PnPContentType -ContentType 0x0101", - "CommandName": "Publish-PnPContentType", "Rank": 1, + "CommandName": "Publish-PnPContentType", + "Command": "Publish-PnPContentType -ContentType 0x0101", "Id": 994 }, { - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Publish-PnPSyntexModel", "Rank": 1, + "CommandName": "Publish-PnPSyntexModel", + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Id": 995 }, { - "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", "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", "Id": 996 }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp", - "CommandName": "Read-PnPSiteTemplate", "Rank": 1, + "CommandName": "Read-PnPSiteTemplate", + "Command": "Read-PnPSiteTemplate -Path template.pnp", "Id": 997 }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "CommandName": "Read-PnPSiteTemplate", "Rank": 2, + "CommandName": "Read-PnPSiteTemplate", + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Id": 998 }, { - "Command": "Read-PnPSiteTemplate -Xml $xml", - "CommandName": "Read-PnPSiteTemplate", "Rank": 3, + "CommandName": "Read-PnPSiteTemplate", + "Command": "Read-PnPSiteTemplate -Xml $xml", "Id": 999 }, { - "Command": "Read-PnPTenantTemplate -Path template.pnp", - "CommandName": "Read-PnPTenantTemplate", "Rank": 1, + "CommandName": "Read-PnPTenantTemplate", + "Command": "Read-PnPTenantTemplate -Path template.pnp", "Id": 1000 }, { - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "CommandName": "Register-PnPAppCatalogSite", "Rank": 1, + "CommandName": "Register-PnPAppCatalogSite", + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Id": 1001 }, { - "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", "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": 1002 }, { - "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", "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\")", "Id": 1003 }, { - "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", "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\")", "Id": 1004 }, { - "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", "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\")", "Id": 1005 }, { - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "CommandName": "Register-PnPAzureADApp", "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)", "Id": 1006 }, { - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "CommandName": "Register-PnPAzureADApp", "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)", "Id": 1007 }, { - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\") -LogoFilePath c:\\logo.png", - "CommandName": "Register-PnPAzureADApp", "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", "Id": 1008 }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Register-PnPHubSite", "Rank": 1, + "CommandName": "Register-PnPHubSite", + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Id": 1009 }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "CommandName": "Register-PnPHubSite", "Rank": 2, + "CommandName": "Register-PnPHubSite", + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Id": 1010 }, { - "Command": "Register-PnPManagementShellAccess", - "CommandName": "Register-PnPManagementShellAccess", "Rank": 1, + "CommandName": "Register-PnPManagementShellAccess", + "Command": "Register-PnPManagementShellAccess", "Id": 1011 }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "CommandName": "Register-PnPManagementShellAccess", "Rank": 2, + "CommandName": "Register-PnPManagementShellAccess", + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Id": 1012 }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "CommandName": "Register-PnPManagementShellAccess", "Rank": 3, + "CommandName": "Register-PnPManagementShellAccess", + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Id": 1013 }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 1, + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Id": 1014 }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 2, + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Id": 1015 }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "CommandName": "Remove-PnPAlert", "Rank": 1, + "CommandName": "Remove-PnPAlert", + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Id": 1016 }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAlert", "Rank": 2, + "CommandName": "Remove-PnPAlert", + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 1017 }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Remove-PnPApp", "Rank": 1, + "CommandName": "Remove-PnPApp", + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1018 }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Remove-PnPApp", "Rank": 2, + "CommandName": "Remove-PnPApp", + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1019 }, { - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Remove-PnPApplicationCustomizer", + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1020 }, { - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Remove-PnPApplicationCustomizer", + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Id": 1021 }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Remove-PnPAvailableSiteClassification", + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Id": 1022 }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Remove-PnPAvailableSiteClassification", + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Id": 1023 }, { - "Command": "Remove-PnPAzureADApp -Identity MyApp", - "CommandName": "Remove-PnPAzureADApp", "Rank": 1, + "CommandName": "Remove-PnPAzureADApp", + "Command": "Remove-PnPAzureADApp -Identity MyApp", "Id": 1024 }, { - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Remove-PnPAzureADApp", "Rank": 2, + "CommandName": "Remove-PnPAzureADApp", + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 1025 }, { - "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "CommandName": "Remove-PnPAzureADGroup", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroup", + "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Id": 1026 }, { - "Command": "Remove-PnPAzureADGroup -Identity $group", - "CommandName": "Remove-PnPAzureADGroup", "Rank": 2, + "CommandName": "Remove-PnPAzureADGroup", + "Command": "Remove-PnPAzureADGroup -Identity $group", "Id": 1027 }, { - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupMember", + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1028 }, { - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupOwner", + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1029 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Id": 1030 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Id": 1031 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 3, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 1032 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 4, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Id": 1033 }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "CommandName": "Remove-PnPContentType", "Rank": 1, + "CommandName": "Remove-PnPContentType", + "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Id": 1034 }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "CommandName": "Remove-PnPContentType", "Rank": 2, + "CommandName": "Remove-PnPContentType", + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Id": 1035 }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Id": 1036 }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 2, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Id": 1037 }, { - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPContentTypeFromList", "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromList", + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Id": 1038 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPCustomAction", "Rank": 1, + "CommandName": "Remove-PnPCustomAction", + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1039 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPCustomAction", "Rank": 2, + "CommandName": "Remove-PnPCustomAction", + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Id": 1040 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "CommandName": "Remove-PnPCustomAction", "Rank": 3, + "CommandName": "Remove-PnPCustomAction", + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Id": 1041 }, { - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 1042 }, { - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver", "Rank": 1, + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 1043 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver", "Rank": 2, + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 1044 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "CommandName": "Remove-PnPEventReceiver", "Rank": 3, + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Id": 1045 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList", - "CommandName": "Remove-PnPEventReceiver", "Rank": 4, + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -List ProjectList", "Id": 1046 }, { - "Command": "Remove-PnPEventReceiver", - "CommandName": "Remove-PnPEventReceiver", "Rank": 5, + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver", "Id": 1047 }, { - "Command": "Remove-PnPEventReceiver -Scope Site", - "CommandName": "Remove-PnPEventReceiver", "Rank": 6, + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Scope Site", "Id": 1048 }, { - "Command": "Remove-PnPEventReceiver -Scope Web", - "CommandName": "Remove-PnPEventReceiver", "Rank": 7, + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Scope Web", "Id": 1049 }, { - "Command": "Remove-PnPEventReceiver -Scope All", - "CommandName": "Remove-PnPEventReceiver", "Rank": 8, + "CommandName": "Remove-PnPEventReceiver", + "Command": "Remove-PnPEventReceiver -Scope All", "Id": 1050 }, { - "Command": "Remove-PnPField -Identity \"Speakers\"", - "CommandName": "Remove-PnPField", "Rank": 1, + "CommandName": "Remove-PnPField", + "Command": "Remove-PnPField -Identity \"Speakers\"", "Id": 1051 }, { - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Remove-PnPField", "Rank": 2, + "CommandName": "Remove-PnPField", + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Id": 1052 }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 1, + "CommandName": "Remove-PnPFieldFromContentType", + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Id": 1053 }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 2, + "CommandName": "Remove-PnPFieldFromContentType", + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Id": 1054 }, { - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile", "Rank": 1, + "CommandName": "Remove-PnPFile", + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Id": 1055 }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile", "Rank": 2, + "CommandName": "Remove-PnPFile", + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Id": 1056 }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "CommandName": "Remove-PnPFile", "Rank": 3, + "CommandName": "Remove-PnPFile", + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Id": 1057 }, { - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "CommandName": "Remove-PnPFileFromSiteTemplate", "Rank": 1, + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Id": 1058 }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Remove-PnPFileSharingLink", "Rank": 1, + "CommandName": "Remove-PnPFileSharingLink", + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 1059 }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "CommandName": "Remove-PnPFileSharingLink", "Rank": 2, + "CommandName": "Remove-PnPFileSharingLink", + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Id": 1060 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Remove-PnPFileVersion", "Rank": 1, + "CommandName": "Remove-PnPFileVersion", + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Id": 1061 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Remove-PnPFileVersion", "Rank": 2, + "CommandName": "Remove-PnPFileVersion", + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Id": 1062 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "CommandName": "Remove-PnPFileVersion", "Rank": 3, + "CommandName": "Remove-PnPFileVersion", + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Id": 1063 }, { - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "CommandName": "Remove-PnPFlowOwner", "Rank": 1, + "CommandName": "Remove-PnPFlowOwner", + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "Id": 1064 }, { - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "CommandName": "Remove-PnPFlowOwner", "Rank": 2, + "CommandName": "Remove-PnPFlowOwner", + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "Id": 1065 }, { - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", - "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", "Id": 1066 }, { - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "CommandName": "Remove-PnPFlowOwner", "Rank": 4, + "CommandName": "Remove-PnPFlowOwner", + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "Id": 1067 }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Remove-PnPFolder", "Rank": 1, + "CommandName": "Remove-PnPFolder", + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Id": 1068 }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "CommandName": "Remove-PnPFolder", "Rank": 2, + "CommandName": "Remove-PnPFolder", + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Id": 1069 }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 1, + "CommandName": "Remove-PnPFolderSharingLink", + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 1070 }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 2, + "CommandName": "Remove-PnPFolderSharingLink", + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Id": 1071 }, { - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "CommandName": "Remove-PnPGraphSubscription", "Rank": 1, + "CommandName": "Remove-PnPGraphSubscription", + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Id": 1072 }, { - "Command": "Remove-PnPGroup -Identity \"My Users\"", - "CommandName": "Remove-PnPGroup", "Rank": 1, + "CommandName": "Remove-PnPGroup", + "Command": "Remove-PnPGroup -Identity \"My Users\"", "Id": 1073 }, { - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Remove-PnPGroupMember", "Rank": 1, + "CommandName": "Remove-PnPGroupMember", + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Id": 1074 }, { - "Command": "Remove-PnPHomeSite", - "CommandName": "Remove-PnPHomeSite", "Rank": 1, + "CommandName": "Remove-PnPHomeSite", + "Command": "Remove-PnPHomeSite", "Id": 1075 }, { - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPHubSiteAssociation", "Rank": 1, + "CommandName": "Remove-PnPHubSiteAssociation", + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Id": 1076 }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 1, + "CommandName": "Remove-PnPHubToHubAssociation", + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Id": 1077 }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 2, + "CommandName": "Remove-PnPHubToHubAssociation", + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Id": 1078 }, { - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "CommandName": "Remove-PnPIndexedProperty", "Rank": 1, + "CommandName": "Remove-PnPIndexedProperty", + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Id": 1079 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Id": 1080 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Id": 1081 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 3, + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Id": 1082 }, { - "Command": "Remove-PnPJavaScriptLink -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 4, + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Scope Site", "Id": 1083 }, { - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 5, + "CommandName": "Remove-PnPJavaScriptLink", + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Id": 1084 }, { - "Command": "Remove-PnPKnowledgeHubSite", - "CommandName": "Remove-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Remove-PnPKnowledgeHubSite", + "Command": "Remove-PnPKnowledgeHubSite", "Id": 1085 }, { - "Command": "Remove-PnPList -Identity Announcements", - "CommandName": "Remove-PnPList", "Rank": 1, + "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements", "Id": 1086 }, { - "Command": "Remove-PnPList -Identity Announcements -Force", - "CommandName": "Remove-PnPList", "Rank": 2, + "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements -Force", "Id": 1087 }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle", - "CommandName": "Remove-PnPList", "Rank": 3, + "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements -Recycle", "Id": 1088 }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "CommandName": "Remove-PnPList", "Rank": 4, + "CommandName": "Remove-PnPList", + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Id": 1089 }, { - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPListDesign", "Rank": 1, + "CommandName": "Remove-PnPListDesign", + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1090 }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Remove-PnPListItem", "Rank": 1, + "CommandName": "Remove-PnPListItem", + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Id": 1091 }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "CommandName": "Remove-PnPListItem", "Rank": 2, + "CommandName": "Remove-PnPListItem", + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Id": 1092 }, { - "Command": "Remove-PnPListItem -List \"Demo List\"", - "CommandName": "Remove-PnPListItem", "Rank": 3, + "CommandName": "Remove-PnPListItem", + "Command": "Remove-PnPListItem -List \"Demo List\"", "Id": 1093 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 1, + "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Id": 1094 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 2, + "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "Id": 1095 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 3, + "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Id": 1096 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 4, + "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Id": 1097 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "CommandName": "Remove-PnPListItemAttachment", "Rank": 5, + "CommandName": "Remove-PnPListItemAttachment", + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Id": 1098 }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Remove-PnPListItemVersion", "Rank": 1, + "CommandName": "Remove-PnPListItemVersion", + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Id": 1099 }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Remove-PnPListItemVersion", "Rank": 2, + "CommandName": "Remove-PnPListItemVersion", + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Id": 1100 }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365Group", + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Id": 1101 }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365Group", + "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Id": 1102 }, { - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1103 }, { - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1104 }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Id": 1105 }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Id": 1106 }, { - "Command": "Remove-PnPNavigationNode -Identity 1032", - "CommandName": "Remove-PnPNavigationNode", "Rank": 1, + "CommandName": "Remove-PnPNavigationNode", + "Command": "Remove-PnPNavigationNode -Identity 1032", "Id": 1107 }, { - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "CommandName": "Remove-PnPNavigationNode", "Rank": 2, + "CommandName": "Remove-PnPNavigationNode", + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Id": 1108 }, { - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "CommandName": "Remove-PnPNavigationNode", "Rank": 3, + "CommandName": "Remove-PnPNavigationNode", + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Id": 1109 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Id": 1110 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 2, + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Id": 1111 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 3, + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Id": 1112 }, { - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Remove-PnPOrgNewsSite", + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Id": 1113 }, { - "Command": "Remove-PnPPage -Identity \"MyPage\"", - "CommandName": "Remove-PnPPage", "Rank": 1, + "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage -Identity \"MyPage\"", "Id": 1114 }, { - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "CommandName": "Remove-PnPPage", "Rank": 2, + "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Id": 1115 }, { - "Command": "Remove-PnPPage $page", - "CommandName": "Remove-PnPPage", "Rank": 3, + "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage $page", "Id": 1116 }, { - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "CommandName": "Remove-PnPPage", "Rank": 4, + "CommandName": "Remove-PnPPage", + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Id": 1117 }, { - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPPageComponent", "Rank": 1, + "CommandName": "Remove-PnPPageComponent", + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 1118 }, { - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "CommandName": "Remove-PnPPlannerBucket", "Rank": 1, + "CommandName": "Remove-PnPPlannerBucket", + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Id": 1119 }, { - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "CommandName": "Remove-PnPPlannerPlan", "Rank": 1, + "CommandName": "Remove-PnPPlannerPlan", + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Id": 1120 }, { - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Remove-PnPPlannerRoster", "Rank": 1, + "CommandName": "Remove-PnPPlannerRoster", + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Id": 1121 }, { - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Remove-PnPPlannerRosterMember", + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 1122 }, { - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "CommandName": "Remove-PnPPlannerTask", "Rank": 1, + "CommandName": "Remove-PnPPlannerTask", + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Id": 1123 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 1, + "CommandName": "Remove-PnPPropertyBagValue", + "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Id": 1124 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 2, + "CommandName": "Remove-PnPPropertyBagValue", + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Id": 1125 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 3, + "CommandName": "Remove-PnPPropertyBagValue", + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Id": 1126 }, { - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Remove-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Remove-PnPPublishingImageRendition", + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Id": 1127 }, { - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "CommandName": "Remove-PnPRoleDefinition", "Rank": 1, + "CommandName": "Remove-PnPRoleDefinition", + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Id": 1128 }, { - "Command": "Remove-PnPSdnProvider -Confirm:false", - "CommandName": "Remove-PnPSdnProvider", "Rank": 1, + "CommandName": "Remove-PnPSdnProvider", + "Command": "Remove-PnPSdnProvider -Confirm:false", "Id": 1129 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Id": 1130 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Id": 1131 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Id": 1132 }, { - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Remove-PnPSearchConfiguration", + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 1133 }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Id": 1134 }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 2, + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 1135 }, { - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Id": 1136 }, { - "Command": "Remove-PnPSiteCollectionTermStore", - "CommandName": "Remove-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Command": "Remove-PnPSiteCollectionTermStore", "Id": 1137 }, { - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesign", "Rank": 1, + "CommandName": "Remove-PnPSiteDesign", + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1138 }, { - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Remove-PnPSiteDesignTask", + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1139 }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Remove-PnPSiteGroup", "Rank": 1, + "CommandName": "Remove-PnPSiteGroup", + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1140 }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "CommandName": "Remove-PnPSiteGroup", "Rank": 2, + "CommandName": "Remove-PnPSiteGroup", + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Id": 1141 }, { - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteScript", "Rank": 1, + "CommandName": "Remove-PnPSiteScript", + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1142 }, { - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Remove-PnPSiteUserInvitations", "Rank": 1, + "CommandName": "Remove-PnPSiteUserInvitations", + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Id": 1143 }, { - "Command": "Remove-PnPStorageEntity -Key MyKey", - "CommandName": "Remove-PnPStorageEntity", "Rank": 1, + "CommandName": "Remove-PnPStorageEntity", + "Command": "Remove-PnPStorageEntity -Key MyKey", "Id": 1144 }, { - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Remove-PnPStorageEntity", "Rank": 2, + "CommandName": "Remove-PnPStorageEntity", + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Id": 1145 }, { - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "CommandName": "Remove-PnPStoredCredential", "Rank": 1, + "CommandName": "Remove-PnPStoredCredential", + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Id": 1146 }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 1, + "CommandName": "Remove-PnPTaxonomyItem", + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Id": 1147 }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 2, + "CommandName": "Remove-PnPTaxonomyItem", + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Id": 1148 }, { - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "CommandName": "Remove-PnPTeamsApp", "Rank": 1, + "CommandName": "Remove-PnPTeamsApp", + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Id": 1149 }, { - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "CommandName": "Remove-PnPTeamsApp", "Rank": 2, + "CommandName": "Remove-PnPTeamsApp", + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Id": 1150 }, { - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "CommandName": "Remove-PnPTeamsChannel", "Rank": 1, + "CommandName": "Remove-PnPTeamsChannel", + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Id": 1151 }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 1, + "CommandName": "Remove-PnPTeamsChannelUser", + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Id": 1152 }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 2, + "CommandName": "Remove-PnPTeamsChannelUser", + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Id": 1153 }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 3, + "CommandName": "Remove-PnPTeamsChannelUser", + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Id": 1154 }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "CommandName": "Remove-PnPTeamsTab", "Rank": 1, + "CommandName": "Remove-PnPTeamsTab", + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "Id": 1155 }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "CommandName": "Remove-PnPTeamsTab", "Rank": 2, + "CommandName": "Remove-PnPTeamsTab", + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "Id": 1156 }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", - "CommandName": "Remove-PnPTeamsTab", "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", "Id": 1157 }, { - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Remove-PnPTeamsTag", "Rank": 1, + "CommandName": "Remove-PnPTeamsTag", + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Id": 1158 }, { - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Remove-PnPTeamsTeam", "Rank": 1, + "CommandName": "Remove-PnPTeamsTeam", + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Id": 1159 }, { - "Command": "Remove-PnPTeamsTeam -Identity testteam", - "CommandName": "Remove-PnPTeamsTeam", "Rank": 2, + "CommandName": "Remove-PnPTeamsTeam", + "Command": "Remove-PnPTeamsTeam -Identity testteam", "Id": 1160 }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "CommandName": "Remove-PnPTeamsUser", "Rank": 1, + "CommandName": "Remove-PnPTeamsUser", + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Id": 1161 }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Remove-PnPTeamsUser", "Rank": 2, + "CommandName": "Remove-PnPTeamsUser", + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 1162 }, { - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Remove-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Remove-PnPTenantCdnOrigin", + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Id": 1163 }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 1, + "CommandName": "Remove-PnPTenantDeletedSite", + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1164 }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 2, + "CommandName": "Remove-PnPTenantDeletedSite", + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Id": 1165 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantSite", "Rank": 1, + "CommandName": "Remove-PnPTenantSite", + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1166 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "CommandName": "Remove-PnPTenantSite", "Rank": 2, + "CommandName": "Remove-PnPTenantSite", + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Id": 1167 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "CommandName": "Remove-PnPTenantSite", "Rank": 3, + "CommandName": "Remove-PnPTenantSite", + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Id": 1168 }, { - "Command": "Remove-PnPTenantSyncClientRestriction", - "CommandName": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Command": "Remove-PnPTenantSyncClientRestriction", "Id": 1169 }, { - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Remove-PnPTenantTheme", "Rank": 1, + "CommandName": "Remove-PnPTenantTheme", + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Id": 1170 }, { - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTerm", "Rank": 1, + "CommandName": "Remove-PnPTerm", + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Id": 1171 }, { - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTerm", "Rank": 2, + "CommandName": "Remove-PnPTerm", + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 1172 }, { - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTermGroup", "Rank": 1, + "CommandName": "Remove-PnPTermGroup", + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Id": 1173 }, { - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "CommandName": "Remove-PnPTermGroup", "Rank": 2, + "CommandName": "Remove-PnPTermGroup", + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Id": 1174 }, { - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "CommandName": "Remove-PnPTermGroup", "Rank": 3, + "CommandName": "Remove-PnPTermGroup", + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Id": 1175 }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "CommandName": "Remove-PnPTermLabel", "Rank": 1, + "CommandName": "Remove-PnPTermLabel", + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "Id": 1176 }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTermLabel", "Rank": 2, + "CommandName": "Remove-PnPTermLabel", + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 1177 }, { - "Command": "Remove-PnPUser -Identity 23", - "CommandName": "Remove-PnPUser", "Rank": 1, + "CommandName": "Remove-PnPUser", + "Command": "Remove-PnPUser -Identity 23", "Id": 1178 }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "CommandName": "Remove-PnPUser", "Rank": 2, + "CommandName": "Remove-PnPUser", + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "Id": 1179 }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "CommandName": "Remove-PnPUser", "Rank": 3, + "CommandName": "Remove-PnPUser", + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Id": 1180 }, { - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Remove-PnPUserInfo", "Rank": 1, + "CommandName": "Remove-PnPUserInfo", + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Id": 1181 }, { - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Remove-PnPUserProfile", "Rank": 1, + "CommandName": "Remove-PnPUserProfile", + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Id": 1182 }, { - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "CommandName": "Remove-PnPView", "Rank": 1, + "CommandName": "Remove-PnPView", + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Id": 1183 }, { - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Id": 1184 }, { - "Command": "Remove-PnPWeb -Identity projectA", - "CommandName": "Remove-PnPWeb", "Rank": 1, + "CommandName": "Remove-PnPWeb", + "Command": "Remove-PnPWeb -Identity projectA", "Id": 1185 }, { - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "CommandName": "Remove-PnPWeb", "Rank": 2, + "CommandName": "Remove-PnPWeb", + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Id": 1186 }, { - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "CommandName": "Remove-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Remove-PnPWebhookSubscription", + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Id": 1187 }, { - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPWebPart", "Rank": 1, + "CommandName": "Remove-PnPWebPart", + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 1188 }, { - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "CommandName": "Remove-PnPWebPart", "Rank": 2, + "CommandName": "Remove-PnPWebPart", + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Id": 1189 }, { - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "CommandName": "Remove-PnPWikiPage", "Rank": 1, + "CommandName": "Remove-PnPWikiPage", + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Id": 1190 }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile", "Rank": 1, + "CommandName": "Rename-PnPFile", + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Id": 1191 }, { - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile", "Rank": 2, + "CommandName": "Rename-PnPFile", + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Id": 1192 }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "CommandName": "Rename-PnPFile", "Rank": 3, + "CommandName": "Rename-PnPFile", + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Id": 1193 }, { - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "CommandName": "Rename-PnPFolder", "Rank": 1, + "CommandName": "Rename-PnPFolder", + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Id": 1194 }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Repair-PnPSite", "Rank": 1, + "CommandName": "Repair-PnPSite", + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1195 }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "CommandName": "Repair-PnPSite", "Rank": 2, + "CommandName": "Repair-PnPSite", + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Id": 1196 }, { - "Command": "Request-PnPAccessToken", - "CommandName": "Request-PnPAccessToken", "Rank": 1, + "CommandName": "Request-PnPAccessToken", + "Command": "Request-PnPAccessToken", "Id": 1197 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "CommandName": "Request-PnPAccessToken", "Rank": 2, + "CommandName": "Request-PnPAccessToken", + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Id": 1198 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "CommandName": "Request-PnPAccessToken", "Rank": 3, + "CommandName": "Request-PnPAccessToken", + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "Id": 1199 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "CommandName": "Request-PnPAccessToken", "Rank": 4, + "CommandName": "Request-PnPAccessToken", + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Id": 1200 }, { - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "CommandName": "Request-PnPPersonalSite", "Rank": 1, + "CommandName": "Request-PnPPersonalSite", + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Id": 1201 }, { - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "CommandName": "Request-PnPPersonalSite", "Rank": 2, + "CommandName": "Request-PnPPersonalSite", + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Id": 1202 }, { - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "CommandName": "Request-PnPReIndexList", "Rank": 1, + "CommandName": "Request-PnPReIndexList", + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Id": 1203 }, { - "Command": "Request-PnPReIndexWeb", - "CommandName": "Request-PnPReIndexWeb", "Rank": 1, + "CommandName": "Request-PnPReIndexWeb", + "Command": "Request-PnPReIndexWeb", "Id": 1204 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 1, + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Id": 1205 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 2, + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Id": 1206 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 3, + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Id": 1207 }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "CommandName": "Reset-PnPFileVersion", "Rank": 1, + "CommandName": "Reset-PnPFileVersion", + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Id": 1208 }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "CommandName": "Reset-PnPFileVersion", "Rank": 2, + "CommandName": "Reset-PnPFileVersion", + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Id": 1209 }, { - "Command": "Reset-PnPLabel -List \"Demo List\"", - "CommandName": "Reset-PnPLabel", "Rank": 1, + "CommandName": "Reset-PnPLabel", + "Command": "Reset-PnPLabel -List \"Demo List\"", "Id": 1210 }, { - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "CommandName": "Reset-PnPLabel", "Rank": 2, + "CommandName": "Reset-PnPLabel", + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Id": 1211 }, { - "Command": "Reset-PnPMicrosoft365GroupExpiration", - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Command": "Reset-PnPMicrosoft365GroupExpiration", "Id": 1212 }, { - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Rank": 1, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Id": 1213 }, { - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "CommandName": "Resolve-PnPFolder", "Rank": 1, + "CommandName": "Resolve-PnPFolder", + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Id": 1214 }, { - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 1215 }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion", "Rank": 1, + "CommandName": "Restore-PnPFileVersion", + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Id": 1216 }, { - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion", "Rank": 2, + "CommandName": "Restore-PnPFileVersion", + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Id": 1217 }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Restore-PnPFileVersion", "Rank": 3, + "CommandName": "Restore-PnPFileVersion", + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Id": 1218 }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Restore-PnPListItemVersion", "Rank": 1, + "CommandName": "Restore-PnPListItemVersion", + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Id": 1219 }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Restore-PnPListItemVersion", "Rank": 2, + "CommandName": "Restore-PnPListItemVersion", + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Id": 1220 }, { - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Restore-PnPRecycleBinItem", "Rank": 1, + "CommandName": "Restore-PnPRecycleBinItem", + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Id": 1221 }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1222 }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 2, + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Id": 1223 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantSite", "Rank": 1, + "CommandName": "Restore-PnPTenantSite", + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1224 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Restore-PnPTenantSite", "Rank": 2, + "CommandName": "Restore-PnPTenantSite", + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Id": 1225 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "CommandName": "Restore-PnPTenantSite", "Rank": 3, + "CommandName": "Restore-PnPTenantSite", + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Id": 1226 }, { - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "CommandName": "Revoke-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Id": 1227 }, { - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Revoke-PnPHubSiteRights", "Rank": 1, + "CommandName": "Revoke-PnPHubSiteRights", + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 1228 }, { - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Revoke-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Revoke-PnPSiteDesignRights", + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 1229 }, { - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Rank": 1, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Id": 1230 }, { - "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "CommandName": "Revoke-PnPUserSession", "Rank": 1, + "CommandName": "Revoke-PnPUserSession", + "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Id": 1231 }, { - "Command": "Save-PnPPageConversionLog", - "CommandName": "Save-PnPPageConversionLog", "Rank": 1, + "CommandName": "Save-PnPPageConversionLog", + "Command": "Save-PnPPageConversionLog", "Id": 1232 }, { - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "CommandName": "Save-PnPSiteTemplate", "Rank": 1, + "CommandName": "Save-PnPSiteTemplate", + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Id": 1233 }, { - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "CommandName": "Save-PnPTenantTemplate", "Rank": 1, + "CommandName": "Save-PnPTenantTemplate", + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Id": 1234 }, { - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "CommandName": "Send-PnPMail", "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": 1235 }, { - "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", "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", "Id": 1236 }, { - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "CommandName": "Send-PnPMail", "Rank": 3, + "CommandName": "Send-PnPMail", + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Id": 1237 }, { - "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", "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", "Id": 1238 }, { - "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", "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", "Id": 1239 }, { - "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", "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\"", "Id": 1240 }, { - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "CommandName": "Set-PnPAdaptiveScopeProperty", "Rank": 1, + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Id": 1241 }, { - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Set-PnPApplicationCustomizer", + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1242 }, { - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "CommandName": "Set-PnPApplicationCustomizer", "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`\"}\"", "Id": 1243 }, { - "Command": "Set-PnPAppSideLoading -On", - "CommandName": "Set-PnPAppSideLoading", "Rank": 1, + "CommandName": "Set-PnPAppSideLoading", + "Command": "Set-PnPAppSideLoading -On", "Id": 1244 }, { - "Command": "Set-PnPAppSideLoading -Off", - "CommandName": "Set-PnPAppSideLoading", "Rank": 2, + "CommandName": "Set-PnPAppSideLoading", + "Command": "Set-PnPAppSideLoading -Off", "Id": 1245 }, { - "Command": "Set-PnPAuditing -EnableAll", - "CommandName": "Set-PnPAuditing", "Rank": 1, + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -EnableAll", "Id": 1246 }, { - "Command": "Set-PnPAuditing -DisableAll", - "CommandName": "Set-PnPAuditing", "Rank": 2, + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -DisableAll", "Id": 1247 }, { - "Command": "Set-PnPAuditing -RetentionTime 7", - "CommandName": "Set-PnPAuditing", "Rank": 3, + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -RetentionTime 7", "Id": 1248 }, { - "Command": "Set-PnPAuditing -TrimAuditLog", - "CommandName": "Set-PnPAuditing", "Rank": 4, + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -TrimAuditLog", "Id": 1249 }, { - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "CommandName": "Set-PnPAuditing", "Rank": 5, + "CommandName": "Set-PnPAuditing", + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Id": 1250 }, { - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "CommandName": "Set-PnPAvailablePageLayouts", "Rank": 1, + "CommandName": "Set-PnPAvailablePageLayouts", + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Id": 1251 }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Set-PnPAzureADAppSitePermission", + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Id": 1252 }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Set-PnPAzureADAppSitePermission", + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Id": 1253 }, { - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup", "Rank": 1, + "CommandName": "Set-PnPAzureADGroup", + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Id": 1254 }, { - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup", "Rank": 2, + "CommandName": "Set-PnPAzureADGroup", + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Id": 1255 }, { - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPAzureADGroup", "Rank": 3, + "CommandName": "Set-PnPAzureADGroup", + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Id": 1256 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 1, + "CommandName": "Set-PnPBrowserIdleSignout", + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Id": 1257 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 2, + "CommandName": "Set-PnPBrowserIdleSignout", + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Id": 1258 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 3, + "CommandName": "Set-PnPBrowserIdleSignout", + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Id": 1259 }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 1, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Id": 1260 }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 2, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Id": 1261 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 1, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Id": 1262 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 2, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Id": 1263 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 3, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Id": 1264 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 4, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Id": 1265 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType", "Rank": 1, + "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Id": 1266 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "CommandName": "Set-PnPContentType", "Rank": 2, + "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Id": 1267 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType", "Rank": 3, + "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Id": 1268 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "CommandName": "Set-PnPContentType", "Rank": 4, + "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Id": 1269 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "CommandName": "Set-PnPContentType", "Rank": 5, + "CommandName": "Set-PnPContentType", + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Id": 1270 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 1, + "CommandName": "Set-PnPDefaultColumnValues", + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Id": 1271 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 2, + "CommandName": "Set-PnPDefaultColumnValues", + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Id": 1272 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 3, + "CommandName": "Set-PnPDefaultColumnValues", + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Id": 1273 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 4, + "CommandName": "Set-PnPDefaultColumnValues", + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Id": 1274 }, { - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "CommandName": "Set-PnPDefaultContentTypeToList", "Rank": 1, + "CommandName": "Set-PnPDefaultContentTypeToList", + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Id": 1275 }, { - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 1, + "CommandName": "Set-PnPDefaultPageLayout", + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Id": 1276 }, { - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 2, + "CommandName": "Set-PnPDefaultPageLayout", + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Id": 1277 }, { - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 3, + "CommandName": "Set-PnPDefaultPageLayout", + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Id": 1278 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 1, + "CommandName": "Set-PnPDisableSpacesActivation", + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Id": 1279 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 2, + "CommandName": "Set-PnPDisableSpacesActivation", + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Id": 1280 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 3, + "CommandName": "Set-PnPDisableSpacesActivation", + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Id": 1281 }, { - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "CommandName": "Set-PnPDocumentSetField", "Rank": 1, + "CommandName": "Set-PnPDocumentSetField", + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Id": 1282 }, { - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "CommandName": "Set-PnPDocumentSetField", "Rank": 2, + "CommandName": "Set-PnPDocumentSetField", + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Id": 1283 }, { - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "CommandName": "Set-PnPField", "Rank": 1, + "CommandName": "Set-PnPField", + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "Id": 1284 }, { - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "CommandName": "Set-PnPField", "Rank": 2, + "CommandName": "Set-PnPField", + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Id": 1285 }, { - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "CommandName": "Set-PnPField", "Rank": 3, + "CommandName": "Set-PnPField", + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Id": 1286 }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedIn", "Rank": 1, + "CommandName": "Set-PnPFileCheckedIn", + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Id": 1287 }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "CommandName": "Set-PnPFileCheckedIn", "Rank": 2, + "CommandName": "Set-PnPFileCheckedIn", + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Id": 1288 }, { - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedOut", "Rank": 1, + "CommandName": "Set-PnPFileCheckedOut", + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Id": 1289 }, { - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission", "Rank": 1, + "CommandName": "Set-PnPFolderPermission", + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Id": 1290 }, { - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission", "Rank": 2, + "CommandName": "Set-PnPFolderPermission", + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Id": 1291 }, { - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "CommandName": "Set-PnPFolderPermission", "Rank": 3, + "CommandName": "Set-PnPFolderPermission", + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Id": 1292 }, { - "Command": "Set-PnPFooter -Enabled:$true", - "CommandName": "Set-PnPFooter", "Rank": 1, + "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -Enabled:$true", "Id": 1293 }, { - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "CommandName": "Set-PnPFooter", "Rank": 2, + "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Id": 1294 }, { - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "CommandName": "Set-PnPFooter", "Rank": 3, + "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Id": 1295 }, { - "Command": "Set-PnPFooter -LogoUrl \"\"", - "CommandName": "Set-PnPFooter", "Rank": 4, + "CommandName": "Set-PnPFooter", + "Command": "Set-PnPFooter -LogoUrl \"\"", "Id": 1296 }, { - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "CommandName": "Set-PnPGraphSubscription", "Rank": 1, + "CommandName": "Set-PnPGraphSubscription", + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Id": 1297 }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "CommandName": "Set-PnPGroup", "Rank": 1, + "CommandName": "Set-PnPGroup", + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Id": 1298 }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "CommandName": "Set-PnPGroup", "Rank": 2, + "CommandName": "Set-PnPGroup", + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Id": 1299 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "CommandName": "Set-PnPGroupPermissions", "Rank": 1, + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Id": 1300 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "CommandName": "Set-PnPGroupPermissions", "Rank": 2, + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Id": 1301 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions", "Rank": 3, + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Id": 1302 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions", "Rank": 4, + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Id": 1303 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "CommandName": "Set-PnPGroupPermissions", "Rank": 5, + "CommandName": "Set-PnPGroupPermissions", + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Id": 1304 }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 1, + "CommandName": "Set-PnPHideDefaultThemes", + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Id": 1305 }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 2, + "CommandName": "Set-PnPHideDefaultThemes", + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Id": 1306 }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "CommandName": "Set-PnPHomePage", "Rank": 1, + "CommandName": "Set-PnPHomePage", + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Id": 1307 }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "CommandName": "Set-PnPHomePage", "Rank": 2, + "CommandName": "Set-PnPHomePage", + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Id": 1308 }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "CommandName": "Set-PnPHomeSite", "Rank": 1, + "CommandName": "Set-PnPHomeSite", + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Id": 1309 }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "CommandName": "Set-PnPHomeSite", "Rank": 2, + "CommandName": "Set-PnPHomeSite", + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Id": 1310 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "CommandName": "Set-PnPHubSite", "Rank": 1, + "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "Id": 1311 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "CommandName": "Set-PnPHubSite", "Rank": 2, + "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "Id": 1312 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "CommandName": "Set-PnPHubSite", "Rank": 3, + "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "Id": 1313 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "CommandName": "Set-PnPHubSite", "Rank": 4, + "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "Id": 1314 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "CommandName": "Set-PnPHubSite", "Rank": 5, + "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Id": 1315 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "CommandName": "Set-PnPHubSite", "Rank": 6, + "CommandName": "Set-PnPHubSite", + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Id": 1316 }, { - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "CommandName": "Set-PnPImageListItemColumn", "Rank": 1, + "CommandName": "Set-PnPImageListItemColumn", + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Id": 1317 }, { - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "CommandName": "Set-PnPImageListItemColumn", "Rank": 2, + "CommandName": "Set-PnPImageListItemColumn", + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Id": 1318 }, { - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "CommandName": "Set-PnPIndexedProperties", "Rank": 1, + "CommandName": "Set-PnPIndexedProperties", + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Id": 1319 }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 1, + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Id": 1320 }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 2, + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Id": 1321 }, { - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "CommandName": "Set-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Set-PnPKnowledgeHubSite", + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Id": 1322 }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "CommandName": "Set-PnPLabel", "Rank": 1, + "CommandName": "Set-PnPLabel", + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Id": 1323 }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "CommandName": "Set-PnPLabel", "Rank": 2, + "CommandName": "Set-PnPLabel", + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Id": 1324 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "CommandName": "Set-PnPList", "Rank": 1, + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Id": 1325 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "CommandName": "Set-PnPList", "Rank": 2, + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Id": 1326 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "CommandName": "Set-PnPList", "Rank": 3, + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Id": 1327 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "CommandName": "Set-PnPList", "Rank": 4, + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Id": 1328 }, { - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "CommandName": "Set-PnPList", "Rank": 5, + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Id": 1329 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "CommandName": "Set-PnPList", "Rank": 6, + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Id": 1330 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "CommandName": "Set-PnPList", "Rank": 7, + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Id": 1331 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPList", "Rank": 8, + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "Id": 1332 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "CommandName": "Set-PnPList", "Rank": 9, + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "Id": 1333 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "CommandName": "Set-PnPList", "Rank": 10, + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "Id": 1334 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "CommandName": "Set-PnPList", "Rank": 11, + "CommandName": "Set-PnPList", + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "Id": 1335 }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 1, + "CommandName": "Set-PnPListInformationRightsManagement", + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "Id": 1336 }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 2, + "CommandName": "Set-PnPListInformationRightsManagement", + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "Id": 1337 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", "Rank": 1, + "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 1338 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", "Rank": 2, + "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 1339 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", "Rank": 3, + "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 1340 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "CommandName": "Set-PnPListItem", "Rank": 4, + "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "Id": 1341 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "CommandName": "Set-PnPListItem", "Rank": 5, + "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "Id": 1342 }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Set-PnPListItemAsRecord", "Rank": 1, + "CommandName": "Set-PnPListItemAsRecord", + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Id": 1343 }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "CommandName": "Set-PnPListItemAsRecord", "Rank": 2, + "CommandName": "Set-PnPListItemAsRecord", + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "Id": 1344 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission", "Rank": 1, + "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "Id": 1345 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission", "Rank": 2, + "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "Id": 1346 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "CommandName": "Set-PnPListItemPermission", "Rank": 3, + "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Id": 1347 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "CommandName": "Set-PnPListItemPermission", "Rank": 4, + "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "Id": 1348 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "CommandName": "Set-PnPListItemPermission", "Rank": 5, + "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "Id": 1349 }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListPermission", "Rank": 1, + "CommandName": "Set-PnPListPermission", + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "Id": 1350 }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListPermission", "Rank": 2, + "CommandName": "Set-PnPListPermission", + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Id": 1351 }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 1, + "CommandName": "Set-PnPListRecordDeclaration", + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "Id": 1352 }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 2, + "CommandName": "Set-PnPListRecordDeclaration", + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "Id": 1353 }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", "Rank": 1, + "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Id": 1354 }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", "Rank": 2, + "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Id": 1355 }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", "Rank": 3, + "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Id": 1356 }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", "Rank": 4, + "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Id": 1357 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "Id": 1358 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "Id": 1359 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1360 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "Id": 1361 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "Id": 1362 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1363 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Id": 1364 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Id": 1365 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1366 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "Id": 1367 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "Id": 1368 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1369 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "Id": 1370 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "Id": 1371 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1372 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "Id": 1373 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "Id": 1374 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1375 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "Id": 1376 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Id": 1377 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "Id": 1378 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "Id": 1379 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "Id": 1380 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Id": 1381 }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "Id": 1382 }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "Id": 1383 }, { - "Command": "Set-PnPMinimalDownloadStrategy -Off", - "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 1, + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Command": "Set-PnPMinimalDownloadStrategy -Off", "Id": 1384 }, { - "Command": "Set-PnPMinimalDownloadStrategy -On", - "CommandName": "Set-PnPMinimalDownloadStrategy", "Rank": 2, + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Command": "Set-PnPMinimalDownloadStrategy -On", "Id": 1385 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "CommandName": "Set-PnPPage", "Rank": 1, + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Id": 1386 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "CommandName": "Set-PnPPage", "Rank": 2, + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Id": 1387 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "CommandName": "Set-PnPPage", "Rank": 3, + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Id": 1388 }, { - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "CommandName": "Set-PnPPage", "Rank": 4, + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Id": 1389 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "CommandName": "Set-PnPPage", "Rank": 5, + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Id": 1390 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "CommandName": "Set-PnPPage", "Rank": 6, + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "Id": 1391 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Set-PnPPage", "Rank": 7, + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "Id": 1392 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "CommandName": "Set-PnPPage", "Rank": 8, + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "Id": 1393 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Set-PnPPage", "Rank": 9, + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "Id": 1394 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Set-PnPPage", "Rank": 10, + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "Id": 1395 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "CommandName": "Set-PnPPage", "Rank": 11, + "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "Id": 1396 }, { - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "CommandName": "Set-PnPPageTextPart", "Rank": 1, + "CommandName": "Set-PnPPageTextPart", + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "Id": 1397 }, { - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "CommandName": "Set-PnPPageWebPart", "Rank": 1, + "CommandName": "Set-PnPPageWebPart", + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "Id": 1398 }, { - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "CommandName": "Set-PnPPageWebPart", "Rank": 2, + "CommandName": "Set-PnPPageWebPart", + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "Id": 1399 }, { - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "CommandName": "Set-PnPPlannerBucket", "Rank": 1, + "CommandName": "Set-PnPPlannerBucket", + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "Id": 1400 }, { - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 1, + "CommandName": "Set-PnPPlannerConfiguration", + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "Id": 1401 }, { - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 2, + "CommandName": "Set-PnPPlannerConfiguration", + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "Id": 1402 }, { - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "CommandName": "Set-PnPPlannerPlan", "Rank": 1, + "CommandName": "Set-PnPPlannerPlan", + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "Id": 1403 }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "CommandName": "Set-PnPPlannerTask", "Rank": 1, + "CommandName": "Set-PnPPlannerTask", + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "Id": 1404 }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "CommandName": "Set-PnPPlannerTask", "Rank": 2, + "CommandName": "Set-PnPPlannerTask", + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "Id": 1405 }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "CommandName": "Set-PnPPlannerTask", "Rank": 3, + "CommandName": "Set-PnPPlannerTask", + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Id": 1406 }, { - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPPlannerUserPolicy", "Rank": 1, + "CommandName": "Set-PnPPlannerUserPolicy", + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Id": 1407 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "CommandName": "Set-PnPPropertyBagValue", "Rank": 1, + "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Id": 1408 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "CommandName": "Set-PnPPropertyBagValue", "Rank": 2, + "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Id": 1409 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "CommandName": "Set-PnPPropertyBagValue", "Rank": 3, + "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "Id": 1410 }, { - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 1, + "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Id": 1411 }, { - "Command": "Set-PnPRequestAccessEmails -Disabled", - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 2, + "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Disabled", "Id": 1412 }, { - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 3, + "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "Id": 1413 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "CommandName": "Set-PnPRoleDefinition", "Rank": 1, + "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Id": 1414 }, { - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "CommandName": "Set-PnPRoleDefinition", "Rank": 2, + "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Id": 1415 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "CommandName": "Set-PnPRoleDefinition", "Rank": 3, + "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Id": 1416 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "CommandName": "Set-PnPRoleDefinition", "Rank": 4, + "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "Id": 1417 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config", - "CommandName": "Set-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config", "Id": 1418 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Set-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Id": 1419 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Id": 1420 }, { - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 1421 }, { - "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", "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", "Id": 1422 }, { - "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", "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\"", "Id": 1423 }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "CommandName": "Set-PnPSearchSettings", "Rank": 1, + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Id": 1424 }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "CommandName": "Set-PnPSearchSettings", "Rank": 2, + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Id": 1425 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "CommandName": "Set-PnPSearchSettings", "Rank": 3, + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Id": 1426 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "CommandName": "Set-PnPSearchSettings", "Rank": 4, + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Id": 1427 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "CommandName": "Set-PnPSearchSettings", "Rank": 5, + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "Id": 1428 }, { - "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "CommandName": "Set-PnPSearchSettings", "Rank": 6, + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchScope Tenant", "Id": 1429 }, { - "Command": "Set-PnPSearchSettings -SearchScope Hub", - "CommandName": "Set-PnPSearchSettings", "Rank": 7, + "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchScope Hub", "Id": 1430 }, { - "Command": "Set-PnPSite -Classification \"HBI\"", - "CommandName": "Set-PnPSite", "Rank": 1, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -Classification \"HBI\"", "Id": 1431 }, { - "Command": "Set-PnPSite -Classification $null", - "CommandName": "Set-PnPSite", "Rank": 2, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -Classification $null", "Id": 1432 }, { - "Command": "Set-PnPSite -DisableFlows", - "CommandName": "Set-PnPSite", "Rank": 3, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -DisableFlows", "Id": 1433 }, { - "Command": "Set-PnPSite -DisableFlows:$false", - "CommandName": "Set-PnPSite", "Rank": 4, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -DisableFlows:$false", "Id": 1434 }, { - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "CommandName": "Set-PnPSite", "Rank": 5, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "Id": 1435 }, { - "Command": "Set-PnPSite -NoScriptSite $false", - "CommandName": "Set-PnPSite", "Rank": 6, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -NoScriptSite $false", "Id": 1436 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPSite", "Rank": 7, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "Id": 1437 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "CommandName": "Set-PnPSite", "Rank": 8, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "Id": 1438 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "CommandName": "Set-PnPSite", "Rank": 9, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "Id": 1439 }, { - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "CommandName": "Set-PnPSite", "Rank": 10, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "Id": 1440 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "CommandName": "Set-PnPSite", "Rank": 11, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "Id": 1441 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "CommandName": "Set-PnPSite", "Rank": 12, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "Id": 1442 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "CommandName": "Set-PnPSite", "Rank": 13, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "Id": 1443 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", "Rank": 14, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "Id": 1444 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", "Rank": 15, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "Id": 1445 }, { - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "CommandName": "Set-PnPSite", "Rank": 16, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "Id": 1446 }, { - "Command": "Set-PnPSite -CancelVPForExistingLibs", - "CommandName": "Set-PnPSite", "Rank": 17, + "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -CancelVPForExistingLibs", "Id": 1447 }, { - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "CommandName": "Set-PnPSiteClassification", "Rank": 1, + "CommandName": "Set-PnPSiteClassification", + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "Id": 1448 }, { - "Command": "Set-PnPSiteClosure -State Open", - "CommandName": "Set-PnPSiteClosure", "Rank": 1, + "CommandName": "Set-PnPSiteClosure", + "Command": "Set-PnPSiteClosure -State Open", "Id": 1449 }, { - "Command": "Set-PnPSiteClosure -State Closed", - "CommandName": "Set-PnPSiteClosure", "Rank": 2, + "CommandName": "Set-PnPSiteClosure", + "Command": "Set-PnPSiteClosure -State Closed", "Id": 1450 }, { - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "CommandName": "Set-PnPSiteDesign", "Rank": 1, + "CommandName": "Set-PnPSiteDesign", + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "Id": 1451 }, { - "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", "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\"", "Id": 1452 }, { - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "CommandName": "Set-PnPSiteGroup", "Rank": 1, + "CommandName": "Set-PnPSiteGroup", + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "Id": 1453 }, { - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "CommandName": "Set-PnPSiteGroup", "Rank": 2, + "CommandName": "Set-PnPSiteGroup", + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "Id": 1454 }, { - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Set-PnPSitePolicy", "Rank": 1, + "CommandName": "Set-PnPSitePolicy", + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "Id": 1455 }, { - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScript", "Rank": 1, + "CommandName": "Set-PnPSiteScript", + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Id": 1456 }, { - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScriptPackage", "Rank": 1, + "CommandName": "Set-PnPSiteScriptPackage", + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Id": 1457 }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 1, + "CommandName": "Set-PnPSiteSensitivityLabel", + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Id": 1458 }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 2, + "CommandName": "Set-PnPSiteSensitivityLabel", + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "Id": 1459 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 1, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "Id": 1460 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 2, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "Id": 1461 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 3, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Id": 1462 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 4, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Id": 1463 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 5, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Id": 1464 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 6, + "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Id": 1465 }, { - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity", "Rank": 1, + "CommandName": "Set-PnPStorageEntity", + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Id": 1466 }, { - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity", "Rank": 2, + "CommandName": "Set-PnPStorageEntity", + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Id": 1467 }, { - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 1468 }, { - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 1469 }, { - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 1470 }, { - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 1471 }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 1, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "Id": 1472 }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Rank": 2, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "Id": 1473 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 1, + "CommandName": "Set-PnPTaxonomyFieldValue", + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "Id": 1474 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 2, + "CommandName": "Set-PnPTaxonomyFieldValue", + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "Id": 1475 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 3, + "CommandName": "Set-PnPTaxonomyFieldValue", + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "Id": 1476 }, { - "Command": "Set-PnPTeamifyPromptHidden", - "CommandName": "Set-PnPTeamifyPromptHidden", "Rank": 1, + "CommandName": "Set-PnPTeamifyPromptHidden", + "Command": "Set-PnPTeamifyPromptHidden", "Id": 1477 }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "CommandName": "Set-PnPTeamsChannel", "Rank": 1, + "CommandName": "Set-PnPTeamsChannel", + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Id": 1478 }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "CommandName": "Set-PnPTeamsChannel", "Rank": 2, + "CommandName": "Set-PnPTeamsChannel", + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Id": 1479 }, { - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 1, + "CommandName": "Set-PnpTeamsChannelUser", + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Id": 1480 }, { - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 2, + "CommandName": "Set-PnpTeamsChannelUser", + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Id": 1481 }, { - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "CommandName": "Set-PnPTeamsTab", "Rank": 1, + "CommandName": "Set-PnPTeamsTab", + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Id": 1482 }, { - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "CommandName": "Set-PnPTeamsTag", "Rank": 1, + "CommandName": "Set-PnPTeamsTag", + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "Id": 1483 }, { - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "CommandName": "Set-PnPTeamsTeam", "Rank": 1, + "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Id": 1484 }, { - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "CommandName": "Set-PnPTeamsTeam", "Rank": 2, + "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Id": 1485 }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "CommandName": "Set-PnPTeamsTeam", "Rank": 3, + "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Id": 1486 }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "CommandName": "Set-PnPTeamsTeam", "Rank": 4, + "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "Id": 1487 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 1, + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Id": 1488 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 2, + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Id": 1489 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 3, + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "Id": 1490 }, { - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "CommandName": "Set-PnPTeamsTeamPicture", "Rank": 1, + "CommandName": "Set-PnPTeamsTeamPicture", + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "Id": 1491 }, { - "Command": "Set-PnPTemporarilyDisableAppBar $true", - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 1, + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Command": "Set-PnPTemporarilyDisableAppBar $true", "Id": 1492 }, { - "Command": "Set-PnPTemporarilyDisableAppBar $false", - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 2, + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Command": "Set-PnPTemporarilyDisableAppBar $false", "Id": 1493 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", - "CommandName": "Set-PnPTenant", "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\"", "Id": 1494 }, { - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "CommandName": "Set-PnPTenant", "Rank": 2, + "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Id": 1495 }, { - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "CommandName": "Set-PnPTenant", "Rank": 3, + "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Id": 1496 }, { - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "CommandName": "Set-PnPTenant", "Rank": 4, + "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Id": 1497 }, { - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "CommandName": "Set-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Id": 1498 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 1, + "CommandName": "Set-PnPTenantCdnEnabled", + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "Id": 1499 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 2, + "CommandName": "Set-PnPTenantCdnEnabled", + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "Id": 1500 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 3, + "CommandName": "Set-PnPTenantCdnEnabled", + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "Id": 1501 }, { - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", - "CommandName": "Set-PnPTenantCdnPolicy", "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\"", "Id": 1502 }, { - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 2, + "CommandName": "Set-PnPTenantCdnPolicy", + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Id": 1503 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "CommandName": "Set-PnPTenantSite", "Rank": 1, + "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "Id": 1504 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "CommandName": "Set-PnPTenantSite", "Rank": 2, + "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "Id": 1505 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPTenantSite", "Rank": 3, + "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "Id": 1506 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Set-PnPTenantSite", "Rank": 4, + "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 1507 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "CommandName": "Set-PnPTenantSite", "Rank": 5, + "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "Id": 1508 }, { - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Id": 1509 }, { - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 2, + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Id": 1510 }, { - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "CommandName": "Set-PnPTerm", "Rank": 1, + "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "Id": 1511 }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm", "Rank": 2, + "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Id": 1512 }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm", "Rank": 3, + "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "Id": 1513 }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "CommandName": "Set-PnPTerm", "Rank": 4, + "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "Id": 1514 }, { - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "CommandName": "Set-PnPTermGroup", "Rank": 1, + "CommandName": "Set-PnPTermGroup", + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "Id": 1515 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "CommandName": "Set-PnPTermSet", "Rank": 1, + "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "Id": 1516 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "CommandName": "Set-PnPTermSet", "Rank": 2, + "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "Id": 1517 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "CommandName": "Set-PnPTermSet", "Rank": 3, + "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "Id": 1518 }, { - "Command": "Set-PnPTheme", - "CommandName": "Set-PnPTheme", "Rank": 1, + "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme", "Id": 1519 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "CommandName": "Set-PnPTheme", "Rank": 2, + "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Id": 1520 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "CommandName": "Set-PnPTheme", "Rank": 3, + "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "Id": 1521 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "CommandName": "Set-PnPTheme", "Rank": 4, + "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "Id": 1522 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "CommandName": "Set-PnPTraceLog", "Rank": 1, + "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "Id": 1523 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "CommandName": "Set-PnPTraceLog", "Rank": 2, + "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "Id": 1524 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "CommandName": "Set-PnPTraceLog", "Rank": 3, + "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "Id": 1525 }, { - "Command": "Set-PnPTraceLog -Off", - "CommandName": "Set-PnPTraceLog", "Rank": 4, + "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -Off", "Id": 1526 }, { - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "CommandName": "Set-PnPUserOneDriveQuota", "Rank": 1, + "CommandName": "Set-PnPUserOneDriveQuota", + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "Id": 1527 }, { - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "CommandName": "Set-PnPUserProfileProperty", "Rank": 1, + "CommandName": "Set-PnPUserProfileProperty", + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "Id": 1528 }, { - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "CommandName": "Set-PnPUserProfileProperty", "Rank": 2, + "CommandName": "Set-PnPUserProfileProperty", + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "Id": 1529 }, { - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "CommandName": "Set-PnPView", "Rank": 1, + "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "Id": 1530 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "CommandName": "Set-PnPView", "Rank": 2, + "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "Id": 1531 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "CommandName": "Set-PnPView", "Rank": 3, + "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "Id": 1532 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "CommandName": "Set-PnPView", "Rank": 4, + "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "Id": 1533 }, { - "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", "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", "Id": 1534 }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 2, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "Id": 1535 }, { - "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", "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", "Id": 1536 }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 4, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "Id": 1537 }, { - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "CommandName": "Set-PnPWeb", "Rank": 1, + "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Id": 1538 }, { - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "CommandName": "Set-PnPWeb", "Rank": 2, + "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Id": 1539 }, { - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "CommandName": "Set-PnPWeb", "Rank": 3, + "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "Id": 1540 }, { - "Command": "Set-PnPWeb -NoCrawl:$true", - "CommandName": "Set-PnPWeb", "Rank": 4, + "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -NoCrawl:$true", "Id": 1541 }, { - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "CommandName": "Set-PnPWebHeader", "Rank": 1, + "CommandName": "Set-PnPWebHeader", + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "Id": 1542 }, { - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "CommandName": "Set-PnPWebHeader", "Rank": 2, + "CommandName": "Set-PnPWebHeader", + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "Id": 1543 }, { - "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "CommandName": "Set-PnPWebHeader", "Rank": 3, + "CommandName": "Set-PnPWebHeader", + "Command": "Set-PnPWebHeader -LogoAlignment Middle", "Id": 1544 }, { - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "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", "Id": 1545 }, { - "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", "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\"", "Id": 1546 }, { - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", - "CommandName": "Set-PnPWebPartProperty", "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\"", "Id": 1547 }, { - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", "Rank": 1, + "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Id": 1548 }, { - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", "Rank": 2, + "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Id": 1549 }, { - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", "Rank": 3, + "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Id": 1550 }, { - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "CommandName": "Set-PnPWebPermission", "Rank": 4, + "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Id": 1551 }, { - "Command": "Set-PnPWebTheme -Theme MyTheme", - "CommandName": "Set-PnPWebTheme", "Rank": 1, + "CommandName": "Set-PnPWebTheme", + "Command": "Set-PnPWebTheme -Theme MyTheme", "Id": 1552 }, { - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "CommandName": "Set-PnPWebTheme", "Rank": 2, + "CommandName": "Set-PnPWebTheme", + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Id": 1553 }, { - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "CommandName": "Set-PnPWikiPageContent", "Rank": 1, + "CommandName": "Set-PnPWikiPageContent", + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "Id": 1554 }, { - "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "CommandName": "Submit-PnPSearchQuery", "Rank": 1, + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Id": 1555 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "CommandName": "Submit-PnPSearchQuery", "Rank": 2, + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Id": 1556 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "CommandName": "Submit-PnPSearchQuery", "Rank": 3, + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "Id": 1557 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "CommandName": "Submit-PnPSearchQuery", "Rank": 4, + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "Id": 1558 }, { - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "CommandName": "Submit-PnPSearchQuery", "Rank": 5, + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "Id": 1559 }, { - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", - "CommandName": "Submit-PnPSearchQuery", "Rank": 6, + "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", "Id": 1560 }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 1, + "CommandName": "Submit-PnPTeamsChannelMessage", + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "Id": 1561 }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 2, + "CommandName": "Submit-PnPTeamsChannelMessage", + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "Id": 1562 }, { - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Sync-PnPAppToTeams", "Rank": 1, + "CommandName": "Sync-PnPAppToTeams", + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1563 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 1, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Id": 1564 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 2, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "Id": 1565 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 3, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "Id": 1566 }, { - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "CommandName": "Test-PnPListItemIsRecord", "Rank": 1, + "CommandName": "Test-PnPListItemIsRecord", + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "Id": 1567 }, { - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Rank": 1, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "Id": 1568 }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Test-PnPSite", "Rank": 1, + "CommandName": "Test-PnPSite", + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1569 }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "CommandName": "Test-PnPSite", "Rank": 2, + "CommandName": "Test-PnPSite", + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Id": 1570 }, { - "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "CommandName": "Test-PnPTenantTemplate", "Rank": 1, + "CommandName": "Test-PnPTenantTemplate", + "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Id": 1571 }, { - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "CommandName": "Undo-PnPFileCheckedOut", "Rank": 1, + "CommandName": "Undo-PnPFileCheckedOut", + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "Id": 1572 }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Uninstall-PnPApp", "Rank": 1, + "CommandName": "Uninstall-PnPApp", + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1573 }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Uninstall-PnPApp", "Rank": 2, + "CommandName": "Uninstall-PnPApp", + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1574 }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Unpublish-PnPApp", "Rank": 1, + "CommandName": "Unpublish-PnPApp", + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1575 }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Unpublish-PnPApp", "Rank": 2, + "CommandName": "Unpublish-PnPApp", + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1576 }, { - "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "CommandName": "Unpublish-PnPContentType", "Rank": 1, + "CommandName": "Unpublish-PnPContentType", + "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Id": 1577 }, { - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Unpublish-PnPSyntexModel", "Rank": 1, + "CommandName": "Unpublish-PnPSyntexModel", + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Id": 1578 }, { - "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", "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", "Id": 1579 }, { - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Unregister-PnPHubSite", "Rank": 1, + "CommandName": "Unregister-PnPHubSite", + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Id": 1580 }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Update-PnPApp", "Rank": 1, + "CommandName": "Update-PnPApp", + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1581 }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Update-PnPApp", "Rank": 2, + "CommandName": "Update-PnPApp", + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1582 }, { - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Id": 1583 }, { - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Id": 1584 }, { - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 3, + "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "Id": 1585 }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 1, + "CommandName": "Update-PnPSiteDesignFromWeb", + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "Id": 1586 }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 2, + "CommandName": "Update-PnPSiteDesignFromWeb", + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Id": 1587 }, { - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 3, + "CommandName": "Update-PnPSiteDesignFromWeb", + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "Id": 1588 }, { - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "CommandName": "Update-PnPTeamsApp", "Rank": 1, + "CommandName": "Update-PnPTeamsApp", + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "Id": 1589 }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Update-PnPTeamsUser", "Rank": 1, + "CommandName": "Update-PnPTeamsUser", + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 1590 }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Update-PnPTeamsUser", "Rank": 2, + "CommandName": "Update-PnPTeamsUser", + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Id": 1591 }, { - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "CommandName": "Update-PnPTeamsUser", "Rank": 3, + "CommandName": "Update-PnPTeamsUser", + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "Id": 1592 }, { - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "CommandName": "Update-PnPUserType", "Rank": 1, + "CommandName": "Update-PnPUserType", + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Id": 1593 } ] diff --git a/version.txt b/version.txt index 19f639650..c1feb98f4 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.116 \ No newline at end of file +2.2.117 \ No newline at end of file From c235adbe8ae44ec7677ef216835e50e956d899db Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Fri, 3 Nov 2023 02:38:11 +0000 Subject: [PATCH 127/146] Nightly publish to PowerShell Gallery --- pnpcoresdk_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 3186 ++++++++--------- version.txt | 2 +- 3 files changed, 1595 insertions(+), 1595 deletions(-) diff --git a/pnpcoresdk_hash.txt b/pnpcoresdk_hash.txt index d86c8a884..8d847c492 100644 --- a/pnpcoresdk_hash.txt +++ b/pnpcoresdk_hash.txt @@ -1 +1 @@ -c3a4336b6a2b983a273514b87248a868a78a855b \ No newline at end of file +630ac53edb5e1cb906016ad0b325816d2c16f446 \ 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 4f66282ca..2a78db498 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9560 +1,9560 @@ [ { "Rank": 1, - "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -List \"Demo List\"", + "CommandName": "Add-PnPAlert", "Id": 1 }, { "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)", + "CommandName": "Add-PnPAlert", "Id": 2 }, { "Rank": 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", "Id": 3 }, { "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))", + "CommandName": "Add-PnPAlert", "Id": 4 }, { "Rank": 1, - "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg", + "CommandName": "Add-PnPApp", "Id": 5 }, { "Rank": 2, - "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "CommandName": "Add-PnPApp", "Id": 6 }, { "Rank": 3, - "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "CommandName": "Add-PnPApp", "Id": 7 }, { "Rank": 4, - "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "CommandName": "Add-PnPApp", "Id": 8 }, { "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`\"}", + "CommandName": "Add-PnPApplicationCustomizer", "Id": 9 }, { "Rank": 1, - "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "CommandName": "Add-PnPAvailableSiteClassification", "Id": 10 }, { "Rank": 2, - "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "CommandName": "Add-PnPAvailableSiteClassification", "Id": 11 }, { "Rank": 1, - "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPAzureADGroupMember", "Id": 12 }, { "Rank": 2, - "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPAzureADGroupMember", "Id": 13 }, { "Rank": 3, - "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "CommandName": "Add-PnPAzureADGroupMember", "Id": 14 }, { "Rank": 1, - "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPAzureADGroupOwner", "Id": 15 }, { "Rank": 2, - "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPAzureADGroupOwner", "Id": 16 }, { "Rank": 3, - "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "CommandName": "Add-PnPAzureADGroupOwner", "Id": 17 }, { "Rank": 1, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Id": 18 }, { "Rank": 2, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Id": 19 }, { "Rank": 1, - "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", + "CommandName": "Add-PnPContentType", "Id": 20 }, { "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\"", + "CommandName": "Add-PnPContentType", "Id": 21 }, { "Rank": 3, - "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", + "CommandName": "Add-PnPContentType", "Id": 22 }, { "Rank": 4, - "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\"", + "CommandName": "Add-PnPContentType", "Id": 23 }, { "Rank": 5, - "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", + "CommandName": "Add-PnPContentType", "Id": 24 }, { "Rank": 1, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 25 }, { "Rank": 2, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 26 }, { "Rank": 1, - "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 27 }, { "Rank": 2, - "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 28 }, { "Rank": 1, - "CommandName": "Add-PnPContentTypeToList", "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "CommandName": "Add-PnPContentTypeToList", "Id": 29 }, { "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`\"}\"", + "CommandName": "Add-PnPCustomAction", "Id": 30 }, { "Rank": 1, - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 31 }, { "Rank": 2, - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 32 }, { "Rank": 1, - "CommandName": "Add-PnPDocumentSet", "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "CommandName": "Add-PnPDocumentSet", "Id": 33 }, { "Rank": 1, - "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", + "CommandName": "Add-PnPEventReceiver", "Id": 34 }, { "Rank": 2, - "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", + "CommandName": "Add-PnPEventReceiver", "Id": 35 }, { "Rank": 3, - "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", + "CommandName": "Add-PnPEventReceiver", "Id": 36 }, { "Rank": 4, - "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", + "CommandName": "Add-PnPEventReceiver", "Id": 37 }, { "Rank": 1, - "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "CommandName": "Add-PnPField", "Id": 38 }, { "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\"", + "CommandName": "Add-PnPField", "Id": 39 }, { "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\"", + "CommandName": "Add-PnPField", "Id": 40 }, { "Rank": 4, - "CommandName": "Add-PnPField", "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "CommandName": "Add-PnPField", "Id": 41 }, { "Rank": 5, - "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", + "CommandName": "Add-PnPField", "Id": 42 }, { "Rank": 6, - "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "CommandName": "Add-PnPField", "Id": 43 }, { "Rank": 1, - "CommandName": "Add-PnPFieldToContentType", "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "CommandName": "Add-PnPFieldToContentType", "Id": 44 }, { "Rank": 1, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "CommandName": "Add-PnPFile", "Id": 45 }, { "Rank": 2, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "CommandName": "Add-PnPFile", "Id": 46 }, { "Rank": 3, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "CommandName": "Add-PnPFile", "Id": 47 }, { "Rank": 4, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", + "CommandName": "Add-PnPFile", "Id": 48 }, { "Rank": 5, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", + "CommandName": "Add-PnPFile", "Id": 49 }, { "Rank": 6, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", + "CommandName": "Add-PnPFile", "Id": 50 }, { "Rank": 7, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "CommandName": "Add-PnPFile", "Id": 51 }, { "Rank": 8, - "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "CommandName": "Add-PnPFile", "Id": 52 }, { "Rank": 1, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 53 }, { "Rank": 2, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", + "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 54 }, { "Rank": 3, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", + "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 55 }, { "Rank": 1, - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Id": 56 }, { "Rank": 2, - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Id": 57 }, { "Rank": 1, - "CommandName": "Add-PnPFileSharingInvite", "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "CommandName": "Add-PnPFileSharingInvite", "Id": 58 }, { "Rank": 2, - "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", "Id": 59 }, { "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)", + "CommandName": "Add-PnPFileSharingInvite", "Id": 60 }, { "Rank": 1, - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 61 }, { "Rank": 2, - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 62 }, { "Rank": 3, - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 63 }, { "Rank": 4, - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 64 }, { "Rank": 5, - "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "CommandName": "Add-PnPFileToSiteTemplate", "Id": 65 }, { "Rank": 1, - "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", "Id": 66 }, { "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\"", + "CommandName": "Add-PnPFileUserSharingLink", "Id": 67 }, { "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", + "CommandName": "Add-PnPFlowOwner", "Id": 68 }, { "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", + "CommandName": "Add-PnPFlowOwner", "Id": 69 }, { "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", + "CommandName": "Add-PnPFlowOwner", "Id": 70 }, { "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", + "CommandName": "Add-PnPFlowOwner", "Id": 71 }, { "Rank": 1, - "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "CommandName": "Add-PnPFolder", "Id": 72 }, { "Rank": 2, - "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "CommandName": "Add-PnPFolder", "Id": 73 }, { "Rank": 3, - "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "CommandName": "Add-PnPFolder", "Id": 74 }, { "Rank": 1, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 75 }, { "Rank": 2, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 76 }, { "Rank": 3, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 77 }, { "Rank": 1, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 78 }, { "Rank": 2, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 79 }, { "Rank": 1, - "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "CommandName": "Add-PnPFolderSharingInvite", "Id": 80 }, { "Rank": 2, - "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "CommandName": "Add-PnPFolderSharingInvite", "Id": 81 }, { "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)", + "CommandName": "Add-PnPFolderSharingInvite", "Id": 82 }, { "Rank": 1, - "CommandName": "Add-PnPFolderUserSharingLink", "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPFolderUserSharingLink", "Id": 83 }, { "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\"", + "CommandName": "Add-PnPFolderUserSharingLink", "Id": 84 }, { "Rank": 1, - "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "CommandName": "Add-PnPGroupMember", "Id": 85 }, { "Rank": 2, - "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "CommandName": "Add-PnPGroupMember", "Id": 86 }, { "Rank": 1, - "CommandName": "Add-PnPHtmlPublishingPageLayout", "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "CommandName": "Add-PnPHtmlPublishingPageLayout", "Id": 87 }, { "Rank": 1, - "CommandName": "Add-PnPHubSiteAssociation", "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", + "CommandName": "Add-PnPHubSiteAssociation", "Id": 88 }, { "Rank": 1, - "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "CommandName": "Add-PnPHubToHubAssociation", "Id": 89 }, { "Rank": 2, - "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", + "CommandName": "Add-PnPHubToHubAssociation", "Id": 90 }, { "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\"", + "CommandName": "Add-PnPHubToHubAssociation", "Id": 91 }, { "Rank": 1, - "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "CommandName": "Add-PnPJavaScriptBlock", "Id": 92 }, { "Rank": 2, - "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "CommandName": "Add-PnPJavaScriptBlock", "Id": 93 }, { "Rank": 1, - "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", + "CommandName": "Add-PnPJavaScriptLink", "Id": 94 }, { "Rank": 2, - "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "CommandName": "Add-PnPJavaScriptLink", "Id": 95 }, { "Rank": 1, - "CommandName": "Add-PnPListDesign", "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "CommandName": "Add-PnPListDesign", "Id": 96 }, { "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\"", + "CommandName": "Add-PnPListDesign", "Id": 97 }, { "Rank": 1, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 98 }, { "Rank": 2, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 99 }, { "Rank": 3, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 100 }, { "Rank": 1, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Add-PnPListItem", "Id": 101 }, { "Rank": 2, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Add-PnPListItem", "Id": 102 }, { "Rank": 3, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "CommandName": "Add-PnPListItem", "Id": 103 }, { "Rank": 4, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", + "CommandName": "Add-PnPListItem", "Id": 104 }, { "Rank": 5, - "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "CommandName": "Add-PnPListItem", "Id": 105 }, { "Rank": 1, - "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", + "CommandName": "Add-PnPListItemAttachment", "Id": 106 }, { "Rank": 2, - "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", + "CommandName": "Add-PnPListItemAttachment", "Id": 107 }, { "Rank": 3, - "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "CommandName": "Add-PnPListItemAttachment", "Id": 108 }, { "Rank": 1, - "CommandName": "Add-PnPListItemComment", "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "CommandName": "Add-PnPListItemComment", "Id": 109 }, { "Rank": 1, - "CommandName": "Add-PnPMasterPage", "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "CommandName": "Add-PnPMasterPage", "Id": 110 }, { "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPMicrosoft365GroupMember", "Id": 111 }, { "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPMicrosoft365GroupMember", "Id": 112 }, { "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPMicrosoft365GroupOwner", "Id": 113 }, { "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPMicrosoft365GroupOwner", "Id": 114 }, { "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 115 }, { "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 116 }, { "Rank": 3, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 117 }, { "Rank": 1, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "CommandName": "Add-PnPNavigationNode", "Id": 118 }, { "Rank": 2, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", + "CommandName": "Add-PnPNavigationNode", "Id": 119 }, { "Rank": 3, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "CommandName": "Add-PnPNavigationNode", "Id": 120 }, { "Rank": 4, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", + "CommandName": "Add-PnPNavigationNode", "Id": 121 }, { "Rank": 5, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "CommandName": "Add-PnPNavigationNode", "Id": 122 }, { "Rank": 6, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "CommandName": "Add-PnPNavigationNode", "Id": 123 }, { "Rank": 7, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "CommandName": "Add-PnPNavigationNode", "Id": 124 }, { "Rank": 8, - "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "CommandName": "Add-PnPNavigationNode", "Id": 125 }, { "Rank": 1, - "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", + "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 126 }, { "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\"", + "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 127 }, { "Rank": 3, - "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 128 }, { "Rank": 1, - "CommandName": "Add-PnPOrgNewsSite", "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "CommandName": "Add-PnPOrgNewsSite", "Id": 129 }, { "Rank": 1, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\"", + "CommandName": "Add-PnPPage", "Id": 130 }, { "Rank": 2, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "CommandName": "Add-PnPPage", "Id": 131 }, { "Rank": 3, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "CommandName": "Add-PnPPage", "Id": 132 }, { "Rank": 4, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "CommandName": "Add-PnPPage", "Id": 133 }, { "Rank": 5, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "CommandName": "Add-PnPPage", "Id": 134 }, { "Rank": 6, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "CommandName": "Add-PnPPage", "Id": 135 }, { "Rank": 7, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "CommandName": "Add-PnPPage", "Id": 136 }, { "Rank": 8, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "CommandName": "Add-PnPPage", "Id": 137 }, { "Rank": 9, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "CommandName": "Add-PnPPage", "Id": 138 }, { "Rank": 10, - "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "CommandName": "Add-PnPPage", "Id": 139 }, { "Rank": 1, - "CommandName": "Add-PnPPageImageWebPart", "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", + "CommandName": "Add-PnPPageImageWebPart", "Id": 140 }, { "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\"", + "CommandName": "Add-PnPPageImageWebPart", "Id": 141 }, { "Rank": 1, - "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "CommandName": "Add-PnPPageSection", "Id": 142 }, { "Rank": 2, - "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "CommandName": "Add-PnPPageSection", "Id": 143 }, { "Rank": 1, - "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "CommandName": "Add-PnPPageTextPart", "Id": 144 }, { "Rank": 2, - "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", + "CommandName": "Add-PnPPageTextPart", "Id": 145 }, { "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\"", + "CommandName": "Add-PnPPageTextPart", "Id": 146 }, { "Rank": 1, - "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "CommandName": "Add-PnPPageWebPart", "Id": 147 }, { "Rank": 2, - "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "CommandName": "Add-PnPPageWebPart", "Id": 148 }, { "Rank": 3, - "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "CommandName": "Add-PnPPageWebPart", "Id": 149 }, { "Rank": 1, - "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "CommandName": "Add-PnPPlannerBucket", "Id": 150 }, { "Rank": 2, - "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "CommandName": "Add-PnPPlannerBucket", "Id": 151 }, { "Rank": 1, - "CommandName": "Add-PnPPlannerRoster", "Command": "Add-PnPPlannerRoster", + "CommandName": "Add-PnPPlannerRoster", "Id": 152 }, { "Rank": 1, - "CommandName": "Add-PnPPlannerRosterMember", "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPPlannerRosterMember", "Id": 153 }, { "Rank": 1, - "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "CommandName": "Add-PnPPlannerTask", "Id": 154 }, { "Rank": 2, - "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "CommandName": "Add-PnPPlannerTask", "Id": 155 }, { "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\"", + "CommandName": "Add-PnPPlannerTask", "Id": 156 }, { "Rank": 1, - "CommandName": "Add-PnPPublishingImageRendition", "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "CommandName": "Add-PnPPublishingImageRendition", "Id": 157 }, { "Rank": 1, - "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", + "CommandName": "Add-PnPPublishingPage", "Id": 158 }, { "Rank": 2, - "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "CommandName": "Add-PnPPublishingPage", "Id": 159 }, { "Rank": 1, - "CommandName": "Add-PnPPublishingPageLayout", "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "CommandName": "Add-PnPPublishingPageLayout", "Id": 160 }, { "Rank": 1, - "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "CommandName": "Add-PnPRoleDefinition", "Id": 161 }, { "Rank": 2, - "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "CommandName": "Add-PnPRoleDefinition", "Id": 162 }, { "Rank": 3, - "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "CommandName": "Add-PnPRoleDefinition", "Id": 163 }, { "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 164 }, { "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 165 }, { "Rank": 3, - "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 166 }, { "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog", + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 167 }, { "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 168 }, { "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", + "CommandName": "Add-PnPSiteDesign", "Id": 169 }, { "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", + "CommandName": "Add-PnPSiteDesign", "Id": 170 }, { "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\"", + "CommandName": "Add-PnPSiteDesign", "Id": 171 }, { "Rank": 1, - "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", + "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 172 }, { "Rank": 2, - "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", "Id": 173 }, { "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", + "CommandName": "Add-PnPSiteDesignFromWeb", "Id": 174 }, { "Rank": 1, - "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "CommandName": "Add-PnPSiteDesignTask", "Id": 175 }, { "Rank": 2, - "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "CommandName": "Add-PnPSiteDesignTask", "Id": 176 }, { "Rank": 1, - "CommandName": "Add-PnPSiteScript", "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "CommandName": "Add-PnPSiteScript", "Id": 177 }, { "Rank": 1, - "CommandName": "Add-PnPSiteScriptPackage", "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", + "CommandName": "Add-PnPSiteScriptPackage", "Id": 178 }, { "Rank": 1, - "CommandName": "Add-PnPSiteTemplate", "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "CommandName": "Add-PnPSiteTemplate", "Id": 179 }, { "Rank": 1, - "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", + "CommandName": "Add-PnPStoredCredential", "Id": 180 }, { "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)", + "CommandName": "Add-PnPStoredCredential", "Id": 181 }, { "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\"", + "CommandName": "Add-PnPStoredCredential", "Id": 182 }, { "Rank": 1, - "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "CommandName": "Add-PnPTaxonomyField", "Id": 183 }, { "Rank": 2, - "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "CommandName": "Add-PnPTaxonomyField", "Id": 184 }, { "Rank": 1, - "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "CommandName": "Add-PnPTeamsChannel", "Id": 185 }, { "Rank": 2, - "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "CommandName": "Add-PnPTeamsChannel", "Id": 186 }, { "Rank": 3, - "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "CommandName": "Add-PnPTeamsChannel", "Id": 187 }, { "Rank": 4, - "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", + "CommandName": "Add-PnPTeamsChannel", "Id": 188 }, { "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", + "CommandName": "Add-PnpTeamsChannelUser", "Id": 189 }, { "Rank": 2, - "CommandName": "Add-PnpTeamsChannelUser", "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", + "CommandName": "Add-PnpTeamsChannelUser", "Id": 190 }, { "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\"", + "CommandName": "Add-PnPTeamsTab", "Id": 191 }, { "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\"", + "CommandName": "Add-PnPTeamsTab", "Id": 192 }, { "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\"", + "CommandName": "Add-PnPTeamsTab", "Id": 193 }, { "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", + "CommandName": "Add-PnPTeamsTab", "Id": 194 }, { "Rank": 1, - "CommandName": "Add-PnPTeamsTeam", "Command": "Add-PnPTeamsTeam", + "CommandName": "Add-PnPTeamsTeam", "Id": 195 }, { "Rank": 1, - "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Add-PnPTeamsUser", "Id": 196 }, { "Rank": 2, - "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "CommandName": "Add-PnPTeamsUser", "Id": 197 }, { "Rank": 3, - "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "CommandName": "Add-PnPTeamsUser", "Id": 198 }, { "Rank": 4, - "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "CommandName": "Add-PnPTeamsUser", "Id": 199 }, { "Rank": 1, - "CommandName": "Add-PnPTenantCdnOrigin", "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "CommandName": "Add-PnPTenantCdnOrigin", "Id": 200 }, { "Rank": 1, - "CommandName": "Add-PnPTenantSequence", "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "CommandName": "Add-PnPTenantSequence", "Id": 201 }, { "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSite", "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "CommandName": "Add-PnPTenantSequenceSite", "Id": 202 }, { "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSubSite", "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "CommandName": "Add-PnPTenantSequenceSubSite", "Id": 203 }, { "Rank": 1, - "CommandName": "Add-PnPTermToTerm", "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "CommandName": "Add-PnPTermToTerm", "Id": 204 }, { "Rank": 1, - "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", + "CommandName": "Add-PnPView", "Id": 205 }, { "Rank": 2, - "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", + "CommandName": "Add-PnPView", "Id": 206 }, { "Rank": 3, - "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "CommandName": "Add-PnPView", "Id": 207 }, { "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\"", + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Id": 208 }, { "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\"", + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Id": 209 }, { "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\"", + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Id": 210 }, { "Rank": 1, - "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", + "CommandName": "Add-PnPWebhookSubscription", "Id": 211 }, { "Rank": 2, - "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "CommandName": "Add-PnPWebhookSubscription", "Id": 212 }, { "Rank": 3, - "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", + "CommandName": "Add-PnPWebhookSubscription", "Id": 213 }, { "Rank": 1, - "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", + "CommandName": "Add-PnPWebPartToWebPartPage", "Id": 214 }, { "Rank": 2, - "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", + "CommandName": "Add-PnPWebPartToWebPartPage", "Id": 215 }, { "Rank": 1, - "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", + "CommandName": "Add-PnPWebPartToWikiPage", "Id": 216 }, { "Rank": 2, - "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", + "CommandName": "Add-PnPWebPartToWikiPage", "Id": 217 }, { "Rank": 1, - "CommandName": "Add-PnPWikiPage", "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "CommandName": "Add-PnPWikiPage", "Id": 218 }, { "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupMember", "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "CommandName": "Clear-PnPAzureADGroupMember", "Id": 219 }, { "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupOwner", "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "CommandName": "Clear-PnPAzureADGroupOwner", "Id": 220 }, { "Rank": 1, - "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "CommandName": "Clear-PnPDefaultColumnValues", "Id": 221 }, { "Rank": 2, - "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "CommandName": "Clear-PnPDefaultColumnValues", "Id": 222 }, { "Rank": 1, - "CommandName": "Clear-PnPListItemAsRecord", "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "CommandName": "Clear-PnPListItemAsRecord", "Id": 223 }, { "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupMember", "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "CommandName": "Clear-PnPMicrosoft365GroupMember", "Id": 224 }, { "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Id": 225 }, { "Rank": 1, - "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "CommandName": "Clear-PnpRecycleBinItem", "Id": 226 }, { "Rank": 2, - "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "CommandName": "Clear-PnpRecycleBinItem", "Id": 227 }, { "Rank": 3, - "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "CommandName": "Clear-PnpRecycleBinItem", "Id": 228 }, { "Rank": 1, - "CommandName": "Clear-PnPTenantAppCatalogUrl", "Command": "Clear-PnPTenantAppCatalogUrl", + "CommandName": "Clear-PnPTenantAppCatalogUrl", "Id": 229 }, { "Rank": 1, - "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 230 }, { "Rank": 2, - "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 231 }, { "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\"", + "CommandName": "Connect-PnPOnline", "Id": 232 }, { "Rank": 1, - "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 233 }, { "Rank": 2, - "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 234 }, { "Rank": 1, - "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml", + "CommandName": "Convert-PnPSiteTemplate", "Id": 235 }, { "Rank": 2, - "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "CommandName": "Convert-PnPSiteTemplate", "Id": 236 }, { "Rank": 3, - "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "CommandName": "Convert-PnPSiteTemplate", "Id": 237 }, { "Rank": 1, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 238 }, { "Rank": 2, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 239 }, { "Rank": 1, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "CommandName": "ConvertTo-PnPPage", "Id": 240 }, { "Rank": 2, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "CommandName": "ConvertTo-PnPPage", "Id": 241 }, { "Rank": 3, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "CommandName": "ConvertTo-PnPPage", "Id": 242 }, { "Rank": 4, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "CommandName": "ConvertTo-PnPPage", "Id": 243 }, { "Rank": 5, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage", "Id": 244 }, { "Rank": 6, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "CommandName": "ConvertTo-PnPPage", "Id": 245 }, { "Rank": 7, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "CommandName": "ConvertTo-PnPPage", "Id": 246 }, { "Rank": 8, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "CommandName": "ConvertTo-PnPPage", "Id": 247 }, { "Rank": 9, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage", "Id": 248 }, { "Rank": 10, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "CommandName": "ConvertTo-PnPPage", "Id": 249 }, { "Rank": 11, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "CommandName": "ConvertTo-PnPPage", "Id": 250 }, { "Rank": 12, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage", "Id": 251 }, { "Rank": 13, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage", "Id": 252 }, { "Rank": 14, - "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "CommandName": "ConvertTo-PnPPage", "Id": 253 }, { "Rank": 1, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", "Id": 254 }, { "Rank": 2, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "CommandName": "Copy-PnPFile", "Id": 255 }, { "Rank": 3, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "CommandName": "Copy-PnPFile", "Id": 256 }, { "Rank": 4, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", "Id": 257 }, { "Rank": 5, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "CommandName": "Copy-PnPFile", "Id": 258 }, { "Rank": 6, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "CommandName": "Copy-PnPFile", "Id": 259 }, { "Rank": 7, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "CommandName": "Copy-PnPFile", "Id": 260 }, { "Rank": 8, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", "Id": 261 }, { "Rank": 9, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", "Id": 262 }, { "Rank": 10, - "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "CommandName": "Copy-PnPFile", "Id": 263 }, { "Rank": 1, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", "Id": 264 }, { "Rank": 2, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "CommandName": "Copy-PnPFolder", "Id": 265 }, { "Rank": 3, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "CommandName": "Copy-PnPFolder", "Id": 266 }, { "Rank": 4, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", "Id": 267 }, { "Rank": 5, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "CommandName": "Copy-PnPFolder", "Id": 268 }, { "Rank": 6, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "CommandName": "Copy-PnPFolder", "Id": 269 }, { "Rank": 7, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "CommandName": "Copy-PnPFolder", "Id": 270 }, { "Rank": 8, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", "Id": 271 }, { "Rank": 9, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", "Id": 272 }, { "Rank": 10, - "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "CommandName": "Copy-PnPFolder", "Id": 273 }, { "Rank": 1, - "CommandName": "Copy-PnPItemProxy", "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "CommandName": "Copy-PnPItemProxy", "Id": 274 }, { "Rank": 1, - "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "CommandName": "Copy-PnPList", "Id": 275 }, { "Rank": 2, - "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", + "CommandName": "Copy-PnPList", "Id": 276 }, { "Rank": 3, - "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "CommandName": "Copy-PnPList", "Id": 277 }, { "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\\", + "CommandName": "Copy-PnPList", "Id": 278 }, { "Rank": 1, - "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "CommandName": "Copy-PnPTeamsTeam", "Id": 279 }, { "Rank": 2, - "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "CommandName": "Copy-PnPTeamsTeam", "Id": 280 }, { "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", + "CommandName": "Copy-PnPTeamsTeam", "Id": 281 }, { "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", + "CommandName": "Copy-PnPTeamsTeam", "Id": 282 }, { "Rank": 1, - "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Disable-PnPFeature", "Id": 283 }, { "Rank": 2, - "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "CommandName": "Disable-PnPFeature", "Id": 284 }, { "Rank": 3, - "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "CommandName": "Disable-PnPFeature", "Id": 285 }, { "Rank": 1, - "CommandName": "Disable-PnPPageScheduling", "Command": "Disable-PnPPageScheduling", + "CommandName": "Disable-PnPPageScheduling", "Id": 286 }, { "Rank": 1, - "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry", + "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 287 }, { "Rank": 2, - "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry -Force", + "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 288 }, { "Rank": 1, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Command": "Disable-PnPSharingForNonOwnersOfSite", + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Id": 289 }, { "Rank": 1, - "CommandName": "Disable-PnPSiteClassification", "Command": "Disable-PnPSiteClassification", + "CommandName": "Disable-PnPSiteClassification", "Id": 290 }, { "Rank": 1, - "CommandName": "Disconnect-PnPOnline", "Command": "Disconnect-PnPOnline", + "CommandName": "Disconnect-PnPOnline", "Id": 291 }, { "Rank": 1, - "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite", + "CommandName": "Enable-PnPCommSite", "Id": 292 }, { "Rank": 2, - "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "CommandName": "Enable-PnPCommSite", "Id": 293 }, { "Rank": 1, - "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Enable-PnPFeature", "Id": 294 }, { "Rank": 2, - "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "CommandName": "Enable-PnPFeature", "Id": 295 }, { "Rank": 3, - "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "CommandName": "Enable-PnPFeature", "Id": 296 }, { "Rank": 1, - "CommandName": "Enable-PnPPageScheduling", "Command": "Enable-PnPPageScheduling", + "CommandName": "Enable-PnPPageScheduling", "Id": 297 }, { "Rank": 1, - "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry", + "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 298 }, { "Rank": 2, - "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry -Force", + "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 299 }, { "Rank": 1, - "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "CommandName": "Enable-PnPSiteClassification", "Id": 300 }, { "Rank": 2, - "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "CommandName": "Enable-PnPSiteClassification", "Id": 301 }, { "Rank": 1, - "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "CommandName": "Export-PnPListToSiteTemplate", "Id": 302 }, { "Rank": 2, - "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "CommandName": "Export-PnPListToSiteTemplate", "Id": 303 }, { "Rank": 1, - "CommandName": "Export-PnPPage", "Command": "Export-PnPPage -Identity Home.aspx", + "CommandName": "Export-PnPPage", "Id": 304 }, { "Rank": 1, - "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping", "Id": 305 }, { "Rank": 2, - "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping", "Id": 306 }, { "Rank": 3, - "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping", "Id": 307 }, { "Rank": 1, - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy", + "CommandName": "Export-PnPTaxonomy", "Id": 308 }, { "Rank": 2, - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "CommandName": "Export-PnPTaxonomy", "Id": 309 }, { "Rank": 3, - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", + "CommandName": "Export-PnPTaxonomy", "Id": 310 }, { "Rank": 4, - "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "CommandName": "Export-PnPTaxonomy", "Id": 311 }, { "Rank": 1, - "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml", + "CommandName": "Export-PnPTermGroupToXml", "Id": 312 }, { "Rank": 2, - "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out output.xml", + "CommandName": "Export-PnPTermGroupToXml", "Id": 313 }, { "Rank": 3, - "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "CommandName": "Export-PnPTermGroupToXml", "Id": 314 }, { "Rank": 1, - "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "CommandName": "Export-PnPUserInfo", "Id": 315 }, { "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", + "CommandName": "Export-PnPUserInfo", "Id": 316 }, { "Rank": 1, - "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "CommandName": "Export-PnPUserProfile", "Id": 317 }, { "Rank": 2, - "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "CommandName": "Export-PnPUserProfile", "Id": 318 }, { "Rank": 1, - "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Match *.master", + "CommandName": "Find-PnPFile", "Id": 319 }, { "Rank": 2, - "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "CommandName": "Find-PnPFile", "Id": 320 }, { "Rank": 3, - "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "CommandName": "Find-PnPFile", "Id": 321 }, { "Rank": 1, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken", + "CommandName": "Get-PnPAccessToken", "Id": 322 }, { "Rank": 2, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -Decoded", + "CommandName": "Get-PnPAccessToken", "Id": 323 }, { "Rank": 3, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "CommandName": "Get-PnPAccessToken", "Id": 324 }, { "Rank": 4, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "CommandName": "Get-PnPAccessToken", "Id": 325 }, { "Rank": 5, - "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "CommandName": "Get-PnPAccessToken", "Id": 326 }, { "Rank": 1, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert", + "CommandName": "Get-PnPAlert", "Id": 327 }, { "Rank": 2, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\"", + "CommandName": "Get-PnPAlert", "Id": 328 }, { "Rank": 3, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPAlert", "Id": 329 }, { "Rank": 4, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "CommandName": "Get-PnPAlert", "Id": 330 }, { "Rank": 5, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -AllUsers", + "CommandName": "Get-PnPAlert", "Id": 331 }, { "Rank": 6, - "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "CommandName": "Get-PnPAlert", "Id": 332 }, { "Rank": 1, - "CommandName": "Get-PnPApp", "Command": "Get-PnPApp", + "CommandName": "Get-PnPApp", "Id": 333 }, { "Rank": 2, - "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Scope Site", + "CommandName": "Get-PnPApp", "Id": 334 }, { "Rank": 3, - "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Get-PnPApp", "Id": 335 }, { "Rank": 1, - "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "CommandName": "Get-PnPAppErrors", "Id": 336 }, { "Rank": 2, - "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "CommandName": "Get-PnPAppErrors", "Id": 337 }, { "Rank": 1, - "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "CommandName": "Get-PnPAppInfo", "Id": 338 }, { "Rank": 2, - "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Get-PnPAppInfo", "Id": 339 }, { "Rank": 3, - "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "CommandName": "Get-PnPAppInfo", "Id": 340 }, { "Rank": 1, - "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer", + "CommandName": "Get-PnPApplicationCustomizer", "Id": 341 }, { "Rank": 2, - "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Get-PnPApplicationCustomizer", "Id": 342 }, { "Rank": 3, - "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "CommandName": "Get-PnPApplicationCustomizer", "Id": 343 }, { "Rank": 1, - "CommandName": "Get-PnPAuditing", "Command": "Get-PnPAuditing", + "CommandName": "Get-PnPAuditing", "Id": 344 }, { "Rank": 1, - "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm", + "CommandName": "Get-PnPAuthenticationRealm", "Id": 345 }, { "Rank": 2, - "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "CommandName": "Get-PnPAuthenticationRealm", "Id": 346 }, { "Rank": 1, - "CommandName": "Get-PnPAvailableLanguage", "Command": "Get-PnPAvailableLanguage", + "CommandName": "Get-PnPAvailableLanguage", "Id": 347 }, { "Rank": 1, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel", + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 348 }, { "Rank": 2, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 349 }, { "Rank": 3, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 350 }, { "Rank": 1, - "CommandName": "Get-PnPAvailableSiteClassification", "Command": "Get-PnPAvailableSiteClassification", + "CommandName": "Get-PnPAvailableSiteClassification", "Id": 351 }, { "Rank": 1, - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal", + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 352 }, { "Rank": 2, - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 353 }, { "Rank": 3, - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 354 }, { "Rank": 4, - "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "CommandName": "Get-PnPAzureACSPrincipal", "Id": 355 }, { "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 356 }, { "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 357 }, { "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 358 }, { "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn", + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 359 }, { "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 360 }, { "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 361 }, { "Rank": 1, - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp", + "CommandName": "Get-PnPAzureADApp", "Id": 362 }, { "Rank": 2, - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity MyApp", + "CommandName": "Get-PnPAzureADApp", "Id": 363 }, { "Rank": 3, - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Get-PnPAzureADApp", "Id": 364 }, { "Rank": 4, - "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPAzureADApp", "Id": 365 }, { "Rank": 1, - "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission", + "CommandName": "Get-PnPAzureADAppPermission", "Id": 366 }, { "Rank": 2, - "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "CommandName": "Get-PnPAzureADAppPermission", "Id": 367 }, { "Rank": 3, - "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Get-PnPAzureADAppPermission", "Id": 368 }, { "Rank": 1, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission", + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 369 }, { "Rank": 2, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 370 }, { "Rank": 3, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 371 }, { "Rank": 4, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 372 }, { "Rank": 5, - "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 373 }, { "Rank": 1, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup", + "CommandName": "Get-PnPAzureADGroup", "Id": 374 }, { "Rank": 2, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupId", + "CommandName": "Get-PnPAzureADGroup", "Id": 375 }, { "Rank": 3, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "CommandName": "Get-PnPAzureADGroup", "Id": 376 }, { "Rank": 4, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "CommandName": "Get-PnPAzureADGroup", "Id": 377 }, { "Rank": 5, - "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $group", + "CommandName": "Get-PnPAzureADGroup", "Id": 378 }, { "Rank": 1, - "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "CommandName": "Get-PnPAzureADGroupMember", "Id": 379 }, { "Rank": 2, - "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $group", + "CommandName": "Get-PnPAzureADGroupMember", "Id": 380 }, { "Rank": 1, - "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "CommandName": "Get-PnPAzureADGroupOwner", "Id": 381 }, { "Rank": 2, - "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "CommandName": "Get-PnPAzureADGroupOwner", "Id": 382 }, { "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal", + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 383 }, { "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 384 }, { "Rank": 3, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 385 }, { "Rank": 4, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 386 }, { "Rank": 5, - "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 387 }, { "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 388 }, { "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 389 }, { "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 390 }, { "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 391 }, { "Rank": 1, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser", + "CommandName": "Get-PnPAzureADUser", "Id": 392 }, { "Rank": 2, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -EndIndex 50", + "CommandName": "Get-PnPAzureADUser", "Id": 393 }, { "Rank": 3, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "CommandName": "Get-PnPAzureADUser", "Id": 394 }, { "Rank": 4, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "CommandName": "Get-PnPAzureADUser", "Id": 395 }, { "Rank": 5, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "CommandName": "Get-PnPAzureADUser", "Id": 396 }, { "Rank": 6, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "CommandName": "Get-PnPAzureADUser", "Id": 397 }, { "Rank": 7, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "CommandName": "Get-PnPAzureADUser", "Id": 398 }, { "Rank": 8, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta", + "CommandName": "Get-PnPAzureADUser", "Id": 399 }, { "Rank": 9, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "CommandName": "Get-PnPAzureADUser", "Id": 400 }, { "Rank": 10, - "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "CommandName": "Get-PnPAzureADUser", "Id": 401 }, { "Rank": 1, - "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "CommandName": "Get-PnPAzureCertificate", "Id": 402 }, { "Rank": 2, - "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "CommandName": "Get-PnPAzureCertificate", "Id": 403 }, { "Rank": 3, - "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "CommandName": "Get-PnPAzureCertificate", "Id": 404 }, { "Rank": 1, - "CommandName": "Get-PnPBrowserIdleSignout", "Command": "Get-PnPBrowserIdleSignout", + "CommandName": "Get-PnPBrowserIdleSignout", "Id": 405 }, { "Rank": 1, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 406 }, { "Rank": 2, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility", + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 407 }, { "Rank": 1, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 408 }, { "Rank": 2, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 409 }, { "Rank": 3, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 410 }, { "Rank": 4, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 411 }, { "Rank": 5, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 412 }, { "Rank": 1, - "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog", + "CommandName": "Get-PnPChangeLog", "Id": 413 }, { "Rank": 2, - "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog -Nightly", + "CommandName": "Get-PnPChangeLog", "Id": 414 }, { "Rank": 1, - "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 415 }, { "Rank": 2, - "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 416 }, { "Rank": 1, - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType", + "CommandName": "Get-PnPContentType", "Id": 417 }, { "Rank": 2, - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -InSiteHierarchy", + "CommandName": "Get-PnPContentType", "Id": 418 }, { "Rank": 3, - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Identity \"Project Document\"", + "CommandName": "Get-PnPContentType", "Id": 419 }, { "Rank": 4, - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -List \"Documents\"", + "CommandName": "Get-PnPContentType", "Id": 420 }, { "Rank": 5, - "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Includes \"SchemaXml\"", + "CommandName": "Get-PnPContentType", "Id": 421 }, { "Rank": 1, - "CommandName": "Get-PnPContentTypePublishingStatus", "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "CommandName": "Get-PnPContentTypePublishingStatus", "Id": 422 }, { "Rank": 1, - "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction", + "CommandName": "Get-PnPCustomAction", "Id": 423 }, { "Rank": 2, - "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Get-PnPCustomAction", "Id": 424 }, { "Rank": 3, - "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Scope web", + "CommandName": "Get-PnPCustomAction", "Id": 425 }, { "Rank": 1, - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group", + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 426 }, { "Rank": 2, - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 427 }, { "Rank": 1, - "CommandName": "Get-PnPDeletedTeam", "Command": "Get-PnPDeletedTeam", + "CommandName": "Get-PnPDeletedTeam", "Id": 428 }, { "Rank": 1, - "CommandName": "Get-PnPDiagnostics", "Command": "Get-PnPDiagnostics", + "CommandName": "Get-PnPDiagnostics", "Id": 429 }, { "Rank": 1, - "CommandName": "Get-PnPDisableSpacesActivation", "Command": "Get-PnPDisableSpacesActivation", + "CommandName": "Get-PnPDisableSpacesActivation", "Id": 430 }, { "Rank": 1, - "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "CommandName": "Get-PnPDocumentSetTemplate", "Id": 431 }, { "Rank": 2, - "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "CommandName": "Get-PnPDocumentSetTemplate", "Id": 432 }, { "Rank": 1, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver", + "CommandName": "Get-PnPEventReceiver", "Id": 433 }, { "Rank": 2, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPEventReceiver", "Id": 434 }, { "Rank": 3, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "CommandName": "Get-PnPEventReceiver", "Id": 435 }, { "Rank": 4, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "CommandName": "Get-PnPEventReceiver", "Id": 436 }, { "Rank": 5, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPEventReceiver", "Id": 437 }, { "Rank": 6, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "CommandName": "Get-PnPEventReceiver", "Id": 438 }, { "Rank": 7, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Site", + "CommandName": "Get-PnPEventReceiver", "Id": 439 }, { "Rank": 8, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Web", + "CommandName": "Get-PnPEventReceiver", "Id": 440 }, { "Rank": 9, - "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope All", + "CommandName": "Get-PnPEventReceiver", "Id": 441 }, { "Rank": 1, - "CommandName": "Get-PnPException", "Command": "Get-PnPException", + "CommandName": "Get-PnPException", "Id": 442 }, { "Rank": 2, - "CommandName": "Get-PnPException", "Command": "Get-PnPException -All", + "CommandName": "Get-PnPException", "Id": 443 }, { "Rank": 1, - "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "CommandName": "Get-PnPExternalUser", "Id": 444 }, { "Rank": 2, - "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "CommandName": "Get-PnPExternalUser", "Id": 445 }, { "Rank": 1, - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature", + "CommandName": "Get-PnPFeature", "Id": 446 }, { "Rank": 2, - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Scope Site", + "CommandName": "Get-PnPFeature", "Id": 447 }, { "Rank": 3, - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPFeature", "Id": 448 }, { "Rank": 4, - "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "CommandName": "Get-PnPFeature", "Id": 449 }, { "Rank": 1, - "CommandName": "Get-PnPField", "Command": "Get-PnPField", + "CommandName": "Get-PnPField", "Id": 450 }, { "Rank": 2, - "CommandName": "Get-PnPField", "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "CommandName": "Get-PnPField", "Id": 451 }, { "Rank": 3, - "CommandName": "Get-PnPField", "Command": "Get-PnPField -Group \"Custom Columns\"", + "CommandName": "Get-PnPField", "Id": 452 }, { "Rank": 1, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "CommandName": "Get-PnPFile", "Id": 453 }, { "Rank": 2, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "CommandName": "Get-PnPFile", "Id": 454 }, { "Rank": 3, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "CommandName": "Get-PnPFile", "Id": 455 }, { "Rank": 4, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "CommandName": "Get-PnPFile", "Id": 456 }, { "Rank": 5, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "CommandName": "Get-PnPFile", "Id": 457 }, { "Rank": 6, - "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", "Id": 458 }, { "Rank": 7, - "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "CommandName": "Get-PnPFile", "Id": 459 }, { "Rank": 1, - "CommandName": "Get-PnPFileSharingLink", "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Get-PnPFileSharingLink", "Id": 460 }, { "Rank": 1, - "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "CommandName": "Get-PnPFileVersion", "Id": 461 }, { "Rank": 2, - "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "CommandName": "Get-PnPFileVersion", "Id": 462 }, { "Rank": 1, - "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -AsAdmin", + "CommandName": "Get-PnPFlow", "Id": 463 }, { "Rank": 2, - "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "CommandName": "Get-PnPFlow", "Id": 464 }, { "Rank": 3, - "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "CommandName": "Get-PnPFlow", "Id": 465 }, { "Rank": 1, - "CommandName": "Get-PnPFlowOwner", "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "CommandName": "Get-PnPFlowOwner", "Id": 466 }, { "Rank": 1, - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder", + "CommandName": "Get-PnPFolder", "Id": 467 }, { "Rank": 2, - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "CommandName": "Get-PnPFolder", "Id": 468 }, { "Rank": 3, - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "CommandName": "Get-PnPFolder", "Id": 469 }, { "Rank": 4, - "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -List \"Shared Documents\"", + "CommandName": "Get-PnPFolder", "Id": 470 }, { "Rank": 1, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile", + "CommandName": "Get-PnPFolderFile", "Id": 471 }, { "Rank": 2, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -Recurse", + "CommandName": "Get-PnPFolderFile", "Id": 472 }, { "Rank": 3, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderFile", "Id": 473 }, { "Rank": 4, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "CommandName": "Get-PnPFolderFile", "Id": 474 }, { "Rank": 5, - "CommandName": "Get-PnPFolderFile", "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderFile", "Id": 475 }, { "Rank": 1, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder", + "CommandName": "Get-PnPFolderFolder", "Id": 476 }, { "Rank": 2, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Recurse", + "CommandName": "Get-PnPFolderFolder", "Id": 477 }, { "Rank": 3, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderFolder", "Id": 478 }, { "Rank": 4, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "CommandName": "Get-PnPFolderFolder", "Id": 479 }, { "Rank": 5, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "CommandName": "Get-PnPFolderFolder", "Id": 480 }, { "Rank": 6, - "CommandName": "Get-PnPFolderFolder", "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderFolder", "Id": 481 }, { "Rank": 1, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem", + "CommandName": "Get-PnPFolderItem", "Id": 482 }, { "Rank": 2, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Recurse", + "CommandName": "Get-PnPFolderItem", "Id": 483 }, { "Rank": 3, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderItem", "Id": 484 }, { "Rank": 4, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "CommandName": "Get-PnPFolderItem", "Id": 485 }, { "Rank": 5, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "CommandName": "Get-PnPFolderItem", "Id": 486 }, { "Rank": 6, - "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderItem", "Id": 487 }, { "Rank": 1, - "CommandName": "Get-PnPFolderSharingLink", "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Get-PnPFolderSharingLink", "Id": 488 }, { "Rank": 1, - "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric", + "CommandName": "Get-PnPFolderStorageMetric", "Id": 489 }, { "Rank": 2, - "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "CommandName": "Get-PnPFolderStorageMetric", "Id": 490 }, { "Rank": 3, - "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "CommandName": "Get-PnPFolderStorageMetric", "Id": 491 }, { "Rank": 1, - "CommandName": "Get-PnPFooter", "Command": "Get-PnPFooter", + "CommandName": "Get-PnPFooter", "Id": 492 }, { "Rank": 1, - "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken", + "CommandName": "Get-PnPGraphAccessToken", "Id": 493 }, { "Rank": 2, - "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken -Decoded", + "CommandName": "Get-PnPGraphAccessToken", "Id": 494 }, { "Rank": 1, - "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription", + "CommandName": "Get-PnPGraphSubscription", "Id": 495 }, { "Rank": 2, - "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "CommandName": "Get-PnPGraphSubscription", "Id": 496 }, { "Rank": 1, - "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup", + "CommandName": "Get-PnPGroup", "Id": 497 }, { "Rank": 2, - "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -Identity 'My Site Users'", + "CommandName": "Get-PnPGroup", "Id": 498 }, { "Rank": 3, - "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -AssociatedMemberGroup", + "CommandName": "Get-PnPGroup", "Id": 499 }, { "Rank": 1, - "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "CommandName": "Get-PnPGroupMember", "Id": 500 }, { "Rank": 2, - "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "CommandName": "Get-PnPGroupMember", "Id": 501 }, { "Rank": 1, - "CommandName": "Get-PnPGroupPermissions", "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "CommandName": "Get-PnPGroupPermissions", "Id": 502 }, { "Rank": 1, - "CommandName": "Get-PnPHideDefaultThemes", "Command": "Get-PnPHideDefaultThemes", + "CommandName": "Get-PnPHideDefaultThemes", "Id": 503 }, { "Rank": 1, - "CommandName": "Get-PnPHomePage", "Command": "Get-PnPHomePage", + "CommandName": "Get-PnPHomePage", "Id": 504 }, { "Rank": 1, - "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite", + "CommandName": "Get-PnPHomeSite", "Id": 505 }, { "Rank": 2, - "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "CommandName": "Get-PnPHomeSite", "Id": 506 }, { "Rank": 3, - "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -Detailed", + "CommandName": "Get-PnPHomeSite", "Id": 507 }, { "Rank": 1, - "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite", + "CommandName": "Get-PnPHubSite", "Id": 508 }, { "Rank": 2, - "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "CommandName": "Get-PnPHubSite", "Id": 509 }, { "Rank": 3, - "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "CommandName": "Get-PnPHubSite", "Id": 510 }, { "Rank": 1, - "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild", + "CommandName": "Get-PnPHubSiteChild", "Id": 511 }, { "Rank": 2, - "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "CommandName": "Get-PnPHubSiteChild", "Id": 512 }, { "Rank": 1, - "CommandName": "Get-PnPInPlaceRecordsManagement", "Command": "Get-PnPInPlaceRecordsManagement", + "CommandName": "Get-PnPInPlaceRecordsManagement", "Id": 513 }, { "Rank": 1, - "CommandName": "Get-PnPIsSiteAliasAvailable", "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "CommandName": "Get-PnPIsSiteAliasAvailable", "Id": 514 }, { "Rank": 1, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink", + "CommandName": "Get-PnPJavaScriptLink", "Id": 515 }, { "Rank": 2, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope All", + "CommandName": "Get-PnPJavaScriptLink", "Id": 516 }, { "Rank": 3, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Web", + "CommandName": "Get-PnPJavaScriptLink", "Id": 517 }, { "Rank": 4, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Site", + "CommandName": "Get-PnPJavaScriptLink", "Id": 518 }, { "Rank": 5, - "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Name Test", + "CommandName": "Get-PnPJavaScriptLink", "Id": 519 }, { "Rank": 1, - "CommandName": "Get-PnPKnowledgeHubSite", "Command": "Get-PnPKnowledgeHubSite", + "CommandName": "Get-PnPKnowledgeHubSite", "Id": 520 }, { "Rank": 1, - "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel", + "CommandName": "Get-PnPLabel", "Id": 521 }, { "Rank": 2, - "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "CommandName": "Get-PnPLabel", "Id": 522 }, { "Rank": 1, - "CommandName": "Get-PnPLargeListOperationStatus", "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "CommandName": "Get-PnPLargeListOperationStatus", "Id": 523 }, { "Rank": 1, - "CommandName": "Get-PnPList", "Command": "Get-PnPList", + "CommandName": "Get-PnPList", "Id": 524 }, { "Rank": 2, - "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Get-PnPList", "Id": 525 }, { "Rank": 3, - "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity Lists/Announcements", + "CommandName": "Get-PnPList", "Id": 526 }, { "Rank": 4, - "CommandName": "Get-PnPList", "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "CommandName": "Get-PnPList", "Id": 527 }, { "Rank": 5, - "CommandName": "Get-PnPList", "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "CommandName": "Get-PnPList", "Id": 528 }, { "Rank": 1, - "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign", + "CommandName": "Get-PnPListDesign", "Id": 529 }, { "Rank": 2, - "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPListDesign", "Id": 530 }, { "Rank": 3, - "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity ListEvent", + "CommandName": "Get-PnPListDesign", "Id": 531 }, { "Rank": 1, - "CommandName": "Get-PnPListInformationRightsManagement", "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "CommandName": "Get-PnPListInformationRightsManagement", "Id": 532 }, { "Rank": 1, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks", + "CommandName": "Get-PnPListItem", "Id": 533 }, { "Rank": 2, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1", + "CommandName": "Get-PnPListItem", "Id": 534 }, { "Rank": 3, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "CommandName": "Get-PnPListItem", "Id": 535 }, { "Rank": 4, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "CommandName": "Get-PnPListItem", "Id": 536 }, { "Rank": 5, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "CommandName": "Get-PnPListItem", "Id": 537 }, { "Rank": 6, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "CommandName": "Get-PnPListItem", "Id": 538 }, { "Rank": 7, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", + "CommandName": "Get-PnPListItem", "Id": 539 }, { "Rank": 8, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "CommandName": "Get-PnPListItem", "Id": 540 }, { "Rank": 9, - "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "CommandName": "Get-PnPListItem", "Id": 541 }, { "Rank": 1, - "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", + "CommandName": "Get-PnPListItemAttachment", "Id": 542 }, { "Rank": 2, - "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "CommandName": "Get-PnPListItemAttachment", "Id": 543 }, { "Rank": 1, - "CommandName": "Get-PnPListItemComment", "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "CommandName": "Get-PnPListItemComment", "Id": 544 }, { "Rank": 1, - "CommandName": "Get-PnPListItemPermission", "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "CommandName": "Get-PnPListItemPermission", "Id": 545 }, { "Rank": 1, - "CommandName": "Get-PnPListItemVersion", "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "CommandName": "Get-PnPListItemVersion", "Id": 546 }, { "Rank": 1, - "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "CommandName": "Get-PnPListPermissions", "Id": 547 }, { "Rank": 2, - "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "CommandName": "Get-PnPListPermissions", "Id": 548 }, { "Rank": 1, - "CommandName": "Get-PnPListRecordDeclaration", "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "CommandName": "Get-PnPListRecordDeclaration", "Id": 549 }, { "Rank": 1, - "CommandName": "Get-PnPMasterPage", "Command": "Get-PnPMasterPage", + "CommandName": "Get-PnPMasterPage", "Id": 550 }, { "Rank": 1, - "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement", + "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 551 }, { "Rank": 2, - "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 552 }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup", + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 553 }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 554 }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group", + "CommandName": "Get-PnPMicrosoft365Group", "Id": 555 }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365Group", "Id": 556 }, { "Rank": 3, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "CommandName": "Get-PnPMicrosoft365Group", "Id": 557 }, { "Rank": 4, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "CommandName": "Get-PnPMicrosoft365Group", "Id": 558 }, { "Rank": 5, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $group", + "CommandName": "Get-PnPMicrosoft365Group", "Id": 559 }, { "Rank": 6, - "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "CommandName": "Get-PnPMicrosoft365Group", "Id": 560 }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 561 }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 562 }, { "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 563 }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 564 }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 565 }, { "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 566 }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 567 }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 568 }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings", + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 569 }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 570 }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 571 }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 572 }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam", + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 573 }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 574 }, { "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 575 }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 576 }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 577 }, { "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 578 }, { "Rank": 1, - "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode", + "CommandName": "Get-PnPNavigationNode", "Id": 579 }, { "Rank": 2, - "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "CommandName": "Get-PnPNavigationNode", "Id": 580 }, { "Rank": 3, - "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "CommandName": "Get-PnPNavigationNode", "Id": 581 }, { "Rank": 1, - "CommandName": "Get-PnPOrgAssetsLibrary", "Command": "Get-PnPOrgAssetsLibrary", + "CommandName": "Get-PnPOrgAssetsLibrary", "Id": 582 }, { "Rank": 1, - "CommandName": "Get-PnPOrgNewsSite", "Command": "Get-PnPOrgNewsSite", + "CommandName": "Get-PnPOrgNewsSite", "Id": 583 }, { "Rank": 1, - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "CommandName": "Get-PnPPage", "Id": 584 }, { "Rank": 2, - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"MyPage\"", + "CommandName": "Get-PnPPage", "Id": 585 }, { "Rank": 3, - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "CommandName": "Get-PnPPage", "Id": 586 }, { "Rank": 4, - "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "CommandName": "Get-PnPPage", "Id": 587 }, { "Rank": 1, - "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home", + "CommandName": "Get-PnPPageComponent", "Id": 588 }, { "Rank": 2, - "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPPageComponent", "Id": 589 }, { "Rank": 3, - "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "CommandName": "Get-PnPPageComponent", "Id": 590 }, { "Rank": 1, - "CommandName": "Get-PnPPlannerBucket", "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "CommandName": "Get-PnPPlannerBucket", "Id": 591 }, { "Rank": 1, - "CommandName": "Get-PnPPlannerConfiguration", "Command": "Get-PnPPlannerConfiguration", + "CommandName": "Get-PnPPlannerConfiguration", "Id": 592 }, { "Rank": 1, - "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "CommandName": "Get-PnPPlannerPlan", "Id": 593 }, { "Rank": 2, - "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "CommandName": "Get-PnPPlannerPlan", "Id": 594 }, { "Rank": 3, - "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "CommandName": "Get-PnPPlannerPlan", "Id": 595 }, { "Rank": 1, - "CommandName": "Get-PnPPlannerRosterMember", "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "CommandName": "Get-PnPPlannerRosterMember", "Id": 596 }, { "Rank": 1, - "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "CommandName": "Get-PnPPlannerRosterPlan", "Id": 597 }, { "Rank": 2, - "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPPlannerRosterPlan", "Id": 598 }, { "Rank": 1, - "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "CommandName": "Get-PnPPlannerTask", "Id": 599 }, { "Rank": 2, - "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "CommandName": "Get-PnPPlannerTask", "Id": 600 }, { "Rank": 3, - "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "CommandName": "Get-PnPPlannerTask", "Id": 601 }, { "Rank": 1, - "CommandName": "Get-PnPPlannerUserPolicy", "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPPlannerUserPolicy", "Id": 602 }, { "Rank": 1, - "CommandName": "Get-PnPPowerPlatformConnector", "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "CommandName": "Get-PnPPowerPlatformConnector", "Id": 603 }, { "Rank": 1, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment", + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 604 }, { "Rank": 2, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 605 }, { "Rank": 3, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 606 }, { "Rank": 1, - "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Command": "Get-PnPPowerShellTelemetryEnabled", + "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Id": 607 }, { "Rank": 1, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag", + "CommandName": "Get-PnPPropertyBag", "Id": 608 }, { "Rank": 2, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Key MyKey", + "CommandName": "Get-PnPPropertyBag", "Id": 609 }, { "Rank": 3, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "CommandName": "Get-PnPPropertyBag", "Id": 610 }, { "Rank": 4, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "CommandName": "Get-PnPPropertyBag", "Id": 611 }, { "Rank": 5, - "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "CommandName": "Get-PnPPropertyBag", "Id": 612 }, { "Rank": 1, - "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition", + "CommandName": "Get-PnPPublishingImageRendition", "Id": 613 }, { "Rank": 2, - "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "CommandName": "Get-PnPPublishingImageRendition", "Id": 614 }, { "Rank": 3, - "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity 2", + "CommandName": "Get-PnPPublishingImageRendition", "Id": 615 }, { "Rank": 1, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem", + "CommandName": "Get-PnPRecycleBinItem", "Id": 616 }, { "Rank": 2, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "CommandName": "Get-PnPRecycleBinItem", "Id": 617 }, { "Rank": 3, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -FirstStage", + "CommandName": "Get-PnPRecycleBinItem", "Id": 618 }, { "Rank": 4, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -SecondStage", + "CommandName": "Get-PnPRecycleBinItem", "Id": 619 }, { "Rank": 5, - "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "CommandName": "Get-PnPRecycleBinItem", "Id": 620 }, { "Rank": 1, - "CommandName": "Get-PnPRequestAccessEmails", "Command": "Get-PnPRequestAccessEmails", + "CommandName": "Get-PnPRequestAccessEmails", "Id": 621 }, { "Rank": 1, - "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel", + "CommandName": "Get-PnPRetentionLabel", "Id": 622 }, { "Rank": 2, - "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "CommandName": "Get-PnPRetentionLabel", "Id": 623 }, { "Rank": 1, - "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition", + "CommandName": "Get-PnPRoleDefinition", "Id": 624 }, { "Rank": 2, - "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition -Identity Read", + "CommandName": "Get-PnPRoleDefinition", "Id": 625 }, { "Rank": 3, - "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "CommandName": "Get-PnPRoleDefinition", "Id": 626 }, { "Rank": 1, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration", + "CommandName": "Get-PnPSearchConfiguration", "Id": 627 }, { "Rank": 2, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site", + "CommandName": "Get-PnPSearchConfiguration", "Id": 628 }, { "Rank": 3, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "CommandName": "Get-PnPSearchConfiguration", "Id": 629 }, { "Rank": 4, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Get-PnPSearchConfiguration", "Id": 630 }, { "Rank": 5, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "CommandName": "Get-PnPSearchConfiguration", "Id": 631 }, { "Rank": 6, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "CommandName": "Get-PnPSearchConfiguration", "Id": 632 }, { "Rank": 7, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "CommandName": "Get-PnPSearchConfiguration", "Id": 633 }, { "Rank": 8, - "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "CommandName": "Get-PnPSearchConfiguration", "Id": 634 }, { "Rank": 1, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog", + "CommandName": "Get-PnPSearchCrawlLog", "Id": 635 }, { "Rank": 2, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "CommandName": "Get-PnPSearchCrawlLog", "Id": 636 }, { "Rank": 3, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "CommandName": "Get-PnPSearchCrawlLog", "Id": 637 }, { "Rank": 4, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "CommandName": "Get-PnPSearchCrawlLog", "Id": 638 }, { "Rank": 5, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "CommandName": "Get-PnPSearchCrawlLog", "Id": 639 }, { "Rank": 6, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "CommandName": "Get-PnPSearchCrawlLog", "Id": 640 }, { "Rank": 7, - "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "CommandName": "Get-PnPSearchCrawlLog", "Id": 641 }, { "Rank": 1, - "CommandName": "Get-PnPSearchSettings", "Command": "Get-PnPSearchSettings", + "CommandName": "Get-PnPSearchSettings", "Id": 642 }, { "Rank": 1, - "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth", + "CommandName": "Get-PnPServiceCurrentHealth", "Id": 643 }, { "Rank": 2, - "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "CommandName": "Get-PnPServiceCurrentHealth", "Id": 644 }, { "Rank": 1, - "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue", + "CommandName": "Get-PnPServiceHealthIssue", "Id": 645 }, { "Rank": 2, - "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "CommandName": "Get-PnPServiceHealthIssue", "Id": 646 }, { "Rank": 1, - "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn", + "CommandName": "Get-PnPSharePointAddIn", "Id": 647 }, { "Rank": 2, - "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "CommandName": "Get-PnPSharePointAddIn", "Id": 648 }, { "Rank": 1, - "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Command": "Get-PnPSharingForNonOwnersOfSite", + "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Id": 649 }, { "Rank": 1, - "CommandName": "Get-PnPSite", "Command": "Get-PnPSite", + "CommandName": "Get-PnPSite", "Id": 650 }, { "Rank": 2, - "CommandName": "Get-PnPSite", "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "CommandName": "Get-PnPSite", "Id": 651 }, { "Rank": 1, - "CommandName": "Get-PnPSiteClosure", "Command": "Get-PnPSiteClosure", + "CommandName": "Get-PnPSiteClosure", "Id": 652 }, { "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAdmin", "Command": "Get-PnPSiteCollectionAdmin", + "CommandName": "Get-PnPSiteCollectionAdmin", "Id": 653 }, { "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog", + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 654 }, { "Rank": 2, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 655 }, { "Rank": 3, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 656 }, { "Rank": 1, - "CommandName": "Get-PnPSiteCollectionTermStore", "Command": "Get-PnPSiteCollectionTermStore", + "CommandName": "Get-PnPSiteCollectionTermStore", "Id": 657 }, { "Rank": 1, - "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign", + "CommandName": "Get-PnPSiteDesign", "Id": 658 }, { "Rank": 2, - "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteDesign", "Id": 659 }, { "Rank": 1, - "CommandName": "Get-PnPSiteDesignRights", "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteDesignRights", "Id": 660 }, { "Rank": 1, - "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun", + "CommandName": "Get-PnPSiteDesignRun", "Id": 661 }, { "Rank": 2, - "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "CommandName": "Get-PnPSiteDesignRun", "Id": 662 }, { "Rank": 1, - "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "CommandName": "Get-PnPSiteDesignTask", "Id": 663 }, { "Rank": 2, - "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask", + "CommandName": "Get-PnPSiteDesignTask", "Id": 664 }, { "Rank": 3, - "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "CommandName": "Get-PnPSiteDesignTask", "Id": 665 }, { "Rank": 1, - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup", + "CommandName": "Get-PnPSiteGroup", "Id": 666 }, { "Rank": 2, - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "CommandName": "Get-PnPSiteGroup", "Id": 667 }, { "Rank": 3, - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "CommandName": "Get-PnPSiteGroup", "Id": 668 }, { "Rank": 4, - "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "CommandName": "Get-PnPSiteGroup", "Id": 669 }, { "Rank": 1, - "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy", + "CommandName": "Get-PnPSitePolicy", "Id": 670 }, { "Rank": 2, - "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -AllAvailable", + "CommandName": "Get-PnPSitePolicy", "Id": 671 }, { "Rank": 3, - "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "CommandName": "Get-PnPSitePolicy", "Id": 672 }, { "Rank": 1, - "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript", + "CommandName": "Get-PnPSiteScript", "Id": 673 }, { "Rank": 2, - "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteScript", "Id": 674 }, { "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "CommandName": "Get-PnPSiteScriptFromList", "Id": 675 }, { "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "CommandName": "Get-PnPSiteScriptFromList", "Id": 676 }, { "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "CommandName": "Get-PnPSiteScriptFromList", "Id": 677 }, { "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 678 }, { "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 679 }, { "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 680 }, { "Rank": 4, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 681 }, { "Rank": 5, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 682 }, { "Rank": 6, - "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 683 }, { "Rank": 1, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults", + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 684 }, { "Rank": 2, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 685 }, { "Rank": 3, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 686 }, { "Rank": 4, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 687 }, { "Rank": 5, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 688 }, { "Rank": 6, - "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -All", + "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 689 }, { "Rank": 1, - "CommandName": "Get-PnPSiteSensitivityLabel", "Command": "Get-PnPSiteSensitivityLabel", + "CommandName": "Get-PnPSiteSensitivityLabel", "Id": 690 }, { "Rank": 1, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp", + "CommandName": "Get-PnPSiteTemplate", "Id": 691 }, { "Rank": 2, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml", + "CommandName": "Get-PnPSiteTemplate", "Id": 692 }, { "Rank": 3, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.md", + "CommandName": "Get-PnPSiteTemplate", "Id": 693 }, { "Rank": 4, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "CommandName": "Get-PnPSiteTemplate", "Id": 694 }, { "Rank": 5, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "CommandName": "Get-PnPSiteTemplate", "Id": 695 }, { "Rank": 6, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "CommandName": "Get-PnPSiteTemplate", "Id": 696 }, { "Rank": 7, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "CommandName": "Get-PnPSiteTemplate", "Id": 697 }, { "Rank": 8, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "CommandName": "Get-PnPSiteTemplate", "Id": 698 }, { "Rank": 9, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "CommandName": "Get-PnPSiteTemplate", "Id": 699 }, { "Rank": 10, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "CommandName": "Get-PnPSiteTemplate", "Id": 700 }, { "Rank": 11, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "CommandName": "Get-PnPSiteTemplate", "Id": 701 }, { "Rank": 12, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "CommandName": "Get-PnPSiteTemplate", "Id": 702 }, { "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\"", + "CommandName": "Get-PnPSiteTemplate", "Id": 703 }, { "Rank": 14, - "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "CommandName": "Get-PnPSiteTemplate", "Id": 704 }, { "Rank": 1, - "CommandName": "Get-PnPSiteUserInvitations", "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "CommandName": "Get-PnPSiteUserInvitations", "Id": 705 }, { "Rank": 1, - "CommandName": "Get-PnPSiteVersionPolicy", "Command": "Get-PnPSiteVersionPolicy", + "CommandName": "Get-PnPSiteVersionPolicy", "Id": 706 }, { "Rank": 1, - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity", + "CommandName": "Get-PnPStorageEntity", "Id": 707 }, { "Rank": 2, - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey", + "CommandName": "Get-PnPStorageEntity", "Id": 708 }, { "Rank": 3, - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Scope Site", + "CommandName": "Get-PnPStorageEntity", "Id": 709 }, { "Rank": 4, - "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "CommandName": "Get-PnPStorageEntity", "Id": 710 }, { "Rank": 1, - "CommandName": "Get-PnPStoredCredential", "Command": "Get-PnPStoredCredential -Name O365", + "CommandName": "Get-PnPStoredCredential", "Id": 711 }, { "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Id": 712 }, { "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Id": 713 }, { "Rank": 1, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Id": 714 }, { "Rank": 1, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb", + "CommandName": "Get-PnPSubWeb", "Id": 715 }, { "Rank": 2, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse", + "CommandName": "Get-PnPSubWeb", "Id": 716 }, { "Rank": 3, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "CommandName": "Get-PnPSubWeb", "Id": 717 }, { "Rank": 4, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "CommandName": "Get-PnPSubWeb", "Id": 718 }, { "Rank": 5, - "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "CommandName": "Get-PnPSubWeb", "Id": 719 }, { "Rank": 1, - "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel", + "CommandName": "Get-PnPSyntexModel", "Id": 720 }, { "Rank": 2, - "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity 1", + "CommandName": "Get-PnPSyntexModel", "Id": 721 }, { "Rank": 3, - "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "CommandName": "Get-PnPSyntexModel", "Id": 722 }, { "Rank": 1, - "CommandName": "Get-PnPSyntexModelPublication", "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "CommandName": "Get-PnPSyntexModelPublication", "Id": 723 }, { "Rank": 1, - "CommandName": "Get-PnPTaxonomyItem", "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "CommandName": "Get-PnPTaxonomyItem", "Id": 724 }, { "Rank": 1, - "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp", + "CommandName": "Get-PnPTeamsApp", "Id": 725 }, { "Rank": 2, - "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "CommandName": "Get-PnPTeamsApp", "Id": 726 }, { "Rank": 3, - "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "CommandName": "Get-PnPTeamsApp", "Id": 727 }, { "Rank": 1, - "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "CommandName": "Get-PnPTeamsChannel", "Id": 728 }, { "Rank": 2, - "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "CommandName": "Get-PnPTeamsChannel", "Id": 729 }, { "Rank": 3, - "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "CommandName": "Get-PnPTeamsChannel", "Id": 730 }, { "Rank": 1, - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 731 }, { "Rank": 2, - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 732 }, { "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsChannelMessage", "Id": 733 }, { "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "CommandName": "Get-PnPTeamsChannelMessage", "Id": 734 }, { "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 735 }, { "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 736 }, { "Rank": 1, - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsChannelUser", "Id": 737 }, { "Rank": 2, - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "CommandName": "Get-PnPTeamsChannelUser", "Id": 738 }, { "Rank": 3, - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", + "CommandName": "Get-PnPTeamsChannelUser", "Id": 739 }, { "Rank": 4, - "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Get-PnPTeamsChannelUser", "Id": 740 }, { "Rank": 1, - "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 741 }, { "Rank": 2, - "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 742 }, { "Rank": 1, - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "CommandName": "Get-PnPTeamsTab", "Id": 743 }, { "Rank": 2, - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "CommandName": "Get-PnPTeamsTab", "Id": 744 }, { "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", + "CommandName": "Get-PnPTeamsTab", "Id": 745 }, { "Rank": 4, - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsTab", "Id": 746 }, { "Rank": 5, - "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "CommandName": "Get-PnPTeamsTab", "Id": 747 }, { "Rank": 1, - "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "CommandName": "Get-PnPTeamsTag", "Id": 748 }, { "Rank": 2, - "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "CommandName": "Get-PnPTeamsTag", "Id": 749 }, { "Rank": 1, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam", + "CommandName": "Get-PnPTeamsTeam", "Id": 750 }, { "Rank": 2, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "CommandName": "Get-PnPTeamsTeam", "Id": 751 }, { "Rank": 3, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "CommandName": "Get-PnPTeamsTeam", "Id": 752 }, { "Rank": 4, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "CommandName": "Get-PnPTeamsTeam", "Id": 753 }, { "Rank": 5, - "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPTeamsTeam", "Id": 754 }, { "Rank": 1, - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam", + "CommandName": "Get-PnPTeamsUser", "Id": 755 }, { "Rank": 2, - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "CommandName": "Get-PnPTeamsUser", "Id": 756 }, { "Rank": 3, - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "CommandName": "Get-PnPTeamsUser", "Id": 757 }, { "Rank": 4, - "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "CommandName": "Get-PnPTeamsUser", "Id": 758 }, { "Rank": 1, - "CommandName": "Get-PnPTemporarilyDisableAppBar", "Command": "Get-PnPTemporarilyDisableAppBar", + "CommandName": "Get-PnPTemporarilyDisableAppBar", "Id": 759 }, { "Rank": 1, - "CommandName": "Get-PnPTenant", "Command": "Get-PnPTenant", + "CommandName": "Get-PnPTenant", "Id": 760 }, { "Rank": 1, - "CommandName": "Get-PnPTenantAppCatalogUrl", "Command": "Get-PnPTenantAppCatalogUrl", + "CommandName": "Get-PnPTenantAppCatalogUrl", "Id": 761 }, { "Rank": 1, - "CommandName": "Get-PnPTenantCdnEnabled", "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "CommandName": "Get-PnPTenantCdnEnabled", "Id": 762 }, { "Rank": 1, - "CommandName": "Get-PnPTenantCdnOrigin", "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "CommandName": "Get-PnPTenantCdnOrigin", "Id": 763 }, { "Rank": 1, - "CommandName": "Get-PnPTenantCdnPolicies", "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "CommandName": "Get-PnPTenantCdnPolicies", "Id": 764 }, { "Rank": 1, - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite", + "CommandName": "Get-PnPTenantDeletedSite", "Id": 765 }, { "Rank": 2, - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Get-PnPTenantDeletedSite", "Id": 766 }, { "Rank": 3, - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "CommandName": "Get-PnPTenantDeletedSite", "Id": 767 }, { "Rank": 4, - "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "CommandName": "Get-PnPTenantDeletedSite", "Id": 768 }, { "Rank": 1, - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId", + "CommandName": "Get-PnPTenantId", "Id": 769 }, { "Rank": 2, - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId contoso", + "CommandName": "Get-PnPTenantId", "Id": 770 }, { "Rank": 3, - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "CommandName": "Get-PnPTenantId", "Id": 771 }, { "Rank": 4, - "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "CommandName": "Get-PnPTenantId", "Id": 772 }, { "Rank": 1, - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "CommandName": "Get-PnPTenantInfo", "Id": 773 }, { "Rank": 2, - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "CommandName": "Get-PnPTenantInfo", "Id": 774 }, { "Rank": 3, - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo", + "CommandName": "Get-PnPTenantInfo", "Id": 775 }, { "Rank": 4, - "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -CurrentTenant", + "CommandName": "Get-PnPTenantInfo", "Id": 776 }, { "Rank": 1, - "CommandName": "Get-PnPTenantInstance", "Command": "Get-PnPTenantInstance", + "CommandName": "Get-PnPTenantInstance", "Id": 777 }, { "Rank": 1, - "CommandName": "Get-PnPTenantRecycleBinItem", "Command": "Get-PnPTenantRecycleBinItem", + "CommandName": "Get-PnPTenantRecycleBinItem", "Id": 778 }, { "Rank": 1, - "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "CommandName": "Get-PnPTenantSequence", "Id": 779 }, { "Rank": 2, - "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "CommandName": "Get-PnPTenantSequence", "Id": 780 }, { "Rank": 1, - "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "CommandName": "Get-PnPTenantSequenceSite", "Id": 781 }, { "Rank": 2, - "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "CommandName": "Get-PnPTenantSequenceSite", "Id": 782 }, { "Rank": 1, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite", + "CommandName": "Get-PnPTenantSite", "Id": 783 }, { "Rank": 2, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Detailed", + "CommandName": "Get-PnPTenantSite", "Id": 784 }, { "Rank": 3, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "CommandName": "Get-PnPTenantSite", "Id": 785 }, { "Rank": 4, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "CommandName": "Get-PnPTenantSite", "Id": 786 }, { "Rank": 5, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "CommandName": "Get-PnPTenantSite", "Id": 787 }, { "Rank": 6, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "CommandName": "Get-PnPTenantSite", "Id": 788 }, { "Rank": 7, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "CommandName": "Get-PnPTenantSite", "Id": 789 }, { "Rank": 8, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "CommandName": "Get-PnPTenantSite", "Id": 790 }, { "Rank": 9, - "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "CommandName": "Get-PnPTenantSite", "Id": 791 }, { "Rank": 1, - "CommandName": "Get-PnPTenantSyncClientRestriction", "Command": "Get-PnPTenantSyncClientRestriction", + "CommandName": "Get-PnPTenantSyncClientRestriction", "Id": 792 }, { "Rank": 1, - "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "CommandName": "Get-PnPTenantTemplate", "Id": 793 }, { "Rank": 2, - "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "CommandName": "Get-PnPTenantTemplate", "Id": 794 }, { "Rank": 3, - "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "CommandName": "Get-PnPTenantTemplate", "Id": 795 }, { "Rank": 1, - "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme", + "CommandName": "Get-PnPTenantTheme", "Id": 796 }, { "Rank": 2, - "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "CommandName": "Get-PnPTenantTheme", "Id": 797 }, { "Rank": 3, - "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "CommandName": "Get-PnPTenantTheme", "Id": 798 }, { "Rank": 1, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", "Id": 799 }, { "Rank": 2, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", "Id": 800 }, { "Rank": 3, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", "Id": 801 }, { "Rank": 4, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "CommandName": "Get-PnPTerm", "Id": 802 }, { "Rank": 5, - "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "CommandName": "Get-PnPTerm", "Id": 803 }, { "Rank": 1, - "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup", + "CommandName": "Get-PnPTermGroup", "Id": 804 }, { "Rank": 2, - "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "CommandName": "Get-PnPTermGroup", "Id": 805 }, { "Rank": 3, - "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "CommandName": "Get-PnPTermGroup", "Id": 806 }, { "Rank": 1, - "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "CommandName": "Get-PnPTermLabel", "Id": 807 }, { "Rank": 2, - "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "CommandName": "Get-PnPTermLabel", "Id": 808 }, { "Rank": 3, - "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermLabel", "Id": 809 }, { "Rank": 1, - "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermSet", "Id": 810 }, { "Rank": 2, - "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermSet", "Id": 811 }, { "Rank": 3, - "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "CommandName": "Get-PnPTermSet", "Id": 812 }, { "Rank": 1, - "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme", + "CommandName": "Get-PnPTheme", "Id": 813 }, { "Rank": 2, - "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "CommandName": "Get-PnPTheme", "Id": 814 }, { "Rank": 1, - "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId", + "CommandName": "Get-PnPTimeZoneId", "Id": 815 }, { "Rank": 2, - "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId -Match Stockholm", + "CommandName": "Get-PnPTimeZoneId", "Id": 816 }, { "Rank": 1, - "CommandName": "Get-PnPUnfurlLink", "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "CommandName": "Get-PnPUnfurlLink", "Id": 817 }, { "Rank": 1, - "CommandName": "Get-PnPUnifiedAuditLog", "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "CommandName": "Get-PnPUnifiedAuditLog", "Id": 818 }, { "Rank": 1, - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus", + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 819 }, { "Rank": 2, - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 820 }, { "Rank": 3, - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId ", + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 821 }, { "Rank": 4, - "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "CommandName": "Get-PnPUPABulkImportStatus", "Id": 822 }, { "Rank": 1, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser", + "CommandName": "Get-PnPUser", "Id": 823 }, { "Rank": 2, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity 23", + "CommandName": "Get-PnPUser", "Id": 824 }, { "Rank": 3, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "CommandName": "Get-PnPUser", "Id": 825 }, { "Rank": 4, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "CommandName": "Get-PnPUser", "Id": 826 }, { "Rank": 5, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned", + "CommandName": "Get-PnPUser", "Id": 827 }, { "Rank": 6, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "CommandName": "Get-PnPUser", "Id": 828 }, { "Rank": 7, - "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "CommandName": "Get-PnPUser", "Id": 829 }, { "Rank": 1, - "CommandName": "Get-PnPUserOneDriveQuota", "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "CommandName": "Get-PnPUserOneDriveQuota", "Id": 830 }, { "Rank": 1, - "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "CommandName": "Get-PnPUserProfileProperty", "Id": 831 }, { "Rank": 2, - "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "CommandName": "Get-PnPUserProfileProperty", "Id": 832 }, { "Rank": 3, - "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "CommandName": "Get-PnPUserProfileProperty", "Id": 833 }, { "Rank": 1, - "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\"", + "CommandName": "Get-PnPView", "Id": 834 }, { "Rank": 2, - "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "CommandName": "Get-PnPView", "Id": 835 }, { "Rank": 3, - "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "CommandName": "Get-PnPView", "Id": 836 }, { "Rank": 1, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE", + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 837 }, { "Rank": 2, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 838 }, { "Rank": 1, - "CommandName": "Get-PnPWeb", "Command": "Get-PnPWeb", + "CommandName": "Get-PnPWeb", "Id": 839 }, { "Rank": 1, - "CommandName": "Get-PnPWebHeader", "Command": "Get-PnPWebHeader", + "CommandName": "Get-PnPWebHeader", "Id": 840 }, { "Rank": 1, - "CommandName": "Get-PnPWebhookSubscriptions", "Command": "Get-PnPWebhookSubscriptions -List MyList", + "CommandName": "Get-PnPWebhookSubscriptions", "Id": 841 }, { "Rank": 1, - "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "CommandName": "Get-PnPWebPart", "Id": 842 }, { "Rank": 2, - "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPWebPart", "Id": 843 }, { "Rank": 1, - "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "CommandName": "Get-PnPWebPartProperty", "Id": 844 }, { "Rank": 2, - "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "CommandName": "Get-PnPWebPartProperty", "Id": 845 }, { "Rank": 1, - "CommandName": "Get-PnPWebPartXml", "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPWebPartXml", "Id": 846 }, { "Rank": 1, - "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates", + "CommandName": "Get-PnPWebTemplates", "Id": 847 }, { "Rank": 2, - "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -LCID 1033", + "CommandName": "Get-PnPWebTemplates", "Id": 848 }, { "Rank": 3, - "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "CommandName": "Get-PnPWebTemplates", "Id": 849 }, { "Rank": 1, - "CommandName": "Get-PnPWikiPageContent", "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "CommandName": "Get-PnPWikiPageContent", "Id": 850 }, { "Rank": 1, - "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", + "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 851 }, { "Rank": 2, - "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", + "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 852 }, { "Rank": 1, - "CommandName": "Grant-PnPHubSiteRights", "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Grant-PnPHubSiteRights", "Id": 853 }, { "Rank": 1, - "CommandName": "Grant-PnPSiteDesignRights", "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Grant-PnPSiteDesignRights", "Id": 854 }, { "Rank": 1, - "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Id": 855 }, { "Rank": 1, - "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "CommandName": "Import-PnPTaxonomy", "Id": 856 }, { "Rank": 2, - "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "CommandName": "Import-PnPTaxonomy", "Id": 857 }, { "Rank": 3, - "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "CommandName": "Import-PnPTaxonomy", "Id": 858 }, { "Rank": 1, - "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "CommandName": "Import-PnPTermGroupFromXml", "Id": 859 }, { "Rank": 2, - "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "CommandName": "Import-PnPTermGroupFromXml", "Id": 860 }, { "Rank": 1, - "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "CommandName": "Import-PnPTermSet", "Id": 861 }, { "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}'", + "CommandName": "Import-PnPTermSet", "Id": 862 }, { "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'", + "CommandName": "Import-PnPTermSet", "Id": 863 }, { "Rank": 1, - "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Install-PnPApp", "Id": 864 }, { "Rank": 2, - "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Install-PnPApp", "Id": 865 }, { "Rank": 1, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", + "CommandName": "Invoke-PnPGraphMethod", "Id": 866 }, { "Rank": 2, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "CommandName": "Invoke-PnPGraphMethod", "Id": 867 }, { "Rank": 3, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "CommandName": "Invoke-PnPGraphMethod", "Id": 868 }, { "Rank": 4, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "CommandName": "Invoke-PnPGraphMethod", "Id": 869 }, { "Rank": 5, - "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "CommandName": "Invoke-PnPGraphMethod", "Id": 870 }, { "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", + "CommandName": "Invoke-PnPGraphMethod", "Id": 871 }, { "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\"", + "CommandName": "Invoke-PnPGraphMethod", "Id": 872 }, { "Rank": 1, - "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Invoke-PnPListDesign", "Id": 873 }, { "Rank": 2, - "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "CommandName": "Invoke-PnPListDesign", "Id": 874 }, { "Rank": 1, - "CommandName": "Invoke-PnPQuery", "Command": "Invoke-PnPQuery -RetryCount 5", + "CommandName": "Invoke-PnPQuery", "Id": 875 }, { "Rank": 1, - "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Invoke-PnPSiteDesign", "Id": 876 }, { "Rank": 2, - "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "CommandName": "Invoke-PnPSiteDesign", "Id": 877 }, { "Rank": 1, - "CommandName": "Invoke-PnPSiteScript", "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "CommandName": "Invoke-PnPSiteScript", "Id": 878 }, { "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", + "CommandName": "Invoke-PnPSiteSwap", "Id": 879 }, { "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", + "CommandName": "Invoke-PnPSiteSwap", "Id": 880 }, { "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", + "CommandName": "Invoke-PnPSiteSwap", "Id": 881 }, { "Rank": 1, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 882 }, { "Rank": 2, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 883 }, { "Rank": 3, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 884 }, { "Rank": 4, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 885 }, { "Rank": 5, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 886 }, { "Rank": 6, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 887 }, { "Rank": 7, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 888 }, { "Rank": 8, - "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "CommandName": "Invoke-PnPSiteTemplate", "Id": 889 }, { "Rank": 1, - "CommandName": "Invoke-PnPSPRestMethod", "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "CommandName": "Invoke-PnPSPRestMethod", "Id": 890 }, { "Rank": 1, - "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "CommandName": "Invoke-PnPTenantTemplate", "Id": 891 }, { "Rank": 2, - "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "CommandName": "Invoke-PnPTenantTemplate", "Id": 892 }, { "Rank": 3, - "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "CommandName": "Invoke-PnPTenantTemplate", "Id": 893 }, { "Rank": 1, - "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "CommandName": "Invoke-PnPWebAction", "Id": 894 }, { "Rank": 2, - "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "CommandName": "Invoke-PnPWebAction", "Id": 895 }, { "Rank": 1, - "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\"", + "CommandName": "Measure-PnPList", "Id": 896 }, { "Rank": 2, - "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "CommandName": "Measure-PnPList", "Id": 897 }, { "Rank": 1, - "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb", + "CommandName": "Measure-PnPWeb", "Id": 898 }, { "Rank": 2, - "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb $web -Recursive", + "CommandName": "Measure-PnPWeb", "Id": 899 }, { "Rank": 1, - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "CommandName": "Move-PnPFile", "Id": 900 }, { "Rank": 2, - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "CommandName": "Move-PnPFile", "Id": 901 }, { "Rank": 3, - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "CommandName": "Move-PnPFile", "Id": 902 }, { "Rank": 4, - "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "CommandName": "Move-PnPFile", "Id": 903 }, { "Rank": 1, - "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "CommandName": "Move-PnPFolder", "Id": 904 }, { "Rank": 2, - "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "CommandName": "Move-PnPFolder", "Id": 905 }, { "Rank": 1, - "CommandName": "Move-PnPListItemToRecycleBin", "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "CommandName": "Move-PnPListItemToRecycleBin", "Id": 906 }, { "Rank": 1, - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "CommandName": "Move-PnPPageComponent", "Id": 907 }, { "Rank": 2, - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "CommandName": "Move-PnPPageComponent", "Id": 908 }, { "Rank": 3, - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "CommandName": "Move-PnPPageComponent", "Id": 909 }, { "Rank": 4, - "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "CommandName": "Move-PnPPageComponent", "Id": 910 }, { "Rank": 1, - "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem", + "CommandName": "Move-PnpRecycleBinItem", "Id": 911 }, { "Rank": 2, - "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "CommandName": "Move-PnpRecycleBinItem", "Id": 912 }, { "Rank": 3, - "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Force", + "CommandName": "Move-PnpRecycleBinItem", "Id": 913 }, { "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", + "CommandName": "Move-PnPTerm", "Id": 914 }, { "Rank": 2, - "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "CommandName": "Move-PnPTerm", "Id": 915 }, { "Rank": 3, - "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "CommandName": "Move-PnPTerm", "Id": 916 }, { "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", + "CommandName": "Move-PnPTermSet", "Id": 917 }, { "Rank": 2, - "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "CommandName": "Move-PnPTermSet", "Id": 918 }, { "Rank": 1, - "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "CommandName": "New-PnPAzureADGroup", "Id": 919 }, { "Rank": 2, - "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "CommandName": "New-PnPAzureADGroup", "Id": 920 }, { "Rank": 3, - "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "CommandName": "New-PnPAzureADGroup", "Id": 921 }, { "Rank": 1, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 922 }, { "Rank": 2, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 923 }, { "Rank": 3, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 924 }, { "Rank": 1, - "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "CommandName": "New-PnPAzureCertificate", "Id": 925 }, { "Rank": 2, - "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "CommandName": "New-PnPAzureCertificate", "Id": 926 }, { "Rank": 3, - "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "CommandName": "New-PnPAzureCertificate", "Id": 927 }, { "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()", + "CommandName": "New-PnPGraphSubscription", "Id": 928 }, { "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()", + "CommandName": "New-PnPGraphSubscription", "Id": 929 }, { "Rank": 1, - "CommandName": "New-PnPGroup", "Command": "New-PnPGroup -Title \"My Site Users\"", + "CommandName": "New-PnPGroup", "Id": 930 }, { "Rank": 1, - "CommandName": "New-PnPList", "Command": "New-PnPList -Title Announcements -Template Announcements", + "CommandName": "New-PnPList", "Id": 931 }, { "Rank": 2, - "CommandName": "New-PnPList", "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "CommandName": "New-PnPList", "Id": 932 }, { "Rank": 3, - "CommandName": "New-PnPList", "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "CommandName": "New-PnPList", "Id": 933 }, { "Rank": 1, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "CommandName": "New-PnPMicrosoft365Group", "Id": 934 }, { "Rank": 2, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "CommandName": "New-PnPMicrosoft365Group", "Id": 935 }, { "Rank": 3, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "CommandName": "New-PnPMicrosoft365Group", "Id": 936 }, { "Rank": 4, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "CommandName": "New-PnPMicrosoft365Group", "Id": 937 }, { "Rank": 5, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "CommandName": "New-PnPMicrosoft365Group", "Id": 938 }, { "Rank": 6, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "CommandName": "New-PnPMicrosoft365Group", "Id": 939 }, { "Rank": 7, - "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", + "CommandName": "New-PnPMicrosoft365Group", "Id": 940 }, { "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\"}", + "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 941 }, { "Rank": 2, - "CommandName": "New-PnPMicrosoft365GroupSettings", "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", + "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 942 }, { "Rank": 1, - "CommandName": "New-PnPPersonalSite", "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "CommandName": "New-PnPPersonalSite", "Id": 943 }, { "Rank": 1, - "CommandName": "New-PnPPlannerPlan", "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "CommandName": "New-PnPPlannerPlan", "Id": 944 }, { "Rank": 1, - "CommandName": "New-PnPSdnProvider", "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "CommandName": "New-PnPSdnProvider", "Id": 945 }, { "Rank": 1, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "CommandName": "New-PnPSite", "Id": 946 }, { "Rank": 2, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "CommandName": "New-PnPSite", "Id": 947 }, { "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", + "CommandName": "New-PnPSite", "Id": 948 }, { "Rank": 4, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "CommandName": "New-PnPSite", "Id": 949 }, { "Rank": 5, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "CommandName": "New-PnPSite", "Id": 950 }, { "Rank": 6, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "CommandName": "New-PnPSite", "Id": 951 }, { "Rank": 7, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "CommandName": "New-PnPSite", "Id": 952 }, { "Rank": 8, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "CommandName": "New-PnPSite", "Id": 953 }, { "Rank": 9, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "CommandName": "New-PnPSite", "Id": 954 }, { "Rank": 10, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "CommandName": "New-PnPSite", "Id": 955 }, { "Rank": 11, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "CommandName": "New-PnPSite", "Id": 956 }, { "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", + "CommandName": "New-PnPSite", "Id": 957 }, { "Rank": 13, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "CommandName": "New-PnPSite", "Id": 958 }, { "Rank": 14, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "CommandName": "New-PnPSite", "Id": 959 }, { "Rank": 15, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "CommandName": "New-PnPSite", "Id": 960 }, { "Rank": 16, - "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "CommandName": "New-PnPSite", "Id": 961 }, { "Rank": 1, - "CommandName": "New-PnPSiteCollectionTermStore", "Command": "New-PnPSiteCollectionTermStore", + "CommandName": "New-PnPSiteCollectionTermStore", "Id": 962 }, { "Rank": 1, - "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "CommandName": "New-PnPSiteGroup", "Id": 963 }, { "Rank": 2, - "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "CommandName": "New-PnPSiteGroup", "Id": 964 }, { "Rank": 1, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 965 }, { "Rank": 2, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 966 }, { "Rank": 3, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 967 }, { "Rank": 4, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 968 }, { "Rank": 5, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 969 }, { "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\"}", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 970 }, { "Rank": 7, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 971 }, { "Rank": 8, - "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 972 }, { "Rank": 1, - "CommandName": "New-PnPTeamsApp", "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "CommandName": "New-PnPTeamsApp", "Id": 973 }, { "Rank": 1, - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "CommandName": "New-PnPTeamsTeam", "Id": 974 }, { "Rank": 2, - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -GroupId $groupId", + "CommandName": "New-PnPTeamsTeam", "Id": 975 }, { "Rank": 3, - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "CommandName": "New-PnPTeamsTeam", "Id": 976 }, { "Rank": 4, - "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "CommandName": "New-PnPTeamsTeam", "Id": 977 }, { "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\"", + "CommandName": "New-PnPTeamsTeam", "Id": 978 }, { "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\"", + "CommandName": "New-PnPTeamsTeam", "Id": 979 }, { "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", + "CommandName": "New-PnPTenantSite", "Id": 980 }, { "Rank": 2, - "CommandName": "New-PnPTenantSite", "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "CommandName": "New-PnPTenantSite", "Id": 981 }, { "Rank": 1, - "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "CommandName": "New-PnPTerm", "Id": 982 }, { "Rank": 2, - "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "New-PnPTerm", "Id": 983 }, { "Rank": 1, - "CommandName": "New-PnPTermGroup", "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "CommandName": "New-PnPTermGroup", "Id": 984 }, { "Rank": 1, - "CommandName": "New-PnPTermLabel", "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "CommandName": "New-PnPTermLabel", "Id": 985 }, { "Rank": 1, - "CommandName": "New-PnPTermSet", "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "CommandName": "New-PnPTermSet", "Id": 986 }, { "Rank": 1, - "CommandName": "New-PnPUPABulkImportJob", "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "CommandName": "New-PnPUPABulkImportJob", "Id": 987 }, { "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", + "CommandName": "New-PnPUPABulkImportJob", "Id": 988 }, { "Rank": 1, - "CommandName": "New-PnPUser", "Command": "New-PnPUser -LoginName user@company.com", + "CommandName": "New-PnPUser", "Id": 989 }, { "Rank": 1, - "CommandName": "New-PnPWeb", "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", + "CommandName": "New-PnPWeb", "Id": 990 }, { "Rank": 1, - "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Publish-PnPApp", "Id": 991 }, { "Rank": 2, - "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "CommandName": "Publish-PnPApp", "Id": 992 }, { "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", + "CommandName": "Publish-PnPCompanyApp", "Id": 993 }, { "Rank": 1, - "CommandName": "Publish-PnPContentType", "Command": "Publish-PnPContentType -ContentType 0x0101", + "CommandName": "Publish-PnPContentType", "Id": 994 }, { "Rank": 1, - "CommandName": "Publish-PnPSyntexModel", "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "CommandName": "Publish-PnPSyntexModel", "Id": 995 }, { "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", + "CommandName": "Publish-PnPSyntexModel", "Id": 996 }, { "Rank": 1, - "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp", + "CommandName": "Read-PnPSiteTemplate", "Id": 997 }, { "Rank": 2, - "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "CommandName": "Read-PnPSiteTemplate", "Id": 998 }, { "Rank": 3, - "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Xml $xml", + "CommandName": "Read-PnPSiteTemplate", "Id": 999 }, { "Rank": 1, - "CommandName": "Read-PnPTenantTemplate", "Command": "Read-PnPTenantTemplate -Path template.pnp", + "CommandName": "Read-PnPTenantTemplate", "Id": 1000 }, { "Rank": 1, - "CommandName": "Register-PnPAppCatalogSite", "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "CommandName": "Register-PnPAppCatalogSite", "Id": 1001 }, { "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\")", + "CommandName": "Register-PnPAzureADApp", "Id": 1002 }, { "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\")", + "CommandName": "Register-PnPAzureADApp", "Id": 1003 }, { "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\")", + "CommandName": "Register-PnPAzureADApp", "Id": 1004 }, { "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\")", + "CommandName": "Register-PnPAzureADApp", "Id": 1005 }, { "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)", + "CommandName": "Register-PnPAzureADApp", "Id": 1006 }, { "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)", + "CommandName": "Register-PnPAzureADApp", "Id": 1007 }, { "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", + "CommandName": "Register-PnPAzureADApp", "Id": 1008 }, { "Rank": 1, - "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "CommandName": "Register-PnPHubSite", "Id": 1009 }, { "Rank": 2, - "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "CommandName": "Register-PnPHubSite", "Id": 1010 }, { "Rank": 1, - "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess", + "CommandName": "Register-PnPManagementShellAccess", "Id": 1011 }, { "Rank": 2, - "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "CommandName": "Register-PnPManagementShellAccess", "Id": 1012 }, { "Rank": 3, - "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "CommandName": "Register-PnPManagementShellAccess", "Id": 1013 }, { "Rank": 1, - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1014 }, { "Rank": 2, - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1015 }, { "Rank": 1, - "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "CommandName": "Remove-PnPAlert", "Id": 1016 }, { "Rank": 2, - "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPAlert", "Id": 1017 }, { "Rank": 1, - "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Remove-PnPApp", "Id": 1018 }, { "Rank": 2, - "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Remove-PnPApp", "Id": 1019 }, { "Rank": 1, - "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1020 }, { "Rank": 2, - "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1021 }, { "Rank": 1, - "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1022 }, { "Rank": 2, - "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1023 }, { "Rank": 1, - "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity MyApp", + "CommandName": "Remove-PnPAzureADApp", "Id": 1024 }, { "Rank": 2, - "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Remove-PnPAzureADApp", "Id": 1025 }, { "Rank": 1, - "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "CommandName": "Remove-PnPAzureADGroup", "Id": 1026 }, { "Rank": 2, - "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $group", + "CommandName": "Remove-PnPAzureADGroup", "Id": 1027 }, { "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupMember", "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPAzureADGroupMember", "Id": 1028 }, { "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupOwner", "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPAzureADGroupOwner", "Id": 1029 }, { "Rank": 1, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1030 }, { "Rank": 2, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1031 }, { "Rank": 3, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1032 }, { "Rank": 4, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1033 }, { "Rank": 1, - "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "CommandName": "Remove-PnPContentType", "Id": 1034 }, { "Rank": 2, - "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "CommandName": "Remove-PnPContentType", "Id": 1035 }, { "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1036 }, { "Rank": 2, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1037 }, { "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromList", "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "CommandName": "Remove-PnPContentTypeFromList", "Id": 1038 }, { "Rank": 1, - "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Remove-PnPCustomAction", "Id": 1039 }, { "Rank": 2, - "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "CommandName": "Remove-PnPCustomAction", "Id": 1040 }, { "Rank": 3, - "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "CommandName": "Remove-PnPCustomAction", "Id": 1041 }, { "Rank": 1, - "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Id": 1042 }, { "Rank": 1, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Remove-PnPEventReceiver", "Id": 1043 }, { "Rank": 2, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Remove-PnPEventReceiver", "Id": 1044 }, { "Rank": 3, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "CommandName": "Remove-PnPEventReceiver", "Id": 1045 }, { "Rank": 4, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList", + "CommandName": "Remove-PnPEventReceiver", "Id": 1046 }, { "Rank": 5, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver", + "CommandName": "Remove-PnPEventReceiver", "Id": 1047 }, { "Rank": 6, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Site", + "CommandName": "Remove-PnPEventReceiver", "Id": 1048 }, { "Rank": 7, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Web", + "CommandName": "Remove-PnPEventReceiver", "Id": 1049 }, { "Rank": 8, - "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope All", + "CommandName": "Remove-PnPEventReceiver", "Id": 1050 }, { "Rank": 1, - "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -Identity \"Speakers\"", + "CommandName": "Remove-PnPField", "Id": 1051 }, { "Rank": 2, - "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "CommandName": "Remove-PnPField", "Id": 1052 }, { "Rank": 1, - "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "CommandName": "Remove-PnPFieldFromContentType", "Id": 1053 }, { "Rank": 2, - "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "CommandName": "Remove-PnPFieldFromContentType", "Id": 1054 }, { "Rank": 1, - "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "CommandName": "Remove-PnPFile", "Id": 1055 }, { "Rank": 2, - "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "CommandName": "Remove-PnPFile", "Id": 1056 }, { "Rank": 3, - "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "CommandName": "Remove-PnPFile", "Id": 1057 }, { "Rank": 1, - "CommandName": "Remove-PnPFileFromSiteTemplate", "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "CommandName": "Remove-PnPFileFromSiteTemplate", "Id": 1058 }, { "Rank": 1, - "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Remove-PnPFileSharingLink", "Id": 1059 }, { "Rank": 2, - "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "CommandName": "Remove-PnPFileSharingLink", "Id": 1060 }, { "Rank": 1, - "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "CommandName": "Remove-PnPFileVersion", "Id": 1061 }, { "Rank": 2, - "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "CommandName": "Remove-PnPFileVersion", "Id": 1062 }, { "Rank": 3, - "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "CommandName": "Remove-PnPFileVersion", "Id": 1063 }, { "Rank": 1, - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", + "CommandName": "Remove-PnPFlowOwner", "Id": 1064 }, { "Rank": 2, - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", + "CommandName": "Remove-PnPFlowOwner", "Id": 1065 }, { "Rank": 3, - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", + "CommandName": "Remove-PnPFlowOwner", "Id": 1066 }, { "Rank": 4, - "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", + "CommandName": "Remove-PnPFlowOwner", "Id": 1067 }, { "Rank": 1, - "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "CommandName": "Remove-PnPFolder", "Id": 1068 }, { "Rank": 2, - "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "CommandName": "Remove-PnPFolder", "Id": 1069 }, { "Rank": 1, - "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Remove-PnPFolderSharingLink", "Id": 1070 }, { "Rank": 2, - "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "CommandName": "Remove-PnPFolderSharingLink", "Id": 1071 }, { "Rank": 1, - "CommandName": "Remove-PnPGraphSubscription", "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "CommandName": "Remove-PnPGraphSubscription", "Id": 1072 }, { "Rank": 1, - "CommandName": "Remove-PnPGroup", "Command": "Remove-PnPGroup -Identity \"My Users\"", + "CommandName": "Remove-PnPGroup", "Id": 1073 }, { "Rank": 1, - "CommandName": "Remove-PnPGroupMember", "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "CommandName": "Remove-PnPGroupMember", "Id": 1074 }, { "Rank": 1, - "CommandName": "Remove-PnPHomeSite", "Command": "Remove-PnPHomeSite", + "CommandName": "Remove-PnPHomeSite", "Id": 1075 }, { "Rank": 1, - "CommandName": "Remove-PnPHubSiteAssociation", "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "CommandName": "Remove-PnPHubSiteAssociation", "Id": 1076 }, { "Rank": 1, - "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1077 }, { "Rank": 2, - "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1078 }, { "Rank": 1, - "CommandName": "Remove-PnPIndexedProperty", "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "CommandName": "Remove-PnPIndexedProperty", "Id": 1079 }, { "Rank": 1, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1080 }, { "Rank": 2, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1081 }, { "Rank": 3, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1082 }, { "Rank": 4, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Scope Site", + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1083 }, { "Rank": 5, - "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "CommandName": "Remove-PnPJavaScriptLink", "Id": 1084 }, { "Rank": 1, - "CommandName": "Remove-PnPKnowledgeHubSite", "Command": "Remove-PnPKnowledgeHubSite", + "CommandName": "Remove-PnPKnowledgeHubSite", "Id": 1085 }, { "Rank": 1, - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements", + "CommandName": "Remove-PnPList", "Id": 1086 }, { "Rank": 2, - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Force", + "CommandName": "Remove-PnPList", "Id": 1087 }, { "Rank": 3, - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle", + "CommandName": "Remove-PnPList", "Id": 1088 }, { "Rank": 4, - "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "CommandName": "Remove-PnPList", "Id": 1089 }, { "Rank": 1, - "CommandName": "Remove-PnPListDesign", "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPListDesign", "Id": 1090 }, { "Rank": 1, - "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "CommandName": "Remove-PnPListItem", "Id": 1091 }, { "Rank": 2, - "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "CommandName": "Remove-PnPListItem", "Id": 1092 }, { "Rank": 3, - "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\"", + "CommandName": "Remove-PnPListItem", "Id": 1093 }, { "Rank": 1, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "CommandName": "Remove-PnPListItemAttachment", "Id": 1094 }, { "Rank": 2, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "CommandName": "Remove-PnPListItemAttachment", "Id": 1095 }, { "Rank": 3, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "CommandName": "Remove-PnPListItemAttachment", "Id": 1096 }, { "Rank": 4, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "CommandName": "Remove-PnPListItemAttachment", "Id": 1097 }, { "Rank": 5, - "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "CommandName": "Remove-PnPListItemAttachment", "Id": 1098 }, { "Rank": 1, - "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "CommandName": "Remove-PnPListItemVersion", "Id": 1099 }, { "Rank": 2, - "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "CommandName": "Remove-PnPListItemVersion", "Id": 1100 }, { "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1101 }, { "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1102 }, { "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupMember", "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPMicrosoft365GroupMember", "Id": 1103 }, { "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Id": 1104 }, { "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1105 }, { "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1106 }, { "Rank": 1, - "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Identity 1032", + "CommandName": "Remove-PnPNavigationNode", "Id": 1107 }, { "Rank": 2, - "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "CommandName": "Remove-PnPNavigationNode", "Id": 1108 }, { "Rank": 3, - "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "CommandName": "Remove-PnPNavigationNode", "Id": 1109 }, { "Rank": 1, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1110 }, { "Rank": 2, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1111 }, { "Rank": 3, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1112 }, { "Rank": 1, - "CommandName": "Remove-PnPOrgNewsSite", "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "CommandName": "Remove-PnPOrgNewsSite", "Id": 1113 }, { "Rank": 1, - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\"", + "CommandName": "Remove-PnPPage", "Id": 1114 }, { "Rank": 2, - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "CommandName": "Remove-PnPPage", "Id": 1115 }, { "Rank": 3, - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage $page", + "CommandName": "Remove-PnPPage", "Id": 1116 }, { "Rank": 4, - "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "CommandName": "Remove-PnPPage", "Id": 1117 }, { "Rank": 1, - "CommandName": "Remove-PnPPageComponent", "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Remove-PnPPageComponent", "Id": 1118 }, { "Rank": 1, - "CommandName": "Remove-PnPPlannerBucket", "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "CommandName": "Remove-PnPPlannerBucket", "Id": 1119 }, { "Rank": 1, - "CommandName": "Remove-PnPPlannerPlan", "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "CommandName": "Remove-PnPPlannerPlan", "Id": 1120 }, { "Rank": 1, - "CommandName": "Remove-PnPPlannerRoster", "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "CommandName": "Remove-PnPPlannerRoster", "Id": 1121 }, { "Rank": 1, - "CommandName": "Remove-PnPPlannerRosterMember", "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPPlannerRosterMember", "Id": 1122 }, { "Rank": 1, - "CommandName": "Remove-PnPPlannerTask", "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "CommandName": "Remove-PnPPlannerTask", "Id": 1123 }, { "Rank": 1, - "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1124 }, { "Rank": 2, - "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1125 }, { "Rank": 3, - "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "CommandName": "Remove-PnPPropertyBagValue", "Id": 1126 }, { "Rank": 1, - "CommandName": "Remove-PnPPublishingImageRendition", "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "CommandName": "Remove-PnPPublishingImageRendition", "Id": 1127 }, { "Rank": 1, - "CommandName": "Remove-PnPRoleDefinition", "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "CommandName": "Remove-PnPRoleDefinition", "Id": 1128 }, { "Rank": 1, - "CommandName": "Remove-PnPSdnProvider", "Command": "Remove-PnPSdnProvider -Confirm:false", + "CommandName": "Remove-PnPSdnProvider", "Id": 1129 }, { "Rank": 1, - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1130 }, { "Rank": 2, - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1131 }, { "Rank": 3, - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1132 }, { "Rank": 4, - "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Remove-PnPSearchConfiguration", "Id": 1133 }, { "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1134 }, { "Rank": 2, - "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1135 }, { "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Id": 1136 }, { "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionTermStore", "Command": "Remove-PnPSiteCollectionTermStore", + "CommandName": "Remove-PnPSiteCollectionTermStore", "Id": 1137 }, { "Rank": 1, - "CommandName": "Remove-PnPSiteDesign", "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteDesign", "Id": 1138 }, { "Rank": 1, - "CommandName": "Remove-PnPSiteDesignTask", "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteDesignTask", "Id": 1139 }, { "Rank": 1, - "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Remove-PnPSiteGroup", "Id": 1140 }, { "Rank": 2, - "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "CommandName": "Remove-PnPSiteGroup", "Id": 1141 }, { "Rank": 1, - "CommandName": "Remove-PnPSiteScript", "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteScript", "Id": 1142 }, { "Rank": 1, - "CommandName": "Remove-PnPSiteUserInvitations", "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "CommandName": "Remove-PnPSiteUserInvitations", "Id": 1143 }, { "Rank": 1, - "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey", + "CommandName": "Remove-PnPStorageEntity", "Id": 1144 }, { "Rank": 2, - "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "CommandName": "Remove-PnPStorageEntity", "Id": 1145 }, { "Rank": 1, - "CommandName": "Remove-PnPStoredCredential", "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "CommandName": "Remove-PnPStoredCredential", "Id": 1146 }, { "Rank": 1, - "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "CommandName": "Remove-PnPTaxonomyItem", "Id": 1147 }, { "Rank": 2, - "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "CommandName": "Remove-PnPTaxonomyItem", "Id": 1148 }, { "Rank": 1, - "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "CommandName": "Remove-PnPTeamsApp", "Id": 1149 }, { "Rank": 2, - "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "CommandName": "Remove-PnPTeamsApp", "Id": 1150 }, { "Rank": 1, - "CommandName": "Remove-PnPTeamsChannel", "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "CommandName": "Remove-PnPTeamsChannel", "Id": 1151 }, { "Rank": 1, - "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1152 }, { "Rank": 2, - "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1153 }, { "Rank": 3, - "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1154 }, { "Rank": 1, - "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "CommandName": "Remove-PnPTeamsTab", "Id": 1155 }, { "Rank": 2, - "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "CommandName": "Remove-PnPTeamsTab", "Id": 1156 }, { "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", + "CommandName": "Remove-PnPTeamsTab", "Id": 1157 }, { "Rank": 1, - "CommandName": "Remove-PnPTeamsTag", "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "CommandName": "Remove-PnPTeamsTag", "Id": 1158 }, { "Rank": 1, - "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "CommandName": "Remove-PnPTeamsTeam", "Id": 1159 }, { "Rank": 2, - "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity testteam", + "CommandName": "Remove-PnPTeamsTeam", "Id": 1160 }, { "Rank": 1, - "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "CommandName": "Remove-PnPTeamsUser", "Id": 1161 }, { "Rank": 2, - "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Remove-PnPTeamsUser", "Id": 1162 }, { "Rank": 1, - "CommandName": "Remove-PnPTenantCdnOrigin", "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "CommandName": "Remove-PnPTenantCdnOrigin", "Id": 1163 }, { "Rank": 1, - "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1164 }, { "Rank": 2, - "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1165 }, { "Rank": 1, - "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Remove-PnPTenantSite", "Id": 1166 }, { "Rank": 2, - "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "CommandName": "Remove-PnPTenantSite", "Id": 1167 }, { "Rank": 3, - "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "CommandName": "Remove-PnPTenantSite", "Id": 1168 }, { "Rank": 1, - "CommandName": "Remove-PnPTenantSyncClientRestriction", "Command": "Remove-PnPTenantSyncClientRestriction", + "CommandName": "Remove-PnPTenantSyncClientRestriction", "Id": 1169 }, { "Rank": 1, - "CommandName": "Remove-PnPTenantTheme", "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "CommandName": "Remove-PnPTenantTheme", "Id": 1170 }, { "Rank": 1, - "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "CommandName": "Remove-PnPTerm", "Id": 1171 }, { "Rank": 2, - "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Remove-PnPTerm", "Id": 1172 }, { "Rank": 1, - "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "CommandName": "Remove-PnPTermGroup", "Id": 1173 }, { "Rank": 2, - "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "CommandName": "Remove-PnPTermGroup", "Id": 1174 }, { "Rank": 3, - "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "CommandName": "Remove-PnPTermGroup", "Id": 1175 }, { "Rank": 1, - "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", + "CommandName": "Remove-PnPTermLabel", "Id": 1176 }, { "Rank": 2, - "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Remove-PnPTermLabel", "Id": 1177 }, { "Rank": 1, - "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity 23", + "CommandName": "Remove-PnPUser", "Id": 1178 }, { "Rank": 2, - "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "CommandName": "Remove-PnPUser", "Id": 1179 }, { "Rank": 3, - "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "CommandName": "Remove-PnPUser", "Id": 1180 }, { "Rank": 1, - "CommandName": "Remove-PnPUserInfo", "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "CommandName": "Remove-PnPUserInfo", "Id": 1181 }, { "Rank": 1, - "CommandName": "Remove-PnPUserProfile", "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "CommandName": "Remove-PnPUserProfile", "Id": 1182 }, { "Rank": 1, - "CommandName": "Remove-PnPView", "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "CommandName": "Remove-PnPView", "Id": 1183 }, { "Rank": 1, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Id": 1184 }, { "Rank": 1, - "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity projectA", + "CommandName": "Remove-PnPWeb", "Id": 1185 }, { "Rank": 2, - "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "CommandName": "Remove-PnPWeb", "Id": 1186 }, { "Rank": 1, - "CommandName": "Remove-PnPWebhookSubscription", "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "CommandName": "Remove-PnPWebhookSubscription", "Id": 1187 }, { "Rank": 1, - "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Remove-PnPWebPart", "Id": 1188 }, { "Rank": 2, - "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "CommandName": "Remove-PnPWebPart", "Id": 1189 }, { "Rank": 1, - "CommandName": "Remove-PnPWikiPage", "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "CommandName": "Remove-PnPWikiPage", "Id": 1190 }, { "Rank": 1, - "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "CommandName": "Rename-PnPFile", "Id": 1191 }, { "Rank": 2, - "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "CommandName": "Rename-PnPFile", "Id": 1192 }, { "Rank": 3, - "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "CommandName": "Rename-PnPFile", "Id": 1193 }, { "Rank": 1, - "CommandName": "Rename-PnPFolder", "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "CommandName": "Rename-PnPFolder", "Id": 1194 }, { "Rank": 1, - "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Repair-PnPSite", "Id": 1195 }, { "Rank": 2, - "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "CommandName": "Repair-PnPSite", "Id": 1196 }, { "Rank": 1, - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken", + "CommandName": "Request-PnPAccessToken", "Id": 1197 }, { "Rank": 2, - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "CommandName": "Request-PnPAccessToken", "Id": 1198 }, { "Rank": 3, - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "CommandName": "Request-PnPAccessToken", "Id": 1199 }, { "Rank": 4, - "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "CommandName": "Request-PnPAccessToken", "Id": 1200 }, { "Rank": 1, - "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "CommandName": "Request-PnPPersonalSite", "Id": 1201 }, { "Rank": 2, - "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "CommandName": "Request-PnPPersonalSite", "Id": 1202 }, { "Rank": 1, - "CommandName": "Request-PnPReIndexList", "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "CommandName": "Request-PnPReIndexList", "Id": 1203 }, { "Rank": 1, - "CommandName": "Request-PnPReIndexWeb", "Command": "Request-PnPReIndexWeb", + "CommandName": "Request-PnPReIndexWeb", "Id": 1204 }, { "Rank": 1, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1205 }, { "Rank": 2, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1206 }, { "Rank": 3, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1207 }, { "Rank": 1, - "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "CommandName": "Reset-PnPFileVersion", "Id": 1208 }, { "Rank": 2, - "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "CommandName": "Reset-PnPFileVersion", "Id": 1209 }, { "Rank": 1, - "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\"", + "CommandName": "Reset-PnPLabel", "Id": 1210 }, { "Rank": 2, - "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "CommandName": "Reset-PnPLabel", "Id": 1211 }, { "Rank": 1, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Command": "Reset-PnPMicrosoft365GroupExpiration", + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Id": 1212 }, { "Rank": 1, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Id": 1213 }, { "Rank": 1, - "CommandName": "Resolve-PnPFolder", "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "CommandName": "Resolve-PnPFolder", "Id": 1214 }, { "Rank": 1, - "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Id": 1215 }, { "Rank": 1, - "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "CommandName": "Restore-PnPFileVersion", "Id": 1216 }, { "Rank": 2, - "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "CommandName": "Restore-PnPFileVersion", "Id": 1217 }, { "Rank": 3, - "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "CommandName": "Restore-PnPFileVersion", "Id": 1218 }, { "Rank": 1, - "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "CommandName": "Restore-PnPListItemVersion", "Id": 1219 }, { "Rank": 2, - "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "CommandName": "Restore-PnPListItemVersion", "Id": 1220 }, { "Rank": 1, - "CommandName": "Restore-PnPRecycleBinItem", "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "CommandName": "Restore-PnPRecycleBinItem", "Id": 1221 }, { "Rank": 1, - "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1222 }, { "Rank": 2, - "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1223 }, { "Rank": 1, - "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Restore-PnPTenantSite", "Id": 1224 }, { "Rank": 2, - "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "CommandName": "Restore-PnPTenantSite", "Id": 1225 }, { "Rank": 3, - "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "CommandName": "Restore-PnPTenantSite", "Id": 1226 }, { "Rank": 1, - "CommandName": "Revoke-PnPAzureADAppSitePermission", "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "CommandName": "Revoke-PnPAzureADAppSitePermission", "Id": 1227 }, { "Rank": 1, - "CommandName": "Revoke-PnPHubSiteRights", "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Revoke-PnPHubSiteRights", "Id": 1228 }, { "Rank": 1, - "CommandName": "Revoke-PnPSiteDesignRights", "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Revoke-PnPSiteDesignRights", "Id": 1229 }, { "Rank": 1, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Id": 1230 }, { "Rank": 1, - "CommandName": "Revoke-PnPUserSession", "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "CommandName": "Revoke-PnPUserSession", "Id": 1231 }, { "Rank": 1, - "CommandName": "Save-PnPPageConversionLog", "Command": "Save-PnPPageConversionLog", + "CommandName": "Save-PnPPageConversionLog", "Id": 1232 }, { "Rank": 1, - "CommandName": "Save-PnPSiteTemplate", "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "CommandName": "Save-PnPSiteTemplate", "Id": 1233 }, { "Rank": 1, - "CommandName": "Save-PnPTenantTemplate", "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "CommandName": "Save-PnPTenantTemplate", "Id": 1234 }, { "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\"", + "CommandName": "Send-PnPMail", "Id": 1235 }, { "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", + "CommandName": "Send-PnPMail", "Id": 1236 }, { "Rank": 3, - "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "CommandName": "Send-PnPMail", "Id": 1237 }, { "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", + "CommandName": "Send-PnPMail", "Id": 1238 }, { "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", + "CommandName": "Send-PnPMail", "Id": 1239 }, { "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\"", + "CommandName": "Send-PnPMail", "Id": 1240 }, { "Rank": 1, - "CommandName": "Set-PnPAdaptiveScopeProperty", "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "CommandName": "Set-PnPAdaptiveScopeProperty", "Id": 1241 }, { "Rank": 1, - "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Set-PnPApplicationCustomizer", "Id": 1242 }, { "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`\"}\"", + "CommandName": "Set-PnPApplicationCustomizer", "Id": 1243 }, { "Rank": 1, - "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -On", + "CommandName": "Set-PnPAppSideLoading", "Id": 1244 }, { "Rank": 2, - "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -Off", + "CommandName": "Set-PnPAppSideLoading", "Id": 1245 }, { "Rank": 1, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -EnableAll", + "CommandName": "Set-PnPAuditing", "Id": 1246 }, { "Rank": 2, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -DisableAll", + "CommandName": "Set-PnPAuditing", "Id": 1247 }, { "Rank": 3, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7", + "CommandName": "Set-PnPAuditing", "Id": 1248 }, { "Rank": 4, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -TrimAuditLog", + "CommandName": "Set-PnPAuditing", "Id": 1249 }, { "Rank": 5, - "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "CommandName": "Set-PnPAuditing", "Id": 1250 }, { "Rank": 1, - "CommandName": "Set-PnPAvailablePageLayouts", "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "CommandName": "Set-PnPAvailablePageLayouts", "Id": 1251 }, { "Rank": 1, - "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1252 }, { "Rank": 2, - "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1253 }, { "Rank": 1, - "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPAzureADGroup", "Id": 1254 }, { "Rank": 2, - "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPAzureADGroup", "Id": 1255 }, { "Rank": 3, - "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "CommandName": "Set-PnPAzureADGroup", "Id": 1256 }, { "Rank": 1, - "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1257 }, { "Rank": 2, - "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1258 }, { "Rank": 3, - "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1259 }, { "Rank": 1, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1260 }, { "Rank": 2, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1261 }, { "Rank": 1, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1262 }, { "Rank": 2, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1263 }, { "Rank": 3, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1264 }, { "Rank": 4, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1265 }, { "Rank": 1, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "CommandName": "Set-PnPContentType", "Id": 1266 }, { "Rank": 2, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "CommandName": "Set-PnPContentType", "Id": 1267 }, { "Rank": 3, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "CommandName": "Set-PnPContentType", "Id": 1268 }, { "Rank": 4, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "CommandName": "Set-PnPContentType", "Id": 1269 }, { "Rank": 5, - "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "CommandName": "Set-PnPContentType", "Id": 1270 }, { "Rank": 1, - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1271 }, { "Rank": 2, - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1272 }, { "Rank": 3, - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1273 }, { "Rank": 4, - "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "CommandName": "Set-PnPDefaultColumnValues", "Id": 1274 }, { "Rank": 1, - "CommandName": "Set-PnPDefaultContentTypeToList", "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "CommandName": "Set-PnPDefaultContentTypeToList", "Id": 1275 }, { "Rank": 1, - "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1276 }, { "Rank": 2, - "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1277 }, { "Rank": 3, - "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "CommandName": "Set-PnPDefaultPageLayout", "Id": 1278 }, { "Rank": 1, - "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1279 }, { "Rank": 2, - "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1280 }, { "Rank": 3, - "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1281 }, { "Rank": 1, - "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "CommandName": "Set-PnPDocumentSetField", "Id": 1282 }, { "Rank": 2, - "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "CommandName": "Set-PnPDocumentSetField", "Id": 1283 }, { "Rank": 1, - "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "CommandName": "Set-PnPField", "Id": 1284 }, { "Rank": 2, - "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "CommandName": "Set-PnPField", "Id": 1285 }, { "Rank": 3, - "CommandName": "Set-PnPField", "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "CommandName": "Set-PnPField", "Id": 1286 }, { "Rank": 1, - "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "CommandName": "Set-PnPFileCheckedIn", "Id": 1287 }, { "Rank": 2, - "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "CommandName": "Set-PnPFileCheckedIn", "Id": 1288 }, { "Rank": 1, - "CommandName": "Set-PnPFileCheckedOut", "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "CommandName": "Set-PnPFileCheckedOut", "Id": 1289 }, { "Rank": 1, - "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPFolderPermission", "Id": 1290 }, { "Rank": 2, - "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPFolderPermission", "Id": 1291 }, { "Rank": 3, - "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "CommandName": "Set-PnPFolderPermission", "Id": 1292 }, { "Rank": 1, - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true", + "CommandName": "Set-PnPFooter", "Id": 1293 }, { "Rank": 2, - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "CommandName": "Set-PnPFooter", "Id": 1294 }, { "Rank": 3, - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "CommandName": "Set-PnPFooter", "Id": 1295 }, { "Rank": 4, - "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -LogoUrl \"\"", + "CommandName": "Set-PnPFooter", "Id": 1296 }, { "Rank": 1, - "CommandName": "Set-PnPGraphSubscription", "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "CommandName": "Set-PnPGraphSubscription", "Id": 1297 }, { "Rank": 1, - "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "CommandName": "Set-PnPGroup", "Id": 1298 }, { "Rank": 2, - "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "CommandName": "Set-PnPGroup", "Id": 1299 }, { "Rank": 1, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "CommandName": "Set-PnPGroupPermissions", "Id": 1300 }, { "Rank": 2, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "CommandName": "Set-PnPGroupPermissions", "Id": 1301 }, { "Rank": 3, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "CommandName": "Set-PnPGroupPermissions", "Id": 1302 }, { "Rank": 4, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "CommandName": "Set-PnPGroupPermissions", "Id": 1303 }, { "Rank": 5, - "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "CommandName": "Set-PnPGroupPermissions", "Id": 1304 }, { "Rank": 1, - "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "CommandName": "Set-PnPHideDefaultThemes", "Id": 1305 }, { "Rank": 2, - "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "CommandName": "Set-PnPHideDefaultThemes", "Id": 1306 }, { "Rank": 1, - "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "CommandName": "Set-PnPHomePage", "Id": 1307 }, { "Rank": 2, - "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "CommandName": "Set-PnPHomePage", "Id": 1308 }, { "Rank": 1, - "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "CommandName": "Set-PnPHomeSite", "Id": 1309 }, { "Rank": 2, - "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "CommandName": "Set-PnPHomeSite", "Id": 1310 }, { "Rank": 1, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "CommandName": "Set-PnPHubSite", "Id": 1311 }, { "Rank": 2, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "CommandName": "Set-PnPHubSite", "Id": 1312 }, { "Rank": 3, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "CommandName": "Set-PnPHubSite", "Id": 1313 }, { "Rank": 4, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", + "CommandName": "Set-PnPHubSite", "Id": 1314 }, { "Rank": 5, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "CommandName": "Set-PnPHubSite", "Id": 1315 }, { "Rank": 6, - "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "CommandName": "Set-PnPHubSite", "Id": 1316 }, { "Rank": 1, - "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "CommandName": "Set-PnPImageListItemColumn", "Id": 1317 }, { "Rank": 2, - "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "CommandName": "Set-PnPImageListItemColumn", "Id": 1318 }, { "Rank": 1, - "CommandName": "Set-PnPIndexedProperties", "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "CommandName": "Set-PnPIndexedProperties", "Id": 1319 }, { "Rank": 1, - "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1320 }, { "Rank": 2, - "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1321 }, { "Rank": 1, - "CommandName": "Set-PnPKnowledgeHubSite", "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "CommandName": "Set-PnPKnowledgeHubSite", "Id": 1322 }, { "Rank": 1, - "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "CommandName": "Set-PnPLabel", "Id": 1323 }, { "Rank": 2, - "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "CommandName": "Set-PnPLabel", "Id": 1324 }, { "Rank": 1, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "CommandName": "Set-PnPList", "Id": 1325 }, { "Rank": 2, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "CommandName": "Set-PnPList", "Id": 1326 }, { "Rank": 3, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "CommandName": "Set-PnPList", "Id": 1327 }, { "Rank": 4, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "CommandName": "Set-PnPList", "Id": 1328 }, { "Rank": 5, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "CommandName": "Set-PnPList", "Id": 1329 }, { "Rank": 6, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "CommandName": "Set-PnPList", "Id": 1330 }, { "Rank": 7, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "CommandName": "Set-PnPList", "Id": 1331 }, { "Rank": 8, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "CommandName": "Set-PnPList", "Id": 1332 }, { "Rank": 9, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "CommandName": "Set-PnPList", "Id": 1333 }, { "Rank": 10, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "CommandName": "Set-PnPList", "Id": 1334 }, { "Rank": 11, - "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "CommandName": "Set-PnPList", "Id": 1335 }, { "Rank": 1, - "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1336 }, { "Rank": 2, - "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1337 }, { "Rank": 1, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem", "Id": 1338 }, { "Rank": 2, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem", "Id": 1339 }, { "Rank": 3, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem", "Id": 1340 }, { "Rank": 4, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "CommandName": "Set-PnPListItem", "Id": 1341 }, { "Rank": 5, - "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "CommandName": "Set-PnPListItem", "Id": 1342 }, { "Rank": 1, - "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "CommandName": "Set-PnPListItemAsRecord", "Id": 1343 }, { "Rank": 2, - "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "CommandName": "Set-PnPListItemAsRecord", "Id": 1344 }, { "Rank": 1, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPListItemPermission", "Id": 1345 }, { "Rank": 2, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPListItemPermission", "Id": 1346 }, { "Rank": 3, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "CommandName": "Set-PnPListItemPermission", "Id": 1347 }, { "Rank": 4, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "CommandName": "Set-PnPListItemPermission", "Id": 1348 }, { "Rank": 5, - "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "CommandName": "Set-PnPListItemPermission", "Id": 1349 }, { "Rank": 1, - "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPListPermission", "Id": 1350 }, { "Rank": 2, - "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPListPermission", "Id": 1351 }, { "Rank": 1, - "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "CommandName": "Set-PnPListRecordDeclaration", "Id": 1352 }, { "Rank": 2, - "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "CommandName": "Set-PnPListRecordDeclaration", "Id": 1353 }, { "Rank": 1, - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", "Id": 1354 }, { "Rank": 2, - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", "Id": 1355 }, { "Rank": 3, - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", "Id": 1356 }, { "Rank": 4, - "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", "Id": 1357 }, { "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1358 }, { "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1359 }, { "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1360 }, { "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1361 }, { "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1362 }, { "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1363 }, { "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1364 }, { "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1365 }, { "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1366 }, { "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1367 }, { "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1368 }, { "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1369 }, { "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1370 }, { "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1371 }, { "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1372 }, { "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1373 }, { "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1374 }, { "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1375 }, { "Rank": 1, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1376 }, { "Rank": 2, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1377 }, { "Rank": 3, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1378 }, { "Rank": 4, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1379 }, { "Rank": 5, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1380 }, { "Rank": 6, - "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "CommandName": "Set-PnPMicrosoft365Group", "Id": 1381 }, { "Rank": 1, - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1382 }, { "Rank": 2, - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1383 }, { "Rank": 1, - "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -Off", + "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1384 }, { "Rank": 2, - "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -On", + "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1385 }, { "Rank": 1, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "CommandName": "Set-PnPPage", "Id": 1386 }, { "Rank": 2, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "CommandName": "Set-PnPPage", "Id": 1387 }, { "Rank": 3, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "CommandName": "Set-PnPPage", "Id": 1388 }, { "Rank": 4, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "CommandName": "Set-PnPPage", "Id": 1389 }, { "Rank": 5, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "CommandName": "Set-PnPPage", "Id": 1390 }, { "Rank": 6, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", + "CommandName": "Set-PnPPage", "Id": 1391 }, { "Rank": 7, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "CommandName": "Set-PnPPage", "Id": 1392 }, { "Rank": 8, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "CommandName": "Set-PnPPage", "Id": 1393 }, { "Rank": 9, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "CommandName": "Set-PnPPage", "Id": 1394 }, { "Rank": 10, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "CommandName": "Set-PnPPage", "Id": 1395 }, { "Rank": 11, - "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "CommandName": "Set-PnPPage", "Id": 1396 }, { "Rank": 1, - "CommandName": "Set-PnPPageTextPart", "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "CommandName": "Set-PnPPageTextPart", "Id": 1397 }, { "Rank": 1, - "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "CommandName": "Set-PnPPageWebPart", "Id": 1398 }, { "Rank": 2, - "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "CommandName": "Set-PnPPageWebPart", "Id": 1399 }, { "Rank": 1, - "CommandName": "Set-PnPPlannerBucket", "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "CommandName": "Set-PnPPlannerBucket", "Id": 1400 }, { "Rank": 1, - "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "CommandName": "Set-PnPPlannerConfiguration", "Id": 1401 }, { "Rank": 2, - "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "CommandName": "Set-PnPPlannerConfiguration", "Id": 1402 }, { "Rank": 1, - "CommandName": "Set-PnPPlannerPlan", "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "CommandName": "Set-PnPPlannerPlan", "Id": 1403 }, { "Rank": 1, - "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "CommandName": "Set-PnPPlannerTask", "Id": 1404 }, { "Rank": 2, - "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "CommandName": "Set-PnPPlannerTask", "Id": 1405 }, { "Rank": 3, - "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "CommandName": "Set-PnPPlannerTask", "Id": 1406 }, { "Rank": 1, - "CommandName": "Set-PnPPlannerUserPolicy", "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Set-PnPPlannerUserPolicy", "Id": 1407 }, { "Rank": 1, - "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "CommandName": "Set-PnPPropertyBagValue", "Id": 1408 }, { "Rank": 2, - "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "CommandName": "Set-PnPPropertyBagValue", "Id": 1409 }, { "Rank": 3, - "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "CommandName": "Set-PnPPropertyBagValue", "Id": 1410 }, { "Rank": 1, - "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1411 }, { "Rank": 2, - "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled", + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1412 }, { "Rank": 3, - "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "CommandName": "Set-PnPRequestAccessEmails", "Id": 1413 }, { "Rank": 1, - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "CommandName": "Set-PnPRoleDefinition", "Id": 1414 }, { "Rank": 2, - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "CommandName": "Set-PnPRoleDefinition", "Id": 1415 }, { "Rank": 3, - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "CommandName": "Set-PnPRoleDefinition", "Id": 1416 }, { "Rank": 4, - "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "CommandName": "Set-PnPRoleDefinition", "Id": 1417 }, { "Rank": 1, - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config", + "CommandName": "Set-PnPSearchConfiguration", "Id": 1418 }, { "Rank": 2, - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "CommandName": "Set-PnPSearchConfiguration", "Id": 1419 }, { "Rank": 3, - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "CommandName": "Set-PnPSearchConfiguration", "Id": 1420 }, { "Rank": 4, - "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Set-PnPSearchConfiguration", "Id": 1421 }, { "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", + "CommandName": "Set-PnPSearchExternalItem", "Id": 1422 }, { "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\"", + "CommandName": "Set-PnPSearchExternalItem", "Id": 1423 }, { "Rank": 1, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "CommandName": "Set-PnPSearchSettings", "Id": 1424 }, { "Rank": 2, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "CommandName": "Set-PnPSearchSettings", "Id": 1425 }, { "Rank": 3, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "CommandName": "Set-PnPSearchSettings", "Id": 1426 }, { "Rank": 4, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "CommandName": "Set-PnPSearchSettings", "Id": 1427 }, { "Rank": 5, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "CommandName": "Set-PnPSearchSettings", "Id": 1428 }, { "Rank": 6, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "CommandName": "Set-PnPSearchSettings", "Id": 1429 }, { "Rank": 7, - "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Hub", + "CommandName": "Set-PnPSearchSettings", "Id": 1430 }, { "Rank": 1, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification \"HBI\"", + "CommandName": "Set-PnPSite", "Id": 1431 }, { "Rank": 2, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification $null", + "CommandName": "Set-PnPSite", "Id": 1432 }, { "Rank": 3, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows", + "CommandName": "Set-PnPSite", "Id": 1433 }, { "Rank": 4, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows:$false", + "CommandName": "Set-PnPSite", "Id": 1434 }, { "Rank": 5, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "CommandName": "Set-PnPSite", "Id": 1435 }, { "Rank": 6, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -NoScriptSite $false", + "CommandName": "Set-PnPSite", "Id": 1436 }, { "Rank": 7, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "CommandName": "Set-PnPSite", "Id": 1437 }, { "Rank": 8, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "CommandName": "Set-PnPSite", "Id": 1438 }, { "Rank": 9, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "CommandName": "Set-PnPSite", "Id": 1439 }, { "Rank": 10, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "CommandName": "Set-PnPSite", "Id": 1440 }, { "Rank": 11, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "CommandName": "Set-PnPSite", "Id": 1441 }, { "Rank": 12, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "CommandName": "Set-PnPSite", "Id": 1442 }, { "Rank": 13, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "CommandName": "Set-PnPSite", "Id": 1443 }, { "Rank": 14, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "CommandName": "Set-PnPSite", "Id": 1444 }, { "Rank": 15, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "CommandName": "Set-PnPSite", "Id": 1445 }, { "Rank": 16, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "CommandName": "Set-PnPSite", "Id": 1446 }, { "Rank": 17, - "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -CancelVPForExistingLibs", + "CommandName": "Set-PnPSite", "Id": 1447 }, { "Rank": 1, - "CommandName": "Set-PnPSiteClassification", "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "CommandName": "Set-PnPSiteClassification", "Id": 1448 }, { "Rank": 1, - "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Open", + "CommandName": "Set-PnPSiteClosure", "Id": 1449 }, { "Rank": 2, - "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Closed", + "CommandName": "Set-PnPSiteClosure", "Id": 1450 }, { "Rank": 1, - "CommandName": "Set-PnPSiteDesign", "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "CommandName": "Set-PnPSiteDesign", "Id": 1451 }, { "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\"", + "CommandName": "Set-PnPSiteDesign", "Id": 1452 }, { "Rank": 1, - "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "CommandName": "Set-PnPSiteGroup", "Id": 1453 }, { "Rank": 2, - "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "CommandName": "Set-PnPSiteGroup", "Id": 1454 }, { "Rank": 1, - "CommandName": "Set-PnPSitePolicy", "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "CommandName": "Set-PnPSitePolicy", "Id": 1455 }, { "Rank": 1, - "CommandName": "Set-PnPSiteScript", "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "CommandName": "Set-PnPSiteScript", "Id": 1456 }, { "Rank": 1, - "CommandName": "Set-PnPSiteScriptPackage", "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "CommandName": "Set-PnPSiteScriptPackage", "Id": 1457 }, { "Rank": 1, - "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1458 }, { "Rank": 2, - "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1459 }, { "Rank": 1, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1460 }, { "Rank": 2, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1461 }, { "Rank": 3, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1462 }, { "Rank": 4, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1463 }, { "Rank": 5, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1464 }, { "Rank": 6, - "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1465 }, { "Rank": 1, - "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "CommandName": "Set-PnPStorageEntity", "Id": 1466 }, { "Rank": 2, - "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "CommandName": "Set-PnPStorageEntity", "Id": 1467 }, { "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1468 }, { "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1469 }, { "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1470 }, { "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1471 }, { "Rank": 1, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1472 }, { "Rank": 2, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1473 }, { "Rank": 1, - "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1474 }, { "Rank": 2, - "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1475 }, { "Rank": 3, - "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1476 }, { "Rank": 1, - "CommandName": "Set-PnPTeamifyPromptHidden", "Command": "Set-PnPTeamifyPromptHidden", + "CommandName": "Set-PnPTeamifyPromptHidden", "Id": 1477 }, { "Rank": 1, - "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "CommandName": "Set-PnPTeamsChannel", "Id": 1478 }, { "Rank": 2, - "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "CommandName": "Set-PnPTeamsChannel", "Id": 1479 }, { "Rank": 1, - "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", + "CommandName": "Set-PnpTeamsChannelUser", "Id": 1480 }, { "Rank": 2, - "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "CommandName": "Set-PnpTeamsChannelUser", "Id": 1481 }, { "Rank": 1, - "CommandName": "Set-PnPTeamsTab", "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "CommandName": "Set-PnPTeamsTab", "Id": 1482 }, { "Rank": 1, - "CommandName": "Set-PnPTeamsTag", "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "CommandName": "Set-PnPTeamsTag", "Id": 1483 }, { "Rank": 1, - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "CommandName": "Set-PnPTeamsTeam", "Id": 1484 }, { "Rank": 2, - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "CommandName": "Set-PnPTeamsTeam", "Id": 1485 }, { "Rank": 3, - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "CommandName": "Set-PnPTeamsTeam", "Id": 1486 }, { "Rank": 4, - "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "CommandName": "Set-PnPTeamsTeam", "Id": 1487 }, { "Rank": 1, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1488 }, { "Rank": 2, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1489 }, { "Rank": 3, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1490 }, { "Rank": 1, - "CommandName": "Set-PnPTeamsTeamPicture", "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "CommandName": "Set-PnPTeamsTeamPicture", "Id": 1491 }, { "Rank": 1, - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $true", + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1492 }, { "Rank": 2, - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $false", + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1493 }, { "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\"", + "CommandName": "Set-PnPTenant", "Id": 1494 }, { "Rank": 2, - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "CommandName": "Set-PnPTenant", "Id": 1495 }, { "Rank": 3, - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "CommandName": "Set-PnPTenant", "Id": 1496 }, { "Rank": 4, - "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "CommandName": "Set-PnPTenant", "Id": 1497 }, { "Rank": 1, - "CommandName": "Set-PnPTenantAppCatalogUrl", "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "CommandName": "Set-PnPTenantAppCatalogUrl", "Id": 1498 }, { "Rank": 1, - "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1499 }, { "Rank": 2, - "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1500 }, { "Rank": 3, - "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1501 }, { "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\"", + "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1502 }, { "Rank": 2, - "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1503 }, { "Rank": 1, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "CommandName": "Set-PnPTenantSite", "Id": 1504 }, { "Rank": 2, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "CommandName": "Set-PnPTenantSite", "Id": 1505 }, { "Rank": 3, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Set-PnPTenantSite", "Id": 1506 }, { "Rank": 4, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Set-PnPTenantSite", "Id": 1507 }, { "Rank": 5, - "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "CommandName": "Set-PnPTenantSite", "Id": 1508 }, { "Rank": 1, - "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1509 }, { "Rank": 2, - "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1510 }, { "Rank": 1, - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "CommandName": "Set-PnPTerm", "Id": 1511 }, { "Rank": 2, - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "Set-PnPTerm", "Id": 1512 }, { "Rank": 3, - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "Set-PnPTerm", "Id": 1513 }, { "Rank": 4, - "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "CommandName": "Set-PnPTerm", "Id": 1514 }, { "Rank": 1, - "CommandName": "Set-PnPTermGroup", "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "CommandName": "Set-PnPTermGroup", "Id": 1515 }, { "Rank": 1, - "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "CommandName": "Set-PnPTermSet", "Id": 1516 }, { "Rank": 2, - "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "CommandName": "Set-PnPTermSet", "Id": 1517 }, { "Rank": 3, - "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "CommandName": "Set-PnPTermSet", "Id": 1518 }, { "Rank": 1, - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme", + "CommandName": "Set-PnPTheme", "Id": 1519 }, { "Rank": 2, - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "CommandName": "Set-PnPTheme", "Id": 1520 }, { "Rank": 3, - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "CommandName": "Set-PnPTheme", "Id": 1521 }, { "Rank": 4, - "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "CommandName": "Set-PnPTheme", "Id": 1522 }, { "Rank": 1, - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "CommandName": "Set-PnPTraceLog", "Id": 1523 }, { "Rank": 2, - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "CommandName": "Set-PnPTraceLog", "Id": 1524 }, { "Rank": 3, - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "CommandName": "Set-PnPTraceLog", "Id": 1525 }, { "Rank": 4, - "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -Off", + "CommandName": "Set-PnPTraceLog", "Id": 1526 }, { "Rank": 1, - "CommandName": "Set-PnPUserOneDriveQuota", "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "CommandName": "Set-PnPUserOneDriveQuota", "Id": 1527 }, { "Rank": 1, - "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "CommandName": "Set-PnPUserProfileProperty", "Id": 1528 }, { "Rank": 2, - "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "CommandName": "Set-PnPUserProfileProperty", "Id": 1529 }, { "Rank": 1, - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "CommandName": "Set-PnPView", "Id": 1530 }, { "Rank": 2, - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "CommandName": "Set-PnPView", "Id": 1531 }, { "Rank": 3, - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "CommandName": "Set-PnPView", "Id": 1532 }, { "Rank": 4, - "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "CommandName": "Set-PnPView", "Id": 1533 }, { "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", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1534 }, { "Rank": 2, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1535 }, { "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", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1536 }, { "Rank": 4, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1537 }, { "Rank": 1, - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "CommandName": "Set-PnPWeb", "Id": 1538 }, { "Rank": 2, - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "CommandName": "Set-PnPWeb", "Id": 1539 }, { "Rank": 3, - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "CommandName": "Set-PnPWeb", "Id": 1540 }, { "Rank": 4, - "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -NoCrawl:$true", + "CommandName": "Set-PnPWeb", "Id": 1541 }, { "Rank": 1, - "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "CommandName": "Set-PnPWebHeader", "Id": 1542 }, { "Rank": 2, - "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "CommandName": "Set-PnPWebHeader", "Id": 1543 }, { "Rank": 3, - "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "CommandName": "Set-PnPWebHeader", "Id": 1544 }, { "Rank": 1, - "CommandName": "Set-PnPWebhookSubscription", "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", + "CommandName": "Set-PnPWebhookSubscription", "Id": 1545 }, { "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\"", + "CommandName": "Set-PnPWebhookSubscription", "Id": 1546 }, { "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\"", + "CommandName": "Set-PnPWebPartProperty", "Id": 1547 }, { "Rank": 1, - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission", "Id": 1548 }, { "Rank": 2, - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission", "Id": 1549 }, { "Rank": 3, - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission", "Id": 1550 }, { "Rank": 4, - "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "CommandName": "Set-PnPWebPermission", "Id": 1551 }, { "Rank": 1, - "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme MyTheme", + "CommandName": "Set-PnPWebTheme", "Id": 1552 }, { "Rank": 2, - "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "CommandName": "Set-PnPWebTheme", "Id": 1553 }, { "Rank": 1, - "CommandName": "Set-PnPWikiPageContent", "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "CommandName": "Set-PnPWikiPageContent", "Id": 1554 }, { "Rank": 1, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "CommandName": "Submit-PnPSearchQuery", "Id": 1555 }, { "Rank": 2, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "CommandName": "Submit-PnPSearchQuery", "Id": 1556 }, { "Rank": 3, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "CommandName": "Submit-PnPSearchQuery", "Id": 1557 }, { "Rank": 4, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "CommandName": "Submit-PnPSearchQuery", "Id": 1558 }, { "Rank": 5, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "CommandName": "Submit-PnPSearchQuery", "Id": 1559 }, { "Rank": 6, - "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", + "CommandName": "Submit-PnPSearchQuery", "Id": 1560 }, { "Rank": 1, - "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1561 }, { "Rank": 2, - "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1562 }, { "Rank": 1, - "CommandName": "Sync-PnPAppToTeams", "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Sync-PnPAppToTeams", "Id": 1563 }, { "Rank": 1, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1564 }, { "Rank": 2, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1565 }, { "Rank": 3, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1566 }, { "Rank": 1, - "CommandName": "Test-PnPListItemIsRecord", "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "CommandName": "Test-PnPListItemIsRecord", "Id": 1567 }, { "Rank": 1, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Id": 1568 }, { "Rank": 1, - "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Test-PnPSite", "Id": 1569 }, { "Rank": 2, - "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "CommandName": "Test-PnPSite", "Id": 1570 }, { "Rank": 1, - "CommandName": "Test-PnPTenantTemplate", "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "CommandName": "Test-PnPTenantTemplate", "Id": 1571 }, { "Rank": 1, - "CommandName": "Undo-PnPFileCheckedOut", "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "CommandName": "Undo-PnPFileCheckedOut", "Id": 1572 }, { "Rank": 1, - "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Uninstall-PnPApp", "Id": 1573 }, { "Rank": 2, - "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Uninstall-PnPApp", "Id": 1574 }, { "Rank": 1, - "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Unpublish-PnPApp", "Id": 1575 }, { "Rank": 2, - "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Unpublish-PnPApp", "Id": 1576 }, { "Rank": 1, - "CommandName": "Unpublish-PnPContentType", "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "CommandName": "Unpublish-PnPContentType", "Id": 1577 }, { "Rank": 1, - "CommandName": "Unpublish-PnPSyntexModel", "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "CommandName": "Unpublish-PnPSyntexModel", "Id": 1578 }, { "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", + "CommandName": "Unpublish-PnPSyntexModel", "Id": 1579 }, { "Rank": 1, - "CommandName": "Unregister-PnPHubSite", "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "CommandName": "Unregister-PnPHubSite", "Id": 1580 }, { "Rank": 1, - "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Update-PnPApp", "Id": 1581 }, { "Rank": 2, - "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Update-PnPApp", "Id": 1582 }, { "Rank": 1, - "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1583 }, { "Rank": 2, - "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1584 }, { "Rank": 3, - "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1585 }, { "Rank": 1, - "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1586 }, { "Rank": 2, - "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1587 }, { "Rank": 3, - "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1588 }, { "Rank": 1, - "CommandName": "Update-PnPTeamsApp", "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "CommandName": "Update-PnPTeamsApp", "Id": 1589 }, { "Rank": 1, - "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Update-PnPTeamsUser", "Id": 1590 }, { "Rank": 2, - "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "CommandName": "Update-PnPTeamsUser", "Id": 1591 }, { "Rank": 3, - "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "CommandName": "Update-PnPTeamsUser", "Id": 1592 }, { "Rank": 1, - "CommandName": "Update-PnPUserType", "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "CommandName": "Update-PnPUserType", "Id": 1593 } ] diff --git a/version.txt b/version.txt index c1feb98f4..1cfab5c32 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.117 \ No newline at end of file +2.2.118 \ No newline at end of file From cd0c17a5290282b5f180e4dee49d724f1bbe2390 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sat, 4 Nov 2023 02:36:23 +0000 Subject: [PATCH 128/146] Nightly publish to PowerShell Gallery --- pnpcoresdk_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9558 ++++++++--------- version.txt | 2 +- 3 files changed, 4781 insertions(+), 4781 deletions(-) diff --git a/pnpcoresdk_hash.txt b/pnpcoresdk_hash.txt index 8d847c492..5250c085e 100644 --- a/pnpcoresdk_hash.txt +++ b/pnpcoresdk_hash.txt @@ -1 +1 @@ -630ac53edb5e1cb906016ad0b325816d2c16f446 \ No newline at end of file +c194190ffdf94fe9a3363d8aaa3b52f71ca53183 \ 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 2a78db498..affa9e2e8 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9560 +1,9560 @@ [ { - "Rank": 1, - "Command": "Add-PnPAlert -List \"Demo List\"", "CommandName": "Add-PnPAlert", - "Id": 1 + "Rank": 1, + "Id": 1, + "Command": "Add-PnPAlert -List \"Demo List\"" }, { - "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 + "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)" }, { - "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 + "Rank": 3, + "Id": 3, + "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "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 + "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))" }, { - "Rank": 1, - "Command": "Add-PnPApp -Path ./myapp.sppkg", "CommandName": "Add-PnPApp", - "Id": 5 + "Rank": 1, + "Id": 5, + "Command": "Add-PnPApp -Path ./myapp.sppkg" }, { - "Rank": 2, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "CommandName": "Add-PnPApp", - "Id": 6 + "Rank": 2, + "Id": 6, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" }, { - "Rank": 3, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "CommandName": "Add-PnPApp", - "Id": 7 + "Rank": 3, + "Id": 7, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" }, { - "Rank": 4, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "CommandName": "Add-PnPApp", - "Id": 8 + "Rank": 4, + "Id": 8, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" }, { - "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 + "Rank": 1, + "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\"", "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 10 + "Rank": 1, + "Id": 10, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" }, { - "Rank": 2, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 11 + "Rank": 2, + "Id": 11, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" }, { - "Rank": 1, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAzureADGroupMember", - "Id": 12 + "Rank": 1, + "Id": 12, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 2, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPAzureADGroupMember", - "Id": 13 + "Rank": 2, + "Id": 13, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Rank": 3, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "CommandName": "Add-PnPAzureADGroupMember", - "Id": 14 + "Rank": 3, + "Id": 14, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "Rank": 1, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 15 + "Rank": 1, + "Id": 15, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 2, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 16 + "Rank": 2, + "Id": 16, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Rank": 3, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 17 + "Rank": 3, + "Id": 17, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "Rank": 1, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 18 + "Rank": 1, + "Id": 18, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph" }, { - "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 + "Rank": 2, + "Id": 19, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"" }, { - "Rank": 1, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "CommandName": "Add-PnPContentType", - "Id": 20 + "Rank": 1, + "Id": 20, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct" }, { - "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 + "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\"" }, { - "Rank": 3, - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "CommandName": "Add-PnPContentType", - "Id": 22 + "Rank": 3, + "Id": 22, + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" }, { - "Rank": 4, - "Command": "Add-PnPContentType -Name \"Project Item\"", "CommandName": "Add-PnPContentType", - "Id": 23 + "Rank": 4, + "Id": 23, + "Command": "Add-PnPContentType -Name \"Project Item\"" }, { - "Rank": 5, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "CommandName": "Add-PnPContentType", - "Id": 24 + "Rank": 5, + "Id": 24, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" }, { - "Rank": 1, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 25 + "Rank": 1, + "Id": 25, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" }, { - "Rank": 2, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 26 + "Rank": 2, + "Id": 26, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" }, { - "Rank": 1, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 27 + "Rank": 1, + "Id": 27, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Rank": 2, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 28 + "Rank": 2, + "Id": 28, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Rank": 1, - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "CommandName": "Add-PnPContentTypeToList", - "Id": 29 + "Rank": 1, + "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`\"}\"", "CommandName": "Add-PnPCustomAction", - "Id": 30 + "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`\"}\"" }, { - "Rank": 1, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 31 + "Rank": 1, + "Id": 31, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" }, { - "Rank": 2, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 32 + "Rank": 2, + "Id": 32, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" }, { - "Rank": 1, - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "CommandName": "Add-PnPDocumentSet", - "Id": 33 + "Rank": 1, + "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", "CommandName": "Add-PnPEventReceiver", - "Id": 34 + "Rank": 1, + "Id": 34, + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous" }, { - "Rank": 2, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "CommandName": "Add-PnPEventReceiver", - "Id": 35 + "Rank": 2, + "Id": 35, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous" }, { - "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 + "Rank": 3, + "Id": 36, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site" }, { - "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 + "Rank": 4, + "Id": 37, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web" }, { - "Rank": 1, - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "CommandName": "Add-PnPField", - "Id": 38 + "Rank": 1, + "Id": 38, + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" }, { - "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 + "Rank": 2, + "Id": 39, + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"" }, { - "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 + "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\"" }, { - "Rank": 4, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "CommandName": "Add-PnPField", - "Id": 41 + "Rank": 4, + "Id": 41, + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" }, { - "Rank": 5, - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "CommandName": "Add-PnPField", - "Id": 42 + "Rank": 5, + "Id": 42, + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" }, { - "Rank": 6, - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "CommandName": "Add-PnPField", - "Id": 43 + "Rank": 6, + "Id": 43, + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" }, { - "Rank": 1, - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "CommandName": "Add-PnPFieldToContentType", - "Id": 44 + "Rank": 1, + "Id": 44, + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Rank": 1, - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "CommandName": "Add-PnPFile", - "Id": 45 + "Rank": 1, + "Id": 45, + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" }, { - "Rank": 2, - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "CommandName": "Add-PnPFile", - "Id": 46 + "Rank": 2, + "Id": 46, + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" }, { - "Rank": 3, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Id": 47 + "Rank": 3, + "Id": 47, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" }, { - "Rank": 4, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Id": 48 + "Rank": 4, + "Id": 48, + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" }, { - "Rank": 5, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "CommandName": "Add-PnPFile", - "Id": 49 + "Rank": 5, + "Id": 49, + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" }, { - "Rank": 6, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", "CommandName": "Add-PnPFile", - "Id": 50 + "Rank": 6, + "Id": 50, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" }, { - "Rank": 7, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "CommandName": "Add-PnPFile", - "Id": 51 + "Rank": 7, + "Id": 51, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" }, { - "Rank": 8, - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "CommandName": "Add-PnPFile", - "Id": 52 + "Rank": 8, + "Id": 52, + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" }, { - "Rank": 1, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 53 + "Rank": 1, + "Id": 53, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Rank": 2, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 54 + "Rank": 2, + "Id": 54, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" }, { - "Rank": 3, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 55 + "Rank": 3, + "Id": 55, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" }, { - "Rank": 1, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 56 + "Rank": 1, + "Id": 56, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Rank": 2, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 57 + "Rank": 2, + "Id": 57, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" }, { - "Rank": 1, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "CommandName": "Add-PnPFileSharingInvite", - "Id": 58 + "Rank": 1, + "Id": 58, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "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 + "Rank": 2, + "Id": 59, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" }, { - "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 + "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)" }, { - "Rank": 1, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 61 + "Rank": 1, + "Id": 61, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" }, { - "Rank": 2, - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 62 + "Rank": 2, + "Id": 62, + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" }, { - "Rank": 3, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 63 + "Rank": 3, + "Id": 63, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" }, { - "Rank": 4, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 64 + "Rank": 4, + "Id": 64, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" }, { - "Rank": 5, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 65 + "Rank": 5, + "Id": 65, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" }, { - "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 + "Rank": 1, + "Id": 66, + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "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 + "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\"" }, { - "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 + "Rank": 1, + "Id": 68, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit" }, { - "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 + "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" }, { - "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 + "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" }, { - "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 + "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" }, { - "Rank": 1, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "CommandName": "Add-PnPFolder", - "Id": 72 + "Rank": 1, + "Id": 72, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Rank": 2, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "CommandName": "Add-PnPFolder", - "Id": 73 + "Rank": 2, + "Id": 73, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" }, { - "Rank": 3, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "CommandName": "Add-PnPFolder", - "Id": 74 + "Rank": 3, + "Id": 74, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" }, { - "Rank": 1, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 75 + "Rank": 1, + "Id": 75, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Rank": 2, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 76 + "Rank": 2, + "Id": 76, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" }, { - "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 + "Rank": 3, + "Id": 77, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)" }, { - "Rank": 1, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 78 + "Rank": 1, + "Id": 78, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Rank": 2, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 79 + "Rank": 2, + "Id": 79, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" }, { - "Rank": 1, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "CommandName": "Add-PnPFolderSharingInvite", - "Id": 80 + "Rank": 1, + "Id": 80, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "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 + "Rank": 2, + "Id": 81, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" }, { - "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 + "Rank": 3, + "Id": 82, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" }, { - "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 + "Rank": 1, + "Id": 83, + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "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 + "Rank": 2, + "Id": 84, + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 1, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "CommandName": "Add-PnPGroupMember", - "Id": 85 + "Rank": 1, + "Id": 85, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Rank": 2, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "CommandName": "Add-PnPGroupMember", - "Id": 86 + "Rank": 2, + "Id": 86, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" }, { - "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 + "Rank": 1, + "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\"", "CommandName": "Add-PnPHubSiteAssociation", - "Id": 88 + "Rank": 1, + "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", "CommandName": "Add-PnPHubToHubAssociation", - "Id": 89 + "Rank": 1, + "Id": 89, + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" }, { - "Rank": 2, - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "CommandName": "Add-PnPHubToHubAssociation", - "Id": 90 + "Rank": 2, + "Id": 90, + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"" }, { - "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 + "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\"" }, { - "Rank": 1, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "CommandName": "Add-PnPJavaScriptBlock", - "Id": 92 + "Rank": 1, + "Id": 92, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" }, { - "Rank": 2, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "CommandName": "Add-PnPJavaScriptBlock", - "Id": 93 + "Rank": 2, + "Id": 93, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" }, { - "Rank": 1, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "CommandName": "Add-PnPJavaScriptLink", - "Id": 94 + "Rank": 1, + "Id": 94, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site" }, { - "Rank": 2, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "CommandName": "Add-PnPJavaScriptLink", - "Id": 95 + "Rank": 2, + "Id": 95, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" }, { - "Rank": 1, - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "CommandName": "Add-PnPListDesign", - "Id": 96 + "Rank": 1, + "Id": 96, + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" }, { - "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 + "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\"" }, { - "Rank": 1, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 98 + "Rank": 1, + "Id": 98, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" }, { - "Rank": 2, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 99 + "Rank": 2, + "Id": 99, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" }, { - "Rank": 3, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 100 + "Rank": 3, + "Id": 100, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" }, { - "Rank": 1, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Add-PnPListItem", - "Id": 101 + "Rank": 1, + "Id": 101, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 2, - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Add-PnPListItem", - "Id": 102 + "Rank": 2, + "Id": 102, + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 3, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "CommandName": "Add-PnPListItem", - "Id": 103 + "Rank": 3, + "Id": 103, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" }, { - "Rank": 4, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "CommandName": "Add-PnPListItem", - "Id": 104 + "Rank": 4, + "Id": 104, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" }, { - "Rank": 5, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "CommandName": "Add-PnPListItem", - "Id": 105 + "Rank": 5, + "Id": 105, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" }, { - "Rank": 1, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "CommandName": "Add-PnPListItemAttachment", - "Id": 106 + "Rank": 1, + "Id": 106, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" }, { - "Rank": 2, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "CommandName": "Add-PnPListItemAttachment", - "Id": 107 + "Rank": 2, + "Id": 107, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" }, { - "Rank": 3, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "CommandName": "Add-PnPListItemAttachment", - "Id": 108 + "Rank": 3, + "Id": 108, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" }, { - "Rank": 1, - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "CommandName": "Add-PnPListItemComment", - "Id": 109 + "Rank": 1, + "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\"", "CommandName": "Add-PnPMasterPage", - "Id": 110 + "Rank": 1, + "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\"", "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 111 + "Rank": 1, + "Id": 111, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 112 + "Rank": 2, + "Id": 112, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 113 + "Rank": 1, + "Id": 113, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 114 + "Rank": 2, + "Id": 114, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "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 + "Rank": 1, + "Id": 115, + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"" }, { - "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 116 + "Rank": 2, + "Id": 116, + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" }, { - "Rank": 3, - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 117 + "Rank": 3, + "Id": 117, + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" }, { - "Rank": 1, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "CommandName": "Add-PnPNavigationNode", - "Id": 118 + "Rank": 1, + "Id": 118, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" }, { - "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 + "Rank": 2, + "Id": 119, + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012" }, { - "Rank": 3, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "CommandName": "Add-PnPNavigationNode", - "Id": 120 + "Rank": 3, + "Id": 120, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" }, { - "Rank": 4, - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "CommandName": "Add-PnPNavigationNode", - "Id": 121 + "Rank": 4, + "Id": 121, + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" }, { - "Rank": 5, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "CommandName": "Add-PnPNavigationNode", - "Id": 122 + "Rank": 5, + "Id": 122, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" }, { - "Rank": 6, - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "CommandName": "Add-PnPNavigationNode", - "Id": 123 + "Rank": 6, + "Id": 123, + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" }, { - "Rank": 7, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "CommandName": "Add-PnPNavigationNode", - "Id": 124 + "Rank": 7, + "Id": 124, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" }, { - "Rank": 8, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "CommandName": "Add-PnPNavigationNode", - "Id": 125 + "Rank": 8, + "Id": 125, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" }, { - "Rank": 1, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 126 + "Rank": 1, + "Id": 126, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" }, { - "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 + "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\"" }, { - "Rank": 3, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 128 + "Rank": 3, + "Id": 128, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" }, { - "Rank": 1, - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "CommandName": "Add-PnPOrgNewsSite", - "Id": 129 + "Rank": 1, + "Id": 129, + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" }, { - "Rank": 1, - "Command": "Add-PnPPage -Name \"NewPage\"", "CommandName": "Add-PnPPage", - "Id": 130 + "Rank": 1, + "Id": 130, + "Command": "Add-PnPPage -Name \"NewPage\"" }, { - "Rank": 2, - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "CommandName": "Add-PnPPage", - "Id": 131 + "Rank": 2, + "Id": 131, + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" }, { - "Rank": 3, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "CommandName": "Add-PnPPage", - "Id": 132 + "Rank": 3, + "Id": 132, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" }, { - "Rank": 4, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "CommandName": "Add-PnPPage", - "Id": 133 + "Rank": 4, + "Id": 133, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" }, { - "Rank": 5, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "CommandName": "Add-PnPPage", - "Id": 134 + "Rank": 5, + "Id": 134, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"" }, { - "Rank": 6, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "CommandName": "Add-PnPPage", - "Id": 135 + "Rank": 6, + "Id": 135, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" }, { - "Rank": 7, - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "CommandName": "Add-PnPPage", - "Id": 136 + "Rank": 7, + "Id": 136, + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Rank": 8, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "CommandName": "Add-PnPPage", - "Id": 137 + "Rank": 8, + "Id": 137, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate" }, { - "Rank": 9, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "CommandName": "Add-PnPPage", - "Id": 138 + "Rank": 9, + "Id": 138, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Rank": 10, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "CommandName": "Add-PnPPage", - "Id": 139 + "Rank": 10, + "Id": 139, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Rank": 1, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "CommandName": "Add-PnPPageImageWebPart", - "Id": 140 + "Rank": 1, + "Id": 140, + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" }, { - "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 + "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\"" }, { - "Rank": 1, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "CommandName": "Add-PnPPageSection", - "Id": 142 + "Rank": 1, + "Id": 142, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" }, { - "Rank": 2, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "CommandName": "Add-PnPPageSection", - "Id": 143 + "Rank": 2, + "Id": 143, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" }, { - "Rank": 1, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "CommandName": "Add-PnPPageTextPart", - "Id": 144 + "Rank": 1, + "Id": 144, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" }, { - "Rank": 2, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "CommandName": "Add-PnPPageTextPart", - "Id": 145 + "Rank": 2, + "Id": 145, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" }, { - "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 + "Rank": 3, + "Id": 146, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"" }, { - "Rank": 1, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "CommandName": "Add-PnPPageWebPart", - "Id": 147 + "Rank": 1, + "Id": 147, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" }, { - "Rank": 2, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "CommandName": "Add-PnPPageWebPart", - "Id": 148 + "Rank": 2, + "Id": 148, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" }, { - "Rank": 3, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "CommandName": "Add-PnPPageWebPart", - "Id": 149 + "Rank": 3, + "Id": 149, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" }, { - "Rank": 1, - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "CommandName": "Add-PnPPlannerBucket", - "Id": 150 + "Rank": 1, + "Id": 150, + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" }, { - "Rank": 2, - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "CommandName": "Add-PnPPlannerBucket", - "Id": 151 + "Rank": 2, + "Id": 151, + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" }, { - "Rank": 1, - "Command": "Add-PnPPlannerRoster", "CommandName": "Add-PnPPlannerRoster", - "Id": 152 + "Rank": 1, + "Id": 152, + "Command": "Add-PnPPlannerRoster" }, { - "Rank": 1, - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPPlannerRosterMember", - "Id": 153 + "Rank": 1, + "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\"", "CommandName": "Add-PnPPlannerTask", - "Id": 154 + "Rank": 1, + "Id": 154, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "Rank": 2, - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "CommandName": "Add-PnPPlannerTask", - "Id": 155 + "Rank": 2, + "Id": 155, + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "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 + "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\"" }, { - "Rank": 1, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "CommandName": "Add-PnPPublishingImageRendition", - "Id": 157 + "Rank": 1, + "Id": 157, + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Rank": 1, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "CommandName": "Add-PnPPublishingPage", - "Id": 158 + "Rank": 1, + "Id": 158, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" }, { - "Rank": 2, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "CommandName": "Add-PnPPublishingPage", - "Id": 159 + "Rank": 2, + "Id": 159, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" }, { - "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 + "Rank": 1, + "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\"", "CommandName": "Add-PnPRoleDefinition", - "Id": 161 + "Rank": 1, + "Id": 161, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" }, { - "Rank": 2, - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "CommandName": "Add-PnPRoleDefinition", - "Id": 162 + "Rank": 2, + "Id": 162, + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" }, { - "Rank": 3, - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "CommandName": "Add-PnPRoleDefinition", - "Id": 163 + "Rank": 3, + "Id": 163, + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" }, { - "Rank": 1, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 164 + "Rank": 1, + "Id": 164, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Rank": 2, - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 165 + "Rank": 2, + "Id": 165, + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Rank": 3, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 166 + "Rank": 3, + "Id": 166, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" }, { - "Rank": 1, - "Command": "Add-PnPSiteCollectionAppCatalog", "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 167 + "Rank": 1, + "Id": 167, + "Command": "Add-PnPSiteCollectionAppCatalog" }, { - "Rank": 2, - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 168 + "Rank": 2, + "Id": 168, + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "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 + "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" }, { - "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 + "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" }, { - "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 + "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\"" }, { - "Rank": 1, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 172 + "Rank": 1, + "Id": 172, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" }, { - "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 + "Rank": 2, + "Id": 173, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "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 + "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" }, { - "Rank": 1, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "CommandName": "Add-PnPSiteDesignTask", - "Id": 175 + "Rank": 1, + "Id": 175, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Rank": 2, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "CommandName": "Add-PnPSiteDesignTask", - "Id": 176 + "Rank": 2, + "Id": 176, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Rank": 1, - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "CommandName": "Add-PnPSiteScript", - "Id": 177 + "Rank": 1, + "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\"", "CommandName": "Add-PnPSiteScriptPackage", - "Id": 178 + "Rank": 1, + "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", "CommandName": "Add-PnPSiteTemplate", - "Id": 179 + "Rank": 1, + "Id": 179, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" }, { - "Rank": 1, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "CommandName": "Add-PnPStoredCredential", - "Id": 180 + "Rank": 1, + "Id": 180, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" }, { - "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 + "Rank": 2, + "Id": 181, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "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 + "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\"" }, { - "Rank": 1, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "CommandName": "Add-PnPTaxonomyField", - "Id": 183 + "Rank": 1, + "Id": 183, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" }, { - "Rank": 2, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "CommandName": "Add-PnPTaxonomyField", - "Id": 184 + "Rank": 2, + "Id": 184, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" }, { - "Rank": 1, - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "CommandName": "Add-PnPTeamsChannel", - "Id": 185 + "Rank": 1, + "Id": 185, + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" }, { - "Rank": 2, - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "CommandName": "Add-PnPTeamsChannel", - "Id": 186 + "Rank": 2, + "Id": 186, + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" }, { - "Rank": 3, - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "CommandName": "Add-PnPTeamsChannel", - "Id": 187 + "Rank": 3, + "Id": 187, + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" }, { - "Rank": 4, - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "CommandName": "Add-PnPTeamsChannel", - "Id": 188 + "Rank": 4, + "Id": 188, + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" }, { - "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 + "Rank": 1, + "Id": 189, + "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner" }, { - "Rank": 2, - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "CommandName": "Add-PnpTeamsChannelUser", - "Id": 190 + "Rank": 2, + "Id": 190, + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" }, { - "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 + "Rank": 1, + "Id": 191, + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"" }, { - "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 + "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\"" }, { - "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 + "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\"" }, { - "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 + "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" }, { - "Rank": 1, - "Command": "Add-PnPTeamsTeam", "CommandName": "Add-PnPTeamsTeam", - "Id": 195 + "Rank": 1, + "Id": 195, + "Command": "Add-PnPTeamsTeam" }, { - "Rank": 1, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Add-PnPTeamsUser", - "Id": 196 + "Rank": 1, + "Id": 196, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Rank": 2, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "CommandName": "Add-PnPTeamsUser", - "Id": 197 + "Rank": 2, + "Id": 197, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Rank": 3, - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "CommandName": "Add-PnPTeamsUser", - "Id": 198 + "Rank": 3, + "Id": 198, + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" }, { - "Rank": 4, - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "CommandName": "Add-PnPTeamsUser", - "Id": 199 + "Rank": 4, + "Id": 199, + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" }, { - "Rank": 1, - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "CommandName": "Add-PnPTenantCdnOrigin", - "Id": 200 + "Rank": 1, + "Id": 200, + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Rank": 1, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "CommandName": "Add-PnPTenantSequence", - "Id": 201 + "Rank": 1, + "Id": 201, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" }, { - "Rank": 1, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "CommandName": "Add-PnPTenantSequenceSite", - "Id": 202 + "Rank": 1, + "Id": 202, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" }, { - "Rank": 1, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "CommandName": "Add-PnPTenantSequenceSubSite", - "Id": 203 + "Rank": 1, + "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\"}", "CommandName": "Add-PnPTermToTerm", - "Id": 204 + "Rank": 1, + "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\"", "CommandName": "Add-PnPView", - "Id": 205 + "Rank": 1, + "Id": 205, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" }, { - "Rank": 2, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "CommandName": "Add-PnPView", - "Id": 206 + "Rank": 2, + "Id": 206, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" }, { - "Rank": 3, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "CommandName": "Add-PnPView", - "Id": 207 + "Rank": 3, + "Id": 207, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" }, { - "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 + "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\"" }, { - "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 + "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\"" }, { - "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 + "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\"" }, { - "Rank": 1, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "CommandName": "Add-PnPWebhookSubscription", - "Id": 211 + "Rank": 1, + "Id": 211, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Rank": 2, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "CommandName": "Add-PnPWebhookSubscription", - "Id": 212 + "Rank": 2, + "Id": 212, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "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 + "Rank": 3, + "Id": 213, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"" }, { - "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 + "Rank": 1, + "Id": 214, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1" }, { - "Rank": 2, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "CommandName": "Add-PnPWebPartToWebPartPage", - "Id": 215 + "Rank": 2, + "Id": 215, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" }, { - "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 + "Rank": 1, + "Id": 216, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1" }, { - "Rank": 2, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "CommandName": "Add-PnPWebPartToWikiPage", - "Id": 217 + "Rank": 2, + "Id": 217, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" }, { - "Rank": 1, - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "CommandName": "Add-PnPWikiPage", - "Id": 218 + "Rank": 1, + "Id": 218, + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" }, { - "Rank": 1, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "CommandName": "Clear-PnPAzureADGroupMember", - "Id": 219 + "Rank": 1, + "Id": 219, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" }, { - "Rank": 1, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "CommandName": "Clear-PnPAzureADGroupOwner", - "Id": 220 + "Rank": 1, + "Id": 220, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" }, { - "Rank": 1, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 221 + "Rank": 1, + "Id": 221, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" }, { - "Rank": 2, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 222 + "Rank": 2, + "Id": 222, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" }, { - "Rank": 1, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "CommandName": "Clear-PnPListItemAsRecord", - "Id": 223 + "Rank": 1, + "Id": 223, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Rank": 1, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Id": 224 + "Rank": 1, + "Id": 224, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" }, { - "Rank": 1, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Id": 225 + "Rank": 1, + "Id": 225, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" }, { - "Rank": 1, - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "CommandName": "Clear-PnpRecycleBinItem", - "Id": 226 + "Rank": 1, + "Id": 226, + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Rank": 2, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "CommandName": "Clear-PnpRecycleBinItem", - "Id": 227 + "Rank": 2, + "Id": 227, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" }, { - "Rank": 3, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "CommandName": "Clear-PnpRecycleBinItem", - "Id": 228 + "Rank": 3, + "Id": 228, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" }, { - "Rank": 1, - "Command": "Clear-PnPTenantAppCatalogUrl", "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Id": 229 + "Rank": 1, + "Id": 229, + "Command": "Clear-PnPTenantAppCatalogUrl" }, { - "Rank": 1, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 230 + "Rank": 1, + "Id": 230, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 2, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 231 + "Rank": 2, + "Id": 231, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "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 + "Rank": 1, + "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-PnPFolderToSiteTemplate -Out template.pnp", "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 233 + "Rank": 1, + "Id": 233, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" }, { - "Rank": 2, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 234 + "Rank": 2, + "Id": 234, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" }, { - "Rank": 1, - "Command": "Convert-PnPSiteTemplate -Path template.xml", "CommandName": "Convert-PnPSiteTemplate", - "Id": 235 + "Rank": 1, + "Id": 235, + "Command": "Convert-PnPSiteTemplate -Path template.xml" }, { - "Rank": 2, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "CommandName": "Convert-PnPSiteTemplate", - "Id": 236 + "Rank": 2, + "Id": 236, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" }, { - "Rank": 3, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "CommandName": "Convert-PnPSiteTemplate", - "Id": 237 + "Rank": 3, + "Id": 237, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" }, { - "Rank": 1, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 238 + "Rank": 1, + "Id": 238, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" }, { - "Rank": 2, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 239 + "Rank": 2, + "Id": 239, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" }, { - "Rank": 1, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 240 + "Rank": 1, + "Id": 240, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" }, { - "Rank": 2, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "CommandName": "ConvertTo-PnPPage", - "Id": 241 + "Rank": 2, + "Id": 241, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" }, { - "Rank": 3, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "CommandName": "ConvertTo-PnPPage", - "Id": 242 + "Rank": 3, + "Id": 242, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" }, { - "Rank": 4, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "CommandName": "ConvertTo-PnPPage", - "Id": 243 + "Rank": 4, + "Id": 243, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" }, { - "Rank": 5, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 244 + "Rank": 5, + "Id": 244, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Rank": 6, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "CommandName": "ConvertTo-PnPPage", - "Id": 245 + "Rank": 6, + "Id": 245, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" }, { - "Rank": 7, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 246 + "Rank": 7, + "Id": 246, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" }, { - "Rank": 8, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 247 + "Rank": 8, + "Id": 247, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" }, { - "Rank": 9, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 248 + "Rank": 9, + "Id": 248, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Rank": 10, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "CommandName": "ConvertTo-PnPPage", - "Id": 249 + "Rank": 10, + "Id": 249, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" }, { - "Rank": 11, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "CommandName": "ConvertTo-PnPPage", - "Id": 250 + "Rank": 11, + "Id": 250, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" }, { - "Rank": 12, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 251 + "Rank": 12, + "Id": 251, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Rank": 13, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "CommandName": "ConvertTo-PnPPage", - "Id": 252 + "Rank": 13, + "Id": 252, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Rank": 14, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "CommandName": "ConvertTo-PnPPage", - "Id": 253 + "Rank": 14, + "Id": 253, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" }, { - "Rank": 1, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 254 + "Rank": 1, + "Id": 254, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Rank": 2, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "CommandName": "Copy-PnPFile", - "Id": 255 + "Rank": 2, + "Id": 255, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Rank": 3, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "CommandName": "Copy-PnPFile", - "Id": 256 + "Rank": 3, + "Id": 256, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Rank": 4, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 257 + "Rank": 4, + "Id": 257, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Rank": 5, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "CommandName": "Copy-PnPFile", - "Id": 258 + "Rank": 5, + "Id": 258, + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Rank": 6, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "CommandName": "Copy-PnPFile", - "Id": 259 + "Rank": 6, + "Id": 259, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Rank": 7, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "CommandName": "Copy-PnPFile", - "Id": 260 + "Rank": 7, + "Id": 260, + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Rank": 8, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 261 + "Rank": 8, + "Id": 261, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Rank": 9, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "CommandName": "Copy-PnPFile", - "Id": 262 + "Rank": 9, + "Id": 262, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Rank": 10, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "CommandName": "Copy-PnPFile", - "Id": 263 + "Rank": 10, + "Id": 263, + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Rank": 1, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 264 + "Rank": 1, + "Id": 264, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Rank": 2, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "CommandName": "Copy-PnPFolder", - "Id": 265 + "Rank": 2, + "Id": 265, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Rank": 3, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "CommandName": "Copy-PnPFolder", - "Id": 266 + "Rank": 3, + "Id": 266, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Rank": 4, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 267 + "Rank": 4, + "Id": 267, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Rank": 5, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "CommandName": "Copy-PnPFolder", - "Id": 268 + "Rank": 5, + "Id": 268, + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Rank": 6, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "CommandName": "Copy-PnPFolder", - "Id": 269 + "Rank": 6, + "Id": 269, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Rank": 7, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "CommandName": "Copy-PnPFolder", - "Id": 270 + "Rank": 7, + "Id": 270, + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Rank": 8, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 271 + "Rank": 8, + "Id": 271, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Rank": 9, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "CommandName": "Copy-PnPFolder", - "Id": 272 + "Rank": 9, + "Id": 272, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Rank": 10, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "CommandName": "Copy-PnPFolder", - "Id": 273 + "Rank": 10, + "Id": 273, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Rank": 1, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "CommandName": "Copy-PnPItemProxy", - "Id": 274 + "Rank": 1, + "Id": 274, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" }, { - "Rank": 1, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "CommandName": "Copy-PnPList", - "Id": 275 + "Rank": 1, + "Id": 275, + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" }, { - "Rank": 2, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "CommandName": "Copy-PnPList", - "Id": 276 + "Rank": 2, + "Id": 276, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" }, { - "Rank": 3, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "CommandName": "Copy-PnPList", - "Id": 277 + "Rank": 3, + "Id": 277, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" }, { - "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": 278 + "Rank": 4, + "Id": 278, + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" }, { - "Rank": 1, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "CommandName": "Copy-PnPTeamsTeam", - "Id": 279 + "Rank": 1, + "Id": 279, + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" }, { - "Rank": 2, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "CommandName": "Copy-PnPTeamsTeam", - "Id": 280 + "Rank": 2, + "Id": 280, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" }, { - "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": 281 + "Rank": 3, + "Id": 281, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "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": 282 + "Rank": 4, + "Id": 282, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "Rank": 1, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Disable-PnPFeature", - "Id": 283 + "Rank": 1, + "Id": 283, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "CommandName": "Disable-PnPFeature", - "Id": 284 + "Rank": 2, + "Id": 284, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Rank": 3, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "CommandName": "Disable-PnPFeature", - "Id": 285 + "Rank": 3, + "Id": 285, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Rank": 1, - "Command": "Disable-PnPPageScheduling", "CommandName": "Disable-PnPPageScheduling", - "Id": 286 + "Rank": 1, + "Id": 286, + "Command": "Disable-PnPPageScheduling" }, { - "Rank": 1, - "Command": "Disable-PnPPowerShellTelemetry", "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 287 + "Rank": 1, + "Id": 287, + "Command": "Disable-PnPPowerShellTelemetry" }, { - "Rank": 2, - "Command": "Disable-PnPPowerShellTelemetry -Force", "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 288 + "Rank": 2, + "Id": 288, + "Command": "Disable-PnPPowerShellTelemetry -Force" }, { - "Rank": 1, - "Command": "Disable-PnPSharingForNonOwnersOfSite", "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 289 + "Rank": 1, + "Id": 289, + "Command": "Disable-PnPSharingForNonOwnersOfSite" }, { - "Rank": 1, - "Command": "Disable-PnPSiteClassification", "CommandName": "Disable-PnPSiteClassification", - "Id": 290 + "Rank": 1, + "Id": 290, + "Command": "Disable-PnPSiteClassification" }, { - "Rank": 1, - "Command": "Disconnect-PnPOnline", "CommandName": "Disconnect-PnPOnline", - "Id": 291 + "Rank": 1, + "Id": 291, + "Command": "Disconnect-PnPOnline" }, { - "Rank": 1, - "Command": "Enable-PnPCommSite", "CommandName": "Enable-PnPCommSite", - "Id": 292 + "Rank": 1, + "Id": 292, + "Command": "Enable-PnPCommSite" }, { - "Rank": 2, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "CommandName": "Enable-PnPCommSite", - "Id": 293 + "Rank": 2, + "Id": 293, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" }, { - "Rank": 1, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Enable-PnPFeature", - "Id": 294 + "Rank": 1, + "Id": 294, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "CommandName": "Enable-PnPFeature", - "Id": 295 + "Rank": 2, + "Id": 295, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Rank": 3, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "CommandName": "Enable-PnPFeature", - "Id": 296 + "Rank": 3, + "Id": 296, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Rank": 1, - "Command": "Enable-PnPPageScheduling", "CommandName": "Enable-PnPPageScheduling", - "Id": 297 + "Rank": 1, + "Id": 297, + "Command": "Enable-PnPPageScheduling" }, { - "Rank": 1, - "Command": "Enable-PnPPowerShellTelemetry", "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 298 + "Rank": 1, + "Id": 298, + "Command": "Enable-PnPPowerShellTelemetry" }, { - "Rank": 2, - "Command": "Enable-PnPPowerShellTelemetry -Force", "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 299 + "Rank": 2, + "Id": 299, + "Command": "Enable-PnPPowerShellTelemetry -Force" }, { - "Rank": 1, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "CommandName": "Enable-PnPSiteClassification", - "Id": 300 + "Rank": 1, + "Id": 300, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" }, { - "Rank": 2, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "CommandName": "Enable-PnPSiteClassification", - "Id": 301 + "Rank": 2, + "Id": 301, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Rank": 1, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "CommandName": "Export-PnPListToSiteTemplate", - "Id": 302 + "Rank": 1, + "Id": 302, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" }, { - "Rank": 2, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "CommandName": "Export-PnPListToSiteTemplate", - "Id": 303 + "Rank": 2, + "Id": 303, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" }, { - "Rank": 1, - "Command": "Export-PnPPage -Identity Home.aspx", "CommandName": "Export-PnPPage", - "Id": 304 + "Rank": 1, + "Id": 304, + "Command": "Export-PnPPage -Identity Home.aspx" }, { - "Rank": 1, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Id": 305 + "Rank": 1, + "Id": 305, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" }, { - "Rank": 2, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Id": 306 + "Rank": 2, + "Id": 306, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" }, { - "Rank": 3, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "CommandName": "Export-PnPPageMapping", - "Id": 307 + "Rank": 3, + "Id": 307, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" }, { - "Rank": 1, - "Command": "Export-PnPTaxonomy", "CommandName": "Export-PnPTaxonomy", - "Id": 308 + "Rank": 1, + "Id": 308, + "Command": "Export-PnPTaxonomy" }, { - "Rank": 2, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "CommandName": "Export-PnPTaxonomy", - "Id": 309 + "Rank": 2, + "Id": 309, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt" }, { - "Rank": 3, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "CommandName": "Export-PnPTaxonomy", - "Id": 310 + "Rank": 3, + "Id": 310, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" }, { - "Rank": 4, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "CommandName": "Export-PnPTaxonomy", - "Id": 311 + "Rank": 4, + "Id": 311, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" }, { - "Rank": 1, - "Command": "Export-PnPTermGroupToXml", "CommandName": "Export-PnPTermGroupToXml", - "Id": 312 + "Rank": 1, + "Id": 312, + "Command": "Export-PnPTermGroupToXml" }, { - "Rank": 2, - "Command": "Export-PnPTermGroupToXml -Out output.xml", "CommandName": "Export-PnPTermGroupToXml", - "Id": 313 + "Rank": 2, + "Id": 313, + "Command": "Export-PnPTermGroupToXml -Out output.xml" }, { - "Rank": 3, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "CommandName": "Export-PnPTermGroupToXml", - "Id": 314 + "Rank": 3, + "Id": 314, + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" }, { - "Rank": 1, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "CommandName": "Export-PnPUserInfo", - "Id": 315 + "Rank": 1, + "Id": 315, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "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": 316 + "Rank": 2, + "Id": 316, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Rank": 1, - "Command": "Export-PnPUserProfile -LoginName user@domain.com", "CommandName": "Export-PnPUserProfile", - "Id": 317 + "Rank": 1, + "Id": 317, + "Command": "Export-PnPUserProfile -LoginName user@domain.com" }, { - "Rank": 2, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "CommandName": "Export-PnPUserProfile", - "Id": 318 + "Rank": 2, + "Id": 318, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Rank": 1, - "Command": "Find-PnPFile -Match *.master", "CommandName": "Find-PnPFile", - "Id": 319 + "Rank": 1, + "Id": 319, + "Command": "Find-PnPFile -Match *.master" }, { - "Rank": 2, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "CommandName": "Find-PnPFile", - "Id": 320 + "Rank": 2, + "Id": 320, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" }, { - "Rank": 3, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "CommandName": "Find-PnPFile", - "Id": 321 + "Rank": 3, + "Id": 321, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" }, { - "Rank": 1, - "Command": "Get-PnPAccessToken", "CommandName": "Get-PnPAccessToken", - "Id": 322 + "Rank": 1, + "Id": 322, + "Command": "Get-PnPAccessToken" }, { - "Rank": 2, - "Command": "Get-PnPAccessToken -Decoded", "CommandName": "Get-PnPAccessToken", - "Id": 323 + "Rank": 2, + "Id": 323, + "Command": "Get-PnPAccessToken -Decoded" }, { - "Rank": 3, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "CommandName": "Get-PnPAccessToken", - "Id": 324 + "Rank": 3, + "Id": 324, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" }, { - "Rank": 4, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "CommandName": "Get-PnPAccessToken", - "Id": 325 + "Rank": 4, + "Id": 325, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM" }, { - "Rank": 5, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "CommandName": "Get-PnPAccessToken", - "Id": 326 + "Rank": 5, + "Id": 326, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" }, { - "Rank": 1, - "Command": "Get-PnPAlert", "CommandName": "Get-PnPAlert", - "Id": 327 + "Rank": 1, + "Id": 327, + "Command": "Get-PnPAlert" }, { - "Rank": 2, - "Command": "Get-PnPAlert -List \"Demo List\"", "CommandName": "Get-PnPAlert", - "Id": 328 + "Rank": 2, + "Id": 328, + "Command": "Get-PnPAlert -List \"Demo List\"" }, { - "Rank": 3, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPAlert", - "Id": 329 + "Rank": 3, + "Id": 329, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Rank": 4, - "Command": "Get-PnPAlert -Title \"Demo Alert\"", "CommandName": "Get-PnPAlert", - "Id": 330 + "Rank": 4, + "Id": 330, + "Command": "Get-PnPAlert -Title \"Demo Alert\"" }, { - "Rank": 5, - "Command": "Get-PnPAlert -AllUsers", "CommandName": "Get-PnPAlert", - "Id": 331 + "Rank": 5, + "Id": 331, + "Command": "Get-PnPAlert -AllUsers" }, { - "Rank": 6, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "CommandName": "Get-PnPAlert", - "Id": 332 + "Rank": 6, + "Id": 332, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" }, { - "Rank": 1, - "Command": "Get-PnPApp", "CommandName": "Get-PnPApp", - "Id": 333 + "Rank": 1, + "Id": 333, + "Command": "Get-PnPApp" }, { - "Rank": 2, - "Command": "Get-PnPApp -Scope Site", "CommandName": "Get-PnPApp", - "Id": 334 + "Rank": 2, + "Id": 334, + "Command": "Get-PnPApp -Scope Site" }, { - "Rank": 3, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Get-PnPApp", - "Id": 335 + "Rank": 3, + "Id": 335, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Rank": 1, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "CommandName": "Get-PnPAppErrors", - "Id": 336 + "Rank": 1, + "Id": 336, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" }, { - "Rank": 2, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "CommandName": "Get-PnPAppErrors", - "Id": 337 + "Rank": 2, + "Id": 337, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" }, { - "Rank": 1, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "CommandName": "Get-PnPAppInfo", - "Id": 338 + "Rank": 1, + "Id": 338, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"" }, { - "Rank": 2, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "CommandName": "Get-PnPAppInfo", - "Id": 339 + "Rank": 2, + "Id": 339, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Rank": 3, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "CommandName": "Get-PnPAppInfo", - "Id": 340 + "Rank": 3, + "Id": 340, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" }, { - "Rank": 1, - "Command": "Get-PnPApplicationCustomizer", "CommandName": "Get-PnPApplicationCustomizer", - "Id": 341 + "Rank": 1, + "Id": 341, + "Command": "Get-PnPApplicationCustomizer" }, { - "Rank": 2, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Get-PnPApplicationCustomizer", - "Id": 342 + "Rank": 2, + "Id": 342, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Rank": 3, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "CommandName": "Get-PnPApplicationCustomizer", - "Id": 343 + "Rank": 3, + "Id": 343, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" }, { - "Rank": 1, - "Command": "Get-PnPAuditing", "CommandName": "Get-PnPAuditing", - "Id": 344 + "Rank": 1, + "Id": 344, + "Command": "Get-PnPAuditing" }, { - "Rank": 1, - "Command": "Get-PnPAuthenticationRealm", "CommandName": "Get-PnPAuthenticationRealm", - "Id": 345 + "Rank": 1, + "Id": 345, + "Command": "Get-PnPAuthenticationRealm" }, { - "Rank": 2, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "CommandName": "Get-PnPAuthenticationRealm", - "Id": 346 + "Rank": 2, + "Id": 346, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" }, { - "Rank": 1, - "Command": "Get-PnPAvailableLanguage", "CommandName": "Get-PnPAvailableLanguage", - "Id": 347 + "Rank": 1, + "Id": 347, + "Command": "Get-PnPAvailableLanguage" }, { - "Rank": 1, - "Command": "Get-PnPAvailableSensitivityLabel", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 348 + "Rank": 1, + "Id": 348, + "Command": "Get-PnPAvailableSensitivityLabel" }, { - "Rank": 2, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 349 + "Rank": 2, + "Id": 349, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" }, { - "Rank": 3, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 350 + "Rank": 3, + "Id": 350, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" }, { - "Rank": 1, - "Command": "Get-PnPAvailableSiteClassification", "CommandName": "Get-PnPAvailableSiteClassification", - "Id": 351 + "Rank": 1, + "Id": 351, + "Command": "Get-PnPAvailableSiteClassification" }, { - "Rank": 1, - "Command": "Get-PnPAzureACSPrincipal", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 352 + "Rank": 1, + "Id": 352, + "Command": "Get-PnPAzureACSPrincipal" }, { - "Rank": 2, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 353 + "Rank": 2, + "Id": 353, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" }, { - "Rank": 3, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 354 + "Rank": 3, + "Id": 354, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" }, { - "Rank": 4, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 355 + "Rank": 4, + "Id": 355, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" }, { - "Rank": 1, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 356 + "Rank": 1, + "Id": 356, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Rank": 2, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 357 + "Rank": 2, + "Id": 357, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" }, { - "Rank": 3, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 358 + "Rank": 3, + "Id": 358, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" }, { - "Rank": 1, - "Command": "Get-PnPAzureADActivityReportSignIn", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 359 + "Rank": 1, + "Id": 359, + "Command": "Get-PnPAzureADActivityReportSignIn" }, { - "Rank": 2, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 360 + "Rank": 2, + "Id": 360, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" }, { - "Rank": 3, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 361 + "Rank": 3, + "Id": 361, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" }, { - "Rank": 1, - "Command": "Get-PnPAzureADApp", "CommandName": "Get-PnPAzureADApp", - "Id": 362 + "Rank": 1, + "Id": 362, + "Command": "Get-PnPAzureADApp" }, { - "Rank": 2, - "Command": "Get-PnPAzureADApp -Identity MyApp", "CommandName": "Get-PnPAzureADApp", - "Id": 363 + "Rank": 2, + "Id": 363, + "Command": "Get-PnPAzureADApp -Identity MyApp" }, { - "Rank": 3, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Get-PnPAzureADApp", - "Id": 364 + "Rank": 3, + "Id": 364, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Rank": 4, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPAzureADApp", - "Id": 365 + "Rank": 4, + "Id": 365, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" }, { - "Rank": 1, - "Command": "Get-PnPAzureADAppPermission", "CommandName": "Get-PnPAzureADAppPermission", - "Id": 366 + "Rank": 1, + "Id": 366, + "Command": "Get-PnPAzureADAppPermission" }, { - "Rank": 2, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "CommandName": "Get-PnPAzureADAppPermission", - "Id": 367 + "Rank": 2, + "Id": 367, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp" }, { - "Rank": 3, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Get-PnPAzureADAppPermission", - "Id": 368 + "Rank": 3, + "Id": 368, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Rank": 1, - "Command": "Get-PnPAzureADAppSitePermission", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 369 + "Rank": 1, + "Id": 369, + "Command": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 2, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 370 + "Rank": 2, + "Id": 370, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" }, { - "Rank": 3, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 371 + "Rank": 3, + "Id": 371, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" }, { - "Rank": 4, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 372 + "Rank": 4, + "Id": 372, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" }, { - "Rank": 5, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 373 + "Rank": 5, + "Id": 373, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" }, { - "Rank": 1, - "Command": "Get-PnPAzureADGroup", "CommandName": "Get-PnPAzureADGroup", - "Id": 374 + "Rank": 1, + "Id": 374, + "Command": "Get-PnPAzureADGroup" }, { - "Rank": 2, - "Command": "Get-PnPAzureADGroup -Identity $groupId", "CommandName": "Get-PnPAzureADGroup", - "Id": 375 + "Rank": 2, + "Id": 375, + "Command": "Get-PnPAzureADGroup -Identity $groupId" }, { - "Rank": 3, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "CommandName": "Get-PnPAzureADGroup", - "Id": 376 + "Rank": 3, + "Id": 376, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" }, { - "Rank": 4, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "CommandName": "Get-PnPAzureADGroup", - "Id": 377 + "Rank": 4, + "Id": 377, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" }, { - "Rank": 5, - "Command": "Get-PnPAzureADGroup -Identity $group", "CommandName": "Get-PnPAzureADGroup", - "Id": 378 + "Rank": 5, + "Id": 378, + "Command": "Get-PnPAzureADGroup -Identity $group" }, { - "Rank": 1, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "CommandName": "Get-PnPAzureADGroupMember", - "Id": 379 + "Rank": 1, + "Id": 379, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId" }, { - "Rank": 2, - "Command": "Get-PnPAzureADGroupMember -Identity $group", "CommandName": "Get-PnPAzureADGroupMember", - "Id": 380 + "Rank": 2, + "Id": 380, + "Command": "Get-PnPAzureADGroupMember -Identity $group" }, { - "Rank": 1, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 381 + "Rank": 1, + "Id": 381, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" }, { - "Rank": 2, - "Command": "Get-PnPAzureADGroupOwner -Identity $group", "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 382 + "Rank": 2, + "Id": 382, + "Command": "Get-PnPAzureADGroupOwner -Identity $group" }, { - "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipal", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 383 + "Rank": 1, + "Id": 383, + "Command": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 384 + "Rank": 2, + "Id": 384, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" }, { - "Rank": 3, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 385 + "Rank": 3, + "Id": 385, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" }, { - "Rank": 4, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 386 + "Rank": 4, + "Id": 386, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" }, { - "Rank": 5, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 387 + "Rank": 5, + "Id": 387, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" }, { - "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 388 + "Rank": 1, + "Id": 388, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 389 + "Rank": 2, + "Id": 389, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 390 + "Rank": 1, + "Id": 390, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 391 + "Rank": 2, + "Id": 391, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" }, { - "Rank": 1, - "Command": "Get-PnPAzureADUser", "CommandName": "Get-PnPAzureADUser", - "Id": 392 + "Rank": 1, + "Id": 392, + "Command": "Get-PnPAzureADUser" }, { - "Rank": 2, - "Command": "Get-PnPAzureADUser -EndIndex 50", "CommandName": "Get-PnPAzureADUser", - "Id": 393 + "Rank": 2, + "Id": 393, + "Command": "Get-PnPAzureADUser -EndIndex 50" }, { - "Rank": 3, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "CommandName": "Get-PnPAzureADUser", - "Id": 394 + "Rank": 3, + "Id": 394, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Rank": 4, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "CommandName": "Get-PnPAzureADUser", - "Id": 395 + "Rank": 4, + "Id": 395, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com" }, { - "Rank": 5, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "CommandName": "Get-PnPAzureADUser", - "Id": 396 + "Rank": 5, + "Id": 396, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" }, { - "Rank": 6, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "CommandName": "Get-PnPAzureADUser", - "Id": 397 + "Rank": 6, + "Id": 397, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" }, { - "Rank": 7, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "CommandName": "Get-PnPAzureADUser", - "Id": 398 + "Rank": 7, + "Id": 398, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" }, { - "Rank": 8, - "Command": "Get-PnPAzureADUser -Delta", "CommandName": "Get-PnPAzureADUser", - "Id": 399 + "Rank": 8, + "Id": 399, + "Command": "Get-PnPAzureADUser -Delta" }, { - "Rank": 9, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "CommandName": "Get-PnPAzureADUser", - "Id": 400 + "Rank": 9, + "Id": 400, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" }, { - "Rank": 10, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "CommandName": "Get-PnPAzureADUser", - "Id": 401 + "Rank": 10, + "Id": 401, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" }, { - "Rank": 1, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "CommandName": "Get-PnPAzureCertificate", - "Id": 402 + "Rank": 1, + "Id": 402, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" }, { - "Rank": 2, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "CommandName": "Get-PnPAzureCertificate", - "Id": 403 + "Rank": 2, + "Id": 403, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "Rank": 3, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "CommandName": "Get-PnPAzureCertificate", - "Id": 404 + "Rank": 3, + "Id": 404, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" }, { - "Rank": 1, - "Command": "Get-PnPBrowserIdleSignout", "CommandName": "Get-PnPBrowserIdleSignout", - "Id": 405 + "Rank": 1, + "Id": 405, + "Command": "Get-PnPBrowserIdleSignout" }, { - "Rank": 1, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 406 + "Rank": 1, + "Id": 406, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" }, { - "Rank": 2, - "Command": "Get-PnPBuiltInDesignPackageVisibility", "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 407 + "Rank": 2, + "Id": 407, + "Command": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Rank": 1, - "Command": "Get-PnPBuiltInSiteTemplateSettings", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 408 + "Rank": 1, + "Id": 408, + "Command": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 2, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 409 + "Rank": 2, + "Id": 409, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" }, { - "Rank": 3, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 410 + "Rank": 3, + "Id": 410, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" }, { - "Rank": 4, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 411 + "Rank": 4, + "Id": 411, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" }, { - "Rank": 5, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 412 + "Rank": 5, + "Id": 412, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" }, { - "Rank": 1, - "Command": "Get-PnPChangeLog", "CommandName": "Get-PnPChangeLog", - "Id": 413 + "Rank": 1, + "Id": 413, + "Command": "Get-PnPChangeLog" }, { - "Rank": 2, - "Command": "Get-PnPChangeLog -Nightly", "CommandName": "Get-PnPChangeLog", - "Id": 414 + "Rank": 2, + "Id": 414, + "Command": "Get-PnPChangeLog -Nightly" }, { - "Rank": 1, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 415 + "Rank": 1, + "Id": 415, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" }, { - "Rank": 2, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 416 + "Rank": 2, + "Id": 416, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" }, { - "Rank": 1, - "Command": "Get-PnPContentType", "CommandName": "Get-PnPContentType", - "Id": 417 + "Rank": 1, + "Id": 417, + "Command": "Get-PnPContentType" }, { - "Rank": 2, - "Command": "Get-PnPContentType -InSiteHierarchy", "CommandName": "Get-PnPContentType", - "Id": 418 + "Rank": 2, + "Id": 418, + "Command": "Get-PnPContentType -InSiteHierarchy" }, { - "Rank": 3, - "Command": "Get-PnPContentType -Identity \"Project Document\"", "CommandName": "Get-PnPContentType", - "Id": 419 + "Rank": 3, + "Id": 419, + "Command": "Get-PnPContentType -Identity \"Project Document\"" }, { - "Rank": 4, - "Command": "Get-PnPContentType -List \"Documents\"", "CommandName": "Get-PnPContentType", - "Id": 420 + "Rank": 4, + "Id": 420, + "Command": "Get-PnPContentType -List \"Documents\"" }, { - "Rank": 5, - "Command": "Get-PnPContentType -Includes \"SchemaXml\"", "CommandName": "Get-PnPContentType", - "Id": 421 + "Rank": 5, + "Id": 421, + "Command": "Get-PnPContentType -Includes \"SchemaXml\"" }, { - "Rank": 1, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "CommandName": "Get-PnPContentTypePublishingStatus", - "Id": 422 + "Rank": 1, + "Id": 422, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" }, { - "Rank": 1, - "Command": "Get-PnPCustomAction", "CommandName": "Get-PnPCustomAction", - "Id": 423 + "Rank": 1, + "Id": 423, + "Command": "Get-PnPCustomAction" }, { - "Rank": 2, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Get-PnPCustomAction", - "Id": 424 + "Rank": 2, + "Id": 424, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Rank": 3, - "Command": "Get-PnPCustomAction -Scope web", "CommandName": "Get-PnPCustomAction", - "Id": 425 + "Rank": 3, + "Id": 425, + "Command": "Get-PnPCustomAction -Scope web" }, { - "Rank": 1, - "Command": "Get-PnPDeletedMicrosoft365Group", "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 426 + "Rank": 1, + "Id": 426, + "Command": "Get-PnPDeletedMicrosoft365Group" }, { - "Rank": 2, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 427 + "Rank": 2, + "Id": 427, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Rank": 1, - "Command": "Get-PnPDeletedTeam", "CommandName": "Get-PnPDeletedTeam", - "Id": 428 + "Rank": 1, + "Id": 428, + "Command": "Get-PnPDeletedTeam" }, { - "Rank": 1, - "Command": "Get-PnPDiagnostics", "CommandName": "Get-PnPDiagnostics", - "Id": 429 + "Rank": 1, + "Id": 429, + "Command": "Get-PnPDiagnostics" }, { - "Rank": 1, - "Command": "Get-PnPDisableSpacesActivation", "CommandName": "Get-PnPDisableSpacesActivation", - "Id": 430 + "Rank": 1, + "Id": 430, + "Command": "Get-PnPDisableSpacesActivation" }, { - "Rank": 1, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 431 + "Rank": 1, + "Id": 431, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" }, { - "Rank": 2, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 432 + "Rank": 2, + "Id": 432, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" }, { - "Rank": 1, - "Command": "Get-PnPEventReceiver", "CommandName": "Get-PnPEventReceiver", - "Id": 433 + "Rank": 1, + "Id": 433, + "Command": "Get-PnPEventReceiver" }, { - "Rank": 2, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPEventReceiver", - "Id": 434 + "Rank": 2, + "Id": 434, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Rank": 3, - "Command": "Get-PnPEventReceiver -Identity MyReceiver", "CommandName": "Get-PnPEventReceiver", - "Id": 435 + "Rank": 3, + "Id": 435, + "Command": "Get-PnPEventReceiver -Identity MyReceiver" }, { - "Rank": 4, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "CommandName": "Get-PnPEventReceiver", - "Id": 436 + "Rank": 4, + "Id": 436, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"" }, { - "Rank": 5, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPEventReceiver", - "Id": 437 + "Rank": 5, + "Id": 437, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Rank": 6, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "CommandName": "Get-PnPEventReceiver", - "Id": 438 + "Rank": 6, + "Id": 438, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" }, { - "Rank": 7, - "Command": "Get-PnPEventReceiver -Scope Site", "CommandName": "Get-PnPEventReceiver", - "Id": 439 + "Rank": 7, + "Id": 439, + "Command": "Get-PnPEventReceiver -Scope Site" }, { - "Rank": 8, - "Command": "Get-PnPEventReceiver -Scope Web", "CommandName": "Get-PnPEventReceiver", - "Id": 440 + "Rank": 8, + "Id": 440, + "Command": "Get-PnPEventReceiver -Scope Web" }, { - "Rank": 9, - "Command": "Get-PnPEventReceiver -Scope All", "CommandName": "Get-PnPEventReceiver", - "Id": 441 + "Rank": 9, + "Id": 441, + "Command": "Get-PnPEventReceiver -Scope All" }, { - "Rank": 1, - "Command": "Get-PnPException", "CommandName": "Get-PnPException", - "Id": 442 + "Rank": 1, + "Id": 442, + "Command": "Get-PnPException" }, { - "Rank": 2, - "Command": "Get-PnPException -All", "CommandName": "Get-PnPException", - "Id": 443 + "Rank": 2, + "Id": 443, + "Command": "Get-PnPException -All" }, { - "Rank": 1, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "CommandName": "Get-PnPExternalUser", - "Id": 444 + "Rank": 1, + "Id": 444, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" }, { - "Rank": 2, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "CommandName": "Get-PnPExternalUser", - "Id": 445 + "Rank": 2, + "Id": 445, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" }, { - "Rank": 1, - "Command": "Get-PnPFeature", "CommandName": "Get-PnPFeature", - "Id": 446 + "Rank": 1, + "Id": 446, + "Command": "Get-PnPFeature" }, { - "Rank": 2, - "Command": "Get-PnPFeature -Scope Site", "CommandName": "Get-PnPFeature", - "Id": 447 + "Rank": 2, + "Id": 447, + "Command": "Get-PnPFeature -Scope Site" }, { - "Rank": 3, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Get-PnPFeature", - "Id": 448 + "Rank": 3, + "Id": 448, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Rank": 4, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "CommandName": "Get-PnPFeature", - "Id": 449 + "Rank": 4, + "Id": 449, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" }, { - "Rank": 1, - "Command": "Get-PnPField", "CommandName": "Get-PnPField", - "Id": 450 + "Rank": 1, + "Id": 450, + "Command": "Get-PnPField" }, { - "Rank": 2, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "CommandName": "Get-PnPField", - "Id": 451 + "Rank": 2, + "Id": 451, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Rank": 3, - "Command": "Get-PnPField -Group \"Custom Columns\"", "CommandName": "Get-PnPField", - "Id": 452 + "Rank": 3, + "Id": 452, + "Command": "Get-PnPField -Group \"Custom Columns\"" }, { - "Rank": 1, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "CommandName": "Get-PnPFile", - "Id": 453 + "Rank": 1, + "Id": 453, + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" }, { - "Rank": 2, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "CommandName": "Get-PnPFile", - "Id": 454 + "Rank": 2, + "Id": 454, + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" }, { - "Rank": 3, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "CommandName": "Get-PnPFile", - "Id": 455 + "Rank": 3, + "Id": 455, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" }, { - "Rank": 4, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "CommandName": "Get-PnPFile", - "Id": 456 + "Rank": 4, + "Id": 456, + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" }, { - "Rank": 5, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "CommandName": "Get-PnPFile", - "Id": 457 + "Rank": 5, + "Id": 457, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" }, { - "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": 458 + "Rank": 6, + "Id": 458, + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" }, { - "Rank": 7, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "CommandName": "Get-PnPFile", - "Id": 459 + "Rank": 7, + "Id": 459, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" }, { - "Rank": 1, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Get-PnPFileSharingLink", - "Id": 460 + "Rank": 1, + "Id": 460, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Rank": 1, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "CommandName": "Get-PnPFileVersion", - "Id": 461 + "Rank": 1, + "Id": 461, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" }, { - "Rank": 2, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "CommandName": "Get-PnPFileVersion", - "Id": 462 + "Rank": 2, + "Id": 462, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" }, { - "Rank": 1, - "Command": "Get-PnPFlow -AsAdmin", "CommandName": "Get-PnPFlow", - "Id": 463 + "Rank": 1, + "Id": 463, + "Command": "Get-PnPFlow -AsAdmin" }, { - "Rank": 2, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "CommandName": "Get-PnPFlow", - "Id": 464 + "Rank": 2, + "Id": 464, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe" }, { - "Rank": 3, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "CommandName": "Get-PnPFlow", - "Id": 465 + "Rank": 3, + "Id": 465, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { - "Rank": 1, - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "CommandName": "Get-PnPFlowOwner", - "Id": 466 + "Rank": 1, + "Id": 466, + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" }, { - "Rank": 1, - "Command": "Get-PnPFolder", "CommandName": "Get-PnPFolder", - "Id": 467 + "Rank": 1, + "Id": 467, + "Command": "Get-PnPFolder" }, { - "Rank": 2, - "Command": "Get-PnPFolder -Url \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Id": 468 + "Rank": 2, + "Id": 468, + "Command": "Get-PnPFolder -Url \"Shared Documents\"" }, { - "Rank": 3, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "CommandName": "Get-PnPFolder", - "Id": 469 + "Rank": 3, + "Id": 469, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" }, { - "Rank": 4, - "Command": "Get-PnPFolder -List \"Shared Documents\"", "CommandName": "Get-PnPFolder", - "Id": 470 + "Rank": 4, + "Id": 470, + "Command": "Get-PnPFolder -List \"Shared Documents\"" }, { - "Rank": 1, - "Command": "Get-PnPFolderFile", "CommandName": "Get-PnPFolderFile", - "Id": 471 + "Rank": 1, + "Id": 471, + "Command": "Get-PnPFolderFile" }, { - "Rank": 2, - "Command": "Get-PnPFolderFile -Recurse", "CommandName": "Get-PnPFolderFile", - "Id": 472 + "Rank": 2, + "Id": 472, + "Command": "Get-PnPFolderFile -Recurse" }, { - "Rank": 3, - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderFile", - "Id": 473 + "Rank": 3, + "Id": 473, + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"" }, { - "Rank": 4, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "CommandName": "Get-PnPFolderFile", - "Id": 474 + "Rank": 4, + "Id": 474, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Rank": 5, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderFile", - "Id": 475 + "Rank": 5, + "Id": 475, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Rank": 1, - "Command": "Get-PnPFolderFolder", "CommandName": "Get-PnPFolderFolder", - "Id": 476 + "Rank": 1, + "Id": 476, + "Command": "Get-PnPFolderFolder" }, { - "Rank": 2, - "Command": "Get-PnPFolderFolder -Recurse", "CommandName": "Get-PnPFolderFolder", - "Id": 477 + "Rank": 2, + "Id": 477, + "Command": "Get-PnPFolderFolder -Recurse" }, { - "Rank": 3, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderFolder", - "Id": 478 + "Rank": 3, + "Id": 478, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"" }, { - "Rank": 4, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "CommandName": "Get-PnPFolderFolder", - "Id": 479 + "Rank": 4, + "Id": 479, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" }, { - "Rank": 5, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "CommandName": "Get-PnPFolderFolder", - "Id": 480 + "Rank": 5, + "Id": 480, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" }, { - "Rank": 6, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderFolder", - "Id": 481 + "Rank": 6, + "Id": 481, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Rank": 1, - "Command": "Get-PnPFolderItem", "CommandName": "Get-PnPFolderItem", - "Id": 482 + "Rank": 1, + "Id": 482, + "Command": "Get-PnPFolderItem" }, { - "Rank": 2, - "Command": "Get-PnPFolderItem -Recurse", "CommandName": "Get-PnPFolderItem", - "Id": 483 + "Rank": 2, + "Id": 483, + "Command": "Get-PnPFolderItem -Recurse" }, { - "Rank": 3, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "CommandName": "Get-PnPFolderItem", - "Id": 484 + "Rank": 3, + "Id": 484, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" }, { - "Rank": 4, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "CommandName": "Get-PnPFolderItem", - "Id": 485 + "Rank": 4, + "Id": 485, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Rank": 5, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "CommandName": "Get-PnPFolderItem", - "Id": 486 + "Rank": 5, + "Id": 486, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" }, { - "Rank": 6, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "CommandName": "Get-PnPFolderItem", - "Id": 487 + "Rank": 6, + "Id": 487, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Rank": 1, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Get-PnPFolderSharingLink", - "Id": 488 + "Rank": 1, + "Id": 488, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Rank": 1, - "Command": "Get-PnPFolderStorageMetric", "CommandName": "Get-PnPFolderStorageMetric", - "Id": 489 + "Rank": 1, + "Id": 489, + "Command": "Get-PnPFolderStorageMetric" }, { - "Rank": 2, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "CommandName": "Get-PnPFolderStorageMetric", - "Id": 490 + "Rank": 2, + "Id": 490, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" }, { - "Rank": 3, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "CommandName": "Get-PnPFolderStorageMetric", - "Id": 491 + "Rank": 3, + "Id": 491, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" }, { - "Rank": 1, - "Command": "Get-PnPFooter", "CommandName": "Get-PnPFooter", - "Id": 492 + "Rank": 1, + "Id": 492, + "Command": "Get-PnPFooter" }, { - "Rank": 1, - "Command": "Get-PnPGraphAccessToken", "CommandName": "Get-PnPGraphAccessToken", - "Id": 493 + "Rank": 1, + "Id": 493, + "Command": "Get-PnPGraphAccessToken" }, { - "Rank": 2, - "Command": "Get-PnPGraphAccessToken -Decoded", "CommandName": "Get-PnPGraphAccessToken", - "Id": 494 + "Rank": 2, + "Id": 494, + "Command": "Get-PnPGraphAccessToken -Decoded" }, { - "Rank": 1, - "Command": "Get-PnPGraphSubscription", "CommandName": "Get-PnPGraphSubscription", - "Id": 495 + "Rank": 1, + "Id": 495, + "Command": "Get-PnPGraphSubscription" }, { - "Rank": 2, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "CommandName": "Get-PnPGraphSubscription", - "Id": 496 + "Rank": 2, + "Id": 496, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Rank": 1, - "Command": "Get-PnPGroup", "CommandName": "Get-PnPGroup", - "Id": 497 + "Rank": 1, + "Id": 497, + "Command": "Get-PnPGroup" }, { - "Rank": 2, - "Command": "Get-PnPGroup -Identity 'My Site Users'", "CommandName": "Get-PnPGroup", - "Id": 498 + "Rank": 2, + "Id": 498, + "Command": "Get-PnPGroup -Identity 'My Site Users'" }, { - "Rank": 3, - "Command": "Get-PnPGroup -AssociatedMemberGroup", "CommandName": "Get-PnPGroup", - "Id": 499 + "Rank": 3, + "Id": 499, + "Command": "Get-PnPGroup -AssociatedMemberGroup" }, { - "Rank": 1, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "CommandName": "Get-PnPGroupMember", - "Id": 500 + "Rank": 1, + "Id": 500, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" }, { - "Rank": 2, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "CommandName": "Get-PnPGroupMember", - "Id": 501 + "Rank": 2, + "Id": 501, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" }, { - "Rank": 1, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "CommandName": "Get-PnPGroupPermissions", - "Id": 502 + "Rank": 1, + "Id": 502, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" }, { - "Rank": 1, - "Command": "Get-PnPHideDefaultThemes", "CommandName": "Get-PnPHideDefaultThemes", - "Id": 503 + "Rank": 1, + "Id": 503, + "Command": "Get-PnPHideDefaultThemes" }, { - "Rank": 1, - "Command": "Get-PnPHomePage", "CommandName": "Get-PnPHomePage", - "Id": 504 + "Rank": 1, + "Id": 504, + "Command": "Get-PnPHomePage" }, { - "Rank": 1, - "Command": "Get-PnPHomeSite", "CommandName": "Get-PnPHomeSite", - "Id": 505 + "Rank": 1, + "Id": 505, + "Command": "Get-PnPHomeSite" }, { - "Rank": 2, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "CommandName": "Get-PnPHomeSite", - "Id": 506 + "Rank": 2, + "Id": 506, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" }, { - "Rank": 3, - "Command": "Get-PnPHomeSite -Detailed", "CommandName": "Get-PnPHomeSite", - "Id": 507 + "Rank": 3, + "Id": 507, + "Command": "Get-PnPHomeSite -Detailed" }, { - "Rank": 1, - "Command": "Get-PnPHubSite", "CommandName": "Get-PnPHubSite", - "Id": 508 + "Rank": 1, + "Id": 508, + "Command": "Get-PnPHubSite" }, { - "Rank": 2, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "CommandName": "Get-PnPHubSite", - "Id": 509 + "Rank": 2, + "Id": 509, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Rank": 3, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "CommandName": "Get-PnPHubSite", - "Id": 510 + "Rank": 3, + "Id": 510, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" }, { - "Rank": 1, - "Command": "Get-PnPHubSiteChild", "CommandName": "Get-PnPHubSiteChild", - "Id": 511 + "Rank": 1, + "Id": 511, + "Command": "Get-PnPHubSiteChild" }, { - "Rank": 2, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "CommandName": "Get-PnPHubSiteChild", - "Id": 512 + "Rank": 2, + "Id": 512, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Rank": 1, - "Command": "Get-PnPInPlaceRecordsManagement", "CommandName": "Get-PnPInPlaceRecordsManagement", - "Id": 513 + "Rank": 1, + "Id": 513, + "Command": "Get-PnPInPlaceRecordsManagement" }, { - "Rank": 1, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "CommandName": "Get-PnPIsSiteAliasAvailable", - "Id": 514 + "Rank": 1, + "Id": 514, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" }, { - "Rank": 1, - "Command": "Get-PnPJavaScriptLink", "CommandName": "Get-PnPJavaScriptLink", - "Id": 515 + "Rank": 1, + "Id": 515, + "Command": "Get-PnPJavaScriptLink" }, { - "Rank": 2, - "Command": "Get-PnPJavaScriptLink -Scope All", "CommandName": "Get-PnPJavaScriptLink", - "Id": 516 + "Rank": 2, + "Id": 516, + "Command": "Get-PnPJavaScriptLink -Scope All" }, { - "Rank": 3, - "Command": "Get-PnPJavaScriptLink -Scope Web", "CommandName": "Get-PnPJavaScriptLink", - "Id": 517 + "Rank": 3, + "Id": 517, + "Command": "Get-PnPJavaScriptLink -Scope Web" }, { - "Rank": 4, - "Command": "Get-PnPJavaScriptLink -Scope Site", "CommandName": "Get-PnPJavaScriptLink", - "Id": 518 + "Rank": 4, + "Id": 518, + "Command": "Get-PnPJavaScriptLink -Scope Site" }, { - "Rank": 5, - "Command": "Get-PnPJavaScriptLink -Name Test", "CommandName": "Get-PnPJavaScriptLink", - "Id": 519 + "Rank": 5, + "Id": 519, + "Command": "Get-PnPJavaScriptLink -Name Test" }, { - "Rank": 1, - "Command": "Get-PnPKnowledgeHubSite", "CommandName": "Get-PnPKnowledgeHubSite", - "Id": 520 + "Rank": 1, + "Id": 520, + "Command": "Get-PnPKnowledgeHubSite" }, { - "Rank": 1, - "Command": "Get-PnPLabel", "CommandName": "Get-PnPLabel", - "Id": 521 + "Rank": 1, + "Id": 521, + "Command": "Get-PnPLabel" }, { - "Rank": 2, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "CommandName": "Get-PnPLabel", - "Id": 522 + "Rank": 2, + "Id": 522, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" }, { - "Rank": 1, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "CommandName": "Get-PnPLargeListOperationStatus", - "Id": 523 + "Rank": 1, + "Id": 523, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" }, { - "Rank": 1, - "Command": "Get-PnPList", "CommandName": "Get-PnPList", - "Id": 524 + "Rank": 1, + "Id": 524, + "Command": "Get-PnPList" }, { - "Rank": 2, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Get-PnPList", - "Id": 525 + "Rank": 2, + "Id": 525, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 3, - "Command": "Get-PnPList -Identity Lists/Announcements", "CommandName": "Get-PnPList", - "Id": 526 + "Rank": 3, + "Id": 526, + "Command": "Get-PnPList -Identity Lists/Announcements" }, { - "Rank": 4, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "CommandName": "Get-PnPList", - "Id": 527 + "Rank": 4, + "Id": 527, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" }, { - "Rank": 5, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "CommandName": "Get-PnPList", - "Id": 528 + "Rank": 5, + "Id": 528, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" }, { - "Rank": 1, - "Command": "Get-PnPListDesign", "CommandName": "Get-PnPListDesign", - "Id": 529 + "Rank": 1, + "Id": 529, + "Command": "Get-PnPListDesign" }, { - "Rank": 2, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPListDesign", - "Id": 530 + "Rank": 2, + "Id": 530, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 3, - "Command": "Get-PnPListDesign -Identity ListEvent", "CommandName": "Get-PnPListDesign", - "Id": 531 + "Rank": 3, + "Id": 531, + "Command": "Get-PnPListDesign -Identity ListEvent" }, { - "Rank": 1, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "CommandName": "Get-PnPListInformationRightsManagement", - "Id": 532 + "Rank": 1, + "Id": 532, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" }, { - "Rank": 1, - "Command": "Get-PnPListItem -List Tasks", "CommandName": "Get-PnPListItem", - "Id": 533 + "Rank": 1, + "Id": 533, + "Command": "Get-PnPListItem -List Tasks" }, { - "Rank": 2, - "Command": "Get-PnPListItem -List Tasks -Id 1", "CommandName": "Get-PnPListItem", - "Id": 534 + "Rank": 2, + "Id": 534, + "Command": "Get-PnPListItem -List Tasks -Id 1" }, { - "Rank": 3, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "CommandName": "Get-PnPListItem", - "Id": 535 + "Rank": 3, + "Id": 535, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" }, { - "Rank": 4, - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "CommandName": "Get-PnPListItem", - "Id": 536 + "Rank": 4, + "Id": 536, + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" }, { - "Rank": 5, - "Command": "Get-PnPListItem -List Tasks -Query \"\"", "CommandName": "Get-PnPListItem", - "Id": 537 + "Rank": 5, + "Id": 537, + "Command": "Get-PnPListItem -List Tasks -Query \"\"" }, { - "Rank": 6, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "CommandName": "Get-PnPListItem", - "Id": 538 + "Rank": 6, + "Id": 538, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000" }, { - "Rank": 7, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "CommandName": "Get-PnPListItem", - "Id": 539 + "Rank": 7, + "Id": 539, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" }, { - "Rank": 8, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "CommandName": "Get-PnPListItem", - "Id": 540 + "Rank": 8, + "Id": 540, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" }, { - "Rank": 9, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "CommandName": "Get-PnPListItem", - "Id": 541 + "Rank": 9, + "Id": 541, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" }, { - "Rank": 1, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "CommandName": "Get-PnPListItemAttachment", - "Id": 542 + "Rank": 1, + "Id": 542, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" }, { - "Rank": 2, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "CommandName": "Get-PnPListItemAttachment", - "Id": 543 + "Rank": 2, + "Id": 543, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" }, { - "Rank": 1, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "CommandName": "Get-PnPListItemComment", - "Id": 544 + "Rank": 1, + "Id": 544, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1" }, { - "Rank": 1, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "CommandName": "Get-PnPListItemPermission", - "Id": 545 + "Rank": 1, + "Id": 545, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" }, { - "Rank": 1, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "CommandName": "Get-PnPListItemVersion", - "Id": 546 + "Rank": 1, + "Id": 546, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" }, { - "Rank": 1, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "CommandName": "Get-PnPListPermissions", - "Id": 547 + "Rank": 1, + "Id": 547, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" }, { - "Rank": 2, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "CommandName": "Get-PnPListPermissions", - "Id": 548 + "Rank": 2, + "Id": 548, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { - "Rank": 1, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "CommandName": "Get-PnPListRecordDeclaration", - "Id": 549 + "Rank": 1, + "Id": 549, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" }, { - "Rank": 1, - "Command": "Get-PnPMasterPage", "CommandName": "Get-PnPMasterPage", - "Id": 550 + "Rank": 1, + "Id": 550, + "Command": "Get-PnPMasterPage" }, { - "Rank": 1, - "Command": "Get-PnPMessageCenterAnnouncement", "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 551 + "Rank": 1, + "Id": 551, + "Command": "Get-PnPMessageCenterAnnouncement" }, { - "Rank": 2, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 552 + "Rank": 2, + "Id": 552, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365ExpiringGroup", "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 553 + "Rank": 1, + "Id": 553, + "Command": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 554 + "Rank": 2, + "Id": 554, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365Group", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 555 + "Rank": 1, + "Id": 555, + "Command": "Get-PnPMicrosoft365Group" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 556 + "Rank": 2, + "Id": 556, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId" }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 557 + "Rank": 3, + "Id": 557, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" }, { - "Rank": 4, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 558 + "Rank": 4, + "Id": 558, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" }, { - "Rank": 5, - "Command": "Get-PnPMicrosoft365Group -Identity $group", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 559 + "Rank": 5, + "Id": 559, + "Command": "Get-PnPMicrosoft365Group -Identity $group" }, { - "Rank": 6, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "CommandName": "Get-PnPMicrosoft365Group", - "Id": 560 + "Rank": 6, + "Id": 560, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupEndpoint", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 561 + "Rank": 1, + "Id": 561, + "Command": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 562 + "Rank": 2, + "Id": 562, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 563 + "Rank": 3, + "Id": 563, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 564 + "Rank": 1, + "Id": 564, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 565 + "Rank": 2, + "Id": 565, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 566 + "Rank": 3, + "Id": 566, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 567 + "Rank": 1, + "Id": 567, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 568 + "Rank": 2, + "Id": 568, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupSettings", "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 569 + "Rank": 1, + "Id": 569, + "Command": "Get-PnPMicrosoft365GroupSettings" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 570 + "Rank": 2, + "Id": 570, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 571 + "Rank": 1, + "Id": 571, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 572 + "Rank": 2, + "Id": 572, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupTeam", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 573 + "Rank": 1, + "Id": 573, + "Command": "Get-PnPMicrosoft365GroupTeam" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 574 + "Rank": 2, + "Id": 574, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 575 + "Rank": 3, + "Id": 575, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 576 + "Rank": 1, + "Id": 576, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 577 + "Rank": 2, + "Id": 577, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 578 + "Rank": 3, + "Id": 578, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Rank": 1, - "Command": "Get-PnPNavigationNode", "CommandName": "Get-PnPNavigationNode", - "Id": 579 + "Rank": 1, + "Id": 579, + "Command": "Get-PnPNavigationNode" }, { - "Rank": 2, - "Command": "Get-PnPNavigationNode -Location QuickLaunch", "CommandName": "Get-PnPNavigationNode", - "Id": 580 + "Rank": 2, + "Id": 580, + "Command": "Get-PnPNavigationNode -Location QuickLaunch" }, { - "Rank": 3, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "CommandName": "Get-PnPNavigationNode", - "Id": 581 + "Rank": 3, + "Id": 581, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar" }, { - "Rank": 1, - "Command": "Get-PnPOrgAssetsLibrary", "CommandName": "Get-PnPOrgAssetsLibrary", - "Id": 582 + "Rank": 1, + "Id": 582, + "Command": "Get-PnPOrgAssetsLibrary" }, { - "Rank": 1, - "Command": "Get-PnPOrgNewsSite", "CommandName": "Get-PnPOrgNewsSite", - "Id": 583 + "Rank": 1, + "Id": 583, + "Command": "Get-PnPOrgNewsSite" }, { - "Rank": 1, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "CommandName": "Get-PnPPage", - "Id": 584 + "Rank": 1, + "Id": 584, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" }, { - "Rank": 2, - "Command": "Get-PnPPage \"MyPage\"", "CommandName": "Get-PnPPage", - "Id": 585 + "Rank": 2, + "Id": 585, + "Command": "Get-PnPPage \"MyPage\"" }, { - "Rank": 3, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "CommandName": "Get-PnPPage", - "Id": 586 + "Rank": 3, + "Id": 586, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" }, { - "Rank": 4, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "CommandName": "Get-PnPPage", - "Id": 587 + "Rank": 4, + "Id": 587, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" }, { - "Rank": 1, - "Command": "Get-PnPPageComponent -Page Home", "CommandName": "Get-PnPPageComponent", - "Id": 588 + "Rank": 1, + "Id": 588, + "Command": "Get-PnPPageComponent -Page Home" }, { - "Rank": 2, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPPageComponent", - "Id": 589 + "Rank": 2, + "Id": 589, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Rank": 3, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "CommandName": "Get-PnPPageComponent", - "Id": 590 + "Rank": 3, + "Id": 590, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable" }, { - "Rank": 1, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "CommandName": "Get-PnPPlannerBucket", - "Id": 591 + "Rank": 1, + "Id": 591, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Rank": 1, - "Command": "Get-PnPPlannerConfiguration", "CommandName": "Get-PnPPlannerConfiguration", - "Id": 592 + "Rank": 1, + "Id": 592, + "Command": "Get-PnPPlannerConfiguration" }, { - "Rank": 1, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "CommandName": "Get-PnPPlannerPlan", - "Id": 593 + "Rank": 1, + "Id": 593, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" }, { - "Rank": 2, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "CommandName": "Get-PnPPlannerPlan", - "Id": 594 + "Rank": 2, + "Id": 594, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" }, { - "Rank": 3, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "CommandName": "Get-PnPPlannerPlan", - "Id": 595 + "Rank": 3, + "Id": 595, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" }, { - "Rank": 1, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "CommandName": "Get-PnPPlannerRosterMember", - "Id": 596 + "Rank": 1, + "Id": 596, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Rank": 1, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 597 + "Rank": 1, + "Id": 597, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" }, { - "Rank": 2, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 598 + "Rank": 2, + "Id": 598, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Rank": 1, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "CommandName": "Get-PnPPlannerTask", - "Id": 599 + "Rank": 1, + "Id": 599, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Rank": 2, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "CommandName": "Get-PnPPlannerTask", - "Id": 600 + "Rank": 2, + "Id": 600, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Rank": 3, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "CommandName": "Get-PnPPlannerTask", - "Id": 601 + "Rank": 3, + "Id": 601, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Rank": 1, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Get-PnPPlannerUserPolicy", - "Id": 602 + "Rank": 1, + "Id": 602, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Rank": 1, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "CommandName": "Get-PnPPowerPlatformConnector", - "Id": 603 + "Rank": 1, + "Id": 603, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" }, { - "Rank": 1, - "Command": "Get-PnPPowerPlatformEnvironment", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 604 + "Rank": 1, + "Id": 604, + "Command": "Get-PnPPowerPlatformEnvironment" }, { - "Rank": 2, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 605 + "Rank": 2, + "Id": 605, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" }, { - "Rank": 3, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 606 + "Rank": 3, + "Id": 606, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" }, { - "Rank": 1, - "Command": "Get-PnPPowerShellTelemetryEnabled", "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Id": 607 + "Rank": 1, + "Id": 607, + "Command": "Get-PnPPowerShellTelemetryEnabled" }, { - "Rank": 1, - "Command": "Get-PnPPropertyBag", "CommandName": "Get-PnPPropertyBag", - "Id": 608 + "Rank": 1, + "Id": 608, + "Command": "Get-PnPPropertyBag" }, { - "Rank": 2, - "Command": "Get-PnPPropertyBag -Key MyKey", "CommandName": "Get-PnPPropertyBag", - "Id": 609 + "Rank": 2, + "Id": 609, + "Command": "Get-PnPPropertyBag -Key MyKey" }, { - "Rank": 3, - "Command": "Get-PnPPropertyBag -Folder /MyFolder", "CommandName": "Get-PnPPropertyBag", - "Id": 610 + "Rank": 3, + "Id": 610, + "Command": "Get-PnPPropertyBag -Folder /MyFolder" }, { - "Rank": 4, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "CommandName": "Get-PnPPropertyBag", - "Id": 611 + "Rank": 4, + "Id": 611, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" }, { - "Rank": 5, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "CommandName": "Get-PnPPropertyBag", - "Id": 612 + "Rank": 5, + "Id": 612, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" }, { - "Rank": 1, - "Command": "Get-PnPPublishingImageRendition", "CommandName": "Get-PnPPublishingImageRendition", - "Id": 613 + "Rank": 1, + "Id": 613, + "Command": "Get-PnPPublishingImageRendition" }, { - "Rank": 2, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "CommandName": "Get-PnPPublishingImageRendition", - "Id": 614 + "Rank": 2, + "Id": 614, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" }, { - "Rank": 3, - "Command": "Get-PnPPublishingImageRendition -Identity 2", "CommandName": "Get-PnPPublishingImageRendition", - "Id": 615 + "Rank": 3, + "Id": 615, + "Command": "Get-PnPPublishingImageRendition -Identity 2" }, { - "Rank": 1, - "Command": "Get-PnPRecycleBinItem", "CommandName": "Get-PnPRecycleBinItem", - "Id": 616 + "Rank": 1, + "Id": 616, + "Command": "Get-PnPRecycleBinItem" }, { - "Rank": 2, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "CommandName": "Get-PnPRecycleBinItem", - "Id": 617 + "Rank": 2, + "Id": 617, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" }, { - "Rank": 3, - "Command": "Get-PnPRecycleBinItem -FirstStage", "CommandName": "Get-PnPRecycleBinItem", - "Id": 618 + "Rank": 3, + "Id": 618, + "Command": "Get-PnPRecycleBinItem -FirstStage" }, { - "Rank": 4, - "Command": "Get-PnPRecycleBinItem -SecondStage", "CommandName": "Get-PnPRecycleBinItem", - "Id": 619 + "Rank": 4, + "Id": 619, + "Command": "Get-PnPRecycleBinItem -SecondStage" }, { - "Rank": 5, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "CommandName": "Get-PnPRecycleBinItem", - "Id": 620 + "Rank": 5, + "Id": 620, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000" }, { - "Rank": 1, - "Command": "Get-PnPRequestAccessEmails", "CommandName": "Get-PnPRequestAccessEmails", - "Id": 621 + "Rank": 1, + "Id": 621, + "Command": "Get-PnPRequestAccessEmails" }, { - "Rank": 1, - "Command": "Get-PnPRetentionLabel", "CommandName": "Get-PnPRetentionLabel", - "Id": 622 + "Rank": 1, + "Id": 622, + "Command": "Get-PnPRetentionLabel" }, { - "Rank": 2, - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "CommandName": "Get-PnPRetentionLabel", - "Id": 623 + "Rank": 2, + "Id": 623, + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" }, { - "Rank": 1, - "Command": "Get-PnPRoleDefinition", "CommandName": "Get-PnPRoleDefinition", - "Id": 624 + "Rank": 1, + "Id": 624, + "Command": "Get-PnPRoleDefinition" }, { - "Rank": 2, - "Command": "Get-PnPRoleDefinition -Identity Read", "CommandName": "Get-PnPRoleDefinition", - "Id": 625 + "Rank": 2, + "Id": 625, + "Command": "Get-PnPRoleDefinition -Identity Read" }, { - "Rank": 3, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "CommandName": "Get-PnPRoleDefinition", - "Id": 626 + "Rank": 3, + "Id": 626, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" }, { - "Rank": 1, - "Command": "Get-PnPSearchConfiguration", "CommandName": "Get-PnPSearchConfiguration", - "Id": 627 + "Rank": 1, + "Id": 627, + "Command": "Get-PnPSearchConfiguration" }, { - "Rank": 2, - "Command": "Get-PnPSearchConfiguration -Scope Site", "CommandName": "Get-PnPSearchConfiguration", - "Id": 628 + "Rank": 2, + "Id": 628, + "Command": "Get-PnPSearchConfiguration -Scope Site" }, { - "Rank": 3, - "Command": "Get-PnPSearchConfiguration -Scope Subscription", "CommandName": "Get-PnPSearchConfiguration", - "Id": 629 + "Rank": 3, + "Id": 629, + "Command": "Get-PnPSearchConfiguration -Scope Subscription" }, { - "Rank": 4, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Get-PnPSearchConfiguration", - "Id": 630 + "Rank": 4, + "Id": 630, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Rank": 5, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "CommandName": "Get-PnPSearchConfiguration", - "Id": 631 + "Rank": 5, + "Id": 631, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" }, { - "Rank": 6, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "CommandName": "Get-PnPSearchConfiguration", - "Id": 632 + "Rank": 6, + "Id": 632, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" }, { - "Rank": 7, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "CommandName": "Get-PnPSearchConfiguration", - "Id": 633 + "Rank": 7, + "Id": 633, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" }, { - "Rank": 8, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "CommandName": "Get-PnPSearchConfiguration", - "Id": 634 + "Rank": 8, + "Id": 634, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" }, { - "Rank": 1, - "Command": "Get-PnPSearchCrawlLog", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 635 + "Rank": 1, + "Id": 635, + "Command": "Get-PnPSearchCrawlLog" }, { - "Rank": 2, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 636 + "Rank": 2, + "Id": 636, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" }, { - "Rank": 3, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 637 + "Rank": 3, + "Id": 637, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" }, { - "Rank": 4, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 638 + "Rank": 4, + "Id": 638, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" }, { - "Rank": 5, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 639 + "Rank": 5, + "Id": 639, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" }, { - "Rank": 6, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 640 + "Rank": 6, + "Id": 640, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" }, { - "Rank": 7, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "CommandName": "Get-PnPSearchCrawlLog", - "Id": 641 + "Rank": 7, + "Id": 641, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" }, { - "Rank": 1, - "Command": "Get-PnPSearchSettings", "CommandName": "Get-PnPSearchSettings", - "Id": 642 + "Rank": 1, + "Id": 642, + "Command": "Get-PnPSearchSettings" }, { - "Rank": 1, - "Command": "Get-PnPServiceCurrentHealth", "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 643 + "Rank": 1, + "Id": 643, + "Command": "Get-PnPServiceCurrentHealth" }, { - "Rank": 2, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 644 + "Rank": 2, + "Id": 644, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" }, { - "Rank": 1, - "Command": "Get-PnPServiceHealthIssue", "CommandName": "Get-PnPServiceHealthIssue", - "Id": 645 + "Rank": 1, + "Id": 645, + "Command": "Get-PnPServiceHealthIssue" }, { - "Rank": 2, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "CommandName": "Get-PnPServiceHealthIssue", - "Id": 646 + "Rank": 2, + "Id": 646, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" }, { - "Rank": 1, - "Command": "Get-PnPSharePointAddIn", "CommandName": "Get-PnPSharePointAddIn", - "Id": 647 + "Rank": 1, + "Id": 647, + "Command": "Get-PnPSharePointAddIn" }, { - "Rank": 2, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "CommandName": "Get-PnPSharePointAddIn", - "Id": 648 + "Rank": 2, + "Id": 648, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites" }, { - "Rank": 1, - "Command": "Get-PnPSharingForNonOwnersOfSite", "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Id": 649 + "Rank": 1, + "Id": 649, + "Command": "Get-PnPSharingForNonOwnersOfSite" }, { - "Rank": 1, - "Command": "Get-PnPSite", "CommandName": "Get-PnPSite", - "Id": 650 + "Rank": 1, + "Id": 650, + "Command": "Get-PnPSite" }, { - "Rank": 2, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "CommandName": "Get-PnPSite", - "Id": 651 + "Rank": 2, + "Id": 651, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" }, { - "Rank": 1, - "Command": "Get-PnPSiteClosure", "CommandName": "Get-PnPSiteClosure", - "Id": 652 + "Rank": 1, + "Id": 652, + "Command": "Get-PnPSiteClosure" }, { - "Rank": 1, - "Command": "Get-PnPSiteCollectionAdmin", "CommandName": "Get-PnPSiteCollectionAdmin", - "Id": 653 + "Rank": 1, + "Id": 653, + "Command": "Get-PnPSiteCollectionAdmin" }, { - "Rank": 1, - "Command": "Get-PnPSiteCollectionAppCatalog", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 654 + "Rank": 1, + "Id": 654, + "Command": "Get-PnPSiteCollectionAppCatalog" }, { - "Rank": 2, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 655 + "Rank": 2, + "Id": 655, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" }, { - "Rank": 3, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 656 + "Rank": 3, + "Id": 656, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" }, { - "Rank": 1, - "Command": "Get-PnPSiteCollectionTermStore", "CommandName": "Get-PnPSiteCollectionTermStore", - "Id": 657 + "Rank": 1, + "Id": 657, + "Command": "Get-PnPSiteCollectionTermStore" }, { - "Rank": 1, - "Command": "Get-PnPSiteDesign", "CommandName": "Get-PnPSiteDesign", - "Id": 658 + "Rank": 1, + "Id": 658, + "Command": "Get-PnPSiteDesign" }, { - "Rank": 2, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteDesign", - "Id": 659 + "Rank": 2, + "Id": 659, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 1, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteDesignRights", - "Id": 660 + "Rank": 1, + "Id": 660, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 1, - "Command": "Get-PnPSiteDesignRun", "CommandName": "Get-PnPSiteDesignRun", - "Id": 661 + "Rank": 1, + "Id": 661, + "Command": "Get-PnPSiteDesignRun" }, { - "Rank": 2, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "CommandName": "Get-PnPSiteDesignRun", - "Id": 662 + "Rank": 2, + "Id": 662, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" }, { - "Rank": 1, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "CommandName": "Get-PnPSiteDesignTask", - "Id": 663 + "Rank": 1, + "Id": 663, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Rank": 2, - "Command": "Get-PnPSiteDesignTask", "CommandName": "Get-PnPSiteDesignTask", - "Id": 664 + "Rank": 2, + "Id": 664, + "Command": "Get-PnPSiteDesignTask" }, { - "Rank": 3, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "CommandName": "Get-PnPSiteDesignTask", - "Id": 665 + "Rank": 3, + "Id": 665, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Rank": 1, - "Command": "Get-PnPSiteGroup", "CommandName": "Get-PnPSiteGroup", - "Id": 666 + "Rank": 1, + "Id": 666, + "Command": "Get-PnPSiteGroup" }, { - "Rank": 2, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "CommandName": "Get-PnPSiteGroup", - "Id": 667 + "Rank": 2, + "Id": 667, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Rank": 3, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "CommandName": "Get-PnPSiteGroup", - "Id": 668 + "Rank": 3, + "Id": 668, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" }, { - "Rank": 4, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "CommandName": "Get-PnPSiteGroup", - "Id": 669 + "Rank": 4, + "Id": 669, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Rank": 1, - "Command": "Get-PnPSitePolicy", "CommandName": "Get-PnPSitePolicy", - "Id": 670 + "Rank": 1, + "Id": 670, + "Command": "Get-PnPSitePolicy" }, { - "Rank": 2, - "Command": "Get-PnPSitePolicy -AllAvailable", "CommandName": "Get-PnPSitePolicy", - "Id": 671 + "Rank": 2, + "Id": 671, + "Command": "Get-PnPSitePolicy -AllAvailable" }, { - "Rank": 3, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "CommandName": "Get-PnPSitePolicy", - "Id": 672 + "Rank": 3, + "Id": 672, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Rank": 1, - "Command": "Get-PnPSiteScript", "CommandName": "Get-PnPSiteScript", - "Id": 673 + "Rank": 1, + "Id": 673, + "Command": "Get-PnPSiteScript" }, { - "Rank": 2, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Get-PnPSiteScript", - "Id": 674 + "Rank": 2, + "Id": 674, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 1, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "CommandName": "Get-PnPSiteScriptFromList", - "Id": 675 + "Rank": 1, + "Id": 675, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" }, { - "Rank": 2, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "CommandName": "Get-PnPSiteScriptFromList", - "Id": 676 + "Rank": 2, + "Id": 676, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" }, { - "Rank": 3, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "CommandName": "Get-PnPSiteScriptFromList", - "Id": 677 + "Rank": 3, + "Id": 677, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" }, { - "Rank": 1, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 678 + "Rank": 1, + "Id": 678, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" }, { - "Rank": 2, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 679 + "Rank": 2, + "Id": 679, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" }, { - "Rank": 3, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 680 + "Rank": 3, + "Id": 680, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" }, { - "Rank": 4, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 681 + "Rank": 4, + "Id": 681, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" }, { - "Rank": 5, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 682 + "Rank": 5, + "Id": 682, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" }, { - "Rank": 6, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 683 + "Rank": 6, + "Id": 683, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" }, { - "Rank": 1, - "Command": "Get-PnPSiteSearchQueryResults", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 684 + "Rank": 1, + "Id": 684, + "Command": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 2, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 685 + "Rank": 2, + "Id": 685, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" }, { - "Rank": 3, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 686 + "Rank": 3, + "Id": 686, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" }, { - "Rank": 4, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 687 + "Rank": 4, + "Id": 687, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" }, { - "Rank": 5, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 688 + "Rank": 5, + "Id": 688, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" }, { - "Rank": 6, - "Command": "Get-PnPSiteSearchQueryResults -All", "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 689 + "Rank": 6, + "Id": 689, + "Command": "Get-PnPSiteSearchQueryResults -All" }, { - "Rank": 1, - "Command": "Get-PnPSiteSensitivityLabel", "CommandName": "Get-PnPSiteSensitivityLabel", - "Id": 690 + "Rank": 1, + "Id": 690, + "Command": "Get-PnPSiteSensitivityLabel" }, { - "Rank": 1, - "Command": "Get-PnPSiteTemplate -Out template.pnp", "CommandName": "Get-PnPSiteTemplate", - "Id": 691 + "Rank": 1, + "Id": 691, + "Command": "Get-PnPSiteTemplate -Out template.pnp" }, { - "Rank": 2, - "Command": "Get-PnPSiteTemplate -Out template.xml", "CommandName": "Get-PnPSiteTemplate", - "Id": 692 + "Rank": 2, + "Id": 692, + "Command": "Get-PnPSiteTemplate -Out template.xml" }, { - "Rank": 3, - "Command": "Get-PnPSiteTemplate -Out template.md", "CommandName": "Get-PnPSiteTemplate", - "Id": 693 + "Rank": 3, + "Id": 693, + "Command": "Get-PnPSiteTemplate -Out template.md" }, { - "Rank": 4, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "CommandName": "Get-PnPSiteTemplate", - "Id": 694 + "Rank": 4, + "Id": 694, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" }, { - "Rank": 5, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "CommandName": "Get-PnPSiteTemplate", - "Id": 695 + "Rank": 5, + "Id": 695, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" }, { - "Rank": 6, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "CommandName": "Get-PnPSiteTemplate", - "Id": 696 + "Rank": 6, + "Id": 696, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" }, { - "Rank": 7, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "CommandName": "Get-PnPSiteTemplate", - "Id": 697 + "Rank": 7, + "Id": 697, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" }, { - "Rank": 8, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "CommandName": "Get-PnPSiteTemplate", - "Id": 698 + "Rank": 8, + "Id": 698, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" }, { - "Rank": 9, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "CommandName": "Get-PnPSiteTemplate", - "Id": 699 + "Rank": 9, + "Id": 699, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" }, { - "Rank": 10, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "CommandName": "Get-PnPSiteTemplate", - "Id": 700 + "Rank": 10, + "Id": 700, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" }, { - "Rank": 11, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "CommandName": "Get-PnPSiteTemplate", - "Id": 701 + "Rank": 11, + "Id": 701, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" }, { - "Rank": 12, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "CommandName": "Get-PnPSiteTemplate", - "Id": 702 + "Rank": 12, + "Id": 702, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" }, { - "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": 703 + "Rank": 13, + "Id": 703, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" }, { - "Rank": 14, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "CommandName": "Get-PnPSiteTemplate", - "Id": 704 + "Rank": 14, + "Id": 704, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" }, { - "Rank": 1, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "CommandName": "Get-PnPSiteUserInvitations", - "Id": 705 + "Rank": 1, + "Id": 705, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Rank": 1, - "Command": "Get-PnPSiteVersionPolicy", "CommandName": "Get-PnPSiteVersionPolicy", - "Id": 706 + "Rank": 1, + "Id": 706, + "Command": "Get-PnPSiteVersionPolicy" }, { - "Rank": 1, - "Command": "Get-PnPStorageEntity", "CommandName": "Get-PnPStorageEntity", - "Id": 707 + "Rank": 1, + "Id": 707, + "Command": "Get-PnPStorageEntity" }, { - "Rank": 2, - "Command": "Get-PnPStorageEntity -Key MyKey", "CommandName": "Get-PnPStorageEntity", - "Id": 708 + "Rank": 2, + "Id": 708, + "Command": "Get-PnPStorageEntity -Key MyKey" }, { - "Rank": 3, - "Command": "Get-PnPStorageEntity -Scope Site", "CommandName": "Get-PnPStorageEntity", - "Id": 709 + "Rank": 3, + "Id": 709, + "Command": "Get-PnPStorageEntity -Scope Site" }, { - "Rank": 4, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "CommandName": "Get-PnPStorageEntity", - "Id": 710 + "Rank": 4, + "Id": 710, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Rank": 1, - "Command": "Get-PnPStoredCredential -Name O365", "CommandName": "Get-PnPStoredCredential", - "Id": 711 + "Rank": 1, + "Id": 711, + "Command": "Get-PnPStoredCredential -Name O365" }, { - "Rank": 1, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Id": 712 + "Rank": 1, + "Id": 712, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Rank": 1, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Id": 713 + "Rank": 1, + "Id": 713, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Rank": 1, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Id": 714 + "Rank": 1, + "Id": 714, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" }, { - "Rank": 1, - "Command": "Get-PnPSubWeb", "CommandName": "Get-PnPSubWeb", - "Id": 715 + "Rank": 1, + "Id": 715, + "Command": "Get-PnPSubWeb" }, { - "Rank": 2, - "Command": "Get-PnPSubWeb -Recurse", "CommandName": "Get-PnPSubWeb", - "Id": 716 + "Rank": 2, + "Id": 716, + "Command": "Get-PnPSubWeb -Recurse" }, { - "Rank": 3, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "CommandName": "Get-PnPSubWeb", - "Id": 717 + "Rank": 3, + "Id": 717, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" }, { - "Rank": 4, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "CommandName": "Get-PnPSubWeb", - "Id": 718 + "Rank": 4, + "Id": 718, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" }, { - "Rank": 5, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "CommandName": "Get-PnPSubWeb", - "Id": 719 + "Rank": 5, + "Id": 719, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" }, { - "Rank": 1, - "Command": "Get-PnPSyntexModel", "CommandName": "Get-PnPSyntexModel", - "Id": 720 + "Rank": 1, + "Id": 720, + "Command": "Get-PnPSyntexModel" }, { - "Rank": 2, - "Command": "Get-PnPSyntexModel -Identity 1", "CommandName": "Get-PnPSyntexModel", - "Id": 721 + "Rank": 2, + "Id": 721, + "Command": "Get-PnPSyntexModel -Identity 1" }, { - "Rank": 3, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "CommandName": "Get-PnPSyntexModel", - "Id": 722 + "Rank": 3, + "Id": 722, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" }, { - "Rank": 1, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "CommandName": "Get-PnPSyntexModelPublication", - "Id": 723 + "Rank": 1, + "Id": 723, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" }, { - "Rank": 1, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "CommandName": "Get-PnPTaxonomyItem", - "Id": 724 + "Rank": 1, + "Id": 724, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" }, { - "Rank": 1, - "Command": "Get-PnPTeamsApp", "CommandName": "Get-PnPTeamsApp", - "Id": 725 + "Rank": 1, + "Id": 725, + "Command": "Get-PnPTeamsApp" }, { - "Rank": 2, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "CommandName": "Get-PnPTeamsApp", - "Id": 726 + "Rank": 2, + "Id": 726, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" }, { - "Rank": 3, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "CommandName": "Get-PnPTeamsApp", - "Id": 727 + "Rank": 3, + "Id": 727, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "CommandName": "Get-PnPTeamsChannel", - "Id": 728 + "Rank": 1, + "Id": 728, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "CommandName": "Get-PnPTeamsChannel", - "Id": 729 + "Rank": 2, + "Id": 729, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" }, { - "Rank": 3, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "CommandName": "Get-PnPTeamsChannel", - "Id": 730 + "Rank": 3, + "Id": 730, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 731 + "Rank": 1, + "Id": 731, + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 732 + "Rank": 2, + "Id": 732, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 733 + "Rank": 1, + "Id": 733, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 734 + "Rank": 2, + "Id": 734, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 735 + "Rank": 1, + "Id": 735, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 736 + "Rank": 2, + "Id": 736, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 737 + "Rank": 1, + "Id": 737, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 738 + "Rank": 2, + "Id": 738, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" }, { - "Rank": 3, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 739 + "Rank": 3, + "Id": 739, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" }, { - "Rank": 4, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Get-PnPTeamsChannelUser", - "Id": 740 + "Rank": 4, + "Id": 740, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Rank": 1, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 741 + "Rank": 1, + "Id": 741, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" }, { - "Rank": 2, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 742 + "Rank": 2, + "Id": 742, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" }, { - "Rank": 1, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "CommandName": "Get-PnPTeamsTab", - "Id": 743 + "Rank": 1, + "Id": 743, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" }, { - "Rank": 2, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "CommandName": "Get-PnPTeamsTab", - "Id": 744 + "Rank": 2, + "Id": 744, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" }, { - "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": 745 + "Rank": 3, + "Id": 745, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" }, { - "Rank": 4, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "CommandName": "Get-PnPTeamsTab", - "Id": 746 + "Rank": 4, + "Id": 746, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" }, { - "Rank": 5, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "CommandName": "Get-PnPTeamsTab", - "Id": 747 + "Rank": 5, + "Id": 747, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" }, { - "Rank": 1, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "CommandName": "Get-PnPTeamsTag", - "Id": 748 + "Rank": 1, + "Id": 748, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Rank": 2, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "CommandName": "Get-PnPTeamsTag", - "Id": 749 + "Rank": 2, + "Id": 749, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Rank": 1, - "Command": "Get-PnPTeamsTeam", "CommandName": "Get-PnPTeamsTeam", - "Id": 750 + "Rank": 1, + "Id": 750, + "Command": "Get-PnPTeamsTeam" }, { - "Rank": 2, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 751 + "Rank": 2, + "Id": 751, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" }, { - "Rank": 3, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 752 + "Rank": 3, + "Id": 752, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" }, { - "Rank": 4, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 753 + "Rank": 4, + "Id": 753, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" }, { - "Rank": 5, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "CommandName": "Get-PnPTeamsTeam", - "Id": 754 + "Rank": 5, + "Id": 754, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" }, { - "Rank": 1, - "Command": "Get-PnPTeamsUser -Team MyTeam", "CommandName": "Get-PnPTeamsUser", - "Id": 755 + "Rank": 1, + "Id": 755, + "Command": "Get-PnPTeamsUser -Team MyTeam" }, { - "Rank": 2, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "CommandName": "Get-PnPTeamsUser", - "Id": 756 + "Rank": 2, + "Id": 756, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" }, { - "Rank": 3, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "CommandName": "Get-PnPTeamsUser", - "Id": 757 + "Rank": 3, + "Id": 757, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" }, { - "Rank": 4, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "CommandName": "Get-PnPTeamsUser", - "Id": 758 + "Rank": 4, + "Id": 758, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" }, { - "Rank": 1, - "Command": "Get-PnPTemporarilyDisableAppBar", "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Id": 759 + "Rank": 1, + "Id": 759, + "Command": "Get-PnPTemporarilyDisableAppBar" }, { - "Rank": 1, - "Command": "Get-PnPTenant", "CommandName": "Get-PnPTenant", - "Id": 760 + "Rank": 1, + "Id": 760, + "Command": "Get-PnPTenant" }, { - "Rank": 1, - "Command": "Get-PnPTenantAppCatalogUrl", "CommandName": "Get-PnPTenantAppCatalogUrl", - "Id": 761 + "Rank": 1, + "Id": 761, + "Command": "Get-PnPTenantAppCatalogUrl" }, { - "Rank": 1, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "CommandName": "Get-PnPTenantCdnEnabled", - "Id": 762 + "Rank": 1, + "Id": 762, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public" }, { - "Rank": 1, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "CommandName": "Get-PnPTenantCdnOrigin", - "Id": 763 + "Rank": 1, + "Id": 763, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public" }, { - "Rank": 1, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "CommandName": "Get-PnPTenantCdnPolicies", - "Id": 764 + "Rank": 1, + "Id": 764, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public" }, { - "Rank": 1, - "Command": "Get-PnPTenantDeletedSite", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 765 + "Rank": 1, + "Id": 765, + "Command": "Get-PnPTenantDeletedSite" }, { - "Rank": 2, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 766 + "Rank": 2, + "Id": 766, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 3, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 767 + "Rank": 3, + "Id": 767, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" }, { - "Rank": 4, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "CommandName": "Get-PnPTenantDeletedSite", - "Id": 768 + "Rank": 4, + "Id": 768, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" }, { - "Rank": 1, - "Command": "Get-PnPTenantId", "CommandName": "Get-PnPTenantId", - "Id": 769 + "Rank": 1, + "Id": 769, + "Command": "Get-PnPTenantId" }, { - "Rank": 2, - "Command": "Get-PnPTenantId contoso", "CommandName": "Get-PnPTenantId", - "Id": 770 + "Rank": 2, + "Id": 770, + "Command": "Get-PnPTenantId contoso" }, { - "Rank": 3, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "CommandName": "Get-PnPTenantId", - "Id": 771 + "Rank": 3, + "Id": 771, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" }, { - "Rank": 4, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "CommandName": "Get-PnPTenantId", - "Id": 772 + "Rank": 4, + "Id": 772, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" }, { - "Rank": 1, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "CommandName": "Get-PnPTenantInfo", - "Id": 773 + "Rank": 1, + "Id": 773, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" }, { - "Rank": 2, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "CommandName": "Get-PnPTenantInfo", - "Id": 774 + "Rank": 2, + "Id": 774, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" }, { - "Rank": 3, - "Command": "Get-PnPTenantInfo", "CommandName": "Get-PnPTenantInfo", - "Id": 775 + "Rank": 3, + "Id": 775, + "Command": "Get-PnPTenantInfo" }, { - "Rank": 4, - "Command": "Get-PnPTenantInfo -CurrentTenant", "CommandName": "Get-PnPTenantInfo", - "Id": 776 + "Rank": 4, + "Id": 776, + "Command": "Get-PnPTenantInfo -CurrentTenant" }, { - "Rank": 1, - "Command": "Get-PnPTenantInstance", "CommandName": "Get-PnPTenantInstance", - "Id": 777 + "Rank": 1, + "Id": 777, + "Command": "Get-PnPTenantInstance" }, { - "Rank": 1, - "Command": "Get-PnPTenantRecycleBinItem", "CommandName": "Get-PnPTenantRecycleBinItem", - "Id": 778 + "Rank": 1, + "Id": 778, + "Command": "Get-PnPTenantRecycleBinItem" }, { - "Rank": 1, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "CommandName": "Get-PnPTenantSequence", - "Id": 779 + "Rank": 1, + "Id": 779, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject" }, { - "Rank": 2, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "CommandName": "Get-PnPTenantSequence", - "Id": 780 + "Rank": 2, + "Id": 780, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" }, { - "Rank": 1, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "CommandName": "Get-PnPTenantSequenceSite", - "Id": 781 + "Rank": 1, + "Id": 781, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" }, { - "Rank": 2, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "CommandName": "Get-PnPTenantSequenceSite", - "Id": 782 + "Rank": 2, + "Id": 782, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" }, { - "Rank": 1, - "Command": "Get-PnPTenantSite", "CommandName": "Get-PnPTenantSite", - "Id": 783 + "Rank": 1, + "Id": 783, + "Command": "Get-PnPTenantSite" }, { - "Rank": 2, - "Command": "Get-PnPTenantSite -Detailed", "CommandName": "Get-PnPTenantSite", - "Id": 784 + "Rank": 2, + "Id": 784, + "Command": "Get-PnPTenantSite -Detailed" }, { - "Rank": 3, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "CommandName": "Get-PnPTenantSite", - "Id": 785 + "Rank": 3, + "Id": 785, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites" }, { - "Rank": 4, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "CommandName": "Get-PnPTenantSite", - "Id": 786 + "Rank": 4, + "Id": 786, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" }, { - "Rank": 5, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "CommandName": "Get-PnPTenantSite", - "Id": 787 + "Rank": 5, + "Id": 787, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" }, { - "Rank": 6, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "CommandName": "Get-PnPTenantSite", - "Id": 788 + "Rank": 6, + "Id": 788, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" }, { - "Rank": 7, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "CommandName": "Get-PnPTenantSite", - "Id": 789 + "Rank": 7, + "Id": 789, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" }, { - "Rank": 8, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "CommandName": "Get-PnPTenantSite", - "Id": 790 + "Rank": 8, + "Id": 790, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" }, { - "Rank": 9, - "Command": "Get-PnPTenantSite -GroupIdDefined $true", "CommandName": "Get-PnPTenantSite", - "Id": 791 + "Rank": 9, + "Id": 791, + "Command": "Get-PnPTenantSite -GroupIdDefined $true" }, { - "Rank": 1, - "Command": "Get-PnPTenantSyncClientRestriction", "CommandName": "Get-PnPTenantSyncClientRestriction", - "Id": 792 + "Rank": 1, + "Id": 792, + "Command": "Get-PnPTenantSyncClientRestriction" }, { - "Rank": 1, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "CommandName": "Get-PnPTenantTemplate", - "Id": 793 + "Rank": 1, + "Id": 793, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" }, { - "Rank": 2, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "CommandName": "Get-PnPTenantTemplate", - "Id": 794 + "Rank": 2, + "Id": 794, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" }, { - "Rank": 3, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "CommandName": "Get-PnPTenantTemplate", - "Id": 795 + "Rank": 3, + "Id": 795, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" }, { - "Rank": 1, - "Command": "Get-PnPTenantTheme", "CommandName": "Get-PnPTenantTheme", - "Id": 796 + "Rank": 1, + "Id": 796, + "Command": "Get-PnPTenantTheme" }, { - "Rank": 2, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "CommandName": "Get-PnPTenantTheme", - "Id": 797 + "Rank": 2, + "Id": 797, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Rank": 3, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "CommandName": "Get-PnPTenantTheme", - "Id": 798 + "Rank": 3, + "Id": 798, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" }, { - "Rank": 1, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Id": 799 + "Rank": 1, + "Id": 799, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 2, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Id": 800 + "Rank": 2, + "Id": 800, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 3, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTerm", - "Id": 801 + "Rank": 3, + "Id": 801, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 4, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "CommandName": "Get-PnPTerm", - "Id": 802 + "Rank": 4, + "Id": 802, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" }, { - "Rank": 5, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "CommandName": "Get-PnPTerm", - "Id": 803 + "Rank": 5, + "Id": 803, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" }, { - "Rank": 1, - "Command": "Get-PnPTermGroup", "CommandName": "Get-PnPTermGroup", - "Id": 804 + "Rank": 1, + "Id": 804, + "Command": "Get-PnPTermGroup" }, { - "Rank": 2, - "Command": "Get-PnPTermGroup -Identity \"Departments\"", "CommandName": "Get-PnPTermGroup", - "Id": 805 + "Rank": 2, + "Id": 805, + "Command": "Get-PnPTermGroup -Identity \"Departments\"" }, { - "Rank": 3, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "CommandName": "Get-PnPTermGroup", - "Id": 806 + "Rank": 3, + "Id": 806, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" }, { - "Rank": 1, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "CommandName": "Get-PnPTermLabel", - "Id": 807 + "Rank": 1, + "Id": 807, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" }, { - "Rank": 2, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "CommandName": "Get-PnPTermLabel", - "Id": 808 + "Rank": 2, + "Id": 808, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" }, { - "Rank": 3, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermLabel", - "Id": 809 + "Rank": 3, + "Id": 809, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 1, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermSet", - "Id": 810 + "Rank": 1, + "Id": 810, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" }, { - "Rank": 2, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Get-PnPTermSet", - "Id": 811 + "Rank": 2, + "Id": 811, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 3, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "CommandName": "Get-PnPTermSet", - "Id": 812 + "Rank": 3, + "Id": 812, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" }, { - "Rank": 1, - "Command": "Get-PnPTheme", "CommandName": "Get-PnPTheme", - "Id": 813 + "Rank": 1, + "Id": 813, + "Command": "Get-PnPTheme" }, { - "Rank": 2, - "Command": "Get-PnPTheme -DetectCurrentComposedLook", "CommandName": "Get-PnPTheme", - "Id": 814 + "Rank": 2, + "Id": 814, + "Command": "Get-PnPTheme -DetectCurrentComposedLook" }, { - "Rank": 1, - "Command": "Get-PnPTimeZoneId", "CommandName": "Get-PnPTimeZoneId", - "Id": 815 + "Rank": 1, + "Id": 815, + "Command": "Get-PnPTimeZoneId" }, { - "Rank": 2, - "Command": "Get-PnPTimeZoneId -Match Stockholm", "CommandName": "Get-PnPTimeZoneId", - "Id": 816 + "Rank": 2, + "Id": 816, + "Command": "Get-PnPTimeZoneId -Match Stockholm" }, { - "Rank": 1, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "CommandName": "Get-PnPUnfurlLink", - "Id": 817 + "Rank": 1, + "Id": 817, + "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)", "CommandName": "Get-PnPUnifiedAuditLog", - "Id": 818 + "Rank": 1, + "Id": 818, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" }, { - "Rank": 1, - "Command": "Get-PnPUPABulkImportStatus", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 819 + "Rank": 1, + "Id": 819, + "Command": "Get-PnPUPABulkImportStatus" }, { - "Rank": 2, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 820 + "Rank": 2, + "Id": 820, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" }, { - "Rank": 3, - "Command": "Get-PnPUPABulkImportStatus -JobId ", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 821 + "Rank": 3, + "Id": 821, + "Command": "Get-PnPUPABulkImportStatus -JobId " }, { - "Rank": 4, - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 822 + "Rank": 4, + "Id": 822, + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" }, { - "Rank": 1, - "Command": "Get-PnPUser", "CommandName": "Get-PnPUser", - "Id": 823 + "Rank": 1, + "Id": 823, + "Command": "Get-PnPUser" }, { - "Rank": 2, - "Command": "Get-PnPUser -Identity 23", "CommandName": "Get-PnPUser", - "Id": 824 + "Rank": 2, + "Id": 824, + "Command": "Get-PnPUser -Identity 23" }, { - "Rank": 3, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "CommandName": "Get-PnPUser", - "Id": 825 + "Rank": 3, + "Id": 825, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" }, { - "Rank": 4, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "CommandName": "Get-PnPUser", - "Id": 826 + "Rank": 4, + "Id": 826, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" }, { - "Rank": 5, - "Command": "Get-PnPUser -WithRightsAssigned", "CommandName": "Get-PnPUser", - "Id": 827 + "Rank": 5, + "Id": 827, + "Command": "Get-PnPUser -WithRightsAssigned" }, { - "Rank": 6, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "CommandName": "Get-PnPUser", - "Id": 828 + "Rank": 6, + "Id": 828, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" }, { - "Rank": 7, - "Command": "Get-PnPUser -WithRightsAssignedDetailed", "CommandName": "Get-PnPUser", - "Id": 829 + "Rank": 7, + "Id": 829, + "Command": "Get-PnPUser -WithRightsAssignedDetailed" }, { - "Rank": 1, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "CommandName": "Get-PnPUserOneDriveQuota", - "Id": 830 + "Rank": 1, + "Id": 830, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" }, { - "Rank": 1, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "CommandName": "Get-PnPUserProfileProperty", - "Id": 831 + "Rank": 1, + "Id": 831, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" }, { - "Rank": 2, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "CommandName": "Get-PnPUserProfileProperty", - "Id": 832 + "Rank": 2, + "Id": 832, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" }, { - "Rank": 3, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "CommandName": "Get-PnPUserProfileProperty", - "Id": 833 + "Rank": 3, + "Id": 833, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" }, { - "Rank": 1, - "Command": "Get-PnPView -List \"Demo List\"", "CommandName": "Get-PnPView", - "Id": 834 + "Rank": 1, + "Id": 834, + "Command": "Get-PnPView -List \"Demo List\"" }, { - "Rank": 2, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "CommandName": "Get-PnPView", - "Id": 835 + "Rank": 2, + "Id": 835, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" }, { - "Rank": 3, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "CommandName": "Get-PnPView", - "Id": 836 + "Rank": 3, + "Id": 836, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" }, { - "Rank": 1, - "Command": "Get-PnPVivaConnectionsDashboardACE", "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 837 + "Rank": 1, + "Id": 837, + "Command": "Get-PnPVivaConnectionsDashboardACE" }, { - "Rank": 2, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 838 + "Rank": 2, + "Id": 838, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Rank": 1, - "Command": "Get-PnPWeb", "CommandName": "Get-PnPWeb", - "Id": 839 + "Rank": 1, + "Id": 839, + "Command": "Get-PnPWeb" }, { - "Rank": 1, - "Command": "Get-PnPWebHeader", "CommandName": "Get-PnPWebHeader", - "Id": 840 + "Rank": 1, + "Id": 840, + "Command": "Get-PnPWebHeader" }, { - "Rank": 1, - "Command": "Get-PnPWebhookSubscriptions -List MyList", "CommandName": "Get-PnPWebhookSubscriptions", - "Id": 841 + "Rank": 1, + "Id": 841, + "Command": "Get-PnPWebhookSubscriptions -List MyList" }, { - "Rank": 1, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "CommandName": "Get-PnPWebPart", - "Id": 842 + "Rank": 1, + "Id": 842, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" }, { - "Rank": 2, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPWebPart", - "Id": 843 + "Rank": 2, + "Id": 843, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Rank": 1, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "CommandName": "Get-PnPWebPartProperty", - "Id": 844 + "Rank": 1, + "Id": 844, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" }, { - "Rank": 2, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "CommandName": "Get-PnPWebPartProperty", - "Id": 845 + "Rank": 2, + "Id": 845, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" }, { - "Rank": 1, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Get-PnPWebPartXml", - "Id": 846 + "Rank": 1, + "Id": 846, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Rank": 1, - "Command": "Get-PnPWebTemplates", "CommandName": "Get-PnPWebTemplates", - "Id": 847 + "Rank": 1, + "Id": 847, + "Command": "Get-PnPWebTemplates" }, { - "Rank": 2, - "Command": "Get-PnPWebTemplates -LCID 1033", "CommandName": "Get-PnPWebTemplates", - "Id": 848 + "Rank": 2, + "Id": 848, + "Command": "Get-PnPWebTemplates -LCID 1033" }, { - "Rank": 3, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "CommandName": "Get-PnPWebTemplates", - "Id": 849 + "Rank": 3, + "Id": 849, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" }, { - "Rank": 1, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "CommandName": "Get-PnPWikiPageContent", - "Id": 850 + "Rank": 1, + "Id": 850, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" }, { - "Rank": 1, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 851 + "Rank": 1, + "Id": 851, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" }, { - "Rank": 2, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 852 + "Rank": 2, + "Id": 852, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" }, { - "Rank": 1, - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Grant-PnPHubSiteRights", - "Id": 853 + "Rank": 1, + "Id": 853, + "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\"", "CommandName": "Grant-PnPSiteDesignRights", - "Id": 854 + "Rank": 1, + "Id": 854, + "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\"", "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Id": 855 + "Rank": 1, + "Id": 855, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Rank": 1, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "CommandName": "Import-PnPTaxonomy", - "Id": 856 + "Rank": 1, + "Id": 856, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" }, { - "Rank": 2, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "CommandName": "Import-PnPTaxonomy", - "Id": 857 + "Rank": 2, + "Id": 857, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" }, { - "Rank": 3, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "CommandName": "Import-PnPTaxonomy", - "Id": 858 + "Rank": 3, + "Id": 858, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" }, { - "Rank": 1, - "Command": "Import-PnPTermGroupFromXml -Xml $xml", "CommandName": "Import-PnPTermGroupFromXml", - "Id": 859 + "Rank": 1, + "Id": 859, + "Command": "Import-PnPTermGroupFromXml -Xml $xml" }, { - "Rank": 2, - "Command": "Import-PnPTermGroupFromXml -Path input.xml", "CommandName": "Import-PnPTermGroupFromXml", - "Id": 860 + "Rank": 2, + "Id": 860, + "Command": "Import-PnPTermGroupFromXml -Path input.xml" }, { - "Rank": 1, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "CommandName": "Import-PnPTermSet", - "Id": 861 + "Rank": 1, + "Id": 861, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" }, { - "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": 862 + "Rank": 2, + "Id": 862, + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" }, { - "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": 863 + "Rank": 3, + "Id": 863, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" }, { - "Rank": 1, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Install-PnPApp", - "Id": 864 + "Rank": 1, + "Id": 864, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Install-PnPApp", - "Id": 865 + "Rank": 2, + "Id": 865, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "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": 866 + "Rank": 1, + "Id": 866, + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" }, { - "Rank": 2, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "CommandName": "Invoke-PnPGraphMethod", - "Id": 867 + "Rank": 2, + "Id": 867, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" }, { - "Rank": 3, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "CommandName": "Invoke-PnPGraphMethod", - "Id": 868 + "Rank": 3, + "Id": 868, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" }, { - "Rank": 4, - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "CommandName": "Invoke-PnPGraphMethod", - "Id": 869 + "Rank": 4, + "Id": 869, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" }, { - "Rank": 5, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "CommandName": "Invoke-PnPGraphMethod", - "Id": 870 + "Rank": 5, + "Id": 870, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" }, { - "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": 871 + "Rank": 6, + "Id": 871, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" }, { - "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": 872 + "Rank": 7, + "Id": 872, + "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": 1, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Invoke-PnPListDesign", - "Id": 873 + "Rank": 1, + "Id": 873, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 2, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "CommandName": "Invoke-PnPListDesign", - "Id": 874 + "Rank": 2, + "Id": 874, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Rank": 1, - "Command": "Invoke-PnPQuery -RetryCount 5", "CommandName": "Invoke-PnPQuery", - "Id": 875 + "Rank": 1, + "Id": 875, + "Command": "Invoke-PnPQuery -RetryCount 5" }, { - "Rank": 1, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Invoke-PnPSiteDesign", - "Id": 876 + "Rank": 1, + "Id": 876, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 2, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "CommandName": "Invoke-PnPSiteDesign", - "Id": 877 + "Rank": 2, + "Id": 877, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Rank": 1, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "CommandName": "Invoke-PnPSiteScript", - "Id": 878 + "Rank": 1, + "Id": 878, + "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", "CommandName": "Invoke-PnPSiteSwap", - "Id": 879 + "Rank": 1, + "Id": 879, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "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": 880 + "Rank": 2, + "Id": 880, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "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": 881 + "Rank": 3, + "Id": 881, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection" }, { - "Rank": 1, - "Command": "Invoke-PnPSiteTemplate -Path template.xml", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 882 + "Rank": 1, + "Id": 882, + "Command": "Invoke-PnPSiteTemplate -Path template.xml" }, { - "Rank": 2, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 883 + "Rank": 2, + "Id": 883, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" }, { - "Rank": 3, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 884 + "Rank": 3, + "Id": 884, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Rank": 4, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 885 + "Rank": 4, + "Id": 885, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" }, { - "Rank": 5, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 886 + "Rank": 5, + "Id": 886, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp" }, { - "Rank": 6, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 887 + "Rank": 6, + "Id": 887, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" }, { - "Rank": 7, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 888 + "Rank": 7, + "Id": 888, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" }, { - "Rank": 8, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "CommandName": "Invoke-PnPSiteTemplate", - "Id": 889 + "Rank": 8, + "Id": 889, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" }, { - "Rank": 1, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "CommandName": "Invoke-PnPSPRestMethod", - "Id": 890 + "Rank": 1, + "Id": 890, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web" }, { - "Rank": 1, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "CommandName": "Invoke-PnPTenantTemplate", - "Id": 891 + "Rank": 1, + "Id": 891, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" }, { - "Rank": 2, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "CommandName": "Invoke-PnPTenantTemplate", - "Id": 892 + "Rank": 2, + "Id": 892, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" }, { - "Rank": 3, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "CommandName": "Invoke-PnPTenantTemplate", - "Id": 893 + "Rank": 3, + "Id": 893, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Rank": 1, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "CommandName": "Invoke-PnPWebAction", - "Id": 894 + "Rank": 1, + "Id": 894, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" }, { - "Rank": 2, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "CommandName": "Invoke-PnPWebAction", - "Id": 895 + "Rank": 2, + "Id": 895, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" }, { - "Rank": 1, - "Command": "Measure-PnPList \"Documents\"", "CommandName": "Measure-PnPList", - "Id": 896 + "Rank": 1, + "Id": 896, + "Command": "Measure-PnPList \"Documents\"" }, { - "Rank": 2, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "CommandName": "Measure-PnPList", - "Id": 897 + "Rank": 2, + "Id": 897, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" }, { - "Rank": 1, - "Command": "Measure-PnPWeb", "CommandName": "Measure-PnPWeb", - "Id": 898 + "Rank": 1, + "Id": 898, + "Command": "Measure-PnPWeb" }, { - "Rank": 2, - "Command": "Measure-PnPWeb $web -Recursive", "CommandName": "Measure-PnPWeb", - "Id": 899 + "Rank": 2, + "Id": 899, + "Command": "Measure-PnPWeb $web -Recursive" }, { - "Rank": 1, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "CommandName": "Move-PnPFile", - "Id": 900 + "Rank": 1, + "Id": 900, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" }, { - "Rank": 2, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "CommandName": "Move-PnPFile", - "Id": 901 + "Rank": 2, + "Id": 901, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" }, { - "Rank": 3, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "CommandName": "Move-PnPFile", - "Id": 902 + "Rank": 3, + "Id": 902, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Rank": 4, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "CommandName": "Move-PnPFile", - "Id": 903 + "Rank": 4, + "Id": 903, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Rank": 1, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "CommandName": "Move-PnPFolder", - "Id": 904 + "Rank": 1, + "Id": 904, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" }, { - "Rank": 2, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "CommandName": "Move-PnPFolder", - "Id": 905 + "Rank": 2, + "Id": 905, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" }, { - "Rank": 1, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "CommandName": "Move-PnPListItemToRecycleBin", - "Id": 906 + "Rank": 1, + "Id": 906, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" }, { - "Rank": 1, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "CommandName": "Move-PnPPageComponent", - "Id": 907 + "Rank": 1, + "Id": 907, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" }, { - "Rank": 2, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "CommandName": "Move-PnPPageComponent", - "Id": 908 + "Rank": 2, + "Id": 908, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" }, { - "Rank": 3, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "CommandName": "Move-PnPPageComponent", - "Id": 909 + "Rank": 3, + "Id": 909, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" }, { - "Rank": 4, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "CommandName": "Move-PnPPageComponent", - "Id": 910 + "Rank": 4, + "Id": 910, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" }, { - "Rank": 1, - "Command": "Move-PnPRecycleBinItem", "CommandName": "Move-PnpRecycleBinItem", - "Id": 911 + "Rank": 1, + "Id": 911, + "Command": "Move-PnPRecycleBinItem" }, { - "Rank": 2, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "CommandName": "Move-PnpRecycleBinItem", - "Id": 912 + "Rank": 2, + "Id": 912, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" }, { - "Rank": 3, - "Command": "Move-PnPRecycleBinItem -Force", "CommandName": "Move-PnpRecycleBinItem", - "Id": 913 + "Rank": 3, + "Id": 913, + "Command": "Move-PnPRecycleBinItem -Force" }, { - "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": 914 + "Rank": 1, + "Id": 914, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" }, { - "Rank": 2, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "CommandName": "Move-PnPTerm", - "Id": 915 + "Rank": 2, + "Id": 915, + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" }, { - "Rank": 3, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "CommandName": "Move-PnPTerm", - "Id": 916 + "Rank": 3, + "Id": 916, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" }, { - "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": 917 + "Rank": 1, + "Id": 917, + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" }, { - "Rank": 2, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "CommandName": "Move-PnPTermSet", - "Id": 918 + "Rank": 2, + "Id": 918, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" }, { - "Rank": 1, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "CommandName": "New-PnPAzureADGroup", - "Id": 919 + "Rank": 1, + "Id": 919, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Rank": 2, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "CommandName": "New-PnPAzureADGroup", - "Id": 920 + "Rank": 2, + "Id": 920, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" }, { - "Rank": 3, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "CommandName": "New-PnPAzureADGroup", - "Id": 921 + "Rank": 3, + "Id": 921, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" }, { - "Rank": 1, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 922 + "Rank": 1, + "Id": 922, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" }, { - "Rank": 2, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 923 + "Rank": 2, + "Id": 923, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" }, { - "Rank": 3, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 924 + "Rank": 3, + "Id": 924, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" }, { - "Rank": 1, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "CommandName": "New-PnPAzureCertificate", - "Id": 925 + "Rank": 1, + "Id": 925, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" }, { - "Rank": 2, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "CommandName": "New-PnPAzureCertificate", - "Id": 926 + "Rank": 2, + "Id": 926, + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" }, { - "Rank": 3, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "CommandName": "New-PnPAzureCertificate", - "Id": 927 + "Rank": 3, + "Id": 927, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" }, { - "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": 928 + "Rank": 1, + "Id": 928, + "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "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": 929 + "Rank": 2, + "Id": 929, + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Rank": 1, - "Command": "New-PnPGroup -Title \"My Site Users\"", "CommandName": "New-PnPGroup", - "Id": 930 + "Rank": 1, + "Id": 930, + "Command": "New-PnPGroup -Title \"My Site Users\"" }, { - "Rank": 1, - "Command": "New-PnPList -Title Announcements -Template Announcements", "CommandName": "New-PnPList", - "Id": 931 + "Rank": 1, + "Id": 931, + "Command": "New-PnPList -Title Announcements -Template Announcements" }, { - "Rank": 2, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "CommandName": "New-PnPList", - "Id": 932 + "Rank": 2, + "Id": 932, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" }, { - "Rank": 3, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "CommandName": "New-PnPList", - "Id": 933 + "Rank": 3, + "Id": 933, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" }, { - "Rank": 1, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "CommandName": "New-PnPMicrosoft365Group", - "Id": 934 + "Rank": 1, + "Id": 934, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Rank": 2, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "CommandName": "New-PnPMicrosoft365Group", - "Id": 935 + "Rank": 2, + "Id": 935, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" }, { - "Rank": 3, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "CommandName": "New-PnPMicrosoft365Group", - "Id": 936 + "Rank": 3, + "Id": 936, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" }, { - "Rank": 4, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "CommandName": "New-PnPMicrosoft365Group", - "Id": 937 + "Rank": 4, + "Id": 937, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" }, { - "Rank": 5, - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "CommandName": "New-PnPMicrosoft365Group", - "Id": 938 + "Rank": 5, + "Id": 938, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Rank": 6, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "CommandName": "New-PnPMicrosoft365Group", - "Id": 939 + "Rank": 6, + "Id": 939, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Rank": 7, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "CommandName": "New-PnPMicrosoft365Group", - "Id": 940 + "Rank": 7, + "Id": 940, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" }, { - "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": 941 + "Rank": 1, + "Id": 941, + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" }, { - "Rank": 2, - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "CommandName": "New-PnPMicrosoft365GroupSettings", - "Id": 942 + "Rank": 2, + "Id": 942, + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" }, { - "Rank": 1, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "CommandName": "New-PnPPersonalSite", - "Id": 943 + "Rank": 1, + "Id": 943, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" }, { - "Rank": 1, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "CommandName": "New-PnPPlannerPlan", - "Id": 944 + "Rank": 1, + "Id": 944, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" }, { - "Rank": 1, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "CommandName": "New-PnPSdnProvider", - "Id": 945 + "Rank": 1, + "Id": 945, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" }, { - "Rank": 1, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "CommandName": "New-PnPSite", - "Id": 946 + "Rank": 1, + "Id": 946, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Rank": 2, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "CommandName": "New-PnPSite", - "Id": 947 + "Rank": 2, + "Id": 947, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" }, { - "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": 948 + "Rank": 3, + "Id": 948, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Rank": 4, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "CommandName": "New-PnPSite", - "Id": 949 + "Rank": 4, + "Id": 949, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Rank": 5, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "CommandName": "New-PnPSite", - "Id": 950 + "Rank": 5, + "Id": 950, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Rank": 6, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Id": 951 + "Rank": 6, + "Id": 951, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Rank": 7, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "CommandName": "New-PnPSite", - "Id": 952 + "Rank": 7, + "Id": 952, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" }, { - "Rank": 8, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "CommandName": "New-PnPSite", - "Id": 953 + "Rank": 8, + "Id": 953, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" }, { - "Rank": 9, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Id": 954 + "Rank": 9, + "Id": 954, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" }, { - "Rank": 10, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "CommandName": "New-PnPSite", - "Id": 955 + "Rank": 10, + "Id": 955, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" }, { - "Rank": 11, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "CommandName": "New-PnPSite", - "Id": 956 + "Rank": 11, + "Id": 956, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -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", - "Id": 957 + "Rank": 12, + "Id": 957, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Rank": 13, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "CommandName": "New-PnPSite", - "Id": 958 + "Rank": 13, + "Id": 958, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Rank": 14, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "CommandName": "New-PnPSite", - "Id": 959 + "Rank": 14, + "Id": 959, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Rank": 15, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "CommandName": "New-PnPSite", - "Id": 960 + "Rank": 15, + "Id": 960, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Rank": 16, - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "CommandName": "New-PnPSite", - "Id": 961 + "Rank": 16, + "Id": 961, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" }, { - "Rank": 1, - "Command": "New-PnPSiteCollectionTermStore", "CommandName": "New-PnPSiteCollectionTermStore", - "Id": 962 + "Rank": 1, + "Id": 962, + "Command": "New-PnPSiteCollectionTermStore" }, { - "Rank": 1, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "CommandName": "New-PnPSiteGroup", - "Id": 963 + "Rank": 1, + "Id": 963, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" }, { - "Rank": 2, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "CommandName": "New-PnPSiteGroup", - "Id": 964 + "Rank": 2, + "Id": 964, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" }, { - "Rank": 1, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 965 + "Rank": 1, + "Id": 965, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" }, { - "Rank": 2, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 966 + "Rank": 2, + "Id": 966, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" }, { - "Rank": 3, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 967 + "Rank": 3, + "Id": 967, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" }, { - "Rank": 4, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 968 + "Rank": 4, + "Id": 968, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" }, { - "Rank": 5, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 969 + "Rank": 5, + "Id": 969, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" }, { - "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": 970 + "Rank": 6, + "Id": 970, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 7, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 971 + "Rank": 7, + "Id": 971, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" }, { - "Rank": 8, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 972 + "Rank": 8, + "Id": 972, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" }, { - "Rank": 1, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "CommandName": "New-PnPTeamsApp", - "Id": 973 + "Rank": 1, + "Id": 973, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" }, { - "Rank": 1, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "CommandName": "New-PnPTeamsTeam", - "Id": 974 + "Rank": 1, + "Id": 974, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" }, { - "Rank": 2, - "Command": "New-PnPTeamsTeam -GroupId $groupId", "CommandName": "New-PnPTeamsTeam", - "Id": 975 + "Rank": 2, + "Id": 975, + "Command": "New-PnPTeamsTeam -GroupId $groupId" }, { - "Rank": 3, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "CommandName": "New-PnPTeamsTeam", - "Id": 976 + "Rank": 3, + "Id": 976, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" }, { - "Rank": 4, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "CommandName": "New-PnPTeamsTeam", - "Id": 977 + "Rank": 4, + "Id": 977, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "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": 978 + "Rank": 5, + "Id": 978, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" }, { - "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": 979 + "Rank": 6, + "Id": 979, + "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": 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": 980 + "Rank": 1, + "Id": 980, + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Rank": 2, - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "CommandName": "New-PnPTenantSite", - "Id": 981 + "Rank": 2, + "Id": 981, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Rank": 1, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "CommandName": "New-PnPTerm", - "Id": 982 + "Rank": 1, + "Id": 982, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" }, { - "Rank": 2, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "New-PnPTerm", - "Id": 983 + "Rank": 2, + "Id": 983, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Rank": 1, - "Command": "New-PnPTermGroup -GroupName \"Countries\"", "CommandName": "New-PnPTermGroup", - "Id": 984 + "Rank": 1, + "Id": 984, + "Command": "New-PnPTermGroup -GroupName \"Countries\"" }, { - "Rank": 1, - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "CommandName": "New-PnPTermLabel", - "Id": 985 + "Rank": 1, + "Id": 985, + "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\"", "CommandName": "New-PnPTermSet", - "Id": 986 + "Rank": 1, + "Id": 986, + "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\"}", "CommandName": "New-PnPUPABulkImportJob", - "Id": 987 + "Rank": 1, + "Id": 987, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" }, { - "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": 988 + "Rank": 2, + "Id": 988, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" }, { - "Rank": 1, - "Command": "New-PnPUser -LoginName user@company.com", "CommandName": "New-PnPUser", - "Id": 989 + "Rank": 1, + "Id": 989, + "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\"", "CommandName": "New-PnPWeb", - "Id": 990 + "Rank": 1, + "Id": 990, + "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", "CommandName": "Publish-PnPApp", - "Id": 991 + "Rank": 1, + "Id": 991, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Rank": 2, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "CommandName": "Publish-PnPApp", - "Id": 992 + "Rank": 2, + "Id": 992, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" }, { - "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": 993 + "Rank": 1, + "Id": 993, + "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", "CommandName": "Publish-PnPContentType", - "Id": 994 + "Rank": 1, + "Id": 994, + "Command": "Publish-PnPContentType -ContentType 0x0101" }, { - "Rank": 1, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "CommandName": "Publish-PnPSyntexModel", - "Id": 995 + "Rank": 1, + "Id": 995, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "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": 996 + "Rank": 2, + "Id": 996, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Rank": 1, - "Command": "Read-PnPSiteTemplate -Path template.pnp", "CommandName": "Read-PnPSiteTemplate", - "Id": 997 + "Rank": 1, + "Id": 997, + "Command": "Read-PnPSiteTemplate -Path template.pnp" }, { - "Rank": 2, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "CommandName": "Read-PnPSiteTemplate", - "Id": 998 + "Rank": 2, + "Id": 998, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" }, { - "Rank": 3, - "Command": "Read-PnPSiteTemplate -Xml $xml", "CommandName": "Read-PnPSiteTemplate", - "Id": 999 + "Rank": 3, + "Id": 999, + "Command": "Read-PnPSiteTemplate -Xml $xml" }, { - "Rank": 1, - "Command": "Read-PnPTenantTemplate -Path template.pnp", "CommandName": "Read-PnPTenantTemplate", - "Id": 1000 + "Rank": 1, + "Id": 1000, + "Command": "Read-PnPTenantTemplate -Path template.pnp" }, { - "Rank": 1, - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "CommandName": "Register-PnPAppCatalogSite", - "Id": 1001 + "Rank": 1, + "Id": 1001, + "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\")", "CommandName": "Register-PnPAzureADApp", - "Id": 1002 + "Rank": 1, + "Id": 1002, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "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": 1003 + "Rank": 2, + "Id": 1003, + "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": 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": 1004 + "Rank": 3, + "Id": 1004, + "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": 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": 1005 + "Rank": 4, + "Id": 1005, + "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": 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": 1006 + "Rank": 5, + "Id": 1006, + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "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": 1007 + "Rank": 6, + "Id": 1007, + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "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": 1008 + "Rank": 7, + "Id": 1008, + "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": 1, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "CommandName": "Register-PnPHubSite", - "Id": 1009 + "Rank": 1, + "Id": 1009, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Rank": 2, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "CommandName": "Register-PnPHubSite", - "Id": 1010 + "Rank": 2, + "Id": 1010, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" }, { - "Rank": 1, - "Command": "Register-PnPManagementShellAccess", "CommandName": "Register-PnPManagementShellAccess", - "Id": 1011 + "Rank": 1, + "Id": 1011, + "Command": "Register-PnPManagementShellAccess" }, { - "Rank": 2, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "CommandName": "Register-PnPManagementShellAccess", - "Id": 1012 + "Rank": 2, + "Id": 1012, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" }, { - "Rank": 3, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "CommandName": "Register-PnPManagementShellAccess", - "Id": 1013 + "Rank": 3, + "Id": 1013, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" }, { - "Rank": 1, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1014 + "Rank": 1, + "Id": 1014, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" }, { - "Rank": 2, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 1015 + "Rank": 2, + "Id": 1015, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" }, { - "Rank": 1, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "CommandName": "Remove-PnPAlert", - "Id": 1016 + "Rank": 1, + "Id": 1016, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" }, { - "Rank": 2, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAlert", - "Id": 1017 + "Rank": 2, + "Id": 1017, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Rank": 1, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Remove-PnPApp", - "Id": 1018 + "Rank": 1, + "Id": 1018, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Remove-PnPApp", - "Id": 1019 + "Rank": 2, + "Id": 1019, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Rank": 1, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1020 + "Rank": 1, + "Id": 1020, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Rank": 2, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 1021 + "Rank": 2, + "Id": 1021, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Rank": 1, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1022 + "Rank": 1, + "Id": 1022, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" }, { - "Rank": 2, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 1023 + "Rank": 2, + "Id": 1023, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Rank": 1, - "Command": "Remove-PnPAzureADApp -Identity MyApp", "CommandName": "Remove-PnPAzureADApp", - "Id": 1024 + "Rank": 1, + "Id": 1024, + "Command": "Remove-PnPAzureADApp -Identity MyApp" }, { - "Rank": 2, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "CommandName": "Remove-PnPAzureADApp", - "Id": 1025 + "Rank": 2, + "Id": 1025, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Rank": 1, - "Command": "Remove-PnPAzureADGroup -Identity $groupId", "CommandName": "Remove-PnPAzureADGroup", - "Id": 1026 + "Rank": 1, + "Id": 1026, + "Command": "Remove-PnPAzureADGroup -Identity $groupId" }, { - "Rank": 2, - "Command": "Remove-PnPAzureADGroup -Identity $group", "CommandName": "Remove-PnPAzureADGroup", - "Id": 1027 + "Rank": 2, + "Id": 1027, + "Command": "Remove-PnPAzureADGroup -Identity $group" }, { - "Rank": 1, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPAzureADGroupMember", - "Id": 1028 + "Rank": 1, + "Id": 1028, + "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\"", "CommandName": "Remove-PnPAzureADGroupOwner", - "Id": 1029 + "Rank": 1, + "Id": 1029, + "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\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1030 + "Rank": 1, + "Id": 1030, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" }, { - "Rank": 2, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1031 + "Rank": 2, + "Id": 1031, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" }, { - "Rank": 3, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1032 + "Rank": 3, + "Id": 1032, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Rank": 4, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1033 + "Rank": 4, + "Id": 1033, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Rank": 1, - "Command": "Remove-PnPContentType -Identity \"Project Document\"", "CommandName": "Remove-PnPContentType", - "Id": 1034 + "Rank": 1, + "Id": 1034, + "Command": "Remove-PnPContentType -Identity \"Project Document\"" }, { - "Rank": 2, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "CommandName": "Remove-PnPContentType", - "Id": 1035 + "Rank": 2, + "Id": 1035, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" }, { - "Rank": 1, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1036 + "Rank": 1, + "Id": 1036, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Rank": 2, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1037 + "Rank": 2, + "Id": 1037, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Rank": 1, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "CommandName": "Remove-PnPContentTypeFromList", - "Id": 1038 + "Rank": 1, + "Id": 1038, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" }, { - "Rank": 1, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Remove-PnPCustomAction", - "Id": 1039 + "Rank": 1, + "Id": 1039, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Rank": 2, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "CommandName": "Remove-PnPCustomAction", - "Id": 1040 + "Rank": 2, + "Id": 1040, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Rank": 3, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "CommandName": "Remove-PnPCustomAction", - "Id": 1041 + "Rank": 3, + "Id": 1041, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" }, { - "Rank": 1, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Id": 1042 + "Rank": 1, + "Id": 1042, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Rank": 1, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Remove-PnPEventReceiver", - "Id": 1043 + "Rank": 1, + "Id": 1043, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Rank": 2, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "CommandName": "Remove-PnPEventReceiver", - "Id": 1044 + "Rank": 2, + "Id": 1044, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Rank": 3, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "CommandName": "Remove-PnPEventReceiver", - "Id": 1045 + "Rank": 3, + "Id": 1045, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" }, { - "Rank": 4, - "Command": "Remove-PnPEventReceiver -List ProjectList", "CommandName": "Remove-PnPEventReceiver", - "Id": 1046 + "Rank": 4, + "Id": 1046, + "Command": "Remove-PnPEventReceiver -List ProjectList" }, { - "Rank": 5, - "Command": "Remove-PnPEventReceiver", "CommandName": "Remove-PnPEventReceiver", - "Id": 1047 + "Rank": 5, + "Id": 1047, + "Command": "Remove-PnPEventReceiver" }, { - "Rank": 6, - "Command": "Remove-PnPEventReceiver -Scope Site", "CommandName": "Remove-PnPEventReceiver", - "Id": 1048 + "Rank": 6, + "Id": 1048, + "Command": "Remove-PnPEventReceiver -Scope Site" }, { - "Rank": 7, - "Command": "Remove-PnPEventReceiver -Scope Web", "CommandName": "Remove-PnPEventReceiver", - "Id": 1049 + "Rank": 7, + "Id": 1049, + "Command": "Remove-PnPEventReceiver -Scope Web" }, { - "Rank": 8, - "Command": "Remove-PnPEventReceiver -Scope All", "CommandName": "Remove-PnPEventReceiver", - "Id": 1050 + "Rank": 8, + "Id": 1050, + "Command": "Remove-PnPEventReceiver -Scope All" }, { - "Rank": 1, - "Command": "Remove-PnPField -Identity \"Speakers\"", "CommandName": "Remove-PnPField", - "Id": 1051 + "Rank": 1, + "Id": 1051, + "Command": "Remove-PnPField -Identity \"Speakers\"" }, { - "Rank": 2, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "CommandName": "Remove-PnPField", - "Id": 1052 + "Rank": 2, + "Id": 1052, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Rank": 1, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1053 + "Rank": 1, + "Id": 1053, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Rank": 2, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1054 + "Rank": 2, + "Id": 1054, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" }, { - "Rank": 1, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "CommandName": "Remove-PnPFile", - "Id": 1055 + "Rank": 1, + "Id": 1055, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" }, { - "Rank": 2, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "CommandName": "Remove-PnPFile", - "Id": 1056 + "Rank": 2, + "Id": 1056, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" }, { - "Rank": 3, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "CommandName": "Remove-PnPFile", - "Id": 1057 + "Rank": 3, + "Id": 1057, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" }, { - "Rank": 1, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "CommandName": "Remove-PnPFileFromSiteTemplate", - "Id": 1058 + "Rank": 1, + "Id": 1058, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" }, { - "Rank": 1, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "CommandName": "Remove-PnPFileSharingLink", - "Id": 1059 + "Rank": 1, + "Id": 1059, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Rank": 2, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "CommandName": "Remove-PnPFileSharingLink", - "Id": 1060 + "Rank": 2, + "Id": 1060, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" }, { - "Rank": 1, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "CommandName": "Remove-PnPFileVersion", - "Id": 1061 + "Rank": 1, + "Id": 1061, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Rank": 2, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "CommandName": "Remove-PnPFileVersion", - "Id": 1062 + "Rank": 2, + "Id": 1062, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Rank": 3, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "CommandName": "Remove-PnPFileVersion", - "Id": 1063 + "Rank": 3, + "Id": 1063, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" }, { - "Rank": 1, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "CommandName": "Remove-PnPFlowOwner", - "Id": 1064 + "Rank": 1, + "Id": 1064, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" }, { - "Rank": 2, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "CommandName": "Remove-PnPFlowOwner", - "Id": 1065 + "Rank": 2, + "Id": 1065, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" }, { - "Rank": 3, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "CommandName": "Remove-PnPFlowOwner", - "Id": 1066 + "Rank": 3, + "Id": 1066, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" }, { - "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": 1067 + "Rank": 4, + "Id": 1067, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" }, { - "Rank": 1, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "CommandName": "Remove-PnPFolder", - "Id": 1068 + "Rank": 1, + "Id": 1068, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Rank": 2, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "CommandName": "Remove-PnPFolder", - "Id": 1069 + "Rank": 2, + "Id": 1069, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" }, { - "Rank": 1, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1070 + "Rank": 1, + "Id": 1070, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Rank": 2, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1071 + "Rank": 2, + "Id": 1071, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" }, { - "Rank": 1, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "CommandName": "Remove-PnPGraphSubscription", - "Id": 1072 + "Rank": 1, + "Id": 1072, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" }, { - "Rank": 1, - "Command": "Remove-PnPGroup -Identity \"My Users\"", "CommandName": "Remove-PnPGroup", - "Id": 1073 + "Rank": 1, + "Id": 1073, + "Command": "Remove-PnPGroup -Identity \"My Users\"" }, { - "Rank": 1, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "CommandName": "Remove-PnPGroupMember", - "Id": 1074 + "Rank": 1, + "Id": 1074, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Rank": 1, - "Command": "Remove-PnPHomeSite", "CommandName": "Remove-PnPHomeSite", - "Id": 1075 + "Rank": 1, + "Id": 1075, + "Command": "Remove-PnPHomeSite" }, { - "Rank": 1, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "CommandName": "Remove-PnPHubSiteAssociation", - "Id": 1076 + "Rank": 1, + "Id": 1076, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Rank": 1, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1077 + "Rank": 1, + "Id": 1077, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" }, { - "Rank": 2, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1078 + "Rank": 2, + "Id": 1078, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" }, { - "Rank": 1, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "CommandName": "Remove-PnPIndexedProperty", - "Id": 1079 + "Rank": 1, + "Id": 1079, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" }, { - "Rank": 1, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1080 + "Rank": 1, + "Id": 1080, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery" }, { - "Rank": 2, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1081 + "Rank": 2, + "Id": 1081, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" }, { - "Rank": 3, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1082 + "Rank": 3, + "Id": 1082, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" }, { - "Rank": 4, - "Command": "Remove-PnPJavaScriptLink -Scope Site", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1083 + "Rank": 4, + "Id": 1083, + "Command": "Remove-PnPJavaScriptLink -Scope Site" }, { - "Rank": 5, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1084 + "Rank": 5, + "Id": 1084, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" }, { - "Rank": 1, - "Command": "Remove-PnPKnowledgeHubSite", "CommandName": "Remove-PnPKnowledgeHubSite", - "Id": 1085 + "Rank": 1, + "Id": 1085, + "Command": "Remove-PnPKnowledgeHubSite" }, { - "Rank": 1, - "Command": "Remove-PnPList -Identity Announcements", "CommandName": "Remove-PnPList", - "Id": 1086 + "Rank": 1, + "Id": 1086, + "Command": "Remove-PnPList -Identity Announcements" }, { - "Rank": 2, - "Command": "Remove-PnPList -Identity Announcements -Force", "CommandName": "Remove-PnPList", - "Id": 1087 + "Rank": 2, + "Id": 1087, + "Command": "Remove-PnPList -Identity Announcements -Force" }, { - "Rank": 3, - "Command": "Remove-PnPList -Identity Announcements -Recycle", "CommandName": "Remove-PnPList", - "Id": 1088 + "Rank": 3, + "Id": 1088, + "Command": "Remove-PnPList -Identity Announcements -Recycle" }, { - "Rank": 4, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "CommandName": "Remove-PnPList", - "Id": 1089 + "Rank": 4, + "Id": 1089, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" }, { - "Rank": 1, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPListDesign", - "Id": 1090 + "Rank": 1, + "Id": 1090, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 1, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "CommandName": "Remove-PnPListItem", - "Id": 1091 + "Rank": 1, + "Id": 1091, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" }, { - "Rank": 2, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "CommandName": "Remove-PnPListItem", - "Id": 1092 + "Rank": 2, + "Id": 1092, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" }, { - "Rank": 3, - "Command": "Remove-PnPListItem -List \"Demo List\"", "CommandName": "Remove-PnPListItem", - "Id": 1093 + "Rank": 3, + "Id": 1093, + "Command": "Remove-PnPListItem -List \"Demo List\"" }, { - "Rank": 1, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1094 + "Rank": 1, + "Id": 1094, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" }, { - "Rank": 2, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1095 + "Rank": 2, + "Id": 1095, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" }, { - "Rank": 3, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1096 + "Rank": 3, + "Id": 1096, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" }, { - "Rank": 4, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1097 + "Rank": 4, + "Id": 1097, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" }, { - "Rank": 5, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "CommandName": "Remove-PnPListItemAttachment", - "Id": 1098 + "Rank": 5, + "Id": 1098, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" }, { - "Rank": 1, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "CommandName": "Remove-PnPListItemVersion", - "Id": 1099 + "Rank": 1, + "Id": 1099, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Rank": 2, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "CommandName": "Remove-PnPListItemVersion", - "Id": 1100 + "Rank": 2, + "Id": 1100, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1101 + "Rank": 1, + "Id": 1101, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" }, { - "Rank": 2, - "Command": "Remove-PnPMicrosoft365Group -Identity $group", "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1102 + "Rank": 2, + "Id": 1102, + "Command": "Remove-PnPMicrosoft365Group -Identity $group" }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Id": 1103 + "Rank": 1, + "Id": 1103, + "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\"", "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Id": 1104 + "Rank": 1, + "Id": 1104, + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1105 + "Rank": 1, + "Id": 1105, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" }, { - "Rank": 2, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1106 + "Rank": 2, + "Id": 1106, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" }, { - "Rank": 1, - "Command": "Remove-PnPNavigationNode -Identity 1032", "CommandName": "Remove-PnPNavigationNode", - "Id": 1107 + "Rank": 1, + "Id": 1107, + "Command": "Remove-PnPNavigationNode -Identity 1032" }, { - "Rank": 2, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "CommandName": "Remove-PnPNavigationNode", - "Id": 1108 + "Rank": 2, + "Id": 1108, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" }, { - "Rank": 3, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "CommandName": "Remove-PnPNavigationNode", - "Id": 1109 + "Rank": 3, + "Id": 1109, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" }, { - "Rank": 1, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1110 + "Rank": 1, + "Id": 1110, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" }, { - "Rank": 2, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1111 + "Rank": 2, + "Id": 1111, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" }, { - "Rank": 3, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1112 + "Rank": 3, + "Id": 1112, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" }, { - "Rank": 1, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "CommandName": "Remove-PnPOrgNewsSite", - "Id": 1113 + "Rank": 1, + "Id": 1113, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Rank": 1, - "Command": "Remove-PnPPage -Identity \"MyPage\"", "CommandName": "Remove-PnPPage", - "Id": 1114 + "Rank": 1, + "Id": 1114, + "Command": "Remove-PnPPage -Identity \"MyPage\"" }, { - "Rank": 2, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "CommandName": "Remove-PnPPage", - "Id": 1115 + "Rank": 2, + "Id": 1115, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" }, { - "Rank": 3, - "Command": "Remove-PnPPage $page", "CommandName": "Remove-PnPPage", - "Id": 1116 + "Rank": 3, + "Id": 1116, + "Command": "Remove-PnPPage $page" }, { - "Rank": 4, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "CommandName": "Remove-PnPPage", - "Id": 1117 + "Rank": 4, + "Id": 1117, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" }, { - "Rank": 1, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "CommandName": "Remove-PnPPageComponent", - "Id": 1118 + "Rank": 1, + "Id": 1118, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Rank": 1, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "CommandName": "Remove-PnPPlannerBucket", - "Id": 1119 + "Rank": 1, + "Id": 1119, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" }, { - "Rank": 1, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "CommandName": "Remove-PnPPlannerPlan", - "Id": 1120 + "Rank": 1, + "Id": 1120, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" }, { - "Rank": 1, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "CommandName": "Remove-PnPPlannerRoster", - "Id": 1121 + "Rank": 1, + "Id": 1121, + "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\"", "CommandName": "Remove-PnPPlannerRosterMember", - "Id": 1122 + "Rank": 1, + "Id": 1122, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Rank": 1, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "CommandName": "Remove-PnPPlannerTask", - "Id": 1123 + "Rank": 1, + "Id": 1123, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" }, { - "Rank": 1, - "Command": "Remove-PnPPropertyBagValue -Key MyKey", "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1124 + "Rank": 1, + "Id": 1124, + "Command": "Remove-PnPPropertyBagValue -Key MyKey" }, { - "Rank": 2, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1125 + "Rank": 2, + "Id": 1125, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" }, { - "Rank": 3, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1126 + "Rank": 3, + "Id": 1126, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" }, { - "Rank": 1, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "CommandName": "Remove-PnPPublishingImageRendition", - "Id": 1127 + "Rank": 1, + "Id": 1127, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Rank": 1, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "CommandName": "Remove-PnPRoleDefinition", - "Id": 1128 + "Rank": 1, + "Id": 1128, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" }, { - "Rank": 1, - "Command": "Remove-PnPSdnProvider -Confirm:false", "CommandName": "Remove-PnPSdnProvider", - "Id": 1129 + "Rank": 1, + "Id": 1129, + "Command": "Remove-PnPSdnProvider -Confirm:false" }, { - "Rank": 1, - "Command": "Remove-PnPSearchConfiguration -Configuration $config", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1130 + "Rank": 1, + "Id": 1130, + "Command": "Remove-PnPSearchConfiguration -Configuration $config" }, { - "Rank": 2, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1131 + "Rank": 2, + "Id": 1131, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Rank": 3, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1132 + "Rank": 3, + "Id": 1132, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Rank": 4, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1133 + "Rank": 4, + "Id": 1133, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Rank": 1, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1134 + "Rank": 1, + "Id": 1134, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Rank": 2, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1135 + "Rank": 2, + "Id": 1135, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Rank": 1, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Id": 1136 + "Rank": 1, + "Id": 1136, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "Rank": 1, - "Command": "Remove-PnPSiteCollectionTermStore", "CommandName": "Remove-PnPSiteCollectionTermStore", - "Id": 1137 + "Rank": 1, + "Id": 1137, + "Command": "Remove-PnPSiteCollectionTermStore" }, { - "Rank": 1, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteDesign", - "Id": 1138 + "Rank": 1, + "Id": 1138, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 1, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteDesignTask", - "Id": 1139 + "Rank": 1, + "Id": 1139, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Rank": 1, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Remove-PnPSiteGroup", - "Id": 1140 + "Rank": 1, + "Id": 1140, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Rank": 2, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "CommandName": "Remove-PnPSiteGroup", - "Id": 1141 + "Rank": 2, + "Id": 1141, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" }, { - "Rank": 1, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "CommandName": "Remove-PnPSiteScript", - "Id": 1142 + "Rank": 1, + "Id": 1142, + "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", "CommandName": "Remove-PnPSiteUserInvitations", - "Id": 1143 + "Rank": 1, + "Id": 1143, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Rank": 1, - "Command": "Remove-PnPStorageEntity -Key MyKey", "CommandName": "Remove-PnPStorageEntity", - "Id": 1144 + "Rank": 1, + "Id": 1144, + "Command": "Remove-PnPStorageEntity -Key MyKey" }, { - "Rank": 2, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "CommandName": "Remove-PnPStorageEntity", - "Id": 1145 + "Rank": 2, + "Id": 1145, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Rank": 1, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "CommandName": "Remove-PnPStoredCredential", - "Id": 1146 + "Rank": 1, + "Id": 1146, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" }, { - "Rank": 1, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1147 + "Rank": 1, + "Id": 1147, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" }, { - "Rank": 2, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1148 + "Rank": 2, + "Id": 1148, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "CommandName": "Remove-PnPTeamsApp", - "Id": 1149 + "Rank": 1, + "Id": 1149, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" }, { - "Rank": 2, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "CommandName": "Remove-PnPTeamsApp", - "Id": 1150 + "Rank": 2, + "Id": 1150, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "CommandName": "Remove-PnPTeamsChannel", - "Id": 1151 + "Rank": 1, + "Id": 1151, + "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==", "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1152 + "Rank": 1, + "Id": 1152, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" }, { - "Rank": 2, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1153 + "Rank": 2, + "Id": 1153, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Rank": 3, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1154 + "Rank": 3, + "Id": 1154, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "CommandName": "Remove-PnPTeamsTab", - "Id": 1155 + "Rank": 1, + "Id": 1155, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" }, { - "Rank": 2, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "CommandName": "Remove-PnPTeamsTab", - "Id": 1156 + "Rank": 2, + "Id": 1156, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" }, { - "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": 1157 + "Rank": 3, + "Id": 1157, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "CommandName": "Remove-PnPTeamsTag", - "Id": 1158 + "Rank": 1, + "Id": 1158, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "CommandName": "Remove-PnPTeamsTeam", - "Id": 1159 + "Rank": 1, + "Id": 1159, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Rank": 2, - "Command": "Remove-PnPTeamsTeam -Identity testteam", "CommandName": "Remove-PnPTeamsTeam", - "Id": 1160 + "Rank": 2, + "Id": 1160, + "Command": "Remove-PnPTeamsTeam -Identity testteam" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "CommandName": "Remove-PnPTeamsUser", - "Id": 1161 + "Rank": 1, + "Id": 1161, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" }, { - "Rank": 2, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "CommandName": "Remove-PnPTeamsUser", - "Id": 1162 + "Rank": 2, + "Id": 1162, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Rank": 1, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "CommandName": "Remove-PnPTenantCdnOrigin", - "Id": 1163 + "Rank": 1, + "Id": 1163, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Rank": 1, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1164 + "Rank": 1, + "Id": 1164, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 2, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1165 + "Rank": 2, + "Id": 1165, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Rank": 1, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Remove-PnPTenantSite", - "Id": 1166 + "Rank": 1, + "Id": 1166, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 2, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "CommandName": "Remove-PnPTenantSite", - "Id": 1167 + "Rank": 2, + "Id": 1167, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" }, { - "Rank": 3, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "CommandName": "Remove-PnPTenantSite", - "Id": 1168 + "Rank": 3, + "Id": 1168, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" }, { - "Rank": 1, - "Command": "Remove-PnPTenantSyncClientRestriction", "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Id": 1169 + "Rank": 1, + "Id": 1169, + "Command": "Remove-PnPTenantSyncClientRestriction" }, { - "Rank": 1, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "CommandName": "Remove-PnPTenantTheme", - "Id": 1170 + "Rank": 1, + "Id": 1170, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Rank": 1, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "CommandName": "Remove-PnPTerm", - "Id": 1171 + "Rank": 1, + "Id": 1171, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Rank": 2, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Remove-PnPTerm", - "Id": 1172 + "Rank": 2, + "Id": 1172, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 1, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "CommandName": "Remove-PnPTermGroup", - "Id": 1173 + "Rank": 1, + "Id": 1173, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Rank": 2, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "CommandName": "Remove-PnPTermGroup", - "Id": 1174 + "Rank": 2, + "Id": 1174, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" }, { - "Rank": 3, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "CommandName": "Remove-PnPTermGroup", - "Id": 1175 + "Rank": 3, + "Id": 1175, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" }, { - "Rank": 1, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "CommandName": "Remove-PnPTermLabel", - "Id": 1176 + "Rank": 1, + "Id": 1176, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" }, { - "Rank": 2, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "CommandName": "Remove-PnPTermLabel", - "Id": 1177 + "Rank": 2, + "Id": 1177, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Rank": 1, - "Command": "Remove-PnPUser -Identity 23", "CommandName": "Remove-PnPUser", - "Id": 1178 + "Rank": 1, + "Id": 1178, + "Command": "Remove-PnPUser -Identity 23" }, { - "Rank": 2, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "CommandName": "Remove-PnPUser", - "Id": 1179 + "Rank": 2, + "Id": 1179, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" }, { - "Rank": 3, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "CommandName": "Remove-PnPUser", - "Id": 1180 + "Rank": 3, + "Id": 1180, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" }, { - "Rank": 1, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "CommandName": "Remove-PnPUserInfo", - "Id": 1181 + "Rank": 1, + "Id": 1181, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Rank": 1, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "CommandName": "Remove-PnPUserProfile", - "Id": 1182 + "Rank": 1, + "Id": 1182, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com" }, { - "Rank": 1, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "CommandName": "Remove-PnPView", - "Id": 1183 + "Rank": 1, + "Id": 1183, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" }, { - "Rank": 1, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Id": 1184 + "Rank": 1, + "Id": 1184, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Rank": 1, - "Command": "Remove-PnPWeb -Identity projectA", "CommandName": "Remove-PnPWeb", - "Id": 1185 + "Rank": 1, + "Id": 1185, + "Command": "Remove-PnPWeb -Identity projectA" }, { - "Rank": 2, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "CommandName": "Remove-PnPWeb", - "Id": 1186 + "Rank": 2, + "Id": 1186, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" }, { - "Rank": 1, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "CommandName": "Remove-PnPWebhookSubscription", - "Id": 1187 + "Rank": 1, + "Id": 1187, + "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", "CommandName": "Remove-PnPWebPart", - "Id": 1188 + "Rank": 1, + "Id": 1188, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Rank": 2, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "CommandName": "Remove-PnPWebPart", - "Id": 1189 + "Rank": 2, + "Id": 1189, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" }, { - "Rank": 1, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "CommandName": "Remove-PnPWikiPage", - "Id": 1190 + "Rank": 1, + "Id": 1190, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" }, { - "Rank": 1, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "CommandName": "Rename-PnPFile", - "Id": 1191 + "Rank": 1, + "Id": 1191, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" }, { - "Rank": 2, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "CommandName": "Rename-PnPFile", - "Id": 1192 + "Rank": 2, + "Id": 1192, + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" }, { - "Rank": 3, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "CommandName": "Rename-PnPFile", - "Id": 1193 + "Rank": 3, + "Id": 1193, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" }, { - "Rank": 1, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "CommandName": "Rename-PnPFolder", - "Id": 1194 + "Rank": 1, + "Id": 1194, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" }, { - "Rank": 1, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Repair-PnPSite", - "Id": 1195 + "Rank": 1, + "Id": 1195, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Rank": 2, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "CommandName": "Repair-PnPSite", - "Id": 1196 + "Rank": 2, + "Id": 1196, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Rank": 1, - "Command": "Request-PnPAccessToken", "CommandName": "Request-PnPAccessToken", - "Id": 1197 + "Rank": 1, + "Id": 1197, + "Command": "Request-PnPAccessToken" }, { - "Rank": 2, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "CommandName": "Request-PnPAccessToken", - "Id": 1198 + "Rank": 2, + "Id": 1198, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" }, { - "Rank": 3, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "CommandName": "Request-PnPAccessToken", - "Id": 1199 + "Rank": 3, + "Id": 1199, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" }, { - "Rank": 4, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "CommandName": "Request-PnPAccessToken", - "Id": 1200 + "Rank": 4, + "Id": 1200, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" }, { - "Rank": 1, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "CommandName": "Request-PnPPersonalSite", - "Id": 1201 + "Rank": 1, + "Id": 1201, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" }, { - "Rank": 2, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "CommandName": "Request-PnPPersonalSite", - "Id": 1202 + "Rank": 2, + "Id": 1202, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" }, { - "Rank": 1, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "CommandName": "Request-PnPReIndexList", - "Id": 1203 + "Rank": 1, + "Id": 1203, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"" }, { - "Rank": 1, - "Command": "Request-PnPReIndexWeb", "CommandName": "Request-PnPReIndexWeb", - "Id": 1204 + "Rank": 1, + "Id": 1204, + "Command": "Request-PnPReIndexWeb" }, { - "Rank": 1, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1205 + "Rank": 1, + "Id": 1205, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" }, { - "Rank": 2, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1206 + "Rank": 2, + "Id": 1206, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" }, { - "Rank": 3, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1207 + "Rank": 3, + "Id": 1207, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" }, { - "Rank": 1, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "CommandName": "Reset-PnPFileVersion", - "Id": 1208 + "Rank": 1, + "Id": 1208, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" }, { - "Rank": 2, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "CommandName": "Reset-PnPFileVersion", - "Id": 1209 + "Rank": 2, + "Id": 1209, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" }, { - "Rank": 1, - "Command": "Reset-PnPLabel -List \"Demo List\"", "CommandName": "Reset-PnPLabel", - "Id": 1210 + "Rank": 1, + "Id": 1210, + "Command": "Reset-PnPLabel -List \"Demo List\"" }, { - "Rank": 2, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "CommandName": "Reset-PnPLabel", - "Id": 1211 + "Rank": 2, + "Id": 1211, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" }, { - "Rank": 1, - "Command": "Reset-PnPMicrosoft365GroupExpiration", "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1212 + "Rank": 1, + "Id": 1212, + "Command": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Rank": 1, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Id": 1213 + "Rank": 1, + "Id": 1213, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" }, { - "Rank": 1, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "CommandName": "Resolve-PnPFolder", - "Id": 1214 + "Rank": 1, + "Id": 1214, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" }, { - "Rank": 1, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Id": 1215 + "Rank": 1, + "Id": 1215, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Rank": 1, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "CommandName": "Restore-PnPFileVersion", - "Id": 1216 + "Rank": 1, + "Id": 1216, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Rank": 2, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "CommandName": "Restore-PnPFileVersion", - "Id": 1217 + "Rank": 2, + "Id": 1217, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" }, { - "Rank": 3, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "CommandName": "Restore-PnPFileVersion", - "Id": 1218 + "Rank": 3, + "Id": 1218, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Rank": 1, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "CommandName": "Restore-PnPListItemVersion", - "Id": 1219 + "Rank": 1, + "Id": 1219, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Rank": 2, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "CommandName": "Restore-PnPListItemVersion", - "Id": 1220 + "Rank": 2, + "Id": 1220, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Rank": 1, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "CommandName": "Restore-PnPRecycleBinItem", - "Id": 1221 + "Rank": 1, + "Id": 1221, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Rank": 1, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1222 + "Rank": 1, + "Id": 1222, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 2, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1223 + "Rank": 2, + "Id": 1223, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "Rank": 1, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "CommandName": "Restore-PnPTenantSite", - "Id": 1224 + "Rank": 1, + "Id": 1224, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Rank": 2, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "CommandName": "Restore-PnPTenantSite", - "Id": 1225 + "Rank": 2, + "Id": 1225, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Rank": 3, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "CommandName": "Restore-PnPTenantSite", - "Id": 1226 + "Rank": 3, + "Id": 1226, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" }, { - "Rank": 1, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Id": 1227 + "Rank": 1, + "Id": 1227, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" }, { - "Rank": 1, - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "CommandName": "Revoke-PnPHubSiteRights", - "Id": 1228 + "Rank": 1, + "Id": 1228, + "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\"", "CommandName": "Revoke-PnPSiteDesignRights", - "Id": 1229 + "Rank": 1, + "Id": 1229, + "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\"", "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Id": 1230 + "Rank": 1, + "Id": 1230, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Rank": 1, - "Command": "Revoke-PnPUserSession -User user1@contoso.com", "CommandName": "Revoke-PnPUserSession", - "Id": 1231 + "Rank": 1, + "Id": 1231, + "Command": "Revoke-PnPUserSession -User user1@contoso.com" }, { - "Rank": 1, - "Command": "Save-PnPPageConversionLog", "CommandName": "Save-PnPPageConversionLog", - "Id": 1232 + "Rank": 1, + "Id": 1232, + "Command": "Save-PnPPageConversionLog" }, { - "Rank": 1, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "CommandName": "Save-PnPSiteTemplate", - "Id": 1233 + "Rank": 1, + "Id": 1233, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" }, { - "Rank": 1, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "CommandName": "Save-PnPTenantTemplate", - "Id": 1234 + "Rank": 1, + "Id": 1234, + "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\"", "CommandName": "Send-PnPMail", - "Id": 1235 + "Rank": 1, + "Id": 1235, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "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": 1236 + "Rank": 2, + "Id": 1236, + "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": 3, - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "CommandName": "Send-PnPMail", - "Id": 1237 + "Rank": 3, + "Id": 1237, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "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": 1238 + "Rank": 4, + "Id": 1238, + "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": 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": 1239 + "Rank": 5, + "Id": 1239, + "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": 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": 1240 + "Rank": 6, + "Id": 1240, + "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": 1, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "CommandName": "Set-PnPAdaptiveScopeProperty", - "Id": 1241 + "Rank": 1, + "Id": 1241, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" }, { - "Rank": 1, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1242 + "Rank": 1, + "Id": 1242, + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "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": 1243 + "Rank": 2, + "Id": 1243, + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" }, { - "Rank": 1, - "Command": "Set-PnPAppSideLoading -On", "CommandName": "Set-PnPAppSideLoading", - "Id": 1244 + "Rank": 1, + "Id": 1244, + "Command": "Set-PnPAppSideLoading -On" }, { - "Rank": 2, - "Command": "Set-PnPAppSideLoading -Off", "CommandName": "Set-PnPAppSideLoading", - "Id": 1245 + "Rank": 2, + "Id": 1245, + "Command": "Set-PnPAppSideLoading -Off" }, { - "Rank": 1, - "Command": "Set-PnPAuditing -EnableAll", "CommandName": "Set-PnPAuditing", - "Id": 1246 + "Rank": 1, + "Id": 1246, + "Command": "Set-PnPAuditing -EnableAll" }, { - "Rank": 2, - "Command": "Set-PnPAuditing -DisableAll", "CommandName": "Set-PnPAuditing", - "Id": 1247 + "Rank": 2, + "Id": 1247, + "Command": "Set-PnPAuditing -DisableAll" }, { - "Rank": 3, - "Command": "Set-PnPAuditing -RetentionTime 7", "CommandName": "Set-PnPAuditing", - "Id": 1248 + "Rank": 3, + "Id": 1248, + "Command": "Set-PnPAuditing -RetentionTime 7" }, { - "Rank": 4, - "Command": "Set-PnPAuditing -TrimAuditLog", "CommandName": "Set-PnPAuditing", - "Id": 1249 + "Rank": 4, + "Id": 1249, + "Command": "Set-PnPAuditing -TrimAuditLog" }, { - "Rank": 5, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "CommandName": "Set-PnPAuditing", - "Id": 1250 + "Rank": 5, + "Id": 1250, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" }, { - "Rank": 1, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "CommandName": "Set-PnPAvailablePageLayouts", - "Id": 1251 + "Rank": 1, + "Id": 1251, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" }, { - "Rank": 1, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1252 + "Rank": 1, + "Id": 1252, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" }, { - "Rank": 2, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1253 + "Rank": 2, + "Id": 1253, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" }, { - "Rank": 1, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPAzureADGroup", - "Id": 1254 + "Rank": 1, + "Id": 1254, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" }, { - "Rank": 2, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPAzureADGroup", - "Id": 1255 + "Rank": 2, + "Id": 1255, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Rank": 3, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "CommandName": "Set-PnPAzureADGroup", - "Id": 1256 + "Rank": 3, + "Id": 1256, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" }, { - "Rank": 1, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1257 + "Rank": 1, + "Id": 1257, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" }, { - "Rank": 2, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1258 + "Rank": 2, + "Id": 1258, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" }, { - "Rank": 3, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1259 + "Rank": 3, + "Id": 1259, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" }, { - "Rank": 1, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1260 + "Rank": 1, + "Id": 1260, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" }, { - "Rank": 2, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1261 + "Rank": 2, + "Id": 1261, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" }, { - "Rank": 1, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1262 + "Rank": 1, + "Id": 1262, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" }, { - "Rank": 2, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1263 + "Rank": 2, + "Id": 1263, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" }, { - "Rank": 3, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1264 + "Rank": 3, + "Id": 1264, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" }, { - "Rank": 4, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1265 + "Rank": 4, + "Id": 1265, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" }, { - "Rank": 1, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "CommandName": "Set-PnPContentType", - "Id": 1266 + "Rank": 1, + "Id": 1266, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Rank": 2, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "CommandName": "Set-PnPContentType", - "Id": 1267 + "Rank": 2, + "Id": 1267, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" }, { - "Rank": 3, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "CommandName": "Set-PnPContentType", - "Id": 1268 + "Rank": 3, + "Id": 1268, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Rank": 4, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "CommandName": "Set-PnPContentType", - "Id": 1269 + "Rank": 4, + "Id": 1269, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Rank": 5, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "CommandName": "Set-PnPContentType", - "Id": 1270 + "Rank": 5, + "Id": 1270, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Rank": 1, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1271 + "Rank": 1, + "Id": 1271, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" }, { - "Rank": 2, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1272 + "Rank": 2, + "Id": 1272, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" }, { - "Rank": 3, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1273 + "Rank": 3, + "Id": 1273, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" }, { - "Rank": 4, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1274 + "Rank": 4, + "Id": 1274, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" }, { - "Rank": 1, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "CommandName": "Set-PnPDefaultContentTypeToList", - "Id": 1275 + "Rank": 1, + "Id": 1275, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" }, { - "Rank": 1, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1276 + "Rank": 1, + "Id": 1276, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" }, { - "Rank": 2, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1277 + "Rank": 2, + "Id": 1277, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" }, { - "Rank": 3, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1278 + "Rank": 3, + "Id": 1278, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" }, { - "Rank": 1, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1279 + "Rank": 1, + "Id": 1279, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" }, { - "Rank": 2, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1280 + "Rank": 2, + "Id": 1280, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Rank": 3, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1281 + "Rank": 3, + "Id": 1281, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Rank": 1, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "CommandName": "Set-PnPDocumentSetField", - "Id": 1282 + "Rank": 1, + "Id": 1282, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" }, { - "Rank": 2, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "CommandName": "Set-PnPDocumentSetField", - "Id": 1283 + "Rank": 2, + "Id": 1283, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" }, { - "Rank": 1, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "CommandName": "Set-PnPField", - "Id": 1284 + "Rank": 1, + "Id": 1284, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" }, { - "Rank": 2, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "CommandName": "Set-PnPField", - "Id": 1285 + "Rank": 2, + "Id": 1285, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" }, { - "Rank": 3, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "CommandName": "Set-PnPField", - "Id": 1286 + "Rank": 3, + "Id": 1286, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" }, { - "Rank": 1, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "CommandName": "Set-PnPFileCheckedIn", - "Id": 1287 + "Rank": 1, + "Id": 1287, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" }, { - "Rank": 2, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "CommandName": "Set-PnPFileCheckedIn", - "Id": 1288 + "Rank": 2, + "Id": 1288, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" }, { - "Rank": 1, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "CommandName": "Set-PnPFileCheckedOut", - "Id": 1289 + "Rank": 1, + "Id": 1289, + "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'", "CommandName": "Set-PnPFolderPermission", - "Id": 1290 + "Rank": 1, + "Id": 1290, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Rank": 2, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPFolderPermission", - "Id": 1291 + "Rank": 2, + "Id": 1291, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Rank": 3, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "CommandName": "Set-PnPFolderPermission", - "Id": 1292 + "Rank": 3, + "Id": 1292, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Rank": 1, - "Command": "Set-PnPFooter -Enabled:$true", "CommandName": "Set-PnPFooter", - "Id": 1293 + "Rank": 1, + "Id": 1293, + "Command": "Set-PnPFooter -Enabled:$true" }, { - "Rank": 2, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "CommandName": "Set-PnPFooter", - "Id": 1294 + "Rank": 2, + "Id": 1294, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" }, { - "Rank": 3, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "CommandName": "Set-PnPFooter", - "Id": 1295 + "Rank": 3, + "Id": 1295, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" }, { - "Rank": 4, - "Command": "Set-PnPFooter -LogoUrl \"\"", "CommandName": "Set-PnPFooter", - "Id": 1296 + "Rank": 4, + "Id": 1296, + "Command": "Set-PnPFooter -LogoUrl \"\"" }, { - "Rank": 1, - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "CommandName": "Set-PnPGraphSubscription", - "Id": 1297 + "Rank": 1, + "Id": 1297, + "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", "CommandName": "Set-PnPGroup", - "Id": 1298 + "Rank": 1, + "Id": 1298, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" }, { - "Rank": 2, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "CommandName": "Set-PnPGroup", - "Id": 1299 + "Rank": 2, + "Id": 1299, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" }, { - "Rank": 1, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "CommandName": "Set-PnPGroupPermissions", - "Id": 1300 + "Rank": 1, + "Id": 1300, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" }, { - "Rank": 2, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "CommandName": "Set-PnPGroupPermissions", - "Id": 1301 + "Rank": 2, + "Id": 1301, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" }, { - "Rank": 3, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "CommandName": "Set-PnPGroupPermissions", - "Id": 1302 + "Rank": 3, + "Id": 1302, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" }, { - "Rank": 4, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "CommandName": "Set-PnPGroupPermissions", - "Id": 1303 + "Rank": 4, + "Id": 1303, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" }, { - "Rank": 5, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "CommandName": "Set-PnPGroupPermissions", - "Id": 1304 + "Rank": 5, + "Id": 1304, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" }, { - "Rank": 1, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1305 + "Rank": 1, + "Id": 1305, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" }, { - "Rank": 2, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1306 + "Rank": 2, + "Id": 1306, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" }, { - "Rank": 1, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "CommandName": "Set-PnPHomePage", - "Id": 1307 + "Rank": 1, + "Id": 1307, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" }, { - "Rank": 2, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "CommandName": "Set-PnPHomePage", - "Id": 1308 + "Rank": 2, + "Id": 1308, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" }, { - "Rank": 1, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "CommandName": "Set-PnPHomeSite", - "Id": 1309 + "Rank": 1, + "Id": 1309, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" }, { - "Rank": 2, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "CommandName": "Set-PnPHomeSite", - "Id": 1310 + "Rank": 2, + "Id": 1310, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" }, { - "Rank": 1, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "CommandName": "Set-PnPHubSite", - "Id": 1311 + "Rank": 1, + "Id": 1311, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" }, { - "Rank": 2, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "CommandName": "Set-PnPHubSite", - "Id": 1312 + "Rank": 2, + "Id": 1312, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" }, { - "Rank": 3, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "CommandName": "Set-PnPHubSite", - "Id": 1313 + "Rank": 3, + "Id": 1313, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" }, { - "Rank": 4, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "CommandName": "Set-PnPHubSite", - "Id": 1314 + "Rank": 4, + "Id": 1314, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" }, { - "Rank": 5, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "CommandName": "Set-PnPHubSite", - "Id": 1315 + "Rank": 5, + "Id": 1315, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" }, { - "Rank": 6, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "CommandName": "Set-PnPHubSite", - "Id": 1316 + "Rank": 6, + "Id": 1316, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" }, { - "Rank": 1, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "CommandName": "Set-PnPImageListItemColumn", - "Id": 1317 + "Rank": 1, + "Id": 1317, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" }, { - "Rank": 2, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "CommandName": "Set-PnPImageListItemColumn", - "Id": 1318 + "Rank": 2, + "Id": 1318, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" }, { - "Rank": 1, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "CommandName": "Set-PnPIndexedProperties", - "Id": 1319 + "Rank": 1, + "Id": 1319, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" }, { - "Rank": 1, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1320 + "Rank": 1, + "Id": 1320, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" }, { - "Rank": 2, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1321 + "Rank": 2, + "Id": 1321, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" }, { - "Rank": 1, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "CommandName": "Set-PnPKnowledgeHubSite", - "Id": 1322 + "Rank": 1, + "Id": 1322, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" }, { - "Rank": 1, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "CommandName": "Set-PnPLabel", - "Id": 1323 + "Rank": 1, + "Id": 1323, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" }, { - "Rank": 2, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "CommandName": "Set-PnPLabel", - "Id": 1324 + "Rank": 2, + "Id": 1324, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" }, { - "Rank": 1, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "CommandName": "Set-PnPList", - "Id": 1325 + "Rank": 1, + "Id": 1325, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" }, { - "Rank": 2, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "CommandName": "Set-PnPList", - "Id": 1326 + "Rank": 2, + "Id": 1326, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" }, { - "Rank": 3, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "CommandName": "Set-PnPList", - "Id": 1327 + "Rank": 3, + "Id": 1327, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" }, { - "Rank": 4, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "CommandName": "Set-PnPList", - "Id": 1328 + "Rank": 4, + "Id": 1328, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" }, { - "Rank": 5, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "CommandName": "Set-PnPList", - "Id": 1329 + "Rank": 5, + "Id": 1329, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" }, { - "Rank": 6, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "CommandName": "Set-PnPList", - "Id": 1330 + "Rank": 6, + "Id": 1330, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" }, { - "Rank": 7, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "CommandName": "Set-PnPList", - "Id": 1331 + "Rank": 7, + "Id": 1331, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" }, { - "Rank": 8, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "CommandName": "Set-PnPList", - "Id": 1332 + "Rank": 8, + "Id": 1332, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" }, { - "Rank": 9, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "CommandName": "Set-PnPList", - "Id": 1333 + "Rank": 9, + "Id": 1333, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" }, { - "Rank": 10, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "CommandName": "Set-PnPList", - "Id": 1334 + "Rank": 10, + "Id": 1334, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" }, { - "Rank": 11, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "CommandName": "Set-PnPList", - "Id": 1335 + "Rank": 11, + "Id": 1335, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" }, { - "Rank": 1, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1336 + "Rank": 1, + "Id": 1336, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" }, { - "Rank": 2, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1337 + "Rank": 2, + "Id": 1337, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" }, { - "Rank": 1, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Id": 1338 + "Rank": 1, + "Id": 1338, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 2, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Id": 1339 + "Rank": 2, + "Id": 1339, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 3, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "CommandName": "Set-PnPListItem", - "Id": 1340 + "Rank": 3, + "Id": 1340, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Rank": 4, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "CommandName": "Set-PnPListItem", - "Id": 1341 + "Rank": 4, + "Id": 1341, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" }, { - "Rank": 5, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "CommandName": "Set-PnPListItem", - "Id": 1342 + "Rank": 5, + "Id": 1342, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" }, { - "Rank": 1, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "CommandName": "Set-PnPListItemAsRecord", - "Id": 1343 + "Rank": 1, + "Id": 1343, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Rank": 2, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "CommandName": "Set-PnPListItemAsRecord", - "Id": 1344 + "Rank": 2, + "Id": 1344, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" }, { - "Rank": 1, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPListItemPermission", - "Id": 1345 + "Rank": 1, + "Id": 1345, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Rank": 2, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPListItemPermission", - "Id": 1346 + "Rank": 2, + "Id": 1346, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Rank": 3, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "CommandName": "Set-PnPListItemPermission", - "Id": 1347 + "Rank": 3, + "Id": 1347, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Rank": 4, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "CommandName": "Set-PnPListItemPermission", - "Id": 1348 + "Rank": 4, + "Id": 1348, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" }, { - "Rank": 5, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "CommandName": "Set-PnPListItemPermission", - "Id": 1349 + "Rank": 5, + "Id": 1349, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" }, { - "Rank": 1, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "CommandName": "Set-PnPListPermission", - "Id": 1350 + "Rank": 1, + "Id": 1350, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Rank": 2, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "CommandName": "Set-PnPListPermission", - "Id": 1351 + "Rank": 2, + "Id": 1351, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Rank": 1, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1352 + "Rank": 1, + "Id": 1352, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" }, { - "Rank": 2, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1353 + "Rank": 2, + "Id": 1353, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" }, { - "Rank": 1, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1354 + "Rank": 1, + "Id": 1354, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Rank": 2, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1355 + "Rank": 2, + "Id": 1355, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Rank": 3, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1356 + "Rank": 3, + "Id": 1356, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Rank": 4, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "CommandName": "Set-PnPMasterPage", - "Id": 1357 + "Rank": 4, + "Id": 1357, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1358 + "Rank": 1, + "Id": 1358, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1359 + "Rank": 2, + "Id": 1359, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1360 + "Rank": 3, + "Id": 1360, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1361 + "Rank": 1, + "Id": 1361, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1362 + "Rank": 2, + "Id": 1362, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1363 + "Rank": 3, + "Id": 1363, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1364 + "Rank": 1, + "Id": 1364, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1365 + "Rank": 2, + "Id": 1365, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1366 + "Rank": 3, + "Id": 1366, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1367 + "Rank": 1, + "Id": 1367, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1368 + "Rank": 2, + "Id": 1368, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1369 + "Rank": 3, + "Id": 1369, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1370 + "Rank": 1, + "Id": 1370, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1371 + "Rank": 2, + "Id": 1371, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsRead", "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1372 + "Rank": 3, + "Id": 1372, + "Command": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1373 + "Rank": 1, + "Id": 1373, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1374 + "Rank": 2, + "Id": 1374, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1375 + "Rank": 3, + "Id": 1375, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Rank": 1, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1376 + "Rank": 1, + "Id": 1376, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" }, { - "Rank": 2, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1377 + "Rank": 2, + "Id": 1377, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Rank": 3, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1378 + "Rank": 3, + "Id": 1378, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" }, { - "Rank": 4, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1379 + "Rank": 4, + "Id": 1379, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" }, { - "Rank": 5, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1380 + "Rank": 5, + "Id": 1380, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" }, { - "Rank": 6, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1381 + "Rank": 6, + "Id": 1381, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Rank": 1, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1382 + "Rank": 1, + "Id": 1382, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" }, { - "Rank": 2, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1383 + "Rank": 2, + "Id": 1383, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" }, { - "Rank": 1, - "Command": "Set-PnPMinimalDownloadStrategy -Off", "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1384 + "Rank": 1, + "Id": 1384, + "Command": "Set-PnPMinimalDownloadStrategy -Off" }, { - "Rank": 2, - "Command": "Set-PnPMinimalDownloadStrategy -On", "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1385 + "Rank": 2, + "Id": 1385, + "Command": "Set-PnPMinimalDownloadStrategy -On" }, { - "Rank": 1, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "CommandName": "Set-PnPPage", - "Id": 1386 + "Rank": 1, + "Id": 1386, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" }, { - "Rank": 2, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "CommandName": "Set-PnPPage", - "Id": 1387 + "Rank": 2, + "Id": 1387, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" }, { - "Rank": 3, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "CommandName": "Set-PnPPage", - "Id": 1388 + "Rank": 3, + "Id": 1388, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" }, { - "Rank": 4, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "CommandName": "Set-PnPPage", - "Id": 1389 + "Rank": 4, + "Id": 1389, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" }, { - "Rank": 5, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "CommandName": "Set-PnPPage", - "Id": 1390 + "Rank": 5, + "Id": 1390, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" }, { - "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": 1391 + "Rank": 6, + "Id": 1391, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" }, { - "Rank": 7, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "CommandName": "Set-PnPPage", - "Id": 1392 + "Rank": 7, + "Id": 1392, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Rank": 8, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", "CommandName": "Set-PnPPage", - "Id": 1393 + "Rank": 8, + "Id": 1393, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" }, { - "Rank": 9, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", "CommandName": "Set-PnPPage", - "Id": 1394 + "Rank": 9, + "Id": 1394, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Rank": 10, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", "CommandName": "Set-PnPPage", - "Id": 1395 + "Rank": 10, + "Id": 1395, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Rank": 11, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", "CommandName": "Set-PnPPage", - "Id": 1396 + "Rank": 11, + "Id": 1396, + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" }, { - "Rank": 1, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "CommandName": "Set-PnPPageTextPart", - "Id": 1397 + "Rank": 1, + "Id": 1397, + "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`\"\"", "CommandName": "Set-PnPPageWebPart", - "Id": 1398 + "Rank": 1, + "Id": 1398, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" }, { - "Rank": 2, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "CommandName": "Set-PnPPageWebPart", - "Id": 1399 + "Rank": 2, + "Id": 1399, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" }, { - "Rank": 1, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "CommandName": "Set-PnPPlannerBucket", - "Id": 1400 + "Rank": 1, + "Id": 1400, + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" }, { - "Rank": 1, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1401 + "Rank": 1, + "Id": 1401, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" }, { - "Rank": 2, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1402 + "Rank": 2, + "Id": 1402, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" }, { - "Rank": 1, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "CommandName": "Set-PnPPlannerPlan", - "Id": 1403 + "Rank": 1, + "Id": 1403, + "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", "CommandName": "Set-PnPPlannerTask", - "Id": 1404 + "Rank": 1, + "Id": 1404, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" }, { - "Rank": 2, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "CommandName": "Set-PnPPlannerTask", - "Id": 1405 + "Rank": 2, + "Id": 1405, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" }, { - "Rank": 3, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "CommandName": "Set-PnPPlannerTask", - "Id": 1406 + "Rank": 3, + "Id": 1406, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "Rank": 1, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPPlannerUserPolicy", - "Id": 1407 + "Rank": 1, + "Id": 1407, + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Rank": 1, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "CommandName": "Set-PnPPropertyBagValue", - "Id": 1408 + "Rank": 1, + "Id": 1408, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" }, { - "Rank": 2, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "CommandName": "Set-PnPPropertyBagValue", - "Id": 1409 + "Rank": 2, + "Id": 1409, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" }, { - "Rank": 3, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "CommandName": "Set-PnPPropertyBagValue", - "Id": 1410 + "Rank": 3, + "Id": 1410, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" }, { - "Rank": 1, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1411 + "Rank": 1, + "Id": 1411, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" }, { - "Rank": 2, - "Command": "Set-PnPRequestAccessEmails -Disabled", "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1412 + "Rank": 2, + "Id": 1412, + "Command": "Set-PnPRequestAccessEmails -Disabled" }, { - "Rank": 3, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1413 + "Rank": 3, + "Id": 1413, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false" }, { - "Rank": 1, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "CommandName": "Set-PnPRoleDefinition", - "Id": 1414 + "Rank": 1, + "Id": 1414, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" }, { - "Rank": 2, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "CommandName": "Set-PnPRoleDefinition", - "Id": 1415 + "Rank": 2, + "Id": 1415, + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" }, { - "Rank": 3, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "CommandName": "Set-PnPRoleDefinition", - "Id": 1416 + "Rank": 3, + "Id": 1416, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" }, { - "Rank": 4, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "CommandName": "Set-PnPRoleDefinition", - "Id": 1417 + "Rank": 4, + "Id": 1417, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" }, { - "Rank": 1, - "Command": "Set-PnPSearchConfiguration -Configuration $config", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1418 + "Rank": 1, + "Id": 1418, + "Command": "Set-PnPSearchConfiguration -Configuration $config" }, { - "Rank": 2, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1419 + "Rank": 2, + "Id": 1419, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Rank": 3, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1420 + "Rank": 3, + "Id": 1420, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Rank": 4, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "CommandName": "Set-PnPSearchConfiguration", - "Id": 1421 + "Rank": 4, + "Id": 1421, + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "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": 1422 + "Rank": 1, + "Id": 1422, + "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": 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": 1423 + "Rank": 2, + "Id": 1423, + "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": 1, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "CommandName": "Set-PnPSearchSettings", - "Id": 1424 + "Rank": 1, + "Id": 1424, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" }, { - "Rank": 2, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "CommandName": "Set-PnPSearchSettings", - "Id": 1425 + "Rank": 2, + "Id": 1425, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" }, { - "Rank": 3, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "CommandName": "Set-PnPSearchSettings", - "Id": 1426 + "Rank": 3, + "Id": 1426, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" }, { - "Rank": 4, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "CommandName": "Set-PnPSearchSettings", - "Id": 1427 + "Rank": 4, + "Id": 1427, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" }, { - "Rank": 5, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "CommandName": "Set-PnPSearchSettings", - "Id": 1428 + "Rank": 5, + "Id": 1428, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" }, { - "Rank": 6, - "Command": "Set-PnPSearchSettings -SearchScope Tenant", "CommandName": "Set-PnPSearchSettings", - "Id": 1429 + "Rank": 6, + "Id": 1429, + "Command": "Set-PnPSearchSettings -SearchScope Tenant" }, { - "Rank": 7, - "Command": "Set-PnPSearchSettings -SearchScope Hub", "CommandName": "Set-PnPSearchSettings", - "Id": 1430 + "Rank": 7, + "Id": 1430, + "Command": "Set-PnPSearchSettings -SearchScope Hub" }, { - "Rank": 1, - "Command": "Set-PnPSite -Classification \"HBI\"", "CommandName": "Set-PnPSite", - "Id": 1431 + "Rank": 1, + "Id": 1431, + "Command": "Set-PnPSite -Classification \"HBI\"" }, { - "Rank": 2, - "Command": "Set-PnPSite -Classification $null", "CommandName": "Set-PnPSite", - "Id": 1432 + "Rank": 2, + "Id": 1432, + "Command": "Set-PnPSite -Classification $null" }, { - "Rank": 3, - "Command": "Set-PnPSite -DisableFlows", "CommandName": "Set-PnPSite", - "Id": 1433 + "Rank": 3, + "Id": 1433, + "Command": "Set-PnPSite -DisableFlows" }, { - "Rank": 4, - "Command": "Set-PnPSite -DisableFlows:$false", "CommandName": "Set-PnPSite", - "Id": 1434 + "Rank": 4, + "Id": 1434, + "Command": "Set-PnPSite -DisableFlows:$false" }, { - "Rank": 5, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "CommandName": "Set-PnPSite", - "Id": 1435 + "Rank": 5, + "Id": 1435, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" }, { - "Rank": 6, - "Command": "Set-PnPSite -NoScriptSite $false", "CommandName": "Set-PnPSite", - "Id": 1436 + "Rank": 6, + "Id": 1436, + "Command": "Set-PnPSite -NoScriptSite $false" }, { - "Rank": 7, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", "CommandName": "Set-PnPSite", - "Id": 1437 + "Rank": 7, + "Id": 1437, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" }, { - "Rank": 8, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", "CommandName": "Set-PnPSite", - "Id": 1438 + "Rank": 8, + "Id": 1438, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" }, { - "Rank": 9, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", "CommandName": "Set-PnPSite", - "Id": 1439 + "Rank": 9, + "Id": 1439, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" }, { - "Rank": 10, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", "CommandName": "Set-PnPSite", - "Id": 1440 + "Rank": 10, + "Id": 1440, + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" }, { - "Rank": 11, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Id": 1441 + "Rank": 11, + "Id": 1441, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" }, { - "Rank": 12, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Id": 1442 + "Rank": 12, + "Id": 1442, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" }, { - "Rank": 13, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", "CommandName": "Set-PnPSite", - "Id": 1443 + "Rank": 13, + "Id": 1443, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" }, { - "Rank": 14, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1444 + "Rank": 14, + "Id": 1444, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" }, { - "Rank": 15, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1445 + "Rank": 15, + "Id": 1445, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" }, { - "Rank": 16, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1446 + "Rank": 16, + "Id": 1446, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" }, { - "Rank": 17, - "Command": "Set-PnPSite -CancelVPForExistingLibs", "CommandName": "Set-PnPSite", - "Id": 1447 + "Rank": 17, + "Id": 1447, + "Command": "Set-PnPSite -CancelVPForExistingLibs" }, { - "Rank": 1, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "CommandName": "Set-PnPSiteClassification", - "Id": 1448 + "Rank": 1, + "Id": 1448, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"" }, { - "Rank": 1, - "Command": "Set-PnPSiteClosure -State Open", "CommandName": "Set-PnPSiteClosure", - "Id": 1449 + "Rank": 1, + "Id": 1449, + "Command": "Set-PnPSiteClosure -State Open" }, { - "Rank": 2, - "Command": "Set-PnPSiteClosure -State Closed", "CommandName": "Set-PnPSiteClosure", - "Id": 1450 + "Rank": 2, + "Id": 1450, + "Command": "Set-PnPSiteClosure -State Closed" }, { - "Rank": 1, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "CommandName": "Set-PnPSiteDesign", - "Id": 1451 + "Rank": 1, + "Id": 1451, + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" }, { - "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": 1452 + "Rank": 2, + "Id": 1452, + "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": 1, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "CommandName": "Set-PnPSiteGroup", - "Id": 1453 + "Rank": 1, + "Id": 1453, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" }, { - "Rank": 2, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "CommandName": "Set-PnPSiteGroup", - "Id": 1454 + "Rank": 2, + "Id": 1454, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" }, { - "Rank": 1, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "CommandName": "Set-PnPSitePolicy", - "Id": 1455 + "Rank": 1, + "Id": 1455, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Rank": 1, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "CommandName": "Set-PnPSiteScript", - "Id": 1456 + "Rank": 1, + "Id": 1456, + "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\"", "CommandName": "Set-PnPSiteScriptPackage", - "Id": 1457 + "Rank": 1, + "Id": 1457, + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Rank": 1, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1458 + "Rank": 1, + "Id": 1458, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" }, { - "Rank": 2, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1459 + "Rank": 2, + "Id": 1459, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" }, { - "Rank": 1, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1460 + "Rank": 1, + "Id": 1460, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" }, { - "Rank": 2, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1461 + "Rank": 2, + "Id": 1461, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" }, { - "Rank": 3, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1462 + "Rank": 3, + "Id": 1462, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Rank": 4, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1463 + "Rank": 4, + "Id": 1463, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Rank": 5, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1464 + "Rank": 5, + "Id": 1464, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Rank": 6, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1465 + "Rank": 6, + "Id": 1465, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Rank": 1, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "CommandName": "Set-PnPStorageEntity", - "Id": 1466 + "Rank": 1, + "Id": 1466, + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Rank": 2, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "CommandName": "Set-PnPStorageEntity", - "Id": 1467 + "Rank": 2, + "Id": 1467, + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Rank": 1, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1468 + "Rank": 1, + "Id": 1468, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Rank": 2, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1469 + "Rank": 2, + "Id": 1469, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Rank": 1, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1470 + "Rank": 1, + "Id": 1470, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Rank": 2, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1471 + "Rank": 2, + "Id": 1471, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Rank": 1, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1472 + "Rank": 1, + "Id": 1472, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" }, { - "Rank": 2, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1473 + "Rank": 2, + "Id": 1473, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" }, { - "Rank": 1, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1474 + "Rank": 1, + "Id": 1474, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" }, { - "Rank": 2, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1475 + "Rank": 2, + "Id": 1475, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" }, { - "Rank": 3, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1476 + "Rank": 3, + "Id": 1476, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" }, { - "Rank": 1, - "Command": "Set-PnPTeamifyPromptHidden", "CommandName": "Set-PnPTeamifyPromptHidden", - "Id": 1477 + "Rank": 1, + "Id": 1477, + "Command": "Set-PnPTeamifyPromptHidden" }, { - "Rank": 1, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "CommandName": "Set-PnPTeamsChannel", - "Id": 1478 + "Rank": 1, + "Id": 1478, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" }, { - "Rank": 2, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "CommandName": "Set-PnPTeamsChannel", - "Id": 1479 + "Rank": 2, + "Id": 1479, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" }, { - "Rank": 1, - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1480 + "Rank": 1, + "Id": 1480, + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" }, { - "Rank": 2, - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1481 + "Rank": 2, + "Id": 1481, + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" }, { - "Rank": 1, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "CommandName": "Set-PnPTeamsTab", - "Id": 1482 + "Rank": 1, + "Id": 1482, + "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\"", "CommandName": "Set-PnPTeamsTag", - "Id": 1483 + "Rank": 1, + "Id": 1483, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" }, { - "Rank": 1, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "CommandName": "Set-PnPTeamsTeam", - "Id": 1484 + "Rank": 1, + "Id": 1484, + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" }, { - "Rank": 2, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "CommandName": "Set-PnPTeamsTeam", - "Id": 1485 + "Rank": 2, + "Id": 1485, + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" }, { - "Rank": 3, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "CommandName": "Set-PnPTeamsTeam", - "Id": 1486 + "Rank": 3, + "Id": 1486, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" }, { - "Rank": 4, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "CommandName": "Set-PnPTeamsTeam", - "Id": 1487 + "Rank": 4, + "Id": 1487, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" }, { - "Rank": 1, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1488 + "Rank": 1, + "Id": 1488, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" }, { - "Rank": 2, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1489 + "Rank": 2, + "Id": 1489, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" }, { - "Rank": 3, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1490 + "Rank": 3, + "Id": 1490, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" }, { - "Rank": 1, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "CommandName": "Set-PnPTeamsTeamPicture", - "Id": 1491 + "Rank": 1, + "Id": 1491, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" }, { - "Rank": 1, - "Command": "Set-PnPTemporarilyDisableAppBar $true", "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1492 + "Rank": 1, + "Id": 1492, + "Command": "Set-PnPTemporarilyDisableAppBar $true" }, { - "Rank": 2, - "Command": "Set-PnPTemporarilyDisableAppBar $false", "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1493 + "Rank": 2, + "Id": 1493, + "Command": "Set-PnPTemporarilyDisableAppBar $false" }, { - "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": 1494 + "Rank": 1, + "Id": 1494, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" }, { - "Rank": 2, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "CommandName": "Set-PnPTenant", - "Id": 1495 + "Rank": 2, + "Id": 1495, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" }, { - "Rank": 3, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "CommandName": "Set-PnPTenant", - "Id": 1496 + "Rank": 3, + "Id": 1496, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false" }, { - "Rank": 4, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "CommandName": "Set-PnPTenant", - "Id": 1497 + "Rank": 4, + "Id": 1497, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" }, { - "Rank": 1, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "CommandName": "Set-PnPTenantAppCatalogUrl", - "Id": 1498 + "Rank": 1, + "Id": 1498, + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" }, { - "Rank": 1, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1499 + "Rank": 1, + "Id": 1499, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" }, { - "Rank": 2, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1500 + "Rank": 2, + "Id": 1500, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" }, { - "Rank": 3, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1501 + "Rank": 3, + "Id": 1501, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" }, { - "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": 1502 + "Rank": 1, + "Id": 1502, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" }, { - "Rank": 2, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1503 + "Rank": 2, + "Id": 1503, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" }, { - "Rank": 1, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "CommandName": "Set-PnPTenantSite", - "Id": 1504 + "Rank": 1, + "Id": 1504, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" }, { - "Rank": 2, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "CommandName": "Set-PnPTenantSite", - "Id": 1505 + "Rank": 2, + "Id": 1505, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" }, { - "Rank": 3, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "CommandName": "Set-PnPTenantSite", - "Id": 1506 + "Rank": 3, + "Id": 1506, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" }, { - "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": 1507 + "Rank": 4, + "Id": 1507, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Rank": 5, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "CommandName": "Set-PnPTenantSite", - "Id": 1508 + "Rank": 5, + "Id": 1508, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" }, { - "Rank": 1, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1509 + "Rank": 1, + "Id": 1509, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" }, { - "Rank": 2, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1510 + "Rank": 2, + "Id": 1510, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" }, { - "Rank": 1, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "CommandName": "Set-PnPTerm", - "Id": 1511 + "Rank": 1, + "Id": 1511, + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" }, { - "Rank": 2, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "Set-PnPTerm", - "Id": 1512 + "Rank": 2, + "Id": 1512, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Rank": 3, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "CommandName": "Set-PnPTerm", - "Id": 1513 + "Rank": 3, + "Id": 1513, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Rank": 4, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", "CommandName": "Set-PnPTerm", - "Id": 1514 + "Rank": 4, + "Id": 1514, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" }, { - "Rank": 1, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "CommandName": "Set-PnPTermGroup", - "Id": 1515 + "Rank": 1, + "Id": 1515, + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" }, { - "Rank": 1, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "CommandName": "Set-PnPTermSet", - "Id": 1516 + "Rank": 1, + "Id": 1516, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" }, { - "Rank": 2, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "CommandName": "Set-PnPTermSet", - "Id": 1517 + "Rank": 2, + "Id": 1517, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" }, { - "Rank": 3, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "CommandName": "Set-PnPTermSet", - "Id": 1518 + "Rank": 3, + "Id": 1518, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" }, { - "Rank": 1, - "Command": "Set-PnPTheme", "CommandName": "Set-PnPTheme", - "Id": 1519 + "Rank": 1, + "Id": 1519, + "Command": "Set-PnPTheme" }, { - "Rank": 2, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "CommandName": "Set-PnPTheme", - "Id": 1520 + "Rank": 2, + "Id": 1520, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" }, { - "Rank": 3, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "CommandName": "Set-PnPTheme", - "Id": 1521 + "Rank": 3, + "Id": 1521, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" }, { - "Rank": 4, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "CommandName": "Set-PnPTheme", - "Id": 1522 + "Rank": 4, + "Id": 1522, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" }, { - "Rank": 1, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "CommandName": "Set-PnPTraceLog", - "Id": 1523 + "Rank": 1, + "Id": 1523, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" }, { - "Rank": 2, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "CommandName": "Set-PnPTraceLog", - "Id": 1524 + "Rank": 2, + "Id": 1524, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" }, { - "Rank": 3, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "CommandName": "Set-PnPTraceLog", - "Id": 1525 + "Rank": 3, + "Id": 1525, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" }, { - "Rank": 4, - "Command": "Set-PnPTraceLog -Off", "CommandName": "Set-PnPTraceLog", - "Id": 1526 + "Rank": 4, + "Id": 1526, + "Command": "Set-PnPTraceLog -Off" }, { - "Rank": 1, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "CommandName": "Set-PnPUserOneDriveQuota", - "Id": 1527 + "Rank": 1, + "Id": 1527, + "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'", "CommandName": "Set-PnPUserProfileProperty", - "Id": 1528 + "Rank": 1, + "Id": 1528, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" }, { - "Rank": 2, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "CommandName": "Set-PnPUserProfileProperty", - "Id": 1529 + "Rank": 2, + "Id": 1529, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" }, { - "Rank": 1, - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "CommandName": "Set-PnPView", - "Id": 1530 + "Rank": 1, + "Id": 1530, + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" }, { - "Rank": 2, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "CommandName": "Set-PnPView", - "Id": 1531 + "Rank": 2, + "Id": 1531, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" }, { - "Rank": 3, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "CommandName": "Set-PnPView", - "Id": 1532 + "Rank": 3, + "Id": 1532, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" }, { - "Rank": 4, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "CommandName": "Set-PnPView", - "Id": 1533 + "Rank": 4, + "Id": 1533, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" }, { - "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": 1534 + "Rank": 1, + "Id": 1534, + "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": 2, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1535 + "Rank": 2, + "Id": 1535, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" }, { - "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": 1536 + "Rank": 3, + "Id": 1536, + "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": 4, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1537 + "Rank": 4, + "Id": 1537, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" }, { - "Rank": 1, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "CommandName": "Set-PnPWeb", - "Id": 1538 + "Rank": 1, + "Id": 1538, + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" }, { - "Rank": 2, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "CommandName": "Set-PnPWeb", - "Id": 1539 + "Rank": 2, + "Id": 1539, + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" }, { - "Rank": 3, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "CommandName": "Set-PnPWeb", - "Id": 1540 + "Rank": 3, + "Id": 1540, + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" }, { - "Rank": 4, - "Command": "Set-PnPWeb -NoCrawl:$true", "CommandName": "Set-PnPWeb", - "Id": 1541 + "Rank": 4, + "Id": 1541, + "Command": "Set-PnPWeb -NoCrawl:$true" }, { - "Rank": 1, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "CommandName": "Set-PnPWebHeader", - "Id": 1542 + "Rank": 1, + "Id": 1542, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" }, { - "Rank": 2, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "CommandName": "Set-PnPWebHeader", - "Id": 1543 + "Rank": 2, + "Id": 1543, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" }, { - "Rank": 3, - "Command": "Set-PnPWebHeader -LogoAlignment Middle", "CommandName": "Set-PnPWebHeader", - "Id": 1544 + "Rank": 3, + "Id": 1544, + "Command": "Set-PnPWebHeader -LogoAlignment Middle" }, { - "Rank": 1, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "CommandName": "Set-PnPWebhookSubscription", - "Id": 1545 + "Rank": 1, + "Id": 1545, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "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": 1546 + "Rank": 2, + "Id": 1546, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "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": 1547 + "Rank": 1, + "Id": 1547, + "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\"", "CommandName": "Set-PnPWebPermission", - "Id": 1548 + "Rank": 1, + "Id": 1548, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Rank": 2, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Id": 1549 + "Rank": 2, + "Id": 1549, + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" }, { - "Rank": 3, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "CommandName": "Set-PnPWebPermission", - "Id": 1550 + "Rank": 3, + "Id": 1550, + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Rank": 4, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "CommandName": "Set-PnPWebPermission", - "Id": 1551 + "Rank": 4, + "Id": 1551, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" }, { - "Rank": 1, - "Command": "Set-PnPWebTheme -Theme MyTheme", "CommandName": "Set-PnPWebTheme", - "Id": 1552 + "Rank": 1, + "Id": 1552, + "Command": "Set-PnPWebTheme -Theme MyTheme" }, { - "Rank": 2, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "CommandName": "Set-PnPWebTheme", - "Id": 1553 + "Rank": 2, + "Id": 1553, + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" }, { - "Rank": 1, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "CommandName": "Set-PnPWikiPageContent", - "Id": 1554 + "Rank": 1, + "Id": 1554, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" }, { - "Rank": 1, - "Command": "Submit-PnPSearchQuery -Query \"finance\"", "CommandName": "Submit-PnPSearchQuery", - "Id": 1555 + "Rank": 1, + "Id": 1555, + "Command": "Submit-PnPSearchQuery -Query \"finance\"" }, { - "Rank": 2, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "CommandName": "Submit-PnPSearchQuery", - "Id": 1556 + "Rank": 2, + "Id": 1556, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" }, { - "Rank": 3, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "CommandName": "Submit-PnPSearchQuery", - "Id": 1557 + "Rank": 3, + "Id": 1557, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" }, { - "Rank": 4, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "CommandName": "Submit-PnPSearchQuery", - "Id": 1558 + "Rank": 4, + "Id": 1558, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" }, { - "Rank": 5, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "CommandName": "Submit-PnPSearchQuery", - "Id": 1559 + "Rank": 5, + "Id": 1559, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" }, { - "Rank": 6, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", "CommandName": "Submit-PnPSearchQuery", - "Id": 1560 + "Rank": 6, + "Id": 1560, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All" }, { - "Rank": 1, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1561 + "Rank": 1, + "Id": 1561, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" }, { - "Rank": 2, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1562 + "Rank": 2, + "Id": 1562, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" }, { - "Rank": 1, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Sync-PnPAppToTeams", - "Id": 1563 + "Rank": 1, + "Id": 1563, + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 1, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1564 + "Rank": 1, + "Id": 1564, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" }, { - "Rank": 2, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1565 + "Rank": 2, + "Id": 1565, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" }, { - "Rank": 3, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1566 + "Rank": 3, + "Id": 1566, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" }, { - "Rank": 1, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "CommandName": "Test-PnPListItemIsRecord", - "Id": 1567 + "Rank": 1, + "Id": 1567, + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" }, { - "Rank": 1, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Id": 1568 + "Rank": 1, + "Id": 1568, + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" }, { - "Rank": 1, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "CommandName": "Test-PnPSite", - "Id": 1569 + "Rank": 1, + "Id": 1569, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Rank": 2, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "CommandName": "Test-PnPSite", - "Id": 1570 + "Rank": 2, + "Id": 1570, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Rank": 1, - "Command": "Test-PnPTenantTemplate -Template $myTemplate", "CommandName": "Test-PnPTenantTemplate", - "Id": 1571 + "Rank": 1, + "Id": 1571, + "Command": "Test-PnPTenantTemplate -Template $myTemplate" }, { - "Rank": 1, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "CommandName": "Undo-PnPFileCheckedOut", - "Id": 1572 + "Rank": 1, + "Id": 1572, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" }, { - "Rank": 1, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Uninstall-PnPApp", - "Id": 1573 + "Rank": 1, + "Id": 1573, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Uninstall-PnPApp", - "Id": 1574 + "Rank": 2, + "Id": 1574, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Rank": 1, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Unpublish-PnPApp", - "Id": 1575 + "Rank": 1, + "Id": 1575, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Unpublish-PnPApp", - "Id": 1576 + "Rank": 2, + "Id": 1576, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Rank": 1, - "Command": "Unpublish-PnPContentType -ContentType 0x0101", "CommandName": "Unpublish-PnPContentType", - "Id": 1577 + "Rank": 1, + "Id": 1577, + "Command": "Unpublish-PnPContentType -ContentType 0x0101" }, { - "Rank": 1, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1578 + "Rank": 1, + "Id": 1578, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "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": 1579 + "Rank": 2, + "Id": 1579, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Rank": 1, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "CommandName": "Unregister-PnPHubSite", - "Id": 1580 + "Rank": 1, + "Id": 1580, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Rank": 1, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "CommandName": "Update-PnPApp", - "Id": 1581 + "Rank": 1, + "Id": 1581, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Rank": 2, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "CommandName": "Update-PnPApp", - "Id": 1582 + "Rank": 2, + "Id": 1582, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Rank": 1, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1583 + "Rank": 1, + "Id": 1583, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Rank": 2, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1584 + "Rank": 2, + "Id": 1584, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" }, { - "Rank": 3, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1585 + "Rank": 3, + "Id": 1585, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Rank": 1, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1586 + "Rank": 1, + "Id": 1586, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" }, { - "Rank": 2, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1587 + "Rank": 2, + "Id": 1587, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "Rank": 3, - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1588 + "Rank": 3, + "Id": 1588, + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" }, { - "Rank": 1, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "CommandName": "Update-PnPTeamsApp", - "Id": 1589 + "Rank": 1, + "Id": 1589, + "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", "CommandName": "Update-PnPTeamsUser", - "Id": 1590 + "Rank": 1, + "Id": 1590, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Rank": 2, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "CommandName": "Update-PnPTeamsUser", - "Id": 1591 + "Rank": 2, + "Id": 1591, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Rank": 3, - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "CommandName": "Update-PnPTeamsUser", - "Id": 1592 + "Rank": 3, + "Id": 1592, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" }, { - "Rank": 1, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "CommandName": "Update-PnPUserType", - "Id": 1593 + "Rank": 1, + "Id": 1593, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" } ] diff --git a/version.txt b/version.txt index 1cfab5c32..489925be5 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.118 \ No newline at end of file +2.2.119 \ No newline at end of file From be2f34a523bad68402b489ea8c1b044b8f932d3c Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sun, 5 Nov 2023 02:40:34 +0000 Subject: [PATCH 129/146] Nightly publish to PowerShell Gallery --- pnpcoresdk_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9558 ++++++++--------- version.txt | 2 +- 3 files changed, 4781 insertions(+), 4781 deletions(-) diff --git a/pnpcoresdk_hash.txt b/pnpcoresdk_hash.txt index 5250c085e..2c71c895f 100644 --- a/pnpcoresdk_hash.txt +++ b/pnpcoresdk_hash.txt @@ -1 +1 @@ -c194190ffdf94fe9a3363d8aaa3b52f71ca53183 \ No newline at end of file +3865aedcf90d00176da73c8b74ccd8a28becd0f0 \ 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 affa9e2e8..7ab6ab590 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9560 +1,9560 @@ [ { - "CommandName": "Add-PnPAlert", - "Rank": 1, "Id": 1, - "Command": "Add-PnPAlert -List \"Demo List\"" + "Rank": 1, + "Command": "Add-PnPAlert -List \"Demo List\"", + "CommandName": "Add-PnPAlert" }, { - "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)" + "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" }, { - "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\"" + "Rank": 3, + "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPAlert" }, { - "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))" + "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" }, { - "CommandName": "Add-PnPApp", - "Rank": 1, "Id": 5, - "Command": "Add-PnPApp -Path ./myapp.sppkg" + "Rank": 1, + "Command": "Add-PnPApp -Path ./myapp.sppkg", + "CommandName": "Add-PnPApp" }, { - "CommandName": "Add-PnPApp", - "Rank": 2, "Id": 6, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" + "Rank": 2, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "CommandName": "Add-PnPApp" }, { - "CommandName": "Add-PnPApp", - "Rank": 3, "Id": 7, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" + "Rank": 3, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "CommandName": "Add-PnPApp" }, { - "CommandName": "Add-PnPApp", - "Rank": 4, "Id": 8, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" + "Rank": 4, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "CommandName": "Add-PnPApp" }, { - "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`\"}" + "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" }, { - "CommandName": "Add-PnPAvailableSiteClassification", - "Rank": 1, "Id": 10, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" + "Rank": 1, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "CommandName": "Add-PnPAvailableSiteClassification" }, { - "CommandName": "Add-PnPAvailableSiteClassification", - "Rank": 2, "Id": 11, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" + "Rank": 2, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "CommandName": "Add-PnPAvailableSiteClassification" }, { - "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 1, "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\"", + "CommandName": "Add-PnPAzureADGroupMember" }, { - "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 2, "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 \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPAzureADGroupMember" }, { - "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 3, "Id": 14, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" + "Rank": 3, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "CommandName": "Add-PnPAzureADGroupMember" }, { - "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 1, "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\"", + "CommandName": "Add-PnPAzureADGroupOwner" }, { - "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 2, "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 \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPAzureADGroupOwner" }, { - "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 3, "Id": 17, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" + "Rank": 3, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "CommandName": "Add-PnPAzureADGroupOwner" }, { - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Rank": 1, "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 \"Directory.Read.All\" -BuiltInType MicrosoftGraph", + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { - "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\"" + "Rank": 2, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { - "CommandName": "Add-PnPContentType", - "Rank": 1, "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 $ct", + "CommandName": "Add-PnPContentType" }, { - "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\"" + "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" }, { - "CommandName": "Add-PnPContentType", - "Rank": 3, "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\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", + "CommandName": "Add-PnPContentType" }, { - "CommandName": "Add-PnPContentType", - "Rank": 4, "Id": 23, - "Command": "Add-PnPContentType -Name \"Project Item\"" + "Rank": 4, + "Command": "Add-PnPContentType -Name \"Project Item\"", + "CommandName": "Add-PnPContentType" }, { - "CommandName": "Add-PnPContentType", - "Rank": 5, "Id": 24, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" + "Rank": 5, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", + "CommandName": "Add-PnPContentType" }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Rank": 1, "Id": 25, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" + "Rank": 1, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Rank": 2, "Id": 26, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" + "Rank": 2, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Rank": 1, "Id": 27, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Rank": 1, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Rank": 2, "Id": 28, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Rank": 2, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { - "CommandName": "Add-PnPContentTypeToList", - "Rank": 1, "Id": 29, - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" + "Rank": 1, + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "CommandName": "Add-PnPContentTypeToList" }, { - "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`\"}\"" + "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" }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Rank": 1, "Id": 31, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" + "Rank": 1, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Rank": 2, "Id": 32, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" + "Rank": 2, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { - "CommandName": "Add-PnPDocumentSet", - "Rank": 1, "Id": 33, - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" + "Rank": 1, + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "CommandName": "Add-PnPDocumentSet" }, { - "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" + "Rank": 1, + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", + "CommandName": "Add-PnPEventReceiver" }, { - "CommandName": "Add-PnPEventReceiver", - "Rank": 2, "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 WebAdding -Synchronization Synchronous", + "CommandName": "Add-PnPEventReceiver" }, { - "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" + "Rank": 3, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", + "CommandName": "Add-PnPEventReceiver" }, { - "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" + "Rank": 4, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", + "CommandName": "Add-PnPEventReceiver" }, { - "CommandName": "Add-PnPField", - "Rank": 1, "Id": 38, - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" + "Rank": 1, + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "CommandName": "Add-PnPField" }, { - "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\"" + "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" }, { - "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\"" + "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" }, { - "CommandName": "Add-PnPField", - "Rank": 4, "Id": 41, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" + "Rank": 4, + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "CommandName": "Add-PnPField" }, { - "CommandName": "Add-PnPField", - "Rank": 5, "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 Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", + "CommandName": "Add-PnPField" }, { - "CommandName": "Add-PnPField", - "Rank": 6, "Id": 43, - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" + "Rank": 6, + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "CommandName": "Add-PnPField" }, { - "CommandName": "Add-PnPFieldToContentType", - "Rank": 1, "Id": 44, - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Rank": 1, + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "CommandName": "Add-PnPFieldToContentType" }, { - "CommandName": "Add-PnPFile", - "Rank": 1, "Id": 45, - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" + "Rank": 1, + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFile", - "Rank": 2, "Id": 46, - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" + "Rank": 2, + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFile", - "Rank": 3, "Id": 47, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" + "Rank": 3, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFile", - "Rank": 4, "Id": 48, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" + "Rank": 4, + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFile", - "Rank": 5, "Id": 49, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" + "Rank": 5, + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFile", - "Rank": 6, "Id": 50, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" + "Rank": 6, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFile", - "Rank": 7, "Id": 51, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" + "Rank": 7, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFile", - "Rank": 8, "Id": 52, - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" + "Rank": 8, + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 1, "Id": 53, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Rank": 1, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 2, "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 Edit -Password \"PnPRocks!\"", + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 3, "Id": 55, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" + "Rank": 3, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Rank": 1, "Id": 56, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Rank": 1, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Rank": 2, "Id": 57, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" + "Rank": 2, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { - "CommandName": "Add-PnPFileSharingInvite", - "Rank": 1, "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", + "CommandName": "Add-PnPFileSharingInvite" }, { - "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" + "Rank": 2, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "CommandName": "Add-PnPFileSharingInvite" }, { - "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)" + "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" }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 1, "Id": 61, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" + "Rank": 1, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 2, "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 c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 3, "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 \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 4, "Id": 64, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" + "Rank": 4, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 5, "Id": 65, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" + "Rank": 5, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "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\"" + "Rank": 1, + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPFileUserSharingLink" }, { - "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\"" + "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" }, { - "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" + "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" }, { - "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" + "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" }, { - "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" + "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" }, { - "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" + "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" }, { - "CommandName": "Add-PnPFolder", - "Rank": 1, "Id": 72, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Rank": 1, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "CommandName": "Add-PnPFolder" }, { - "CommandName": "Add-PnPFolder", - "Rank": 2, "Id": 73, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" + "Rank": 2, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "CommandName": "Add-PnPFolder" }, { - "CommandName": "Add-PnPFolder", - "Rank": 3, "Id": 74, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" + "Rank": 3, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "CommandName": "Add-PnPFolder" }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 1, "Id": 75, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Rank": 1, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 2, "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!\"", + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "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)" + "Rank": 3, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Rank": 1, "Id": 78, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Rank": 1, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Rank": 2, "Id": 79, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" + "Rank": 2, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { - "CommandName": "Add-PnPFolderSharingInvite", - "Rank": 1, "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", + "CommandName": "Add-PnPFolderSharingInvite" }, { - "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" + "Rank": 2, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "CommandName": "Add-PnPFolderSharingInvite" }, { - "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)" + "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" }, { - "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\"" + "Rank": 1, + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPFolderUserSharingLink" }, { - "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\"" + "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" }, { - "CommandName": "Add-PnPGroupMember", - "Rank": 1, "Id": 85, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Rank": 1, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "CommandName": "Add-PnPGroupMember" }, { - "CommandName": "Add-PnPGroupMember", - "Rank": 2, "Id": 86, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" + "Rank": 2, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "CommandName": "Add-PnPGroupMember" }, { - "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" + "Rank": 1, + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "CommandName": "Add-PnPHtmlPublishingPageLayout" }, { - "CommandName": "Add-PnPHubSiteAssociation", - "Rank": 1, "Id": 88, - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" + "Rank": 1, + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", + "CommandName": "Add-PnPHubSiteAssociation" }, { - "CommandName": "Add-PnPHubToHubAssociation", - "Rank": 1, "Id": 89, - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" + "Rank": 1, + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "CommandName": "Add-PnPHubToHubAssociation" }, { - "CommandName": "Add-PnPHubToHubAssociation", - "Rank": 2, "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/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", + "CommandName": "Add-PnPHubToHubAssociation" }, { - "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\"" + "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" }, { - "CommandName": "Add-PnPJavaScriptBlock", - "Rank": 1, "Id": 92, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" + "Rank": 1, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "CommandName": "Add-PnPJavaScriptBlock" }, { - "CommandName": "Add-PnPJavaScriptBlock", - "Rank": 2, "Id": 93, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" + "Rank": 2, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "CommandName": "Add-PnPJavaScriptBlock" }, { - "CommandName": "Add-PnPJavaScriptLink", - "Rank": 1, "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 -Sequence 9999 -Scope Site", + "CommandName": "Add-PnPJavaScriptLink" }, { - "CommandName": "Add-PnPJavaScriptLink", - "Rank": 2, "Id": 95, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" + "Rank": 2, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "CommandName": "Add-PnPJavaScriptLink" }, { - "CommandName": "Add-PnPListDesign", - "Rank": 1, "Id": 96, - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" + "Rank": 1, + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "CommandName": "Add-PnPListDesign" }, { - "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\"" + "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" }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 1, "Id": 98, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" + "Rank": 1, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 2, "Id": 99, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" + "Rank": 2, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 3, "Id": 100, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" + "Rank": 3, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "CommandName": "Add-PnPListItem", - "Rank": 1, "Id": 101, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Rank": 1, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Add-PnPListItem" }, { - "CommandName": "Add-PnPListItem", - "Rank": 2, "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\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Add-PnPListItem" }, { - "CommandName": "Add-PnPListItem", - "Rank": 3, "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 @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "CommandName": "Add-PnPListItem" }, { - "CommandName": "Add-PnPListItem", - "Rank": 4, "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\"} -Folder \"projects/europe\"", + "CommandName": "Add-PnPListItem" }, { - "CommandName": "Add-PnPListItem", - "Rank": 5, "Id": 105, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" + "Rank": 5, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "CommandName": "Add-PnPListItem" }, { - "CommandName": "Add-PnPListItemAttachment", - "Rank": 1, "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 -Path c:\\temp\\test.mp4", + "CommandName": "Add-PnPListItemAttachment" }, { - "CommandName": "Add-PnPListItemAttachment", - "Rank": 2, "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.txt\" -Content '{ \"Test\": \"Value\" }'", + "CommandName": "Add-PnPListItemAttachment" }, { - "CommandName": "Add-PnPListItemAttachment", - "Rank": 3, "Id": 108, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" + "Rank": 3, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "CommandName": "Add-PnPListItemAttachment" }, { - "CommandName": "Add-PnPListItemComment", - "Rank": 1, "Id": 109, - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" + "Rank": 1, + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "CommandName": "Add-PnPListItemComment" }, { - "CommandName": "Add-PnPMasterPage", - "Rank": 1, "Id": 110, - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" + "Rank": 1, + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "CommandName": "Add-PnPMasterPage" }, { - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Rank": 1, "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\"", + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Rank": 2, "Id": 112, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Rank": 1, "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\"", + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Rank": 2, "Id": 114, - "Command": "Add-PnPMicrosoft365GroupOwner -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\" -RemoveExisting", + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { - "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\"" + "Rank": 1, + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 2, "Id": 116, - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" + "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 3, "Id": 117, - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" + "Rank": 3, + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 1, "Id": 118, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" + "Rank": 1, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "CommandName": "Add-PnPNavigationNode" }, { - "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" + "Rank": 2, + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 3, "Id": 120, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" + "Rank": 3, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 4, "Id": 121, - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" + "Rank": 4, + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 5, "Id": 122, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" + "Rank": 5, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 6, "Id": 123, - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" + "Rank": 6, + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 7, "Id": 124, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" + "Rank": 7, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 8, "Id": 125, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" + "Rank": 8, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 1, "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\"", + "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "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\"" + "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" }, { - "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 3, "Id": 128, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" + "Rank": 3, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "CommandName": "Add-PnPOrgNewsSite", - "Rank": 1, "Id": 129, - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" + "Rank": 1, + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "CommandName": "Add-PnPOrgNewsSite" }, { - "CommandName": "Add-PnPPage", - "Rank": 1, "Id": 130, - "Command": "Add-PnPPage -Name \"NewPage\"" + "Rank": 1, + "Command": "Add-PnPPage -Name \"NewPage\"", + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 2, "Id": 131, - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" + "Rank": 2, + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 3, "Id": 132, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" + "Rank": 3, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 4, "Id": 133, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" + "Rank": 4, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 5, "Id": 134, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"" + "Rank": 5, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 6, "Id": 135, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" + "Rank": 6, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 7, "Id": 136, - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" + "Rank": 7, + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 8, "Id": 137, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate" + "Rank": 8, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 9, "Id": 138, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" + "Rank": 9, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 10, "Id": 139, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" + "Rank": 10, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPageImageWebPart", - "Rank": 1, "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\"", + "CommandName": "Add-PnPPageImageWebPart" }, { - "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\"" + "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" }, { - "CommandName": "Add-PnPPageSection", - "Rank": 1, "Id": 142, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" + "Rank": 1, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "CommandName": "Add-PnPPageSection" }, { - "CommandName": "Add-PnPPageSection", - "Rank": 2, "Id": 143, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" + "Rank": 2, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "CommandName": "Add-PnPPageSection" }, { - "CommandName": "Add-PnPPageTextPart", - "Rank": 1, "Id": 144, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" + "Rank": 1, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "CommandName": "Add-PnPPageTextPart" }, { - "CommandName": "Add-PnPPageTextPart", - "Rank": 2, "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\"", + "CommandName": "Add-PnPPageTextPart" }, { - "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\"" + "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" }, { - "CommandName": "Add-PnPPageWebPart", - "Rank": 1, "Id": 147, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" + "Rank": 1, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "CommandName": "Add-PnPPageWebPart" }, { - "CommandName": "Add-PnPPageWebPart", - "Rank": 2, "Id": 148, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" + "Rank": 2, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "CommandName": "Add-PnPPageWebPart" }, { - "CommandName": "Add-PnPPageWebPart", - "Rank": 3, "Id": 149, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" + "Rank": 3, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "CommandName": "Add-PnPPageWebPart" }, { - "CommandName": "Add-PnPPlannerBucket", - "Rank": 1, "Id": 150, - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" + "Rank": 1, + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "CommandName": "Add-PnPPlannerBucket" }, { - "CommandName": "Add-PnPPlannerBucket", - "Rank": 2, "Id": 151, - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" + "Rank": 2, + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "CommandName": "Add-PnPPlannerBucket" }, { - "CommandName": "Add-PnPPlannerRoster", - "Rank": 1, "Id": 152, - "Command": "Add-PnPPlannerRoster" + "Rank": 1, + "Command": "Add-PnPPlannerRoster", + "CommandName": "Add-PnPPlannerRoster" }, { - "CommandName": "Add-PnPPlannerRosterMember", - "Rank": 1, "Id": 153, - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 1, + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPPlannerRosterMember" }, { - "CommandName": "Add-PnPPlannerTask", - "Rank": 1, "Id": 154, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" + "Rank": 1, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "CommandName": "Add-PnPPlannerTask" }, { - "CommandName": "Add-PnPPlannerTask", - "Rank": 2, "Id": 155, - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" + "Rank": 2, + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "CommandName": "Add-PnPPlannerTask" }, { - "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\"" + "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" }, { - "CommandName": "Add-PnPPublishingImageRendition", - "Rank": 1, "Id": 157, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Rank": 1, + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "CommandName": "Add-PnPPublishingImageRendition" }, { - "CommandName": "Add-PnPPublishingPage", - "Rank": 1, "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'", + "CommandName": "Add-PnPPublishingPage" }, { - "CommandName": "Add-PnPPublishingPage", - "Rank": 2, "Id": 159, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" + "Rank": 2, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "CommandName": "Add-PnPPublishingPage" }, { - "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" + "Rank": 1, + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "CommandName": "Add-PnPPublishingPageLayout" }, { - "CommandName": "Add-PnPRoleDefinition", - "Rank": 1, "Id": 161, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" + "Rank": 1, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "CommandName": "Add-PnPRoleDefinition" }, { - "CommandName": "Add-PnPRoleDefinition", - "Rank": 2, "Id": 162, - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" + "Rank": 2, + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "CommandName": "Add-PnPRoleDefinition" }, { - "CommandName": "Add-PnPRoleDefinition", - "Rank": 3, "Id": 163, - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" + "Rank": 3, + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "CommandName": "Add-PnPRoleDefinition" }, { - "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 1, "Id": 164, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Rank": 1, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 2, "Id": 165, - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Rank": 2, + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 3, "Id": 166, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" + "Rank": 3, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1, "Id": 167, - "Command": "Add-PnPSiteCollectionAppCatalog" + "Rank": 1, + "Command": "Add-PnPSiteCollectionAppCatalog", + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Rank": 2, "Id": 168, - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Rank": 2, + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { - "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" + "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" }, { - "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" + "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" }, { - "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\"" + "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" }, { - "CommandName": "Add-PnPSiteDesignFromWeb", - "Rank": 1, "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", + "CommandName": "Add-PnPSiteDesignFromWeb" }, { - "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)" + "Rank": 2, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "CommandName": "Add-PnPSiteDesignFromWeb" }, { - "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" + "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" }, { - "CommandName": "Add-PnPSiteDesignTask", - "Rank": 1, "Id": 175, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" + "Rank": 1, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "CommandName": "Add-PnPSiteDesignTask" }, { - "CommandName": "Add-PnPSiteDesignTask", - "Rank": 2, "Id": 176, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "Rank": 2, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "CommandName": "Add-PnPSiteDesignTask" }, { - "CommandName": "Add-PnPSiteScript", - "Rank": 1, "Id": 177, - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" + "Rank": 1, + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "CommandName": "Add-PnPSiteScript" }, { - "CommandName": "Add-PnPSiteScriptPackage", - "Rank": 1, "Id": 178, - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" + "Rank": 1, + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", + "CommandName": "Add-PnPSiteScriptPackage" }, { - "CommandName": "Add-PnPSiteTemplate", - "Rank": 1, "Id": 179, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" + "Rank": 1, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "CommandName": "Add-PnPSiteTemplate" }, { - "CommandName": "Add-PnPStoredCredential", - "Rank": 1, "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", + "CommandName": "Add-PnPStoredCredential" }, { - "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)" + "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" }, { - "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\"" + "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" }, { - "CommandName": "Add-PnPTaxonomyField", - "Rank": 1, "Id": 183, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" + "Rank": 1, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "CommandName": "Add-PnPTaxonomyField" }, { - "CommandName": "Add-PnPTaxonomyField", - "Rank": 2, "Id": 184, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" + "Rank": 2, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "CommandName": "Add-PnPTaxonomyField" }, { - "CommandName": "Add-PnPTeamsChannel", - "Rank": 1, "Id": 185, - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" + "Rank": 1, + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "CommandName": "Add-PnPTeamsChannel" }, { - "CommandName": "Add-PnPTeamsChannel", - "Rank": 2, "Id": 186, - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" + "Rank": 2, + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "CommandName": "Add-PnPTeamsChannel" }, { - "CommandName": "Add-PnPTeamsChannel", - "Rank": 3, "Id": 187, - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" + "Rank": 3, + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "CommandName": "Add-PnPTeamsChannel" }, { - "CommandName": "Add-PnPTeamsChannel", - "Rank": 4, "Id": 188, - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" + "Rank": 4, + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", + "CommandName": "Add-PnPTeamsChannel" }, { - "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" + "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" }, { - "CommandName": "Add-PnpTeamsChannelUser", - "Rank": 2, "Id": 190, - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" + "Rank": 2, + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", + "CommandName": "Add-PnpTeamsChannelUser" }, { - "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\"" + "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" }, { - "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\"" + "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" }, { - "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\"" + "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" }, { - "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" + "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" }, { - "CommandName": "Add-PnPTeamsTeam", - "Rank": 1, "Id": 195, - "Command": "Add-PnPTeamsTeam" + "Rank": 1, + "Command": "Add-PnPTeamsTeam", + "CommandName": "Add-PnPTeamsTeam" }, { - "CommandName": "Add-PnPTeamsUser", - "Rank": 1, "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 Owner", + "CommandName": "Add-PnPTeamsUser" }, { - "CommandName": "Add-PnPTeamsUser", - "Rank": 2, "Id": 197, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "Rank": 2, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "CommandName": "Add-PnPTeamsUser" }, { - "CommandName": "Add-PnPTeamsUser", - "Rank": 3, "Id": 198, - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" + "Rank": 3, + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "CommandName": "Add-PnPTeamsUser" }, { - "CommandName": "Add-PnPTeamsUser", - "Rank": 4, "Id": 199, - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" + "Rank": 4, + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "CommandName": "Add-PnPTeamsUser" }, { - "CommandName": "Add-PnPTenantCdnOrigin", - "Rank": 1, "Id": 200, - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Rank": 1, + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "CommandName": "Add-PnPTenantCdnOrigin" }, { - "CommandName": "Add-PnPTenantSequence", - "Rank": 1, "Id": 201, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" + "Rank": 1, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "CommandName": "Add-PnPTenantSequence" }, { - "CommandName": "Add-PnPTenantSequenceSite", - "Rank": 1, "Id": 202, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" + "Rank": 1, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "CommandName": "Add-PnPTenantSequenceSite" }, { - "CommandName": "Add-PnPTenantSequenceSubSite", - "Rank": 1, "Id": 203, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" + "Rank": 1, + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "CommandName": "Add-PnPTenantSequenceSubSite" }, { - "CommandName": "Add-PnPTermToTerm", - "Rank": 1, "Id": 204, - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" + "Rank": 1, + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "CommandName": "Add-PnPTermToTerm" }, { - "CommandName": "Add-PnPView", - "Rank": 1, "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\"", + "CommandName": "Add-PnPView" }, { - "CommandName": "Add-PnPView", - "Rank": 2, "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\" -Paged -RowLimit 100", + "CommandName": "Add-PnPView" }, { - "CommandName": "Add-PnPView", - "Rank": 3, "Id": 207, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" + "Rank": 3, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "CommandName": "Add-PnPView" }, { - "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\"" + "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" }, { - "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\"" + "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" }, { - "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\"" + "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" }, { - "CommandName": "Add-PnPWebhookSubscription", - "Rank": 1, "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", + "CommandName": "Add-PnPWebhookSubscription" }, { - "CommandName": "Add-PnPWebhookSubscription", - "Rank": 2, "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\"", + "CommandName": "Add-PnPWebhookSubscription" }, { - "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!\"" + "Rank": 3, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", + "CommandName": "Add-PnPWebhookSubscription" }, { - "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" + "Rank": 1, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", + "CommandName": "Add-PnPWebPartToWebPartPage" }, { - "CommandName": "Add-PnPWebPartToWebPartPage", - "Rank": 2, "Id": 215, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" + "Rank": 2, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", + "CommandName": "Add-PnPWebPartToWebPartPage" }, { - "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" + "Rank": 1, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", + "CommandName": "Add-PnPWebPartToWikiPage" }, { - "CommandName": "Add-PnPWebPartToWikiPage", - "Rank": 2, "Id": 217, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" + "Rank": 2, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", + "CommandName": "Add-PnPWebPartToWikiPage" }, { - "CommandName": "Add-PnPWikiPage", - "Rank": 1, "Id": 218, - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" + "Rank": 1, + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "CommandName": "Add-PnPWikiPage" }, { - "CommandName": "Clear-PnPAzureADGroupMember", - "Rank": 1, "Id": 219, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" + "Rank": 1, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "CommandName": "Clear-PnPAzureADGroupMember" }, { - "CommandName": "Clear-PnPAzureADGroupOwner", - "Rank": 1, "Id": 220, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" + "Rank": 1, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "CommandName": "Clear-PnPAzureADGroupOwner" }, { - "CommandName": "Clear-PnPDefaultColumnValues", - "Rank": 1, "Id": 221, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" + "Rank": 1, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "CommandName": "Clear-PnPDefaultColumnValues" }, { - "CommandName": "Clear-PnPDefaultColumnValues", - "Rank": 2, "Id": 222, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" + "Rank": 2, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "CommandName": "Clear-PnPDefaultColumnValues" }, { - "CommandName": "Clear-PnPListItemAsRecord", - "Rank": 1, "Id": 223, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Rank": 1, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "CommandName": "Clear-PnPListItemAsRecord" }, { - "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Rank": 1, "Id": 224, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" + "Rank": 1, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { - "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Rank": 1, "Id": 225, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" + "Rank": 1, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { - "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 1, "Id": 226, - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Rank": 1, + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "CommandName": "Clear-PnpRecycleBinItem" }, { - "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 2, "Id": 227, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" + "Rank": 2, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "CommandName": "Clear-PnpRecycleBinItem" }, { - "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 3, "Id": 228, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" + "Rank": 3, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "CommandName": "Clear-PnpRecycleBinItem" }, { - "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1, "Id": 229, - "Command": "Clear-PnPTenantAppCatalogUrl" + "Rank": 1, + "Command": "Clear-PnPTenantAppCatalogUrl", + "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Rank": 1, "Id": 230, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Rank": 2, "Id": 231, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Rank": 2, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { - "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\"" + "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" }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Rank": 1, "Id": 233, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" + "Rank": 1, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Rank": 2, "Id": 234, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" + "Rank": 2, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { - "CommandName": "Convert-PnPSiteTemplate", - "Rank": 1, "Id": 235, - "Command": "Convert-PnPSiteTemplate -Path template.xml" + "Rank": 1, + "Command": "Convert-PnPSiteTemplate -Path template.xml", + "CommandName": "Convert-PnPSiteTemplate" }, { - "CommandName": "Convert-PnPSiteTemplate", - "Rank": 2, "Id": 236, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" + "Rank": 2, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "CommandName": "Convert-PnPSiteTemplate" }, { - "CommandName": "Convert-PnPSiteTemplate", - "Rank": 3, "Id": 237, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" + "Rank": 3, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "CommandName": "Convert-PnPSiteTemplate" }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Rank": 1, "Id": 238, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" + "Rank": 1, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Rank": 2, "Id": 239, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" + "Rank": 2, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 1, "Id": 240, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" + "Rank": 1, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 2, "Id": 241, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" + "Rank": 2, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 3, "Id": 242, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" + "Rank": 3, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 4, "Id": 243, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" + "Rank": 4, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 5, "Id": 244, - "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 -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 6, "Id": 245, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" + "Rank": 6, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 7, "Id": 246, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" + "Rank": 7, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 8, "Id": 247, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" + "Rank": 8, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 9, "Id": 248, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Rank": 9, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 10, "Id": 249, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" + "Rank": 10, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 11, "Id": 250, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" + "Rank": 11, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 12, "Id": 251, - "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\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 13, "Id": 252, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Rank": 13, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 14, "Id": 253, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" + "Rank": 14, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "Copy-PnPFile", - "Rank": 1, "Id": 254, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 1, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 2, "Id": 255, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Rank": 2, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 3, "Id": 256, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "Rank": 3, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 4, "Id": 257, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 4, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 5, "Id": 258, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Rank": 5, + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 6, "Id": 259, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "Rank": 6, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 7, "Id": 260, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Rank": 7, + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 8, "Id": 261, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 8, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 9, "Id": 262, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Rank": 9, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 10, "Id": 263, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Rank": 10, + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 1, "Id": 264, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 1, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 2, "Id": 265, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Rank": 2, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 3, "Id": 266, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "Rank": 3, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 4, "Id": 267, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 4, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 5, "Id": 268, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Rank": 5, + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 6, "Id": 269, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "Rank": 6, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 7, "Id": 270, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Rank": 7, + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 8, "Id": 271, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 8, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 9, "Id": 272, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Rank": 9, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 10, "Id": 273, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Rank": 10, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPItemProxy", - "Rank": 1, "Id": 274, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" + "Rank": 1, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "CommandName": "Copy-PnPItemProxy" }, { - "CommandName": "Copy-PnPList", - "Rank": 1, "Id": 275, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" + "Rank": 1, + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "CommandName": "Copy-PnPList" }, { - "CommandName": "Copy-PnPList", - "Rank": 2, "Id": 276, - "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", + "CommandName": "Copy-PnPList" }, { - "CommandName": "Copy-PnPList", - "Rank": 3, "Id": 277, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" + "Rank": 3, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "CommandName": "Copy-PnPList" }, { - "CommandName": "Copy-PnPList", - "Rank": 4, "Id": 278, - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" + "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" }, { - "CommandName": "Copy-PnPTeamsTeam", - "Rank": 1, "Id": 279, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" + "Rank": 1, + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "CommandName": "Copy-PnPTeamsTeam" }, { - "CommandName": "Copy-PnPTeamsTeam", - "Rank": 2, "Id": 280, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" + "Rank": 2, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "CommandName": "Copy-PnPTeamsTeam" }, { - "CommandName": "Copy-PnPTeamsTeam", - "Rank": 3, "Id": 281, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" + "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" }, { - "CommandName": "Copy-PnPTeamsTeam", - "Rank": 4, "Id": 282, - "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": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", + "CommandName": "Copy-PnPTeamsTeam" }, { - "CommandName": "Disable-PnPFeature", - "Rank": 1, "Id": 283, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Disable-PnPFeature" }, { - "CommandName": "Disable-PnPFeature", - "Rank": 2, "Id": 284, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Rank": 2, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "CommandName": "Disable-PnPFeature" }, { - "CommandName": "Disable-PnPFeature", - "Rank": 3, "Id": 285, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Rank": 3, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "CommandName": "Disable-PnPFeature" }, { - "CommandName": "Disable-PnPPageScheduling", - "Rank": 1, "Id": 286, - "Command": "Disable-PnPPageScheduling" + "Rank": 1, + "Command": "Disable-PnPPageScheduling", + "CommandName": "Disable-PnPPageScheduling" }, { - "CommandName": "Disable-PnPPowerShellTelemetry", - "Rank": 1, "Id": 287, - "Command": "Disable-PnPPowerShellTelemetry" + "Rank": 1, + "Command": "Disable-PnPPowerShellTelemetry", + "CommandName": "Disable-PnPPowerShellTelemetry" }, { - "CommandName": "Disable-PnPPowerShellTelemetry", - "Rank": 2, "Id": 288, - "Command": "Disable-PnPPowerShellTelemetry -Force" + "Rank": 2, + "Command": "Disable-PnPPowerShellTelemetry -Force", + "CommandName": "Disable-PnPPowerShellTelemetry" }, { - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1, "Id": 289, - "Command": "Disable-PnPSharingForNonOwnersOfSite" + "Rank": 1, + "Command": "Disable-PnPSharingForNonOwnersOfSite", + "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { - "CommandName": "Disable-PnPSiteClassification", - "Rank": 1, "Id": 290, - "Command": "Disable-PnPSiteClassification" + "Rank": 1, + "Command": "Disable-PnPSiteClassification", + "CommandName": "Disable-PnPSiteClassification" }, { - "CommandName": "Disconnect-PnPOnline", - "Rank": 1, "Id": 291, - "Command": "Disconnect-PnPOnline" + "Rank": 1, + "Command": "Disconnect-PnPOnline", + "CommandName": "Disconnect-PnPOnline" }, { - "CommandName": "Enable-PnPCommSite", - "Rank": 1, "Id": 292, - "Command": "Enable-PnPCommSite" + "Rank": 1, + "Command": "Enable-PnPCommSite", + "CommandName": "Enable-PnPCommSite" }, { - "CommandName": "Enable-PnPCommSite", - "Rank": 2, "Id": 293, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" + "Rank": 2, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "CommandName": "Enable-PnPCommSite" }, { - "CommandName": "Enable-PnPFeature", - "Rank": 1, "Id": 294, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Enable-PnPFeature" }, { - "CommandName": "Enable-PnPFeature", - "Rank": 2, "Id": 295, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Rank": 2, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "CommandName": "Enable-PnPFeature" }, { - "CommandName": "Enable-PnPFeature", - "Rank": 3, "Id": 296, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Rank": 3, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "CommandName": "Enable-PnPFeature" }, { - "CommandName": "Enable-PnPPageScheduling", - "Rank": 1, "Id": 297, - "Command": "Enable-PnPPageScheduling" + "Rank": 1, + "Command": "Enable-PnPPageScheduling", + "CommandName": "Enable-PnPPageScheduling" }, { - "CommandName": "Enable-PnPPowerShellTelemetry", - "Rank": 1, "Id": 298, - "Command": "Enable-PnPPowerShellTelemetry" + "Rank": 1, + "Command": "Enable-PnPPowerShellTelemetry", + "CommandName": "Enable-PnPPowerShellTelemetry" }, { - "CommandName": "Enable-PnPPowerShellTelemetry", - "Rank": 2, "Id": 299, - "Command": "Enable-PnPPowerShellTelemetry -Force" + "Rank": 2, + "Command": "Enable-PnPPowerShellTelemetry -Force", + "CommandName": "Enable-PnPPowerShellTelemetry" }, { - "CommandName": "Enable-PnPSiteClassification", - "Rank": 1, "Id": 300, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" + "Rank": 1, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "CommandName": "Enable-PnPSiteClassification" }, { - "CommandName": "Enable-PnPSiteClassification", - "Rank": 2, "Id": 301, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" + "Rank": 2, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "CommandName": "Enable-PnPSiteClassification" }, { - "CommandName": "Export-PnPListToSiteTemplate", - "Rank": 1, "Id": 302, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" + "Rank": 1, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "CommandName": "Export-PnPListToSiteTemplate" }, { - "CommandName": "Export-PnPListToSiteTemplate", - "Rank": 2, "Id": 303, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" + "Rank": 2, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "CommandName": "Export-PnPListToSiteTemplate" }, { - "CommandName": "Export-PnPPage", - "Rank": 1, "Id": 304, - "Command": "Export-PnPPage -Identity Home.aspx" + "Rank": 1, + "Command": "Export-PnPPage -Identity Home.aspx", + "CommandName": "Export-PnPPage" }, { - "CommandName": "Export-PnPPageMapping", - "Rank": 1, "Id": 305, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" + "Rank": 1, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping" }, { - "CommandName": "Export-PnPPageMapping", - "Rank": 2, "Id": 306, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" + "Rank": 2, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping" }, { - "CommandName": "Export-PnPPageMapping", - "Rank": 3, "Id": 307, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" + "Rank": 3, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping" }, { - "CommandName": "Export-PnPTaxonomy", - "Rank": 1, "Id": 308, - "Command": "Export-PnPTaxonomy" + "Rank": 1, + "Command": "Export-PnPTaxonomy", + "CommandName": "Export-PnPTaxonomy" }, { - "CommandName": "Export-PnPTaxonomy", - "Rank": 2, "Id": 309, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt" + "Rank": 2, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "CommandName": "Export-PnPTaxonomy" }, { - "CommandName": "Export-PnPTaxonomy", - "Rank": 3, "Id": 310, - "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", + "CommandName": "Export-PnPTaxonomy" }, { - "CommandName": "Export-PnPTaxonomy", - "Rank": 4, "Id": 311, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" + "Rank": 4, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "CommandName": "Export-PnPTaxonomy" }, { - "CommandName": "Export-PnPTermGroupToXml", - "Rank": 1, "Id": 312, - "Command": "Export-PnPTermGroupToXml" + "Rank": 1, + "Command": "Export-PnPTermGroupToXml", + "CommandName": "Export-PnPTermGroupToXml" }, { - "CommandName": "Export-PnPTermGroupToXml", - "Rank": 2, "Id": 313, - "Command": "Export-PnPTermGroupToXml -Out output.xml" + "Rank": 2, + "Command": "Export-PnPTermGroupToXml -Out output.xml", + "CommandName": "Export-PnPTermGroupToXml" }, { - "CommandName": "Export-PnPTermGroupToXml", - "Rank": 3, "Id": 314, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" + "Rank": 3, + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "CommandName": "Export-PnPTermGroupToXml" }, { - "CommandName": "Export-PnPUserInfo", - "Rank": 1, "Id": 315, - "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\"", + "CommandName": "Export-PnPUserInfo" }, { - "CommandName": "Export-PnPUserInfo", - "Rank": 2, "Id": 316, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" + "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" }, { - "CommandName": "Export-PnPUserProfile", - "Rank": 1, "Id": 317, - "Command": "Export-PnPUserProfile -LoginName user@domain.com" + "Rank": 1, + "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "CommandName": "Export-PnPUserProfile" }, { - "CommandName": "Export-PnPUserProfile", - "Rank": 2, "Id": 318, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" + "Rank": 2, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "CommandName": "Export-PnPUserProfile" }, { - "CommandName": "Find-PnPFile", - "Rank": 1, "Id": 319, - "Command": "Find-PnPFile -Match *.master" + "Rank": 1, + "Command": "Find-PnPFile -Match *.master", + "CommandName": "Find-PnPFile" }, { - "CommandName": "Find-PnPFile", - "Rank": 2, "Id": 320, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" + "Rank": 2, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "CommandName": "Find-PnPFile" }, { - "CommandName": "Find-PnPFile", - "Rank": 3, "Id": 321, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" + "Rank": 3, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "CommandName": "Find-PnPFile" }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 1, "Id": 322, - "Command": "Get-PnPAccessToken" + "Rank": 1, + "Command": "Get-PnPAccessToken", + "CommandName": "Get-PnPAccessToken" }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 2, "Id": 323, - "Command": "Get-PnPAccessToken -Decoded" + "Rank": 2, + "Command": "Get-PnPAccessToken -Decoded", + "CommandName": "Get-PnPAccessToken" }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 3, "Id": 324, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" + "Rank": 3, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "CommandName": "Get-PnPAccessToken" }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 4, "Id": 325, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM" + "Rank": 4, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "CommandName": "Get-PnPAccessToken" }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 5, "Id": 326, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" + "Rank": 5, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "CommandName": "Get-PnPAccessToken" }, { - "CommandName": "Get-PnPAlert", - "Rank": 1, "Id": 327, - "Command": "Get-PnPAlert" + "Rank": 1, + "Command": "Get-PnPAlert", + "CommandName": "Get-PnPAlert" }, { - "CommandName": "Get-PnPAlert", - "Rank": 2, "Id": 328, - "Command": "Get-PnPAlert -List \"Demo List\"" + "Rank": 2, + "Command": "Get-PnPAlert -List \"Demo List\"", + "CommandName": "Get-PnPAlert" }, { - "CommandName": "Get-PnPAlert", - "Rank": 3, "Id": 329, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Rank": 3, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPAlert" }, { - "CommandName": "Get-PnPAlert", - "Rank": 4, "Id": 330, - "Command": "Get-PnPAlert -Title \"Demo Alert\"" + "Rank": 4, + "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "CommandName": "Get-PnPAlert" }, { - "CommandName": "Get-PnPAlert", - "Rank": 5, "Id": 331, - "Command": "Get-PnPAlert -AllUsers" + "Rank": 5, + "Command": "Get-PnPAlert -AllUsers", + "CommandName": "Get-PnPAlert" }, { - "CommandName": "Get-PnPAlert", - "Rank": 6, "Id": 332, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" + "Rank": 6, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "CommandName": "Get-PnPAlert" }, { - "CommandName": "Get-PnPApp", - "Rank": 1, "Id": 333, - "Command": "Get-PnPApp" + "Rank": 1, + "Command": "Get-PnPApp", + "CommandName": "Get-PnPApp" }, { - "CommandName": "Get-PnPApp", - "Rank": 2, "Id": 334, - "Command": "Get-PnPApp -Scope Site" + "Rank": 2, + "Command": "Get-PnPApp -Scope Site", + "CommandName": "Get-PnPApp" }, { - "CommandName": "Get-PnPApp", - "Rank": 3, "Id": 335, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Rank": 3, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Get-PnPApp" }, { - "CommandName": "Get-PnPAppErrors", - "Rank": 1, "Id": 336, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" + "Rank": 1, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "CommandName": "Get-PnPAppErrors" }, { - "CommandName": "Get-PnPAppErrors", - "Rank": 2, "Id": 337, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" + "Rank": 2, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "CommandName": "Get-PnPAppErrors" }, { - "CommandName": "Get-PnPAppInfo", - "Rank": 1, "Id": 338, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"" + "Rank": 1, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "CommandName": "Get-PnPAppInfo" }, { - "CommandName": "Get-PnPAppInfo", - "Rank": 2, "Id": 339, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Rank": 2, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Get-PnPAppInfo" }, { - "CommandName": "Get-PnPAppInfo", - "Rank": 3, "Id": 340, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" + "Rank": 3, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "CommandName": "Get-PnPAppInfo" }, { - "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 1, "Id": 341, - "Command": "Get-PnPApplicationCustomizer" + "Rank": 1, + "Command": "Get-PnPApplicationCustomizer", + "CommandName": "Get-PnPApplicationCustomizer" }, { - "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 2, "Id": 342, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 2, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Get-PnPApplicationCustomizer" }, { - "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 3, "Id": 343, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" + "Rank": 3, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "CommandName": "Get-PnPApplicationCustomizer" }, { - "CommandName": "Get-PnPAuditing", - "Rank": 1, "Id": 344, - "Command": "Get-PnPAuditing" + "Rank": 1, + "Command": "Get-PnPAuditing", + "CommandName": "Get-PnPAuditing" }, { - "CommandName": "Get-PnPAuthenticationRealm", - "Rank": 1, "Id": 345, - "Command": "Get-PnPAuthenticationRealm" + "Rank": 1, + "Command": "Get-PnPAuthenticationRealm", + "CommandName": "Get-PnPAuthenticationRealm" }, { - "CommandName": "Get-PnPAuthenticationRealm", - "Rank": 2, "Id": 346, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" + "Rank": 2, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "CommandName": "Get-PnPAuthenticationRealm" }, { - "CommandName": "Get-PnPAvailableLanguage", - "Rank": 1, "Id": 347, - "Command": "Get-PnPAvailableLanguage" + "Rank": 1, + "Command": "Get-PnPAvailableLanguage", + "CommandName": "Get-PnPAvailableLanguage" }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 1, "Id": 348, - "Command": "Get-PnPAvailableSensitivityLabel" + "Rank": 1, + "Command": "Get-PnPAvailableSensitivityLabel", + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 2, "Id": 349, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" + "Rank": 2, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 3, "Id": 350, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" + "Rank": 3, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "CommandName": "Get-PnPAvailableSiteClassification", - "Rank": 1, "Id": 351, - "Command": "Get-PnPAvailableSiteClassification" + "Rank": 1, + "Command": "Get-PnPAvailableSiteClassification", + "CommandName": "Get-PnPAvailableSiteClassification" }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 1, "Id": 352, - "Command": "Get-PnPAzureACSPrincipal" + "Rank": 1, + "Command": "Get-PnPAzureACSPrincipal", + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 2, "Id": 353, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" + "Rank": 2, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 3, "Id": 354, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" + "Rank": 3, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 4, "Id": 355, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" + "Rank": 4, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1, "Id": 356, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit" + "Rank": 1, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 2, "Id": 357, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" + "Rank": 2, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 3, "Id": 358, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" + "Rank": 3, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1, "Id": 359, - "Command": "Get-PnPAzureADActivityReportSignIn" + "Rank": 1, + "Command": "Get-PnPAzureADActivityReportSignIn", + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 2, "Id": 360, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" + "Rank": 2, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 3, "Id": 361, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" + "Rank": 3, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "CommandName": "Get-PnPAzureADApp", - "Rank": 1, "Id": 362, - "Command": "Get-PnPAzureADApp" + "Rank": 1, + "Command": "Get-PnPAzureADApp", + "CommandName": "Get-PnPAzureADApp" }, { - "CommandName": "Get-PnPAzureADApp", - "Rank": 2, "Id": 363, - "Command": "Get-PnPAzureADApp -Identity MyApp" + "Rank": 2, + "Command": "Get-PnPAzureADApp -Identity MyApp", + "CommandName": "Get-PnPAzureADApp" }, { - "CommandName": "Get-PnPAzureADApp", - "Rank": 3, "Id": 364, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Rank": 3, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Get-PnPAzureADApp" }, { - "CommandName": "Get-PnPAzureADApp", - "Rank": 4, "Id": 365, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" + "Rank": 4, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPAzureADApp" }, { - "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 1, "Id": 366, - "Command": "Get-PnPAzureADAppPermission" + "Rank": 1, + "Command": "Get-PnPAzureADAppPermission", + "CommandName": "Get-PnPAzureADAppPermission" }, { - "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 2, "Id": 367, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp" + "Rank": 2, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "CommandName": "Get-PnPAzureADAppPermission" }, { - "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 3, "Id": 368, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Rank": 3, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Get-PnPAzureADAppPermission" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 1, "Id": 369, - "Command": "Get-PnPAzureADAppSitePermission" + "Rank": 1, + "Command": "Get-PnPAzureADAppSitePermission", + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 2, "Id": 370, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" + "Rank": 2, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 3, "Id": 371, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" + "Rank": 3, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 4, "Id": 372, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" + "Rank": 4, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 5, "Id": 373, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" + "Rank": 5, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 1, "Id": 374, - "Command": "Get-PnPAzureADGroup" + "Rank": 1, + "Command": "Get-PnPAzureADGroup", + "CommandName": "Get-PnPAzureADGroup" }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 2, "Id": 375, - "Command": "Get-PnPAzureADGroup -Identity $groupId" + "Rank": 2, + "Command": "Get-PnPAzureADGroup -Identity $groupId", + "CommandName": "Get-PnPAzureADGroup" }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 3, "Id": 376, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" + "Rank": 3, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "CommandName": "Get-PnPAzureADGroup" }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 4, "Id": 377, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" + "Rank": 4, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "CommandName": "Get-PnPAzureADGroup" }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 5, "Id": 378, - "Command": "Get-PnPAzureADGroup -Identity $group" + "Rank": 5, + "Command": "Get-PnPAzureADGroup -Identity $group", + "CommandName": "Get-PnPAzureADGroup" }, { - "CommandName": "Get-PnPAzureADGroupMember", - "Rank": 1, "Id": 379, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId" + "Rank": 1, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "CommandName": "Get-PnPAzureADGroupMember" }, { - "CommandName": "Get-PnPAzureADGroupMember", - "Rank": 2, "Id": 380, - "Command": "Get-PnPAzureADGroupMember -Identity $group" + "Rank": 2, + "Command": "Get-PnPAzureADGroupMember -Identity $group", + "CommandName": "Get-PnPAzureADGroupMember" }, { - "CommandName": "Get-PnPAzureADGroupOwner", - "Rank": 1, "Id": 381, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" + "Rank": 1, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "CommandName": "Get-PnPAzureADGroupOwner" }, { - "CommandName": "Get-PnPAzureADGroupOwner", - "Rank": 2, "Id": 382, - "Command": "Get-PnPAzureADGroupOwner -Identity $group" + "Rank": 2, + "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "CommandName": "Get-PnPAzureADGroupOwner" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 1, "Id": 383, - "Command": "Get-PnPAzureADServicePrincipal" + "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipal", + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 2, "Id": 384, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" + "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 3, "Id": 385, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" + "Rank": 3, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 4, "Id": 386, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" + "Rank": 4, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 5, "Id": 387, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" + "Rank": 5, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 1, "Id": 388, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 2, "Id": 389, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Rank": 1, "Id": 390, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Rank": 2, "Id": 391, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" + "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 1, "Id": 392, - "Command": "Get-PnPAzureADUser" + "Rank": 1, + "Command": "Get-PnPAzureADUser", + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 2, "Id": 393, - "Command": "Get-PnPAzureADUser -EndIndex 50" + "Rank": 2, + "Command": "Get-PnPAzureADUser -EndIndex 50", + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 3, "Id": 394, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Rank": 3, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 4, "Id": 395, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com" + "Rank": 4, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 5, "Id": 396, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" + "Rank": 5, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 6, "Id": 397, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" + "Rank": 6, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 7, "Id": 398, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" + "Rank": 7, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 8, "Id": 399, - "Command": "Get-PnPAzureADUser -Delta" + "Rank": 8, + "Command": "Get-PnPAzureADUser -Delta", + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 9, "Id": 400, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" + "Rank": 9, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 10, "Id": 401, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" + "Rank": 10, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureCertificate", - "Rank": 1, "Id": 402, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" + "Rank": 1, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "CommandName": "Get-PnPAzureCertificate" }, { - "CommandName": "Get-PnPAzureCertificate", - "Rank": 2, "Id": 403, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" + "Rank": 2, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "CommandName": "Get-PnPAzureCertificate" }, { - "CommandName": "Get-PnPAzureCertificate", - "Rank": 3, "Id": 404, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" + "Rank": 3, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "CommandName": "Get-PnPAzureCertificate" }, { - "CommandName": "Get-PnPBrowserIdleSignout", - "Rank": 1, "Id": 405, - "Command": "Get-PnPBrowserIdleSignout" + "Rank": 1, + "Command": "Get-PnPBrowserIdleSignout", + "CommandName": "Get-PnPBrowserIdleSignout" }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 1, "Id": 406, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" + "Rank": 1, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2, "Id": 407, - "Command": "Get-PnPBuiltInDesignPackageVisibility" + "Rank": 2, + "Command": "Get-PnPBuiltInDesignPackageVisibility", + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1, "Id": 408, - "Command": "Get-PnPBuiltInSiteTemplateSettings" + "Rank": 1, + "Command": "Get-PnPBuiltInSiteTemplateSettings", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 2, "Id": 409, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" + "Rank": 2, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 3, "Id": 410, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" + "Rank": 3, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 4, "Id": 411, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" + "Rank": 4, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 5, "Id": 412, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" + "Rank": 5, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Get-PnPChangeLog", - "Rank": 1, "Id": 413, - "Command": "Get-PnPChangeLog" + "Rank": 1, + "Command": "Get-PnPChangeLog", + "CommandName": "Get-PnPChangeLog" }, { - "CommandName": "Get-PnPChangeLog", - "Rank": 2, "Id": 414, - "Command": "Get-PnPChangeLog -Nightly" + "Rank": 2, + "Command": "Get-PnPChangeLog -Nightly", + "CommandName": "Get-PnPChangeLog" }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Rank": 1, "Id": 415, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" + "Rank": 1, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Rank": 2, "Id": 416, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" + "Rank": 2, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { - "CommandName": "Get-PnPContentType", - "Rank": 1, "Id": 417, - "Command": "Get-PnPContentType" + "Rank": 1, + "Command": "Get-PnPContentType", + "CommandName": "Get-PnPContentType" }, { - "CommandName": "Get-PnPContentType", - "Rank": 2, "Id": 418, - "Command": "Get-PnPContentType -InSiteHierarchy" + "Rank": 2, + "Command": "Get-PnPContentType -InSiteHierarchy", + "CommandName": "Get-PnPContentType" }, { - "CommandName": "Get-PnPContentType", - "Rank": 3, "Id": 419, - "Command": "Get-PnPContentType -Identity \"Project Document\"" + "Rank": 3, + "Command": "Get-PnPContentType -Identity \"Project Document\"", + "CommandName": "Get-PnPContentType" }, { - "CommandName": "Get-PnPContentType", - "Rank": 4, "Id": 420, - "Command": "Get-PnPContentType -List \"Documents\"" + "Rank": 4, + "Command": "Get-PnPContentType -List \"Documents\"", + "CommandName": "Get-PnPContentType" }, { - "CommandName": "Get-PnPContentType", - "Rank": 5, "Id": 421, - "Command": "Get-PnPContentType -Includes \"SchemaXml\"" + "Rank": 5, + "Command": "Get-PnPContentType -Includes \"SchemaXml\"", + "CommandName": "Get-PnPContentType" }, { - "CommandName": "Get-PnPContentTypePublishingStatus", - "Rank": 1, "Id": 422, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" + "Rank": 1, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "CommandName": "Get-PnPContentTypePublishingStatus" }, { - "CommandName": "Get-PnPCustomAction", - "Rank": 1, "Id": 423, - "Command": "Get-PnPCustomAction" + "Rank": 1, + "Command": "Get-PnPCustomAction", + "CommandName": "Get-PnPCustomAction" }, { - "CommandName": "Get-PnPCustomAction", - "Rank": 2, "Id": 424, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 2, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Get-PnPCustomAction" }, { - "CommandName": "Get-PnPCustomAction", - "Rank": 3, "Id": 425, - "Command": "Get-PnPCustomAction -Scope web" + "Rank": 3, + "Command": "Get-PnPCustomAction -Scope web", + "CommandName": "Get-PnPCustomAction" }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1, "Id": 426, - "Command": "Get-PnPDeletedMicrosoft365Group" + "Rank": 1, + "Command": "Get-PnPDeletedMicrosoft365Group", + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Rank": 2, "Id": 427, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Rank": 2, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { - "CommandName": "Get-PnPDeletedTeam", - "Rank": 1, "Id": 428, - "Command": "Get-PnPDeletedTeam" + "Rank": 1, + "Command": "Get-PnPDeletedTeam", + "CommandName": "Get-PnPDeletedTeam" }, { - "CommandName": "Get-PnPDiagnostics", - "Rank": 1, "Id": 429, - "Command": "Get-PnPDiagnostics" + "Rank": 1, + "Command": "Get-PnPDiagnostics", + "CommandName": "Get-PnPDiagnostics" }, { - "CommandName": "Get-PnPDisableSpacesActivation", - "Rank": 1, "Id": 430, - "Command": "Get-PnPDisableSpacesActivation" + "Rank": 1, + "Command": "Get-PnPDisableSpacesActivation", + "CommandName": "Get-PnPDisableSpacesActivation" }, { - "CommandName": "Get-PnPDocumentSetTemplate", - "Rank": 1, "Id": 431, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" + "Rank": 1, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "CommandName": "Get-PnPDocumentSetTemplate" }, { - "CommandName": "Get-PnPDocumentSetTemplate", - "Rank": 2, "Id": 432, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" + "Rank": 2, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "CommandName": "Get-PnPDocumentSetTemplate" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 1, "Id": 433, - "Command": "Get-PnPEventReceiver" + "Rank": 1, + "Command": "Get-PnPEventReceiver", + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 2, "Id": 434, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 2, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 3, "Id": 435, - "Command": "Get-PnPEventReceiver -Identity MyReceiver" + "Rank": 3, + "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 4, "Id": 436, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"" + "Rank": 4, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 5, "Id": 437, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 5, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 6, "Id": 438, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" + "Rank": 6, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 7, "Id": 439, - "Command": "Get-PnPEventReceiver -Scope Site" + "Rank": 7, + "Command": "Get-PnPEventReceiver -Scope Site", + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 8, "Id": 440, - "Command": "Get-PnPEventReceiver -Scope Web" + "Rank": 8, + "Command": "Get-PnPEventReceiver -Scope Web", + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 9, "Id": 441, - "Command": "Get-PnPEventReceiver -Scope All" + "Rank": 9, + "Command": "Get-PnPEventReceiver -Scope All", + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPException", - "Rank": 1, "Id": 442, - "Command": "Get-PnPException" + "Rank": 1, + "Command": "Get-PnPException", + "CommandName": "Get-PnPException" }, { - "CommandName": "Get-PnPException", - "Rank": 2, "Id": 443, - "Command": "Get-PnPException -All" + "Rank": 2, + "Command": "Get-PnPException -All", + "CommandName": "Get-PnPException" }, { - "CommandName": "Get-PnPExternalUser", - "Rank": 1, "Id": 444, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" + "Rank": 1, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "CommandName": "Get-PnPExternalUser" }, { - "CommandName": "Get-PnPExternalUser", - "Rank": 2, "Id": 445, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" + "Rank": 2, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "CommandName": "Get-PnPExternalUser" }, { - "CommandName": "Get-PnPFeature", - "Rank": 1, "Id": 446, - "Command": "Get-PnPFeature" + "Rank": 1, + "Command": "Get-PnPFeature", + "CommandName": "Get-PnPFeature" }, { - "CommandName": "Get-PnPFeature", - "Rank": 2, "Id": 447, - "Command": "Get-PnPFeature -Scope Site" + "Rank": 2, + "Command": "Get-PnPFeature -Scope Site", + "CommandName": "Get-PnPFeature" }, { - "CommandName": "Get-PnPFeature", - "Rank": 3, "Id": 448, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 3, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPFeature" }, { - "CommandName": "Get-PnPFeature", - "Rank": 4, "Id": 449, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" + "Rank": 4, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "CommandName": "Get-PnPFeature" }, { - "CommandName": "Get-PnPField", - "Rank": 1, "Id": 450, - "Command": "Get-PnPField" + "Rank": 1, + "Command": "Get-PnPField", + "CommandName": "Get-PnPField" }, { - "CommandName": "Get-PnPField", - "Rank": 2, "Id": 451, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Rank": 2, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "CommandName": "Get-PnPField" }, { - "CommandName": "Get-PnPField", - "Rank": 3, "Id": 452, - "Command": "Get-PnPField -Group \"Custom Columns\"" + "Rank": 3, + "Command": "Get-PnPField -Group \"Custom Columns\"", + "CommandName": "Get-PnPField" }, { - "CommandName": "Get-PnPFile", - "Rank": 1, "Id": 453, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" + "Rank": 1, + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "CommandName": "Get-PnPFile" }, { - "CommandName": "Get-PnPFile", - "Rank": 2, "Id": 454, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" + "Rank": 2, + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "CommandName": "Get-PnPFile" }, { - "CommandName": "Get-PnPFile", - "Rank": 3, "Id": 455, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" + "Rank": 3, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "CommandName": "Get-PnPFile" }, { - "CommandName": "Get-PnPFile", - "Rank": 4, "Id": 456, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" + "Rank": 4, + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "CommandName": "Get-PnPFile" }, { - "CommandName": "Get-PnPFile", - "Rank": 5, "Id": 457, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" + "Rank": 5, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "CommandName": "Get-PnPFile" }, { - "CommandName": "Get-PnPFile", - "Rank": 6, "Id": 458, - "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 /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", + "CommandName": "Get-PnPFile" }, { - "CommandName": "Get-PnPFile", - "Rank": 7, "Id": 459, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" + "Rank": 7, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "CommandName": "Get-PnPFile" }, { - "CommandName": "Get-PnPFileSharingLink", - "Rank": 1, "Id": 460, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Rank": 1, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Get-PnPFileSharingLink" }, { - "CommandName": "Get-PnPFileVersion", - "Rank": 1, "Id": 461, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" + "Rank": 1, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "CommandName": "Get-PnPFileVersion" }, { - "CommandName": "Get-PnPFileVersion", - "Rank": 2, "Id": 462, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" + "Rank": 2, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "CommandName": "Get-PnPFileVersion" }, { - "CommandName": "Get-PnPFlow", - "Rank": 1, "Id": 463, - "Command": "Get-PnPFlow -AsAdmin" + "Rank": 1, + "Command": "Get-PnPFlow -AsAdmin", + "CommandName": "Get-PnPFlow" }, { - "CommandName": "Get-PnPFlow", - "Rank": 2, "Id": 464, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe" + "Rank": 2, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "CommandName": "Get-PnPFlow" }, { - "CommandName": "Get-PnPFlow", - "Rank": 3, "Id": 465, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" + "Rank": 3, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "CommandName": "Get-PnPFlow" }, { - "CommandName": "Get-PnPFlowOwner", - "Rank": 1, "Id": 466, - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" + "Rank": 1, + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "CommandName": "Get-PnPFlowOwner" }, { - "CommandName": "Get-PnPFolder", - "Rank": 1, "Id": 467, - "Command": "Get-PnPFolder" + "Rank": 1, + "Command": "Get-PnPFolder", + "CommandName": "Get-PnPFolder" }, { - "CommandName": "Get-PnPFolder", - "Rank": 2, "Id": 468, - "Command": "Get-PnPFolder -Url \"Shared Documents\"" + "Rank": 2, + "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "CommandName": "Get-PnPFolder" }, { - "CommandName": "Get-PnPFolder", - "Rank": 3, "Id": 469, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" + "Rank": 3, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "CommandName": "Get-PnPFolder" }, { - "CommandName": "Get-PnPFolder", - "Rank": 4, "Id": 470, - "Command": "Get-PnPFolder -List \"Shared Documents\"" + "Rank": 4, + "Command": "Get-PnPFolder -List \"Shared Documents\"", + "CommandName": "Get-PnPFolder" }, { - "CommandName": "Get-PnPFolderFile", - "Rank": 1, "Id": 471, - "Command": "Get-PnPFolderFile" + "Rank": 1, + "Command": "Get-PnPFolderFile", + "CommandName": "Get-PnPFolderFile" }, { - "CommandName": "Get-PnPFolderFile", - "Rank": 2, "Id": 472, - "Command": "Get-PnPFolderFile -Recurse" + "Rank": 2, + "Command": "Get-PnPFolderFile -Recurse", + "CommandName": "Get-PnPFolderFile" }, { - "CommandName": "Get-PnPFolderFile", - "Rank": 3, "Id": 473, - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"" + "Rank": 3, + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderFile" }, { - "CommandName": "Get-PnPFolderFile", - "Rank": 4, "Id": 474, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Rank": 4, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "CommandName": "Get-PnPFolderFile" }, { - "CommandName": "Get-PnPFolderFile", - "Rank": 5, "Id": 475, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Rank": 5, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderFile" }, { - "CommandName": "Get-PnPFolderFolder", - "Rank": 1, "Id": 476, - "Command": "Get-PnPFolderFolder" + "Rank": 1, + "Command": "Get-PnPFolderFolder", + "CommandName": "Get-PnPFolderFolder" }, { - "CommandName": "Get-PnPFolderFolder", - "Rank": 2, "Id": 477, - "Command": "Get-PnPFolderFolder -Recurse" + "Rank": 2, + "Command": "Get-PnPFolderFolder -Recurse", + "CommandName": "Get-PnPFolderFolder" }, { - "CommandName": "Get-PnPFolderFolder", - "Rank": 3, "Id": 478, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"" + "Rank": 3, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderFolder" }, { - "CommandName": "Get-PnPFolderFolder", - "Rank": 4, "Id": 479, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" + "Rank": 4, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "CommandName": "Get-PnPFolderFolder" }, { - "CommandName": "Get-PnPFolderFolder", - "Rank": 5, "Id": 480, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" + "Rank": 5, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "CommandName": "Get-PnPFolderFolder" }, { - "CommandName": "Get-PnPFolderFolder", - "Rank": 6, "Id": 481, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Rank": 6, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderFolder" }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 1, "Id": 482, - "Command": "Get-PnPFolderItem" + "Rank": 1, + "Command": "Get-PnPFolderItem", + "CommandName": "Get-PnPFolderItem" }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 2, "Id": 483, - "Command": "Get-PnPFolderItem -Recurse" + "Rank": 2, + "Command": "Get-PnPFolderItem -Recurse", + "CommandName": "Get-PnPFolderItem" }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 3, "Id": 484, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" + "Rank": 3, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderItem" }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 4, "Id": 485, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Rank": 4, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "CommandName": "Get-PnPFolderItem" }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 5, "Id": 486, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" + "Rank": 5, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "CommandName": "Get-PnPFolderItem" }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 6, "Id": 487, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Rank": 6, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderItem" }, { - "CommandName": "Get-PnPFolderSharingLink", - "Rank": 1, "Id": 488, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Rank": 1, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Get-PnPFolderSharingLink" }, { - "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 1, "Id": 489, - "Command": "Get-PnPFolderStorageMetric" + "Rank": 1, + "Command": "Get-PnPFolderStorageMetric", + "CommandName": "Get-PnPFolderStorageMetric" }, { - "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 2, "Id": 490, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" + "Rank": 2, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "CommandName": "Get-PnPFolderStorageMetric" }, { - "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 3, "Id": 491, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" + "Rank": 3, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "CommandName": "Get-PnPFolderStorageMetric" }, { - "CommandName": "Get-PnPFooter", - "Rank": 1, "Id": 492, - "Command": "Get-PnPFooter" + "Rank": 1, + "Command": "Get-PnPFooter", + "CommandName": "Get-PnPFooter" }, { - "CommandName": "Get-PnPGraphAccessToken", - "Rank": 1, "Id": 493, - "Command": "Get-PnPGraphAccessToken" + "Rank": 1, + "Command": "Get-PnPGraphAccessToken", + "CommandName": "Get-PnPGraphAccessToken" }, { - "CommandName": "Get-PnPGraphAccessToken", - "Rank": 2, "Id": 494, - "Command": "Get-PnPGraphAccessToken -Decoded" + "Rank": 2, + "Command": "Get-PnPGraphAccessToken -Decoded", + "CommandName": "Get-PnPGraphAccessToken" }, { - "CommandName": "Get-PnPGraphSubscription", - "Rank": 1, "Id": 495, - "Command": "Get-PnPGraphSubscription" + "Rank": 1, + "Command": "Get-PnPGraphSubscription", + "CommandName": "Get-PnPGraphSubscription" }, { - "CommandName": "Get-PnPGraphSubscription", - "Rank": 2, "Id": 496, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Rank": 2, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "CommandName": "Get-PnPGraphSubscription" }, { - "CommandName": "Get-PnPGroup", - "Rank": 1, "Id": 497, - "Command": "Get-PnPGroup" + "Rank": 1, + "Command": "Get-PnPGroup", + "CommandName": "Get-PnPGroup" }, { - "CommandName": "Get-PnPGroup", - "Rank": 2, "Id": 498, - "Command": "Get-PnPGroup -Identity 'My Site Users'" + "Rank": 2, + "Command": "Get-PnPGroup -Identity 'My Site Users'", + "CommandName": "Get-PnPGroup" }, { - "CommandName": "Get-PnPGroup", - "Rank": 3, "Id": 499, - "Command": "Get-PnPGroup -AssociatedMemberGroup" + "Rank": 3, + "Command": "Get-PnPGroup -AssociatedMemberGroup", + "CommandName": "Get-PnPGroup" }, { - "CommandName": "Get-PnPGroupMember", - "Rank": 1, "Id": 500, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" + "Rank": 1, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "CommandName": "Get-PnPGroupMember" }, { - "CommandName": "Get-PnPGroupMember", - "Rank": 2, "Id": 501, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" + "Rank": 2, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "CommandName": "Get-PnPGroupMember" }, { - "CommandName": "Get-PnPGroupPermissions", - "Rank": 1, "Id": 502, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" + "Rank": 1, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "CommandName": "Get-PnPGroupPermissions" }, { - "CommandName": "Get-PnPHideDefaultThemes", - "Rank": 1, "Id": 503, - "Command": "Get-PnPHideDefaultThemes" + "Rank": 1, + "Command": "Get-PnPHideDefaultThemes", + "CommandName": "Get-PnPHideDefaultThemes" }, { - "CommandName": "Get-PnPHomePage", - "Rank": 1, "Id": 504, - "Command": "Get-PnPHomePage" + "Rank": 1, + "Command": "Get-PnPHomePage", + "CommandName": "Get-PnPHomePage" }, { - "CommandName": "Get-PnPHomeSite", - "Rank": 1, "Id": 505, - "Command": "Get-PnPHomeSite" + "Rank": 1, + "Command": "Get-PnPHomeSite", + "CommandName": "Get-PnPHomeSite" }, { - "CommandName": "Get-PnPHomeSite", - "Rank": 2, "Id": 506, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" + "Rank": 2, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "CommandName": "Get-PnPHomeSite" }, { - "CommandName": "Get-PnPHomeSite", - "Rank": 3, "Id": 507, - "Command": "Get-PnPHomeSite -Detailed" + "Rank": 3, + "Command": "Get-PnPHomeSite -Detailed", + "CommandName": "Get-PnPHomeSite" }, { - "CommandName": "Get-PnPHubSite", - "Rank": 1, "Id": 508, - "Command": "Get-PnPHubSite" + "Rank": 1, + "Command": "Get-PnPHubSite", + "CommandName": "Get-PnPHubSite" }, { - "CommandName": "Get-PnPHubSite", - "Rank": 2, "Id": 509, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Rank": 2, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "CommandName": "Get-PnPHubSite" }, { - "CommandName": "Get-PnPHubSite", - "Rank": 3, "Id": 510, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" + "Rank": 3, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "CommandName": "Get-PnPHubSite" }, { - "CommandName": "Get-PnPHubSiteChild", - "Rank": 1, "Id": 511, - "Command": "Get-PnPHubSiteChild" + "Rank": 1, + "Command": "Get-PnPHubSiteChild", + "CommandName": "Get-PnPHubSiteChild" }, { - "CommandName": "Get-PnPHubSiteChild", - "Rank": 2, "Id": 512, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Rank": 2, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "CommandName": "Get-PnPHubSiteChild" }, { - "CommandName": "Get-PnPInPlaceRecordsManagement", - "Rank": 1, "Id": 513, - "Command": "Get-PnPInPlaceRecordsManagement" + "Rank": 1, + "Command": "Get-PnPInPlaceRecordsManagement", + "CommandName": "Get-PnPInPlaceRecordsManagement" }, { - "CommandName": "Get-PnPIsSiteAliasAvailable", - "Rank": 1, "Id": 514, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" + "Rank": 1, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "CommandName": "Get-PnPIsSiteAliasAvailable" }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 1, "Id": 515, - "Command": "Get-PnPJavaScriptLink" + "Rank": 1, + "Command": "Get-PnPJavaScriptLink", + "CommandName": "Get-PnPJavaScriptLink" }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 2, "Id": 516, - "Command": "Get-PnPJavaScriptLink -Scope All" + "Rank": 2, + "Command": "Get-PnPJavaScriptLink -Scope All", + "CommandName": "Get-PnPJavaScriptLink" }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 3, "Id": 517, - "Command": "Get-PnPJavaScriptLink -Scope Web" + "Rank": 3, + "Command": "Get-PnPJavaScriptLink -Scope Web", + "CommandName": "Get-PnPJavaScriptLink" }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 4, "Id": 518, - "Command": "Get-PnPJavaScriptLink -Scope Site" + "Rank": 4, + "Command": "Get-PnPJavaScriptLink -Scope Site", + "CommandName": "Get-PnPJavaScriptLink" }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 5, "Id": 519, - "Command": "Get-PnPJavaScriptLink -Name Test" + "Rank": 5, + "Command": "Get-PnPJavaScriptLink -Name Test", + "CommandName": "Get-PnPJavaScriptLink" }, { - "CommandName": "Get-PnPKnowledgeHubSite", - "Rank": 1, "Id": 520, - "Command": "Get-PnPKnowledgeHubSite" + "Rank": 1, + "Command": "Get-PnPKnowledgeHubSite", + "CommandName": "Get-PnPKnowledgeHubSite" }, { - "CommandName": "Get-PnPLabel", - "Rank": 1, "Id": 521, - "Command": "Get-PnPLabel" + "Rank": 1, + "Command": "Get-PnPLabel", + "CommandName": "Get-PnPLabel" }, { - "CommandName": "Get-PnPLabel", - "Rank": 2, "Id": 522, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" + "Rank": 2, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "CommandName": "Get-PnPLabel" }, { - "CommandName": "Get-PnPLargeListOperationStatus", - "Rank": 1, "Id": 523, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" + "Rank": 1, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "CommandName": "Get-PnPLargeListOperationStatus" }, { - "CommandName": "Get-PnPList", - "Rank": 1, "Id": 524, - "Command": "Get-PnPList" + "Rank": 1, + "Command": "Get-PnPList", + "CommandName": "Get-PnPList" }, { - "CommandName": "Get-PnPList", - "Rank": 2, "Id": 525, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 2, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Get-PnPList" }, { - "CommandName": "Get-PnPList", - "Rank": 3, "Id": 526, - "Command": "Get-PnPList -Identity Lists/Announcements" + "Rank": 3, + "Command": "Get-PnPList -Identity Lists/Announcements", + "CommandName": "Get-PnPList" }, { - "CommandName": "Get-PnPList", - "Rank": 4, "Id": 527, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" + "Rank": 4, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "CommandName": "Get-PnPList" }, { - "CommandName": "Get-PnPList", - "Rank": 5, "Id": 528, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" + "Rank": 5, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "CommandName": "Get-PnPList" }, { - "CommandName": "Get-PnPListDesign", - "Rank": 1, "Id": 529, - "Command": "Get-PnPListDesign" + "Rank": 1, + "Command": "Get-PnPListDesign", + "CommandName": "Get-PnPListDesign" }, { - "CommandName": "Get-PnPListDesign", - "Rank": 2, "Id": 530, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPListDesign" }, { - "CommandName": "Get-PnPListDesign", - "Rank": 3, "Id": 531, - "Command": "Get-PnPListDesign -Identity ListEvent" + "Rank": 3, + "Command": "Get-PnPListDesign -Identity ListEvent", + "CommandName": "Get-PnPListDesign" }, { - "CommandName": "Get-PnPListInformationRightsManagement", - "Rank": 1, "Id": 532, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" + "Rank": 1, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "CommandName": "Get-PnPListInformationRightsManagement" }, { - "CommandName": "Get-PnPListItem", - "Rank": 1, "Id": 533, - "Command": "Get-PnPListItem -List Tasks" + "Rank": 1, + "Command": "Get-PnPListItem -List Tasks", + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 2, "Id": 534, - "Command": "Get-PnPListItem -List Tasks -Id 1" + "Rank": 2, + "Command": "Get-PnPListItem -List Tasks -Id 1", + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 3, "Id": 535, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" + "Rank": 3, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 4, "Id": 536, - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" + "Rank": 4, + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 5, "Id": 537, - "Command": "Get-PnPListItem -List Tasks -Query \"\"" + "Rank": 5, + "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 6, "Id": 538, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000" + "Rank": 6, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 7, "Id": 539, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" + "Rank": 7, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 8, "Id": 540, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" + "Rank": 8, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 9, "Id": 541, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" + "Rank": 9, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItemAttachment", - "Rank": 1, "Id": 542, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" + "Rank": 1, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", + "CommandName": "Get-PnPListItemAttachment" }, { - "CommandName": "Get-PnPListItemAttachment", - "Rank": 2, "Id": 543, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" + "Rank": 2, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "CommandName": "Get-PnPListItemAttachment" }, { - "CommandName": "Get-PnPListItemComment", - "Rank": 1, "Id": 544, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1" + "Rank": 1, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "CommandName": "Get-PnPListItemComment" }, { - "CommandName": "Get-PnPListItemPermission", - "Rank": 1, "Id": 545, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" + "Rank": 1, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "CommandName": "Get-PnPListItemPermission" }, { - "CommandName": "Get-PnPListItemVersion", - "Rank": 1, "Id": 546, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" + "Rank": 1, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "CommandName": "Get-PnPListItemVersion" }, { - "CommandName": "Get-PnPListPermissions", - "Rank": 1, "Id": 547, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" + "Rank": 1, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "CommandName": "Get-PnPListPermissions" }, { - "CommandName": "Get-PnPListPermissions", - "Rank": 2, "Id": 548, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" + "Rank": 2, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "CommandName": "Get-PnPListPermissions" }, { - "CommandName": "Get-PnPListRecordDeclaration", - "Rank": 1, "Id": 549, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" + "Rank": 1, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "CommandName": "Get-PnPListRecordDeclaration" }, { - "CommandName": "Get-PnPMasterPage", - "Rank": 1, "Id": 550, - "Command": "Get-PnPMasterPage" + "Rank": 1, + "Command": "Get-PnPMasterPage", + "CommandName": "Get-PnPMasterPage" }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Rank": 1, "Id": 551, - "Command": "Get-PnPMessageCenterAnnouncement" + "Rank": 1, + "Command": "Get-PnPMessageCenterAnnouncement", + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Rank": 2, "Id": 552, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" + "Rank": 2, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1, "Id": 553, - "Command": "Get-PnPMicrosoft365ExpiringGroup" + "Rank": 1, + "Command": "Get-PnPMicrosoft365ExpiringGroup", + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 2, "Id": 554, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" + "Rank": 2, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 1, "Id": 555, - "Command": "Get-PnPMicrosoft365Group" + "Rank": 1, + "Command": "Get-PnPMicrosoft365Group", + "CommandName": "Get-PnPMicrosoft365Group" }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 2, "Id": 556, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId" + "Rank": 2, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365Group" }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 3, "Id": 557, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" + "Rank": 3, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "CommandName": "Get-PnPMicrosoft365Group" }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 4, "Id": 558, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" + "Rank": 4, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "CommandName": "Get-PnPMicrosoft365Group" }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 5, "Id": 559, - "Command": "Get-PnPMicrosoft365Group -Identity $group" + "Rank": 5, + "Command": "Get-PnPMicrosoft365Group -Identity $group", + "CommandName": "Get-PnPMicrosoft365Group" }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 6, "Id": 560, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" + "Rank": 6, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "CommandName": "Get-PnPMicrosoft365Group" }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1, "Id": 561, - "Command": "Get-PnPMicrosoft365GroupEndpoint" + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupEndpoint", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 2, "Id": 562, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 3, "Id": 563, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 1, "Id": 564, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 2, "Id": 565, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 3, "Id": 566, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Rank": 1, "Id": 567, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Rank": 2, "Id": 568, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1, "Id": 569, - "Command": "Get-PnPMicrosoft365GroupSettings" + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupSettings", + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Rank": 2, "Id": 570, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1, "Id": 571, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates" + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 2, "Id": 572, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1, "Id": 573, - "Command": "Get-PnPMicrosoft365GroupTeam" + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupTeam", + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 2, "Id": 574, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 3, "Id": 575, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1, "Id": 576, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity" + "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 2, "Id": 577, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" + "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 3, "Id": 578, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "CommandName": "Get-PnPNavigationNode", - "Rank": 1, "Id": 579, - "Command": "Get-PnPNavigationNode" + "Rank": 1, + "Command": "Get-PnPNavigationNode", + "CommandName": "Get-PnPNavigationNode" }, { - "CommandName": "Get-PnPNavigationNode", - "Rank": 2, "Id": 580, - "Command": "Get-PnPNavigationNode -Location QuickLaunch" + "Rank": 2, + "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "CommandName": "Get-PnPNavigationNode" }, { - "CommandName": "Get-PnPNavigationNode", - "Rank": 3, "Id": 581, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar" + "Rank": 3, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "CommandName": "Get-PnPNavigationNode" }, { - "CommandName": "Get-PnPOrgAssetsLibrary", - "Rank": 1, "Id": 582, - "Command": "Get-PnPOrgAssetsLibrary" + "Rank": 1, + "Command": "Get-PnPOrgAssetsLibrary", + "CommandName": "Get-PnPOrgAssetsLibrary" }, { - "CommandName": "Get-PnPOrgNewsSite", - "Rank": 1, "Id": 583, - "Command": "Get-PnPOrgNewsSite" + "Rank": 1, + "Command": "Get-PnPOrgNewsSite", + "CommandName": "Get-PnPOrgNewsSite" }, { - "CommandName": "Get-PnPPage", - "Rank": 1, "Id": 584, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" + "Rank": 1, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "CommandName": "Get-PnPPage" }, { - "CommandName": "Get-PnPPage", - "Rank": 2, "Id": 585, - "Command": "Get-PnPPage \"MyPage\"" + "Rank": 2, + "Command": "Get-PnPPage \"MyPage\"", + "CommandName": "Get-PnPPage" }, { - "CommandName": "Get-PnPPage", - "Rank": 3, "Id": 586, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" + "Rank": 3, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "CommandName": "Get-PnPPage" }, { - "CommandName": "Get-PnPPage", - "Rank": 4, "Id": 587, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" + "Rank": 4, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "CommandName": "Get-PnPPage" }, { - "CommandName": "Get-PnPPageComponent", - "Rank": 1, "Id": 588, - "Command": "Get-PnPPageComponent -Page Home" + "Rank": 1, + "Command": "Get-PnPPageComponent -Page Home", + "CommandName": "Get-PnPPageComponent" }, { - "CommandName": "Get-PnPPageComponent", - "Rank": 2, "Id": 589, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 2, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPPageComponent" }, { - "CommandName": "Get-PnPPageComponent", - "Rank": 3, "Id": 590, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable" + "Rank": 3, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "CommandName": "Get-PnPPageComponent" }, { - "CommandName": "Get-PnPPlannerBucket", - "Rank": 1, "Id": 591, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" + "Rank": 1, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "CommandName": "Get-PnPPlannerBucket" }, { - "CommandName": "Get-PnPPlannerConfiguration", - "Rank": 1, "Id": 592, - "Command": "Get-PnPPlannerConfiguration" + "Rank": 1, + "Command": "Get-PnPPlannerConfiguration", + "CommandName": "Get-PnPPlannerConfiguration" }, { - "CommandName": "Get-PnPPlannerPlan", - "Rank": 1, "Id": 593, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" + "Rank": 1, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "CommandName": "Get-PnPPlannerPlan" }, { - "CommandName": "Get-PnPPlannerPlan", - "Rank": 2, "Id": 594, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" + "Rank": 2, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "CommandName": "Get-PnPPlannerPlan" }, { - "CommandName": "Get-PnPPlannerPlan", - "Rank": 3, "Id": 595, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" + "Rank": 3, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "CommandName": "Get-PnPPlannerPlan" }, { - "CommandName": "Get-PnPPlannerRosterMember", - "Rank": 1, "Id": 596, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Rank": 1, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "CommandName": "Get-PnPPlannerRosterMember" }, { - "CommandName": "Get-PnPPlannerRosterPlan", - "Rank": 1, "Id": 597, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" + "Rank": 1, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "CommandName": "Get-PnPPlannerRosterPlan" }, { - "CommandName": "Get-PnPPlannerRosterPlan", - "Rank": 2, "Id": 598, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 2, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPPlannerRosterPlan" }, { - "CommandName": "Get-PnPPlannerTask", - "Rank": 1, "Id": 599, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" + "Rank": 1, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "CommandName": "Get-PnPPlannerTask" }, { - "CommandName": "Get-PnPPlannerTask", - "Rank": 2, "Id": 600, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Rank": 2, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "CommandName": "Get-PnPPlannerTask" }, { - "CommandName": "Get-PnPPlannerTask", - "Rank": 3, "Id": 601, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Rank": 3, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "CommandName": "Get-PnPPlannerTask" }, { - "CommandName": "Get-PnPPlannerUserPolicy", - "Rank": 1, "Id": 602, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 1, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPPlannerUserPolicy" }, { - "CommandName": "Get-PnPPowerPlatformConnector", - "Rank": 1, "Id": 603, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" + "Rank": 1, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "CommandName": "Get-PnPPowerPlatformConnector" }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 1, "Id": 604, - "Command": "Get-PnPPowerPlatformEnvironment" + "Rank": 1, + "Command": "Get-PnPPowerPlatformEnvironment", + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 2, "Id": 605, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" + "Rank": 2, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 3, "Id": 606, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" + "Rank": 3, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1, "Id": 607, - "Command": "Get-PnPPowerShellTelemetryEnabled" + "Rank": 1, + "Command": "Get-PnPPowerShellTelemetryEnabled", + "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 1, "Id": 608, - "Command": "Get-PnPPropertyBag" + "Rank": 1, + "Command": "Get-PnPPropertyBag", + "CommandName": "Get-PnPPropertyBag" }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 2, "Id": 609, - "Command": "Get-PnPPropertyBag -Key MyKey" + "Rank": 2, + "Command": "Get-PnPPropertyBag -Key MyKey", + "CommandName": "Get-PnPPropertyBag" }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 3, "Id": 610, - "Command": "Get-PnPPropertyBag -Folder /MyFolder" + "Rank": 3, + "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "CommandName": "Get-PnPPropertyBag" }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 4, "Id": 611, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" + "Rank": 4, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "CommandName": "Get-PnPPropertyBag" }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 5, "Id": 612, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" + "Rank": 5, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "CommandName": "Get-PnPPropertyBag" }, { - "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 1, "Id": 613, - "Command": "Get-PnPPublishingImageRendition" + "Rank": 1, + "Command": "Get-PnPPublishingImageRendition", + "CommandName": "Get-PnPPublishingImageRendition" }, { - "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 2, "Id": 614, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" + "Rank": 2, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "CommandName": "Get-PnPPublishingImageRendition" }, { - "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 3, "Id": 615, - "Command": "Get-PnPPublishingImageRendition -Identity 2" + "Rank": 3, + "Command": "Get-PnPPublishingImageRendition -Identity 2", + "CommandName": "Get-PnPPublishingImageRendition" }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 1, "Id": 616, - "Command": "Get-PnPRecycleBinItem" + "Rank": 1, + "Command": "Get-PnPRecycleBinItem", + "CommandName": "Get-PnPRecycleBinItem" }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 2, "Id": 617, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" + "Rank": 2, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "CommandName": "Get-PnPRecycleBinItem" }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 3, "Id": 618, - "Command": "Get-PnPRecycleBinItem -FirstStage" + "Rank": 3, + "Command": "Get-PnPRecycleBinItem -FirstStage", + "CommandName": "Get-PnPRecycleBinItem" }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 4, "Id": 619, - "Command": "Get-PnPRecycleBinItem -SecondStage" + "Rank": 4, + "Command": "Get-PnPRecycleBinItem -SecondStage", + "CommandName": "Get-PnPRecycleBinItem" }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 5, "Id": 620, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000" + "Rank": 5, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "CommandName": "Get-PnPRecycleBinItem" }, { - "CommandName": "Get-PnPRequestAccessEmails", - "Rank": 1, "Id": 621, - "Command": "Get-PnPRequestAccessEmails" + "Rank": 1, + "Command": "Get-PnPRequestAccessEmails", + "CommandName": "Get-PnPRequestAccessEmails" }, { - "CommandName": "Get-PnPRetentionLabel", - "Rank": 1, "Id": 622, - "Command": "Get-PnPRetentionLabel" + "Rank": 1, + "Command": "Get-PnPRetentionLabel", + "CommandName": "Get-PnPRetentionLabel" }, { - "CommandName": "Get-PnPRetentionLabel", - "Rank": 2, "Id": 623, - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" + "Rank": 2, + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "CommandName": "Get-PnPRetentionLabel" }, { - "CommandName": "Get-PnPRoleDefinition", - "Rank": 1, "Id": 624, - "Command": "Get-PnPRoleDefinition" + "Rank": 1, + "Command": "Get-PnPRoleDefinition", + "CommandName": "Get-PnPRoleDefinition" }, { - "CommandName": "Get-PnPRoleDefinition", - "Rank": 2, "Id": 625, - "Command": "Get-PnPRoleDefinition -Identity Read" + "Rank": 2, + "Command": "Get-PnPRoleDefinition -Identity Read", + "CommandName": "Get-PnPRoleDefinition" }, { - "CommandName": "Get-PnPRoleDefinition", - "Rank": 3, "Id": 626, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" + "Rank": 3, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "CommandName": "Get-PnPRoleDefinition" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 1, "Id": 627, - "Command": "Get-PnPSearchConfiguration" + "Rank": 1, + "Command": "Get-PnPSearchConfiguration", + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 2, "Id": 628, - "Command": "Get-PnPSearchConfiguration -Scope Site" + "Rank": 2, + "Command": "Get-PnPSearchConfiguration -Scope Site", + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 3, "Id": 629, - "Command": "Get-PnPSearchConfiguration -Scope Subscription" + "Rank": 3, + "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 4, "Id": 630, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Rank": 4, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 5, "Id": 631, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" + "Rank": 5, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 6, "Id": 632, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" + "Rank": 6, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 7, "Id": 633, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" + "Rank": 7, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 8, "Id": 634, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" + "Rank": 8, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 1, "Id": 635, - "Command": "Get-PnPSearchCrawlLog" + "Rank": 1, + "Command": "Get-PnPSearchCrawlLog", + "CommandName": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 2, "Id": 636, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" + "Rank": 2, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "CommandName": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 3, "Id": 637, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" + "Rank": 3, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "CommandName": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 4, "Id": 638, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" + "Rank": 4, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "CommandName": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 5, "Id": 639, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" + "Rank": 5, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "CommandName": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 6, "Id": 640, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" + "Rank": 6, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "CommandName": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 7, "Id": 641, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" + "Rank": 7, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "CommandName": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchSettings", - "Rank": 1, "Id": 642, - "Command": "Get-PnPSearchSettings" + "Rank": 1, + "Command": "Get-PnPSearchSettings", + "CommandName": "Get-PnPSearchSettings" }, { - "CommandName": "Get-PnPServiceCurrentHealth", - "Rank": 1, "Id": 643, - "Command": "Get-PnPServiceCurrentHealth" + "Rank": 1, + "Command": "Get-PnPServiceCurrentHealth", + "CommandName": "Get-PnPServiceCurrentHealth" }, { - "CommandName": "Get-PnPServiceCurrentHealth", - "Rank": 2, "Id": 644, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" + "Rank": 2, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "CommandName": "Get-PnPServiceCurrentHealth" }, { - "CommandName": "Get-PnPServiceHealthIssue", - "Rank": 1, "Id": 645, - "Command": "Get-PnPServiceHealthIssue" + "Rank": 1, + "Command": "Get-PnPServiceHealthIssue", + "CommandName": "Get-PnPServiceHealthIssue" }, { - "CommandName": "Get-PnPServiceHealthIssue", - "Rank": 2, "Id": 646, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" + "Rank": 2, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "CommandName": "Get-PnPServiceHealthIssue" }, { - "CommandName": "Get-PnPSharePointAddIn", - "Rank": 1, "Id": 647, - "Command": "Get-PnPSharePointAddIn" + "Rank": 1, + "Command": "Get-PnPSharePointAddIn", + "CommandName": "Get-PnPSharePointAddIn" }, { - "CommandName": "Get-PnPSharePointAddIn", - "Rank": 2, "Id": 648, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites" + "Rank": 2, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "CommandName": "Get-PnPSharePointAddIn" }, { - "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1, "Id": 649, - "Command": "Get-PnPSharingForNonOwnersOfSite" + "Rank": 1, + "Command": "Get-PnPSharingForNonOwnersOfSite", + "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { - "CommandName": "Get-PnPSite", - "Rank": 1, "Id": 650, - "Command": "Get-PnPSite" + "Rank": 1, + "Command": "Get-PnPSite", + "CommandName": "Get-PnPSite" }, { - "CommandName": "Get-PnPSite", - "Rank": 2, "Id": 651, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" + "Rank": 2, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "CommandName": "Get-PnPSite" }, { - "CommandName": "Get-PnPSiteClosure", - "Rank": 1, "Id": 652, - "Command": "Get-PnPSiteClosure" + "Rank": 1, + "Command": "Get-PnPSiteClosure", + "CommandName": "Get-PnPSiteClosure" }, { - "CommandName": "Get-PnPSiteCollectionAdmin", - "Rank": 1, "Id": 653, - "Command": "Get-PnPSiteCollectionAdmin" + "Rank": 1, + "Command": "Get-PnPSiteCollectionAdmin", + "CommandName": "Get-PnPSiteCollectionAdmin" }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1, "Id": 654, - "Command": "Get-PnPSiteCollectionAppCatalog" + "Rank": 1, + "Command": "Get-PnPSiteCollectionAppCatalog", + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 2, "Id": 655, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" + "Rank": 2, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 3, "Id": 656, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" + "Rank": 3, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Get-PnPSiteCollectionTermStore", - "Rank": 1, "Id": 657, - "Command": "Get-PnPSiteCollectionTermStore" + "Rank": 1, + "Command": "Get-PnPSiteCollectionTermStore", + "CommandName": "Get-PnPSiteCollectionTermStore" }, { - "CommandName": "Get-PnPSiteDesign", - "Rank": 1, "Id": 658, - "Command": "Get-PnPSiteDesign" + "Rank": 1, + "Command": "Get-PnPSiteDesign", + "CommandName": "Get-PnPSiteDesign" }, { - "CommandName": "Get-PnPSiteDesign", - "Rank": 2, "Id": 659, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteDesign" }, { - "CommandName": "Get-PnPSiteDesignRights", - "Rank": 1, "Id": 660, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteDesignRights" }, { - "CommandName": "Get-PnPSiteDesignRun", - "Rank": 1, "Id": 661, - "Command": "Get-PnPSiteDesignRun" + "Rank": 1, + "Command": "Get-PnPSiteDesignRun", + "CommandName": "Get-PnPSiteDesignRun" }, { - "CommandName": "Get-PnPSiteDesignRun", - "Rank": 2, "Id": 662, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" + "Rank": 2, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "CommandName": "Get-PnPSiteDesignRun" }, { - "CommandName": "Get-PnPSiteDesignTask", - "Rank": 1, "Id": 663, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" + "Rank": 1, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "CommandName": "Get-PnPSiteDesignTask" }, { - "CommandName": "Get-PnPSiteDesignTask", - "Rank": 2, "Id": 664, - "Command": "Get-PnPSiteDesignTask" + "Rank": 2, + "Command": "Get-PnPSiteDesignTask", + "CommandName": "Get-PnPSiteDesignTask" }, { - "CommandName": "Get-PnPSiteDesignTask", - "Rank": 3, "Id": 665, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "Rank": 3, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "CommandName": "Get-PnPSiteDesignTask" }, { - "CommandName": "Get-PnPSiteGroup", - "Rank": 1, "Id": 666, - "Command": "Get-PnPSiteGroup" + "Rank": 1, + "Command": "Get-PnPSiteGroup", + "CommandName": "Get-PnPSiteGroup" }, { - "CommandName": "Get-PnPSiteGroup", - "Rank": 2, "Id": 667, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Rank": 2, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "CommandName": "Get-PnPSiteGroup" }, { - "CommandName": "Get-PnPSiteGroup", - "Rank": 3, "Id": 668, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" + "Rank": 3, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "CommandName": "Get-PnPSiteGroup" }, { - "CommandName": "Get-PnPSiteGroup", - "Rank": 4, "Id": 669, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Rank": 4, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "CommandName": "Get-PnPSiteGroup" }, { - "CommandName": "Get-PnPSitePolicy", - "Rank": 1, "Id": 670, - "Command": "Get-PnPSitePolicy" + "Rank": 1, + "Command": "Get-PnPSitePolicy", + "CommandName": "Get-PnPSitePolicy" }, { - "CommandName": "Get-PnPSitePolicy", - "Rank": 2, "Id": 671, - "Command": "Get-PnPSitePolicy -AllAvailable" + "Rank": 2, + "Command": "Get-PnPSitePolicy -AllAvailable", + "CommandName": "Get-PnPSitePolicy" }, { - "CommandName": "Get-PnPSitePolicy", - "Rank": 3, "Id": 672, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" + "Rank": 3, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "CommandName": "Get-PnPSitePolicy" }, { - "CommandName": "Get-PnPSiteScript", - "Rank": 1, "Id": 673, - "Command": "Get-PnPSiteScript" + "Rank": 1, + "Command": "Get-PnPSiteScript", + "CommandName": "Get-PnPSiteScript" }, { - "CommandName": "Get-PnPSiteScript", - "Rank": 2, "Id": 674, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteScript" }, { - "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 1, "Id": 675, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" + "Rank": 1, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "CommandName": "Get-PnPSiteScriptFromList" }, { - "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 2, "Id": 676, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" + "Rank": 2, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "CommandName": "Get-PnPSiteScriptFromList" }, { - "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 3, "Id": 677, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" + "Rank": 3, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "CommandName": "Get-PnPSiteScriptFromList" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 1, "Id": 678, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" + "Rank": 1, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 2, "Id": 679, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" + "Rank": 2, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 3, "Id": 680, - "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\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 4, "Id": 681, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" + "Rank": 4, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 5, "Id": 682, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" + "Rank": 5, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 6, "Id": 683, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" + "Rank": 6, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 1, "Id": 684, - "Command": "Get-PnPSiteSearchQueryResults" + "Rank": 1, + "Command": "Get-PnPSiteSearchQueryResults", + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 2, "Id": 685, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" + "Rank": 2, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 3, "Id": 686, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" + "Rank": 3, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 4, "Id": 687, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" + "Rank": 4, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 5, "Id": 688, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" + "Rank": 5, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 6, "Id": 689, - "Command": "Get-PnPSiteSearchQueryResults -All" + "Rank": 6, + "Command": "Get-PnPSiteSearchQueryResults -All", + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "CommandName": "Get-PnPSiteSensitivityLabel", - "Rank": 1, "Id": 690, - "Command": "Get-PnPSiteSensitivityLabel" + "Rank": 1, + "Command": "Get-PnPSiteSensitivityLabel", + "CommandName": "Get-PnPSiteSensitivityLabel" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 1, "Id": 691, - "Command": "Get-PnPSiteTemplate -Out template.pnp" + "Rank": 1, + "Command": "Get-PnPSiteTemplate -Out template.pnp", + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 2, "Id": 692, - "Command": "Get-PnPSiteTemplate -Out template.xml" + "Rank": 2, + "Command": "Get-PnPSiteTemplate -Out template.xml", + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 3, "Id": 693, - "Command": "Get-PnPSiteTemplate -Out template.md" + "Rank": 3, + "Command": "Get-PnPSiteTemplate -Out template.md", + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 4, "Id": 694, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" + "Rank": 4, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 5, "Id": 695, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" + "Rank": 5, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 6, "Id": 696, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" + "Rank": 6, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 7, "Id": 697, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" + "Rank": 7, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 8, "Id": 698, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" + "Rank": 8, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 9, "Id": 699, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" + "Rank": 9, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 10, "Id": 700, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" + "Rank": 10, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 11, "Id": 701, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" + "Rank": 11, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 12, "Id": 702, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" + "Rank": 12, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 13, "Id": 703, - "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.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 14, "Id": 704, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" + "Rank": 14, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteUserInvitations", - "Rank": 1, "Id": 705, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "Rank": 1, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "CommandName": "Get-PnPSiteUserInvitations" }, { - "CommandName": "Get-PnPSiteVersionPolicy", - "Rank": 1, "Id": 706, - "Command": "Get-PnPSiteVersionPolicy" + "Rank": 1, + "Command": "Get-PnPSiteVersionPolicy", + "CommandName": "Get-PnPSiteVersionPolicy" }, { - "CommandName": "Get-PnPStorageEntity", - "Rank": 1, "Id": 707, - "Command": "Get-PnPStorageEntity" + "Rank": 1, + "Command": "Get-PnPStorageEntity", + "CommandName": "Get-PnPStorageEntity" }, { - "CommandName": "Get-PnPStorageEntity", - "Rank": 2, "Id": 708, - "Command": "Get-PnPStorageEntity -Key MyKey" + "Rank": 2, + "Command": "Get-PnPStorageEntity -Key MyKey", + "CommandName": "Get-PnPStorageEntity" }, { - "CommandName": "Get-PnPStorageEntity", - "Rank": 3, "Id": 709, - "Command": "Get-PnPStorageEntity -Scope Site" + "Rank": 3, + "Command": "Get-PnPStorageEntity -Scope Site", + "CommandName": "Get-PnPStorageEntity" }, { - "CommandName": "Get-PnPStorageEntity", - "Rank": 4, "Id": 710, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" + "Rank": 4, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "CommandName": "Get-PnPStorageEntity" }, { - "CommandName": "Get-PnPStoredCredential", - "Rank": 1, "Id": 711, - "Command": "Get-PnPStoredCredential -Name O365" + "Rank": 1, + "Command": "Get-PnPStoredCredential -Name O365", + "CommandName": "Get-PnPStoredCredential" }, { - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Rank": 1, "Id": 712, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Rank": 1, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { - "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Rank": 1, "Id": 713, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Rank": 1, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Rank": 1, "Id": 714, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" + "Rank": 1, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 1, "Id": 715, - "Command": "Get-PnPSubWeb" + "Rank": 1, + "Command": "Get-PnPSubWeb", + "CommandName": "Get-PnPSubWeb" }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 2, "Id": 716, - "Command": "Get-PnPSubWeb -Recurse" + "Rank": 2, + "Command": "Get-PnPSubWeb -Recurse", + "CommandName": "Get-PnPSubWeb" }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 3, "Id": 717, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" + "Rank": 3, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "CommandName": "Get-PnPSubWeb" }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 4, "Id": 718, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" + "Rank": 4, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "CommandName": "Get-PnPSubWeb" }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 5, "Id": 719, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" + "Rank": 5, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "CommandName": "Get-PnPSubWeb" }, { - "CommandName": "Get-PnPSyntexModel", - "Rank": 1, "Id": 720, - "Command": "Get-PnPSyntexModel" + "Rank": 1, + "Command": "Get-PnPSyntexModel", + "CommandName": "Get-PnPSyntexModel" }, { - "CommandName": "Get-PnPSyntexModel", - "Rank": 2, "Id": 721, - "Command": "Get-PnPSyntexModel -Identity 1" + "Rank": 2, + "Command": "Get-PnPSyntexModel -Identity 1", + "CommandName": "Get-PnPSyntexModel" }, { - "CommandName": "Get-PnPSyntexModel", - "Rank": 3, "Id": 722, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" + "Rank": 3, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "CommandName": "Get-PnPSyntexModel" }, { - "CommandName": "Get-PnPSyntexModelPublication", - "Rank": 1, "Id": 723, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" + "Rank": 1, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "CommandName": "Get-PnPSyntexModelPublication" }, { - "CommandName": "Get-PnPTaxonomyItem", - "Rank": 1, "Id": 724, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" + "Rank": 1, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "CommandName": "Get-PnPTaxonomyItem" }, { - "CommandName": "Get-PnPTeamsApp", - "Rank": 1, "Id": 725, - "Command": "Get-PnPTeamsApp" + "Rank": 1, + "Command": "Get-PnPTeamsApp", + "CommandName": "Get-PnPTeamsApp" }, { - "CommandName": "Get-PnPTeamsApp", - "Rank": 2, "Id": 726, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" + "Rank": 2, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "CommandName": "Get-PnPTeamsApp" }, { - "CommandName": "Get-PnPTeamsApp", - "Rank": 3, "Id": 727, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" + "Rank": 3, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "CommandName": "Get-PnPTeamsApp" }, { - "CommandName": "Get-PnPTeamsChannel", - "Rank": 1, "Id": 728, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" + "Rank": 1, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "CommandName": "Get-PnPTeamsChannel" }, { - "CommandName": "Get-PnPTeamsChannel", - "Rank": 2, "Id": 729, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" + "Rank": 2, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "CommandName": "Get-PnPTeamsChannel" }, { - "CommandName": "Get-PnPTeamsChannel", - "Rank": 3, "Id": 730, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "Rank": 3, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "CommandName": "Get-PnPTeamsChannel" }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Rank": 1, "Id": 731, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" + "Rank": 1, + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Rank": 2, "Id": 732, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "Rank": 2, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { - "CommandName": "Get-PnPTeamsChannelMessage", - "Rank": 1, "Id": 733, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" + "Rank": 1, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsChannelMessage" }, { - "CommandName": "Get-PnPTeamsChannelMessage", - "Rank": 2, "Id": 734, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" + "Rank": 2, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "CommandName": "Get-PnPTeamsChannelMessage" }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Rank": 1, "Id": 735, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" + "Rank": 1, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Rank": 2, "Id": 736, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" + "Rank": 2, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 1, "Id": 737, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" + "Rank": 1, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsChannelUser" }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 2, "Id": 738, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" + "Rank": 2, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "CommandName": "Get-PnPTeamsChannelUser" }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 3, "Id": 739, - "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 john.doe@contoso.com", + "CommandName": "Get-PnPTeamsChannelUser" }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 4, "Id": 740, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "Rank": 4, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Get-PnPTeamsChannelUser" }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Rank": 1, "Id": 741, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" + "Rank": 1, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Rank": 2, "Id": 742, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" + "Rank": 2, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { - "CommandName": "Get-PnPTeamsTab", - "Rank": 1, "Id": 743, - "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", + "CommandName": "Get-PnPTeamsTab" }, { - "CommandName": "Get-PnPTeamsTab", - "Rank": 2, "Id": 744, - "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 \"Wiki\"", + "CommandName": "Get-PnPTeamsTab" }, { - "CommandName": "Get-PnPTeamsTab", - "Rank": 3, "Id": 745, - "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 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", + "CommandName": "Get-PnPTeamsTab" }, { - "CommandName": "Get-PnPTeamsTab", - "Rank": 4, "Id": 746, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" + "Rank": 4, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsTab" }, { - "CommandName": "Get-PnPTeamsTab", - "Rank": 5, "Id": 747, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" + "Rank": 5, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "CommandName": "Get-PnPTeamsTab" }, { - "CommandName": "Get-PnPTeamsTag", - "Rank": 1, "Id": 748, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Rank": 1, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "CommandName": "Get-PnPTeamsTag" }, { - "CommandName": "Get-PnPTeamsTag", - "Rank": 2, "Id": 749, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Rank": 2, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "CommandName": "Get-PnPTeamsTag" }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 1, "Id": 750, - "Command": "Get-PnPTeamsTeam" + "Rank": 1, + "Command": "Get-PnPTeamsTeam", + "CommandName": "Get-PnPTeamsTeam" }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 2, "Id": 751, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" + "Rank": 2, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "CommandName": "Get-PnPTeamsTeam" }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 3, "Id": 752, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" + "Rank": 3, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "CommandName": "Get-PnPTeamsTeam" }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 4, "Id": 753, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" + "Rank": 4, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "CommandName": "Get-PnPTeamsTeam" }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 5, "Id": 754, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" + "Rank": 5, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPTeamsTeam" }, { - "CommandName": "Get-PnPTeamsUser", - "Rank": 1, "Id": 755, - "Command": "Get-PnPTeamsUser -Team MyTeam" + "Rank": 1, + "Command": "Get-PnPTeamsUser -Team MyTeam", + "CommandName": "Get-PnPTeamsUser" }, { - "CommandName": "Get-PnPTeamsUser", - "Rank": 2, "Id": 756, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" + "Rank": 2, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "CommandName": "Get-PnPTeamsUser" }, { - "CommandName": "Get-PnPTeamsUser", - "Rank": 3, "Id": 757, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" + "Rank": 3, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "CommandName": "Get-PnPTeamsUser" }, { - "CommandName": "Get-PnPTeamsUser", - "Rank": 4, "Id": 758, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" + "Rank": 4, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "CommandName": "Get-PnPTeamsUser" }, { - "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1, "Id": 759, - "Command": "Get-PnPTemporarilyDisableAppBar" + "Rank": 1, + "Command": "Get-PnPTemporarilyDisableAppBar", + "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { - "CommandName": "Get-PnPTenant", - "Rank": 1, "Id": 760, - "Command": "Get-PnPTenant" + "Rank": 1, + "Command": "Get-PnPTenant", + "CommandName": "Get-PnPTenant" }, { - "CommandName": "Get-PnPTenantAppCatalogUrl", - "Rank": 1, "Id": 761, - "Command": "Get-PnPTenantAppCatalogUrl" + "Rank": 1, + "Command": "Get-PnPTenantAppCatalogUrl", + "CommandName": "Get-PnPTenantAppCatalogUrl" }, { - "CommandName": "Get-PnPTenantCdnEnabled", - "Rank": 1, "Id": 762, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public" + "Rank": 1, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "CommandName": "Get-PnPTenantCdnEnabled" }, { - "CommandName": "Get-PnPTenantCdnOrigin", - "Rank": 1, "Id": 763, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public" + "Rank": 1, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "CommandName": "Get-PnPTenantCdnOrigin" }, { - "CommandName": "Get-PnPTenantCdnPolicies", - "Rank": 1, "Id": 764, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public" + "Rank": 1, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "CommandName": "Get-PnPTenantCdnPolicies" }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 1, "Id": 765, - "Command": "Get-PnPTenantDeletedSite" + "Rank": 1, + "Command": "Get-PnPTenantDeletedSite", + "CommandName": "Get-PnPTenantDeletedSite" }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 2, "Id": 766, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 2, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Get-PnPTenantDeletedSite" }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 3, "Id": 767, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" + "Rank": 3, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "CommandName": "Get-PnPTenantDeletedSite" }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 4, "Id": 768, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" + "Rank": 4, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "CommandName": "Get-PnPTenantDeletedSite" }, { - "CommandName": "Get-PnPTenantId", - "Rank": 1, "Id": 769, - "Command": "Get-PnPTenantId" + "Rank": 1, + "Command": "Get-PnPTenantId", + "CommandName": "Get-PnPTenantId" }, { - "CommandName": "Get-PnPTenantId", - "Rank": 2, "Id": 770, - "Command": "Get-PnPTenantId contoso" + "Rank": 2, + "Command": "Get-PnPTenantId contoso", + "CommandName": "Get-PnPTenantId" }, { - "CommandName": "Get-PnPTenantId", - "Rank": 3, "Id": 771, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" + "Rank": 3, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "CommandName": "Get-PnPTenantId" }, { - "CommandName": "Get-PnPTenantId", - "Rank": 4, "Id": 772, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" + "Rank": 4, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "CommandName": "Get-PnPTenantId" }, { - "CommandName": "Get-PnPTenantInfo", - "Rank": 1, "Id": 773, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" + "Rank": 1, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "CommandName": "Get-PnPTenantInfo" }, { - "CommandName": "Get-PnPTenantInfo", - "Rank": 2, "Id": 774, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" + "Rank": 2, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "CommandName": "Get-PnPTenantInfo" }, { - "CommandName": "Get-PnPTenantInfo", - "Rank": 3, "Id": 775, - "Command": "Get-PnPTenantInfo" + "Rank": 3, + "Command": "Get-PnPTenantInfo", + "CommandName": "Get-PnPTenantInfo" }, { - "CommandName": "Get-PnPTenantInfo", - "Rank": 4, "Id": 776, - "Command": "Get-PnPTenantInfo -CurrentTenant" + "Rank": 4, + "Command": "Get-PnPTenantInfo -CurrentTenant", + "CommandName": "Get-PnPTenantInfo" }, { - "CommandName": "Get-PnPTenantInstance", - "Rank": 1, "Id": 777, - "Command": "Get-PnPTenantInstance" + "Rank": 1, + "Command": "Get-PnPTenantInstance", + "CommandName": "Get-PnPTenantInstance" }, { - "CommandName": "Get-PnPTenantRecycleBinItem", - "Rank": 1, "Id": 778, - "Command": "Get-PnPTenantRecycleBinItem" + "Rank": 1, + "Command": "Get-PnPTenantRecycleBinItem", + "CommandName": "Get-PnPTenantRecycleBinItem" }, { - "CommandName": "Get-PnPTenantSequence", - "Rank": 1, "Id": 779, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject" + "Rank": 1, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "CommandName": "Get-PnPTenantSequence" }, { - "CommandName": "Get-PnPTenantSequence", - "Rank": 2, "Id": 780, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" + "Rank": 2, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "CommandName": "Get-PnPTenantSequence" }, { - "CommandName": "Get-PnPTenantSequenceSite", - "Rank": 1, "Id": 781, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" + "Rank": 1, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "CommandName": "Get-PnPTenantSequenceSite" }, { - "CommandName": "Get-PnPTenantSequenceSite", - "Rank": 2, "Id": 782, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" + "Rank": 2, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "CommandName": "Get-PnPTenantSequenceSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 1, "Id": 783, - "Command": "Get-PnPTenantSite" + "Rank": 1, + "Command": "Get-PnPTenantSite", + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 2, "Id": 784, - "Command": "Get-PnPTenantSite -Detailed" + "Rank": 2, + "Command": "Get-PnPTenantSite -Detailed", + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 3, "Id": 785, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites" + "Rank": 3, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 4, "Id": 786, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" + "Rank": 4, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 5, "Id": 787, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" + "Rank": 5, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 6, "Id": 788, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" + "Rank": 6, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 7, "Id": 789, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" + "Rank": 7, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 8, "Id": 790, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" + "Rank": 8, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 9, "Id": 791, - "Command": "Get-PnPTenantSite -GroupIdDefined $true" + "Rank": 9, + "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSyncClientRestriction", - "Rank": 1, "Id": 792, - "Command": "Get-PnPTenantSyncClientRestriction" + "Rank": 1, + "Command": "Get-PnPTenantSyncClientRestriction", + "CommandName": "Get-PnPTenantSyncClientRestriction" }, { - "CommandName": "Get-PnPTenantTemplate", - "Rank": 1, "Id": 793, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" + "Rank": 1, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "CommandName": "Get-PnPTenantTemplate" }, { - "CommandName": "Get-PnPTenantTemplate", - "Rank": 2, "Id": 794, - "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", + "CommandName": "Get-PnPTenantTemplate" }, { - "CommandName": "Get-PnPTenantTemplate", - "Rank": 3, "Id": 795, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" + "Rank": 3, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "CommandName": "Get-PnPTenantTemplate" }, { - "CommandName": "Get-PnPTenantTheme", - "Rank": 1, "Id": 796, - "Command": "Get-PnPTenantTheme" + "Rank": 1, + "Command": "Get-PnPTenantTheme", + "CommandName": "Get-PnPTenantTheme" }, { - "CommandName": "Get-PnPTenantTheme", - "Rank": 2, "Id": 797, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Rank": 2, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "CommandName": "Get-PnPTenantTheme" }, { - "CommandName": "Get-PnPTenantTheme", - "Rank": 3, "Id": 798, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" + "Rank": 3, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "CommandName": "Get-PnPTenantTheme" }, { - "CommandName": "Get-PnPTerm", - "Rank": 1, "Id": 799, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 1, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm" }, { - "CommandName": "Get-PnPTerm", - "Rank": 2, "Id": 800, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm" }, { - "CommandName": "Get-PnPTerm", - "Rank": 3, "Id": 801, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 3, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm" }, { - "CommandName": "Get-PnPTerm", - "Rank": 4, "Id": 802, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" + "Rank": 4, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "CommandName": "Get-PnPTerm" }, { - "CommandName": "Get-PnPTerm", - "Rank": 5, "Id": 803, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" + "Rank": 5, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "CommandName": "Get-PnPTerm" }, { - "CommandName": "Get-PnPTermGroup", - "Rank": 1, "Id": 804, - "Command": "Get-PnPTermGroup" + "Rank": 1, + "Command": "Get-PnPTermGroup", + "CommandName": "Get-PnPTermGroup" }, { - "CommandName": "Get-PnPTermGroup", - "Rank": 2, "Id": 805, - "Command": "Get-PnPTermGroup -Identity \"Departments\"" + "Rank": 2, + "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "CommandName": "Get-PnPTermGroup" }, { - "CommandName": "Get-PnPTermGroup", - "Rank": 3, "Id": 806, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" + "Rank": 3, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "CommandName": "Get-PnPTermGroup" }, { - "CommandName": "Get-PnPTermLabel", - "Rank": 1, "Id": 807, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" + "Rank": 1, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "CommandName": "Get-PnPTermLabel" }, { - "CommandName": "Get-PnPTermLabel", - "Rank": 2, "Id": 808, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" + "Rank": 2, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "CommandName": "Get-PnPTermLabel" }, { - "CommandName": "Get-PnPTermLabel", - "Rank": 3, "Id": 809, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 3, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermLabel" }, { - "CommandName": "Get-PnPTermSet", - "Rank": 1, "Id": 810, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" + "Rank": 1, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermSet" }, { - "CommandName": "Get-PnPTermSet", - "Rank": 2, "Id": 811, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermSet" }, { - "CommandName": "Get-PnPTermSet", - "Rank": 3, "Id": 812, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" + "Rank": 3, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "CommandName": "Get-PnPTermSet" }, { - "CommandName": "Get-PnPTheme", - "Rank": 1, "Id": 813, - "Command": "Get-PnPTheme" + "Rank": 1, + "Command": "Get-PnPTheme", + "CommandName": "Get-PnPTheme" }, { - "CommandName": "Get-PnPTheme", - "Rank": 2, "Id": 814, - "Command": "Get-PnPTheme -DetectCurrentComposedLook" + "Rank": 2, + "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "CommandName": "Get-PnPTheme" }, { - "CommandName": "Get-PnPTimeZoneId", - "Rank": 1, "Id": 815, - "Command": "Get-PnPTimeZoneId" + "Rank": 1, + "Command": "Get-PnPTimeZoneId", + "CommandName": "Get-PnPTimeZoneId" }, { - "CommandName": "Get-PnPTimeZoneId", - "Rank": 2, "Id": 816, - "Command": "Get-PnPTimeZoneId -Match Stockholm" + "Rank": 2, + "Command": "Get-PnPTimeZoneId -Match Stockholm", + "CommandName": "Get-PnPTimeZoneId" }, { - "CommandName": "Get-PnPUnfurlLink", - "Rank": 1, "Id": 817, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" + "Rank": 1, + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "CommandName": "Get-PnPUnfurlLink" }, { - "CommandName": "Get-PnPUnifiedAuditLog", - "Rank": 1, "Id": 818, - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" + "Rank": 1, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "CommandName": "Get-PnPUnifiedAuditLog" }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 1, "Id": 819, - "Command": "Get-PnPUPABulkImportStatus" + "Rank": 1, + "Command": "Get-PnPUPABulkImportStatus", + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 2, "Id": 820, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" + "Rank": 2, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 3, "Id": 821, - "Command": "Get-PnPUPABulkImportStatus -JobId " + "Rank": 3, + "Command": "Get-PnPUPABulkImportStatus -JobId ", + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 4, "Id": 822, - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" + "Rank": 4, + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "CommandName": "Get-PnPUser", - "Rank": 1, "Id": 823, - "Command": "Get-PnPUser" + "Rank": 1, + "Command": "Get-PnPUser", + "CommandName": "Get-PnPUser" }, { - "CommandName": "Get-PnPUser", - "Rank": 2, "Id": 824, - "Command": "Get-PnPUser -Identity 23" + "Rank": 2, + "Command": "Get-PnPUser -Identity 23", + "CommandName": "Get-PnPUser" }, { - "CommandName": "Get-PnPUser", - "Rank": 3, "Id": 825, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" + "Rank": 3, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "CommandName": "Get-PnPUser" }, { - "CommandName": "Get-PnPUser", - "Rank": 4, "Id": 826, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" + "Rank": 4, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "CommandName": "Get-PnPUser" }, { - "CommandName": "Get-PnPUser", - "Rank": 5, "Id": 827, - "Command": "Get-PnPUser -WithRightsAssigned" + "Rank": 5, + "Command": "Get-PnPUser -WithRightsAssigned", + "CommandName": "Get-PnPUser" }, { - "CommandName": "Get-PnPUser", - "Rank": 6, "Id": 828, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" + "Rank": 6, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "CommandName": "Get-PnPUser" }, { - "CommandName": "Get-PnPUser", - "Rank": 7, "Id": 829, - "Command": "Get-PnPUser -WithRightsAssignedDetailed" + "Rank": 7, + "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "CommandName": "Get-PnPUser" }, { - "CommandName": "Get-PnPUserOneDriveQuota", - "Rank": 1, "Id": 830, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" + "Rank": 1, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "CommandName": "Get-PnPUserOneDriveQuota" }, { - "CommandName": "Get-PnPUserProfileProperty", - "Rank": 1, "Id": 831, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" + "Rank": 1, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "CommandName": "Get-PnPUserProfileProperty" }, { - "CommandName": "Get-PnPUserProfileProperty", - "Rank": 2, "Id": 832, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" + "Rank": 2, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "CommandName": "Get-PnPUserProfileProperty" }, { - "CommandName": "Get-PnPUserProfileProperty", - "Rank": 3, "Id": 833, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" + "Rank": 3, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "CommandName": "Get-PnPUserProfileProperty" }, { - "CommandName": "Get-PnPView", - "Rank": 1, "Id": 834, - "Command": "Get-PnPView -List \"Demo List\"" + "Rank": 1, + "Command": "Get-PnPView -List \"Demo List\"", + "CommandName": "Get-PnPView" }, { - "CommandName": "Get-PnPView", - "Rank": 2, "Id": 835, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" + "Rank": 2, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "CommandName": "Get-PnPView" }, { - "CommandName": "Get-PnPView", - "Rank": 3, "Id": 836, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" + "Rank": 3, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "CommandName": "Get-PnPView" }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1, "Id": 837, - "Command": "Get-PnPVivaConnectionsDashboardACE" + "Rank": 1, + "Command": "Get-PnPVivaConnectionsDashboardACE", + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 2, "Id": 838, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Rank": 2, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Get-PnPWeb", - "Rank": 1, "Id": 839, - "Command": "Get-PnPWeb" + "Rank": 1, + "Command": "Get-PnPWeb", + "CommandName": "Get-PnPWeb" }, { - "CommandName": "Get-PnPWebHeader", - "Rank": 1, "Id": 840, - "Command": "Get-PnPWebHeader" + "Rank": 1, + "Command": "Get-PnPWebHeader", + "CommandName": "Get-PnPWebHeader" }, { - "CommandName": "Get-PnPWebhookSubscriptions", - "Rank": 1, "Id": 841, - "Command": "Get-PnPWebhookSubscriptions -List MyList" + "Rank": 1, + "Command": "Get-PnPWebhookSubscriptions -List MyList", + "CommandName": "Get-PnPWebhookSubscriptions" }, { - "CommandName": "Get-PnPWebPart", - "Rank": 1, "Id": 842, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" + "Rank": 1, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "CommandName": "Get-PnPWebPart" }, { - "CommandName": "Get-PnPWebPart", - "Rank": 2, "Id": 843, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 2, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPWebPart" }, { - "CommandName": "Get-PnPWebPartProperty", - "Rank": 1, "Id": 844, - "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", + "CommandName": "Get-PnPWebPartProperty" }, { - "CommandName": "Get-PnPWebPartProperty", - "Rank": 2, "Id": 845, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" + "Rank": 2, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "CommandName": "Get-PnPWebPartProperty" }, { - "CommandName": "Get-PnPWebPartXml", - "Rank": 1, "Id": 846, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 1, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPWebPartXml" }, { - "CommandName": "Get-PnPWebTemplates", - "Rank": 1, "Id": 847, - "Command": "Get-PnPWebTemplates" + "Rank": 1, + "Command": "Get-PnPWebTemplates", + "CommandName": "Get-PnPWebTemplates" }, { - "CommandName": "Get-PnPWebTemplates", - "Rank": 2, "Id": 848, - "Command": "Get-PnPWebTemplates -LCID 1033" + "Rank": 2, + "Command": "Get-PnPWebTemplates -LCID 1033", + "CommandName": "Get-PnPWebTemplates" }, { - "CommandName": "Get-PnPWebTemplates", - "Rank": 3, "Id": 849, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" + "Rank": 3, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "CommandName": "Get-PnPWebTemplates" }, { - "CommandName": "Get-PnPWikiPageContent", - "Rank": 1, "Id": 850, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" + "Rank": 1, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "CommandName": "Get-PnPWikiPageContent" }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Rank": 1, "Id": 851, - "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 Read", + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Rank": 2, "Id": 852, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" + "Rank": 2, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { - "CommandName": "Grant-PnPHubSiteRights", - "Rank": 1, "Id": 853, - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Rank": 1, + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Grant-PnPHubSiteRights" }, { - "CommandName": "Grant-PnPSiteDesignRights", - "Rank": 1, "Id": 854, - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -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\"", + "CommandName": "Grant-PnPSiteDesignRights" }, { - "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Rank": 1, "Id": 855, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Rank": 1, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { - "CommandName": "Import-PnPTaxonomy", - "Rank": 1, "Id": 856, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" + "Rank": 1, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "CommandName": "Import-PnPTaxonomy" }, { - "CommandName": "Import-PnPTaxonomy", - "Rank": 2, "Id": 857, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" + "Rank": 2, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "CommandName": "Import-PnPTaxonomy" }, { - "CommandName": "Import-PnPTaxonomy", - "Rank": 3, "Id": 858, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" + "Rank": 3, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "CommandName": "Import-PnPTaxonomy" }, { - "CommandName": "Import-PnPTermGroupFromXml", - "Rank": 1, "Id": 859, - "Command": "Import-PnPTermGroupFromXml -Xml $xml" + "Rank": 1, + "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "CommandName": "Import-PnPTermGroupFromXml" }, { - "CommandName": "Import-PnPTermGroupFromXml", - "Rank": 2, "Id": 860, - "Command": "Import-PnPTermGroupFromXml -Path input.xml" + "Rank": 2, + "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "CommandName": "Import-PnPTermGroupFromXml" }, { - "CommandName": "Import-PnPTermSet", - "Rank": 1, "Id": 861, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" + "Rank": 1, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "CommandName": "Import-PnPTermSet" }, { - "CommandName": "Import-PnPTermSet", - "Rank": 2, "Id": 862, - "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 -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", + "CommandName": "Import-PnPTermSet" }, { - "CommandName": "Import-PnPTermSet", - "Rank": 3, "Id": 863, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" + "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" }, { - "CommandName": "Install-PnPApp", - "Rank": 1, "Id": 864, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Install-PnPApp" }, { - "CommandName": "Install-PnPApp", - "Rank": 2, "Id": 865, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Install-PnPApp" }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 1, "Id": 866, - "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?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", + "CommandName": "Invoke-PnPGraphMethod" }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 2, "Id": 867, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" + "Rank": 2, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "CommandName": "Invoke-PnPGraphMethod" }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 3, "Id": 868, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" + "Rank": 3, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "CommandName": "Invoke-PnPGraphMethod" }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 4, "Id": 869, - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" + "Rank": 4, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "CommandName": "Invoke-PnPGraphMethod" }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 5, "Id": 870, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" + "Rank": 5, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "CommandName": "Invoke-PnPGraphMethod" }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 6, "Id": 871, - "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\" -OutFile c:\\temp\\photo.jpg", + "CommandName": "Invoke-PnPGraphMethod" }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 7, "Id": 872, - "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-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" }, { - "CommandName": "Invoke-PnPListDesign", - "Rank": 1, "Id": 873, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Invoke-PnPListDesign" }, { - "CommandName": "Invoke-PnPListDesign", - "Rank": 2, "Id": 874, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "Rank": 2, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "CommandName": "Invoke-PnPListDesign" }, { - "CommandName": "Invoke-PnPQuery", - "Rank": 1, "Id": 875, - "Command": "Invoke-PnPQuery -RetryCount 5" + "Rank": 1, + "Command": "Invoke-PnPQuery -RetryCount 5", + "CommandName": "Invoke-PnPQuery" }, { - "CommandName": "Invoke-PnPSiteDesign", - "Rank": 1, "Id": 876, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Invoke-PnPSiteDesign" }, { - "CommandName": "Invoke-PnPSiteDesign", - "Rank": 2, "Id": 877, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "Rank": 2, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "CommandName": "Invoke-PnPSiteDesign" }, { - "CommandName": "Invoke-PnPSiteScript", - "Rank": 1, "Id": 878, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" + "Rank": 1, + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "CommandName": "Invoke-PnPSiteScript" }, { - "CommandName": "Invoke-PnPSiteSwap", - "Rank": 1, "Id": 879, - "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/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "CommandName": "Invoke-PnPSiteSwap" }, { - "CommandName": "Invoke-PnPSiteSwap", - "Rank": 2, "Id": 880, - "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/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "CommandName": "Invoke-PnPSiteSwap" }, { - "CommandName": "Invoke-PnPSiteSwap", - "Rank": 3, "Id": 881, - "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-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", + "CommandName": "Invoke-PnPSiteSwap" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 1, "Id": 882, - "Command": "Invoke-PnPSiteTemplate -Path template.xml" + "Rank": 1, + "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 2, "Id": 883, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" + "Rank": 2, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 3, "Id": 884, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "Rank": 3, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 4, "Id": 885, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" + "Rank": 4, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 5, "Id": 886, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp" + "Rank": 5, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 6, "Id": 887, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" + "Rank": 6, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 7, "Id": 888, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" + "Rank": 7, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 8, "Id": 889, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" + "Rank": 8, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPSPRestMethod", - "Rank": 1, "Id": 890, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web" + "Rank": 1, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "CommandName": "Invoke-PnPSPRestMethod" }, { - "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 1, "Id": 891, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" + "Rank": 1, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "CommandName": "Invoke-PnPTenantTemplate" }, { - "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 2, "Id": 892, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" + "Rank": 2, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "CommandName": "Invoke-PnPTenantTemplate" }, { - "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 3, "Id": 893, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "Rank": 3, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "CommandName": "Invoke-PnPTenantTemplate" }, { - "CommandName": "Invoke-PnPWebAction", - "Rank": 1, "Id": 894, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" + "Rank": 1, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "CommandName": "Invoke-PnPWebAction" }, { - "CommandName": "Invoke-PnPWebAction", - "Rank": 2, "Id": 895, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" + "Rank": 2, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "CommandName": "Invoke-PnPWebAction" }, { - "CommandName": "Measure-PnPList", - "Rank": 1, "Id": 896, - "Command": "Measure-PnPList \"Documents\"" + "Rank": 1, + "Command": "Measure-PnPList \"Documents\"", + "CommandName": "Measure-PnPList" }, { - "CommandName": "Measure-PnPList", - "Rank": 2, "Id": 897, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" + "Rank": 2, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "CommandName": "Measure-PnPList" }, { - "CommandName": "Measure-PnPWeb", - "Rank": 1, "Id": 898, - "Command": "Measure-PnPWeb" + "Rank": 1, + "Command": "Measure-PnPWeb", + "CommandName": "Measure-PnPWeb" }, { - "CommandName": "Measure-PnPWeb", - "Rank": 2, "Id": 899, - "Command": "Measure-PnPWeb $web -Recursive" + "Rank": 2, + "Command": "Measure-PnPWeb $web -Recursive", + "CommandName": "Measure-PnPWeb" }, { - "CommandName": "Move-PnPFile", - "Rank": 1, "Id": 900, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" + "Rank": 1, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "CommandName": "Move-PnPFile" }, { - "CommandName": "Move-PnPFile", - "Rank": 2, "Id": 901, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" + "Rank": 2, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "CommandName": "Move-PnPFile" }, { - "CommandName": "Move-PnPFile", - "Rank": 3, "Id": 902, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "Rank": 3, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "CommandName": "Move-PnPFile" }, { - "CommandName": "Move-PnPFile", - "Rank": 4, "Id": 903, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "Rank": 4, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "CommandName": "Move-PnPFile" }, { - "CommandName": "Move-PnPFolder", - "Rank": 1, "Id": 904, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" + "Rank": 1, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "CommandName": "Move-PnPFolder" }, { - "CommandName": "Move-PnPFolder", - "Rank": 2, "Id": 905, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" + "Rank": 2, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "CommandName": "Move-PnPFolder" }, { - "CommandName": "Move-PnPListItemToRecycleBin", - "Rank": 1, "Id": 906, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" + "Rank": 1, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "CommandName": "Move-PnPListItemToRecycleBin" }, { - "CommandName": "Move-PnPPageComponent", - "Rank": 1, "Id": 907, - "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 -Section 1", + "CommandName": "Move-PnPPageComponent" }, { - "CommandName": "Move-PnPPageComponent", - "Rank": 2, "Id": 908, - "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 -Column 2", + "CommandName": "Move-PnPPageComponent" }, { - "CommandName": "Move-PnPPageComponent", - "Rank": 3, "Id": 909, - "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", + "CommandName": "Move-PnPPageComponent" }, { - "CommandName": "Move-PnPPageComponent", - "Rank": 4, "Id": 910, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" + "Rank": 4, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "CommandName": "Move-PnPPageComponent" }, { - "CommandName": "Move-PnpRecycleBinItem", - "Rank": 1, "Id": 911, - "Command": "Move-PnPRecycleBinItem" + "Rank": 1, + "Command": "Move-PnPRecycleBinItem", + "CommandName": "Move-PnpRecycleBinItem" }, { - "CommandName": "Move-PnpRecycleBinItem", - "Rank": 2, "Id": 912, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" + "Rank": 2, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "CommandName": "Move-PnpRecycleBinItem" }, { - "CommandName": "Move-PnpRecycleBinItem", - "Rank": 3, "Id": 913, - "Command": "Move-PnPRecycleBinItem -Force" + "Rank": 3, + "Command": "Move-PnPRecycleBinItem -Force", + "CommandName": "Move-PnpRecycleBinItem" }, { - "CommandName": "Move-PnPTerm", - "Rank": 1, "Id": 914, - "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 d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", + "CommandName": "Move-PnPTerm" }, { - "CommandName": "Move-PnPTerm", - "Rank": 2, "Id": 915, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" + "Rank": 2, + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "CommandName": "Move-PnPTerm" }, { - "CommandName": "Move-PnPTerm", - "Rank": 3, "Id": 916, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" + "Rank": 3, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "CommandName": "Move-PnPTerm" }, { - "CommandName": "Move-PnPTermSet", - "Rank": 1, "Id": 917, - "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 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", + "CommandName": "Move-PnPTermSet" }, { - "CommandName": "Move-PnPTermSet", - "Rank": 2, "Id": 918, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" + "Rank": 2, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "CommandName": "Move-PnPTermSet" }, { - "CommandName": "New-PnPAzureADGroup", - "Rank": 1, "Id": 919, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" + "Rank": 1, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "CommandName": "New-PnPAzureADGroup" }, { - "CommandName": "New-PnPAzureADGroup", - "Rank": 2, "Id": 920, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" + "Rank": 2, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "CommandName": "New-PnPAzureADGroup" }, { - "CommandName": "New-PnPAzureADGroup", - "Rank": 3, "Id": 921, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" + "Rank": 3, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "CommandName": "New-PnPAzureADGroup" }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 1, "Id": 922, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" + "Rank": 1, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 2, "Id": 923, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" + "Rank": 2, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 3, "Id": 924, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" + "Rank": 3, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "CommandName": "New-PnPAzureCertificate", - "Rank": 1, "Id": 925, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" + "Rank": 1, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "CommandName": "New-PnPAzureCertificate" }, { - "CommandName": "New-PnPAzureCertificate", - "Rank": 2, "Id": 926, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" + "Rank": 2, + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "CommandName": "New-PnPAzureCertificate" }, { - "CommandName": "New-PnPAzureCertificate", - "Rank": 3, "Id": 927, - "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 -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "CommandName": "New-PnPAzureCertificate" }, { - "CommandName": "New-PnPGraphSubscription", - "Rank": 1, "Id": 928, - "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 Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()", + "CommandName": "New-PnPGraphSubscription" }, { - "CommandName": "New-PnPGraphSubscription", - "Rank": 2, "Id": 929, - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" + "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" }, { - "CommandName": "New-PnPGroup", - "Rank": 1, "Id": 930, - "Command": "New-PnPGroup -Title \"My Site Users\"" + "Rank": 1, + "Command": "New-PnPGroup -Title \"My Site Users\"", + "CommandName": "New-PnPGroup" }, { - "CommandName": "New-PnPList", - "Rank": 1, "Id": 931, - "Command": "New-PnPList -Title Announcements -Template Announcements" + "Rank": 1, + "Command": "New-PnPList -Title Announcements -Template Announcements", + "CommandName": "New-PnPList" }, { - "CommandName": "New-PnPList", - "Rank": 2, "Id": 932, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" + "Rank": 2, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "CommandName": "New-PnPList" }, { - "CommandName": "New-PnPList", - "Rank": 3, "Id": 933, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" + "Rank": 3, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "CommandName": "New-PnPList" }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 1, "Id": 934, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" + "Rank": 1, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "CommandName": "New-PnPMicrosoft365Group" }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 2, "Id": 935, - "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 -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "CommandName": "New-PnPMicrosoft365Group" }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 3, "Id": 936, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" + "Rank": 3, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "CommandName": "New-PnPMicrosoft365Group" }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 4, "Id": 937, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" + "Rank": 4, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "CommandName": "New-PnPMicrosoft365Group" }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 5, "Id": 938, - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "Rank": 5, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "CommandName": "New-PnPMicrosoft365Group" }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 6, "Id": 939, - "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 -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "CommandName": "New-PnPMicrosoft365Group" }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 7, "Id": 940, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" + "Rank": 7, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", + "CommandName": "New-PnPMicrosoft365Group" }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", - "Rank": 1, "Id": 941, - "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 -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", - "Rank": 2, "Id": 942, - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" + "Rank": 2, + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { - "CommandName": "New-PnPPersonalSite", - "Rank": 1, "Id": 943, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" + "Rank": 1, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "CommandName": "New-PnPPersonalSite" }, { - "CommandName": "New-PnPPlannerPlan", - "Rank": 1, "Id": 944, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" + "Rank": 1, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "CommandName": "New-PnPPlannerPlan" }, { - "CommandName": "New-PnPSdnProvider", - "Rank": 1, "Id": 945, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" + "Rank": 1, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "CommandName": "New-PnPSdnProvider" }, { - "CommandName": "New-PnPSite", - "Rank": 1, "Id": 946, - "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", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 2, "Id": 947, - "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 -SiteDesign Showcase", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 3, "Id": 948, - "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 -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 4, "Id": 949, - "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 -Classification \"HBI\"", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 5, "Id": 950, - "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 -ShareByEmailEnabled", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 6, "Id": 951, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" + "Rank": 6, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 7, "Id": 952, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" + "Rank": 7, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 8, "Id": 953, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" + "Rank": 8, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 9, "Id": 954, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" + "Rank": 9, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 10, "Id": 955, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" + "Rank": 10, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 11, "Id": 956, - "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", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 12, "Id": 957, - "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 -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 13, "Id": 958, - "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 -Classification \"HBI\"", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 14, "Id": 959, - "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 -ShareByEmailEnabled", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 15, "Id": 960, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" + "Rank": 15, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 16, "Id": 961, - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" + "Rank": 16, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSiteCollectionTermStore", - "Rank": 1, "Id": 962, - "Command": "New-PnPSiteCollectionTermStore" + "Rank": 1, + "Command": "New-PnPSiteCollectionTermStore", + "CommandName": "New-PnPSiteCollectionTermStore" }, { - "CommandName": "New-PnPSiteGroup", - "Rank": 1, "Id": 963, - "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/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "CommandName": "New-PnPSiteGroup" }, { - "CommandName": "New-PnPSiteGroup", - "Rank": 2, "Id": 964, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" + "Rank": 2, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "CommandName": "New-PnPSiteGroup" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 1, "Id": 965, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" + "Rank": 1, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 2, "Id": 966, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" + "Rank": 2, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 3, "Id": 967, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" + "Rank": 3, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 4, "Id": 968, - "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\"", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 5, "Id": 969, - "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\" -ContentType \"Test Content Type\"", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 6, "Id": 970, - "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.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 7, "Id": 971, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" + "Rank": 7, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 8, "Id": 972, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" + "Rank": 8, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPTeamsApp", - "Rank": 1, "Id": 973, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" + "Rank": 1, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "CommandName": "New-PnPTeamsApp" }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 1, "Id": 974, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" + "Rank": 1, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "CommandName": "New-PnPTeamsTeam" }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 2, "Id": 975, - "Command": "New-PnPTeamsTeam -GroupId $groupId" + "Rank": 2, + "Command": "New-PnPTeamsTeam -GroupId $groupId", + "CommandName": "New-PnPTeamsTeam" }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 3, "Id": 976, - "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", + "CommandName": "New-PnPTeamsTeam" }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 4, "Id": 977, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "Rank": 4, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "CommandName": "New-PnPTeamsTeam" }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 5, "Id": 978, - "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\"", + "CommandName": "New-PnPTeamsTeam" }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 6, "Id": 979, - "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-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" }, { - "CommandName": "New-PnPTenantSite", - "Rank": 1, "Id": 980, - "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 \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", + "CommandName": "New-PnPTenantSite" }, { - "CommandName": "New-PnPTenantSite", - "Rank": 2, "Id": 981, - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" + "Rank": 2, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "CommandName": "New-PnPTenantSite" }, { - "CommandName": "New-PnPTerm", - "Rank": 1, "Id": 982, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" + "Rank": 1, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "CommandName": "New-PnPTerm" }, { - "CommandName": "New-PnPTerm", - "Rank": 2, "Id": 983, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Rank": 2, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "New-PnPTerm" }, { - "CommandName": "New-PnPTermGroup", - "Rank": 1, "Id": 984, - "Command": "New-PnPTermGroup -GroupName \"Countries\"" + "Rank": 1, + "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "CommandName": "New-PnPTermGroup" }, { - "CommandName": "New-PnPTermLabel", - "Rank": 1, "Id": 985, - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" + "Rank": 1, + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "CommandName": "New-PnPTermLabel" }, { - "CommandName": "New-PnPTermSet", - "Rank": 1, "Id": 986, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" + "Rank": 1, + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "CommandName": "New-PnPTermSet" }, { - "CommandName": "New-PnPUPABulkImportJob", - "Rank": 1, "Id": 987, - "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/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "CommandName": "New-PnPUPABulkImportJob" }, { - "CommandName": "New-PnPUPABulkImportJob", - "Rank": 2, "Id": 988, - "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-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", + "CommandName": "New-PnPUPABulkImportJob" }, { - "CommandName": "New-PnPUser", - "Rank": 1, "Id": 989, - "Command": "New-PnPUser -LoginName user@company.com" + "Rank": 1, + "Command": "New-PnPUser -LoginName user@company.com", + "CommandName": "New-PnPUser" }, { - "CommandName": "New-PnPWeb", - "Rank": 1, "Id": 990, - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" + "Rank": 1, + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", + "CommandName": "New-PnPWeb" }, { - "CommandName": "Publish-PnPApp", - "Rank": 1, "Id": 991, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Rank": 1, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Publish-PnPApp" }, { - "CommandName": "Publish-PnPApp", - "Rank": 2, "Id": 992, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" + "Rank": 2, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "CommandName": "Publish-PnPApp" }, { - "CommandName": "Publish-PnPCompanyApp", - "Rank": 1, "Id": 993, - "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-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" }, { - "CommandName": "Publish-PnPContentType", - "Rank": 1, "Id": 994, - "Command": "Publish-PnPContentType -ContentType 0x0101" + "Rank": 1, + "Command": "Publish-PnPContentType -ContentType 0x0101", + "CommandName": "Publish-PnPContentType" }, { - "CommandName": "Publish-PnPSyntexModel", - "Rank": 1, "Id": 995, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "Rank": 1, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "CommandName": "Publish-PnPSyntexModel" }, { - "CommandName": "Publish-PnPSyntexModel", - "Rank": 2, "Id": 996, - "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": "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" }, { - "CommandName": "Read-PnPSiteTemplate", - "Rank": 1, "Id": 997, - "Command": "Read-PnPSiteTemplate -Path template.pnp" + "Rank": 1, + "Command": "Read-PnPSiteTemplate -Path template.pnp", + "CommandName": "Read-PnPSiteTemplate" }, { - "CommandName": "Read-PnPSiteTemplate", - "Rank": 2, "Id": 998, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" + "Rank": 2, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "CommandName": "Read-PnPSiteTemplate" }, { - "CommandName": "Read-PnPSiteTemplate", - "Rank": 3, "Id": 999, - "Command": "Read-PnPSiteTemplate -Xml $xml" + "Rank": 3, + "Command": "Read-PnPSiteTemplate -Xml $xml", + "CommandName": "Read-PnPSiteTemplate" }, { - "CommandName": "Read-PnPTenantTemplate", - "Rank": 1, "Id": 1000, - "Command": "Read-PnPTenantTemplate -Path template.pnp" + "Rank": 1, + "Command": "Read-PnPTenantTemplate -Path template.pnp", + "CommandName": "Read-PnPTenantTemplate" }, { - "CommandName": "Register-PnPAppCatalogSite", - "Rank": 1, "Id": 1001, - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" + "Rank": 1, + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "CommandName": "Register-PnPAppCatalogSite" }, { - "CommandName": "Register-PnPAzureADApp", - "Rank": 1, "Id": 1002, - "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 -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", + "CommandName": "Register-PnPAzureADApp" }, { - "CommandName": "Register-PnPAzureADApp", - "Rank": 2, "Id": 1003, - "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 -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" }, { - "CommandName": "Register-PnPAzureADApp", - "Rank": 3, "Id": 1004, - "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 -Store CurrentUser -GraphApplicationPermissions \"User.Read.All\" -SharePointApplicationPermissions \"Sites.Read.All\" -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", + "CommandName": "Register-PnPAzureADApp" }, { - "CommandName": "Register-PnPAzureADApp", - "Rank": 4, "Id": 1005, - "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 -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" }, { - "CommandName": "Register-PnPAzureADApp", - "Rank": 5, "Id": 1006, - "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 -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", + "CommandName": "Register-PnPAzureADApp" }, { - "CommandName": "Register-PnPAzureADApp", - "Rank": 6, "Id": 1007, - "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 -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", + "CommandName": "Register-PnPAzureADApp" }, { - "CommandName": "Register-PnPAzureADApp", - "Rank": 7, "Id": 1008, - "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-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" }, { - "CommandName": "Register-PnPHubSite", - "Rank": 1, "Id": 1009, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Rank": 1, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "CommandName": "Register-PnPHubSite" }, { - "CommandName": "Register-PnPHubSite", - "Rank": 2, "Id": 1010, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" + "Rank": 2, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "CommandName": "Register-PnPHubSite" }, { - "CommandName": "Register-PnPManagementShellAccess", - "Rank": 1, "Id": 1011, - "Command": "Register-PnPManagementShellAccess" + "Rank": 1, + "Command": "Register-PnPManagementShellAccess", + "CommandName": "Register-PnPManagementShellAccess" }, { - "CommandName": "Register-PnPManagementShellAccess", - "Rank": 2, "Id": 1012, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" + "Rank": 2, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "CommandName": "Register-PnPManagementShellAccess" }, { - "CommandName": "Register-PnPManagementShellAccess", - "Rank": 3, "Id": 1013, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" + "Rank": 3, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "CommandName": "Register-PnPManagementShellAccess" }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Rank": 1, "Id": 1014, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" + "Rank": 1, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Rank": 2, "Id": 1015, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" + "Rank": 2, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { - "CommandName": "Remove-PnPAlert", - "Rank": 1, "Id": 1016, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" + "Rank": 1, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "CommandName": "Remove-PnPAlert" }, { - "CommandName": "Remove-PnPAlert", - "Rank": 2, "Id": 1017, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Rank": 2, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPAlert" }, { - "CommandName": "Remove-PnPApp", - "Rank": 1, "Id": 1018, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Remove-PnPApp" }, { - "CommandName": "Remove-PnPApp", - "Rank": 2, "Id": 1019, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Remove-PnPApp" }, { - "CommandName": "Remove-PnPApplicationCustomizer", - "Rank": 1, "Id": 1020, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 1, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Remove-PnPApplicationCustomizer" }, { - "CommandName": "Remove-PnPApplicationCustomizer", - "Rank": 2, "Id": 1021, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Rank": 2, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "CommandName": "Remove-PnPApplicationCustomizer" }, { - "CommandName": "Remove-PnPAvailableSiteClassification", - "Rank": 1, "Id": 1022, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" + "Rank": 1, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "CommandName": "Remove-PnPAvailableSiteClassification" }, { - "CommandName": "Remove-PnPAvailableSiteClassification", - "Rank": 2, "Id": 1023, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Rank": 2, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "CommandName": "Remove-PnPAvailableSiteClassification" }, { - "CommandName": "Remove-PnPAzureADApp", - "Rank": 1, "Id": 1024, - "Command": "Remove-PnPAzureADApp -Identity MyApp" + "Rank": 1, + "Command": "Remove-PnPAzureADApp -Identity MyApp", + "CommandName": "Remove-PnPAzureADApp" }, { - "CommandName": "Remove-PnPAzureADApp", - "Rank": 2, "Id": 1025, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Rank": 2, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Remove-PnPAzureADApp" }, { - "CommandName": "Remove-PnPAzureADGroup", - "Rank": 1, "Id": 1026, - "Command": "Remove-PnPAzureADGroup -Identity $groupId" + "Rank": 1, + "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "CommandName": "Remove-PnPAzureADGroup" }, { - "CommandName": "Remove-PnPAzureADGroup", - "Rank": 2, "Id": 1027, - "Command": "Remove-PnPAzureADGroup -Identity $group" + "Rank": 2, + "Command": "Remove-PnPAzureADGroup -Identity $group", + "CommandName": "Remove-PnPAzureADGroup" }, { - "CommandName": "Remove-PnPAzureADGroupMember", - "Rank": 1, "Id": 1028, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1, + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPAzureADGroupMember" }, { - "CommandName": "Remove-PnPAzureADGroupOwner", - "Rank": 1, "Id": 1029, - "Command": "Remove-PnPAzureADGroupOwner -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\"", + "CommandName": "Remove-PnPAzureADGroupOwner" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 1, "Id": 1030, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" + "Rank": 1, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 2, "Id": 1031, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" + "Rank": 2, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 3, "Id": 1032, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Rank": 3, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 4, "Id": 1033, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Rank": 4, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "CommandName": "Remove-PnPContentType", - "Rank": 1, "Id": 1034, - "Command": "Remove-PnPContentType -Identity \"Project Document\"" + "Rank": 1, + "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "CommandName": "Remove-PnPContentType" }, { - "CommandName": "Remove-PnPContentType", - "Rank": 2, "Id": 1035, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" + "Rank": 2, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "CommandName": "Remove-PnPContentType" }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Rank": 1, "Id": 1036, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Rank": 1, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Rank": 2, "Id": 1037, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Rank": 2, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { - "CommandName": "Remove-PnPContentTypeFromList", - "Rank": 1, "Id": 1038, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" + "Rank": 1, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "CommandName": "Remove-PnPContentTypeFromList" }, { - "CommandName": "Remove-PnPCustomAction", - "Rank": 1, "Id": 1039, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 1, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Remove-PnPCustomAction" }, { - "CommandName": "Remove-PnPCustomAction", - "Rank": 2, "Id": 1040, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Rank": 2, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "CommandName": "Remove-PnPCustomAction" }, { - "CommandName": "Remove-PnPCustomAction", - "Rank": 3, "Id": 1041, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" + "Rank": 3, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "CommandName": "Remove-PnPCustomAction" }, { - "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Rank": 1, "Id": 1042, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Rank": 1, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 1, "Id": 1043, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 1, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 2, "Id": 1044, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 2, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 3, "Id": 1045, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" + "Rank": 3, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 4, "Id": 1046, - "Command": "Remove-PnPEventReceiver -List ProjectList" + "Rank": 4, + "Command": "Remove-PnPEventReceiver -List ProjectList", + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 5, "Id": 1047, - "Command": "Remove-PnPEventReceiver" + "Rank": 5, + "Command": "Remove-PnPEventReceiver", + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 6, "Id": 1048, - "Command": "Remove-PnPEventReceiver -Scope Site" + "Rank": 6, + "Command": "Remove-PnPEventReceiver -Scope Site", + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 7, "Id": 1049, - "Command": "Remove-PnPEventReceiver -Scope Web" + "Rank": 7, + "Command": "Remove-PnPEventReceiver -Scope Web", + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 8, "Id": 1050, - "Command": "Remove-PnPEventReceiver -Scope All" + "Rank": 8, + "Command": "Remove-PnPEventReceiver -Scope All", + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPField", - "Rank": 1, "Id": 1051, - "Command": "Remove-PnPField -Identity \"Speakers\"" + "Rank": 1, + "Command": "Remove-PnPField -Identity \"Speakers\"", + "CommandName": "Remove-PnPField" }, { - "CommandName": "Remove-PnPField", - "Rank": 2, "Id": 1052, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Rank": 2, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "CommandName": "Remove-PnPField" }, { - "CommandName": "Remove-PnPFieldFromContentType", - "Rank": 1, "Id": 1053, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Rank": 1, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "CommandName": "Remove-PnPFieldFromContentType" }, { - "CommandName": "Remove-PnPFieldFromContentType", - "Rank": 2, "Id": 1054, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" + "Rank": 2, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "CommandName": "Remove-PnPFieldFromContentType" }, { - "CommandName": "Remove-PnPFile", - "Rank": 1, "Id": 1055, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" + "Rank": 1, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "CommandName": "Remove-PnPFile" }, { - "CommandName": "Remove-PnPFile", - "Rank": 2, "Id": 1056, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" + "Rank": 2, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "CommandName": "Remove-PnPFile" }, { - "CommandName": "Remove-PnPFile", - "Rank": 3, "Id": 1057, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" + "Rank": 3, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "CommandName": "Remove-PnPFile" }, { - "CommandName": "Remove-PnPFileFromSiteTemplate", - "Rank": 1, "Id": 1058, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" + "Rank": 1, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "CommandName": "Remove-PnPFileFromSiteTemplate" }, { - "CommandName": "Remove-PnPFileSharingLink", - "Rank": 1, "Id": 1059, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Rank": 1, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Remove-PnPFileSharingLink" }, { - "CommandName": "Remove-PnPFileSharingLink", - "Rank": 2, "Id": 1060, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" + "Rank": 2, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "CommandName": "Remove-PnPFileSharingLink" }, { - "CommandName": "Remove-PnPFileVersion", - "Rank": 1, "Id": 1061, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Rank": 1, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "CommandName": "Remove-PnPFileVersion" }, { - "CommandName": "Remove-PnPFileVersion", - "Rank": 2, "Id": 1062, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Rank": 2, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "CommandName": "Remove-PnPFileVersion" }, { - "CommandName": "Remove-PnPFileVersion", - "Rank": 3, "Id": 1063, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" + "Rank": 3, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "CommandName": "Remove-PnPFileVersion" }, { - "CommandName": "Remove-PnPFlowOwner", - "Rank": 1, "Id": 1064, - "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 username@tenant.onmicrosoft.com", + "CommandName": "Remove-PnPFlowOwner" }, { - "CommandName": "Remove-PnPFlowOwner", - "Rank": 2, "Id": 1065, - "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 6844c04a-8ee7-40ad-af66-28f6e948cd04", + "CommandName": "Remove-PnPFlowOwner" }, { - "CommandName": "Remove-PnPFlowOwner", - "Rank": 3, "Id": 1066, - "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", + "CommandName": "Remove-PnPFlowOwner" }, { - "CommandName": "Remove-PnPFlowOwner", - "Rank": 4, "Id": 1067, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" + "Rank": 4, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", + "CommandName": "Remove-PnPFlowOwner" }, { - "CommandName": "Remove-PnPFolder", - "Rank": 1, "Id": 1068, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Rank": 1, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "CommandName": "Remove-PnPFolder" }, { - "CommandName": "Remove-PnPFolder", - "Rank": 2, "Id": 1069, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" + "Rank": 2, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "CommandName": "Remove-PnPFolder" }, { - "CommandName": "Remove-PnPFolderSharingLink", - "Rank": 1, "Id": 1070, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Rank": 1, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Remove-PnPFolderSharingLink" }, { - "CommandName": "Remove-PnPFolderSharingLink", - "Rank": 2, "Id": 1071, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" + "Rank": 2, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "CommandName": "Remove-PnPFolderSharingLink" }, { - "CommandName": "Remove-PnPGraphSubscription", - "Rank": 1, "Id": 1072, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" + "Rank": 1, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "CommandName": "Remove-PnPGraphSubscription" }, { - "CommandName": "Remove-PnPGroup", - "Rank": 1, "Id": 1073, - "Command": "Remove-PnPGroup -Identity \"My Users\"" + "Rank": 1, + "Command": "Remove-PnPGroup -Identity \"My Users\"", + "CommandName": "Remove-PnPGroup" }, { - "CommandName": "Remove-PnPGroupMember", - "Rank": 1, "Id": 1074, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Rank": 1, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "CommandName": "Remove-PnPGroupMember" }, { - "CommandName": "Remove-PnPHomeSite", - "Rank": 1, "Id": 1075, - "Command": "Remove-PnPHomeSite" + "Rank": 1, + "Command": "Remove-PnPHomeSite", + "CommandName": "Remove-PnPHomeSite" }, { - "CommandName": "Remove-PnPHubSiteAssociation", - "Rank": 1, "Id": 1076, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" + "Rank": 1, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "CommandName": "Remove-PnPHubSiteAssociation" }, { - "CommandName": "Remove-PnPHubToHubAssociation", - "Rank": 1, "Id": 1077, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" + "Rank": 1, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "CommandName": "Remove-PnPHubToHubAssociation" }, { - "CommandName": "Remove-PnPHubToHubAssociation", - "Rank": 2, "Id": 1078, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" + "Rank": 2, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "CommandName": "Remove-PnPHubToHubAssociation" }, { - "CommandName": "Remove-PnPIndexedProperty", - "Rank": 1, "Id": 1079, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" + "Rank": 1, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "CommandName": "Remove-PnPIndexedProperty" }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 1, "Id": 1080, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery" + "Rank": 1, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "CommandName": "Remove-PnPJavaScriptLink" }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 2, "Id": 1081, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" + "Rank": 2, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "CommandName": "Remove-PnPJavaScriptLink" }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 3, "Id": 1082, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" + "Rank": 3, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "CommandName": "Remove-PnPJavaScriptLink" }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 4, "Id": 1083, - "Command": "Remove-PnPJavaScriptLink -Scope Site" + "Rank": 4, + "Command": "Remove-PnPJavaScriptLink -Scope Site", + "CommandName": "Remove-PnPJavaScriptLink" }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 5, "Id": 1084, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" + "Rank": 5, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "CommandName": "Remove-PnPJavaScriptLink" }, { - "CommandName": "Remove-PnPKnowledgeHubSite", - "Rank": 1, "Id": 1085, - "Command": "Remove-PnPKnowledgeHubSite" + "Rank": 1, + "Command": "Remove-PnPKnowledgeHubSite", + "CommandName": "Remove-PnPKnowledgeHubSite" }, { - "CommandName": "Remove-PnPList", - "Rank": 1, "Id": 1086, - "Command": "Remove-PnPList -Identity Announcements" + "Rank": 1, + "Command": "Remove-PnPList -Identity Announcements", + "CommandName": "Remove-PnPList" }, { - "CommandName": "Remove-PnPList", - "Rank": 2, "Id": 1087, - "Command": "Remove-PnPList -Identity Announcements -Force" + "Rank": 2, + "Command": "Remove-PnPList -Identity Announcements -Force", + "CommandName": "Remove-PnPList" }, { - "CommandName": "Remove-PnPList", - "Rank": 3, "Id": 1088, - "Command": "Remove-PnPList -Identity Announcements -Recycle" + "Rank": 3, + "Command": "Remove-PnPList -Identity Announcements -Recycle", + "CommandName": "Remove-PnPList" }, { - "CommandName": "Remove-PnPList", - "Rank": 4, "Id": 1089, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" + "Rank": 4, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "CommandName": "Remove-PnPList" }, { - "CommandName": "Remove-PnPListDesign", - "Rank": 1, "Id": 1090, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPListDesign" }, { - "CommandName": "Remove-PnPListItem", - "Rank": 1, "Id": 1091, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" + "Rank": 1, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "CommandName": "Remove-PnPListItem" }, { - "CommandName": "Remove-PnPListItem", - "Rank": 2, "Id": 1092, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" + "Rank": 2, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "CommandName": "Remove-PnPListItem" }, { - "CommandName": "Remove-PnPListItem", - "Rank": 3, "Id": 1093, - "Command": "Remove-PnPListItem -List \"Demo List\"" + "Rank": 3, + "Command": "Remove-PnPListItem -List \"Demo List\"", + "CommandName": "Remove-PnPListItem" }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 1, "Id": 1094, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" + "Rank": 1, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "CommandName": "Remove-PnPListItemAttachment" }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 2, "Id": 1095, - "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", + "CommandName": "Remove-PnPListItemAttachment" }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 3, "Id": 1096, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" + "Rank": 3, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "CommandName": "Remove-PnPListItemAttachment" }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 4, "Id": 1097, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" + "Rank": 4, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "CommandName": "Remove-PnPListItemAttachment" }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 5, "Id": 1098, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" + "Rank": 5, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "CommandName": "Remove-PnPListItemAttachment" }, { - "CommandName": "Remove-PnPListItemVersion", - "Rank": 1, "Id": 1099, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Rank": 1, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "CommandName": "Remove-PnPListItemVersion" }, { - "CommandName": "Remove-PnPListItemVersion", - "Rank": 2, "Id": 1100, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Rank": 2, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "CommandName": "Remove-PnPListItemVersion" }, { - "CommandName": "Remove-PnPMicrosoft365Group", - "Rank": 1, "Id": 1101, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" + "Rank": 1, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "CommandName": "Remove-PnPMicrosoft365Group" }, { - "CommandName": "Remove-PnPMicrosoft365Group", - "Rank": 2, "Id": 1102, - "Command": "Remove-PnPMicrosoft365Group -Identity $group" + "Rank": 2, + "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "CommandName": "Remove-PnPMicrosoft365Group" }, { - "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Rank": 1, "Id": 1103, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { - "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Rank": 1, "Id": 1104, - "Command": "Remove-PnPMicrosoft365GroupOwner -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\"", + "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Rank": 1, "Id": 1105, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" + "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Rank": 2, "Id": 1106, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" + "Rank": 2, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { - "CommandName": "Remove-PnPNavigationNode", - "Rank": 1, "Id": 1107, - "Command": "Remove-PnPNavigationNode -Identity 1032" + "Rank": 1, + "Command": "Remove-PnPNavigationNode -Identity 1032", + "CommandName": "Remove-PnPNavigationNode" }, { - "CommandName": "Remove-PnPNavigationNode", - "Rank": 2, "Id": 1108, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" + "Rank": 2, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "CommandName": "Remove-PnPNavigationNode" }, { - "CommandName": "Remove-PnPNavigationNode", - "Rank": 3, "Id": 1109, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" + "Rank": 3, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "CommandName": "Remove-PnPNavigationNode" }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 1, "Id": 1110, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" + "Rank": 1, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 2, "Id": 1111, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" + "Rank": 2, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 3, "Id": 1112, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" + "Rank": 3, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "CommandName": "Remove-PnPOrgNewsSite", - "Rank": 1, "Id": 1113, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" + "Rank": 1, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "CommandName": "Remove-PnPOrgNewsSite" }, { - "CommandName": "Remove-PnPPage", - "Rank": 1, "Id": 1114, - "Command": "Remove-PnPPage -Identity \"MyPage\"" + "Rank": 1, + "Command": "Remove-PnPPage -Identity \"MyPage\"", + "CommandName": "Remove-PnPPage" }, { - "CommandName": "Remove-PnPPage", - "Rank": 2, "Id": 1115, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" + "Rank": 2, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "CommandName": "Remove-PnPPage" }, { - "CommandName": "Remove-PnPPage", - "Rank": 3, "Id": 1116, - "Command": "Remove-PnPPage $page" + "Rank": 3, + "Command": "Remove-PnPPage $page", + "CommandName": "Remove-PnPPage" }, { - "CommandName": "Remove-PnPPage", - "Rank": 4, "Id": 1117, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" + "Rank": 4, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "CommandName": "Remove-PnPPage" }, { - "CommandName": "Remove-PnPPageComponent", - "Rank": 1, "Id": 1118, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 1, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Remove-PnPPageComponent" }, { - "CommandName": "Remove-PnPPlannerBucket", - "Rank": 1, "Id": 1119, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" + "Rank": 1, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "CommandName": "Remove-PnPPlannerBucket" }, { - "CommandName": "Remove-PnPPlannerPlan", - "Rank": 1, "Id": 1120, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" + "Rank": 1, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "CommandName": "Remove-PnPPlannerPlan" }, { - "CommandName": "Remove-PnPPlannerRoster", - "Rank": 1, "Id": 1121, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Rank": 1, + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "CommandName": "Remove-PnPPlannerRoster" }, { - "CommandName": "Remove-PnPPlannerRosterMember", - "Rank": 1, "Id": 1122, - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 1, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPPlannerRosterMember" }, { - "CommandName": "Remove-PnPPlannerTask", - "Rank": 1, "Id": 1123, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" + "Rank": 1, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "CommandName": "Remove-PnPPlannerTask" }, { - "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 1, "Id": 1124, - "Command": "Remove-PnPPropertyBagValue -Key MyKey" + "Rank": 1, + "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "CommandName": "Remove-PnPPropertyBagValue" }, { - "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 2, "Id": 1125, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" + "Rank": 2, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "CommandName": "Remove-PnPPropertyBagValue" }, { - "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 3, "Id": 1126, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" + "Rank": 3, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "CommandName": "Remove-PnPPropertyBagValue" }, { - "CommandName": "Remove-PnPPublishingImageRendition", - "Rank": 1, "Id": 1127, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Rank": 1, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "CommandName": "Remove-PnPPublishingImageRendition" }, { - "CommandName": "Remove-PnPRoleDefinition", - "Rank": 1, "Id": 1128, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" + "Rank": 1, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "CommandName": "Remove-PnPRoleDefinition" }, { - "CommandName": "Remove-PnPSdnProvider", - "Rank": 1, "Id": 1129, - "Command": "Remove-PnPSdnProvider -Confirm:false" + "Rank": 1, + "Command": "Remove-PnPSdnProvider -Confirm:false", + "CommandName": "Remove-PnPSdnProvider" }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 1, "Id": 1130, - "Command": "Remove-PnPSearchConfiguration -Configuration $config" + "Rank": 1, + "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "CommandName": "Remove-PnPSearchConfiguration" }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 2, "Id": 1131, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" + "Rank": 2, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "CommandName": "Remove-PnPSearchConfiguration" }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 3, "Id": 1132, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Rank": 3, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "CommandName": "Remove-PnPSearchConfiguration" }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 4, "Id": 1133, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Rank": 4, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Remove-PnPSearchConfiguration" }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Rank": 1, "Id": 1134, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Rank": 1, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Rank": 2, "Id": 1135, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Rank": 2, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { - "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Rank": 1, "Id": 1136, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Rank": 1, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Remove-PnPSiteCollectionTermStore", - "Rank": 1, "Id": 1137, - "Command": "Remove-PnPSiteCollectionTermStore" + "Rank": 1, + "Command": "Remove-PnPSiteCollectionTermStore", + "CommandName": "Remove-PnPSiteCollectionTermStore" }, { - "CommandName": "Remove-PnPSiteDesign", - "Rank": 1, "Id": 1138, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteDesign" }, { - "CommandName": "Remove-PnPSiteDesignTask", - "Rank": 1, "Id": 1139, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteDesignTask" }, { - "CommandName": "Remove-PnPSiteGroup", - "Rank": 1, "Id": 1140, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" + "Rank": 1, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Remove-PnPSiteGroup" }, { - "CommandName": "Remove-PnPSiteGroup", - "Rank": 2, "Id": 1141, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" + "Rank": 2, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "CommandName": "Remove-PnPSiteGroup" }, { - "CommandName": "Remove-PnPSiteScript", - "Rank": 1, "Id": 1142, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteScript" }, { - "CommandName": "Remove-PnPSiteUserInvitations", - "Rank": 1, "Id": 1143, - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "Rank": 1, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "CommandName": "Remove-PnPSiteUserInvitations" }, { - "CommandName": "Remove-PnPStorageEntity", - "Rank": 1, "Id": 1144, - "Command": "Remove-PnPStorageEntity -Key MyKey" + "Rank": 1, + "Command": "Remove-PnPStorageEntity -Key MyKey", + "CommandName": "Remove-PnPStorageEntity" }, { - "CommandName": "Remove-PnPStorageEntity", - "Rank": 2, "Id": 1145, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" + "Rank": 2, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "CommandName": "Remove-PnPStorageEntity" }, { - "CommandName": "Remove-PnPStoredCredential", - "Rank": 1, "Id": 1146, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" + "Rank": 1, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "CommandName": "Remove-PnPStoredCredential" }, { - "CommandName": "Remove-PnPTaxonomyItem", - "Rank": 1, "Id": 1147, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" + "Rank": 1, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "CommandName": "Remove-PnPTaxonomyItem" }, { - "CommandName": "Remove-PnPTaxonomyItem", - "Rank": 2, "Id": 1148, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" + "Rank": 2, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "CommandName": "Remove-PnPTaxonomyItem" }, { - "CommandName": "Remove-PnPTeamsApp", - "Rank": 1, "Id": 1149, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" + "Rank": 1, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "CommandName": "Remove-PnPTeamsApp" }, { - "CommandName": "Remove-PnPTeamsApp", - "Rank": 2, "Id": 1150, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" + "Rank": 2, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "CommandName": "Remove-PnPTeamsApp" }, { - "CommandName": "Remove-PnPTeamsChannel", - "Rank": 1, "Id": 1151, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" + "Rank": 1, + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "CommandName": "Remove-PnPTeamsChannel" }, { - "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 1, "Id": 1152, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" + "Rank": 1, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "CommandName": "Remove-PnPTeamsChannelUser" }, { - "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 2, "Id": 1153, - "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 00000000-0000-0000-0000-000000000000", + "CommandName": "Remove-PnPTeamsChannelUser" }, { - "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 3, "Id": 1154, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" + "Rank": 3, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "CommandName": "Remove-PnPTeamsChannelUser" }, { - "CommandName": "Remove-PnPTeamsTab", - "Rank": 1, "Id": 1155, - "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 \"General\" -Identity Wiki", + "CommandName": "Remove-PnPTeamsTab" }, { - "CommandName": "Remove-PnPTeamsTab", - "Rank": 2, "Id": 1156, - "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 Wiki", + "CommandName": "Remove-PnPTeamsTab" }, { - "CommandName": "Remove-PnPTeamsTab", - "Rank": 3, "Id": 1157, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" + "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" }, { - "CommandName": "Remove-PnPTeamsTag", - "Rank": 1, "Id": 1158, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Rank": 1, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "CommandName": "Remove-PnPTeamsTag" }, { - "CommandName": "Remove-PnPTeamsTeam", - "Rank": 1, "Id": 1159, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Rank": 1, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "CommandName": "Remove-PnPTeamsTeam" }, { - "CommandName": "Remove-PnPTeamsTeam", - "Rank": 2, "Id": 1160, - "Command": "Remove-PnPTeamsTeam -Identity testteam" + "Rank": 2, + "Command": "Remove-PnPTeamsTeam -Identity testteam", + "CommandName": "Remove-PnPTeamsTeam" }, { - "CommandName": "Remove-PnPTeamsUser", - "Rank": 1, "Id": 1161, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" + "Rank": 1, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "CommandName": "Remove-PnPTeamsUser" }, { - "CommandName": "Remove-PnPTeamsUser", - "Rank": 2, "Id": 1162, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Rank": 2, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Remove-PnPTeamsUser" }, { - "CommandName": "Remove-PnPTenantCdnOrigin", - "Rank": 1, "Id": 1163, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Rank": 1, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "CommandName": "Remove-PnPTenantCdnOrigin" }, { - "CommandName": "Remove-PnPTenantDeletedSite", - "Rank": 1, "Id": 1164, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Remove-PnPTenantDeletedSite" }, { - "CommandName": "Remove-PnPTenantDeletedSite", - "Rank": 2, "Id": 1165, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Rank": 2, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "CommandName": "Remove-PnPTenantDeletedSite" }, { - "CommandName": "Remove-PnPTenantSite", - "Rank": 1, "Id": 1166, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Remove-PnPTenantSite" }, { - "CommandName": "Remove-PnPTenantSite", - "Rank": 2, "Id": 1167, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" + "Rank": 2, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "CommandName": "Remove-PnPTenantSite" }, { - "CommandName": "Remove-PnPTenantSite", - "Rank": 3, "Id": 1168, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" + "Rank": 3, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "CommandName": "Remove-PnPTenantSite" }, { - "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1, "Id": 1169, - "Command": "Remove-PnPTenantSyncClientRestriction" + "Rank": 1, + "Command": "Remove-PnPTenantSyncClientRestriction", + "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { - "CommandName": "Remove-PnPTenantTheme", - "Rank": 1, "Id": 1170, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Rank": 1, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "CommandName": "Remove-PnPTenantTheme" }, { - "CommandName": "Remove-PnPTerm", - "Rank": 1, "Id": 1171, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Rank": 1, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "CommandName": "Remove-PnPTerm" }, { - "CommandName": "Remove-PnPTerm", - "Rank": 2, "Id": 1172, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Remove-PnPTerm" }, { - "CommandName": "Remove-PnPTermGroup", - "Rank": 1, "Id": 1173, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Rank": 1, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "CommandName": "Remove-PnPTermGroup" }, { - "CommandName": "Remove-PnPTermGroup", - "Rank": 2, "Id": 1174, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" + "Rank": 2, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "CommandName": "Remove-PnPTermGroup" }, { - "CommandName": "Remove-PnPTermGroup", - "Rank": 3, "Id": 1175, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" + "Rank": 3, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "CommandName": "Remove-PnPTermGroup" }, { - "CommandName": "Remove-PnPTermLabel", - "Rank": 1, "Id": 1176, - "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 2d1f298b-804a-4a05-96dc-29b667adec62", + "CommandName": "Remove-PnPTermLabel" }, { - "CommandName": "Remove-PnPTermLabel", - "Rank": 2, "Id": 1177, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Remove-PnPTermLabel" }, { - "CommandName": "Remove-PnPUser", - "Rank": 1, "Id": 1178, - "Command": "Remove-PnPUser -Identity 23" + "Rank": 1, + "Command": "Remove-PnPUser -Identity 23", + "CommandName": "Remove-PnPUser" }, { - "CommandName": "Remove-PnPUser", - "Rank": 2, "Id": 1179, - "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", + "CommandName": "Remove-PnPUser" }, { - "CommandName": "Remove-PnPUser", - "Rank": 3, "Id": 1180, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" + "Rank": 3, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "CommandName": "Remove-PnPUser" }, { - "CommandName": "Remove-PnPUserInfo", - "Rank": 1, "Id": 1181, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" + "Rank": 1, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "CommandName": "Remove-PnPUserInfo" }, { - "CommandName": "Remove-PnPUserProfile", - "Rank": 1, "Id": 1182, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com" + "Rank": 1, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "CommandName": "Remove-PnPUserProfile" }, { - "CommandName": "Remove-PnPView", - "Rank": 1, "Id": 1183, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" + "Rank": 1, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "CommandName": "Remove-PnPView" }, { - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Rank": 1, "Id": 1184, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Rank": 1, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Remove-PnPWeb", - "Rank": 1, "Id": 1185, - "Command": "Remove-PnPWeb -Identity projectA" + "Rank": 1, + "Command": "Remove-PnPWeb -Identity projectA", + "CommandName": "Remove-PnPWeb" }, { - "CommandName": "Remove-PnPWeb", - "Rank": 2, "Id": 1186, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" + "Rank": 2, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "CommandName": "Remove-PnPWeb" }, { - "CommandName": "Remove-PnPWebhookSubscription", - "Rank": 1, "Id": 1187, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" + "Rank": 1, + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "CommandName": "Remove-PnPWebhookSubscription" }, { - "CommandName": "Remove-PnPWebPart", - "Rank": 1, "Id": 1188, - "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\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Remove-PnPWebPart" }, { - "CommandName": "Remove-PnPWebPart", - "Rank": 2, "Id": 1189, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" + "Rank": 2, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "CommandName": "Remove-PnPWebPart" }, { - "CommandName": "Remove-PnPWikiPage", - "Rank": 1, "Id": 1190, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" + "Rank": 1, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "CommandName": "Remove-PnPWikiPage" }, { - "CommandName": "Rename-PnPFile", - "Rank": 1, "Id": 1191, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" + "Rank": 1, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "CommandName": "Rename-PnPFile" }, { - "CommandName": "Rename-PnPFile", - "Rank": 2, "Id": 1192, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" + "Rank": 2, + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "CommandName": "Rename-PnPFile" }, { - "CommandName": "Rename-PnPFile", - "Rank": 3, "Id": 1193, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" + "Rank": 3, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "CommandName": "Rename-PnPFile" }, { - "CommandName": "Rename-PnPFolder", - "Rank": 1, "Id": 1194, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" + "Rank": 1, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "CommandName": "Rename-PnPFolder" }, { - "CommandName": "Repair-PnPSite", - "Rank": 1, "Id": 1195, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Rank": 1, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Repair-PnPSite" }, { - "CommandName": "Repair-PnPSite", - "Rank": 2, "Id": 1196, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "Rank": 2, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "CommandName": "Repair-PnPSite" }, { - "CommandName": "Request-PnPAccessToken", - "Rank": 1, "Id": 1197, - "Command": "Request-PnPAccessToken" + "Rank": 1, + "Command": "Request-PnPAccessToken", + "CommandName": "Request-PnPAccessToken" }, { - "CommandName": "Request-PnPAccessToken", - "Rank": 2, "Id": 1198, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" + "Rank": 2, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "CommandName": "Request-PnPAccessToken" }, { - "CommandName": "Request-PnPAccessToken", - "Rank": 3, "Id": 1199, - "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", + "CommandName": "Request-PnPAccessToken" }, { - "CommandName": "Request-PnPAccessToken", - "Rank": 4, "Id": 1200, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" + "Rank": 4, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "CommandName": "Request-PnPAccessToken" }, { - "CommandName": "Request-PnPPersonalSite", - "Rank": 1, "Id": 1201, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" + "Rank": 1, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "CommandName": "Request-PnPPersonalSite" }, { - "CommandName": "Request-PnPPersonalSite", - "Rank": 2, "Id": 1202, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" + "Rank": 2, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "CommandName": "Request-PnPPersonalSite" }, { - "CommandName": "Request-PnPReIndexList", - "Rank": 1, "Id": 1203, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"" + "Rank": 1, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "CommandName": "Request-PnPReIndexList" }, { - "CommandName": "Request-PnPReIndexWeb", - "Rank": 1, "Id": 1204, - "Command": "Request-PnPReIndexWeb" + "Rank": 1, + "Command": "Request-PnPReIndexWeb", + "CommandName": "Request-PnPReIndexWeb" }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 1, "Id": 1205, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" + "Rank": 1, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 2, "Id": 1206, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" + "Rank": 2, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 3, "Id": 1207, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" + "Rank": 3, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "CommandName": "Reset-PnPFileVersion", - "Rank": 1, "Id": 1208, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" + "Rank": 1, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "CommandName": "Reset-PnPFileVersion" }, { - "CommandName": "Reset-PnPFileVersion", - "Rank": 2, "Id": 1209, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" + "Rank": 2, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "CommandName": "Reset-PnPFileVersion" }, { - "CommandName": "Reset-PnPLabel", - "Rank": 1, "Id": 1210, - "Command": "Reset-PnPLabel -List \"Demo List\"" + "Rank": 1, + "Command": "Reset-PnPLabel -List \"Demo List\"", + "CommandName": "Reset-PnPLabel" }, { - "CommandName": "Reset-PnPLabel", - "Rank": 2, "Id": 1211, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" + "Rank": 2, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "CommandName": "Reset-PnPLabel" }, { - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1, "Id": 1212, - "Command": "Reset-PnPMicrosoft365GroupExpiration" + "Rank": 1, + "Command": "Reset-PnPMicrosoft365GroupExpiration", + "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Rank": 1, "Id": 1213, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" + "Rank": 1, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { - "CommandName": "Resolve-PnPFolder", - "Rank": 1, "Id": 1214, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" + "Rank": 1, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "CommandName": "Resolve-PnPFolder" }, { - "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Rank": 1, "Id": 1215, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Rank": 1, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { - "CommandName": "Restore-PnPFileVersion", - "Rank": 1, "Id": 1216, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Rank": 1, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "CommandName": "Restore-PnPFileVersion" }, { - "CommandName": "Restore-PnPFileVersion", - "Rank": 2, "Id": 1217, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" + "Rank": 2, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "CommandName": "Restore-PnPFileVersion" }, { - "CommandName": "Restore-PnPFileVersion", - "Rank": 3, "Id": 1218, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Rank": 3, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "CommandName": "Restore-PnPFileVersion" }, { - "CommandName": "Restore-PnPListItemVersion", - "Rank": 1, "Id": 1219, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Rank": 1, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "CommandName": "Restore-PnPListItemVersion" }, { - "CommandName": "Restore-PnPListItemVersion", - "Rank": 2, "Id": 1220, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Rank": 2, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "CommandName": "Restore-PnPListItemVersion" }, { - "CommandName": "Restore-PnPRecycleBinItem", - "Rank": 1, "Id": 1221, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Rank": 1, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "CommandName": "Restore-PnPRecycleBinItem" }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Rank": 1, "Id": 1222, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Rank": 2, "Id": 1223, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Rank": 2, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { - "CommandName": "Restore-PnPTenantSite", - "Rank": 1, "Id": 1224, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Restore-PnPTenantSite" }, { - "CommandName": "Restore-PnPTenantSite", - "Rank": 2, "Id": 1225, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Rank": 2, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "CommandName": "Restore-PnPTenantSite" }, { - "CommandName": "Restore-PnPTenantSite", - "Rank": 3, "Id": 1226, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" + "Rank": 3, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "CommandName": "Restore-PnPTenantSite" }, { - "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Rank": 1, "Id": 1227, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" + "Rank": 1, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { - "CommandName": "Revoke-PnPHubSiteRights", - "Rank": 1, "Id": 1228, - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Rank": 1, + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Revoke-PnPHubSiteRights" }, { - "CommandName": "Revoke-PnPSiteDesignRights", - "Rank": 1, "Id": 1229, - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -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\"", + "CommandName": "Revoke-PnPSiteDesignRights" }, { - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Rank": 1, "Id": 1230, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Rank": 1, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { - "CommandName": "Revoke-PnPUserSession", - "Rank": 1, "Id": 1231, - "Command": "Revoke-PnPUserSession -User user1@contoso.com" + "Rank": 1, + "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "CommandName": "Revoke-PnPUserSession" }, { - "CommandName": "Save-PnPPageConversionLog", - "Rank": 1, "Id": 1232, - "Command": "Save-PnPPageConversionLog" + "Rank": 1, + "Command": "Save-PnPPageConversionLog", + "CommandName": "Save-PnPPageConversionLog" }, { - "CommandName": "Save-PnPSiteTemplate", - "Rank": 1, "Id": 1233, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" + "Rank": 1, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "CommandName": "Save-PnPSiteTemplate" }, { - "CommandName": "Save-PnPTenantTemplate", - "Rank": 1, "Id": 1234, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" + "Rank": 1, + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "CommandName": "Save-PnPTenantTemplate" }, { - "CommandName": "Send-PnPMail", - "Rank": 1, "Id": 1235, - "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 \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "CommandName": "Send-PnPMail" }, { - "CommandName": "Send-PnPMail", - "Rank": 2, "Id": 1236, - "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 -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" }, { - "CommandName": "Send-PnPMail", - "Rank": 3, "Id": 1237, - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" + "Rank": 3, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "CommandName": "Send-PnPMail" }, { - "CommandName": "Send-PnPMail", - "Rank": 4, "Id": 1238, - "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.onmicrosoft.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server contoso.mail.protection.outlook.com", + "CommandName": "Send-PnPMail" }, { - "CommandName": "Send-PnPMail", - "Rank": 5, "Id": 1239, - "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", + "CommandName": "Send-PnPMail" }, { - "CommandName": "Send-PnPMail", - "Rank": 6, "Id": 1240, - "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": "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" }, { - "CommandName": "Set-PnPAdaptiveScopeProperty", - "Rank": 1, "Id": 1241, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" + "Rank": 1, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "CommandName": "Set-PnPAdaptiveScopeProperty" }, { - "CommandName": "Set-PnPApplicationCustomizer", - "Rank": 1, "Id": 1242, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 1, + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Set-PnPApplicationCustomizer" }, { - "CommandName": "Set-PnPApplicationCustomizer", - "Rank": 2, "Id": 1243, - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" + "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" }, { - "CommandName": "Set-PnPAppSideLoading", - "Rank": 1, "Id": 1244, - "Command": "Set-PnPAppSideLoading -On" + "Rank": 1, + "Command": "Set-PnPAppSideLoading -On", + "CommandName": "Set-PnPAppSideLoading" }, { - "CommandName": "Set-PnPAppSideLoading", - "Rank": 2, "Id": 1245, - "Command": "Set-PnPAppSideLoading -Off" + "Rank": 2, + "Command": "Set-PnPAppSideLoading -Off", + "CommandName": "Set-PnPAppSideLoading" }, { - "CommandName": "Set-PnPAuditing", - "Rank": 1, "Id": 1246, - "Command": "Set-PnPAuditing -EnableAll" + "Rank": 1, + "Command": "Set-PnPAuditing -EnableAll", + "CommandName": "Set-PnPAuditing" }, { - "CommandName": "Set-PnPAuditing", - "Rank": 2, "Id": 1247, - "Command": "Set-PnPAuditing -DisableAll" + "Rank": 2, + "Command": "Set-PnPAuditing -DisableAll", + "CommandName": "Set-PnPAuditing" }, { - "CommandName": "Set-PnPAuditing", - "Rank": 3, "Id": 1248, - "Command": "Set-PnPAuditing -RetentionTime 7" + "Rank": 3, + "Command": "Set-PnPAuditing -RetentionTime 7", + "CommandName": "Set-PnPAuditing" }, { - "CommandName": "Set-PnPAuditing", - "Rank": 4, "Id": 1249, - "Command": "Set-PnPAuditing -TrimAuditLog" + "Rank": 4, + "Command": "Set-PnPAuditing -TrimAuditLog", + "CommandName": "Set-PnPAuditing" }, { - "CommandName": "Set-PnPAuditing", - "Rank": 5, "Id": 1250, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" + "Rank": 5, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "CommandName": "Set-PnPAuditing" }, { - "CommandName": "Set-PnPAvailablePageLayouts", - "Rank": 1, "Id": 1251, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" + "Rank": 1, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "CommandName": "Set-PnPAvailablePageLayouts" }, { - "CommandName": "Set-PnPAzureADAppSitePermission", - "Rank": 1, "Id": 1252, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" + "Rank": 1, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "CommandName": "Set-PnPAzureADAppSitePermission" }, { - "CommandName": "Set-PnPAzureADAppSitePermission", - "Rank": 2, "Id": 1253, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" + "Rank": 2, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "CommandName": "Set-PnPAzureADAppSitePermission" }, { - "CommandName": "Set-PnPAzureADGroup", - "Rank": 1, "Id": 1254, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" + "Rank": 1, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPAzureADGroup" }, { - "CommandName": "Set-PnPAzureADGroup", - "Rank": 2, "Id": 1255, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Rank": 2, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPAzureADGroup" }, { - "CommandName": "Set-PnPAzureADGroup", - "Rank": 3, "Id": 1256, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" + "Rank": 3, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "CommandName": "Set-PnPAzureADGroup" }, { - "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 1, "Id": 1257, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" + "Rank": 1, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "CommandName": "Set-PnPBrowserIdleSignout" }, { - "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 2, "Id": 1258, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" + "Rank": 2, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "CommandName": "Set-PnPBrowserIdleSignout" }, { - "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 3, "Id": 1259, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" + "Rank": 3, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "CommandName": "Set-PnPBrowserIdleSignout" }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Rank": 1, "Id": 1260, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" + "Rank": 1, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Rank": 2, "Id": 1261, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" + "Rank": 2, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 1, "Id": 1262, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" + "Rank": 1, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 2, "Id": 1263, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" + "Rank": 2, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 3, "Id": 1264, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" + "Rank": 3, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 4, "Id": 1265, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" + "Rank": 4, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Set-PnPContentType", - "Rank": 1, "Id": 1266, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "Rank": 1, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "CommandName": "Set-PnPContentType" }, { - "CommandName": "Set-PnPContentType", - "Rank": 2, "Id": 1267, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" + "Rank": 2, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "CommandName": "Set-PnPContentType" }, { - "CommandName": "Set-PnPContentType", - "Rank": 3, "Id": 1268, - "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\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "CommandName": "Set-PnPContentType" }, { - "CommandName": "Set-PnPContentType", - "Rank": 4, "Id": 1269, - "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\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "CommandName": "Set-PnPContentType" }, { - "CommandName": "Set-PnPContentType", - "Rank": 5, "Id": 1270, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "Rank": 5, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "CommandName": "Set-PnPContentType" }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 1, "Id": 1271, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" + "Rank": 1, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "CommandName": "Set-PnPDefaultColumnValues" }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 2, "Id": 1272, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" + "Rank": 2, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "CommandName": "Set-PnPDefaultColumnValues" }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 3, "Id": 1273, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" + "Rank": 3, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "CommandName": "Set-PnPDefaultColumnValues" }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 4, "Id": 1274, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" + "Rank": 4, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "CommandName": "Set-PnPDefaultColumnValues" }, { - "CommandName": "Set-PnPDefaultContentTypeToList", - "Rank": 1, "Id": 1275, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" + "Rank": 1, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "CommandName": "Set-PnPDefaultContentTypeToList" }, { - "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 1, "Id": 1276, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" + "Rank": 1, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "CommandName": "Set-PnPDefaultPageLayout" }, { - "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 2, "Id": 1277, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" + "Rank": 2, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "CommandName": "Set-PnPDefaultPageLayout" }, { - "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 3, "Id": 1278, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" + "Rank": 3, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "CommandName": "Set-PnPDefaultPageLayout" }, { - "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 1, "Id": 1279, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" + "Rank": 1, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "CommandName": "Set-PnPDisableSpacesActivation" }, { - "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 2, "Id": 1280, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Rank": 2, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "CommandName": "Set-PnPDisableSpacesActivation" }, { - "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 3, "Id": 1281, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Rank": 3, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "CommandName": "Set-PnPDisableSpacesActivation" }, { - "CommandName": "Set-PnPDocumentSetField", - "Rank": 1, "Id": 1282, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" + "Rank": 1, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "CommandName": "Set-PnPDocumentSetField" }, { - "CommandName": "Set-PnPDocumentSetField", - "Rank": 2, "Id": 1283, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" + "Rank": 2, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "CommandName": "Set-PnPDocumentSetField" }, { - "CommandName": "Set-PnPField", - "Rank": 1, "Id": 1284, - "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\"}", + "CommandName": "Set-PnPField" }, { - "CommandName": "Set-PnPField", - "Rank": 2, "Id": 1285, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" + "Rank": 2, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "CommandName": "Set-PnPField" }, { - "CommandName": "Set-PnPField", - "Rank": 3, "Id": 1286, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" + "Rank": 3, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "CommandName": "Set-PnPField" }, { - "CommandName": "Set-PnPFileCheckedIn", - "Rank": 1, "Id": 1287, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" + "Rank": 1, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "CommandName": "Set-PnPFileCheckedIn" }, { - "CommandName": "Set-PnPFileCheckedIn", - "Rank": 2, "Id": 1288, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" + "Rank": 2, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "CommandName": "Set-PnPFileCheckedIn" }, { - "CommandName": "Set-PnPFileCheckedOut", - "Rank": 1, "Id": 1289, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" + "Rank": 1, + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "CommandName": "Set-PnPFileCheckedOut" }, { - "CommandName": "Set-PnPFolderPermission", - "Rank": 1, "Id": 1290, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" + "Rank": 1, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPFolderPermission" }, { - "CommandName": "Set-PnPFolderPermission", - "Rank": 2, "Id": 1291, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Rank": 2, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPFolderPermission" }, { - "CommandName": "Set-PnPFolderPermission", - "Rank": 3, "Id": 1292, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "Rank": 3, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "CommandName": "Set-PnPFolderPermission" }, { - "CommandName": "Set-PnPFooter", - "Rank": 1, "Id": 1293, - "Command": "Set-PnPFooter -Enabled:$true" + "Rank": 1, + "Command": "Set-PnPFooter -Enabled:$true", + "CommandName": "Set-PnPFooter" }, { - "CommandName": "Set-PnPFooter", - "Rank": 2, "Id": 1294, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" + "Rank": 2, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "CommandName": "Set-PnPFooter" }, { - "CommandName": "Set-PnPFooter", - "Rank": 3, "Id": 1295, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" + "Rank": 3, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "CommandName": "Set-PnPFooter" }, { - "CommandName": "Set-PnPFooter", - "Rank": 4, "Id": 1296, - "Command": "Set-PnPFooter -LogoUrl \"\"" + "Rank": 4, + "Command": "Set-PnPFooter -LogoUrl \"\"", + "CommandName": "Set-PnPFooter" }, { - "CommandName": "Set-PnPGraphSubscription", - "Rank": 1, "Id": 1297, - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" + "Rank": 1, + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "CommandName": "Set-PnPGraphSubscription" }, { - "CommandName": "Set-PnPGroup", - "Rank": 1, "Id": 1298, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" + "Rank": 1, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "CommandName": "Set-PnPGroup" }, { - "CommandName": "Set-PnPGroup", - "Rank": 2, "Id": 1299, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" + "Rank": 2, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "CommandName": "Set-PnPGroup" }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 1, "Id": 1300, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" + "Rank": 1, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "CommandName": "Set-PnPGroupPermissions" }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 2, "Id": 1301, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" + "Rank": 2, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "CommandName": "Set-PnPGroupPermissions" }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 3, "Id": 1302, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" + "Rank": 3, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "CommandName": "Set-PnPGroupPermissions" }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 4, "Id": 1303, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" + "Rank": 4, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "CommandName": "Set-PnPGroupPermissions" }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 5, "Id": 1304, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" + "Rank": 5, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "CommandName": "Set-PnPGroupPermissions" }, { - "CommandName": "Set-PnPHideDefaultThemes", - "Rank": 1, "Id": 1305, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" + "Rank": 1, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "CommandName": "Set-PnPHideDefaultThemes" }, { - "CommandName": "Set-PnPHideDefaultThemes", - "Rank": 2, "Id": 1306, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" + "Rank": 2, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "CommandName": "Set-PnPHideDefaultThemes" }, { - "CommandName": "Set-PnPHomePage", - "Rank": 1, "Id": 1307, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" + "Rank": 1, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "CommandName": "Set-PnPHomePage" }, { - "CommandName": "Set-PnPHomePage", - "Rank": 2, "Id": 1308, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" + "Rank": 2, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "CommandName": "Set-PnPHomePage" }, { - "CommandName": "Set-PnPHomeSite", - "Rank": 1, "Id": 1309, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" + "Rank": 1, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "CommandName": "Set-PnPHomeSite" }, { - "CommandName": "Set-PnPHomeSite", - "Rank": 2, "Id": 1310, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" + "Rank": 2, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "CommandName": "Set-PnPHomeSite" }, { - "CommandName": "Set-PnPHubSite", - "Rank": 1, "Id": 1311, - "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\" -Title \"My New Title\"", + "CommandName": "Set-PnPHubSite" }, { - "CommandName": "Set-PnPHubSite", - "Rank": 2, "Id": 1312, - "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\" -Description \"My updated description\"", + "CommandName": "Set-PnPHubSite" }, { - "CommandName": "Set-PnPHubSite", - "Rank": 3, "Id": 1313, - "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\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "CommandName": "Set-PnPHubSite" }, { - "CommandName": "Set-PnPHubSite", - "Rank": 4, "Id": 1314, - "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\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", + "CommandName": "Set-PnPHubSite" }, { - "CommandName": "Set-PnPHubSite", - "Rank": 5, "Id": 1315, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" + "Rank": 5, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "CommandName": "Set-PnPHubSite" }, { - "CommandName": "Set-PnPHubSite", - "Rank": 6, "Id": 1316, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" + "Rank": 6, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "CommandName": "Set-PnPHubSite" }, { - "CommandName": "Set-PnPImageListItemColumn", - "Rank": 1, "Id": 1317, - "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\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "CommandName": "Set-PnPImageListItemColumn" }, { - "CommandName": "Set-PnPImageListItemColumn", - "Rank": 2, "Id": 1318, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" + "Rank": 2, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "CommandName": "Set-PnPImageListItemColumn" }, { - "CommandName": "Set-PnPIndexedProperties", - "Rank": 1, "Id": 1319, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" + "Rank": 1, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "CommandName": "Set-PnPIndexedProperties" }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Rank": 1, "Id": 1320, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" + "Rank": 1, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Rank": 2, "Id": 1321, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" + "Rank": 2, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { - "CommandName": "Set-PnPKnowledgeHubSite", - "Rank": 1, "Id": 1322, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" + "Rank": 1, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "CommandName": "Set-PnPKnowledgeHubSite" }, { - "CommandName": "Set-PnPLabel", - "Rank": 1, "Id": 1323, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" + "Rank": 1, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "CommandName": "Set-PnPLabel" }, { - "CommandName": "Set-PnPLabel", - "Rank": 2, "Id": 1324, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" + "Rank": 2, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "CommandName": "Set-PnPLabel" }, { - "CommandName": "Set-PnPList", - "Rank": 1, "Id": 1325, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" + "Rank": 1, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 2, "Id": 1326, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" + "Rank": 2, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 3, "Id": 1327, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" + "Rank": 3, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 4, "Id": 1328, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" + "Rank": 4, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 5, "Id": 1329, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" + "Rank": 5, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 6, "Id": 1330, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" + "Rank": 6, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 7, "Id": 1331, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" + "Rank": 7, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 8, "Id": 1332, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" + "Rank": 8, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 9, "Id": 1333, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" + "Rank": 9, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 10, "Id": 1334, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" + "Rank": 10, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 11, "Id": 1335, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" + "Rank": 11, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPListInformationRightsManagement", - "Rank": 1, "Id": 1336, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" + "Rank": 1, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "CommandName": "Set-PnPListInformationRightsManagement" }, { - "CommandName": "Set-PnPListInformationRightsManagement", - "Rank": 2, "Id": 1337, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" + "Rank": 2, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "CommandName": "Set-PnPListInformationRightsManagement" }, { - "CommandName": "Set-PnPListItem", - "Rank": 1, "Id": 1338, - "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 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem" }, { - "CommandName": "Set-PnPListItem", - "Rank": 2, "Id": 1339, - "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 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem" }, { - "CommandName": "Set-PnPListItem", - "Rank": 3, "Id": 1340, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Rank": 3, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem" }, { - "CommandName": "Set-PnPListItem", - "Rank": 4, "Id": 1341, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" + "Rank": 4, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "CommandName": "Set-PnPListItem" }, { - "CommandName": "Set-PnPListItem", - "Rank": 5, "Id": 1342, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" + "Rank": 5, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "CommandName": "Set-PnPListItem" }, { - "CommandName": "Set-PnPListItemAsRecord", - "Rank": 1, "Id": 1343, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Rank": 1, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "CommandName": "Set-PnPListItemAsRecord" }, { - "CommandName": "Set-PnPListItemAsRecord", - "Rank": 2, "Id": 1344, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" + "Rank": 2, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "CommandName": "Set-PnPListItemAsRecord" }, { - "CommandName": "Set-PnPListItemPermission", - "Rank": 1, "Id": 1345, - "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' -AddRole 'Contribute'", + "CommandName": "Set-PnPListItemPermission" }, { - "CommandName": "Set-PnPListItemPermission", - "Rank": 2, "Id": 1346, - "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' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPListItemPermission" }, { - "CommandName": "Set-PnPListItemPermission", - "Rank": 3, "Id": 1347, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "Rank": 3, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "CommandName": "Set-PnPListItemPermission" }, { - "CommandName": "Set-PnPListItemPermission", - "Rank": 4, "Id": 1348, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" + "Rank": 4, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "CommandName": "Set-PnPListItemPermission" }, { - "CommandName": "Set-PnPListItemPermission", - "Rank": 5, "Id": 1349, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" + "Rank": 5, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "CommandName": "Set-PnPListItemPermission" }, { - "CommandName": "Set-PnPListPermission", - "Rank": 1, "Id": 1350, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" + "Rank": 1, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPListPermission" }, { - "CommandName": "Set-PnPListPermission", - "Rank": 2, "Id": 1351, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Rank": 2, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPListPermission" }, { - "CommandName": "Set-PnPListRecordDeclaration", - "Rank": 1, "Id": 1352, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" + "Rank": 1, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "CommandName": "Set-PnPListRecordDeclaration" }, { - "CommandName": "Set-PnPListRecordDeclaration", - "Rank": 2, "Id": 1353, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" + "Rank": 2, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "CommandName": "Set-PnPListRecordDeclaration" }, { - "CommandName": "Set-PnPMasterPage", - "Rank": 1, "Id": 1354, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "Rank": 1, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage" }, { - "CommandName": "Set-PnPMasterPage", - "Rank": 2, "Id": 1355, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "Rank": 2, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage" }, { - "CommandName": "Set-PnPMasterPage", - "Rank": 3, "Id": 1356, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "Rank": 3, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage" }, { - "CommandName": "Set-PnPMasterPage", - "Rank": 4, "Id": 1357, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "Rank": 4, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 1, "Id": 1358, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 2, "Id": 1359, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3, "Id": 1360, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived" + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 1, "Id": 1361, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 2, "Id": 1362, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3, "Id": 1363, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 1, "Id": 1364, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 2, "Id": 1365, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3, "Id": 1366, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 1, "Id": 1367, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 2, "Id": 1368, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3, "Id": 1369, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 1, "Id": 1370, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 2, "Id": 1371, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3, "Id": 1372, - "Command": "Set-PnPMessageCenterAnnouncementAsRead" + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 1, "Id": 1373, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" + "Rank": 1, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 2, "Id": 1374, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" + "Rank": 2, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3, "Id": 1375, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread" + "Rank": 3, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 1, "Id": 1376, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" + "Rank": 1, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPMicrosoft365Group" }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 2, "Id": 1377, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Rank": 2, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPMicrosoft365Group" }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 3, "Id": 1378, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" + "Rank": 3, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "CommandName": "Set-PnPMicrosoft365Group" }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 4, "Id": 1379, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" + "Rank": 4, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "CommandName": "Set-PnPMicrosoft365Group" }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 5, "Id": 1380, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" + "Rank": 5, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "CommandName": "Set-PnPMicrosoft365Group" }, { - "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 6, "Id": 1381, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "Rank": 6, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "CommandName": "Set-PnPMicrosoft365Group" }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Rank": 1, "Id": 1382, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" + "Rank": 1, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Rank": 2, "Id": 1383, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" + "Rank": 2, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Rank": 1, "Id": 1384, - "Command": "Set-PnPMinimalDownloadStrategy -Off" + "Rank": 1, + "Command": "Set-PnPMinimalDownloadStrategy -Off", + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Rank": 2, "Id": 1385, - "Command": "Set-PnPMinimalDownloadStrategy -On" + "Rank": 2, + "Command": "Set-PnPMinimalDownloadStrategy -On", + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { - "CommandName": "Set-PnPPage", - "Rank": 1, "Id": 1386, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" + "Rank": 1, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", - "Rank": 2, "Id": 1387, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" + "Rank": 2, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", - "Rank": 3, "Id": 1388, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" + "Rank": 3, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", - "Rank": 4, "Id": 1389, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" + "Rank": 4, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", - "Rank": 5, "Id": 1390, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" + "Rank": 5, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", - "Rank": 6, "Id": 1391, - "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\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", - "Rank": 7, "Id": 1392, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" + "Rank": 7, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", - "Rank": 8, "Id": 1393, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" + "Rank": 8, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", - "Rank": 9, "Id": 1394, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" + "Rank": 9, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", - "Rank": 10, "Id": 1395, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" + "Rank": 10, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", - "Rank": 11, "Id": 1396, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" + "Rank": 11, + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPageTextPart", - "Rank": 1, "Id": 1397, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" + "Rank": 1, + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "CommandName": "Set-PnPPageTextPart" }, { - "CommandName": "Set-PnPPageWebPart", - "Rank": 1, "Id": 1398, - "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 \"`\"Property1`\"=`\"Value1`\"\"", + "CommandName": "Set-PnPPageWebPart" }, { - "CommandName": "Set-PnPPageWebPart", - "Rank": 2, "Id": 1399, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" + "Rank": 2, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "CommandName": "Set-PnPPageWebPart" }, { - "CommandName": "Set-PnPPlannerBucket", - "Rank": 1, "Id": 1400, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" + "Rank": 1, + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "CommandName": "Set-PnPPlannerBucket" }, { - "CommandName": "Set-PnPPlannerConfiguration", - "Rank": 1, "Id": 1401, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" + "Rank": 1, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "CommandName": "Set-PnPPlannerConfiguration" }, { - "CommandName": "Set-PnPPlannerConfiguration", - "Rank": 2, "Id": 1402, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" + "Rank": 2, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "CommandName": "Set-PnPPlannerConfiguration" }, { - "CommandName": "Set-PnPPlannerPlan", - "Rank": 1, "Id": 1403, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" + "Rank": 1, + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "CommandName": "Set-PnPPlannerPlan" }, { - "CommandName": "Set-PnPPlannerTask", - "Rank": 1, "Id": 1404, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" + "Rank": 1, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "CommandName": "Set-PnPPlannerTask" }, { - "CommandName": "Set-PnPPlannerTask", - "Rank": 2, "Id": 1405, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" + "Rank": 2, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "CommandName": "Set-PnPPlannerTask" }, { - "CommandName": "Set-PnPPlannerTask", - "Rank": 3, "Id": 1406, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" + "Rank": 3, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "CommandName": "Set-PnPPlannerTask" }, { - "CommandName": "Set-PnPPlannerUserPolicy", - "Rank": 1, "Id": 1407, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 1, + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Set-PnPPlannerUserPolicy" }, { - "CommandName": "Set-PnPPropertyBagValue", - "Rank": 1, "Id": 1408, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" + "Rank": 1, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "CommandName": "Set-PnPPropertyBagValue" }, { - "CommandName": "Set-PnPPropertyBagValue", - "Rank": 2, "Id": 1409, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" + "Rank": 2, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "CommandName": "Set-PnPPropertyBagValue" }, { - "CommandName": "Set-PnPPropertyBagValue", - "Rank": 3, "Id": 1410, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" + "Rank": 3, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "CommandName": "Set-PnPPropertyBagValue" }, { - "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 1, "Id": 1411, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" + "Rank": 1, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "CommandName": "Set-PnPRequestAccessEmails" }, { - "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 2, "Id": 1412, - "Command": "Set-PnPRequestAccessEmails -Disabled" + "Rank": 2, + "Command": "Set-PnPRequestAccessEmails -Disabled", + "CommandName": "Set-PnPRequestAccessEmails" }, { - "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 3, "Id": 1413, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false" + "Rank": 3, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "CommandName": "Set-PnPRequestAccessEmails" }, { - "CommandName": "Set-PnPRoleDefinition", - "Rank": 1, "Id": 1414, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" + "Rank": 1, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "CommandName": "Set-PnPRoleDefinition" }, { - "CommandName": "Set-PnPRoleDefinition", - "Rank": 2, "Id": 1415, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" + "Rank": 2, + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "CommandName": "Set-PnPRoleDefinition" }, { - "CommandName": "Set-PnPRoleDefinition", - "Rank": 3, "Id": 1416, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" + "Rank": 3, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "CommandName": "Set-PnPRoleDefinition" }, { - "CommandName": "Set-PnPRoleDefinition", - "Rank": 4, "Id": 1417, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" + "Rank": 4, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "CommandName": "Set-PnPRoleDefinition" }, { - "CommandName": "Set-PnPSearchConfiguration", - "Rank": 1, "Id": 1418, - "Command": "Set-PnPSearchConfiguration -Configuration $config" + "Rank": 1, + "Command": "Set-PnPSearchConfiguration -Configuration $config", + "CommandName": "Set-PnPSearchConfiguration" }, { - "CommandName": "Set-PnPSearchConfiguration", - "Rank": 2, "Id": 1419, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" + "Rank": 2, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "CommandName": "Set-PnPSearchConfiguration" }, { - "CommandName": "Set-PnPSearchConfiguration", - "Rank": 3, "Id": 1420, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Rank": 3, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "CommandName": "Set-PnPSearchConfiguration" }, { - "CommandName": "Set-PnPSearchConfiguration", - "Rank": 4, "Id": 1421, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Rank": 4, + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Set-PnPSearchConfiguration" }, { - "CommandName": "Set-PnPSearchExternalItem", - "Rank": 1, "Id": 1422, - "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 -GrantEveryone", + "CommandName": "Set-PnPSearchExternalItem" }, { - "CommandName": "Set-PnPSearchExternalItem", - "Rank": 2, "Id": 1423, - "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-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" }, { - "CommandName": "Set-PnPSearchSettings", - "Rank": 1, "Id": 1424, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" + "Rank": 1, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "CommandName": "Set-PnPSearchSettings" }, { - "CommandName": "Set-PnPSearchSettings", - "Rank": 2, "Id": 1425, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" + "Rank": 2, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "CommandName": "Set-PnPSearchSettings" }, { - "CommandName": "Set-PnPSearchSettings", - "Rank": 3, "Id": 1426, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" + "Rank": 3, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "CommandName": "Set-PnPSearchSettings" }, { - "CommandName": "Set-PnPSearchSettings", - "Rank": 4, "Id": 1427, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" + "Rank": 4, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "CommandName": "Set-PnPSearchSettings" }, { - "CommandName": "Set-PnPSearchSettings", - "Rank": 5, "Id": 1428, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" + "Rank": 5, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "CommandName": "Set-PnPSearchSettings" }, { - "CommandName": "Set-PnPSearchSettings", - "Rank": 6, "Id": 1429, - "Command": "Set-PnPSearchSettings -SearchScope Tenant" + "Rank": 6, + "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "CommandName": "Set-PnPSearchSettings" }, { - "CommandName": "Set-PnPSearchSettings", - "Rank": 7, "Id": 1430, - "Command": "Set-PnPSearchSettings -SearchScope Hub" + "Rank": 7, + "Command": "Set-PnPSearchSettings -SearchScope Hub", + "CommandName": "Set-PnPSearchSettings" }, { - "CommandName": "Set-PnPSite", - "Rank": 1, "Id": 1431, - "Command": "Set-PnPSite -Classification \"HBI\"" + "Rank": 1, + "Command": "Set-PnPSite -Classification \"HBI\"", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 2, "Id": 1432, - "Command": "Set-PnPSite -Classification $null" + "Rank": 2, + "Command": "Set-PnPSite -Classification $null", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 3, "Id": 1433, - "Command": "Set-PnPSite -DisableFlows" + "Rank": 3, + "Command": "Set-PnPSite -DisableFlows", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 4, "Id": 1434, - "Command": "Set-PnPSite -DisableFlows:$false" + "Rank": 4, + "Command": "Set-PnPSite -DisableFlows:$false", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 5, "Id": 1435, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" + "Rank": 5, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 6, "Id": 1436, - "Command": "Set-PnPSite -NoScriptSite $false" + "Rank": 6, + "Command": "Set-PnPSite -NoScriptSite $false", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 7, "Id": 1437, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" + "Rank": 7, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 8, "Id": 1438, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" + "Rank": 8, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 9, "Id": 1439, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" + "Rank": 9, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 10, "Id": 1440, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" + "Rank": 10, + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 11, "Id": 1441, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" + "Rank": 11, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 12, "Id": 1442, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" + "Rank": 12, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 13, "Id": 1443, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" + "Rank": 13, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 14, "Id": 1444, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" + "Rank": 14, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 15, "Id": 1445, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" + "Rank": 15, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 16, "Id": 1446, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" + "Rank": 16, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", - "Rank": 17, "Id": 1447, - "Command": "Set-PnPSite -CancelVPForExistingLibs" + "Rank": 17, + "Command": "Set-PnPSite -CancelVPForExistingLibs", + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSiteClassification", - "Rank": 1, "Id": 1448, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"" + "Rank": 1, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "CommandName": "Set-PnPSiteClassification" }, { - "CommandName": "Set-PnPSiteClosure", - "Rank": 1, "Id": 1449, - "Command": "Set-PnPSiteClosure -State Open" + "Rank": 1, + "Command": "Set-PnPSiteClosure -State Open", + "CommandName": "Set-PnPSiteClosure" }, { - "CommandName": "Set-PnPSiteClosure", - "Rank": 2, "Id": 1450, - "Command": "Set-PnPSiteClosure -State Closed" + "Rank": 2, + "Command": "Set-PnPSiteClosure -State Closed", + "CommandName": "Set-PnPSiteClosure" }, { - "CommandName": "Set-PnPSiteDesign", - "Rank": 1, "Id": 1451, - "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 Updated Company Design\"", + "CommandName": "Set-PnPSiteDesign" }, { - "CommandName": "Set-PnPSiteDesign", - "Rank": 2, "Id": 1452, - "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-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" }, { - "CommandName": "Set-PnPSiteGroup", - "Rank": 1, "Id": 1453, - "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/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "CommandName": "Set-PnPSiteGroup" }, { - "CommandName": "Set-PnPSiteGroup", - "Rank": 2, "Id": 1454, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" + "Rank": 2, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "CommandName": "Set-PnPSiteGroup" }, { - "CommandName": "Set-PnPSitePolicy", - "Rank": 1, "Id": 1455, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" + "Rank": 1, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "CommandName": "Set-PnPSitePolicy" }, { - "CommandName": "Set-PnPSiteScript", - "Rank": 1, "Id": 1456, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "Rank": 1, + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "CommandName": "Set-PnPSiteScript" }, { - "CommandName": "Set-PnPSiteScriptPackage", - "Rank": 1, "Id": 1457, - "Command": "Set-PnPSiteScriptPackage -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\"", + "CommandName": "Set-PnPSiteScriptPackage" }, { - "CommandName": "Set-PnPSiteSensitivityLabel", - "Rank": 1, "Id": 1458, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" + "Rank": 1, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "CommandName": "Set-PnPSiteSensitivityLabel" }, { - "CommandName": "Set-PnPSiteSensitivityLabel", - "Rank": 2, "Id": 1459, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" + "Rank": 2, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "CommandName": "Set-PnPSiteSensitivityLabel" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 1, "Id": 1460, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" + "Rank": 1, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 2, "Id": 1461, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" + "Rank": 2, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 3, "Id": 1462, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "Rank": 3, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 4, "Id": 1463, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "Rank": 4, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 5, "Id": 1464, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "Rank": 5, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 6, "Id": 1465, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "Rank": 6, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "CommandName": "Set-PnPStorageEntity", - "Rank": 1, "Id": 1466, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "Rank": 1, + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "CommandName": "Set-PnPStorageEntity" }, { - "CommandName": "Set-PnPStorageEntity", - "Rank": 2, "Id": 1467, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "Rank": 2, + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "CommandName": "Set-PnPStorageEntity" }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Rank": 1, "Id": 1468, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Rank": 1, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Rank": 2, "Id": 1469, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Rank": 2, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Rank": 1, "Id": 1470, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Rank": 1, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Rank": 2, "Id": 1471, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Rank": 2, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Rank": 1, "Id": 1472, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" + "Rank": 1, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Rank": 2, "Id": 1473, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" + "Rank": 2, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { - "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 1, "Id": 1474, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" + "Rank": 1, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 2, "Id": 1475, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" + "Rank": 2, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 3, "Id": 1476, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" + "Rank": 3, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "CommandName": "Set-PnPTeamifyPromptHidden", - "Rank": 1, "Id": 1477, - "Command": "Set-PnPTeamifyPromptHidden" + "Rank": 1, + "Command": "Set-PnPTeamifyPromptHidden", + "CommandName": "Set-PnPTeamifyPromptHidden" }, { - "CommandName": "Set-PnPTeamsChannel", - "Rank": 1, "Id": 1478, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" + "Rank": 1, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "CommandName": "Set-PnPTeamsChannel" }, { - "CommandName": "Set-PnPTeamsChannel", - "Rank": 2, "Id": 1479, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" + "Rank": 2, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "CommandName": "Set-PnPTeamsChannel" }, { - "CommandName": "Set-PnpTeamsChannelUser", - "Rank": 1, "Id": 1480, - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" + "Rank": 1, + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", + "CommandName": "Set-PnpTeamsChannelUser" }, { - "CommandName": "Set-PnpTeamsChannelUser", - "Rank": 2, "Id": 1481, - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" + "Rank": 2, + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "CommandName": "Set-PnpTeamsChannelUser" }, { - "CommandName": "Set-PnPTeamsTab", - "Rank": 1, "Id": 1482, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" + "Rank": 1, + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "CommandName": "Set-PnPTeamsTab" }, { - "CommandName": "Set-PnPTeamsTag", - "Rank": 1, "Id": 1483, - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" + "Rank": 1, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "CommandName": "Set-PnPTeamsTag" }, { - "CommandName": "Set-PnPTeamsTeam", - "Rank": 1, "Id": 1484, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" + "Rank": 1, + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "CommandName": "Set-PnPTeamsTeam" }, { - "CommandName": "Set-PnPTeamsTeam", - "Rank": 2, "Id": 1485, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" + "Rank": 2, + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "CommandName": "Set-PnPTeamsTeam" }, { - "CommandName": "Set-PnPTeamsTeam", - "Rank": 3, "Id": 1486, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" + "Rank": 3, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "CommandName": "Set-PnPTeamsTeam" }, { - "CommandName": "Set-PnPTeamsTeam", - "Rank": 4, "Id": 1487, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" + "Rank": 4, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "CommandName": "Set-PnPTeamsTeam" }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 1, "Id": 1488, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" + "Rank": 1, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 2, "Id": 1489, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" + "Rank": 2, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 3, "Id": 1490, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" + "Rank": 3, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "CommandName": "Set-PnPTeamsTeamPicture", - "Rank": 1, "Id": 1491, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" + "Rank": 1, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "CommandName": "Set-PnPTeamsTeamPicture" }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Rank": 1, "Id": 1492, - "Command": "Set-PnPTemporarilyDisableAppBar $true" + "Rank": 1, + "Command": "Set-PnPTemporarilyDisableAppBar $true", + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Rank": 2, "Id": 1493, - "Command": "Set-PnPTemporarilyDisableAppBar $false" + "Rank": 2, + "Command": "Set-PnPTemporarilyDisableAppBar $false", + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { - "CommandName": "Set-PnPTenant", - "Rank": 1, "Id": 1494, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" + "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" }, { - "CommandName": "Set-PnPTenant", - "Rank": 2, "Id": 1495, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" + "Rank": 2, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "CommandName": "Set-PnPTenant" }, { - "CommandName": "Set-PnPTenant", - "Rank": 3, "Id": 1496, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false" + "Rank": 3, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "CommandName": "Set-PnPTenant" }, { - "CommandName": "Set-PnPTenant", - "Rank": 4, "Id": 1497, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" + "Rank": 4, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "CommandName": "Set-PnPTenant" }, { - "CommandName": "Set-PnPTenantAppCatalogUrl", - "Rank": 1, "Id": 1498, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" + "Rank": 1, + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "CommandName": "Set-PnPTenantAppCatalogUrl" }, { - "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 1, "Id": 1499, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" + "Rank": 1, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "CommandName": "Set-PnPTenantCdnEnabled" }, { - "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 2, "Id": 1500, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" + "Rank": 2, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "CommandName": "Set-PnPTenantCdnEnabled" }, { - "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 3, "Id": 1501, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" + "Rank": 3, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "CommandName": "Set-PnPTenantCdnEnabled" }, { - "CommandName": "Set-PnPTenantCdnPolicy", - "Rank": 1, "Id": 1502, - "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 IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", + "CommandName": "Set-PnPTenantCdnPolicy" }, { - "CommandName": "Set-PnPTenantCdnPolicy", - "Rank": 2, "Id": 1503, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" + "Rank": 2, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "CommandName": "Set-PnPTenantCdnPolicy" }, { - "CommandName": "Set-PnPTenantSite", - "Rank": 1, "Id": 1504, - "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\" -SharingCapability Disabled", + "CommandName": "Set-PnPTenantSite" }, { - "CommandName": "Set-PnPTenantSite", - "Rank": 2, "Id": 1505, - "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\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "CommandName": "Set-PnPTenantSite" }, { - "CommandName": "Set-PnPTenantSite", - "Rank": 3, "Id": 1506, - "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 \"user@contoso.onmicrosoft.com\"", + "CommandName": "Set-PnPTenantSite" }, { - "CommandName": "Set-PnPTenantSite", - "Rank": 4, "Id": 1507, - "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\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Set-PnPTenantSite" }, { - "CommandName": "Set-PnPTenantSite", - "Rank": 5, "Id": 1508, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" + "Rank": 5, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "CommandName": "Set-PnPTenantSite" }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Rank": 1, "Id": 1509, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" + "Rank": 1, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Rank": 2, "Id": 1510, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" + "Rank": 2, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { - "CommandName": "Set-PnPTerm", - "Rank": 1, "Id": 1511, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" + "Rank": 1, + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "CommandName": "Set-PnPTerm" }, { - "CommandName": "Set-PnPTerm", - "Rank": 2, "Id": 1512, - "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\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "Set-PnPTerm" }, { - "CommandName": "Set-PnPTerm", - "Rank": 3, "Id": 1513, - "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\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "Set-PnPTerm" }, { - "CommandName": "Set-PnPTerm", - "Rank": 4, "Id": 1514, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" + "Rank": 4, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "CommandName": "Set-PnPTerm" }, { - "CommandName": "Set-PnPTermGroup", - "Rank": 1, "Id": 1515, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" + "Rank": 1, + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "CommandName": "Set-PnPTermGroup" }, { - "CommandName": "Set-PnPTermSet", - "Rank": 1, "Id": 1516, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" + "Rank": 1, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "CommandName": "Set-PnPTermSet" }, { - "CommandName": "Set-PnPTermSet", - "Rank": 2, "Id": 1517, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" + "Rank": 2, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "CommandName": "Set-PnPTermSet" }, { - "CommandName": "Set-PnPTermSet", - "Rank": 3, "Id": 1518, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" + "Rank": 3, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "CommandName": "Set-PnPTermSet" }, { - "CommandName": "Set-PnPTheme", - "Rank": 1, "Id": 1519, - "Command": "Set-PnPTheme" + "Rank": 1, + "Command": "Set-PnPTheme", + "CommandName": "Set-PnPTheme" }, { - "CommandName": "Set-PnPTheme", - "Rank": 2, "Id": 1520, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" + "Rank": 2, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "CommandName": "Set-PnPTheme" }, { - "CommandName": "Set-PnPTheme", - "Rank": 3, "Id": 1521, - "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'", + "CommandName": "Set-PnPTheme" }, { - "CommandName": "Set-PnPTheme", - "Rank": 4, "Id": 1522, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" + "Rank": 4, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "CommandName": "Set-PnPTheme" }, { - "CommandName": "Set-PnPTraceLog", - "Rank": 1, "Id": 1523, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" + "Rank": 1, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "CommandName": "Set-PnPTraceLog" }, { - "CommandName": "Set-PnPTraceLog", - "Rank": 2, "Id": 1524, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" + "Rank": 2, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "CommandName": "Set-PnPTraceLog" }, { - "CommandName": "Set-PnPTraceLog", - "Rank": 3, "Id": 1525, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" + "Rank": 3, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "CommandName": "Set-PnPTraceLog" }, { - "CommandName": "Set-PnPTraceLog", - "Rank": 4, "Id": 1526, - "Command": "Set-PnPTraceLog -Off" + "Rank": 4, + "Command": "Set-PnPTraceLog -Off", + "CommandName": "Set-PnPTraceLog" }, { - "CommandName": "Set-PnPUserOneDriveQuota", - "Rank": 1, "Id": 1527, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" + "Rank": 1, + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "CommandName": "Set-PnPUserOneDriveQuota" }, { - "CommandName": "Set-PnPUserProfileProperty", - "Rank": 1, "Id": 1528, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" + "Rank": 1, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "CommandName": "Set-PnPUserProfileProperty" }, { - "CommandName": "Set-PnPUserProfileProperty", - "Rank": 2, "Id": 1529, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" + "Rank": 2, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "CommandName": "Set-PnPUserProfileProperty" }, { - "CommandName": "Set-PnPView", - "Rank": 1, "Id": 1530, - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" + "Rank": 1, + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "CommandName": "Set-PnPView" }, { - "CommandName": "Set-PnPView", - "Rank": 2, "Id": 1531, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" + "Rank": 2, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "CommandName": "Set-PnPView" }, { - "CommandName": "Set-PnPView", - "Rank": 3, "Id": 1532, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" + "Rank": 3, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "CommandName": "Set-PnPView" }, { - "CommandName": "Set-PnPView", - "Rank": 4, "Id": 1533, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" + "Rank": 4, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "CommandName": "Set-PnPView" }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 1, "Id": 1534, - "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\" -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" }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 2, "Id": 1535, - "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\" -Title \"Update title\" -Description \"Update Description\"", + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 3, "Id": 1536, - "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\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4", + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 4, "Id": 1537, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" + "Rank": 4, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Set-PnPWeb", - "Rank": 1, "Id": 1538, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" + "Rank": 1, + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "CommandName": "Set-PnPWeb" }, { - "CommandName": "Set-PnPWeb", - "Rank": 2, "Id": 1539, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" + "Rank": 2, + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "CommandName": "Set-PnPWeb" }, { - "CommandName": "Set-PnPWeb", - "Rank": 3, "Id": 1540, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" + "Rank": 3, + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "CommandName": "Set-PnPWeb" }, { - "CommandName": "Set-PnPWeb", - "Rank": 4, "Id": 1541, - "Command": "Set-PnPWeb -NoCrawl:$true" + "Rank": 4, + "Command": "Set-PnPWeb -NoCrawl:$true", + "CommandName": "Set-PnPWeb" }, { - "CommandName": "Set-PnPWebHeader", - "Rank": 1, "Id": 1542, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" + "Rank": 1, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "CommandName": "Set-PnPWebHeader" }, { - "CommandName": "Set-PnPWebHeader", - "Rank": 2, "Id": 1543, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" + "Rank": 2, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "CommandName": "Set-PnPWebHeader" }, { - "CommandName": "Set-PnPWebHeader", - "Rank": 3, "Id": 1544, - "Command": "Set-PnPWebHeader -LogoAlignment Middle" + "Rank": 3, + "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "CommandName": "Set-PnPWebHeader" }, { - "CommandName": "Set-PnPWebhookSubscription", - "Rank": 1, "Id": 1545, - "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", + "CommandName": "Set-PnPWebhookSubscription" }, { - "CommandName": "Set-PnPWebhookSubscription", - "Rank": 2, "Id": 1546, - "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-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "CommandName": "Set-PnPWebhookSubscription" }, { - "CommandName": "Set-PnPWebPartProperty", - "Rank": 1, "Id": 1547, - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" + "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" }, { - "CommandName": "Set-PnPWebPermission", - "Rank": 1, "Id": 1548, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" + "Rank": 1, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission" }, { - "CommandName": "Set-PnPWebPermission", - "Rank": 2, "Id": 1549, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" + "Rank": 2, + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission" }, { - "CommandName": "Set-PnPWebPermission", - "Rank": 3, "Id": 1550, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" + "Rank": 3, + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission" }, { - "CommandName": "Set-PnPWebPermission", - "Rank": 4, "Id": 1551, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" + "Rank": 4, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "CommandName": "Set-PnPWebPermission" }, { - "CommandName": "Set-PnPWebTheme", - "Rank": 1, "Id": 1552, - "Command": "Set-PnPWebTheme -Theme MyTheme" + "Rank": 1, + "Command": "Set-PnPWebTheme -Theme MyTheme", + "CommandName": "Set-PnPWebTheme" }, { - "CommandName": "Set-PnPWebTheme", - "Rank": 2, "Id": 1553, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" + "Rank": 2, + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "CommandName": "Set-PnPWebTheme" }, { - "CommandName": "Set-PnPWikiPageContent", - "Rank": 1, "Id": 1554, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" + "Rank": 1, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "CommandName": "Set-PnPWikiPageContent" }, { - "CommandName": "Submit-PnPSearchQuery", - "Rank": 1, "Id": 1555, - "Command": "Submit-PnPSearchQuery -Query \"finance\"" + "Rank": 1, + "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "CommandName": "Submit-PnPSearchQuery" }, { - "CommandName": "Submit-PnPSearchQuery", - "Rank": 2, "Id": 1556, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" + "Rank": 2, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "CommandName": "Submit-PnPSearchQuery" }, { - "CommandName": "Submit-PnPSearchQuery", - "Rank": 3, "Id": 1557, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" + "Rank": 3, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "CommandName": "Submit-PnPSearchQuery" }, { - "CommandName": "Submit-PnPSearchQuery", - "Rank": 4, "Id": 1558, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" + "Rank": 4, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "CommandName": "Submit-PnPSearchQuery" }, { - "CommandName": "Submit-PnPSearchQuery", - "Rank": 5, "Id": 1559, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" + "Rank": 5, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "CommandName": "Submit-PnPSearchQuery" }, { - "CommandName": "Submit-PnPSearchQuery", - "Rank": 6, "Id": 1560, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All" + "Rank": 6, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", + "CommandName": "Submit-PnPSearchQuery" }, { - "CommandName": "Submit-PnPTeamsChannelMessage", - "Rank": 1, "Id": 1561, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" + "Rank": 1, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "CommandName": "Submit-PnPTeamsChannelMessage" }, { - "CommandName": "Submit-PnPTeamsChannelMessage", - "Rank": 2, "Id": 1562, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" + "Rank": 2, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "CommandName": "Submit-PnPTeamsChannelMessage" }, { - "CommandName": "Sync-PnPAppToTeams", - "Rank": 1, "Id": 1563, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Sync-PnPAppToTeams" }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 1, "Id": 1564, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" + "Rank": 1, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 2, "Id": 1565, - "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\"", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 3, "Id": 1566, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" + "Rank": 3, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "CommandName": "Test-PnPListItemIsRecord", - "Rank": 1, "Id": 1567, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" + "Rank": 1, + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "CommandName": "Test-PnPListItemIsRecord" }, { - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Rank": 1, "Id": 1568, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" + "Rank": 1, + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { - "CommandName": "Test-PnPSite", - "Rank": 1, "Id": 1569, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Rank": 1, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Test-PnPSite" }, { - "CommandName": "Test-PnPSite", - "Rank": 2, "Id": 1570, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "Rank": 2, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "CommandName": "Test-PnPSite" }, { - "CommandName": "Test-PnPTenantTemplate", - "Rank": 1, "Id": 1571, - "Command": "Test-PnPTenantTemplate -Template $myTemplate" + "Rank": 1, + "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "CommandName": "Test-PnPTenantTemplate" }, { - "CommandName": "Undo-PnPFileCheckedOut", - "Rank": 1, "Id": 1572, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" + "Rank": 1, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "CommandName": "Undo-PnPFileCheckedOut" }, { - "CommandName": "Uninstall-PnPApp", - "Rank": 1, "Id": 1573, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Uninstall-PnPApp" }, { - "CommandName": "Uninstall-PnPApp", - "Rank": 2, "Id": 1574, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Uninstall-PnPApp" }, { - "CommandName": "Unpublish-PnPApp", - "Rank": 1, "Id": 1575, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Unpublish-PnPApp" }, { - "CommandName": "Unpublish-PnPApp", - "Rank": 2, "Id": 1576, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Unpublish-PnPApp" }, { - "CommandName": "Unpublish-PnPContentType", - "Rank": 1, "Id": 1577, - "Command": "Unpublish-PnPContentType -ContentType 0x0101" + "Rank": 1, + "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "CommandName": "Unpublish-PnPContentType" }, { - "CommandName": "Unpublish-PnPSyntexModel", - "Rank": 1, "Id": 1578, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "Rank": 1, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "CommandName": "Unpublish-PnPSyntexModel" }, { - "CommandName": "Unpublish-PnPSyntexModel", - "Rank": 2, "Id": 1579, - "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": "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" }, { - "CommandName": "Unregister-PnPHubSite", - "Rank": 1, "Id": 1580, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Rank": 1, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "CommandName": "Unregister-PnPHubSite" }, { - "CommandName": "Update-PnPApp", - "Rank": 1, "Id": 1581, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Update-PnPApp" }, { - "CommandName": "Update-PnPApp", - "Rank": 2, "Id": 1582, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Update-PnPApp" }, { - "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 1, "Id": 1583, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Rank": 1, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "CommandName": "Update-PnPAvailableSiteClassification" }, { - "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 2, "Id": 1584, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" + "Rank": 2, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "CommandName": "Update-PnPAvailableSiteClassification" }, { - "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 3, "Id": 1585, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" + "Rank": 3, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "CommandName": "Update-PnPAvailableSiteClassification" }, { - "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 1, "Id": 1586, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" + "Rank": 1, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 2, "Id": 1587, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" + "Rank": 2, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 3, "Id": 1588, - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" + "Rank": 3, + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "CommandName": "Update-PnPTeamsApp", - "Rank": 1, "Id": 1589, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" + "Rank": 1, + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "CommandName": "Update-PnPTeamsApp" }, { - "CommandName": "Update-PnPTeamsUser", - "Rank": 1, "Id": 1590, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Rank": 1, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Update-PnPTeamsUser" }, { - "CommandName": "Update-PnPTeamsUser", - "Rank": 2, "Id": 1591, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "Rank": 2, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "CommandName": "Update-PnPTeamsUser" }, { - "CommandName": "Update-PnPTeamsUser", - "Rank": 3, "Id": 1592, - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" + "Rank": 3, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "CommandName": "Update-PnPTeamsUser" }, { - "CommandName": "Update-PnPUserType", - "Rank": 1, "Id": 1593, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" + "Rank": 1, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "CommandName": "Update-PnPUserType" } ] diff --git a/version.txt b/version.txt index 489925be5..0295a5eca 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.119 \ No newline at end of file +2.2.120 \ No newline at end of file From 0001ddbe1b428c227d8d370d60c19028cd087243 Mon Sep 17 00:00:00 2001 From: Christian Veenhuis <124370897+ChVeen@users.noreply.github.com> Date: Sun, 5 Nov 2023 17:33:56 +0000 Subject: [PATCH 130/146] Fixed typos Microsft --- CHANGELOG.md | 4 ++-- documentation/Get-PnPBrowserIdleSignout.md | 2 +- documentation/Get-PnPPlannerRosterPlan.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ed1f3381..6f224e83e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,7 +29,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `Get-PnPPowerPlatformConnector` cmdlet which allows for all custom connectors to be retrieved [#3309](https://github.com/pnp/powershell/pull/3309) - Added `Set-PnPSearchExternalItem` cmdlet which allows ingesting external items into the Microsoft Search index for custom connectors. [#3420](https://github.com/pnp/powershell/pull/3420) - Added `Get-PnPTenantInfo` which allows retrieving tenant information by its Id or domain name [#3414](https://github.com/pnp/powershell/pull/3414) -- Added option to create a Microsft 365 Group with dynamic membership by passing in `-DynamicMembershipRule` [#3426](https://github.com/pnp/powershell/pull/3426) +- Added option to create a Microsoft 365 Group with dynamic membership by passing in `-DynamicMembershipRule` [#3426](https://github.com/pnp/powershell/pull/3426) - Added option to pass in a Stream or XML string to `Read-PnPTenantTemplate` allowing the tenant template to be modified before being applied. [#3431](https://github.com/pnp/powershell/pull/3431) - Added `Get-PnPTenantInfo` which allows retrieving tenant information by its Id or domain name. [#3414](https://github.com/pnp/powershell/pull/3414) - Added option to create a Microsoft 365 Group with dynamic membership by passing in `-DynamicMembershipRule` [#3426](https://github.com/pnp/powershell/pull/3426) @@ -736,7 +736,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `Get\Set-PnPPlannerConfiguration` to allow working with the Microsoft Planner tenant configuration - Added `Get\Set-PnPPlannerUserPolicy` to allow setting Microsoft Planner user policies for specific users - Added `Get\Add\Remove-PnPPlannerRoster` which allows a Microsoft Planner Roster to be created, retrieved or removed -- Added `Get\Add\Remove-PnPPlannerRosterMember` to be able to read, add and remove members from a Microsft Planner Roster +- Added `Get\Add\Remove-PnPPlannerRosterMember` to be able to read, add and remove members from a Microsoft Planner Roster - Added `Get-PnPPlannerRosterPlan` to be able to retrieve the Microsoft Planner plans inside a Microsoft Planner Roster or the ones belonging to a specific user - Added support for off peak SharePoint Syntex content classification and extraction for lists and folders via new `-OffPeak` and `-Folder` parameters for `Request-PnPSyntexClassifyAndExtract` - Added `Invoke-PnPSiteScript` which allows for a Site Script to be executed on a site without needing to have it registered in a site design or site script first diff --git a/documentation/Get-PnPBrowserIdleSignout.md b/documentation/Get-PnPBrowserIdleSignout.md index 7bffe3659..0a06961d8 100644 --- a/documentation/Get-PnPBrowserIdleSignout.md +++ b/documentation/Get-PnPBrowserIdleSignout.md @@ -19,7 +19,7 @@ Get-PnPBrowserIdleSignout ``` ## DESCRIPTION -Use this cmdlet to retrieve the current configuration values for Idle session sign-out policy, the time at which users are warned and subsequently signed out of Microsft 365 after a period of browser inactivity in SharePoint and OneDrive. +Use this cmdlet to retrieve the current configuration values for Idle session sign-out policy, the time at which users are warned and subsequently signed out of Microsoft 365 after a period of browser inactivity in SharePoint and OneDrive. ## EXAMPLES diff --git a/documentation/Get-PnPPlannerRosterPlan.md b/documentation/Get-PnPPlannerRosterPlan.md index 28741a030..c20d8f9b6 100644 --- a/documentation/Get-PnPPlannerRosterPlan.md +++ b/documentation/Get-PnPPlannerRosterPlan.md @@ -16,7 +16,7 @@ online version: https://pnp.github.io/powershell/cmdlets/Get-PnPPlannerRosterPla * Microsoft Graph API: Tasks.ReadWrite * Microsoft Graph API: Tasks.Read -Returns Microsft Planner roster plans for a specific Microsoft Planner Roster or a specific user +Returns Microsoft Planner roster plans for a specific Microsoft Planner Roster or a specific user ## SYNTAX From fc4b7704f6f69e781f78d93640b6891e63934e74 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Mon, 6 Nov 2023 02:41:53 +0000 Subject: [PATCH 131/146] Nightly publish to PowerShell Gallery --- pnpcoresdk_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9558 ++++++++--------- version.txt | 2 +- 3 files changed, 4781 insertions(+), 4781 deletions(-) diff --git a/pnpcoresdk_hash.txt b/pnpcoresdk_hash.txt index 2c71c895f..b8828541d 100644 --- a/pnpcoresdk_hash.txt +++ b/pnpcoresdk_hash.txt @@ -1 +1 @@ -3865aedcf90d00176da73c8b74ccd8a28becd0f0 \ No newline at end of file +b06cf9a1ab5098a89817427c07851738c39a0939 \ 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 7ab6ab590..74bd3df8f 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9560 +1,9560 @@ [ { - "Id": 1, "Rank": 1, - "Command": "Add-PnPAlert -List \"Demo List\"", - "CommandName": "Add-PnPAlert" + "CommandName": "Add-PnPAlert", + "Id": 1, + "Command": "Add-PnPAlert -List \"Demo List\"" }, { - "Id": 2, "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" + "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, "Rank": 3, - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAlert" + "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, "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" + "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, "Rank": 1, - "Command": "Add-PnPApp -Path ./myapp.sppkg", - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Id": 5, + "Command": "Add-PnPApp -Path ./myapp.sppkg" }, { - "Id": 6, "Rank": 2, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Id": 6, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" }, { - "Id": 7, "Rank": 3, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Id": 7, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" }, { - "Id": 8, "Rank": 4, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "CommandName": "Add-PnPApp" + "CommandName": "Add-PnPApp", + "Id": 8, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" }, { - "Id": 9, "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" + "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, "Rank": 1, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "CommandName": "Add-PnPAvailableSiteClassification" + "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 10, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" }, { - "Id": 11, "Rank": 2, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "CommandName": "Add-PnPAvailableSiteClassification" + "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 11, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" }, { - "Id": 12, "Rank": 1, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 12, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 13, "Rank": 2, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 13, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 14, "Rank": 3, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "CommandName": "Add-PnPAzureADGroupMember" + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 14, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "Id": 15, "Rank": 1, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 15, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 16, "Rank": 2, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 16, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 17, "Rank": 3, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "CommandName": "Add-PnPAzureADGroupOwner" + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 17, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { - "Id": 18, "Rank": 1, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "CommandName": "Add-PnPAzureADServicePrincipalAppRole" + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Id": 18, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph" }, { - "Id": 19, "Rank": 2, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", - "CommandName": "Add-PnPAzureADServicePrincipalAppRole" + "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, "Rank": 1, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Id": 20, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct" }, { - "Id": 21, "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" + "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, "Rank": 3, - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Id": 22, + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" }, { - "Id": 23, "Rank": 4, - "Command": "Add-PnPContentType -Name \"Project Item\"", - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Id": 23, + "Command": "Add-PnPContentType -Name \"Project Item\"" }, { - "Id": 24, "Rank": 5, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "CommandName": "Add-PnPContentType" + "CommandName": "Add-PnPContentType", + "Id": 24, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" }, { - "Id": 25, "Rank": 1, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 25, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" }, { - "Id": 26, "Rank": 2, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 26, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" }, { - "Id": 27, "Rank": 1, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Add-PnPContentTypeToDocumentSet" + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 27, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Id": 28, "Rank": 2, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Add-PnPContentTypeToDocumentSet" + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 28, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Id": 29, "Rank": 1, - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "CommandName": "Add-PnPContentTypeToList" + "CommandName": "Add-PnPContentTypeToList", + "Id": 29, + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" }, { - "Id": 30, "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" + "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, "Rank": 1, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 31, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" }, { - "Id": 32, "Rank": 2, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 32, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" }, { - "Id": 33, "Rank": 1, - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "CommandName": "Add-PnPDocumentSet" + "CommandName": "Add-PnPDocumentSet", + "Id": 33, + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" }, { - "Id": 34, "Rank": 1, - "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", - "CommandName": "Add-PnPEventReceiver" + "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, "Rank": 2, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "CommandName": "Add-PnPEventReceiver" + "CommandName": "Add-PnPEventReceiver", + "Id": 35, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous" }, { - "Id": 36, "Rank": 3, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", - "CommandName": "Add-PnPEventReceiver" + "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, "Rank": 4, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", - "CommandName": "Add-PnPEventReceiver" + "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, "Rank": 1, - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Id": 38, + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" }, { - "Id": 39, "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" + "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, "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" + "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, "Rank": 4, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Id": 41, + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" }, { - "Id": 42, "Rank": 5, - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Id": 42, + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" }, { - "Id": 43, "Rank": 6, - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "CommandName": "Add-PnPField" + "CommandName": "Add-PnPField", + "Id": 43, + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" }, { - "Id": 44, "Rank": 1, - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Add-PnPFieldToContentType" + "CommandName": "Add-PnPFieldToContentType", + "Id": 44, + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Id": 45, "Rank": 1, - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 45, + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" }, { - "Id": 46, "Rank": 2, - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 46, + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" }, { - "Id": 47, "Rank": 3, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 47, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" }, { - "Id": 48, "Rank": 4, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 48, + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" }, { - "Id": 49, "Rank": 5, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 49, + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" }, { - "Id": 50, "Rank": 6, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 50, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" }, { - "Id": 51, "Rank": 7, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 51, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" }, { - "Id": 52, "Rank": 8, - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "CommandName": "Add-PnPFile" + "CommandName": "Add-PnPFile", + "Id": 52, + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" }, { - "Id": 53, "Rank": 1, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 53, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 54, "Rank": 2, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 54, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" }, { - "Id": 55, "Rank": 3, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFileAnonymousSharingLink" + "CommandName": "Add-PnPFileAnonymousSharingLink", + "Id": 55, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" }, { - "Id": 56, "Rank": 1, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 56, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 57, "Rank": 2, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 57, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" }, { - "Id": 58, "Rank": 1, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "CommandName": "Add-PnPFileSharingInvite" + "CommandName": "Add-PnPFileSharingInvite", + "Id": 58, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "Id": 59, "Rank": 2, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "CommandName": "Add-PnPFileSharingInvite" + "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, "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" + "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, "Rank": 1, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 61, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" }, { - "Id": 62, "Rank": 2, - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 62, + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" }, { - "Id": 63, "Rank": 3, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 63, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" }, { - "Id": 64, "Rank": 4, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 64, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" }, { - "Id": 65, "Rank": 5, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "CommandName": "Add-PnPFileToSiteTemplate" + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 65, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" }, { - "Id": 66, "Rank": 1, - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFileUserSharingLink" + "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, "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" + "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, "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" + "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, "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" + "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, "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" + "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, "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" + "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, "Rank": 1, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Id": 72, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Id": 73, "Rank": 2, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Id": 73, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" }, { - "Id": 74, "Rank": 3, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "CommandName": "Add-PnPFolder" + "CommandName": "Add-PnPFolder", + "Id": 74, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" }, { - "Id": 75, "Rank": 1, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 75, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 76, "Rank": 2, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 76, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" }, { - "Id": 77, "Rank": 3, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "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, "Rank": 1, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 78, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 79, "Rank": 2, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 79, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" }, { - "Id": 80, "Rank": 1, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "CommandName": "Add-PnPFolderSharingInvite" + "CommandName": "Add-PnPFolderSharingInvite", + "Id": 80, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { - "Id": 81, "Rank": 2, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "CommandName": "Add-PnPFolderSharingInvite" + "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, "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" + "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, "Rank": 1, - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFolderUserSharingLink" + "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, "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" + "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, "Rank": 1, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Add-PnPGroupMember" + "CommandName": "Add-PnPGroupMember", + "Id": 85, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Id": 86, "Rank": 2, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "CommandName": "Add-PnPGroupMember" + "CommandName": "Add-PnPGroupMember", + "Id": 86, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" }, { - "Id": 87, "Rank": 1, - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "CommandName": "Add-PnPHtmlPublishingPageLayout" + "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, "Rank": 1, - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "CommandName": "Add-PnPHubSiteAssociation" + "CommandName": "Add-PnPHubSiteAssociation", + "Id": 88, + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" }, { - "Id": 89, "Rank": 1, - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "CommandName": "Add-PnPHubToHubAssociation" + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 89, + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" }, { - "Id": 90, "Rank": 2, - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "CommandName": "Add-PnPHubToHubAssociation" + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 90, + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"" }, { - "Id": 91, "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" + "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, "Rank": 1, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptBlock" + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 92, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" }, { - "Id": 93, "Rank": 2, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "CommandName": "Add-PnPJavaScriptBlock" + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 93, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" }, { - "Id": 94, "Rank": 1, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptLink" + "CommandName": "Add-PnPJavaScriptLink", + "Id": 94, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site" }, { - "Id": 95, "Rank": 2, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "CommandName": "Add-PnPJavaScriptLink" + "CommandName": "Add-PnPJavaScriptLink", + "Id": 95, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" }, { - "Id": 96, "Rank": 1, - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "CommandName": "Add-PnPListDesign" + "CommandName": "Add-PnPListDesign", + "Id": 96, + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" }, { - "Id": 97, "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" + "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, "Rank": 1, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 98, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" }, { - "Id": 99, "Rank": 2, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 99, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" }, { - "Id": 100, "Rank": 3, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 100, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" }, { - "Id": 101, "Rank": 1, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Id": 101, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 102, "Rank": 2, - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Id": 102, + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 103, "Rank": 3, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Id": 103, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" }, { - "Id": 104, "Rank": 4, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Id": 104, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" }, { - "Id": 105, "Rank": 5, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "CommandName": "Add-PnPListItem" + "CommandName": "Add-PnPListItem", + "Id": 105, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" }, { - "Id": 106, "Rank": 1, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Id": 106, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" }, { - "Id": 107, "Rank": 2, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Id": 107, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" }, { - "Id": 108, "Rank": 3, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "CommandName": "Add-PnPListItemAttachment" + "CommandName": "Add-PnPListItemAttachment", + "Id": 108, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" }, { - "Id": 109, "Rank": 1, - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "CommandName": "Add-PnPListItemComment" + "CommandName": "Add-PnPListItemComment", + "Id": 109, + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" }, { - "Id": 110, "Rank": 1, - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "CommandName": "Add-PnPMasterPage" + "CommandName": "Add-PnPMasterPage", + "Id": 110, + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" }, { - "Id": 111, "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPMicrosoft365GroupMember" + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 111, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 112, "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPMicrosoft365GroupMember" + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 112, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 113, "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 113, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 114, "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 114, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { - "Id": 115, "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "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, "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 116, + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" }, { - "Id": 117, "Rank": 3, - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 117, + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" }, { - "Id": 118, "Rank": 1, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Id": 118, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" }, { - "Id": 119, "Rank": 2, - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", - "CommandName": "Add-PnPNavigationNode" + "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, "Rank": 3, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Id": 120, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" }, { - "Id": 121, "Rank": 4, - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Id": 121, + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" }, { - "Id": 122, "Rank": 5, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Id": 122, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" }, { - "Id": 123, "Rank": 6, - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Id": 123, + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" }, { - "Id": 124, "Rank": 7, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Id": 124, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" }, { - "Id": 125, "Rank": 8, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "CommandName": "Add-PnPNavigationNode" + "CommandName": "Add-PnPNavigationNode", + "Id": 125, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" }, { - "Id": 126, "Rank": 1, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "CommandName": "Add-PnPOrgAssetsLibrary" + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 126, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" }, { - "Id": 127, "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" + "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, "Rank": 3, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "CommandName": "Add-PnPOrgAssetsLibrary" + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 128, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" }, { - "Id": 129, "Rank": 1, - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "CommandName": "Add-PnPOrgNewsSite" + "CommandName": "Add-PnPOrgNewsSite", + "Id": 129, + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" }, { - "Id": 130, "Rank": 1, - "Command": "Add-PnPPage -Name \"NewPage\"", - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 130, + "Command": "Add-PnPPage -Name \"NewPage\"" }, { - "Id": 131, "Rank": 2, - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 131, + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" }, { - "Id": 132, "Rank": 3, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 132, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" }, { - "Id": 133, "Rank": 4, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 133, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" }, { - "Id": 134, "Rank": 5, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 134, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"" }, { - "Id": 135, "Rank": 6, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 135, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" }, { - "Id": 136, "Rank": 7, - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 136, + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Id": 137, "Rank": 8, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 137, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate" }, { - "Id": 138, "Rank": 9, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 138, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Id": 139, "Rank": 10, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Add-PnPPage" + "CommandName": "Add-PnPPage", + "Id": 139, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Id": 140, "Rank": 1, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "CommandName": "Add-PnPPageImageWebPart" + "CommandName": "Add-PnPPageImageWebPart", + "Id": 140, + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" }, { - "Id": 141, "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" + "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, "Rank": 1, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "CommandName": "Add-PnPPageSection" + "CommandName": "Add-PnPPageSection", + "Id": 142, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" }, { - "Id": 143, "Rank": 2, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "CommandName": "Add-PnPPageSection" + "CommandName": "Add-PnPPageSection", + "Id": 143, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" }, { - "Id": 144, "Rank": 1, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "CommandName": "Add-PnPPageTextPart" + "CommandName": "Add-PnPPageTextPart", + "Id": 144, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" }, { - "Id": 145, "Rank": 2, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "CommandName": "Add-PnPPageTextPart" + "CommandName": "Add-PnPPageTextPart", + "Id": 145, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" }, { - "Id": 146, "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" + "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, "Rank": 1, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Id": 147, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" }, { - "Id": 148, "Rank": 2, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Id": 148, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" }, { - "Id": 149, "Rank": 3, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "CommandName": "Add-PnPPageWebPart" + "CommandName": "Add-PnPPageWebPart", + "Id": 149, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" }, { - "Id": 150, "Rank": 1, - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "CommandName": "Add-PnPPlannerBucket" + "CommandName": "Add-PnPPlannerBucket", + "Id": 150, + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" }, { - "Id": 151, "Rank": 2, - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "CommandName": "Add-PnPPlannerBucket" + "CommandName": "Add-PnPPlannerBucket", + "Id": 151, + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" }, { - "Id": 152, "Rank": 1, - "Command": "Add-PnPPlannerRoster", - "CommandName": "Add-PnPPlannerRoster" + "CommandName": "Add-PnPPlannerRoster", + "Id": 152, + "Command": "Add-PnPPlannerRoster" }, { - "Id": 153, "Rank": 1, - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPPlannerRosterMember" + "CommandName": "Add-PnPPlannerRosterMember", + "Id": 153, + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 154, "Rank": 1, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "CommandName": "Add-PnPPlannerTask" + "CommandName": "Add-PnPPlannerTask", + "Id": 154, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "Id": 155, "Rank": 2, - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "CommandName": "Add-PnPPlannerTask" + "CommandName": "Add-PnPPlannerTask", + "Id": 155, + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" }, { - "Id": 156, "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" + "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, "Rank": 1, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Add-PnPPublishingImageRendition" + "CommandName": "Add-PnPPublishingImageRendition", + "Id": 157, + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Id": 158, "Rank": 1, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "CommandName": "Add-PnPPublishingPage" + "CommandName": "Add-PnPPublishingPage", + "Id": 158, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" }, { - "Id": 159, "Rank": 2, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "CommandName": "Add-PnPPublishingPage" + "CommandName": "Add-PnPPublishingPage", + "Id": 159, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" }, { - "Id": 160, "Rank": 1, - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "CommandName": "Add-PnPPublishingPageLayout" + "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, "Rank": 1, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Id": 161, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" }, { - "Id": 162, "Rank": 2, - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Id": 162, + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" }, { - "Id": 163, "Rank": 3, - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "CommandName": "Add-PnPRoleDefinition" + "CommandName": "Add-PnPRoleDefinition", + "Id": 163, + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" }, { - "Id": 164, "Rank": 1, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 164, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Id": 165, "Rank": 2, - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 165, + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Id": 166, "Rank": 3, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin" + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 166, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" }, { - "Id": 167, "Rank": 1, - "Command": "Add-PnPSiteCollectionAppCatalog", - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 167, + "Command": "Add-PnPSiteCollectionAppCatalog" }, { - "Id": 168, "Rank": 2, - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 168, + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "Id": 169, "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" + "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, "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" + "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, "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" + "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, "Rank": 1, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "CommandName": "Add-PnPSiteDesignFromWeb" + "CommandName": "Add-PnPSiteDesignFromWeb", + "Id": 172, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" }, { - "Id": 173, "Rank": 2, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "CommandName": "Add-PnPSiteDesignFromWeb" + "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, "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" + "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, "Rank": 1, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Add-PnPSiteDesignTask" + "CommandName": "Add-PnPSiteDesignTask", + "Id": 175, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Id": 176, "Rank": 2, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "CommandName": "Add-PnPSiteDesignTask" + "CommandName": "Add-PnPSiteDesignTask", + "Id": 176, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Id": 177, "Rank": 1, - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "CommandName": "Add-PnPSiteScript" + "CommandName": "Add-PnPSiteScript", + "Id": 177, + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" }, { - "Id": 178, "Rank": 1, - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "CommandName": "Add-PnPSiteScriptPackage" + "CommandName": "Add-PnPSiteScriptPackage", + "Id": 178, + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" }, { - "Id": 179, "Rank": 1, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "CommandName": "Add-PnPSiteTemplate" + "CommandName": "Add-PnPSiteTemplate", + "Id": 179, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" }, { - "Id": 180, "Rank": 1, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "CommandName": "Add-PnPStoredCredential" + "CommandName": "Add-PnPStoredCredential", + "Id": 180, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" }, { - "Id": 181, "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" + "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, "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" + "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, "Rank": 1, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "CommandName": "Add-PnPTaxonomyField" + "CommandName": "Add-PnPTaxonomyField", + "Id": 183, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" }, { - "Id": 184, "Rank": 2, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "CommandName": "Add-PnPTaxonomyField" + "CommandName": "Add-PnPTaxonomyField", + "Id": 184, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" }, { - "Id": 185, "Rank": 1, - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Id": 185, + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" }, { - "Id": 186, "Rank": 2, - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Id": 186, + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" }, { - "Id": 187, "Rank": 3, - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Id": 187, + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" }, { - "Id": 188, "Rank": 4, - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "CommandName": "Add-PnPTeamsChannel" + "CommandName": "Add-PnPTeamsChannel", + "Id": 188, + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" }, { - "Id": 189, "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" + "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, "Rank": 2, - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "CommandName": "Add-PnpTeamsChannelUser" + "CommandName": "Add-PnpTeamsChannelUser", + "Id": 190, + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" }, { - "Id": 191, "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" + "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, "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" + "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, "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" + "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, "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" + "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, "Rank": 1, - "Command": "Add-PnPTeamsTeam", - "CommandName": "Add-PnPTeamsTeam" + "CommandName": "Add-PnPTeamsTeam", + "Id": 195, + "Command": "Add-PnPTeamsTeam" }, { - "Id": 196, "Rank": 1, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Id": 196, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Id": 197, "Rank": 2, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Id": 197, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Id": 198, "Rank": 3, - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Id": 198, + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" }, { - "Id": 199, "Rank": 4, - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "CommandName": "Add-PnPTeamsUser" + "CommandName": "Add-PnPTeamsUser", + "Id": 199, + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" }, { - "Id": 200, "Rank": 1, - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Add-PnPTenantCdnOrigin" + "CommandName": "Add-PnPTenantCdnOrigin", + "Id": 200, + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Id": 201, "Rank": 1, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequence" + "CommandName": "Add-PnPTenantSequence", + "Id": 201, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" }, { - "Id": 202, "Rank": 1, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequenceSite" + "CommandName": "Add-PnPTenantSequenceSite", + "Id": 202, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" }, { - "Id": 203, "Rank": 1, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "CommandName": "Add-PnPTenantSequenceSubSite" + "CommandName": "Add-PnPTenantSequenceSubSite", + "Id": 203, + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" }, { - "Id": 204, "Rank": 1, - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "CommandName": "Add-PnPTermToTerm" + "CommandName": "Add-PnPTermToTerm", + "Id": 204, + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" }, { - "Id": 205, "Rank": 1, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Id": 205, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" }, { - "Id": 206, "Rank": 2, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Id": 206, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" }, { - "Id": 207, "Rank": 3, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "CommandName": "Add-PnPView" + "CommandName": "Add-PnPView", + "Id": 207, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" }, { - "Id": 208, "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" + "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, "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" + "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, "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" + "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, "Rank": 1, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "CommandName": "Add-PnPWebhookSubscription" + "CommandName": "Add-PnPWebhookSubscription", + "Id": 211, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Id": 212, "Rank": 2, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "CommandName": "Add-PnPWebhookSubscription" + "CommandName": "Add-PnPWebhookSubscription", + "Id": 212, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Id": 213, "Rank": 3, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", - "CommandName": "Add-PnPWebhookSubscription" + "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, "Rank": 1, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "CommandName": "Add-PnPWebPartToWebPartPage" + "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, "Rank": 2, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "CommandName": "Add-PnPWebPartToWebPartPage" + "CommandName": "Add-PnPWebPartToWebPartPage", + "Id": 215, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" }, { - "Id": 216, "Rank": 1, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "CommandName": "Add-PnPWebPartToWikiPage" + "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, "Rank": 2, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "CommandName": "Add-PnPWebPartToWikiPage" + "CommandName": "Add-PnPWebPartToWikiPage", + "Id": 217, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" }, { - "Id": 218, "Rank": 1, - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "CommandName": "Add-PnPWikiPage" + "CommandName": "Add-PnPWikiPage", + "Id": 218, + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" }, { - "Id": 219, "Rank": 1, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupMember" + "CommandName": "Clear-PnPAzureADGroupMember", + "Id": 219, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" }, { - "Id": 220, "Rank": 1, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupOwner" + "CommandName": "Clear-PnPAzureADGroupOwner", + "Id": 220, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" }, { - "Id": 221, "Rank": 1, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "CommandName": "Clear-PnPDefaultColumnValues" + "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 221, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" }, { - "Id": 222, "Rank": 2, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "CommandName": "Clear-PnPDefaultColumnValues" + "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 222, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" }, { - "Id": 223, "Rank": 1, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Clear-PnPListItemAsRecord" + "CommandName": "Clear-PnPListItemAsRecord", + "Id": 223, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Id": 224, "Rank": 1, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupMember" + "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Id": 224, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" }, { - "Id": 225, "Rank": 1, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupOwner" + "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Id": 225, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" }, { - "Id": 226, "Rank": 1, - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 226, + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Id": 227, "Rank": 2, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 227, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" }, { - "Id": 228, "Rank": 3, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "CommandName": "Clear-PnpRecycleBinItem" + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 228, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" }, { - "Id": 229, "Rank": 1, - "Command": "Clear-PnPTenantAppCatalogUrl", - "CommandName": "Clear-PnPTenantAppCatalogUrl" + "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Id": 229, + "Command": "Clear-PnPTenantAppCatalogUrl" }, { - "Id": 230, "Rank": 1, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Clear-PnPTenantRecycleBinItem" + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 230, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 231, "Rank": 2, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Clear-PnPTenantRecycleBinItem" + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 231, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "Id": 232, "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" + "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, "Rank": 1, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "CommandName": "Convert-PnPFolderToSiteTemplate" + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 233, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" }, { - "Id": 234, "Rank": 2, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "CommandName": "Convert-PnPFolderToSiteTemplate" + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 234, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" }, { - "Id": 235, "Rank": 1, - "Command": "Convert-PnPSiteTemplate -Path template.xml", - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Id": 235, + "Command": "Convert-PnPSiteTemplate -Path template.xml" }, { - "Id": 236, "Rank": 2, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Id": 236, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" }, { - "Id": 237, "Rank": 3, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "CommandName": "Convert-PnPSiteTemplate" + "CommandName": "Convert-PnPSiteTemplate", + "Id": 237, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" }, { - "Id": 238, "Rank": 1, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 238, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" }, { - "Id": 239, "Rank": 2, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 239, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" }, { - "Id": 240, "Rank": 1, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 240, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" }, { - "Id": 241, "Rank": 2, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 241, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" }, { - "Id": 242, "Rank": 3, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 242, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" }, { - "Id": 243, "Rank": 4, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 243, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" }, { - "Id": 244, "Rank": 5, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 244, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 245, "Rank": 6, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 245, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" }, { - "Id": 246, "Rank": 7, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 246, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" }, { - "Id": 247, "Rank": 8, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 247, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" }, { - "Id": 248, "Rank": 9, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 248, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 249, "Rank": 10, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 249, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" }, { - "Id": 250, "Rank": 11, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 250, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" }, { - "Id": 251, "Rank": 12, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 251, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 252, "Rank": 13, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 252, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { - "Id": 253, "Rank": 14, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "CommandName": "ConvertTo-PnPPage" + "CommandName": "ConvertTo-PnPPage", + "Id": 253, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" }, { - "Id": 254, "Rank": 1, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 254, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 255, "Rank": 2, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 255, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Id": 256, "Rank": 3, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 256, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Id": 257, "Rank": 4, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 257, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 258, "Rank": 5, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 258, + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Id": 259, "Rank": 6, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 259, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Id": 260, "Rank": 7, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 260, + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Id": 261, "Rank": 8, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 261, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 262, "Rank": 9, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 262, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Id": 263, "Rank": 10, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFile" + "CommandName": "Copy-PnPFile", + "Id": 263, + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Id": 264, "Rank": 1, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 264, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 265, "Rank": 2, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 265, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { - "Id": 266, "Rank": 3, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 266, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { - "Id": 267, "Rank": 4, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 267, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 268, "Rank": 5, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 268, + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { - "Id": 269, "Rank": 6, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 269, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { - "Id": 270, "Rank": 7, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 270, + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { - "Id": 271, "Rank": 8, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 271, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { - "Id": 272, "Rank": 9, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 272, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { - "Id": 273, "Rank": 10, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFolder" + "CommandName": "Copy-PnPFolder", + "Id": 273, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { - "Id": 274, "Rank": 1, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "CommandName": "Copy-PnPItemProxy" + "CommandName": "Copy-PnPItemProxy", + "Id": 274, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" }, { - "Id": 275, "Rank": 1, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Id": 275, + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" }, { - "Id": 276, "Rank": 2, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Id": 276, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" }, { - "Id": 277, "Rank": 3, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "CommandName": "Copy-PnPList" + "CommandName": "Copy-PnPList", + "Id": 277, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" }, { - "Id": 278, "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" + "CommandName": "Copy-PnPList", + "Id": 278, + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" }, { - "Id": 279, "Rank": 1, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "CommandName": "Copy-PnPTeamsTeam" + "CommandName": "Copy-PnPTeamsTeam", + "Id": 279, + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" }, { - "Id": 280, "Rank": 2, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "CommandName": "Copy-PnPTeamsTeam" + "CommandName": "Copy-PnPTeamsTeam", + "Id": 280, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" }, { - "Id": 281, "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" + "CommandName": "Copy-PnPTeamsTeam", + "Id": 281, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "Id": 282, "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" + "CommandName": "Copy-PnPTeamsTeam", + "Id": 282, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { - "Id": 283, "Rank": 1, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Id": 283, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 284, "Rank": 2, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Id": 284, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Id": 285, "Rank": 3, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Disable-PnPFeature" + "CommandName": "Disable-PnPFeature", + "Id": 285, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Id": 286, "Rank": 1, - "Command": "Disable-PnPPageScheduling", - "CommandName": "Disable-PnPPageScheduling" + "CommandName": "Disable-PnPPageScheduling", + "Id": 286, + "Command": "Disable-PnPPageScheduling" }, { - "Id": 287, "Rank": 1, - "Command": "Disable-PnPPowerShellTelemetry", - "CommandName": "Disable-PnPPowerShellTelemetry" + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 287, + "Command": "Disable-PnPPowerShellTelemetry" }, { - "Id": 288, "Rank": 2, - "Command": "Disable-PnPPowerShellTelemetry -Force", - "CommandName": "Disable-PnPPowerShellTelemetry" + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 288, + "Command": "Disable-PnPPowerShellTelemetry -Force" }, { - "Id": 289, "Rank": 1, - "Command": "Disable-PnPSharingForNonOwnersOfSite", - "CommandName": "Disable-PnPSharingForNonOwnersOfSite" + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 289, + "Command": "Disable-PnPSharingForNonOwnersOfSite" }, { - "Id": 290, "Rank": 1, - "Command": "Disable-PnPSiteClassification", - "CommandName": "Disable-PnPSiteClassification" + "CommandName": "Disable-PnPSiteClassification", + "Id": 290, + "Command": "Disable-PnPSiteClassification" }, { - "Id": 291, "Rank": 1, - "Command": "Disconnect-PnPOnline", - "CommandName": "Disconnect-PnPOnline" + "CommandName": "Disconnect-PnPOnline", + "Id": 291, + "Command": "Disconnect-PnPOnline" }, { - "Id": 292, "Rank": 1, - "Command": "Enable-PnPCommSite", - "CommandName": "Enable-PnPCommSite" + "CommandName": "Enable-PnPCommSite", + "Id": 292, + "Command": "Enable-PnPCommSite" }, { - "Id": 293, "Rank": 2, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "CommandName": "Enable-PnPCommSite" + "CommandName": "Enable-PnPCommSite", + "Id": 293, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" }, { - "Id": 294, "Rank": 1, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Id": 294, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 295, "Rank": 2, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Id": 295, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { - "Id": 296, "Rank": 3, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Enable-PnPFeature" + "CommandName": "Enable-PnPFeature", + "Id": 296, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { - "Id": 297, "Rank": 1, - "Command": "Enable-PnPPageScheduling", - "CommandName": "Enable-PnPPageScheduling" + "CommandName": "Enable-PnPPageScheduling", + "Id": 297, + "Command": "Enable-PnPPageScheduling" }, { - "Id": 298, "Rank": 1, - "Command": "Enable-PnPPowerShellTelemetry", - "CommandName": "Enable-PnPPowerShellTelemetry" + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 298, + "Command": "Enable-PnPPowerShellTelemetry" }, { - "Id": 299, "Rank": 2, - "Command": "Enable-PnPPowerShellTelemetry -Force", - "CommandName": "Enable-PnPPowerShellTelemetry" + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 299, + "Command": "Enable-PnPPowerShellTelemetry -Force" }, { - "Id": 300, "Rank": 1, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "CommandName": "Enable-PnPSiteClassification" + "CommandName": "Enable-PnPSiteClassification", + "Id": 300, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" }, { - "Id": 301, "Rank": 2, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Enable-PnPSiteClassification" + "CommandName": "Enable-PnPSiteClassification", + "Id": 301, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Id": 302, "Rank": 1, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "CommandName": "Export-PnPListToSiteTemplate" + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 302, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" }, { - "Id": 303, "Rank": 2, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "CommandName": "Export-PnPListToSiteTemplate" + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 303, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" }, { - "Id": 304, "Rank": 1, - "Command": "Export-PnPPage -Identity Home.aspx", - "CommandName": "Export-PnPPage" + "CommandName": "Export-PnPPage", + "Id": 304, + "Command": "Export-PnPPage -Identity Home.aspx" }, { - "Id": 305, "Rank": 1, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Id": 305, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" }, { - "Id": 306, "Rank": 2, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Id": 306, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" }, { - "Id": 307, "Rank": 3, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping" + "CommandName": "Export-PnPPageMapping", + "Id": 307, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" }, { - "Id": 308, "Rank": 1, - "Command": "Export-PnPTaxonomy", - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Id": 308, + "Command": "Export-PnPTaxonomy" }, { - "Id": 309, "Rank": 2, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Id": 309, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt" }, { - "Id": 310, "Rank": 3, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Id": 310, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" }, { - "Id": 311, "Rank": 4, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "CommandName": "Export-PnPTaxonomy" + "CommandName": "Export-PnPTaxonomy", + "Id": 311, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" }, { - "Id": 312, "Rank": 1, - "Command": "Export-PnPTermGroupToXml", - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Id": 312, + "Command": "Export-PnPTermGroupToXml" }, { - "Id": 313, "Rank": 2, - "Command": "Export-PnPTermGroupToXml -Out output.xml", - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Id": 313, + "Command": "Export-PnPTermGroupToXml -Out output.xml" }, { - "Id": 314, "Rank": 3, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "CommandName": "Export-PnPTermGroupToXml" + "CommandName": "Export-PnPTermGroupToXml", + "Id": 314, + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" }, { - "Id": 315, "Rank": 1, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Export-PnPUserInfo" + "CommandName": "Export-PnPUserInfo", + "Id": 315, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Id": 316, "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" + "CommandName": "Export-PnPUserInfo", + "Id": 316, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Id": 317, "Rank": 1, - "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Export-PnPUserProfile" + "CommandName": "Export-PnPUserProfile", + "Id": 317, + "Command": "Export-PnPUserProfile -LoginName user@domain.com" }, { - "Id": 318, "Rank": 2, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "CommandName": "Export-PnPUserProfile" + "CommandName": "Export-PnPUserProfile", + "Id": 318, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" }, { - "Id": 319, "Rank": 1, - "Command": "Find-PnPFile -Match *.master", - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Id": 319, + "Command": "Find-PnPFile -Match *.master" }, { - "Id": 320, "Rank": 2, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Id": 320, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" }, { - "Id": 321, "Rank": 3, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "CommandName": "Find-PnPFile" + "CommandName": "Find-PnPFile", + "Id": 321, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" }, { - "Id": 322, "Rank": 1, - "Command": "Get-PnPAccessToken", - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Id": 322, + "Command": "Get-PnPAccessToken" }, { - "Id": 323, "Rank": 2, - "Command": "Get-PnPAccessToken -Decoded", - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Id": 323, + "Command": "Get-PnPAccessToken -Decoded" }, { - "Id": 324, "Rank": 3, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Id": 324, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" }, { - "Id": 325, "Rank": 4, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Id": 325, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM" }, { - "Id": 326, "Rank": 5, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "CommandName": "Get-PnPAccessToken" + "CommandName": "Get-PnPAccessToken", + "Id": 326, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" }, { - "Id": 327, "Rank": 1, - "Command": "Get-PnPAlert", - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Id": 327, + "Command": "Get-PnPAlert" }, { - "Id": 328, "Rank": 2, - "Command": "Get-PnPAlert -List \"Demo List\"", - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Id": 328, + "Command": "Get-PnPAlert -List \"Demo List\"" }, { - "Id": 329, "Rank": 3, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Id": 329, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Id": 330, "Rank": 4, - "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Id": 330, + "Command": "Get-PnPAlert -Title \"Demo Alert\"" }, { - "Id": 331, "Rank": 5, - "Command": "Get-PnPAlert -AllUsers", - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Id": 331, + "Command": "Get-PnPAlert -AllUsers" }, { - "Id": 332, "Rank": 6, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "CommandName": "Get-PnPAlert" + "CommandName": "Get-PnPAlert", + "Id": 332, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" }, { - "Id": 333, "Rank": 1, - "Command": "Get-PnPApp", - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Id": 333, + "Command": "Get-PnPApp" }, { - "Id": 334, "Rank": 2, - "Command": "Get-PnPApp -Scope Site", - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Id": 334, + "Command": "Get-PnPApp -Scope Site" }, { - "Id": 335, "Rank": 3, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPApp" + "CommandName": "Get-PnPApp", + "Id": 335, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 336, "Rank": 1, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "CommandName": "Get-PnPAppErrors" + "CommandName": "Get-PnPAppErrors", + "Id": 336, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" }, { - "Id": 337, "Rank": 2, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "CommandName": "Get-PnPAppErrors" + "CommandName": "Get-PnPAppErrors", + "Id": 337, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" }, { - "Id": 338, "Rank": 1, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Id": 338, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"" }, { - "Id": 339, "Rank": 2, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Id": 339, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 340, "Rank": 3, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "CommandName": "Get-PnPAppInfo" + "CommandName": "Get-PnPAppInfo", + "Id": 340, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" }, { - "Id": 341, "Rank": 1, - "Command": "Get-PnPApplicationCustomizer", - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 341, + "Command": "Get-PnPApplicationCustomizer" }, { - "Id": 342, "Rank": 2, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 342, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 343, "Rank": 3, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "CommandName": "Get-PnPApplicationCustomizer" + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 343, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" }, { - "Id": 344, "Rank": 1, - "Command": "Get-PnPAuditing", - "CommandName": "Get-PnPAuditing" + "CommandName": "Get-PnPAuditing", + "Id": 344, + "Command": "Get-PnPAuditing" }, { - "Id": 345, "Rank": 1, - "Command": "Get-PnPAuthenticationRealm", - "CommandName": "Get-PnPAuthenticationRealm" + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 345, + "Command": "Get-PnPAuthenticationRealm" }, { - "Id": 346, "Rank": 2, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "CommandName": "Get-PnPAuthenticationRealm" + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 346, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" }, { - "Id": 347, "Rank": 1, - "Command": "Get-PnPAvailableLanguage", - "CommandName": "Get-PnPAvailableLanguage" + "CommandName": "Get-PnPAvailableLanguage", + "Id": 347, + "Command": "Get-PnPAvailableLanguage" }, { - "Id": 348, "Rank": 1, - "Command": "Get-PnPAvailableSensitivityLabel", - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 348, + "Command": "Get-PnPAvailableSensitivityLabel" }, { - "Id": 349, "Rank": 2, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 349, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" }, { - "Id": 350, "Rank": 3, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "CommandName": "Get-PnPAvailableSensitivityLabel" + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 350, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" }, { - "Id": 351, "Rank": 1, - "Command": "Get-PnPAvailableSiteClassification", - "CommandName": "Get-PnPAvailableSiteClassification" + "CommandName": "Get-PnPAvailableSiteClassification", + "Id": 351, + "Command": "Get-PnPAvailableSiteClassification" }, { - "Id": 352, "Rank": 1, - "Command": "Get-PnPAzureACSPrincipal", - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 352, + "Command": "Get-PnPAzureACSPrincipal" }, { - "Id": 353, "Rank": 2, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 353, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" }, { - "Id": 354, "Rank": 3, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 354, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" }, { - "Id": 355, "Rank": 4, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal" + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 355, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" }, { - "Id": 356, "Rank": 1, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 356, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Id": 357, "Rank": 2, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 357, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" }, { - "Id": 358, "Rank": 3, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 358, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" }, { - "Id": 359, "Rank": 1, - "Command": "Get-PnPAzureADActivityReportSignIn", - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 359, + "Command": "Get-PnPAzureADActivityReportSignIn" }, { - "Id": 360, "Rank": 2, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 360, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" }, { - "Id": 361, "Rank": 3, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 361, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" }, { - "Id": 362, "Rank": 1, - "Command": "Get-PnPAzureADApp", - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Id": 362, + "Command": "Get-PnPAzureADApp" }, { - "Id": 363, "Rank": 2, - "Command": "Get-PnPAzureADApp -Identity MyApp", - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Id": 363, + "Command": "Get-PnPAzureADApp -Identity MyApp" }, { - "Id": 364, "Rank": 3, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Id": 364, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 365, "Rank": 4, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADApp" + "CommandName": "Get-PnPAzureADApp", + "Id": 365, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 366, "Rank": 1, - "Command": "Get-PnPAzureADAppPermission", - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 366, + "Command": "Get-PnPAzureADAppPermission" }, { - "Id": 367, "Rank": 2, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 367, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp" }, { - "Id": 368, "Rank": 3, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADAppPermission" + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 368, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 369, "Rank": 1, - "Command": "Get-PnPAzureADAppSitePermission", - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 369, + "Command": "Get-PnPAzureADAppSitePermission" }, { - "Id": 370, "Rank": 2, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 370, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" }, { - "Id": 371, "Rank": 3, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 371, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" }, { - "Id": 372, "Rank": 4, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 372, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" }, { - "Id": 373, "Rank": 5, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "CommandName": "Get-PnPAzureADAppSitePermission" + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 373, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" }, { - "Id": 374, "Rank": 1, - "Command": "Get-PnPAzureADGroup", - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Id": 374, + "Command": "Get-PnPAzureADGroup" }, { - "Id": 375, "Rank": 2, - "Command": "Get-PnPAzureADGroup -Identity $groupId", - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Id": 375, + "Command": "Get-PnPAzureADGroup -Identity $groupId" }, { - "Id": 376, "Rank": 3, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Id": 376, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" }, { - "Id": 377, "Rank": 4, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Id": 377, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" }, { - "Id": 378, "Rank": 5, - "Command": "Get-PnPAzureADGroup -Identity $group", - "CommandName": "Get-PnPAzureADGroup" + "CommandName": "Get-PnPAzureADGroup", + "Id": 378, + "Command": "Get-PnPAzureADGroup -Identity $group" }, { - "Id": 379, "Rank": 1, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupMember" + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 379, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId" }, { - "Id": 380, "Rank": 2, - "Command": "Get-PnPAzureADGroupMember -Identity $group", - "CommandName": "Get-PnPAzureADGroupMember" + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 380, + "Command": "Get-PnPAzureADGroupMember -Identity $group" }, { - "Id": 381, "Rank": 1, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupOwner" + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 381, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" }, { - "Id": 382, "Rank": 2, - "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "CommandName": "Get-PnPAzureADGroupOwner" + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 382, + "Command": "Get-PnPAzureADGroupOwner -Identity $group" }, { - "Id": 383, "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipal", - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 383, + "Command": "Get-PnPAzureADServicePrincipal" }, { - "Id": 384, "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 384, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" }, { - "Id": 385, "Rank": 3, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 385, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" }, { - "Id": 386, "Rank": 4, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 386, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" }, { - "Id": 387, "Rank": 5, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADServicePrincipal" + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 387, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 388, "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 388, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 389, "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 389, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Id": 390, "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 390, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 391, "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 391, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" }, { - "Id": 392, "Rank": 1, - "Command": "Get-PnPAzureADUser", - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 392, + "Command": "Get-PnPAzureADUser" }, { - "Id": 393, "Rank": 2, - "Command": "Get-PnPAzureADUser -EndIndex 50", - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 393, + "Command": "Get-PnPAzureADUser -EndIndex 50" }, { - "Id": 394, "Rank": 3, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 394, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Id": 395, "Rank": 4, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 395, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com" }, { - "Id": 396, "Rank": 5, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 396, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" }, { - "Id": 397, "Rank": 6, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 397, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" }, { - "Id": 398, "Rank": 7, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 398, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" }, { - "Id": 399, "Rank": 8, - "Command": "Get-PnPAzureADUser -Delta", - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 399, + "Command": "Get-PnPAzureADUser -Delta" }, { - "Id": 400, "Rank": 9, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 400, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" }, { - "Id": 401, "Rank": 10, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "CommandName": "Get-PnPAzureADUser" + "CommandName": "Get-PnPAzureADUser", + "Id": 401, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" }, { - "Id": 402, "Rank": 1, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Id": 402, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" }, { - "Id": 403, "Rank": 2, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Id": 403, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { - "Id": 404, "Rank": 3, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "CommandName": "Get-PnPAzureCertificate" + "CommandName": "Get-PnPAzureCertificate", + "Id": 404, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" }, { - "Id": 405, "Rank": 1, - "Command": "Get-PnPBrowserIdleSignout", - "CommandName": "Get-PnPBrowserIdleSignout" + "CommandName": "Get-PnPBrowserIdleSignout", + "Id": 405, + "Command": "Get-PnPBrowserIdleSignout" }, { - "Id": 406, "Rank": 1, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 406, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" }, { - "Id": 407, "Rank": 2, - "Command": "Get-PnPBuiltInDesignPackageVisibility", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 407, + "Command": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Id": 408, "Rank": 1, - "Command": "Get-PnPBuiltInSiteTemplateSettings", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 408, + "Command": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 409, "Rank": 2, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 409, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" }, { - "Id": 410, "Rank": 3, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 410, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" }, { - "Id": 411, "Rank": 4, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 411, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 412, "Rank": 5, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 412, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" }, { - "Id": 413, "Rank": 1, - "Command": "Get-PnPChangeLog", - "CommandName": "Get-PnPChangeLog" + "CommandName": "Get-PnPChangeLog", + "Id": 413, + "Command": "Get-PnPChangeLog" }, { - "Id": 414, "Rank": 2, - "Command": "Get-PnPChangeLog -Nightly", - "CommandName": "Get-PnPChangeLog" + "CommandName": "Get-PnPChangeLog", + "Id": 414, + "Command": "Get-PnPChangeLog -Nightly" }, { - "Id": 415, "Rank": 1, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "CommandName": "Get-PnPCompatibleHubContentTypes" + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 415, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" }, { - "Id": 416, "Rank": 2, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "CommandName": "Get-PnPCompatibleHubContentTypes" + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 416, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" }, { - "Id": 417, "Rank": 1, - "Command": "Get-PnPContentType", - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Id": 417, + "Command": "Get-PnPContentType" }, { - "Id": 418, "Rank": 2, - "Command": "Get-PnPContentType -InSiteHierarchy", - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Id": 418, + "Command": "Get-PnPContentType -InSiteHierarchy" }, { - "Id": 419, "Rank": 3, - "Command": "Get-PnPContentType -Identity \"Project Document\"", - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Id": 419, + "Command": "Get-PnPContentType -Identity \"Project Document\"" }, { - "Id": 420, "Rank": 4, - "Command": "Get-PnPContentType -List \"Documents\"", - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Id": 420, + "Command": "Get-PnPContentType -List \"Documents\"" }, { - "Id": 421, "Rank": 5, - "Command": "Get-PnPContentType -Includes \"SchemaXml\"", - "CommandName": "Get-PnPContentType" + "CommandName": "Get-PnPContentType", + "Id": 421, + "Command": "Get-PnPContentType -Includes \"SchemaXml\"" }, { - "Id": 422, "Rank": 1, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "CommandName": "Get-PnPContentTypePublishingStatus" + "CommandName": "Get-PnPContentTypePublishingStatus", + "Id": 422, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" }, { - "Id": 423, "Rank": 1, - "Command": "Get-PnPCustomAction", - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Id": 423, + "Command": "Get-PnPCustomAction" }, { - "Id": 424, "Rank": 2, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Id": 424, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 425, "Rank": 3, - "Command": "Get-PnPCustomAction -Scope web", - "CommandName": "Get-PnPCustomAction" + "CommandName": "Get-PnPCustomAction", + "Id": 425, + "Command": "Get-PnPCustomAction -Scope web" }, { - "Id": 426, "Rank": 1, - "Command": "Get-PnPDeletedMicrosoft365Group", - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 426, + "Command": "Get-PnPDeletedMicrosoft365Group" }, { - "Id": 427, "Rank": 2, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 427, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 428, "Rank": 1, - "Command": "Get-PnPDeletedTeam", - "CommandName": "Get-PnPDeletedTeam" + "CommandName": "Get-PnPDeletedTeam", + "Id": 428, + "Command": "Get-PnPDeletedTeam" }, { - "Id": 429, "Rank": 1, - "Command": "Get-PnPDiagnostics", - "CommandName": "Get-PnPDiagnostics" + "CommandName": "Get-PnPDiagnostics", + "Id": 429, + "Command": "Get-PnPDiagnostics" }, { - "Id": 430, "Rank": 1, - "Command": "Get-PnPDisableSpacesActivation", - "CommandName": "Get-PnPDisableSpacesActivation" + "CommandName": "Get-PnPDisableSpacesActivation", + "Id": 430, + "Command": "Get-PnPDisableSpacesActivation" }, { - "Id": 431, "Rank": 1, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "CommandName": "Get-PnPDocumentSetTemplate" + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 431, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" }, { - "Id": 432, "Rank": 2, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "CommandName": "Get-PnPDocumentSetTemplate" + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 432, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" }, { - "Id": 433, "Rank": 1, - "Command": "Get-PnPEventReceiver", - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 433, + "Command": "Get-PnPEventReceiver" }, { - "Id": 434, "Rank": 2, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 434, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 435, "Rank": 3, - "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 435, + "Command": "Get-PnPEventReceiver -Identity MyReceiver" }, { - "Id": 436, "Rank": 4, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 436, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"" }, { - "Id": 437, "Rank": 5, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 437, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 438, "Rank": 6, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 438, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" }, { - "Id": 439, "Rank": 7, - "Command": "Get-PnPEventReceiver -Scope Site", - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 439, + "Command": "Get-PnPEventReceiver -Scope Site" }, { - "Id": 440, "Rank": 8, - "Command": "Get-PnPEventReceiver -Scope Web", - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 440, + "Command": "Get-PnPEventReceiver -Scope Web" }, { - "Id": 441, "Rank": 9, - "Command": "Get-PnPEventReceiver -Scope All", - "CommandName": "Get-PnPEventReceiver" + "CommandName": "Get-PnPEventReceiver", + "Id": 441, + "Command": "Get-PnPEventReceiver -Scope All" }, { - "Id": 442, "Rank": 1, - "Command": "Get-PnPException", - "CommandName": "Get-PnPException" + "CommandName": "Get-PnPException", + "Id": 442, + "Command": "Get-PnPException" }, { - "Id": 443, "Rank": 2, - "Command": "Get-PnPException -All", - "CommandName": "Get-PnPException" + "CommandName": "Get-PnPException", + "Id": 443, + "Command": "Get-PnPException -All" }, { - "Id": 444, "Rank": 1, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "CommandName": "Get-PnPExternalUser" + "CommandName": "Get-PnPExternalUser", + "Id": 444, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" }, { - "Id": 445, "Rank": 2, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "CommandName": "Get-PnPExternalUser" + "CommandName": "Get-PnPExternalUser", + "Id": 445, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" }, { - "Id": 446, "Rank": 1, - "Command": "Get-PnPFeature", - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Id": 446, + "Command": "Get-PnPFeature" }, { - "Id": 447, "Rank": 2, - "Command": "Get-PnPFeature -Scope Site", - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Id": 447, + "Command": "Get-PnPFeature -Scope Site" }, { - "Id": 448, "Rank": 3, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Id": 448, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 449, "Rank": 4, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "CommandName": "Get-PnPFeature" + "CommandName": "Get-PnPFeature", + "Id": 449, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" }, { - "Id": 450, "Rank": 1, - "Command": "Get-PnPField", - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Id": 450, + "Command": "Get-PnPField" }, { - "Id": 451, "Rank": 2, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Id": 451, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Id": 452, "Rank": 3, - "Command": "Get-PnPField -Group \"Custom Columns\"", - "CommandName": "Get-PnPField" + "CommandName": "Get-PnPField", + "Id": 452, + "Command": "Get-PnPField -Group \"Custom Columns\"" }, { - "Id": 453, "Rank": 1, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Id": 453, + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" }, { - "Id": 454, "Rank": 2, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Id": 454, + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" }, { - "Id": 455, "Rank": 3, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Id": 455, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" }, { - "Id": 456, "Rank": 4, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Id": 456, + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" }, { - "Id": 457, "Rank": 5, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Id": 457, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" }, { - "Id": 458, "Rank": 6, - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Id": 458, + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" }, { - "Id": 459, "Rank": 7, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "CommandName": "Get-PnPFile" + "CommandName": "Get-PnPFile", + "Id": 459, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" }, { - "Id": 460, "Rank": 1, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Get-PnPFileSharingLink" + "CommandName": "Get-PnPFileSharingLink", + "Id": 460, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 461, "Rank": 1, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "CommandName": "Get-PnPFileVersion" + "CommandName": "Get-PnPFileVersion", + "Id": 461, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" }, { - "Id": 462, "Rank": 2, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "CommandName": "Get-PnPFileVersion" + "CommandName": "Get-PnPFileVersion", + "Id": 462, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" }, { - "Id": 463, "Rank": 1, - "Command": "Get-PnPFlow -AsAdmin", - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Id": 463, + "Command": "Get-PnPFlow -AsAdmin" }, { - "Id": 464, "Rank": 2, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe", - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Id": 464, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe" }, { - "Id": 465, "Rank": 3, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "CommandName": "Get-PnPFlow" + "CommandName": "Get-PnPFlow", + "Id": 465, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { - "Id": 466, "Rank": 1, - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", - "CommandName": "Get-PnPFlowOwner" + "CommandName": "Get-PnPFlowOwner", + "Id": 466, + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" }, { - "Id": 467, "Rank": 1, - "Command": "Get-PnPFolder", - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Id": 467, + "Command": "Get-PnPFolder" }, { - "Id": 468, "Rank": 2, - "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Id": 468, + "Command": "Get-PnPFolder -Url \"Shared Documents\"" }, { - "Id": 469, "Rank": 3, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Id": 469, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" }, { - "Id": 470, "Rank": 4, - "Command": "Get-PnPFolder -List \"Shared Documents\"", - "CommandName": "Get-PnPFolder" + "CommandName": "Get-PnPFolder", + "Id": 470, + "Command": "Get-PnPFolder -List \"Shared Documents\"" }, { - "Id": 471, "Rank": 1, - "Command": "Get-PnPFolderFile", - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Id": 471, + "Command": "Get-PnPFolderFile" }, { - "Id": 472, "Rank": 2, - "Command": "Get-PnPFolderFile -Recurse", - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Id": 472, + "Command": "Get-PnPFolderFile -Recurse" }, { - "Id": 473, "Rank": 3, - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Id": 473, + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"" }, { - "Id": 474, "Rank": 4, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Id": 474, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Id": 475, "Rank": 5, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderFile" + "CommandName": "Get-PnPFolderFile", + "Id": 475, + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Id": 476, "Rank": 1, - "Command": "Get-PnPFolderFolder", - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Id": 476, + "Command": "Get-PnPFolderFolder" }, { - "Id": 477, "Rank": 2, - "Command": "Get-PnPFolderFolder -Recurse", - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Id": 477, + "Command": "Get-PnPFolderFolder -Recurse" }, { - "Id": 478, "Rank": 3, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Id": 478, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"" }, { - "Id": 479, "Rank": 4, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Id": 479, + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" }, { - "Id": 480, "Rank": 5, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Id": 480, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" }, { - "Id": 481, "Rank": 6, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderFolder" + "CommandName": "Get-PnPFolderFolder", + "Id": 481, + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Id": 482, "Rank": 1, - "Command": "Get-PnPFolderItem", - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Id": 482, + "Command": "Get-PnPFolderItem" }, { - "Id": 483, "Rank": 2, - "Command": "Get-PnPFolderItem -Recurse", - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Id": 483, + "Command": "Get-PnPFolderItem -Recurse" }, { - "Id": 484, "Rank": 3, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Id": 484, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" }, { - "Id": 485, "Rank": 4, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Id": 485, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { - "Id": 486, "Rank": 5, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Id": 486, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" }, { - "Id": 487, "Rank": 6, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderItem" + "CommandName": "Get-PnPFolderItem", + "Id": 487, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { - "Id": 488, "Rank": 1, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Get-PnPFolderSharingLink" + "CommandName": "Get-PnPFolderSharingLink", + "Id": 488, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 489, "Rank": 1, - "Command": "Get-PnPFolderStorageMetric", - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 489, + "Command": "Get-PnPFolderStorageMetric" }, { - "Id": 490, "Rank": 2, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 490, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" }, { - "Id": 491, "Rank": 3, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "CommandName": "Get-PnPFolderStorageMetric" + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 491, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" }, { - "Id": 492, "Rank": 1, - "Command": "Get-PnPFooter", - "CommandName": "Get-PnPFooter" + "CommandName": "Get-PnPFooter", + "Id": 492, + "Command": "Get-PnPFooter" }, { - "Id": 493, "Rank": 1, - "Command": "Get-PnPGraphAccessToken", - "CommandName": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPGraphAccessToken", + "Id": 493, + "Command": "Get-PnPGraphAccessToken" }, { - "Id": 494, "Rank": 2, - "Command": "Get-PnPGraphAccessToken -Decoded", - "CommandName": "Get-PnPGraphAccessToken" + "CommandName": "Get-PnPGraphAccessToken", + "Id": 494, + "Command": "Get-PnPGraphAccessToken -Decoded" }, { - "Id": 495, "Rank": 1, - "Command": "Get-PnPGraphSubscription", - "CommandName": "Get-PnPGraphSubscription" + "CommandName": "Get-PnPGraphSubscription", + "Id": 495, + "Command": "Get-PnPGraphSubscription" }, { - "Id": 496, "Rank": 2, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPGraphSubscription" + "CommandName": "Get-PnPGraphSubscription", + "Id": 496, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { - "Id": 497, "Rank": 1, - "Command": "Get-PnPGroup", - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Id": 497, + "Command": "Get-PnPGroup" }, { - "Id": 498, "Rank": 2, - "Command": "Get-PnPGroup -Identity 'My Site Users'", - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Id": 498, + "Command": "Get-PnPGroup -Identity 'My Site Users'" }, { - "Id": 499, "Rank": 3, - "Command": "Get-PnPGroup -AssociatedMemberGroup", - "CommandName": "Get-PnPGroup" + "CommandName": "Get-PnPGroup", + "Id": 499, + "Command": "Get-PnPGroup -AssociatedMemberGroup" }, { - "Id": 500, "Rank": 1, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "CommandName": "Get-PnPGroupMember" + "CommandName": "Get-PnPGroupMember", + "Id": 500, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" }, { - "Id": 501, "Rank": 2, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "CommandName": "Get-PnPGroupMember" + "CommandName": "Get-PnPGroupMember", + "Id": 501, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" }, { - "Id": 502, "Rank": 1, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "CommandName": "Get-PnPGroupPermissions" + "CommandName": "Get-PnPGroupPermissions", + "Id": 502, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" }, { - "Id": 503, "Rank": 1, - "Command": "Get-PnPHideDefaultThemes", - "CommandName": "Get-PnPHideDefaultThemes" + "CommandName": "Get-PnPHideDefaultThemes", + "Id": 503, + "Command": "Get-PnPHideDefaultThemes" }, { - "Id": 504, "Rank": 1, - "Command": "Get-PnPHomePage", - "CommandName": "Get-PnPHomePage" + "CommandName": "Get-PnPHomePage", + "Id": 504, + "Command": "Get-PnPHomePage" }, { - "Id": 505, "Rank": 1, - "Command": "Get-PnPHomeSite", - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Id": 505, + "Command": "Get-PnPHomeSite" }, { - "Id": 506, "Rank": 2, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Id": 506, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" }, { - "Id": 507, "Rank": 3, - "Command": "Get-PnPHomeSite -Detailed", - "CommandName": "Get-PnPHomeSite" + "CommandName": "Get-PnPHomeSite", + "Id": 507, + "Command": "Get-PnPHomeSite -Detailed" }, { - "Id": 508, "Rank": 1, - "Command": "Get-PnPHubSite", - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Id": 508, + "Command": "Get-PnPHubSite" }, { - "Id": 509, "Rank": 2, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Id": 509, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Id": 510, "Rank": 3, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "CommandName": "Get-PnPHubSite" + "CommandName": "Get-PnPHubSite", + "Id": 510, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" }, { - "Id": 511, "Rank": 1, - "Command": "Get-PnPHubSiteChild", - "CommandName": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSiteChild", + "Id": 511, + "Command": "Get-PnPHubSiteChild" }, { - "Id": 512, "Rank": 2, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSiteChild" + "CommandName": "Get-PnPHubSiteChild", + "Id": 512, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { - "Id": 513, "Rank": 1, - "Command": "Get-PnPInPlaceRecordsManagement", - "CommandName": "Get-PnPInPlaceRecordsManagement" + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Id": 513, + "Command": "Get-PnPInPlaceRecordsManagement" }, { - "Id": 514, "Rank": 1, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "CommandName": "Get-PnPIsSiteAliasAvailable" + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Id": 514, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" }, { - "Id": 515, "Rank": 1, - "Command": "Get-PnPJavaScriptLink", - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 515, + "Command": "Get-PnPJavaScriptLink" }, { - "Id": 516, "Rank": 2, - "Command": "Get-PnPJavaScriptLink -Scope All", - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 516, + "Command": "Get-PnPJavaScriptLink -Scope All" }, { - "Id": 517, "Rank": 3, - "Command": "Get-PnPJavaScriptLink -Scope Web", - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 517, + "Command": "Get-PnPJavaScriptLink -Scope Web" }, { - "Id": 518, "Rank": 4, - "Command": "Get-PnPJavaScriptLink -Scope Site", - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 518, + "Command": "Get-PnPJavaScriptLink -Scope Site" }, { - "Id": 519, "Rank": 5, - "Command": "Get-PnPJavaScriptLink -Name Test", - "CommandName": "Get-PnPJavaScriptLink" + "CommandName": "Get-PnPJavaScriptLink", + "Id": 519, + "Command": "Get-PnPJavaScriptLink -Name Test" }, { - "Id": 520, "Rank": 1, - "Command": "Get-PnPKnowledgeHubSite", - "CommandName": "Get-PnPKnowledgeHubSite" + "CommandName": "Get-PnPKnowledgeHubSite", + "Id": 520, + "Command": "Get-PnPKnowledgeHubSite" }, { - "Id": 521, "Rank": 1, - "Command": "Get-PnPLabel", - "CommandName": "Get-PnPLabel" + "CommandName": "Get-PnPLabel", + "Id": 521, + "Command": "Get-PnPLabel" }, { - "Id": 522, "Rank": 2, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "CommandName": "Get-PnPLabel" + "CommandName": "Get-PnPLabel", + "Id": 522, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" }, { - "Id": 523, "Rank": 1, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "CommandName": "Get-PnPLargeListOperationStatus" + "CommandName": "Get-PnPLargeListOperationStatus", + "Id": 523, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" }, { - "Id": 524, "Rank": 1, - "Command": "Get-PnPList", - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Id": 524, + "Command": "Get-PnPList" }, { - "Id": 525, "Rank": 2, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Id": 525, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 526, "Rank": 3, - "Command": "Get-PnPList -Identity Lists/Announcements", - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Id": 526, + "Command": "Get-PnPList -Identity Lists/Announcements" }, { - "Id": 527, "Rank": 4, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Id": 527, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" }, { - "Id": 528, "Rank": 5, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "CommandName": "Get-PnPList" + "CommandName": "Get-PnPList", + "Id": 528, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" }, { - "Id": 529, "Rank": 1, - "Command": "Get-PnPListDesign", - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Id": 529, + "Command": "Get-PnPListDesign" }, { - "Id": 530, "Rank": 2, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Id": 530, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 531, "Rank": 3, - "Command": "Get-PnPListDesign -Identity ListEvent", - "CommandName": "Get-PnPListDesign" + "CommandName": "Get-PnPListDesign", + "Id": 531, + "Command": "Get-PnPListDesign -Identity ListEvent" }, { - "Id": 532, "Rank": 1, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "CommandName": "Get-PnPListInformationRightsManagement" + "CommandName": "Get-PnPListInformationRightsManagement", + "Id": 532, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" }, { - "Id": 533, "Rank": 1, - "Command": "Get-PnPListItem -List Tasks", - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 533, + "Command": "Get-PnPListItem -List Tasks" }, { - "Id": 534, "Rank": 2, - "Command": "Get-PnPListItem -List Tasks -Id 1", - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 534, + "Command": "Get-PnPListItem -List Tasks -Id 1" }, { - "Id": 535, "Rank": 3, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 535, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" }, { - "Id": 536, "Rank": 4, - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 536, + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" }, { - "Id": 537, "Rank": 5, - "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 537, + "Command": "Get-PnPListItem -List Tasks -Query \"\"" }, { - "Id": 538, "Rank": 6, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 538, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000" }, { - "Id": 539, "Rank": 7, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 539, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" }, { - "Id": 540, "Rank": 8, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 540, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" }, { - "Id": 541, "Rank": 9, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "CommandName": "Get-PnPListItem" + "CommandName": "Get-PnPListItem", + "Id": 541, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" }, { - "Id": 542, "Rank": 1, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", - "CommandName": "Get-PnPListItemAttachment" + "CommandName": "Get-PnPListItemAttachment", + "Id": 542, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" }, { - "Id": 543, "Rank": 2, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", - "CommandName": "Get-PnPListItemAttachment" + "CommandName": "Get-PnPListItemAttachment", + "Id": 543, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" }, { - "Id": 544, "Rank": 1, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "CommandName": "Get-PnPListItemComment" + "CommandName": "Get-PnPListItemComment", + "Id": 544, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1" }, { - "Id": 545, "Rank": 1, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "CommandName": "Get-PnPListItemPermission" + "CommandName": "Get-PnPListItemPermission", + "Id": 545, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" }, { - "Id": 546, "Rank": 1, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "CommandName": "Get-PnPListItemVersion" + "CommandName": "Get-PnPListItemVersion", + "Id": 546, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" }, { - "Id": 547, "Rank": 1, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "CommandName": "Get-PnPListPermissions" + "CommandName": "Get-PnPListPermissions", + "Id": 547, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" }, { - "Id": 548, "Rank": 2, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "CommandName": "Get-PnPListPermissions" + "CommandName": "Get-PnPListPermissions", + "Id": 548, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { - "Id": 549, "Rank": 1, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "CommandName": "Get-PnPListRecordDeclaration" + "CommandName": "Get-PnPListRecordDeclaration", + "Id": 549, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" }, { - "Id": 550, "Rank": 1, - "Command": "Get-PnPMasterPage", - "CommandName": "Get-PnPMasterPage" + "CommandName": "Get-PnPMasterPage", + "Id": 550, + "Command": "Get-PnPMasterPage" }, { - "Id": 551, "Rank": 1, - "Command": "Get-PnPMessageCenterAnnouncement", - "CommandName": "Get-PnPMessageCenterAnnouncement" + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 551, + "Command": "Get-PnPMessageCenterAnnouncement" }, { - "Id": 552, "Rank": 2, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "CommandName": "Get-PnPMessageCenterAnnouncement" + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 552, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" }, { - "Id": 553, "Rank": 1, - "Command": "Get-PnPMicrosoft365ExpiringGroup", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 553, + "Command": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Id": 554, "Rank": 2, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 554, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" }, { - "Id": 555, "Rank": 1, - "Command": "Get-PnPMicrosoft365Group", - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 555, + "Command": "Get-PnPMicrosoft365Group" }, { - "Id": 556, "Rank": 2, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 556, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId" }, { - "Id": 557, "Rank": 3, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 557, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" }, { - "Id": 558, "Rank": 4, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 558, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" }, { - "Id": 559, "Rank": 5, - "Command": "Get-PnPMicrosoft365Group -Identity $group", - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 559, + "Command": "Get-PnPMicrosoft365Group -Identity $group" }, { - "Id": 560, "Rank": 6, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "CommandName": "Get-PnPMicrosoft365Group" + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 560, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" }, { - "Id": 561, "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupEndpoint", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 561, + "Command": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Id": 562, "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 562, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" }, { - "Id": 563, "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 563, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 564, "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 564, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" }, { - "Id": 565, "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 565, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" }, { - "Id": 566, "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "CommandName": "Get-PnPMicrosoft365GroupMember" + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 566, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" }, { - "Id": 567, "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 567, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" }, { - "Id": 568, "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 568, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" }, { - "Id": 569, "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupSettings", - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 569, + "Command": "Get-PnPMicrosoft365GroupSettings" }, { - "Id": 570, "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 570, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" }, { - "Id": 571, "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 571, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Id": 572, "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 572, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" }, { - "Id": 573, "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupTeam", - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 573, + "Command": "Get-PnPMicrosoft365GroupTeam" }, { - "Id": 574, "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 574, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" }, { - "Id": 575, "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 575, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 576, "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 576, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Id": 577, "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 577, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" }, { - "Id": 578, "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 578, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { - "Id": 579, "Rank": 1, - "Command": "Get-PnPNavigationNode", - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Id": 579, + "Command": "Get-PnPNavigationNode" }, { - "Id": 580, "Rank": 2, - "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Id": 580, + "Command": "Get-PnPNavigationNode -Location QuickLaunch" }, { - "Id": 581, "Rank": 3, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "CommandName": "Get-PnPNavigationNode" + "CommandName": "Get-PnPNavigationNode", + "Id": 581, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar" }, { - "Id": 582, "Rank": 1, - "Command": "Get-PnPOrgAssetsLibrary", - "CommandName": "Get-PnPOrgAssetsLibrary" + "CommandName": "Get-PnPOrgAssetsLibrary", + "Id": 582, + "Command": "Get-PnPOrgAssetsLibrary" }, { - "Id": 583, "Rank": 1, - "Command": "Get-PnPOrgNewsSite", - "CommandName": "Get-PnPOrgNewsSite" + "CommandName": "Get-PnPOrgNewsSite", + "Id": 583, + "Command": "Get-PnPOrgNewsSite" }, { - "Id": 584, "Rank": 1, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Id": 584, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" }, { - "Id": 585, "Rank": 2, - "Command": "Get-PnPPage \"MyPage\"", - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Id": 585, + "Command": "Get-PnPPage \"MyPage\"" }, { - "Id": 586, "Rank": 3, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Id": 586, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" }, { - "Id": 587, "Rank": 4, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "CommandName": "Get-PnPPage" + "CommandName": "Get-PnPPage", + "Id": 587, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" }, { - "Id": 588, "Rank": 1, - "Command": "Get-PnPPageComponent -Page Home", - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Id": 588, + "Command": "Get-PnPPageComponent -Page Home" }, { - "Id": 589, "Rank": 2, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Id": 589, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 590, "Rank": 3, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "CommandName": "Get-PnPPageComponent" + "CommandName": "Get-PnPPageComponent", + "Id": 590, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable" }, { - "Id": 591, "Rank": 1, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerBucket" + "CommandName": "Get-PnPPlannerBucket", + "Id": 591, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Id": 592, "Rank": 1, - "Command": "Get-PnPPlannerConfiguration", - "CommandName": "Get-PnPPlannerConfiguration" + "CommandName": "Get-PnPPlannerConfiguration", + "Id": 592, + "Command": "Get-PnPPlannerConfiguration" }, { - "Id": 593, "Rank": 1, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Id": 593, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" }, { - "Id": 594, "Rank": 2, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Id": 594, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" }, { - "Id": 595, "Rank": 3, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "CommandName": "Get-PnPPlannerPlan" + "CommandName": "Get-PnPPlannerPlan", + "Id": 595, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" }, { - "Id": 596, "Rank": 1, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Get-PnPPlannerRosterMember" + "CommandName": "Get-PnPPlannerRosterMember", + "Id": 596, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Id": 597, "Rank": 1, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "CommandName": "Get-PnPPlannerRosterPlan" + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 597, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" }, { - "Id": 598, "Rank": 2, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerRosterPlan" + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 598, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 599, "Rank": 1, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Id": 599, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" }, { - "Id": 600, "Rank": 2, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Id": 600, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Id": 601, "Rank": 3, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask" + "CommandName": "Get-PnPPlannerTask", + "Id": 601, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { - "Id": 602, "Rank": 1, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerUserPolicy" + "CommandName": "Get-PnPPlannerUserPolicy", + "Id": 602, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 603, "Rank": 1, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", - "CommandName": "Get-PnPPowerPlatformConnector" + "CommandName": "Get-PnPPowerPlatformConnector", + "Id": 603, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" }, { - "Id": 604, "Rank": 1, - "Command": "Get-PnPPowerPlatformEnvironment", - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 604, + "Command": "Get-PnPPowerPlatformEnvironment" }, { - "Id": 605, "Rank": 2, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 605, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" }, { - "Id": 606, "Rank": 3, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "CommandName": "Get-PnPPowerPlatformEnvironment" + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 606, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" }, { - "Id": 607, "Rank": 1, - "Command": "Get-PnPPowerShellTelemetryEnabled", - "CommandName": "Get-PnPPowerShellTelemetryEnabled" + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Id": 607, + "Command": "Get-PnPPowerShellTelemetryEnabled" }, { - "Id": 608, "Rank": 1, - "Command": "Get-PnPPropertyBag", - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Id": 608, + "Command": "Get-PnPPropertyBag" }, { - "Id": 609, "Rank": 2, - "Command": "Get-PnPPropertyBag -Key MyKey", - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Id": 609, + "Command": "Get-PnPPropertyBag -Key MyKey" }, { - "Id": 610, "Rank": 3, - "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Id": 610, + "Command": "Get-PnPPropertyBag -Folder /MyFolder" }, { - "Id": 611, "Rank": 4, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Id": 611, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" }, { - "Id": 612, "Rank": 5, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag" + "CommandName": "Get-PnPPropertyBag", + "Id": 612, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" }, { - "Id": 613, "Rank": 1, - "Command": "Get-PnPPublishingImageRendition", - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 613, + "Command": "Get-PnPPublishingImageRendition" }, { - "Id": 614, "Rank": 2, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 614, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" }, { - "Id": 615, "Rank": 3, - "Command": "Get-PnPPublishingImageRendition -Identity 2", - "CommandName": "Get-PnPPublishingImageRendition" + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 615, + "Command": "Get-PnPPublishingImageRendition -Identity 2" }, { - "Id": 616, "Rank": 1, - "Command": "Get-PnPRecycleBinItem", - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 616, + "Command": "Get-PnPRecycleBinItem" }, { - "Id": 617, "Rank": 2, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 617, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" }, { - "Id": 618, "Rank": 3, - "Command": "Get-PnPRecycleBinItem -FirstStage", - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 618, + "Command": "Get-PnPRecycleBinItem -FirstStage" }, { - "Id": 619, "Rank": 4, - "Command": "Get-PnPRecycleBinItem -SecondStage", - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 619, + "Command": "Get-PnPRecycleBinItem -SecondStage" }, { - "Id": 620, "Rank": 5, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "CommandName": "Get-PnPRecycleBinItem" + "CommandName": "Get-PnPRecycleBinItem", + "Id": 620, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000" }, { - "Id": 621, "Rank": 1, - "Command": "Get-PnPRequestAccessEmails", - "CommandName": "Get-PnPRequestAccessEmails" + "CommandName": "Get-PnPRequestAccessEmails", + "Id": 621, + "Command": "Get-PnPRequestAccessEmails" }, { - "Id": 622, "Rank": 1, - "Command": "Get-PnPRetentionLabel", - "CommandName": "Get-PnPRetentionLabel" + "CommandName": "Get-PnPRetentionLabel", + "Id": 622, + "Command": "Get-PnPRetentionLabel" }, { - "Id": 623, "Rank": 2, - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", - "CommandName": "Get-PnPRetentionLabel" + "CommandName": "Get-PnPRetentionLabel", + "Id": 623, + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" }, { - "Id": 624, "Rank": 1, - "Command": "Get-PnPRoleDefinition", - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Id": 624, + "Command": "Get-PnPRoleDefinition" }, { - "Id": 625, "Rank": 2, - "Command": "Get-PnPRoleDefinition -Identity Read", - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Id": 625, + "Command": "Get-PnPRoleDefinition -Identity Read" }, { - "Id": 626, "Rank": 3, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "CommandName": "Get-PnPRoleDefinition" + "CommandName": "Get-PnPRoleDefinition", + "Id": 626, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" }, { - "Id": 627, "Rank": 1, - "Command": "Get-PnPSearchConfiguration", - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 627, + "Command": "Get-PnPSearchConfiguration" }, { - "Id": 628, "Rank": 2, - "Command": "Get-PnPSearchConfiguration -Scope Site", - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 628, + "Command": "Get-PnPSearchConfiguration -Scope Site" }, { - "Id": 629, "Rank": 3, - "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 629, + "Command": "Get-PnPSearchConfiguration -Scope Subscription" }, { - "Id": 630, "Rank": 4, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 630, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 631, "Rank": 5, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 631, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" }, { - "Id": 632, "Rank": 6, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 632, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" }, { - "Id": 633, "Rank": 7, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 633, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" }, { - "Id": 634, "Rank": 8, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "CommandName": "Get-PnPSearchConfiguration" + "CommandName": "Get-PnPSearchConfiguration", + "Id": 634, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" }, { - "Id": 635, "Rank": 1, - "Command": "Get-PnPSearchCrawlLog", - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 635, + "Command": "Get-PnPSearchCrawlLog" }, { - "Id": 636, "Rank": 2, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 636, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" }, { - "Id": 637, "Rank": 3, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 637, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" }, { - "Id": 638, "Rank": 4, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 638, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" }, { - "Id": 639, "Rank": 5, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 639, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" }, { - "Id": 640, "Rank": 6, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 640, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" }, { - "Id": 641, "Rank": 7, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "CommandName": "Get-PnPSearchCrawlLog" + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 641, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" }, { - "Id": 642, "Rank": 1, - "Command": "Get-PnPSearchSettings", - "CommandName": "Get-PnPSearchSettings" + "CommandName": "Get-PnPSearchSettings", + "Id": 642, + "Command": "Get-PnPSearchSettings" }, { - "Id": 643, "Rank": 1, - "Command": "Get-PnPServiceCurrentHealth", - "CommandName": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 643, + "Command": "Get-PnPServiceCurrentHealth" }, { - "Id": 644, "Rank": 2, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "CommandName": "Get-PnPServiceCurrentHealth" + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 644, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" }, { - "Id": 645, "Rank": 1, - "Command": "Get-PnPServiceHealthIssue", - "CommandName": "Get-PnPServiceHealthIssue" + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 645, + "Command": "Get-PnPServiceHealthIssue" }, { - "Id": 646, "Rank": 2, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "CommandName": "Get-PnPServiceHealthIssue" + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 646, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" }, { - "Id": 647, "Rank": 1, - "Command": "Get-PnPSharePointAddIn", - "CommandName": "Get-PnPSharePointAddIn" + "CommandName": "Get-PnPSharePointAddIn", + "Id": 647, + "Command": "Get-PnPSharePointAddIn" }, { - "Id": 648, "Rank": 2, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "CommandName": "Get-PnPSharePointAddIn" + "CommandName": "Get-PnPSharePointAddIn", + "Id": 648, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites" }, { - "Id": 649, "Rank": 1, - "Command": "Get-PnPSharingForNonOwnersOfSite", - "CommandName": "Get-PnPSharingForNonOwnersOfSite" + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Id": 649, + "Command": "Get-PnPSharingForNonOwnersOfSite" }, { - "Id": 650, "Rank": 1, - "Command": "Get-PnPSite", - "CommandName": "Get-PnPSite" + "CommandName": "Get-PnPSite", + "Id": 650, + "Command": "Get-PnPSite" }, { - "Id": 651, "Rank": 2, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "CommandName": "Get-PnPSite" + "CommandName": "Get-PnPSite", + "Id": 651, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" }, { - "Id": 652, "Rank": 1, - "Command": "Get-PnPSiteClosure", - "CommandName": "Get-PnPSiteClosure" + "CommandName": "Get-PnPSiteClosure", + "Id": 652, + "Command": "Get-PnPSiteClosure" }, { - "Id": 653, "Rank": 1, - "Command": "Get-PnPSiteCollectionAdmin", - "CommandName": "Get-PnPSiteCollectionAdmin" + "CommandName": "Get-PnPSiteCollectionAdmin", + "Id": 653, + "Command": "Get-PnPSiteCollectionAdmin" }, { - "Id": 654, "Rank": 1, - "Command": "Get-PnPSiteCollectionAppCatalog", - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 654, + "Command": "Get-PnPSiteCollectionAppCatalog" }, { - "Id": 655, "Rank": 2, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 655, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" }, { - "Id": 656, "Rank": 3, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 656, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" }, { - "Id": 657, "Rank": 1, - "Command": "Get-PnPSiteCollectionTermStore", - "CommandName": "Get-PnPSiteCollectionTermStore" + "CommandName": "Get-PnPSiteCollectionTermStore", + "Id": 657, + "Command": "Get-PnPSiteCollectionTermStore" }, { - "Id": 658, "Rank": 1, - "Command": "Get-PnPSiteDesign", - "CommandName": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteDesign", + "Id": 658, + "Command": "Get-PnPSiteDesign" }, { - "Id": 659, "Rank": 2, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesign" + "CommandName": "Get-PnPSiteDesign", + "Id": 659, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 660, "Rank": 1, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesignRights" + "CommandName": "Get-PnPSiteDesignRights", + "Id": 660, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 661, "Rank": 1, - "Command": "Get-PnPSiteDesignRun", - "CommandName": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesignRun", + "Id": 661, + "Command": "Get-PnPSiteDesignRun" }, { - "Id": 662, "Rank": 2, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignRun" + "CommandName": "Get-PnPSiteDesignRun", + "Id": 662, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" }, { - "Id": 663, "Rank": 1, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Id": 663, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" }, { - "Id": 664, "Rank": 2, - "Command": "Get-PnPSiteDesignTask", - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Id": 664, + "Command": "Get-PnPSiteDesignTask" }, { - "Id": 665, "Rank": 3, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignTask" + "CommandName": "Get-PnPSiteDesignTask", + "Id": 665, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { - "Id": 666, "Rank": 1, - "Command": "Get-PnPSiteGroup", - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Id": 666, + "Command": "Get-PnPSiteGroup" }, { - "Id": 667, "Rank": 2, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Id": 667, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Id": 668, "Rank": 3, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Id": 668, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" }, { - "Id": 669, "Rank": 4, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup" + "CommandName": "Get-PnPSiteGroup", + "Id": 669, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { - "Id": 670, "Rank": 1, - "Command": "Get-PnPSitePolicy", - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Id": 670, + "Command": "Get-PnPSitePolicy" }, { - "Id": 671, "Rank": 2, - "Command": "Get-PnPSitePolicy -AllAvailable", - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Id": 671, + "Command": "Get-PnPSitePolicy -AllAvailable" }, { - "Id": 672, "Rank": 3, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Get-PnPSitePolicy" + "CommandName": "Get-PnPSitePolicy", + "Id": 672, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Id": 673, "Rank": 1, - "Command": "Get-PnPSiteScript", - "CommandName": "Get-PnPSiteScript" + "CommandName": "Get-PnPSiteScript", + "Id": 673, + "Command": "Get-PnPSiteScript" }, { - "Id": 674, "Rank": 2, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteScript" + "CommandName": "Get-PnPSiteScript", + "Id": 674, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 675, "Rank": 1, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 675, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" }, { - "Id": 676, "Rank": 2, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 676, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" }, { - "Id": 677, "Rank": 3, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "CommandName": "Get-PnPSiteScriptFromList" + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 677, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" }, { - "Id": 678, "Rank": 1, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 678, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" }, { - "Id": 679, "Rank": 2, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 679, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" }, { - "Id": 680, "Rank": 3, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 680, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" }, { - "Id": 681, "Rank": 4, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 681, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" }, { - "Id": 682, "Rank": 5, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 682, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" }, { - "Id": 683, "Rank": 6, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "CommandName": "Get-PnPSiteScriptFromWeb" + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 683, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" }, { - "Id": 684, "Rank": 1, - "Command": "Get-PnPSiteSearchQueryResults", - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 684, + "Command": "Get-PnPSiteSearchQueryResults" }, { - "Id": 685, "Rank": 2, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 685, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" }, { - "Id": 686, "Rank": 3, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 686, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" }, { - "Id": 687, "Rank": 4, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 687, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" }, { - "Id": 688, "Rank": 5, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 688, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" }, { - "Id": 689, "Rank": 6, - "Command": "Get-PnPSiteSearchQueryResults -All", - "CommandName": "Get-PnPSiteSearchQueryResults" + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 689, + "Command": "Get-PnPSiteSearchQueryResults -All" }, { - "Id": 690, "Rank": 1, - "Command": "Get-PnPSiteSensitivityLabel", - "CommandName": "Get-PnPSiteSensitivityLabel" + "CommandName": "Get-PnPSiteSensitivityLabel", + "Id": 690, + "Command": "Get-PnPSiteSensitivityLabel" }, { - "Id": 691, "Rank": 1, - "Command": "Get-PnPSiteTemplate -Out template.pnp", - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 691, + "Command": "Get-PnPSiteTemplate -Out template.pnp" }, { - "Id": 692, "Rank": 2, - "Command": "Get-PnPSiteTemplate -Out template.xml", - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 692, + "Command": "Get-PnPSiteTemplate -Out template.xml" }, { - "Id": 693, "Rank": 3, - "Command": "Get-PnPSiteTemplate -Out template.md", - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 693, + "Command": "Get-PnPSiteTemplate -Out template.md" }, { - "Id": 694, "Rank": 4, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 694, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" }, { - "Id": 695, "Rank": 5, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 695, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" }, { - "Id": 696, "Rank": 6, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 696, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" }, { - "Id": 697, "Rank": 7, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 697, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" }, { - "Id": 698, "Rank": 8, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 698, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" }, { - "Id": 699, "Rank": 9, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 699, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" }, { - "Id": 700, "Rank": 10, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 700, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" }, { - "Id": 701, "Rank": 11, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 701, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" }, { - "Id": 702, "Rank": 12, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 702, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" }, { - "Id": 703, "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" + "CommandName": "Get-PnPSiteTemplate", + "Id": 703, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" }, { - "Id": 704, "Rank": 14, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate" + "CommandName": "Get-PnPSiteTemplate", + "Id": 704, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" }, { - "Id": 705, "Rank": 1, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Get-PnPSiteUserInvitations" + "CommandName": "Get-PnPSiteUserInvitations", + "Id": 705, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Id": 706, "Rank": 1, - "Command": "Get-PnPSiteVersionPolicy", - "CommandName": "Get-PnPSiteVersionPolicy" + "CommandName": "Get-PnPSiteVersionPolicy", + "Id": 706, + "Command": "Get-PnPSiteVersionPolicy" }, { - "Id": 707, "Rank": 1, - "Command": "Get-PnPStorageEntity", - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Id": 707, + "Command": "Get-PnPStorageEntity" }, { - "Id": 708, "Rank": 2, - "Command": "Get-PnPStorageEntity -Key MyKey", - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Id": 708, + "Command": "Get-PnPStorageEntity -Key MyKey" }, { - "Id": 709, "Rank": 3, - "Command": "Get-PnPStorageEntity -Scope Site", - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Id": 709, + "Command": "Get-PnPStorageEntity -Scope Site" }, { - "Id": 710, "Rank": 4, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Get-PnPStorageEntity" + "CommandName": "Get-PnPStorageEntity", + "Id": 710, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Id": 711, "Rank": 1, - "Command": "Get-PnPStoredCredential -Name O365", - "CommandName": "Get-PnPStoredCredential" + "CommandName": "Get-PnPStoredCredential", + "Id": 711, + "Command": "Get-PnPStoredCredential -Name O365" }, { - "Id": 712, "Rank": 1, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Get-PnPStructuralNavigationCacheSiteState" + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Id": 712, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 713, "Rank": 1, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Get-PnPStructuralNavigationCacheWebState" + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Id": 713, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 714, "Rank": 1, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "CommandName": "Get-PnPSubscribeSharePointNewsDigest" + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Id": 714, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" }, { - "Id": 715, "Rank": 1, - "Command": "Get-PnPSubWeb", - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Id": 715, + "Command": "Get-PnPSubWeb" }, { - "Id": 716, "Rank": 2, - "Command": "Get-PnPSubWeb -Recurse", - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Id": 716, + "Command": "Get-PnPSubWeb -Recurse" }, { - "Id": 717, "Rank": 3, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Id": 717, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" }, { - "Id": 718, "Rank": 4, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Id": 718, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" }, { - "Id": 719, "Rank": 5, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "CommandName": "Get-PnPSubWeb" + "CommandName": "Get-PnPSubWeb", + "Id": 719, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" }, { - "Id": 720, "Rank": 1, - "Command": "Get-PnPSyntexModel", - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Id": 720, + "Command": "Get-PnPSyntexModel" }, { - "Id": 721, "Rank": 2, - "Command": "Get-PnPSyntexModel -Identity 1", - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Id": 721, + "Command": "Get-PnPSyntexModel -Identity 1" }, { - "Id": 722, "Rank": 3, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModel" + "CommandName": "Get-PnPSyntexModel", + "Id": 722, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" }, { - "Id": 723, "Rank": 1, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModelPublication" + "CommandName": "Get-PnPSyntexModelPublication", + "Id": 723, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" }, { - "Id": 724, "Rank": 1, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "CommandName": "Get-PnPTaxonomyItem" + "CommandName": "Get-PnPTaxonomyItem", + "Id": 724, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" }, { - "Id": 725, "Rank": 1, - "Command": "Get-PnPTeamsApp", - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Id": 725, + "Command": "Get-PnPTeamsApp" }, { - "Id": 726, "Rank": 2, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Id": 726, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" }, { - "Id": 727, "Rank": 3, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "CommandName": "Get-PnPTeamsApp" + "CommandName": "Get-PnPTeamsApp", + "Id": 727, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" }, { - "Id": 728, "Rank": 1, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Id": 728, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" }, { - "Id": 729, "Rank": 2, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Id": 729, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" }, { - "Id": 730, "Rank": 3, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannel" + "CommandName": "Get-PnPTeamsChannel", + "Id": 730, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Id": 731, "Rank": 1, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 731, + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" }, { - "Id": 732, "Rank": 2, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 732, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { - "Id": 733, "Rank": 1, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelMessage" + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 733, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" }, { - "Id": 734, "Rank": 2, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "CommandName": "Get-PnPTeamsChannelMessage" + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 734, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" }, { - "Id": 735, "Rank": 1, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "CommandName": "Get-PnPTeamsChannelMessageReply" + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 735, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" }, { - "Id": 736, "Rank": 2, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "CommandName": "Get-PnPTeamsChannelMessageReply" + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 736, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" }, { - "Id": 737, "Rank": 1, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 737, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" }, { - "Id": 738, "Rank": 2, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 738, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" }, { - "Id": 739, "Rank": 3, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 739, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" }, { - "Id": 740, "Rank": 4, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPTeamsChannelUser" + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 740, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 741, "Rank": 1, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "CommandName": "Get-PnPTeamsPrimaryChannel" + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 741, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" }, { - "Id": 742, "Rank": 2, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "CommandName": "Get-PnPTeamsPrimaryChannel" + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 742, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" }, { - "Id": 743, "Rank": 1, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Id": 743, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" }, { - "Id": 744, "Rank": 2, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Id": 744, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" }, { - "Id": 745, "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" + "CommandName": "Get-PnPTeamsTab", + "Id": 745, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" }, { - "Id": 746, "Rank": 4, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Id": 746, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" }, { - "Id": 747, "Rank": 5, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "CommandName": "Get-PnPTeamsTab" + "CommandName": "Get-PnPTeamsTab", + "Id": 747, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" }, { - "Id": 748, "Rank": 1, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Get-PnPTeamsTag" + "CommandName": "Get-PnPTeamsTag", + "Id": 748, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Id": 749, "Rank": 2, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Get-PnPTeamsTag" + "CommandName": "Get-PnPTeamsTag", + "Id": 749, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Id": 750, "Rank": 1, - "Command": "Get-PnPTeamsTeam", - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Id": 750, + "Command": "Get-PnPTeamsTeam" }, { - "Id": 751, "Rank": 2, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Id": 751, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" }, { - "Id": 752, "Rank": 3, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Id": 752, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" }, { - "Id": 753, "Rank": 4, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Id": 753, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" }, { - "Id": 754, "Rank": 5, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam" + "CommandName": "Get-PnPTeamsTeam", + "Id": 754, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" }, { - "Id": 755, "Rank": 1, - "Command": "Get-PnPTeamsUser -Team MyTeam", - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Id": 755, + "Command": "Get-PnPTeamsUser -Team MyTeam" }, { - "Id": 756, "Rank": 2, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Id": 756, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" }, { - "Id": 757, "Rank": 3, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Id": 757, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" }, { - "Id": 758, "Rank": 4, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "CommandName": "Get-PnPTeamsUser" + "CommandName": "Get-PnPTeamsUser", + "Id": 758, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" }, { - "Id": 759, "Rank": 1, - "Command": "Get-PnPTemporarilyDisableAppBar", - "CommandName": "Get-PnPTemporarilyDisableAppBar" + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Id": 759, + "Command": "Get-PnPTemporarilyDisableAppBar" }, { - "Id": 760, "Rank": 1, - "Command": "Get-PnPTenant", - "CommandName": "Get-PnPTenant" + "CommandName": "Get-PnPTenant", + "Id": 760, + "Command": "Get-PnPTenant" }, { - "Id": 761, "Rank": 1, - "Command": "Get-PnPTenantAppCatalogUrl", - "CommandName": "Get-PnPTenantAppCatalogUrl" + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Id": 761, + "Command": "Get-PnPTenantAppCatalogUrl" }, { - "Id": 762, "Rank": 1, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "CommandName": "Get-PnPTenantCdnEnabled" + "CommandName": "Get-PnPTenantCdnEnabled", + "Id": 762, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public" }, { - "Id": 763, "Rank": 1, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "CommandName": "Get-PnPTenantCdnOrigin" + "CommandName": "Get-PnPTenantCdnOrigin", + "Id": 763, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public" }, { - "Id": 764, "Rank": 1, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "CommandName": "Get-PnPTenantCdnPolicies" + "CommandName": "Get-PnPTenantCdnPolicies", + "Id": 764, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public" }, { - "Id": 765, "Rank": 1, - "Command": "Get-PnPTenantDeletedSite", - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 765, + "Command": "Get-PnPTenantDeletedSite" }, { - "Id": 766, "Rank": 2, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 766, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 767, "Rank": 3, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 767, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" }, { - "Id": 768, "Rank": 4, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "CommandName": "Get-PnPTenantDeletedSite" + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 768, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" }, { - "Id": 769, "Rank": 1, - "Command": "Get-PnPTenantId", - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Id": 769, + "Command": "Get-PnPTenantId" }, { - "Id": 770, "Rank": 2, - "Command": "Get-PnPTenantId contoso", - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Id": 770, + "Command": "Get-PnPTenantId contoso" }, { - "Id": 771, "Rank": 3, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Id": 771, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" }, { - "Id": 772, "Rank": 4, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "CommandName": "Get-PnPTenantId" + "CommandName": "Get-PnPTenantId", + "Id": 772, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" }, { - "Id": 773, "Rank": 1, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Id": 773, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" }, { - "Id": 774, "Rank": 2, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Id": 774, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" }, { - "Id": 775, "Rank": 3, - "Command": "Get-PnPTenantInfo", - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Id": 775, + "Command": "Get-PnPTenantInfo" }, { - "Id": 776, "Rank": 4, - "Command": "Get-PnPTenantInfo -CurrentTenant", - "CommandName": "Get-PnPTenantInfo" + "CommandName": "Get-PnPTenantInfo", + "Id": 776, + "Command": "Get-PnPTenantInfo -CurrentTenant" }, { - "Id": 777, "Rank": 1, - "Command": "Get-PnPTenantInstance", - "CommandName": "Get-PnPTenantInstance" + "CommandName": "Get-PnPTenantInstance", + "Id": 777, + "Command": "Get-PnPTenantInstance" }, { - "Id": 778, "Rank": 1, - "Command": "Get-PnPTenantRecycleBinItem", - "CommandName": "Get-PnPTenantRecycleBinItem" + "CommandName": "Get-PnPTenantRecycleBinItem", + "Id": 778, + "Command": "Get-PnPTenantRecycleBinItem" }, { - "Id": 779, "Rank": 1, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "CommandName": "Get-PnPTenantSequence" + "CommandName": "Get-PnPTenantSequence", + "Id": 779, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject" }, { - "Id": 780, "Rank": 2, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "CommandName": "Get-PnPTenantSequence" + "CommandName": "Get-PnPTenantSequence", + "Id": 780, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" }, { - "Id": 781, "Rank": 1, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "CommandName": "Get-PnPTenantSequenceSite" + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 781, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" }, { - "Id": 782, "Rank": 2, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "CommandName": "Get-PnPTenantSequenceSite" + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 782, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" }, { - "Id": 783, "Rank": 1, - "Command": "Get-PnPTenantSite", - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 783, + "Command": "Get-PnPTenantSite" }, { - "Id": 784, "Rank": 2, - "Command": "Get-PnPTenantSite -Detailed", - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 784, + "Command": "Get-PnPTenantSite -Detailed" }, { - "Id": 785, "Rank": 3, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 785, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites" }, { - "Id": 786, "Rank": 4, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 786, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" }, { - "Id": 787, "Rank": 5, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 787, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" }, { - "Id": 788, "Rank": 6, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 788, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" }, { - "Id": 789, "Rank": 7, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 789, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" }, { - "Id": 790, "Rank": 8, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 790, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" }, { - "Id": 791, "Rank": 9, - "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "CommandName": "Get-PnPTenantSite" + "CommandName": "Get-PnPTenantSite", + "Id": 791, + "Command": "Get-PnPTenantSite -GroupIdDefined $true" }, { - "Id": 792, "Rank": 1, - "Command": "Get-PnPTenantSyncClientRestriction", - "CommandName": "Get-PnPTenantSyncClientRestriction" + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Id": 792, + "Command": "Get-PnPTenantSyncClientRestriction" }, { - "Id": 793, "Rank": 1, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Id": 793, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" }, { - "Id": 794, "Rank": 2, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Id": 794, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" }, { - "Id": 795, "Rank": 3, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "CommandName": "Get-PnPTenantTemplate" + "CommandName": "Get-PnPTenantTemplate", + "Id": 795, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" }, { - "Id": 796, "Rank": 1, - "Command": "Get-PnPTenantTheme", - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Id": 796, + "Command": "Get-PnPTenantTheme" }, { - "Id": 797, "Rank": 2, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Id": 797, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Id": 798, "Rank": 3, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "CommandName": "Get-PnPTenantTheme" + "CommandName": "Get-PnPTenantTheme", + "Id": 798, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" }, { - "Id": 799, "Rank": 1, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Id": 799, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 800, "Rank": 2, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Id": 800, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 801, "Rank": 3, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Id": 801, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 802, "Rank": 4, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Id": 802, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" }, { - "Id": 803, "Rank": 5, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "CommandName": "Get-PnPTerm" + "CommandName": "Get-PnPTerm", + "Id": 803, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" }, { - "Id": 804, "Rank": 1, - "Command": "Get-PnPTermGroup", - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Id": 804, + "Command": "Get-PnPTermGroup" }, { - "Id": 805, "Rank": 2, - "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Id": 805, + "Command": "Get-PnPTermGroup -Identity \"Departments\"" }, { - "Id": 806, "Rank": 3, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "CommandName": "Get-PnPTermGroup" + "CommandName": "Get-PnPTermGroup", + "Id": 806, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" }, { - "Id": 807, "Rank": 1, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Id": 807, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" }, { - "Id": 808, "Rank": 2, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Id": 808, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" }, { - "Id": 809, "Rank": 3, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermLabel" + "CommandName": "Get-PnPTermLabel", + "Id": 809, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 810, "Rank": 1, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Id": 810, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" }, { - "Id": 811, "Rank": 2, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Id": 811, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 812, "Rank": 3, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "CommandName": "Get-PnPTermSet" + "CommandName": "Get-PnPTermSet", + "Id": 812, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" }, { - "Id": 813, "Rank": 1, - "Command": "Get-PnPTheme", - "CommandName": "Get-PnPTheme" + "CommandName": "Get-PnPTheme", + "Id": 813, + "Command": "Get-PnPTheme" }, { - "Id": 814, "Rank": 2, - "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "CommandName": "Get-PnPTheme" + "CommandName": "Get-PnPTheme", + "Id": 814, + "Command": "Get-PnPTheme -DetectCurrentComposedLook" }, { - "Id": 815, "Rank": 1, - "Command": "Get-PnPTimeZoneId", - "CommandName": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTimeZoneId", + "Id": 815, + "Command": "Get-PnPTimeZoneId" }, { - "Id": 816, "Rank": 2, - "Command": "Get-PnPTimeZoneId -Match Stockholm", - "CommandName": "Get-PnPTimeZoneId" + "CommandName": "Get-PnPTimeZoneId", + "Id": 816, + "Command": "Get-PnPTimeZoneId -Match Stockholm" }, { - "Id": 817, "Rank": 1, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "CommandName": "Get-PnPUnfurlLink" + "CommandName": "Get-PnPUnfurlLink", + "Id": 817, + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" }, { - "Id": 818, "Rank": 1, - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "CommandName": "Get-PnPUnifiedAuditLog" + "CommandName": "Get-PnPUnifiedAuditLog", + "Id": 818, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" }, { - "Id": 819, "Rank": 1, - "Command": "Get-PnPUPABulkImportStatus", - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 819, + "Command": "Get-PnPUPABulkImportStatus" }, { - "Id": 820, "Rank": 2, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 820, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" }, { - "Id": 821, "Rank": 3, - "Command": "Get-PnPUPABulkImportStatus -JobId ", - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 821, + "Command": "Get-PnPUPABulkImportStatus -JobId " }, { - "Id": 822, "Rank": 4, - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus" + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 822, + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" }, { - "Id": 823, "Rank": 1, - "Command": "Get-PnPUser", - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 823, + "Command": "Get-PnPUser" }, { - "Id": 824, "Rank": 2, - "Command": "Get-PnPUser -Identity 23", - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 824, + "Command": "Get-PnPUser -Identity 23" }, { - "Id": 825, "Rank": 3, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 825, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" }, { - "Id": 826, "Rank": 4, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 826, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" }, { - "Id": 827, "Rank": 5, - "Command": "Get-PnPUser -WithRightsAssigned", - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 827, + "Command": "Get-PnPUser -WithRightsAssigned" }, { - "Id": 828, "Rank": 6, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 828, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" }, { - "Id": 829, "Rank": 7, - "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "CommandName": "Get-PnPUser" + "CommandName": "Get-PnPUser", + "Id": 829, + "Command": "Get-PnPUser -WithRightsAssignedDetailed" }, { - "Id": 830, "Rank": 1, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "CommandName": "Get-PnPUserOneDriveQuota" + "CommandName": "Get-PnPUserOneDriveQuota", + "Id": 830, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" }, { - "Id": 831, "Rank": 1, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Id": 831, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" }, { - "Id": 832, "Rank": 2, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Id": 832, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" }, { - "Id": 833, "Rank": 3, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "CommandName": "Get-PnPUserProfileProperty" + "CommandName": "Get-PnPUserProfileProperty", + "Id": 833, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" }, { - "Id": 834, "Rank": 1, - "Command": "Get-PnPView -List \"Demo List\"", - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Id": 834, + "Command": "Get-PnPView -List \"Demo List\"" }, { - "Id": 835, "Rank": 2, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Id": 835, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" }, { - "Id": 836, "Rank": 3, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "CommandName": "Get-PnPView" + "CommandName": "Get-PnPView", + "Id": 836, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" }, { - "Id": 837, "Rank": 1, - "Command": "Get-PnPVivaConnectionsDashboardACE", - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 837, + "Command": "Get-PnPVivaConnectionsDashboardACE" }, { - "Id": 838, "Rank": 2, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 838, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Id": 839, "Rank": 1, - "Command": "Get-PnPWeb", - "CommandName": "Get-PnPWeb" + "CommandName": "Get-PnPWeb", + "Id": 839, + "Command": "Get-PnPWeb" }, { - "Id": 840, "Rank": 1, - "Command": "Get-PnPWebHeader", - "CommandName": "Get-PnPWebHeader" + "CommandName": "Get-PnPWebHeader", + "Id": 840, + "Command": "Get-PnPWebHeader" }, { - "Id": 841, "Rank": 1, - "Command": "Get-PnPWebhookSubscriptions -List MyList", - "CommandName": "Get-PnPWebhookSubscriptions" + "CommandName": "Get-PnPWebhookSubscriptions", + "Id": 841, + "Command": "Get-PnPWebhookSubscriptions -List MyList" }, { - "Id": 842, "Rank": 1, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "CommandName": "Get-PnPWebPart" + "CommandName": "Get-PnPWebPart", + "Id": 842, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" }, { - "Id": 843, "Rank": 2, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPart" + "CommandName": "Get-PnPWebPart", + "Id": 843, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 844, "Rank": 1, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "CommandName": "Get-PnPWebPartProperty" + "CommandName": "Get-PnPWebPartProperty", + "Id": 844, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" }, { - "Id": 845, "Rank": 2, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "CommandName": "Get-PnPWebPartProperty" + "CommandName": "Get-PnPWebPartProperty", + "Id": 845, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" }, { - "Id": 846, "Rank": 1, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPartXml" + "CommandName": "Get-PnPWebPartXml", + "Id": 846, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 847, "Rank": 1, - "Command": "Get-PnPWebTemplates", - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Id": 847, + "Command": "Get-PnPWebTemplates" }, { - "Id": 848, "Rank": 2, - "Command": "Get-PnPWebTemplates -LCID 1033", - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Id": 848, + "Command": "Get-PnPWebTemplates -LCID 1033" }, { - "Id": 849, "Rank": 3, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "CommandName": "Get-PnPWebTemplates" + "CommandName": "Get-PnPWebTemplates", + "Id": 849, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" }, { - "Id": 850, "Rank": 1, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "CommandName": "Get-PnPWikiPageContent" + "CommandName": "Get-PnPWikiPageContent", + "Id": 850, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" }, { - "Id": 851, "Rank": 1, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "CommandName": "Grant-PnPAzureADAppSitePermission" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 851, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" }, { - "Id": 852, "Rank": 2, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Grant-PnPAzureADAppSitePermission" + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 852, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" }, { - "Id": 853, "Rank": 1, - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Grant-PnPHubSiteRights" + "CommandName": "Grant-PnPHubSiteRights", + "Id": 853, + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 854, "Rank": 1, - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Grant-PnPSiteDesignRights" + "CommandName": "Grant-PnPSiteDesignRights", + "Id": 854, + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 855, "Rank": 1, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Grant-PnPTenantServicePrincipalPermission" + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Id": 855, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Id": 856, "Rank": 1, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Id": 856, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" }, { - "Id": 857, "Rank": 2, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Id": 857, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" }, { - "Id": 858, "Rank": 3, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "CommandName": "Import-PnPTaxonomy" + "CommandName": "Import-PnPTaxonomy", + "Id": 858, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" }, { - "Id": 859, "Rank": 1, - "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "CommandName": "Import-PnPTermGroupFromXml" + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 859, + "Command": "Import-PnPTermGroupFromXml -Xml $xml" }, { - "Id": 860, "Rank": 2, - "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "CommandName": "Import-PnPTermGroupFromXml" + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 860, + "Command": "Import-PnPTermGroupFromXml -Path input.xml" }, { - "Id": 861, "Rank": 1, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "CommandName": "Import-PnPTermSet" + "CommandName": "Import-PnPTermSet", + "Id": 861, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" }, { - "Id": 862, "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" + "CommandName": "Import-PnPTermSet", + "Id": 862, + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" }, { - "Id": 863, "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" + "CommandName": "Import-PnPTermSet", + "Id": 863, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" }, { - "Id": 864, "Rank": 1, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Install-PnPApp" + "CommandName": "Install-PnPApp", + "Id": 864, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 865, "Rank": 2, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Install-PnPApp" + "CommandName": "Install-PnPApp", + "Id": 865, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 866, "Rank": 1, - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 866, + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" }, { - "Id": 867, "Rank": 2, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 867, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" }, { - "Id": 868, "Rank": 3, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 868, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" }, { - "Id": 869, "Rank": 4, - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 869, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" }, { - "Id": 870, "Rank": 5, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "CommandName": "Invoke-PnPGraphMethod" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 870, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" }, { - "Id": 871, "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" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 871, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" }, { - "Id": 872, "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" + "CommandName": "Invoke-PnPGraphMethod", + "Id": 872, + "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": 873, "Rank": 1, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPListDesign" + "CommandName": "Invoke-PnPListDesign", + "Id": 873, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 874, "Rank": 2, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "CommandName": "Invoke-PnPListDesign" + "CommandName": "Invoke-PnPListDesign", + "Id": 874, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Id": 875, "Rank": 1, - "Command": "Invoke-PnPQuery -RetryCount 5", - "CommandName": "Invoke-PnPQuery" + "CommandName": "Invoke-PnPQuery", + "Id": 875, + "Command": "Invoke-PnPQuery -RetryCount 5" }, { - "Id": 876, "Rank": 1, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPSiteDesign" + "CommandName": "Invoke-PnPSiteDesign", + "Id": 876, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 877, "Rank": 2, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "CommandName": "Invoke-PnPSiteDesign" + "CommandName": "Invoke-PnPSiteDesign", + "Id": 877, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { - "Id": 878, "Rank": 1, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "CommandName": "Invoke-PnPSiteScript" + "CommandName": "Invoke-PnPSiteScript", + "Id": 878, + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" }, { - "Id": 879, "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" + "CommandName": "Invoke-PnPSiteSwap", + "Id": 879, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "Id": 880, "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" + "CommandName": "Invoke-PnPSiteSwap", + "Id": 880, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { - "Id": 881, "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" + "CommandName": "Invoke-PnPSiteSwap", + "Id": 881, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection" }, { - "Id": 882, "Rank": 1, - "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 882, + "Command": "Invoke-PnPSiteTemplate -Path template.xml" }, { - "Id": 883, "Rank": 2, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 883, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" }, { - "Id": 884, "Rank": 3, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 884, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Id": 885, "Rank": 4, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 885, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" }, { - "Id": 886, "Rank": 5, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 886, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp" }, { - "Id": 887, "Rank": 6, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 887, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" }, { - "Id": 888, "Rank": 7, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 888, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" }, { - "Id": 889, "Rank": 8, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "CommandName": "Invoke-PnPSiteTemplate" + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 889, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" }, { - "Id": 890, "Rank": 1, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "CommandName": "Invoke-PnPSPRestMethod" + "CommandName": "Invoke-PnPSPRestMethod", + "Id": 890, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web" }, { - "Id": 891, "Rank": 1, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 891, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" }, { - "Id": 892, "Rank": 2, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 892, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" }, { - "Id": 893, "Rank": 3, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPTenantTemplate" + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 893, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { - "Id": 894, "Rank": 1, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction" + "CommandName": "Invoke-PnPWebAction", + "Id": 894, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" }, { - "Id": 895, "Rank": 2, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction" + "CommandName": "Invoke-PnPWebAction", + "Id": 895, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" }, { - "Id": 896, "Rank": 1, - "Command": "Measure-PnPList \"Documents\"", - "CommandName": "Measure-PnPList" + "CommandName": "Measure-PnPList", + "Id": 896, + "Command": "Measure-PnPList \"Documents\"" }, { - "Id": 897, "Rank": 2, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "CommandName": "Measure-PnPList" + "CommandName": "Measure-PnPList", + "Id": 897, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" }, { - "Id": 898, "Rank": 1, - "Command": "Measure-PnPWeb", - "CommandName": "Measure-PnPWeb" + "CommandName": "Measure-PnPWeb", + "Id": 898, + "Command": "Measure-PnPWeb" }, { - "Id": 899, "Rank": 2, - "Command": "Measure-PnPWeb $web -Recursive", - "CommandName": "Measure-PnPWeb" + "CommandName": "Measure-PnPWeb", + "Id": 899, + "Command": "Measure-PnPWeb $web -Recursive" }, { - "Id": 900, "Rank": 1, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Id": 900, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" }, { - "Id": 901, "Rank": 2, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Id": 901, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" }, { - "Id": 902, "Rank": 3, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Id": 902, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Id": 903, "Rank": 4, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "CommandName": "Move-PnPFile" + "CommandName": "Move-PnPFile", + "Id": 903, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { - "Id": 904, "Rank": 1, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "CommandName": "Move-PnPFolder" + "CommandName": "Move-PnPFolder", + "Id": 904, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" }, { - "Id": 905, "Rank": 2, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "CommandName": "Move-PnPFolder" + "CommandName": "Move-PnPFolder", + "Id": 905, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" }, { - "Id": 906, "Rank": 1, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Move-PnPListItemToRecycleBin" + "CommandName": "Move-PnPListItemToRecycleBin", + "Id": 906, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" }, { - "Id": 907, "Rank": 1, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Id": 907, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" }, { - "Id": 908, "Rank": 2, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Id": 908, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" }, { - "Id": 909, "Rank": 3, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Id": 909, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" }, { - "Id": 910, "Rank": 4, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "CommandName": "Move-PnPPageComponent" + "CommandName": "Move-PnPPageComponent", + "Id": 910, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" }, { - "Id": 911, "Rank": 1, - "Command": "Move-PnPRecycleBinItem", - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Id": 911, + "Command": "Move-PnPRecycleBinItem" }, { - "Id": 912, "Rank": 2, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Id": 912, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" }, { - "Id": 913, "Rank": 3, - "Command": "Move-PnPRecycleBinItem -Force", - "CommandName": "Move-PnpRecycleBinItem" + "CommandName": "Move-PnpRecycleBinItem", + "Id": 913, + "Command": "Move-PnPRecycleBinItem -Force" }, { - "Id": 914, "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" + "CommandName": "Move-PnPTerm", + "Id": 914, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" }, { - "Id": 915, "Rank": 2, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "CommandName": "Move-PnPTerm" + "CommandName": "Move-PnPTerm", + "Id": 915, + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" }, { - "Id": 916, "Rank": 3, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "CommandName": "Move-PnPTerm" + "CommandName": "Move-PnPTerm", + "Id": 916, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" }, { - "Id": 917, "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" + "CommandName": "Move-PnPTermSet", + "Id": 917, + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" }, { - "Id": 918, "Rank": 2, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "CommandName": "Move-PnPTermSet" + "CommandName": "Move-PnPTermSet", + "Id": 918, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" }, { - "Id": 919, "Rank": 1, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Id": 919, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Id": 920, "Rank": 2, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Id": 920, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" }, { - "Id": 921, "Rank": 3, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "CommandName": "New-PnPAzureADGroup" + "CommandName": "New-PnPAzureADGroup", + "Id": 921, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" }, { - "Id": 922, "Rank": 1, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 922, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" }, { - "Id": 923, "Rank": 2, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 923, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" }, { - "Id": 924, "Rank": 3, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 924, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" }, { - "Id": 925, "Rank": 1, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Id": 925, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" }, { - "Id": 926, "Rank": 2, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Id": 926, + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" }, { - "Id": 927, "Rank": 3, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "CommandName": "New-PnPAzureCertificate" + "CommandName": "New-PnPAzureCertificate", + "Id": 927, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" }, { - "Id": 928, "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" + "CommandName": "New-PnPGraphSubscription", + "Id": 928, + "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Id": 929, "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" + "CommandName": "New-PnPGraphSubscription", + "Id": 929, + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" }, { - "Id": 930, "Rank": 1, - "Command": "New-PnPGroup -Title \"My Site Users\"", - "CommandName": "New-PnPGroup" + "CommandName": "New-PnPGroup", + "Id": 930, + "Command": "New-PnPGroup -Title \"My Site Users\"" }, { - "Id": 931, "Rank": 1, - "Command": "New-PnPList -Title Announcements -Template Announcements", - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Id": 931, + "Command": "New-PnPList -Title Announcements -Template Announcements" }, { - "Id": 932, "Rank": 2, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Id": 932, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" }, { - "Id": 933, "Rank": 3, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "CommandName": "New-PnPList" + "CommandName": "New-PnPList", + "Id": 933, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" }, { - "Id": 934, "Rank": 1, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 934, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" }, { - "Id": 935, "Rank": 2, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 935, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" }, { - "Id": 936, "Rank": 3, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 936, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" }, { - "Id": 937, "Rank": 4, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 937, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" }, { - "Id": 938, "Rank": 5, - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 938, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Id": 939, "Rank": 6, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 939, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Id": 940, "Rank": 7, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", - "CommandName": "New-PnPMicrosoft365Group" + "CommandName": "New-PnPMicrosoft365Group", + "Id": 940, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" }, { - "Id": 941, "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" + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Id": 941, + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" }, { - "Id": 942, "Rank": 2, - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "CommandName": "New-PnPMicrosoft365GroupSettings" + "CommandName": "New-PnPMicrosoft365GroupSettings", + "Id": 942, + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" }, { - "Id": 943, "Rank": 1, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "CommandName": "New-PnPPersonalSite" + "CommandName": "New-PnPPersonalSite", + "Id": 943, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" }, { - "Id": 944, "Rank": 1, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "CommandName": "New-PnPPlannerPlan" + "CommandName": "New-PnPPlannerPlan", + "Id": 944, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" }, { - "Id": 945, "Rank": 1, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "CommandName": "New-PnPSdnProvider" + "CommandName": "New-PnPSdnProvider", + "Id": 945, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" }, { - "Id": 946, "Rank": 1, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 946, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Id": 947, "Rank": 2, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 947, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" }, { - "Id": 948, "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" + "CommandName": "New-PnPSite", + "Id": 948, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Id": 949, "Rank": 4, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 949, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Id": 950, "Rank": 5, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 950, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Id": 951, "Rank": 6, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 951, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Id": 952, "Rank": 7, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 952, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" }, { - "Id": 953, "Rank": 8, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 953, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" }, { - "Id": 954, "Rank": 9, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 954, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" }, { - "Id": 955, "Rank": 10, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 955, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" }, { - "Id": 956, "Rank": 11, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 956, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { - "Id": 957, "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" + "CommandName": "New-PnPSite", + "Id": 957, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { - "Id": 958, "Rank": 13, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 958, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { - "Id": 959, "Rank": 14, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 959, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { - "Id": 960, "Rank": 15, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 960, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { - "Id": 961, "Rank": 16, - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "CommandName": "New-PnPSite" + "CommandName": "New-PnPSite", + "Id": 961, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" }, { - "Id": 962, "Rank": 1, - "Command": "New-PnPSiteCollectionTermStore", - "CommandName": "New-PnPSiteCollectionTermStore" + "CommandName": "New-PnPSiteCollectionTermStore", + "Id": 962, + "Command": "New-PnPSiteCollectionTermStore" }, { - "Id": 963, "Rank": 1, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "CommandName": "New-PnPSiteGroup" + "CommandName": "New-PnPSiteGroup", + "Id": 963, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" }, { - "Id": 964, "Rank": 2, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "CommandName": "New-PnPSiteGroup" + "CommandName": "New-PnPSiteGroup", + "Id": 964, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" }, { - "Id": 965, "Rank": 1, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 965, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" }, { - "Id": 966, "Rank": 2, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 966, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" }, { - "Id": 967, "Rank": 3, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 967, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" }, { - "Id": 968, "Rank": 4, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 968, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" }, { - "Id": 969, "Rank": 5, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 969, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" }, { - "Id": 970, "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" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 970, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 971, "Rank": 7, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 971, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" }, { - "Id": 972, "Rank": 8, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder" + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 972, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" }, { - "Id": 973, "Rank": 1, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "CommandName": "New-PnPTeamsApp" + "CommandName": "New-PnPTeamsApp", + "Id": 973, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" }, { - "Id": 974, "Rank": 1, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Id": 974, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" }, { - "Id": 975, "Rank": 2, - "Command": "New-PnPTeamsTeam -GroupId $groupId", - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Id": 975, + "Command": "New-PnPTeamsTeam -GroupId $groupId" }, { - "Id": 976, "Rank": 3, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Id": 976, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" }, { - "Id": 977, "Rank": 4, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "CommandName": "New-PnPTeamsTeam" + "CommandName": "New-PnPTeamsTeam", + "Id": 977, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { - "Id": 978, "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" + "CommandName": "New-PnPTeamsTeam", + "Id": 978, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" }, { - "Id": 979, "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" + "CommandName": "New-PnPTeamsTeam", + "Id": 979, + "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": 980, "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" + "CommandName": "New-PnPTenantSite", + "Id": 980, + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Id": 981, "Rank": 2, - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "CommandName": "New-PnPTenantSite" + "CommandName": "New-PnPTenantSite", + "Id": 981, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" }, { - "Id": 982, "Rank": 1, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "CommandName": "New-PnPTerm" + "CommandName": "New-PnPTerm", + "Id": 982, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" }, { - "Id": 983, "Rank": 2, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "New-PnPTerm" + "CommandName": "New-PnPTerm", + "Id": 983, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 984, "Rank": 1, - "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "CommandName": "New-PnPTermGroup" + "CommandName": "New-PnPTermGroup", + "Id": 984, + "Command": "New-PnPTermGroup -GroupName \"Countries\"" }, { - "Id": 985, "Rank": 1, - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "CommandName": "New-PnPTermLabel" + "CommandName": "New-PnPTermLabel", + "Id": 985, + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" }, { - "Id": 986, "Rank": 1, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "CommandName": "New-PnPTermSet" + "CommandName": "New-PnPTermSet", + "Id": 986, + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" }, { - "Id": 987, "Rank": 1, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "CommandName": "New-PnPUPABulkImportJob" + "CommandName": "New-PnPUPABulkImportJob", + "Id": 987, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" }, { - "Id": 988, "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" + "CommandName": "New-PnPUPABulkImportJob", + "Id": 988, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" }, { - "Id": 989, "Rank": 1, - "Command": "New-PnPUser -LoginName user@company.com", - "CommandName": "New-PnPUser" + "CommandName": "New-PnPUser", + "Id": 989, + "Command": "New-PnPUser -LoginName user@company.com" }, { - "Id": 990, "Rank": 1, - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "CommandName": "New-PnPWeb" + "CommandName": "New-PnPWeb", + "Id": 990, + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" }, { - "Id": 991, "Rank": 1, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Publish-PnPApp" + "CommandName": "Publish-PnPApp", + "Id": 991, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { - "Id": 992, "Rank": 2, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "CommandName": "Publish-PnPApp" + "CommandName": "Publish-PnPApp", + "Id": 992, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" }, { - "Id": 993, "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" + "CommandName": "Publish-PnPCompanyApp", + "Id": 993, + "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": 994, "Rank": 1, - "Command": "Publish-PnPContentType -ContentType 0x0101", - "CommandName": "Publish-PnPContentType" + "CommandName": "Publish-PnPContentType", + "Id": 994, + "Command": "Publish-PnPContentType -ContentType 0x0101" }, { - "Id": 995, "Rank": 1, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Publish-PnPSyntexModel" + "CommandName": "Publish-PnPSyntexModel", + "Id": 995, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Id": 996, "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" + "CommandName": "Publish-PnPSyntexModel", + "Id": 996, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Id": 997, "Rank": 1, - "Command": "Read-PnPSiteTemplate -Path template.pnp", - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Id": 997, + "Command": "Read-PnPSiteTemplate -Path template.pnp" }, { - "Id": 998, "Rank": 2, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Id": 998, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" }, { - "Id": 999, "Rank": 3, - "Command": "Read-PnPSiteTemplate -Xml $xml", - "CommandName": "Read-PnPSiteTemplate" + "CommandName": "Read-PnPSiteTemplate", + "Id": 999, + "Command": "Read-PnPSiteTemplate -Xml $xml" }, { - "Id": 1000, "Rank": 1, - "Command": "Read-PnPTenantTemplate -Path template.pnp", - "CommandName": "Read-PnPTenantTemplate" + "CommandName": "Read-PnPTenantTemplate", + "Id": 1000, + "Command": "Read-PnPTenantTemplate -Path template.pnp" }, { - "Id": 1001, "Rank": 1, - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "CommandName": "Register-PnPAppCatalogSite" + "CommandName": "Register-PnPAppCatalogSite", + "Id": 1001, + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" }, { - "Id": 1002, "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" + "CommandName": "Register-PnPAzureADApp", + "Id": 1002, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" }, { - "Id": 1003, "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" + "CommandName": "Register-PnPAzureADApp", + "Id": 1003, + "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": 1004, "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" + "CommandName": "Register-PnPAzureADApp", + "Id": 1004, + "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": 1005, "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" + "CommandName": "Register-PnPAzureADApp", + "Id": 1005, + "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": 1006, "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" + "CommandName": "Register-PnPAzureADApp", + "Id": 1006, + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Id": 1007, "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" + "CommandName": "Register-PnPAzureADApp", + "Id": 1007, + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { - "Id": 1008, "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" + "CommandName": "Register-PnPAzureADApp", + "Id": 1008, + "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": 1009, "Rank": 1, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Register-PnPHubSite" + "CommandName": "Register-PnPHubSite", + "Id": 1009, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Id": 1010, "Rank": 2, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "CommandName": "Register-PnPHubSite" + "CommandName": "Register-PnPHubSite", + "Id": 1010, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" }, { - "Id": 1011, "Rank": 1, - "Command": "Register-PnPManagementShellAccess", - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1011, + "Command": "Register-PnPManagementShellAccess" }, { - "Id": 1012, "Rank": 2, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1012, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" }, { - "Id": 1013, "Rank": 3, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "CommandName": "Register-PnPManagementShellAccess" + "CommandName": "Register-PnPManagementShellAccess", + "Id": 1013, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" }, { - "Id": 1014, "Rank": 1, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1014, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" }, { - "Id": 1015, "Rank": 2, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 1015, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" }, { - "Id": 1016, "Rank": 1, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "CommandName": "Remove-PnPAlert" + "CommandName": "Remove-PnPAlert", + "Id": 1016, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" }, { - "Id": 1017, "Rank": 2, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAlert" + "CommandName": "Remove-PnPAlert", + "Id": 1017, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { - "Id": 1018, "Rank": 1, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Remove-PnPApp" + "CommandName": "Remove-PnPApp", + "Id": 1018, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1019, "Rank": 2, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Remove-PnPApp" + "CommandName": "Remove-PnPApp", + "Id": 1019, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1020, "Rank": 1, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPApplicationCustomizer" + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1020, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1021, "Rank": 2, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPApplicationCustomizer" + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 1021, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Id": 1022, "Rank": 1, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "CommandName": "Remove-PnPAvailableSiteClassification" + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1022, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" }, { - "Id": 1023, "Rank": 2, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Remove-PnPAvailableSiteClassification" + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 1023, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Id": 1024, "Rank": 1, - "Command": "Remove-PnPAzureADApp -Identity MyApp", - "CommandName": "Remove-PnPAzureADApp" + "CommandName": "Remove-PnPAzureADApp", + "Id": 1024, + "Command": "Remove-PnPAzureADApp -Identity MyApp" }, { - "Id": 1025, "Rank": 2, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Remove-PnPAzureADApp" + "CommandName": "Remove-PnPAzureADApp", + "Id": 1025, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { - "Id": 1026, "Rank": 1, - "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "CommandName": "Remove-PnPAzureADGroup" + "CommandName": "Remove-PnPAzureADGroup", + "Id": 1026, + "Command": "Remove-PnPAzureADGroup -Identity $groupId" }, { - "Id": 1027, "Rank": 2, - "Command": "Remove-PnPAzureADGroup -Identity $group", - "CommandName": "Remove-PnPAzureADGroup" + "CommandName": "Remove-PnPAzureADGroup", + "Id": 1027, + "Command": "Remove-PnPAzureADGroup -Identity $group" }, { - "Id": 1028, "Rank": 1, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupMember" + "CommandName": "Remove-PnPAzureADGroupMember", + "Id": 1028, + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1029, "Rank": 1, - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupOwner" + "CommandName": "Remove-PnPAzureADGroupOwner", + "Id": 1029, + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1030, "Rank": 1, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1030, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" }, { - "Id": 1031, "Rank": 2, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1031, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" }, { - "Id": 1032, "Rank": 3, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1032, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { - "Id": 1033, "Rank": 4, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1033, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { - "Id": 1034, "Rank": 1, - "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "CommandName": "Remove-PnPContentType" + "CommandName": "Remove-PnPContentType", + "Id": 1034, + "Command": "Remove-PnPContentType -Identity \"Project Document\"" }, { - "Id": 1035, "Rank": 2, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "CommandName": "Remove-PnPContentType" + "CommandName": "Remove-PnPContentType", + "Id": 1035, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" }, { - "Id": 1036, "Rank": 1, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1036, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { - "Id": 1037, "Rank": 2, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1037, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { - "Id": 1038, "Rank": 1, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPContentTypeFromList" + "CommandName": "Remove-PnPContentTypeFromList", + "Id": 1038, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" }, { - "Id": 1039, "Rank": 1, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Id": 1039, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1040, "Rank": 2, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Id": 1040, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { - "Id": 1041, "Rank": 3, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "CommandName": "Remove-PnPCustomAction" + "CommandName": "Remove-PnPCustomAction", + "Id": 1041, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" }, { - "Id": 1042, "Rank": 1, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Remove-PnPDeletedMicrosoft365Group" + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Id": 1042, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 1043, "Rank": 1, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1043, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 1044, "Rank": 2, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1044, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { - "Id": 1045, "Rank": 3, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1045, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" }, { - "Id": 1046, "Rank": 4, - "Command": "Remove-PnPEventReceiver -List ProjectList", - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1046, + "Command": "Remove-PnPEventReceiver -List ProjectList" }, { - "Id": 1047, "Rank": 5, - "Command": "Remove-PnPEventReceiver", - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1047, + "Command": "Remove-PnPEventReceiver" }, { - "Id": 1048, "Rank": 6, - "Command": "Remove-PnPEventReceiver -Scope Site", - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1048, + "Command": "Remove-PnPEventReceiver -Scope Site" }, { - "Id": 1049, "Rank": 7, - "Command": "Remove-PnPEventReceiver -Scope Web", - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1049, + "Command": "Remove-PnPEventReceiver -Scope Web" }, { - "Id": 1050, "Rank": 8, - "Command": "Remove-PnPEventReceiver -Scope All", - "CommandName": "Remove-PnPEventReceiver" + "CommandName": "Remove-PnPEventReceiver", + "Id": 1050, + "Command": "Remove-PnPEventReceiver -Scope All" }, { - "Id": 1051, "Rank": 1, - "Command": "Remove-PnPField -Identity \"Speakers\"", - "CommandName": "Remove-PnPField" + "CommandName": "Remove-PnPField", + "Id": 1051, + "Command": "Remove-PnPField -Identity \"Speakers\"" }, { - "Id": 1052, "Rank": 2, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Remove-PnPField" + "CommandName": "Remove-PnPField", + "Id": 1052, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { - "Id": 1053, "Rank": 1, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPFieldFromContentType" + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1053, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { - "Id": 1054, "Rank": 2, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "CommandName": "Remove-PnPFieldFromContentType" + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1054, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" }, { - "Id": 1055, "Rank": 1, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Id": 1055, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" }, { - "Id": 1056, "Rank": 2, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Id": 1056, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" }, { - "Id": 1057, "Rank": 3, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "CommandName": "Remove-PnPFile" + "CommandName": "Remove-PnPFile", + "Id": 1057, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" }, { - "Id": 1058, "Rank": 1, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "CommandName": "Remove-PnPFileFromSiteTemplate" + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Id": 1058, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" }, { - "Id": 1059, "Rank": 1, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Remove-PnPFileSharingLink" + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1059, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { - "Id": 1060, "Rank": 2, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "CommandName": "Remove-PnPFileSharingLink" + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1060, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" }, { - "Id": 1061, "Rank": 1, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Id": 1061, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Id": 1062, "Rank": 2, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Id": 1062, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Id": 1063, "Rank": 3, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "CommandName": "Remove-PnPFileVersion" + "CommandName": "Remove-PnPFileVersion", + "Id": 1063, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" }, { - "Id": 1064, "Rank": 1, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Id": 1064, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" }, { - "Id": 1065, "Rank": 2, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Id": 1065, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" }, { - "Id": 1066, "Rank": 3, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Id": 1066, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" }, { - "Id": 1067, "Rank": 4, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", - "CommandName": "Remove-PnPFlowOwner" + "CommandName": "Remove-PnPFlowOwner", + "Id": 1067, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" }, { - "Id": 1068, "Rank": 1, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Remove-PnPFolder" + "CommandName": "Remove-PnPFolder", + "Id": 1068, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { - "Id": 1069, "Rank": 2, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "CommandName": "Remove-PnPFolder" + "CommandName": "Remove-PnPFolder", + "Id": 1069, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" }, { - "Id": 1070, "Rank": 1, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Remove-PnPFolderSharingLink" + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1070, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { - "Id": 1071, "Rank": 2, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "CommandName": "Remove-PnPFolderSharingLink" + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1071, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" }, { - "Id": 1072, "Rank": 1, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "CommandName": "Remove-PnPGraphSubscription" + "CommandName": "Remove-PnPGraphSubscription", + "Id": 1072, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" }, { - "Id": 1073, "Rank": 1, - "Command": "Remove-PnPGroup -Identity \"My Users\"", - "CommandName": "Remove-PnPGroup" + "CommandName": "Remove-PnPGroup", + "Id": 1073, + "Command": "Remove-PnPGroup -Identity \"My Users\"" }, { - "Id": 1074, "Rank": 1, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Remove-PnPGroupMember" + "CommandName": "Remove-PnPGroupMember", + "Id": 1074, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { - "Id": 1075, "Rank": 1, - "Command": "Remove-PnPHomeSite", - "CommandName": "Remove-PnPHomeSite" + "CommandName": "Remove-PnPHomeSite", + "Id": 1075, + "Command": "Remove-PnPHomeSite" }, { - "Id": 1076, "Rank": 1, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPHubSiteAssociation" + "CommandName": "Remove-PnPHubSiteAssociation", + "Id": 1076, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Id": 1077, "Rank": 1, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "CommandName": "Remove-PnPHubToHubAssociation" + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1077, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" }, { - "Id": 1078, "Rank": 2, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "CommandName": "Remove-PnPHubToHubAssociation" + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1078, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" }, { - "Id": 1079, "Rank": 1, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "CommandName": "Remove-PnPIndexedProperty" + "CommandName": "Remove-PnPIndexedProperty", + "Id": 1079, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" }, { - "Id": 1080, "Rank": 1, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1080, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery" }, { - "Id": 1081, "Rank": 2, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1081, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" }, { - "Id": 1082, "Rank": 3, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1082, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" }, { - "Id": 1083, "Rank": 4, - "Command": "Remove-PnPJavaScriptLink -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1083, + "Command": "Remove-PnPJavaScriptLink -Scope Site" }, { - "Id": 1084, "Rank": 5, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "CommandName": "Remove-PnPJavaScriptLink" + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1084, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" }, { - "Id": 1085, "Rank": 1, - "Command": "Remove-PnPKnowledgeHubSite", - "CommandName": "Remove-PnPKnowledgeHubSite" + "CommandName": "Remove-PnPKnowledgeHubSite", + "Id": 1085, + "Command": "Remove-PnPKnowledgeHubSite" }, { - "Id": 1086, "Rank": 1, - "Command": "Remove-PnPList -Identity Announcements", - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Id": 1086, + "Command": "Remove-PnPList -Identity Announcements" }, { - "Id": 1087, "Rank": 2, - "Command": "Remove-PnPList -Identity Announcements -Force", - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Id": 1087, + "Command": "Remove-PnPList -Identity Announcements -Force" }, { - "Id": 1088, "Rank": 3, - "Command": "Remove-PnPList -Identity Announcements -Recycle", - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Id": 1088, + "Command": "Remove-PnPList -Identity Announcements -Recycle" }, { - "Id": 1089, "Rank": 4, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "CommandName": "Remove-PnPList" + "CommandName": "Remove-PnPList", + "Id": 1089, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" }, { - "Id": 1090, "Rank": 1, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPListDesign" + "CommandName": "Remove-PnPListDesign", + "Id": 1090, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1091, "Rank": 1, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Id": 1091, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" }, { - "Id": 1092, "Rank": 2, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Id": 1092, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" }, { - "Id": 1093, "Rank": 3, - "Command": "Remove-PnPListItem -List \"Demo List\"", - "CommandName": "Remove-PnPListItem" + "CommandName": "Remove-PnPListItem", + "Id": 1093, + "Command": "Remove-PnPListItem -List \"Demo List\"" }, { - "Id": 1094, "Rank": 1, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1094, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" }, { - "Id": 1095, "Rank": 2, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1095, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" }, { - "Id": 1096, "Rank": 3, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1096, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" }, { - "Id": 1097, "Rank": 4, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1097, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" }, { - "Id": 1098, "Rank": 5, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "CommandName": "Remove-PnPListItemAttachment" + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1098, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" }, { - "Id": 1099, "Rank": 1, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Remove-PnPListItemVersion" + "CommandName": "Remove-PnPListItemVersion", + "Id": 1099, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Id": 1100, "Rank": 2, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Remove-PnPListItemVersion" + "CommandName": "Remove-PnPListItemVersion", + "Id": 1100, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Id": 1101, "Rank": 1, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Remove-PnPMicrosoft365Group" + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1101, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" }, { - "Id": 1102, "Rank": 2, - "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "CommandName": "Remove-PnPMicrosoft365Group" + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1102, + "Command": "Remove-PnPMicrosoft365Group -Identity $group" }, { - "Id": 1103, "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupMember" + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Id": 1103, + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1104, "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupOwner" + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Id": 1104, + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { - "Id": 1105, "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1105, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" }, { - "Id": 1106, "Rank": 2, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1106, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" }, { - "Id": 1107, "Rank": 1, - "Command": "Remove-PnPNavigationNode -Identity 1032", - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Id": 1107, + "Command": "Remove-PnPNavigationNode -Identity 1032" }, { - "Id": 1108, "Rank": 2, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Id": 1108, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" }, { - "Id": 1109, "Rank": 3, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "CommandName": "Remove-PnPNavigationNode" + "CommandName": "Remove-PnPNavigationNode", + "Id": 1109, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" }, { - "Id": 1110, "Rank": 1, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1110, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" }, { - "Id": 1111, "Rank": 2, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1111, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" }, { - "Id": 1112, "Rank": 3, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "CommandName": "Remove-PnPOrgAssetsLibrary" + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1112, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" }, { - "Id": 1113, "Rank": 1, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPOrgNewsSite" + "CommandName": "Remove-PnPOrgNewsSite", + "Id": 1113, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" }, { - "Id": 1114, "Rank": 1, - "Command": "Remove-PnPPage -Identity \"MyPage\"", - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Id": 1114, + "Command": "Remove-PnPPage -Identity \"MyPage\"" }, { - "Id": 1115, "Rank": 2, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Id": 1115, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" }, { - "Id": 1116, "Rank": 3, - "Command": "Remove-PnPPage $page", - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Id": 1116, + "Command": "Remove-PnPPage $page" }, { - "Id": 1117, "Rank": 4, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "CommandName": "Remove-PnPPage" + "CommandName": "Remove-PnPPage", + "Id": 1117, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" }, { - "Id": 1118, "Rank": 1, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPPageComponent" + "CommandName": "Remove-PnPPageComponent", + "Id": 1118, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 1119, "Rank": 1, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "CommandName": "Remove-PnPPlannerBucket" + "CommandName": "Remove-PnPPlannerBucket", + "Id": 1119, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" }, { - "Id": 1120, "Rank": 1, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "CommandName": "Remove-PnPPlannerPlan" + "CommandName": "Remove-PnPPlannerPlan", + "Id": 1120, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" }, { - "Id": 1121, "Rank": 1, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Remove-PnPPlannerRoster" + "CommandName": "Remove-PnPPlannerRoster", + "Id": 1121, + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { - "Id": 1122, "Rank": 1, - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPPlannerRosterMember" + "CommandName": "Remove-PnPPlannerRosterMember", + "Id": 1122, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 1123, "Rank": 1, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "CommandName": "Remove-PnPPlannerTask" + "CommandName": "Remove-PnPPlannerTask", + "Id": 1123, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" }, { - "Id": 1124, "Rank": 1, - "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1124, + "Command": "Remove-PnPPropertyBagValue -Key MyKey" }, { - "Id": 1125, "Rank": 2, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1125, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" }, { - "Id": 1126, "Rank": 3, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "CommandName": "Remove-PnPPropertyBagValue" + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1126, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" }, { - "Id": 1127, "Rank": 1, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Remove-PnPPublishingImageRendition" + "CommandName": "Remove-PnPPublishingImageRendition", + "Id": 1127, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { - "Id": 1128, "Rank": 1, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "CommandName": "Remove-PnPRoleDefinition" + "CommandName": "Remove-PnPRoleDefinition", + "Id": 1128, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" }, { - "Id": 1129, "Rank": 1, - "Command": "Remove-PnPSdnProvider -Confirm:false", - "CommandName": "Remove-PnPSdnProvider" + "CommandName": "Remove-PnPSdnProvider", + "Id": 1129, + "Command": "Remove-PnPSdnProvider -Confirm:false" }, { - "Id": 1130, "Rank": 1, - "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1130, + "Command": "Remove-PnPSearchConfiguration -Configuration $config" }, { - "Id": 1131, "Rank": 2, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1131, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Id": 1132, "Rank": 3, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1132, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Id": 1133, "Rank": 4, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration" + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1133, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 1134, "Rank": 1, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPSiteCollectionAdmin" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1134, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Id": 1135, "Rank": 2, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Remove-PnPSiteCollectionAdmin" + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1135, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Id": 1136, "Rank": 1, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Remove-PnPSiteCollectionAppCatalog" + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Id": 1136, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { - "Id": 1137, "Rank": 1, - "Command": "Remove-PnPSiteCollectionTermStore", - "CommandName": "Remove-PnPSiteCollectionTermStore" + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Id": 1137, + "Command": "Remove-PnPSiteCollectionTermStore" }, { - "Id": 1138, "Rank": 1, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesign" + "CommandName": "Remove-PnPSiteDesign", + "Id": 1138, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1139, "Rank": 1, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesignTask" + "CommandName": "Remove-PnPSiteDesignTask", + "Id": 1139, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1140, "Rank": 1, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Remove-PnPSiteGroup" + "CommandName": "Remove-PnPSiteGroup", + "Id": 1140, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1141, "Rank": 2, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "CommandName": "Remove-PnPSiteGroup" + "CommandName": "Remove-PnPSiteGroup", + "Id": 1141, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" }, { - "Id": 1142, "Rank": 1, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteScript" + "CommandName": "Remove-PnPSiteScript", + "Id": 1142, + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { - "Id": 1143, "Rank": 1, - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Remove-PnPSiteUserInvitations" + "CommandName": "Remove-PnPSiteUserInvitations", + "Id": 1143, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { - "Id": 1144, "Rank": 1, - "Command": "Remove-PnPStorageEntity -Key MyKey", - "CommandName": "Remove-PnPStorageEntity" + "CommandName": "Remove-PnPStorageEntity", + "Id": 1144, + "Command": "Remove-PnPStorageEntity -Key MyKey" }, { - "Id": 1145, "Rank": 2, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Remove-PnPStorageEntity" + "CommandName": "Remove-PnPStorageEntity", + "Id": 1145, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" }, { - "Id": 1146, "Rank": 1, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "CommandName": "Remove-PnPStoredCredential" + "CommandName": "Remove-PnPStoredCredential", + "Id": 1146, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" }, { - "Id": 1147, "Rank": 1, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "CommandName": "Remove-PnPTaxonomyItem" + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1147, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" }, { - "Id": 1148, "Rank": 2, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "CommandName": "Remove-PnPTaxonomyItem" + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1148, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" }, { - "Id": 1149, "Rank": 1, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "CommandName": "Remove-PnPTeamsApp" + "CommandName": "Remove-PnPTeamsApp", + "Id": 1149, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" }, { - "Id": 1150, "Rank": 2, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "CommandName": "Remove-PnPTeamsApp" + "CommandName": "Remove-PnPTeamsApp", + "Id": 1150, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" }, { - "Id": 1151, "Rank": 1, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "CommandName": "Remove-PnPTeamsChannel" + "CommandName": "Remove-PnPTeamsChannel", + "Id": 1151, + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" }, { - "Id": 1152, "Rank": 1, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1152, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" }, { - "Id": 1153, "Rank": 2, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1153, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { - "Id": 1154, "Rank": 3, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "CommandName": "Remove-PnPTeamsChannelUser" + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1154, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" }, { - "Id": 1155, "Rank": 1, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsTab", + "Id": 1155, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" }, { - "Id": 1156, "Rank": 2, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "CommandName": "Remove-PnPTeamsTab" + "CommandName": "Remove-PnPTeamsTab", + "Id": 1156, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" }, { - "Id": 1157, "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" + "CommandName": "Remove-PnPTeamsTab", + "Id": 1157, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" }, { - "Id": 1158, "Rank": 1, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Remove-PnPTeamsTag" + "CommandName": "Remove-PnPTeamsTag", + "Id": 1158, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { - "Id": 1159, "Rank": 1, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Remove-PnPTeamsTeam" + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1159, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { - "Id": 1160, "Rank": 2, - "Command": "Remove-PnPTeamsTeam -Identity testteam", - "CommandName": "Remove-PnPTeamsTeam" + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1160, + "Command": "Remove-PnPTeamsTeam -Identity testteam" }, { - "Id": 1161, "Rank": 1, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "CommandName": "Remove-PnPTeamsUser" + "CommandName": "Remove-PnPTeamsUser", + "Id": 1161, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" }, { - "Id": 1162, "Rank": 2, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Remove-PnPTeamsUser" + "CommandName": "Remove-PnPTeamsUser", + "Id": 1162, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Id": 1163, "Rank": 1, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Remove-PnPTenantCdnOrigin" + "CommandName": "Remove-PnPTenantCdnOrigin", + "Id": 1163, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { - "Id": 1164, "Rank": 1, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantDeletedSite" + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1164, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1165, "Rank": 2, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Remove-PnPTenantDeletedSite" + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1165, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Id": 1166, "Rank": 1, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Id": 1166, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1167, "Rank": 2, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Id": 1167, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" }, { - "Id": 1168, "Rank": 3, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "CommandName": "Remove-PnPTenantSite" + "CommandName": "Remove-PnPTenantSite", + "Id": 1168, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" }, { - "Id": 1169, "Rank": 1, - "Command": "Remove-PnPTenantSyncClientRestriction", - "CommandName": "Remove-PnPTenantSyncClientRestriction" + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Id": 1169, + "Command": "Remove-PnPTenantSyncClientRestriction" }, { - "Id": 1170, "Rank": 1, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Remove-PnPTenantTheme" + "CommandName": "Remove-PnPTenantTheme", + "Id": 1170, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { - "Id": 1171, "Rank": 1, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTerm" + "CommandName": "Remove-PnPTerm", + "Id": 1171, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Id": 1172, "Rank": 2, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTerm" + "CommandName": "Remove-PnPTerm", + "Id": 1172, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 1173, "Rank": 1, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Id": 1173, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { - "Id": 1174, "Rank": 2, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Id": 1174, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" }, { - "Id": 1175, "Rank": 3, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "CommandName": "Remove-PnPTermGroup" + "CommandName": "Remove-PnPTermGroup", + "Id": 1175, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" }, { - "Id": 1176, "Rank": 1, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "CommandName": "Remove-PnPTermLabel" + "CommandName": "Remove-PnPTermLabel", + "Id": 1176, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" }, { - "Id": 1177, "Rank": 2, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTermLabel" + "CommandName": "Remove-PnPTermLabel", + "Id": 1177, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { - "Id": 1178, "Rank": 1, - "Command": "Remove-PnPUser -Identity 23", - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Id": 1178, + "Command": "Remove-PnPUser -Identity 23" }, { - "Id": 1179, "Rank": 2, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Id": 1179, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" }, { - "Id": 1180, "Rank": 3, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "CommandName": "Remove-PnPUser" + "CommandName": "Remove-PnPUser", + "Id": 1180, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" }, { - "Id": 1181, "Rank": 1, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Remove-PnPUserInfo" + "CommandName": "Remove-PnPUserInfo", + "Id": 1181, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { - "Id": 1182, "Rank": 1, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Remove-PnPUserProfile" + "CommandName": "Remove-PnPUserProfile", + "Id": 1182, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com" }, { - "Id": 1183, "Rank": 1, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "CommandName": "Remove-PnPView" + "CommandName": "Remove-PnPView", + "Id": 1183, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" }, { - "Id": 1184, "Rank": 1, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Remove-PnPVivaConnectionsDashboardACE" + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Id": 1184, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { - "Id": 1185, "Rank": 1, - "Command": "Remove-PnPWeb -Identity projectA", - "CommandName": "Remove-PnPWeb" + "CommandName": "Remove-PnPWeb", + "Id": 1185, + "Command": "Remove-PnPWeb -Identity projectA" }, { - "Id": 1186, "Rank": 2, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "CommandName": "Remove-PnPWeb" + "CommandName": "Remove-PnPWeb", + "Id": 1186, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" }, { - "Id": 1187, "Rank": 1, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "CommandName": "Remove-PnPWebhookSubscription" + "CommandName": "Remove-PnPWebhookSubscription", + "Id": 1187, + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" }, { - "Id": 1188, "Rank": 1, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPWebPart" + "CommandName": "Remove-PnPWebPart", + "Id": 1188, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { - "Id": 1189, "Rank": 2, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "CommandName": "Remove-PnPWebPart" + "CommandName": "Remove-PnPWebPart", + "Id": 1189, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" }, { - "Id": 1190, "Rank": 1, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "CommandName": "Remove-PnPWikiPage" + "CommandName": "Remove-PnPWikiPage", + "Id": 1190, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" }, { - "Id": 1191, "Rank": 1, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Id": 1191, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" }, { - "Id": 1192, "Rank": 2, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Id": 1192, + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" }, { - "Id": 1193, "Rank": 3, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "CommandName": "Rename-PnPFile" + "CommandName": "Rename-PnPFile", + "Id": 1193, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" }, { - "Id": 1194, "Rank": 1, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "CommandName": "Rename-PnPFolder" + "CommandName": "Rename-PnPFolder", + "Id": 1194, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" }, { - "Id": 1195, "Rank": 1, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Repair-PnPSite" + "CommandName": "Repair-PnPSite", + "Id": 1195, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1196, "Rank": 2, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "CommandName": "Repair-PnPSite" + "CommandName": "Repair-PnPSite", + "Id": 1196, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Id": 1197, "Rank": 1, - "Command": "Request-PnPAccessToken", - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Id": 1197, + "Command": "Request-PnPAccessToken" }, { - "Id": 1198, "Rank": 2, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Id": 1198, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" }, { - "Id": 1199, "Rank": 3, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Id": 1199, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" }, { - "Id": 1200, "Rank": 4, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "CommandName": "Request-PnPAccessToken" + "CommandName": "Request-PnPAccessToken", + "Id": 1200, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" }, { - "Id": 1201, "Rank": 1, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "CommandName": "Request-PnPPersonalSite" + "CommandName": "Request-PnPPersonalSite", + "Id": 1201, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" }, { - "Id": 1202, "Rank": 2, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "CommandName": "Request-PnPPersonalSite" + "CommandName": "Request-PnPPersonalSite", + "Id": 1202, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" }, { - "Id": 1203, "Rank": 1, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "CommandName": "Request-PnPReIndexList" + "CommandName": "Request-PnPReIndexList", + "Id": 1203, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"" }, { - "Id": 1204, "Rank": 1, - "Command": "Request-PnPReIndexWeb", - "CommandName": "Request-PnPReIndexWeb" + "CommandName": "Request-PnPReIndexWeb", + "Id": 1204, + "Command": "Request-PnPReIndexWeb" }, { - "Id": 1205, "Rank": 1, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1205, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" }, { - "Id": 1206, "Rank": 2, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1206, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" }, { - "Id": 1207, "Rank": 3, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1207, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" }, { - "Id": 1208, "Rank": 1, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "CommandName": "Reset-PnPFileVersion" + "CommandName": "Reset-PnPFileVersion", + "Id": 1208, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" }, { - "Id": 1209, "Rank": 2, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "CommandName": "Reset-PnPFileVersion" + "CommandName": "Reset-PnPFileVersion", + "Id": 1209, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" }, { - "Id": 1210, "Rank": 1, - "Command": "Reset-PnPLabel -List \"Demo List\"", - "CommandName": "Reset-PnPLabel" + "CommandName": "Reset-PnPLabel", + "Id": 1210, + "Command": "Reset-PnPLabel -List \"Demo List\"" }, { - "Id": 1211, "Rank": 2, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "CommandName": "Reset-PnPLabel" + "CommandName": "Reset-PnPLabel", + "Id": 1211, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" }, { - "Id": 1212, "Rank": 1, - "Command": "Reset-PnPMicrosoft365GroupExpiration", - "CommandName": "Reset-PnPMicrosoft365GroupExpiration" + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1212, + "Command": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Id": 1213, "Rank": 1, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Id": 1213, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" }, { - "Id": 1214, "Rank": 1, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "CommandName": "Resolve-PnPFolder" + "CommandName": "Resolve-PnPFolder", + "Id": 1214, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" }, { - "Id": 1215, "Rank": 1, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Restore-PnPDeletedMicrosoft365Group" + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Id": 1215, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { - "Id": 1216, "Rank": 1, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Id": 1216, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { - "Id": 1217, "Rank": 2, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Id": 1217, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" }, { - "Id": 1218, "Rank": 3, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Restore-PnPFileVersion" + "CommandName": "Restore-PnPFileVersion", + "Id": 1218, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { - "Id": 1219, "Rank": 1, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Restore-PnPListItemVersion" + "CommandName": "Restore-PnPListItemVersion", + "Id": 1219, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { - "Id": 1220, "Rank": 2, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Restore-PnPListItemVersion" + "CommandName": "Restore-PnPListItemVersion", + "Id": 1220, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { - "Id": 1221, "Rank": 1, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Restore-PnPRecycleBinItem" + "CommandName": "Restore-PnPRecycleBinItem", + "Id": 1221, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { - "Id": 1222, "Rank": 1, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantRecycleBinItem" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1222, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1223, "Rank": 2, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Restore-PnPTenantRecycleBinItem" + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1223, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { - "Id": 1224, "Rank": 1, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Id": 1224, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { - "Id": 1225, "Rank": 2, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Id": 1225, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { - "Id": 1226, "Rank": 3, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "CommandName": "Restore-PnPTenantSite" + "CommandName": "Restore-PnPTenantSite", + "Id": 1226, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" }, { - "Id": 1227, "Rank": 1, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "CommandName": "Revoke-PnPAzureADAppSitePermission" + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Id": 1227, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" }, { - "Id": 1228, "Rank": 1, - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Revoke-PnPHubSiteRights" + "CommandName": "Revoke-PnPHubSiteRights", + "Id": 1228, + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 1229, "Rank": 1, - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Revoke-PnPSiteDesignRights" + "CommandName": "Revoke-PnPSiteDesignRights", + "Id": 1229, + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { - "Id": 1230, "Rank": 1, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Revoke-PnPTenantServicePrincipalPermission" + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Id": 1230, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { - "Id": 1231, "Rank": 1, - "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "CommandName": "Revoke-PnPUserSession" + "CommandName": "Revoke-PnPUserSession", + "Id": 1231, + "Command": "Revoke-PnPUserSession -User user1@contoso.com" }, { - "Id": 1232, "Rank": 1, - "Command": "Save-PnPPageConversionLog", - "CommandName": "Save-PnPPageConversionLog" + "CommandName": "Save-PnPPageConversionLog", + "Id": 1232, + "Command": "Save-PnPPageConversionLog" }, { - "Id": 1233, "Rank": 1, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "CommandName": "Save-PnPSiteTemplate" + "CommandName": "Save-PnPSiteTemplate", + "Id": 1233, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" }, { - "Id": 1234, "Rank": 1, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "CommandName": "Save-PnPTenantTemplate" + "CommandName": "Save-PnPTenantTemplate", + "Id": 1234, + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" }, { - "Id": 1235, "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" + "CommandName": "Send-PnPMail", + "Id": 1235, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Id": 1236, "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" + "CommandName": "Send-PnPMail", + "Id": 1236, + "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": 1237, "Rank": 3, - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "CommandName": "Send-PnPMail" + "CommandName": "Send-PnPMail", + "Id": 1237, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { - "Id": 1238, "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" + "CommandName": "Send-PnPMail", + "Id": 1238, + "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": 1239, "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" + "CommandName": "Send-PnPMail", + "Id": 1239, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com" }, { - "Id": 1240, "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" + "CommandName": "Send-PnPMail", + "Id": 1240, + "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": 1241, "Rank": 1, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "CommandName": "Set-PnPAdaptiveScopeProperty" + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Id": 1241, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" }, { - "Id": 1242, "Rank": 1, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Set-PnPApplicationCustomizer" + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1242, + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { - "Id": 1243, "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" + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1243, + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" }, { - "Id": 1244, "Rank": 1, - "Command": "Set-PnPAppSideLoading -On", - "CommandName": "Set-PnPAppSideLoading" + "CommandName": "Set-PnPAppSideLoading", + "Id": 1244, + "Command": "Set-PnPAppSideLoading -On" }, { - "Id": 1245, "Rank": 2, - "Command": "Set-PnPAppSideLoading -Off", - "CommandName": "Set-PnPAppSideLoading" + "CommandName": "Set-PnPAppSideLoading", + "Id": 1245, + "Command": "Set-PnPAppSideLoading -Off" }, { - "Id": 1246, "Rank": 1, - "Command": "Set-PnPAuditing -EnableAll", - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Id": 1246, + "Command": "Set-PnPAuditing -EnableAll" }, { - "Id": 1247, "Rank": 2, - "Command": "Set-PnPAuditing -DisableAll", - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Id": 1247, + "Command": "Set-PnPAuditing -DisableAll" }, { - "Id": 1248, "Rank": 3, - "Command": "Set-PnPAuditing -RetentionTime 7", - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Id": 1248, + "Command": "Set-PnPAuditing -RetentionTime 7" }, { - "Id": 1249, "Rank": 4, - "Command": "Set-PnPAuditing -TrimAuditLog", - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Id": 1249, + "Command": "Set-PnPAuditing -TrimAuditLog" }, { - "Id": 1250, "Rank": 5, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "CommandName": "Set-PnPAuditing" + "CommandName": "Set-PnPAuditing", + "Id": 1250, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" }, { - "Id": 1251, "Rank": 1, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "CommandName": "Set-PnPAvailablePageLayouts" + "CommandName": "Set-PnPAvailablePageLayouts", + "Id": 1251, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" }, { - "Id": 1252, "Rank": 1, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "CommandName": "Set-PnPAzureADAppSitePermission" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1252, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" }, { - "Id": 1253, "Rank": 2, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "CommandName": "Set-PnPAzureADAppSitePermission" + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1253, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" }, { - "Id": 1254, "Rank": 1, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Id": 1254, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" }, { - "Id": 1255, "Rank": 2, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Id": 1255, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Id": 1256, "Rank": 3, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPAzureADGroup" + "CommandName": "Set-PnPAzureADGroup", + "Id": 1256, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" }, { - "Id": 1257, "Rank": 1, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1257, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" }, { - "Id": 1258, "Rank": 2, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1258, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" }, { - "Id": 1259, "Rank": 3, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "CommandName": "Set-PnPBrowserIdleSignout" + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1259, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" }, { - "Id": 1260, "Rank": 1, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1260, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" }, { - "Id": 1261, "Rank": 2, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1261, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" }, { - "Id": 1262, "Rank": 1, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1262, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" }, { - "Id": 1263, "Rank": 2, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1263, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" }, { - "Id": 1264, "Rank": 3, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1264, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" }, { - "Id": 1265, "Rank": 4, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1265, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" }, { - "Id": 1266, "Rank": 1, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Id": 1266, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Id": 1267, "Rank": 2, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Id": 1267, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" }, { - "Id": 1268, "Rank": 3, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Id": 1268, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { - "Id": 1269, "Rank": 4, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Id": 1269, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Id": 1270, "Rank": 5, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "CommandName": "Set-PnPContentType" + "CommandName": "Set-PnPContentType", + "Id": 1270, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { - "Id": 1271, "Rank": 1, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1271, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" }, { - "Id": 1272, "Rank": 2, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1272, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" }, { - "Id": 1273, "Rank": 3, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1273, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" }, { - "Id": 1274, "Rank": 4, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "CommandName": "Set-PnPDefaultColumnValues" + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1274, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" }, { - "Id": 1275, "Rank": 1, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "CommandName": "Set-PnPDefaultContentTypeToList" + "CommandName": "Set-PnPDefaultContentTypeToList", + "Id": 1275, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" }, { - "Id": 1276, "Rank": 1, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1276, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" }, { - "Id": 1277, "Rank": 2, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1277, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" }, { - "Id": 1278, "Rank": 3, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "CommandName": "Set-PnPDefaultPageLayout" + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1278, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" }, { - "Id": 1279, "Rank": 1, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1279, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" }, { - "Id": 1280, "Rank": 2, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1280, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Id": 1281, "Rank": 3, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation" + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1281, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { - "Id": 1282, "Rank": 1, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "CommandName": "Set-PnPDocumentSetField" + "CommandName": "Set-PnPDocumentSetField", + "Id": 1282, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" }, { - "Id": 1283, "Rank": 2, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "CommandName": "Set-PnPDocumentSetField" + "CommandName": "Set-PnPDocumentSetField", + "Id": 1283, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" }, { - "Id": 1284, "Rank": 1, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Id": 1284, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" }, { - "Id": 1285, "Rank": 2, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Id": 1285, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" }, { - "Id": 1286, "Rank": 3, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "CommandName": "Set-PnPField" + "CommandName": "Set-PnPField", + "Id": 1286, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" }, { - "Id": 1287, "Rank": 1, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedIn" + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1287, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" }, { - "Id": 1288, "Rank": 2, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "CommandName": "Set-PnPFileCheckedIn" + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1288, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" }, { - "Id": 1289, "Rank": 1, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedOut" + "CommandName": "Set-PnPFileCheckedOut", + "Id": 1289, + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" }, { - "Id": 1290, "Rank": 1, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Id": 1290, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1291, "Rank": 2, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Id": 1291, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1292, "Rank": 3, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "CommandName": "Set-PnPFolderPermission" + "CommandName": "Set-PnPFolderPermission", + "Id": 1292, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Id": 1293, "Rank": 1, - "Command": "Set-PnPFooter -Enabled:$true", - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Id": 1293, + "Command": "Set-PnPFooter -Enabled:$true" }, { - "Id": 1294, "Rank": 2, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Id": 1294, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" }, { - "Id": 1295, "Rank": 3, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Id": 1295, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" }, { - "Id": 1296, "Rank": 4, - "Command": "Set-PnPFooter -LogoUrl \"\"", - "CommandName": "Set-PnPFooter" + "CommandName": "Set-PnPFooter", + "Id": 1296, + "Command": "Set-PnPFooter -LogoUrl \"\"" }, { - "Id": 1297, "Rank": 1, - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "CommandName": "Set-PnPGraphSubscription" + "CommandName": "Set-PnPGraphSubscription", + "Id": 1297, + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" }, { - "Id": 1298, "Rank": 1, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "CommandName": "Set-PnPGroup" + "CommandName": "Set-PnPGroup", + "Id": 1298, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" }, { - "Id": 1299, "Rank": 2, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "CommandName": "Set-PnPGroup" + "CommandName": "Set-PnPGroup", + "Id": 1299, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" }, { - "Id": 1300, "Rank": 1, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1300, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" }, { - "Id": 1301, "Rank": 2, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1301, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" }, { - "Id": 1302, "Rank": 3, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1302, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" }, { - "Id": 1303, "Rank": 4, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1303, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" }, { - "Id": 1304, "Rank": 5, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "CommandName": "Set-PnPGroupPermissions" + "CommandName": "Set-PnPGroupPermissions", + "Id": 1304, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" }, { - "Id": 1305, "Rank": 1, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "CommandName": "Set-PnPHideDefaultThemes" + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1305, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" }, { - "Id": 1306, "Rank": 2, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "CommandName": "Set-PnPHideDefaultThemes" + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1306, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" }, { - "Id": 1307, "Rank": 1, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "CommandName": "Set-PnPHomePage" + "CommandName": "Set-PnPHomePage", + "Id": 1307, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" }, { - "Id": 1308, "Rank": 2, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "CommandName": "Set-PnPHomePage" + "CommandName": "Set-PnPHomePage", + "Id": 1308, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" }, { - "Id": 1309, "Rank": 1, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "CommandName": "Set-PnPHomeSite" + "CommandName": "Set-PnPHomeSite", + "Id": 1309, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" }, { - "Id": 1310, "Rank": 2, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "CommandName": "Set-PnPHomeSite" + "CommandName": "Set-PnPHomeSite", + "Id": 1310, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" }, { - "Id": 1311, "Rank": 1, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Id": 1311, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" }, { - "Id": 1312, "Rank": 2, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Id": 1312, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" }, { - "Id": 1313, "Rank": 3, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Id": 1313, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" }, { - "Id": 1314, "Rank": 4, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Id": 1314, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" }, { - "Id": 1315, "Rank": 5, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Id": 1315, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" }, { - "Id": 1316, "Rank": 6, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "CommandName": "Set-PnPHubSite" + "CommandName": "Set-PnPHubSite", + "Id": 1316, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" }, { - "Id": 1317, "Rank": 1, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "CommandName": "Set-PnPImageListItemColumn" + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1317, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" }, { - "Id": 1318, "Rank": 2, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "CommandName": "Set-PnPImageListItemColumn" + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1318, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" }, { - "Id": 1319, "Rank": 1, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "CommandName": "Set-PnPIndexedProperties" + "CommandName": "Set-PnPIndexedProperties", + "Id": 1319, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" }, { - "Id": 1320, "Rank": 1, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "CommandName": "Set-PnPInPlaceRecordsManagement" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1320, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" }, { - "Id": 1321, "Rank": 2, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "CommandName": "Set-PnPInPlaceRecordsManagement" + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1321, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" }, { - "Id": 1322, "Rank": 1, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "CommandName": "Set-PnPKnowledgeHubSite" + "CommandName": "Set-PnPKnowledgeHubSite", + "Id": 1322, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" }, { - "Id": 1323, "Rank": 1, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "CommandName": "Set-PnPLabel" + "CommandName": "Set-PnPLabel", + "Id": 1323, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" }, { - "Id": 1324, "Rank": 2, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "CommandName": "Set-PnPLabel" + "CommandName": "Set-PnPLabel", + "Id": 1324, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" }, { - "Id": 1325, "Rank": 1, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1325, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" }, { - "Id": 1326, "Rank": 2, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1326, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" }, { - "Id": 1327, "Rank": 3, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1327, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" }, { - "Id": 1328, "Rank": 4, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1328, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" }, { - "Id": 1329, "Rank": 5, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1329, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" }, { - "Id": 1330, "Rank": 6, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1330, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" }, { - "Id": 1331, "Rank": 7, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1331, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" }, { - "Id": 1332, "Rank": 8, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1332, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" }, { - "Id": 1333, "Rank": 9, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1333, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" }, { - "Id": 1334, "Rank": 10, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1334, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" }, { - "Id": 1335, "Rank": 11, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "CommandName": "Set-PnPList" + "CommandName": "Set-PnPList", + "Id": 1335, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" }, { - "Id": 1336, "Rank": 1, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "CommandName": "Set-PnPListInformationRightsManagement" + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1336, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" }, { - "Id": 1337, "Rank": 2, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "CommandName": "Set-PnPListInformationRightsManagement" + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1337, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" }, { - "Id": 1338, "Rank": 1, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Id": 1338, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1339, "Rank": 2, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Id": 1339, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1340, "Rank": 3, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Id": 1340, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { - "Id": 1341, "Rank": 4, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Id": 1341, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" }, { - "Id": 1342, "Rank": 5, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "CommandName": "Set-PnPListItem" + "CommandName": "Set-PnPListItem", + "Id": 1342, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" }, { - "Id": 1343, "Rank": 1, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Set-PnPListItemAsRecord" + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1343, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { - "Id": 1344, "Rank": 2, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "CommandName": "Set-PnPListItemAsRecord" + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1344, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" }, { - "Id": 1345, "Rank": 1, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Id": 1345, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1346, "Rank": 2, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Id": 1346, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1347, "Rank": 3, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Id": 1347, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { - "Id": 1348, "Rank": 4, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Id": 1348, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" }, { - "Id": 1349, "Rank": 5, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "CommandName": "Set-PnPListItemPermission" + "CommandName": "Set-PnPListItemPermission", + "Id": 1349, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" }, { - "Id": 1350, "Rank": 1, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListPermission" + "CommandName": "Set-PnPListPermission", + "Id": 1350, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" }, { - "Id": 1351, "Rank": 2, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListPermission" + "CommandName": "Set-PnPListPermission", + "Id": 1351, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { - "Id": 1352, "Rank": 1, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "CommandName": "Set-PnPListRecordDeclaration" + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1352, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" }, { - "Id": 1353, "Rank": 2, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "CommandName": "Set-PnPListRecordDeclaration" + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1353, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" }, { - "Id": 1354, "Rank": 1, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Id": 1354, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Id": 1355, "Rank": 2, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Id": 1355, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { - "Id": 1356, "Rank": 3, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Id": 1356, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Id": 1357, "Rank": 4, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage" + "CommandName": "Set-PnPMasterPage", + "Id": 1357, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { - "Id": 1358, "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1358, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" }, { - "Id": 1359, "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1359, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1360, "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1360, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Id": 1361, "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1361, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" }, { - "Id": 1362, "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1362, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1363, "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1363, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Id": 1364, "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1364, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" }, { - "Id": 1365, "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1365, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1366, "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1366, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Id": 1367, "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1367, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" }, { - "Id": 1368, "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1368, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1369, "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1369, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Id": 1370, "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1370, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" }, { - "Id": 1371, "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1371, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1372, "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1372, + "Command": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Id": 1373, "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1373, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" }, { - "Id": 1374, "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1374, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" }, { - "Id": 1375, "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1375, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Id": 1376, "Rank": 1, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1376, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" }, { - "Id": 1377, "Rank": 2, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1377, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" }, { - "Id": 1378, "Rank": 3, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1378, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" }, { - "Id": 1379, "Rank": 4, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1379, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" }, { - "Id": 1380, "Rank": 5, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1380, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" }, { - "Id": 1381, "Rank": 6, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "CommandName": "Set-PnPMicrosoft365Group" + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1381, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { - "Id": 1382, "Rank": 1, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1382, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" }, { - "Id": 1383, "Rank": 2, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1383, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" }, { - "Id": 1384, "Rank": 1, - "Command": "Set-PnPMinimalDownloadStrategy -Off", - "CommandName": "Set-PnPMinimalDownloadStrategy" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1384, + "Command": "Set-PnPMinimalDownloadStrategy -Off" }, { - "Id": 1385, "Rank": 2, - "Command": "Set-PnPMinimalDownloadStrategy -On", - "CommandName": "Set-PnPMinimalDownloadStrategy" + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1385, + "Command": "Set-PnPMinimalDownloadStrategy -On" }, { - "Id": 1386, "Rank": 1, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1386, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" }, { - "Id": 1387, "Rank": 2, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1387, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" }, { - "Id": 1388, "Rank": 3, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1388, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" }, { - "Id": 1389, "Rank": 4, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1389, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" }, { - "Id": 1390, "Rank": 5, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1390, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" }, { - "Id": 1391, "Rank": 6, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1391, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" }, { - "Id": 1392, "Rank": 7, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1392, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" }, { - "Id": 1393, "Rank": 8, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1393, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" }, { - "Id": 1394, "Rank": 9, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1394, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" }, { - "Id": 1395, "Rank": 10, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1395, + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { - "Id": 1396, "Rank": 11, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", - "CommandName": "Set-PnPPage" + "CommandName": "Set-PnPPage", + "Id": 1396, + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" }, { - "Id": 1397, "Rank": 1, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "CommandName": "Set-PnPPageTextPart" + "CommandName": "Set-PnPPageTextPart", + "Id": 1397, + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" }, { - "Id": 1398, "Rank": 1, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "CommandName": "Set-PnPPageWebPart" + "CommandName": "Set-PnPPageWebPart", + "Id": 1398, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" }, { - "Id": 1399, "Rank": 2, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "CommandName": "Set-PnPPageWebPart" + "CommandName": "Set-PnPPageWebPart", + "Id": 1399, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" }, { - "Id": 1400, "Rank": 1, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "CommandName": "Set-PnPPlannerBucket" + "CommandName": "Set-PnPPlannerBucket", + "Id": 1400, + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" }, { - "Id": 1401, "Rank": 1, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "CommandName": "Set-PnPPlannerConfiguration" + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1401, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" }, { - "Id": 1402, "Rank": 2, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "CommandName": "Set-PnPPlannerConfiguration" + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1402, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" }, { - "Id": 1403, "Rank": 1, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "CommandName": "Set-PnPPlannerPlan" + "CommandName": "Set-PnPPlannerPlan", + "Id": 1403, + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" }, { - "Id": 1404, "Rank": 1, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Id": 1404, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" }, { - "Id": 1405, "Rank": 2, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Id": 1405, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" }, { - "Id": 1406, "Rank": 3, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "CommandName": "Set-PnPPlannerTask" + "CommandName": "Set-PnPPlannerTask", + "Id": 1406, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { - "Id": 1407, "Rank": 1, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPPlannerUserPolicy" + "CommandName": "Set-PnPPlannerUserPolicy", + "Id": 1407, + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { - "Id": 1408, "Rank": 1, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1408, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" }, { - "Id": 1409, "Rank": 2, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1409, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" }, { - "Id": 1410, "Rank": 3, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "CommandName": "Set-PnPPropertyBagValue" + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1410, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" }, { - "Id": 1411, "Rank": 1, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1411, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" }, { - "Id": 1412, "Rank": 2, - "Command": "Set-PnPRequestAccessEmails -Disabled", - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1412, + "Command": "Set-PnPRequestAccessEmails -Disabled" }, { - "Id": 1413, "Rank": 3, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "CommandName": "Set-PnPRequestAccessEmails" + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1413, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false" }, { - "Id": 1414, "Rank": 1, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Id": 1414, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" }, { - "Id": 1415, "Rank": 2, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Id": 1415, + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" }, { - "Id": 1416, "Rank": 3, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Id": 1416, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" }, { - "Id": 1417, "Rank": 4, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "CommandName": "Set-PnPRoleDefinition" + "CommandName": "Set-PnPRoleDefinition", + "Id": 1417, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" }, { - "Id": 1418, "Rank": 1, - "Command": "Set-PnPSearchConfiguration -Configuration $config", - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1418, + "Command": "Set-PnPSearchConfiguration -Configuration $config" }, { - "Id": 1419, "Rank": 2, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1419, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" }, { - "Id": 1420, "Rank": 3, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1420, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { - "Id": 1421, "Rank": 4, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration" + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1421, + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { - "Id": 1422, "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" + "CommandName": "Set-PnPSearchExternalItem", + "Id": 1422, + "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": 1423, "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" + "CommandName": "Set-PnPSearchExternalItem", + "Id": 1423, + "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": 1424, "Rank": 1, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Id": 1424, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" }, { - "Id": 1425, "Rank": 2, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Id": 1425, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" }, { - "Id": 1426, "Rank": 3, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Id": 1426, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" }, { - "Id": 1427, "Rank": 4, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Id": 1427, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" }, { - "Id": 1428, "Rank": 5, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Id": 1428, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" }, { - "Id": 1429, "Rank": 6, - "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Id": 1429, + "Command": "Set-PnPSearchSettings -SearchScope Tenant" }, { - "Id": 1430, "Rank": 7, - "Command": "Set-PnPSearchSettings -SearchScope Hub", - "CommandName": "Set-PnPSearchSettings" + "CommandName": "Set-PnPSearchSettings", + "Id": 1430, + "Command": "Set-PnPSearchSettings -SearchScope Hub" }, { - "Id": 1431, "Rank": 1, - "Command": "Set-PnPSite -Classification \"HBI\"", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1431, + "Command": "Set-PnPSite -Classification \"HBI\"" }, { - "Id": 1432, "Rank": 2, - "Command": "Set-PnPSite -Classification $null", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1432, + "Command": "Set-PnPSite -Classification $null" }, { - "Id": 1433, "Rank": 3, - "Command": "Set-PnPSite -DisableFlows", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1433, + "Command": "Set-PnPSite -DisableFlows" }, { - "Id": 1434, "Rank": 4, - "Command": "Set-PnPSite -DisableFlows:$false", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1434, + "Command": "Set-PnPSite -DisableFlows:$false" }, { - "Id": 1435, "Rank": 5, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1435, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" }, { - "Id": 1436, "Rank": 6, - "Command": "Set-PnPSite -NoScriptSite $false", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1436, + "Command": "Set-PnPSite -NoScriptSite $false" }, { - "Id": 1437, "Rank": 7, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1437, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" }, { - "Id": 1438, "Rank": 8, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1438, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" }, { - "Id": 1439, "Rank": 9, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1439, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" }, { - "Id": 1440, "Rank": 10, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1440, + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" }, { - "Id": 1441, "Rank": 11, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1441, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" }, { - "Id": 1442, "Rank": 12, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1442, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" }, { - "Id": 1443, "Rank": 13, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1443, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" }, { - "Id": 1444, "Rank": 14, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1444, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" }, { - "Id": 1445, "Rank": 15, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1445, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" }, { - "Id": 1446, "Rank": 16, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1446, + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" }, { - "Id": 1447, "Rank": 17, - "Command": "Set-PnPSite -CancelVPForExistingLibs", - "CommandName": "Set-PnPSite" + "CommandName": "Set-PnPSite", + "Id": 1447, + "Command": "Set-PnPSite -CancelVPForExistingLibs" }, { - "Id": 1448, "Rank": 1, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "CommandName": "Set-PnPSiteClassification" + "CommandName": "Set-PnPSiteClassification", + "Id": 1448, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"" }, { - "Id": 1449, "Rank": 1, - "Command": "Set-PnPSiteClosure -State Open", - "CommandName": "Set-PnPSiteClosure" + "CommandName": "Set-PnPSiteClosure", + "Id": 1449, + "Command": "Set-PnPSiteClosure -State Open" }, { - "Id": 1450, "Rank": 2, - "Command": "Set-PnPSiteClosure -State Closed", - "CommandName": "Set-PnPSiteClosure" + "CommandName": "Set-PnPSiteClosure", + "Id": 1450, + "Command": "Set-PnPSiteClosure -State Closed" }, { - "Id": 1451, "Rank": 1, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "CommandName": "Set-PnPSiteDesign" + "CommandName": "Set-PnPSiteDesign", + "Id": 1451, + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" }, { - "Id": 1452, "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" + "CommandName": "Set-PnPSiteDesign", + "Id": 1452, + "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": 1453, "Rank": 1, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "CommandName": "Set-PnPSiteGroup" + "CommandName": "Set-PnPSiteGroup", + "Id": 1453, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" }, { - "Id": 1454, "Rank": 2, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "CommandName": "Set-PnPSiteGroup" + "CommandName": "Set-PnPSiteGroup", + "Id": 1454, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" }, { - "Id": 1455, "Rank": 1, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Set-PnPSitePolicy" + "CommandName": "Set-PnPSitePolicy", + "Id": 1455, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" }, { - "Id": 1456, "Rank": 1, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScript" + "CommandName": "Set-PnPSiteScript", + "Id": 1456, + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Id": 1457, "Rank": 1, - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScriptPackage" + "CommandName": "Set-PnPSiteScriptPackage", + "Id": 1457, + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { - "Id": 1458, "Rank": 1, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "CommandName": "Set-PnPSiteSensitivityLabel" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1458, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" }, { - "Id": 1459, "Rank": 2, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "CommandName": "Set-PnPSiteSensitivityLabel" + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1459, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" }, { - "Id": 1460, "Rank": 1, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1460, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" }, { - "Id": 1461, "Rank": 2, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1461, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" }, { - "Id": 1462, "Rank": 3, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1462, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Id": 1463, "Rank": 4, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1463, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { - "Id": 1464, "Rank": 5, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1464, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Id": 1465, "Rank": 6, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata" + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1465, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { - "Id": 1466, "Rank": 1, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity" + "CommandName": "Set-PnPStorageEntity", + "Id": 1466, + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Id": 1467, "Rank": 2, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity" + "CommandName": "Set-PnPStorageEntity", + "Id": 1467, + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { - "Id": 1468, "Rank": 1, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1468, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 1469, "Rank": 2, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1469, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { - "Id": 1470, "Rank": 1, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1470, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 1471, "Rank": 2, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1471, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { - "Id": 1472, "Rank": 1, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1472, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" }, { - "Id": 1473, "Rank": 2, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1473, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" }, { - "Id": 1474, "Rank": 1, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1474, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" }, { - "Id": 1475, "Rank": 2, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1475, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" }, { - "Id": 1476, "Rank": 3, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "CommandName": "Set-PnPTaxonomyFieldValue" + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1476, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" }, { - "Id": 1477, "Rank": 1, - "Command": "Set-PnPTeamifyPromptHidden", - "CommandName": "Set-PnPTeamifyPromptHidden" + "CommandName": "Set-PnPTeamifyPromptHidden", + "Id": 1477, + "Command": "Set-PnPTeamifyPromptHidden" }, { - "Id": 1478, "Rank": 1, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "CommandName": "Set-PnPTeamsChannel" + "CommandName": "Set-PnPTeamsChannel", + "Id": 1478, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" }, { - "Id": 1479, "Rank": 2, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "CommandName": "Set-PnPTeamsChannel" + "CommandName": "Set-PnPTeamsChannel", + "Id": 1479, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" }, { - "Id": 1480, "Rank": 1, - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "CommandName": "Set-PnpTeamsChannelUser" + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1480, + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" }, { - "Id": 1481, "Rank": 2, - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "CommandName": "Set-PnpTeamsChannelUser" + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1481, + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" }, { - "Id": 1482, "Rank": 1, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "CommandName": "Set-PnPTeamsTab" + "CommandName": "Set-PnPTeamsTab", + "Id": 1482, + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" }, { - "Id": 1483, "Rank": 1, - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "CommandName": "Set-PnPTeamsTag" + "CommandName": "Set-PnPTeamsTag", + "Id": 1483, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" }, { - "Id": 1484, "Rank": 1, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Id": 1484, + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" }, { - "Id": 1485, "Rank": 2, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Id": 1485, + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" }, { - "Id": 1486, "Rank": 3, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Id": 1486, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" }, { - "Id": 1487, "Rank": 4, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "CommandName": "Set-PnPTeamsTeam" + "CommandName": "Set-PnPTeamsTeam", + "Id": 1487, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" }, { - "Id": 1488, "Rank": 1, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1488, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" }, { - "Id": 1489, "Rank": 2, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1489, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" }, { - "Id": 1490, "Rank": 3, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "CommandName": "Set-PnPTeamsTeamArchivedState" + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1490, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" }, { - "Id": 1491, "Rank": 1, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "CommandName": "Set-PnPTeamsTeamPicture" + "CommandName": "Set-PnPTeamsTeamPicture", + "Id": 1491, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" }, { - "Id": 1492, "Rank": 1, - "Command": "Set-PnPTemporarilyDisableAppBar $true", - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1492, + "Command": "Set-PnPTemporarilyDisableAppBar $true" }, { - "Id": 1493, "Rank": 2, - "Command": "Set-PnPTemporarilyDisableAppBar $false", - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1493, + "Command": "Set-PnPTemporarilyDisableAppBar $false" }, { - "Id": 1494, "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" + "CommandName": "Set-PnPTenant", + "Id": 1494, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" }, { - "Id": 1495, "Rank": 2, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Id": 1495, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" }, { - "Id": 1496, "Rank": 3, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Id": 1496, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false" }, { - "Id": 1497, "Rank": 4, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "CommandName": "Set-PnPTenant" + "CommandName": "Set-PnPTenant", + "Id": 1497, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" }, { - "Id": 1498, "Rank": 1, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "CommandName": "Set-PnPTenantAppCatalogUrl" + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Id": 1498, + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" }, { - "Id": 1499, "Rank": 1, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1499, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" }, { - "Id": 1500, "Rank": 2, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1500, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" }, { - "Id": 1501, "Rank": 3, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "CommandName": "Set-PnPTenantCdnEnabled" + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1501, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" }, { - "Id": 1502, "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" + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1502, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" }, { - "Id": 1503, "Rank": 2, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "CommandName": "Set-PnPTenantCdnPolicy" + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1503, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" }, { - "Id": 1504, "Rank": 1, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Id": 1504, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" }, { - "Id": 1505, "Rank": 2, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Id": 1505, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" }, { - "Id": 1506, "Rank": 3, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Id": 1506, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" }, { - "Id": 1507, "Rank": 4, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Id": 1507, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { - "Id": 1508, "Rank": 5, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "CommandName": "Set-PnPTenantSite" + "CommandName": "Set-PnPTenantSite", + "Id": 1508, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" }, { - "Id": 1509, "Rank": 1, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "CommandName": "Set-PnPTenantSyncClientRestriction" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1509, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" }, { - "Id": 1510, "Rank": 2, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "CommandName": "Set-PnPTenantSyncClientRestriction" + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1510, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" }, { - "Id": 1511, "Rank": 1, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Id": 1511, + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" }, { - "Id": 1512, "Rank": 2, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Id": 1512, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 1513, "Rank": 3, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Id": 1513, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { - "Id": 1514, "Rank": 4, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", - "CommandName": "Set-PnPTerm" + "CommandName": "Set-PnPTerm", + "Id": 1514, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" }, { - "Id": 1515, "Rank": 1, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "CommandName": "Set-PnPTermGroup" + "CommandName": "Set-PnPTermGroup", + "Id": 1515, + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" }, { - "Id": 1516, "Rank": 1, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Id": 1516, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" }, { - "Id": 1517, "Rank": 2, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Id": 1517, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" }, { - "Id": 1518, "Rank": 3, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "CommandName": "Set-PnPTermSet" + "CommandName": "Set-PnPTermSet", + "Id": 1518, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" }, { - "Id": 1519, "Rank": 1, - "Command": "Set-PnPTheme", - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Id": 1519, + "Command": "Set-PnPTheme" }, { - "Id": 1520, "Rank": 2, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Id": 1520, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" }, { - "Id": 1521, "Rank": 3, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Id": 1521, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" }, { - "Id": 1522, "Rank": 4, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "CommandName": "Set-PnPTheme" + "CommandName": "Set-PnPTheme", + "Id": 1522, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" }, { - "Id": 1523, "Rank": 1, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Id": 1523, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" }, { - "Id": 1524, "Rank": 2, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Id": 1524, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" }, { - "Id": 1525, "Rank": 3, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Id": 1525, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" }, { - "Id": 1526, "Rank": 4, - "Command": "Set-PnPTraceLog -Off", - "CommandName": "Set-PnPTraceLog" + "CommandName": "Set-PnPTraceLog", + "Id": 1526, + "Command": "Set-PnPTraceLog -Off" }, { - "Id": 1527, "Rank": 1, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "CommandName": "Set-PnPUserOneDriveQuota" + "CommandName": "Set-PnPUserOneDriveQuota", + "Id": 1527, + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" }, { - "Id": 1528, "Rank": 1, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "CommandName": "Set-PnPUserProfileProperty" + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1528, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" }, { - "Id": 1529, "Rank": 2, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "CommandName": "Set-PnPUserProfileProperty" + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1529, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" }, { - "Id": 1530, "Rank": 1, - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Id": 1530, + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" }, { - "Id": 1531, "Rank": 2, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Id": 1531, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" }, { - "Id": 1532, "Rank": 3, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Id": 1532, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" }, { - "Id": 1533, "Rank": 4, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "CommandName": "Set-PnPView" + "CommandName": "Set-PnPView", + "Id": 1533, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" }, { - "Id": 1534, "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" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1534, + "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": 1535, "Rank": 2, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1535, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" }, { - "Id": 1536, "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" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1536, + "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": 1537, "Rank": 4, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1537, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" }, { - "Id": 1538, "Rank": 1, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Id": 1538, + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" }, { - "Id": 1539, "Rank": 2, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Id": 1539, + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" }, { - "Id": 1540, "Rank": 3, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Id": 1540, + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" }, { - "Id": 1541, "Rank": 4, - "Command": "Set-PnPWeb -NoCrawl:$true", - "CommandName": "Set-PnPWeb" + "CommandName": "Set-PnPWeb", + "Id": 1541, + "Command": "Set-PnPWeb -NoCrawl:$true" }, { - "Id": 1542, "Rank": 1, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Id": 1542, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" }, { - "Id": 1543, "Rank": 2, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Id": 1543, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" }, { - "Id": 1544, "Rank": 3, - "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "CommandName": "Set-PnPWebHeader" + "CommandName": "Set-PnPWebHeader", + "Id": 1544, + "Command": "Set-PnPWebHeader -LogoAlignment Middle" }, { - "Id": 1545, "Rank": 1, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "CommandName": "Set-PnPWebhookSubscription" + "CommandName": "Set-PnPWebhookSubscription", + "Id": 1545, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { - "Id": 1546, "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" + "CommandName": "Set-PnPWebhookSubscription", + "Id": 1546, + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { - "Id": 1547, "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" + "CommandName": "Set-PnPWebPartProperty", + "Id": 1547, + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" }, { - "Id": 1548, "Rank": 1, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Id": 1548, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Id": 1549, "Rank": 2, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Id": 1549, + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" }, { - "Id": 1550, "Rank": 3, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Id": 1550, + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { - "Id": 1551, "Rank": 4, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "CommandName": "Set-PnPWebPermission" + "CommandName": "Set-PnPWebPermission", + "Id": 1551, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" }, { - "Id": 1552, "Rank": 1, - "Command": "Set-PnPWebTheme -Theme MyTheme", - "CommandName": "Set-PnPWebTheme" + "CommandName": "Set-PnPWebTheme", + "Id": 1552, + "Command": "Set-PnPWebTheme -Theme MyTheme" }, { - "Id": 1553, "Rank": 2, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "CommandName": "Set-PnPWebTheme" + "CommandName": "Set-PnPWebTheme", + "Id": 1553, + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" }, { - "Id": 1554, "Rank": 1, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "CommandName": "Set-PnPWikiPageContent" + "CommandName": "Set-PnPWikiPageContent", + "Id": 1554, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" }, { - "Id": 1555, "Rank": 1, - "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1555, + "Command": "Submit-PnPSearchQuery -Query \"finance\"" }, { - "Id": 1556, "Rank": 2, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1556, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" }, { - "Id": 1557, "Rank": 3, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1557, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" }, { - "Id": 1558, "Rank": 4, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1558, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" }, { - "Id": 1559, "Rank": 5, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1559, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" }, { - "Id": 1560, "Rank": 6, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", - "CommandName": "Submit-PnPSearchQuery" + "CommandName": "Submit-PnPSearchQuery", + "Id": 1560, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All" }, { - "Id": 1561, "Rank": 1, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "CommandName": "Submit-PnPTeamsChannelMessage" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1561, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" }, { - "Id": 1562, "Rank": 2, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "CommandName": "Submit-PnPTeamsChannelMessage" + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1562, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" }, { - "Id": 1563, "Rank": 1, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Sync-PnPAppToTeams" + "CommandName": "Sync-PnPAppToTeams", + "Id": 1563, + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1564, "Rank": 1, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1564, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" }, { - "Id": 1565, "Rank": 2, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1565, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" }, { - "Id": 1566, "Rank": 3, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1566, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" }, { - "Id": 1567, "Rank": 1, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "CommandName": "Test-PnPListItemIsRecord" + "CommandName": "Test-PnPListItemIsRecord", + "Id": 1567, + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" }, { - "Id": 1568, "Rank": 1, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Id": 1568, + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" }, { - "Id": 1569, "Rank": 1, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Test-PnPSite" + "CommandName": "Test-PnPSite", + "Id": 1569, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { - "Id": 1570, "Rank": 2, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "CommandName": "Test-PnPSite" + "CommandName": "Test-PnPSite", + "Id": 1570, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { - "Id": 1571, "Rank": 1, - "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "CommandName": "Test-PnPTenantTemplate" + "CommandName": "Test-PnPTenantTemplate", + "Id": 1571, + "Command": "Test-PnPTenantTemplate -Template $myTemplate" }, { - "Id": 1572, "Rank": 1, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "CommandName": "Undo-PnPFileCheckedOut" + "CommandName": "Undo-PnPFileCheckedOut", + "Id": 1572, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" }, { - "Id": 1573, "Rank": 1, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Uninstall-PnPApp" + "CommandName": "Uninstall-PnPApp", + "Id": 1573, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1574, "Rank": 2, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Uninstall-PnPApp" + "CommandName": "Uninstall-PnPApp", + "Id": 1574, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1575, "Rank": 1, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Unpublish-PnPApp" + "CommandName": "Unpublish-PnPApp", + "Id": 1575, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1576, "Rank": 2, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Unpublish-PnPApp" + "CommandName": "Unpublish-PnPApp", + "Id": 1576, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1577, "Rank": 1, - "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "CommandName": "Unpublish-PnPContentType" + "CommandName": "Unpublish-PnPContentType", + "Id": 1577, + "Command": "Unpublish-PnPContentType -ContentType 0x0101" }, { - "Id": 1578, "Rank": 1, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Unpublish-PnPSyntexModel" + "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1578, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { - "Id": 1579, "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" + "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1579, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { - "Id": 1580, "Rank": 1, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Unregister-PnPHubSite" + "CommandName": "Unregister-PnPHubSite", + "Id": 1580, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { - "Id": 1581, "Rank": 1, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Update-PnPApp" + "CommandName": "Update-PnPApp", + "Id": 1581, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { - "Id": 1582, "Rank": 2, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Update-PnPApp" + "CommandName": "Update-PnPApp", + "Id": 1582, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { - "Id": 1583, "Rank": 1, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1583, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { - "Id": 1584, "Rank": 2, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1584, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" }, { - "Id": 1585, "Rank": 3, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Update-PnPAvailableSiteClassification" + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1585, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { - "Id": 1586, "Rank": 1, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1586, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" }, { - "Id": 1587, "Rank": 2, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1587, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { - "Id": 1588, "Rank": 3, - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "CommandName": "Update-PnPSiteDesignFromWeb" + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1588, + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" }, { - "Id": 1589, "Rank": 1, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "CommandName": "Update-PnPTeamsApp" + "CommandName": "Update-PnPTeamsApp", + "Id": 1589, + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" }, { - "Id": 1590, "Rank": 1, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Id": 1590, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { - "Id": 1591, "Rank": 2, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Id": 1591, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { - "Id": 1592, "Rank": 3, - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "CommandName": "Update-PnPTeamsUser" + "CommandName": "Update-PnPTeamsUser", + "Id": 1592, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" }, { - "Id": 1593, "Rank": 1, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "CommandName": "Update-PnPUserType" + "CommandName": "Update-PnPUserType", + "Id": 1593, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" } ] diff --git a/version.txt b/version.txt index 0295a5eca..59733a016 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.120 \ No newline at end of file +2.2.121 \ No newline at end of file From 2b5743117ce841c32261b18c3e6ce1230c2e2c14 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Tue, 7 Nov 2023 02:40:35 +0000 Subject: [PATCH 132/146] Nightly publish to PowerShell Gallery --- pnpcoresdk_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6372 ++++++++--------- version.txt | 2 +- 3 files changed, 3188 insertions(+), 3188 deletions(-) diff --git a/pnpcoresdk_hash.txt b/pnpcoresdk_hash.txt index b8828541d..c42f5b4d4 100644 --- a/pnpcoresdk_hash.txt +++ b/pnpcoresdk_hash.txt @@ -1 +1 @@ -b06cf9a1ab5098a89817427c07851738c39a0939 \ No newline at end of file +f168d9b5cdb02f61224c883f9aa934e8bec2fb5b \ 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 74bd3df8f..a791db9db 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9560 +1,9560 @@ [ { "Rank": 1, - "CommandName": "Add-PnPAlert", "Id": 1, - "Command": "Add-PnPAlert -List \"Demo List\"" + "Command": "Add-PnPAlert -List \"Demo List\"", + "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)" + "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, - "CommandName": "Add-PnPAlert", "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\"", + "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))" + "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" }, { "Rank": 1, - "CommandName": "Add-PnPApp", "Id": 5, - "Command": "Add-PnPApp -Path ./myapp.sppkg" + "Command": "Add-PnPApp -Path ./myapp.sppkg", + "CommandName": "Add-PnPApp" }, { "Rank": 2, - "CommandName": "Add-PnPApp", "Id": 6, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "CommandName": "Add-PnPApp" }, { "Rank": 3, - "CommandName": "Add-PnPApp", "Id": 7, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "CommandName": "Add-PnPApp" }, { "Rank": 4, - "CommandName": "Add-PnPApp", "Id": 8, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "CommandName": "Add-PnPApp" }, { "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`\"}" + "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", + "CommandName": "Add-PnPApplicationCustomizer" }, { "Rank": 1, - "CommandName": "Add-PnPAvailableSiteClassification", "Id": 10, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "CommandName": "Add-PnPAvailableSiteClassification" }, { "Rank": 2, - "CommandName": "Add-PnPAvailableSiteClassification", "Id": 11, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "CommandName": "Add-PnPAvailableSiteClassification" }, { "Rank": 1, - "CommandName": "Add-PnPAzureADGroupMember", "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\"", + "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" + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPAzureADGroupMember" }, { "Rank": 3, - "CommandName": "Add-PnPAzureADGroupMember", "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\"", + "CommandName": "Add-PnPAzureADGroupMember" }, { "Rank": 1, - "CommandName": "Add-PnPAzureADGroupOwner", "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\"", + "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" + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Rank": 3, - "CommandName": "Add-PnPAzureADGroupOwner", "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\"", + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Rank": 1, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "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", + "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\"" + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { "Rank": 1, - "CommandName": "Add-PnPContentType", "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", + "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\"" + "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, - "CommandName": "Add-PnPContentType", "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\"", + "CommandName": "Add-PnPContentType" }, { "Rank": 4, - "CommandName": "Add-PnPContentType", "Id": 23, - "Command": "Add-PnPContentType -Name \"Project Item\"" + "Command": "Add-PnPContentType -Name \"Project Item\"", + "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" + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", + "CommandName": "Add-PnPContentType" }, { "Rank": 1, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Id": 25, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { "Rank": 2, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "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", + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { "Rank": 1, - "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 27, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { "Rank": 2, - "CommandName": "Add-PnPContentTypeToDocumentSet", "Id": 28, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { "Rank": 1, - "CommandName": "Add-PnPContentTypeToList", "Id": 29, - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "CommandName": "Add-PnPContentTypeToList" }, { "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`\"}\"" + "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" }, { "Rank": 1, - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 31, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { "Rank": 2, - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Id": 32, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { "Rank": 1, - "CommandName": "Add-PnPDocumentSet", "Id": 33, - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "CommandName": "Add-PnPDocumentSet" }, { "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" + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", + "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" + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", + "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" + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", + "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" + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", + "CommandName": "Add-PnPEventReceiver" }, { "Rank": 1, - "CommandName": "Add-PnPField", "Id": 38, - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "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\"" + "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, - "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\"" + "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, - "CommandName": "Add-PnPField", "Id": 41, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "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\"" + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", + "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()\"" + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "CommandName": "Add-PnPField" }, { "Rank": 1, - "CommandName": "Add-PnPFieldToContentType", "Id": 44, - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "CommandName": "Add-PnPFieldToContentType" }, { "Rank": 1, - "CommandName": "Add-PnPFile", "Id": 45, - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "CommandName": "Add-PnPFile" }, { "Rank": 2, - "CommandName": "Add-PnPFile", "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\"", + "CommandName": "Add-PnPFile" }, { "Rank": 3, - "CommandName": "Add-PnPFile", "Id": 47, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}" + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "CommandName": "Add-PnPFile" }, { "Rank": 4, - "CommandName": "Add-PnPFile", "Id": 48, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}" + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", + "CommandName": "Add-PnPFile" }, { "Rank": 5, - "CommandName": "Add-PnPFile", "Id": 49, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}" + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", + "CommandName": "Add-PnPFile" }, { "Rank": 6, - "CommandName": "Add-PnPFile", "Id": 50, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}" + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", + "CommandName": "Add-PnPFile" }, { "Rank": 7, - "CommandName": "Add-PnPFile", "Id": 51, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "CommandName": "Add-PnPFile" }, { "Rank": 8, - "CommandName": "Add-PnPFile", "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\" }'", + "CommandName": "Add-PnPFile" }, { "Rank": 1, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Id": 53, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Rank": 2, - "CommandName": "Add-PnPFileAnonymousSharingLink", "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!\"", + "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)" + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Rank": 1, - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Id": 56, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { "Rank": 2, - "CommandName": "Add-PnPFileOrganizationalSharingLink", "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", + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { "Rank": 1, - "CommandName": "Add-PnPFileSharingInvite", "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", + "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" + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "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)" + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", + "CommandName": "Add-PnPFileSharingInvite" }, { "Rank": 1, - "CommandName": "Add-PnPFileToSiteTemplate", "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\"", + "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\"" + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", + "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" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Rank": 4, - "CommandName": "Add-PnPFileToSiteTemplate", "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", + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Rank": 5, - "CommandName": "Add-PnPFileToSiteTemplate", "Id": 65, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "CommandName": "Add-PnPFileToSiteTemplate" }, { "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\"" + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "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\"" + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPFileUserSharingLink" }, { "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" + "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, - "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" + "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, - "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" + "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, - "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" + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", + "CommandName": "Add-PnPFlowOwner" }, { "Rank": 1, - "CommandName": "Add-PnPFolder", "Id": 72, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "CommandName": "Add-PnPFolder" }, { "Rank": 2, - "CommandName": "Add-PnPFolder", "Id": 73, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "CommandName": "Add-PnPFolder" }, { "Rank": 3, - "CommandName": "Add-PnPFolder", "Id": 74, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "CommandName": "Add-PnPFolder" }, { "Rank": 1, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Id": 75, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Rank": 2, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "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!\"", + "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)" + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Rank": 1, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 78, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { "Rank": 2, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Id": 79, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { "Rank": 1, - "CommandName": "Add-PnPFolderSharingInvite", "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", + "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" + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "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)" + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", + "CommandName": "Add-PnPFolderSharingInvite" }, { "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\"" + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "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\"" + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPFolderUserSharingLink" }, { "Rank": 1, - "CommandName": "Add-PnPGroupMember", "Id": 85, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "CommandName": "Add-PnPGroupMember" }, { "Rank": 2, - "CommandName": "Add-PnPGroupMember", "Id": 86, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "CommandName": "Add-PnPGroupMember" }, { "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" + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "CommandName": "Add-PnPHtmlPublishingPageLayout" }, { "Rank": 1, - "CommandName": "Add-PnPHubSiteAssociation", "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\"", + "CommandName": "Add-PnPHubSiteAssociation" }, { "Rank": 1, - "CommandName": "Add-PnPHubToHubAssociation", "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", + "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\"" + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", + "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\"" + "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" }, { "Rank": 1, - "CommandName": "Add-PnPJavaScriptBlock", "Id": 92, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "CommandName": "Add-PnPJavaScriptBlock" }, { "Rank": 2, - "CommandName": "Add-PnPJavaScriptBlock", "Id": 93, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "CommandName": "Add-PnPJavaScriptBlock" }, { "Rank": 1, - "CommandName": "Add-PnPJavaScriptLink", "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", + "CommandName": "Add-PnPJavaScriptLink" }, { "Rank": 2, - "CommandName": "Add-PnPJavaScriptLink", "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", + "CommandName": "Add-PnPJavaScriptLink" }, { "Rank": 1, - "CommandName": "Add-PnPListDesign", "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\"", + "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\"" + "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" }, { "Rank": 1, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 98, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Rank": 2, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 99, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Rank": 3, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Id": 100, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Rank": 1, - "CommandName": "Add-PnPListItem", "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\"}", + "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\"}" + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Add-PnPListItem" }, { "Rank": 3, - "CommandName": "Add-PnPListItem", "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\"}", + "CommandName": "Add-PnPListItem" }, { "Rank": 4, - "CommandName": "Add-PnPListItem", "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\"", + "CommandName": "Add-PnPListItem" }, { "Rank": 5, - "CommandName": "Add-PnPListItem", "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\"", + "CommandName": "Add-PnPListItem" }, { "Rank": 1, - "CommandName": "Add-PnPListItemAttachment", "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", + "CommandName": "Add-PnPListItemAttachment" }, { "Rank": 2, - "CommandName": "Add-PnPListItemAttachment", "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\" }'", + "CommandName": "Add-PnPListItemAttachment" }, { "Rank": 3, - "CommandName": "Add-PnPListItemAttachment", "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", + "CommandName": "Add-PnPListItemAttachment" }, { "Rank": 1, - "CommandName": "Add-PnPListItemComment", "Id": 109, - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "CommandName": "Add-PnPListItemComment" }, { "Rank": 1, - "CommandName": "Add-PnPMasterPage", "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\"", + "CommandName": "Add-PnPMasterPage" }, { "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupMember", "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\"", + "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" + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupOwner", "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\"", + "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" + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { "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\"" + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 116, - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Rank": 3, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Id": 117, - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Rank": 1, - "CommandName": "Add-PnPNavigationNode", "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\"", + "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" + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", + "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" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "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" + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", + "CommandName": "Add-PnPNavigationNode" }, { "Rank": 5, - "CommandName": "Add-PnPNavigationNode", "Id": 122, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "CommandName": "Add-PnPNavigationNode" }, { "Rank": 6, - "CommandName": "Add-PnPNavigationNode", "Id": 123, - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "CommandName": "Add-PnPNavigationNode" }, { "Rank": 7, - "CommandName": "Add-PnPNavigationNode", "Id": 124, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "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" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "CommandName": "Add-PnPNavigationNode" }, { "Rank": 1, - "CommandName": "Add-PnPOrgAssetsLibrary", "Id": 126, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", + "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\"" + "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, - "CommandName": "Add-PnPOrgAssetsLibrary", "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", + "CommandName": "Add-PnPOrgAssetsLibrary" }, { "Rank": 1, - "CommandName": "Add-PnPOrgNewsSite", "Id": 129, - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "CommandName": "Add-PnPOrgNewsSite" }, { "Rank": 1, - "CommandName": "Add-PnPPage", "Id": 130, - "Command": "Add-PnPPage -Name \"NewPage\"" + "Command": "Add-PnPPage -Name \"NewPage\"", + "CommandName": "Add-PnPPage" }, { "Rank": 2, - "CommandName": "Add-PnPPage", "Id": 131, - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "CommandName": "Add-PnPPage" }, { "Rank": 3, - "CommandName": "Add-PnPPage", "Id": 132, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "CommandName": "Add-PnPPage" }, { "Rank": 4, - "CommandName": "Add-PnPPage", "Id": 133, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "CommandName": "Add-PnPPage" }, { "Rank": 5, - "CommandName": "Add-PnPPage", "Id": 134, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"" + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "CommandName": "Add-PnPPage" }, { "Rank": 6, - "CommandName": "Add-PnPPage", "Id": 135, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "CommandName": "Add-PnPPage" }, { "Rank": 7, - "CommandName": "Add-PnPPage", "Id": 136, - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "CommandName": "Add-PnPPage" }, { "Rank": 8, - "CommandName": "Add-PnPPage", "Id": 137, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "CommandName": "Add-PnPPage" }, { "Rank": 9, - "CommandName": "Add-PnPPage", "Id": 138, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "CommandName": "Add-PnPPage" }, { "Rank": 10, - "CommandName": "Add-PnPPage", "Id": 139, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "CommandName": "Add-PnPPage" }, { "Rank": 1, - "CommandName": "Add-PnPPageImageWebPart", "Id": 140, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", + "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\"" + "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" }, { "Rank": 1, - "CommandName": "Add-PnPPageSection", "Id": 142, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "CommandName": "Add-PnPPageSection" }, { "Rank": 2, - "CommandName": "Add-PnPPageSection", "Id": 143, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "CommandName": "Add-PnPPageSection" }, { "Rank": 1, - "CommandName": "Add-PnPPageTextPart", "Id": 144, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "CommandName": "Add-PnPPageTextPart" }, { "Rank": 2, - "CommandName": "Add-PnPPageTextPart", "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\"", + "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\"" + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", + "CommandName": "Add-PnPPageTextPart" }, { "Rank": 1, - "CommandName": "Add-PnPPageWebPart", "Id": 147, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "CommandName": "Add-PnPPageWebPart" }, { "Rank": 2, - "CommandName": "Add-PnPPageWebPart", "Id": 148, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "CommandName": "Add-PnPPageWebPart" }, { "Rank": 3, - "CommandName": "Add-PnPPageWebPart", "Id": 149, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "CommandName": "Add-PnPPageWebPart" }, { "Rank": 1, - "CommandName": "Add-PnPPlannerBucket", "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\"", + "CommandName": "Add-PnPPlannerBucket" }, { "Rank": 2, - "CommandName": "Add-PnPPlannerBucket", "Id": 151, - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "CommandName": "Add-PnPPlannerBucket" }, { "Rank": 1, - "CommandName": "Add-PnPPlannerRoster", "Id": 152, - "Command": "Add-PnPPlannerRoster" + "Command": "Add-PnPPlannerRoster", + "CommandName": "Add-PnPPlannerRoster" }, { "Rank": 1, - "CommandName": "Add-PnPPlannerRosterMember", "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\"", + "CommandName": "Add-PnPPlannerRosterMember" }, { "Rank": 1, - "CommandName": "Add-PnPPlannerTask", "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\"", + "CommandName": "Add-PnPPlannerTask" }, { "Rank": 2, - "CommandName": "Add-PnPPlannerTask", "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\"", + "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\"" + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "CommandName": "Add-PnPPlannerTask" }, { "Rank": 1, - "CommandName": "Add-PnPPublishingImageRendition", "Id": 157, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "CommandName": "Add-PnPPublishingImageRendition" }, { "Rank": 1, - "CommandName": "Add-PnPPublishingPage", "Id": 158, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", + "CommandName": "Add-PnPPublishingPage" }, { "Rank": 2, - "CommandName": "Add-PnPPublishingPage", "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'", + "CommandName": "Add-PnPPublishingPage" }, { "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" + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "CommandName": "Add-PnPPublishingPageLayout" }, { "Rank": 1, - "CommandName": "Add-PnPRoleDefinition", "Id": 161, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "CommandName": "Add-PnPRoleDefinition" }, { "Rank": 2, - "CommandName": "Add-PnPRoleDefinition", "Id": 162, - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "CommandName": "Add-PnPRoleDefinition" }, { "Rank": 3, - "CommandName": "Add-PnPRoleDefinition", "Id": 163, - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "CommandName": "Add-PnPRoleDefinition" }, { "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 164, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAdmin", "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\")", + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Rank": 3, - "CommandName": "Add-PnPSiteCollectionAdmin", "Id": 166, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 167, - "Command": "Add-PnPSiteCollectionAppCatalog" + "Command": "Add-PnPSiteCollectionAppCatalog", + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Id": 168, - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { "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" + "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, - "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" + "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, - "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\"" + "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" }, { "Rank": 1, - "CommandName": "Add-PnPSiteDesignFromWeb", "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", + "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)" + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "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" + "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" }, { "Rank": 1, - "CommandName": "Add-PnPSiteDesignTask", "Id": 175, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "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\"" + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "CommandName": "Add-PnPSiteDesignTask" }, { "Rank": 1, - "CommandName": "Add-PnPSiteScript", "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", + "CommandName": "Add-PnPSiteScript" }, { "Rank": 1, - "CommandName": "Add-PnPSiteScriptPackage", "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\"", + "CommandName": "Add-PnPSiteScriptPackage" }, { "Rank": 1, - "CommandName": "Add-PnPSiteTemplate", "Id": 179, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "CommandName": "Add-PnPSiteTemplate" }, { "Rank": 1, - "CommandName": "Add-PnPStoredCredential", "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", + "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)" + "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, - "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\"" + "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" }, { "Rank": 1, - "CommandName": "Add-PnPTaxonomyField", "Id": 183, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "CommandName": "Add-PnPTaxonomyField" }, { "Rank": 2, - "CommandName": "Add-PnPTaxonomyField", "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\"", + "CommandName": "Add-PnPTaxonomyField" }, { "Rank": 1, - "CommandName": "Add-PnPTeamsChannel", "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", + "CommandName": "Add-PnPTeamsChannel" }, { "Rank": 2, - "CommandName": "Add-PnPTeamsChannel", "Id": 186, - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "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" + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "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" + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", + "CommandName": "Add-PnPTeamsChannel" }, { "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" + "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, - "CommandName": "Add-PnpTeamsChannelUser", "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", + "CommandName": "Add-PnpTeamsChannelUser" }, { "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\"" + "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, - "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\"" + "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, - "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\"" + "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, - "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" + "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" }, { "Rank": 1, - "CommandName": "Add-PnPTeamsTeam", "Id": 195, - "Command": "Add-PnPTeamsTeam" + "Command": "Add-PnPTeamsTeam", + "CommandName": "Add-PnPTeamsTeam" }, { "Rank": 1, - "CommandName": "Add-PnPTeamsUser", "Id": 196, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Add-PnPTeamsUser" }, { "Rank": 2, - "CommandName": "Add-PnPTeamsUser", "Id": 197, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "CommandName": "Add-PnPTeamsUser" }, { "Rank": 3, - "CommandName": "Add-PnPTeamsUser", "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", + "CommandName": "Add-PnPTeamsUser" }, { "Rank": 4, - "CommandName": "Add-PnPTeamsUser", "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", + "CommandName": "Add-PnPTeamsUser" }, { "Rank": 1, - "CommandName": "Add-PnPTenantCdnOrigin", "Id": 200, - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "CommandName": "Add-PnPTenantCdnOrigin" }, { "Rank": 1, - "CommandName": "Add-PnPTenantSequence", "Id": 201, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "CommandName": "Add-PnPTenantSequence" }, { "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSite", "Id": 202, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "CommandName": "Add-PnPTenantSequenceSite" }, { "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSubSite", "Id": 203, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "CommandName": "Add-PnPTenantSequenceSubSite" }, { "Rank": 1, - "CommandName": "Add-PnPTermToTerm", "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\"}", + "CommandName": "Add-PnPTermToTerm" }, { "Rank": 1, - "CommandName": "Add-PnPView", "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\"", + "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" + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", + "CommandName": "Add-PnPView" }, { "Rank": 3, - "CommandName": "Add-PnPView", "Id": 207, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "CommandName": "Add-PnPView" }, { "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\"" + "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, - "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\"" + "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, - "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\"" + "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" }, { "Rank": 1, - "CommandName": "Add-PnPWebhookSubscription", "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", + "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\"" + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "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!\"" + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", + "CommandName": "Add-PnPWebhookSubscription" }, { "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" + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", + "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" + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", + "CommandName": "Add-PnPWebPartToWebPartPage" }, { "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" + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", + "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" + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", + "CommandName": "Add-PnPWebPartToWikiPage" }, { "Rank": 1, - "CommandName": "Add-PnPWikiPage", "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'", + "CommandName": "Add-PnPWikiPage" }, { "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupMember", "Id": 219, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "CommandName": "Clear-PnPAzureADGroupMember" }, { "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupOwner", "Id": 220, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "CommandName": "Clear-PnPAzureADGroupOwner" }, { "Rank": 1, - "CommandName": "Clear-PnPDefaultColumnValues", "Id": 221, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "CommandName": "Clear-PnPDefaultColumnValues" }, { "Rank": 2, - "CommandName": "Clear-PnPDefaultColumnValues", "Id": 222, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "CommandName": "Clear-PnPDefaultColumnValues" }, { "Rank": 1, - "CommandName": "Clear-PnPListItemAsRecord", "Id": 223, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "CommandName": "Clear-PnPListItemAsRecord" }, { "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupMember", "Id": 224, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Id": 225, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { "Rank": 1, - "CommandName": "Clear-PnpRecycleBinItem", "Id": 226, - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "CommandName": "Clear-PnpRecycleBinItem" }, { "Rank": 2, - "CommandName": "Clear-PnpRecycleBinItem", "Id": 227, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "CommandName": "Clear-PnpRecycleBinItem" }, { "Rank": 3, - "CommandName": "Clear-PnpRecycleBinItem", "Id": 228, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "CommandName": "Clear-PnpRecycleBinItem" }, { "Rank": 1, - "CommandName": "Clear-PnPTenantAppCatalogUrl", "Id": 229, - "Command": "Clear-PnPTenantAppCatalogUrl" + "Command": "Clear-PnPTenantAppCatalogUrl", + "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { "Rank": 1, - "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 230, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { "Rank": 2, - "CommandName": "Clear-PnPTenantRecycleBinItem", "Id": 231, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { "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\"" + "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", + "CommandName": "Connect-PnPOnline" }, { "Rank": 1, - "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 233, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { "Rank": 2, - "CommandName": "Convert-PnPFolderToSiteTemplate", "Id": 234, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { "Rank": 1, - "CommandName": "Convert-PnPSiteTemplate", "Id": 235, - "Command": "Convert-PnPSiteTemplate -Path template.xml" + "Command": "Convert-PnPSiteTemplate -Path template.xml", + "CommandName": "Convert-PnPSiteTemplate" }, { "Rank": 2, - "CommandName": "Convert-PnPSiteTemplate", "Id": 236, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "CommandName": "Convert-PnPSiteTemplate" }, { "Rank": 3, - "CommandName": "Convert-PnPSiteTemplate", "Id": 237, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "CommandName": "Convert-PnPSiteTemplate" }, { "Rank": 1, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 238, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { "Rank": 2, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Id": 239, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { "Rank": 1, - "CommandName": "ConvertTo-PnPPage", "Id": 240, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 2, - "CommandName": "ConvertTo-PnPPage", "Id": 241, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 3, - "CommandName": "ConvertTo-PnPPage", "Id": 242, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 4, - "CommandName": "ConvertTo-PnPPage", "Id": 243, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 5, - "CommandName": "ConvertTo-PnPPage", "Id": 244, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 6, - "CommandName": "ConvertTo-PnPPage", "Id": 245, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 7, - "CommandName": "ConvertTo-PnPPage", "Id": 246, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 8, - "CommandName": "ConvertTo-PnPPage", "Id": 247, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 9, - "CommandName": "ConvertTo-PnPPage", "Id": 248, - "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\"", + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 10, - "CommandName": "ConvertTo-PnPPage", "Id": 249, - "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", + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 11, - "CommandName": "ConvertTo-PnPPage", "Id": 250, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 12, - "CommandName": "ConvertTo-PnPPage", "Id": 251, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 13, - "CommandName": "ConvertTo-PnPPage", "Id": 252, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 14, - "CommandName": "ConvertTo-PnPPage", "Id": 253, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 1, - "CommandName": "Copy-PnPFile", "Id": 254, - "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", + "CommandName": "Copy-PnPFile" }, { "Rank": 2, - "CommandName": "Copy-PnPFile", "Id": 255, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "CommandName": "Copy-PnPFile" }, { "Rank": 3, - "CommandName": "Copy-PnPFile", "Id": 256, - "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", + "CommandName": "Copy-PnPFile" }, { "Rank": 4, - "CommandName": "Copy-PnPFile", "Id": 257, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile" }, { "Rank": 5, - "CommandName": "Copy-PnPFile", "Id": 258, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "CommandName": "Copy-PnPFile" }, { "Rank": 6, - "CommandName": "Copy-PnPFile", "Id": 259, - "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\"", + "CommandName": "Copy-PnPFile" }, { "Rank": 7, - "CommandName": "Copy-PnPFile", "Id": 260, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "CommandName": "Copy-PnPFile" }, { "Rank": 8, - "CommandName": "Copy-PnPFile", "Id": 261, - "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", + "CommandName": "Copy-PnPFile" }, { "Rank": 9, - "CommandName": "Copy-PnPFile", "Id": 262, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "CommandName": "Copy-PnPFile" }, { "Rank": 10, - "CommandName": "Copy-PnPFile", "Id": 263, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "CommandName": "Copy-PnPFile" }, { "Rank": 1, - "CommandName": "Copy-PnPFolder", "Id": 264, - "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", + "CommandName": "Copy-PnPFolder" }, { "Rank": 2, - "CommandName": "Copy-PnPFolder", "Id": 265, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "CommandName": "Copy-PnPFolder" }, { "Rank": 3, - "CommandName": "Copy-PnPFolder", "Id": 266, - "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", + "CommandName": "Copy-PnPFolder" }, { "Rank": 4, - "CommandName": "Copy-PnPFolder", "Id": 267, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder" }, { "Rank": 5, - "CommandName": "Copy-PnPFolder", "Id": 268, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "CommandName": "Copy-PnPFolder" }, { "Rank": 6, - "CommandName": "Copy-PnPFolder", "Id": 269, - "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\"", + "CommandName": "Copy-PnPFolder" }, { "Rank": 7, - "CommandName": "Copy-PnPFolder", "Id": 270, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "CommandName": "Copy-PnPFolder" }, { "Rank": 8, - "CommandName": "Copy-PnPFolder", "Id": 271, - "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", + "CommandName": "Copy-PnPFolder" }, { "Rank": 9, - "CommandName": "Copy-PnPFolder", "Id": 272, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder" }, { "Rank": 10, - "CommandName": "Copy-PnPFolder", "Id": 273, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "CommandName": "Copy-PnPFolder" }, { "Rank": 1, - "CommandName": "Copy-PnPItemProxy", "Id": 274, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "CommandName": "Copy-PnPItemProxy" }, { "Rank": 1, - "CommandName": "Copy-PnPList", "Id": 275, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "CommandName": "Copy-PnPList" }, { "Rank": 2, - "CommandName": "Copy-PnPList", "Id": 276, - "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", + "CommandName": "Copy-PnPList" }, { "Rank": 3, - "CommandName": "Copy-PnPList", "Id": 277, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "CommandName": "Copy-PnPList" }, { "Rank": 4, - "CommandName": "Copy-PnPList", "Id": 278, - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", + "CommandName": "Copy-PnPList" }, { "Rank": 1, - "CommandName": "Copy-PnPTeamsTeam", "Id": 279, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "CommandName": "Copy-PnPTeamsTeam" }, { "Rank": 2, - "CommandName": "Copy-PnPTeamsTeam", "Id": 280, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "CommandName": "Copy-PnPTeamsTeam" }, { "Rank": 3, - "CommandName": "Copy-PnPTeamsTeam", "Id": 281, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" + "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, - "CommandName": "Copy-PnPTeamsTeam", "Id": 282, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" + "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" }, { "Rank": 1, - "CommandName": "Disable-PnPFeature", "Id": 283, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Disable-PnPFeature" }, { "Rank": 2, - "CommandName": "Disable-PnPFeature", "Id": 284, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "CommandName": "Disable-PnPFeature" }, { "Rank": 3, - "CommandName": "Disable-PnPFeature", "Id": 285, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "CommandName": "Disable-PnPFeature" }, { "Rank": 1, - "CommandName": "Disable-PnPPageScheduling", "Id": 286, - "Command": "Disable-PnPPageScheduling" + "Command": "Disable-PnPPageScheduling", + "CommandName": "Disable-PnPPageScheduling" }, { "Rank": 1, - "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 287, - "Command": "Disable-PnPPowerShellTelemetry" + "Command": "Disable-PnPPowerShellTelemetry", + "CommandName": "Disable-PnPPowerShellTelemetry" }, { "Rank": 2, - "CommandName": "Disable-PnPPowerShellTelemetry", "Id": 288, - "Command": "Disable-PnPPowerShellTelemetry -Force" + "Command": "Disable-PnPPowerShellTelemetry -Force", + "CommandName": "Disable-PnPPowerShellTelemetry" }, { "Rank": 1, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Id": 289, - "Command": "Disable-PnPSharingForNonOwnersOfSite" + "Command": "Disable-PnPSharingForNonOwnersOfSite", + "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { "Rank": 1, - "CommandName": "Disable-PnPSiteClassification", "Id": 290, - "Command": "Disable-PnPSiteClassification" + "Command": "Disable-PnPSiteClassification", + "CommandName": "Disable-PnPSiteClassification" }, { "Rank": 1, - "CommandName": "Disconnect-PnPOnline", "Id": 291, - "Command": "Disconnect-PnPOnline" + "Command": "Disconnect-PnPOnline", + "CommandName": "Disconnect-PnPOnline" }, { "Rank": 1, - "CommandName": "Enable-PnPCommSite", "Id": 292, - "Command": "Enable-PnPCommSite" + "Command": "Enable-PnPCommSite", + "CommandName": "Enable-PnPCommSite" }, { "Rank": 2, - "CommandName": "Enable-PnPCommSite", "Id": 293, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "CommandName": "Enable-PnPCommSite" }, { "Rank": 1, - "CommandName": "Enable-PnPFeature", "Id": 294, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Enable-PnPFeature" }, { "Rank": 2, - "CommandName": "Enable-PnPFeature", "Id": 295, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "CommandName": "Enable-PnPFeature" }, { "Rank": 3, - "CommandName": "Enable-PnPFeature", "Id": 296, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "CommandName": "Enable-PnPFeature" }, { "Rank": 1, - "CommandName": "Enable-PnPPageScheduling", "Id": 297, - "Command": "Enable-PnPPageScheduling" + "Command": "Enable-PnPPageScheduling", + "CommandName": "Enable-PnPPageScheduling" }, { "Rank": 1, - "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 298, - "Command": "Enable-PnPPowerShellTelemetry" + "Command": "Enable-PnPPowerShellTelemetry", + "CommandName": "Enable-PnPPowerShellTelemetry" }, { "Rank": 2, - "CommandName": "Enable-PnPPowerShellTelemetry", "Id": 299, - "Command": "Enable-PnPPowerShellTelemetry -Force" + "Command": "Enable-PnPPowerShellTelemetry -Force", + "CommandName": "Enable-PnPPowerShellTelemetry" }, { "Rank": 1, - "CommandName": "Enable-PnPSiteClassification", "Id": 300, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "CommandName": "Enable-PnPSiteClassification" }, { "Rank": 2, - "CommandName": "Enable-PnPSiteClassification", "Id": 301, - "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", + "CommandName": "Enable-PnPSiteClassification" }, { "Rank": 1, - "CommandName": "Export-PnPListToSiteTemplate", "Id": 302, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "CommandName": "Export-PnPListToSiteTemplate" }, { "Rank": 2, - "CommandName": "Export-PnPListToSiteTemplate", "Id": 303, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "CommandName": "Export-PnPListToSiteTemplate" }, { "Rank": 1, - "CommandName": "Export-PnPPage", "Id": 304, - "Command": "Export-PnPPage -Identity Home.aspx" + "Command": "Export-PnPPage -Identity Home.aspx", + "CommandName": "Export-PnPPage" }, { "Rank": 1, - "CommandName": "Export-PnPPageMapping", "Id": 305, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping" }, { "Rank": 2, - "CommandName": "Export-PnPPageMapping", "Id": 306, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping" }, { "Rank": 3, - "CommandName": "Export-PnPPageMapping", "Id": 307, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping" }, { "Rank": 1, - "CommandName": "Export-PnPTaxonomy", "Id": 308, - "Command": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy", + "CommandName": "Export-PnPTaxonomy" }, { "Rank": 2, - "CommandName": "Export-PnPTaxonomy", "Id": 309, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "CommandName": "Export-PnPTaxonomy" }, { "Rank": 3, - "CommandName": "Export-PnPTaxonomy", "Id": 310, - "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", + "CommandName": "Export-PnPTaxonomy" }, { "Rank": 4, - "CommandName": "Export-PnPTaxonomy", "Id": 311, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "CommandName": "Export-PnPTaxonomy" }, { "Rank": 1, - "CommandName": "Export-PnPTermGroupToXml", "Id": 312, - "Command": "Export-PnPTermGroupToXml" + "Command": "Export-PnPTermGroupToXml", + "CommandName": "Export-PnPTermGroupToXml" }, { "Rank": 2, - "CommandName": "Export-PnPTermGroupToXml", "Id": 313, - "Command": "Export-PnPTermGroupToXml -Out output.xml" + "Command": "Export-PnPTermGroupToXml -Out output.xml", + "CommandName": "Export-PnPTermGroupToXml" }, { "Rank": 3, - "CommandName": "Export-PnPTermGroupToXml", "Id": 314, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "CommandName": "Export-PnPTermGroupToXml" }, { "Rank": 1, - "CommandName": "Export-PnPUserInfo", "Id": 315, - "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\"", + "CommandName": "Export-PnPUserInfo" }, { "Rank": 2, - "CommandName": "Export-PnPUserInfo", "Id": 316, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", + "CommandName": "Export-PnPUserInfo" }, { "Rank": 1, - "CommandName": "Export-PnPUserProfile", "Id": 317, - "Command": "Export-PnPUserProfile -LoginName user@domain.com" + "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "CommandName": "Export-PnPUserProfile" }, { "Rank": 2, - "CommandName": "Export-PnPUserProfile", "Id": 318, - "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", + "CommandName": "Export-PnPUserProfile" }, { "Rank": 1, - "CommandName": "Find-PnPFile", "Id": 319, - "Command": "Find-PnPFile -Match *.master" + "Command": "Find-PnPFile -Match *.master", + "CommandName": "Find-PnPFile" }, { "Rank": 2, - "CommandName": "Find-PnPFile", "Id": 320, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "CommandName": "Find-PnPFile" }, { "Rank": 3, - "CommandName": "Find-PnPFile", "Id": 321, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "CommandName": "Find-PnPFile" }, { "Rank": 1, - "CommandName": "Get-PnPAccessToken", "Id": 322, - "Command": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken", + "CommandName": "Get-PnPAccessToken" }, { "Rank": 2, - "CommandName": "Get-PnPAccessToken", "Id": 323, - "Command": "Get-PnPAccessToken -Decoded" + "Command": "Get-PnPAccessToken -Decoded", + "CommandName": "Get-PnPAccessToken" }, { "Rank": 3, - "CommandName": "Get-PnPAccessToken", "Id": 324, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "CommandName": "Get-PnPAccessToken" }, { "Rank": 4, - "CommandName": "Get-PnPAccessToken", "Id": 325, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM" + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "CommandName": "Get-PnPAccessToken" }, { "Rank": 5, - "CommandName": "Get-PnPAccessToken", "Id": 326, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "CommandName": "Get-PnPAccessToken" }, { "Rank": 1, - "CommandName": "Get-PnPAlert", "Id": 327, - "Command": "Get-PnPAlert" + "Command": "Get-PnPAlert", + "CommandName": "Get-PnPAlert" }, { "Rank": 2, - "CommandName": "Get-PnPAlert", "Id": 328, - "Command": "Get-PnPAlert -List \"Demo List\"" + "Command": "Get-PnPAlert -List \"Demo List\"", + "CommandName": "Get-PnPAlert" }, { "Rank": 3, - "CommandName": "Get-PnPAlert", "Id": 329, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPAlert" }, { "Rank": 4, - "CommandName": "Get-PnPAlert", "Id": 330, - "Command": "Get-PnPAlert -Title \"Demo Alert\"" + "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "CommandName": "Get-PnPAlert" }, { "Rank": 5, - "CommandName": "Get-PnPAlert", "Id": 331, - "Command": "Get-PnPAlert -AllUsers" + "Command": "Get-PnPAlert -AllUsers", + "CommandName": "Get-PnPAlert" }, { "Rank": 6, - "CommandName": "Get-PnPAlert", "Id": 332, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "CommandName": "Get-PnPAlert" }, { "Rank": 1, - "CommandName": "Get-PnPApp", "Id": 333, - "Command": "Get-PnPApp" + "Command": "Get-PnPApp", + "CommandName": "Get-PnPApp" }, { "Rank": 2, - "CommandName": "Get-PnPApp", "Id": 334, - "Command": "Get-PnPApp -Scope Site" + "Command": "Get-PnPApp -Scope Site", + "CommandName": "Get-PnPApp" }, { "Rank": 3, - "CommandName": "Get-PnPApp", "Id": 335, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Get-PnPApp" }, { "Rank": 1, - "CommandName": "Get-PnPAppErrors", "Id": 336, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "CommandName": "Get-PnPAppErrors" }, { "Rank": 2, - "CommandName": "Get-PnPAppErrors", "Id": 337, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "CommandName": "Get-PnPAppErrors" }, { "Rank": 1, - "CommandName": "Get-PnPAppInfo", "Id": 338, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"" + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "CommandName": "Get-PnPAppInfo" }, { "Rank": 2, - "CommandName": "Get-PnPAppInfo", "Id": 339, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Get-PnPAppInfo" }, { "Rank": 3, - "CommandName": "Get-PnPAppInfo", "Id": 340, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "CommandName": "Get-PnPAppInfo" }, { "Rank": 1, - "CommandName": "Get-PnPApplicationCustomizer", "Id": 341, - "Command": "Get-PnPApplicationCustomizer" + "Command": "Get-PnPApplicationCustomizer", + "CommandName": "Get-PnPApplicationCustomizer" }, { "Rank": 2, - "CommandName": "Get-PnPApplicationCustomizer", "Id": 342, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Get-PnPApplicationCustomizer" }, { "Rank": 3, - "CommandName": "Get-PnPApplicationCustomizer", "Id": 343, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "CommandName": "Get-PnPApplicationCustomizer" }, { "Rank": 1, - "CommandName": "Get-PnPAuditing", "Id": 344, - "Command": "Get-PnPAuditing" + "Command": "Get-PnPAuditing", + "CommandName": "Get-PnPAuditing" }, { "Rank": 1, - "CommandName": "Get-PnPAuthenticationRealm", "Id": 345, - "Command": "Get-PnPAuthenticationRealm" + "Command": "Get-PnPAuthenticationRealm", + "CommandName": "Get-PnPAuthenticationRealm" }, { "Rank": 2, - "CommandName": "Get-PnPAuthenticationRealm", "Id": 346, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "CommandName": "Get-PnPAuthenticationRealm" }, { "Rank": 1, - "CommandName": "Get-PnPAvailableLanguage", "Id": 347, - "Command": "Get-PnPAvailableLanguage" + "Command": "Get-PnPAvailableLanguage", + "CommandName": "Get-PnPAvailableLanguage" }, { "Rank": 1, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 348, - "Command": "Get-PnPAvailableSensitivityLabel" + "Command": "Get-PnPAvailableSensitivityLabel", + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Rank": 2, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 349, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Rank": 3, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Id": 350, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Rank": 1, - "CommandName": "Get-PnPAvailableSiteClassification", "Id": 351, - "Command": "Get-PnPAvailableSiteClassification" + "Command": "Get-PnPAvailableSiteClassification", + "CommandName": "Get-PnPAvailableSiteClassification" }, { "Rank": 1, - "CommandName": "Get-PnPAzureACSPrincipal", "Id": 352, - "Command": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal", + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Rank": 2, - "CommandName": "Get-PnPAzureACSPrincipal", "Id": 353, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Rank": 3, - "CommandName": "Get-PnPAzureACSPrincipal", "Id": 354, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Rank": 4, - "CommandName": "Get-PnPAzureACSPrincipal", "Id": 355, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 356, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 357, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 358, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 359, - "Command": "Get-PnPAzureADActivityReportSignIn" + "Command": "Get-PnPAzureADActivityReportSignIn", + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 360, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Id": 361, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Rank": 1, - "CommandName": "Get-PnPAzureADApp", "Id": 362, - "Command": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp", + "CommandName": "Get-PnPAzureADApp" }, { "Rank": 2, - "CommandName": "Get-PnPAzureADApp", "Id": 363, - "Command": "Get-PnPAzureADApp -Identity MyApp" + "Command": "Get-PnPAzureADApp -Identity MyApp", + "CommandName": "Get-PnPAzureADApp" }, { "Rank": 3, - "CommandName": "Get-PnPAzureADApp", "Id": 364, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Get-PnPAzureADApp" }, { "Rank": 4, - "CommandName": "Get-PnPAzureADApp", "Id": 365, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPAzureADApp" }, { "Rank": 1, - "CommandName": "Get-PnPAzureADAppPermission", "Id": 366, - "Command": "Get-PnPAzureADAppPermission" + "Command": "Get-PnPAzureADAppPermission", + "CommandName": "Get-PnPAzureADAppPermission" }, { "Rank": 2, - "CommandName": "Get-PnPAzureADAppPermission", "Id": 367, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp" + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "CommandName": "Get-PnPAzureADAppPermission" }, { "Rank": 3, - "CommandName": "Get-PnPAzureADAppPermission", "Id": 368, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Get-PnPAzureADAppPermission" }, { "Rank": 1, - "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 369, - "Command": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission", + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Rank": 2, - "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 370, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Rank": 3, - "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 371, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Rank": 4, - "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 372, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Rank": 5, - "CommandName": "Get-PnPAzureADAppSitePermission", "Id": 373, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Rank": 1, - "CommandName": "Get-PnPAzureADGroup", "Id": 374, - "Command": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup", + "CommandName": "Get-PnPAzureADGroup" }, { "Rank": 2, - "CommandName": "Get-PnPAzureADGroup", "Id": 375, - "Command": "Get-PnPAzureADGroup -Identity $groupId" + "Command": "Get-PnPAzureADGroup -Identity $groupId", + "CommandName": "Get-PnPAzureADGroup" }, { "Rank": 3, - "CommandName": "Get-PnPAzureADGroup", "Id": 376, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "CommandName": "Get-PnPAzureADGroup" }, { "Rank": 4, - "CommandName": "Get-PnPAzureADGroup", "Id": 377, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "CommandName": "Get-PnPAzureADGroup" }, { "Rank": 5, - "CommandName": "Get-PnPAzureADGroup", "Id": 378, - "Command": "Get-PnPAzureADGroup -Identity $group" + "Command": "Get-PnPAzureADGroup -Identity $group", + "CommandName": "Get-PnPAzureADGroup" }, { "Rank": 1, - "CommandName": "Get-PnPAzureADGroupMember", "Id": 379, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId" + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "CommandName": "Get-PnPAzureADGroupMember" }, { "Rank": 2, - "CommandName": "Get-PnPAzureADGroupMember", "Id": 380, - "Command": "Get-PnPAzureADGroupMember -Identity $group" + "Command": "Get-PnPAzureADGroupMember -Identity $group", + "CommandName": "Get-PnPAzureADGroupMember" }, { "Rank": 1, - "CommandName": "Get-PnPAzureADGroupOwner", "Id": 381, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "CommandName": "Get-PnPAzureADGroupOwner" }, { "Rank": 2, - "CommandName": "Get-PnPAzureADGroupOwner", "Id": 382, - "Command": "Get-PnPAzureADGroupOwner -Identity $group" + "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "CommandName": "Get-PnPAzureADGroupOwner" }, { "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 383, - "Command": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal", + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 384, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Rank": 3, - "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 385, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Rank": 4, - "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 386, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Rank": 5, - "CommandName": "Get-PnPAzureADServicePrincipal", "Id": 387, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 388, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Id": 389, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 390, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Id": 391, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { "Rank": 1, - "CommandName": "Get-PnPAzureADUser", "Id": 392, - "Command": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser", + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 2, - "CommandName": "Get-PnPAzureADUser", "Id": 393, - "Command": "Get-PnPAzureADUser -EndIndex 50" + "Command": "Get-PnPAzureADUser -EndIndex 50", + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 3, - "CommandName": "Get-PnPAzureADUser", "Id": 394, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 4, - "CommandName": "Get-PnPAzureADUser", "Id": 395, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com" + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 5, - "CommandName": "Get-PnPAzureADUser", "Id": 396, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 6, - "CommandName": "Get-PnPAzureADUser", "Id": 397, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 7, - "CommandName": "Get-PnPAzureADUser", "Id": 398, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 8, - "CommandName": "Get-PnPAzureADUser", "Id": 399, - "Command": "Get-PnPAzureADUser -Delta" + "Command": "Get-PnPAzureADUser -Delta", + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 9, - "CommandName": "Get-PnPAzureADUser", "Id": 400, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 10, - "CommandName": "Get-PnPAzureADUser", "Id": 401, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 1, - "CommandName": "Get-PnPAzureCertificate", "Id": 402, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "CommandName": "Get-PnPAzureCertificate" }, { "Rank": 2, - "CommandName": "Get-PnPAzureCertificate", "Id": 403, - "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)", + "CommandName": "Get-PnPAzureCertificate" }, { "Rank": 3, - "CommandName": "Get-PnPAzureCertificate", "Id": 404, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "CommandName": "Get-PnPAzureCertificate" }, { "Rank": 1, - "CommandName": "Get-PnPBrowserIdleSignout", "Id": 405, - "Command": "Get-PnPBrowserIdleSignout" + "Command": "Get-PnPBrowserIdleSignout", + "CommandName": "Get-PnPBrowserIdleSignout" }, { "Rank": 1, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 406, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { "Rank": 2, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Id": 407, - "Command": "Get-PnPBuiltInDesignPackageVisibility" + "Command": "Get-PnPBuiltInDesignPackageVisibility", + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { "Rank": 1, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 408, - "Command": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Rank": 2, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 409, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Rank": 3, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 410, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Rank": 4, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 411, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Rank": 5, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Id": 412, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Rank": 1, - "CommandName": "Get-PnPChangeLog", "Id": 413, - "Command": "Get-PnPChangeLog" + "Command": "Get-PnPChangeLog", + "CommandName": "Get-PnPChangeLog" }, { "Rank": 2, - "CommandName": "Get-PnPChangeLog", "Id": 414, - "Command": "Get-PnPChangeLog -Nightly" + "Command": "Get-PnPChangeLog -Nightly", + "CommandName": "Get-PnPChangeLog" }, { "Rank": 1, - "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 415, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { "Rank": 2, - "CommandName": "Get-PnPCompatibleHubContentTypes", "Id": 416, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { "Rank": 1, - "CommandName": "Get-PnPContentType", "Id": 417, - "Command": "Get-PnPContentType" + "Command": "Get-PnPContentType", + "CommandName": "Get-PnPContentType" }, { "Rank": 2, - "CommandName": "Get-PnPContentType", "Id": 418, - "Command": "Get-PnPContentType -InSiteHierarchy" + "Command": "Get-PnPContentType -InSiteHierarchy", + "CommandName": "Get-PnPContentType" }, { "Rank": 3, - "CommandName": "Get-PnPContentType", "Id": 419, - "Command": "Get-PnPContentType -Identity \"Project Document\"" + "Command": "Get-PnPContentType -Identity \"Project Document\"", + "CommandName": "Get-PnPContentType" }, { "Rank": 4, - "CommandName": "Get-PnPContentType", "Id": 420, - "Command": "Get-PnPContentType -List \"Documents\"" + "Command": "Get-PnPContentType -List \"Documents\"", + "CommandName": "Get-PnPContentType" }, { "Rank": 5, - "CommandName": "Get-PnPContentType", "Id": 421, - "Command": "Get-PnPContentType -Includes \"SchemaXml\"" + "Command": "Get-PnPContentType -Includes \"SchemaXml\"", + "CommandName": "Get-PnPContentType" }, { "Rank": 1, - "CommandName": "Get-PnPContentTypePublishingStatus", "Id": 422, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "CommandName": "Get-PnPContentTypePublishingStatus" }, { "Rank": 1, - "CommandName": "Get-PnPCustomAction", "Id": 423, - "Command": "Get-PnPCustomAction" + "Command": "Get-PnPCustomAction", + "CommandName": "Get-PnPCustomAction" }, { "Rank": 2, - "CommandName": "Get-PnPCustomAction", "Id": 424, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Get-PnPCustomAction" }, { "Rank": 3, - "CommandName": "Get-PnPCustomAction", "Id": 425, - "Command": "Get-PnPCustomAction -Scope web" + "Command": "Get-PnPCustomAction -Scope web", + "CommandName": "Get-PnPCustomAction" }, { "Rank": 1, - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 426, - "Command": "Get-PnPDeletedMicrosoft365Group" + "Command": "Get-PnPDeletedMicrosoft365Group", + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { "Rank": 2, - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Id": 427, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { "Rank": 1, - "CommandName": "Get-PnPDeletedTeam", "Id": 428, - "Command": "Get-PnPDeletedTeam" + "Command": "Get-PnPDeletedTeam", + "CommandName": "Get-PnPDeletedTeam" }, { "Rank": 1, - "CommandName": "Get-PnPDiagnostics", "Id": 429, - "Command": "Get-PnPDiagnostics" + "Command": "Get-PnPDiagnostics", + "CommandName": "Get-PnPDiagnostics" }, { "Rank": 1, - "CommandName": "Get-PnPDisableSpacesActivation", "Id": 430, - "Command": "Get-PnPDisableSpacesActivation" + "Command": "Get-PnPDisableSpacesActivation", + "CommandName": "Get-PnPDisableSpacesActivation" }, { "Rank": 1, - "CommandName": "Get-PnPDocumentSetTemplate", "Id": 431, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "CommandName": "Get-PnPDocumentSetTemplate" }, { "Rank": 2, - "CommandName": "Get-PnPDocumentSetTemplate", "Id": 432, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "CommandName": "Get-PnPDocumentSetTemplate" }, { "Rank": 1, - "CommandName": "Get-PnPEventReceiver", "Id": 433, - "Command": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver", + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 2, - "CommandName": "Get-PnPEventReceiver", "Id": 434, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 3, - "CommandName": "Get-PnPEventReceiver", "Id": 435, - "Command": "Get-PnPEventReceiver -Identity MyReceiver" + "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 4, - "CommandName": "Get-PnPEventReceiver", "Id": 436, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"" + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 5, - "CommandName": "Get-PnPEventReceiver", "Id": 437, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 6, - "CommandName": "Get-PnPEventReceiver", "Id": 438, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 7, - "CommandName": "Get-PnPEventReceiver", "Id": 439, - "Command": "Get-PnPEventReceiver -Scope Site" + "Command": "Get-PnPEventReceiver -Scope Site", + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 8, - "CommandName": "Get-PnPEventReceiver", "Id": 440, - "Command": "Get-PnPEventReceiver -Scope Web" + "Command": "Get-PnPEventReceiver -Scope Web", + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 9, - "CommandName": "Get-PnPEventReceiver", "Id": 441, - "Command": "Get-PnPEventReceiver -Scope All" + "Command": "Get-PnPEventReceiver -Scope All", + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 1, - "CommandName": "Get-PnPException", "Id": 442, - "Command": "Get-PnPException" + "Command": "Get-PnPException", + "CommandName": "Get-PnPException" }, { "Rank": 2, - "CommandName": "Get-PnPException", "Id": 443, - "Command": "Get-PnPException -All" + "Command": "Get-PnPException -All", + "CommandName": "Get-PnPException" }, { "Rank": 1, - "CommandName": "Get-PnPExternalUser", "Id": 444, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "CommandName": "Get-PnPExternalUser" }, { "Rank": 2, - "CommandName": "Get-PnPExternalUser", "Id": 445, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "CommandName": "Get-PnPExternalUser" }, { "Rank": 1, - "CommandName": "Get-PnPFeature", "Id": 446, - "Command": "Get-PnPFeature" + "Command": "Get-PnPFeature", + "CommandName": "Get-PnPFeature" }, { "Rank": 2, - "CommandName": "Get-PnPFeature", "Id": 447, - "Command": "Get-PnPFeature -Scope Site" + "Command": "Get-PnPFeature -Scope Site", + "CommandName": "Get-PnPFeature" }, { "Rank": 3, - "CommandName": "Get-PnPFeature", "Id": 448, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPFeature" }, { "Rank": 4, - "CommandName": "Get-PnPFeature", "Id": 449, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "CommandName": "Get-PnPFeature" }, { "Rank": 1, - "CommandName": "Get-PnPField", "Id": 450, - "Command": "Get-PnPField" + "Command": "Get-PnPField", + "CommandName": "Get-PnPField" }, { "Rank": 2, - "CommandName": "Get-PnPField", "Id": 451, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "CommandName": "Get-PnPField" }, { "Rank": 3, - "CommandName": "Get-PnPField", "Id": 452, - "Command": "Get-PnPField -Group \"Custom Columns\"" + "Command": "Get-PnPField -Group \"Custom Columns\"", + "CommandName": "Get-PnPField" }, { "Rank": 1, - "CommandName": "Get-PnPFile", "Id": 453, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "CommandName": "Get-PnPFile" }, { "Rank": 2, - "CommandName": "Get-PnPFile", "Id": 454, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "CommandName": "Get-PnPFile" }, { "Rank": 3, - "CommandName": "Get-PnPFile", "Id": 455, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "CommandName": "Get-PnPFile" }, { "Rank": 4, - "CommandName": "Get-PnPFile", "Id": 456, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "CommandName": "Get-PnPFile" }, { "Rank": 5, - "CommandName": "Get-PnPFile", "Id": 457, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "CommandName": "Get-PnPFile" }, { "Rank": 6, - "CommandName": "Get-PnPFile", "Id": 458, - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", + "CommandName": "Get-PnPFile" }, { "Rank": 7, - "CommandName": "Get-PnPFile", "Id": 459, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "CommandName": "Get-PnPFile" }, { "Rank": 1, - "CommandName": "Get-PnPFileSharingLink", "Id": 460, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Get-PnPFileSharingLink" }, { "Rank": 1, - "CommandName": "Get-PnPFileVersion", "Id": 461, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "CommandName": "Get-PnPFileVersion" }, { "Rank": 2, - "CommandName": "Get-PnPFileVersion", "Id": 462, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "CommandName": "Get-PnPFileVersion" }, { "Rank": 1, - "CommandName": "Get-PnPFlow", "Id": 463, - "Command": "Get-PnPFlow -AsAdmin" + "Command": "Get-PnPFlow -AsAdmin", + "CommandName": "Get-PnPFlow" }, { "Rank": 2, - "CommandName": "Get-PnPFlow", "Id": 464, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe" + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "CommandName": "Get-PnPFlow" }, { "Rank": 3, - "CommandName": "Get-PnPFlow", "Id": 465, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "CommandName": "Get-PnPFlow" }, { "Rank": 1, - "CommandName": "Get-PnPFlowOwner", "Id": 466, - "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", + "CommandName": "Get-PnPFlowOwner" }, { "Rank": 1, - "CommandName": "Get-PnPFolder", "Id": 467, - "Command": "Get-PnPFolder" + "Command": "Get-PnPFolder", + "CommandName": "Get-PnPFolder" }, { "Rank": 2, - "CommandName": "Get-PnPFolder", "Id": 468, - "Command": "Get-PnPFolder -Url \"Shared Documents\"" + "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "CommandName": "Get-PnPFolder" }, { "Rank": 3, - "CommandName": "Get-PnPFolder", "Id": 469, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "CommandName": "Get-PnPFolder" }, { "Rank": 4, - "CommandName": "Get-PnPFolder", "Id": 470, - "Command": "Get-PnPFolder -List \"Shared Documents\"" + "Command": "Get-PnPFolder -List \"Shared Documents\"", + "CommandName": "Get-PnPFolder" }, { "Rank": 1, - "CommandName": "Get-PnPFolderFile", "Id": 471, - "Command": "Get-PnPFolderFile" + "Command": "Get-PnPFolderFile", + "CommandName": "Get-PnPFolderFile" }, { "Rank": 2, - "CommandName": "Get-PnPFolderFile", "Id": 472, - "Command": "Get-PnPFolderFile -Recurse" + "Command": "Get-PnPFolderFile -Recurse", + "CommandName": "Get-PnPFolderFile" }, { "Rank": 3, - "CommandName": "Get-PnPFolderFile", "Id": 473, - "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"" + "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderFile" }, { "Rank": 4, - "CommandName": "Get-PnPFolderFile", "Id": 474, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "CommandName": "Get-PnPFolderFile" }, { "Rank": 5, - "CommandName": "Get-PnPFolderFile", "Id": 475, - "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderFile" }, { "Rank": 1, - "CommandName": "Get-PnPFolderFolder", "Id": 476, - "Command": "Get-PnPFolderFolder" + "Command": "Get-PnPFolderFolder", + "CommandName": "Get-PnPFolderFolder" }, { "Rank": 2, - "CommandName": "Get-PnPFolderFolder", "Id": 477, - "Command": "Get-PnPFolderFolder -Recurse" + "Command": "Get-PnPFolderFolder -Recurse", + "CommandName": "Get-PnPFolderFolder" }, { "Rank": 3, - "CommandName": "Get-PnPFolderFolder", "Id": 478, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"" + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderFolder" }, { "Rank": 4, - "CommandName": "Get-PnPFolderFolder", "Id": 479, - "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" + "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "CommandName": "Get-PnPFolderFolder" }, { "Rank": 5, - "CommandName": "Get-PnPFolderFolder", "Id": 480, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "CommandName": "Get-PnPFolderFolder" }, { "Rank": 6, - "CommandName": "Get-PnPFolderFolder", "Id": 481, - "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderFolder" }, { "Rank": 1, - "CommandName": "Get-PnPFolderItem", "Id": 482, - "Command": "Get-PnPFolderItem" + "Command": "Get-PnPFolderItem", + "CommandName": "Get-PnPFolderItem" }, { "Rank": 2, - "CommandName": "Get-PnPFolderItem", "Id": 483, - "Command": "Get-PnPFolderItem -Recurse" + "Command": "Get-PnPFolderItem -Recurse", + "CommandName": "Get-PnPFolderItem" }, { "Rank": 3, - "CommandName": "Get-PnPFolderItem", "Id": 484, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "CommandName": "Get-PnPFolderItem" }, { "Rank": 4, - "CommandName": "Get-PnPFolderItem", "Id": 485, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "CommandName": "Get-PnPFolderItem" }, { "Rank": 5, - "CommandName": "Get-PnPFolderItem", "Id": 486, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "CommandName": "Get-PnPFolderItem" }, { "Rank": 6, - "CommandName": "Get-PnPFolderItem", "Id": 487, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderItem" }, { "Rank": 1, - "CommandName": "Get-PnPFolderSharingLink", "Id": 488, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Get-PnPFolderSharingLink" }, { "Rank": 1, - "CommandName": "Get-PnPFolderStorageMetric", "Id": 489, - "Command": "Get-PnPFolderStorageMetric" + "Command": "Get-PnPFolderStorageMetric", + "CommandName": "Get-PnPFolderStorageMetric" }, { "Rank": 2, - "CommandName": "Get-PnPFolderStorageMetric", "Id": 490, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "CommandName": "Get-PnPFolderStorageMetric" }, { "Rank": 3, - "CommandName": "Get-PnPFolderStorageMetric", "Id": 491, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "CommandName": "Get-PnPFolderStorageMetric" }, { "Rank": 1, - "CommandName": "Get-PnPFooter", "Id": 492, - "Command": "Get-PnPFooter" + "Command": "Get-PnPFooter", + "CommandName": "Get-PnPFooter" }, { "Rank": 1, - "CommandName": "Get-PnPGraphAccessToken", "Id": 493, - "Command": "Get-PnPGraphAccessToken" + "Command": "Get-PnPGraphAccessToken", + "CommandName": "Get-PnPGraphAccessToken" }, { "Rank": 2, - "CommandName": "Get-PnPGraphAccessToken", "Id": 494, - "Command": "Get-PnPGraphAccessToken -Decoded" + "Command": "Get-PnPGraphAccessToken -Decoded", + "CommandName": "Get-PnPGraphAccessToken" }, { "Rank": 1, - "CommandName": "Get-PnPGraphSubscription", "Id": 495, - "Command": "Get-PnPGraphSubscription" + "Command": "Get-PnPGraphSubscription", + "CommandName": "Get-PnPGraphSubscription" }, { "Rank": 2, - "CommandName": "Get-PnPGraphSubscription", "Id": 496, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "CommandName": "Get-PnPGraphSubscription" }, { "Rank": 1, - "CommandName": "Get-PnPGroup", "Id": 497, - "Command": "Get-PnPGroup" + "Command": "Get-PnPGroup", + "CommandName": "Get-PnPGroup" }, { "Rank": 2, - "CommandName": "Get-PnPGroup", "Id": 498, - "Command": "Get-PnPGroup -Identity 'My Site Users'" + "Command": "Get-PnPGroup -Identity 'My Site Users'", + "CommandName": "Get-PnPGroup" }, { "Rank": 3, - "CommandName": "Get-PnPGroup", "Id": 499, - "Command": "Get-PnPGroup -AssociatedMemberGroup" + "Command": "Get-PnPGroup -AssociatedMemberGroup", + "CommandName": "Get-PnPGroup" }, { "Rank": 1, - "CommandName": "Get-PnPGroupMember", "Id": 500, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "CommandName": "Get-PnPGroupMember" }, { "Rank": 2, - "CommandName": "Get-PnPGroupMember", "Id": 501, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "CommandName": "Get-PnPGroupMember" }, { "Rank": 1, - "CommandName": "Get-PnPGroupPermissions", "Id": 502, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "CommandName": "Get-PnPGroupPermissions" }, { "Rank": 1, - "CommandName": "Get-PnPHideDefaultThemes", "Id": 503, - "Command": "Get-PnPHideDefaultThemes" + "Command": "Get-PnPHideDefaultThemes", + "CommandName": "Get-PnPHideDefaultThemes" }, { "Rank": 1, - "CommandName": "Get-PnPHomePage", "Id": 504, - "Command": "Get-PnPHomePage" + "Command": "Get-PnPHomePage", + "CommandName": "Get-PnPHomePage" }, { "Rank": 1, - "CommandName": "Get-PnPHomeSite", "Id": 505, - "Command": "Get-PnPHomeSite" + "Command": "Get-PnPHomeSite", + "CommandName": "Get-PnPHomeSite" }, { "Rank": 2, - "CommandName": "Get-PnPHomeSite", "Id": 506, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "CommandName": "Get-PnPHomeSite" }, { "Rank": 3, - "CommandName": "Get-PnPHomeSite", "Id": 507, - "Command": "Get-PnPHomeSite -Detailed" + "Command": "Get-PnPHomeSite -Detailed", + "CommandName": "Get-PnPHomeSite" }, { "Rank": 1, - "CommandName": "Get-PnPHubSite", "Id": 508, - "Command": "Get-PnPHubSite" + "Command": "Get-PnPHubSite", + "CommandName": "Get-PnPHubSite" }, { "Rank": 2, - "CommandName": "Get-PnPHubSite", "Id": 509, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "CommandName": "Get-PnPHubSite" }, { "Rank": 3, - "CommandName": "Get-PnPHubSite", "Id": 510, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "CommandName": "Get-PnPHubSite" }, { "Rank": 1, - "CommandName": "Get-PnPHubSiteChild", "Id": 511, - "Command": "Get-PnPHubSiteChild" + "Command": "Get-PnPHubSiteChild", + "CommandName": "Get-PnPHubSiteChild" }, { "Rank": 2, - "CommandName": "Get-PnPHubSiteChild", "Id": 512, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "CommandName": "Get-PnPHubSiteChild" }, { "Rank": 1, - "CommandName": "Get-PnPInPlaceRecordsManagement", "Id": 513, - "Command": "Get-PnPInPlaceRecordsManagement" + "Command": "Get-PnPInPlaceRecordsManagement", + "CommandName": "Get-PnPInPlaceRecordsManagement" }, { "Rank": 1, - "CommandName": "Get-PnPIsSiteAliasAvailable", "Id": 514, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "CommandName": "Get-PnPIsSiteAliasAvailable" }, { "Rank": 1, - "CommandName": "Get-PnPJavaScriptLink", "Id": 515, - "Command": "Get-PnPJavaScriptLink" + "Command": "Get-PnPJavaScriptLink", + "CommandName": "Get-PnPJavaScriptLink" }, { "Rank": 2, - "CommandName": "Get-PnPJavaScriptLink", "Id": 516, - "Command": "Get-PnPJavaScriptLink -Scope All" + "Command": "Get-PnPJavaScriptLink -Scope All", + "CommandName": "Get-PnPJavaScriptLink" }, { "Rank": 3, - "CommandName": "Get-PnPJavaScriptLink", "Id": 517, - "Command": "Get-PnPJavaScriptLink -Scope Web" + "Command": "Get-PnPJavaScriptLink -Scope Web", + "CommandName": "Get-PnPJavaScriptLink" }, { "Rank": 4, - "CommandName": "Get-PnPJavaScriptLink", "Id": 518, - "Command": "Get-PnPJavaScriptLink -Scope Site" + "Command": "Get-PnPJavaScriptLink -Scope Site", + "CommandName": "Get-PnPJavaScriptLink" }, { "Rank": 5, - "CommandName": "Get-PnPJavaScriptLink", "Id": 519, - "Command": "Get-PnPJavaScriptLink -Name Test" + "Command": "Get-PnPJavaScriptLink -Name Test", + "CommandName": "Get-PnPJavaScriptLink" }, { "Rank": 1, - "CommandName": "Get-PnPKnowledgeHubSite", "Id": 520, - "Command": "Get-PnPKnowledgeHubSite" + "Command": "Get-PnPKnowledgeHubSite", + "CommandName": "Get-PnPKnowledgeHubSite" }, { "Rank": 1, - "CommandName": "Get-PnPLabel", "Id": 521, - "Command": "Get-PnPLabel" + "Command": "Get-PnPLabel", + "CommandName": "Get-PnPLabel" }, { "Rank": 2, - "CommandName": "Get-PnPLabel", "Id": 522, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "CommandName": "Get-PnPLabel" }, { "Rank": 1, - "CommandName": "Get-PnPLargeListOperationStatus", "Id": 523, - "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", + "CommandName": "Get-PnPLargeListOperationStatus" }, { "Rank": 1, - "CommandName": "Get-PnPList", "Id": 524, - "Command": "Get-PnPList" + "Command": "Get-PnPList", + "CommandName": "Get-PnPList" }, { "Rank": 2, - "CommandName": "Get-PnPList", "Id": 525, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Get-PnPList" }, { "Rank": 3, - "CommandName": "Get-PnPList", "Id": 526, - "Command": "Get-PnPList -Identity Lists/Announcements" + "Command": "Get-PnPList -Identity Lists/Announcements", + "CommandName": "Get-PnPList" }, { "Rank": 4, - "CommandName": "Get-PnPList", "Id": 527, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "CommandName": "Get-PnPList" }, { "Rank": 5, - "CommandName": "Get-PnPList", "Id": 528, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "CommandName": "Get-PnPList" }, { "Rank": 1, - "CommandName": "Get-PnPListDesign", "Id": 529, - "Command": "Get-PnPListDesign" + "Command": "Get-PnPListDesign", + "CommandName": "Get-PnPListDesign" }, { "Rank": 2, - "CommandName": "Get-PnPListDesign", "Id": 530, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPListDesign" }, { "Rank": 3, - "CommandName": "Get-PnPListDesign", "Id": 531, - "Command": "Get-PnPListDesign -Identity ListEvent" + "Command": "Get-PnPListDesign -Identity ListEvent", + "CommandName": "Get-PnPListDesign" }, { "Rank": 1, - "CommandName": "Get-PnPListInformationRightsManagement", "Id": 532, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "CommandName": "Get-PnPListInformationRightsManagement" }, { "Rank": 1, - "CommandName": "Get-PnPListItem", "Id": 533, - "Command": "Get-PnPListItem -List Tasks" + "Command": "Get-PnPListItem -List Tasks", + "CommandName": "Get-PnPListItem" }, { "Rank": 2, - "CommandName": "Get-PnPListItem", "Id": 534, - "Command": "Get-PnPListItem -List Tasks -Id 1" + "Command": "Get-PnPListItem -List Tasks -Id 1", + "CommandName": "Get-PnPListItem" }, { "Rank": 3, - "CommandName": "Get-PnPListItem", "Id": 535, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "CommandName": "Get-PnPListItem" }, { "Rank": 4, - "CommandName": "Get-PnPListItem", "Id": 536, - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "CommandName": "Get-PnPListItem" }, { "Rank": 5, - "CommandName": "Get-PnPListItem", "Id": 537, - "Command": "Get-PnPListItem -List Tasks -Query \"\"" + "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "CommandName": "Get-PnPListItem" }, { "Rank": 6, - "CommandName": "Get-PnPListItem", "Id": 538, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000" + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "CommandName": "Get-PnPListItem" }, { "Rank": 7, - "CommandName": "Get-PnPListItem", "Id": 539, - "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) }", + "CommandName": "Get-PnPListItem" }, { "Rank": 8, - "CommandName": "Get-PnPListItem", "Id": 540, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "CommandName": "Get-PnPListItem" }, { "Rank": 9, - "CommandName": "Get-PnPListItem", "Id": 541, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "CommandName": "Get-PnPListItem" }, { "Rank": 1, - "CommandName": "Get-PnPListItemAttachment", "Id": 542, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", + "CommandName": "Get-PnPListItemAttachment" }, { "Rank": 2, - "CommandName": "Get-PnPListItemAttachment", "Id": 543, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "CommandName": "Get-PnPListItemAttachment" }, { "Rank": 1, - "CommandName": "Get-PnPListItemComment", "Id": 544, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1" + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "CommandName": "Get-PnPListItemComment" }, { "Rank": 1, - "CommandName": "Get-PnPListItemPermission", "Id": 545, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "CommandName": "Get-PnPListItemPermission" }, { "Rank": 1, - "CommandName": "Get-PnPListItemVersion", "Id": 546, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "CommandName": "Get-PnPListItemVersion" }, { "Rank": 1, - "CommandName": "Get-PnPListPermissions", "Id": 547, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "CommandName": "Get-PnPListPermissions" }, { "Rank": 2, - "CommandName": "Get-PnPListPermissions", "Id": 548, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "CommandName": "Get-PnPListPermissions" }, { "Rank": 1, - "CommandName": "Get-PnPListRecordDeclaration", "Id": 549, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "CommandName": "Get-PnPListRecordDeclaration" }, { "Rank": 1, - "CommandName": "Get-PnPMasterPage", "Id": 550, - "Command": "Get-PnPMasterPage" + "Command": "Get-PnPMasterPage", + "CommandName": "Get-PnPMasterPage" }, { "Rank": 1, - "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 551, - "Command": "Get-PnPMessageCenterAnnouncement" + "Command": "Get-PnPMessageCenterAnnouncement", + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { "Rank": 2, - "CommandName": "Get-PnPMessageCenterAnnouncement", "Id": 552, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 553, - "Command": "Get-PnPMicrosoft365ExpiringGroup" + "Command": "Get-PnPMicrosoft365ExpiringGroup", + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Id": 554, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365Group", "Id": 555, - "Command": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365Group", + "CommandName": "Get-PnPMicrosoft365Group" }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365Group", "Id": 556, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId" + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365Group" }, { "Rank": 3, - "CommandName": "Get-PnPMicrosoft365Group", "Id": 557, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "CommandName": "Get-PnPMicrosoft365Group" }, { "Rank": 4, - "CommandName": "Get-PnPMicrosoft365Group", "Id": 558, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "CommandName": "Get-PnPMicrosoft365Group" }, { "Rank": 5, - "CommandName": "Get-PnPMicrosoft365Group", "Id": 559, - "Command": "Get-PnPMicrosoft365Group -Identity $group" + "Command": "Get-PnPMicrosoft365Group -Identity $group", + "CommandName": "Get-PnPMicrosoft365Group" }, { "Rank": 6, - "CommandName": "Get-PnPMicrosoft365Group", "Id": 560, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "CommandName": "Get-PnPMicrosoft365Group" }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 561, - "Command": "Get-PnPMicrosoft365GroupEndpoint" + "Command": "Get-PnPMicrosoft365GroupEndpoint", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 562, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Id": 563, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 564, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 565, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Id": 566, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 567, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Id": 568, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 569, - "Command": "Get-PnPMicrosoft365GroupSettings" + "Command": "Get-PnPMicrosoft365GroupSettings", + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Id": 570, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 571, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates" + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 572, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 573, - "Command": "Get-PnPMicrosoft365GroupTeam" + "Command": "Get-PnPMicrosoft365GroupTeam", + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 574, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Id": 575, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 576, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 577, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 578, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Rank": 1, - "CommandName": "Get-PnPNavigationNode", "Id": 579, - "Command": "Get-PnPNavigationNode" + "Command": "Get-PnPNavigationNode", + "CommandName": "Get-PnPNavigationNode" }, { "Rank": 2, - "CommandName": "Get-PnPNavigationNode", "Id": 580, - "Command": "Get-PnPNavigationNode -Location QuickLaunch" + "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "CommandName": "Get-PnPNavigationNode" }, { "Rank": 3, - "CommandName": "Get-PnPNavigationNode", "Id": 581, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar" + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "CommandName": "Get-PnPNavigationNode" }, { "Rank": 1, - "CommandName": "Get-PnPOrgAssetsLibrary", "Id": 582, - "Command": "Get-PnPOrgAssetsLibrary" + "Command": "Get-PnPOrgAssetsLibrary", + "CommandName": "Get-PnPOrgAssetsLibrary" }, { "Rank": 1, - "CommandName": "Get-PnPOrgNewsSite", "Id": 583, - "Command": "Get-PnPOrgNewsSite" + "Command": "Get-PnPOrgNewsSite", + "CommandName": "Get-PnPOrgNewsSite" }, { "Rank": 1, - "CommandName": "Get-PnPPage", "Id": 584, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "CommandName": "Get-PnPPage" }, { "Rank": 2, - "CommandName": "Get-PnPPage", "Id": 585, - "Command": "Get-PnPPage \"MyPage\"" + "Command": "Get-PnPPage \"MyPage\"", + "CommandName": "Get-PnPPage" }, { "Rank": 3, - "CommandName": "Get-PnPPage", "Id": 586, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "CommandName": "Get-PnPPage" }, { "Rank": 4, - "CommandName": "Get-PnPPage", "Id": 587, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "CommandName": "Get-PnPPage" }, { "Rank": 1, - "CommandName": "Get-PnPPageComponent", "Id": 588, - "Command": "Get-PnPPageComponent -Page Home" + "Command": "Get-PnPPageComponent -Page Home", + "CommandName": "Get-PnPPageComponent" }, { "Rank": 2, - "CommandName": "Get-PnPPageComponent", "Id": 589, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPPageComponent" }, { "Rank": 3, - "CommandName": "Get-PnPPageComponent", "Id": 590, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable" + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "CommandName": "Get-PnPPageComponent" }, { "Rank": 1, - "CommandName": "Get-PnPPlannerBucket", "Id": 591, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "CommandName": "Get-PnPPlannerBucket" }, { "Rank": 1, - "CommandName": "Get-PnPPlannerConfiguration", "Id": 592, - "Command": "Get-PnPPlannerConfiguration" + "Command": "Get-PnPPlannerConfiguration", + "CommandName": "Get-PnPPlannerConfiguration" }, { "Rank": 1, - "CommandName": "Get-PnPPlannerPlan", "Id": 593, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "CommandName": "Get-PnPPlannerPlan" }, { "Rank": 2, - "CommandName": "Get-PnPPlannerPlan", "Id": 594, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "CommandName": "Get-PnPPlannerPlan" }, { "Rank": 3, - "CommandName": "Get-PnPPlannerPlan", "Id": 595, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "CommandName": "Get-PnPPlannerPlan" }, { "Rank": 1, - "CommandName": "Get-PnPPlannerRosterMember", "Id": 596, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "CommandName": "Get-PnPPlannerRosterMember" }, { "Rank": 1, - "CommandName": "Get-PnPPlannerRosterPlan", "Id": 597, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "CommandName": "Get-PnPPlannerRosterPlan" }, { "Rank": 2, - "CommandName": "Get-PnPPlannerRosterPlan", "Id": 598, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPPlannerRosterPlan" }, { "Rank": 1, - "CommandName": "Get-PnPPlannerTask", "Id": 599, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "CommandName": "Get-PnPPlannerTask" }, { "Rank": 2, - "CommandName": "Get-PnPPlannerTask", "Id": 600, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "CommandName": "Get-PnPPlannerTask" }, { "Rank": 3, - "CommandName": "Get-PnPPlannerTask", "Id": 601, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "CommandName": "Get-PnPPlannerTask" }, { "Rank": 1, - "CommandName": "Get-PnPPlannerUserPolicy", "Id": 602, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPPlannerUserPolicy" }, { "Rank": 1, - "CommandName": "Get-PnPPowerPlatformConnector", "Id": 603, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "CommandName": "Get-PnPPowerPlatformConnector" }, { "Rank": 1, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 604, - "Command": "Get-PnPPowerPlatformEnvironment" + "Command": "Get-PnPPowerPlatformEnvironment", + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Rank": 2, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 605, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Rank": 3, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Id": 606, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Rank": 1, - "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Id": 607, - "Command": "Get-PnPPowerShellTelemetryEnabled" + "Command": "Get-PnPPowerShellTelemetryEnabled", + "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { "Rank": 1, - "CommandName": "Get-PnPPropertyBag", "Id": 608, - "Command": "Get-PnPPropertyBag" + "Command": "Get-PnPPropertyBag", + "CommandName": "Get-PnPPropertyBag" }, { "Rank": 2, - "CommandName": "Get-PnPPropertyBag", "Id": 609, - "Command": "Get-PnPPropertyBag -Key MyKey" + "Command": "Get-PnPPropertyBag -Key MyKey", + "CommandName": "Get-PnPPropertyBag" }, { "Rank": 3, - "CommandName": "Get-PnPPropertyBag", "Id": 610, - "Command": "Get-PnPPropertyBag -Folder /MyFolder" + "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "CommandName": "Get-PnPPropertyBag" }, { "Rank": 4, - "CommandName": "Get-PnPPropertyBag", "Id": 611, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "CommandName": "Get-PnPPropertyBag" }, { "Rank": 5, - "CommandName": "Get-PnPPropertyBag", "Id": 612, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "CommandName": "Get-PnPPropertyBag" }, { "Rank": 1, - "CommandName": "Get-PnPPublishingImageRendition", "Id": 613, - "Command": "Get-PnPPublishingImageRendition" + "Command": "Get-PnPPublishingImageRendition", + "CommandName": "Get-PnPPublishingImageRendition" }, { "Rank": 2, - "CommandName": "Get-PnPPublishingImageRendition", "Id": 614, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "CommandName": "Get-PnPPublishingImageRendition" }, { "Rank": 3, - "CommandName": "Get-PnPPublishingImageRendition", "Id": 615, - "Command": "Get-PnPPublishingImageRendition -Identity 2" + "Command": "Get-PnPPublishingImageRendition -Identity 2", + "CommandName": "Get-PnPPublishingImageRendition" }, { "Rank": 1, - "CommandName": "Get-PnPRecycleBinItem", "Id": 616, - "Command": "Get-PnPRecycleBinItem" + "Command": "Get-PnPRecycleBinItem", + "CommandName": "Get-PnPRecycleBinItem" }, { "Rank": 2, - "CommandName": "Get-PnPRecycleBinItem", "Id": 617, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "CommandName": "Get-PnPRecycleBinItem" }, { "Rank": 3, - "CommandName": "Get-PnPRecycleBinItem", "Id": 618, - "Command": "Get-PnPRecycleBinItem -FirstStage" + "Command": "Get-PnPRecycleBinItem -FirstStage", + "CommandName": "Get-PnPRecycleBinItem" }, { "Rank": 4, - "CommandName": "Get-PnPRecycleBinItem", "Id": 619, - "Command": "Get-PnPRecycleBinItem -SecondStage" + "Command": "Get-PnPRecycleBinItem -SecondStage", + "CommandName": "Get-PnPRecycleBinItem" }, { "Rank": 5, - "CommandName": "Get-PnPRecycleBinItem", "Id": 620, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000" + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "CommandName": "Get-PnPRecycleBinItem" }, { "Rank": 1, - "CommandName": "Get-PnPRequestAccessEmails", "Id": 621, - "Command": "Get-PnPRequestAccessEmails" + "Command": "Get-PnPRequestAccessEmails", + "CommandName": "Get-PnPRequestAccessEmails" }, { "Rank": 1, - "CommandName": "Get-PnPRetentionLabel", "Id": 622, - "Command": "Get-PnPRetentionLabel" + "Command": "Get-PnPRetentionLabel", + "CommandName": "Get-PnPRetentionLabel" }, { "Rank": 2, - "CommandName": "Get-PnPRetentionLabel", "Id": 623, - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "CommandName": "Get-PnPRetentionLabel" }, { "Rank": 1, - "CommandName": "Get-PnPRoleDefinition", "Id": 624, - "Command": "Get-PnPRoleDefinition" + "Command": "Get-PnPRoleDefinition", + "CommandName": "Get-PnPRoleDefinition" }, { "Rank": 2, - "CommandName": "Get-PnPRoleDefinition", "Id": 625, - "Command": "Get-PnPRoleDefinition -Identity Read" + "Command": "Get-PnPRoleDefinition -Identity Read", + "CommandName": "Get-PnPRoleDefinition" }, { "Rank": 3, - "CommandName": "Get-PnPRoleDefinition", "Id": 626, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "CommandName": "Get-PnPRoleDefinition" }, { "Rank": 1, - "CommandName": "Get-PnPSearchConfiguration", "Id": 627, - "Command": "Get-PnPSearchConfiguration" + "Command": "Get-PnPSearchConfiguration", + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 2, - "CommandName": "Get-PnPSearchConfiguration", "Id": 628, - "Command": "Get-PnPSearchConfiguration -Scope Site" + "Command": "Get-PnPSearchConfiguration -Scope Site", + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 3, - "CommandName": "Get-PnPSearchConfiguration", "Id": 629, - "Command": "Get-PnPSearchConfiguration -Scope Subscription" + "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 4, - "CommandName": "Get-PnPSearchConfiguration", "Id": 630, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 5, - "CommandName": "Get-PnPSearchConfiguration", "Id": 631, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 6, - "CommandName": "Get-PnPSearchConfiguration", "Id": 632, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 7, - "CommandName": "Get-PnPSearchConfiguration", "Id": 633, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 8, - "CommandName": "Get-PnPSearchConfiguration", "Id": 634, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 1, - "CommandName": "Get-PnPSearchCrawlLog", "Id": 635, - "Command": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchCrawlLog", + "CommandName": "Get-PnPSearchCrawlLog" }, { "Rank": 2, - "CommandName": "Get-PnPSearchCrawlLog", "Id": 636, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "CommandName": "Get-PnPSearchCrawlLog" }, { "Rank": 3, - "CommandName": "Get-PnPSearchCrawlLog", "Id": 637, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "CommandName": "Get-PnPSearchCrawlLog" }, { "Rank": 4, - "CommandName": "Get-PnPSearchCrawlLog", "Id": 638, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "CommandName": "Get-PnPSearchCrawlLog" }, { "Rank": 5, - "CommandName": "Get-PnPSearchCrawlLog", "Id": 639, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "CommandName": "Get-PnPSearchCrawlLog" }, { "Rank": 6, - "CommandName": "Get-PnPSearchCrawlLog", "Id": 640, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "CommandName": "Get-PnPSearchCrawlLog" }, { "Rank": 7, - "CommandName": "Get-PnPSearchCrawlLog", "Id": 641, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "CommandName": "Get-PnPSearchCrawlLog" }, { "Rank": 1, - "CommandName": "Get-PnPSearchSettings", "Id": 642, - "Command": "Get-PnPSearchSettings" + "Command": "Get-PnPSearchSettings", + "CommandName": "Get-PnPSearchSettings" }, { "Rank": 1, - "CommandName": "Get-PnPServiceCurrentHealth", "Id": 643, - "Command": "Get-PnPServiceCurrentHealth" + "Command": "Get-PnPServiceCurrentHealth", + "CommandName": "Get-PnPServiceCurrentHealth" }, { "Rank": 2, - "CommandName": "Get-PnPServiceCurrentHealth", "Id": 644, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "CommandName": "Get-PnPServiceCurrentHealth" }, { "Rank": 1, - "CommandName": "Get-PnPServiceHealthIssue", "Id": 645, - "Command": "Get-PnPServiceHealthIssue" + "Command": "Get-PnPServiceHealthIssue", + "CommandName": "Get-PnPServiceHealthIssue" }, { "Rank": 2, - "CommandName": "Get-PnPServiceHealthIssue", "Id": 646, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "CommandName": "Get-PnPServiceHealthIssue" }, { "Rank": 1, - "CommandName": "Get-PnPSharePointAddIn", "Id": 647, - "Command": "Get-PnPSharePointAddIn" + "Command": "Get-PnPSharePointAddIn", + "CommandName": "Get-PnPSharePointAddIn" }, { "Rank": 2, - "CommandName": "Get-PnPSharePointAddIn", "Id": 648, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites" + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "CommandName": "Get-PnPSharePointAddIn" }, { "Rank": 1, - "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Id": 649, - "Command": "Get-PnPSharingForNonOwnersOfSite" + "Command": "Get-PnPSharingForNonOwnersOfSite", + "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { "Rank": 1, - "CommandName": "Get-PnPSite", "Id": 650, - "Command": "Get-PnPSite" + "Command": "Get-PnPSite", + "CommandName": "Get-PnPSite" }, { "Rank": 2, - "CommandName": "Get-PnPSite", "Id": 651, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "CommandName": "Get-PnPSite" }, { "Rank": 1, - "CommandName": "Get-PnPSiteClosure", "Id": 652, - "Command": "Get-PnPSiteClosure" + "Command": "Get-PnPSiteClosure", + "CommandName": "Get-PnPSiteClosure" }, { "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAdmin", "Id": 653, - "Command": "Get-PnPSiteCollectionAdmin" + "Command": "Get-PnPSiteCollectionAdmin", + "CommandName": "Get-PnPSiteCollectionAdmin" }, { "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 654, - "Command": "Get-PnPSiteCollectionAppCatalog" + "Command": "Get-PnPSiteCollectionAppCatalog", + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Rank": 2, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 655, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Rank": 3, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Id": 656, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Rank": 1, - "CommandName": "Get-PnPSiteCollectionTermStore", "Id": 657, - "Command": "Get-PnPSiteCollectionTermStore" + "Command": "Get-PnPSiteCollectionTermStore", + "CommandName": "Get-PnPSiteCollectionTermStore" }, { "Rank": 1, - "CommandName": "Get-PnPSiteDesign", "Id": 658, - "Command": "Get-PnPSiteDesign" + "Command": "Get-PnPSiteDesign", + "CommandName": "Get-PnPSiteDesign" }, { "Rank": 2, - "CommandName": "Get-PnPSiteDesign", "Id": 659, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteDesign" }, { "Rank": 1, - "CommandName": "Get-PnPSiteDesignRights", "Id": 660, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteDesignRights" }, { "Rank": 1, - "CommandName": "Get-PnPSiteDesignRun", "Id": 661, - "Command": "Get-PnPSiteDesignRun" + "Command": "Get-PnPSiteDesignRun", + "CommandName": "Get-PnPSiteDesignRun" }, { "Rank": 2, - "CommandName": "Get-PnPSiteDesignRun", "Id": 662, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "CommandName": "Get-PnPSiteDesignRun" }, { "Rank": 1, - "CommandName": "Get-PnPSiteDesignTask", "Id": 663, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "CommandName": "Get-PnPSiteDesignTask" }, { "Rank": 2, - "CommandName": "Get-PnPSiteDesignTask", "Id": 664, - "Command": "Get-PnPSiteDesignTask" + "Command": "Get-PnPSiteDesignTask", + "CommandName": "Get-PnPSiteDesignTask" }, { "Rank": 3, - "CommandName": "Get-PnPSiteDesignTask", "Id": 665, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "CommandName": "Get-PnPSiteDesignTask" }, { "Rank": 1, - "CommandName": "Get-PnPSiteGroup", "Id": 666, - "Command": "Get-PnPSiteGroup" + "Command": "Get-PnPSiteGroup", + "CommandName": "Get-PnPSiteGroup" }, { "Rank": 2, - "CommandName": "Get-PnPSiteGroup", "Id": 667, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "CommandName": "Get-PnPSiteGroup" }, { "Rank": 3, - "CommandName": "Get-PnPSiteGroup", "Id": 668, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "CommandName": "Get-PnPSiteGroup" }, { "Rank": 4, - "CommandName": "Get-PnPSiteGroup", "Id": 669, - "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\"", + "CommandName": "Get-PnPSiteGroup" }, { "Rank": 1, - "CommandName": "Get-PnPSitePolicy", "Id": 670, - "Command": "Get-PnPSitePolicy" + "Command": "Get-PnPSitePolicy", + "CommandName": "Get-PnPSitePolicy" }, { "Rank": 2, - "CommandName": "Get-PnPSitePolicy", "Id": 671, - "Command": "Get-PnPSitePolicy -AllAvailable" + "Command": "Get-PnPSitePolicy -AllAvailable", + "CommandName": "Get-PnPSitePolicy" }, { "Rank": 3, - "CommandName": "Get-PnPSitePolicy", "Id": 672, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "CommandName": "Get-PnPSitePolicy" }, { "Rank": 1, - "CommandName": "Get-PnPSiteScript", "Id": 673, - "Command": "Get-PnPSiteScript" + "Command": "Get-PnPSiteScript", + "CommandName": "Get-PnPSiteScript" }, { "Rank": 2, - "CommandName": "Get-PnPSiteScript", "Id": 674, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteScript" }, { "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromList", "Id": 675, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "CommandName": "Get-PnPSiteScriptFromList" }, { "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromList", "Id": 676, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "CommandName": "Get-PnPSiteScriptFromList" }, { "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromList", "Id": 677, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "CommandName": "Get-PnPSiteScriptFromList" }, { "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 678, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 679, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 680, - "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\"", + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Rank": 4, - "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 681, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Rank": 5, - "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 682, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Rank": 6, - "CommandName": "Get-PnPSiteScriptFromWeb", "Id": 683, - "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", + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Rank": 1, - "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 684, - "Command": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteSearchQueryResults", + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Rank": 2, - "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 685, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Rank": 3, - "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 686, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Rank": 4, - "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 687, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Rank": 5, - "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 688, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Rank": 6, - "CommandName": "Get-PnPSiteSearchQueryResults", "Id": 689, - "Command": "Get-PnPSiteSearchQueryResults -All" + "Command": "Get-PnPSiteSearchQueryResults -All", + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Rank": 1, - "CommandName": "Get-PnPSiteSensitivityLabel", "Id": 690, - "Command": "Get-PnPSiteSensitivityLabel" + "Command": "Get-PnPSiteSensitivityLabel", + "CommandName": "Get-PnPSiteSensitivityLabel" }, { "Rank": 1, - "CommandName": "Get-PnPSiteTemplate", "Id": 691, - "Command": "Get-PnPSiteTemplate -Out template.pnp" + "Command": "Get-PnPSiteTemplate -Out template.pnp", + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 2, - "CommandName": "Get-PnPSiteTemplate", "Id": 692, - "Command": "Get-PnPSiteTemplate -Out template.xml" + "Command": "Get-PnPSiteTemplate -Out template.xml", + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 3, - "CommandName": "Get-PnPSiteTemplate", "Id": 693, - "Command": "Get-PnPSiteTemplate -Out template.md" + "Command": "Get-PnPSiteTemplate -Out template.md", + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 4, - "CommandName": "Get-PnPSiteTemplate", "Id": 694, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 5, - "CommandName": "Get-PnPSiteTemplate", "Id": 695, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 6, - "CommandName": "Get-PnPSiteTemplate", "Id": 696, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 7, - "CommandName": "Get-PnPSiteTemplate", "Id": 697, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 8, - "CommandName": "Get-PnPSiteTemplate", "Id": 698, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 9, - "CommandName": "Get-PnPSiteTemplate", "Id": 699, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 10, - "CommandName": "Get-PnPSiteTemplate", "Id": 700, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 11, - "CommandName": "Get-PnPSiteTemplate", "Id": 701, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 12, - "CommandName": "Get-PnPSiteTemplate", "Id": 702, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 13, - "CommandName": "Get-PnPSiteTemplate", "Id": 703, - "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\"", + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 14, - "CommandName": "Get-PnPSiteTemplate", "Id": 704, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 1, - "CommandName": "Get-PnPSiteUserInvitations", "Id": 705, - "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", + "CommandName": "Get-PnPSiteUserInvitations" }, { "Rank": 1, - "CommandName": "Get-PnPSiteVersionPolicy", "Id": 706, - "Command": "Get-PnPSiteVersionPolicy" + "Command": "Get-PnPSiteVersionPolicy", + "CommandName": "Get-PnPSiteVersionPolicy" }, { "Rank": 1, - "CommandName": "Get-PnPStorageEntity", "Id": 707, - "Command": "Get-PnPStorageEntity" + "Command": "Get-PnPStorageEntity", + "CommandName": "Get-PnPStorageEntity" }, { "Rank": 2, - "CommandName": "Get-PnPStorageEntity", "Id": 708, - "Command": "Get-PnPStorageEntity -Key MyKey" + "Command": "Get-PnPStorageEntity -Key MyKey", + "CommandName": "Get-PnPStorageEntity" }, { "Rank": 3, - "CommandName": "Get-PnPStorageEntity", "Id": 709, - "Command": "Get-PnPStorageEntity -Scope Site" + "Command": "Get-PnPStorageEntity -Scope Site", + "CommandName": "Get-PnPStorageEntity" }, { "Rank": 4, - "CommandName": "Get-PnPStorageEntity", "Id": 710, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "CommandName": "Get-PnPStorageEntity" }, { "Rank": 1, - "CommandName": "Get-PnPStoredCredential", "Id": 711, - "Command": "Get-PnPStoredCredential -Name O365" + "Command": "Get-PnPStoredCredential -Name O365", + "CommandName": "Get-PnPStoredCredential" }, { "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Id": 712, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Id": 713, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { "Rank": 1, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Id": 714, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { "Rank": 1, - "CommandName": "Get-PnPSubWeb", "Id": 715, - "Command": "Get-PnPSubWeb" + "Command": "Get-PnPSubWeb", + "CommandName": "Get-PnPSubWeb" }, { "Rank": 2, - "CommandName": "Get-PnPSubWeb", "Id": 716, - "Command": "Get-PnPSubWeb -Recurse" + "Command": "Get-PnPSubWeb -Recurse", + "CommandName": "Get-PnPSubWeb" }, { "Rank": 3, - "CommandName": "Get-PnPSubWeb", "Id": 717, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "CommandName": "Get-PnPSubWeb" }, { "Rank": 4, - "CommandName": "Get-PnPSubWeb", "Id": 718, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "CommandName": "Get-PnPSubWeb" }, { "Rank": 5, - "CommandName": "Get-PnPSubWeb", "Id": 719, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "CommandName": "Get-PnPSubWeb" }, { "Rank": 1, - "CommandName": "Get-PnPSyntexModel", "Id": 720, - "Command": "Get-PnPSyntexModel" + "Command": "Get-PnPSyntexModel", + "CommandName": "Get-PnPSyntexModel" }, { "Rank": 2, - "CommandName": "Get-PnPSyntexModel", "Id": 721, - "Command": "Get-PnPSyntexModel -Identity 1" + "Command": "Get-PnPSyntexModel -Identity 1", + "CommandName": "Get-PnPSyntexModel" }, { "Rank": 3, - "CommandName": "Get-PnPSyntexModel", "Id": 722, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "CommandName": "Get-PnPSyntexModel" }, { "Rank": 1, - "CommandName": "Get-PnPSyntexModelPublication", "Id": 723, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "CommandName": "Get-PnPSyntexModelPublication" }, { "Rank": 1, - "CommandName": "Get-PnPTaxonomyItem", "Id": 724, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "CommandName": "Get-PnPTaxonomyItem" }, { "Rank": 1, - "CommandName": "Get-PnPTeamsApp", "Id": 725, - "Command": "Get-PnPTeamsApp" + "Command": "Get-PnPTeamsApp", + "CommandName": "Get-PnPTeamsApp" }, { "Rank": 2, - "CommandName": "Get-PnPTeamsApp", "Id": 726, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "CommandName": "Get-PnPTeamsApp" }, { "Rank": 3, - "CommandName": "Get-PnPTeamsApp", "Id": 727, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "CommandName": "Get-PnPTeamsApp" }, { "Rank": 1, - "CommandName": "Get-PnPTeamsChannel", "Id": 728, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "CommandName": "Get-PnPTeamsChannel" }, { "Rank": 2, - "CommandName": "Get-PnPTeamsChannel", "Id": 729, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "CommandName": "Get-PnPTeamsChannel" }, { "Rank": 3, - "CommandName": "Get-PnPTeamsChannel", "Id": 730, - "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\"", + "CommandName": "Get-PnPTeamsChannel" }, { "Rank": 1, - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 731, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { "Rank": 2, - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Id": 732, - "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\"", + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessage", "Id": 733, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsChannelMessage" }, { "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessage", "Id": 734, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "CommandName": "Get-PnPTeamsChannelMessage" }, { "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 735, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessageReply", "Id": 736, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { "Rank": 1, - "CommandName": "Get-PnPTeamsChannelUser", "Id": 737, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsChannelUser" }, { "Rank": 2, - "CommandName": "Get-PnPTeamsChannelUser", "Id": 738, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "CommandName": "Get-PnPTeamsChannelUser" }, { "Rank": 3, - "CommandName": "Get-PnPTeamsChannelUser", "Id": 739, - "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", + "CommandName": "Get-PnPTeamsChannelUser" }, { "Rank": 4, - "CommandName": "Get-PnPTeamsChannelUser", "Id": 740, - "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", + "CommandName": "Get-PnPTeamsChannelUser" }, { "Rank": 1, - "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 741, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { "Rank": 2, - "CommandName": "Get-PnPTeamsPrimaryChannel", "Id": 742, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { "Rank": 1, - "CommandName": "Get-PnPTeamsTab", "Id": 743, - "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", + "CommandName": "Get-PnPTeamsTab" }, { "Rank": 2, - "CommandName": "Get-PnPTeamsTab", "Id": 744, - "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\"", + "CommandName": "Get-PnPTeamsTab" }, { "Rank": 3, - "CommandName": "Get-PnPTeamsTab", "Id": 745, - "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", + "CommandName": "Get-PnPTeamsTab" }, { "Rank": 4, - "CommandName": "Get-PnPTeamsTab", "Id": 746, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsTab" }, { "Rank": 5, - "CommandName": "Get-PnPTeamsTab", "Id": 747, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "CommandName": "Get-PnPTeamsTab" }, { "Rank": 1, - "CommandName": "Get-PnPTeamsTag", "Id": 748, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "CommandName": "Get-PnPTeamsTag" }, { "Rank": 2, - "CommandName": "Get-PnPTeamsTag", "Id": 749, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "CommandName": "Get-PnPTeamsTag" }, { "Rank": 1, - "CommandName": "Get-PnPTeamsTeam", "Id": 750, - "Command": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsTeam", + "CommandName": "Get-PnPTeamsTeam" }, { "Rank": 2, - "CommandName": "Get-PnPTeamsTeam", "Id": 751, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "CommandName": "Get-PnPTeamsTeam" }, { "Rank": 3, - "CommandName": "Get-PnPTeamsTeam", "Id": 752, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "CommandName": "Get-PnPTeamsTeam" }, { "Rank": 4, - "CommandName": "Get-PnPTeamsTeam", "Id": 753, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "CommandName": "Get-PnPTeamsTeam" }, { "Rank": 5, - "CommandName": "Get-PnPTeamsTeam", "Id": 754, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPTeamsTeam" }, { "Rank": 1, - "CommandName": "Get-PnPTeamsUser", "Id": 755, - "Command": "Get-PnPTeamsUser -Team MyTeam" + "Command": "Get-PnPTeamsUser -Team MyTeam", + "CommandName": "Get-PnPTeamsUser" }, { "Rank": 2, - "CommandName": "Get-PnPTeamsUser", "Id": 756, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "CommandName": "Get-PnPTeamsUser" }, { "Rank": 3, - "CommandName": "Get-PnPTeamsUser", "Id": 757, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "CommandName": "Get-PnPTeamsUser" }, { "Rank": 4, - "CommandName": "Get-PnPTeamsUser", "Id": 758, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "CommandName": "Get-PnPTeamsUser" }, { "Rank": 1, - "CommandName": "Get-PnPTemporarilyDisableAppBar", "Id": 759, - "Command": "Get-PnPTemporarilyDisableAppBar" + "Command": "Get-PnPTemporarilyDisableAppBar", + "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { "Rank": 1, - "CommandName": "Get-PnPTenant", "Id": 760, - "Command": "Get-PnPTenant" + "Command": "Get-PnPTenant", + "CommandName": "Get-PnPTenant" }, { "Rank": 1, - "CommandName": "Get-PnPTenantAppCatalogUrl", "Id": 761, - "Command": "Get-PnPTenantAppCatalogUrl" + "Command": "Get-PnPTenantAppCatalogUrl", + "CommandName": "Get-PnPTenantAppCatalogUrl" }, { "Rank": 1, - "CommandName": "Get-PnPTenantCdnEnabled", "Id": 762, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public" + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "CommandName": "Get-PnPTenantCdnEnabled" }, { "Rank": 1, - "CommandName": "Get-PnPTenantCdnOrigin", "Id": 763, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public" + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "CommandName": "Get-PnPTenantCdnOrigin" }, { "Rank": 1, - "CommandName": "Get-PnPTenantCdnPolicies", "Id": 764, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public" + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "CommandName": "Get-PnPTenantCdnPolicies" }, { "Rank": 1, - "CommandName": "Get-PnPTenantDeletedSite", "Id": 765, - "Command": "Get-PnPTenantDeletedSite" + "Command": "Get-PnPTenantDeletedSite", + "CommandName": "Get-PnPTenantDeletedSite" }, { "Rank": 2, - "CommandName": "Get-PnPTenantDeletedSite", "Id": 766, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Get-PnPTenantDeletedSite" }, { "Rank": 3, - "CommandName": "Get-PnPTenantDeletedSite", "Id": 767, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "CommandName": "Get-PnPTenantDeletedSite" }, { "Rank": 4, - "CommandName": "Get-PnPTenantDeletedSite", "Id": 768, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "CommandName": "Get-PnPTenantDeletedSite" }, { "Rank": 1, - "CommandName": "Get-PnPTenantId", "Id": 769, - "Command": "Get-PnPTenantId" + "Command": "Get-PnPTenantId", + "CommandName": "Get-PnPTenantId" }, { "Rank": 2, - "CommandName": "Get-PnPTenantId", "Id": 770, - "Command": "Get-PnPTenantId contoso" + "Command": "Get-PnPTenantId contoso", + "CommandName": "Get-PnPTenantId" }, { "Rank": 3, - "CommandName": "Get-PnPTenantId", "Id": 771, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "CommandName": "Get-PnPTenantId" }, { "Rank": 4, - "CommandName": "Get-PnPTenantId", "Id": 772, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "CommandName": "Get-PnPTenantId" }, { "Rank": 1, - "CommandName": "Get-PnPTenantInfo", "Id": 773, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "CommandName": "Get-PnPTenantInfo" }, { "Rank": 2, - "CommandName": "Get-PnPTenantInfo", "Id": 774, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "CommandName": "Get-PnPTenantInfo" }, { "Rank": 3, - "CommandName": "Get-PnPTenantInfo", "Id": 775, - "Command": "Get-PnPTenantInfo" + "Command": "Get-PnPTenantInfo", + "CommandName": "Get-PnPTenantInfo" }, { "Rank": 4, - "CommandName": "Get-PnPTenantInfo", "Id": 776, - "Command": "Get-PnPTenantInfo -CurrentTenant" + "Command": "Get-PnPTenantInfo -CurrentTenant", + "CommandName": "Get-PnPTenantInfo" }, { "Rank": 1, - "CommandName": "Get-PnPTenantInstance", "Id": 777, - "Command": "Get-PnPTenantInstance" + "Command": "Get-PnPTenantInstance", + "CommandName": "Get-PnPTenantInstance" }, { "Rank": 1, - "CommandName": "Get-PnPTenantRecycleBinItem", "Id": 778, - "Command": "Get-PnPTenantRecycleBinItem" + "Command": "Get-PnPTenantRecycleBinItem", + "CommandName": "Get-PnPTenantRecycleBinItem" }, { "Rank": 1, - "CommandName": "Get-PnPTenantSequence", "Id": 779, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject" + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "CommandName": "Get-PnPTenantSequence" }, { "Rank": 2, - "CommandName": "Get-PnPTenantSequence", "Id": 780, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "CommandName": "Get-PnPTenantSequence" }, { "Rank": 1, - "CommandName": "Get-PnPTenantSequenceSite", "Id": 781, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "CommandName": "Get-PnPTenantSequenceSite" }, { "Rank": 2, - "CommandName": "Get-PnPTenantSequenceSite", "Id": 782, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "CommandName": "Get-PnPTenantSequenceSite" }, { "Rank": 1, - "CommandName": "Get-PnPTenantSite", "Id": 783, - "Command": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSite", + "CommandName": "Get-PnPTenantSite" }, { "Rank": 2, - "CommandName": "Get-PnPTenantSite", "Id": 784, - "Command": "Get-PnPTenantSite -Detailed" + "Command": "Get-PnPTenantSite -Detailed", + "CommandName": "Get-PnPTenantSite" }, { "Rank": 3, - "CommandName": "Get-PnPTenantSite", "Id": 785, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites" + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "CommandName": "Get-PnPTenantSite" }, { "Rank": 4, - "CommandName": "Get-PnPTenantSite", "Id": 786, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "CommandName": "Get-PnPTenantSite" }, { "Rank": 5, - "CommandName": "Get-PnPTenantSite", "Id": 787, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "CommandName": "Get-PnPTenantSite" }, { "Rank": 6, - "CommandName": "Get-PnPTenantSite", "Id": 788, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "CommandName": "Get-PnPTenantSite" }, { "Rank": 7, - "CommandName": "Get-PnPTenantSite", "Id": 789, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "CommandName": "Get-PnPTenantSite" }, { "Rank": 8, - "CommandName": "Get-PnPTenantSite", "Id": 790, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "CommandName": "Get-PnPTenantSite" }, { "Rank": 9, - "CommandName": "Get-PnPTenantSite", "Id": 791, - "Command": "Get-PnPTenantSite -GroupIdDefined $true" + "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "CommandName": "Get-PnPTenantSite" }, { "Rank": 1, - "CommandName": "Get-PnPTenantSyncClientRestriction", "Id": 792, - "Command": "Get-PnPTenantSyncClientRestriction" + "Command": "Get-PnPTenantSyncClientRestriction", + "CommandName": "Get-PnPTenantSyncClientRestriction" }, { "Rank": 1, - "CommandName": "Get-PnPTenantTemplate", "Id": 793, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "CommandName": "Get-PnPTenantTemplate" }, { "Rank": 2, - "CommandName": "Get-PnPTenantTemplate", "Id": 794, - "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", + "CommandName": "Get-PnPTenantTemplate" }, { "Rank": 3, - "CommandName": "Get-PnPTenantTemplate", "Id": 795, - "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", + "CommandName": "Get-PnPTenantTemplate" }, { "Rank": 1, - "CommandName": "Get-PnPTenantTheme", "Id": 796, - "Command": "Get-PnPTenantTheme" + "Command": "Get-PnPTenantTheme", + "CommandName": "Get-PnPTenantTheme" }, { "Rank": 2, - "CommandName": "Get-PnPTenantTheme", "Id": 797, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "CommandName": "Get-PnPTenantTheme" }, { "Rank": 3, - "CommandName": "Get-PnPTenantTheme", "Id": 798, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "CommandName": "Get-PnPTenantTheme" }, { "Rank": 1, - "CommandName": "Get-PnPTerm", "Id": 799, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm" }, { "Rank": 2, - "CommandName": "Get-PnPTerm", "Id": 800, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm" }, { "Rank": 3, - "CommandName": "Get-PnPTerm", "Id": 801, - "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\"", + "CommandName": "Get-PnPTerm" }, { "Rank": 4, - "CommandName": "Get-PnPTerm", "Id": 802, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "CommandName": "Get-PnPTerm" }, { "Rank": 5, - "CommandName": "Get-PnPTerm", "Id": 803, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "CommandName": "Get-PnPTerm" }, { "Rank": 1, - "CommandName": "Get-PnPTermGroup", "Id": 804, - "Command": "Get-PnPTermGroup" + "Command": "Get-PnPTermGroup", + "CommandName": "Get-PnPTermGroup" }, { "Rank": 2, - "CommandName": "Get-PnPTermGroup", "Id": 805, - "Command": "Get-PnPTermGroup -Identity \"Departments\"" + "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "CommandName": "Get-PnPTermGroup" }, { "Rank": 3, - "CommandName": "Get-PnPTermGroup", "Id": 806, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "CommandName": "Get-PnPTermGroup" }, { "Rank": 1, - "CommandName": "Get-PnPTermLabel", "Id": 807, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "CommandName": "Get-PnPTermLabel" }, { "Rank": 2, - "CommandName": "Get-PnPTermLabel", "Id": 808, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "CommandName": "Get-PnPTermLabel" }, { "Rank": 3, - "CommandName": "Get-PnPTermLabel", "Id": 809, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermLabel" }, { "Rank": 1, - "CommandName": "Get-PnPTermSet", "Id": 810, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermSet" }, { "Rank": 2, - "CommandName": "Get-PnPTermSet", "Id": 811, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermSet" }, { "Rank": 3, - "CommandName": "Get-PnPTermSet", "Id": 812, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "CommandName": "Get-PnPTermSet" }, { "Rank": 1, - "CommandName": "Get-PnPTheme", "Id": 813, - "Command": "Get-PnPTheme" + "Command": "Get-PnPTheme", + "CommandName": "Get-PnPTheme" }, { "Rank": 2, - "CommandName": "Get-PnPTheme", "Id": 814, - "Command": "Get-PnPTheme -DetectCurrentComposedLook" + "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "CommandName": "Get-PnPTheme" }, { "Rank": 1, - "CommandName": "Get-PnPTimeZoneId", "Id": 815, - "Command": "Get-PnPTimeZoneId" + "Command": "Get-PnPTimeZoneId", + "CommandName": "Get-PnPTimeZoneId" }, { "Rank": 2, - "CommandName": "Get-PnPTimeZoneId", "Id": 816, - "Command": "Get-PnPTimeZoneId -Match Stockholm" + "Command": "Get-PnPTimeZoneId -Match Stockholm", + "CommandName": "Get-PnPTimeZoneId" }, { "Rank": 1, - "CommandName": "Get-PnPUnfurlLink", "Id": 817, - "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\"", + "CommandName": "Get-PnPUnfurlLink" }, { "Rank": 1, - "CommandName": "Get-PnPUnifiedAuditLog", "Id": 818, - "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)", + "CommandName": "Get-PnPUnifiedAuditLog" }, { "Rank": 1, - "CommandName": "Get-PnPUPABulkImportStatus", "Id": 819, - "Command": "Get-PnPUPABulkImportStatus" + "Command": "Get-PnPUPABulkImportStatus", + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Rank": 2, - "CommandName": "Get-PnPUPABulkImportStatus", "Id": 820, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Rank": 3, - "CommandName": "Get-PnPUPABulkImportStatus", "Id": 821, - "Command": "Get-PnPUPABulkImportStatus -JobId " + "Command": "Get-PnPUPABulkImportStatus -JobId ", + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Rank": 4, - "CommandName": "Get-PnPUPABulkImportStatus", "Id": 822, - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Rank": 1, - "CommandName": "Get-PnPUser", "Id": 823, - "Command": "Get-PnPUser" + "Command": "Get-PnPUser", + "CommandName": "Get-PnPUser" }, { "Rank": 2, - "CommandName": "Get-PnPUser", "Id": 824, - "Command": "Get-PnPUser -Identity 23" + "Command": "Get-PnPUser -Identity 23", + "CommandName": "Get-PnPUser" }, { "Rank": 3, - "CommandName": "Get-PnPUser", "Id": 825, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "CommandName": "Get-PnPUser" }, { "Rank": 4, - "CommandName": "Get-PnPUser", "Id": 826, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "CommandName": "Get-PnPUser" }, { "Rank": 5, - "CommandName": "Get-PnPUser", "Id": 827, - "Command": "Get-PnPUser -WithRightsAssigned" + "Command": "Get-PnPUser -WithRightsAssigned", + "CommandName": "Get-PnPUser" }, { "Rank": 6, - "CommandName": "Get-PnPUser", "Id": 828, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "CommandName": "Get-PnPUser" }, { "Rank": 7, - "CommandName": "Get-PnPUser", "Id": 829, - "Command": "Get-PnPUser -WithRightsAssignedDetailed" + "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "CommandName": "Get-PnPUser" }, { "Rank": 1, - "CommandName": "Get-PnPUserOneDriveQuota", "Id": 830, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "CommandName": "Get-PnPUserOneDriveQuota" }, { "Rank": 1, - "CommandName": "Get-PnPUserProfileProperty", "Id": 831, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "CommandName": "Get-PnPUserProfileProperty" }, { "Rank": 2, - "CommandName": "Get-PnPUserProfileProperty", "Id": 832, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "CommandName": "Get-PnPUserProfileProperty" }, { "Rank": 3, - "CommandName": "Get-PnPUserProfileProperty", "Id": 833, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "CommandName": "Get-PnPUserProfileProperty" }, { "Rank": 1, - "CommandName": "Get-PnPView", "Id": 834, - "Command": "Get-PnPView -List \"Demo List\"" + "Command": "Get-PnPView -List \"Demo List\"", + "CommandName": "Get-PnPView" }, { "Rank": 2, - "CommandName": "Get-PnPView", "Id": 835, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "CommandName": "Get-PnPView" }, { "Rank": 3, - "CommandName": "Get-PnPView", "Id": 836, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "CommandName": "Get-PnPView" }, { "Rank": 1, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 837, - "Command": "Get-PnPVivaConnectionsDashboardACE" + "Command": "Get-PnPVivaConnectionsDashboardACE", + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { "Rank": 2, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Id": 838, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { "Rank": 1, - "CommandName": "Get-PnPWeb", "Id": 839, - "Command": "Get-PnPWeb" + "Command": "Get-PnPWeb", + "CommandName": "Get-PnPWeb" }, { "Rank": 1, - "CommandName": "Get-PnPWebHeader", "Id": 840, - "Command": "Get-PnPWebHeader" + "Command": "Get-PnPWebHeader", + "CommandName": "Get-PnPWebHeader" }, { "Rank": 1, - "CommandName": "Get-PnPWebhookSubscriptions", "Id": 841, - "Command": "Get-PnPWebhookSubscriptions -List MyList" + "Command": "Get-PnPWebhookSubscriptions -List MyList", + "CommandName": "Get-PnPWebhookSubscriptions" }, { "Rank": 1, - "CommandName": "Get-PnPWebPart", "Id": 842, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "CommandName": "Get-PnPWebPart" }, { "Rank": 2, - "CommandName": "Get-PnPWebPart", "Id": 843, - "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", + "CommandName": "Get-PnPWebPart" }, { "Rank": 1, - "CommandName": "Get-PnPWebPartProperty", "Id": 844, - "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", + "CommandName": "Get-PnPWebPartProperty" }, { "Rank": 2, - "CommandName": "Get-PnPWebPartProperty", "Id": 845, - "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\"", + "CommandName": "Get-PnPWebPartProperty" }, { "Rank": 1, - "CommandName": "Get-PnPWebPartXml", "Id": 846, - "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", + "CommandName": "Get-PnPWebPartXml" }, { "Rank": 1, - "CommandName": "Get-PnPWebTemplates", "Id": 847, - "Command": "Get-PnPWebTemplates" + "Command": "Get-PnPWebTemplates", + "CommandName": "Get-PnPWebTemplates" }, { "Rank": 2, - "CommandName": "Get-PnPWebTemplates", "Id": 848, - "Command": "Get-PnPWebTemplates -LCID 1033" + "Command": "Get-PnPWebTemplates -LCID 1033", + "CommandName": "Get-PnPWebTemplates" }, { "Rank": 3, - "CommandName": "Get-PnPWebTemplates", "Id": 849, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "CommandName": "Get-PnPWebTemplates" }, { "Rank": 1, - "CommandName": "Get-PnPWikiPageContent", "Id": 850, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "CommandName": "Get-PnPWikiPageContent" }, { "Rank": 1, - "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 851, - "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", + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { "Rank": 2, - "CommandName": "Grant-PnPAzureADAppSitePermission", "Id": 852, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects" + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { "Rank": 1, - "CommandName": "Grant-PnPHubSiteRights", "Id": 853, - "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\"", + "CommandName": "Grant-PnPHubSiteRights" }, { "Rank": 1, - "CommandName": "Grant-PnPSiteDesignRights", "Id": 854, - "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\"", + "CommandName": "Grant-PnPSiteDesignRights" }, { "Rank": 1, - "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Id": 855, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { "Rank": 1, - "CommandName": "Import-PnPTaxonomy", "Id": 856, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "CommandName": "Import-PnPTaxonomy" }, { "Rank": 2, - "CommandName": "Import-PnPTaxonomy", "Id": 857, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "CommandName": "Import-PnPTaxonomy" }, { "Rank": 3, - "CommandName": "Import-PnPTaxonomy", "Id": 858, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "CommandName": "Import-PnPTaxonomy" }, { "Rank": 1, - "CommandName": "Import-PnPTermGroupFromXml", "Id": 859, - "Command": "Import-PnPTermGroupFromXml -Xml $xml" + "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "CommandName": "Import-PnPTermGroupFromXml" }, { "Rank": 2, - "CommandName": "Import-PnPTermGroupFromXml", "Id": 860, - "Command": "Import-PnPTermGroupFromXml -Path input.xml" + "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "CommandName": "Import-PnPTermGroupFromXml" }, { "Rank": 1, - "CommandName": "Import-PnPTermSet", "Id": 861, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "CommandName": "Import-PnPTermSet" }, { "Rank": 2, - "CommandName": "Import-PnPTermSet", "Id": 862, - "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}'", + "CommandName": "Import-PnPTermSet" }, { "Rank": 3, - "CommandName": "Import-PnPTermSet", "Id": 863, - "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'", + "CommandName": "Import-PnPTermSet" }, { "Rank": 1, - "CommandName": "Install-PnPApp", "Id": 864, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Install-PnPApp" }, { "Rank": 2, - "CommandName": "Install-PnPApp", "Id": 865, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Install-PnPApp" }, { "Rank": 1, - "CommandName": "Invoke-PnPGraphMethod", "Id": 866, - "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'", + "CommandName": "Invoke-PnPGraphMethod" }, { "Rank": 2, - "CommandName": "Invoke-PnPGraphMethod", "Id": 867, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "CommandName": "Invoke-PnPGraphMethod" }, { "Rank": 3, - "CommandName": "Invoke-PnPGraphMethod", "Id": 868, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "CommandName": "Invoke-PnPGraphMethod" }, { "Rank": 4, - "CommandName": "Invoke-PnPGraphMethod", "Id": 869, - "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", + "CommandName": "Invoke-PnPGraphMethod" }, { "Rank": 5, - "CommandName": "Invoke-PnPGraphMethod", "Id": 870, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "CommandName": "Invoke-PnPGraphMethod" }, { "Rank": 6, - "CommandName": "Invoke-PnPGraphMethod", "Id": 871, - "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", + "CommandName": "Invoke-PnPGraphMethod" }, { "Rank": 7, - "CommandName": "Invoke-PnPGraphMethod", "Id": 872, - "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\"", + "CommandName": "Invoke-PnPGraphMethod" }, { "Rank": 1, - "CommandName": "Invoke-PnPListDesign", "Id": 873, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Invoke-PnPListDesign" }, { "Rank": 2, - "CommandName": "Invoke-PnPListDesign", "Id": 874, - "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\"", + "CommandName": "Invoke-PnPListDesign" }, { "Rank": 1, - "CommandName": "Invoke-PnPQuery", "Id": 875, - "Command": "Invoke-PnPQuery -RetryCount 5" + "Command": "Invoke-PnPQuery -RetryCount 5", + "CommandName": "Invoke-PnPQuery" }, { "Rank": 1, - "CommandName": "Invoke-PnPSiteDesign", "Id": 876, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Invoke-PnPSiteDesign" }, { "Rank": 2, - "CommandName": "Invoke-PnPSiteDesign", "Id": 877, - "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\"", + "CommandName": "Invoke-PnPSiteDesign" }, { "Rank": 1, - "CommandName": "Invoke-PnPSiteScript", "Id": 878, - "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", + "CommandName": "Invoke-PnPSiteScript" }, { "Rank": 1, - "CommandName": "Invoke-PnPSiteSwap", "Id": 879, - "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", + "CommandName": "Invoke-PnPSiteSwap" }, { "Rank": 2, - "CommandName": "Invoke-PnPSiteSwap", "Id": 880, - "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", + "CommandName": "Invoke-PnPSiteSwap" }, { "Rank": 3, - "CommandName": "Invoke-PnPSiteSwap", "Id": 881, - "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", + "CommandName": "Invoke-PnPSiteSwap" }, { "Rank": 1, - "CommandName": "Invoke-PnPSiteTemplate", "Id": 882, - "Command": "Invoke-PnPSiteTemplate -Path template.xml" + "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 2, - "CommandName": "Invoke-PnPSiteTemplate", "Id": 883, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 3, - "CommandName": "Invoke-PnPSiteTemplate", "Id": 884, - "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\"}", + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 4, - "CommandName": "Invoke-PnPSiteTemplate", "Id": 885, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 5, - "CommandName": "Invoke-PnPSiteTemplate", "Id": 886, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp" + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 6, - "CommandName": "Invoke-PnPSiteTemplate", "Id": 887, - "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\"", + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 7, - "CommandName": "Invoke-PnPSiteTemplate", "Id": 888, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 8, - "CommandName": "Invoke-PnPSiteTemplate", "Id": 889, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 1, - "CommandName": "Invoke-PnPSPRestMethod", "Id": 890, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web" + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "CommandName": "Invoke-PnPSPRestMethod" }, { "Rank": 1, - "CommandName": "Invoke-PnPTenantTemplate", "Id": 891, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "CommandName": "Invoke-PnPTenantTemplate" }, { "Rank": 2, - "CommandName": "Invoke-PnPTenantTemplate", "Id": 892, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "CommandName": "Invoke-PnPTenantTemplate" }, { "Rank": 3, - "CommandName": "Invoke-PnPTenantTemplate", "Id": 893, - "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\"}", + "CommandName": "Invoke-PnPTenantTemplate" }, { "Rank": 1, - "CommandName": "Invoke-PnPWebAction", "Id": 894, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "CommandName": "Invoke-PnPWebAction" }, { "Rank": 2, - "CommandName": "Invoke-PnPWebAction", "Id": 895, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "CommandName": "Invoke-PnPWebAction" }, { "Rank": 1, - "CommandName": "Measure-PnPList", "Id": 896, - "Command": "Measure-PnPList \"Documents\"" + "Command": "Measure-PnPList \"Documents\"", + "CommandName": "Measure-PnPList" }, { "Rank": 2, - "CommandName": "Measure-PnPList", "Id": 897, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "CommandName": "Measure-PnPList" }, { "Rank": 1, - "CommandName": "Measure-PnPWeb", "Id": 898, - "Command": "Measure-PnPWeb" + "Command": "Measure-PnPWeb", + "CommandName": "Measure-PnPWeb" }, { "Rank": 2, - "CommandName": "Measure-PnPWeb", "Id": 899, - "Command": "Measure-PnPWeb $web -Recursive" + "Command": "Measure-PnPWeb $web -Recursive", + "CommandName": "Measure-PnPWeb" }, { "Rank": 1, - "CommandName": "Move-PnPFile", "Id": 900, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "CommandName": "Move-PnPFile" }, { "Rank": 2, - "CommandName": "Move-PnPFile", "Id": 901, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "CommandName": "Move-PnPFile" }, { "Rank": 3, - "CommandName": "Move-PnPFile", "Id": 902, - "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", + "CommandName": "Move-PnPFile" }, { "Rank": 4, - "CommandName": "Move-PnPFile", "Id": 903, - "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", + "CommandName": "Move-PnPFile" }, { "Rank": 1, - "CommandName": "Move-PnPFolder", "Id": 904, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "CommandName": "Move-PnPFolder" }, { "Rank": 2, - "CommandName": "Move-PnPFolder", "Id": 905, - "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'", + "CommandName": "Move-PnPFolder" }, { "Rank": 1, - "CommandName": "Move-PnPListItemToRecycleBin", "Id": 906, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "CommandName": "Move-PnPListItemToRecycleBin" }, { "Rank": 1, - "CommandName": "Move-PnPPageComponent", "Id": 907, - "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", + "CommandName": "Move-PnPPageComponent" }, { "Rank": 2, - "CommandName": "Move-PnPPageComponent", "Id": 908, - "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", + "CommandName": "Move-PnPPageComponent" }, { "Rank": 3, - "CommandName": "Move-PnPPageComponent", "Id": 909, - "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", + "CommandName": "Move-PnPPageComponent" }, { "Rank": 4, - "CommandName": "Move-PnPPageComponent", "Id": 910, - "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", + "CommandName": "Move-PnPPageComponent" }, { "Rank": 1, - "CommandName": "Move-PnpRecycleBinItem", "Id": 911, - "Command": "Move-PnPRecycleBinItem" + "Command": "Move-PnPRecycleBinItem", + "CommandName": "Move-PnpRecycleBinItem" }, { "Rank": 2, - "CommandName": "Move-PnpRecycleBinItem", "Id": 912, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "CommandName": "Move-PnpRecycleBinItem" }, { "Rank": 3, - "CommandName": "Move-PnpRecycleBinItem", "Id": 913, - "Command": "Move-PnPRecycleBinItem -Force" + "Command": "Move-PnPRecycleBinItem -Force", + "CommandName": "Move-PnpRecycleBinItem" }, { "Rank": 1, - "CommandName": "Move-PnPTerm", "Id": 914, - "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", + "CommandName": "Move-PnPTerm" }, { "Rank": 2, - "CommandName": "Move-PnPTerm", "Id": 915, - "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\"", + "CommandName": "Move-PnPTerm" }, { "Rank": 3, - "CommandName": "Move-PnPTerm", "Id": 916, - "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", + "CommandName": "Move-PnPTerm" }, { "Rank": 1, - "CommandName": "Move-PnPTermSet", "Id": 917, - "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", + "CommandName": "Move-PnPTermSet" }, { "Rank": 2, - "CommandName": "Move-PnPTermSet", "Id": 918, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "CommandName": "Move-PnPTermSet" }, { "Rank": 1, - "CommandName": "New-PnPAzureADGroup", "Id": 919, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "CommandName": "New-PnPAzureADGroup" }, { "Rank": 2, - "CommandName": "New-PnPAzureADGroup", "Id": 920, - "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", + "CommandName": "New-PnPAzureADGroup" }, { "Rank": 3, - "CommandName": "New-PnPAzureADGroup", "Id": 921, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "CommandName": "New-PnPAzureADGroup" }, { "Rank": 1, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 922, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Rank": 2, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 923, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Rank": 3, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Id": 924, - "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", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Rank": 1, - "CommandName": "New-PnPAzureCertificate", "Id": 925, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "CommandName": "New-PnPAzureCertificate" }, { "Rank": 2, - "CommandName": "New-PnPAzureCertificate", "Id": 926, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "CommandName": "New-PnPAzureCertificate" }, { "Rank": 3, - "CommandName": "New-PnPAzureCertificate", "Id": 927, - "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)", + "CommandName": "New-PnPAzureCertificate" }, { "Rank": 1, - "CommandName": "New-PnPGraphSubscription", "Id": 928, - "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()", + "CommandName": "New-PnPGraphSubscription" }, { "Rank": 2, - "CommandName": "New-PnPGraphSubscription", "Id": 929, - "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()", + "CommandName": "New-PnPGraphSubscription" }, { "Rank": 1, - "CommandName": "New-PnPGroup", "Id": 930, - "Command": "New-PnPGroup -Title \"My Site Users\"" + "Command": "New-PnPGroup -Title \"My Site Users\"", + "CommandName": "New-PnPGroup" }, { "Rank": 1, - "CommandName": "New-PnPList", "Id": 931, - "Command": "New-PnPList -Title Announcements -Template Announcements" + "Command": "New-PnPList -Title Announcements -Template Announcements", + "CommandName": "New-PnPList" }, { "Rank": 2, - "CommandName": "New-PnPList", "Id": 932, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "CommandName": "New-PnPList" }, { "Rank": 3, - "CommandName": "New-PnPList", "Id": 933, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "CommandName": "New-PnPList" }, { "Rank": 1, - "CommandName": "New-PnPMicrosoft365Group", "Id": 934, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "CommandName": "New-PnPMicrosoft365Group" }, { "Rank": 2, - "CommandName": "New-PnPMicrosoft365Group", "Id": 935, - "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\"", + "CommandName": "New-PnPMicrosoft365Group" }, { "Rank": 3, - "CommandName": "New-PnPMicrosoft365Group", "Id": 936, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "CommandName": "New-PnPMicrosoft365Group" }, { "Rank": 4, - "CommandName": "New-PnPMicrosoft365Group", "Id": 937, - "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", + "CommandName": "New-PnPMicrosoft365Group" }, { "Rank": 5, - "CommandName": "New-PnPMicrosoft365Group", "Id": 938, - "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", + "CommandName": "New-PnPMicrosoft365Group" }, { "Rank": 6, - "CommandName": "New-PnPMicrosoft365Group", "Id": 939, - "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\"", + "CommandName": "New-PnPMicrosoft365Group" }, { "Rank": 7, - "CommandName": "New-PnPMicrosoft365Group", "Id": 940, - "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\"\")\"", + "CommandName": "New-PnPMicrosoft365Group" }, { "Rank": 1, - "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 941, - "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\"}", + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { "Rank": 2, - "CommandName": "New-PnPMicrosoft365GroupSettings", "Id": 942, - "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\"}", + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { "Rank": 1, - "CommandName": "New-PnPPersonalSite", "Id": 943, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "CommandName": "New-PnPPersonalSite" }, { "Rank": 1, - "CommandName": "New-PnPPlannerPlan", "Id": 944, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "CommandName": "New-PnPPlannerPlan" }, { "Rank": 1, - "CommandName": "New-PnPSdnProvider", "Id": 945, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "CommandName": "New-PnPSdnProvider" }, { "Rank": 1, - "CommandName": "New-PnPSite", "Id": 946, - "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", + "CommandName": "New-PnPSite" }, { "Rank": 2, - "CommandName": "New-PnPSite", "Id": 947, - "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", + "CommandName": "New-PnPSite" }, { "Rank": 3, - "CommandName": "New-PnPSite", "Id": 948, - "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", + "CommandName": "New-PnPSite" }, { "Rank": 4, - "CommandName": "New-PnPSite", "Id": 949, - "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\"", + "CommandName": "New-PnPSite" }, { "Rank": 5, - "CommandName": "New-PnPSite", "Id": 950, - "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", + "CommandName": "New-PnPSite" }, { "Rank": 6, - "CommandName": "New-PnPSite", "Id": 951, - "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", + "CommandName": "New-PnPSite" }, { "Rank": 7, - "CommandName": "New-PnPSite", "Id": 952, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "CommandName": "New-PnPSite" }, { "Rank": 8, - "CommandName": "New-PnPSite", "Id": 953, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "CommandName": "New-PnPSite" }, { "Rank": 9, - "CommandName": "New-PnPSite", "Id": 954, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "CommandName": "New-PnPSite" }, { "Rank": 10, - "CommandName": "New-PnPSite", "Id": 955, - "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", + "CommandName": "New-PnPSite" }, { "Rank": 11, - "CommandName": "New-PnPSite", "Id": 956, - "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", + "CommandName": "New-PnPSite" }, { "Rank": 12, - "CommandName": "New-PnPSite", "Id": 957, - "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", + "CommandName": "New-PnPSite" }, { "Rank": 13, - "CommandName": "New-PnPSite", "Id": 958, - "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\"", + "CommandName": "New-PnPSite" }, { "Rank": 14, - "CommandName": "New-PnPSite", "Id": 959, - "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", + "CommandName": "New-PnPSite" }, { "Rank": 15, - "CommandName": "New-PnPSite", "Id": 960, - "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", + "CommandName": "New-PnPSite" }, { "Rank": 16, - "CommandName": "New-PnPSite", "Id": 961, - "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\"", + "CommandName": "New-PnPSite" }, { "Rank": 1, - "CommandName": "New-PnPSiteCollectionTermStore", "Id": 962, - "Command": "New-PnPSiteCollectionTermStore" + "Command": "New-PnPSiteCollectionTermStore", + "CommandName": "New-PnPSiteCollectionTermStore" }, { "Rank": 1, - "CommandName": "New-PnPSiteGroup", "Id": 963, - "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\"", + "CommandName": "New-PnPSiteGroup" }, { "Rank": 2, - "CommandName": "New-PnPSiteGroup", "Id": 964, - "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\"", + "CommandName": "New-PnPSiteGroup" }, { "Rank": 1, - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 965, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Rank": 2, - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 966, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Rank": 3, - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 967, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Rank": 4, - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 968, - "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\"", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Rank": 5, - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 969, - "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\"", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Rank": 6, - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 970, - "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\"}", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Rank": 7, - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 971, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Rank": 8, - "CommandName": "New-PnPSiteTemplateFromFolder", "Id": 972, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Rank": 1, - "CommandName": "New-PnPTeamsApp", "Id": 973, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "CommandName": "New-PnPTeamsApp" }, { "Rank": 1, - "CommandName": "New-PnPTeamsTeam", "Id": 974, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "CommandName": "New-PnPTeamsTeam" }, { "Rank": 2, - "CommandName": "New-PnPTeamsTeam", "Id": 975, - "Command": "New-PnPTeamsTeam -GroupId $groupId" + "Command": "New-PnPTeamsTeam -GroupId $groupId", + "CommandName": "New-PnPTeamsTeam" }, { "Rank": 3, - "CommandName": "New-PnPTeamsTeam", "Id": 976, - "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", + "CommandName": "New-PnPTeamsTeam" }, { "Rank": 4, - "CommandName": "New-PnPTeamsTeam", "Id": 977, - "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", + "CommandName": "New-PnPTeamsTeam" }, { "Rank": 5, - "CommandName": "New-PnPTeamsTeam", "Id": 978, - "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\"", + "CommandName": "New-PnPTeamsTeam" }, { "Rank": 6, - "CommandName": "New-PnPTeamsTeam", "Id": 979, - "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\"", + "CommandName": "New-PnPTeamsTeam" }, { "Rank": 1, - "CommandName": "New-PnPTenantSite", "Id": 980, - "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", + "CommandName": "New-PnPTenantSite" }, { "Rank": 2, - "CommandName": "New-PnPTenantSite", "Id": 981, - "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", + "CommandName": "New-PnPTenantSite" }, { "Rank": 1, - "CommandName": "New-PnPTerm", "Id": 982, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "CommandName": "New-PnPTerm" }, { "Rank": 2, - "CommandName": "New-PnPTerm", "Id": 983, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "New-PnPTerm" }, { "Rank": 1, - "CommandName": "New-PnPTermGroup", "Id": 984, - "Command": "New-PnPTermGroup -GroupName \"Countries\"" + "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "CommandName": "New-PnPTermGroup" }, { "Rank": 1, - "CommandName": "New-PnPTermLabel", "Id": 985, - "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\")", + "CommandName": "New-PnPTermLabel" }, { "Rank": 1, - "CommandName": "New-PnPTermSet", "Id": 986, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "CommandName": "New-PnPTermSet" }, { "Rank": 1, - "CommandName": "New-PnPUPABulkImportJob", "Id": 987, - "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\"}", + "CommandName": "New-PnPUPABulkImportJob" }, { "Rank": 2, - "CommandName": "New-PnPUPABulkImportJob", "Id": 988, - "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", + "CommandName": "New-PnPUPABulkImportJob" }, { "Rank": 1, - "CommandName": "New-PnPUser", "Id": 989, - "Command": "New-PnPUser -LoginName user@company.com" + "Command": "New-PnPUser -LoginName user@company.com", + "CommandName": "New-PnPUser" }, { "Rank": 1, - "CommandName": "New-PnPWeb", "Id": 990, - "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\"", + "CommandName": "New-PnPWeb" }, { "Rank": 1, - "CommandName": "Publish-PnPApp", "Id": 991, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Publish-PnPApp" }, { "Rank": 2, - "CommandName": "Publish-PnPApp", "Id": 992, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "CommandName": "Publish-PnPApp" }, { "Rank": 1, - "CommandName": "Publish-PnPCompanyApp", "Id": 993, - "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", + "CommandName": "Publish-PnPCompanyApp" }, { "Rank": 1, - "CommandName": "Publish-PnPContentType", "Id": 994, - "Command": "Publish-PnPContentType -ContentType 0x0101" + "Command": "Publish-PnPContentType -ContentType 0x0101", + "CommandName": "Publish-PnPContentType" }, { "Rank": 1, - "CommandName": "Publish-PnPSyntexModel", "Id": 995, - "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\"", + "CommandName": "Publish-PnPSyntexModel" }, { "Rank": 2, - "CommandName": "Publish-PnPSyntexModel", "Id": 996, - "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", + "CommandName": "Publish-PnPSyntexModel" }, { "Rank": 1, - "CommandName": "Read-PnPSiteTemplate", "Id": 997, - "Command": "Read-PnPSiteTemplate -Path template.pnp" + "Command": "Read-PnPSiteTemplate -Path template.pnp", + "CommandName": "Read-PnPSiteTemplate" }, { "Rank": 2, - "CommandName": "Read-PnPSiteTemplate", "Id": 998, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "CommandName": "Read-PnPSiteTemplate" }, { "Rank": 3, - "CommandName": "Read-PnPSiteTemplate", "Id": 999, - "Command": "Read-PnPSiteTemplate -Xml $xml" + "Command": "Read-PnPSiteTemplate -Xml $xml", + "CommandName": "Read-PnPSiteTemplate" }, { "Rank": 1, - "CommandName": "Read-PnPTenantTemplate", "Id": 1000, - "Command": "Read-PnPTenantTemplate -Path template.pnp" + "Command": "Read-PnPTenantTemplate -Path template.pnp", + "CommandName": "Read-PnPTenantTemplate" }, { "Rank": 1, - "CommandName": "Register-PnPAppCatalogSite", "Id": 1001, - "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", + "CommandName": "Register-PnPAppCatalogSite" }, { "Rank": 1, - "CommandName": "Register-PnPAzureADApp", "Id": 1002, - "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\")", + "CommandName": "Register-PnPAzureADApp" }, { "Rank": 2, - "CommandName": "Register-PnPAzureADApp", "Id": 1003, - "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\")", + "CommandName": "Register-PnPAzureADApp" }, { "Rank": 3, - "CommandName": "Register-PnPAzureADApp", "Id": 1004, - "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\")", + "CommandName": "Register-PnPAzureADApp" }, { "Rank": 4, - "CommandName": "Register-PnPAzureADApp", "Id": 1005, - "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\")", + "CommandName": "Register-PnPAzureADApp" }, { "Rank": 5, - "CommandName": "Register-PnPAzureADApp", "Id": 1006, - "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)", + "CommandName": "Register-PnPAzureADApp" }, { "Rank": 6, - "CommandName": "Register-PnPAzureADApp", "Id": 1007, - "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)", + "CommandName": "Register-PnPAzureADApp" }, { "Rank": 7, - "CommandName": "Register-PnPAzureADApp", "Id": 1008, - "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", + "CommandName": "Register-PnPAzureADApp" }, { "Rank": 1, - "CommandName": "Register-PnPHubSite", "Id": 1009, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "CommandName": "Register-PnPHubSite" }, { "Rank": 2, - "CommandName": "Register-PnPHubSite", "Id": 1010, - "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\"", + "CommandName": "Register-PnPHubSite" }, { "Rank": 1, - "CommandName": "Register-PnPManagementShellAccess", "Id": 1011, - "Command": "Register-PnPManagementShellAccess" + "Command": "Register-PnPManagementShellAccess", + "CommandName": "Register-PnPManagementShellAccess" }, { "Rank": 2, - "CommandName": "Register-PnPManagementShellAccess", "Id": 1012, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "CommandName": "Register-PnPManagementShellAccess" }, { "Rank": 3, - "CommandName": "Register-PnPManagementShellAccess", "Id": 1013, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "CommandName": "Register-PnPManagementShellAccess" }, { "Rank": 1, - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1014, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { "Rank": 2, - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Id": 1015, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { "Rank": 1, - "CommandName": "Remove-PnPAlert", "Id": 1016, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "CommandName": "Remove-PnPAlert" }, { "Rank": 2, - "CommandName": "Remove-PnPAlert", "Id": 1017, - "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\"", + "CommandName": "Remove-PnPAlert" }, { "Rank": 1, - "CommandName": "Remove-PnPApp", "Id": 1018, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Remove-PnPApp" }, { "Rank": 2, - "CommandName": "Remove-PnPApp", "Id": 1019, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Remove-PnPApp" }, { "Rank": 1, - "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1020, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Remove-PnPApplicationCustomizer" }, { "Rank": 2, - "CommandName": "Remove-PnPApplicationCustomizer", "Id": 1021, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "CommandName": "Remove-PnPApplicationCustomizer" }, { "Rank": 1, - "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1022, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "CommandName": "Remove-PnPAvailableSiteClassification" }, { "Rank": 2, - "CommandName": "Remove-PnPAvailableSiteClassification", "Id": 1023, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "CommandName": "Remove-PnPAvailableSiteClassification" }, { "Rank": 1, - "CommandName": "Remove-PnPAzureADApp", "Id": 1024, - "Command": "Remove-PnPAzureADApp -Identity MyApp" + "Command": "Remove-PnPAzureADApp -Identity MyApp", + "CommandName": "Remove-PnPAzureADApp" }, { "Rank": 2, - "CommandName": "Remove-PnPAzureADApp", "Id": 1025, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Remove-PnPAzureADApp" }, { "Rank": 1, - "CommandName": "Remove-PnPAzureADGroup", "Id": 1026, - "Command": "Remove-PnPAzureADGroup -Identity $groupId" + "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "CommandName": "Remove-PnPAzureADGroup" }, { "Rank": 2, - "CommandName": "Remove-PnPAzureADGroup", "Id": 1027, - "Command": "Remove-PnPAzureADGroup -Identity $group" + "Command": "Remove-PnPAzureADGroup -Identity $group", + "CommandName": "Remove-PnPAzureADGroup" }, { "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupMember", "Id": 1028, - "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\"", + "CommandName": "Remove-PnPAzureADGroupMember" }, { "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupOwner", "Id": 1029, - "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\"", + "CommandName": "Remove-PnPAzureADGroupOwner" }, { "Rank": 1, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1030, - "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\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Rank": 2, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1031, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Rank": 3, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1032, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Rank": 4, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Id": 1033, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Rank": 1, - "CommandName": "Remove-PnPContentType", "Id": 1034, - "Command": "Remove-PnPContentType -Identity \"Project Document\"" + "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "CommandName": "Remove-PnPContentType" }, { "Rank": 2, - "CommandName": "Remove-PnPContentType", "Id": 1035, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "CommandName": "Remove-PnPContentType" }, { "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1036, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { "Rank": 2, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Id": 1037, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromList", "Id": 1038, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "CommandName": "Remove-PnPContentTypeFromList" }, { "Rank": 1, - "CommandName": "Remove-PnPCustomAction", "Id": 1039, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Remove-PnPCustomAction" }, { "Rank": 2, - "CommandName": "Remove-PnPCustomAction", "Id": 1040, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "CommandName": "Remove-PnPCustomAction" }, { "Rank": 3, - "CommandName": "Remove-PnPCustomAction", "Id": 1041, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "CommandName": "Remove-PnPCustomAction" }, { "Rank": 1, - "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Id": 1042, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { "Rank": 1, - "CommandName": "Remove-PnPEventReceiver", "Id": 1043, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 2, - "CommandName": "Remove-PnPEventReceiver", "Id": 1044, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 3, - "CommandName": "Remove-PnPEventReceiver", "Id": 1045, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 4, - "CommandName": "Remove-PnPEventReceiver", "Id": 1046, - "Command": "Remove-PnPEventReceiver -List ProjectList" + "Command": "Remove-PnPEventReceiver -List ProjectList", + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 5, - "CommandName": "Remove-PnPEventReceiver", "Id": 1047, - "Command": "Remove-PnPEventReceiver" + "Command": "Remove-PnPEventReceiver", + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 6, - "CommandName": "Remove-PnPEventReceiver", "Id": 1048, - "Command": "Remove-PnPEventReceiver -Scope Site" + "Command": "Remove-PnPEventReceiver -Scope Site", + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 7, - "CommandName": "Remove-PnPEventReceiver", "Id": 1049, - "Command": "Remove-PnPEventReceiver -Scope Web" + "Command": "Remove-PnPEventReceiver -Scope Web", + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 8, - "CommandName": "Remove-PnPEventReceiver", "Id": 1050, - "Command": "Remove-PnPEventReceiver -Scope All" + "Command": "Remove-PnPEventReceiver -Scope All", + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 1, - "CommandName": "Remove-PnPField", "Id": 1051, - "Command": "Remove-PnPField -Identity \"Speakers\"" + "Command": "Remove-PnPField -Identity \"Speakers\"", + "CommandName": "Remove-PnPField" }, { "Rank": 2, - "CommandName": "Remove-PnPField", "Id": 1052, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "CommandName": "Remove-PnPField" }, { "Rank": 1, - "CommandName": "Remove-PnPFieldFromContentType", "Id": 1053, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "CommandName": "Remove-PnPFieldFromContentType" }, { "Rank": 2, - "CommandName": "Remove-PnPFieldFromContentType", "Id": 1054, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "CommandName": "Remove-PnPFieldFromContentType" }, { "Rank": 1, - "CommandName": "Remove-PnPFile", "Id": 1055, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "CommandName": "Remove-PnPFile" }, { "Rank": 2, - "CommandName": "Remove-PnPFile", "Id": 1056, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "CommandName": "Remove-PnPFile" }, { "Rank": 3, - "CommandName": "Remove-PnPFile", "Id": 1057, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "CommandName": "Remove-PnPFile" }, { "Rank": 1, - "CommandName": "Remove-PnPFileFromSiteTemplate", "Id": 1058, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "CommandName": "Remove-PnPFileFromSiteTemplate" }, { "Rank": 1, - "CommandName": "Remove-PnPFileSharingLink", "Id": 1059, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Remove-PnPFileSharingLink" }, { "Rank": 2, - "CommandName": "Remove-PnPFileSharingLink", "Id": 1060, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "CommandName": "Remove-PnPFileSharingLink" }, { "Rank": 1, - "CommandName": "Remove-PnPFileVersion", "Id": 1061, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "CommandName": "Remove-PnPFileVersion" }, { "Rank": 2, - "CommandName": "Remove-PnPFileVersion", "Id": 1062, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "CommandName": "Remove-PnPFileVersion" }, { "Rank": 3, - "CommandName": "Remove-PnPFileVersion", "Id": 1063, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "CommandName": "Remove-PnPFileVersion" }, { "Rank": 1, - "CommandName": "Remove-PnPFlowOwner", "Id": 1064, - "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", + "CommandName": "Remove-PnPFlowOwner" }, { "Rank": 2, - "CommandName": "Remove-PnPFlowOwner", "Id": 1065, - "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", + "CommandName": "Remove-PnPFlowOwner" }, { "Rank": 3, - "CommandName": "Remove-PnPFlowOwner", "Id": 1066, - "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", + "CommandName": "Remove-PnPFlowOwner" }, { "Rank": 4, - "CommandName": "Remove-PnPFlowOwner", "Id": 1067, - "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", + "CommandName": "Remove-PnPFlowOwner" }, { "Rank": 1, - "CommandName": "Remove-PnPFolder", "Id": 1068, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "CommandName": "Remove-PnPFolder" }, { "Rank": 2, - "CommandName": "Remove-PnPFolder", "Id": 1069, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "CommandName": "Remove-PnPFolder" }, { "Rank": 1, - "CommandName": "Remove-PnPFolderSharingLink", "Id": 1070, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Remove-PnPFolderSharingLink" }, { "Rank": 2, - "CommandName": "Remove-PnPFolderSharingLink", "Id": 1071, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "CommandName": "Remove-PnPFolderSharingLink" }, { "Rank": 1, - "CommandName": "Remove-PnPGraphSubscription", "Id": 1072, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "CommandName": "Remove-PnPGraphSubscription" }, { "Rank": 1, - "CommandName": "Remove-PnPGroup", "Id": 1073, - "Command": "Remove-PnPGroup -Identity \"My Users\"" + "Command": "Remove-PnPGroup -Identity \"My Users\"", + "CommandName": "Remove-PnPGroup" }, { "Rank": 1, - "CommandName": "Remove-PnPGroupMember", "Id": 1074, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "CommandName": "Remove-PnPGroupMember" }, { "Rank": 1, - "CommandName": "Remove-PnPHomeSite", "Id": 1075, - "Command": "Remove-PnPHomeSite" + "Command": "Remove-PnPHomeSite", + "CommandName": "Remove-PnPHomeSite" }, { "Rank": 1, - "CommandName": "Remove-PnPHubSiteAssociation", "Id": 1076, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "CommandName": "Remove-PnPHubSiteAssociation" }, { "Rank": 1, - "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1077, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "CommandName": "Remove-PnPHubToHubAssociation" }, { "Rank": 2, - "CommandName": "Remove-PnPHubToHubAssociation", "Id": 1078, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "CommandName": "Remove-PnPHubToHubAssociation" }, { "Rank": 1, - "CommandName": "Remove-PnPIndexedProperty", "Id": 1079, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "CommandName": "Remove-PnPIndexedProperty" }, { "Rank": 1, - "CommandName": "Remove-PnPJavaScriptLink", "Id": 1080, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "CommandName": "Remove-PnPJavaScriptLink" }, { "Rank": 2, - "CommandName": "Remove-PnPJavaScriptLink", "Id": 1081, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "CommandName": "Remove-PnPJavaScriptLink" }, { "Rank": 3, - "CommandName": "Remove-PnPJavaScriptLink", "Id": 1082, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "CommandName": "Remove-PnPJavaScriptLink" }, { "Rank": 4, - "CommandName": "Remove-PnPJavaScriptLink", "Id": 1083, - "Command": "Remove-PnPJavaScriptLink -Scope Site" + "Command": "Remove-PnPJavaScriptLink -Scope Site", + "CommandName": "Remove-PnPJavaScriptLink" }, { "Rank": 5, - "CommandName": "Remove-PnPJavaScriptLink", "Id": 1084, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "CommandName": "Remove-PnPJavaScriptLink" }, { "Rank": 1, - "CommandName": "Remove-PnPKnowledgeHubSite", "Id": 1085, - "Command": "Remove-PnPKnowledgeHubSite" + "Command": "Remove-PnPKnowledgeHubSite", + "CommandName": "Remove-PnPKnowledgeHubSite" }, { "Rank": 1, - "CommandName": "Remove-PnPList", "Id": 1086, - "Command": "Remove-PnPList -Identity Announcements" + "Command": "Remove-PnPList -Identity Announcements", + "CommandName": "Remove-PnPList" }, { "Rank": 2, - "CommandName": "Remove-PnPList", "Id": 1087, - "Command": "Remove-PnPList -Identity Announcements -Force" + "Command": "Remove-PnPList -Identity Announcements -Force", + "CommandName": "Remove-PnPList" }, { "Rank": 3, - "CommandName": "Remove-PnPList", "Id": 1088, - "Command": "Remove-PnPList -Identity Announcements -Recycle" + "Command": "Remove-PnPList -Identity Announcements -Recycle", + "CommandName": "Remove-PnPList" }, { "Rank": 4, - "CommandName": "Remove-PnPList", "Id": 1089, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "CommandName": "Remove-PnPList" }, { "Rank": 1, - "CommandName": "Remove-PnPListDesign", "Id": 1090, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPListDesign" }, { "Rank": 1, - "CommandName": "Remove-PnPListItem", "Id": 1091, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "CommandName": "Remove-PnPListItem" }, { "Rank": 2, - "CommandName": "Remove-PnPListItem", "Id": 1092, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "CommandName": "Remove-PnPListItem" }, { "Rank": 3, - "CommandName": "Remove-PnPListItem", "Id": 1093, - "Command": "Remove-PnPListItem -List \"Demo List\"" + "Command": "Remove-PnPListItem -List \"Demo List\"", + "CommandName": "Remove-PnPListItem" }, { "Rank": 1, - "CommandName": "Remove-PnPListItemAttachment", "Id": 1094, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "CommandName": "Remove-PnPListItemAttachment" }, { "Rank": 2, - "CommandName": "Remove-PnPListItemAttachment", "Id": 1095, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "CommandName": "Remove-PnPListItemAttachment" }, { "Rank": 3, - "CommandName": "Remove-PnPListItemAttachment", "Id": 1096, - "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", + "CommandName": "Remove-PnPListItemAttachment" }, { "Rank": 4, - "CommandName": "Remove-PnPListItemAttachment", "Id": 1097, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "CommandName": "Remove-PnPListItemAttachment" }, { "Rank": 5, - "CommandName": "Remove-PnPListItemAttachment", "Id": 1098, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "CommandName": "Remove-PnPListItemAttachment" }, { "Rank": 1, - "CommandName": "Remove-PnPListItemVersion", "Id": 1099, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "CommandName": "Remove-PnPListItemVersion" }, { "Rank": 2, - "CommandName": "Remove-PnPListItemVersion", "Id": 1100, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "CommandName": "Remove-PnPListItemVersion" }, { "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1101, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "CommandName": "Remove-PnPMicrosoft365Group" }, { "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365Group", "Id": 1102, - "Command": "Remove-PnPMicrosoft365Group -Identity $group" + "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "CommandName": "Remove-PnPMicrosoft365Group" }, { "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupMember", "Id": 1103, - "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\"", + "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Id": 1104, - "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\"", + "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1105, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Id": 1106, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { "Rank": 1, - "CommandName": "Remove-PnPNavigationNode", "Id": 1107, - "Command": "Remove-PnPNavigationNode -Identity 1032" + "Command": "Remove-PnPNavigationNode -Identity 1032", + "CommandName": "Remove-PnPNavigationNode" }, { "Rank": 2, - "CommandName": "Remove-PnPNavigationNode", "Id": 1108, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "CommandName": "Remove-PnPNavigationNode" }, { "Rank": 3, - "CommandName": "Remove-PnPNavigationNode", "Id": 1109, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "CommandName": "Remove-PnPNavigationNode" }, { "Rank": 1, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1110, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Rank": 2, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1111, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Rank": 3, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Id": 1112, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Rank": 1, - "CommandName": "Remove-PnPOrgNewsSite", "Id": 1113, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "CommandName": "Remove-PnPOrgNewsSite" }, { "Rank": 1, - "CommandName": "Remove-PnPPage", "Id": 1114, - "Command": "Remove-PnPPage -Identity \"MyPage\"" + "Command": "Remove-PnPPage -Identity \"MyPage\"", + "CommandName": "Remove-PnPPage" }, { "Rank": 2, - "CommandName": "Remove-PnPPage", "Id": 1115, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "CommandName": "Remove-PnPPage" }, { "Rank": 3, - "CommandName": "Remove-PnPPage", "Id": 1116, - "Command": "Remove-PnPPage $page" + "Command": "Remove-PnPPage $page", + "CommandName": "Remove-PnPPage" }, { "Rank": 4, - "CommandName": "Remove-PnPPage", "Id": 1117, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "CommandName": "Remove-PnPPage" }, { "Rank": 1, - "CommandName": "Remove-PnPPageComponent", "Id": 1118, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Remove-PnPPageComponent" }, { "Rank": 1, - "CommandName": "Remove-PnPPlannerBucket", "Id": 1119, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "CommandName": "Remove-PnPPlannerBucket" }, { "Rank": 1, - "CommandName": "Remove-PnPPlannerPlan", "Id": 1120, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "CommandName": "Remove-PnPPlannerPlan" }, { "Rank": 1, - "CommandName": "Remove-PnPPlannerRoster", "Id": 1121, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "CommandName": "Remove-PnPPlannerRoster" }, { "Rank": 1, - "CommandName": "Remove-PnPPlannerRosterMember", "Id": 1122, - "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\"", + "CommandName": "Remove-PnPPlannerRosterMember" }, { "Rank": 1, - "CommandName": "Remove-PnPPlannerTask", "Id": 1123, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "CommandName": "Remove-PnPPlannerTask" }, { "Rank": 1, - "CommandName": "Remove-PnPPropertyBagValue", "Id": 1124, - "Command": "Remove-PnPPropertyBagValue -Key MyKey" + "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "CommandName": "Remove-PnPPropertyBagValue" }, { "Rank": 2, - "CommandName": "Remove-PnPPropertyBagValue", "Id": 1125, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "CommandName": "Remove-PnPPropertyBagValue" }, { "Rank": 3, - "CommandName": "Remove-PnPPropertyBagValue", "Id": 1126, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "CommandName": "Remove-PnPPropertyBagValue" }, { "Rank": 1, - "CommandName": "Remove-PnPPublishingImageRendition", "Id": 1127, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "CommandName": "Remove-PnPPublishingImageRendition" }, { "Rank": 1, - "CommandName": "Remove-PnPRoleDefinition", "Id": 1128, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "CommandName": "Remove-PnPRoleDefinition" }, { "Rank": 1, - "CommandName": "Remove-PnPSdnProvider", "Id": 1129, - "Command": "Remove-PnPSdnProvider -Confirm:false" + "Command": "Remove-PnPSdnProvider -Confirm:false", + "CommandName": "Remove-PnPSdnProvider" }, { "Rank": 1, - "CommandName": "Remove-PnPSearchConfiguration", "Id": 1130, - "Command": "Remove-PnPSearchConfiguration -Configuration $config" + "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "CommandName": "Remove-PnPSearchConfiguration" }, { "Rank": 2, - "CommandName": "Remove-PnPSearchConfiguration", "Id": 1131, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "CommandName": "Remove-PnPSearchConfiguration" }, { "Rank": 3, - "CommandName": "Remove-PnPSearchConfiguration", "Id": 1132, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "CommandName": "Remove-PnPSearchConfiguration" }, { "Rank": 4, - "CommandName": "Remove-PnPSearchConfiguration", "Id": 1133, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Remove-PnPSearchConfiguration" }, { "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1134, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { "Rank": 2, - "CommandName": "Remove-PnPSiteCollectionAdmin", "Id": 1135, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Id": 1136, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionTermStore", "Id": 1137, - "Command": "Remove-PnPSiteCollectionTermStore" + "Command": "Remove-PnPSiteCollectionTermStore", + "CommandName": "Remove-PnPSiteCollectionTermStore" }, { "Rank": 1, - "CommandName": "Remove-PnPSiteDesign", "Id": 1138, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteDesign" }, { "Rank": 1, - "CommandName": "Remove-PnPSiteDesignTask", "Id": 1139, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteDesignTask" }, { "Rank": 1, - "CommandName": "Remove-PnPSiteGroup", "Id": 1140, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Remove-PnPSiteGroup" }, { "Rank": 2, - "CommandName": "Remove-PnPSiteGroup", "Id": 1141, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "CommandName": "Remove-PnPSiteGroup" }, { "Rank": 1, - "CommandName": "Remove-PnPSiteScript", "Id": 1142, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteScript" }, { "Rank": 1, - "CommandName": "Remove-PnPSiteUserInvitations", "Id": 1143, - "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", + "CommandName": "Remove-PnPSiteUserInvitations" }, { "Rank": 1, - "CommandName": "Remove-PnPStorageEntity", "Id": 1144, - "Command": "Remove-PnPStorageEntity -Key MyKey" + "Command": "Remove-PnPStorageEntity -Key MyKey", + "CommandName": "Remove-PnPStorageEntity" }, { "Rank": 2, - "CommandName": "Remove-PnPStorageEntity", "Id": 1145, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "CommandName": "Remove-PnPStorageEntity" }, { "Rank": 1, - "CommandName": "Remove-PnPStoredCredential", "Id": 1146, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "CommandName": "Remove-PnPStoredCredential" }, { "Rank": 1, - "CommandName": "Remove-PnPTaxonomyItem", "Id": 1147, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "CommandName": "Remove-PnPTaxonomyItem" }, { "Rank": 2, - "CommandName": "Remove-PnPTaxonomyItem", "Id": 1148, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "CommandName": "Remove-PnPTaxonomyItem" }, { "Rank": 1, - "CommandName": "Remove-PnPTeamsApp", "Id": 1149, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "CommandName": "Remove-PnPTeamsApp" }, { "Rank": 2, - "CommandName": "Remove-PnPTeamsApp", "Id": 1150, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "CommandName": "Remove-PnPTeamsApp" }, { "Rank": 1, - "CommandName": "Remove-PnPTeamsChannel", "Id": 1151, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "CommandName": "Remove-PnPTeamsChannel" }, { "Rank": 1, - "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1152, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Rank": 2, - "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1153, - "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", + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Rank": 3, - "CommandName": "Remove-PnPTeamsChannelUser", "Id": 1154, - "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", + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Rank": 1, - "CommandName": "Remove-PnPTeamsTab", "Id": 1155, - "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", + "CommandName": "Remove-PnPTeamsTab" }, { "Rank": 2, - "CommandName": "Remove-PnPTeamsTab", "Id": 1156, - "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", + "CommandName": "Remove-PnPTeamsTab" }, { "Rank": 3, - "CommandName": "Remove-PnPTeamsTab", "Id": 1157, - "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", + "CommandName": "Remove-PnPTeamsTab" }, { "Rank": 1, - "CommandName": "Remove-PnPTeamsTag", "Id": 1158, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "CommandName": "Remove-PnPTeamsTag" }, { "Rank": 1, - "CommandName": "Remove-PnPTeamsTeam", "Id": 1159, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "CommandName": "Remove-PnPTeamsTeam" }, { "Rank": 2, - "CommandName": "Remove-PnPTeamsTeam", "Id": 1160, - "Command": "Remove-PnPTeamsTeam -Identity testteam" + "Command": "Remove-PnPTeamsTeam -Identity testteam", + "CommandName": "Remove-PnPTeamsTeam" }, { "Rank": 1, - "CommandName": "Remove-PnPTeamsUser", "Id": 1161, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "CommandName": "Remove-PnPTeamsUser" }, { "Rank": 2, - "CommandName": "Remove-PnPTeamsUser", "Id": 1162, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Remove-PnPTeamsUser" }, { "Rank": 1, - "CommandName": "Remove-PnPTenantCdnOrigin", "Id": 1163, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "CommandName": "Remove-PnPTenantCdnOrigin" }, { "Rank": 1, - "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1164, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Remove-PnPTenantDeletedSite" }, { "Rank": 2, - "CommandName": "Remove-PnPTenantDeletedSite", "Id": 1165, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "CommandName": "Remove-PnPTenantDeletedSite" }, { "Rank": 1, - "CommandName": "Remove-PnPTenantSite", "Id": 1166, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Remove-PnPTenantSite" }, { "Rank": 2, - "CommandName": "Remove-PnPTenantSite", "Id": 1167, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "CommandName": "Remove-PnPTenantSite" }, { "Rank": 3, - "CommandName": "Remove-PnPTenantSite", "Id": 1168, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "CommandName": "Remove-PnPTenantSite" }, { "Rank": 1, - "CommandName": "Remove-PnPTenantSyncClientRestriction", "Id": 1169, - "Command": "Remove-PnPTenantSyncClientRestriction" + "Command": "Remove-PnPTenantSyncClientRestriction", + "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { "Rank": 1, - "CommandName": "Remove-PnPTenantTheme", "Id": 1170, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "CommandName": "Remove-PnPTenantTheme" }, { "Rank": 1, - "CommandName": "Remove-PnPTerm", "Id": 1171, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "CommandName": "Remove-PnPTerm" }, { "Rank": 2, - "CommandName": "Remove-PnPTerm", "Id": 1172, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Remove-PnPTerm" }, { "Rank": 1, - "CommandName": "Remove-PnPTermGroup", "Id": 1173, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "CommandName": "Remove-PnPTermGroup" }, { "Rank": 2, - "CommandName": "Remove-PnPTermGroup", "Id": 1174, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "CommandName": "Remove-PnPTermGroup" }, { "Rank": 3, - "CommandName": "Remove-PnPTermGroup", "Id": 1175, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "CommandName": "Remove-PnPTermGroup" }, { "Rank": 1, - "CommandName": "Remove-PnPTermLabel", "Id": 1176, - "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", + "CommandName": "Remove-PnPTermLabel" }, { "Rank": 2, - "CommandName": "Remove-PnPTermLabel", "Id": 1177, - "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\"", + "CommandName": "Remove-PnPTermLabel" }, { "Rank": 1, - "CommandName": "Remove-PnPUser", "Id": 1178, - "Command": "Remove-PnPUser -Identity 23" + "Command": "Remove-PnPUser -Identity 23", + "CommandName": "Remove-PnPUser" }, { "Rank": 2, - "CommandName": "Remove-PnPUser", "Id": 1179, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "CommandName": "Remove-PnPUser" }, { "Rank": 3, - "CommandName": "Remove-PnPUser", "Id": 1180, - "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", + "CommandName": "Remove-PnPUser" }, { "Rank": 1, - "CommandName": "Remove-PnPUserInfo", "Id": 1181, - "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\"", + "CommandName": "Remove-PnPUserInfo" }, { "Rank": 1, - "CommandName": "Remove-PnPUserProfile", "Id": 1182, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com" + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "CommandName": "Remove-PnPUserProfile" }, { "Rank": 1, - "CommandName": "Remove-PnPView", "Id": 1183, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "CommandName": "Remove-PnPView" }, { "Rank": 1, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Id": 1184, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { "Rank": 1, - "CommandName": "Remove-PnPWeb", "Id": 1185, - "Command": "Remove-PnPWeb -Identity projectA" + "Command": "Remove-PnPWeb -Identity projectA", + "CommandName": "Remove-PnPWeb" }, { "Rank": 2, - "CommandName": "Remove-PnPWeb", "Id": 1186, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "CommandName": "Remove-PnPWeb" }, { "Rank": 1, - "CommandName": "Remove-PnPWebhookSubscription", "Id": 1187, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "CommandName": "Remove-PnPWebhookSubscription" }, { "Rank": 1, - "CommandName": "Remove-PnPWebPart", "Id": 1188, - "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", + "CommandName": "Remove-PnPWebPart" }, { "Rank": 2, - "CommandName": "Remove-PnPWebPart", "Id": 1189, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "CommandName": "Remove-PnPWebPart" }, { "Rank": 1, - "CommandName": "Remove-PnPWikiPage", "Id": 1190, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "CommandName": "Remove-PnPWikiPage" }, { "Rank": 1, - "CommandName": "Rename-PnPFile", "Id": 1191, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "CommandName": "Rename-PnPFile" }, { "Rank": 2, - "CommandName": "Rename-PnPFile", "Id": 1192, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "CommandName": "Rename-PnPFile" }, { "Rank": 3, - "CommandName": "Rename-PnPFile", "Id": 1193, - "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", + "CommandName": "Rename-PnPFile" }, { "Rank": 1, - "CommandName": "Rename-PnPFolder", "Id": 1194, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "CommandName": "Rename-PnPFolder" }, { "Rank": 1, - "CommandName": "Repair-PnPSite", "Id": 1195, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Repair-PnPSite" }, { "Rank": 2, - "CommandName": "Repair-PnPSite", "Id": 1196, - "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\"", + "CommandName": "Repair-PnPSite" }, { "Rank": 1, - "CommandName": "Request-PnPAccessToken", "Id": 1197, - "Command": "Request-PnPAccessToken" + "Command": "Request-PnPAccessToken", + "CommandName": "Request-PnPAccessToken" }, { "Rank": 2, - "CommandName": "Request-PnPAccessToken", "Id": 1198, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "CommandName": "Request-PnPAccessToken" }, { "Rank": 3, - "CommandName": "Request-PnPAccessToken", "Id": 1199, - "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", + "CommandName": "Request-PnPAccessToken" }, { "Rank": 4, - "CommandName": "Request-PnPAccessToken", "Id": 1200, - "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", + "CommandName": "Request-PnPAccessToken" }, { "Rank": 1, - "CommandName": "Request-PnPPersonalSite", "Id": 1201, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "CommandName": "Request-PnPPersonalSite" }, { "Rank": 2, - "CommandName": "Request-PnPPersonalSite", "Id": 1202, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "CommandName": "Request-PnPPersonalSite" }, { "Rank": 1, - "CommandName": "Request-PnPReIndexList", "Id": 1203, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"" + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "CommandName": "Request-PnPReIndexList" }, { "Rank": 1, - "CommandName": "Request-PnPReIndexWeb", "Id": 1204, - "Command": "Request-PnPReIndexWeb" + "Command": "Request-PnPReIndexWeb", + "CommandName": "Request-PnPReIndexWeb" }, { "Rank": 1, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1205, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Rank": 2, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1206, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Rank": 3, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Id": 1207, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Rank": 1, - "CommandName": "Reset-PnPFileVersion", "Id": 1208, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "CommandName": "Reset-PnPFileVersion" }, { "Rank": 2, - "CommandName": "Reset-PnPFileVersion", "Id": 1209, - "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\"", + "CommandName": "Reset-PnPFileVersion" }, { "Rank": 1, - "CommandName": "Reset-PnPLabel", "Id": 1210, - "Command": "Reset-PnPLabel -List \"Demo List\"" + "Command": "Reset-PnPLabel -List \"Demo List\"", + "CommandName": "Reset-PnPLabel" }, { "Rank": 2, - "CommandName": "Reset-PnPLabel", "Id": 1211, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "CommandName": "Reset-PnPLabel" }, { "Rank": 1, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Id": 1212, - "Command": "Reset-PnPMicrosoft365GroupExpiration" + "Command": "Reset-PnPMicrosoft365GroupExpiration", + "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { "Rank": 1, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Id": 1213, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { "Rank": 1, - "CommandName": "Resolve-PnPFolder", "Id": 1214, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "CommandName": "Resolve-PnPFolder" }, { "Rank": 1, - "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Id": 1215, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { "Rank": 1, - "CommandName": "Restore-PnPFileVersion", "Id": 1216, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "CommandName": "Restore-PnPFileVersion" }, { "Rank": 2, - "CommandName": "Restore-PnPFileVersion", "Id": 1217, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "CommandName": "Restore-PnPFileVersion" }, { "Rank": 3, - "CommandName": "Restore-PnPFileVersion", "Id": 1218, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "CommandName": "Restore-PnPFileVersion" }, { "Rank": 1, - "CommandName": "Restore-PnPListItemVersion", "Id": 1219, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "CommandName": "Restore-PnPListItemVersion" }, { "Rank": 2, - "CommandName": "Restore-PnPListItemVersion", "Id": 1220, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "CommandName": "Restore-PnPListItemVersion" }, { "Rank": 1, - "CommandName": "Restore-PnPRecycleBinItem", "Id": 1221, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "CommandName": "Restore-PnPRecycleBinItem" }, { "Rank": 1, - "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1222, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { "Rank": 2, - "CommandName": "Restore-PnPTenantRecycleBinItem", "Id": 1223, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { "Rank": 1, - "CommandName": "Restore-PnPTenantSite", "Id": 1224, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Restore-PnPTenantSite" }, { "Rank": 2, - "CommandName": "Restore-PnPTenantSite", "Id": 1225, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "CommandName": "Restore-PnPTenantSite" }, { "Rank": 3, - "CommandName": "Restore-PnPTenantSite", "Id": 1226, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "CommandName": "Restore-PnPTenantSite" }, { "Rank": 1, - "CommandName": "Revoke-PnPAzureADAppSitePermission", "Id": 1227, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { "Rank": 1, - "CommandName": "Revoke-PnPHubSiteRights", "Id": 1228, - "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\"", + "CommandName": "Revoke-PnPHubSiteRights" }, { "Rank": 1, - "CommandName": "Revoke-PnPSiteDesignRights", "Id": 1229, - "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\"", + "CommandName": "Revoke-PnPSiteDesignRights" }, { "Rank": 1, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Id": 1230, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { "Rank": 1, - "CommandName": "Revoke-PnPUserSession", "Id": 1231, - "Command": "Revoke-PnPUserSession -User user1@contoso.com" + "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "CommandName": "Revoke-PnPUserSession" }, { "Rank": 1, - "CommandName": "Save-PnPPageConversionLog", "Id": 1232, - "Command": "Save-PnPPageConversionLog" + "Command": "Save-PnPPageConversionLog", + "CommandName": "Save-PnPPageConversionLog" }, { "Rank": 1, - "CommandName": "Save-PnPSiteTemplate", "Id": 1233, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "CommandName": "Save-PnPSiteTemplate" }, { "Rank": 1, - "CommandName": "Save-PnPTenantTemplate", "Id": 1234, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "CommandName": "Save-PnPTenantTemplate" }, { "Rank": 1, - "CommandName": "Send-PnPMail", "Id": 1235, - "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\"", + "CommandName": "Send-PnPMail" }, { "Rank": 2, - "CommandName": "Send-PnPMail", "Id": 1236, - "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", + "CommandName": "Send-PnPMail" }, { "Rank": 3, - "CommandName": "Send-PnPMail", "Id": 1237, - "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\"", + "CommandName": "Send-PnPMail" }, { "Rank": 4, - "CommandName": "Send-PnPMail", "Id": 1238, - "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", + "CommandName": "Send-PnPMail" }, { "Rank": 5, - "CommandName": "Send-PnPMail", "Id": 1239, - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -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", + "CommandName": "Send-PnPMail" }, { "Rank": 6, - "CommandName": "Send-PnPMail", "Id": 1240, - "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\"", + "CommandName": "Send-PnPMail" }, { "Rank": 1, - "CommandName": "Set-PnPAdaptiveScopeProperty", "Id": 1241, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "CommandName": "Set-PnPAdaptiveScopeProperty" }, { "Rank": 1, - "CommandName": "Set-PnPApplicationCustomizer", "Id": 1242, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Set-PnPApplicationCustomizer" }, { "Rank": 2, - "CommandName": "Set-PnPApplicationCustomizer", "Id": 1243, - "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`\"}\"", + "CommandName": "Set-PnPApplicationCustomizer" }, { "Rank": 1, - "CommandName": "Set-PnPAppSideLoading", "Id": 1244, - "Command": "Set-PnPAppSideLoading -On" + "Command": "Set-PnPAppSideLoading -On", + "CommandName": "Set-PnPAppSideLoading" }, { "Rank": 2, - "CommandName": "Set-PnPAppSideLoading", "Id": 1245, - "Command": "Set-PnPAppSideLoading -Off" + "Command": "Set-PnPAppSideLoading -Off", + "CommandName": "Set-PnPAppSideLoading" }, { "Rank": 1, - "CommandName": "Set-PnPAuditing", "Id": 1246, - "Command": "Set-PnPAuditing -EnableAll" + "Command": "Set-PnPAuditing -EnableAll", + "CommandName": "Set-PnPAuditing" }, { "Rank": 2, - "CommandName": "Set-PnPAuditing", "Id": 1247, - "Command": "Set-PnPAuditing -DisableAll" + "Command": "Set-PnPAuditing -DisableAll", + "CommandName": "Set-PnPAuditing" }, { "Rank": 3, - "CommandName": "Set-PnPAuditing", "Id": 1248, - "Command": "Set-PnPAuditing -RetentionTime 7" + "Command": "Set-PnPAuditing -RetentionTime 7", + "CommandName": "Set-PnPAuditing" }, { "Rank": 4, - "CommandName": "Set-PnPAuditing", "Id": 1249, - "Command": "Set-PnPAuditing -TrimAuditLog" + "Command": "Set-PnPAuditing -TrimAuditLog", + "CommandName": "Set-PnPAuditing" }, { "Rank": 5, - "CommandName": "Set-PnPAuditing", "Id": 1250, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "CommandName": "Set-PnPAuditing" }, { "Rank": 1, - "CommandName": "Set-PnPAvailablePageLayouts", "Id": 1251, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "CommandName": "Set-PnPAvailablePageLayouts" }, { "Rank": 1, - "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1252, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "CommandName": "Set-PnPAzureADAppSitePermission" }, { "Rank": 2, - "CommandName": "Set-PnPAzureADAppSitePermission", "Id": 1253, - "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", + "CommandName": "Set-PnPAzureADAppSitePermission" }, { "Rank": 1, - "CommandName": "Set-PnPAzureADGroup", "Id": 1254, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPAzureADGroup" }, { "Rank": 2, - "CommandName": "Set-PnPAzureADGroup", "Id": 1255, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPAzureADGroup" }, { "Rank": 3, - "CommandName": "Set-PnPAzureADGroup", "Id": 1256, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "CommandName": "Set-PnPAzureADGroup" }, { "Rank": 1, - "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1257, - "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\"", + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Rank": 2, - "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1258, - "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)", + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Rank": 3, - "CommandName": "Set-PnPBrowserIdleSignout", "Id": 1259, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Rank": 1, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1260, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { "Rank": 2, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Id": 1261, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { "Rank": 1, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1262, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Rank": 2, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1263, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Rank": 3, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1264, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Rank": 4, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Id": 1265, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Rank": 1, - "CommandName": "Set-PnPContentType", "Id": 1266, - "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\"", + "CommandName": "Set-PnPContentType" }, { "Rank": 2, - "CommandName": "Set-PnPContentType", "Id": 1267, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "CommandName": "Set-PnPContentType" }, { "Rank": 3, - "CommandName": "Set-PnPContentType", "Id": 1268, - "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\"", + "CommandName": "Set-PnPContentType" }, { "Rank": 4, - "CommandName": "Set-PnPContentType", "Id": 1269, - "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\" }'", + "CommandName": "Set-PnPContentType" }, { "Rank": 5, - "CommandName": "Set-PnPContentType", "Id": 1270, - "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\" }'", + "CommandName": "Set-PnPContentType" }, { "Rank": 1, - "CommandName": "Set-PnPDefaultColumnValues", "Id": 1271, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "CommandName": "Set-PnPDefaultColumnValues" }, { "Rank": 2, - "CommandName": "Set-PnPDefaultColumnValues", "Id": 1272, - "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\"", + "CommandName": "Set-PnPDefaultColumnValues" }, { "Rank": 3, - "CommandName": "Set-PnPDefaultColumnValues", "Id": 1273, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "CommandName": "Set-PnPDefaultColumnValues" }, { "Rank": 4, - "CommandName": "Set-PnPDefaultColumnValues", "Id": 1274, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "CommandName": "Set-PnPDefaultColumnValues" }, { "Rank": 1, - "CommandName": "Set-PnPDefaultContentTypeToList", "Id": 1275, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "CommandName": "Set-PnPDefaultContentTypeToList" }, { "Rank": 1, - "CommandName": "Set-PnPDefaultPageLayout", "Id": 1276, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "CommandName": "Set-PnPDefaultPageLayout" }, { "Rank": 2, - "CommandName": "Set-PnPDefaultPageLayout", "Id": 1277, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "CommandName": "Set-PnPDefaultPageLayout" }, { "Rank": 3, - "CommandName": "Set-PnPDefaultPageLayout", "Id": 1278, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "CommandName": "Set-PnPDefaultPageLayout" }, { "Rank": 1, - "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1279, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Rank": 2, - "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1280, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Rank": 3, - "CommandName": "Set-PnPDisableSpacesActivation", "Id": 1281, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Rank": 1, - "CommandName": "Set-PnPDocumentSetField", "Id": 1282, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "CommandName": "Set-PnPDocumentSetField" }, { "Rank": 2, - "CommandName": "Set-PnPDocumentSetField", "Id": 1283, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "CommandName": "Set-PnPDocumentSetField" }, { "Rank": 1, - "CommandName": "Set-PnPField", "Id": 1284, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "CommandName": "Set-PnPField" }, { "Rank": 2, - "CommandName": "Set-PnPField", "Id": 1285, - "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", + "CommandName": "Set-PnPField" }, { "Rank": 3, - "CommandName": "Set-PnPField", "Id": 1286, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "CommandName": "Set-PnPField" }, { "Rank": 1, - "CommandName": "Set-PnPFileCheckedIn", "Id": 1287, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "CommandName": "Set-PnPFileCheckedIn" }, { "Rank": 2, - "CommandName": "Set-PnPFileCheckedIn", "Id": 1288, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "CommandName": "Set-PnPFileCheckedIn" }, { "Rank": 1, - "CommandName": "Set-PnPFileCheckedOut", "Id": 1289, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "CommandName": "Set-PnPFileCheckedOut" }, { "Rank": 1, - "CommandName": "Set-PnPFolderPermission", "Id": 1290, - "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'", + "CommandName": "Set-PnPFolderPermission" }, { "Rank": 2, - "CommandName": "Set-PnPFolderPermission", "Id": 1291, - "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'", + "CommandName": "Set-PnPFolderPermission" }, { "Rank": 3, - "CommandName": "Set-PnPFolderPermission", "Id": 1292, - "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", + "CommandName": "Set-PnPFolderPermission" }, { "Rank": 1, - "CommandName": "Set-PnPFooter", "Id": 1293, - "Command": "Set-PnPFooter -Enabled:$true" + "Command": "Set-PnPFooter -Enabled:$true", + "CommandName": "Set-PnPFooter" }, { "Rank": 2, - "CommandName": "Set-PnPFooter", "Id": 1294, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "CommandName": "Set-PnPFooter" }, { "Rank": 3, - "CommandName": "Set-PnPFooter", "Id": 1295, - "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\"", + "CommandName": "Set-PnPFooter" }, { "Rank": 4, - "CommandName": "Set-PnPFooter", "Id": 1296, - "Command": "Set-PnPFooter -LogoUrl \"\"" + "Command": "Set-PnPFooter -LogoUrl \"\"", + "CommandName": "Set-PnPFooter" }, { "Rank": 1, - "CommandName": "Set-PnPGraphSubscription", "Id": 1297, - "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\"", + "CommandName": "Set-PnPGraphSubscription" }, { "Rank": 1, - "CommandName": "Set-PnPGroup", "Id": 1298, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "CommandName": "Set-PnPGroup" }, { "Rank": 2, - "CommandName": "Set-PnPGroup", "Id": 1299, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "CommandName": "Set-PnPGroup" }, { "Rank": 1, - "CommandName": "Set-PnPGroupPermissions", "Id": 1300, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "CommandName": "Set-PnPGroupPermissions" }, { "Rank": 2, - "CommandName": "Set-PnPGroupPermissions", "Id": 1301, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "CommandName": "Set-PnPGroupPermissions" }, { "Rank": 3, - "CommandName": "Set-PnPGroupPermissions", "Id": 1302, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "CommandName": "Set-PnPGroupPermissions" }, { "Rank": 4, - "CommandName": "Set-PnPGroupPermissions", "Id": 1303, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "CommandName": "Set-PnPGroupPermissions" }, { "Rank": 5, - "CommandName": "Set-PnPGroupPermissions", "Id": 1304, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "CommandName": "Set-PnPGroupPermissions" }, { "Rank": 1, - "CommandName": "Set-PnPHideDefaultThemes", "Id": 1305, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "CommandName": "Set-PnPHideDefaultThemes" }, { "Rank": 2, - "CommandName": "Set-PnPHideDefaultThemes", "Id": 1306, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "CommandName": "Set-PnPHideDefaultThemes" }, { "Rank": 1, - "CommandName": "Set-PnPHomePage", "Id": 1307, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "CommandName": "Set-PnPHomePage" }, { "Rank": 2, - "CommandName": "Set-PnPHomePage", "Id": 1308, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "CommandName": "Set-PnPHomePage" }, { "Rank": 1, - "CommandName": "Set-PnPHomeSite", "Id": 1309, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "CommandName": "Set-PnPHomeSite" }, { "Rank": 2, - "CommandName": "Set-PnPHomeSite", "Id": 1310, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "CommandName": "Set-PnPHomeSite" }, { "Rank": 1, - "CommandName": "Set-PnPHubSite", "Id": 1311, - "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\"", + "CommandName": "Set-PnPHubSite" }, { "Rank": 2, - "CommandName": "Set-PnPHubSite", "Id": 1312, - "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\"", + "CommandName": "Set-PnPHubSite" }, { "Rank": 3, - "CommandName": "Set-PnPHubSite", "Id": 1313, - "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", + "CommandName": "Set-PnPHubSite" }, { "Rank": 4, - "CommandName": "Set-PnPHubSite", "Id": 1314, - "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\"", + "CommandName": "Set-PnPHubSite" }, { "Rank": 5, - "CommandName": "Set-PnPHubSite", "Id": 1315, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "CommandName": "Set-PnPHubSite" }, { "Rank": 6, - "CommandName": "Set-PnPHubSite", "Id": 1316, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "CommandName": "Set-PnPHubSite" }, { "Rank": 1, - "CommandName": "Set-PnPImageListItemColumn", "Id": 1317, - "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\"", + "CommandName": "Set-PnPImageListItemColumn" }, { "Rank": 2, - "CommandName": "Set-PnPImageListItemColumn", "Id": 1318, - "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", + "CommandName": "Set-PnPImageListItemColumn" }, { "Rank": 1, - "CommandName": "Set-PnPIndexedProperties", "Id": 1319, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "CommandName": "Set-PnPIndexedProperties" }, { "Rank": 1, - "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1320, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { "Rank": 2, - "CommandName": "Set-PnPInPlaceRecordsManagement", "Id": 1321, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { "Rank": 1, - "CommandName": "Set-PnPKnowledgeHubSite", "Id": 1322, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "CommandName": "Set-PnPKnowledgeHubSite" }, { "Rank": 1, - "CommandName": "Set-PnPLabel", "Id": 1323, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "CommandName": "Set-PnPLabel" }, { "Rank": 2, - "CommandName": "Set-PnPLabel", "Id": 1324, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "CommandName": "Set-PnPLabel" }, { "Rank": 1, - "CommandName": "Set-PnPList", "Id": 1325, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "CommandName": "Set-PnPList" }, { "Rank": 2, - "CommandName": "Set-PnPList", "Id": 1326, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "CommandName": "Set-PnPList" }, { "Rank": 3, - "CommandName": "Set-PnPList", "Id": 1327, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "CommandName": "Set-PnPList" }, { "Rank": 4, - "CommandName": "Set-PnPList", "Id": 1328, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "CommandName": "Set-PnPList" }, { "Rank": 5, - "CommandName": "Set-PnPList", "Id": 1329, - "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", + "CommandName": "Set-PnPList" }, { "Rank": 6, - "CommandName": "Set-PnPList", "Id": 1330, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "CommandName": "Set-PnPList" }, { "Rank": 7, - "CommandName": "Set-PnPList", "Id": 1331, - "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\"", + "CommandName": "Set-PnPList" }, { "Rank": 8, - "CommandName": "Set-PnPList", "Id": 1332, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "CommandName": "Set-PnPList" }, { "Rank": 9, - "CommandName": "Set-PnPList", "Id": 1333, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "CommandName": "Set-PnPList" }, { "Rank": 10, - "CommandName": "Set-PnPList", "Id": 1334, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "CommandName": "Set-PnPList" }, { "Rank": 11, - "CommandName": "Set-PnPList", "Id": 1335, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "CommandName": "Set-PnPList" }, { "Rank": 1, - "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1336, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "CommandName": "Set-PnPListInformationRightsManagement" }, { "Rank": 2, - "CommandName": "Set-PnPListInformationRightsManagement", "Id": 1337, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "CommandName": "Set-PnPListInformationRightsManagement" }, { "Rank": 1, - "CommandName": "Set-PnPListItem", "Id": 1338, - "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\"}", + "CommandName": "Set-PnPListItem" }, { "Rank": 2, - "CommandName": "Set-PnPListItem", "Id": 1339, - "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\"}", + "CommandName": "Set-PnPListItem" }, { "Rank": 3, - "CommandName": "Set-PnPListItem", "Id": 1340, - "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\"}", + "CommandName": "Set-PnPListItem" }, { "Rank": 4, - "CommandName": "Set-PnPListItem", "Id": 1341, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "CommandName": "Set-PnPListItem" }, { "Rank": 5, - "CommandName": "Set-PnPListItem", "Id": 1342, - "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", + "CommandName": "Set-PnPListItem" }, { "Rank": 1, - "CommandName": "Set-PnPListItemAsRecord", "Id": 1343, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "CommandName": "Set-PnPListItemAsRecord" }, { "Rank": 2, - "CommandName": "Set-PnPListItemAsRecord", "Id": 1344, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "CommandName": "Set-PnPListItemAsRecord" }, { "Rank": 1, - "CommandName": "Set-PnPListItemPermission", "Id": 1345, - "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'", + "CommandName": "Set-PnPListItemPermission" }, { "Rank": 2, - "CommandName": "Set-PnPListItemPermission", "Id": 1346, - "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'", + "CommandName": "Set-PnPListItemPermission" }, { "Rank": 3, - "CommandName": "Set-PnPListItemPermission", "Id": 1347, - "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", + "CommandName": "Set-PnPListItemPermission" }, { "Rank": 4, - "CommandName": "Set-PnPListItemPermission", "Id": 1348, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "CommandName": "Set-PnPListItemPermission" }, { "Rank": 5, - "CommandName": "Set-PnPListItemPermission", "Id": 1349, - "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\"", + "CommandName": "Set-PnPListItemPermission" }, { "Rank": 1, - "CommandName": "Set-PnPListPermission", "Id": 1350, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPListPermission" }, { "Rank": 2, - "CommandName": "Set-PnPListPermission", "Id": 1351, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPListPermission" }, { "Rank": 1, - "CommandName": "Set-PnPListRecordDeclaration", "Id": 1352, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "CommandName": "Set-PnPListRecordDeclaration" }, { "Rank": 2, - "CommandName": "Set-PnPListRecordDeclaration", "Id": 1353, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "CommandName": "Set-PnPListRecordDeclaration" }, { "Rank": 1, - "CommandName": "Set-PnPMasterPage", "Id": 1354, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage" }, { "Rank": 2, - "CommandName": "Set-PnPMasterPage", "Id": 1355, - "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", + "CommandName": "Set-PnPMasterPage" }, { "Rank": 3, - "CommandName": "Set-PnPMasterPage", "Id": 1356, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage" }, { "Rank": 4, - "CommandName": "Set-PnPMasterPage", "Id": 1357, - "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", + "CommandName": "Set-PnPMasterPage" }, { "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1358, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1359, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1360, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1361, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1362, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1363, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1364, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1365, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1366, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1367, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1368, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1369, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1370, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1371, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1372, - "Command": "Set-PnPMessageCenterAnnouncementAsRead" + "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1373, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1374, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1375, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Rank": 1, - "CommandName": "Set-PnPMicrosoft365Group", "Id": 1376, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPMicrosoft365Group" }, { "Rank": 2, - "CommandName": "Set-PnPMicrosoft365Group", "Id": 1377, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPMicrosoft365Group" }, { "Rank": 3, - "CommandName": "Set-PnPMicrosoft365Group", "Id": 1378, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "CommandName": "Set-PnPMicrosoft365Group" }, { "Rank": 4, - "CommandName": "Set-PnPMicrosoft365Group", "Id": 1379, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "CommandName": "Set-PnPMicrosoft365Group" }, { "Rank": 5, - "CommandName": "Set-PnPMicrosoft365Group", "Id": 1380, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "CommandName": "Set-PnPMicrosoft365Group" }, { "Rank": 6, - "CommandName": "Set-PnPMicrosoft365Group", "Id": 1381, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "CommandName": "Set-PnPMicrosoft365Group" }, { "Rank": 1, - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1382, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { "Rank": 2, - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Id": 1383, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { "Rank": 1, - "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1384, - "Command": "Set-PnPMinimalDownloadStrategy -Off" + "Command": "Set-PnPMinimalDownloadStrategy -Off", + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { "Rank": 2, - "CommandName": "Set-PnPMinimalDownloadStrategy", "Id": 1385, - "Command": "Set-PnPMinimalDownloadStrategy -On" + "Command": "Set-PnPMinimalDownloadStrategy -On", + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { "Rank": 1, - "CommandName": "Set-PnPPage", "Id": 1386, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "CommandName": "Set-PnPPage" }, { "Rank": 2, - "CommandName": "Set-PnPPage", "Id": 1387, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "CommandName": "Set-PnPPage" }, { "Rank": 3, - "CommandName": "Set-PnPPage", "Id": 1388, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "CommandName": "Set-PnPPage" }, { "Rank": 4, - "CommandName": "Set-PnPPage", "Id": 1389, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "CommandName": "Set-PnPPage" }, { "Rank": 5, - "CommandName": "Set-PnPPage", "Id": 1390, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "CommandName": "Set-PnPPage" }, { "Rank": 6, - "CommandName": "Set-PnPPage", "Id": 1391, - "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", + "CommandName": "Set-PnPPage" }, { "Rank": 7, - "CommandName": "Set-PnPPage", "Id": 1392, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "CommandName": "Set-PnPPage" }, { "Rank": 8, - "CommandName": "Set-PnPPage", "Id": 1393, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "CommandName": "Set-PnPPage" }, { "Rank": 9, - "CommandName": "Set-PnPPage", "Id": 1394, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "CommandName": "Set-PnPPage" }, { "Rank": 10, - "CommandName": "Set-PnPPage", "Id": 1395, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "CommandName": "Set-PnPPage" }, { "Rank": 11, - "CommandName": "Set-PnPPage", "Id": 1396, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "CommandName": "Set-PnPPage" }, { "Rank": 1, - "CommandName": "Set-PnPPageTextPart", "Id": 1397, - "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\"", + "CommandName": "Set-PnPPageTextPart" }, { "Rank": 1, - "CommandName": "Set-PnPPageWebPart", "Id": 1398, - "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`\"\"", + "CommandName": "Set-PnPPageWebPart" }, { "Rank": 2, - "CommandName": "Set-PnPPageWebPart", "Id": 1399, - "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", + "CommandName": "Set-PnPPageWebPart" }, { "Rank": 1, - "CommandName": "Set-PnPPlannerBucket", "Id": 1400, - "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\"", + "CommandName": "Set-PnPPlannerBucket" }, { "Rank": 1, - "CommandName": "Set-PnPPlannerConfiguration", "Id": 1401, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "CommandName": "Set-PnPPlannerConfiguration" }, { "Rank": 2, - "CommandName": "Set-PnPPlannerConfiguration", "Id": 1402, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "CommandName": "Set-PnPPlannerConfiguration" }, { "Rank": 1, - "CommandName": "Set-PnPPlannerPlan", "Id": 1403, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "CommandName": "Set-PnPPlannerPlan" }, { "Rank": 1, - "CommandName": "Set-PnPPlannerTask", "Id": 1404, - "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", + "CommandName": "Set-PnPPlannerTask" }, { "Rank": 2, - "CommandName": "Set-PnPPlannerTask", "Id": 1405, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "CommandName": "Set-PnPPlannerTask" }, { "Rank": 3, - "CommandName": "Set-PnPPlannerTask", "Id": 1406, - "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\"", + "CommandName": "Set-PnPPlannerTask" }, { "Rank": 1, - "CommandName": "Set-PnPPlannerUserPolicy", "Id": 1407, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Set-PnPPlannerUserPolicy" }, { "Rank": 1, - "CommandName": "Set-PnPPropertyBagValue", "Id": 1408, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "CommandName": "Set-PnPPropertyBagValue" }, { "Rank": 2, - "CommandName": "Set-PnPPropertyBagValue", "Id": 1409, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "CommandName": "Set-PnPPropertyBagValue" }, { "Rank": 3, - "CommandName": "Set-PnPPropertyBagValue", "Id": 1410, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "CommandName": "Set-PnPPropertyBagValue" }, { "Rank": 1, - "CommandName": "Set-PnPRequestAccessEmails", "Id": 1411, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "CommandName": "Set-PnPRequestAccessEmails" }, { "Rank": 2, - "CommandName": "Set-PnPRequestAccessEmails", "Id": 1412, - "Command": "Set-PnPRequestAccessEmails -Disabled" + "Command": "Set-PnPRequestAccessEmails -Disabled", + "CommandName": "Set-PnPRequestAccessEmails" }, { "Rank": 3, - "CommandName": "Set-PnPRequestAccessEmails", "Id": 1413, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false" + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "CommandName": "Set-PnPRequestAccessEmails" }, { "Rank": 1, - "CommandName": "Set-PnPRoleDefinition", "Id": 1414, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "CommandName": "Set-PnPRoleDefinition" }, { "Rank": 2, - "CommandName": "Set-PnPRoleDefinition", "Id": 1415, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "CommandName": "Set-PnPRoleDefinition" }, { "Rank": 3, - "CommandName": "Set-PnPRoleDefinition", "Id": 1416, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "CommandName": "Set-PnPRoleDefinition" }, { "Rank": 4, - "CommandName": "Set-PnPRoleDefinition", "Id": 1417, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "CommandName": "Set-PnPRoleDefinition" }, { "Rank": 1, - "CommandName": "Set-PnPSearchConfiguration", "Id": 1418, - "Command": "Set-PnPSearchConfiguration -Configuration $config" + "Command": "Set-PnPSearchConfiguration -Configuration $config", + "CommandName": "Set-PnPSearchConfiguration" }, { "Rank": 2, - "CommandName": "Set-PnPSearchConfiguration", "Id": 1419, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "CommandName": "Set-PnPSearchConfiguration" }, { "Rank": 3, - "CommandName": "Set-PnPSearchConfiguration", "Id": 1420, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "CommandName": "Set-PnPSearchConfiguration" }, { "Rank": 4, - "CommandName": "Set-PnPSearchConfiguration", "Id": 1421, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Set-PnPSearchConfiguration" }, { "Rank": 1, - "CommandName": "Set-PnPSearchExternalItem", "Id": 1422, - "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", + "CommandName": "Set-PnPSearchExternalItem" }, { "Rank": 2, - "CommandName": "Set-PnPSearchExternalItem", "Id": 1423, - "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\"", + "CommandName": "Set-PnPSearchExternalItem" }, { "Rank": 1, - "CommandName": "Set-PnPSearchSettings", "Id": 1424, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "CommandName": "Set-PnPSearchSettings" }, { "Rank": 2, - "CommandName": "Set-PnPSearchSettings", "Id": 1425, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "CommandName": "Set-PnPSearchSettings" }, { "Rank": 3, - "CommandName": "Set-PnPSearchSettings", "Id": 1426, - "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\"", + "CommandName": "Set-PnPSearchSettings" }, { "Rank": 4, - "CommandName": "Set-PnPSearchSettings", "Id": 1427, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "CommandName": "Set-PnPSearchSettings" }, { "Rank": 5, - "CommandName": "Set-PnPSearchSettings", "Id": 1428, - "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", + "CommandName": "Set-PnPSearchSettings" }, { "Rank": 6, - "CommandName": "Set-PnPSearchSettings", "Id": 1429, - "Command": "Set-PnPSearchSettings -SearchScope Tenant" + "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "CommandName": "Set-PnPSearchSettings" }, { "Rank": 7, - "CommandName": "Set-PnPSearchSettings", "Id": 1430, - "Command": "Set-PnPSearchSettings -SearchScope Hub" + "Command": "Set-PnPSearchSettings -SearchScope Hub", + "CommandName": "Set-PnPSearchSettings" }, { "Rank": 1, - "CommandName": "Set-PnPSite", "Id": 1431, - "Command": "Set-PnPSite -Classification \"HBI\"" + "Command": "Set-PnPSite -Classification \"HBI\"", + "CommandName": "Set-PnPSite" }, { "Rank": 2, - "CommandName": "Set-PnPSite", "Id": 1432, - "Command": "Set-PnPSite -Classification $null" + "Command": "Set-PnPSite -Classification $null", + "CommandName": "Set-PnPSite" }, { "Rank": 3, - "CommandName": "Set-PnPSite", "Id": 1433, - "Command": "Set-PnPSite -DisableFlows" + "Command": "Set-PnPSite -DisableFlows", + "CommandName": "Set-PnPSite" }, { "Rank": 4, - "CommandName": "Set-PnPSite", "Id": 1434, - "Command": "Set-PnPSite -DisableFlows:$false" + "Command": "Set-PnPSite -DisableFlows:$false", + "CommandName": "Set-PnPSite" }, { "Rank": 5, - "CommandName": "Set-PnPSite", "Id": 1435, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "CommandName": "Set-PnPSite" }, { "Rank": 6, - "CommandName": "Set-PnPSite", "Id": 1436, - "Command": "Set-PnPSite -NoScriptSite $false" + "Command": "Set-PnPSite -NoScriptSite $false", + "CommandName": "Set-PnPSite" }, { "Rank": 7, - "CommandName": "Set-PnPSite", "Id": 1437, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "CommandName": "Set-PnPSite" }, { "Rank": 8, - "CommandName": "Set-PnPSite", "Id": 1438, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "CommandName": "Set-PnPSite" }, { "Rank": 9, - "CommandName": "Set-PnPSite", "Id": 1439, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "CommandName": "Set-PnPSite" }, { "Rank": 10, - "CommandName": "Set-PnPSite", "Id": 1440, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "CommandName": "Set-PnPSite" }, { "Rank": 11, - "CommandName": "Set-PnPSite", "Id": 1441, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "CommandName": "Set-PnPSite" }, { "Rank": 12, - "CommandName": "Set-PnPSite", "Id": 1442, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "CommandName": "Set-PnPSite" }, { "Rank": 13, - "CommandName": "Set-PnPSite", "Id": 1443, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "CommandName": "Set-PnPSite" }, { "Rank": 14, - "CommandName": "Set-PnPSite", "Id": 1444, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "CommandName": "Set-PnPSite" }, { "Rank": 15, - "CommandName": "Set-PnPSite", "Id": 1445, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "CommandName": "Set-PnPSite" }, { "Rank": 16, - "CommandName": "Set-PnPSite", "Id": 1446, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "CommandName": "Set-PnPSite" }, { "Rank": 17, - "CommandName": "Set-PnPSite", "Id": 1447, - "Command": "Set-PnPSite -CancelVPForExistingLibs" + "Command": "Set-PnPSite -CancelVPForExistingLibs", + "CommandName": "Set-PnPSite" }, { "Rank": 1, - "CommandName": "Set-PnPSiteClassification", "Id": 1448, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"" + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "CommandName": "Set-PnPSiteClassification" }, { "Rank": 1, - "CommandName": "Set-PnPSiteClosure", "Id": 1449, - "Command": "Set-PnPSiteClosure -State Open" + "Command": "Set-PnPSiteClosure -State Open", + "CommandName": "Set-PnPSiteClosure" }, { "Rank": 2, - "CommandName": "Set-PnPSiteClosure", "Id": 1450, - "Command": "Set-PnPSiteClosure -State Closed" + "Command": "Set-PnPSiteClosure -State Closed", + "CommandName": "Set-PnPSiteClosure" }, { "Rank": 1, - "CommandName": "Set-PnPSiteDesign", "Id": 1451, - "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\"", + "CommandName": "Set-PnPSiteDesign" }, { "Rank": 2, - "CommandName": "Set-PnPSiteDesign", "Id": 1452, - "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\"", + "CommandName": "Set-PnPSiteDesign" }, { "Rank": 1, - "CommandName": "Set-PnPSiteGroup", "Id": 1453, - "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\"", + "CommandName": "Set-PnPSiteGroup" }, { "Rank": 2, - "CommandName": "Set-PnPSiteGroup", "Id": 1454, - "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", + "CommandName": "Set-PnPSiteGroup" }, { "Rank": 1, - "CommandName": "Set-PnPSitePolicy", "Id": 1455, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "CommandName": "Set-PnPSitePolicy" }, { "Rank": 1, - "CommandName": "Set-PnPSiteScript", "Id": 1456, - "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\"", + "CommandName": "Set-PnPSiteScript" }, { "Rank": 1, - "CommandName": "Set-PnPSiteScriptPackage", "Id": 1457, - "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\"", + "CommandName": "Set-PnPSiteScriptPackage" }, { "Rank": 1, - "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1458, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "CommandName": "Set-PnPSiteSensitivityLabel" }, { "Rank": 2, - "CommandName": "Set-PnPSiteSensitivityLabel", "Id": 1459, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "CommandName": "Set-PnPSiteSensitivityLabel" }, { "Rank": 1, - "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1460, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Rank": 2, - "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1461, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Rank": 3, - "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1462, - "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\"", + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Rank": 4, - "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1463, - "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\"", + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Rank": 5, - "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1464, - "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\"}", + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Rank": 6, - "CommandName": "Set-PnPSiteTemplateMetadata", "Id": 1465, - "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\"}", + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Rank": 1, - "CommandName": "Set-PnPStorageEntity", "Id": 1466, - "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\"", + "CommandName": "Set-PnPStorageEntity" }, { "Rank": 2, - "CommandName": "Set-PnPStorageEntity", "Id": 1467, - "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\"", + "CommandName": "Set-PnPStorageEntity" }, { "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1468, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Id": 1469, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1470, - "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\"", + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Id": 1471, - "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\"", + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { "Rank": 1, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1472, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { "Rank": 2, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Id": 1473, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { "Rank": 1, - "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1474, - "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", + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Rank": 2, - "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1475, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Rank": 3, - "CommandName": "Set-PnPTaxonomyFieldValue", "Id": 1476, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Rank": 1, - "CommandName": "Set-PnPTeamifyPromptHidden", "Id": 1477, - "Command": "Set-PnPTeamifyPromptHidden" + "Command": "Set-PnPTeamifyPromptHidden", + "CommandName": "Set-PnPTeamifyPromptHidden" }, { "Rank": 1, - "CommandName": "Set-PnPTeamsChannel", "Id": 1478, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "CommandName": "Set-PnPTeamsChannel" }, { "Rank": 2, - "CommandName": "Set-PnPTeamsChannel", "Id": 1479, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "CommandName": "Set-PnPTeamsChannel" }, { "Rank": 1, - "CommandName": "Set-PnpTeamsChannelUser", "Id": 1480, - "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", + "CommandName": "Set-PnpTeamsChannelUser" }, { "Rank": 2, - "CommandName": "Set-PnpTeamsChannelUser", "Id": 1481, - "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", + "CommandName": "Set-PnpTeamsChannelUser" }, { "Rank": 1, - "CommandName": "Set-PnPTeamsTab", "Id": 1482, - "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\"", + "CommandName": "Set-PnPTeamsTab" }, { "Rank": 1, - "CommandName": "Set-PnPTeamsTag", "Id": 1483, - "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\"", + "CommandName": "Set-PnPTeamsTag" }, { "Rank": 1, - "CommandName": "Set-PnPTeamsTeam", "Id": 1484, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "CommandName": "Set-PnPTeamsTeam" }, { "Rank": 2, - "CommandName": "Set-PnPTeamsTeam", "Id": 1485, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "CommandName": "Set-PnPTeamsTeam" }, { "Rank": 3, - "CommandName": "Set-PnPTeamsTeam", "Id": 1486, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "CommandName": "Set-PnPTeamsTeam" }, { "Rank": 4, - "CommandName": "Set-PnPTeamsTeam", "Id": 1487, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "CommandName": "Set-PnPTeamsTeam" }, { "Rank": 1, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1488, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Rank": 2, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1489, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Rank": 3, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Id": 1490, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Rank": 1, - "CommandName": "Set-PnPTeamsTeamPicture", "Id": 1491, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "CommandName": "Set-PnPTeamsTeamPicture" }, { "Rank": 1, - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1492, - "Command": "Set-PnPTemporarilyDisableAppBar $true" + "Command": "Set-PnPTemporarilyDisableAppBar $true", + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { "Rank": 2, - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Id": 1493, - "Command": "Set-PnPTemporarilyDisableAppBar $false" + "Command": "Set-PnPTemporarilyDisableAppBar $false", + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { "Rank": 1, - "CommandName": "Set-PnPTenant", "Id": 1494, - "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\"", + "CommandName": "Set-PnPTenant" }, { "Rank": 2, - "CommandName": "Set-PnPTenant", "Id": 1495, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "CommandName": "Set-PnPTenant" }, { "Rank": 3, - "CommandName": "Set-PnPTenant", "Id": 1496, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false" + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "CommandName": "Set-PnPTenant" }, { "Rank": 4, - "CommandName": "Set-PnPTenant", "Id": 1497, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "CommandName": "Set-PnPTenant" }, { "Rank": 1, - "CommandName": "Set-PnPTenantAppCatalogUrl", "Id": 1498, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "CommandName": "Set-PnPTenantAppCatalogUrl" }, { "Rank": 1, - "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1499, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Rank": 2, - "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1500, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Rank": 3, - "CommandName": "Set-PnPTenantCdnEnabled", "Id": 1501, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Rank": 1, - "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1502, - "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\"", + "CommandName": "Set-PnPTenantCdnPolicy" }, { "Rank": 2, - "CommandName": "Set-PnPTenantCdnPolicy", "Id": 1503, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "CommandName": "Set-PnPTenantCdnPolicy" }, { "Rank": 1, - "CommandName": "Set-PnPTenantSite", "Id": 1504, - "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", + "CommandName": "Set-PnPTenantSite" }, { "Rank": 2, - "CommandName": "Set-PnPTenantSite", "Id": 1505, - "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", + "CommandName": "Set-PnPTenantSite" }, { "Rank": 3, - "CommandName": "Set-PnPTenantSite", "Id": 1506, - "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\"", + "CommandName": "Set-PnPTenantSite" }, { "Rank": 4, - "CommandName": "Set-PnPTenantSite", "Id": 1507, - "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\")", + "CommandName": "Set-PnPTenantSite" }, { "Rank": 5, - "CommandName": "Set-PnPTenantSite", "Id": 1508, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "CommandName": "Set-PnPTenantSite" }, { "Rank": 1, - "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1509, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { "Rank": 2, - "CommandName": "Set-PnPTenantSyncClientRestriction", "Id": 1510, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { "Rank": 1, - "CommandName": "Set-PnPTerm", "Id": 1511, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "CommandName": "Set-PnPTerm" }, { "Rank": 2, - "CommandName": "Set-PnPTerm", "Id": 1512, - "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\"}", + "CommandName": "Set-PnPTerm" }, { "Rank": 3, - "CommandName": "Set-PnPTerm", "Id": 1513, - "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\"}", + "CommandName": "Set-PnPTerm" }, { "Rank": 4, - "CommandName": "Set-PnPTerm", "Id": 1514, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "CommandName": "Set-PnPTerm" }, { "Rank": 1, - "CommandName": "Set-PnPTermGroup", "Id": 1515, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "CommandName": "Set-PnPTermGroup" }, { "Rank": 1, - "CommandName": "Set-PnPTermSet", "Id": 1516, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "CommandName": "Set-PnPTermSet" }, { "Rank": 2, - "CommandName": "Set-PnPTermSet", "Id": 1517, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "CommandName": "Set-PnPTermSet" }, { "Rank": 3, - "CommandName": "Set-PnPTermSet", "Id": 1518, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "CommandName": "Set-PnPTermSet" }, { "Rank": 1, - "CommandName": "Set-PnPTheme", "Id": 1519, - "Command": "Set-PnPTheme" + "Command": "Set-PnPTheme", + "CommandName": "Set-PnPTheme" }, { "Rank": 2, - "CommandName": "Set-PnPTheme", "Id": 1520, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "CommandName": "Set-PnPTheme" }, { "Rank": 3, - "CommandName": "Set-PnPTheme", "Id": 1521, - "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'", + "CommandName": "Set-PnPTheme" }, { "Rank": 4, - "CommandName": "Set-PnPTheme", "Id": 1522, - "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", + "CommandName": "Set-PnPTheme" }, { "Rank": 1, - "CommandName": "Set-PnPTraceLog", "Id": 1523, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "CommandName": "Set-PnPTraceLog" }, { "Rank": 2, - "CommandName": "Set-PnPTraceLog", "Id": 1524, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "CommandName": "Set-PnPTraceLog" }, { "Rank": 3, - "CommandName": "Set-PnPTraceLog", "Id": 1525, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "CommandName": "Set-PnPTraceLog" }, { "Rank": 4, - "CommandName": "Set-PnPTraceLog", "Id": 1526, - "Command": "Set-PnPTraceLog -Off" + "Command": "Set-PnPTraceLog -Off", + "CommandName": "Set-PnPTraceLog" }, { "Rank": 1, - "CommandName": "Set-PnPUserOneDriveQuota", "Id": 1527, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "CommandName": "Set-PnPUserOneDriveQuota" }, { "Rank": 1, - "CommandName": "Set-PnPUserProfileProperty", "Id": 1528, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "CommandName": "Set-PnPUserProfileProperty" }, { "Rank": 2, - "CommandName": "Set-PnPUserProfileProperty", "Id": 1529, - "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'", + "CommandName": "Set-PnPUserProfileProperty" }, { "Rank": 1, - "CommandName": "Set-PnPView", "Id": 1530, - "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\"}", + "CommandName": "Set-PnPView" }, { "Rank": 2, - "CommandName": "Set-PnPView", "Id": 1531, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "CommandName": "Set-PnPView" }, { "Rank": 3, - "CommandName": "Set-PnPView", "Id": 1532, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "CommandName": "Set-PnPView" }, { "Rank": 4, - "CommandName": "Set-PnPView", "Id": 1533, - "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\"}", + "CommandName": "Set-PnPView" }, { "Rank": 1, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1534, - "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", + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Rank": 2, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1535, - "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\"", + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Rank": 3, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1536, - "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", + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Rank": 4, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Id": 1537, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Rank": 1, - "CommandName": "Set-PnPWeb", "Id": 1538, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "CommandName": "Set-PnPWeb" }, { "Rank": 2, - "CommandName": "Set-PnPWeb", "Id": 1539, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "CommandName": "Set-PnPWeb" }, { "Rank": 3, - "CommandName": "Set-PnPWeb", "Id": 1540, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "CommandName": "Set-PnPWeb" }, { "Rank": 4, - "CommandName": "Set-PnPWeb", "Id": 1541, - "Command": "Set-PnPWeb -NoCrawl:$true" + "Command": "Set-PnPWeb -NoCrawl:$true", + "CommandName": "Set-PnPWeb" }, { "Rank": 1, - "CommandName": "Set-PnPWebHeader", "Id": 1542, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "CommandName": "Set-PnPWebHeader" }, { "Rank": 2, - "CommandName": "Set-PnPWebHeader", "Id": 1543, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "CommandName": "Set-PnPWebHeader" }, { "Rank": 3, - "CommandName": "Set-PnPWebHeader", "Id": 1544, - "Command": "Set-PnPWebHeader -LogoAlignment Middle" + "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "CommandName": "Set-PnPWebHeader" }, { "Rank": 1, - "CommandName": "Set-PnPWebhookSubscription", "Id": 1545, - "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", + "CommandName": "Set-PnPWebhookSubscription" }, { "Rank": 2, - "CommandName": "Set-PnPWebhookSubscription", "Id": 1546, - "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\"", + "CommandName": "Set-PnPWebhookSubscription" }, { "Rank": 1, - "CommandName": "Set-PnPWebPartProperty", "Id": 1547, - "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\"", + "CommandName": "Set-PnPWebPartProperty" }, { "Rank": 1, - "CommandName": "Set-PnPWebPermission", "Id": 1548, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission" }, { "Rank": 2, - "CommandName": "Set-PnPWebPermission", "Id": 1549, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission" }, { "Rank": 3, - "CommandName": "Set-PnPWebPermission", "Id": 1550, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission" }, { "Rank": 4, - "CommandName": "Set-PnPWebPermission", "Id": 1551, - "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\"", + "CommandName": "Set-PnPWebPermission" }, { "Rank": 1, - "CommandName": "Set-PnPWebTheme", "Id": 1552, - "Command": "Set-PnPWebTheme -Theme MyTheme" + "Command": "Set-PnPWebTheme -Theme MyTheme", + "CommandName": "Set-PnPWebTheme" }, { "Rank": 2, - "CommandName": "Set-PnPWebTheme", "Id": 1553, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "CommandName": "Set-PnPWebTheme" }, { "Rank": 1, - "CommandName": "Set-PnPWikiPageContent", "Id": 1554, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "CommandName": "Set-PnPWikiPageContent" }, { "Rank": 1, - "CommandName": "Submit-PnPSearchQuery", "Id": 1555, - "Command": "Submit-PnPSearchQuery -Query \"finance\"" + "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "CommandName": "Submit-PnPSearchQuery" }, { "Rank": 2, - "CommandName": "Submit-PnPSearchQuery", "Id": 1556, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "CommandName": "Submit-PnPSearchQuery" }, { "Rank": 3, - "CommandName": "Submit-PnPSearchQuery", "Id": 1557, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "CommandName": "Submit-PnPSearchQuery" }, { "Rank": 4, - "CommandName": "Submit-PnPSearchQuery", "Id": 1558, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "CommandName": "Submit-PnPSearchQuery" }, { "Rank": 5, - "CommandName": "Submit-PnPSearchQuery", "Id": 1559, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "CommandName": "Submit-PnPSearchQuery" }, { "Rank": 6, - "CommandName": "Submit-PnPSearchQuery", "Id": 1560, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All" + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", + "CommandName": "Submit-PnPSearchQuery" }, { "Rank": 1, - "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1561, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "CommandName": "Submit-PnPTeamsChannelMessage" }, { "Rank": 2, - "CommandName": "Submit-PnPTeamsChannelMessage", "Id": 1562, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "CommandName": "Submit-PnPTeamsChannelMessage" }, { "Rank": 1, - "CommandName": "Sync-PnPAppToTeams", "Id": 1563, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Sync-PnPAppToTeams" }, { "Rank": 1, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1564, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Rank": 2, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1565, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Rank": 3, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Id": 1566, - "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", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Rank": 1, - "CommandName": "Test-PnPListItemIsRecord", "Id": 1567, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "CommandName": "Test-PnPListItemIsRecord" }, { "Rank": 1, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Id": 1568, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { "Rank": 1, - "CommandName": "Test-PnPSite", "Id": 1569, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Test-PnPSite" }, { "Rank": 2, - "CommandName": "Test-PnPSite", "Id": 1570, - "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\"", + "CommandName": "Test-PnPSite" }, { "Rank": 1, - "CommandName": "Test-PnPTenantTemplate", "Id": 1571, - "Command": "Test-PnPTenantTemplate -Template $myTemplate" + "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "CommandName": "Test-PnPTenantTemplate" }, { "Rank": 1, - "CommandName": "Undo-PnPFileCheckedOut", "Id": 1572, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "CommandName": "Undo-PnPFileCheckedOut" }, { "Rank": 1, - "CommandName": "Uninstall-PnPApp", "Id": 1573, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Uninstall-PnPApp" }, { "Rank": 2, - "CommandName": "Uninstall-PnPApp", "Id": 1574, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Uninstall-PnPApp" }, { "Rank": 1, - "CommandName": "Unpublish-PnPApp", "Id": 1575, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Unpublish-PnPApp" }, { "Rank": 2, - "CommandName": "Unpublish-PnPApp", "Id": 1576, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Unpublish-PnPApp" }, { "Rank": 1, - "CommandName": "Unpublish-PnPContentType", "Id": 1577, - "Command": "Unpublish-PnPContentType -ContentType 0x0101" + "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "CommandName": "Unpublish-PnPContentType" }, { "Rank": 1, - "CommandName": "Unpublish-PnPSyntexModel", "Id": 1578, - "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\"", + "CommandName": "Unpublish-PnPSyntexModel" }, { "Rank": 2, - "CommandName": "Unpublish-PnPSyntexModel", "Id": 1579, - "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", + "CommandName": "Unpublish-PnPSyntexModel" }, { "Rank": 1, - "CommandName": "Unregister-PnPHubSite", "Id": 1580, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "CommandName": "Unregister-PnPHubSite" }, { "Rank": 1, - "CommandName": "Update-PnPApp", "Id": 1581, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Update-PnPApp" }, { "Rank": 2, - "CommandName": "Update-PnPApp", "Id": 1582, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Update-PnPApp" }, { "Rank": 1, - "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1583, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Rank": 2, - "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1584, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Rank": 3, - "CommandName": "Update-PnPAvailableSiteClassification", "Id": 1585, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Rank": 1, - "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1586, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Rank": 2, - "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1587, - "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)", + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Rank": 3, - "CommandName": "Update-PnPSiteDesignFromWeb", "Id": 1588, - "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\"", + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Rank": 1, - "CommandName": "Update-PnPTeamsApp", "Id": 1589, - "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", + "CommandName": "Update-PnPTeamsApp" }, { "Rank": 1, - "CommandName": "Update-PnPTeamsUser", "Id": 1590, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Update-PnPTeamsUser" }, { "Rank": 2, - "CommandName": "Update-PnPTeamsUser", "Id": 1591, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "CommandName": "Update-PnPTeamsUser" }, { "Rank": 3, - "CommandName": "Update-PnPTeamsUser", "Id": 1592, - "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", + "CommandName": "Update-PnPTeamsUser" }, { "Rank": 1, - "CommandName": "Update-PnPUserType", "Id": 1593, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "CommandName": "Update-PnPUserType" } ] diff --git a/version.txt b/version.txt index 59733a016..e99c6dedf 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.121 \ No newline at end of file +2.2.122 \ No newline at end of file From 375539e3cfcc2486c78f8f8f86bd61d1ba2a1b28 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Tue, 7 Nov 2023 15:10:29 +0100 Subject: [PATCH 133/146] Adding contributors entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f224e83e..f2a7e00c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -84,6 +84,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Contributors +- Christian Veenhuis [ChVeen] - Kunj Balkrishna Sangani [kunj-sangani] - Antti K. Koskela [koskila] - Dave Paylor [paylord] From bb8fd90429900516739d66cf74265c015ccdb2f7 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Tue, 7 Nov 2023 15:18:09 +0100 Subject: [PATCH 134/146] Adding changelog entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ed1f3381..346113eec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added GCC support for `Get-PnPAzureADUser` , `Add-PnPFlowOwner` , `Remove-PnPFlowOwner`, `Sync-PnPSharePointUserProfilesFromAzureActiveDirectory`, `New-PnPAzureADUserTemporaryAccessPass` and `Get-PnPAvailableSensitivityLabel` cmdlets. [#3484](https://github.com/pnp/powershell/pull/3484) - Added a devcontainer for easily building a minimal environment necessary to contribute to the project. [#3497](https://github.com/pnp/powershell/pull/3497) - Added `-RelativeUrl` parameter to `Connect-PnPOnline` cmdlet to allow specifying custom URLs for usage with `-WebLogin` method. [#3530](https://github.com/pnp/powershell/pull/3530) +- Added `-MailNickname` parameter to `Set-PnPMicrosoft365Group` cmdlet to allow changing of this property on a Microsoft 365 Group [#3529](https://github.com/pnp/powershell/pull/3529) ### Fixed From 4bfb880684289beb091c4d08bb91aa4690469332 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Tue, 7 Nov 2023 16:25:18 +0100 Subject: [PATCH 135/146] Changing exceptions not to be swallowed but shown in verbose and the exception to be thrown if it still happens on the last attempt --- documentation/Submit-PnPSearchQuery.md | 21 +++++++++++++++++---- src/Commands/Search/SubmitSearchQuery.cs | 19 ++++++++++++++----- 2 files changed, 31 insertions(+), 9 deletions(-) diff --git a/documentation/Submit-PnPSearchQuery.md b/documentation/Submit-PnPSearchQuery.md index b6e66e604..0601c3cad 100644 --- a/documentation/Submit-PnPSearchQuery.md +++ b/documentation/Submit-PnPSearchQuery.md @@ -22,7 +22,7 @@ Submit-PnPSearchQuery [-Query] [-StartRow ] [-MaxResults [-RankingModelId ] [-ClientType ] [-CollapseSpecification ] [-HiddenConstraints ] [-TimeZoneId ] [-EnablePhonetic ] [-EnableStemming ] [-EnableQueryRules ] [-SourceId ] [-ProcessBestBets ] - [-ProcessPersonalFavorites ] [-RelevantResults] [-Connection ] [-RetryCount ] + [-ProcessPersonalFavorites ] [-RelevantResults] [-Connection ] [-RetryCount ] [-Verbose] ``` @@ -34,7 +34,7 @@ Submit-PnPSearchQuery [-Query] [-All] [-TrimDuplicates ] [-Pro [-CollapseSpecification ] [-HiddenConstraints ] [-TimeZoneId ] [-EnablePhonetic ] [-EnableStemming ] [-EnableQueryRules ] [-SourceId ] [-ProcessBestBets ] [-ProcessPersonalFavorites ] [-RelevantResults] - [-Connection ] [-RetryCount ] + [-Connection ] [-RetryCount ] [-Verbose] ``` ## DESCRIPTION @@ -451,7 +451,20 @@ Accept pipeline input: False Accept wildcard characters: False ``` -## RELATED LINKS +### -Verbose +When provided, additional debug statements will be shown while executing the cmdlet. -[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) +```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/Search/SubmitSearchQuery.cs b/src/Commands/Search/SubmitSearchQuery.cs index 5c38bbe74..48699f292 100644 --- a/src/Commands/Search/SubmitSearchQuery.cs +++ b/src/Commands/Search/SubmitSearchQuery.cs @@ -182,12 +182,21 @@ internal IEnumerable Run() break; } // If we're not retrying, or if we're on the last retry, don't catch the exception - catch (Exception ex) when (RetryCount > 0 && iterator < RetryCount) - { - // Swallow the exception and retry (with incremental backoff) - Thread.Sleep(5000 * (iterator+1)); + catch (Exception ex) + { + if (RetryCount > 0 && iterator < RetryCount) + { + var waitTime = 5 * (iterator + 1); + + WriteVerbose($"Search operation failed with exception {ex.Message}. Attempt {iterator + 1} out of {RetryCount}. Retrying in {waitTime} seconds."); - continue; + Thread.Sleep(TimeSpan.FromSeconds(waitTime)); + continue; + } + else + { + throw; + } } } startRow += rowLimit; From 6b136b7279488654501f3023ff76cc4185ca095d Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Tue, 7 Nov 2023 16:28:27 +0100 Subject: [PATCH 136/146] Added changelog entry --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ed1f3381..082fc65d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added GCC support for `Get-PnPAzureADUser` , `Add-PnPFlowOwner` , `Remove-PnPFlowOwner`, `Sync-PnPSharePointUserProfilesFromAzureActiveDirectory`, `New-PnPAzureADUserTemporaryAccessPass` and `Get-PnPAvailableSensitivityLabel` cmdlets. [#3484](https://github.com/pnp/powershell/pull/3484) - Added a devcontainer for easily building a minimal environment necessary to contribute to the project. [#3497](https://github.com/pnp/powershell/pull/3497) - Added `-RelativeUrl` parameter to `Connect-PnPOnline` cmdlet to allow specifying custom URLs for usage with `-WebLogin` method. [#3530](https://github.com/pnp/powershell/pull/3530) +- Added `-RetryCount` to `Submit-PnPSearchQuery` which allows for specifying the number of retries to perform when an exception occurs [#3528](https://github.com/pnp/powershell/pull/3528) ### Fixed @@ -84,6 +85,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Contributors +- Antti K. Koskela [koskila] - Kunj Balkrishna Sangani [kunj-sangani] - Antti K. Koskela [koskila] - Dave Paylor [paylord] From 486c156efeaf73435fe3c60747daf1851b9b0014 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Tue, 7 Nov 2023 17:03:26 +0100 Subject: [PATCH 137/146] Adding modern list template Ids --- documentation/Set-PnPTenant.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/documentation/Set-PnPTenant.md b/documentation/Set-PnPTenant.md index ab57e2d99..209e4e50f 100644 --- a/documentation/Set-PnPTenant.md +++ b/documentation/Set-PnPTenant.md @@ -1465,6 +1465,12 @@ Accept wildcard characters: False ### -EnableModernListTemplateIds Guids of out of the box modern list templates to show when creating a new list +| Template | Template Id | +| ------------- | ------------- | +| Media library | 7fdc8cba-3e07-4851-a7ac-b747040ff1ce | +| Learning | 2a31cc9a-a7a2-4978-8104-6b7c0c0ff1ce | +| Invoices | cb3f4b1a-d4d8-40b3-a3e8-c39c470ff1ce | + ```yaml Type: Guid[] Parameter Sets: (All) From 485361988ea8f3ec999d0a86cdb672b211774e7b Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Wed, 8 Nov 2023 00:21:24 +0100 Subject: [PATCH 138/146] Adding notice with the -Delta parameter Adding notice with the -Delta parameter that using it in combination with -Select and -Filter has limitations --- documentation/Get-PnPAzureADUser.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/documentation/Get-PnPAzureADUser.md b/documentation/Get-PnPAzureADUser.md index fc65ae562..8cf8c5210 100644 --- a/documentation/Get-PnPAzureADUser.md +++ b/documentation/Get-PnPAzureADUser.md @@ -115,6 +115,8 @@ Retrieves the 10th through the 20th user from Azure Active Directory. Notice tha ### -Delta Retrieves all users and provides a SkipToken delta token to allow to query for changes since this run when querying again by adding -DeltaToken to the command. +Note that using -Select and -Filter in combination with this parameter is limited. More information on this can be found [here](https://learn.microsoft.com/graph/api/user-delta?view=graph-rest-1.0&tabs=http#odata-query-parameters). + ```yaml Type: SwitchParameter Parameter Sets: Return the delta @@ -240,4 +242,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) From 123c19ffd73c5f32666e2ad928a699271f0733b4 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Wed, 8 Nov 2023 02:40:23 +0000 Subject: [PATCH 139/146] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 3186 ++++++++--------- version.txt | 2 +- 3 files changed, 1595 insertions(+), 1595 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 92b526755..37899da39 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -96a66602734e6f043c5e23fe1b661e154e2ac140 \ No newline at end of file +d2ac9319c4d9f1a8c6b23140c2f3657af92aa097 \ 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 a791db9db..fe4107cbf 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9560 +1,9560 @@ [ { - "Rank": 1, "Id": 1, "Command": "Add-PnPAlert -List \"Demo List\"", + "Rank": 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)", + "Rank": 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\"", + "Rank": 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))", + "Rank": 4, "CommandName": "Add-PnPAlert" }, { - "Rank": 1, "Id": 5, "Command": "Add-PnPApp -Path ./myapp.sppkg", + "Rank": 1, "CommandName": "Add-PnPApp" }, { - "Rank": 2, "Id": 6, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "Rank": 2, "CommandName": "Add-PnPApp" }, { - "Rank": 3, "Id": 7, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "Rank": 3, "CommandName": "Add-PnPApp" }, { - "Rank": 4, "Id": 8, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "Rank": 4, "CommandName": "Add-PnPApp" }, { - "Rank": 1, "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, "Id": 10, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "Rank": 1, "CommandName": "Add-PnPAvailableSiteClassification" }, { - "Rank": 2, "Id": 11, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "Rank": 2, "CommandName": "Add-PnPAvailableSiteClassification" }, { - "Rank": 1, "Id": 12, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPAzureADGroupMember" }, { - "Rank": 2, "Id": 13, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "CommandName": "Add-PnPAzureADGroupMember" }, { - "Rank": 3, "Id": 14, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Rank": 3, "CommandName": "Add-PnPAzureADGroupMember" }, { - "Rank": 1, "Id": 15, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPAzureADGroupOwner" }, { - "Rank": 2, "Id": 16, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "CommandName": "Add-PnPAzureADGroupOwner" }, { - "Rank": 3, "Id": 17, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Rank": 3, "CommandName": "Add-PnPAzureADGroupOwner" }, { - "Rank": 1, "Id": 18, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", + "Rank": 1, "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\"", + "Rank": 2, "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { - "Rank": 1, "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": 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\"", + "Rank": 2, "CommandName": "Add-PnPContentType" }, { - "Rank": 3, "Id": 22, "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", + "Rank": 3, "CommandName": "Add-PnPContentType" }, { - "Rank": 4, "Id": 23, "Command": "Add-PnPContentType -Name \"Project Item\"", + "Rank": 4, "CommandName": "Add-PnPContentType" }, { - "Rank": 5, "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": 1, "Id": 25, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "Rank": 1, "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { - "Rank": 2, "Id": 26, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "Rank": 2, "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { - "Rank": 1, "Id": 27, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Rank": 1, "CommandName": "Add-PnPContentTypeToDocumentSet" }, { - "Rank": 2, "Id": 28, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Rank": 2, "CommandName": "Add-PnPContentTypeToDocumentSet" }, { - "Rank": 1, "Id": 29, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "Rank": 1, "CommandName": "Add-PnPContentTypeToList" }, { - "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`\"}\"", + "Rank": 1, "CommandName": "Add-PnPCustomAction" }, { - "Rank": 1, "Id": 31, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "Rank": 1, "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { - "Rank": 2, "Id": 32, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "Rank": 2, "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { - "Rank": 1, "Id": 33, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "Rank": 1, "CommandName": "Add-PnPDocumentSet" }, { - "Rank": 1, "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": 2, "Id": 35, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", + "Rank": 2, "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", + "Rank": 3, "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", + "Rank": 4, "CommandName": "Add-PnPEventReceiver" }, { - "Rank": 1, "Id": 38, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "Rank": 1, "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\"", + "Rank": 2, "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\"", + "Rank": 3, "CommandName": "Add-PnPField" }, { - "Rank": 4, "Id": 41, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "Rank": 4, "CommandName": "Add-PnPField" }, { - "Rank": 5, "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": 6, "Id": 43, "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "Rank": 6, "CommandName": "Add-PnPField" }, { - "Rank": 1, "Id": 44, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Rank": 1, "CommandName": "Add-PnPFieldToContentType" }, { - "Rank": 1, "Id": 45, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "Rank": 1, "CommandName": "Add-PnPFile" }, { - "Rank": 2, "Id": 46, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "Rank": 2, "CommandName": "Add-PnPFile" }, { - "Rank": 3, "Id": 47, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 3, "CommandName": "Add-PnPFile" }, { - "Rank": 4, "Id": 48, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", + "Rank": 4, "CommandName": "Add-PnPFile" }, { - "Rank": 5, "Id": 49, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 5, "CommandName": "Add-PnPFile" }, { - "Rank": 6, "Id": 50, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", + "Rank": 6, "CommandName": "Add-PnPFile" }, { - "Rank": 7, "Id": 51, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "Rank": 7, "CommandName": "Add-PnPFile" }, { - "Rank": 8, "Id": 52, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "Rank": 8, "CommandName": "Add-PnPFile" }, { - "Rank": 1, "Id": 53, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "Rank": 2, "Id": 54, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", + "Rank": 2, "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "Rank": 3, "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": 1, "Id": 56, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { - "Rank": 2, "Id": 57, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "Rank": 2, "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { - "Rank": 1, "Id": 58, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "Rank": 1, "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", + "Rank": 2, "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)", + "Rank": 3, "CommandName": "Add-PnPFileSharingInvite" }, { - "Rank": 1, "Id": 61, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "Rank": 1, "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Rank": 2, "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": 3, "Id": 63, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", + "Rank": 3, "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Rank": 4, "Id": 64, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "Rank": 4, "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Rank": 5, "Id": 65, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "Rank": 5, "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Rank": 1, "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": 2, "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": 1, "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": 2, "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": 3, "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": 4, "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": 1, "Id": 72, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Rank": 1, "CommandName": "Add-PnPFolder" }, { - "Rank": 2, "Id": 73, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "Rank": 2, "CommandName": "Add-PnPFolder" }, { - "Rank": 3, "Id": 74, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "Rank": 3, "CommandName": "Add-PnPFolder" }, { - "Rank": 1, "Id": 75, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "Rank": 2, "Id": 76, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", + "Rank": 2, "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)", + "Rank": 3, "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "Rank": 1, "Id": 78, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { - "Rank": 2, "Id": 79, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "Rank": 2, "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { - "Rank": 1, "Id": 80, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "Rank": 1, "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", + "Rank": 2, "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)", + "Rank": 3, "CommandName": "Add-PnPFolderSharingInvite" }, { - "Rank": 1, "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": 2, "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": 1, "Id": 85, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Rank": 1, "CommandName": "Add-PnPGroupMember" }, { - "Rank": 2, "Id": 86, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "Rank": 2, "CommandName": "Add-PnPGroupMember" }, { - "Rank": 1, "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, "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, "Id": 89, "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "Rank": 1, "CommandName": "Add-PnPHubToHubAssociation" }, { - "Rank": 2, "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": 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\"", + "Rank": 3, "CommandName": "Add-PnPHubToHubAssociation" }, { - "Rank": 1, "Id": 92, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "Rank": 1, "CommandName": "Add-PnPJavaScriptBlock" }, { - "Rank": 2, "Id": 93, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "Rank": 2, "CommandName": "Add-PnPJavaScriptBlock" }, { - "Rank": 1, "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": 2, "Id": 95, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "Rank": 2, "CommandName": "Add-PnPJavaScriptLink" }, { - "Rank": 1, "Id": 96, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "Rank": 1, "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\"", + "Rank": 2, "CommandName": "Add-PnPListDesign" }, { - "Rank": 1, "Id": 98, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "Rank": 1, "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Rank": 2, "Id": 99, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "Rank": 2, "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Rank": 3, "Id": 100, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "Rank": 3, "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Rank": 1, "Id": 101, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 1, "CommandName": "Add-PnPListItem" }, { - "Rank": 2, "Id": 102, "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 2, "CommandName": "Add-PnPListItem" }, { - "Rank": 3, "Id": 103, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "Rank": 3, "CommandName": "Add-PnPListItem" }, { - "Rank": 4, "Id": 104, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", + "Rank": 4, "CommandName": "Add-PnPListItem" }, { - "Rank": 5, "Id": 105, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "Rank": 5, "CommandName": "Add-PnPListItem" }, { - "Rank": 1, "Id": 106, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", + "Rank": 1, "CommandName": "Add-PnPListItemAttachment" }, { - "Rank": 2, "Id": 107, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", + "Rank": 2, "CommandName": "Add-PnPListItemAttachment" }, { - "Rank": 3, "Id": 108, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "Rank": 3, "CommandName": "Add-PnPListItemAttachment" }, { - "Rank": 1, "Id": 109, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "Rank": 1, "CommandName": "Add-PnPListItemComment" }, { - "Rank": 1, "Id": 110, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "Rank": 1, "CommandName": "Add-PnPMasterPage" }, { - "Rank": 1, "Id": 111, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupMember" }, { - "Rank": 2, "Id": 112, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupMember" }, { - "Rank": 1, "Id": 113, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { - "Rank": 2, "Id": 114, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { - "Rank": 1, "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": 2, "Id": 116, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "Rank": 3, "Id": 117, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "Rank": 3, "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "Rank": 1, "Id": 118, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "Rank": 1, "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", + "Rank": 2, "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 3, "Id": 120, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "Rank": 3, "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 4, "Id": 121, "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", + "Rank": 4, "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 5, "Id": 122, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "Rank": 5, "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 6, "Id": 123, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "Rank": 6, "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 7, "Id": 124, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "Rank": 7, "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 8, "Id": 125, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "Rank": 8, "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 1, "Id": 126, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", + "Rank": 1, "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\"", + "Rank": 2, "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "Rank": 3, "Id": 128, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "Rank": 3, "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "Rank": 1, "Id": 129, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "Rank": 1, "CommandName": "Add-PnPOrgNewsSite" }, { - "Rank": 1, "Id": 130, "Command": "Add-PnPPage -Name \"NewPage\"", + "Rank": 1, "CommandName": "Add-PnPPage" }, { - "Rank": 2, "Id": 131, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "Rank": 2, "CommandName": "Add-PnPPage" }, { - "Rank": 3, "Id": 132, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "Rank": 3, "CommandName": "Add-PnPPage" }, { - "Rank": 4, "Id": 133, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "Rank": 4, "CommandName": "Add-PnPPage" }, { - "Rank": 5, "Id": 134, "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "Rank": 5, "CommandName": "Add-PnPPage" }, { - "Rank": 6, "Id": 135, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "Rank": 6, "CommandName": "Add-PnPPage" }, { - "Rank": 7, "Id": 136, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "Rank": 7, "CommandName": "Add-PnPPage" }, { - "Rank": 8, "Id": 137, "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "Rank": 8, "CommandName": "Add-PnPPage" }, { - "Rank": 9, "Id": 138, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Rank": 9, "CommandName": "Add-PnPPage" }, { - "Rank": 10, "Id": 139, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Rank": 10, "CommandName": "Add-PnPPage" }, { - "Rank": 1, "Id": 140, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", + "Rank": 1, "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\"", + "Rank": 2, "CommandName": "Add-PnPPageImageWebPart" }, { - "Rank": 1, "Id": 142, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "Rank": 1, "CommandName": "Add-PnPPageSection" }, { - "Rank": 2, "Id": 143, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "Rank": 2, "CommandName": "Add-PnPPageSection" }, { - "Rank": 1, "Id": 144, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "Rank": 1, "CommandName": "Add-PnPPageTextPart" }, { - "Rank": 2, "Id": 145, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", + "Rank": 2, "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\"", + "Rank": 3, "CommandName": "Add-PnPPageTextPart" }, { - "Rank": 1, "Id": 147, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "Rank": 1, "CommandName": "Add-PnPPageWebPart" }, { - "Rank": 2, "Id": 148, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "Rank": 2, "CommandName": "Add-PnPPageWebPart" }, { - "Rank": 3, "Id": 149, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "Rank": 3, "CommandName": "Add-PnPPageWebPart" }, { - "Rank": 1, "Id": 150, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "Rank": 1, "CommandName": "Add-PnPPlannerBucket" }, { - "Rank": 2, "Id": 151, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "Rank": 2, "CommandName": "Add-PnPPlannerBucket" }, { - "Rank": 1, "Id": 152, "Command": "Add-PnPPlannerRoster", + "Rank": 1, "CommandName": "Add-PnPPlannerRoster" }, { - "Rank": 1, "Id": 153, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPPlannerRosterMember" }, { - "Rank": 1, "Id": 154, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Rank": 1, "CommandName": "Add-PnPPlannerTask" }, { - "Rank": 2, "Id": 155, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Rank": 2, "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\"", + "Rank": 3, "CommandName": "Add-PnPPlannerTask" }, { - "Rank": 1, "Id": 157, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Rank": 1, "CommandName": "Add-PnPPublishingImageRendition" }, { - "Rank": 1, "Id": 158, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", + "Rank": 1, "CommandName": "Add-PnPPublishingPage" }, { - "Rank": 2, "Id": 159, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "Rank": 2, "CommandName": "Add-PnPPublishingPage" }, { - "Rank": 1, "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, "Id": 161, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "Rank": 1, "CommandName": "Add-PnPRoleDefinition" }, { - "Rank": 2, "Id": 162, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "Rank": 2, "CommandName": "Add-PnPRoleDefinition" }, { - "Rank": 3, "Id": 163, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "Rank": 3, "CommandName": "Add-PnPRoleDefinition" }, { - "Rank": 1, "Id": 164, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Rank": 2, "Id": 165, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 2, "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Rank": 3, "Id": 166, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "Rank": 3, "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Rank": 1, "Id": 167, "Command": "Add-PnPSiteCollectionAppCatalog", + "Rank": 1, "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { - "Rank": 2, "Id": 168, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Rank": 2, "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { - "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", + "Rank": 1, "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", + "Rank": 2, "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\"", + "Rank": 3, "CommandName": "Add-PnPSiteDesign" }, { - "Rank": 1, "Id": 172, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", + "Rank": 1, "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)", + "Rank": 2, "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", + "Rank": 3, "CommandName": "Add-PnPSiteDesignFromWeb" }, { - "Rank": 1, "Id": 175, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "Rank": 1, "CommandName": "Add-PnPSiteDesignTask" }, { - "Rank": 2, "Id": 176, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Rank": 2, "CommandName": "Add-PnPSiteDesignTask" }, { - "Rank": 1, "Id": 177, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "Rank": 1, "CommandName": "Add-PnPSiteScript" }, { - "Rank": 1, "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, "Id": 179, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "Rank": 1, "CommandName": "Add-PnPSiteTemplate" }, { - "Rank": 1, "Id": 180, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", + "Rank": 1, "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)", + "Rank": 2, "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\"", + "Rank": 3, "CommandName": "Add-PnPStoredCredential" }, { - "Rank": 1, "Id": 183, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "Rank": 1, "CommandName": "Add-PnPTaxonomyField" }, { - "Rank": 2, "Id": 184, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "Rank": 2, "CommandName": "Add-PnPTaxonomyField" }, { - "Rank": 1, "Id": 185, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "Rank": 1, "CommandName": "Add-PnPTeamsChannel" }, { - "Rank": 2, "Id": 186, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "Rank": 2, "CommandName": "Add-PnPTeamsChannel" }, { - "Rank": 3, "Id": 187, "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "Rank": 3, "CommandName": "Add-PnPTeamsChannel" }, { - "Rank": 4, "Id": 188, "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", + "Rank": 4, "CommandName": "Add-PnPTeamsChannel" }, { - "Rank": 1, "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": 2, "Id": 190, "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", + "Rank": 2, "CommandName": "Add-PnpTeamsChannelUser" }, { - "Rank": 1, "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": 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\"", + "Rank": 2, "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\"", + "Rank": 3, "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", + "Rank": 4, "CommandName": "Add-PnPTeamsTab" }, { - "Rank": 1, "Id": 195, "Command": "Add-PnPTeamsTeam", + "Rank": 1, "CommandName": "Add-PnPTeamsTeam" }, { - "Rank": 1, "Id": 196, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 1, "CommandName": "Add-PnPTeamsUser" }, { - "Rank": 2, "Id": 197, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Rank": 2, "CommandName": "Add-PnPTeamsUser" }, { - "Rank": 3, "Id": 198, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "Rank": 3, "CommandName": "Add-PnPTeamsUser" }, { - "Rank": 4, "Id": 199, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "Rank": 4, "CommandName": "Add-PnPTeamsUser" }, { - "Rank": 1, "Id": 200, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Rank": 1, "CommandName": "Add-PnPTenantCdnOrigin" }, { - "Rank": 1, "Id": 201, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "Rank": 1, "CommandName": "Add-PnPTenantSequence" }, { - "Rank": 1, "Id": 202, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "Rank": 1, "CommandName": "Add-PnPTenantSequenceSite" }, { - "Rank": 1, "Id": 203, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "Rank": 1, "CommandName": "Add-PnPTenantSequenceSubSite" }, { - "Rank": 1, "Id": 204, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "Rank": 1, "CommandName": "Add-PnPTermToTerm" }, { - "Rank": 1, "Id": 205, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", + "Rank": 1, "CommandName": "Add-PnPView" }, { - "Rank": 2, "Id": 206, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", + "Rank": 2, "CommandName": "Add-PnPView" }, { - "Rank": 3, "Id": 207, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "Rank": 3, "CommandName": "Add-PnPView" }, { - "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\"", + "Rank": 1, "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\"", + "Rank": 2, "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\"", + "Rank": 3, "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { - "Rank": 1, "Id": 211, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Rank": 1, "CommandName": "Add-PnPWebhookSubscription" }, { - "Rank": 2, "Id": 212, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "Rank": 2, "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!\"", + "Rank": 3, "CommandName": "Add-PnPWebhookSubscription" }, { - "Rank": 1, "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": 2, "Id": 215, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", + "Rank": 2, "CommandName": "Add-PnPWebPartToWebPartPage" }, { - "Rank": 1, "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": 2, "Id": 217, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", + "Rank": 2, "CommandName": "Add-PnPWebPartToWikiPage" }, { - "Rank": 1, "Id": 218, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "Rank": 1, "CommandName": "Add-PnPWikiPage" }, { - "Rank": 1, "Id": 219, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "Rank": 1, "CommandName": "Clear-PnPAzureADGroupMember" }, { - "Rank": 1, "Id": 220, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "Rank": 1, "CommandName": "Clear-PnPAzureADGroupOwner" }, { - "Rank": 1, "Id": 221, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "Rank": 1, "CommandName": "Clear-PnPDefaultColumnValues" }, { - "Rank": 2, "Id": 222, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "Rank": 2, "CommandName": "Clear-PnPDefaultColumnValues" }, { - "Rank": 1, "Id": 223, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1, "CommandName": "Clear-PnPListItemAsRecord" }, { - "Rank": 1, "Id": 224, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { - "Rank": 1, "Id": 225, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { - "Rank": 1, "Id": 226, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1, "CommandName": "Clear-PnpRecycleBinItem" }, { - "Rank": 2, "Id": 227, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "Rank": 2, "CommandName": "Clear-PnpRecycleBinItem" }, { - "Rank": 3, "Id": 228, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "Rank": 3, "CommandName": "Clear-PnpRecycleBinItem" }, { - "Rank": 1, "Id": 229, "Command": "Clear-PnPTenantAppCatalogUrl", + "Rank": 1, "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { - "Rank": 1, "Id": 230, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Clear-PnPTenantRecycleBinItem" }, { - "Rank": 2, "Id": 231, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Rank": 2, "CommandName": "Clear-PnPTenantRecycleBinItem" }, { - "Rank": 1, "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, "Id": 233, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "Rank": 1, "CommandName": "Convert-PnPFolderToSiteTemplate" }, { - "Rank": 2, "Id": 234, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "Rank": 2, "CommandName": "Convert-PnPFolderToSiteTemplate" }, { - "Rank": 1, "Id": 235, "Command": "Convert-PnPSiteTemplate -Path template.xml", + "Rank": 1, "CommandName": "Convert-PnPSiteTemplate" }, { - "Rank": 2, "Id": 236, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "Rank": 2, "CommandName": "Convert-PnPSiteTemplate" }, { - "Rank": 3, "Id": 237, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "Rank": 3, "CommandName": "Convert-PnPSiteTemplate" }, { - "Rank": 1, "Id": 238, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "Rank": 1, "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { - "Rank": 2, "Id": 239, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "Rank": 2, "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { - "Rank": 1, "Id": 240, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "Rank": 1, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 2, "Id": 241, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "Rank": 2, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 3, "Id": 242, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "Rank": 3, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 4, "Id": 243, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "Rank": 4, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 5, "Id": 244, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 5, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 6, "Id": 245, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "Rank": 6, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 7, "Id": 246, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "Rank": 7, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 8, "Id": 247, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "Rank": 8, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 9, "Id": 248, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 9, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 10, "Id": 249, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "Rank": 10, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 11, "Id": 250, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "Rank": 11, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 12, "Id": 251, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 12, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 13, "Id": 252, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 13, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 14, "Id": 253, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "Rank": 14, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 1, "Id": 254, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 1, "CommandName": "Copy-PnPFile" }, { - "Rank": 2, "Id": 255, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Rank": 2, "CommandName": "Copy-PnPFile" }, { - "Rank": 3, "Id": 256, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Rank": 3, "CommandName": "Copy-PnPFile" }, { - "Rank": 4, "Id": 257, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 4, "CommandName": "Copy-PnPFile" }, { - "Rank": 5, "Id": 258, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Rank": 5, "CommandName": "Copy-PnPFile" }, { - "Rank": 6, "Id": 259, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Rank": 6, "CommandName": "Copy-PnPFile" }, { - "Rank": 7, "Id": 260, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Rank": 7, "CommandName": "Copy-PnPFile" }, { - "Rank": 8, "Id": 261, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 8, "CommandName": "Copy-PnPFile" }, { - "Rank": 9, "Id": 262, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Rank": 9, "CommandName": "Copy-PnPFile" }, { - "Rank": 10, "Id": 263, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Rank": 10, "CommandName": "Copy-PnPFile" }, { - "Rank": 1, "Id": 264, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 1, "CommandName": "Copy-PnPFolder" }, { - "Rank": 2, "Id": 265, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Rank": 2, "CommandName": "Copy-PnPFolder" }, { - "Rank": 3, "Id": 266, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Rank": 3, "CommandName": "Copy-PnPFolder" }, { - "Rank": 4, "Id": 267, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 4, "CommandName": "Copy-PnPFolder" }, { - "Rank": 5, "Id": 268, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Rank": 5, "CommandName": "Copy-PnPFolder" }, { - "Rank": 6, "Id": 269, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Rank": 6, "CommandName": "Copy-PnPFolder" }, { - "Rank": 7, "Id": 270, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Rank": 7, "CommandName": "Copy-PnPFolder" }, { - "Rank": 8, "Id": 271, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 8, "CommandName": "Copy-PnPFolder" }, { - "Rank": 9, "Id": 272, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Rank": 9, "CommandName": "Copy-PnPFolder" }, { - "Rank": 10, "Id": 273, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Rank": 10, "CommandName": "Copy-PnPFolder" }, { - "Rank": 1, "Id": 274, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "Rank": 1, "CommandName": "Copy-PnPItemProxy" }, { - "Rank": 1, "Id": 275, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "Rank": 1, "CommandName": "Copy-PnPList" }, { - "Rank": 2, "Id": 276, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", + "Rank": 2, "CommandName": "Copy-PnPList" }, { - "Rank": 3, "Id": 277, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "Rank": 3, "CommandName": "Copy-PnPList" }, { - "Rank": 4, "Id": 278, "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": 1, "Id": 279, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "Rank": 1, "CommandName": "Copy-PnPTeamsTeam" }, { - "Rank": 2, "Id": 280, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "Rank": 2, "CommandName": "Copy-PnPTeamsTeam" }, { - "Rank": 3, "Id": 281, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", + "Rank": 3, "CommandName": "Copy-PnPTeamsTeam" }, { - "Rank": 4, "Id": 282, "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": 1, "Id": 283, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Disable-PnPFeature" }, { - "Rank": 2, "Id": 284, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2, "CommandName": "Disable-PnPFeature" }, { - "Rank": 3, "Id": 285, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3, "CommandName": "Disable-PnPFeature" }, { - "Rank": 1, "Id": 286, "Command": "Disable-PnPPageScheduling", + "Rank": 1, "CommandName": "Disable-PnPPageScheduling" }, { - "Rank": 1, "Id": 287, "Command": "Disable-PnPPowerShellTelemetry", + "Rank": 1, "CommandName": "Disable-PnPPowerShellTelemetry" }, { - "Rank": 2, "Id": 288, "Command": "Disable-PnPPowerShellTelemetry -Force", + "Rank": 2, "CommandName": "Disable-PnPPowerShellTelemetry" }, { - "Rank": 1, "Id": 289, "Command": "Disable-PnPSharingForNonOwnersOfSite", + "Rank": 1, "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { - "Rank": 1, "Id": 290, "Command": "Disable-PnPSiteClassification", + "Rank": 1, "CommandName": "Disable-PnPSiteClassification" }, { - "Rank": 1, "Id": 291, "Command": "Disconnect-PnPOnline", + "Rank": 1, "CommandName": "Disconnect-PnPOnline" }, { - "Rank": 1, "Id": 292, "Command": "Enable-PnPCommSite", + "Rank": 1, "CommandName": "Enable-PnPCommSite" }, { - "Rank": 2, "Id": 293, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "Rank": 2, "CommandName": "Enable-PnPCommSite" }, { - "Rank": 1, "Id": 294, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Enable-PnPFeature" }, { - "Rank": 2, "Id": 295, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2, "CommandName": "Enable-PnPFeature" }, { - "Rank": 3, "Id": 296, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3, "CommandName": "Enable-PnPFeature" }, { - "Rank": 1, "Id": 297, "Command": "Enable-PnPPageScheduling", + "Rank": 1, "CommandName": "Enable-PnPPageScheduling" }, { - "Rank": 1, "Id": 298, "Command": "Enable-PnPPowerShellTelemetry", + "Rank": 1, "CommandName": "Enable-PnPPowerShellTelemetry" }, { - "Rank": 2, "Id": 299, "Command": "Enable-PnPPowerShellTelemetry -Force", + "Rank": 2, "CommandName": "Enable-PnPPowerShellTelemetry" }, { - "Rank": 1, "Id": 300, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "Rank": 1, "CommandName": "Enable-PnPSiteClassification" }, { - "Rank": 2, "Id": 301, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 2, "CommandName": "Enable-PnPSiteClassification" }, { - "Rank": 1, "Id": 302, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "Rank": 1, "CommandName": "Export-PnPListToSiteTemplate" }, { - "Rank": 2, "Id": 303, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "Rank": 2, "CommandName": "Export-PnPListToSiteTemplate" }, { - "Rank": 1, "Id": 304, "Command": "Export-PnPPage -Identity Home.aspx", + "Rank": 1, "CommandName": "Export-PnPPage" }, { - "Rank": 1, "Id": 305, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "Rank": 1, "CommandName": "Export-PnPPageMapping" }, { - "Rank": 2, "Id": 306, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "Rank": 2, "CommandName": "Export-PnPPageMapping" }, { - "Rank": 3, "Id": 307, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "Rank": 3, "CommandName": "Export-PnPPageMapping" }, { - "Rank": 1, "Id": 308, "Command": "Export-PnPTaxonomy", + "Rank": 1, "CommandName": "Export-PnPTaxonomy" }, { - "Rank": 2, "Id": 309, "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "Rank": 2, "CommandName": "Export-PnPTaxonomy" }, { - "Rank": 3, "Id": 310, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", + "Rank": 3, "CommandName": "Export-PnPTaxonomy" }, { - "Rank": 4, "Id": 311, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "Rank": 4, "CommandName": "Export-PnPTaxonomy" }, { - "Rank": 1, "Id": 312, "Command": "Export-PnPTermGroupToXml", + "Rank": 1, "CommandName": "Export-PnPTermGroupToXml" }, { - "Rank": 2, "Id": 313, "Command": "Export-PnPTermGroupToXml -Out output.xml", + "Rank": 2, "CommandName": "Export-PnPTermGroupToXml" }, { - "Rank": 3, "Id": 314, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "Rank": 3, "CommandName": "Export-PnPTermGroupToXml" }, { - "Rank": 1, "Id": 315, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Rank": 1, "CommandName": "Export-PnPUserInfo" }, { - "Rank": 2, "Id": 316, "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": 1, "Id": 317, "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "Rank": 1, "CommandName": "Export-PnPUserProfile" }, { - "Rank": 2, "Id": 318, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "Rank": 2, "CommandName": "Export-PnPUserProfile" }, { - "Rank": 1, "Id": 319, "Command": "Find-PnPFile -Match *.master", + "Rank": 1, "CommandName": "Find-PnPFile" }, { - "Rank": 2, "Id": 320, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "Rank": 2, "CommandName": "Find-PnPFile" }, { - "Rank": 3, "Id": 321, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "Rank": 3, "CommandName": "Find-PnPFile" }, { - "Rank": 1, "Id": 322, "Command": "Get-PnPAccessToken", + "Rank": 1, "CommandName": "Get-PnPAccessToken" }, { - "Rank": 2, "Id": 323, "Command": "Get-PnPAccessToken -Decoded", + "Rank": 2, "CommandName": "Get-PnPAccessToken" }, { - "Rank": 3, "Id": 324, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "Rank": 3, "CommandName": "Get-PnPAccessToken" }, { - "Rank": 4, "Id": 325, "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "Rank": 4, "CommandName": "Get-PnPAccessToken" }, { - "Rank": 5, "Id": 326, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "Rank": 5, "CommandName": "Get-PnPAccessToken" }, { - "Rank": 1, "Id": 327, "Command": "Get-PnPAlert", + "Rank": 1, "CommandName": "Get-PnPAlert" }, { - "Rank": 2, "Id": 328, "Command": "Get-PnPAlert -List \"Demo List\"", + "Rank": 2, "CommandName": "Get-PnPAlert" }, { - "Rank": 3, "Id": 329, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Rank": 3, "CommandName": "Get-PnPAlert" }, { - "Rank": 4, "Id": 330, "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "Rank": 4, "CommandName": "Get-PnPAlert" }, { - "Rank": 5, "Id": 331, "Command": "Get-PnPAlert -AllUsers", + "Rank": 5, "CommandName": "Get-PnPAlert" }, { - "Rank": 6, "Id": 332, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "Rank": 6, "CommandName": "Get-PnPAlert" }, { - "Rank": 1, "Id": 333, "Command": "Get-PnPApp", + "Rank": 1, "CommandName": "Get-PnPApp" }, { - "Rank": 2, "Id": 334, "Command": "Get-PnPApp -Scope Site", + "Rank": 2, "CommandName": "Get-PnPApp" }, { - "Rank": 3, "Id": 335, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 3, "CommandName": "Get-PnPApp" }, { - "Rank": 1, "Id": 336, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "Rank": 1, "CommandName": "Get-PnPAppErrors" }, { - "Rank": 2, "Id": 337, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "Rank": 2, "CommandName": "Get-PnPAppErrors" }, { - "Rank": 1, "Id": 338, "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "Rank": 1, "CommandName": "Get-PnPAppInfo" }, { - "Rank": 2, "Id": 339, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 2, "CommandName": "Get-PnPAppInfo" }, { - "Rank": 3, "Id": 340, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "Rank": 3, "CommandName": "Get-PnPAppInfo" }, { - "Rank": 1, "Id": 341, "Command": "Get-PnPApplicationCustomizer", + "Rank": 1, "CommandName": "Get-PnPApplicationCustomizer" }, { - "Rank": 2, "Id": 342, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2, "CommandName": "Get-PnPApplicationCustomizer" }, { - "Rank": 3, "Id": 343, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "Rank": 3, "CommandName": "Get-PnPApplicationCustomizer" }, { - "Rank": 1, "Id": 344, "Command": "Get-PnPAuditing", + "Rank": 1, "CommandName": "Get-PnPAuditing" }, { - "Rank": 1, "Id": 345, "Command": "Get-PnPAuthenticationRealm", + "Rank": 1, "CommandName": "Get-PnPAuthenticationRealm" }, { - "Rank": 2, "Id": 346, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "Rank": 2, "CommandName": "Get-PnPAuthenticationRealm" }, { - "Rank": 1, "Id": 347, "Command": "Get-PnPAvailableLanguage", + "Rank": 1, "CommandName": "Get-PnPAvailableLanguage" }, { - "Rank": 1, "Id": 348, "Command": "Get-PnPAvailableSensitivityLabel", + "Rank": 1, "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Rank": 2, "Id": 349, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "Rank": 2, "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Rank": 3, "Id": 350, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "Rank": 3, "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Rank": 1, "Id": 351, "Command": "Get-PnPAvailableSiteClassification", + "Rank": 1, "CommandName": "Get-PnPAvailableSiteClassification" }, { - "Rank": 1, "Id": 352, "Command": "Get-PnPAzureACSPrincipal", + "Rank": 1, "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Rank": 2, "Id": 353, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "Rank": 2, "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Rank": 3, "Id": 354, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "Rank": 3, "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Rank": 4, "Id": 355, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "Rank": 4, "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Rank": 1, "Id": 356, "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Rank": 2, "Id": 357, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Rank": 3, "Id": 358, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Rank": 1, "Id": 359, "Command": "Get-PnPAzureADActivityReportSignIn", + "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Rank": 2, "Id": 360, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Rank": 3, "Id": 361, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Rank": 1, "Id": 362, "Command": "Get-PnPAzureADApp", + "Rank": 1, "CommandName": "Get-PnPAzureADApp" }, { - "Rank": 2, "Id": 363, "Command": "Get-PnPAzureADApp -Identity MyApp", + "Rank": 2, "CommandName": "Get-PnPAzureADApp" }, { - "Rank": 3, "Id": 364, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3, "CommandName": "Get-PnPAzureADApp" }, { - "Rank": 4, "Id": 365, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "Rank": 4, "CommandName": "Get-PnPAzureADApp" }, { - "Rank": 1, "Id": 366, "Command": "Get-PnPAzureADAppPermission", + "Rank": 1, "CommandName": "Get-PnPAzureADAppPermission" }, { - "Rank": 2, "Id": 367, "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "Rank": 2, "CommandName": "Get-PnPAzureADAppPermission" }, { - "Rank": 3, "Id": 368, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3, "CommandName": "Get-PnPAzureADAppPermission" }, { - "Rank": 1, "Id": 369, "Command": "Get-PnPAzureADAppSitePermission", + "Rank": 1, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 2, "Id": 370, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "Rank": 2, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 3, "Id": 371, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "Rank": 3, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 4, "Id": 372, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "Rank": 4, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 5, "Id": 373, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "Rank": 5, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 1, "Id": 374, "Command": "Get-PnPAzureADGroup", + "Rank": 1, "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 2, "Id": 375, "Command": "Get-PnPAzureADGroup -Identity $groupId", + "Rank": 2, "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 3, "Id": 376, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "Rank": 3, "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 4, "Id": 377, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "Rank": 4, "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 5, "Id": 378, "Command": "Get-PnPAzureADGroup -Identity $group", + "Rank": 5, "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 1, "Id": 379, "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "Rank": 1, "CommandName": "Get-PnPAzureADGroupMember" }, { - "Rank": 2, "Id": 380, "Command": "Get-PnPAzureADGroupMember -Identity $group", + "Rank": 2, "CommandName": "Get-PnPAzureADGroupMember" }, { - "Rank": 1, "Id": 381, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "Rank": 1, "CommandName": "Get-PnPAzureADGroupOwner" }, { - "Rank": 2, "Id": 382, "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "Rank": 2, "CommandName": "Get-PnPAzureADGroupOwner" }, { - "Rank": 1, "Id": 383, "Command": "Get-PnPAzureADServicePrincipal", + "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 2, "Id": 384, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 3, "Id": 385, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "Rank": 3, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 4, "Id": 386, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "Rank": 4, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 5, "Id": 387, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "Rank": 5, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 1, "Id": 388, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 2, "Id": 389, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 1, "Id": 390, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { - "Rank": 2, "Id": 391, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { - "Rank": 1, "Id": 392, "Command": "Get-PnPAzureADUser", + "Rank": 1, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 2, "Id": 393, "Command": "Get-PnPAzureADUser -EndIndex 50", + "Rank": 2, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 3, "Id": 394, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 3, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 4, "Id": 395, "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "Rank": 4, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 5, "Id": 396, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "Rank": 5, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 6, "Id": 397, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "Rank": 6, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 7, "Id": 398, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "Rank": 7, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 8, "Id": 399, "Command": "Get-PnPAzureADUser -Delta", + "Rank": 8, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 9, "Id": 400, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "Rank": 9, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 10, "Id": 401, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "Rank": 10, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 1, "Id": 402, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "Rank": 1, "CommandName": "Get-PnPAzureCertificate" }, { - "Rank": 2, "Id": 403, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "Rank": 2, "CommandName": "Get-PnPAzureCertificate" }, { - "Rank": 3, "Id": 404, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "Rank": 3, "CommandName": "Get-PnPAzureCertificate" }, { - "Rank": 1, "Id": 405, "Command": "Get-PnPBrowserIdleSignout", + "Rank": 1, "CommandName": "Get-PnPBrowserIdleSignout" }, { - "Rank": 1, "Id": 406, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "Rank": 1, "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Rank": 2, "Id": 407, "Command": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 2, "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Rank": 1, "Id": 408, "Command": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 1, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 2, "Id": 409, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "Rank": 2, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 3, "Id": 410, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "Rank": 3, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 4, "Id": 411, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 4, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 5, "Id": 412, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "Rank": 5, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 1, "Id": 413, "Command": "Get-PnPChangeLog", + "Rank": 1, "CommandName": "Get-PnPChangeLog" }, { - "Rank": 2, "Id": 414, "Command": "Get-PnPChangeLog -Nightly", + "Rank": 2, "CommandName": "Get-PnPChangeLog" }, { - "Rank": 1, "Id": 415, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "Rank": 1, "CommandName": "Get-PnPCompatibleHubContentTypes" }, { - "Rank": 2, "Id": 416, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "Rank": 2, "CommandName": "Get-PnPCompatibleHubContentTypes" }, { - "Rank": 1, "Id": 417, "Command": "Get-PnPContentType", + "Rank": 1, "CommandName": "Get-PnPContentType" }, { - "Rank": 2, "Id": 418, "Command": "Get-PnPContentType -InSiteHierarchy", + "Rank": 2, "CommandName": "Get-PnPContentType" }, { - "Rank": 3, "Id": 419, "Command": "Get-PnPContentType -Identity \"Project Document\"", + "Rank": 3, "CommandName": "Get-PnPContentType" }, { - "Rank": 4, "Id": 420, "Command": "Get-PnPContentType -List \"Documents\"", + "Rank": 4, "CommandName": "Get-PnPContentType" }, { - "Rank": 5, "Id": 421, "Command": "Get-PnPContentType -Includes \"SchemaXml\"", + "Rank": 5, "CommandName": "Get-PnPContentType" }, { - "Rank": 1, "Id": 422, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "Rank": 1, "CommandName": "Get-PnPContentTypePublishingStatus" }, { - "Rank": 1, "Id": 423, "Command": "Get-PnPCustomAction", + "Rank": 1, "CommandName": "Get-PnPCustomAction" }, { - "Rank": 2, "Id": 424, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2, "CommandName": "Get-PnPCustomAction" }, { - "Rank": 3, "Id": 425, "Command": "Get-PnPCustomAction -Scope web", + "Rank": 3, "CommandName": "Get-PnPCustomAction" }, { - "Rank": 1, "Id": 426, "Command": "Get-PnPDeletedMicrosoft365Group", + "Rank": 1, "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { - "Rank": 2, "Id": 427, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 2, "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { - "Rank": 1, "Id": 428, "Command": "Get-PnPDeletedTeam", + "Rank": 1, "CommandName": "Get-PnPDeletedTeam" }, { - "Rank": 1, "Id": 429, "Command": "Get-PnPDiagnostics", + "Rank": 1, "CommandName": "Get-PnPDiagnostics" }, { - "Rank": 1, "Id": 430, "Command": "Get-PnPDisableSpacesActivation", + "Rank": 1, "CommandName": "Get-PnPDisableSpacesActivation" }, { - "Rank": 1, "Id": 431, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "Rank": 1, "CommandName": "Get-PnPDocumentSetTemplate" }, { - "Rank": 2, "Id": 432, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "Rank": 2, "CommandName": "Get-PnPDocumentSetTemplate" }, { - "Rank": 1, "Id": 433, "Command": "Get-PnPEventReceiver", + "Rank": 1, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 2, "Id": 434, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 2, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 3, "Id": 435, "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "Rank": 3, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 4, "Id": 436, "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "Rank": 4, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 5, "Id": 437, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 5, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 6, "Id": 438, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "Rank": 6, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 7, "Id": 439, "Command": "Get-PnPEventReceiver -Scope Site", + "Rank": 7, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 8, "Id": 440, "Command": "Get-PnPEventReceiver -Scope Web", + "Rank": 8, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 9, "Id": 441, "Command": "Get-PnPEventReceiver -Scope All", + "Rank": 9, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 1, "Id": 442, "Command": "Get-PnPException", + "Rank": 1, "CommandName": "Get-PnPException" }, { - "Rank": 2, "Id": 443, "Command": "Get-PnPException -All", + "Rank": 2, "CommandName": "Get-PnPException" }, { - "Rank": 1, "Id": 444, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "Rank": 1, "CommandName": "Get-PnPExternalUser" }, { - "Rank": 2, "Id": 445, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "Rank": 2, "CommandName": "Get-PnPExternalUser" }, { - "Rank": 1, "Id": 446, "Command": "Get-PnPFeature", + "Rank": 1, "CommandName": "Get-PnPFeature" }, { - "Rank": 2, "Id": 447, "Command": "Get-PnPFeature -Scope Site", + "Rank": 2, "CommandName": "Get-PnPFeature" }, { - "Rank": 3, "Id": 448, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 3, "CommandName": "Get-PnPFeature" }, { - "Rank": 4, "Id": 449, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "Rank": 4, "CommandName": "Get-PnPFeature" }, { - "Rank": 1, "Id": 450, "Command": "Get-PnPField", + "Rank": 1, "CommandName": "Get-PnPField" }, { - "Rank": 2, "Id": 451, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Rank": 2, "CommandName": "Get-PnPField" }, { - "Rank": 3, "Id": 452, "Command": "Get-PnPField -Group \"Custom Columns\"", + "Rank": 3, "CommandName": "Get-PnPField" }, { - "Rank": 1, "Id": 453, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "Rank": 1, "CommandName": "Get-PnPFile" }, { - "Rank": 2, "Id": 454, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "Rank": 2, "CommandName": "Get-PnPFile" }, { - "Rank": 3, "Id": 455, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "Rank": 3, "CommandName": "Get-PnPFile" }, { - "Rank": 4, "Id": 456, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "Rank": 4, "CommandName": "Get-PnPFile" }, { - "Rank": 5, "Id": 457, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "Rank": 5, "CommandName": "Get-PnPFile" }, { - "Rank": 6, "Id": 458, "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": 7, "Id": 459, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "Rank": 7, "CommandName": "Get-PnPFile" }, { - "Rank": 1, "Id": 460, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, "CommandName": "Get-PnPFileSharingLink" }, { - "Rank": 1, "Id": 461, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "Rank": 1, "CommandName": "Get-PnPFileVersion" }, { - "Rank": 2, "Id": 462, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "Rank": 2, "CommandName": "Get-PnPFileVersion" }, { - "Rank": 1, "Id": 463, "Command": "Get-PnPFlow -AsAdmin", + "Rank": 1, "CommandName": "Get-PnPFlow" }, { - "Rank": 2, "Id": 464, "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "Rank": 2, "CommandName": "Get-PnPFlow" }, { - "Rank": 3, "Id": 465, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "Rank": 3, "CommandName": "Get-PnPFlow" }, { - "Rank": 1, "Id": 466, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "Rank": 1, "CommandName": "Get-PnPFlowOwner" }, { - "Rank": 1, "Id": 467, "Command": "Get-PnPFolder", + "Rank": 1, "CommandName": "Get-PnPFolder" }, { - "Rank": 2, "Id": 468, "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "Rank": 2, "CommandName": "Get-PnPFolder" }, { - "Rank": 3, "Id": 469, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPFolder" }, { - "Rank": 4, "Id": 470, "Command": "Get-PnPFolder -List \"Shared Documents\"", + "Rank": 4, "CommandName": "Get-PnPFolder" }, { - "Rank": 1, "Id": 471, "Command": "Get-PnPFolderFile", + "Rank": 1, "CommandName": "Get-PnPFolderFile" }, { - "Rank": 2, "Id": 472, "Command": "Get-PnPFolderFile -Recurse", + "Rank": 2, "CommandName": "Get-PnPFolderFile" }, { - "Rank": 3, "Id": 473, "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPFolderFile" }, { - "Rank": 4, "Id": 474, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Rank": 4, "CommandName": "Get-PnPFolderFile" }, { - "Rank": 5, "Id": 475, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 5, "CommandName": "Get-PnPFolderFile" }, { - "Rank": 1, "Id": 476, "Command": "Get-PnPFolderFolder", + "Rank": 1, "CommandName": "Get-PnPFolderFolder" }, { - "Rank": 2, "Id": 477, "Command": "Get-PnPFolderFolder -Recurse", + "Rank": 2, "CommandName": "Get-PnPFolderFolder" }, { - "Rank": 3, "Id": 478, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPFolderFolder" }, { - "Rank": 4, "Id": 479, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "Rank": 4, "CommandName": "Get-PnPFolderFolder" }, { - "Rank": 5, "Id": 480, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "Rank": 5, "CommandName": "Get-PnPFolderFolder" }, { - "Rank": 6, "Id": 481, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 6, "CommandName": "Get-PnPFolderFolder" }, { - "Rank": 1, "Id": 482, "Command": "Get-PnPFolderItem", + "Rank": 1, "CommandName": "Get-PnPFolderItem" }, { - "Rank": 2, "Id": 483, "Command": "Get-PnPFolderItem -Recurse", + "Rank": 2, "CommandName": "Get-PnPFolderItem" }, { - "Rank": 3, "Id": 484, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPFolderItem" }, { - "Rank": 4, "Id": 485, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Rank": 4, "CommandName": "Get-PnPFolderItem" }, { - "Rank": 5, "Id": 486, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "Rank": 5, "CommandName": "Get-PnPFolderItem" }, { - "Rank": 6, "Id": 487, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 6, "CommandName": "Get-PnPFolderItem" }, { - "Rank": 1, "Id": 488, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, "CommandName": "Get-PnPFolderSharingLink" }, { - "Rank": 1, "Id": 489, "Command": "Get-PnPFolderStorageMetric", + "Rank": 1, "CommandName": "Get-PnPFolderStorageMetric" }, { - "Rank": 2, "Id": 490, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "Rank": 2, "CommandName": "Get-PnPFolderStorageMetric" }, { - "Rank": 3, "Id": 491, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPFolderStorageMetric" }, { - "Rank": 1, "Id": 492, "Command": "Get-PnPFooter", + "Rank": 1, "CommandName": "Get-PnPFooter" }, { - "Rank": 1, "Id": 493, "Command": "Get-PnPGraphAccessToken", + "Rank": 1, "CommandName": "Get-PnPGraphAccessToken" }, { - "Rank": 2, "Id": 494, "Command": "Get-PnPGraphAccessToken -Decoded", + "Rank": 2, "CommandName": "Get-PnPGraphAccessToken" }, { - "Rank": 1, "Id": 495, "Command": "Get-PnPGraphSubscription", + "Rank": 1, "CommandName": "Get-PnPGraphSubscription" }, { - "Rank": 2, "Id": 496, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 2, "CommandName": "Get-PnPGraphSubscription" }, { - "Rank": 1, "Id": 497, "Command": "Get-PnPGroup", + "Rank": 1, "CommandName": "Get-PnPGroup" }, { - "Rank": 2, "Id": 498, "Command": "Get-PnPGroup -Identity 'My Site Users'", + "Rank": 2, "CommandName": "Get-PnPGroup" }, { - "Rank": 3, "Id": 499, "Command": "Get-PnPGroup -AssociatedMemberGroup", + "Rank": 3, "CommandName": "Get-PnPGroup" }, { - "Rank": 1, "Id": 500, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "Rank": 1, "CommandName": "Get-PnPGroupMember" }, { - "Rank": 2, "Id": 501, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "Rank": 2, "CommandName": "Get-PnPGroupMember" }, { - "Rank": 1, "Id": 502, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "Rank": 1, "CommandName": "Get-PnPGroupPermissions" }, { - "Rank": 1, "Id": 503, "Command": "Get-PnPHideDefaultThemes", + "Rank": 1, "CommandName": "Get-PnPHideDefaultThemes" }, { - "Rank": 1, "Id": 504, "Command": "Get-PnPHomePage", + "Rank": 1, "CommandName": "Get-PnPHomePage" }, { - "Rank": 1, "Id": 505, "Command": "Get-PnPHomeSite", + "Rank": 1, "CommandName": "Get-PnPHomeSite" }, { - "Rank": 2, "Id": 506, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "Rank": 2, "CommandName": "Get-PnPHomeSite" }, { - "Rank": 3, "Id": 507, "Command": "Get-PnPHomeSite -Detailed", + "Rank": 3, "CommandName": "Get-PnPHomeSite" }, { - "Rank": 1, "Id": 508, "Command": "Get-PnPHubSite", + "Rank": 1, "CommandName": "Get-PnPHubSite" }, { - "Rank": 2, "Id": 509, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Rank": 2, "CommandName": "Get-PnPHubSite" }, { - "Rank": 3, "Id": 510, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "Rank": 3, "CommandName": "Get-PnPHubSite" }, { - "Rank": 1, "Id": 511, "Command": "Get-PnPHubSiteChild", + "Rank": 1, "CommandName": "Get-PnPHubSiteChild" }, { - "Rank": 2, "Id": 512, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Rank": 2, "CommandName": "Get-PnPHubSiteChild" }, { - "Rank": 1, "Id": 513, "Command": "Get-PnPInPlaceRecordsManagement", + "Rank": 1, "CommandName": "Get-PnPInPlaceRecordsManagement" }, { - "Rank": 1, "Id": 514, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "Rank": 1, "CommandName": "Get-PnPIsSiteAliasAvailable" }, { - "Rank": 1, "Id": 515, "Command": "Get-PnPJavaScriptLink", + "Rank": 1, "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 2, "Id": 516, "Command": "Get-PnPJavaScriptLink -Scope All", + "Rank": 2, "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 3, "Id": 517, "Command": "Get-PnPJavaScriptLink -Scope Web", + "Rank": 3, "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 4, "Id": 518, "Command": "Get-PnPJavaScriptLink -Scope Site", + "Rank": 4, "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 5, "Id": 519, "Command": "Get-PnPJavaScriptLink -Name Test", + "Rank": 5, "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 1, "Id": 520, "Command": "Get-PnPKnowledgeHubSite", + "Rank": 1, "CommandName": "Get-PnPKnowledgeHubSite" }, { - "Rank": 1, "Id": 521, "Command": "Get-PnPLabel", + "Rank": 1, "CommandName": "Get-PnPLabel" }, { - "Rank": 2, "Id": 522, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "Rank": 2, "CommandName": "Get-PnPLabel" }, { - "Rank": 1, "Id": 523, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "Rank": 1, "CommandName": "Get-PnPLargeListOperationStatus" }, { - "Rank": 1, "Id": 524, "Command": "Get-PnPList", + "Rank": 1, "CommandName": "Get-PnPList" }, { - "Rank": 2, "Id": 525, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 2, "CommandName": "Get-PnPList" }, { - "Rank": 3, "Id": 526, "Command": "Get-PnPList -Identity Lists/Announcements", + "Rank": 3, "CommandName": "Get-PnPList" }, { - "Rank": 4, "Id": 527, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "Rank": 4, "CommandName": "Get-PnPList" }, { - "Rank": 5, "Id": 528, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "Rank": 5, "CommandName": "Get-PnPList" }, { - "Rank": 1, "Id": 529, "Command": "Get-PnPListDesign", + "Rank": 1, "CommandName": "Get-PnPListDesign" }, { - "Rank": 2, "Id": 530, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2, "CommandName": "Get-PnPListDesign" }, { - "Rank": 3, "Id": 531, "Command": "Get-PnPListDesign -Identity ListEvent", + "Rank": 3, "CommandName": "Get-PnPListDesign" }, { - "Rank": 1, "Id": 532, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "Rank": 1, "CommandName": "Get-PnPListInformationRightsManagement" }, { - "Rank": 1, "Id": 533, "Command": "Get-PnPListItem -List Tasks", + "Rank": 1, "CommandName": "Get-PnPListItem" }, { - "Rank": 2, "Id": 534, "Command": "Get-PnPListItem -List Tasks -Id 1", + "Rank": 2, "CommandName": "Get-PnPListItem" }, { - "Rank": 3, "Id": 535, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "Rank": 3, "CommandName": "Get-PnPListItem" }, { - "Rank": 4, "Id": 536, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "Rank": 4, "CommandName": "Get-PnPListItem" }, { - "Rank": 5, "Id": 537, "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "Rank": 5, "CommandName": "Get-PnPListItem" }, { - "Rank": 6, "Id": 538, "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "Rank": 6, "CommandName": "Get-PnPListItem" }, { - "Rank": 7, "Id": 539, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", + "Rank": 7, "CommandName": "Get-PnPListItem" }, { - "Rank": 8, "Id": 540, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "Rank": 8, "CommandName": "Get-PnPListItem" }, { - "Rank": 9, "Id": 541, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "Rank": 9, "CommandName": "Get-PnPListItem" }, { - "Rank": 1, "Id": 542, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", + "Rank": 1, "CommandName": "Get-PnPListItemAttachment" }, { - "Rank": 2, "Id": 543, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "Rank": 2, "CommandName": "Get-PnPListItemAttachment" }, { - "Rank": 1, "Id": 544, "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "Rank": 1, "CommandName": "Get-PnPListItemComment" }, { - "Rank": 1, "Id": 545, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "Rank": 1, "CommandName": "Get-PnPListItemPermission" }, { - "Rank": 1, "Id": 546, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "Rank": 1, "CommandName": "Get-PnPListItemVersion" }, { - "Rank": 1, "Id": 547, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "Rank": 1, "CommandName": "Get-PnPListPermissions" }, { - "Rank": 2, "Id": 548, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "Rank": 2, "CommandName": "Get-PnPListPermissions" }, { - "Rank": 1, "Id": 549, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "Rank": 1, "CommandName": "Get-PnPListRecordDeclaration" }, { - "Rank": 1, "Id": 550, "Command": "Get-PnPMasterPage", + "Rank": 1, "CommandName": "Get-PnPMasterPage" }, { - "Rank": 1, "Id": 551, "Command": "Get-PnPMessageCenterAnnouncement", + "Rank": 1, "CommandName": "Get-PnPMessageCenterAnnouncement" }, { - "Rank": 2, "Id": 552, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "Rank": 2, "CommandName": "Get-PnPMessageCenterAnnouncement" }, { - "Rank": 1, "Id": 553, "Command": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Rank": 2, "Id": 554, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Rank": 1, "Id": 555, "Command": "Get-PnPMicrosoft365Group", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 2, "Id": 556, "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 3, "Id": 557, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 4, "Id": 558, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "Rank": 4, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 5, "Id": 559, "Command": "Get-PnPMicrosoft365Group -Identity $group", + "Rank": 5, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 6, "Id": 560, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "Rank": 6, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 1, "Id": 561, "Command": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Rank": 2, "Id": 562, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Rank": 3, "Id": 563, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Rank": 1, "Id": 564, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Rank": 2, "Id": 565, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Rank": 3, "Id": 566, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Rank": 1, "Id": 567, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { - "Rank": 2, "Id": 568, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { - "Rank": 1, "Id": 569, "Command": "Get-PnPMicrosoft365GroupSettings", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { - "Rank": 2, "Id": 570, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { - "Rank": 1, "Id": 571, "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Rank": 2, "Id": 572, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Rank": 1, "Id": 573, "Command": "Get-PnPMicrosoft365GroupTeam", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Rank": 2, "Id": 574, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Rank": 3, "Id": 575, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Rank": 1, "Id": 576, "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Rank": 2, "Id": 577, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Rank": 3, "Id": 578, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Rank": 1, "Id": 579, "Command": "Get-PnPNavigationNode", + "Rank": 1, "CommandName": "Get-PnPNavigationNode" }, { - "Rank": 2, "Id": 580, "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "Rank": 2, "CommandName": "Get-PnPNavigationNode" }, { - "Rank": 3, "Id": 581, "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "Rank": 3, "CommandName": "Get-PnPNavigationNode" }, { - "Rank": 1, "Id": 582, "Command": "Get-PnPOrgAssetsLibrary", + "Rank": 1, "CommandName": "Get-PnPOrgAssetsLibrary" }, { - "Rank": 1, "Id": 583, "Command": "Get-PnPOrgNewsSite", + "Rank": 1, "CommandName": "Get-PnPOrgNewsSite" }, { - "Rank": 1, "Id": 584, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "Rank": 1, "CommandName": "Get-PnPPage" }, { - "Rank": 2, "Id": 585, "Command": "Get-PnPPage \"MyPage\"", + "Rank": 2, "CommandName": "Get-PnPPage" }, { - "Rank": 3, "Id": 586, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "Rank": 3, "CommandName": "Get-PnPPage" }, { - "Rank": 4, "Id": 587, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "Rank": 4, "CommandName": "Get-PnPPage" }, { - "Rank": 1, "Id": 588, "Command": "Get-PnPPageComponent -Page Home", + "Rank": 1, "CommandName": "Get-PnPPageComponent" }, { - "Rank": 2, "Id": 589, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 2, "CommandName": "Get-PnPPageComponent" }, { - "Rank": 3, "Id": 590, "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "Rank": 3, "CommandName": "Get-PnPPageComponent" }, { - "Rank": 1, "Id": 591, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "Rank": 1, "CommandName": "Get-PnPPlannerBucket" }, { - "Rank": 1, "Id": 592, "Command": "Get-PnPPlannerConfiguration", + "Rank": 1, "CommandName": "Get-PnPPlannerConfiguration" }, { - "Rank": 1, "Id": 593, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "Rank": 1, "CommandName": "Get-PnPPlannerPlan" }, { - "Rank": 2, "Id": 594, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "Rank": 2, "CommandName": "Get-PnPPlannerPlan" }, { - "Rank": 3, "Id": 595, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "Rank": 3, "CommandName": "Get-PnPPlannerPlan" }, { - "Rank": 1, "Id": 596, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Rank": 1, "CommandName": "Get-PnPPlannerRosterMember" }, { - "Rank": 1, "Id": 597, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "Rank": 1, "CommandName": "Get-PnPPlannerRosterPlan" }, { - "Rank": 2, "Id": 598, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 2, "CommandName": "Get-PnPPlannerRosterPlan" }, { - "Rank": 1, "Id": 599, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "Rank": 1, "CommandName": "Get-PnPPlannerTask" }, { - "Rank": 2, "Id": 600, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Rank": 2, "CommandName": "Get-PnPPlannerTask" }, { - "Rank": 3, "Id": 601, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Rank": 3, "CommandName": "Get-PnPPlannerTask" }, { - "Rank": 1, "Id": 602, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Get-PnPPlannerUserPolicy" }, { - "Rank": 1, "Id": 603, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "Rank": 1, "CommandName": "Get-PnPPowerPlatformConnector" }, { - "Rank": 1, "Id": 604, "Command": "Get-PnPPowerPlatformEnvironment", + "Rank": 1, "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Rank": 2, "Id": 605, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "Rank": 2, "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Rank": 3, "Id": 606, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "Rank": 3, "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Rank": 1, "Id": 607, "Command": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1, "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { - "Rank": 1, "Id": 608, "Command": "Get-PnPPropertyBag", + "Rank": 1, "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 2, "Id": 609, "Command": "Get-PnPPropertyBag -Key MyKey", + "Rank": 2, "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 3, "Id": 610, "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "Rank": 3, "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 4, "Id": 611, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "Rank": 4, "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 5, "Id": 612, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "Rank": 5, "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 1, "Id": 613, "Command": "Get-PnPPublishingImageRendition", + "Rank": 1, "CommandName": "Get-PnPPublishingImageRendition" }, { - "Rank": 2, "Id": 614, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "Rank": 2, "CommandName": "Get-PnPPublishingImageRendition" }, { - "Rank": 3, "Id": 615, "Command": "Get-PnPPublishingImageRendition -Identity 2", + "Rank": 3, "CommandName": "Get-PnPPublishingImageRendition" }, { - "Rank": 1, "Id": 616, "Command": "Get-PnPRecycleBinItem", + "Rank": 1, "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 2, "Id": 617, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "Rank": 2, "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 3, "Id": 618, "Command": "Get-PnPRecycleBinItem -FirstStage", + "Rank": 3, "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 4, "Id": 619, "Command": "Get-PnPRecycleBinItem -SecondStage", + "Rank": 4, "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 5, "Id": 620, "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "Rank": 5, "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 1, "Id": 621, "Command": "Get-PnPRequestAccessEmails", + "Rank": 1, "CommandName": "Get-PnPRequestAccessEmails" }, { - "Rank": 1, "Id": 622, "Command": "Get-PnPRetentionLabel", + "Rank": 1, "CommandName": "Get-PnPRetentionLabel" }, { - "Rank": 2, "Id": 623, "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "Rank": 2, "CommandName": "Get-PnPRetentionLabel" }, { - "Rank": 1, "Id": 624, "Command": "Get-PnPRoleDefinition", + "Rank": 1, "CommandName": "Get-PnPRoleDefinition" }, { - "Rank": 2, "Id": 625, "Command": "Get-PnPRoleDefinition -Identity Read", + "Rank": 2, "CommandName": "Get-PnPRoleDefinition" }, { - "Rank": 3, "Id": 626, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "Rank": 3, "CommandName": "Get-PnPRoleDefinition" }, { - "Rank": 1, "Id": 627, "Command": "Get-PnPSearchConfiguration", + "Rank": 1, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 2, "Id": 628, "Command": "Get-PnPSearchConfiguration -Scope Site", + "Rank": 2, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 3, "Id": 629, "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "Rank": 3, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 4, "Id": 630, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 5, "Id": 631, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "Rank": 5, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 6, "Id": 632, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "Rank": 6, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 7, "Id": 633, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "Rank": 7, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 8, "Id": 634, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "Rank": 8, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 1, "Id": 635, "Command": "Get-PnPSearchCrawlLog", + "Rank": 1, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 2, "Id": 636, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "Rank": 2, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 3, "Id": 637, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "Rank": 3, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 4, "Id": 638, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "Rank": 4, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 5, "Id": 639, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "Rank": 5, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 6, "Id": 640, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "Rank": 6, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 7, "Id": 641, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "Rank": 7, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 1, "Id": 642, "Command": "Get-PnPSearchSettings", + "Rank": 1, "CommandName": "Get-PnPSearchSettings" }, { - "Rank": 1, "Id": 643, "Command": "Get-PnPServiceCurrentHealth", + "Rank": 1, "CommandName": "Get-PnPServiceCurrentHealth" }, { - "Rank": 2, "Id": 644, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "Rank": 2, "CommandName": "Get-PnPServiceCurrentHealth" }, { - "Rank": 1, "Id": 645, "Command": "Get-PnPServiceHealthIssue", + "Rank": 1, "CommandName": "Get-PnPServiceHealthIssue" }, { - "Rank": 2, "Id": 646, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "Rank": 2, "CommandName": "Get-PnPServiceHealthIssue" }, { - "Rank": 1, "Id": 647, "Command": "Get-PnPSharePointAddIn", + "Rank": 1, "CommandName": "Get-PnPSharePointAddIn" }, { - "Rank": 2, "Id": 648, "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "Rank": 2, "CommandName": "Get-PnPSharePointAddIn" }, { - "Rank": 1, "Id": 649, "Command": "Get-PnPSharingForNonOwnersOfSite", + "Rank": 1, "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { - "Rank": 1, "Id": 650, "Command": "Get-PnPSite", + "Rank": 1, "CommandName": "Get-PnPSite" }, { - "Rank": 2, "Id": 651, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "Rank": 2, "CommandName": "Get-PnPSite" }, { - "Rank": 1, "Id": 652, "Command": "Get-PnPSiteClosure", + "Rank": 1, "CommandName": "Get-PnPSiteClosure" }, { - "Rank": 1, "Id": 653, "Command": "Get-PnPSiteCollectionAdmin", + "Rank": 1, "CommandName": "Get-PnPSiteCollectionAdmin" }, { - "Rank": 1, "Id": 654, "Command": "Get-PnPSiteCollectionAppCatalog", + "Rank": 1, "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Rank": 2, "Id": 655, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "Rank": 2, "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Rank": 3, "Id": 656, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "Rank": 3, "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Rank": 1, "Id": 657, "Command": "Get-PnPSiteCollectionTermStore", + "Rank": 1, "CommandName": "Get-PnPSiteCollectionTermStore" }, { - "Rank": 1, "Id": 658, "Command": "Get-PnPSiteDesign", + "Rank": 1, "CommandName": "Get-PnPSiteDesign" }, { - "Rank": 2, "Id": 659, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2, "CommandName": "Get-PnPSiteDesign" }, { - "Rank": 1, "Id": 660, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Get-PnPSiteDesignRights" }, { - "Rank": 1, "Id": 661, "Command": "Get-PnPSiteDesignRun", + "Rank": 1, "CommandName": "Get-PnPSiteDesignRun" }, { - "Rank": 2, "Id": 662, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "Rank": 2, "CommandName": "Get-PnPSiteDesignRun" }, { - "Rank": 1, "Id": 663, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "Rank": 1, "CommandName": "Get-PnPSiteDesignTask" }, { - "Rank": 2, "Id": 664, "Command": "Get-PnPSiteDesignTask", + "Rank": 2, "CommandName": "Get-PnPSiteDesignTask" }, { - "Rank": 3, "Id": 665, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Rank": 3, "CommandName": "Get-PnPSiteDesignTask" }, { - "Rank": 1, "Id": 666, "Command": "Get-PnPSiteGroup", + "Rank": 1, "CommandName": "Get-PnPSiteGroup" }, { - "Rank": 2, "Id": 667, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Rank": 2, "CommandName": "Get-PnPSiteGroup" }, { - "Rank": 3, "Id": 668, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "Rank": 3, "CommandName": "Get-PnPSiteGroup" }, { - "Rank": 4, "Id": 669, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Rank": 4, "CommandName": "Get-PnPSiteGroup" }, { - "Rank": 1, "Id": 670, "Command": "Get-PnPSitePolicy", + "Rank": 1, "CommandName": "Get-PnPSitePolicy" }, { - "Rank": 2, "Id": 671, "Command": "Get-PnPSitePolicy -AllAvailable", + "Rank": 2, "CommandName": "Get-PnPSitePolicy" }, { - "Rank": 3, "Id": 672, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "Rank": 3, "CommandName": "Get-PnPSitePolicy" }, { - "Rank": 1, "Id": 673, "Command": "Get-PnPSiteScript", + "Rank": 1, "CommandName": "Get-PnPSiteScript" }, { - "Rank": 2, "Id": 674, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2, "CommandName": "Get-PnPSiteScript" }, { - "Rank": 1, "Id": 675, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "Rank": 1, "CommandName": "Get-PnPSiteScriptFromList" }, { - "Rank": 2, "Id": 676, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "Rank": 2, "CommandName": "Get-PnPSiteScriptFromList" }, { - "Rank": 3, "Id": 677, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPSiteScriptFromList" }, { - "Rank": 1, "Id": 678, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "Rank": 1, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 2, "Id": 679, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "Rank": 2, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 3, "Id": 680, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "Rank": 3, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 4, "Id": 681, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "Rank": 4, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 5, "Id": 682, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "Rank": 5, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 6, "Id": 683, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "Rank": 6, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 1, "Id": 684, "Command": "Get-PnPSiteSearchQueryResults", + "Rank": 1, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 2, "Id": 685, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "Rank": 2, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 3, "Id": 686, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "Rank": 3, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 4, "Id": 687, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "Rank": 4, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 5, "Id": 688, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "Rank": 5, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 6, "Id": 689, "Command": "Get-PnPSiteSearchQueryResults -All", + "Rank": 6, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 1, "Id": 690, "Command": "Get-PnPSiteSensitivityLabel", + "Rank": 1, "CommandName": "Get-PnPSiteSensitivityLabel" }, { - "Rank": 1, "Id": 691, "Command": "Get-PnPSiteTemplate -Out template.pnp", + "Rank": 1, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 2, "Id": 692, "Command": "Get-PnPSiteTemplate -Out template.xml", + "Rank": 2, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 3, "Id": 693, "Command": "Get-PnPSiteTemplate -Out template.md", + "Rank": 3, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 4, "Id": 694, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "Rank": 4, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 5, "Id": 695, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "Rank": 5, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 6, "Id": 696, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "Rank": 6, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 7, "Id": 697, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "Rank": 7, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 8, "Id": 698, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "Rank": 8, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 9, "Id": 699, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "Rank": 9, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 10, "Id": 700, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "Rank": 10, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 11, "Id": 701, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "Rank": 11, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 12, "Id": 702, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "Rank": 12, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 13, "Id": 703, "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": 14, "Id": 704, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "Rank": 14, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 1, "Id": 705, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Rank": 1, "CommandName": "Get-PnPSiteUserInvitations" }, { - "Rank": 1, "Id": 706, "Command": "Get-PnPSiteVersionPolicy", + "Rank": 1, "CommandName": "Get-PnPSiteVersionPolicy" }, { - "Rank": 1, "Id": 707, "Command": "Get-PnPStorageEntity", + "Rank": 1, "CommandName": "Get-PnPStorageEntity" }, { - "Rank": 2, "Id": 708, "Command": "Get-PnPStorageEntity -Key MyKey", + "Rank": 2, "CommandName": "Get-PnPStorageEntity" }, { - "Rank": 3, "Id": 709, "Command": "Get-PnPStorageEntity -Scope Site", + "Rank": 3, "CommandName": "Get-PnPStorageEntity" }, { - "Rank": 4, "Id": 710, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "Rank": 4, "CommandName": "Get-PnPStorageEntity" }, { - "Rank": 1, "Id": 711, "Command": "Get-PnPStoredCredential -Name O365", + "Rank": 1, "CommandName": "Get-PnPStoredCredential" }, { - "Rank": 1, "Id": 712, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { - "Rank": 1, "Id": 713, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { - "Rank": 1, "Id": 714, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "Rank": 1, "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { - "Rank": 1, "Id": 715, "Command": "Get-PnPSubWeb", + "Rank": 1, "CommandName": "Get-PnPSubWeb" }, { - "Rank": 2, "Id": 716, "Command": "Get-PnPSubWeb -Recurse", + "Rank": 2, "CommandName": "Get-PnPSubWeb" }, { - "Rank": 3, "Id": 717, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "Rank": 3, "CommandName": "Get-PnPSubWeb" }, { - "Rank": 4, "Id": 718, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "Rank": 4, "CommandName": "Get-PnPSubWeb" }, { - "Rank": 5, "Id": 719, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "Rank": 5, "CommandName": "Get-PnPSubWeb" }, { - "Rank": 1, "Id": 720, "Command": "Get-PnPSyntexModel", + "Rank": 1, "CommandName": "Get-PnPSyntexModel" }, { - "Rank": 2, "Id": 721, "Command": "Get-PnPSyntexModel -Identity 1", + "Rank": 2, "CommandName": "Get-PnPSyntexModel" }, { - "Rank": 3, "Id": 722, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "Rank": 3, "CommandName": "Get-PnPSyntexModel" }, { - "Rank": 1, "Id": 723, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "Rank": 1, "CommandName": "Get-PnPSyntexModelPublication" }, { - "Rank": 1, "Id": 724, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "Rank": 1, "CommandName": "Get-PnPTaxonomyItem" }, { - "Rank": 1, "Id": 725, "Command": "Get-PnPTeamsApp", + "Rank": 1, "CommandName": "Get-PnPTeamsApp" }, { - "Rank": 2, "Id": 726, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "Rank": 2, "CommandName": "Get-PnPTeamsApp" }, { - "Rank": 3, "Id": 727, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "Rank": 3, "CommandName": "Get-PnPTeamsApp" }, { - "Rank": 1, "Id": 728, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "Rank": 1, "CommandName": "Get-PnPTeamsChannel" }, { - "Rank": 2, "Id": 729, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "Rank": 2, "CommandName": "Get-PnPTeamsChannel" }, { - "Rank": 3, "Id": 730, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Rank": 3, "CommandName": "Get-PnPTeamsChannel" }, { - "Rank": 1, "Id": 731, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "Rank": 1, "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { - "Rank": 2, "Id": 732, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Rank": 2, "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { - "Rank": 1, "Id": 733, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessage" }, { - "Rank": 2, "Id": 734, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessage" }, { - "Rank": 1, "Id": 735, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessageReply" }, { - "Rank": 2, "Id": 736, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessageReply" }, { - "Rank": 1, "Id": 737, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "Rank": 1, "CommandName": "Get-PnPTeamsChannelUser" }, { - "Rank": 2, "Id": 738, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "Rank": 2, "CommandName": "Get-PnPTeamsChannelUser" }, { - "Rank": 3, "Id": 739, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", + "Rank": 3, "CommandName": "Get-PnPTeamsChannelUser" }, { - "Rank": 4, "Id": 740, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 4, "CommandName": "Get-PnPTeamsChannelUser" }, { - "Rank": 1, "Id": 741, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "Rank": 1, "CommandName": "Get-PnPTeamsPrimaryChannel" }, { - "Rank": 2, "Id": 742, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "Rank": 2, "CommandName": "Get-PnPTeamsPrimaryChannel" }, { - "Rank": 1, "Id": 743, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "Rank": 1, "CommandName": "Get-PnPTeamsTab" }, { - "Rank": 2, "Id": 744, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "Rank": 2, "CommandName": "Get-PnPTeamsTab" }, { - "Rank": 3, "Id": 745, "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": 4, "Id": 746, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "Rank": 4, "CommandName": "Get-PnPTeamsTab" }, { - "Rank": 5, "Id": 747, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "Rank": 5, "CommandName": "Get-PnPTeamsTab" }, { - "Rank": 1, "Id": 748, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Rank": 1, "CommandName": "Get-PnPTeamsTag" }, { - "Rank": 2, "Id": 749, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Rank": 2, "CommandName": "Get-PnPTeamsTag" }, { - "Rank": 1, "Id": 750, "Command": "Get-PnPTeamsTeam", + "Rank": 1, "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 2, "Id": 751, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "Rank": 2, "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 3, "Id": 752, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "Rank": 3, "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 4, "Id": 753, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "Rank": 4, "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 5, "Id": 754, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "Rank": 5, "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 1, "Id": 755, "Command": "Get-PnPTeamsUser -Team MyTeam", + "Rank": 1, "CommandName": "Get-PnPTeamsUser" }, { - "Rank": 2, "Id": 756, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "Rank": 2, "CommandName": "Get-PnPTeamsUser" }, { - "Rank": 3, "Id": 757, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "Rank": 3, "CommandName": "Get-PnPTeamsUser" }, { - "Rank": 4, "Id": 758, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "Rank": 4, "CommandName": "Get-PnPTeamsUser" }, { - "Rank": 1, "Id": 759, "Command": "Get-PnPTemporarilyDisableAppBar", + "Rank": 1, "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { - "Rank": 1, "Id": 760, "Command": "Get-PnPTenant", + "Rank": 1, "CommandName": "Get-PnPTenant" }, { - "Rank": 1, "Id": 761, "Command": "Get-PnPTenantAppCatalogUrl", + "Rank": 1, "CommandName": "Get-PnPTenantAppCatalogUrl" }, { - "Rank": 1, "Id": 762, "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "Rank": 1, "CommandName": "Get-PnPTenantCdnEnabled" }, { - "Rank": 1, "Id": 763, "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "Rank": 1, "CommandName": "Get-PnPTenantCdnOrigin" }, { - "Rank": 1, "Id": 764, "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "Rank": 1, "CommandName": "Get-PnPTenantCdnPolicies" }, { - "Rank": 1, "Id": 765, "Command": "Get-PnPTenantDeletedSite", + "Rank": 1, "CommandName": "Get-PnPTenantDeletedSite" }, { - "Rank": 2, "Id": 766, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 2, "CommandName": "Get-PnPTenantDeletedSite" }, { - "Rank": 3, "Id": 767, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "Rank": 3, "CommandName": "Get-PnPTenantDeletedSite" }, { - "Rank": 4, "Id": 768, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "Rank": 4, "CommandName": "Get-PnPTenantDeletedSite" }, { - "Rank": 1, "Id": 769, "Command": "Get-PnPTenantId", + "Rank": 1, "CommandName": "Get-PnPTenantId" }, { - "Rank": 2, "Id": 770, "Command": "Get-PnPTenantId contoso", + "Rank": 2, "CommandName": "Get-PnPTenantId" }, { - "Rank": 3, "Id": 771, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "Rank": 3, "CommandName": "Get-PnPTenantId" }, { - "Rank": 4, "Id": 772, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "Rank": 4, "CommandName": "Get-PnPTenantId" }, { - "Rank": 1, "Id": 773, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "Rank": 1, "CommandName": "Get-PnPTenantInfo" }, { - "Rank": 2, "Id": 774, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "Rank": 2, "CommandName": "Get-PnPTenantInfo" }, { - "Rank": 3, "Id": 775, "Command": "Get-PnPTenantInfo", + "Rank": 3, "CommandName": "Get-PnPTenantInfo" }, { - "Rank": 4, "Id": 776, "Command": "Get-PnPTenantInfo -CurrentTenant", + "Rank": 4, "CommandName": "Get-PnPTenantInfo" }, { - "Rank": 1, "Id": 777, "Command": "Get-PnPTenantInstance", + "Rank": 1, "CommandName": "Get-PnPTenantInstance" }, { - "Rank": 1, "Id": 778, "Command": "Get-PnPTenantRecycleBinItem", + "Rank": 1, "CommandName": "Get-PnPTenantRecycleBinItem" }, { - "Rank": 1, "Id": 779, "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "Rank": 1, "CommandName": "Get-PnPTenantSequence" }, { - "Rank": 2, "Id": 780, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "Rank": 2, "CommandName": "Get-PnPTenantSequence" }, { - "Rank": 1, "Id": 781, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "Rank": 1, "CommandName": "Get-PnPTenantSequenceSite" }, { - "Rank": 2, "Id": 782, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "Rank": 2, "CommandName": "Get-PnPTenantSequenceSite" }, { - "Rank": 1, "Id": 783, "Command": "Get-PnPTenantSite", + "Rank": 1, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 2, "Id": 784, "Command": "Get-PnPTenantSite -Detailed", + "Rank": 2, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 3, "Id": 785, "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "Rank": 3, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 4, "Id": 786, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "Rank": 4, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 5, "Id": 787, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "Rank": 5, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 6, "Id": 788, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "Rank": 6, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 7, "Id": 789, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "Rank": 7, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 8, "Id": 790, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "Rank": 8, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 9, "Id": 791, "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "Rank": 9, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 1, "Id": 792, "Command": "Get-PnPTenantSyncClientRestriction", + "Rank": 1, "CommandName": "Get-PnPTenantSyncClientRestriction" }, { - "Rank": 1, "Id": 793, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "Rank": 1, "CommandName": "Get-PnPTenantTemplate" }, { - "Rank": 2, "Id": 794, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "Rank": 2, "CommandName": "Get-PnPTenantTemplate" }, { - "Rank": 3, "Id": 795, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "Rank": 3, "CommandName": "Get-PnPTenantTemplate" }, { - "Rank": 1, "Id": 796, "Command": "Get-PnPTenantTheme", + "Rank": 1, "CommandName": "Get-PnPTenantTheme" }, { - "Rank": 2, "Id": 797, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Rank": 2, "CommandName": "Get-PnPTenantTheme" }, { - "Rank": 3, "Id": 798, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "Rank": 3, "CommandName": "Get-PnPTenantTheme" }, { - "Rank": 1, "Id": 799, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 1, "CommandName": "Get-PnPTerm" }, { - "Rank": 2, "Id": 800, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, "CommandName": "Get-PnPTerm" }, { - "Rank": 3, "Id": 801, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 3, "CommandName": "Get-PnPTerm" }, { - "Rank": 4, "Id": 802, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "Rank": 4, "CommandName": "Get-PnPTerm" }, { - "Rank": 5, "Id": 803, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "Rank": 5, "CommandName": "Get-PnPTerm" }, { - "Rank": 1, "Id": 804, "Command": "Get-PnPTermGroup", + "Rank": 1, "CommandName": "Get-PnPTermGroup" }, { - "Rank": 2, "Id": 805, "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "Rank": 2, "CommandName": "Get-PnPTermGroup" }, { - "Rank": 3, "Id": 806, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "Rank": 3, "CommandName": "Get-PnPTermGroup" }, { - "Rank": 1, "Id": 807, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "Rank": 1, "CommandName": "Get-PnPTermLabel" }, { - "Rank": 2, "Id": 808, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "Rank": 2, "CommandName": "Get-PnPTermLabel" }, { - "Rank": 3, "Id": 809, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 3, "CommandName": "Get-PnPTermLabel" }, { - "Rank": 1, "Id": 810, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "Rank": 1, "CommandName": "Get-PnPTermSet" }, { - "Rank": 2, "Id": 811, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, "CommandName": "Get-PnPTermSet" }, { - "Rank": 3, "Id": 812, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "Rank": 3, "CommandName": "Get-PnPTermSet" }, { - "Rank": 1, "Id": 813, "Command": "Get-PnPTheme", + "Rank": 1, "CommandName": "Get-PnPTheme" }, { - "Rank": 2, "Id": 814, "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "Rank": 2, "CommandName": "Get-PnPTheme" }, { - "Rank": 1, "Id": 815, "Command": "Get-PnPTimeZoneId", + "Rank": 1, "CommandName": "Get-PnPTimeZoneId" }, { - "Rank": 2, "Id": 816, "Command": "Get-PnPTimeZoneId -Match Stockholm", + "Rank": 2, "CommandName": "Get-PnPTimeZoneId" }, { - "Rank": 1, "Id": 817, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "Rank": 1, "CommandName": "Get-PnPUnfurlLink" }, { - "Rank": 1, "Id": 818, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "Rank": 1, "CommandName": "Get-PnPUnifiedAuditLog" }, { - "Rank": 1, "Id": 819, "Command": "Get-PnPUPABulkImportStatus", + "Rank": 1, "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Rank": 2, "Id": 820, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "Rank": 2, "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Rank": 3, "Id": 821, "Command": "Get-PnPUPABulkImportStatus -JobId ", + "Rank": 3, "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Rank": 4, "Id": 822, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "Rank": 4, "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Rank": 1, "Id": 823, "Command": "Get-PnPUser", + "Rank": 1, "CommandName": "Get-PnPUser" }, { - "Rank": 2, "Id": 824, "Command": "Get-PnPUser -Identity 23", + "Rank": 2, "CommandName": "Get-PnPUser" }, { - "Rank": 3, "Id": 825, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "Rank": 3, "CommandName": "Get-PnPUser" }, { - "Rank": 4, "Id": 826, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "Rank": 4, "CommandName": "Get-PnPUser" }, { - "Rank": 5, "Id": 827, "Command": "Get-PnPUser -WithRightsAssigned", + "Rank": 5, "CommandName": "Get-PnPUser" }, { - "Rank": 6, "Id": 828, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "Rank": 6, "CommandName": "Get-PnPUser" }, { - "Rank": 7, "Id": 829, "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "Rank": 7, "CommandName": "Get-PnPUser" }, { - "Rank": 1, "Id": 830, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "Rank": 1, "CommandName": "Get-PnPUserOneDriveQuota" }, { - "Rank": 1, "Id": 831, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "Rank": 1, "CommandName": "Get-PnPUserProfileProperty" }, { - "Rank": 2, "Id": 832, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "Rank": 2, "CommandName": "Get-PnPUserProfileProperty" }, { - "Rank": 3, "Id": 833, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "Rank": 3, "CommandName": "Get-PnPUserProfileProperty" }, { - "Rank": 1, "Id": 834, "Command": "Get-PnPView -List \"Demo List\"", + "Rank": 1, "CommandName": "Get-PnPView" }, { - "Rank": 2, "Id": 835, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "Rank": 2, "CommandName": "Get-PnPView" }, { - "Rank": 3, "Id": 836, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "Rank": 3, "CommandName": "Get-PnPView" }, { - "Rank": 1, "Id": 837, "Command": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 1, "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { - "Rank": 2, "Id": 838, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Rank": 2, "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { - "Rank": 1, "Id": 839, "Command": "Get-PnPWeb", + "Rank": 1, "CommandName": "Get-PnPWeb" }, { - "Rank": 1, "Id": 840, "Command": "Get-PnPWebHeader", + "Rank": 1, "CommandName": "Get-PnPWebHeader" }, { - "Rank": 1, "Id": 841, "Command": "Get-PnPWebhookSubscriptions -List MyList", + "Rank": 1, "CommandName": "Get-PnPWebhookSubscriptions" }, { - "Rank": 1, "Id": 842, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "Rank": 1, "CommandName": "Get-PnPWebPart" }, { - "Rank": 2, "Id": 843, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 2, "CommandName": "Get-PnPWebPart" }, { - "Rank": 1, "Id": 844, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "Rank": 1, "CommandName": "Get-PnPWebPartProperty" }, { - "Rank": 2, "Id": 845, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "Rank": 2, "CommandName": "Get-PnPWebPartProperty" }, { - "Rank": 1, "Id": 846, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1, "CommandName": "Get-PnPWebPartXml" }, { - "Rank": 1, "Id": 847, "Command": "Get-PnPWebTemplates", + "Rank": 1, "CommandName": "Get-PnPWebTemplates" }, { - "Rank": 2, "Id": 848, "Command": "Get-PnPWebTemplates -LCID 1033", + "Rank": 2, "CommandName": "Get-PnPWebTemplates" }, { - "Rank": 3, "Id": 849, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "Rank": 3, "CommandName": "Get-PnPWebTemplates" }, { - "Rank": 1, "Id": 850, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "Rank": 1, "CommandName": "Get-PnPWikiPageContent" }, { - "Rank": 1, "Id": 851, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", + "Rank": 1, "CommandName": "Grant-PnPAzureADAppSitePermission" }, { - "Rank": 2, "Id": 852, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", + "Rank": 2, "CommandName": "Grant-PnPAzureADAppSitePermission" }, { - "Rank": 1, "Id": 853, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, "CommandName": "Grant-PnPHubSiteRights" }, { - "Rank": 1, "Id": 854, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, "CommandName": "Grant-PnPSiteDesignRights" }, { - "Rank": 1, "Id": 855, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Rank": 1, "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { - "Rank": 1, "Id": 856, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "Rank": 1, "CommandName": "Import-PnPTaxonomy" }, { - "Rank": 2, "Id": 857, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "Rank": 2, "CommandName": "Import-PnPTaxonomy" }, { - "Rank": 3, "Id": 858, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "Rank": 3, "CommandName": "Import-PnPTaxonomy" }, { - "Rank": 1, "Id": 859, "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "Rank": 1, "CommandName": "Import-PnPTermGroupFromXml" }, { - "Rank": 2, "Id": 860, "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "Rank": 2, "CommandName": "Import-PnPTermGroupFromXml" }, { - "Rank": 1, "Id": 861, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "Rank": 1, "CommandName": "Import-PnPTermSet" }, { - "Rank": 2, "Id": 862, "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": 3, "Id": 863, "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": 1, "Id": 864, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Install-PnPApp" }, { - "Rank": 2, "Id": 865, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Install-PnPApp" }, { - "Rank": 1, "Id": 866, "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": 2, "Id": 867, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "Rank": 2, "CommandName": "Invoke-PnPGraphMethod" }, { - "Rank": 3, "Id": 868, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "Rank": 3, "CommandName": "Invoke-PnPGraphMethod" }, { - "Rank": 4, "Id": 869, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "Rank": 4, "CommandName": "Invoke-PnPGraphMethod" }, { - "Rank": 5, "Id": 870, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "Rank": 5, "CommandName": "Invoke-PnPGraphMethod" }, { - "Rank": 6, "Id": 871, "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": 7, "Id": 872, "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": 1, "Id": 873, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Invoke-PnPListDesign" }, { - "Rank": 2, "Id": 874, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Rank": 2, "CommandName": "Invoke-PnPListDesign" }, { - "Rank": 1, "Id": 875, "Command": "Invoke-PnPQuery -RetryCount 5", + "Rank": 1, "CommandName": "Invoke-PnPQuery" }, { - "Rank": 1, "Id": 876, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Invoke-PnPSiteDesign" }, { - "Rank": 2, "Id": 877, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Rank": 2, "CommandName": "Invoke-PnPSiteDesign" }, { - "Rank": 1, "Id": 878, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "Rank": 1, "CommandName": "Invoke-PnPSiteScript" }, { - "Rank": 1, "Id": 879, "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": 2, "Id": 880, "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": 3, "Id": 881, "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": 1, "Id": 882, "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "Rank": 1, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 2, "Id": 883, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "Rank": 2, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 3, "Id": 884, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Rank": 3, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 4, "Id": 885, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "Rank": 4, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 5, "Id": 886, "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "Rank": 5, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 6, "Id": 887, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "Rank": 6, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 7, "Id": 888, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "Rank": 7, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 8, "Id": 889, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "Rank": 8, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 1, "Id": 890, "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "Rank": 1, "CommandName": "Invoke-PnPSPRestMethod" }, { - "Rank": 1, "Id": 891, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "Rank": 1, "CommandName": "Invoke-PnPTenantTemplate" }, { - "Rank": 2, "Id": 892, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "Rank": 2, "CommandName": "Invoke-PnPTenantTemplate" }, { - "Rank": 3, "Id": 893, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Rank": 3, "CommandName": "Invoke-PnPTenantTemplate" }, { - "Rank": 1, "Id": 894, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "Rank": 1, "CommandName": "Invoke-PnPWebAction" }, { - "Rank": 2, "Id": 895, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "Rank": 2, "CommandName": "Invoke-PnPWebAction" }, { - "Rank": 1, "Id": 896, "Command": "Measure-PnPList \"Documents\"", + "Rank": 1, "CommandName": "Measure-PnPList" }, { - "Rank": 2, "Id": 897, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "Rank": 2, "CommandName": "Measure-PnPList" }, { - "Rank": 1, "Id": 898, "Command": "Measure-PnPWeb", + "Rank": 1, "CommandName": "Measure-PnPWeb" }, { - "Rank": 2, "Id": 899, "Command": "Measure-PnPWeb $web -Recursive", + "Rank": 2, "CommandName": "Measure-PnPWeb" }, { - "Rank": 1, "Id": 900, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "Rank": 1, "CommandName": "Move-PnPFile" }, { - "Rank": 2, "Id": 901, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "Rank": 2, "CommandName": "Move-PnPFile" }, { - "Rank": 3, "Id": 902, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Rank": 3, "CommandName": "Move-PnPFile" }, { - "Rank": 4, "Id": 903, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Rank": 4, "CommandName": "Move-PnPFile" }, { - "Rank": 1, "Id": 904, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "Rank": 1, "CommandName": "Move-PnPFolder" }, { - "Rank": 2, "Id": 905, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "Rank": 2, "CommandName": "Move-PnPFolder" }, { - "Rank": 1, "Id": 906, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "Rank": 1, "CommandName": "Move-PnPListItemToRecycleBin" }, { - "Rank": 1, "Id": 907, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "Rank": 1, "CommandName": "Move-PnPPageComponent" }, { - "Rank": 2, "Id": 908, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "Rank": 2, "CommandName": "Move-PnPPageComponent" }, { - "Rank": 3, "Id": 909, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "Rank": 3, "CommandName": "Move-PnPPageComponent" }, { - "Rank": 4, "Id": 910, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "Rank": 4, "CommandName": "Move-PnPPageComponent" }, { - "Rank": 1, "Id": 911, "Command": "Move-PnPRecycleBinItem", + "Rank": 1, "CommandName": "Move-PnpRecycleBinItem" }, { - "Rank": 2, "Id": 912, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "Rank": 2, "CommandName": "Move-PnpRecycleBinItem" }, { - "Rank": 3, "Id": 913, "Command": "Move-PnPRecycleBinItem -Force", + "Rank": 3, "CommandName": "Move-PnpRecycleBinItem" }, { - "Rank": 1, "Id": 914, "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": 2, "Id": 915, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "Rank": 2, "CommandName": "Move-PnPTerm" }, { - "Rank": 3, "Id": 916, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "Rank": 3, "CommandName": "Move-PnPTerm" }, { - "Rank": 1, "Id": 917, "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": 2, "Id": 918, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "Rank": 2, "CommandName": "Move-PnPTermSet" }, { - "Rank": 1, "Id": 919, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "Rank": 1, "CommandName": "New-PnPAzureADGroup" }, { - "Rank": 2, "Id": 920, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "Rank": 2, "CommandName": "New-PnPAzureADGroup" }, { - "Rank": 3, "Id": 921, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "Rank": 3, "CommandName": "New-PnPAzureADGroup" }, { - "Rank": 1, "Id": 922, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "Rank": 1, "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Rank": 2, "Id": 923, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "Rank": 2, "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Rank": 3, "Id": 924, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "Rank": 3, "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Rank": 1, "Id": 925, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "Rank": 1, "CommandName": "New-PnPAzureCertificate" }, { - "Rank": 2, "Id": 926, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "Rank": 2, "CommandName": "New-PnPAzureCertificate" }, { - "Rank": 3, "Id": 927, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "Rank": 3, "CommandName": "New-PnPAzureCertificate" }, { - "Rank": 1, "Id": 928, "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": 2, "Id": 929, "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": 1, "Id": 930, "Command": "New-PnPGroup -Title \"My Site Users\"", + "Rank": 1, "CommandName": "New-PnPGroup" }, { - "Rank": 1, "Id": 931, "Command": "New-PnPList -Title Announcements -Template Announcements", + "Rank": 1, "CommandName": "New-PnPList" }, { - "Rank": 2, "Id": 932, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "Rank": 2, "CommandName": "New-PnPList" }, { - "Rank": 3, "Id": 933, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "Rank": 3, "CommandName": "New-PnPList" }, { - "Rank": 1, "Id": 934, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "Rank": 1, "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 2, "Id": 935, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "Rank": 2, "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 3, "Id": 936, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "Rank": 3, "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 4, "Id": 937, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "Rank": 4, "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 5, "Id": 938, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Rank": 5, "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 6, "Id": 939, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Rank": 6, "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 7, "Id": 940, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", + "Rank": 7, "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 1, "Id": 941, "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": 2, "Id": 942, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", + "Rank": 2, "CommandName": "New-PnPMicrosoft365GroupSettings" }, { - "Rank": 1, "Id": 943, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "Rank": 1, "CommandName": "New-PnPPersonalSite" }, { - "Rank": 1, "Id": 944, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "Rank": 1, "CommandName": "New-PnPPlannerPlan" }, { - "Rank": 1, "Id": 945, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "Rank": 1, "CommandName": "New-PnPSdnProvider" }, { - "Rank": 1, "Id": 946, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Rank": 1, "CommandName": "New-PnPSite" }, { - "Rank": 2, "Id": 947, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "Rank": 2, "CommandName": "New-PnPSite" }, { - "Rank": 3, "Id": 948, "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": 4, "Id": 949, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Rank": 4, "CommandName": "New-PnPSite" }, { - "Rank": 5, "Id": 950, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Rank": 5, "CommandName": "New-PnPSite" }, { - "Rank": 6, "Id": 951, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Rank": 6, "CommandName": "New-PnPSite" }, { - "Rank": 7, "Id": 952, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "Rank": 7, "CommandName": "New-PnPSite" }, { - "Rank": 8, "Id": 953, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "Rank": 8, "CommandName": "New-PnPSite" }, { - "Rank": 9, "Id": 954, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "Rank": 9, "CommandName": "New-PnPSite" }, { - "Rank": 10, "Id": 955, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "Rank": 10, "CommandName": "New-PnPSite" }, { - "Rank": 11, "Id": 956, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Rank": 11, "CommandName": "New-PnPSite" }, { - "Rank": 12, "Id": 957, "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": 13, "Id": 958, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Rank": 13, "CommandName": "New-PnPSite" }, { - "Rank": 14, "Id": 959, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Rank": 14, "CommandName": "New-PnPSite" }, { - "Rank": 15, "Id": 960, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Rank": 15, "CommandName": "New-PnPSite" }, { - "Rank": 16, "Id": 961, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "Rank": 16, "CommandName": "New-PnPSite" }, { - "Rank": 1, "Id": 962, "Command": "New-PnPSiteCollectionTermStore", + "Rank": 1, "CommandName": "New-PnPSiteCollectionTermStore" }, { - "Rank": 1, "Id": 963, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "Rank": 1, "CommandName": "New-PnPSiteGroup" }, { - "Rank": 2, "Id": 964, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "Rank": 2, "CommandName": "New-PnPSiteGroup" }, { - "Rank": 1, "Id": 965, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "Rank": 1, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 2, "Id": 966, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "Rank": 2, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 3, "Id": 967, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "Rank": 3, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 4, "Id": 968, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "Rank": 4, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 5, "Id": 969, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", + "Rank": 5, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 6, "Id": 970, "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": 7, "Id": 971, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "Rank": 7, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 8, "Id": 972, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "Rank": 8, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 1, "Id": 973, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "Rank": 1, "CommandName": "New-PnPTeamsApp" }, { - "Rank": 1, "Id": 974, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "Rank": 1, "CommandName": "New-PnPTeamsTeam" }, { - "Rank": 2, "Id": 975, "Command": "New-PnPTeamsTeam -GroupId $groupId", + "Rank": 2, "CommandName": "New-PnPTeamsTeam" }, { - "Rank": 3, "Id": 976, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "Rank": 3, "CommandName": "New-PnPTeamsTeam" }, { - "Rank": 4, "Id": 977, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Rank": 4, "CommandName": "New-PnPTeamsTeam" }, { - "Rank": 5, "Id": 978, "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": 6, "Id": 979, "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": 1, "Id": 980, "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": 2, "Id": 981, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "Rank": 2, "CommandName": "New-PnPTenantSite" }, { - "Rank": 1, "Id": 982, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "Rank": 1, "CommandName": "New-PnPTerm" }, { - "Rank": 2, "Id": 983, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 2, "CommandName": "New-PnPTerm" }, { - "Rank": 1, "Id": 984, "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "Rank": 1, "CommandName": "New-PnPTermGroup" }, { - "Rank": 1, "Id": 985, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "Rank": 1, "CommandName": "New-PnPTermLabel" }, { - "Rank": 1, "Id": 986, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "Rank": 1, "CommandName": "New-PnPTermSet" }, { - "Rank": 1, "Id": 987, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "Rank": 1, "CommandName": "New-PnPUPABulkImportJob" }, { - "Rank": 2, "Id": 988, "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": 1, "Id": 989, "Command": "New-PnPUser -LoginName user@company.com", + "Rank": 1, "CommandName": "New-PnPUser" }, { - "Rank": 1, "Id": 990, "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, "Id": 991, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 1, "CommandName": "Publish-PnPApp" }, { - "Rank": 2, "Id": 992, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "Rank": 2, "CommandName": "Publish-PnPApp" }, { - "Rank": 1, "Id": 993, "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, "Id": 994, "Command": "Publish-PnPContentType -ContentType 0x0101", + "Rank": 1, "CommandName": "Publish-PnPContentType" }, { - "Rank": 1, "Id": 995, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Rank": 1, "CommandName": "Publish-PnPSyntexModel" }, { - "Rank": 2, "Id": 996, "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": 1, "Id": 997, "Command": "Read-PnPSiteTemplate -Path template.pnp", + "Rank": 1, "CommandName": "Read-PnPSiteTemplate" }, { - "Rank": 2, "Id": 998, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "Rank": 2, "CommandName": "Read-PnPSiteTemplate" }, { - "Rank": 3, "Id": 999, "Command": "Read-PnPSiteTemplate -Xml $xml", + "Rank": 3, "CommandName": "Read-PnPSiteTemplate" }, { - "Rank": 1, "Id": 1000, "Command": "Read-PnPTenantTemplate -Path template.pnp", + "Rank": 1, "CommandName": "Read-PnPTenantTemplate" }, { - "Rank": 1, "Id": 1001, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "Rank": 1, "CommandName": "Register-PnPAppCatalogSite" }, { - "Rank": 1, "Id": 1002, "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": 2, "Id": 1003, "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": 3, "Id": 1004, "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": 4, "Id": 1005, "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": 5, "Id": 1006, "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": 6, "Id": 1007, "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": 7, "Id": 1008, "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": 1, "Id": 1009, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Rank": 1, "CommandName": "Register-PnPHubSite" }, { - "Rank": 2, "Id": 1010, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "Rank": 2, "CommandName": "Register-PnPHubSite" }, { - "Rank": 1, "Id": 1011, "Command": "Register-PnPManagementShellAccess", + "Rank": 1, "CommandName": "Register-PnPManagementShellAccess" }, { - "Rank": 2, "Id": 1012, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "Rank": 2, "CommandName": "Register-PnPManagementShellAccess" }, { - "Rank": 3, "Id": 1013, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "Rank": 3, "CommandName": "Register-PnPManagementShellAccess" }, { - "Rank": 1, "Id": 1014, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "Rank": 1, "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { - "Rank": 2, "Id": 1015, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "Rank": 2, "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { - "Rank": 1, "Id": 1016, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "Rank": 1, "CommandName": "Remove-PnPAlert" }, { - "Rank": 2, "Id": 1017, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Rank": 2, "CommandName": "Remove-PnPAlert" }, { - "Rank": 1, "Id": 1018, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Remove-PnPApp" }, { - "Rank": 2, "Id": 1019, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Remove-PnPApp" }, { - "Rank": 1, "Id": 1020, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1, "CommandName": "Remove-PnPApplicationCustomizer" }, { - "Rank": 2, "Id": 1021, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Rank": 2, "CommandName": "Remove-PnPApplicationCustomizer" }, { - "Rank": 1, "Id": 1022, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "Rank": 1, "CommandName": "Remove-PnPAvailableSiteClassification" }, { - "Rank": 2, "Id": 1023, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Rank": 2, "CommandName": "Remove-PnPAvailableSiteClassification" }, { - "Rank": 1, "Id": 1024, "Command": "Remove-PnPAzureADApp -Identity MyApp", + "Rank": 1, "CommandName": "Remove-PnPAzureADApp" }, { - "Rank": 2, "Id": 1025, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 2, "CommandName": "Remove-PnPAzureADApp" }, { - "Rank": 1, "Id": 1026, "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "Rank": 1, "CommandName": "Remove-PnPAzureADGroup" }, { - "Rank": 2, "Id": 1027, "Command": "Remove-PnPAzureADGroup -Identity $group", + "Rank": 2, "CommandName": "Remove-PnPAzureADGroup" }, { - "Rank": 1, "Id": 1028, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPAzureADGroupMember" }, { - "Rank": 1, "Id": 1029, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPAzureADGroupOwner" }, { - "Rank": 1, "Id": 1030, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "Rank": 1, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 2, "Id": 1031, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "Rank": 2, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 3, "Id": 1032, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 3, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 4, "Id": 1033, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 4, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 1, "Id": 1034, "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "Rank": 1, "CommandName": "Remove-PnPContentType" }, { - "Rank": 2, "Id": 1035, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "Rank": 2, "CommandName": "Remove-PnPContentType" }, { - "Rank": 1, "Id": 1036, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Rank": 1, "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { - "Rank": 2, "Id": 1037, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Rank": 2, "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { - "Rank": 1, "Id": 1038, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "Rank": 1, "CommandName": "Remove-PnPContentTypeFromList" }, { - "Rank": 1, "Id": 1039, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1, "CommandName": "Remove-PnPCustomAction" }, { - "Rank": 2, "Id": 1040, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Rank": 2, "CommandName": "Remove-PnPCustomAction" }, { - "Rank": 3, "Id": 1041, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "Rank": 3, "CommandName": "Remove-PnPCustomAction" }, { - "Rank": 1, "Id": 1042, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 1, "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { - "Rank": 1, "Id": 1043, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 1, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 2, "Id": 1044, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 2, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 3, "Id": 1045, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "Rank": 3, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 4, "Id": 1046, "Command": "Remove-PnPEventReceiver -List ProjectList", + "Rank": 4, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 5, "Id": 1047, "Command": "Remove-PnPEventReceiver", + "Rank": 5, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 6, "Id": 1048, "Command": "Remove-PnPEventReceiver -Scope Site", + "Rank": 6, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 7, "Id": 1049, "Command": "Remove-PnPEventReceiver -Scope Web", + "Rank": 7, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 8, "Id": 1050, "Command": "Remove-PnPEventReceiver -Scope All", + "Rank": 8, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 1, "Id": 1051, "Command": "Remove-PnPField -Identity \"Speakers\"", + "Rank": 1, "CommandName": "Remove-PnPField" }, { - "Rank": 2, "Id": 1052, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Rank": 2, "CommandName": "Remove-PnPField" }, { - "Rank": 1, "Id": 1053, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Rank": 1, "CommandName": "Remove-PnPFieldFromContentType" }, { - "Rank": 2, "Id": 1054, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "Rank": 2, "CommandName": "Remove-PnPFieldFromContentType" }, { - "Rank": 1, "Id": 1055, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "Rank": 1, "CommandName": "Remove-PnPFile" }, { - "Rank": 2, "Id": 1056, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "Rank": 2, "CommandName": "Remove-PnPFile" }, { - "Rank": 3, "Id": 1057, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "Rank": 3, "CommandName": "Remove-PnPFile" }, { - "Rank": 1, "Id": 1058, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "Rank": 1, "CommandName": "Remove-PnPFileFromSiteTemplate" }, { - "Rank": 1, "Id": 1059, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, "CommandName": "Remove-PnPFileSharingLink" }, { - "Rank": 2, "Id": 1060, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "Rank": 2, "CommandName": "Remove-PnPFileSharingLink" }, { - "Rank": 1, "Id": 1061, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Rank": 1, "CommandName": "Remove-PnPFileVersion" }, { - "Rank": 2, "Id": 1062, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Rank": 2, "CommandName": "Remove-PnPFileVersion" }, { - "Rank": 3, "Id": 1063, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "Rank": 3, "CommandName": "Remove-PnPFileVersion" }, { - "Rank": 1, "Id": 1064, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", + "Rank": 1, "CommandName": "Remove-PnPFlowOwner" }, { - "Rank": 2, "Id": 1065, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", + "Rank": 2, "CommandName": "Remove-PnPFlowOwner" }, { - "Rank": 3, "Id": 1066, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", + "Rank": 3, "CommandName": "Remove-PnPFlowOwner" }, { - "Rank": 4, "Id": 1067, "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": 1, "Id": 1068, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Rank": 1, "CommandName": "Remove-PnPFolder" }, { - "Rank": 2, "Id": 1069, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "Rank": 2, "CommandName": "Remove-PnPFolder" }, { - "Rank": 1, "Id": 1070, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, "CommandName": "Remove-PnPFolderSharingLink" }, { - "Rank": 2, "Id": 1071, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "Rank": 2, "CommandName": "Remove-PnPFolderSharingLink" }, { - "Rank": 1, "Id": 1072, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "Rank": 1, "CommandName": "Remove-PnPGraphSubscription" }, { - "Rank": 1, "Id": 1073, "Command": "Remove-PnPGroup -Identity \"My Users\"", + "Rank": 1, "CommandName": "Remove-PnPGroup" }, { - "Rank": 1, "Id": 1074, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Rank": 1, "CommandName": "Remove-PnPGroupMember" }, { - "Rank": 1, "Id": 1075, "Command": "Remove-PnPHomeSite", + "Rank": 1, "CommandName": "Remove-PnPHomeSite" }, { - "Rank": 1, "Id": 1076, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "Rank": 1, "CommandName": "Remove-PnPHubSiteAssociation" }, { - "Rank": 1, "Id": 1077, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "Rank": 1, "CommandName": "Remove-PnPHubToHubAssociation" }, { - "Rank": 2, "Id": 1078, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "Rank": 2, "CommandName": "Remove-PnPHubToHubAssociation" }, { - "Rank": 1, "Id": 1079, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "Rank": 1, "CommandName": "Remove-PnPIndexedProperty" }, { - "Rank": 1, "Id": 1080, "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "Rank": 1, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 2, "Id": 1081, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "Rank": 2, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 3, "Id": 1082, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "Rank": 3, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 4, "Id": 1083, "Command": "Remove-PnPJavaScriptLink -Scope Site", + "Rank": 4, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 5, "Id": 1084, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "Rank": 5, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 1, "Id": 1085, "Command": "Remove-PnPKnowledgeHubSite", + "Rank": 1, "CommandName": "Remove-PnPKnowledgeHubSite" }, { - "Rank": 1, "Id": 1086, "Command": "Remove-PnPList -Identity Announcements", + "Rank": 1, "CommandName": "Remove-PnPList" }, { - "Rank": 2, "Id": 1087, "Command": "Remove-PnPList -Identity Announcements -Force", + "Rank": 2, "CommandName": "Remove-PnPList" }, { - "Rank": 3, "Id": 1088, "Command": "Remove-PnPList -Identity Announcements -Recycle", + "Rank": 3, "CommandName": "Remove-PnPList" }, { - "Rank": 4, "Id": 1089, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "Rank": 4, "CommandName": "Remove-PnPList" }, { - "Rank": 1, "Id": 1090, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Remove-PnPListDesign" }, { - "Rank": 1, "Id": 1091, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "Rank": 1, "CommandName": "Remove-PnPListItem" }, { - "Rank": 2, "Id": 1092, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "Rank": 2, "CommandName": "Remove-PnPListItem" }, { - "Rank": 3, "Id": 1093, "Command": "Remove-PnPListItem -List \"Demo List\"", + "Rank": 3, "CommandName": "Remove-PnPListItem" }, { - "Rank": 1, "Id": 1094, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "Rank": 1, "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 2, "Id": 1095, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "Rank": 2, "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 3, "Id": 1096, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "Rank": 3, "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 4, "Id": 1097, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "Rank": 4, "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 5, "Id": 1098, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "Rank": 5, "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 1, "Id": 1099, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Rank": 1, "CommandName": "Remove-PnPListItemVersion" }, { - "Rank": 2, "Id": 1100, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Rank": 2, "CommandName": "Remove-PnPListItemVersion" }, { - "Rank": 1, "Id": 1101, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365Group" }, { - "Rank": 2, "Id": 1102, "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "Rank": 2, "CommandName": "Remove-PnPMicrosoft365Group" }, { - "Rank": 1, "Id": 1103, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { - "Rank": 1, "Id": 1104, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { - "Rank": 1, "Id": 1105, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { - "Rank": 2, "Id": 1106, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "Rank": 2, "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { - "Rank": 1, "Id": 1107, "Command": "Remove-PnPNavigationNode -Identity 1032", + "Rank": 1, "CommandName": "Remove-PnPNavigationNode" }, { - "Rank": 2, "Id": 1108, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "Rank": 2, "CommandName": "Remove-PnPNavigationNode" }, { - "Rank": 3, "Id": 1109, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "Rank": 3, "CommandName": "Remove-PnPNavigationNode" }, { - "Rank": 1, "Id": 1110, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "Rank": 1, "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Rank": 2, "Id": 1111, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "Rank": 2, "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Rank": 3, "Id": 1112, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "Rank": 3, "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Rank": 1, "Id": 1113, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "Rank": 1, "CommandName": "Remove-PnPOrgNewsSite" }, { - "Rank": 1, "Id": 1114, "Command": "Remove-PnPPage -Identity \"MyPage\"", + "Rank": 1, "CommandName": "Remove-PnPPage" }, { - "Rank": 2, "Id": 1115, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "Rank": 2, "CommandName": "Remove-PnPPage" }, { - "Rank": 3, "Id": 1116, "Command": "Remove-PnPPage $page", + "Rank": 3, "CommandName": "Remove-PnPPage" }, { - "Rank": 4, "Id": 1117, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "Rank": 4, "CommandName": "Remove-PnPPage" }, { - "Rank": 1, "Id": 1118, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1, "CommandName": "Remove-PnPPageComponent" }, { - "Rank": 1, "Id": 1119, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "Rank": 1, "CommandName": "Remove-PnPPlannerBucket" }, { - "Rank": 1, "Id": 1120, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "Rank": 1, "CommandName": "Remove-PnPPlannerPlan" }, { - "Rank": 1, "Id": 1121, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Rank": 1, "CommandName": "Remove-PnPPlannerRoster" }, { - "Rank": 1, "Id": 1122, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPPlannerRosterMember" }, { - "Rank": 1, "Id": 1123, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "Rank": 1, "CommandName": "Remove-PnPPlannerTask" }, { - "Rank": 1, "Id": 1124, "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "Rank": 1, "CommandName": "Remove-PnPPropertyBagValue" }, { - "Rank": 2, "Id": 1125, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "Rank": 2, "CommandName": "Remove-PnPPropertyBagValue" }, { - "Rank": 3, "Id": 1126, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "Rank": 3, "CommandName": "Remove-PnPPropertyBagValue" }, { - "Rank": 1, "Id": 1127, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Rank": 1, "CommandName": "Remove-PnPPublishingImageRendition" }, { - "Rank": 1, "Id": 1128, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "Rank": 1, "CommandName": "Remove-PnPRoleDefinition" }, { - "Rank": 1, "Id": 1129, "Command": "Remove-PnPSdnProvider -Confirm:false", + "Rank": 1, "CommandName": "Remove-PnPSdnProvider" }, { - "Rank": 1, "Id": 1130, "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "Rank": 1, "CommandName": "Remove-PnPSearchConfiguration" }, { - "Rank": 2, "Id": 1131, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "Rank": 2, "CommandName": "Remove-PnPSearchConfiguration" }, { - "Rank": 3, "Id": 1132, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Rank": 3, "CommandName": "Remove-PnPSearchConfiguration" }, { - "Rank": 4, "Id": 1133, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4, "CommandName": "Remove-PnPSearchConfiguration" }, { - "Rank": 1, "Id": 1134, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAdmin" }, { - "Rank": 2, "Id": 1135, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 2, "CommandName": "Remove-PnPSiteCollectionAdmin" }, { - "Rank": 1, "Id": 1136, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { - "Rank": 1, "Id": 1137, "Command": "Remove-PnPSiteCollectionTermStore", + "Rank": 1, "CommandName": "Remove-PnPSiteCollectionTermStore" }, { - "Rank": 1, "Id": 1138, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Remove-PnPSiteDesign" }, { - "Rank": 1, "Id": 1139, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Remove-PnPSiteDesignTask" }, { - "Rank": 1, "Id": 1140, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1, "CommandName": "Remove-PnPSiteGroup" }, { - "Rank": 2, "Id": 1141, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "Rank": 2, "CommandName": "Remove-PnPSiteGroup" }, { - "Rank": 1, "Id": 1142, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Remove-PnPSiteScript" }, { - "Rank": 1, "Id": 1143, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Rank": 1, "CommandName": "Remove-PnPSiteUserInvitations" }, { - "Rank": 1, "Id": 1144, "Command": "Remove-PnPStorageEntity -Key MyKey", + "Rank": 1, "CommandName": "Remove-PnPStorageEntity" }, { - "Rank": 2, "Id": 1145, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "Rank": 2, "CommandName": "Remove-PnPStorageEntity" }, { - "Rank": 1, "Id": 1146, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "Rank": 1, "CommandName": "Remove-PnPStoredCredential" }, { - "Rank": 1, "Id": 1147, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "Rank": 1, "CommandName": "Remove-PnPTaxonomyItem" }, { - "Rank": 2, "Id": 1148, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "Rank": 2, "CommandName": "Remove-PnPTaxonomyItem" }, { - "Rank": 1, "Id": 1149, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "Rank": 1, "CommandName": "Remove-PnPTeamsApp" }, { - "Rank": 2, "Id": 1150, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "Rank": 2, "CommandName": "Remove-PnPTeamsApp" }, { - "Rank": 1, "Id": 1151, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "Rank": 1, "CommandName": "Remove-PnPTeamsChannel" }, { - "Rank": 1, "Id": 1152, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "Rank": 1, "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Rank": 2, "Id": 1153, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 2, "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Rank": 3, "Id": 1154, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "Rank": 3, "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Rank": 1, "Id": 1155, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "Rank": 1, "CommandName": "Remove-PnPTeamsTab" }, { - "Rank": 2, "Id": 1156, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "Rank": 2, "CommandName": "Remove-PnPTeamsTab" }, { - "Rank": 3, "Id": 1157, "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": 1, "Id": 1158, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Rank": 1, "CommandName": "Remove-PnPTeamsTag" }, { - "Rank": 1, "Id": 1159, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Rank": 1, "CommandName": "Remove-PnPTeamsTeam" }, { - "Rank": 2, "Id": 1160, "Command": "Remove-PnPTeamsTeam -Identity testteam", + "Rank": 2, "CommandName": "Remove-PnPTeamsTeam" }, { - "Rank": 1, "Id": 1161, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "Rank": 1, "CommandName": "Remove-PnPTeamsUser" }, { - "Rank": 2, "Id": 1162, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 2, "CommandName": "Remove-PnPTeamsUser" }, { - "Rank": 1, "Id": 1163, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Rank": 1, "CommandName": "Remove-PnPTenantCdnOrigin" }, { - "Rank": 1, "Id": 1164, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Remove-PnPTenantDeletedSite" }, { - "Rank": 2, "Id": 1165, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Rank": 2, "CommandName": "Remove-PnPTenantDeletedSite" }, { - "Rank": 1, "Id": 1166, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Remove-PnPTenantSite" }, { - "Rank": 2, "Id": 1167, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "Rank": 2, "CommandName": "Remove-PnPTenantSite" }, { - "Rank": 3, "Id": 1168, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "Rank": 3, "CommandName": "Remove-PnPTenantSite" }, { - "Rank": 1, "Id": 1169, "Command": "Remove-PnPTenantSyncClientRestriction", + "Rank": 1, "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { - "Rank": 1, "Id": 1170, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Rank": 1, "CommandName": "Remove-PnPTenantTheme" }, { - "Rank": 1, "Id": 1171, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Rank": 1, "CommandName": "Remove-PnPTerm" }, { - "Rank": 2, "Id": 1172, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, "CommandName": "Remove-PnPTerm" }, { - "Rank": 1, "Id": 1173, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Rank": 1, "CommandName": "Remove-PnPTermGroup" }, { - "Rank": 2, "Id": 1174, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "Rank": 2, "CommandName": "Remove-PnPTermGroup" }, { - "Rank": 3, "Id": 1175, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "Rank": 3, "CommandName": "Remove-PnPTermGroup" }, { - "Rank": 1, "Id": 1176, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", + "Rank": 1, "CommandName": "Remove-PnPTermLabel" }, { - "Rank": 2, "Id": 1177, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, "CommandName": "Remove-PnPTermLabel" }, { - "Rank": 1, "Id": 1178, "Command": "Remove-PnPUser -Identity 23", + "Rank": 1, "CommandName": "Remove-PnPUser" }, { - "Rank": 2, "Id": 1179, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "Rank": 2, "CommandName": "Remove-PnPUser" }, { - "Rank": 3, "Id": 1180, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "Rank": 3, "CommandName": "Remove-PnPUser" }, { - "Rank": 1, "Id": 1181, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Rank": 1, "CommandName": "Remove-PnPUserInfo" }, { - "Rank": 1, "Id": 1182, "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "Rank": 1, "CommandName": "Remove-PnPUserProfile" }, { - "Rank": 1, "Id": 1183, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "Rank": 1, "CommandName": "Remove-PnPView" }, { - "Rank": 1, "Id": 1184, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Rank": 1, "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { - "Rank": 1, "Id": 1185, "Command": "Remove-PnPWeb -Identity projectA", + "Rank": 1, "CommandName": "Remove-PnPWeb" }, { - "Rank": 2, "Id": 1186, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "Rank": 2, "CommandName": "Remove-PnPWeb" }, { - "Rank": 1, "Id": 1187, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "Rank": 1, "CommandName": "Remove-PnPWebhookSubscription" }, { - "Rank": 1, "Id": 1188, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1, "CommandName": "Remove-PnPWebPart" }, { - "Rank": 2, "Id": 1189, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "Rank": 2, "CommandName": "Remove-PnPWebPart" }, { - "Rank": 1, "Id": 1190, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "Rank": 1, "CommandName": "Remove-PnPWikiPage" }, { - "Rank": 1, "Id": 1191, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "Rank": 1, "CommandName": "Rename-PnPFile" }, { - "Rank": 2, "Id": 1192, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "Rank": 2, "CommandName": "Rename-PnPFile" }, { - "Rank": 3, "Id": 1193, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "Rank": 3, "CommandName": "Rename-PnPFile" }, { - "Rank": 1, "Id": 1194, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "Rank": 1, "CommandName": "Rename-PnPFolder" }, { - "Rank": 1, "Id": 1195, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1, "CommandName": "Repair-PnPSite" }, { - "Rank": 2, "Id": 1196, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Rank": 2, "CommandName": "Repair-PnPSite" }, { - "Rank": 1, "Id": 1197, "Command": "Request-PnPAccessToken", + "Rank": 1, "CommandName": "Request-PnPAccessToken" }, { - "Rank": 2, "Id": 1198, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "Rank": 2, "CommandName": "Request-PnPAccessToken" }, { - "Rank": 3, "Id": 1199, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "Rank": 3, "CommandName": "Request-PnPAccessToken" }, { - "Rank": 4, "Id": 1200, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "Rank": 4, "CommandName": "Request-PnPAccessToken" }, { - "Rank": 1, "Id": 1201, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "Rank": 1, "CommandName": "Request-PnPPersonalSite" }, { - "Rank": 2, "Id": 1202, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "Rank": 2, "CommandName": "Request-PnPPersonalSite" }, { - "Rank": 1, "Id": 1203, "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "Rank": 1, "CommandName": "Request-PnPReIndexList" }, { - "Rank": 1, "Id": 1204, "Command": "Request-PnPReIndexWeb", + "Rank": 1, "CommandName": "Request-PnPReIndexWeb" }, { - "Rank": 1, "Id": 1205, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "Rank": 1, "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Rank": 2, "Id": 1206, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "Rank": 2, "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Rank": 3, "Id": 1207, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "Rank": 3, "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Rank": 1, "Id": 1208, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "Rank": 1, "CommandName": "Reset-PnPFileVersion" }, { - "Rank": 2, "Id": 1209, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "Rank": 2, "CommandName": "Reset-PnPFileVersion" }, { - "Rank": 1, "Id": 1210, "Command": "Reset-PnPLabel -List \"Demo List\"", + "Rank": 1, "CommandName": "Reset-PnPLabel" }, { - "Rank": 2, "Id": 1211, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "Rank": 2, "CommandName": "Reset-PnPLabel" }, { - "Rank": 1, "Id": 1212, "Command": "Reset-PnPMicrosoft365GroupExpiration", + "Rank": 1, "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Rank": 1, "Id": 1213, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "Rank": 1, "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { - "Rank": 1, "Id": 1214, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "Rank": 1, "CommandName": "Resolve-PnPFolder" }, { - "Rank": 1, "Id": 1215, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 1, "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { - "Rank": 1, "Id": 1216, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Rank": 1, "CommandName": "Restore-PnPFileVersion" }, { - "Rank": 2, "Id": 1217, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "Rank": 2, "CommandName": "Restore-PnPFileVersion" }, { - "Rank": 3, "Id": 1218, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Rank": 3, "CommandName": "Restore-PnPFileVersion" }, { - "Rank": 1, "Id": 1219, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Rank": 1, "CommandName": "Restore-PnPListItemVersion" }, { - "Rank": 2, "Id": 1220, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Rank": 2, "CommandName": "Restore-PnPListItemVersion" }, { - "Rank": 1, "Id": 1221, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1, "CommandName": "Restore-PnPRecycleBinItem" }, { - "Rank": 1, "Id": 1222, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Restore-PnPTenantRecycleBinItem" }, { - "Rank": 2, "Id": 1223, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Rank": 2, "CommandName": "Restore-PnPTenantRecycleBinItem" }, { - "Rank": 1, "Id": 1224, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Restore-PnPTenantSite" }, { - "Rank": 2, "Id": 1225, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Rank": 2, "CommandName": "Restore-PnPTenantSite" }, { - "Rank": 3, "Id": 1226, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "Rank": 3, "CommandName": "Restore-PnPTenantSite" }, { - "Rank": 1, "Id": 1227, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "Rank": 1, "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { - "Rank": 1, "Id": 1228, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, "CommandName": "Revoke-PnPHubSiteRights" }, { - "Rank": 1, "Id": 1229, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, "CommandName": "Revoke-PnPSiteDesignRights" }, { - "Rank": 1, "Id": 1230, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Rank": 1, "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { - "Rank": 1, "Id": 1231, "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "Rank": 1, "CommandName": "Revoke-PnPUserSession" }, { - "Rank": 1, "Id": 1232, "Command": "Save-PnPPageConversionLog", + "Rank": 1, "CommandName": "Save-PnPPageConversionLog" }, { - "Rank": 1, "Id": 1233, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "Rank": 1, "CommandName": "Save-PnPSiteTemplate" }, { - "Rank": 1, "Id": 1234, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "Rank": 1, "CommandName": "Save-PnPTenantTemplate" }, { - "Rank": 1, "Id": 1235, "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": 2, "Id": 1236, "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": 3, "Id": 1237, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "Rank": 3, "CommandName": "Send-PnPMail" }, { - "Rank": 4, "Id": 1238, "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": 5, "Id": 1239, "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": 6, "Id": 1240, "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": 1, "Id": 1241, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "Rank": 1, "CommandName": "Set-PnPAdaptiveScopeProperty" }, { - "Rank": 1, "Id": 1242, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1, "CommandName": "Set-PnPApplicationCustomizer" }, { - "Rank": 2, "Id": 1243, "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": 1, "Id": 1244, "Command": "Set-PnPAppSideLoading -On", + "Rank": 1, "CommandName": "Set-PnPAppSideLoading" }, { - "Rank": 2, "Id": 1245, "Command": "Set-PnPAppSideLoading -Off", + "Rank": 2, "CommandName": "Set-PnPAppSideLoading" }, { - "Rank": 1, "Id": 1246, "Command": "Set-PnPAuditing -EnableAll", + "Rank": 1, "CommandName": "Set-PnPAuditing" }, { - "Rank": 2, "Id": 1247, "Command": "Set-PnPAuditing -DisableAll", + "Rank": 2, "CommandName": "Set-PnPAuditing" }, { - "Rank": 3, "Id": 1248, "Command": "Set-PnPAuditing -RetentionTime 7", + "Rank": 3, "CommandName": "Set-PnPAuditing" }, { - "Rank": 4, "Id": 1249, "Command": "Set-PnPAuditing -TrimAuditLog", + "Rank": 4, "CommandName": "Set-PnPAuditing" }, { - "Rank": 5, "Id": 1250, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "Rank": 5, "CommandName": "Set-PnPAuditing" }, { - "Rank": 1, "Id": 1251, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "Rank": 1, "CommandName": "Set-PnPAvailablePageLayouts" }, { - "Rank": 1, "Id": 1252, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "Rank": 1, "CommandName": "Set-PnPAzureADAppSitePermission" }, { - "Rank": 2, "Id": 1253, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "Rank": 2, "CommandName": "Set-PnPAzureADAppSitePermission" }, { - "Rank": 1, "Id": 1254, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "Rank": 1, "CommandName": "Set-PnPAzureADGroup" }, { - "Rank": 2, "Id": 1255, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Rank": 2, "CommandName": "Set-PnPAzureADGroup" }, { - "Rank": 3, "Id": 1256, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "Rank": 3, "CommandName": "Set-PnPAzureADGroup" }, { - "Rank": 1, "Id": 1257, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "Rank": 1, "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Rank": 2, "Id": 1258, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "Rank": 2, "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Rank": 3, "Id": 1259, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "Rank": 3, "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Rank": 1, "Id": 1260, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "Rank": 1, "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { - "Rank": 2, "Id": 1261, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "Rank": 2, "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { - "Rank": 1, "Id": 1262, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "Rank": 1, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 2, "Id": 1263, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "Rank": 2, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 3, "Id": 1264, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "Rank": 3, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 4, "Id": 1265, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "Rank": 4, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 1, "Id": 1266, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Rank": 1, "CommandName": "Set-PnPContentType" }, { - "Rank": 2, "Id": 1267, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "Rank": 2, "CommandName": "Set-PnPContentType" }, { - "Rank": 3, "Id": 1268, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Rank": 3, "CommandName": "Set-PnPContentType" }, { - "Rank": 4, "Id": 1269, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Rank": 4, "CommandName": "Set-PnPContentType" }, { - "Rank": 5, "Id": 1270, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Rank": 5, "CommandName": "Set-PnPContentType" }, { - "Rank": 1, "Id": 1271, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "Rank": 1, "CommandName": "Set-PnPDefaultColumnValues" }, { - "Rank": 2, "Id": 1272, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "Rank": 2, "CommandName": "Set-PnPDefaultColumnValues" }, { - "Rank": 3, "Id": 1273, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "Rank": 3, "CommandName": "Set-PnPDefaultColumnValues" }, { - "Rank": 4, "Id": 1274, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "Rank": 4, "CommandName": "Set-PnPDefaultColumnValues" }, { - "Rank": 1, "Id": 1275, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "Rank": 1, "CommandName": "Set-PnPDefaultContentTypeToList" }, { - "Rank": 1, "Id": 1276, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "Rank": 1, "CommandName": "Set-PnPDefaultPageLayout" }, { - "Rank": 2, "Id": 1277, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "Rank": 2, "CommandName": "Set-PnPDefaultPageLayout" }, { - "Rank": 3, "Id": 1278, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "Rank": 3, "CommandName": "Set-PnPDefaultPageLayout" }, { - "Rank": 1, "Id": 1279, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "Rank": 1, "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Rank": 2, "Id": 1280, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Rank": 2, "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Rank": 3, "Id": 1281, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Rank": 3, "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Rank": 1, "Id": 1282, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "Rank": 1, "CommandName": "Set-PnPDocumentSetField" }, { - "Rank": 2, "Id": 1283, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "Rank": 2, "CommandName": "Set-PnPDocumentSetField" }, { - "Rank": 1, "Id": 1284, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "Rank": 1, "CommandName": "Set-PnPField" }, { - "Rank": 2, "Id": 1285, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "Rank": 2, "CommandName": "Set-PnPField" }, { - "Rank": 3, "Id": 1286, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "Rank": 3, "CommandName": "Set-PnPField" }, { - "Rank": 1, "Id": 1287, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "Rank": 1, "CommandName": "Set-PnPFileCheckedIn" }, { - "Rank": 2, "Id": 1288, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "Rank": 2, "CommandName": "Set-PnPFileCheckedIn" }, { - "Rank": 1, "Id": 1289, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "Rank": 1, "CommandName": "Set-PnPFileCheckedOut" }, { - "Rank": 1, "Id": 1290, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1, "CommandName": "Set-PnPFolderPermission" }, { - "Rank": 2, "Id": 1291, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2, "CommandName": "Set-PnPFolderPermission" }, { - "Rank": 3, "Id": 1292, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Rank": 3, "CommandName": "Set-PnPFolderPermission" }, { - "Rank": 1, "Id": 1293, "Command": "Set-PnPFooter -Enabled:$true", + "Rank": 1, "CommandName": "Set-PnPFooter" }, { - "Rank": 2, "Id": 1294, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "Rank": 2, "CommandName": "Set-PnPFooter" }, { - "Rank": 3, "Id": 1295, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "Rank": 3, "CommandName": "Set-PnPFooter" }, { - "Rank": 4, "Id": 1296, "Command": "Set-PnPFooter -LogoUrl \"\"", + "Rank": 4, "CommandName": "Set-PnPFooter" }, { - "Rank": 1, "Id": 1297, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "Rank": 1, "CommandName": "Set-PnPGraphSubscription" }, { - "Rank": 1, "Id": 1298, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "Rank": 1, "CommandName": "Set-PnPGroup" }, { - "Rank": 2, "Id": 1299, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "Rank": 2, "CommandName": "Set-PnPGroup" }, { - "Rank": 1, "Id": 1300, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "Rank": 1, "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 2, "Id": 1301, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "Rank": 2, "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 3, "Id": 1302, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "Rank": 3, "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 4, "Id": 1303, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "Rank": 4, "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 5, "Id": 1304, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "Rank": 5, "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 1, "Id": 1305, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "Rank": 1, "CommandName": "Set-PnPHideDefaultThemes" }, { - "Rank": 2, "Id": 1306, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "Rank": 2, "CommandName": "Set-PnPHideDefaultThemes" }, { - "Rank": 1, "Id": 1307, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "Rank": 1, "CommandName": "Set-PnPHomePage" }, { - "Rank": 2, "Id": 1308, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "Rank": 2, "CommandName": "Set-PnPHomePage" }, { - "Rank": 1, "Id": 1309, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "Rank": 1, "CommandName": "Set-PnPHomeSite" }, { - "Rank": 2, "Id": 1310, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "Rank": 2, "CommandName": "Set-PnPHomeSite" }, { - "Rank": 1, "Id": 1311, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "Rank": 1, "CommandName": "Set-PnPHubSite" }, { - "Rank": 2, "Id": 1312, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "Rank": 2, "CommandName": "Set-PnPHubSite" }, { - "Rank": 3, "Id": 1313, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "Rank": 3, "CommandName": "Set-PnPHubSite" }, { - "Rank": 4, "Id": 1314, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", + "Rank": 4, "CommandName": "Set-PnPHubSite" }, { - "Rank": 5, "Id": 1315, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "Rank": 5, "CommandName": "Set-PnPHubSite" }, { - "Rank": 6, "Id": 1316, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "Rank": 6, "CommandName": "Set-PnPHubSite" }, { - "Rank": 1, "Id": 1317, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "Rank": 1, "CommandName": "Set-PnPImageListItemColumn" }, { - "Rank": 2, "Id": 1318, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "Rank": 2, "CommandName": "Set-PnPImageListItemColumn" }, { - "Rank": 1, "Id": 1319, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "Rank": 1, "CommandName": "Set-PnPIndexedProperties" }, { - "Rank": 1, "Id": 1320, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "Rank": 1, "CommandName": "Set-PnPInPlaceRecordsManagement" }, { - "Rank": 2, "Id": 1321, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "Rank": 2, "CommandName": "Set-PnPInPlaceRecordsManagement" }, { - "Rank": 1, "Id": 1322, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "Rank": 1, "CommandName": "Set-PnPKnowledgeHubSite" }, { - "Rank": 1, "Id": 1323, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "Rank": 1, "CommandName": "Set-PnPLabel" }, { - "Rank": 2, "Id": 1324, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "Rank": 2, "CommandName": "Set-PnPLabel" }, { - "Rank": 1, "Id": 1325, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "Rank": 1, "CommandName": "Set-PnPList" }, { - "Rank": 2, "Id": 1326, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "Rank": 2, "CommandName": "Set-PnPList" }, { - "Rank": 3, "Id": 1327, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "Rank": 3, "CommandName": "Set-PnPList" }, { - "Rank": 4, "Id": 1328, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "Rank": 4, "CommandName": "Set-PnPList" }, { - "Rank": 5, "Id": 1329, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "Rank": 5, "CommandName": "Set-PnPList" }, { - "Rank": 6, "Id": 1330, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "Rank": 6, "CommandName": "Set-PnPList" }, { - "Rank": 7, "Id": 1331, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "Rank": 7, "CommandName": "Set-PnPList" }, { - "Rank": 8, "Id": 1332, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "Rank": 8, "CommandName": "Set-PnPList" }, { - "Rank": 9, "Id": 1333, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "Rank": 9, "CommandName": "Set-PnPList" }, { - "Rank": 10, "Id": 1334, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "Rank": 10, "CommandName": "Set-PnPList" }, { - "Rank": 11, "Id": 1335, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "Rank": 11, "CommandName": "Set-PnPList" }, { - "Rank": 1, "Id": 1336, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "Rank": 1, "CommandName": "Set-PnPListInformationRightsManagement" }, { - "Rank": 2, "Id": 1337, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "Rank": 2, "CommandName": "Set-PnPListInformationRightsManagement" }, { - "Rank": 1, "Id": 1338, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 1, "CommandName": "Set-PnPListItem" }, { - "Rank": 2, "Id": 1339, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 2, "CommandName": "Set-PnPListItem" }, { - "Rank": 3, "Id": 1340, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 3, "CommandName": "Set-PnPListItem" }, { - "Rank": 4, "Id": 1341, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "Rank": 4, "CommandName": "Set-PnPListItem" }, { - "Rank": 5, "Id": 1342, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "Rank": 5, "CommandName": "Set-PnPListItem" }, { - "Rank": 1, "Id": 1343, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1, "CommandName": "Set-PnPListItemAsRecord" }, { - "Rank": 2, "Id": 1344, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "Rank": 2, "CommandName": "Set-PnPListItemAsRecord" }, { - "Rank": 1, "Id": 1345, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1, "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 2, "Id": 1346, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2, "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 3, "Id": 1347, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Rank": 3, "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 4, "Id": 1348, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "Rank": 4, "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 5, "Id": 1349, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "Rank": 5, "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 1, "Id": 1350, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1, "CommandName": "Set-PnPListPermission" }, { - "Rank": 2, "Id": 1351, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2, "CommandName": "Set-PnPListPermission" }, { - "Rank": 1, "Id": 1352, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "Rank": 1, "CommandName": "Set-PnPListRecordDeclaration" }, { - "Rank": 2, "Id": 1353, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "Rank": 2, "CommandName": "Set-PnPListRecordDeclaration" }, { - "Rank": 1, "Id": 1354, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Rank": 1, "CommandName": "Set-PnPMasterPage" }, { - "Rank": 2, "Id": 1355, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Rank": 2, "CommandName": "Set-PnPMasterPage" }, { - "Rank": 3, "Id": 1356, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Rank": 3, "CommandName": "Set-PnPMasterPage" }, { - "Rank": 4, "Id": 1357, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Rank": 4, "CommandName": "Set-PnPMasterPage" }, { - "Rank": 1, "Id": 1358, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Rank": 2, "Id": 1359, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Rank": 3, "Id": 1360, "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Rank": 1, "Id": 1361, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Rank": 2, "Id": 1362, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Rank": 3, "Id": 1363, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Rank": 1, "Id": 1364, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Rank": 2, "Id": 1365, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Rank": 3, "Id": 1366, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Rank": 1, "Id": 1367, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Rank": 2, "Id": 1368, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Rank": 3, "Id": 1369, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Rank": 1, "Id": 1370, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Rank": 2, "Id": 1371, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Rank": 3, "Id": 1372, "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Rank": 1, "Id": 1373, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Rank": 2, "Id": 1374, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Rank": 3, "Id": 1375, "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Rank": 1, "Id": 1376, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "Rank": 1, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 2, "Id": 1377, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Rank": 2, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 3, "Id": 1378, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "Rank": 3, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 4, "Id": 1379, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "Rank": 4, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 5, "Id": 1380, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "Rank": 5, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 6, "Id": 1381, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Rank": 6, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 1, "Id": 1382, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "Rank": 1, "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { - "Rank": 2, "Id": 1383, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "Rank": 2, "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { - "Rank": 1, "Id": 1384, "Command": "Set-PnPMinimalDownloadStrategy -Off", + "Rank": 1, "CommandName": "Set-PnPMinimalDownloadStrategy" }, { - "Rank": 2, "Id": 1385, "Command": "Set-PnPMinimalDownloadStrategy -On", + "Rank": 2, "CommandName": "Set-PnPMinimalDownloadStrategy" }, { - "Rank": 1, "Id": 1386, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "Rank": 1, "CommandName": "Set-PnPPage" }, { - "Rank": 2, "Id": 1387, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "Rank": 2, "CommandName": "Set-PnPPage" }, { - "Rank": 3, "Id": 1388, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "Rank": 3, "CommandName": "Set-PnPPage" }, { - "Rank": 4, "Id": 1389, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "Rank": 4, "CommandName": "Set-PnPPage" }, { - "Rank": 5, "Id": 1390, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "Rank": 5, "CommandName": "Set-PnPPage" }, { - "Rank": 6, "Id": 1391, "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": 7, "Id": 1392, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "Rank": 7, "CommandName": "Set-PnPPage" }, { - "Rank": 8, "Id": 1393, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "Rank": 8, "CommandName": "Set-PnPPage" }, { - "Rank": 9, "Id": 1394, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "Rank": 9, "CommandName": "Set-PnPPage" }, { - "Rank": 10, "Id": 1395, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Rank": 10, "CommandName": "Set-PnPPage" }, { - "Rank": 11, "Id": 1396, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "Rank": 11, "CommandName": "Set-PnPPage" }, { - "Rank": 1, "Id": 1397, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "Rank": 1, "CommandName": "Set-PnPPageTextPart" }, { - "Rank": 1, "Id": 1398, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "Rank": 1, "CommandName": "Set-PnPPageWebPart" }, { - "Rank": 2, "Id": 1399, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "Rank": 2, "CommandName": "Set-PnPPageWebPart" }, { - "Rank": 1, "Id": 1400, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "Rank": 1, "CommandName": "Set-PnPPlannerBucket" }, { - "Rank": 1, "Id": 1401, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Rank": 1, "CommandName": "Set-PnPPlannerConfiguration" }, { - "Rank": 2, "Id": 1402, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "Rank": 2, "CommandName": "Set-PnPPlannerConfiguration" }, { - "Rank": 1, "Id": 1403, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "Rank": 1, "CommandName": "Set-PnPPlannerPlan" }, { - "Rank": 1, "Id": 1404, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "Rank": 1, "CommandName": "Set-PnPPlannerTask" }, { - "Rank": 2, "Id": 1405, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "Rank": 2, "CommandName": "Set-PnPPlannerTask" }, { - "Rank": 3, "Id": 1406, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Rank": 3, "CommandName": "Set-PnPPlannerTask" }, { - "Rank": 1, "Id": 1407, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Set-PnPPlannerUserPolicy" }, { - "Rank": 1, "Id": 1408, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "Rank": 1, "CommandName": "Set-PnPPropertyBagValue" }, { - "Rank": 2, "Id": 1409, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "Rank": 2, "CommandName": "Set-PnPPropertyBagValue" }, { - "Rank": 3, "Id": 1410, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "Rank": 3, "CommandName": "Set-PnPPropertyBagValue" }, { - "Rank": 1, "Id": 1411, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "Rank": 1, "CommandName": "Set-PnPRequestAccessEmails" }, { - "Rank": 2, "Id": 1412, "Command": "Set-PnPRequestAccessEmails -Disabled", + "Rank": 2, "CommandName": "Set-PnPRequestAccessEmails" }, { - "Rank": 3, "Id": 1413, "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "Rank": 3, "CommandName": "Set-PnPRequestAccessEmails" }, { - "Rank": 1, "Id": 1414, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "Rank": 1, "CommandName": "Set-PnPRoleDefinition" }, { - "Rank": 2, "Id": 1415, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "Rank": 2, "CommandName": "Set-PnPRoleDefinition" }, { - "Rank": 3, "Id": 1416, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "Rank": 3, "CommandName": "Set-PnPRoleDefinition" }, { - "Rank": 4, "Id": 1417, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "Rank": 4, "CommandName": "Set-PnPRoleDefinition" }, { - "Rank": 1, "Id": 1418, "Command": "Set-PnPSearchConfiguration -Configuration $config", + "Rank": 1, "CommandName": "Set-PnPSearchConfiguration" }, { - "Rank": 2, "Id": 1419, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "Rank": 2, "CommandName": "Set-PnPSearchConfiguration" }, { - "Rank": 3, "Id": 1420, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Rank": 3, "CommandName": "Set-PnPSearchConfiguration" }, { - "Rank": 4, "Id": 1421, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4, "CommandName": "Set-PnPSearchConfiguration" }, { - "Rank": 1, "Id": 1422, "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": 2, "Id": 1423, "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": 1, "Id": 1424, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Rank": 1, "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 2, "Id": 1425, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "Rank": 2, "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 3, "Id": 1426, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "Rank": 3, "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 4, "Id": 1427, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "Rank": 4, "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 5, "Id": 1428, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "Rank": 5, "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 6, "Id": 1429, "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "Rank": 6, "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 7, "Id": 1430, "Command": "Set-PnPSearchSettings -SearchScope Hub", + "Rank": 7, "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 1, "Id": 1431, "Command": "Set-PnPSite -Classification \"HBI\"", + "Rank": 1, "CommandName": "Set-PnPSite" }, { - "Rank": 2, "Id": 1432, "Command": "Set-PnPSite -Classification $null", + "Rank": 2, "CommandName": "Set-PnPSite" }, { - "Rank": 3, "Id": 1433, "Command": "Set-PnPSite -DisableFlows", + "Rank": 3, "CommandName": "Set-PnPSite" }, { - "Rank": 4, "Id": 1434, "Command": "Set-PnPSite -DisableFlows:$false", + "Rank": 4, "CommandName": "Set-PnPSite" }, { - "Rank": 5, "Id": 1435, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "Rank": 5, "CommandName": "Set-PnPSite" }, { - "Rank": 6, "Id": 1436, "Command": "Set-PnPSite -NoScriptSite $false", + "Rank": 6, "CommandName": "Set-PnPSite" }, { - "Rank": 7, "Id": 1437, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "Rank": 7, "CommandName": "Set-PnPSite" }, { - "Rank": 8, "Id": 1438, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "Rank": 8, "CommandName": "Set-PnPSite" }, { - "Rank": 9, "Id": 1439, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "Rank": 9, "CommandName": "Set-PnPSite" }, { - "Rank": 10, "Id": 1440, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "Rank": 10, "CommandName": "Set-PnPSite" }, { - "Rank": 11, "Id": 1441, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "Rank": 11, "CommandName": "Set-PnPSite" }, { - "Rank": 12, "Id": 1442, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "Rank": 12, "CommandName": "Set-PnPSite" }, { - "Rank": 13, "Id": 1443, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "Rank": 13, "CommandName": "Set-PnPSite" }, { - "Rank": 14, "Id": 1444, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "Rank": 14, "CommandName": "Set-PnPSite" }, { - "Rank": 15, "Id": 1445, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "Rank": 15, "CommandName": "Set-PnPSite" }, { - "Rank": 16, "Id": 1446, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "Rank": 16, "CommandName": "Set-PnPSite" }, { - "Rank": 17, "Id": 1447, "Command": "Set-PnPSite -CancelVPForExistingLibs", + "Rank": 17, "CommandName": "Set-PnPSite" }, { - "Rank": 1, "Id": 1448, "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "Rank": 1, "CommandName": "Set-PnPSiteClassification" }, { - "Rank": 1, "Id": 1449, "Command": "Set-PnPSiteClosure -State Open", + "Rank": 1, "CommandName": "Set-PnPSiteClosure" }, { - "Rank": 2, "Id": 1450, "Command": "Set-PnPSiteClosure -State Closed", + "Rank": 2, "CommandName": "Set-PnPSiteClosure" }, { - "Rank": 1, "Id": 1451, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "Rank": 1, "CommandName": "Set-PnPSiteDesign" }, { - "Rank": 2, "Id": 1452, "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": 1, "Id": 1453, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "Rank": 1, "CommandName": "Set-PnPSiteGroup" }, { - "Rank": 2, "Id": 1454, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "Rank": 2, "CommandName": "Set-PnPSiteGroup" }, { - "Rank": 1, "Id": 1455, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "Rank": 1, "CommandName": "Set-PnPSitePolicy" }, { - "Rank": 1, "Id": 1456, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Rank": 1, "CommandName": "Set-PnPSiteScript" }, { - "Rank": 1, "Id": 1457, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Rank": 1, "CommandName": "Set-PnPSiteScriptPackage" }, { - "Rank": 1, "Id": 1458, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "Rank": 1, "CommandName": "Set-PnPSiteSensitivityLabel" }, { - "Rank": 2, "Id": 1459, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "Rank": 2, "CommandName": "Set-PnPSiteSensitivityLabel" }, { - "Rank": 1, "Id": 1460, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "Rank": 1, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 2, "Id": 1461, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "Rank": 2, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 3, "Id": 1462, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Rank": 3, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 4, "Id": 1463, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Rank": 4, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 5, "Id": 1464, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Rank": 5, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 6, "Id": 1465, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Rank": 6, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 1, "Id": 1466, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Rank": 1, "CommandName": "Set-PnPStorageEntity" }, { - "Rank": 2, "Id": 1467, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Rank": 2, "CommandName": "Set-PnPStorageEntity" }, { - "Rank": 1, "Id": 1468, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { - "Rank": 2, "Id": 1469, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { - "Rank": 1, "Id": 1470, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { - "Rank": 2, "Id": 1471, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { - "Rank": 1, "Id": 1472, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "Rank": 1, "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { - "Rank": 2, "Id": 1473, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "Rank": 2, "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { - "Rank": 1, "Id": 1474, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "Rank": 1, "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Rank": 2, "Id": 1475, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "Rank": 2, "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Rank": 3, "Id": 1476, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "Rank": 3, "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Rank": 1, "Id": 1477, "Command": "Set-PnPTeamifyPromptHidden", + "Rank": 1, "CommandName": "Set-PnPTeamifyPromptHidden" }, { - "Rank": 1, "Id": 1478, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "Rank": 1, "CommandName": "Set-PnPTeamsChannel" }, { - "Rank": 2, "Id": 1479, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "Rank": 2, "CommandName": "Set-PnPTeamsChannel" }, { - "Rank": 1, "Id": 1480, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", + "Rank": 1, "CommandName": "Set-PnpTeamsChannelUser" }, { - "Rank": 2, "Id": 1481, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "Rank": 2, "CommandName": "Set-PnpTeamsChannelUser" }, { - "Rank": 1, "Id": 1482, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "Rank": 1, "CommandName": "Set-PnPTeamsTab" }, { - "Rank": 1, "Id": 1483, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "Rank": 1, "CommandName": "Set-PnPTeamsTag" }, { - "Rank": 1, "Id": 1484, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "Rank": 1, "CommandName": "Set-PnPTeamsTeam" }, { - "Rank": 2, "Id": 1485, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "Rank": 2, "CommandName": "Set-PnPTeamsTeam" }, { - "Rank": 3, "Id": 1486, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "Rank": 3, "CommandName": "Set-PnPTeamsTeam" }, { - "Rank": 4, "Id": 1487, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "Rank": 4, "CommandName": "Set-PnPTeamsTeam" }, { - "Rank": 1, "Id": 1488, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "Rank": 1, "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Rank": 2, "Id": 1489, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "Rank": 2, "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Rank": 3, "Id": 1490, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "Rank": 3, "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Rank": 1, "Id": 1491, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "Rank": 1, "CommandName": "Set-PnPTeamsTeamPicture" }, { - "Rank": 1, "Id": 1492, "Command": "Set-PnPTemporarilyDisableAppBar $true", + "Rank": 1, "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { - "Rank": 2, "Id": 1493, "Command": "Set-PnPTemporarilyDisableAppBar $false", + "Rank": 2, "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { - "Rank": 1, "Id": 1494, "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": 2, "Id": 1495, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "Rank": 2, "CommandName": "Set-PnPTenant" }, { - "Rank": 3, "Id": 1496, "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "Rank": 3, "CommandName": "Set-PnPTenant" }, { - "Rank": 4, "Id": 1497, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "Rank": 4, "CommandName": "Set-PnPTenant" }, { - "Rank": 1, "Id": 1498, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "Rank": 1, "CommandName": "Set-PnPTenantAppCatalogUrl" }, { - "Rank": 1, "Id": 1499, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "Rank": 1, "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Rank": 2, "Id": 1500, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "Rank": 2, "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Rank": 3, "Id": 1501, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "Rank": 3, "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Rank": 1, "Id": 1502, "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": 2, "Id": 1503, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "Rank": 2, "CommandName": "Set-PnPTenantCdnPolicy" }, { - "Rank": 1, "Id": 1504, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "Rank": 1, "CommandName": "Set-PnPTenantSite" }, { - "Rank": 2, "Id": 1505, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "Rank": 2, "CommandName": "Set-PnPTenantSite" }, { - "Rank": 3, "Id": 1506, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 3, "CommandName": "Set-PnPTenantSite" }, { - "Rank": 4, "Id": 1507, "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": 5, "Id": 1508, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "Rank": 5, "CommandName": "Set-PnPTenantSite" }, { - "Rank": 1, "Id": 1509, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "Rank": 1, "CommandName": "Set-PnPTenantSyncClientRestriction" }, { - "Rank": 2, "Id": 1510, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "Rank": 2, "CommandName": "Set-PnPTenantSyncClientRestriction" }, { - "Rank": 1, "Id": 1511, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "Rank": 1, "CommandName": "Set-PnPTerm" }, { - "Rank": 2, "Id": 1512, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 2, "CommandName": "Set-PnPTerm" }, { - "Rank": 3, "Id": 1513, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 3, "CommandName": "Set-PnPTerm" }, { - "Rank": 4, "Id": 1514, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "Rank": 4, "CommandName": "Set-PnPTerm" }, { - "Rank": 1, "Id": 1515, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "Rank": 1, "CommandName": "Set-PnPTermGroup" }, { - "Rank": 1, "Id": 1516, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "Rank": 1, "CommandName": "Set-PnPTermSet" }, { - "Rank": 2, "Id": 1517, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "Rank": 2, "CommandName": "Set-PnPTermSet" }, { - "Rank": 3, "Id": 1518, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "Rank": 3, "CommandName": "Set-PnPTermSet" }, { - "Rank": 1, "Id": 1519, "Command": "Set-PnPTheme", + "Rank": 1, "CommandName": "Set-PnPTheme" }, { - "Rank": 2, "Id": 1520, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "Rank": 2, "CommandName": "Set-PnPTheme" }, { - "Rank": 3, "Id": 1521, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "Rank": 3, "CommandName": "Set-PnPTheme" }, { - "Rank": 4, "Id": 1522, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "Rank": 4, "CommandName": "Set-PnPTheme" }, { - "Rank": 1, "Id": 1523, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "Rank": 1, "CommandName": "Set-PnPTraceLog" }, { - "Rank": 2, "Id": 1524, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "Rank": 2, "CommandName": "Set-PnPTraceLog" }, { - "Rank": 3, "Id": 1525, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "Rank": 3, "CommandName": "Set-PnPTraceLog" }, { - "Rank": 4, "Id": 1526, "Command": "Set-PnPTraceLog -Off", + "Rank": 4, "CommandName": "Set-PnPTraceLog" }, { - "Rank": 1, "Id": 1527, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "Rank": 1, "CommandName": "Set-PnPUserOneDriveQuota" }, { - "Rank": 1, "Id": 1528, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "Rank": 1, "CommandName": "Set-PnPUserProfileProperty" }, { - "Rank": 2, "Id": 1529, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "Rank": 2, "CommandName": "Set-PnPUserProfileProperty" }, { - "Rank": 1, "Id": 1530, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "Rank": 1, "CommandName": "Set-PnPView" }, { - "Rank": 2, "Id": 1531, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "Rank": 2, "CommandName": "Set-PnPView" }, { - "Rank": 3, "Id": 1532, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "Rank": 3, "CommandName": "Set-PnPView" }, { - "Rank": 4, "Id": 1533, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "Rank": 4, "CommandName": "Set-PnPView" }, { - "Rank": 1, "Id": 1534, "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": 2, "Id": 1535, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "Rank": 2, "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Rank": 3, "Id": 1536, "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": 4, "Id": 1537, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "Rank": 4, "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Rank": 1, "Id": 1538, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "Rank": 1, "CommandName": "Set-PnPWeb" }, { - "Rank": 2, "Id": 1539, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "Rank": 2, "CommandName": "Set-PnPWeb" }, { - "Rank": 3, "Id": 1540, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "Rank": 3, "CommandName": "Set-PnPWeb" }, { - "Rank": 4, "Id": 1541, "Command": "Set-PnPWeb -NoCrawl:$true", + "Rank": 4, "CommandName": "Set-PnPWeb" }, { - "Rank": 1, "Id": 1542, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "Rank": 1, "CommandName": "Set-PnPWebHeader" }, { - "Rank": 2, "Id": 1543, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "Rank": 2, "CommandName": "Set-PnPWebHeader" }, { - "Rank": 3, "Id": 1544, "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "Rank": 3, "CommandName": "Set-PnPWebHeader" }, { - "Rank": 1, "Id": 1545, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Rank": 1, "CommandName": "Set-PnPWebhookSubscription" }, { - "Rank": 2, "Id": 1546, "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": 1, "Id": 1547, "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, "Id": 1548, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Rank": 1, "CommandName": "Set-PnPWebPermission" }, { - "Rank": 2, "Id": 1549, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "Rank": 2, "CommandName": "Set-PnPWebPermission" }, { - "Rank": 3, "Id": 1550, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Rank": 3, "CommandName": "Set-PnPWebPermission" }, { - "Rank": 4, "Id": 1551, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "Rank": 4, "CommandName": "Set-PnPWebPermission" }, { - "Rank": 1, "Id": 1552, "Command": "Set-PnPWebTheme -Theme MyTheme", + "Rank": 1, "CommandName": "Set-PnPWebTheme" }, { - "Rank": 2, "Id": 1553, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "Rank": 2, "CommandName": "Set-PnPWebTheme" }, { - "Rank": 1, "Id": 1554, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "Rank": 1, "CommandName": "Set-PnPWikiPageContent" }, { - "Rank": 1, "Id": 1555, "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "Rank": 1, "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 2, "Id": 1556, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "Rank": 2, "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 3, "Id": 1557, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "Rank": 3, "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 4, "Id": 1558, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "Rank": 4, "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 5, "Id": 1559, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "Rank": 5, "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 6, "Id": 1560, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", + "Rank": 6, "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 1, "Id": 1561, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "Rank": 1, "CommandName": "Submit-PnPTeamsChannelMessage" }, { - "Rank": 2, "Id": 1562, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "Rank": 2, "CommandName": "Submit-PnPTeamsChannelMessage" }, { - "Rank": 1, "Id": 1563, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Sync-PnPAppToTeams" }, { - "Rank": 1, "Id": 1564, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "Rank": 1, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Rank": 2, "Id": 1565, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "Rank": 2, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Rank": 3, "Id": 1566, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "Rank": 3, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Rank": 1, "Id": 1567, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "Rank": 1, "CommandName": "Test-PnPListItemIsRecord" }, { - "Rank": 1, "Id": 1568, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "Rank": 1, "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { - "Rank": 1, "Id": 1569, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1, "CommandName": "Test-PnPSite" }, { - "Rank": 2, "Id": 1570, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Rank": 2, "CommandName": "Test-PnPSite" }, { - "Rank": 1, "Id": 1571, "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "Rank": 1, "CommandName": "Test-PnPTenantTemplate" }, { - "Rank": 1, "Id": 1572, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "Rank": 1, "CommandName": "Undo-PnPFileCheckedOut" }, { - "Rank": 1, "Id": 1573, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Uninstall-PnPApp" }, { - "Rank": 2, "Id": 1574, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Uninstall-PnPApp" }, { - "Rank": 1, "Id": 1575, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Unpublish-PnPApp" }, { - "Rank": 2, "Id": 1576, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Unpublish-PnPApp" }, { - "Rank": 1, "Id": 1577, "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "Rank": 1, "CommandName": "Unpublish-PnPContentType" }, { - "Rank": 1, "Id": 1578, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Rank": 1, "CommandName": "Unpublish-PnPSyntexModel" }, { - "Rank": 2, "Id": 1579, "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": 1, "Id": 1580, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Rank": 1, "CommandName": "Unregister-PnPHubSite" }, { - "Rank": 1, "Id": 1581, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Update-PnPApp" }, { - "Rank": 2, "Id": 1582, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Update-PnPApp" }, { - "Rank": 1, "Id": 1583, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Rank": 1, "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Rank": 2, "Id": 1584, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "Rank": 2, "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Rank": 3, "Id": 1585, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 3, "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Rank": 1, "Id": 1586, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "Rank": 1, "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Rank": 2, "Id": 1587, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Rank": 2, "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Rank": 3, "Id": 1588, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "Rank": 3, "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Rank": 1, "Id": 1589, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "Rank": 1, "CommandName": "Update-PnPTeamsApp" }, { - "Rank": 1, "Id": 1590, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 1, "CommandName": "Update-PnPTeamsUser" }, { - "Rank": 2, "Id": 1591, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Rank": 2, "CommandName": "Update-PnPTeamsUser" }, { - "Rank": 3, "Id": 1592, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "Rank": 3, "CommandName": "Update-PnPTeamsUser" }, { - "Rank": 1, "Id": 1593, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "Rank": 1, "CommandName": "Update-PnPUserType" } ] diff --git a/version.txt b/version.txt index e99c6dedf..ddc9a1f9c 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.122 \ No newline at end of file +2.2.123 \ No newline at end of file From f96d7fa455d53998acbc40c102d9757b16dd4586 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Thu, 9 Nov 2023 02:39:37 +0000 Subject: [PATCH 140/146] Nightly publish to PowerShell Gallery --- pnpcoresdk_hash.txt | 2 +- version.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pnpcoresdk_hash.txt b/pnpcoresdk_hash.txt index c42f5b4d4..807c38ea1 100644 --- a/pnpcoresdk_hash.txt +++ b/pnpcoresdk_hash.txt @@ -1 +1 @@ -f168d9b5cdb02f61224c883f9aa934e8bec2fb5b \ No newline at end of file +22dc4e9d0a1f0320021df7e7661ec96665bd5c07 \ No newline at end of file diff --git a/version.txt b/version.txt index ddc9a1f9c..ed6f14cd1 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.123 \ No newline at end of file +2.2.124 \ No newline at end of file From 6384a4866fc72a95e9dc65c6fe197bc21884ff87 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Fri, 10 Nov 2023 02:39:07 +0000 Subject: [PATCH 141/146] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 3186 ++++++++--------- version.txt | 2 +- 3 files changed, 1595 insertions(+), 1595 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 557c1ef84..eb203c186 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -c4949215d6ad8d141a8b26d0a4504529043b0fd8 \ No newline at end of file +cc608314a52d175162dcaa4f9f9db2133816e842 \ 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 fe4107cbf..a2a89f8ed 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9559 +1,9559 @@ [ { - "Id": 1, "Command": "Add-PnPAlert -List \"Demo List\"", + "Id": 1, "Rank": 1, "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, "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, "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, "CommandName": "Add-PnPAlert" }, { - "Id": 5, "Command": "Add-PnPApp -Path ./myapp.sppkg", + "Id": 5, "Rank": 1, "CommandName": "Add-PnPApp" }, { - "Id": 6, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "Id": 6, "Rank": 2, "CommandName": "Add-PnPApp" }, { - "Id": 7, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "Id": 7, "Rank": 3, "CommandName": "Add-PnPApp" }, { - "Id": 8, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "Id": 8, "Rank": 4, "CommandName": "Add-PnPApp" }, { - "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, "CommandName": "Add-PnPApplicationCustomizer" }, { - "Id": 10, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "Id": 10, "Rank": 1, "CommandName": "Add-PnPAvailableSiteClassification" }, { - "Id": 11, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "Id": 11, "Rank": 2, "CommandName": "Add-PnPAvailableSiteClassification" }, { - "Id": 12, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 12, "Rank": 1, "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, "CommandName": "Add-PnPAzureADGroupMember" }, { - "Id": 14, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Id": 14, "Rank": 3, "CommandName": "Add-PnPAzureADGroupMember" }, { - "Id": 15, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 15, "Rank": 1, "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, "CommandName": "Add-PnPAzureADGroupOwner" }, { - "Id": 17, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Id": 17, "Rank": 3, "CommandName": "Add-PnPAzureADGroupOwner" }, { - "Id": 18, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", + "Id": 18, "Rank": 1, "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, "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { - "Id": 20, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", + "Id": 20, "Rank": 1, "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, "CommandName": "Add-PnPContentType" }, { - "Id": 22, "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", + "Id": 22, "Rank": 3, "CommandName": "Add-PnPContentType" }, { - "Id": 23, "Command": "Add-PnPContentType -Name \"Project Item\"", + "Id": 23, "Rank": 4, "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, "CommandName": "Add-PnPContentType" }, { - "Id": 25, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "Id": 25, "Rank": 1, "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { - "Id": 26, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "Id": 26, "Rank": 2, "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { - "Id": 27, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Id": 27, "Rank": 1, "CommandName": "Add-PnPContentTypeToDocumentSet" }, { - "Id": 28, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Id": 28, "Rank": 2, "CommandName": "Add-PnPContentTypeToDocumentSet" }, { - "Id": 29, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "Id": 29, "Rank": 1, "CommandName": "Add-PnPContentTypeToList" }, { - "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, "CommandName": "Add-PnPCustomAction" }, { - "Id": 31, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "Id": 31, "Rank": 1, "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { - "Id": 32, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "Id": 32, "Rank": 2, "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { - "Id": 33, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "Id": 33, "Rank": 1, "CommandName": "Add-PnPDocumentSet" }, { - "Id": 34, "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", + "Id": 34, "Rank": 1, "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, "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, "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, "CommandName": "Add-PnPEventReceiver" }, { - "Id": 38, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "Id": 38, "Rank": 1, "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, "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, "CommandName": "Add-PnPField" }, { - "Id": 41, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "Id": 41, "Rank": 4, "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, "CommandName": "Add-PnPField" }, { - "Id": 43, "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "Id": 43, "Rank": 6, "CommandName": "Add-PnPField" }, { - "Id": 44, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Id": 44, "Rank": 1, "CommandName": "Add-PnPFieldToContentType" }, { - "Id": 45, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "Id": 45, "Rank": 1, "CommandName": "Add-PnPFile" }, { - "Id": 46, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "Id": 46, "Rank": 2, "CommandName": "Add-PnPFile" }, { - "Id": 47, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "Id": 47, "Rank": 3, "CommandName": "Add-PnPFile" }, { - "Id": 48, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", + "Id": 48, "Rank": 4, "CommandName": "Add-PnPFile" }, { - "Id": 49, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", + "Id": 49, "Rank": 5, "CommandName": "Add-PnPFile" }, { - "Id": 50, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", + "Id": 50, "Rank": 6, "CommandName": "Add-PnPFile" }, { - "Id": 51, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "Id": 51, "Rank": 7, "CommandName": "Add-PnPFile" }, { - "Id": 52, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "Id": 52, "Rank": 8, "CommandName": "Add-PnPFile" }, { - "Id": 53, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 53, "Rank": 1, "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "Id": 54, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", + "Id": 54, "Rank": 2, "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, "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "Id": 56, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 56, "Rank": 1, "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { - "Id": 57, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "Id": 57, "Rank": 2, "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { - "Id": 58, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "Id": 58, "Rank": 1, "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, "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, "CommandName": "Add-PnPFileSharingInvite" }, { - "Id": 61, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "Id": 61, "Rank": 1, "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, "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Id": 63, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", + "Id": 63, "Rank": 3, "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Id": 64, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "Id": 64, "Rank": 4, "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Id": 65, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "Id": 65, "Rank": 5, "CommandName": "Add-PnPFileToSiteTemplate" }, { - "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, "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, "CommandName": "Add-PnPFileUserSharingLink" }, { - "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, "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, "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, "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, "CommandName": "Add-PnPFlowOwner" }, { - "Id": 72, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Id": 72, "Rank": 1, "CommandName": "Add-PnPFolder" }, { - "Id": 73, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "Id": 73, "Rank": 2, "CommandName": "Add-PnPFolder" }, { - "Id": 74, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "Id": 74, "Rank": 3, "CommandName": "Add-PnPFolder" }, { - "Id": 75, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 75, "Rank": 1, "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "Id": 76, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", + "Id": 76, "Rank": 2, "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, "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "Id": 78, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 78, "Rank": 1, "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { - "Id": 79, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "Id": 79, "Rank": 2, "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { - "Id": 80, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "Id": 80, "Rank": 1, "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, "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, "CommandName": "Add-PnPFolderSharingInvite" }, { - "Id": 83, "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 83, "Rank": 1, "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, "CommandName": "Add-PnPFolderUserSharingLink" }, { - "Id": 85, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Id": 85, "Rank": 1, "CommandName": "Add-PnPGroupMember" }, { - "Id": 86, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "Id": 86, "Rank": 2, "CommandName": "Add-PnPGroupMember" }, { - "Id": 87, "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Id": 87, "Rank": 1, "CommandName": "Add-PnPHtmlPublishingPageLayout" }, { - "Id": 88, "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", + "Id": 88, "Rank": 1, "CommandName": "Add-PnPHubSiteAssociation" }, { - "Id": 89, "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "Id": 89, "Rank": 1, "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, "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, "CommandName": "Add-PnPHubToHubAssociation" }, { - "Id": 92, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "Id": 92, "Rank": 1, "CommandName": "Add-PnPJavaScriptBlock" }, { - "Id": 93, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "Id": 93, "Rank": 2, "CommandName": "Add-PnPJavaScriptBlock" }, { - "Id": 94, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", + "Id": 94, "Rank": 1, "CommandName": "Add-PnPJavaScriptLink" }, { - "Id": 95, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "Id": 95, "Rank": 2, "CommandName": "Add-PnPJavaScriptLink" }, { - "Id": 96, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "Id": 96, "Rank": 1, "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, "CommandName": "Add-PnPListDesign" }, { - "Id": 98, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "Id": 98, "Rank": 1, "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Id": 99, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "Id": 99, "Rank": 2, "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Id": 100, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "Id": 100, "Rank": 3, "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Id": 101, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 101, "Rank": 1, "CommandName": "Add-PnPListItem" }, { - "Id": 102, "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 102, "Rank": 2, "CommandName": "Add-PnPListItem" }, { - "Id": 103, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "Id": 103, "Rank": 3, "CommandName": "Add-PnPListItem" }, { - "Id": 104, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", + "Id": 104, "Rank": 4, "CommandName": "Add-PnPListItem" }, { - "Id": 105, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "Id": 105, "Rank": 5, "CommandName": "Add-PnPListItem" }, { - "Id": 106, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", + "Id": 106, "Rank": 1, "CommandName": "Add-PnPListItemAttachment" }, { - "Id": 107, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", + "Id": 107, "Rank": 2, "CommandName": "Add-PnPListItemAttachment" }, { - "Id": 108, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "Id": 108, "Rank": 3, "CommandName": "Add-PnPListItemAttachment" }, { - "Id": 109, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "Id": 109, "Rank": 1, "CommandName": "Add-PnPListItemComment" }, { - "Id": 110, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "Id": 110, "Rank": 1, "CommandName": "Add-PnPMasterPage" }, { - "Id": 111, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 111, "Rank": 1, "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, "CommandName": "Add-PnPMicrosoft365GroupMember" }, { - "Id": 113, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 113, "Rank": 1, "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, "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { - "Id": 115, "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", + "Id": 115, "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "Id": 116, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "Id": 116, "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "Id": 117, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "Id": 117, "Rank": 3, "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "Id": 118, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "Id": 118, "Rank": 1, "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, "CommandName": "Add-PnPNavigationNode" }, { - "Id": 120, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "Id": 120, "Rank": 3, "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, "CommandName": "Add-PnPNavigationNode" }, { - "Id": 122, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "Id": 122, "Rank": 5, "CommandName": "Add-PnPNavigationNode" }, { - "Id": 123, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "Id": 123, "Rank": 6, "CommandName": "Add-PnPNavigationNode" }, { - "Id": 124, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "Id": 124, "Rank": 7, "CommandName": "Add-PnPNavigationNode" }, { - "Id": 125, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "Id": 125, "Rank": 8, "CommandName": "Add-PnPNavigationNode" }, { - "Id": 126, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", + "Id": 126, "Rank": 1, "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, "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "Id": 128, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "Id": 128, "Rank": 3, "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "Id": 129, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "Id": 129, "Rank": 1, "CommandName": "Add-PnPOrgNewsSite" }, { - "Id": 130, "Command": "Add-PnPPage -Name \"NewPage\"", + "Id": 130, "Rank": 1, "CommandName": "Add-PnPPage" }, { - "Id": 131, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "Id": 131, "Rank": 2, "CommandName": "Add-PnPPage" }, { - "Id": 132, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "Id": 132, "Rank": 3, "CommandName": "Add-PnPPage" }, { - "Id": 133, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "Id": 133, "Rank": 4, "CommandName": "Add-PnPPage" }, { - "Id": 134, "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "Id": 134, "Rank": 5, "CommandName": "Add-PnPPage" }, { - "Id": 135, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "Id": 135, "Rank": 6, "CommandName": "Add-PnPPage" }, { - "Id": 136, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "Id": 136, "Rank": 7, "CommandName": "Add-PnPPage" }, { - "Id": 137, "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "Id": 137, "Rank": 8, "CommandName": "Add-PnPPage" }, { - "Id": 138, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Id": 138, "Rank": 9, "CommandName": "Add-PnPPage" }, { - "Id": 139, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Id": 139, "Rank": 10, "CommandName": "Add-PnPPage" }, { - "Id": 140, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", + "Id": 140, "Rank": 1, "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, "CommandName": "Add-PnPPageImageWebPart" }, { - "Id": 142, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "Id": 142, "Rank": 1, "CommandName": "Add-PnPPageSection" }, { - "Id": 143, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "Id": 143, "Rank": 2, "CommandName": "Add-PnPPageSection" }, { - "Id": 144, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "Id": 144, "Rank": 1, "CommandName": "Add-PnPPageTextPart" }, { - "Id": 145, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", + "Id": 145, "Rank": 2, "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, "CommandName": "Add-PnPPageTextPart" }, { - "Id": 147, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "Id": 147, "Rank": 1, "CommandName": "Add-PnPPageWebPart" }, { - "Id": 148, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "Id": 148, "Rank": 2, "CommandName": "Add-PnPPageWebPart" }, { - "Id": 149, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "Id": 149, "Rank": 3, "CommandName": "Add-PnPPageWebPart" }, { - "Id": 150, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "Id": 150, "Rank": 1, "CommandName": "Add-PnPPlannerBucket" }, { - "Id": 151, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "Id": 151, "Rank": 2, "CommandName": "Add-PnPPlannerBucket" }, { - "Id": 152, "Command": "Add-PnPPlannerRoster", + "Id": 152, "Rank": 1, "CommandName": "Add-PnPPlannerRoster" }, { - "Id": 153, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 153, "Rank": 1, "CommandName": "Add-PnPPlannerRosterMember" }, { - "Id": 154, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Id": 154, "Rank": 1, "CommandName": "Add-PnPPlannerTask" }, { - "Id": 155, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Id": 155, "Rank": 2, "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, "CommandName": "Add-PnPPlannerTask" }, { - "Id": 157, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Id": 157, "Rank": 1, "CommandName": "Add-PnPPublishingImageRendition" }, { - "Id": 158, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", + "Id": 158, "Rank": 1, "CommandName": "Add-PnPPublishingPage" }, { - "Id": 159, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "Id": 159, "Rank": 2, "CommandName": "Add-PnPPublishingPage" }, { - "Id": 160, "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Id": 160, "Rank": 1, "CommandName": "Add-PnPPublishingPageLayout" }, { - "Id": 161, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "Id": 161, "Rank": 1, "CommandName": "Add-PnPRoleDefinition" }, { - "Id": 162, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "Id": 162, "Rank": 2, "CommandName": "Add-PnPRoleDefinition" }, { - "Id": 163, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "Id": 163, "Rank": 3, "CommandName": "Add-PnPRoleDefinition" }, { - "Id": 164, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 164, "Rank": 1, "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Id": 165, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 165, "Rank": 2, "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Id": 166, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "Id": 166, "Rank": 3, "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Id": 167, "Command": "Add-PnPSiteCollectionAppCatalog", + "Id": 167, "Rank": 1, "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { - "Id": 168, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Id": 168, "Rank": 2, "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { - "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, "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, "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, "CommandName": "Add-PnPSiteDesign" }, { - "Id": 172, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", + "Id": 172, "Rank": 1, "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, "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, "CommandName": "Add-PnPSiteDesignFromWeb" }, { - "Id": 175, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "Id": 175, "Rank": 1, "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, "CommandName": "Add-PnPSiteDesignTask" }, { - "Id": 177, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "Id": 177, "Rank": 1, "CommandName": "Add-PnPSiteScript" }, { - "Id": 178, "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", + "Id": 178, "Rank": 1, "CommandName": "Add-PnPSiteScriptPackage" }, { - "Id": 179, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "Id": 179, "Rank": 1, "CommandName": "Add-PnPSiteTemplate" }, { - "Id": 180, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", + "Id": 180, "Rank": 1, "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, "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, "CommandName": "Add-PnPStoredCredential" }, { - "Id": 183, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "Id": 183, "Rank": 1, "CommandName": "Add-PnPTaxonomyField" }, { - "Id": 184, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "Id": 184, "Rank": 2, "CommandName": "Add-PnPTaxonomyField" }, { - "Id": 185, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "Id": 185, "Rank": 1, "CommandName": "Add-PnPTeamsChannel" }, { - "Id": 186, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "Id": 186, "Rank": 2, "CommandName": "Add-PnPTeamsChannel" }, { - "Id": 187, "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "Id": 187, "Rank": 3, "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, "CommandName": "Add-PnPTeamsChannel" }, { - "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, "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, "CommandName": "Add-PnpTeamsChannelUser" }, { - "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, "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, "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, "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, "CommandName": "Add-PnPTeamsTab" }, { - "Id": 195, "Command": "Add-PnPTeamsTeam", + "Id": 195, "Rank": 1, "CommandName": "Add-PnPTeamsTeam" }, { - "Id": 196, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 196, "Rank": 1, "CommandName": "Add-PnPTeamsUser" }, { - "Id": 197, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Id": 197, "Rank": 2, "CommandName": "Add-PnPTeamsUser" }, { - "Id": 198, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "Id": 198, "Rank": 3, "CommandName": "Add-PnPTeamsUser" }, { - "Id": 199, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "Id": 199, "Rank": 4, "CommandName": "Add-PnPTeamsUser" }, { - "Id": 200, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Id": 200, "Rank": 1, "CommandName": "Add-PnPTenantCdnOrigin" }, { - "Id": 201, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "Id": 201, "Rank": 1, "CommandName": "Add-PnPTenantSequence" }, { - "Id": 202, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "Id": 202, "Rank": 1, "CommandName": "Add-PnPTenantSequenceSite" }, { - "Id": 203, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "Id": 203, "Rank": 1, "CommandName": "Add-PnPTenantSequenceSubSite" }, { - "Id": 204, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "Id": 204, "Rank": 1, "CommandName": "Add-PnPTermToTerm" }, { - "Id": 205, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", + "Id": 205, "Rank": 1, "CommandName": "Add-PnPView" }, { - "Id": 206, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", + "Id": 206, "Rank": 2, "CommandName": "Add-PnPView" }, { - "Id": 207, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "Id": 207, "Rank": 3, "CommandName": "Add-PnPView" }, { - "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, "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, "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, "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { - "Id": 211, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Id": 211, "Rank": 1, "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, "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, "CommandName": "Add-PnPWebhookSubscription" }, { - "Id": 214, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", + "Id": 214, "Rank": 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, "CommandName": "Add-PnPWebPartToWebPartPage" }, { - "Id": 216, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", + "Id": 216, "Rank": 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, "CommandName": "Add-PnPWebPartToWikiPage" }, { - "Id": 218, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "Id": 218, "Rank": 1, "CommandName": "Add-PnPWikiPage" }, { - "Id": 219, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "Id": 219, "Rank": 1, "CommandName": "Clear-PnPAzureADGroupMember" }, { - "Id": 220, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "Id": 220, "Rank": 1, "CommandName": "Clear-PnPAzureADGroupOwner" }, { - "Id": 221, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "Id": 221, "Rank": 1, "CommandName": "Clear-PnPDefaultColumnValues" }, { - "Id": 222, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "Id": 222, "Rank": 2, "CommandName": "Clear-PnPDefaultColumnValues" }, { - "Id": 223, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Id": 223, "Rank": 1, "CommandName": "Clear-PnPListItemAsRecord" }, { - "Id": 224, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "Id": 224, "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { - "Id": 225, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "Id": 225, "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { - "Id": 226, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Id": 226, "Rank": 1, "CommandName": "Clear-PnpRecycleBinItem" }, { - "Id": 227, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "Id": 227, "Rank": 2, "CommandName": "Clear-PnpRecycleBinItem" }, { - "Id": 228, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "Id": 228, "Rank": 3, "CommandName": "Clear-PnpRecycleBinItem" }, { - "Id": 229, "Command": "Clear-PnPTenantAppCatalogUrl", + "Id": 229, "Rank": 1, "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { - "Id": 230, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 230, "Rank": 1, "CommandName": "Clear-PnPTenantRecycleBinItem" }, { - "Id": 231, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Id": 231, "Rank": 2, "CommandName": "Clear-PnPTenantRecycleBinItem" }, { - "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, "CommandName": "Connect-PnPOnline" }, { - "Id": 233, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "Id": 233, "Rank": 1, "CommandName": "Convert-PnPFolderToSiteTemplate" }, { - "Id": 234, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "Id": 234, "Rank": 2, "CommandName": "Convert-PnPFolderToSiteTemplate" }, { - "Id": 235, "Command": "Convert-PnPSiteTemplate -Path template.xml", + "Id": 235, "Rank": 1, "CommandName": "Convert-PnPSiteTemplate" }, { - "Id": 236, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "Id": 236, "Rank": 2, "CommandName": "Convert-PnPSiteTemplate" }, { - "Id": 237, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "Id": 237, "Rank": 3, "CommandName": "Convert-PnPSiteTemplate" }, { - "Id": 238, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "Id": 238, "Rank": 1, "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { - "Id": 239, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "Id": 239, "Rank": 2, "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { - "Id": 240, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "Id": 240, "Rank": 1, "CommandName": "ConvertTo-PnPPage" }, { - "Id": 241, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "Id": 241, "Rank": 2, "CommandName": "ConvertTo-PnPPage" }, { - "Id": 242, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "Id": 242, "Rank": 3, "CommandName": "ConvertTo-PnPPage" }, { - "Id": 243, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "Id": 243, "Rank": 4, "CommandName": "ConvertTo-PnPPage" }, { - "Id": 244, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 244, "Rank": 5, "CommandName": "ConvertTo-PnPPage" }, { - "Id": 245, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "Id": 245, "Rank": 6, "CommandName": "ConvertTo-PnPPage" }, { - "Id": 246, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "Id": 246, "Rank": 7, "CommandName": "ConvertTo-PnPPage" }, { - "Id": 247, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "Id": 247, "Rank": 8, "CommandName": "ConvertTo-PnPPage" }, { - "Id": 248, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 248, "Rank": 9, "CommandName": "ConvertTo-PnPPage" }, { - "Id": 249, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "Id": 249, "Rank": 10, "CommandName": "ConvertTo-PnPPage" }, { - "Id": 250, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "Id": 250, "Rank": 11, "CommandName": "ConvertTo-PnPPage" }, { - "Id": 251, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 251, "Rank": 12, "CommandName": "ConvertTo-PnPPage" }, { - "Id": 252, "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 252, "Rank": 13, "CommandName": "ConvertTo-PnPPage" }, { - "Id": 253, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "Id": 253, "Rank": 14, "CommandName": "ConvertTo-PnPPage" }, { - "Id": 254, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 254, "Rank": 1, "CommandName": "Copy-PnPFile" }, { - "Id": 255, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Id": 255, "Rank": 2, "CommandName": "Copy-PnPFile" }, { - "Id": 256, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Id": 256, "Rank": 3, "CommandName": "Copy-PnPFile" }, { - "Id": 257, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 257, "Rank": 4, "CommandName": "Copy-PnPFile" }, { - "Id": 258, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Id": 258, "Rank": 5, "CommandName": "Copy-PnPFile" }, { - "Id": 259, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Id": 259, "Rank": 6, "CommandName": "Copy-PnPFile" }, { - "Id": 260, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Id": 260, "Rank": 7, "CommandName": "Copy-PnPFile" }, { - "Id": 261, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 261, "Rank": 8, "CommandName": "Copy-PnPFile" }, { - "Id": 262, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Id": 262, "Rank": 9, "CommandName": "Copy-PnPFile" }, { - "Id": 263, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Id": 263, "Rank": 10, "CommandName": "Copy-PnPFile" }, { - "Id": 264, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 264, "Rank": 1, "CommandName": "Copy-PnPFolder" }, { - "Id": 265, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Id": 265, "Rank": 2, "CommandName": "Copy-PnPFolder" }, { - "Id": 266, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Id": 266, "Rank": 3, "CommandName": "Copy-PnPFolder" }, { - "Id": 267, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 267, "Rank": 4, "CommandName": "Copy-PnPFolder" }, { - "Id": 268, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Id": 268, "Rank": 5, "CommandName": "Copy-PnPFolder" }, { - "Id": 269, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Id": 269, "Rank": 6, "CommandName": "Copy-PnPFolder" }, { - "Id": 270, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Id": 270, "Rank": 7, "CommandName": "Copy-PnPFolder" }, { - "Id": 271, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 271, "Rank": 8, "CommandName": "Copy-PnPFolder" }, { - "Id": 272, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Id": 272, "Rank": 9, "CommandName": "Copy-PnPFolder" }, { - "Id": 273, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Id": 273, "Rank": 10, "CommandName": "Copy-PnPFolder" }, { - "Id": 274, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "Id": 274, "Rank": 1, "CommandName": "Copy-PnPItemProxy" }, { - "Id": 275, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "Id": 275, "Rank": 1, "CommandName": "Copy-PnPList" }, { - "Id": 276, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", + "Id": 276, "Rank": 2, "CommandName": "Copy-PnPList" }, { - "Id": 277, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "Id": 277, "Rank": 3, "CommandName": "Copy-PnPList" }, { - "Id": 278, "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", + "Id": 278, "Rank": 4, "CommandName": "Copy-PnPList" }, { - "Id": 279, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "Id": 279, "Rank": 1, "CommandName": "Copy-PnPTeamsTeam" }, { - "Id": 280, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "Id": 280, "Rank": 2, "CommandName": "Copy-PnPTeamsTeam" }, { - "Id": 281, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", + "Id": 281, "Rank": 3, "CommandName": "Copy-PnPTeamsTeam" }, { - "Id": 282, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", + "Id": 282, "Rank": 4, "CommandName": "Copy-PnPTeamsTeam" }, { - "Id": 283, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 283, "Rank": 1, "CommandName": "Disable-PnPFeature" }, { - "Id": 284, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Id": 284, "Rank": 2, "CommandName": "Disable-PnPFeature" }, { - "Id": 285, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Id": 285, "Rank": 3, "CommandName": "Disable-PnPFeature" }, { - "Id": 286, "Command": "Disable-PnPPageScheduling", + "Id": 286, "Rank": 1, "CommandName": "Disable-PnPPageScheduling" }, { - "Id": 287, "Command": "Disable-PnPPowerShellTelemetry", + "Id": 287, "Rank": 1, "CommandName": "Disable-PnPPowerShellTelemetry" }, { - "Id": 288, "Command": "Disable-PnPPowerShellTelemetry -Force", + "Id": 288, "Rank": 2, "CommandName": "Disable-PnPPowerShellTelemetry" }, { - "Id": 289, "Command": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 289, "Rank": 1, "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { - "Id": 290, "Command": "Disable-PnPSiteClassification", + "Id": 290, "Rank": 1, "CommandName": "Disable-PnPSiteClassification" }, { - "Id": 291, "Command": "Disconnect-PnPOnline", + "Id": 291, "Rank": 1, "CommandName": "Disconnect-PnPOnline" }, { - "Id": 292, "Command": "Enable-PnPCommSite", + "Id": 292, "Rank": 1, "CommandName": "Enable-PnPCommSite" }, { - "Id": 293, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "Id": 293, "Rank": 2, "CommandName": "Enable-PnPCommSite" }, { - "Id": 294, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 294, "Rank": 1, "CommandName": "Enable-PnPFeature" }, { - "Id": 295, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Id": 295, "Rank": 2, "CommandName": "Enable-PnPFeature" }, { - "Id": 296, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Id": 296, "Rank": 3, "CommandName": "Enable-PnPFeature" }, { - "Id": 297, "Command": "Enable-PnPPageScheduling", + "Id": 297, "Rank": 1, "CommandName": "Enable-PnPPageScheduling" }, { - "Id": 298, "Command": "Enable-PnPPowerShellTelemetry", + "Id": 298, "Rank": 1, "CommandName": "Enable-PnPPowerShellTelemetry" }, { - "Id": 299, "Command": "Enable-PnPPowerShellTelemetry -Force", + "Id": 299, "Rank": 2, "CommandName": "Enable-PnPPowerShellTelemetry" }, { - "Id": 300, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "Id": 300, "Rank": 1, "CommandName": "Enable-PnPSiteClassification" }, { - "Id": 301, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Id": 301, "Rank": 2, "CommandName": "Enable-PnPSiteClassification" }, { - "Id": 302, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "Id": 302, "Rank": 1, "CommandName": "Export-PnPListToSiteTemplate" }, { - "Id": 303, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "Id": 303, "Rank": 2, "CommandName": "Export-PnPListToSiteTemplate" }, { - "Id": 304, "Command": "Export-PnPPage -Identity Home.aspx", + "Id": 304, "Rank": 1, "CommandName": "Export-PnPPage" }, { - "Id": 305, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "Id": 305, "Rank": 1, "CommandName": "Export-PnPPageMapping" }, { - "Id": 306, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "Id": 306, "Rank": 2, "CommandName": "Export-PnPPageMapping" }, { - "Id": 307, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "Id": 307, "Rank": 3, "CommandName": "Export-PnPPageMapping" }, { - "Id": 308, "Command": "Export-PnPTaxonomy", + "Id": 308, "Rank": 1, "CommandName": "Export-PnPTaxonomy" }, { - "Id": 309, "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "Id": 309, "Rank": 2, "CommandName": "Export-PnPTaxonomy" }, { - "Id": 310, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", + "Id": 310, "Rank": 3, "CommandName": "Export-PnPTaxonomy" }, { - "Id": 311, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "Id": 311, "Rank": 4, "CommandName": "Export-PnPTaxonomy" }, { - "Id": 312, "Command": "Export-PnPTermGroupToXml", + "Id": 312, "Rank": 1, "CommandName": "Export-PnPTermGroupToXml" }, { - "Id": 313, "Command": "Export-PnPTermGroupToXml -Out output.xml", + "Id": 313, "Rank": 2, "CommandName": "Export-PnPTermGroupToXml" }, { - "Id": 314, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "Id": 314, "Rank": 3, "CommandName": "Export-PnPTermGroupToXml" }, { - "Id": 315, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Id": 315, "Rank": 1, "CommandName": "Export-PnPUserInfo" }, { - "Id": 316, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", + "Id": 316, "Rank": 2, "CommandName": "Export-PnPUserInfo" }, { - "Id": 317, "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "Id": 317, "Rank": 1, "CommandName": "Export-PnPUserProfile" }, { - "Id": 318, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "Id": 318, "Rank": 2, "CommandName": "Export-PnPUserProfile" }, { - "Id": 319, "Command": "Find-PnPFile -Match *.master", + "Id": 319, "Rank": 1, "CommandName": "Find-PnPFile" }, { - "Id": 320, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "Id": 320, "Rank": 2, "CommandName": "Find-PnPFile" }, { - "Id": 321, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "Id": 321, "Rank": 3, "CommandName": "Find-PnPFile" }, { - "Id": 322, "Command": "Get-PnPAccessToken", + "Id": 322, "Rank": 1, "CommandName": "Get-PnPAccessToken" }, { - "Id": 323, "Command": "Get-PnPAccessToken -Decoded", + "Id": 323, "Rank": 2, "CommandName": "Get-PnPAccessToken" }, { - "Id": 324, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "Id": 324, "Rank": 3, "CommandName": "Get-PnPAccessToken" }, { - "Id": 325, "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "Id": 325, "Rank": 4, "CommandName": "Get-PnPAccessToken" }, { - "Id": 326, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "Id": 326, "Rank": 5, "CommandName": "Get-PnPAccessToken" }, { - "Id": 327, "Command": "Get-PnPAlert", + "Id": 327, "Rank": 1, "CommandName": "Get-PnPAlert" }, { - "Id": 328, "Command": "Get-PnPAlert -List \"Demo List\"", + "Id": 328, "Rank": 2, "CommandName": "Get-PnPAlert" }, { - "Id": 329, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Id": 329, "Rank": 3, "CommandName": "Get-PnPAlert" }, { - "Id": 330, "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "Id": 330, "Rank": 4, "CommandName": "Get-PnPAlert" }, { - "Id": 331, "Command": "Get-PnPAlert -AllUsers", + "Id": 331, "Rank": 5, "CommandName": "Get-PnPAlert" }, { - "Id": 332, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "Id": 332, "Rank": 6, "CommandName": "Get-PnPAlert" }, { - "Id": 333, "Command": "Get-PnPApp", + "Id": 333, "Rank": 1, "CommandName": "Get-PnPApp" }, { - "Id": 334, "Command": "Get-PnPApp -Scope Site", + "Id": 334, "Rank": 2, "CommandName": "Get-PnPApp" }, { - "Id": 335, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 335, "Rank": 3, "CommandName": "Get-PnPApp" }, { - "Id": 336, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "Id": 336, "Rank": 1, "CommandName": "Get-PnPAppErrors" }, { - "Id": 337, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "Id": 337, "Rank": 2, "CommandName": "Get-PnPAppErrors" }, { - "Id": 338, "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "Id": 338, "Rank": 1, "CommandName": "Get-PnPAppInfo" }, { - "Id": 339, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 339, "Rank": 2, "CommandName": "Get-PnPAppInfo" }, { - "Id": 340, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "Id": 340, "Rank": 3, "CommandName": "Get-PnPAppInfo" }, { - "Id": 341, "Command": "Get-PnPApplicationCustomizer", + "Id": 341, "Rank": 1, "CommandName": "Get-PnPApplicationCustomizer" }, { - "Id": 342, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 342, "Rank": 2, "CommandName": "Get-PnPApplicationCustomizer" }, { - "Id": 343, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "Id": 343, "Rank": 3, "CommandName": "Get-PnPApplicationCustomizer" }, { - "Id": 344, "Command": "Get-PnPAuditing", + "Id": 344, "Rank": 1, "CommandName": "Get-PnPAuditing" }, { - "Id": 345, "Command": "Get-PnPAuthenticationRealm", + "Id": 345, "Rank": 1, "CommandName": "Get-PnPAuthenticationRealm" }, { - "Id": 346, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "Id": 346, "Rank": 2, "CommandName": "Get-PnPAuthenticationRealm" }, { - "Id": 347, "Command": "Get-PnPAvailableLanguage", + "Id": 347, "Rank": 1, "CommandName": "Get-PnPAvailableLanguage" }, { - "Id": 348, "Command": "Get-PnPAvailableSensitivityLabel", + "Id": 348, "Rank": 1, "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Id": 349, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "Id": 349, "Rank": 2, "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Id": 350, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "Id": 350, "Rank": 3, "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Id": 351, "Command": "Get-PnPAvailableSiteClassification", + "Id": 351, "Rank": 1, "CommandName": "Get-PnPAvailableSiteClassification" }, { - "Id": 352, "Command": "Get-PnPAzureACSPrincipal", + "Id": 352, "Rank": 1, "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Id": 353, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "Id": 353, "Rank": 2, "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Id": 354, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "Id": 354, "Rank": 3, "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Id": 355, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "Id": 355, "Rank": 4, "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Id": 356, "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 356, "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Id": 357, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "Id": 357, "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Id": 358, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "Id": 358, "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Id": 359, "Command": "Get-PnPAzureADActivityReportSignIn", + "Id": 359, "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Id": 360, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "Id": 360, "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Id": 361, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "Id": 361, "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Id": 362, "Command": "Get-PnPAzureADApp", + "Id": 362, "Rank": 1, "CommandName": "Get-PnPAzureADApp" }, { - "Id": 363, "Command": "Get-PnPAzureADApp -Identity MyApp", + "Id": 363, "Rank": 2, "CommandName": "Get-PnPAzureADApp" }, { - "Id": 364, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 364, "Rank": 3, "CommandName": "Get-PnPAzureADApp" }, { - "Id": 365, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "Id": 365, "Rank": 4, "CommandName": "Get-PnPAzureADApp" }, { - "Id": 366, "Command": "Get-PnPAzureADAppPermission", + "Id": 366, "Rank": 1, "CommandName": "Get-PnPAzureADAppPermission" }, { - "Id": 367, "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "Id": 367, "Rank": 2, "CommandName": "Get-PnPAzureADAppPermission" }, { - "Id": 368, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 368, "Rank": 3, "CommandName": "Get-PnPAzureADAppPermission" }, { - "Id": 369, "Command": "Get-PnPAzureADAppSitePermission", + "Id": 369, "Rank": 1, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Id": 370, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "Id": 370, "Rank": 2, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Id": 371, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "Id": 371, "Rank": 3, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Id": 372, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "Id": 372, "Rank": 4, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Id": 373, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "Id": 373, "Rank": 5, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Id": 374, "Command": "Get-PnPAzureADGroup", + "Id": 374, "Rank": 1, "CommandName": "Get-PnPAzureADGroup" }, { - "Id": 375, "Command": "Get-PnPAzureADGroup -Identity $groupId", + "Id": 375, "Rank": 2, "CommandName": "Get-PnPAzureADGroup" }, { - "Id": 376, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "Id": 376, "Rank": 3, "CommandName": "Get-PnPAzureADGroup" }, { - "Id": 377, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "Id": 377, "Rank": 4, "CommandName": "Get-PnPAzureADGroup" }, { - "Id": 378, "Command": "Get-PnPAzureADGroup -Identity $group", + "Id": 378, "Rank": 5, "CommandName": "Get-PnPAzureADGroup" }, { - "Id": 379, "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "Id": 379, "Rank": 1, "CommandName": "Get-PnPAzureADGroupMember" }, { - "Id": 380, "Command": "Get-PnPAzureADGroupMember -Identity $group", + "Id": 380, "Rank": 2, "CommandName": "Get-PnPAzureADGroupMember" }, { - "Id": 381, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "Id": 381, "Rank": 1, "CommandName": "Get-PnPAzureADGroupOwner" }, { - "Id": 382, "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "Id": 382, "Rank": 2, "CommandName": "Get-PnPAzureADGroupOwner" }, { - "Id": 383, "Command": "Get-PnPAzureADServicePrincipal", + "Id": 383, "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Id": 384, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "Id": 384, "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Id": 385, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "Id": 385, "Rank": 3, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Id": 386, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "Id": 386, "Rank": 4, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Id": 387, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "Id": 387, "Rank": 5, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Id": 388, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 388, "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Id": 389, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Id": 389, "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Id": 390, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 390, "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { - "Id": 391, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "Id": 391, "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { - "Id": 392, "Command": "Get-PnPAzureADUser", + "Id": 392, "Rank": 1, "CommandName": "Get-PnPAzureADUser" }, { - "Id": 393, "Command": "Get-PnPAzureADUser -EndIndex 50", + "Id": 393, "Rank": 2, "CommandName": "Get-PnPAzureADUser" }, { - "Id": 394, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Id": 394, "Rank": 3, "CommandName": "Get-PnPAzureADUser" }, { - "Id": 395, "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "Id": 395, "Rank": 4, "CommandName": "Get-PnPAzureADUser" }, { - "Id": 396, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "Id": 396, "Rank": 5, "CommandName": "Get-PnPAzureADUser" }, { - "Id": 397, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "Id": 397, "Rank": 6, "CommandName": "Get-PnPAzureADUser" }, { - "Id": 398, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "Id": 398, "Rank": 7, "CommandName": "Get-PnPAzureADUser" }, { - "Id": 399, "Command": "Get-PnPAzureADUser -Delta", + "Id": 399, "Rank": 8, "CommandName": "Get-PnPAzureADUser" }, { - "Id": 400, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "Id": 400, "Rank": 9, "CommandName": "Get-PnPAzureADUser" }, { - "Id": 401, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "Id": 401, "Rank": 10, "CommandName": "Get-PnPAzureADUser" }, { - "Id": 402, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "Id": 402, "Rank": 1, "CommandName": "Get-PnPAzureCertificate" }, { - "Id": 403, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "Id": 403, "Rank": 2, "CommandName": "Get-PnPAzureCertificate" }, { - "Id": 404, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "Id": 404, "Rank": 3, "CommandName": "Get-PnPAzureCertificate" }, { - "Id": 405, "Command": "Get-PnPBrowserIdleSignout", + "Id": 405, "Rank": 1, "CommandName": "Get-PnPBrowserIdleSignout" }, { - "Id": 406, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "Id": 406, "Rank": 1, "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Id": 407, "Command": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 407, "Rank": 2, "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Id": 408, "Command": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 408, "Rank": 1, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 409, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "Id": 409, "Rank": 2, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 410, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "Id": 410, "Rank": 3, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 411, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "Id": 411, "Rank": 4, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 412, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "Id": 412, "Rank": 5, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Id": 413, "Command": "Get-PnPChangeLog", + "Id": 413, "Rank": 1, "CommandName": "Get-PnPChangeLog" }, { - "Id": 414, "Command": "Get-PnPChangeLog -Nightly", + "Id": 414, "Rank": 2, "CommandName": "Get-PnPChangeLog" }, { - "Id": 415, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "Id": 415, "Rank": 1, "CommandName": "Get-PnPCompatibleHubContentTypes" }, { - "Id": 416, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "Id": 416, "Rank": 2, "CommandName": "Get-PnPCompatibleHubContentTypes" }, { - "Id": 417, "Command": "Get-PnPContentType", + "Id": 417, "Rank": 1, "CommandName": "Get-PnPContentType" }, { - "Id": 418, "Command": "Get-PnPContentType -InSiteHierarchy", + "Id": 418, "Rank": 2, "CommandName": "Get-PnPContentType" }, { - "Id": 419, "Command": "Get-PnPContentType -Identity \"Project Document\"", + "Id": 419, "Rank": 3, "CommandName": "Get-PnPContentType" }, { - "Id": 420, "Command": "Get-PnPContentType -List \"Documents\"", + "Id": 420, "Rank": 4, "CommandName": "Get-PnPContentType" }, { - "Id": 421, "Command": "Get-PnPContentType -Includes \"SchemaXml\"", + "Id": 421, "Rank": 5, "CommandName": "Get-PnPContentType" }, { - "Id": 422, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "Id": 422, "Rank": 1, "CommandName": "Get-PnPContentTypePublishingStatus" }, { - "Id": 423, "Command": "Get-PnPCustomAction", + "Id": 423, "Rank": 1, "CommandName": "Get-PnPCustomAction" }, { - "Id": 424, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 424, "Rank": 2, "CommandName": "Get-PnPCustomAction" }, { - "Id": 425, "Command": "Get-PnPCustomAction -Scope web", + "Id": 425, "Rank": 3, "CommandName": "Get-PnPCustomAction" }, { - "Id": 426, "Command": "Get-PnPDeletedMicrosoft365Group", + "Id": 426, "Rank": 1, "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { - "Id": 427, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 427, "Rank": 2, "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { - "Id": 428, "Command": "Get-PnPDeletedTeam", + "Id": 428, "Rank": 1, "CommandName": "Get-PnPDeletedTeam" }, { - "Id": 429, "Command": "Get-PnPDiagnostics", + "Id": 429, "Rank": 1, "CommandName": "Get-PnPDiagnostics" }, { - "Id": 430, "Command": "Get-PnPDisableSpacesActivation", + "Id": 430, "Rank": 1, "CommandName": "Get-PnPDisableSpacesActivation" }, { - "Id": 431, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "Id": 431, "Rank": 1, "CommandName": "Get-PnPDocumentSetTemplate" }, { - "Id": 432, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "Id": 432, "Rank": 2, "CommandName": "Get-PnPDocumentSetTemplate" }, { - "Id": 433, "Command": "Get-PnPEventReceiver", + "Id": 433, "Rank": 1, "CommandName": "Get-PnPEventReceiver" }, { - "Id": 434, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 434, "Rank": 2, "CommandName": "Get-PnPEventReceiver" }, { - "Id": 435, "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "Id": 435, "Rank": 3, "CommandName": "Get-PnPEventReceiver" }, { - "Id": 436, "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "Id": 436, "Rank": 4, "CommandName": "Get-PnPEventReceiver" }, { - "Id": 437, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 437, "Rank": 5, "CommandName": "Get-PnPEventReceiver" }, { - "Id": 438, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "Id": 438, "Rank": 6, "CommandName": "Get-PnPEventReceiver" }, { - "Id": 439, "Command": "Get-PnPEventReceiver -Scope Site", + "Id": 439, "Rank": 7, "CommandName": "Get-PnPEventReceiver" }, { - "Id": 440, "Command": "Get-PnPEventReceiver -Scope Web", + "Id": 440, "Rank": 8, "CommandName": "Get-PnPEventReceiver" }, { - "Id": 441, "Command": "Get-PnPEventReceiver -Scope All", + "Id": 441, "Rank": 9, "CommandName": "Get-PnPEventReceiver" }, { - "Id": 442, "Command": "Get-PnPException", + "Id": 442, "Rank": 1, "CommandName": "Get-PnPException" }, { - "Id": 443, "Command": "Get-PnPException -All", + "Id": 443, "Rank": 2, "CommandName": "Get-PnPException" }, { - "Id": 444, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "Id": 444, "Rank": 1, "CommandName": "Get-PnPExternalUser" }, { - "Id": 445, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "Id": 445, "Rank": 2, "CommandName": "Get-PnPExternalUser" }, { - "Id": 446, "Command": "Get-PnPFeature", + "Id": 446, "Rank": 1, "CommandName": "Get-PnPFeature" }, { - "Id": 447, "Command": "Get-PnPFeature -Scope Site", + "Id": 447, "Rank": 2, "CommandName": "Get-PnPFeature" }, { - "Id": 448, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 448, "Rank": 3, "CommandName": "Get-PnPFeature" }, { - "Id": 449, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "Id": 449, "Rank": 4, "CommandName": "Get-PnPFeature" }, { - "Id": 450, "Command": "Get-PnPField", + "Id": 450, "Rank": 1, "CommandName": "Get-PnPField" }, { - "Id": 451, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Id": 451, "Rank": 2, "CommandName": "Get-PnPField" }, { - "Id": 452, "Command": "Get-PnPField -Group \"Custom Columns\"", + "Id": 452, "Rank": 3, "CommandName": "Get-PnPField" }, { - "Id": 453, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "Id": 453, "Rank": 1, "CommandName": "Get-PnPFile" }, { - "Id": 454, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "Id": 454, "Rank": 2, "CommandName": "Get-PnPFile" }, { - "Id": 455, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "Id": 455, "Rank": 3, "CommandName": "Get-PnPFile" }, { - "Id": 456, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "Id": 456, "Rank": 4, "CommandName": "Get-PnPFile" }, { - "Id": 457, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "Id": 457, "Rank": 5, "CommandName": "Get-PnPFile" }, { - "Id": 458, "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", + "Id": 458, "Rank": 6, "CommandName": "Get-PnPFile" }, { - "Id": 459, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "Id": 459, "Rank": 7, "CommandName": "Get-PnPFile" }, { - "Id": 460, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 460, "Rank": 1, "CommandName": "Get-PnPFileSharingLink" }, { - "Id": 461, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "Id": 461, "Rank": 1, "CommandName": "Get-PnPFileVersion" }, { - "Id": 462, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "Id": 462, "Rank": 2, "CommandName": "Get-PnPFileVersion" }, { - "Id": 463, "Command": "Get-PnPFlow -AsAdmin", + "Id": 463, "Rank": 1, "CommandName": "Get-PnPFlow" }, { - "Id": 464, "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "Id": 464, "Rank": 2, "CommandName": "Get-PnPFlow" }, { - "Id": 465, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "Id": 465, "Rank": 3, "CommandName": "Get-PnPFlow" }, { - "Id": 466, "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", + "Id": 466, "Rank": 1, "CommandName": "Get-PnPFlowOwner" }, { - "Id": 467, "Command": "Get-PnPFolder", + "Id": 467, "Rank": 1, "CommandName": "Get-PnPFolder" }, { - "Id": 468, "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "Id": 468, "Rank": 2, "CommandName": "Get-PnPFolder" }, { - "Id": 469, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "Id": 469, "Rank": 3, "CommandName": "Get-PnPFolder" }, { - "Id": 470, "Command": "Get-PnPFolder -List \"Shared Documents\"", + "Id": 470, "Rank": 4, "CommandName": "Get-PnPFolder" }, { - "Id": 471, "Command": "Get-PnPFolderFile", + "Id": 471, "Rank": 1, "CommandName": "Get-PnPFolderFile" }, { - "Id": 472, "Command": "Get-PnPFolderFile -Recurse", + "Id": 472, "Rank": 2, "CommandName": "Get-PnPFolderFile" }, { - "Id": 473, "Command": "Get-PnPFolderFile -Identity \"Shared Documents\"", + "Id": 473, "Rank": 3, "CommandName": "Get-PnPFolderFile" }, { - "Id": 474, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Id": 474, "Rank": 4, "CommandName": "Get-PnPFolderFile" }, { - "Id": 475, "Command": "Get-PnPFolderFile -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Id": 475, "Rank": 5, "CommandName": "Get-PnPFolderFile" }, { - "Id": 476, "Command": "Get-PnPFolderFolder", + "Id": 476, "Rank": 1, "CommandName": "Get-PnPFolderFolder" }, { - "Id": 477, "Command": "Get-PnPFolderFolder -Recurse", + "Id": 477, "Rank": 2, "CommandName": "Get-PnPFolderFolder" }, { - "Id": 478, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\"", + "Id": 478, "Rank": 3, "CommandName": "Get-PnPFolderFolder" }, { - "Id": 479, "Command": "Get-PnPFolderFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", + "Id": 479, "Rank": 4, "CommandName": "Get-PnPFolderFolder" }, { - "Id": 480, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", + "Id": 480, "Rank": 5, "CommandName": "Get-PnPFolderFolder" }, { - "Id": 481, "Command": "Get-PnPFolderFolder -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Id": 481, "Rank": 6, "CommandName": "Get-PnPFolderFolder" }, { - "Id": 482, "Command": "Get-PnPFolderItem", + "Id": 482, "Rank": 1, "CommandName": "Get-PnPFolderItem" }, { - "Id": 483, "Command": "Get-PnPFolderItem -Recurse", + "Id": 483, "Rank": 2, "CommandName": "Get-PnPFolderItem" }, { - "Id": 484, "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", + "Id": 484, "Rank": 3, "CommandName": "Get-PnPFolderItem" }, { - "Id": 485, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Id": 485, "Rank": 4, "CommandName": "Get-PnPFolderItem" }, { - "Id": 486, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "Id": 486, "Rank": 5, "CommandName": "Get-PnPFolderItem" }, { - "Id": 487, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Id": 487, "Rank": 6, "CommandName": "Get-PnPFolderItem" }, { - "Id": 488, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 488, "Rank": 1, "CommandName": "Get-PnPFolderSharingLink" }, { - "Id": 489, "Command": "Get-PnPFolderStorageMetric", + "Id": 489, "Rank": 1, "CommandName": "Get-PnPFolderStorageMetric" }, { - "Id": 490, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "Id": 490, "Rank": 2, "CommandName": "Get-PnPFolderStorageMetric" }, { - "Id": 491, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "Id": 491, "Rank": 3, "CommandName": "Get-PnPFolderStorageMetric" }, { - "Id": 492, "Command": "Get-PnPFooter", + "Id": 492, "Rank": 1, "CommandName": "Get-PnPFooter" }, { - "Id": 493, "Command": "Get-PnPGraphAccessToken", + "Id": 493, "Rank": 1, "CommandName": "Get-PnPGraphAccessToken" }, { - "Id": 494, "Command": "Get-PnPGraphAccessToken -Decoded", + "Id": 494, "Rank": 2, "CommandName": "Get-PnPGraphAccessToken" }, { - "Id": 495, "Command": "Get-PnPGraphSubscription", + "Id": 495, "Rank": 1, "CommandName": "Get-PnPGraphSubscription" }, { - "Id": 496, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Id": 496, "Rank": 2, "CommandName": "Get-PnPGraphSubscription" }, { - "Id": 497, "Command": "Get-PnPGroup", + "Id": 497, "Rank": 1, "CommandName": "Get-PnPGroup" }, { - "Id": 498, "Command": "Get-PnPGroup -Identity 'My Site Users'", + "Id": 498, "Rank": 2, "CommandName": "Get-PnPGroup" }, { - "Id": 499, "Command": "Get-PnPGroup -AssociatedMemberGroup", + "Id": 499, "Rank": 3, "CommandName": "Get-PnPGroup" }, { - "Id": 500, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "Id": 500, "Rank": 1, "CommandName": "Get-PnPGroupMember" }, { - "Id": 501, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "Id": 501, "Rank": 2, "CommandName": "Get-PnPGroupMember" }, { - "Id": 502, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "Id": 502, "Rank": 1, "CommandName": "Get-PnPGroupPermissions" }, { - "Id": 503, "Command": "Get-PnPHideDefaultThemes", + "Id": 503, "Rank": 1, "CommandName": "Get-PnPHideDefaultThemes" }, { - "Id": 504, "Command": "Get-PnPHomePage", + "Id": 504, "Rank": 1, "CommandName": "Get-PnPHomePage" }, { - "Id": 505, "Command": "Get-PnPHomeSite", + "Id": 505, "Rank": 1, "CommandName": "Get-PnPHomeSite" }, { - "Id": 506, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "Id": 506, "Rank": 2, "CommandName": "Get-PnPHomeSite" }, { - "Id": 507, "Command": "Get-PnPHomeSite -Detailed", + "Id": 507, "Rank": 3, "CommandName": "Get-PnPHomeSite" }, { - "Id": 508, "Command": "Get-PnPHubSite", + "Id": 508, "Rank": 1, "CommandName": "Get-PnPHubSite" }, { - "Id": 509, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Id": 509, "Rank": 2, "CommandName": "Get-PnPHubSite" }, { - "Id": 510, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "Id": 510, "Rank": 3, "CommandName": "Get-PnPHubSite" }, { - "Id": 511, "Command": "Get-PnPHubSiteChild", + "Id": 511, "Rank": 1, "CommandName": "Get-PnPHubSiteChild" }, { - "Id": 512, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Id": 512, "Rank": 2, "CommandName": "Get-PnPHubSiteChild" }, { - "Id": 513, "Command": "Get-PnPInPlaceRecordsManagement", + "Id": 513, "Rank": 1, "CommandName": "Get-PnPInPlaceRecordsManagement" }, { - "Id": 514, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "Id": 514, "Rank": 1, "CommandName": "Get-PnPIsSiteAliasAvailable" }, { - "Id": 515, "Command": "Get-PnPJavaScriptLink", + "Id": 515, "Rank": 1, "CommandName": "Get-PnPJavaScriptLink" }, { - "Id": 516, "Command": "Get-PnPJavaScriptLink -Scope All", + "Id": 516, "Rank": 2, "CommandName": "Get-PnPJavaScriptLink" }, { - "Id": 517, "Command": "Get-PnPJavaScriptLink -Scope Web", + "Id": 517, "Rank": 3, "CommandName": "Get-PnPJavaScriptLink" }, { - "Id": 518, "Command": "Get-PnPJavaScriptLink -Scope Site", + "Id": 518, "Rank": 4, "CommandName": "Get-PnPJavaScriptLink" }, { - "Id": 519, "Command": "Get-PnPJavaScriptLink -Name Test", + "Id": 519, "Rank": 5, "CommandName": "Get-PnPJavaScriptLink" }, { - "Id": 520, "Command": "Get-PnPKnowledgeHubSite", + "Id": 520, "Rank": 1, "CommandName": "Get-PnPKnowledgeHubSite" }, { - "Id": 521, "Command": "Get-PnPLabel", + "Id": 521, "Rank": 1, "CommandName": "Get-PnPLabel" }, { - "Id": 522, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "Id": 522, "Rank": 2, "CommandName": "Get-PnPLabel" }, { - "Id": 523, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "Id": 523, "Rank": 1, "CommandName": "Get-PnPLargeListOperationStatus" }, { - "Id": 524, "Command": "Get-PnPList", + "Id": 524, "Rank": 1, "CommandName": "Get-PnPList" }, { - "Id": 525, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 525, "Rank": 2, "CommandName": "Get-PnPList" }, { - "Id": 526, "Command": "Get-PnPList -Identity Lists/Announcements", + "Id": 526, "Rank": 3, "CommandName": "Get-PnPList" }, { - "Id": 527, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "Id": 527, "Rank": 4, "CommandName": "Get-PnPList" }, { - "Id": 528, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "Id": 528, "Rank": 5, "CommandName": "Get-PnPList" }, { - "Id": 529, "Command": "Get-PnPListDesign", + "Id": 529, "Rank": 1, "CommandName": "Get-PnPListDesign" }, { - "Id": 530, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 530, "Rank": 2, "CommandName": "Get-PnPListDesign" }, { - "Id": 531, "Command": "Get-PnPListDesign -Identity ListEvent", + "Id": 531, "Rank": 3, "CommandName": "Get-PnPListDesign" }, { - "Id": 532, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "Id": 532, "Rank": 1, "CommandName": "Get-PnPListInformationRightsManagement" }, { - "Id": 533, "Command": "Get-PnPListItem -List Tasks", + "Id": 533, "Rank": 1, "CommandName": "Get-PnPListItem" }, { - "Id": 534, "Command": "Get-PnPListItem -List Tasks -Id 1", + "Id": 534, "Rank": 2, "CommandName": "Get-PnPListItem" }, { - "Id": 535, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "Id": 535, "Rank": 3, "CommandName": "Get-PnPListItem" }, { - "Id": 536, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "Id": 536, "Rank": 4, "CommandName": "Get-PnPListItem" }, { - "Id": 537, "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "Id": 537, "Rank": 5, "CommandName": "Get-PnPListItem" }, { - "Id": 538, "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "Id": 538, "Rank": 6, "CommandName": "Get-PnPListItem" }, { - "Id": 539, "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", + "Id": 539, "Rank": 7, "CommandName": "Get-PnPListItem" }, { - "Id": 540, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "Id": 540, "Rank": 8, "CommandName": "Get-PnPListItem" }, { - "Id": 541, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "Id": 541, "Rank": 9, "CommandName": "Get-PnPListItem" }, { - "Id": 542, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", + "Id": 542, "Rank": 1, "CommandName": "Get-PnPListItemAttachment" }, { - "Id": 543, "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", + "Id": 543, "Rank": 2, "CommandName": "Get-PnPListItemAttachment" }, { - "Id": 544, "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "Id": 544, "Rank": 1, "CommandName": "Get-PnPListItemComment" }, { - "Id": 545, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "Id": 545, "Rank": 1, "CommandName": "Get-PnPListItemPermission" }, { - "Id": 546, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "Id": 546, "Rank": 1, "CommandName": "Get-PnPListItemVersion" }, { - "Id": 547, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "Id": 547, "Rank": 1, "CommandName": "Get-PnPListPermissions" }, { - "Id": 548, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "Id": 548, "Rank": 2, "CommandName": "Get-PnPListPermissions" }, { - "Id": 549, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "Id": 549, "Rank": 1, "CommandName": "Get-PnPListRecordDeclaration" }, { - "Id": 550, "Command": "Get-PnPMasterPage", + "Id": 550, "Rank": 1, "CommandName": "Get-PnPMasterPage" }, { - "Id": 551, "Command": "Get-PnPMessageCenterAnnouncement", + "Id": 551, "Rank": 1, "CommandName": "Get-PnPMessageCenterAnnouncement" }, { - "Id": 552, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "Id": 552, "Rank": 2, "CommandName": "Get-PnPMessageCenterAnnouncement" }, { - "Id": 553, "Command": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 553, "Rank": 1, "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Id": 554, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "Id": 554, "Rank": 2, "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Id": 555, "Command": "Get-PnPMicrosoft365Group", + "Id": 555, "Rank": 1, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Id": 556, "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "Id": 556, "Rank": 2, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Id": 557, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "Id": 557, "Rank": 3, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Id": 558, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "Id": 558, "Rank": 4, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Id": 559, "Command": "Get-PnPMicrosoft365Group -Identity $group", + "Id": 559, "Rank": 5, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Id": 560, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "Id": 560, "Rank": 6, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Id": 561, "Command": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 561, "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Id": 562, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "Id": 562, "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Id": 563, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 563, "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Id": 564, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "Id": 564, "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Id": 565, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "Id": 565, "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Id": 566, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "Id": 566, "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Id": 567, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "Id": 567, "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { - "Id": 568, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "Id": 568, "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { - "Id": 569, "Command": "Get-PnPMicrosoft365GroupSettings", + "Id": 569, "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { - "Id": 570, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "Id": 570, "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { - "Id": 571, "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 571, "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Id": 572, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "Id": 572, "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Id": 573, "Command": "Get-PnPMicrosoft365GroupTeam", + "Id": 573, "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Id": 574, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "Id": 574, "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Id": 575, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 575, "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Id": 576, "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 576, "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Id": 577, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "Id": 577, "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Id": 578, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 578, "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Id": 579, "Command": "Get-PnPNavigationNode", + "Id": 579, "Rank": 1, "CommandName": "Get-PnPNavigationNode" }, { - "Id": 580, "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "Id": 580, "Rank": 2, "CommandName": "Get-PnPNavigationNode" }, { - "Id": 581, "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "Id": 581, "Rank": 3, "CommandName": "Get-PnPNavigationNode" }, { - "Id": 582, "Command": "Get-PnPOrgAssetsLibrary", + "Id": 582, "Rank": 1, "CommandName": "Get-PnPOrgAssetsLibrary" }, { - "Id": 583, "Command": "Get-PnPOrgNewsSite", + "Id": 583, "Rank": 1, "CommandName": "Get-PnPOrgNewsSite" }, { - "Id": 584, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "Id": 584, "Rank": 1, "CommandName": "Get-PnPPage" }, { - "Id": 585, "Command": "Get-PnPPage \"MyPage\"", + "Id": 585, "Rank": 2, "CommandName": "Get-PnPPage" }, { - "Id": 586, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "Id": 586, "Rank": 3, "CommandName": "Get-PnPPage" }, { - "Id": 587, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "Id": 587, "Rank": 4, "CommandName": "Get-PnPPage" }, { - "Id": 588, "Command": "Get-PnPPageComponent -Page Home", + "Id": 588, "Rank": 1, "CommandName": "Get-PnPPageComponent" }, { - "Id": 589, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 589, "Rank": 2, "CommandName": "Get-PnPPageComponent" }, { - "Id": 590, "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "Id": 590, "Rank": 3, "CommandName": "Get-PnPPageComponent" }, { - "Id": 591, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "Id": 591, "Rank": 1, "CommandName": "Get-PnPPlannerBucket" }, { - "Id": 592, "Command": "Get-PnPPlannerConfiguration", + "Id": 592, "Rank": 1, "CommandName": "Get-PnPPlannerConfiguration" }, { - "Id": 593, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "Id": 593, "Rank": 1, "CommandName": "Get-PnPPlannerPlan" }, { - "Id": 594, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "Id": 594, "Rank": 2, "CommandName": "Get-PnPPlannerPlan" }, { - "Id": 595, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "Id": 595, "Rank": 3, "CommandName": "Get-PnPPlannerPlan" }, { - "Id": 596, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Id": 596, "Rank": 1, "CommandName": "Get-PnPPlannerRosterMember" }, { - "Id": 597, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "Id": 597, "Rank": 1, "CommandName": "Get-PnPPlannerRosterPlan" }, { - "Id": 598, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 598, "Rank": 2, "CommandName": "Get-PnPPlannerRosterPlan" }, { - "Id": 599, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "Id": 599, "Rank": 1, "CommandName": "Get-PnPPlannerTask" }, { - "Id": 600, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Id": 600, "Rank": 2, "CommandName": "Get-PnPPlannerTask" }, { - "Id": 601, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Id": 601, "Rank": 3, "CommandName": "Get-PnPPlannerTask" }, { - "Id": 602, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Id": 602, "Rank": 1, "CommandName": "Get-PnPPlannerUserPolicy" }, { - "Id": 603, "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", + "Id": 603, "Rank": 1, "CommandName": "Get-PnPPowerPlatformConnector" }, { - "Id": 604, "Command": "Get-PnPPowerPlatformEnvironment", + "Id": 604, "Rank": 1, "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Id": 605, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "Id": 605, "Rank": 2, "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Id": 606, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "Id": 606, "Rank": 3, "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Id": 607, "Command": "Get-PnPPowerShellTelemetryEnabled", + "Id": 607, "Rank": 1, "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { - "Id": 608, "Command": "Get-PnPPropertyBag", + "Id": 608, "Rank": 1, "CommandName": "Get-PnPPropertyBag" }, { - "Id": 609, "Command": "Get-PnPPropertyBag -Key MyKey", + "Id": 609, "Rank": 2, "CommandName": "Get-PnPPropertyBag" }, { - "Id": 610, "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "Id": 610, "Rank": 3, "CommandName": "Get-PnPPropertyBag" }, { - "Id": 611, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "Id": 611, "Rank": 4, "CommandName": "Get-PnPPropertyBag" }, { - "Id": 612, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "Id": 612, "Rank": 5, "CommandName": "Get-PnPPropertyBag" }, { - "Id": 613, "Command": "Get-PnPPublishingImageRendition", + "Id": 613, "Rank": 1, "CommandName": "Get-PnPPublishingImageRendition" }, { - "Id": 614, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "Id": 614, "Rank": 2, "CommandName": "Get-PnPPublishingImageRendition" }, { - "Id": 615, "Command": "Get-PnPPublishingImageRendition -Identity 2", + "Id": 615, "Rank": 3, "CommandName": "Get-PnPPublishingImageRendition" }, { - "Id": 616, "Command": "Get-PnPRecycleBinItem", + "Id": 616, "Rank": 1, "CommandName": "Get-PnPRecycleBinItem" }, { - "Id": 617, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "Id": 617, "Rank": 2, "CommandName": "Get-PnPRecycleBinItem" }, { - "Id": 618, "Command": "Get-PnPRecycleBinItem -FirstStage", + "Id": 618, "Rank": 3, "CommandName": "Get-PnPRecycleBinItem" }, { - "Id": 619, "Command": "Get-PnPRecycleBinItem -SecondStage", + "Id": 619, "Rank": 4, "CommandName": "Get-PnPRecycleBinItem" }, { - "Id": 620, "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "Id": 620, "Rank": 5, "CommandName": "Get-PnPRecycleBinItem" }, { - "Id": 621, "Command": "Get-PnPRequestAccessEmails", + "Id": 621, "Rank": 1, "CommandName": "Get-PnPRequestAccessEmails" }, { - "Id": 622, "Command": "Get-PnPRetentionLabel", + "Id": 622, "Rank": 1, "CommandName": "Get-PnPRetentionLabel" }, { - "Id": 623, "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", + "Id": 623, "Rank": 2, "CommandName": "Get-PnPRetentionLabel" }, { - "Id": 624, "Command": "Get-PnPRoleDefinition", + "Id": 624, "Rank": 1, "CommandName": "Get-PnPRoleDefinition" }, { - "Id": 625, "Command": "Get-PnPRoleDefinition -Identity Read", + "Id": 625, "Rank": 2, "CommandName": "Get-PnPRoleDefinition" }, { - "Id": 626, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "Id": 626, "Rank": 3, "CommandName": "Get-PnPRoleDefinition" }, { - "Id": 627, "Command": "Get-PnPSearchConfiguration", + "Id": 627, "Rank": 1, "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 628, "Command": "Get-PnPSearchConfiguration -Scope Site", + "Id": 628, "Rank": 2, "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 629, "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "Id": 629, "Rank": 3, "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 630, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 630, "Rank": 4, "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 631, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "Id": 631, "Rank": 5, "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 632, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "Id": 632, "Rank": 6, "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 633, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "Id": 633, "Rank": 7, "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 634, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "Id": 634, "Rank": 8, "CommandName": "Get-PnPSearchConfiguration" }, { - "Id": 635, "Command": "Get-PnPSearchCrawlLog", + "Id": 635, "Rank": 1, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Id": 636, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "Id": 636, "Rank": 2, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Id": 637, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "Id": 637, "Rank": 3, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Id": 638, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "Id": 638, "Rank": 4, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Id": 639, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "Id": 639, "Rank": 5, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Id": 640, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "Id": 640, "Rank": 6, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Id": 641, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "Id": 641, "Rank": 7, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Id": 642, "Command": "Get-PnPSearchSettings", + "Id": 642, "Rank": 1, "CommandName": "Get-PnPSearchSettings" }, { - "Id": 643, "Command": "Get-PnPServiceCurrentHealth", + "Id": 643, "Rank": 1, "CommandName": "Get-PnPServiceCurrentHealth" }, { - "Id": 644, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "Id": 644, "Rank": 2, "CommandName": "Get-PnPServiceCurrentHealth" }, { - "Id": 645, "Command": "Get-PnPServiceHealthIssue", + "Id": 645, "Rank": 1, "CommandName": "Get-PnPServiceHealthIssue" }, { - "Id": 646, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "Id": 646, "Rank": 2, "CommandName": "Get-PnPServiceHealthIssue" }, { - "Id": 647, "Command": "Get-PnPSharePointAddIn", + "Id": 647, "Rank": 1, "CommandName": "Get-PnPSharePointAddIn" }, { - "Id": 648, "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "Id": 648, "Rank": 2, "CommandName": "Get-PnPSharePointAddIn" }, { - "Id": 649, "Command": "Get-PnPSharingForNonOwnersOfSite", + "Id": 649, "Rank": 1, "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { - "Id": 650, "Command": "Get-PnPSite", + "Id": 650, "Rank": 1, "CommandName": "Get-PnPSite" }, { - "Id": 651, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "Id": 651, "Rank": 2, "CommandName": "Get-PnPSite" }, { - "Id": 652, "Command": "Get-PnPSiteClosure", + "Id": 652, "Rank": 1, "CommandName": "Get-PnPSiteClosure" }, { - "Id": 653, "Command": "Get-PnPSiteCollectionAdmin", + "Id": 653, "Rank": 1, "CommandName": "Get-PnPSiteCollectionAdmin" }, { - "Id": 654, "Command": "Get-PnPSiteCollectionAppCatalog", + "Id": 654, "Rank": 1, "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Id": 655, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "Id": 655, "Rank": 2, "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Id": 656, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "Id": 656, "Rank": 3, "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Id": 657, "Command": "Get-PnPSiteCollectionTermStore", + "Id": 657, "Rank": 1, "CommandName": "Get-PnPSiteCollectionTermStore" }, { - "Id": 658, "Command": "Get-PnPSiteDesign", + "Id": 658, "Rank": 1, "CommandName": "Get-PnPSiteDesign" }, { - "Id": 659, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 659, "Rank": 2, "CommandName": "Get-PnPSiteDesign" }, { - "Id": 660, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 660, "Rank": 1, "CommandName": "Get-PnPSiteDesignRights" }, { - "Id": 661, "Command": "Get-PnPSiteDesignRun", + "Id": 661, "Rank": 1, "CommandName": "Get-PnPSiteDesignRun" }, { - "Id": 662, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "Id": 662, "Rank": 2, "CommandName": "Get-PnPSiteDesignRun" }, { - "Id": 663, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "Id": 663, "Rank": 1, "CommandName": "Get-PnPSiteDesignTask" }, { - "Id": 664, "Command": "Get-PnPSiteDesignTask", + "Id": 664, "Rank": 2, "CommandName": "Get-PnPSiteDesignTask" }, { - "Id": 665, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Id": 665, "Rank": 3, "CommandName": "Get-PnPSiteDesignTask" }, { - "Id": 666, "Command": "Get-PnPSiteGroup", + "Id": 666, "Rank": 1, "CommandName": "Get-PnPSiteGroup" }, { - "Id": 667, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Id": 667, "Rank": 2, "CommandName": "Get-PnPSiteGroup" }, { - "Id": 668, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "Id": 668, "Rank": 3, "CommandName": "Get-PnPSiteGroup" }, { - "Id": 669, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Id": 669, "Rank": 4, "CommandName": "Get-PnPSiteGroup" }, { - "Id": 670, "Command": "Get-PnPSitePolicy", + "Id": 670, "Rank": 1, "CommandName": "Get-PnPSitePolicy" }, { - "Id": 671, "Command": "Get-PnPSitePolicy -AllAvailable", + "Id": 671, "Rank": 2, "CommandName": "Get-PnPSitePolicy" }, { - "Id": 672, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "Id": 672, "Rank": 3, "CommandName": "Get-PnPSitePolicy" }, { - "Id": 673, "Command": "Get-PnPSiteScript", + "Id": 673, "Rank": 1, "CommandName": "Get-PnPSiteScript" }, { - "Id": 674, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 674, "Rank": 2, "CommandName": "Get-PnPSiteScript" }, { - "Id": 675, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "Id": 675, "Rank": 1, "CommandName": "Get-PnPSiteScriptFromList" }, { - "Id": 676, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "Id": 676, "Rank": 2, "CommandName": "Get-PnPSiteScriptFromList" }, { - "Id": 677, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "Id": 677, "Rank": 3, "CommandName": "Get-PnPSiteScriptFromList" }, { - "Id": 678, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "Id": 678, "Rank": 1, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Id": 679, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "Id": 679, "Rank": 2, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Id": 680, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "Id": 680, "Rank": 3, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Id": 681, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "Id": 681, "Rank": 4, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Id": 682, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "Id": 682, "Rank": 5, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Id": 683, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "Id": 683, "Rank": 6, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Id": 684, "Command": "Get-PnPSiteSearchQueryResults", + "Id": 684, "Rank": 1, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Id": 685, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "Id": 685, "Rank": 2, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Id": 686, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "Id": 686, "Rank": 3, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Id": 687, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "Id": 687, "Rank": 4, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Id": 688, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "Id": 688, "Rank": 5, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Id": 689, "Command": "Get-PnPSiteSearchQueryResults -All", + "Id": 689, "Rank": 6, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Id": 690, "Command": "Get-PnPSiteSensitivityLabel", + "Id": 690, "Rank": 1, "CommandName": "Get-PnPSiteSensitivityLabel" }, { - "Id": 691, "Command": "Get-PnPSiteTemplate -Out template.pnp", + "Id": 691, "Rank": 1, "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 692, "Command": "Get-PnPSiteTemplate -Out template.xml", + "Id": 692, "Rank": 2, "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 693, "Command": "Get-PnPSiteTemplate -Out template.md", + "Id": 693, "Rank": 3, "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 694, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "Id": 694, "Rank": 4, "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 695, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "Id": 695, "Rank": 5, "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 696, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "Id": 696, "Rank": 6, "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 697, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "Id": 697, "Rank": 7, "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 698, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "Id": 698, "Rank": 8, "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 699, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "Id": 699, "Rank": 9, "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 700, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "Id": 700, "Rank": 10, "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 701, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "Id": 701, "Rank": 11, "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 702, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "Id": 702, "Rank": 12, "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 703, "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", + "Id": 703, "Rank": 13, "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 704, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "Id": 704, "Rank": 14, "CommandName": "Get-PnPSiteTemplate" }, { - "Id": 705, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Id": 705, "Rank": 1, "CommandName": "Get-PnPSiteUserInvitations" }, { - "Id": 706, "Command": "Get-PnPSiteVersionPolicy", + "Id": 706, "Rank": 1, "CommandName": "Get-PnPSiteVersionPolicy" }, { - "Id": 707, "Command": "Get-PnPStorageEntity", + "Id": 707, "Rank": 1, "CommandName": "Get-PnPStorageEntity" }, { - "Id": 708, "Command": "Get-PnPStorageEntity -Key MyKey", + "Id": 708, "Rank": 2, "CommandName": "Get-PnPStorageEntity" }, { - "Id": 709, "Command": "Get-PnPStorageEntity -Scope Site", + "Id": 709, "Rank": 3, "CommandName": "Get-PnPStorageEntity" }, { - "Id": 710, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "Id": 710, "Rank": 4, "CommandName": "Get-PnPStorageEntity" }, { - "Id": 711, "Command": "Get-PnPStoredCredential -Name O365", + "Id": 711, "Rank": 1, "CommandName": "Get-PnPStoredCredential" }, { - "Id": 712, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 712, "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { - "Id": 713, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 713, "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { - "Id": 714, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "Id": 714, "Rank": 1, "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { - "Id": 715, "Command": "Get-PnPSubWeb", + "Id": 715, "Rank": 1, "CommandName": "Get-PnPSubWeb" }, { - "Id": 716, "Command": "Get-PnPSubWeb -Recurse", + "Id": 716, "Rank": 2, "CommandName": "Get-PnPSubWeb" }, { - "Id": 717, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "Id": 717, "Rank": 3, "CommandName": "Get-PnPSubWeb" }, { - "Id": 718, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "Id": 718, "Rank": 4, "CommandName": "Get-PnPSubWeb" }, { - "Id": 719, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "Id": 719, "Rank": 5, "CommandName": "Get-PnPSubWeb" }, { - "Id": 720, "Command": "Get-PnPSyntexModel", + "Id": 720, "Rank": 1, "CommandName": "Get-PnPSyntexModel" }, { - "Id": 721, "Command": "Get-PnPSyntexModel -Identity 1", + "Id": 721, "Rank": 2, "CommandName": "Get-PnPSyntexModel" }, { - "Id": 722, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "Id": 722, "Rank": 3, "CommandName": "Get-PnPSyntexModel" }, { - "Id": 723, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "Id": 723, "Rank": 1, "CommandName": "Get-PnPSyntexModelPublication" }, { - "Id": 724, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "Id": 724, "Rank": 1, "CommandName": "Get-PnPTaxonomyItem" }, { - "Id": 725, "Command": "Get-PnPTeamsApp", + "Id": 725, "Rank": 1, "CommandName": "Get-PnPTeamsApp" }, { - "Id": 726, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "Id": 726, "Rank": 2, "CommandName": "Get-PnPTeamsApp" }, { - "Id": 727, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "Id": 727, "Rank": 3, "CommandName": "Get-PnPTeamsApp" }, { - "Id": 728, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "Id": 728, "Rank": 1, "CommandName": "Get-PnPTeamsChannel" }, { - "Id": 729, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "Id": 729, "Rank": 2, "CommandName": "Get-PnPTeamsChannel" }, { - "Id": 730, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Id": 730, "Rank": 3, "CommandName": "Get-PnPTeamsChannel" }, { - "Id": 731, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "Id": 731, "Rank": 1, "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { - "Id": 732, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Id": 732, "Rank": 2, "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { - "Id": 733, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "Id": 733, "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessage" }, { - "Id": 734, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "Id": 734, "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessage" }, { - "Id": 735, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "Id": 735, "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessageReply" }, { - "Id": 736, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "Id": 736, "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessageReply" }, { - "Id": 737, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "Id": 737, "Rank": 1, "CommandName": "Get-PnPTeamsChannelUser" }, { - "Id": 738, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "Id": 738, "Rank": 2, "CommandName": "Get-PnPTeamsChannelUser" }, { - "Id": 739, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", + "Id": 739, "Rank": 3, "CommandName": "Get-PnPTeamsChannelUser" }, { - "Id": 740, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Id": 740, "Rank": 4, "CommandName": "Get-PnPTeamsChannelUser" }, { - "Id": 741, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "Id": 741, "Rank": 1, "CommandName": "Get-PnPTeamsPrimaryChannel" }, { - "Id": 742, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "Id": 742, "Rank": 2, "CommandName": "Get-PnPTeamsPrimaryChannel" }, { - "Id": 743, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "Id": 743, "Rank": 1, "CommandName": "Get-PnPTeamsTab" }, { - "Id": 744, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "Id": 744, "Rank": 2, "CommandName": "Get-PnPTeamsTab" }, { - "Id": 745, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", + "Id": 745, "Rank": 3, "CommandName": "Get-PnPTeamsTab" }, { - "Id": 746, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "Id": 746, "Rank": 4, "CommandName": "Get-PnPTeamsTab" }, { - "Id": 747, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "Id": 747, "Rank": 5, "CommandName": "Get-PnPTeamsTab" }, { - "Id": 748, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Id": 748, "Rank": 1, "CommandName": "Get-PnPTeamsTag" }, { - "Id": 749, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Id": 749, "Rank": 2, "CommandName": "Get-PnPTeamsTag" }, { - "Id": 750, "Command": "Get-PnPTeamsTeam", + "Id": 750, "Rank": 1, "CommandName": "Get-PnPTeamsTeam" }, { - "Id": 751, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "Id": 751, "Rank": 2, "CommandName": "Get-PnPTeamsTeam" }, { - "Id": 752, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "Id": 752, "Rank": 3, "CommandName": "Get-PnPTeamsTeam" }, { - "Id": 753, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "Id": 753, "Rank": 4, "CommandName": "Get-PnPTeamsTeam" }, { - "Id": 754, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "Id": 754, "Rank": 5, "CommandName": "Get-PnPTeamsTeam" }, { - "Id": 755, "Command": "Get-PnPTeamsUser -Team MyTeam", + "Id": 755, "Rank": 1, "CommandName": "Get-PnPTeamsUser" }, { - "Id": 756, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "Id": 756, "Rank": 2, "CommandName": "Get-PnPTeamsUser" }, { - "Id": 757, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "Id": 757, "Rank": 3, "CommandName": "Get-PnPTeamsUser" }, { - "Id": 758, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "Id": 758, "Rank": 4, "CommandName": "Get-PnPTeamsUser" }, { - "Id": 759, "Command": "Get-PnPTemporarilyDisableAppBar", + "Id": 759, "Rank": 1, "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { - "Id": 760, "Command": "Get-PnPTenant", + "Id": 760, "Rank": 1, "CommandName": "Get-PnPTenant" }, { - "Id": 761, "Command": "Get-PnPTenantAppCatalogUrl", + "Id": 761, "Rank": 1, "CommandName": "Get-PnPTenantAppCatalogUrl" }, { - "Id": 762, "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "Id": 762, "Rank": 1, "CommandName": "Get-PnPTenantCdnEnabled" }, { - "Id": 763, "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "Id": 763, "Rank": 1, "CommandName": "Get-PnPTenantCdnOrigin" }, { - "Id": 764, "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "Id": 764, "Rank": 1, "CommandName": "Get-PnPTenantCdnPolicies" }, { - "Id": 765, "Command": "Get-PnPTenantDeletedSite", + "Id": 765, "Rank": 1, "CommandName": "Get-PnPTenantDeletedSite" }, { - "Id": 766, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 766, "Rank": 2, "CommandName": "Get-PnPTenantDeletedSite" }, { - "Id": 767, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "Id": 767, "Rank": 3, "CommandName": "Get-PnPTenantDeletedSite" }, { - "Id": 768, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "Id": 768, "Rank": 4, "CommandName": "Get-PnPTenantDeletedSite" }, { - "Id": 769, "Command": "Get-PnPTenantId", + "Id": 769, "Rank": 1, "CommandName": "Get-PnPTenantId" }, { - "Id": 770, "Command": "Get-PnPTenantId contoso", + "Id": 770, "Rank": 2, "CommandName": "Get-PnPTenantId" }, { - "Id": 771, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "Id": 771, "Rank": 3, "CommandName": "Get-PnPTenantId" }, { - "Id": 772, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "Id": 772, "Rank": 4, "CommandName": "Get-PnPTenantId" }, { - "Id": 773, "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", + "Id": 773, "Rank": 1, "CommandName": "Get-PnPTenantInfo" }, { - "Id": 774, "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", + "Id": 774, "Rank": 2, "CommandName": "Get-PnPTenantInfo" }, { - "Id": 775, "Command": "Get-PnPTenantInfo", + "Id": 775, "Rank": 3, "CommandName": "Get-PnPTenantInfo" }, { - "Id": 776, "Command": "Get-PnPTenantInfo -CurrentTenant", + "Id": 776, "Rank": 4, "CommandName": "Get-PnPTenantInfo" }, { - "Id": 777, "Command": "Get-PnPTenantInstance", + "Id": 777, "Rank": 1, "CommandName": "Get-PnPTenantInstance" }, { - "Id": 778, "Command": "Get-PnPTenantRecycleBinItem", + "Id": 778, "Rank": 1, "CommandName": "Get-PnPTenantRecycleBinItem" }, { - "Id": 779, "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "Id": 779, "Rank": 1, "CommandName": "Get-PnPTenantSequence" }, { - "Id": 780, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "Id": 780, "Rank": 2, "CommandName": "Get-PnPTenantSequence" }, { - "Id": 781, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "Id": 781, "Rank": 1, "CommandName": "Get-PnPTenantSequenceSite" }, { - "Id": 782, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "Id": 782, "Rank": 2, "CommandName": "Get-PnPTenantSequenceSite" }, { - "Id": 783, "Command": "Get-PnPTenantSite", + "Id": 783, "Rank": 1, "CommandName": "Get-PnPTenantSite" }, { - "Id": 784, "Command": "Get-PnPTenantSite -Detailed", + "Id": 784, "Rank": 2, "CommandName": "Get-PnPTenantSite" }, { - "Id": 785, "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "Id": 785, "Rank": 3, "CommandName": "Get-PnPTenantSite" }, { - "Id": 786, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "Id": 786, "Rank": 4, "CommandName": "Get-PnPTenantSite" }, { - "Id": 787, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "Id": 787, "Rank": 5, "CommandName": "Get-PnPTenantSite" }, { - "Id": 788, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "Id": 788, "Rank": 6, "CommandName": "Get-PnPTenantSite" }, { - "Id": 789, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "Id": 789, "Rank": 7, "CommandName": "Get-PnPTenantSite" }, { - "Id": 790, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "Id": 790, "Rank": 8, "CommandName": "Get-PnPTenantSite" }, { - "Id": 791, "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "Id": 791, "Rank": 9, "CommandName": "Get-PnPTenantSite" }, { - "Id": 792, "Command": "Get-PnPTenantSyncClientRestriction", + "Id": 792, "Rank": 1, "CommandName": "Get-PnPTenantSyncClientRestriction" }, { - "Id": 793, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "Id": 793, "Rank": 1, "CommandName": "Get-PnPTenantTemplate" }, { - "Id": 794, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "Id": 794, "Rank": 2, "CommandName": "Get-PnPTenantTemplate" }, { - "Id": 795, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "Id": 795, "Rank": 3, "CommandName": "Get-PnPTenantTemplate" }, { - "Id": 796, "Command": "Get-PnPTenantTheme", + "Id": 796, "Rank": 1, "CommandName": "Get-PnPTenantTheme" }, { - "Id": 797, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Id": 797, "Rank": 2, "CommandName": "Get-PnPTenantTheme" }, { - "Id": 798, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "Id": 798, "Rank": 3, "CommandName": "Get-PnPTenantTheme" }, { - "Id": 799, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 799, "Rank": 1, "CommandName": "Get-PnPTerm" }, { - "Id": 800, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 800, "Rank": 2, "CommandName": "Get-PnPTerm" }, { - "Id": 801, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 801, "Rank": 3, "CommandName": "Get-PnPTerm" }, { - "Id": 802, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "Id": 802, "Rank": 4, "CommandName": "Get-PnPTerm" }, { - "Id": 803, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "Id": 803, "Rank": 5, "CommandName": "Get-PnPTerm" }, { - "Id": 804, "Command": "Get-PnPTermGroup", + "Id": 804, "Rank": 1, "CommandName": "Get-PnPTermGroup" }, { - "Id": 805, "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "Id": 805, "Rank": 2, "CommandName": "Get-PnPTermGroup" }, { - "Id": 806, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "Id": 806, "Rank": 3, "CommandName": "Get-PnPTermGroup" }, { - "Id": 807, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "Id": 807, "Rank": 1, "CommandName": "Get-PnPTermLabel" }, { - "Id": 808, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "Id": 808, "Rank": 2, "CommandName": "Get-PnPTermLabel" }, { - "Id": 809, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 809, "Rank": 3, "CommandName": "Get-PnPTermLabel" }, { - "Id": 810, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "Id": 810, "Rank": 1, "CommandName": "Get-PnPTermSet" }, { - "Id": 811, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "Id": 811, "Rank": 2, "CommandName": "Get-PnPTermSet" }, { - "Id": 812, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "Id": 812, "Rank": 3, "CommandName": "Get-PnPTermSet" }, { - "Id": 813, "Command": "Get-PnPTheme", + "Id": 813, "Rank": 1, "CommandName": "Get-PnPTheme" }, { - "Id": 814, "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "Id": 814, "Rank": 2, "CommandName": "Get-PnPTheme" }, { - "Id": 815, "Command": "Get-PnPTimeZoneId", + "Id": 815, "Rank": 1, "CommandName": "Get-PnPTimeZoneId" }, { - "Id": 816, "Command": "Get-PnPTimeZoneId -Match Stockholm", + "Id": 816, "Rank": 2, "CommandName": "Get-PnPTimeZoneId" }, { - "Id": 817, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "Id": 817, "Rank": 1, "CommandName": "Get-PnPUnfurlLink" }, { - "Id": 818, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "Id": 818, "Rank": 1, "CommandName": "Get-PnPUnifiedAuditLog" }, { - "Id": 819, "Command": "Get-PnPUPABulkImportStatus", + "Id": 819, "Rank": 1, "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Id": 820, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "Id": 820, "Rank": 2, "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Id": 821, "Command": "Get-PnPUPABulkImportStatus -JobId ", + "Id": 821, "Rank": 3, "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Id": 822, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "Id": 822, "Rank": 4, "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Id": 823, "Command": "Get-PnPUser", + "Id": 823, "Rank": 1, "CommandName": "Get-PnPUser" }, { - "Id": 824, "Command": "Get-PnPUser -Identity 23", + "Id": 824, "Rank": 2, "CommandName": "Get-PnPUser" }, { - "Id": 825, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "Id": 825, "Rank": 3, "CommandName": "Get-PnPUser" }, { - "Id": 826, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "Id": 826, "Rank": 4, "CommandName": "Get-PnPUser" }, { - "Id": 827, "Command": "Get-PnPUser -WithRightsAssigned", + "Id": 827, "Rank": 5, "CommandName": "Get-PnPUser" }, { - "Id": 828, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "Id": 828, "Rank": 6, "CommandName": "Get-PnPUser" }, { - "Id": 829, "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "Id": 829, "Rank": 7, "CommandName": "Get-PnPUser" }, { - "Id": 830, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "Id": 830, "Rank": 1, "CommandName": "Get-PnPUserOneDriveQuota" }, { - "Id": 831, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "Id": 831, "Rank": 1, "CommandName": "Get-PnPUserProfileProperty" }, { - "Id": 832, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "Id": 832, "Rank": 2, "CommandName": "Get-PnPUserProfileProperty" }, { - "Id": 833, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "Id": 833, "Rank": 3, "CommandName": "Get-PnPUserProfileProperty" }, { - "Id": 834, "Command": "Get-PnPView -List \"Demo List\"", + "Id": 834, "Rank": 1, "CommandName": "Get-PnPView" }, { - "Id": 835, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "Id": 835, "Rank": 2, "CommandName": "Get-PnPView" }, { - "Id": 836, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "Id": 836, "Rank": 3, "CommandName": "Get-PnPView" }, { - "Id": 837, "Command": "Get-PnPVivaConnectionsDashboardACE", + "Id": 837, "Rank": 1, "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { - "Id": 838, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Id": 838, "Rank": 2, "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { - "Id": 839, "Command": "Get-PnPWeb", + "Id": 839, "Rank": 1, "CommandName": "Get-PnPWeb" }, { - "Id": 840, "Command": "Get-PnPWebHeader", + "Id": 840, "Rank": 1, "CommandName": "Get-PnPWebHeader" }, { - "Id": 841, "Command": "Get-PnPWebhookSubscriptions -List MyList", + "Id": 841, "Rank": 1, "CommandName": "Get-PnPWebhookSubscriptions" }, { - "Id": 842, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "Id": 842, "Rank": 1, "CommandName": "Get-PnPWebPart" }, { - "Id": 843, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 843, "Rank": 2, "CommandName": "Get-PnPWebPart" }, { - "Id": 844, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "Id": 844, "Rank": 1, "CommandName": "Get-PnPWebPartProperty" }, { - "Id": 845, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "Id": 845, "Rank": 2, "CommandName": "Get-PnPWebPartProperty" }, { - "Id": 846, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 846, "Rank": 1, "CommandName": "Get-PnPWebPartXml" }, { - "Id": 847, "Command": "Get-PnPWebTemplates", + "Id": 847, "Rank": 1, "CommandName": "Get-PnPWebTemplates" }, { - "Id": 848, "Command": "Get-PnPWebTemplates -LCID 1033", + "Id": 848, "Rank": 2, "CommandName": "Get-PnPWebTemplates" }, { - "Id": 849, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "Id": 849, "Rank": 3, "CommandName": "Get-PnPWebTemplates" }, { - "Id": 850, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "Id": 850, "Rank": 1, "CommandName": "Get-PnPWikiPageContent" }, { - "Id": 851, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", + "Id": 851, "Rank": 1, "CommandName": "Grant-PnPAzureADAppSitePermission" }, { - "Id": 852, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", + "Id": 852, "Rank": 2, "CommandName": "Grant-PnPAzureADAppSitePermission" }, { - "Id": 853, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 853, "Rank": 1, "CommandName": "Grant-PnPHubSiteRights" }, { - "Id": 854, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 854, "Rank": 1, "CommandName": "Grant-PnPSiteDesignRights" }, { - "Id": 855, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Id": 855, "Rank": 1, "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { - "Id": 856, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "Id": 856, "Rank": 1, "CommandName": "Import-PnPTaxonomy" }, { - "Id": 857, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "Id": 857, "Rank": 2, "CommandName": "Import-PnPTaxonomy" }, { - "Id": 858, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "Id": 858, "Rank": 3, "CommandName": "Import-PnPTaxonomy" }, { - "Id": 859, "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "Id": 859, "Rank": 1, "CommandName": "Import-PnPTermGroupFromXml" }, { - "Id": 860, "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "Id": 860, "Rank": 2, "CommandName": "Import-PnPTermGroupFromXml" }, { - "Id": 861, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "Id": 861, "Rank": 1, "CommandName": "Import-PnPTermSet" }, { - "Id": 862, "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", + "Id": 862, "Rank": 2, "CommandName": "Import-PnPTermSet" }, { - "Id": 863, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", + "Id": 863, "Rank": 3, "CommandName": "Import-PnPTermSet" }, { - "Id": 864, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 864, "Rank": 1, "CommandName": "Install-PnPApp" }, { - "Id": 865, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 865, "Rank": 2, "CommandName": "Install-PnPApp" }, { - "Id": 866, "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", + "Id": 866, "Rank": 1, "CommandName": "Invoke-PnPGraphMethod" }, { - "Id": 867, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "Id": 867, "Rank": 2, "CommandName": "Invoke-PnPGraphMethod" }, { - "Id": 868, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "Id": 868, "Rank": 3, "CommandName": "Invoke-PnPGraphMethod" }, { - "Id": 869, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "Id": 869, "Rank": 4, "CommandName": "Invoke-PnPGraphMethod" }, { - "Id": 870, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "Id": 870, "Rank": 5, "CommandName": "Invoke-PnPGraphMethod" }, { - "Id": 871, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", + "Id": 871, "Rank": 6, "CommandName": "Invoke-PnPGraphMethod" }, { - "Id": 872, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"", + "Id": 872, "Rank": 7, "CommandName": "Invoke-PnPGraphMethod" }, { - "Id": 873, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 873, "Rank": 1, "CommandName": "Invoke-PnPListDesign" }, { - "Id": 874, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Id": 874, "Rank": 2, "CommandName": "Invoke-PnPListDesign" }, { - "Id": 875, "Command": "Invoke-PnPQuery -RetryCount 5", + "Id": 875, "Rank": 1, "CommandName": "Invoke-PnPQuery" }, { - "Id": 876, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 876, "Rank": 1, "CommandName": "Invoke-PnPSiteDesign" }, { - "Id": 877, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Id": 877, "Rank": 2, "CommandName": "Invoke-PnPSiteDesign" }, { - "Id": 878, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "Id": 878, "Rank": 1, "CommandName": "Invoke-PnPSiteScript" }, { - "Id": 879, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "Id": 879, "Rank": 1, "CommandName": "Invoke-PnPSiteSwap" }, { - "Id": 880, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "Id": 880, "Rank": 2, "CommandName": "Invoke-PnPSiteSwap" }, { - "Id": 881, "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", + "Id": 881, "Rank": 3, "CommandName": "Invoke-PnPSiteSwap" }, { - "Id": 882, "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "Id": 882, "Rank": 1, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 883, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "Id": 883, "Rank": 2, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 884, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Id": 884, "Rank": 3, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 885, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "Id": 885, "Rank": 4, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 886, "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "Id": 886, "Rank": 5, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 887, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "Id": 887, "Rank": 6, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 888, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "Id": 888, "Rank": 7, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 889, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "Id": 889, "Rank": 8, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Id": 890, "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "Id": 890, "Rank": 1, "CommandName": "Invoke-PnPSPRestMethod" }, { - "Id": 891, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "Id": 891, "Rank": 1, "CommandName": "Invoke-PnPTenantTemplate" }, { - "Id": 892, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "Id": 892, "Rank": 2, "CommandName": "Invoke-PnPTenantTemplate" }, { - "Id": 893, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Id": 893, "Rank": 3, "CommandName": "Invoke-PnPTenantTemplate" }, { - "Id": 894, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "Id": 894, "Rank": 1, "CommandName": "Invoke-PnPWebAction" }, { - "Id": 895, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "Id": 895, "Rank": 2, "CommandName": "Invoke-PnPWebAction" }, { - "Id": 896, "Command": "Measure-PnPList \"Documents\"", + "Id": 896, "Rank": 1, "CommandName": "Measure-PnPList" }, { - "Id": 897, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "Id": 897, "Rank": 2, "CommandName": "Measure-PnPList" }, { - "Id": 898, "Command": "Measure-PnPWeb", + "Id": 898, "Rank": 1, "CommandName": "Measure-PnPWeb" }, { - "Id": 899, "Command": "Measure-PnPWeb $web -Recursive", + "Id": 899, "Rank": 2, "CommandName": "Measure-PnPWeb" }, { - "Id": 900, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "Id": 900, "Rank": 1, "CommandName": "Move-PnPFile" }, { - "Id": 901, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "Id": 901, "Rank": 2, "CommandName": "Move-PnPFile" }, { - "Id": 902, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Id": 902, "Rank": 3, "CommandName": "Move-PnPFile" }, { - "Id": 903, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Id": 903, "Rank": 4, "CommandName": "Move-PnPFile" }, { - "Id": 904, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "Id": 904, "Rank": 1, "CommandName": "Move-PnPFolder" }, { - "Id": 905, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "Id": 905, "Rank": 2, "CommandName": "Move-PnPFolder" }, { - "Id": 906, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "Id": 906, "Rank": 1, "CommandName": "Move-PnPListItemToRecycleBin" }, { - "Id": 907, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "Id": 907, "Rank": 1, "CommandName": "Move-PnPPageComponent" }, { - "Id": 908, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "Id": 908, "Rank": 2, "CommandName": "Move-PnPPageComponent" }, { - "Id": 909, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "Id": 909, "Rank": 3, "CommandName": "Move-PnPPageComponent" }, { - "Id": 910, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "Id": 910, "Rank": 4, "CommandName": "Move-PnPPageComponent" }, { - "Id": 911, "Command": "Move-PnPRecycleBinItem", + "Id": 911, "Rank": 1, "CommandName": "Move-PnpRecycleBinItem" }, { - "Id": 912, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "Id": 912, "Rank": 2, "CommandName": "Move-PnpRecycleBinItem" }, { - "Id": 913, "Command": "Move-PnPRecycleBinItem -Force", + "Id": 913, "Rank": 3, "CommandName": "Move-PnpRecycleBinItem" }, { - "Id": 914, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", + "Id": 914, "Rank": 1, "CommandName": "Move-PnPTerm" }, { - "Id": 915, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "Id": 915, "Rank": 2, "CommandName": "Move-PnPTerm" }, { - "Id": 916, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "Id": 916, "Rank": 3, "CommandName": "Move-PnPTerm" }, { - "Id": 917, "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", + "Id": 917, "Rank": 1, "CommandName": "Move-PnPTermSet" }, { - "Id": 918, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "Id": 918, "Rank": 2, "CommandName": "Move-PnPTermSet" }, { - "Id": 919, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "Id": 919, "Rank": 1, "CommandName": "New-PnPAzureADGroup" }, { - "Id": 920, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "Id": 920, "Rank": 2, "CommandName": "New-PnPAzureADGroup" }, { - "Id": 921, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "Id": 921, "Rank": 3, "CommandName": "New-PnPAzureADGroup" }, { - "Id": 922, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "Id": 922, "Rank": 1, "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Id": 923, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "Id": 923, "Rank": 2, "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Id": 924, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "Id": 924, "Rank": 3, "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Id": 925, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "Id": 925, "Rank": 1, "CommandName": "New-PnPAzureCertificate" }, { - "Id": 926, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "Id": 926, "Rank": 2, "CommandName": "New-PnPAzureCertificate" }, { - "Id": 927, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "Id": 927, "Rank": 3, "CommandName": "New-PnPAzureCertificate" }, { - "Id": 928, "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()", + "Id": 928, "Rank": 1, "CommandName": "New-PnPGraphSubscription" }, { - "Id": 929, "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", + "Id": 929, "Rank": 2, "CommandName": "New-PnPGraphSubscription" }, { - "Id": 930, "Command": "New-PnPGroup -Title \"My Site Users\"", + "Id": 930, "Rank": 1, "CommandName": "New-PnPGroup" }, { - "Id": 931, "Command": "New-PnPList -Title Announcements -Template Announcements", + "Id": 931, "Rank": 1, "CommandName": "New-PnPList" }, { - "Id": 932, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "Id": 932, "Rank": 2, "CommandName": "New-PnPList" }, { - "Id": 933, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "Id": 933, "Rank": 3, "CommandName": "New-PnPList" }, { - "Id": 934, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "Id": 934, "Rank": 1, "CommandName": "New-PnPMicrosoft365Group" }, { - "Id": 935, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "Id": 935, "Rank": 2, "CommandName": "New-PnPMicrosoft365Group" }, { - "Id": 936, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "Id": 936, "Rank": 3, "CommandName": "New-PnPMicrosoft365Group" }, { - "Id": 937, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "Id": 937, "Rank": 4, "CommandName": "New-PnPMicrosoft365Group" }, { - "Id": 938, "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Id": 938, "Rank": 5, "CommandName": "New-PnPMicrosoft365Group" }, { - "Id": 939, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 939, "Rank": 6, "CommandName": "New-PnPMicrosoft365Group" }, { - "Id": 940, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", + "Id": 940, "Rank": 7, "CommandName": "New-PnPMicrosoft365Group" }, { - "Id": 941, "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", + "Id": 941, "Rank": 1, "CommandName": "New-PnPMicrosoft365GroupSettings" }, { - "Id": 942, "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", + "Id": 942, "Rank": 2, "CommandName": "New-PnPMicrosoft365GroupSettings" }, { - "Id": 943, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "Id": 943, "Rank": 1, "CommandName": "New-PnPPersonalSite" }, { - "Id": 944, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "Id": 944, "Rank": 1, "CommandName": "New-PnPPlannerPlan" }, { - "Id": 945, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "Id": 945, "Rank": 1, "CommandName": "New-PnPSdnProvider" }, { - "Id": 946, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Id": 946, "Rank": 1, "CommandName": "New-PnPSite" }, { - "Id": 947, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "Id": 947, "Rank": 2, "CommandName": "New-PnPSite" }, { - "Id": 948, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "Id": 948, "Rank": 3, "CommandName": "New-PnPSite" }, { - "Id": 949, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Id": 949, "Rank": 4, "CommandName": "New-PnPSite" }, { - "Id": 950, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Id": 950, "Rank": 5, "CommandName": "New-PnPSite" }, { - "Id": 951, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Id": 951, "Rank": 6, "CommandName": "New-PnPSite" }, { - "Id": 952, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "Id": 952, "Rank": 7, "CommandName": "New-PnPSite" }, { - "Id": 953, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "Id": 953, "Rank": 8, "CommandName": "New-PnPSite" }, { - "Id": 954, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "Id": 954, "Rank": 9, "CommandName": "New-PnPSite" }, { - "Id": 955, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "Id": 955, "Rank": 10, "CommandName": "New-PnPSite" }, { - "Id": 956, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Id": 956, "Rank": 11, "CommandName": "New-PnPSite" }, { - "Id": 957, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "Id": 957, "Rank": 12, "CommandName": "New-PnPSite" }, { - "Id": 958, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Id": 958, "Rank": 13, "CommandName": "New-PnPSite" }, { - "Id": 959, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Id": 959, "Rank": 14, "CommandName": "New-PnPSite" }, { - "Id": 960, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Id": 960, "Rank": 15, "CommandName": "New-PnPSite" }, { - "Id": 961, "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "Id": 961, "Rank": 16, "CommandName": "New-PnPSite" }, { - "Id": 962, "Command": "New-PnPSiteCollectionTermStore", + "Id": 962, "Rank": 1, "CommandName": "New-PnPSiteCollectionTermStore" }, { - "Id": 963, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "Id": 963, "Rank": 1, "CommandName": "New-PnPSiteGroup" }, { - "Id": 964, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "Id": 964, "Rank": 2, "CommandName": "New-PnPSiteGroup" }, { - "Id": 965, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "Id": 965, "Rank": 1, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 966, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "Id": 966, "Rank": 2, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 967, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "Id": 967, "Rank": 3, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 968, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "Id": 968, "Rank": 4, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 969, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", + "Id": 969, "Rank": 5, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 970, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 970, "Rank": 6, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 971, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "Id": 971, "Rank": 7, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 972, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "Id": 972, "Rank": 8, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Id": 973, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "Id": 973, "Rank": 1, "CommandName": "New-PnPTeamsApp" }, { - "Id": 974, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "Id": 974, "Rank": 1, "CommandName": "New-PnPTeamsTeam" }, { - "Id": 975, "Command": "New-PnPTeamsTeam -GroupId $groupId", + "Id": 975, "Rank": 2, "CommandName": "New-PnPTeamsTeam" }, { - "Id": 976, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "Id": 976, "Rank": 3, "CommandName": "New-PnPTeamsTeam" }, { - "Id": 977, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Id": 977, "Rank": 4, "CommandName": "New-PnPTeamsTeam" }, { - "Id": 978, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", + "Id": 978, "Rank": 5, "CommandName": "New-PnPTeamsTeam" }, { - "Id": 979, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\" -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 979, "Rank": 6, "CommandName": "New-PnPTeamsTeam" }, { - "Id": 980, "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", + "Id": 980, "Rank": 1, "CommandName": "New-PnPTenantSite" }, { - "Id": 981, "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "Id": 981, "Rank": 2, "CommandName": "New-PnPTenantSite" }, { - "Id": 982, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "Id": 982, "Rank": 1, "CommandName": "New-PnPTerm" }, { - "Id": 983, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 983, "Rank": 2, "CommandName": "New-PnPTerm" }, { - "Id": 984, "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "Id": 984, "Rank": 1, "CommandName": "New-PnPTermGroup" }, { - "Id": 985, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "Id": 985, "Rank": 1, "CommandName": "New-PnPTermLabel" }, { - "Id": 986, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "Id": 986, "Rank": 1, "CommandName": "New-PnPTermSet" }, { - "Id": 987, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "Id": 987, "Rank": 1, "CommandName": "New-PnPUPABulkImportJob" }, { - "Id": 988, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", + "Id": 988, "Rank": 2, "CommandName": "New-PnPUPABulkImportJob" }, { - "Id": 989, "Command": "New-PnPUser -LoginName user@company.com", + "Id": 989, "Rank": 1, "CommandName": "New-PnPUser" }, { - "Id": 990, "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", + "Id": 990, "Rank": 1, "CommandName": "New-PnPWeb" }, { - "Id": 991, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 991, "Rank": 1, "CommandName": "Publish-PnPApp" }, { - "Id": 992, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "Id": 992, "Rank": 2, "CommandName": "Publish-PnPApp" }, { - "Id": 993, "Command": "Publish-PnPCompanyApp -PortalUrl https://contoso.sharepoint.com/sites/portal -AppName \"Contoso Portal\" -CompanyName \"Contoso\" -CompanyWebSite \"https://www.contoso.com\" -ColoredIconPath ./coloricon.png -OutlineIconPath ./outlinedicon", + "Id": 993, "Rank": 1, "CommandName": "Publish-PnPCompanyApp" }, { - "Id": 994, "Command": "Publish-PnPContentType -ContentType 0x0101", + "Id": 994, "Rank": 1, "CommandName": "Publish-PnPContentType" }, { - "Id": 995, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Id": 995, "Rank": 1, "CommandName": "Publish-PnPSyntexModel" }, { - "Id": 996, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", + "Id": 996, "Rank": 2, "CommandName": "Publish-PnPSyntexModel" }, { - "Id": 997, "Command": "Read-PnPSiteTemplate -Path template.pnp", + "Id": 997, "Rank": 1, "CommandName": "Read-PnPSiteTemplate" }, { - "Id": 998, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "Id": 998, "Rank": 2, "CommandName": "Read-PnPSiteTemplate" }, { - "Id": 999, "Command": "Read-PnPSiteTemplate -Xml $xml", + "Id": 999, "Rank": 3, "CommandName": "Read-PnPSiteTemplate" }, { - "Id": 1000, "Command": "Read-PnPTenantTemplate -Path template.pnp", + "Id": 1000, "Rank": 1, "CommandName": "Read-PnPTenantTemplate" }, { - "Id": 1001, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "Id": 1001, "Rank": 1, "CommandName": "Register-PnPAppCatalogSite" }, { - "Id": 1002, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", + "Id": 1002, "Rank": 1, "CommandName": "Register-PnPAzureADApp" }, { - "Id": 1003, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\")", + "Id": 1003, "Rank": 2, "CommandName": "Register-PnPAzureADApp" }, { - "Id": 1004, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -GraphApplicationPermissions \"User.Read.All\" -SharePointApplicationPermissions \"Sites.Read.All\" -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", + "Id": 1004, "Rank": 3, "CommandName": "Register-PnPAzureADApp" }, { - "Id": 1005, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -OutPath c:\\ -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", + "Id": 1005, "Rank": 4, "CommandName": "Register-PnPAzureADApp" }, { - "Id": 1006, "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", + "Id": 1006, "Rank": 5, "CommandName": "Register-PnPAzureADApp" }, { - "Id": 1007, "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", + "Id": 1007, "Rank": 6, "CommandName": "Register-PnPAzureADApp" }, { - "Id": 1008, "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\") -LogoFilePath c:\\logo.png", + "Id": 1008, "Rank": 7, "CommandName": "Register-PnPAzureADApp" }, { - "Id": 1009, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Id": 1009, "Rank": 1, "CommandName": "Register-PnPHubSite" }, { - "Id": 1010, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "Id": 1010, "Rank": 2, "CommandName": "Register-PnPHubSite" }, { - "Id": 1011, "Command": "Register-PnPManagementShellAccess", + "Id": 1011, "Rank": 1, "CommandName": "Register-PnPManagementShellAccess" }, { - "Id": 1012, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "Id": 1012, "Rank": 2, "CommandName": "Register-PnPManagementShellAccess" }, { - "Id": 1013, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "Id": 1013, "Rank": 3, "CommandName": "Register-PnPManagementShellAccess" }, { - "Id": 1014, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "Id": 1014, "Rank": 1, "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { - "Id": 1015, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "Id": 1015, "Rank": 2, "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { - "Id": 1016, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "Id": 1016, "Rank": 1, "CommandName": "Remove-PnPAlert" }, { - "Id": 1017, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Id": 1017, "Rank": 2, "CommandName": "Remove-PnPAlert" }, { - "Id": 1018, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1018, "Rank": 1, "CommandName": "Remove-PnPApp" }, { - "Id": 1019, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1019, "Rank": 2, "CommandName": "Remove-PnPApp" }, { - "Id": 1020, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1020, "Rank": 1, "CommandName": "Remove-PnPApplicationCustomizer" }, { - "Id": 1021, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Id": 1021, "Rank": 2, "CommandName": "Remove-PnPApplicationCustomizer" }, { - "Id": 1022, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "Id": 1022, "Rank": 1, "CommandName": "Remove-PnPAvailableSiteClassification" }, { - "Id": 1023, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Id": 1023, "Rank": 2, "CommandName": "Remove-PnPAvailableSiteClassification" }, { - "Id": 1024, "Command": "Remove-PnPAzureADApp -Identity MyApp", + "Id": 1024, "Rank": 1, "CommandName": "Remove-PnPAzureADApp" }, { - "Id": 1025, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 1025, "Rank": 2, "CommandName": "Remove-PnPAzureADApp" }, { - "Id": 1026, "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "Id": 1026, "Rank": 1, "CommandName": "Remove-PnPAzureADGroup" }, { - "Id": 1027, "Command": "Remove-PnPAzureADGroup -Identity $group", + "Id": 1027, "Rank": 2, "CommandName": "Remove-PnPAzureADGroup" }, { - "Id": 1028, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1028, "Rank": 1, "CommandName": "Remove-PnPAzureADGroupMember" }, { - "Id": 1029, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1029, "Rank": 1, "CommandName": "Remove-PnPAzureADGroupOwner" }, { - "Id": 1030, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "Id": 1030, "Rank": 1, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Id": 1031, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "Id": 1031, "Rank": 2, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Id": 1032, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 1032, "Rank": 3, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Id": 1033, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Id": 1033, "Rank": 4, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Id": 1034, "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "Id": 1034, "Rank": 1, "CommandName": "Remove-PnPContentType" }, { - "Id": 1035, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "Id": 1035, "Rank": 2, "CommandName": "Remove-PnPContentType" }, { - "Id": 1036, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Id": 1036, "Rank": 1, "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { - "Id": 1037, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Id": 1037, "Rank": 2, "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { - "Id": 1038, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "Id": 1038, "Rank": 1, "CommandName": "Remove-PnPContentTypeFromList" }, { - "Id": 1039, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1039, "Rank": 1, "CommandName": "Remove-PnPCustomAction" }, { - "Id": 1040, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Id": 1040, "Rank": 2, "CommandName": "Remove-PnPCustomAction" }, { - "Id": 1041, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "Id": 1041, "Rank": 3, "CommandName": "Remove-PnPCustomAction" }, { - "Id": 1042, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 1042, "Rank": 1, "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { - "Id": 1043, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 1043, "Rank": 1, "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1044, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 1044, "Rank": 2, "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1045, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "Id": 1045, "Rank": 3, "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1046, "Command": "Remove-PnPEventReceiver -List ProjectList", + "Id": 1046, "Rank": 4, "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1047, "Command": "Remove-PnPEventReceiver", + "Id": 1047, "Rank": 5, "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1048, "Command": "Remove-PnPEventReceiver -Scope Site", + "Id": 1048, "Rank": 6, "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1049, "Command": "Remove-PnPEventReceiver -Scope Web", + "Id": 1049, "Rank": 7, "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1050, "Command": "Remove-PnPEventReceiver -Scope All", + "Id": 1050, "Rank": 8, "CommandName": "Remove-PnPEventReceiver" }, { - "Id": 1051, "Command": "Remove-PnPField -Identity \"Speakers\"", + "Id": 1051, "Rank": 1, "CommandName": "Remove-PnPField" }, { - "Id": 1052, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Id": 1052, "Rank": 2, "CommandName": "Remove-PnPField" }, { - "Id": 1053, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Id": 1053, "Rank": 1, "CommandName": "Remove-PnPFieldFromContentType" }, { - "Id": 1054, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "Id": 1054, "Rank": 2, "CommandName": "Remove-PnPFieldFromContentType" }, { - "Id": 1055, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "Id": 1055, "Rank": 1, "CommandName": "Remove-PnPFile" }, { - "Id": 1056, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "Id": 1056, "Rank": 2, "CommandName": "Remove-PnPFile" }, { - "Id": 1057, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "Id": 1057, "Rank": 3, "CommandName": "Remove-PnPFile" }, { - "Id": 1058, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "Id": 1058, "Rank": 1, "CommandName": "Remove-PnPFileFromSiteTemplate" }, { - "Id": 1059, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 1059, "Rank": 1, "CommandName": "Remove-PnPFileSharingLink" }, { - "Id": 1060, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "Id": 1060, "Rank": 2, "CommandName": "Remove-PnPFileSharingLink" }, { - "Id": 1061, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Id": 1061, "Rank": 1, "CommandName": "Remove-PnPFileVersion" }, { - "Id": 1062, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Id": 1062, "Rank": 2, "CommandName": "Remove-PnPFileVersion" }, { - "Id": 1063, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "Id": 1063, "Rank": 3, "CommandName": "Remove-PnPFileVersion" }, { - "Id": 1064, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", + "Id": 1064, "Rank": 1, "CommandName": "Remove-PnPFlowOwner" }, { - "Id": 1065, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", + "Id": 1065, "Rank": 2, "CommandName": "Remove-PnPFlowOwner" }, { - "Id": 1066, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", + "Id": 1066, "Rank": 3, "CommandName": "Remove-PnPFlowOwner" }, { - "Id": 1067, "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", + "Id": 1067, "Rank": 4, "CommandName": "Remove-PnPFlowOwner" }, { - "Id": 1068, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Id": 1068, "Rank": 1, "CommandName": "Remove-PnPFolder" }, { - "Id": 1069, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "Id": 1069, "Rank": 2, "CommandName": "Remove-PnPFolder" }, { - "Id": 1070, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 1070, "Rank": 1, "CommandName": "Remove-PnPFolderSharingLink" }, { - "Id": 1071, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "Id": 1071, "Rank": 2, "CommandName": "Remove-PnPFolderSharingLink" }, { - "Id": 1072, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "Id": 1072, "Rank": 1, "CommandName": "Remove-PnPGraphSubscription" }, { - "Id": 1073, "Command": "Remove-PnPGroup -Identity \"My Users\"", + "Id": 1073, "Rank": 1, "CommandName": "Remove-PnPGroup" }, { - "Id": 1074, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Id": 1074, "Rank": 1, "CommandName": "Remove-PnPGroupMember" }, { - "Id": 1075, "Command": "Remove-PnPHomeSite", + "Id": 1075, "Rank": 1, "CommandName": "Remove-PnPHomeSite" }, { - "Id": 1076, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "Id": 1076, "Rank": 1, "CommandName": "Remove-PnPHubSiteAssociation" }, { - "Id": 1077, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "Id": 1077, "Rank": 1, "CommandName": "Remove-PnPHubToHubAssociation" }, { - "Id": 1078, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "Id": 1078, "Rank": 2, "CommandName": "Remove-PnPHubToHubAssociation" }, { - "Id": 1079, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "Id": 1079, "Rank": 1, "CommandName": "Remove-PnPIndexedProperty" }, { - "Id": 1080, "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "Id": 1080, "Rank": 1, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Id": 1081, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "Id": 1081, "Rank": 2, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Id": 1082, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "Id": 1082, "Rank": 3, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Id": 1083, "Command": "Remove-PnPJavaScriptLink -Scope Site", + "Id": 1083, "Rank": 4, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Id": 1084, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "Id": 1084, "Rank": 5, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Id": 1085, "Command": "Remove-PnPKnowledgeHubSite", + "Id": 1085, "Rank": 1, "CommandName": "Remove-PnPKnowledgeHubSite" }, { - "Id": 1086, "Command": "Remove-PnPList -Identity Announcements", + "Id": 1086, "Rank": 1, "CommandName": "Remove-PnPList" }, { - "Id": 1087, "Command": "Remove-PnPList -Identity Announcements -Force", + "Id": 1087, "Rank": 2, "CommandName": "Remove-PnPList" }, { - "Id": 1088, "Command": "Remove-PnPList -Identity Announcements -Recycle", + "Id": 1088, "Rank": 3, "CommandName": "Remove-PnPList" }, { - "Id": 1089, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "Id": 1089, "Rank": 4, "CommandName": "Remove-PnPList" }, { - "Id": 1090, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1090, "Rank": 1, "CommandName": "Remove-PnPListDesign" }, { - "Id": 1091, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "Id": 1091, "Rank": 1, "CommandName": "Remove-PnPListItem" }, { - "Id": 1092, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "Id": 1092, "Rank": 2, "CommandName": "Remove-PnPListItem" }, { - "Id": 1093, "Command": "Remove-PnPListItem -List \"Demo List\"", + "Id": 1093, "Rank": 3, "CommandName": "Remove-PnPListItem" }, { - "Id": 1094, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "Id": 1094, "Rank": 1, "CommandName": "Remove-PnPListItemAttachment" }, { - "Id": 1095, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "Id": 1095, "Rank": 2, "CommandName": "Remove-PnPListItemAttachment" }, { - "Id": 1096, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "Id": 1096, "Rank": 3, "CommandName": "Remove-PnPListItemAttachment" }, { - "Id": 1097, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "Id": 1097, "Rank": 4, "CommandName": "Remove-PnPListItemAttachment" }, { - "Id": 1098, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "Id": 1098, "Rank": 5, "CommandName": "Remove-PnPListItemAttachment" }, { - "Id": 1099, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Id": 1099, "Rank": 1, "CommandName": "Remove-PnPListItemVersion" }, { - "Id": 1100, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Id": 1100, "Rank": 2, "CommandName": "Remove-PnPListItemVersion" }, { - "Id": 1101, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "Id": 1101, "Rank": 1, "CommandName": "Remove-PnPMicrosoft365Group" }, { - "Id": 1102, "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "Id": 1102, "Rank": 2, "CommandName": "Remove-PnPMicrosoft365Group" }, { - "Id": 1103, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1103, "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { - "Id": 1104, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1104, "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { - "Id": 1105, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "Id": 1105, "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { - "Id": 1106, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "Id": 1106, "Rank": 2, "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { - "Id": 1107, "Command": "Remove-PnPNavigationNode -Identity 1032", + "Id": 1107, "Rank": 1, "CommandName": "Remove-PnPNavigationNode" }, { - "Id": 1108, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "Id": 1108, "Rank": 2, "CommandName": "Remove-PnPNavigationNode" }, { - "Id": 1109, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "Id": 1109, "Rank": 3, "CommandName": "Remove-PnPNavigationNode" }, { - "Id": 1110, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "Id": 1110, "Rank": 1, "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Id": 1111, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "Id": 1111, "Rank": 2, "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Id": 1112, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "Id": 1112, "Rank": 3, "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Id": 1113, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "Id": 1113, "Rank": 1, "CommandName": "Remove-PnPOrgNewsSite" }, { - "Id": 1114, "Command": "Remove-PnPPage -Identity \"MyPage\"", + "Id": 1114, "Rank": 1, "CommandName": "Remove-PnPPage" }, { - "Id": 1115, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "Id": 1115, "Rank": 2, "CommandName": "Remove-PnPPage" }, { - "Id": 1116, "Command": "Remove-PnPPage $page", + "Id": 1116, "Rank": 3, "CommandName": "Remove-PnPPage" }, { - "Id": 1117, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "Id": 1117, "Rank": 4, "CommandName": "Remove-PnPPage" }, { - "Id": 1118, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 1118, "Rank": 1, "CommandName": "Remove-PnPPageComponent" }, { - "Id": 1119, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "Id": 1119, "Rank": 1, "CommandName": "Remove-PnPPlannerBucket" }, { - "Id": 1120, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "Id": 1120, "Rank": 1, "CommandName": "Remove-PnPPlannerPlan" }, { - "Id": 1121, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Id": 1121, "Rank": 1, "CommandName": "Remove-PnPPlannerRoster" }, { - "Id": 1122, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 1122, "Rank": 1, "CommandName": "Remove-PnPPlannerRosterMember" }, { - "Id": 1123, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "Id": 1123, "Rank": 1, "CommandName": "Remove-PnPPlannerTask" }, { - "Id": 1124, "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "Id": 1124, "Rank": 1, "CommandName": "Remove-PnPPropertyBagValue" }, { - "Id": 1125, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "Id": 1125, "Rank": 2, "CommandName": "Remove-PnPPropertyBagValue" }, { - "Id": 1126, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "Id": 1126, "Rank": 3, "CommandName": "Remove-PnPPropertyBagValue" }, { - "Id": 1127, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Id": 1127, "Rank": 1, "CommandName": "Remove-PnPPublishingImageRendition" }, { - "Id": 1128, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "Id": 1128, "Rank": 1, "CommandName": "Remove-PnPRoleDefinition" }, { - "Id": 1129, "Command": "Remove-PnPSdnProvider -Confirm:false", + "Id": 1129, "Rank": 1, "CommandName": "Remove-PnPSdnProvider" }, { - "Id": 1130, "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "Id": 1130, "Rank": 1, "CommandName": "Remove-PnPSearchConfiguration" }, { - "Id": 1131, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "Id": 1131, "Rank": 2, "CommandName": "Remove-PnPSearchConfiguration" }, { - "Id": 1132, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Id": 1132, "Rank": 3, "CommandName": "Remove-PnPSearchConfiguration" }, { - "Id": 1133, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 1133, "Rank": 4, "CommandName": "Remove-PnPSearchConfiguration" }, { - "Id": 1134, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 1134, "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAdmin" }, { - "Id": 1135, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 1135, "Rank": 2, "CommandName": "Remove-PnPSiteCollectionAdmin" }, { - "Id": 1136, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Id": 1136, "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { - "Id": 1137, "Command": "Remove-PnPSiteCollectionTermStore", + "Id": 1137, "Rank": 1, "CommandName": "Remove-PnPSiteCollectionTermStore" }, { - "Id": 1138, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1138, "Rank": 1, "CommandName": "Remove-PnPSiteDesign" }, { - "Id": 1139, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1139, "Rank": 1, "CommandName": "Remove-PnPSiteDesignTask" }, { - "Id": 1140, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1140, "Rank": 1, "CommandName": "Remove-PnPSiteGroup" }, { - "Id": 1141, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "Id": 1141, "Rank": 2, "CommandName": "Remove-PnPSiteGroup" }, { - "Id": 1142, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1142, "Rank": 1, "CommandName": "Remove-PnPSiteScript" }, { - "Id": 1143, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Id": 1143, "Rank": 1, "CommandName": "Remove-PnPSiteUserInvitations" }, { - "Id": 1144, "Command": "Remove-PnPStorageEntity -Key MyKey", + "Id": 1144, "Rank": 1, "CommandName": "Remove-PnPStorageEntity" }, { - "Id": 1145, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "Id": 1145, "Rank": 2, "CommandName": "Remove-PnPStorageEntity" }, { - "Id": 1146, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "Id": 1146, "Rank": 1, "CommandName": "Remove-PnPStoredCredential" }, { - "Id": 1147, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "Id": 1147, "Rank": 1, "CommandName": "Remove-PnPTaxonomyItem" }, { - "Id": 1148, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "Id": 1148, "Rank": 2, "CommandName": "Remove-PnPTaxonomyItem" }, { - "Id": 1149, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "Id": 1149, "Rank": 1, "CommandName": "Remove-PnPTeamsApp" }, { - "Id": 1150, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "Id": 1150, "Rank": 2, "CommandName": "Remove-PnPTeamsApp" }, { - "Id": 1151, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "Id": 1151, "Rank": 1, "CommandName": "Remove-PnPTeamsChannel" }, { - "Id": 1152, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "Id": 1152, "Rank": 1, "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Id": 1153, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Id": 1153, "Rank": 2, "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Id": 1154, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "Id": 1154, "Rank": 3, "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Id": 1155, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "Id": 1155, "Rank": 1, "CommandName": "Remove-PnPTeamsTab" }, { - "Id": 1156, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "Id": 1156, "Rank": 2, "CommandName": "Remove-PnPTeamsTab" }, { - "Id": 1157, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", + "Id": 1157, "Rank": 3, "CommandName": "Remove-PnPTeamsTab" }, { - "Id": 1158, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Id": 1158, "Rank": 1, "CommandName": "Remove-PnPTeamsTag" }, { - "Id": 1159, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Id": 1159, "Rank": 1, "CommandName": "Remove-PnPTeamsTeam" }, { - "Id": 1160, "Command": "Remove-PnPTeamsTeam -Identity testteam", + "Id": 1160, "Rank": 2, "CommandName": "Remove-PnPTeamsTeam" }, { - "Id": 1161, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "Id": 1161, "Rank": 1, "CommandName": "Remove-PnPTeamsUser" }, { - "Id": 1162, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 1162, "Rank": 2, "CommandName": "Remove-PnPTeamsUser" }, { - "Id": 1163, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Id": 1163, "Rank": 1, "CommandName": "Remove-PnPTenantCdnOrigin" }, { - "Id": 1164, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1164, "Rank": 1, "CommandName": "Remove-PnPTenantDeletedSite" }, { - "Id": 1165, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Id": 1165, "Rank": 2, "CommandName": "Remove-PnPTenantDeletedSite" }, { - "Id": 1166, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1166, "Rank": 1, "CommandName": "Remove-PnPTenantSite" }, { - "Id": 1167, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "Id": 1167, "Rank": 2, "CommandName": "Remove-PnPTenantSite" }, { - "Id": 1168, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "Id": 1168, "Rank": 3, "CommandName": "Remove-PnPTenantSite" }, { - "Id": 1169, "Command": "Remove-PnPTenantSyncClientRestriction", + "Id": 1169, "Rank": 1, "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { - "Id": 1170, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Id": 1170, "Rank": 1, "CommandName": "Remove-PnPTenantTheme" }, { - "Id": 1171, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Id": 1171, "Rank": 1, "CommandName": "Remove-PnPTerm" }, { - "Id": 1172, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 1172, "Rank": 2, "CommandName": "Remove-PnPTerm" }, { - "Id": 1173, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Id": 1173, "Rank": 1, "CommandName": "Remove-PnPTermGroup" }, { - "Id": 1174, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "Id": 1174, "Rank": 2, "CommandName": "Remove-PnPTermGroup" }, { - "Id": 1175, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "Id": 1175, "Rank": 3, "CommandName": "Remove-PnPTermGroup" }, { - "Id": 1176, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", + "Id": 1176, "Rank": 1, "CommandName": "Remove-PnPTermLabel" }, { - "Id": 1177, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 1177, "Rank": 2, "CommandName": "Remove-PnPTermLabel" }, { - "Id": 1178, "Command": "Remove-PnPUser -Identity 23", + "Id": 1178, "Rank": 1, "CommandName": "Remove-PnPUser" }, { - "Id": 1179, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "Id": 1179, "Rank": 2, "CommandName": "Remove-PnPUser" }, { - "Id": 1180, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "Id": 1180, "Rank": 3, "CommandName": "Remove-PnPUser" }, { - "Id": 1181, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Id": 1181, "Rank": 1, "CommandName": "Remove-PnPUserInfo" }, { - "Id": 1182, "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "Id": 1182, "Rank": 1, "CommandName": "Remove-PnPUserProfile" }, { - "Id": 1183, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "Id": 1183, "Rank": 1, "CommandName": "Remove-PnPView" }, { - "Id": 1184, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Id": 1184, "Rank": 1, "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { - "Id": 1185, "Command": "Remove-PnPWeb -Identity projectA", + "Id": 1185, "Rank": 1, "CommandName": "Remove-PnPWeb" }, { - "Id": 1186, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "Id": 1186, "Rank": 2, "CommandName": "Remove-PnPWeb" }, { - "Id": 1187, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "Id": 1187, "Rank": 1, "CommandName": "Remove-PnPWebhookSubscription" }, { - "Id": 1188, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 1188, "Rank": 1, "CommandName": "Remove-PnPWebPart" }, { - "Id": 1189, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "Id": 1189, "Rank": 2, "CommandName": "Remove-PnPWebPart" }, { - "Id": 1190, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "Id": 1190, "Rank": 1, "CommandName": "Remove-PnPWikiPage" }, { - "Id": 1191, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "Id": 1191, "Rank": 1, "CommandName": "Rename-PnPFile" }, { - "Id": 1192, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "Id": 1192, "Rank": 2, "CommandName": "Rename-PnPFile" }, { - "Id": 1193, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "Id": 1193, "Rank": 3, "CommandName": "Rename-PnPFile" }, { - "Id": 1194, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "Id": 1194, "Rank": 1, "CommandName": "Rename-PnPFolder" }, { - "Id": 1195, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1195, "Rank": 1, "CommandName": "Repair-PnPSite" }, { - "Id": 1196, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Id": 1196, "Rank": 2, "CommandName": "Repair-PnPSite" }, { - "Id": 1197, "Command": "Request-PnPAccessToken", + "Id": 1197, "Rank": 1, "CommandName": "Request-PnPAccessToken" }, { - "Id": 1198, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "Id": 1198, "Rank": 2, "CommandName": "Request-PnPAccessToken" }, { - "Id": 1199, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "Id": 1199, "Rank": 3, "CommandName": "Request-PnPAccessToken" }, { - "Id": 1200, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "Id": 1200, "Rank": 4, "CommandName": "Request-PnPAccessToken" }, { - "Id": 1201, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "Id": 1201, "Rank": 1, "CommandName": "Request-PnPPersonalSite" }, { - "Id": 1202, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "Id": 1202, "Rank": 2, "CommandName": "Request-PnPPersonalSite" }, { - "Id": 1203, "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "Id": 1203, "Rank": 1, "CommandName": "Request-PnPReIndexList" }, { - "Id": 1204, "Command": "Request-PnPReIndexWeb", + "Id": 1204, "Rank": 1, "CommandName": "Request-PnPReIndexWeb" }, { - "Id": 1205, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "Id": 1205, "Rank": 1, "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Id": 1206, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "Id": 1206, "Rank": 2, "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Id": 1207, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "Id": 1207, "Rank": 3, "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Id": 1208, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "Id": 1208, "Rank": 1, "CommandName": "Reset-PnPFileVersion" }, { - "Id": 1209, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "Id": 1209, "Rank": 2, "CommandName": "Reset-PnPFileVersion" }, { - "Id": 1210, "Command": "Reset-PnPLabel -List \"Demo List\"", + "Id": 1210, "Rank": 1, "CommandName": "Reset-PnPLabel" }, { - "Id": 1211, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "Id": 1211, "Rank": 2, "CommandName": "Reset-PnPLabel" }, { - "Id": 1212, "Command": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1212, "Rank": 1, "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Id": 1213, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "Id": 1213, "Rank": 1, "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { - "Id": 1214, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "Id": 1214, "Rank": 1, "CommandName": "Resolve-PnPFolder" }, { - "Id": 1215, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 1215, "Rank": 1, "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { - "Id": 1216, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Id": 1216, "Rank": 1, "CommandName": "Restore-PnPFileVersion" }, { - "Id": 1217, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "Id": 1217, "Rank": 2, "CommandName": "Restore-PnPFileVersion" }, { - "Id": 1218, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Id": 1218, "Rank": 3, "CommandName": "Restore-PnPFileVersion" }, { - "Id": 1219, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Id": 1219, "Rank": 1, "CommandName": "Restore-PnPListItemVersion" }, { - "Id": 1220, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Id": 1220, "Rank": 2, "CommandName": "Restore-PnPListItemVersion" }, { - "Id": 1221, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Id": 1221, "Rank": 1, "CommandName": "Restore-PnPRecycleBinItem" }, { - "Id": 1222, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1222, "Rank": 1, "CommandName": "Restore-PnPTenantRecycleBinItem" }, { - "Id": 1223, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Id": 1223, "Rank": 2, "CommandName": "Restore-PnPTenantRecycleBinItem" }, { - "Id": 1224, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1224, "Rank": 1, "CommandName": "Restore-PnPTenantSite" }, { - "Id": 1225, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Id": 1225, "Rank": 2, "CommandName": "Restore-PnPTenantSite" }, { - "Id": 1226, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "Id": 1226, "Rank": 3, "CommandName": "Restore-PnPTenantSite" }, { - "Id": 1227, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "Id": 1227, "Rank": 1, "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { - "Id": 1228, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 1228, "Rank": 1, "CommandName": "Revoke-PnPHubSiteRights" }, { - "Id": 1229, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 1229, "Rank": 1, "CommandName": "Revoke-PnPSiteDesignRights" }, { - "Id": 1230, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Id": 1230, "Rank": 1, "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { - "Id": 1231, "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "Id": 1231, "Rank": 1, "CommandName": "Revoke-PnPUserSession" }, { - "Id": 1232, "Command": "Save-PnPPageConversionLog", + "Id": 1232, "Rank": 1, "CommandName": "Save-PnPPageConversionLog" }, { - "Id": 1233, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "Id": 1233, "Rank": 1, "CommandName": "Save-PnPSiteTemplate" }, { - "Id": 1234, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "Id": 1234, "Rank": 1, "CommandName": "Save-PnPTenantTemplate" }, { - "Id": 1235, "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "Id": 1235, "Rank": 1, "CommandName": "Send-PnPMail" }, { - "Id": 1236, "Command": "Send-PnPMail -From \"sharedmailbox@contoso.onmicrosoft.com\" -To \"recipient1@contoso.com\",\"recipient2@contoso.com\",\"recipient3@contoso.com\" -Cc \"recipient4@contoso.com\" -Bcc \"recipient5@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Importance Low", + "Id": 1236, "Rank": 2, "CommandName": "Send-PnPMail" }, { - "Id": 1237, "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "Id": 1237, "Rank": 3, "CommandName": "Send-PnPMail" }, { - "Id": 1238, "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.onmicrosoft.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server contoso.mail.protection.outlook.com", + "Id": 1238, "Rank": 4, "CommandName": "Send-PnPMail" }, { - "Id": 1239, "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com", + "Id": 1239, "Rank": 5, "CommandName": "Send-PnPMail" }, { - "Id": 1240, "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com -Port 587 -EnableSsl:$true -Username \"userxyz\" -Password \"password123\"", + "Id": 1240, "Rank": 6, "CommandName": "Send-PnPMail" }, { - "Id": 1241, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "Id": 1241, "Rank": 1, "CommandName": "Set-PnPAdaptiveScopeProperty" }, { - "Id": 1242, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1242, "Rank": 1, "CommandName": "Set-PnPApplicationCustomizer" }, { - "Id": 1243, "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", + "Id": 1243, "Rank": 2, "CommandName": "Set-PnPApplicationCustomizer" }, { - "Id": 1244, "Command": "Set-PnPAppSideLoading -On", + "Id": 1244, "Rank": 1, "CommandName": "Set-PnPAppSideLoading" }, { - "Id": 1245, "Command": "Set-PnPAppSideLoading -Off", + "Id": 1245, "Rank": 2, "CommandName": "Set-PnPAppSideLoading" }, { - "Id": 1246, "Command": "Set-PnPAuditing -EnableAll", + "Id": 1246, "Rank": 1, "CommandName": "Set-PnPAuditing" }, { - "Id": 1247, "Command": "Set-PnPAuditing -DisableAll", + "Id": 1247, "Rank": 2, "CommandName": "Set-PnPAuditing" }, { - "Id": 1248, "Command": "Set-PnPAuditing -RetentionTime 7", + "Id": 1248, "Rank": 3, "CommandName": "Set-PnPAuditing" }, { - "Id": 1249, "Command": "Set-PnPAuditing -TrimAuditLog", + "Id": 1249, "Rank": 4, "CommandName": "Set-PnPAuditing" }, { - "Id": 1250, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "Id": 1250, "Rank": 5, "CommandName": "Set-PnPAuditing" }, { - "Id": 1251, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "Id": 1251, "Rank": 1, "CommandName": "Set-PnPAvailablePageLayouts" }, { - "Id": 1252, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "Id": 1252, "Rank": 1, "CommandName": "Set-PnPAzureADAppSitePermission" }, { - "Id": 1253, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "Id": 1253, "Rank": 2, "CommandName": "Set-PnPAzureADAppSitePermission" }, { - "Id": 1254, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "Id": 1254, "Rank": 1, "CommandName": "Set-PnPAzureADGroup" }, { - "Id": 1255, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Id": 1255, "Rank": 2, "CommandName": "Set-PnPAzureADGroup" }, { - "Id": 1256, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "Id": 1256, "Rank": 3, "CommandName": "Set-PnPAzureADGroup" }, { - "Id": 1257, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "Id": 1257, "Rank": 1, "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Id": 1258, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "Id": 1258, "Rank": 2, "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Id": 1259, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "Id": 1259, "Rank": 3, "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Id": 1260, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "Id": 1260, "Rank": 1, "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { - "Id": 1261, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "Id": 1261, "Rank": 2, "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { - "Id": 1262, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "Id": 1262, "Rank": 1, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Id": 1263, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "Id": 1263, "Rank": 2, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Id": 1264, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "Id": 1264, "Rank": 3, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Id": 1265, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "Id": 1265, "Rank": 4, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Id": 1266, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Id": 1266, "Rank": 1, "CommandName": "Set-PnPContentType" }, { - "Id": 1267, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "Id": 1267, "Rank": 2, "CommandName": "Set-PnPContentType" }, { - "Id": 1268, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Id": 1268, "Rank": 3, "CommandName": "Set-PnPContentType" }, { - "Id": 1269, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Id": 1269, "Rank": 4, "CommandName": "Set-PnPContentType" }, { - "Id": 1270, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Id": 1270, "Rank": 5, "CommandName": "Set-PnPContentType" }, { - "Id": 1271, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "Id": 1271, "Rank": 1, "CommandName": "Set-PnPDefaultColumnValues" }, { - "Id": 1272, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "Id": 1272, "Rank": 2, "CommandName": "Set-PnPDefaultColumnValues" }, { - "Id": 1273, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "Id": 1273, "Rank": 3, "CommandName": "Set-PnPDefaultColumnValues" }, { - "Id": 1274, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "Id": 1274, "Rank": 4, "CommandName": "Set-PnPDefaultColumnValues" }, { - "Id": 1275, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "Id": 1275, "Rank": 1, "CommandName": "Set-PnPDefaultContentTypeToList" }, { - "Id": 1276, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "Id": 1276, "Rank": 1, "CommandName": "Set-PnPDefaultPageLayout" }, { - "Id": 1277, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "Id": 1277, "Rank": 2, "CommandName": "Set-PnPDefaultPageLayout" }, { - "Id": 1278, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "Id": 1278, "Rank": 3, "CommandName": "Set-PnPDefaultPageLayout" }, { - "Id": 1279, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "Id": 1279, "Rank": 1, "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Id": 1280, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Id": 1280, "Rank": 2, "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Id": 1281, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Id": 1281, "Rank": 3, "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Id": 1282, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "Id": 1282, "Rank": 1, "CommandName": "Set-PnPDocumentSetField" }, { - "Id": 1283, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "Id": 1283, "Rank": 2, "CommandName": "Set-PnPDocumentSetField" }, { - "Id": 1284, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "Id": 1284, "Rank": 1, "CommandName": "Set-PnPField" }, { - "Id": 1285, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "Id": 1285, "Rank": 2, "CommandName": "Set-PnPField" }, { - "Id": 1286, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "Id": 1286, "Rank": 3, "CommandName": "Set-PnPField" }, { - "Id": 1287, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "Id": 1287, "Rank": 1, "CommandName": "Set-PnPFileCheckedIn" }, { - "Id": 1288, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "Id": 1288, "Rank": 2, "CommandName": "Set-PnPFileCheckedIn" }, { - "Id": 1289, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "Id": 1289, "Rank": 1, "CommandName": "Set-PnPFileCheckedOut" }, { - "Id": 1290, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1290, "Rank": 1, "CommandName": "Set-PnPFolderPermission" }, { - "Id": 1291, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1291, "Rank": 2, "CommandName": "Set-PnPFolderPermission" }, { - "Id": 1292, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Id": 1292, "Rank": 3, "CommandName": "Set-PnPFolderPermission" }, { - "Id": 1293, "Command": "Set-PnPFooter -Enabled:$true", + "Id": 1293, "Rank": 1, "CommandName": "Set-PnPFooter" }, { - "Id": 1294, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "Id": 1294, "Rank": 2, "CommandName": "Set-PnPFooter" }, { - "Id": 1295, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "Id": 1295, "Rank": 3, "CommandName": "Set-PnPFooter" }, { - "Id": 1296, "Command": "Set-PnPFooter -LogoUrl \"\"", + "Id": 1296, "Rank": 4, "CommandName": "Set-PnPFooter" }, { - "Id": 1297, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "Id": 1297, "Rank": 1, "CommandName": "Set-PnPGraphSubscription" }, { - "Id": 1298, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "Id": 1298, "Rank": 1, "CommandName": "Set-PnPGroup" }, { - "Id": 1299, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "Id": 1299, "Rank": 2, "CommandName": "Set-PnPGroup" }, { - "Id": 1300, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "Id": 1300, "Rank": 1, "CommandName": "Set-PnPGroupPermissions" }, { - "Id": 1301, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "Id": 1301, "Rank": 2, "CommandName": "Set-PnPGroupPermissions" }, { - "Id": 1302, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "Id": 1302, "Rank": 3, "CommandName": "Set-PnPGroupPermissions" }, { - "Id": 1303, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "Id": 1303, "Rank": 4, "CommandName": "Set-PnPGroupPermissions" }, { - "Id": 1304, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "Id": 1304, "Rank": 5, "CommandName": "Set-PnPGroupPermissions" }, { - "Id": 1305, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "Id": 1305, "Rank": 1, "CommandName": "Set-PnPHideDefaultThemes" }, { - "Id": 1306, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "Id": 1306, "Rank": 2, "CommandName": "Set-PnPHideDefaultThemes" }, { - "Id": 1307, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "Id": 1307, "Rank": 1, "CommandName": "Set-PnPHomePage" }, { - "Id": 1308, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "Id": 1308, "Rank": 2, "CommandName": "Set-PnPHomePage" }, { - "Id": 1309, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "Id": 1309, "Rank": 1, "CommandName": "Set-PnPHomeSite" }, { - "Id": 1310, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "Id": 1310, "Rank": 2, "CommandName": "Set-PnPHomeSite" }, { - "Id": 1311, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "Id": 1311, "Rank": 1, "CommandName": "Set-PnPHubSite" }, { - "Id": 1312, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "Id": 1312, "Rank": 2, "CommandName": "Set-PnPHubSite" }, { - "Id": 1313, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "Id": 1313, "Rank": 3, "CommandName": "Set-PnPHubSite" }, { - "Id": 1314, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", + "Id": 1314, "Rank": 4, "CommandName": "Set-PnPHubSite" }, { - "Id": 1315, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "Id": 1315, "Rank": 5, "CommandName": "Set-PnPHubSite" }, { - "Id": 1316, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "Id": 1316, "Rank": 6, "CommandName": "Set-PnPHubSite" }, { - "Id": 1317, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "Id": 1317, "Rank": 1, "CommandName": "Set-PnPImageListItemColumn" }, { - "Id": 1318, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "Id": 1318, "Rank": 2, "CommandName": "Set-PnPImageListItemColumn" }, { - "Id": 1319, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "Id": 1319, "Rank": 1, "CommandName": "Set-PnPIndexedProperties" }, { - "Id": 1320, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "Id": 1320, "Rank": 1, "CommandName": "Set-PnPInPlaceRecordsManagement" }, { - "Id": 1321, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "Id": 1321, "Rank": 2, "CommandName": "Set-PnPInPlaceRecordsManagement" }, { - "Id": 1322, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "Id": 1322, "Rank": 1, "CommandName": "Set-PnPKnowledgeHubSite" }, { - "Id": 1323, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "Id": 1323, "Rank": 1, "CommandName": "Set-PnPLabel" }, { - "Id": 1324, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "Id": 1324, "Rank": 2, "CommandName": "Set-PnPLabel" }, { - "Id": 1325, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "Id": 1325, "Rank": 1, "CommandName": "Set-PnPList" }, { - "Id": 1326, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "Id": 1326, "Rank": 2, "CommandName": "Set-PnPList" }, { - "Id": 1327, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "Id": 1327, "Rank": 3, "CommandName": "Set-PnPList" }, { - "Id": 1328, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "Id": 1328, "Rank": 4, "CommandName": "Set-PnPList" }, { - "Id": 1329, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "Id": 1329, "Rank": 5, "CommandName": "Set-PnPList" }, { - "Id": 1330, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "Id": 1330, "Rank": 6, "CommandName": "Set-PnPList" }, { - "Id": 1331, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "Id": 1331, "Rank": 7, "CommandName": "Set-PnPList" }, { - "Id": 1332, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "Id": 1332, "Rank": 8, "CommandName": "Set-PnPList" }, { - "Id": 1333, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "Id": 1333, "Rank": 9, "CommandName": "Set-PnPList" }, { - "Id": 1334, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "Id": 1334, "Rank": 10, "CommandName": "Set-PnPList" }, { - "Id": 1335, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "Id": 1335, "Rank": 11, "CommandName": "Set-PnPList" }, { - "Id": 1336, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "Id": 1336, "Rank": 1, "CommandName": "Set-PnPListInformationRightsManagement" }, { - "Id": 1337, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "Id": 1337, "Rank": 2, "CommandName": "Set-PnPListInformationRightsManagement" }, { - "Id": 1338, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1338, "Rank": 1, "CommandName": "Set-PnPListItem" }, { - "Id": 1339, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1339, "Rank": 2, "CommandName": "Set-PnPListItem" }, { - "Id": 1340, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1340, "Rank": 3, "CommandName": "Set-PnPListItem" }, { - "Id": 1341, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "Id": 1341, "Rank": 4, "CommandName": "Set-PnPListItem" }, { - "Id": 1342, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "Id": 1342, "Rank": 5, "CommandName": "Set-PnPListItem" }, { - "Id": 1343, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Id": 1343, "Rank": 1, "CommandName": "Set-PnPListItemAsRecord" }, { - "Id": 1344, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "Id": 1344, "Rank": 2, "CommandName": "Set-PnPListItemAsRecord" }, { - "Id": 1345, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1345, "Rank": 1, "CommandName": "Set-PnPListItemPermission" }, { - "Id": 1346, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1346, "Rank": 2, "CommandName": "Set-PnPListItemPermission" }, { - "Id": 1347, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Id": 1347, "Rank": 3, "CommandName": "Set-PnPListItemPermission" }, { - "Id": 1348, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "Id": 1348, "Rank": 4, "CommandName": "Set-PnPListItemPermission" }, { - "Id": 1349, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "Id": 1349, "Rank": 5, "CommandName": "Set-PnPListItemPermission" }, { - "Id": 1350, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1350, "Rank": 1, "CommandName": "Set-PnPListPermission" }, { - "Id": 1351, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1351, "Rank": 2, "CommandName": "Set-PnPListPermission" }, { - "Id": 1352, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "Id": 1352, "Rank": 1, "CommandName": "Set-PnPListRecordDeclaration" }, { - "Id": 1353, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "Id": 1353, "Rank": 2, "CommandName": "Set-PnPListRecordDeclaration" }, { - "Id": 1354, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Id": 1354, "Rank": 1, "CommandName": "Set-PnPMasterPage" }, { - "Id": 1355, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Id": 1355, "Rank": 2, "CommandName": "Set-PnPMasterPage" }, { - "Id": 1356, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Id": 1356, "Rank": 3, "CommandName": "Set-PnPMasterPage" }, { - "Id": 1357, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Id": 1357, "Rank": 4, "CommandName": "Set-PnPMasterPage" }, { - "Id": 1358, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "Id": 1358, "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Id": 1359, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "Id": 1359, "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Id": 1360, "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1360, "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Id": 1361, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "Id": 1361, "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Id": 1362, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "Id": 1362, "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Id": 1363, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1363, "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Id": 1364, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "Id": 1364, "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Id": 1365, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "Id": 1365, "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Id": 1366, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1366, "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Id": 1367, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "Id": 1367, "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Id": 1368, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "Id": 1368, "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Id": 1369, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1369, "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Id": 1370, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "Id": 1370, "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Id": 1371, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "Id": 1371, "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Id": 1372, "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1372, "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Id": 1373, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "Id": 1373, "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Id": 1374, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "Id": 1374, "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Id": 1375, "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1375, "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Id": 1376, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "Id": 1376, "Rank": 1, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Id": 1377, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Id": 1377, "Rank": 2, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Id": 1378, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "Id": 1378, "Rank": 3, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Id": 1379, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "Id": 1379, "Rank": 4, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Id": 1380, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "Id": 1380, "Rank": 5, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Id": 1381, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 1381, "Rank": 6, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Id": 1382, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "Id": 1382, "Rank": 1, "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { - "Id": 1383, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "Id": 1383, "Rank": 2, "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { - "Id": 1384, "Command": "Set-PnPMinimalDownloadStrategy -Off", + "Id": 1384, "Rank": 1, "CommandName": "Set-PnPMinimalDownloadStrategy" }, { - "Id": 1385, "Command": "Set-PnPMinimalDownloadStrategy -On", + "Id": 1385, "Rank": 2, "CommandName": "Set-PnPMinimalDownloadStrategy" }, { - "Id": 1386, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "Id": 1386, "Rank": 1, "CommandName": "Set-PnPPage" }, { - "Id": 1387, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "Id": 1387, "Rank": 2, "CommandName": "Set-PnPPage" }, { - "Id": 1388, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "Id": 1388, "Rank": 3, "CommandName": "Set-PnPPage" }, { - "Id": 1389, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "Id": 1389, "Rank": 4, "CommandName": "Set-PnPPage" }, { - "Id": 1390, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "Id": 1390, "Rank": 5, "CommandName": "Set-PnPPage" }, { - "Id": 1391, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", + "Id": 1391, "Rank": 6, "CommandName": "Set-PnPPage" }, { - "Id": 1392, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "Id": 1392, "Rank": 7, "CommandName": "Set-PnPPage" }, { - "Id": 1393, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "Id": 1393, "Rank": 8, "CommandName": "Set-PnPPage" }, { - "Id": 1394, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "Id": 1394, "Rank": 9, "CommandName": "Set-PnPPage" }, { - "Id": 1395, "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Id": 1395, "Rank": 10, "CommandName": "Set-PnPPage" }, { - "Id": 1396, "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "Id": 1396, "Rank": 11, "CommandName": "Set-PnPPage" }, { - "Id": 1397, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "Id": 1397, "Rank": 1, "CommandName": "Set-PnPPageTextPart" }, { - "Id": 1398, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "Id": 1398, "Rank": 1, "CommandName": "Set-PnPPageWebPart" }, { - "Id": 1399, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "Id": 1399, "Rank": 2, "CommandName": "Set-PnPPageWebPart" }, { - "Id": 1400, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "Id": 1400, "Rank": 1, "CommandName": "Set-PnPPlannerBucket" }, { - "Id": 1401, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Id": 1401, "Rank": 1, "CommandName": "Set-PnPPlannerConfiguration" }, { - "Id": 1402, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "Id": 1402, "Rank": 2, "CommandName": "Set-PnPPlannerConfiguration" }, { - "Id": 1403, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "Id": 1403, "Rank": 1, "CommandName": "Set-PnPPlannerPlan" }, { - "Id": 1404, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "Id": 1404, "Rank": 1, "CommandName": "Set-PnPPlannerTask" }, { - "Id": 1405, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "Id": 1405, "Rank": 2, "CommandName": "Set-PnPPlannerTask" }, { - "Id": 1406, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Id": 1406, "Rank": 3, "CommandName": "Set-PnPPlannerTask" }, { - "Id": 1407, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Id": 1407, "Rank": 1, "CommandName": "Set-PnPPlannerUserPolicy" }, { - "Id": 1408, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "Id": 1408, "Rank": 1, "CommandName": "Set-PnPPropertyBagValue" }, { - "Id": 1409, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "Id": 1409, "Rank": 2, "CommandName": "Set-PnPPropertyBagValue" }, { - "Id": 1410, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "Id": 1410, "Rank": 3, "CommandName": "Set-PnPPropertyBagValue" }, { - "Id": 1411, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "Id": 1411, "Rank": 1, "CommandName": "Set-PnPRequestAccessEmails" }, { - "Id": 1412, "Command": "Set-PnPRequestAccessEmails -Disabled", + "Id": 1412, "Rank": 2, "CommandName": "Set-PnPRequestAccessEmails" }, { - "Id": 1413, "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "Id": 1413, "Rank": 3, "CommandName": "Set-PnPRequestAccessEmails" }, { - "Id": 1414, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "Id": 1414, "Rank": 1, "CommandName": "Set-PnPRoleDefinition" }, { - "Id": 1415, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "Id": 1415, "Rank": 2, "CommandName": "Set-PnPRoleDefinition" }, { - "Id": 1416, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "Id": 1416, "Rank": 3, "CommandName": "Set-PnPRoleDefinition" }, { - "Id": 1417, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "Id": 1417, "Rank": 4, "CommandName": "Set-PnPRoleDefinition" }, { - "Id": 1418, "Command": "Set-PnPSearchConfiguration -Configuration $config", + "Id": 1418, "Rank": 1, "CommandName": "Set-PnPSearchConfiguration" }, { - "Id": 1419, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "Id": 1419, "Rank": 2, "CommandName": "Set-PnPSearchConfiguration" }, { - "Id": 1420, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Id": 1420, "Rank": 3, "CommandName": "Set-PnPSearchConfiguration" }, { - "Id": 1421, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 1421, "Rank": 4, "CommandName": "Set-PnPSearchConfiguration" }, { - "Id": 1422, "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone", + "Id": 1422, "Rank": 1, "CommandName": "Set-PnPSearchExternalItem" }, { - "Id": 1423, "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"", + "Id": 1423, "Rank": 2, "CommandName": "Set-PnPSearchExternalItem" }, { - "Id": 1424, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Id": 1424, "Rank": 1, "CommandName": "Set-PnPSearchSettings" }, { - "Id": 1425, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "Id": 1425, "Rank": 2, "CommandName": "Set-PnPSearchSettings" }, { - "Id": 1426, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "Id": 1426, "Rank": 3, "CommandName": "Set-PnPSearchSettings" }, { - "Id": 1427, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "Id": 1427, "Rank": 4, "CommandName": "Set-PnPSearchSettings" }, { - "Id": 1428, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "Id": 1428, "Rank": 5, "CommandName": "Set-PnPSearchSettings" }, { - "Id": 1429, "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "Id": 1429, "Rank": 6, "CommandName": "Set-PnPSearchSettings" }, { - "Id": 1430, "Command": "Set-PnPSearchSettings -SearchScope Hub", + "Id": 1430, "Rank": 7, "CommandName": "Set-PnPSearchSettings" }, { - "Id": 1431, "Command": "Set-PnPSite -Classification \"HBI\"", + "Id": 1431, "Rank": 1, "CommandName": "Set-PnPSite" }, { - "Id": 1432, "Command": "Set-PnPSite -Classification $null", + "Id": 1432, "Rank": 2, "CommandName": "Set-PnPSite" }, { - "Id": 1433, "Command": "Set-PnPSite -DisableFlows", + "Id": 1433, "Rank": 3, "CommandName": "Set-PnPSite" }, { - "Id": 1434, "Command": "Set-PnPSite -DisableFlows:$false", + "Id": 1434, "Rank": 4, "CommandName": "Set-PnPSite" }, { - "Id": 1435, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "Id": 1435, "Rank": 5, "CommandName": "Set-PnPSite" }, { - "Id": 1436, "Command": "Set-PnPSite -NoScriptSite $false", + "Id": 1436, "Rank": 6, "CommandName": "Set-PnPSite" }, { - "Id": 1437, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "Id": 1437, "Rank": 7, "CommandName": "Set-PnPSite" }, { - "Id": 1438, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "Id": 1438, "Rank": 8, "CommandName": "Set-PnPSite" }, { - "Id": 1439, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "Id": 1439, "Rank": 9, "CommandName": "Set-PnPSite" }, { - "Id": 1440, "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "Id": 1440, "Rank": 10, "CommandName": "Set-PnPSite" }, { - "Id": 1441, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "Id": 1441, "Rank": 11, "CommandName": "Set-PnPSite" }, { - "Id": 1442, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "Id": 1442, "Rank": 12, "CommandName": "Set-PnPSite" }, { - "Id": 1443, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "Id": 1443, "Rank": 13, "CommandName": "Set-PnPSite" }, { - "Id": 1444, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "Id": 1444, "Rank": 14, "CommandName": "Set-PnPSite" }, { - "Id": 1445, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "Id": 1445, "Rank": 15, "CommandName": "Set-PnPSite" }, { - "Id": 1446, "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "Id": 1446, "Rank": 16, "CommandName": "Set-PnPSite" }, { - "Id": 1447, "Command": "Set-PnPSite -CancelVPForExistingLibs", + "Id": 1447, "Rank": 17, "CommandName": "Set-PnPSite" }, { - "Id": 1448, "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "Id": 1448, "Rank": 1, "CommandName": "Set-PnPSiteClassification" }, { - "Id": 1449, "Command": "Set-PnPSiteClosure -State Open", + "Id": 1449, "Rank": 1, "CommandName": "Set-PnPSiteClosure" }, { - "Id": 1450, "Command": "Set-PnPSiteClosure -State Closed", + "Id": 1450, "Rank": 2, "CommandName": "Set-PnPSiteClosure" }, { - "Id": 1451, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "Id": 1451, "Rank": 1, "CommandName": "Set-PnPSiteDesign" }, { - "Id": 1452, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Company Design\" -Description \"My description\" -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"", + "Id": 1452, "Rank": 2, "CommandName": "Set-PnPSiteDesign" }, { - "Id": 1453, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "Id": 1453, "Rank": 1, "CommandName": "Set-PnPSiteGroup" }, { - "Id": 1454, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "Id": 1454, "Rank": 2, "CommandName": "Set-PnPSiteGroup" }, { - "Id": 1455, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "Id": 1455, "Rank": 1, "CommandName": "Set-PnPSitePolicy" }, { - "Id": 1456, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Id": 1456, "Rank": 1, "CommandName": "Set-PnPSiteScript" }, { - "Id": 1457, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Id": 1457, "Rank": 1, "CommandName": "Set-PnPSiteScriptPackage" }, { - "Id": 1458, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "Id": 1458, "Rank": 1, "CommandName": "Set-PnPSiteSensitivityLabel" }, { - "Id": 1459, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "Id": 1459, "Rank": 2, "CommandName": "Set-PnPSiteSensitivityLabel" }, { - "Id": 1460, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "Id": 1460, "Rank": 1, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Id": 1461, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "Id": 1461, "Rank": 2, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Id": 1462, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Id": 1462, "Rank": 3, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Id": 1463, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Id": 1463, "Rank": 4, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Id": 1464, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1464, "Rank": 5, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Id": 1465, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1465, "Rank": 6, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Id": 1466, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Id": 1466, "Rank": 1, "CommandName": "Set-PnPStorageEntity" }, { - "Id": 1467, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Id": 1467, "Rank": 2, "CommandName": "Set-PnPStorageEntity" }, { - "Id": 1468, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 1468, "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { - "Id": 1469, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 1469, "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { - "Id": 1470, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 1470, "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { - "Id": 1471, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 1471, "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { - "Id": 1472, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "Id": 1472, "Rank": 1, "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { - "Id": 1473, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "Id": 1473, "Rank": 2, "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { - "Id": 1474, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "Id": 1474, "Rank": 1, "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Id": 1475, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "Id": 1475, "Rank": 2, "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Id": 1476, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "Id": 1476, "Rank": 3, "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Id": 1477, "Command": "Set-PnPTeamifyPromptHidden", + "Id": 1477, "Rank": 1, "CommandName": "Set-PnPTeamifyPromptHidden" }, { - "Id": 1478, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "Id": 1478, "Rank": 1, "CommandName": "Set-PnPTeamsChannel" }, { - "Id": 1479, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "Id": 1479, "Rank": 2, "CommandName": "Set-PnPTeamsChannel" }, { - "Id": 1480, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", + "Id": 1480, "Rank": 1, "CommandName": "Set-PnpTeamsChannelUser" }, { - "Id": 1481, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "Id": 1481, "Rank": 2, "CommandName": "Set-PnpTeamsChannelUser" }, { - "Id": 1482, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "Id": 1482, "Rank": 1, "CommandName": "Set-PnPTeamsTab" }, { - "Id": 1483, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "Id": 1483, "Rank": 1, "CommandName": "Set-PnPTeamsTag" }, { - "Id": 1484, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "Id": 1484, "Rank": 1, "CommandName": "Set-PnPTeamsTeam" }, { - "Id": 1485, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "Id": 1485, "Rank": 2, "CommandName": "Set-PnPTeamsTeam" }, { - "Id": 1486, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "Id": 1486, "Rank": 3, "CommandName": "Set-PnPTeamsTeam" }, { - "Id": 1487, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "Id": 1487, "Rank": 4, "CommandName": "Set-PnPTeamsTeam" }, { - "Id": 1488, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "Id": 1488, "Rank": 1, "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Id": 1489, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "Id": 1489, "Rank": 2, "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Id": 1490, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "Id": 1490, "Rank": 3, "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Id": 1491, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "Id": 1491, "Rank": 1, "CommandName": "Set-PnPTeamsTeamPicture" }, { - "Id": 1492, "Command": "Set-PnPTemporarilyDisableAppBar $true", + "Id": 1492, "Rank": 1, "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { - "Id": 1493, "Command": "Set-PnPTemporarilyDisableAppBar $false", + "Id": 1493, "Rank": 2, "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { - "Id": 1494, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", + "Id": 1494, "Rank": 1, "CommandName": "Set-PnPTenant" }, { - "Id": 1495, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "Id": 1495, "Rank": 2, "CommandName": "Set-PnPTenant" }, { - "Id": 1496, "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "Id": 1496, "Rank": 3, "CommandName": "Set-PnPTenant" }, { - "Id": 1497, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "Id": 1497, "Rank": 4, "CommandName": "Set-PnPTenant" }, { - "Id": 1498, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "Id": 1498, "Rank": 1, "CommandName": "Set-PnPTenantAppCatalogUrl" }, { - "Id": 1499, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "Id": 1499, "Rank": 1, "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Id": 1500, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "Id": 1500, "Rank": 2, "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Id": 1501, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "Id": 1501, "Rank": 3, "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Id": 1502, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", + "Id": 1502, "Rank": 1, "CommandName": "Set-PnPTenantCdnPolicy" }, { - "Id": 1503, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "Id": 1503, "Rank": 2, "CommandName": "Set-PnPTenantCdnPolicy" }, { - "Id": 1504, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "Id": 1504, "Rank": 1, "CommandName": "Set-PnPTenantSite" }, { - "Id": 1505, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "Id": 1505, "Rank": 2, "CommandName": "Set-PnPTenantSite" }, { - "Id": 1506, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 1506, "Rank": 3, "CommandName": "Set-PnPTenantSite" }, { - "Id": 1507, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 1507, "Rank": 4, "CommandName": "Set-PnPTenantSite" }, { - "Id": 1508, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "Id": 1508, "Rank": 5, "CommandName": "Set-PnPTenantSite" }, { - "Id": 1509, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "Id": 1509, "Rank": 1, "CommandName": "Set-PnPTenantSyncClientRestriction" }, { - "Id": 1510, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "Id": 1510, "Rank": 2, "CommandName": "Set-PnPTenantSyncClientRestriction" }, { - "Id": 1511, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "Id": 1511, "Rank": 1, "CommandName": "Set-PnPTerm" }, { - "Id": 1512, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1512, "Rank": 2, "CommandName": "Set-PnPTerm" }, { - "Id": 1513, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1513, "Rank": 3, "CommandName": "Set-PnPTerm" }, { - "Id": 1514, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "Id": 1514, "Rank": 4, "CommandName": "Set-PnPTerm" }, { - "Id": 1515, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "Id": 1515, "Rank": 1, "CommandName": "Set-PnPTermGroup" }, { - "Id": 1516, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "Id": 1516, "Rank": 1, "CommandName": "Set-PnPTermSet" }, { - "Id": 1517, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "Id": 1517, "Rank": 2, "CommandName": "Set-PnPTermSet" }, { - "Id": 1518, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "Id": 1518, "Rank": 3, "CommandName": "Set-PnPTermSet" }, { - "Id": 1519, "Command": "Set-PnPTheme", + "Id": 1519, "Rank": 1, "CommandName": "Set-PnPTheme" }, { - "Id": 1520, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "Id": 1520, "Rank": 2, "CommandName": "Set-PnPTheme" }, { - "Id": 1521, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "Id": 1521, "Rank": 3, "CommandName": "Set-PnPTheme" }, { - "Id": 1522, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "Id": 1522, "Rank": 4, "CommandName": "Set-PnPTheme" }, { - "Id": 1523, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "Id": 1523, "Rank": 1, "CommandName": "Set-PnPTraceLog" }, { - "Id": 1524, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "Id": 1524, "Rank": 2, "CommandName": "Set-PnPTraceLog" }, { - "Id": 1525, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "Id": 1525, "Rank": 3, "CommandName": "Set-PnPTraceLog" }, { - "Id": 1526, "Command": "Set-PnPTraceLog -Off", + "Id": 1526, "Rank": 4, "CommandName": "Set-PnPTraceLog" }, { - "Id": 1527, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "Id": 1527, "Rank": 1, "CommandName": "Set-PnPUserOneDriveQuota" }, { - "Id": 1528, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "Id": 1528, "Rank": 1, "CommandName": "Set-PnPUserProfileProperty" }, { - "Id": 1529, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "Id": 1529, "Rank": 2, "CommandName": "Set-PnPUserProfileProperty" }, { - "Id": 1530, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "Id": 1530, "Rank": 1, "CommandName": "Set-PnPView" }, { - "Id": 1531, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "Id": 1531, "Rank": 2, "CommandName": "Set-PnPView" }, { - "Id": 1532, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "Id": 1532, "Rank": 3, "CommandName": "Set-PnPView" }, { - "Id": 1533, "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "Id": 1533, "Rank": 4, "CommandName": "Set-PnPView" }, { - "Id": 1534, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4 -CardSize Large -PropertiesJSON $myProperties", + "Id": 1534, "Rank": 1, "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Id": 1535, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "Id": 1535, "Rank": 2, "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Id": 1536, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4", + "Id": 1536, "Rank": 3, "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Id": 1537, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "Id": 1537, "Rank": 4, "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Id": 1538, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "Id": 1538, "Rank": 1, "CommandName": "Set-PnPWeb" }, { - "Id": 1539, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "Id": 1539, "Rank": 2, "CommandName": "Set-PnPWeb" }, { - "Id": 1540, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "Id": 1540, "Rank": 3, "CommandName": "Set-PnPWeb" }, { - "Id": 1541, "Command": "Set-PnPWeb -NoCrawl:$true", + "Id": 1541, "Rank": 4, "CommandName": "Set-PnPWeb" }, { - "Id": 1542, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "Id": 1542, "Rank": 1, "CommandName": "Set-PnPWebHeader" }, { - "Id": 1543, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "Id": 1543, "Rank": 2, "CommandName": "Set-PnPWebHeader" }, { - "Id": 1544, "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "Id": 1544, "Rank": 3, "CommandName": "Set-PnPWebHeader" }, { - "Id": 1545, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Id": 1545, "Rank": 1, "CommandName": "Set-PnPWebhookSubscription" }, { - "Id": 1546, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "Id": 1546, "Rank": 2, "CommandName": "Set-PnPWebhookSubscription" }, { - "Id": 1547, "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", + "Id": 1547, "Rank": 1, "CommandName": "Set-PnPWebPartProperty" }, { - "Id": 1548, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Id": 1548, "Rank": 1, "CommandName": "Set-PnPWebPermission" }, { - "Id": 1549, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "Id": 1549, "Rank": 2, "CommandName": "Set-PnPWebPermission" }, { - "Id": 1550, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Id": 1550, "Rank": 3, "CommandName": "Set-PnPWebPermission" }, { - "Id": 1551, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "Id": 1551, "Rank": 4, "CommandName": "Set-PnPWebPermission" }, { - "Id": 1552, "Command": "Set-PnPWebTheme -Theme MyTheme", + "Id": 1552, "Rank": 1, "CommandName": "Set-PnPWebTheme" }, { - "Id": 1553, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "Id": 1553, "Rank": 2, "CommandName": "Set-PnPWebTheme" }, { - "Id": 1554, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "Id": 1554, "Rank": 1, "CommandName": "Set-PnPWikiPageContent" }, { - "Id": 1555, "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "Id": 1555, "Rank": 1, "CommandName": "Submit-PnPSearchQuery" }, { - "Id": 1556, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "Id": 1556, "Rank": 2, "CommandName": "Submit-PnPSearchQuery" }, { - "Id": 1557, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "Id": 1557, "Rank": 3, "CommandName": "Submit-PnPSearchQuery" }, { - "Id": 1558, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "Id": 1558, "Rank": 4, "CommandName": "Submit-PnPSearchQuery" }, { - "Id": 1559, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "Id": 1559, "Rank": 5, "CommandName": "Submit-PnPSearchQuery" }, { - "Id": 1560, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", + "Id": 1560, "Rank": 6, "CommandName": "Submit-PnPSearchQuery" }, { - "Id": 1561, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "Id": 1561, "Rank": 1, "CommandName": "Submit-PnPTeamsChannelMessage" }, { - "Id": 1562, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "Id": 1562, "Rank": 2, "CommandName": "Submit-PnPTeamsChannelMessage" }, { - "Id": 1563, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1563, "Rank": 1, "CommandName": "Sync-PnPAppToTeams" }, { - "Id": 1564, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "Id": 1564, "Rank": 1, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Id": 1565, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "Id": 1565, "Rank": 2, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Id": 1566, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "Id": 1566, "Rank": 3, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Id": 1567, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "Id": 1567, "Rank": 1, "CommandName": "Test-PnPListItemIsRecord" }, { - "Id": 1568, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "Id": 1568, "Rank": 1, "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { - "Id": 1569, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1569, "Rank": 1, "CommandName": "Test-PnPSite" }, { - "Id": 1570, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Id": 1570, "Rank": 2, "CommandName": "Test-PnPSite" }, { - "Id": 1571, "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "Id": 1571, "Rank": 1, "CommandName": "Test-PnPTenantTemplate" }, { - "Id": 1572, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "Id": 1572, "Rank": 1, "CommandName": "Undo-PnPFileCheckedOut" }, { - "Id": 1573, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1573, "Rank": 1, "CommandName": "Uninstall-PnPApp" }, { - "Id": 1574, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1574, "Rank": 2, "CommandName": "Uninstall-PnPApp" }, { - "Id": 1575, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1575, "Rank": 1, "CommandName": "Unpublish-PnPApp" }, { - "Id": 1576, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1576, "Rank": 2, "CommandName": "Unpublish-PnPApp" }, { - "Id": 1577, "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "Id": 1577, "Rank": 1, "CommandName": "Unpublish-PnPContentType" }, { - "Id": 1578, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Id": 1578, "Rank": 1, "CommandName": "Unpublish-PnPSyntexModel" }, { - "Id": 1579, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", + "Id": 1579, "Rank": 2, "CommandName": "Unpublish-PnPSyntexModel" }, { - "Id": 1580, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Id": 1580, "Rank": 1, "CommandName": "Unregister-PnPHubSite" }, { - "Id": 1581, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1581, "Rank": 1, "CommandName": "Update-PnPApp" }, { - "Id": 1582, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1582, "Rank": 2, "CommandName": "Update-PnPApp" }, { - "Id": 1583, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Id": 1583, "Rank": 1, "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Id": 1584, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "Id": 1584, "Rank": 2, "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Id": 1585, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Id": 1585, "Rank": 3, "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Id": 1586, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "Id": 1586, "Rank": 1, "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Id": 1587, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Id": 1587, "Rank": 2, "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Id": 1588, "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "Id": 1588, "Rank": 3, "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Id": 1589, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "Id": 1589, "Rank": 1, "CommandName": "Update-PnPTeamsApp" }, { - "Id": 1590, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 1590, "Rank": 1, "CommandName": "Update-PnPTeamsUser" }, { - "Id": 1591, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Id": 1591, "Rank": 2, "CommandName": "Update-PnPTeamsUser" }, { - "Id": 1592, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "Id": 1592, "Rank": 3, "CommandName": "Update-PnPTeamsUser" }, { - "Id": 1593, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "Id": 1593, "Rank": 1, "CommandName": "Update-PnPUserType" } diff --git a/version.txt b/version.txt index ed6f14cd1..fc8149c19 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.124 \ No newline at end of file +2.2.125 \ No newline at end of file From 30c7c0ec9e7d3a23541f2ef758568f324d6bfc0b Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Fri, 10 Nov 2023 15:53:06 +0100 Subject: [PATCH 142/146] Added `-BusinessConnectivityServiceDisabled` to `Set-PnPTenant` (#3562) * Added BusinessConnectivityServiceDisabled to Set-PnPTenant * Added PR reference --------- Co-authored-by: Gautam Sheth --- CHANGELOG.md | 1 + src/Commands/Admin/SetTenant.cs | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff981cb40..2b678f04d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `-RelativeUrl` parameter to `Connect-PnPOnline` cmdlet to allow specifying custom URLs for usage with `-WebLogin` method. [#3530](https://github.com/pnp/powershell/pull/3530) - Added `-RetryCount` to `Submit-PnPSearchQuery` which allows for specifying the number of retries to perform when an exception occurs [#3528](https://github.com/pnp/powershell/pull/3528) - Added `-MailNickname` parameter to `Set-PnPMicrosoft365Group` cmdlet to allow changing of this property on a Microsoft 365 Group [#3529](https://github.com/pnp/powershell/pull/3529) +- Added `-BusinessConnectivityServiceDisabled` parameter to `Set-PnPTenant` cmdlt to allow disabling the Business Connectivity Service [#3562](https://github.com/pnp/powershell/pull/3562) ### Fixed diff --git a/src/Commands/Admin/SetTenant.cs b/src/Commands/Admin/SetTenant.cs index b6ab37eb0..eb9f9ade9 100644 --- a/src/Commands/Admin/SetTenant.cs +++ b/src/Commands/Admin/SetTenant.cs @@ -401,6 +401,9 @@ public class SetTenant : PnPAdminCmdlet [Parameter(Mandatory = false)] public bool? MassDeleteNotificationDisabled { get; set; } + [Parameter(Mandatory = false)] + public bool? BusinessConnectivityServiceDisabled { get; set; } + protected override void ExecuteCmdlet() { AdminContext.Load(Tenant); @@ -1335,6 +1338,12 @@ protected override void ExecuteCmdlet() modified = true; } + if(BusinessConnectivityServiceDisabled.HasValue) + { + Tenant.BusinessConnectivityServiceDisabled = BusinessConnectivityServiceDisabled.Value; + modified = true; + } + if (BlockDownloadFileTypePolicy.HasValue) { if (!BlockDownloadFileTypePolicy.Value) From 61d10a140b88c97aba9d32fd2e79b7f916aa1f99 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Fri, 10 Nov 2023 15:56:54 +0100 Subject: [PATCH 143/146] Adding request file links properties to site and tenant output (#3557) * Cleanup of the file. Removing separate private properties and replacing by get/set properties to simplify. * Adding CoreRequestFilesLinkEnabled, CoreRequestFilesLinkExpirationInDays, OneDriveRequestFilesLinkEnabled and OneDriveRequestFilesLinkExpirationInDays * Adding RequestFilesLinkEnabled and RequestFilesLinkExpirationInDays * Adding changelog entry * Added BusinessConnectivityServiceDisabled --------- Co-authored-by: Gautam Sheth --- CHANGELOG.md | 2 + src/Commands/Model/SPOSite.cs | 10 +- src/Commands/Model/SPOTenant.cs | 801 +++++++++++++------------------- 3 files changed, 329 insertions(+), 484 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b678f04d..49abfff91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `-RelativeUrl` parameter to `Connect-PnPOnline` cmdlet to allow specifying custom URLs for usage with `-WebLogin` method. [#3530](https://github.com/pnp/powershell/pull/3530) - Added `-RetryCount` to `Submit-PnPSearchQuery` which allows for specifying the number of retries to perform when an exception occurs [#3528](https://github.com/pnp/powershell/pull/3528) - Added `-MailNickname` parameter to `Set-PnPMicrosoft365Group` cmdlet to allow changing of this property on a Microsoft 365 Group [#3529](https://github.com/pnp/powershell/pull/3529) +- Added `RequestFilesLinkEnabled` and `RequestFilesLinkExpirationInDays` to the output of `Get-PnPSite` [#3557](https://github.com/pnp/powershell/pull/3557) +- Added `CoreRequestFilesLinkEnabled`, `CoreRequestFilesLinkExpirationInDays`, `OneDriveRequestFilesLinkEnabled`, `OneDriveRequestFilesLinkExpirationInDays`, `BusinessConnectivityServiceDisabled` to the output of `Get-PnPTenant` [#3557](https://github.com/pnp/powershell/pull/3557) - Added `-BusinessConnectivityServiceDisabled` parameter to `Set-PnPTenant` cmdlt to allow disabling the Business Connectivity Service [#3562](https://github.com/pnp/powershell/pull/3562) ### Fixed diff --git a/src/Commands/Model/SPOSite.cs b/src/Commands/Model/SPOSite.cs index 90018dbe4..975dfd1bf 100644 --- a/src/Commands/Model/SPOSite.cs +++ b/src/Commands/Model/SPOSite.cs @@ -5,6 +5,7 @@ namespace PnP.PowerShell.Commands.Model { public class SPOSite { + #region Properties public bool AllowDownloadingNonWebViewableFiles { get; set; } public bool AllowEditing { get; set; } public bool AllowSelfServiceUpgrade { get; set; } @@ -67,6 +68,11 @@ public class SPOSite public string Title { get; set; } public string Url { get; set; } public int WebsCount { get; set; } + public bool? RequestFilesLinkEnabled { private set; get; } + public int? RequestFilesLinkExpirationInDays { private set; get; } + + #endregion + public SPOSite(SiteProperties props, bool? disableSharingForNonOwnersStatus) { AllowDownloadingNonWebViewableFiles = props.AllowDownloadingNonWebViewableFiles; @@ -128,7 +134,9 @@ public SPOSite(SiteProperties props, bool? disableSharingForNonOwnersStatus) Template = props.Template; Title = props.Title; WebsCount = props.WebsCount; - Url = props.Url; + Url = props.Url; + RequestFilesLinkEnabled = props.RequestFilesLinkEnabled; + RequestFilesLinkExpirationInDays = props.RequestFilesLinkExpirationInDays; } } diff --git a/src/Commands/Model/SPOTenant.cs b/src/Commands/Model/SPOTenant.cs index 8c0b4a779..7492005db 100644 --- a/src/Commands/Model/SPOTenant.cs +++ b/src/Commands/Model/SPOTenant.cs @@ -9,209 +9,383 @@ namespace PnP.PowerShell.Commands.Model { public class SPOTenant { + #region Properties + + public bool HideDefaultThemes { private set; get; } + + public long StorageQuota { private set; get; } + + public long StorageQuotaAllocated { private set; get; } + + public double ResourceQuota { private set; get; } + + public double ResourceQuotaAllocated { private set; get; } + + public double OneDriveStorageQuota { private set; get; } + + public string CompatibilityRange { private set; get; } + + public bool ExternalServicesEnabled { private set; get; } + public string NoAccessRedirectUrl { private set; get; } + + public SharingCapabilities SharingCapability { private set; get; } + + public bool DisplayStartASiteOption { private set; get; } + + public string StartASiteFormUrl { private set; get; } + + public bool ShowEveryoneClaim { private set; get; } + + public bool ShowAllUsersClaim { private set; get; } + + public bool OfficeClientADALDisabled { private set; get; } + + public bool LegacyAuthProtocolsEnabled { private set; get; } + + public bool ShowEveryoneExceptExternalUsersClaim { private set; get; } + + public bool SearchResolveExactEmailOrUPN { private set; get; } + + public bool RequireAcceptingAccountMatchInvitedAccount { private set; get; } + public bool ProvisionSharedWithEveryoneFolder { private set; get; } + + public string SignInAccelerationDomain { private set; get; } + public bool EnableGuestSignInAcceleration { private set; get; } + + public bool UsePersistentCookiesForExplorerView { private set; get; } + + public bool BccExternalSharingInvitations { private set; get; } + + public string BccExternalSharingInvitationsList { private set; get; } + + public bool UserVoiceForFeedbackEnabled { private set; get; } + + public bool PublicCdnEnabled { private set; get; } + + public string PublicCdnAllowedFileTypes { private set; get; } + + public IList PublicCdnOrigins { private set; get; } + + public int RequireAnonymousLinksExpireInDays { private set; get; } + + public string SharingAllowedDomainList { private set; get; } + + public string SharingBlockedDomainList { private set; get; } + + public SharingDomainRestrictionModes SharingDomainRestrictionMode { private set; get; } + + public bool OneDriveForGuestsEnabled { private set; get; } + + public bool IPAddressEnforcement { private set; get; } + + public string IPAddressAllowList { private set; get; } + + public int IPAddressWACTokenLifetime { private set; get; } + + public bool UseFindPeopleInPeoplePicker { private set; get; } + + public SharingLinkType DefaultSharingLinkType { private set; get; } + + public SharingState ODBMembersCanShare { private set; get; } + + public SharingState ODBAccessRequests { private set; get; } + + public bool PreventExternalUsersFromResharing { private set; get; } + + public bool ShowPeoplePickerSuggestionsForGuestUsers { private set; get; } + + public AnonymousLinkType FileAnonymousLinkType { private set; get; } + + public AnonymousLinkType FolderAnonymousLinkType { private set; get; } + + public bool NotifyOwnersWhenItemsReshared { private set; get; } + + public bool NotifyOwnersWhenInvitationsAccepted { private set; get; } + + public bool NotificationsInOneDriveForBusinessEnabled { private set; get; } + + public bool NotificationsInSharePointEnabled { private set; get; } + + public SpecialCharactersState SpecialCharactersStateInFileFolderNames { private set; get; } + + public bool OwnerAnonymousNotification { private set; get; } + + public bool CommentsOnSitePagesDisabled { private set; get; } + + public bool SocialBarOnSitePagesDisabled { private set; get; } + + public int OrphanedPersonalSitesRetentionPeriod { private set; get; } + + public bool PermissiveBrowserFileHandlingOverride { private set; get; } + + public bool DisallowInfectedFileDownload { private set; get; } + + public SharingPermissionType DefaultLinkPermission { private set; get; } + + public SPOConditionalAccessPolicyType ConditionalAccessPolicy { private set; get; } + + public bool AllowDownloadingNonWebViewableFiles { private set; get; } + + public bool AllowEditing { private set; get; } + + public bool ApplyAppEnforcedRestrictionsToAdHocRecipients { private set; get; } + + public bool FilePickerExternalImageSearchEnabled { private set; get; } + + public bool EmailAttestationRequired { private set; get; } + + public int EmailAttestationReAuthDays { private set; get; } + + public Guid[] DisabledWebPartIds { private set; get; } + + public bool DisableCustomAppAuthentication { private set; get; } + + public SensitiveByDefaultState MarkNewFilesSensitiveByDefault { private set; get; } + + public bool StopNew2013Workflows { private set; get; } + + public bool ViewInFileExplorerEnabled { private set; get; } + + public bool DisableSpacesActivation { private set; get; } + + public bool? AllowFilesWithKeepLabelToBeDeletedSPO { private set; get; } + + public bool? AllowFilesWithKeepLabelToBeDeletedODB { private set; get; } + + public bool DisableAddToOneDrive { private set; get; } + + public bool IsFluidEnabled { private set; get; } + public bool DisablePersonalListCreation { private set; get; } + + public bool ExternalUserExpirationRequired { private set; get; } + + public int ExternalUserExpireInDays { private set; get; } + + public bool DisplayNamesOfFileViewers { private set; get; } + + public bool DisplayNamesOfFileViewersInSpo { private set; get; } + public bool IsLoopEnabled { private set; get; } + public Guid[] DisabledModernListTemplateIds { private set; get; } + public bool RestrictedAccessControl { private set; get; } + public bool DisableDocumentLibraryDefaultLabeling { private set; get; } + public bool IsEnableAppAuthPopUpEnabled { private set; get; } + public int? ExpireVersionsAfterDays { private set; get; } + public int? MajorVersionLimit { private set; get; } + public bool? EnableAutoExpirationVersionTrim { private set; get; } + public bool? EnableAzureADB2BIntegration { private set; get; } + public bool? SiteOwnerManageLegacyServicePrincipalEnabled { private set; get; } + public bool? CoreRequestFilesLinkEnabled { private set; get; } + public int? CoreRequestFilesLinkExpirationInDays { private set; get; } + public bool? OneDriveRequestFilesLinkEnabled { private set; get; } + public int? OneDriveRequestFilesLinkExpirationInDays { private set; get; } + + public bool? BusinessConnectivityServiceDisabled { private set; get; } + + #endregion + public SPOTenant(Tenant tenant, ClientContext clientContext) { - this.hideDefaultThemes = tenant.HideDefaultThemes; - this.storageQuota = tenant.StorageQuota; - this.storageQuotaAllocated = tenant.StorageQuotaAllocated; - this.resourceQuota = tenant.ResourceQuota; - this.resourceQuotaAllocated = tenant.ResourceQuotaAllocated; - this.oneDriveStorageQuota = tenant.OneDriveStorageQuota; - this.compatibilityRange = tenant.CompatibilityRange; - this.externalServicesEnabled = tenant.ExternalServicesEnabled; - this.noAccessRedirectUrl = tenant.NoAccessRedirectUrl; - this.sharingCapability = tenant.SharingCapability; - this.displayStartASiteOption = tenant.DisplayStartASiteOption; - this.startASiteFormUrl = tenant.StartASiteFormUrl; - this.showEveryoneClaim = tenant.ShowEveryoneClaim; - this.showAllUsersClaim = tenant.ShowAllUsersClaim; - this.officeClientADALDisabled = tenant.OfficeClientADALDisabled; - this.orphanedPersonalSitesRetentionPeriod = tenant.OrphanedPersonalSitesRetentionPeriod; - this.legacyAuthProtocolsEnabled = tenant.LegacyAuthProtocolsEnabled; - this.showEveryoneExceptExternalUsersClaim = tenant.ShowEveryoneExceptExternalUsersClaim; - this.searchResolveExactEmailOrUPN = tenant.SearchResolveExactEmailOrUPN; - this.requireAcceptingAccountMatchInvitedAccount = tenant.RequireAcceptingAccountMatchInvitedAccount; - this.provisionSharedWithEveryoneFolder = tenant.ProvisionSharedWithEveryoneFolder; - this.signInAccelerationDomain = tenant.SignInAccelerationDomain; - this.disabledWebPartIds = tenant.DisabledWebPartIds; - this.stopNew2013Workflows = tenant.StopNew2013Workflows; - this.viewInFileExplorerEnabled = tenant.ViewInFileExplorerEnabled; - this.externalUserExpirationRequired = tenant.ExternalUserExpirationRequired; - this.externalUserExpireInDays = tenant.ExternalUserExpireInDays; - this.displayNamesOfFileViewers = tenant.DisplayNamesOfFileViewers; - this.displayNamesOfFileViewersInSpo = tenant.DisplayNamesOfFileViewersInSpo; - this.isLoopEnabled = tenant.IsLoopEnabled; - this.enableAzureADB2BIntegration = tenant.EnableAzureADB2BIntegration; - this.siteOwnerManageLegacyServicePrincipalEnabled = tenant.SiteOwnerManageLegacyServicePrincipalEnabled; + HideDefaultThemes = tenant.HideDefaultThemes; + StorageQuota = tenant.StorageQuota; + StorageQuotaAllocated = tenant.StorageQuotaAllocated; + ResourceQuota = tenant.ResourceQuota; + ResourceQuotaAllocated = tenant.ResourceQuotaAllocated; + OneDriveStorageQuota = tenant.OneDriveStorageQuota; + CompatibilityRange = tenant.CompatibilityRange; + ExternalServicesEnabled = tenant.ExternalServicesEnabled; + NoAccessRedirectUrl = tenant.NoAccessRedirectUrl; + SharingCapability = tenant.SharingCapability; + DisplayStartASiteOption = tenant.DisplayStartASiteOption; + StartASiteFormUrl = tenant.StartASiteFormUrl; + ShowEveryoneClaim = tenant.ShowEveryoneClaim; + ShowAllUsersClaim = tenant.ShowAllUsersClaim; + OfficeClientADALDisabled = tenant.OfficeClientADALDisabled; + OrphanedPersonalSitesRetentionPeriod = tenant.OrphanedPersonalSitesRetentionPeriod; + LegacyAuthProtocolsEnabled = tenant.LegacyAuthProtocolsEnabled; + ShowEveryoneExceptExternalUsersClaim = tenant.ShowEveryoneExceptExternalUsersClaim; + SearchResolveExactEmailOrUPN = tenant.SearchResolveExactEmailOrUPN; + RequireAcceptingAccountMatchInvitedAccount = tenant.RequireAcceptingAccountMatchInvitedAccount; + ProvisionSharedWithEveryoneFolder = tenant.ProvisionSharedWithEveryoneFolder; + SignInAccelerationDomain = tenant.SignInAccelerationDomain; + DisabledWebPartIds = tenant.DisabledWebPartIds; + StopNew2013Workflows = tenant.StopNew2013Workflows; + ViewInFileExplorerEnabled = tenant.ViewInFileExplorerEnabled; + ExternalUserExpirationRequired = tenant.ExternalUserExpirationRequired; + ExternalUserExpireInDays = tenant.ExternalUserExpireInDays; + DisplayNamesOfFileViewers = tenant.DisplayNamesOfFileViewers; + DisplayNamesOfFileViewersInSpo = tenant.DisplayNamesOfFileViewersInSpo; + IsLoopEnabled = tenant.IsLoopEnabled; + EnableAzureADB2BIntegration = tenant.EnableAzureADB2BIntegration; + SiteOwnerManageLegacyServicePrincipalEnabled = tenant.SiteOwnerManageLegacyServicePrincipalEnabled; try { - this.enableGuestSignInAcceleration = tenant.EnableGuestSignInAcceleration; + EnableGuestSignInAcceleration = tenant.EnableGuestSignInAcceleration; } catch { - this.enableGuestSignInAcceleration = false; + EnableGuestSignInAcceleration = false; } - this.usePersistentCookiesForExplorerView = tenant.UsePersistentCookiesForExplorerView; - this.bccExternalSharingInvitations = tenant.BccExternalSharingInvitations; - this.bccExternalSharingInvitationsList = tenant.BccExternalSharingInvitationsList; + UsePersistentCookiesForExplorerView = tenant.UsePersistentCookiesForExplorerView; + BccExternalSharingInvitations = tenant.BccExternalSharingInvitations; + BccExternalSharingInvitationsList = tenant.BccExternalSharingInvitationsList; try { - this.useFindPeopleInPeoplePicker = tenant.UseFindPeopleInPeoplePicker; + UseFindPeopleInPeoplePicker = tenant.UseFindPeopleInPeoplePicker; } catch { - this.useFindPeopleInPeoplePicker = false; + UseFindPeopleInPeoplePicker = false; } try { - this.userVoiceForFeedbackEnabled = tenant.UserVoiceForFeedbackEnabled; + UserVoiceForFeedbackEnabled = tenant.UserVoiceForFeedbackEnabled; } catch { - this.userVoiceForFeedbackEnabled = true; + UserVoiceForFeedbackEnabled = true; } try { - this.requireAnonymousLinksExpireInDays = tenant.RequireAnonymousLinksExpireInDays; + RequireAnonymousLinksExpireInDays = tenant.RequireAnonymousLinksExpireInDays; } catch { - this.requireAnonymousLinksExpireInDays = 0; + RequireAnonymousLinksExpireInDays = 0; } - this.sharingAllowedDomainList = tenant.SharingAllowedDomainList; - this.sharingBlockedDomainList = tenant.SharingBlockedDomainList; - this.sharingDomainRestrictionMode = tenant.SharingDomainRestrictionMode; + SharingAllowedDomainList = tenant.SharingAllowedDomainList; + SharingBlockedDomainList = tenant.SharingBlockedDomainList; + SharingDomainRestrictionMode = tenant.SharingDomainRestrictionMode; try { - this.oneDriveStorageQuota = tenant.OneDriveStorageQuota; + OneDriveStorageQuota = tenant.OneDriveStorageQuota; } catch { - this.oneDriveStorageQuota = 0L; + OneDriveStorageQuota = 0L; } - this.oneDriveForGuestsEnabled = tenant.OneDriveForGuestsEnabled; + OneDriveForGuestsEnabled = tenant.OneDriveForGuestsEnabled; try { - this.ipAddressEnforcement = tenant.IPAddressEnforcement; + IPAddressEnforcement = tenant.IPAddressEnforcement; } catch { - this.ipAddressEnforcement = false; + IPAddressEnforcement = false; } try { - this.ipAddressAllowList = tenant.IPAddressAllowList; + IPAddressAllowList = tenant.IPAddressAllowList; } catch { - this.ipAddressAllowList = ""; + IPAddressAllowList = ""; } try { - this.ipAddressWACTokenLifetime = tenant.IPAddressWACTokenLifetime; + IPAddressWACTokenLifetime = tenant.IPAddressWACTokenLifetime; } catch { - this.ipAddressWACTokenLifetime = 600; + IPAddressWACTokenLifetime = 600; } try { - this.defaultSharingLinkType = tenant.DefaultSharingLinkType; + DefaultSharingLinkType = tenant.DefaultSharingLinkType; } catch { - this.defaultSharingLinkType = SharingLinkType.None; + DefaultSharingLinkType = SharingLinkType.None; } try { - this.showPeoplePickerSuggestionsForGuestUsers = tenant.ShowPeoplePickerSuggestionsForGuestUsers; + ShowPeoplePickerSuggestionsForGuestUsers = tenant.ShowPeoplePickerSuggestionsForGuestUsers; } catch { - this.showPeoplePickerSuggestionsForGuestUsers = false; + ShowPeoplePickerSuggestionsForGuestUsers = false; } try { - this.odbMembersCanShare = tenant.ODBMembersCanShare; + ODBMembersCanShare = tenant.ODBMembersCanShare; } catch { - this.odbMembersCanShare = SharingState.Unspecified; + ODBMembersCanShare = SharingState.Unspecified; } try { - this.odbAccessRequests = tenant.ODBAccessRequests; + ODBAccessRequests = tenant.ODBAccessRequests; } catch { - this.odbAccessRequests = SharingState.Unspecified; + ODBAccessRequests = SharingState.Unspecified; } try { - this.preventExternalUsersFromResharing = tenant.PreventExternalUsersFromResharing; + PreventExternalUsersFromResharing = tenant.PreventExternalUsersFromResharing; } catch { - this.preventExternalUsersFromResharing = false; + PreventExternalUsersFromResharing = false; } try { - this.publicCdnEnabled = tenant.PublicCdnEnabled; + PublicCdnEnabled = tenant.PublicCdnEnabled; } catch { - this.publicCdnEnabled = false; + PublicCdnEnabled = false; } try { - this.publicCdnAllowedFileTypes = tenant.PublicCdnAllowedFileTypes; + PublicCdnAllowedFileTypes = tenant.PublicCdnAllowedFileTypes; } catch { - this.publicCdnAllowedFileTypes = string.Empty; + PublicCdnAllowedFileTypes = string.Empty; } try { - this.notifyOwnersWhenItemsReshared = tenant.NotifyOwnersWhenItemsReshared; + NotifyOwnersWhenItemsReshared = tenant.NotifyOwnersWhenItemsReshared; } catch { - this.notifyOwnersWhenItemsReshared = true; + NotifyOwnersWhenItemsReshared = true; } try { - this.notifyOwnersWhenInvitationsAccepted = tenant.NotifyOwnersWhenInvitationsAccepted; + NotifyOwnersWhenInvitationsAccepted = tenant.NotifyOwnersWhenInvitationsAccepted; } catch { - this.notifyOwnersWhenInvitationsAccepted = true; + NotifyOwnersWhenInvitationsAccepted = true; } try { - this.notificationsInOneDriveForBusinessEnabled = tenant.NotificationsInOneDriveForBusinessEnabled; + NotificationsInOneDriveForBusinessEnabled = tenant.NotificationsInOneDriveForBusinessEnabled; } catch { - this.notificationsInOneDriveForBusinessEnabled = true; + NotificationsInOneDriveForBusinessEnabled = true; } try { - this.notificationsInSharePointEnabled = tenant.NotificationsInSharePointEnabled; + NotificationsInSharePointEnabled = tenant.NotificationsInSharePointEnabled; } catch { - this.notificationsInSharePointEnabled = true; + NotificationsInSharePointEnabled = true; } try { - this.ownerAnonymousNotification = tenant.OwnerAnonymousNotification; + OwnerAnonymousNotification = tenant.OwnerAnonymousNotification; } catch { - this.ownerAnonymousNotification = true; + OwnerAnonymousNotification = true; } - this.publicCdnOrigins = new List(); + PublicCdnOrigins = new List(); try { tenant.PublicCdnOrigins.ToList().ForEach(delegate (string s) @@ -220,7 +394,7 @@ public SPOTenant(Tenant tenant, ClientContext clientContext) { ',' }); - this.publicCdnOrigins.Add(new SPOPublicCdnOrigin(array[1], array[0])); + PublicCdnOrigins.Add(new SPOPublicCdnOrigin(array[1], array[0])); }); } catch @@ -228,185 +402,185 @@ public SPOTenant(Tenant tenant, ClientContext clientContext) } try { - this.fileAnonymousLinkType = tenant.FileAnonymousLinkType; + FileAnonymousLinkType = tenant.FileAnonymousLinkType; } catch { - this.fileAnonymousLinkType = AnonymousLinkType.None; + FileAnonymousLinkType = Microsoft.SharePoint.Client.AnonymousLinkType.None; } try { - this.folderAnonymousLinkType = tenant.FolderAnonymousLinkType; + FolderAnonymousLinkType = tenant.FolderAnonymousLinkType; } catch { - this.folderAnonymousLinkType = AnonymousLinkType.None; + FolderAnonymousLinkType = Microsoft.SharePoint.Client.AnonymousLinkType.None; } try { - this.permissiveBrowserFileHandlingOverride = tenant.PermissiveBrowserFileHandlingOverride; + PermissiveBrowserFileHandlingOverride = tenant.PermissiveBrowserFileHandlingOverride; } catch { - this.permissiveBrowserFileHandlingOverride = false; + PermissiveBrowserFileHandlingOverride = false; } try { - this.specialCharactersStateInFileFolderNames = tenant.SpecialCharactersStateInFileFolderNames; + SpecialCharactersStateInFileFolderNames = tenant.SpecialCharactersStateInFileFolderNames; } catch { - this.specialCharactersStateInFileFolderNames = SpecialCharactersState.NoPreference; + SpecialCharactersStateInFileFolderNames = SpecialCharactersState.NoPreference; } try { - this.disallowInfectedFileDownload = tenant.DisallowInfectedFileDownload; + DisallowInfectedFileDownload = tenant.DisallowInfectedFileDownload; } catch { - this.disallowInfectedFileDownload = false; + DisallowInfectedFileDownload = false; } try { - this.commentsOnSitePagesDisabled = tenant.CommentsOnSitePagesDisabled; + CommentsOnSitePagesDisabled = tenant.CommentsOnSitePagesDisabled; } catch { - this.commentsOnSitePagesDisabled = false; + CommentsOnSitePagesDisabled = false; } try { - this.socialBarOnSitePagesDisabled = tenant.SocialBarOnSitePagesDisabled; + SocialBarOnSitePagesDisabled = tenant.SocialBarOnSitePagesDisabled; } catch { - this.socialBarOnSitePagesDisabled = true; + SocialBarOnSitePagesDisabled = true; } try { - this.defaultLinkPermission = tenant.DefaultLinkPermission; + DefaultLinkPermission = tenant.DefaultLinkPermission; } catch { - this.defaultLinkPermission = SharingPermissionType.None; + DefaultLinkPermission = SharingPermissionType.None; } try { - this.conditionalAccessPolicy = tenant.ConditionalAccessPolicy; + ConditionalAccessPolicy = tenant.ConditionalAccessPolicy; } catch { - this.conditionalAccessPolicy = SPOConditionalAccessPolicyType.AllowFullAccess; + ConditionalAccessPolicy = SPOConditionalAccessPolicyType.AllowFullAccess; } try { - this.allowDownloadingNonWebViewableFiles = tenant.AllowDownloadingNonWebViewableFiles; + AllowDownloadingNonWebViewableFiles = tenant.AllowDownloadingNonWebViewableFiles; } catch { - this.allowDownloadingNonWebViewableFiles = true; + AllowDownloadingNonWebViewableFiles = true; } try { - this.allowEditing = tenant.AllowEditing; + AllowEditing = tenant.AllowEditing; } catch { - this.allowEditing = true; + AllowEditing = true; } try { - this.applyAppEnforcedRestrictionsToAdHocRecipients = tenant.ApplyAppEnforcedRestrictionsToAdHocRecipients; + ApplyAppEnforcedRestrictionsToAdHocRecipients = tenant.ApplyAppEnforcedRestrictionsToAdHocRecipients; } catch { - this.applyAppEnforcedRestrictionsToAdHocRecipients = true; + ApplyAppEnforcedRestrictionsToAdHocRecipients = true; } try { - this.filePickerExternalImageSearchEnabled = tenant.FilePickerExternalImageSearchEnabled; + FilePickerExternalImageSearchEnabled = tenant.FilePickerExternalImageSearchEnabled; } catch { - this.filePickerExternalImageSearchEnabled = true; + FilePickerExternalImageSearchEnabled = true; } try { - this.emailAttestationRequired = tenant.EmailAttestationRequired; + EmailAttestationRequired = tenant.EmailAttestationRequired; } catch { - this.emailAttestationRequired = false; + EmailAttestationRequired = false; } try { - this.emailAttestationReAuthDays = tenant.EmailAttestationReAuthDays; + EmailAttestationReAuthDays = tenant.EmailAttestationReAuthDays; } catch { - this.emailAttestationReAuthDays = 30; + EmailAttestationReAuthDays = 30; } try { - this.disableCustomAppAuthentication = tenant.DisableCustomAppAuthentication; + DisableCustomAppAuthentication = tenant.DisableCustomAppAuthentication; } catch { - this.disableCustomAppAuthentication = false; + DisableCustomAppAuthentication = false; } - this.markNewFilesSensitiveByDefault = tenant.MarkNewFilesSensitiveByDefault; + MarkNewFilesSensitiveByDefault = tenant.MarkNewFilesSensitiveByDefault; try { - this.disableSpacesActivation = tenant.DisableSpacesActivation; + DisableSpacesActivation = tenant.DisableSpacesActivation; } catch { - this.disableSpacesActivation = false; + DisableSpacesActivation = false; } try { - this.disableAddToOneDrive = tenant.DisableAddToOneDrive; + DisableAddToOneDrive = tenant.DisableAddToOneDrive; } catch { - this.disableAddToOneDrive = false; + DisableAddToOneDrive = false; } try { - this.isFluidEnabled = tenant.IsFluidEnabled; + IsFluidEnabled = tenant.IsFluidEnabled; } catch { - this.isFluidEnabled = false; + IsFluidEnabled = false; } try { - this.disablePersonalListCreation = tenant.DisablePersonalListCreation; + DisablePersonalListCreation = tenant.DisablePersonalListCreation; } catch { - this.disablePersonalListCreation = false; + DisablePersonalListCreation = false; } - this.disabledModernListTemplateIds = tenant.DisabledModernListTemplateIds; - this.restrictedAccessControl = tenant.EnableRestrictedAccessControl; + DisabledModernListTemplateIds = tenant.DisabledModernListTemplateIds; + RestrictedAccessControl = tenant.EnableRestrictedAccessControl; try { - this.disableDocumentLibraryDefaultLabeling = tenant.DisableDocumentLibraryDefaultLabeling; + DisableDocumentLibraryDefaultLabeling = tenant.DisableDocumentLibraryDefaultLabeling; } catch { - this.disableDocumentLibraryDefaultLabeling = false; + DisableDocumentLibraryDefaultLabeling = false; } try { - this.isEnableAppAuthPopUpEnabled = tenant.IsEnableAppAuthPopUpEnabled; + IsEnableAppAuthPopUpEnabled = tenant.IsEnableAppAuthPopUpEnabled; } catch { - this.isEnableAppAuthPopUpEnabled = false; + IsEnableAppAuthPopUpEnabled = false; } try @@ -415,41 +589,41 @@ public SPOTenant(Tenant tenant, ClientContext clientContext) var getAllowFilesWithKeepLabelToBeDeletedODB = Microsoft.SharePoint.Client.CompliancePolicy.SPPolicyStoreProxy.GetAllowFilesWithKeepLabelToBeDeletedODB(clientContext); clientContext.ExecuteQueryRetry(); - this.allowFilesWithKeepLabelToBeDeletedSPO = getAllowFilesWithKeepLabelToBeDeletedSPO.Value; - this.allowFilesWithKeepLabelToBeDeletedODB = getAllowFilesWithKeepLabelToBeDeletedODB.Value; + AllowFilesWithKeepLabelToBeDeletedSPO = getAllowFilesWithKeepLabelToBeDeletedSPO.Value; + AllowFilesWithKeepLabelToBeDeletedODB = getAllowFilesWithKeepLabelToBeDeletedODB.Value; } catch { } try { - this.expireVersionsAfterDays = tenant.ExpireVersionsAfterDays; + ExpireVersionsAfterDays = tenant.ExpireVersionsAfterDays; } catch { - this.expireVersionsAfterDays = 0; + ExpireVersionsAfterDays = 0; } try { - this.majorVersionLimit = tenant.MajorVersionLimit; + MajorVersionLimit = tenant.MajorVersionLimit; } catch { - this.majorVersionLimit = 0; + MajorVersionLimit = 0; } try { - this.enableAutoExpirationVersionTrim = tenant.EnableAutoExpirationVersionTrim; + EnableAutoExpirationVersionTrim = tenant.EnableAutoExpirationVersionTrim; } catch { - this.enableAutoExpirationVersionTrim = false; + EnableAutoExpirationVersionTrim = false; } try { - this.enableAzureADB2BIntegration = tenant.EnableAzureADB2BIntegration; + EnableAzureADB2BIntegration = tenant.EnableAzureADB2BIntegration; } catch { @@ -457,356 +631,17 @@ public SPOTenant(Tenant tenant, ClientContext clientContext) try { - this.siteOwnerManageLegacyServicePrincipalEnabled = tenant.SiteOwnerManageLegacyServicePrincipalEnabled; + SiteOwnerManageLegacyServicePrincipalEnabled = tenant.SiteOwnerManageLegacyServicePrincipalEnabled; } catch { } - } - - public bool HideDefaultThemes => hideDefaultThemes; - - public long StorageQuota => storageQuota; - - public long StorageQuotaAllocated => storageQuotaAllocated; - - public double ResourceQuota => resourceQuota; - - public double ResourceQuotaAllocated => resourceQuotaAllocated; - - public double OneDriveStorageQuota => oneDriveStorageQuota; - - public string CompatibilityRange => compatibilityRange; - - public bool ExternalServicesEnabled => externalServicesEnabled; - - public string NoAccessRedirectUrl => noAccessRedirectUrl; - - public SharingCapabilities SharingCapability => sharingCapability; - - public bool DisplayStartASiteOption => displayStartASiteOption; - - public string StartASiteFormUrl => startASiteFormUrl; - - public bool ShowEveryoneClaim => showEveryoneClaim; - - public bool ShowAllUsersClaim => showAllUsersClaim; - - public bool OfficeClientADALDisabled => officeClientADALDisabled; - - public bool LegacyAuthProtocolsEnabled => legacyAuthProtocolsEnabled; - - public bool ShowEveryoneExceptExternalUsersClaim => showEveryoneExceptExternalUsersClaim; - - public bool SearchResolveExactEmailOrUPN => searchResolveExactEmailOrUPN; - - public bool RequireAcceptingAccountMatchInvitedAccount => requireAcceptingAccountMatchInvitedAccount; - - public bool ProvisionSharedWithEveryoneFolder => provisionSharedWithEveryoneFolder; - - public string SignInAccelerationDomain => signInAccelerationDomain; - - public bool EnableGuestSignInAcceleration => enableGuestSignInAcceleration; - - public bool UsePersistentCookiesForExplorerView => usePersistentCookiesForExplorerView; - - public bool BccExternalSharingInvitations => bccExternalSharingInvitations; - - public string BccExternalSharingInvitationsList => bccExternalSharingInvitationsList; - - public bool UserVoiceForFeedbackEnabled => userVoiceForFeedbackEnabled; - - public bool PublicCdnEnabled => publicCdnEnabled; - - public string PublicCdnAllowedFileTypes => publicCdnAllowedFileTypes; - - public IList PublicCdnOrigins => publicCdnOrigins; - - public int RequireAnonymousLinksExpireInDays => requireAnonymousLinksExpireInDays; - - public string SharingAllowedDomainList => sharingAllowedDomainList; - - public string SharingBlockedDomainList => sharingBlockedDomainList; - - public SharingDomainRestrictionModes SharingDomainRestrictionMode => sharingDomainRestrictionMode; - - public bool OneDriveForGuestsEnabled => oneDriveForGuestsEnabled; - - public bool IPAddressEnforcement => ipAddressEnforcement; - - public string IPAddressAllowList => ipAddressAllowList; - - public int IPAddressWACTokenLifetime => ipAddressWACTokenLifetime; - - public bool UseFindPeopleInPeoplePicker => useFindPeopleInPeoplePicker; - - public SharingLinkType DefaultSharingLinkType => defaultSharingLinkType; - - public SharingState ODBMembersCanShare => odbMembersCanShare; - - public SharingState ODBAccessRequests => odbAccessRequests; - - public bool PreventExternalUsersFromResharing => preventExternalUsersFromResharing; - - public bool ShowPeoplePickerSuggestionsForGuestUsers => showPeoplePickerSuggestionsForGuestUsers; - - public AnonymousLinkType FileAnonymousLinkType => fileAnonymousLinkType; - public AnonymousLinkType FolderAnonymousLinkType => folderAnonymousLinkType; - - public bool NotifyOwnersWhenItemsReshared => notifyOwnersWhenItemsReshared; - - public bool NotifyOwnersWhenInvitationsAccepted => notifyOwnersWhenInvitationsAccepted; - - public bool NotificationsInOneDriveForBusinessEnabled => notificationsInOneDriveForBusinessEnabled; - - public bool NotificationsInSharePointEnabled => notificationsInSharePointEnabled; - - public SpecialCharactersState SpecialCharactersStateInFileFolderNames => specialCharactersStateInFileFolderNames; - - public bool OwnerAnonymousNotification => ownerAnonymousNotification; - - public bool CommentsOnSitePagesDisabled => commentsOnSitePagesDisabled; - - public bool SocialBarOnSitePagesDisabled => socialBarOnSitePagesDisabled; - - public int OrphanedPersonalSitesRetentionPeriod => orphanedPersonalSitesRetentionPeriod; - - public bool PermissiveBrowserFileHandlingOverride => permissiveBrowserFileHandlingOverride; - - public bool DisallowInfectedFileDownload => disallowInfectedFileDownload; - - public SharingPermissionType DefaultLinkPermission => defaultLinkPermission; - - public SPOConditionalAccessPolicyType ConditionalAccessPolicy => conditionalAccessPolicy; - - public bool AllowDownloadingNonWebViewableFiles => allowDownloadingNonWebViewableFiles; - - public bool AllowEditing => allowEditing; - - public bool ApplyAppEnforcedRestrictionsToAdHocRecipients => applyAppEnforcedRestrictionsToAdHocRecipients; - - public bool FilePickerExternalImageSearchEnabled => filePickerExternalImageSearchEnabled; - - public bool EmailAttestationRequired => emailAttestationRequired; - - public int EmailAttestationReAuthDays => emailAttestationReAuthDays; - - public Guid[] DisabledWebPartIds => disabledWebPartIds; - - public bool DisableCustomAppAuthentication => disableCustomAppAuthentication; - - public SensitiveByDefaultState MarkNewFilesSensitiveByDefault => markNewFilesSensitiveByDefault; - - public bool StopNew2013Workflows => stopNew2013Workflows; - - public bool ViewInFileExplorerEnabled => viewInFileExplorerEnabled; - - public bool DisableSpacesActivation => disableSpacesActivation; - - public bool? AllowFilesWithKeepLabelToBeDeletedSPO => allowFilesWithKeepLabelToBeDeletedSPO; - - public bool? AllowFilesWithKeepLabelToBeDeletedODB => allowFilesWithKeepLabelToBeDeletedODB; - - public bool DisableAddToOneDrive => disableAddToOneDrive; - - public bool IsFluidEnabled => isFluidEnabled; - public bool DisablePersonalListCreation => disablePersonalListCreation; - - public bool ExternalUserExpirationRequired => externalUserExpirationRequired; - - public int ExternalUserExpireInDays => externalUserExpireInDays; - - public bool DisplayNamesOfFileViewers => displayNamesOfFileViewers; - - public bool DisplayNamesOfFileViewersInSpo => displayNamesOfFileViewersInSpo; - public bool IsLoopEnabled => isLoopEnabled; - public Guid[] DisabledModernListTemplateIds => disabledModernListTemplateIds; - public bool RestrictedAccessControl => restrictedAccessControl; - public bool DisableDocumentLibraryDefaultLabeling => disableDocumentLibraryDefaultLabeling; - public bool IsEnableAppAuthPopUpEnabled => isEnableAppAuthPopUpEnabled; - public int? ExpireVersionsAfterDays => expireVersionsAfterDays; - public int? MajorVersionLimit => majorVersionLimit; - public bool? EnableAutoExpirationVersionTrim => enableAutoExpirationVersionTrim; - public bool? EnableAzureADB2BIntegration => enableAzureADB2BIntegration; - public bool? SiteOwnerManageLegacyServicePrincipalEnabled => siteOwnerManageLegacyServicePrincipalEnabled; - - private bool hideDefaultThemes; - - private long storageQuota; - - private long storageQuotaAllocated; - - private double resourceQuota; - - private double resourceQuotaAllocated; - - private long oneDriveStorageQuota; - - private string compatibilityRange; - - private bool externalServicesEnabled; - - private string noAccessRedirectUrl; - - private SharingCapabilities sharingCapability; - - private bool displayStartASiteOption; - - private string startASiteFormUrl; - - private bool showEveryoneClaim; - - private bool showAllUsersClaim; - - private bool officeClientADALDisabled; - - private bool legacyAuthProtocolsEnabled; - - private bool showEveryoneExceptExternalUsersClaim; - - private bool searchResolveExactEmailOrUPN; - - private bool requireAcceptingAccountMatchInvitedAccount; - - private bool provisionSharedWithEveryoneFolder; - - private string signInAccelerationDomain; - - private bool enableGuestSignInAcceleration; - - private bool usePersistentCookiesForExplorerView; - - private bool bccExternalSharingInvitations; - - private string bccExternalSharingInvitationsList; - - private bool userVoiceForFeedbackEnabled; - - private bool publicCdnEnabled; - - private string publicCdnAllowedFileTypes; - - private IList publicCdnOrigins; - - private int requireAnonymousLinksExpireInDays; - - private string sharingAllowedDomainList; - - private string sharingBlockedDomainList; - - private SharingDomainRestrictionModes sharingDomainRestrictionMode; - - private bool oneDriveForGuestsEnabled; - - private bool ipAddressEnforcement; - - private string ipAddressAllowList; - - private int ipAddressWACTokenLifetime; - - private bool useFindPeopleInPeoplePicker; - - private SharingLinkType defaultSharingLinkType; - - private SharingState odbMembersCanShare; - - private SharingState odbAccessRequests; - - private bool preventExternalUsersFromResharing; - - private bool showPeoplePickerSuggestionsForGuestUsers; - - private AnonymousLinkType fileAnonymousLinkType; - - private AnonymousLinkType folderAnonymousLinkType; - - private bool notifyOwnersWhenItemsReshared; - - private bool notifyOwnersWhenInvitationsAccepted; - - private bool notificationsInOneDriveForBusinessEnabled; - - private bool notificationsInSharePointEnabled; - - private SpecialCharactersState specialCharactersStateInFileFolderNames; - - private bool ownerAnonymousNotification; - - private bool commentsOnSitePagesDisabled; - - private bool socialBarOnSitePagesDisabled; - - private int orphanedPersonalSitesRetentionPeriod; - - private bool permissiveBrowserFileHandlingOverride; - - private bool disallowInfectedFileDownload; - - private SharingPermissionType defaultLinkPermission; - - private SPOConditionalAccessPolicyType conditionalAccessPolicy; - - private bool allowDownloadingNonWebViewableFiles = true; - - private bool allowEditing = true; - - private bool applyAppEnforcedRestrictionsToAdHocRecipients; - - private bool filePickerExternalImageSearchEnabled; - - private bool emailAttestationRequired; - - private int emailAttestationReAuthDays; - - private Guid[] disabledWebPartIds; - - private bool disableCustomAppAuthentication; - - private SensitiveByDefaultState markNewFilesSensitiveByDefault; - - private bool stopNew2013Workflows; - - private bool viewInFileExplorerEnabled; - - private bool disableSpacesActivation; - - private bool? allowFilesWithKeepLabelToBeDeletedSPO; - - private bool? allowFilesWithKeepLabelToBeDeletedODB; - - private bool disableAddToOneDrive; - - private bool isFluidEnabled; - - private bool disablePersonalListCreation; - - private Guid[] disabledModernListTemplateIds; - - private bool externalUserExpirationRequired; - - private int externalUserExpireInDays; - - private bool displayNamesOfFileViewers; - - private bool displayNamesOfFileViewersInSpo; - - private bool isLoopEnabled; - - private bool restrictedAccessControl; - - private bool disableDocumentLibraryDefaultLabeling; - - private bool isEnableAppAuthPopUpEnabled; - - private int? expireVersionsAfterDays; - - private int? majorVersionLimit; - - private bool? enableAutoExpirationVersionTrim; - - private bool? enableAzureADB2BIntegration; - - private bool? siteOwnerManageLegacyServicePrincipalEnabled; + CoreRequestFilesLinkEnabled = tenant.CoreRequestFilesLinkEnabled; + CoreRequestFilesLinkExpirationInDays = tenant.CoreRequestFilesLinkExpirationInDays; + OneDriveRequestFilesLinkEnabled = tenant.OneDriveRequestFilesLinkEnabled; + OneDriveRequestFilesLinkExpirationInDays = tenant.OneDriveRequestFilesLinkExpirationInDays; + BusinessConnectivityServiceDisabled = tenant.BusinessConnectivityServiceDisabled; + } } } From 327a2ade4b2b539b73f9763a840fbc134355ffca Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Fri, 10 Nov 2023 16:01:59 +0100 Subject: [PATCH 144/146] Added Information Barriers information to the output of `Get-PnPTenantSite` (#3556) * Added Information Barriers information to the output of `Get-PnPTenantSite` * Added PR reference --------- Co-authored-by: Gautam Sheth --- CHANGELOG.md | 1 + src/Commands/Model/SPOSite.cs | 14 ++++++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49abfff91..c35e20efa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `-RelativeUrl` parameter to `Connect-PnPOnline` cmdlet to allow specifying custom URLs for usage with `-WebLogin` method. [#3530](https://github.com/pnp/powershell/pull/3530) - Added `-RetryCount` to `Submit-PnPSearchQuery` which allows for specifying the number of retries to perform when an exception occurs [#3528](https://github.com/pnp/powershell/pull/3528) - Added `-MailNickname` parameter to `Set-PnPMicrosoft365Group` cmdlet to allow changing of this property on a Microsoft 365 Group [#3529](https://github.com/pnp/powershell/pull/3529) +- Added Information Barriers information to the output of `Get-PnPTenantSite` [#3556](https://github.com/pnp/powershell/pull/3556) - Added `RequestFilesLinkEnabled` and `RequestFilesLinkExpirationInDays` to the output of `Get-PnPSite` [#3557](https://github.com/pnp/powershell/pull/3557) - Added `CoreRequestFilesLinkEnabled`, `CoreRequestFilesLinkExpirationInDays`, `OneDriveRequestFilesLinkEnabled`, `OneDriveRequestFilesLinkExpirationInDays`, `BusinessConnectivityServiceDisabled` to the output of `Get-PnPTenant` [#3557](https://github.com/pnp/powershell/pull/3557) - Added `-BusinessConnectivityServiceDisabled` parameter to `Set-PnPTenant` cmdlt to allow disabling the Business Connectivity Service [#3562](https://github.com/pnp/powershell/pull/3562) diff --git a/src/Commands/Model/SPOSite.cs b/src/Commands/Model/SPOSite.cs index 975dfd1bf..e0fdcc15c 100644 --- a/src/Commands/Model/SPOSite.cs +++ b/src/Commands/Model/SPOSite.cs @@ -68,11 +68,18 @@ public class SPOSite public string Title { get; set; } public string Url { get; set; } public int WebsCount { get; set; } + + public string InformationBarrierMode { get; set; } + public Guid[] InformationBarrierSegments { get; set; } + public Guid[] InformationBarrierSegmentsToAdd { get; set; } + public Guid[] InformationBarrierSegmentsToRemove { get; set; } + public bool? RequestFilesLinkEnabled { private set; get; } public int? RequestFilesLinkExpirationInDays { private set; get; } - + #endregion + public SPOSite(SiteProperties props, bool? disableSharingForNonOwnersStatus) { AllowDownloadingNonWebViewableFiles = props.AllowDownloadingNonWebViewableFiles; @@ -135,9 +142,12 @@ public SPOSite(SiteProperties props, bool? disableSharingForNonOwnersStatus) Title = props.Title; WebsCount = props.WebsCount; Url = props.Url; + InformationBarrierMode = props.IBMode; + InformationBarrierSegments = props.IBSegments; + InformationBarrierSegmentsToAdd = props.IBSegmentsToAdd; + InformationBarrierSegmentsToRemove = props.IBSegmentsToRemove; RequestFilesLinkEnabled = props.RequestFilesLinkEnabled; RequestFilesLinkExpirationInDays = props.RequestFilesLinkExpirationInDays; } - } } \ No newline at end of file From 11d195b6b9fe8150fd403e928a38a477e8a27cc7 Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Fri, 10 Nov 2023 16:09:25 +0100 Subject: [PATCH 145/146] Adding possibility to set SAN when using `New-PnPAzureCertificate` (#3555) * Adding possibility to set the Subject Alternative Names on the self signed certificate * Adding changelog entry --------- Co-authored-by: Gautam Sheth --- CHANGELOG.md | 1 + documentation/New-PnPAzureCertificate.md | 35 ++++++++++++++++++--- src/Commands/AzureAD/RegisterAzureADApp.cs | 2 +- src/Commands/Base/GetAzureCertificate.cs | 10 +++++- src/Commands/Base/NewAzureCertificate.cs | 10 +++++- src/Commands/Model/AzureCertificate.cs | 12 +++---- src/Commands/Utilities/CertificateHelper.cs | 16 ++++++++-- 7 files changed, 67 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c35e20efa..8b0a28e6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `-RelativeUrl` parameter to `Connect-PnPOnline` cmdlet to allow specifying custom URLs for usage with `-WebLogin` method. [#3530](https://github.com/pnp/powershell/pull/3530) - Added `-RetryCount` to `Submit-PnPSearchQuery` which allows for specifying the number of retries to perform when an exception occurs [#3528](https://github.com/pnp/powershell/pull/3528) - Added `-MailNickname` parameter to `Set-PnPMicrosoft365Group` cmdlet to allow changing of this property on a Microsoft 365 Group [#3529](https://github.com/pnp/powershell/pull/3529) +- Added `-SanNames` to `New-PnPAzureCertificate` which allows for controlling the Subject Alternative Names set on the generated certificate [#3555](https://github.com/pnp/powershell/pull/3555) - Added Information Barriers information to the output of `Get-PnPTenantSite` [#3556](https://github.com/pnp/powershell/pull/3556) - Added `RequestFilesLinkEnabled` and `RequestFilesLinkExpirationInDays` to the output of `Get-PnPSite` [#3557](https://github.com/pnp/powershell/pull/3557) - Added `CoreRequestFilesLinkEnabled`, `CoreRequestFilesLinkExpirationInDays`, `OneDriveRequestFilesLinkEnabled`, `OneDriveRequestFilesLinkExpirationInDays`, `BusinessConnectivityServiceDisabled` to the output of `Get-PnPTenant` [#3557](https://github.com/pnp/powershell/pull/3557) diff --git a/documentation/New-PnPAzureCertificate.md b/documentation/New-PnPAzureCertificate.md index 789a9a2a8..8258a1dd0 100644 --- a/documentation/New-PnPAzureCertificate.md +++ b/documentation/New-PnPAzureCertificate.md @@ -25,12 +25,12 @@ PrivateKey contains the PEM encoded private key of the certificate. ```powershell New-PnPAzureCertificate [-CommonName ] [-Country ] [-State ] [-Locality ] [-Organization ] [-OrganizationUnit ] [-OutPfx ] - [-OutCert ] [-ValidYears ] [-CertificatePassword ] [-Store ] + [-OutCert ] [-ValidYears ] [-CertificatePassword ] [-Store ] [-SanNames ] ``` ## DESCRIPTION -Allows to create a self-signed certificate and manifest settings to be used with CSOM via an app-only ADAL application. +Allows to create a self-signed certificate and manifest settings to be used with PnP PowerShell via an app-only application registration. ## EXAMPLES @@ -39,21 +39,28 @@ Allows to create a self-signed certificate and manifest settings to be used with New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer ``` -This will generate a default self-signed certificate named "pnp.contoso.com" valid for 10 years and output a pfx and cer file to disk. The private key file (pfx) will not be password protected. +This will generate a default self-signed certificate named "pnp.contoso.com" valid for 10 years and output a pfx and cer file to disk. The private key file (pfx) will not be password protected. It will have localhost and the machinename as the Subject Alternative Names. ### EXAMPLE 2 ```powershell New-PnPAzureCertificate -CommonName "My Certificate" -ValidYears 30 ``` -This will output a certificate named "My Certificate" which expires in 30 years from now to the screen. It will not write the certificate files to disk. +This will output a certificate named "My Certificate" which expires in 30 years from now to the screen. It will not write the certificate files to disk. It will have localhost and the machinename as the Subject Alternative Names. ### EXAMPLE 3 ```powershell New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String "pass@word1" -AsPlainText -Force) ``` -This will generate a default self-signed certificate named "pnp.contoso.com" valid for 10 years and output a pfx and cer file to disk. The pfx file will have the password pass@word1 set on it. +This will generate a default self-signed certificate named "pnp.contoso.com" valid for 10 years and output a pfx and cer file to disk. The pfx file will have the password pass@word1 set on it. It will have localhost and the machinename as the Subject Alternative Names. + +### EXAMPLE 4 +```powershell +New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null +``` + +This will generate a default self-signed certificate named "pnp.contoso.com" valid for 10 years and output a pfx and cer file to disk. There will not be any Subject Alternative Names in the generated certificate. ## PARAMETERS @@ -169,6 +176,24 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SanNames +One or more DNS names to add to the certificate as Subject Alternative Names. Separate multiple names with a comma, i.e. "host1.domain.com","host2.domain.com". + +Provide $null to not add any Subject Alternative names to the certificate. + +Omit to add localhost and the machine name as Subject Alternative Names. + +```yaml +Type: String[] +Parameter Sets: (All) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -State State or Province Name (full name) diff --git a/src/Commands/AzureAD/RegisterAzureADApp.cs b/src/Commands/AzureAD/RegisterAzureADApp.cs index 9f1a5ddaf..8da6b45ae 100644 --- a/src/Commands/AzureAD/RegisterAzureADApp.cs +++ b/src/Commands/AzureAD/RegisterAzureADApp.cs @@ -493,7 +493,7 @@ private X509Certificate2 GetCertificate(PSObject record) } DateTime validFrom = DateTime.Today; DateTime validTo = validFrom.AddYears(ValidYears); - cert = CertificateHelper.CreateSelfSignedCertificate(CommonName, Country, State, Locality, Organization, OrganizationUnit, CertificatePassword, CommonName, validFrom, validTo); + cert = CertificateHelper.CreateSelfSignedCertificate(CommonName, Country, State, Locality, Organization, OrganizationUnit, CertificatePassword, CommonName, validFrom, validTo, Array.Empty()); if (Directory.Exists(OutPath)) { diff --git a/src/Commands/Base/GetAzureCertificate.cs b/src/Commands/Base/GetAzureCertificate.cs index 8d98ddee1..c67166978 100644 --- a/src/Commands/Base/GetAzureCertificate.cs +++ b/src/Commands/Base/GetAzureCertificate.cs @@ -3,6 +3,9 @@ using System.Security; using System.Security.Cryptography.X509Certificates; using PnP.PowerShell.Commands.Utilities; +using System.Runtime.ConstrainedExecution; +using System.Security.Cryptography; +using System.Linq; namespace PnP.PowerShell.Commands.Base { @@ -84,7 +87,12 @@ internal static void WriteAzureCertificateOutput(PSCmdlet cmdlet, X509Certificat pfxBase64: pfxBase64, keyCredentials: manifestEntry, certificate: CertificateHelper.CertificateToBase64(certificate), - privateKey: CertificateHelper.PrivateKeyToBase64(certificate) + privateKey: CertificateHelper.PrivateKeyToBase64(certificate), + sanNames: certificate.Extensions.Cast() + .Where(n => n.Oid.FriendlyName=="Subject Alternative Name") + .Select(n => new AsnEncodedData(n.Oid, n.RawData)) + .Select(n => n.Format(false)) + .FirstOrDefault().Split(',', StringSplitOptions.TrimEntries) ); cmdlet.WriteObject(record); diff --git a/src/Commands/Base/NewAzureCertificate.cs b/src/Commands/Base/NewAzureCertificate.cs index e196eb63f..2120d71ad 100644 --- a/src/Commands/Base/NewAzureCertificate.cs +++ b/src/Commands/Base/NewAzureCertificate.cs @@ -46,6 +46,9 @@ public class NewPnPAdalCertificate : PSCmdlet [Parameter(Mandatory = false)] public StoreLocation Store; + [Parameter(Mandatory = false)] + public string[] SanNames; + protected override void ProcessRecord() { if (MyInvocation.BoundParameters.ContainsKey(nameof(Store)) && !Utilities.OperatingSystem.IsWindows()) @@ -60,7 +63,12 @@ protected override void ProcessRecord() DateTime validFrom = DateTime.Today; DateTime validTo = validFrom.AddYears(ValidYears); - X509Certificate2 certificate = CertificateHelper.CreateSelfSignedCertificate(CommonName, Country, State, Locality, Organization, OrganizationUnit, CertificatePassword, CommonName, validFrom, validTo); + if(MyInvocation.BoundParameters.ContainsKey(nameof(SanNames)) && SanNames == null) + { + SanNames = Array.Empty(); + } + + X509Certificate2 certificate = CertificateHelper.CreateSelfSignedCertificate(CommonName, Country, State, Locality, Organization, OrganizationUnit, CertificatePassword, CommonName, validFrom, validTo, SanNames); if (!string.IsNullOrWhiteSpace(OutPfx)) { diff --git a/src/Commands/Model/AzureCertificate.cs b/src/Commands/Model/AzureCertificate.cs index 5e8ec2483..0636c8cd1 100644 --- a/src/Commands/Model/AzureCertificate.cs +++ b/src/Commands/Model/AzureCertificate.cs @@ -1,15 +1,10 @@ -using PnP.PowerShell.Commands.Utilities; - -using System; -using System.Collections.Generic; -using System.Security.Cryptography.X509Certificates; -using System.Text; +using System; namespace PnP.PowerShell.Commands.Model { public sealed class AzureCertificate { - internal AzureCertificate(string subject, DateTime notBefore, DateTime notAfter, string thumbprint, string/*?*/ pfxBase64, string keyCredentials, string certificate, string privateKey) + internal AzureCertificate(string subject, DateTime notBefore, DateTime notAfter, string thumbprint, string/*?*/ pfxBase64, string keyCredentials, string certificate, string privateKey, string[] sanNames) { Subject = subject ?? throw new ArgumentNullException(nameof(subject)); NotBefore = notBefore; @@ -19,6 +14,7 @@ internal AzureCertificate(string subject, DateTime notBefore, DateTime notAfter, KeyCredentials = keyCredentials ?? throw new ArgumentNullException(nameof(keyCredentials)); Certificate = certificate ?? throw new ArgumentNullException(nameof(certificate)); PrivateKey = privateKey ?? throw new ArgumentNullException(nameof(privateKey)); + SanNames = sanNames; } public string Subject { get; } @@ -29,6 +25,6 @@ internal AzureCertificate(string subject, DateTime notBefore, DateTime notAfter, public string KeyCredentials { get; } public string Certificate { get; } public string PrivateKey { get; } - + public string[] SanNames { get; } } } diff --git a/src/Commands/Utilities/CertificateHelper.cs b/src/Commands/Utilities/CertificateHelper.cs index fe9c682e1..cbb4a9a95 100644 --- a/src/Commands/Utilities/CertificateHelper.cs +++ b/src/Commands/Utilities/CertificateHelper.cs @@ -241,11 +241,21 @@ private static IEnumerable SplitText(string text, int length) #endregion - internal static X509Certificate2 CreateSelfSignedCertificate(string commonName, string country, string state, string locality, string organization, string organizationUnit, SecureString password, string friendlyName, DateTimeOffset from, DateTimeOffset to) + internal static X509Certificate2 CreateSelfSignedCertificate(string commonName, string country, string state, string locality, string organization, string organizationUnit, SecureString password, string friendlyName, DateTimeOffset from, DateTimeOffset to, string[] sanNames = null) { SubjectAlternativeNameBuilder sanBuilder = new SubjectAlternativeNameBuilder(); - sanBuilder.AddDnsName("localhost"); - sanBuilder.AddDnsName(Environment.MachineName); + if (sanNames != null) + { + foreach (var sanName in sanNames) + { + sanBuilder.AddDnsName(sanName); + } + } + else + { + sanBuilder.AddDnsName("localhost"); + sanBuilder.AddDnsName(Environment.MachineName); + } var x500Values = new List(); if (!string.IsNullOrWhiteSpace(commonName)) x500Values.Add($"CN={commonName}"); From 375c404b6323dda7046e0d364c8974884a4009fe Mon Sep 17 00:00:00 2001 From: Koen Zomers Date: Fri, 10 Nov 2023 16:12:37 +0100 Subject: [PATCH 146/146] Renaming Get-PnPWebhooksubscriptions to singular notation to align with the other cmdlets. Added an alias for backwards compatibility. (#3551) Co-authored-by: Gautam Sheth --- ...ubscriptions.md => Get-PnPWebhookSubscription.md} | 12 ++++++------ ...ookSubscriptions.cs => GetWebhookSubscription.cs} | 5 +++-- 2 files changed, 9 insertions(+), 8 deletions(-) rename documentation/{Get-PnPWebhookSubscriptions.md => Get-PnPWebhookSubscription.md} (83%) rename src/Commands/Webhooks/{GetWebhookSubscriptions.cs => GetWebhookSubscription.cs} (91%) diff --git a/documentation/Get-PnPWebhookSubscriptions.md b/documentation/Get-PnPWebhookSubscription.md similarity index 83% rename from documentation/Get-PnPWebhookSubscriptions.md rename to documentation/Get-PnPWebhookSubscription.md index bb823a3f8..560d3f1b2 100644 --- a/documentation/Get-PnPWebhookSubscriptions.md +++ b/documentation/Get-PnPWebhookSubscription.md @@ -1,13 +1,13 @@ --- Module Name: PnP.PowerShell -title: Get-PnPWebhookSubscriptions +title: Get-PnPWebhookSubscription schema: 2.0.0 applicable: SharePoint Online external help file: PnP.PowerShell.dll-Help.xml -online version: https://pnp.github.io/powershell/cmdlets/Get-PnPWebhookSubscriptions.html +online version: https://pnp.github.io/powershell/cmdlets/Get-PnPWebhookSubscription.html --- -# Get-PnPWebhookSubscriptions +# Get-PnPWebhookSubscription ## SYNOPSIS Gets all the Webhook subscriptions of the resource @@ -15,7 +15,7 @@ Gets all the Webhook subscriptions of the resource ## SYNTAX ```powershell -Get-PnPWebhookSubscriptions [-List ] [-Connection ] +Get-PnPWebhookSubscription [-List ] [-Connection ] ``` @@ -27,14 +27,14 @@ Allows to retrieve Webhook subscriptions of specified list. ### EXAMPLE 1 ```powershell -Get-PnPWebhookSubscriptions -List MyList +Get-PnPWebhookSubscription -List MyList ``` Gets all Webhook subscriptions of the list MyList ### EXAMPLE 2 ```powershell -Get-PnPList | Get-PnPWebhookSubscriptions +Get-PnPList | Get-PnPWebhookSubscription ``` Gets all Webhook subscriptions of the all the lists diff --git a/src/Commands/Webhooks/GetWebhookSubscriptions.cs b/src/Commands/Webhooks/GetWebhookSubscription.cs similarity index 91% rename from src/Commands/Webhooks/GetWebhookSubscriptions.cs rename to src/Commands/Webhooks/GetWebhookSubscription.cs index 22aa579c5..65c86249e 100644 --- a/src/Commands/Webhooks/GetWebhookSubscriptions.cs +++ b/src/Commands/Webhooks/GetWebhookSubscription.cs @@ -7,9 +7,10 @@ namespace PnP.PowerShell.Commands.Webhooks { - [Cmdlet(VerbsCommon.Get, "PnPWebhookSubscriptions")] + [Alias("Get-PnPWebhookSubscriptions")] + [Cmdlet(VerbsCommon.Get, "PnPWebhookSubscription")] [OutputType(typeof(WebhookSubscription))] - public class GetWebhookSubscriptions : PnPWebCmdlet + public class GetWebhookSubscription : PnPWebCmdlet { [Parameter(Mandatory = false, ValueFromPipeline = true)] public ListPipeBind List;